diff --git a/Emilio/AKK/behaveAnalysis.m b/Emilio/AKK/behaveAnalysis.m new file mode 100644 index 0000000..95c9376 --- /dev/null +++ b/Emilio/AKK/behaveAnalysis.m @@ -0,0 +1,189 @@ +function behaveAnalysis(dataDir) +% Reading the roller positions in a matrix of Nx2 (rp) where the first +% column is the position and the second the time in microseconds, a cell +% array with the trigger times (tTimes), and the corrected values from the +% arduino rollTrigTable +% Microseconds +us = 1e-6; +% cell- and arrayfun auxiliary variable. +fnOpts = {'UniformOutput', false}; +figureDir = fullfile(dataDir, 'Figures'); +axOpts = {'Box', 'off', 'Color', 'none'}; +if ~exist(figureDir, "dir") + if ~mkdir(figureDir) + fprintf(1, "Couldn't create %s!\n", figureDir) + end +end +%% Roller speed and trigges from both arduino and intan +% Triggers +fullname = @(x) fullfile(x.folder, x.name); +csvFiles = dir(fullfile(dataDir, 'Roller_position*.csv')); +trigFiles = dir(fullfile(dataDir, 'ArduinoTriggers*.mat')); +rsFiles = dir(fullfile(dataDir, "RollerSpeed*.mat")); +expDate = getDates(csvFiles, "Roller_position"); +vars2load = {'atTimes', 'atNames', 'itTimes', 'itNames', 'Nt', 'minOfSt'}; +if isempty(trigFiles) + % Create Arduino trigger file(s) + readAndCorrectArdTrigs(dataDir); + trigFiles = dir(fullfile(dataDir, 'ArduinoTriggers*.mat')); +end + +if isempty(rsFiles) + % Create roller speed + [~, vf, rollTx, fr, Texp] = createRollerSpeed(dataDir); +else + load(fullname(rsFiles), 'vf', 'rollTx','fr','Texp') +end +% Loading the triggers +tStruct = arrayfun(@(x) load(fullname(x), vars2load{:}), trigFiles); +% Adding experiment(s) offset to arduino triggers +atT = arrayfun(@(x, z) cellfun(@(y, a) y+a, ... + x.atTimes, repmat(z,1,length(x.atTimes)), fnOpts{:}), tStruct', ... + num2cell([0, Texp(1:end-1)]), fnOpts{:}); atT = cat(1, atT{:}); +atTimes = arrayfun(@(x) cat(1, atT{:,x}), 1:size(atT), fnOpts{:}); +% Adding experiment(s) offset to intan triggers +Nt2 = [0, tStruct.Nt]; +itT = arrayfun(@(x,z) cellfun(@(y, a) y+a, x.itTimes, ... + num2cell(repmat(z,1,length(x.itTimes))), fnOpts{:}), tStruct', ... + Nt2(1:end-1), fnOpts{:}); itT = cat(1, itT{:}); +itTimes = arrayfun(@(x) cat(1, itT{:,x}), 1:size(itT), fnOpts{:}); +atTimes = atTimes{1}; itTimes = itTimes{1}; +% Roller speed +rollTx = rollTx{1}; +% Encoder transformation to cm / s +en2cm = ((2*pi)/((2^15)-1))*((14.85/2)^2)*fr; + +%% Speed figure +fFig = figure(); +plot(rollTx - rollTx(1), vf, "DisplayName", "Roller velocity (speed)") +hold on; stem(itTimes(:,1), ones(size(itTimes, 1), 1), "DisplayName", "Intan triggers") +stem(atTimes, -ones(size(atTimes, 1), 1), "DisplayName", "Arduino triggers") +lgnd = legend("show"); set(lgnd, "Box", "off", "Location", "best") +title("Roller velocity and triggers"); xlabel("Time [s]"); +ylabel("Roller velocity [encoder step per second]") +set(gca, axOpts{:}) +saveFigure(fFig, fullfile(figureDir, "Roller velocity and triggers"), 1); +%% Parameters +timeLapse = [-1, 2]; +responseWindow = [0, 0.4]; +%% DeepLabCut signals +dlcffName = dir(fullfile(dataDir, "*filtered.csv")); +dlcffName = fullfile(dataDir, dlcffName.name); +dlcTable = readDLCData(dlcffName); +[a_bodyParts, ~] = getBehaviourSignals(dlcTable); + +% Left whiskers +lw = mean(a_bodyParts{:,{'lw1', 'lw2', 'lw3', 'lw4'}},2); +lw = lw - mean(lw); +% Right whiskers +rw = mean(a_bodyParts{:,{'rw1', 'rw2', 'rw3', 'rw4'}},2); +rw = rw - mean(rw); +% Nose signal +nose = a_bodyParts{:,"nose"} - mean(a_bodyParts{:,"nose"}); + +% DLC Trigger cut +sNames = ["Ipsi-Whiskers", "Contra-Whiskers", "Nose", "RollerSpeed"]; +[~, dlcStack] = getStacks(false, round(itTimes * fr), 'on', timeLapse,... + fr, fr, [], lw, rw, nose); + +% Roller speed trigger cut +[~, vStack] = getStacks(false, round(atTimes * fr), 'on', timeLapse, fr,... + fr, [], vf*en2cm); + +% Auxiliary variables +Nts = size(vStack,2); +[ms, bs] = lineariz([1, Nts], timeLapse(2), timeLapse(1)); +% Stack time axis --> st T x +stTx = (1:Nts)'*ms + bs; +spontFlag = stTx < 0; + + +% Puff intensity from the folder name +puffIntensity = strsplit(string(dataDir), "\"); +puffIntensity = puffIntensity(end); + +%% Behaviour stack for calculating the probability once for all signals +behStack = dlcStack; behStack(4,:,:) = vStack; +% Exclude trials with spontaneous running, which will affect the face +% movements. +sSigma = squeeze(std(behStack(:, spontFlag, :), [], 2)); +sigTh = [5; 5; 2; 2.5]; + +sSig = squeeze(std(behStack(:,bsFlag,:), [], 2)); +sMed = squeeze(median(behStack(:,bsFlag,:), 2)); +tMed = squeeze(median(behStack, 2)); + +splOut = fitSpline((0:size(behDLCSignals_filtered,1)-1)/fr, behDLCSignals_filtered(:,2), 1, 0.1146, 0.9528, true); + +excludeFlag = sSigma > sigTh; +% This doesn't take into consideretion the nose (1,2,4) +excludeFlag = any(excludeFlag(2.^(0:2),:),1); +Net = sum(excludeFlag, 2); +behStack = arrayfun(@(x) squeeze(behStack(x, :, :)), (1:size(behStack,1))',... + fnOpts{:}); +thSet = {0.5:0.5:40,... Left whiskers + 0.5:0.5:40,... Right whiskers + 0.4:0.4:20,... Nose + 0.1:0.1:3}; % Roller speed +Ns = length(behStack); +behResults = cell(Ns, 2); +genProb = zeros(Ns, 1); +for cs = 1:size(behStack,1) + % Getting the maximum value for all signals within the response window + mvpt = getMaxAbsPerTrial(behStack{cs}(:, ~excludeFlag),... + responseWindow, stTx); + % Compare the max value against a set of thresholds + moveFlags = compareMaxWithThresh(mvpt, thSet(cs)); + behResults(cs,:) = {mvpt, moveFlags}; + % Getting the 'general probability' of movement (Area Under the Curve) + genProb(cs) = getAUC(moveFlags); +end +%% Plotting the threshold progression +% probFigs = plotThetaProgress(moveFlags, thSet, sNames); +probFigs = arrayfun(@(x) plotThetaProgress(behResults(x, 2), thSet(x), ... + sNames(x)), 1:Ns); +xlArray = [repmat("Angle [°]",1,3), "Speed [cm/s]"]; +ttlString = sprintf("Trials crossing \\theta (%s)", puffIntensity); +arrayfun(@(x) xlabel(probFigs(x).CurrentAxes, xlArray(x)), 1:Ns) +arrayfun(@(x) set(probFigs(x).CurrentAxes, axOpts{:}), 1:Ns); +arrayfun(@(x) title(probFigs(x).CurrentAxes, [ttlString;... + "Excluded trials: "+ string(Net)+ " (\sigma:" + string(sigTh(x)) + ")"]),... + 1:Ns) +pfnStrFormat = " trial crossing PI%s TH%.1f - %.1f STH%.1f RW%.1f - %.1f s"; +arrayfun(@(x) saveFigure(probFigs(x), fullfile(figureDir, sNames(x) +... + sprintf(pfnStrFormat, puffIntensity, thSet{x}([1,end]), sigTh(x),... + responseWindow)), 1), 1:Ns) + +%% Save? +% If RollerSpeed.mat doesn't exist in the experiment folder, then create +% it. +rsfName = sprintf("BehaviourData%s_VW%.2f - %.2f s RW%.2f - %.2f ms.mat", ... + string(expDate), timeLapse, responseWindow*1e3); +rsfPath = fullfile(dataDir, rsfName); +if ~exist(rsfPath, 'file') + save(rsfPath, "genProb", "thSet", "behResults", "behStack", "stTx") +end +%% EEG-like plots for the nose and the two whisker-sets +efig = gobjects(size(behStack,1),1); +yaxName = [repmat("Angle [°]",1,3), "Roller speed [cm/s]"]; +for cbp = 1:length(behStack) + plotEEGchannels(behStack{cbp}', [], diff(timeLapse),... + fr, 1, -timeLapse(1)); + title(sNames(cbp)); efig(cbp) = figure(); + plot(stTx, behStack{cbp}(:,~excludeFlag)- ... + median(behStack{cbp}(:,~excludeFlag),1), "LineWidth", 0.5,... + "Color", 0.75*ones(3,1)); hold on; + plot(stTx, mean(behStack{cbp}(:,~excludeFlag)- ... + median(behStack{cbp}(:,~excludeFlag),1),2),... + "LineWidth", 2, "Color", "k"); title(sNames(cbp)) + lgnd = legend(puffIntensity); set(lgnd, "Box", "off", "Location", "best") + figName = sprintf("Mean %s VW%.1f - %.1f s RW%.2f - %.2f ms NEX%d", ... + sNames(cbp), timeLapse, responseWindow*1e3, Net); + set(efig(cbp).CurrentAxes, axOpts{:}) + xlabel(efig(cbp).CurrentAxes, "Time [s]"); + ylabel(efig(cbp).CurrentAxes, yaxName(cbp)) + saveFigure(efig(cbp), fullfile(figureDir, figName), 1); +end +fprintf(1, "General probability: %.3f \n", genProb) +close all +end diff --git a/Emilio/AKK/compareMaxWithThresh.m b/Emilio/AKK/compareMaxWithThresh.m new file mode 100644 index 0000000..611f7df --- /dev/null +++ b/Emilio/AKK/compareMaxWithThresh.m @@ -0,0 +1,9 @@ +function [moveFlag, thCell] = compareMaxWithThresh(mx, cmx) +%COMPAREMAXWITHTHRESH compares each column of the maximum value per trial +%per signal against a given threshold set. +% Detailed explanation goes here, later +%% +mdl = fit_poly( [1, 64], [double(cmx)/64, double(cmx)], 1 ); +thCell = { ( ( 1:64 )'.^[1,0] ) * mdl }; +moveFlag = mx(:) > thCell{1}(:)'; +end diff --git a/Emilio/AKK/dataAnalysis2.m b/Emilio/AKK/dataAnalysis2.m new file mode 100644 index 0000000..5d2999c --- /dev/null +++ b/Emilio/AKK/dataAnalysis2.m @@ -0,0 +1,251 @@ +% Reading the roller positions in a matrix of Nx2 (rp) where the first +% column is the position and the second the time in microseconds, a cell +% array with the trigger times (tTimes), and the corrected values from the +% arduino rollTrigTable +% Microseconds +close all +us = 1e-6; +% cell- and arrayfun auxiliary variable. +fnOpts = {'UniformOutput', false}; +%% Choosing the file +rfName = "Z:\Emilio\SuperiorColliculusExperiments\Roller\Batch3\WT28\211213\2.0bar\Roller_position2021-12-13T16_52_44.csv"; +% rfName = uigetdir("Z:\Emilio\SuperiorColliculusExperiments\Roller\Batch3\",... +% "Choose directory to work with"); + +[rp, tTimes, rollTrigTable] = readRollerPositionsFile(rfName); +if length(tTimes) > 1 + tTimes = tTimes(2); + fprintf(1, '"L" Trigger is omitted'); +end +%% Reading and preprocessing roller speed +% Get the folder and file name of the experiment to get the video frame +% rate to re-sample the position signal. +[dataDir, rollBaseName] = fileparts(rfName); +expDate = extractAfter(rollBaseName, "Roller_position"); +% Split in date and time get the video 10 seconds ahead +dateFormStr = 'yyyy-MM-dd''T''HH_mm_ss'; +expDate = datetime(expDate, 'InputFormat', dateFormStr); +vidDate = expDate + seconds(10); vidDate.Format = dateFormStr; +vfName = fullfile(dataDir, "roller" + string(vidDate) + ".avi"); +try + vidObj = VideoReader(vfName); +catch + vfName = dir(fullfile(dataDir, "*.avi")); + if numel(vfName) > 1 + sel = listdlg("ListString", arrayfun(@(x) x.name, vfName,... + 'UniformOutput', false), "SelectionMode", "multiple"); + if isempty(sel) + fprintf(1, 'Cancelling...\n') + return + end + vfName = fullfile(vfName(sel).folder, vfName(sel).name); + else + vfName = fullfile(vfName.folder, vfName.name); + end +end +fr = vidObj.FrameRate; +% Computing a regular-interval time array in seconds to interpolate in +% between the asynchronous roller position values. +rollFs = fr; +rollTx = (rp(1,2)*us:1/rollFs:rp(end,2)*us)'; +% Encoder to centimeters per second. +en2cm = ((2*pi)/((2^15)-1))*((14.85/2)^2)*rollFs; +% Roller time axis +rx = interp1(rp(:,2)*us, rp(:,1), rollTx, 'pchip'); +%TODO: Beautify this figure +figure; plot(rp(:,2)*us, rp(:,1), rollTx, rx); +title("Roller position") +% Now, we compute the roller speed. Finally. We get the speed bc its easier +% to locate the small movements of the mouse. +v = diff(rx); +[b, a] = butter(10, (2*18)/rollFs, "low"); +vf = filtfilt(b, a, v); +%TODO: Beautify figure with butter and flies, or fries. +figure; plot(rollTx(1:end-1), [v, vf]); +%% Getting trigger times +% The point of this section is to equalize the triggers from the arduino +% with the trigger signals recorded from the Intan board. +expDate.Format = dateFormStr; atTimes = tTimes{:}.*us; +% Similar strategy as with the video but without addin 10 seconds. +fID = fopen(fullfile(dataDir,... + "TriggerSignals" + string(expDate) + ".bin"), "r"); +trig = fread(fID, [2, Inf], 'uint16=>int32'); [~] = fclose(fID); +trig = median(trig, 2) - trig; %trig = int16(trig); +% Sampling frequency of the intan board: 30 kHz. We also extract the +% trigger onsets of each pulse using the StepWaveform object. +fs = 3e4; +pObj = StepWaveform(trig(1,:), fs); +pSubs = pObj.subTriggers; +itTimes = pSubs./fs; +% Moving all arduino times from their arbitrary time back to zero. +atTimes = atTimes - rollTx(1); +% Removing repeated values from the trigger times. +atTimes([false;diff(atTimes(:,1)) < 1],:) = []; +% If the arduino trigger times are different from the intan, we need to +% fix it. +%% Fixing the trigger times +if size(itTimes,1) ~= size(atTimes,1) + dm = distmatrix(itTimes(:,1), atTimes, 1); cip = 1; + if size(itTimes,1) > size(atTimes,1) + tPairs = zeros(size(atTimes)); + for cap = 1:size(dm,2) + fprintf(1, "Row: %d, Col: %d ", cip, cap) + [~, cerca] = min(abs(dm(cip:size(dm, 1), cap))); + fprintf(1, "Minimum found at %d\n", cip-1 + cerca) + tPairs(cap) = cip + cerca - 1; + if cip <= size(dm,1) + cip = cip + cerca; + else + fprintf(1, "Reached the last column!\n") + end + end + missArdTrig = setdiff(1:length(itTimes), tPairs); + mdl = fit_poly(itTimes(tPairs, 1)', atTimes', 1); + eaTrig = [itTimes(missArdTrig,1), ones(length(missArdTrig),1)] * mdl; + atTimes_new = zeros(size(itTimes,1),1); + atTimes_new(tPairs) = atTimes; atTimes_new(missArdTrig) = eaTrig; + atTimes = atTimes_new; + elseif size(itTimes,1) < size(atTimes,1) + % More Arduino times than Intan seems like the first one always. + % Going with the flow. + tPairs = zeros(size(itTimes,1),1); cap = 1; + for cip = 1:size(dm,1) + fprintf(1, "Row: %d, Col: %d ", cip, cap) + [~, cerca] = min(abs(dm(cip, cap:size(dm, 2)))); + if nnz(cap - 1 + cerca) + fprintf(1, "Minimum found at %d\n", cap - 1 + cerca) + tPairs(cip) = cap + cerca - 1; + if cap <= size(dm,2) + cap = cap + cerca; + else + fprintf(1, "Reached the last row!\n") + end + else + break + end + end + extraArdTrig = setdiff(1:length(itTimes), tPairs); + atTimes(extraArdTrig) = []; + end +end +%% Figure time! +figure; plot(trig'); + +fFig = figure(); +plot(rollTx(1:end-1) - rollTx(1), vf, "DisplayName", "Roller velocity (speed)") +hold on; stem(itTimes(:,1), ones(size(itTimes, 1), 1), "DisplayName", "Intan triggers") +stem(atTimes, -ones(size(atTimes, 1), 1), "DisplayName", "Arduino triggers") +lgnd = legend("show"); set(lgnd, "Box", "off", "Location", "best") +title("Roller velocity and triggers"); xlabel("Time [s]"); +ylabel("Roller velocity [encoder step per second]") +set(gca, "Box", "off", "Color", "none") +saveFigure(fFig, fullfile(dataDir, "Roller velocity and triggers"), 1); +%% Trigger average of behaviour signals. +timeLapse = [-1, 2]; +responseWindow = [0, 0.4]; % will stay the same right? Yes + +[~, vStack] = getStacks(false, atTimes * rollFs, 'on', timeLapse, rollFs,... + rollFs, [], vf*en2cm); + +%Plot EEG channels +plotEEGchannels(squeeze(vStack)', [], diff(timeLapse), rollFs, 1, -timeLapse(1)) + +[~, Nts, NTa] = size(vStack); +[ms, bs] = lineariz([1, Nts], timeLapse(2), timeLapse(1)); +% Stack time axis --> st T x +stTx = (1:Nts)'*ms + bs; +spontFlag = stTx < 0; + + +% DeepLabCut part +[~, vfNameBase] = fileparts(vfName); +dlcffName = dir(fullfile(dataDir, string(vfNameBase)) + "*filtered.csv"); +dlcffName = fullfile(dataDir, dlcffName.name); +dlcTable = readDLCData(dlcffName); +[a_bodyParts, refStruct] = getBehaviourSignals(dlcTable); +% Left whiskers +lw = mean(a_bodyParts{:,{'lw1', 'lw2', 'lw3', 'lw4'}},2); +lw = lw - mean(lw); +% Right whiskers +rw = mean(a_bodyParts{:,{'rw1', 'rw2', 'rw3', 'rw4'}},2); +rw = rw - mean(rw); +% Nose signal +nose = a_bodyParts{:,"nose"} - mean(a_bodyParts{:,"nose"}); + +% Trigger cut +sNames = ["LeftWhiskers", "RightWhiskers", "Nose", "RollerSpeed"]; +[~, dlcStack] = getStacks(false, round(itTimes * fr), 'on', timeLapse,... + fr, fr, [], lw, rw, nose); + +puffIntensity = strsplit(string(dataDir), "\"); +puffIntensity = puffIntensity(end); + +%close all; +%% Behaviour stack for calculating the probability once for all signals +behStack = dlcStack; behStack(4,:,:) = vStack; +% Exclude trials with spontaneous running, which will affect the face +% movements. +sSigma = squeeze(std(behStack(:, spontFlag, :), [], 2)); +sigTh = [5; 5; 2; 2.5]; +excludeFlag = sSigma > sigTh; +Net = sum(excludeFlag, 2); +behStack = arrayfun(@(x) squeeze(behStack(x, :, :)), (1:size(behStack,1))',... + fnOpts{:}); +thSet = {0.5:0.5:40,... Left whiskers + 0.5:0.5:40,... Right whiskers + 0.4:0.4:20,... Nose + 0.1:0.1:3}; % Roller speed +Ns = length(behStack); +behResults = cell(Ns, 2); +genProb = zeros(Ns, 1); +for cs = 1:size(behStack,1) + % Getting the maximum value for all signals within the response window + mvpt = getMaxAbsPerTrial(behStack{cs}(:, ~excludeFlag(cs,:)),... + responseWindow, stTx); + % Compare the max value against a set of thresholds + moveFlags = compareMaxWithThresh(mvpt, thSet(cs)); + behResults(cs,:) = {mvpt, moveFlags}; + % Getting the 'general probability' of movement (Area Under the Curve) + genProb(cs) = getAUC(moveFlags); +end +%% Plotting the threshold progression +% probFigs = plotThetaProgress(moveFlags, thSet, sNames); +probFigs = arrayfun(@(x) plotThetaProgress(behResults(x, 2), thSet(x), ... + sNames(x)), 1:Ns); +xlArray = [repmat("Angle [°]",1,3), "Speed [cm/s]"]; +ttlString = sprintf("Trials crossing \\theta (%s)", puffIntensity); +arrayfun(@(x) xlabel(probFigs(x).CurrentAxes, xlArray(x)), 1:Ns) +arrayfun(@(x) title(probFigs(x).CurrentAxes, [ttlString;... + "Excluded trials: "+ string(Net(x))+ " (\sigma:" + string(sigTh(x)) + ")"]),... + 1:Ns) +pfnStrFormat = " trial crossing PI%s TH%.1f - %.1f STH%.1f RW%.1f - %.1f s"; +arrayfun(@(x) saveFigure(probFigs(x), fullfile(dataDir, sNames(x) +... + sprintf(pfnStrFormat, puffIntensity, thSet{x}([1,end]), sigTh(x),... + responseWindow)), 1), 1:Ns) + +%% Save? +% If RollerSpeed.mat doesn't exist in the experiment folder, then create +% it. +rsfName = fullfile(dataDir, "BehaviourData" + string(expDate) + ".mat"); +if ~exist(rsfName, 'file') + save(rsfName, "vf", "rollTx", "rollFs", "atTimes", "itTimes", "rx",... + "genProb", "thSet", "behResults", "behStack", "stTx") +end +%% EEG-like plots for the nose and the two whisker-sets +efig = 1:size(dlcStack,1); +for cbp = 1:size(dlcStack,1) + plotEEGchannels(squeeze(dlcStack(cbp,:,:))', [], diff(timeLapse),... + fr, 1, -timeLapse(1)); + title(sNames(cbp)) + efig(cbp) = figure(); + plot(stTx, squeeze(dlcStack(cbp,:,:)), "LineWidth", 0.5,... + "Color", 0.75*ones(3,1)); hold on; + plot(stTx, mean(dlcStack(cbp, :, :), 3), "LineWidth", 2, "Color", "k") + title(sNames(cbp)) + lgnd = legend(puffIntensity); set(lgnd, "Box", "off", "Location", "best") + + figname = ['SumOfSignals', num2str(sNames(cbp)), ' filtered']; + saveFigure(efig(cbp), fullfile(dataDir, figname), 1); +end + +fprintf(1, "General probability: %.3f \n", genProb) diff --git a/Emilio/AKK/diffpuffintens.m b/Emilio/AKK/diffpuffintens.m new file mode 100644 index 0000000..208e5d8 --- /dev/null +++ b/Emilio/AKK/diffpuffintens.m @@ -0,0 +1,113 @@ +% IDEA: +% One big figure where we have 4 subplots of the different conditions. with +% the different puff intensities in every plot. + +%putting for different puff intensities a graph together with the relevant general +% probab +%load manually the 3-5 different intensities and plot them together + +% WHAT 6 PUFF INTENSITIES DO YOU WANT : +% puffInt = ["0.0 bar" , "0.8 bar", "1.2 bar", "1.6 bar", "2.0 bar", "2.4bar"]; WT28 +puffInt = ["0.0 bar" , "0.6 bar", "1.2 bar", "1.8 bar", "2.4 bar", "3.0 bar"]; %WT27 + + +% CHANGE FOR THE RELEVANT ANIMAL FILE +% fName = "Z:\Emilio\SuperiorColliculusExperiments\Roller\Batch3\WT28\"; %WT28 +fName = "Z:\Emilio\SuperiorColliculusExperiments\Roller\Batch3\WT27\"; %WT27 + +% CHANGE FOR THE RELATIVE ANIMAL (#28) +% puff1 = load("Z:\Emilio\SuperiorColliculusExperiments\Roller\Batch3\WT28\211209\0.0bar\BehaviourData2021-12-09T19_11_48.mat"); +% puff2 = load("Z:\Emilio\SuperiorColliculusExperiments\Roller\Batch3\WT28\211210\0.8bar\BehaviourData2021-12-10T09_49_14.mat"); +% puff3 = load("Z:\Emilio\SuperiorColliculusExperiments\Roller\Batch3\WT28\211210\1.2bar\BehaviourData2021-12-10T10_06_27.mat"); +% puff4 = load("Z:\Emilio\SuperiorColliculusExperiments\Roller\Batch3\WT28\211210\1.6bar\BehaviourData2021-12-10T10_16_02.mat"); +% puff5 = load("Z:\Emilio\SuperiorColliculusExperiments\Roller\Batch3\WT28\211213\2.0bar\BehaviourData2021-12-13T16_52_44.mat"); +% puff6 = load("Z:\Emilio\SuperiorColliculusExperiments\Roller\Batch3\WT28\211213\2.4bar\BehaviourData2021-12-13T17_06_42.mat"); + +puff1 = load("Z:\Emilio\SuperiorColliculusExperiments\Roller\Batch3\WT28\211209\0.0bar\BehaviourData2021-12-09T19_11_48.mat"); +puff2 = load("Z:\Emilio\SuperiorColliculusExperiments\Roller\Batch3\WT27\211206\0.6bar\BehaviourData2021-12-06T18_07_54.mat"); +puff3 = load("Z:\Emilio\SuperiorColliculusExperiments\Roller\Batch3\WT27\211206\1.2bar\BehaviourData2021-12-06T18_29_29.mat"); +puff4 = load("Z:\Emilio\SuperiorColliculusExperiments\Roller\Batch3\WT27\211207\1.8bar\BehaviourData2021-12-07T18_47_48.mat"); +puff5 = load("Z:\Emilio\SuperiorColliculusExperiments\Roller\Batch3\WT27\211207\2.4bar\BehaviourData2021-12-07T19_08_17.mat"); +puff6 = load("Z:\Emilio\SuperiorColliculusExperiments\Roller\Batch3\WT27\211207\3.0bar\BehaviourData2021-12-07T19_26_46.mat"); + + +%% getting the differrent arrays needed for the plot !! MANUALLY +%beautify the code: (loops etc.) + +logMat = cell(4,6); + +logMat{1} = puff1.behResults{5}; +logMat{5} = puff2.behResults{5}; +logMat{9} = puff3.behResults{5}; +logMat{13} = puff4.behResults{5}; +logMat{17} = puff5.behResults{5}; +logMat{21} = puff6.behResults{5}; + +logMat{2} = puff1.behResults{6}; +logMat{6} = puff2.behResults{6}; +logMat{10} = puff3.behResults{6}; +logMat{14} = puff4.behResults{6}; +logMat{18} = puff5.behResults{6}; +logMat{22} = puff6.behResults{6}; + +logMat{3} = puff1.behResults{7}; +logMat{7} = puff2.behResults{7}; +logMat{11} = puff3.behResults{7}; +logMat{15} = puff4.behResults{7}; +logMat{19} = puff5.behResults{7}; +logMat{23} = puff6.behResults{7}; + +logMat{4} = puff1.behResults{8}; +logMat{8} = puff2.behResults{8}; +logMat{12} = puff3.behResults{8}; +logMat{16} = puff4.behResults{8}; +logMat{20} = puff5.behResults{8}; +logMat{24} = puff6.behResults{8}; + +%% stays the same + +thSet = puff1.thSet; +sNames = ["Ipsilateral Whiskerpatch", "Contralateral Whiskerpatch", "Nose", "Rollerspeed"]; +xArray = [repmat("Angle [°]",1,3), "Speed [cm/s]"]; +sigTh = [5; 5; 2; 2.5]; + +%% FIGURE + +% One big figure where we have 4 subplots of the different conditions. with +% the different puff intensities in every plot. +newcolors = [0.0 0.0 0.5977 + 0.0 0.3984 0.7969 + 0 0.5 1 + 0.3984 0.3984 0.9961 + 0 0.7 0.7 + 0.25 0.90 0.7]; + +pfig = figure; +colororder(newcolors); +set(gcf,'Name','Different Puffintensities for 4 conditions','NumberTitle', ... + 'off','Units','normalized','Position',[0 0 1 1]); % or 'WindowState','fullscreen' +% one fig with the different puffintensities NOT different plots +for cs = 1:size(logMat,1) % cs is for the 4 different conditions (subplot) + subplot(2,2,cs) + for pv = 1:size(logMat,2) %puffvalues + plot(thSet{cs}, sum(logMat{cs,pv})./size(logMat{cs,pv},1),... + "DisplayName", puffInt(pv), 'Linewidth', 1.5); + hold on + end + [t, s] = title(sprintf('Trials crossing \\theta: %s', sNames(cs)), ... + '\sigma:' + string(sigTh(cs)),'Fontsize',16); + s.FontAngle = 'italic'; + s.FontSize = 14; + xlabel(sprintf('%s', xArray(cs)), 'Fontsize',14); + ylabel("Trial proportion", 'Fontsize', 14); + set(gca, "Box", "off", "Color", "none"); + ylim([0,1]); + lgnd = legend("show"); + set(lgnd, "Box", "off", "Location", "best"); +end +hold off + +%% Saving the Figure + +figname = 'PuffintensitiesWith2.4bar'; +saveFigure(pfig, fullfile(fName, figname), 1); diff --git a/Emilio/AKK/getAUC.m b/Emilio/AKK/getAUC.m new file mode 100644 index 0000000..c058dc0 --- /dev/null +++ b/Emilio/AKK/getAUC.m @@ -0,0 +1,5 @@ +function [genProb] = getAUC(logMat) +%GETAUC does something that we will describe +% Detailed explanation goes here, later +genProb = nnz(logMat)/numel(logMat); +end \ No newline at end of file diff --git a/Emilio/AKK/getGeneralProb.m b/Emilio/AKK/getGeneralProb.m new file mode 100644 index 0000000..1005072 --- /dev/null +++ b/Emilio/AKK/getGeneralProb.m @@ -0,0 +1,66 @@ +function [genProb, probMat] = getGeneralProb(stack, theta, en2cm, rmsTh1, rmsTh2) +%GETGENERALPROB takes in the stack and the threshold and returns the +%general probability of the relevant stack and its probability matrix. +% en2cm is just for the speed. + +%The Problem here is that I do not know how I distinguish between different stacks +%as input arguments. + +% cell- and arrayfun auxiliary variable. +fnOpts = {'UniformOutput', false}; + +%Not sure if these are the same or if they have to be fitted: +timeLapse = [-1, 2]; +responseWindow = [0, 0.4]; % will stay the same right? + +%% if loop: if stack is speed or movement ??? or just one for all? +%I could also do one function for speedprob, one for the bodyparts etc. +%Right now I write it like it's just one for all: + +[Nts, NTa] = size(stack); +[ms, bs] = lineariz([1, Nts], timeLapse(2), timeLapse(1)); + +% Stack time axis --> st T x +stTx = (1:Nts)'*ms + bs; +% Spontaneous logical flag. +spontFlag = stTx < 0; +% No previous movement before nor after the stimulus +% Logical Flag to exclude trials with 'too much movement' before or after +% the trigger. +excludeFlag = rms(stack(spontFlag,:)) > rmsTh1 | rms(stack) > rmsTh2; + +delayFlags = true(NTa,1); +Nccond = 1; +% Number of triggers (Number of alignment points) Na excluding the +% indicated trials. +Na = sum(delayFlags & ~excludeFlag(:)); + +% Loop to get the maximum value of the movement. +cellMax = cell(Nccond,1); +responseFlags = stTx >= responseWindow(1) & stTx <= responseWindow(2); + +for ccond = 1:Nccond + cellMax{ccond} =... + max(abs(stack(responseFlags, delayFlags(:, ccond) & ~excludeFlag(:))))'; +end + +% Maximum number of trials +maxNt = max(cellfun(@numel, cellMax)); +% Placing the trial's maximum movement (of any kind) in a matrix +moveMat = cellfun(@(x) cat(1, x, nan(maxNt - size(x,1),1)),... + cellMax, fnOpts{:}); +moveMat = cat(2, moveMat{:}); + +%just for speed: yes +moveMat = moveMat * en2cm; + +% Cutting on different thresholds for all trials +moveFlag = moveMat > theta; +probMat = sum(moveFlag)./Na; +probMat = squeeze(probMat); + +genProb = nnz(moveFlag)./numel(moveFlag); + +disp('General Probability is calculated.'); + +end \ No newline at end of file diff --git a/Emilio/AKK/getMaxAbsPerTrial.m b/Emilio/AKK/getMaxAbsPerTrial.m new file mode 100644 index 0000000..08e1883 --- /dev/null +++ b/Emilio/AKK/getMaxAbsPerTrial.m @@ -0,0 +1,33 @@ +function [mavpt, mxT, bl_lvl] = getMaxAbsPerTrial(inStack, ... + responseWindow, spontWindow, timeAxis) +%GETMAXABSPERTRIAL gets as the name suggests, the maximum absolute +%amplitude per trial in the given input stack +% Detailed explanation goes here, later. + +%% +my_xor = @(x) xor( x(:,1), x(:,2) ); +% Size of the stack: Number of signals (e.g. nose, left whisker), number of +% time samples, and number of triggers (trials) +[Nts, Ntg] = size(inStack); + +% Preallocating the output: Maximum Absolute Value Per Trial +mavpt = zeros(Ntg, 1); + +% Validation for time axis. If the axis doesn't correspond to the stack, +% then we cannot continue. +if Nts ~= length(timeAxis) + fprintf(1, "Time axis not the same size as the time dimension of the stack!\n"); + fprintf(1, "Please, verify they are the same size!\n"); + return +end +% Response and spontaneous periods for all trials +responseFlags = my_xor( timeAxis(:) >= responseWindow ); +spontaneousFlags = my_xor( timeAxis(:) >= spontWindow ); + +% mavpt = max(abs(inStack(responseFlags, :)-median(inStack,1))); +bl_lvl = median( inStack(spontaneousFlags,:), 1 ); +[mavpt, ps] = max( abs( inStack(responseFlags,:) - bl_lvl ) ); +% mavpt = arrayfun(@(mp, tr) ... +% inStack(find(responseFlags,1,'first')+mp-1, tr), ps(:), (1:Ntg)'); +mxT = timeAxis(ps+find(responseFlags,1,"first")-1); +end \ No newline at end of file diff --git a/Emilio/AKK/plotThetaProgress.m b/Emilio/AKK/plotThetaProgress.m new file mode 100644 index 0000000..68c3bb3 --- /dev/null +++ b/Emilio/AKK/plotThetaProgress.m @@ -0,0 +1,29 @@ +function [probFigs] = plotThetaProgress(logMat, thSet, sNames, varargin) +%UNTITLED3 Summary of this function goes here +% Detailed explanation goes here +%% +p = inputParser; + +addRequired(p, 'logMat', @(x) islogical(x{:})) +addRequired(p, 'thSet', @(x) isvector(x{:})) +addRequired(p, 'sNames', @(x) ~isempty(x)) +addParameter(p, 'showPlots', true, @(x) islogical(x) & numel(x) == 1) + +parse(p, logMat, thSet, sNames, varargin{:}) + +logMat = p.Results.logMat; +thSet = p.Results.thSet; +sNames = p.Results.sNames; +showPlots = p.Results.showPlots; + +probFigs = gobjects(size(logMat,2),1); +for cs = 1:size(logMat,2) + probFigs(cs) = figure('Visible', showPlots); + plot(thSet{cs}, sum(logMat{cs})/size(logMat{cs},1),... + "DisplayName", sNames(cs)) + lgnd = legend("show"); set(lgnd, "Box", "off", "Location", "best"); + ylabel("Trial proportion"); set(gca, "Box", "off", "Color", "none"); + ylim([0,1]); +end +end + diff --git a/Emilio/DefenceProbabilityOnRoller.m b/Emilio/DefenceProbabilityOnRoller.m new file mode 100644 index 0000000..bee67a9 --- /dev/null +++ b/Emilio/DefenceProbabilityOnRoller.m @@ -0,0 +1,101 @@ +fnOpts = {'UniformOutput', false}; +en2cm = ((2*pi)/((2^15)-1))*((14.85/2)^2)*rollFs; +[Nts, NTa] = size(vStack); +[ms, bs] = lineariz([1, Nts], timeLapse(2), timeLapse(1)); +% Stack time axis --> st T x +stTx = (1:Nts)'*ms + bs; +% Spontaneous logical flag. +spontFlag = stTx < 0; +% No previous movement before nor after the stimulus +rmsTh = 0.85; +% Logical Flag to exclude trials with 'too much movement' before or after +% the trigger. +excludeFlag = rms(vStack(spontFlag,:)) > rmsTh | rms(vStack) > 0.9; +% Previous movement before +% excludeFlag = rms(vStack(spontFlag,:)) < 0.85; + +delayFlags = true(NTa,1); Nccond = 1; +% Number of triggers (Number of alignment points) Na excluding the +% indicated trials. +Na = sum(delayFlags & ~excludeFlag(:)); + +% Loop to get the maximum value of the roller velocity. +rngRollSpeed = cell(Nccond,1); +responseWindow = [0, 0.4]; +responseFlags = stTx >= responseWindow(1) & stTx <= responseWindow(2); +for ccond = 1:Nccond + rngRollSpeed{ccond} =... + max(abs(vStack(responseFlags, delayFlags(:, ccond) & ~excludeFlag(:))))'; +end +% Maximum number of trials +maxNt = max(cellfun(@numel, rngRollSpeed)); +% Placing the trial's maximum speed in a matrix +speedsMat = cellfun(@(x) cat(1, x, nan(maxNt - size(x,1),1)),... + rngRollSpeed, fnOpts{:}); speedsMat = cat(2, speedsMat{:}); +speedsMat = speedsMat * en2cm; +% Cutting on different thresholds for all trials +thetaSpeed = 0.1:0.1:3; +moveFlag = speedsMat > reshape(thetaSpeed,1,1,[]); +probMove = sum(moveFlag)./Na; probMove = squeeze(probMove); +probFig = figure; plot(thetaSpeed, probMove'); ylim([0,1]) +set(gca, "Box", "off", "Color", "none") +consCondNames = arrayfun(@(x) x.name, Conditions(consideredConditions),fnOpts{:}); +lgnd = legend(consCondNames); set(lgnd, "Box", "off", "Location", "best") +ylabel("Trial proportion / Movement probability") +xlabel("Speed threshold \theta [cm/s]") +title("Trial proportion with elicited movement") +%% Save? +sveFigAns = questdlg("Save figure?", "Save", "Yes", "No", "Yes"); +probFigName = ... + sprintf('Movement probability EX%.2f RW%.1f - %.1f s',... + rmsTh, responseWindow); +if strcmpi(sveFigAns, "Yes") + saveFigure(probFig, fullfile(figureDir, probFigName), 1) +end +%% Bar plotting +condSubs = listdlg("ListString", arrayfun(@(x) x.name, Conditions, fnOpts{:}),... + "SelectionMode", "multiple"); +thS = listdlg("ListString", string(thetaSpeed'), "SelectionMode", "single"); +if isempty(condSubs) || isempty(thS) + return +end +% Table with the successful trials in the first column. +tbl = [probMove(condSubs, thS).*Na(condSubs)',... + abs(probMove(condSubs, thS).*Na(condSubs)' - Na(condSubs)')]; +% Chi squared test +sumCol = sum(tbl)'; sumFil = sum(tbl,2)'; +multSum = (sumCol * sumFil)'; esperado = multSum / sum(tbl(:)); +resChi = ((tbl - esperado).^2)./esperado; resChi = sum(resChi(:)); +pChi = chi2pdf(resChi,1); pFih = Inf; +if all(size(tbl) == [2, 2]) + [~, pFih] = fishertest(tbl); +end +% Plotting the proportions and test results +barFig = figure; bar(probMove(:,thS), "EdgeColor", "none"); +yHeight = max(probMove(condSubs, thS))*1.05; +hold on; plot(condSubs, yHeight * ones(size(condSubs,2),1),... + 'LineWidth', 1, "Color", 'k') +signStr = 'n.s.'; +if pChi < 5e-3 || pFih < 5e-3 + signStr = '***'; +elseif pChi < 1e-2 || pFih < 1e-2 + signStr = '**'; +elseif pChi < 5e-2 || pFih < 5e-2 + signStr = '*'; +end +text(mean(condSubs), yHeight, signStr, "HorizontalAlignment", "center",... + "VerticalAlignment", "bottom"); +xticklabels(consCondNames); ylim([0,(yHeight >= 1)*1.1 + (yHeight < 1)*1]); +set(get(barFig,"Children"), "Box", "off", "Color", "none") +title(sprintf('Movement probability \\theta:%.1f cm/s', thetaSpeed(thS))) +ylabel("Trial proportion / Movement probability") +%% Save? +sveFigAns = questdlg("Save figure?", "Save", "Yes", "No", "Yes"); +strFormat = 'Movement probability bar TH%.1f cmps EX%.2f RW%.1f - %.1f s'; +barFigName = sprintf(strFormat, thetaSpeed(thS), rmsTh, timeLapse); +if strcmpi(sveFigAns, "Yes") + saveFigure(barFig, fullfile(figureDir, barFigName), 1) +end + +%% +% xticklabels({'P+L','P','L'}) \ No newline at end of file diff --git a/Emilio/Ephysroller_relationship.m b/Emilio/Ephysroller_relationship.m new file mode 100644 index 0000000..67a8260 --- /dev/null +++ b/Emilio/Ephysroller_relationship.m @@ -0,0 +1,72 @@ +%% Trial by trial ephys-roller speed relationship +% PSTH per unit per trial, per condition. +PSTH_unit_trial = getPSTH_perU_perT(relativeSpkTmsStruct, configStructure); + +% Median of firing rate in the responsive window (evoked) +respFlag = psthTx(:) > responseWindow; +respFlag = xor(respFlag(:,1), respFlag(:,2)); +evoked_median_unit_fr = cellfun(@(x) squeeze(median(x(:, respFlag, :), 2)), ... + PSTH_unit_trial, fnOpts{:}); + +% Trial identification between behaviour and ephys +cum_ephys_trial_ID = arrayfun(@(x) cumsum(delayFlags(:,x)), ... + 1:size(delayFlags,2), fnOpts{:}); +cum_speed_trial_ID = arrayfun(@(x) cumsum(xdf(:,x)), ... + 1:size(xdf, 2), fnOpts{:}); +considered_ephys_trials = arrayfun(@(x) cum_ephys_trial_ID{x}(xdf(:,x)), ... + 1:size(xdf, 2), fnOpts{:}); + +[mdl, ~, r2] = cellfun(@(x, y, v) ... + arrayfun(@(u) fit_poly(x(v,u), y, 1), ... + (1:size(x,2))', fnOpts{:}), ... + evoked_median_unit_fr(:), mvpt, considered_ephys_trials(:), fnOpts{:}); + +linear_models = cellfun(@(x) cat(2, x{:}), mdl, fnOpts{:}); +r2 = cellfun(@(x) cat(2, x{:}), r2, fnOpts{:}); +%{ +for ccl = 1:Ncl + figure('Name', sprintf('%s', gclID{ccl})); + scatter(evoked_median_unit_fr{1}(considered_ephys_trials{1},ccl), ... + mvpt{1}, 'k.') +end +%} +%% Population encoding +PSTH_trial = cellfun(@(x) mean(x, 3), PSTH_unit_trial, fnOpts{:}); + +% population_model +evoked_median_pop_fr = cellfun(@(x, v) median(x(v,respFlag), 2), ... + PSTH_trial, considered_ephys_trials, fnOpts{:}); + +time_color = arrayfun(@(x) jet(sum(xdf(:,x))), 1:size(xdf,2), fnOpts{:}); +figure('Name','Population mean','Colormap',time_color{1}) +scatter(evoked_median_pop_fr{1}, mvpt{1}, [], time_color{1}, 'filled', ... + 'MarkerEdgeColor','none', 'MarkerFaceAlpha',0.7) +xlabel('Population firing rate [Hz]') +ylabel('Maximum roller speed [cm/s]') +title('Population firing rate vs roller speed') +cbObj = colorbar('Box', 'off'); cbObj.Label.String = 'Normalized time'; +set(gca, 'Color', 'none', 'Box', 'off', 'Clipping','off') + +%% +PSTH_unit_trial = getPSTH_perU_perT(relativeSpkTmsStruct, configStructure); +PSTH_trial = cellfun(@(x) mean(x, 3), PSTH_unit_trial, fnOpts{:}); +%% +%rastClrMap = jet(sum(lruIdx)); +clCount = 1; axs = gobjects(2); +for ccl = find(lruIdx)' + figure("name", sprintf("%s",gclID{ccl})) + axs(1) = subplot(1,2,1); + for ct = considered_ephys_trials{1}' + scatter(axs(1), relativeSpkTmsStruct(1).SpikeTimes{ccl,ct}, ... + repmat(ct, size(relativeSpkTmsStruct(1).SpikeTimes{ccl,ct}, 2),1), ... + [], 'k', 'filled', 'MarkerEdgeColor','none') + hold on + end + clCount = clCount + 1; + axs(2) = subplot(1,2,2); + imagesc(axs(2), 1e3*behTx, considered_ephys_trials{1}, ... + squeeze(vStack(:,:,xdf(:,1)))') + axis("xy") + colormap(bwg_cm(128)) + linkaxes(axs, "y") +end \ No newline at end of file diff --git a/Emilio/FigureReconsA.m b/Emilio/FigureReconsA.m new file mode 100644 index 0000000..b022ecb --- /dev/null +++ b/Emilio/FigureReconsA.m @@ -0,0 +1,68 @@ +data_path = "Z:\Emilio\SuperiorColliculusExperiments\Roller\Batch18_ephys\MC\GADi43\240227_C+F_2200"; +load( fullfile( data_path, "Regression CW-800.00-800.00ms " + ... + "DW-100.00-100.00 BZ5.00.mat"), 'DX', 'mdlAll_ind', 'params') +load( fullfile( data_path, "ephys_E1", ... + "GADi43_C+F_2200 RW20.00-200.00 SW-300.00--120.00 " + ... + "VW-300.00-400.00 ms PuffAll (unfiltered) RelSpkTms.mat"), ... + 'relativeSpkTmsStruct' ) +fnOpts = {'UniformOutput', false}; +vec2trials = @(x) reshape( x, params.Nb, params.Nr, params.Ns ); +bpn_abb = {'SWM', 'SWF', 'NWM', 'NWF', 'WA', 'S', 'N', 'RS'}; +m = 1e-3; k = 1e3; +nox = @(x) set( get( x, 'XAxis' ), 'Visible', 'off' ); +lnOpts = {'Marker', '|', 'MarkerSize', 12, 'LineStyle', 'none', 'Color', 'k'}; +%% Auxiliary variables for decisions and plotting +rel_win = params.relative_window; +bin_size = params.bin_size; + +mdl_mu = squeeze( mean( mdlAll_ind, 2 ) ); +y_trials = vec2trials( DX{1} ); +y_pred = DX{2} * mdl_mu; +y_ptrials = vec2trials( y_pred ); +trial_tx = (rel_win(1) + bin_size/2):bin_size:(rel_win(2) - bin_size/2); + +SSEt = squeeze( sum( ( y_trials - y_ptrials ).^2, 1 ) ); +SSTt = squeeze( sum( ( y_trials - mean( y_trials, 1 ) ).^2, 1 ) ); +r_sq_trials = 1 - (SSEt./SSTt); + +% Decide based on which trial has the highest R²: trial 6, NWM (3) +[~, ord] = sort( r_sq_trials, "descend" ); +rst = relativeSpkTmsStruct(1).SpikeTimes; +%% +f = figure( "Color", "w" ); t = createtiles( f, 4, 1 ); +ax = gobjects( 3, 1 ); + +ax(1) = nexttile( t ); +line( ax(1), k*trial_tx, y_trials(:,6,3), 'LineWidth', 2, 'Color', 0.15*ones(1,3) ) +cleanAxis(ax(1)); nox(ax(1)); +yticklabels( ax(1), yticks(ax(1))-90 ) +ylabel( ax(1), 'Angle [°]'); ytickangle( ax(1), 90 ) + +ax(2) = nexttile( t, [2,1] ); hold( ax(2), "on" ) +Nu = size( rst, 1 ); +Npu = 15; +if Npu > Nu + Npu = Nu; +end +ct = 1; +for cu = round(linspace(1, Nu, Npu)) + if cu > Nu + break + end + rst_aux = rst{cu,6}; + line( ax(2), k*rst_aux, ct+zeros( size( rst_aux, 2 ), 1 ), lnOpts{:} ) + ct = ct + 1; +end +nox(ax(2)); cleanAxis(ax(2)); +ylabel(ax(2), 'Units'); ytickangle( ax(2), 90 ) + +ax(3) = nexttile( t ); +line( ax(3), k*trial_tx, y_ptrials(:,6,3), 'LineWidth', 2, 'Color', [0,0.6,0] ) +cleanAxis(ax(3)); +yticklabels( ax(3), yticks(ax(3))-90 ) +ylabel( ax(3), 'Angle [°]'); ytickangle( ax(3), 90 ) +set( ax, 'TickDir', 'out' ) +linkaxes( ax, 'x'); xlim( ax(3), [-200, 400] ) +xlabel( ax(3), 'Time [ms]' ) + +xline( ax(3), -200:20:400, 'Color', 0.5*ones(1,3) ) diff --git a/Emilio/Habituation_prep_4_R.m b/Emilio/Habituation_prep_4_R.m new file mode 100644 index 0000000..a12f42a --- /dev/null +++ b/Emilio/Habituation_prep_4_R.m @@ -0,0 +1,16 @@ +miceArray = []; +for cm = 1:numel(resTable) + [Np, Ns] = size(resTable{cm}.BehaviourIndices); + sess_id = repmat(1:Ns, Np, 1); sess_id = sess_id(:); + mouse_id = cm + zeros(Np*Ns, 1); + puff_strength = ... + cellfun(@(f) textscan(f, "%fbars"), ... + resTable{cm}.Properties.RowNames); + if any(cellfun(@isempty, puff_strength)) + puff_strength{cellfun(@isempty, puff_strength)} = -1; + end + puff_strength = repmat(cat(1, puff_strength{:}), Ns, 1); + bi_values = resTable{cm}.BehaviourIndices(:); + miceArray = [miceArray; + mouse_id, sess_id, puff_strength, bi_values]; +end \ No newline at end of file diff --git a/Emilio/ISIUnderRefracPeriodProportion.m b/Emilio/ISIUnderRefracPeriodProportion.m new file mode 100644 index 0000000..2da90ac --- /dev/null +++ b/Emilio/ISIUnderRefracPeriodProportion.m @@ -0,0 +1,16 @@ +fnOpts = {'UniformOutput', false}; +rpTh = [0.5, 1, 2, 5, 10]; + +dataDir = 'Z:\Emilio\SuperiorColliculusExperiments\Anaesthetised\M24_220224_SC-E1_IO&Freq'; +load(fullfile(dataDir, "SC_CVG_all_channels.mat"), "sortedData", "fs") +clInfo = readClusterInfo(fullfile(dataDir, "cluster_info.tsv")); +clIsi = cellfun(@diff, sortedData(clInfo.ActiveUnit==1,2), fnOpts{:}); + +isiPC = cellfun(@(x) 100*sum(x<(rpTh*1e-3))/numel(x), clIsi, fnOpts{:}); +isiPC = cat(1,isiPC{:}); + +gclID = clInfo.Properties.RowNames(clInfo.ActiveUnit==1); +gclID = cellfun(@(x) cat(2, '5.',x), gclID, fnOpts{:}); + +save(fullfile(dataDir, "Refractory periods 5.mat"), "clIsi", "isiPC", ... + "gclID", "rpTh") \ No newline at end of file diff --git a/Emilio/MC_summary.m b/Emilio/MC_summary.m new file mode 100644 index 0000000..eba8049 --- /dev/null +++ b/Emilio/MC_summary.m @@ -0,0 +1,48 @@ +getMI = @(a, c) (c - a) ./ (a + c); +getRC = @(a, c) (c - a) ./ c; +normDist = makedist("Normal", "mu", 0, "sigma", 0.075); + +singFlag = arrayfun(@(m) arrayfun(@(s) string(s.Type) == "single", ... + m.Sessions), mice, fnOpts{:}); +behTable = arrayfun(@(m, f) {m.Sessions(f{:}).DataTable}, mice, singFlag, ... + fnOpts{:}); + +behMI = cellfun(@(m) cellfun(@(t) arrayfun(@(c) ... + getMI(t{1,"BehaviourIndices"}, t{c,"BehaviourIndices"}), ... + 2:size(t,1)), ... + m, fnOpts{:}), ... + behTable, fnOpts{:}); + +behMI = cellfun(@(m) cat(1, m{:}), behMI, fnOpts{:}); + +behRC = cellfun(@(m) cellfun(@(t) arrayfun(@(c) ... + getRC(t{1,"BehaviourIndices"}, t{c,"BehaviourIndices"}), ... + 2:size(t,1)), ... + m, fnOpts{:}), ... + behTable, fnOpts{:}); + +behRC = cellfun(@(m) cat(1, m{:}), behRC, fnOpts{:}); +%% +figure; boxplot([cat(1, behMI{1:2}); padarray(behMI{3}, [0,2], nan, "both")], ... + "Notch", "on"); hold on +title('Modulation index on behaviour index for MC\rightarrowSC excitation') +for cm = 1:3 + auxBMI = padarray(behMI{cm}, [0,(6 - size(behMI{cm},2))/2], nan, "both"); + xpos = reshape(repmat(1:size(auxBMI,2), size(auxBMI, 1 ) , 1 ) + ... + random(normDist, size( auxBMI ) ), [], 1); + scatter(xpos, auxBMI(:), "filled") +end +yline(0, 'k:') +xticklabels(condNames{1}{1}(2:end)) +ylabel('MI(BI)'); xlabel('Conditions') +set(gca, 'Box', 'off', 'Color', 'none') +ylim([-1,1]) +%% +figure; boxplot(cat(1, behMI{4:6}), "Notch", "on"); hold on +title('Modulation index on behaviour index for MC\rightarrowSC inhibition') +for cm = 4:6 + scatter(ones(size(behMI{cm}))+random(normDist, size(behMI{cm})), ... + behMI{cm}, "filled") +end +xticklabels(condNames{4}{1}(2)) +yline(0, 'k:'); set(gca, 'Box', 'off', 'Color', 'none') diff --git a/Emilio/MUA_LFP_estimation.m b/Emilio/MUA_LFP_estimation.m new file mode 100644 index 0000000..04772bc --- /dev/null +++ b/Emilio/MUA_LFP_estimation.m @@ -0,0 +1,139 @@ +base_path = "Z:\PainData\Corrected_Channel_Map\"; +exp_paths = base_path + ["L6\Cortex\20.8.21\KS2", ... + "L6\Cortex\26.8.21", ... + "Dual\L6_VPL\S1\Nblocks0\th10_2\AUC0pt7\Lambda10", ... + "L6\Cortex\m8", ... + "L6\Cortex\27.8.21"]; +anaesthesia_states = cell(size(exp_paths)); +fullpath = @(f) fullfile(f.folder,f.name); +load_data = @(f) load(fullpath(f)); +%% +for ce = 1:numel(exp_paths) + data_dir = exp_paths(ce); + spike_file = dir(fullfile(data_dir,"*All_all_channels_clean.mat")); + if numel(spike_file)~=1 + spike_file = dir(fullfile(data_dir, "*all_channels_clean.mat")); + end + load(fullpath(spike_file)); + + cond_file = dir(fullfile(data_dir,'*analysis.mat')); + load(fullpath(cond_file)) + Ns = numel(Triggers.Laser); + exp_duration = Ns/fs; + unit_flag = sum([sortedData{:,3}] == [1;2]) > 0; + spike_times = sortedData(unit_flag,2); + all_spikes = cat(1, spike_times{:}); + + bin_files = dir(fullfile(data_dir,'*.bin')); + %{ + if numel(bin_files)>=1 + bin_files = bin_files([bin_files.bytes]==max([bin_files.bytes])); + exp_duration = (bin_files.bytes/(64*2))/fs; + else + exp_duration = max(all_spikes)*1.001; + end + %} + fr_per_unit = cellfun(@(x) numel(x)/exp_duration, spike_times); + %% + th = 0; + bin_size = 0.1; + bins = 0:bin_size:exp_duration; + centres = mean([bins(1:end-1);bins(2:end)]); + + muah = histcounts(all_spikes, bins); + [b1,a1] = butter(3,[0.8,1.8]*2*bin_size,'bandpass'); + [blow, alow] = butter(2,[0.0005, 0.01]*2*bin_size,'bandpass'); + bouts = filtfilt(b1, a1, muah); + pad_size = ceil(1000/bin_size); % 1000 seconds + extra_bout = padarray(bouts(:), pad_size, "symmetric", "pre"); + brain_state = filtfilt(blow, alow, abs(extra_bout)); + brain_state(1:pad_size) = []; + anaesthesia_states{ce} = brain_state; + %% + + sync_flag = zscore(brain_state)>th; + anaObj = StepWaveform(sync_flag,1/bin_size); + anaObj.MinIEI = 1; + oo_ana_triggers = anaObj.Triggers*bin_size; + tx = ((1:Ns)-0.5)/fs; + ana_signal = false(1,Ns); + for cr = 1:size(oo_ana_triggers,1) + ana_signal = ana_signal | ... + (tx>=oo_ana_triggers(cr,1) & tx<=oo_ana_triggers(cr,2)); + end + Triggers.Anaesthesia = ana_signal; + cons_cond = contains({Conditions.name}, 'block', 'IgnoreCase', true); + sync_flag = cell(sum(cons_cond),1); + ii = 1; + for ccond = find(cons_cond) + trig_times = Conditions(ccond).Triggers/fs; + sync_state = any(trig_times(:,1) >= oo_ana_triggers(:,1)' & ... + trig_times(:,1) < oo_ana_triggers(:,2)', 2); + sync_flag{ii} = sync_state; + ii = ii + 1; + end + save(fullpath(cond_file), 'sync_flag', 'Triggers', '-append') + %% + f = figure('PaperSize', [21, 14.8], 'Units', 'centimeters', ... + 'Position', [2 2 21 14.8]); + t = createtiles(f,1,5); + axs(1) = nexttile(t,1,[1,4]); + plot(axs(1), centres, muah, 'Color', (2/3)*ones(1,3), ... + 'DisplayName', 'MUA histogram'); + ylabel(axs(1),'MUA counts') + yyaxis(axs(1), "right"); + plot(axs(1), centres, zscore(brain_state), 'k','LineWidth', 2, ... + 'DisplayName', 'LFP estimation'); + ylabel(axs(1), '1\ Hz envelope', 'Interpreter', 'latex') + y = axs(1).YLim; + y2 = repmat(y(:), [1,size(oo_ana_triggers,1)]); + y2 = padarray(y2,2,"symmetric","post"); + x = padarray(oo_ana_triggers,[0,1],"symmetric","both")'; + patch(axs(1),x,y2,ones(size(x)), 'EdgeColor', 'none', ... + 'FaceColor', 'b', 'FaceAlpha', 0.15, ... + 'DisplayName', 'Synchronised state') + legend(axs(1), 'Box', 'off', 'Color', 'none', 'Location', 'best', ... + 'AutoUpdate', 'off') + yline(axs(1), th, 'k--', 'LineWidth', 1) + xlabel(axs(1), 'Time [s]'); axs(1).YAxis(2).Color=0.15*ones(1,3); + xlim(axs(1),[0,exp_duration]) + + axs(2) = nexttile(t); + jit_width = 0.33; + sc = scatter(axs(2), rand(numel(spike_times),1) * jit_width + ... + 1-(jit_width/2), fr_per_unit, 'k.', 'MarkerEdgeAlpha', 0.75, ... + 'displayname', 'Unit fr'); + hold(axs(2),"on") + boxchart(axs(2),ones(size(fr_per_unit)),fr_per_unit,"Notch","on", ... + "BoxEdgeColor","k","BoxFaceColor","none","MarkerStyle","none") + ln = plot(axs(2),[1,1]+[-1, 1]*jit_width, mean(fr_per_unit)*[1,1], "b", ... + "LineWidth", 1.5, "DisplayName", ... + sprintf("Mean %.2g Hz", mean(fr_per_unit))); + ylabel(axs(2), 'Firing rate [Hz]') + legend(axs(2), [sc,ln],'Box', 'off', 'Color', 'none', ... + 'Location', 'best', 'AutoUpdate', 'off') + set(get(axs(2),"XAxis"),"Visible", "off") + set(axs,"TickDir","out") + cleanAxis(axs); + title(t,data_dir,"interpreter","none") + %% + saveFigure(f, fullfile(data_dir,'LFP estimation and fr'), ... + true, false) + close(f) + clearvars -except exp_paths ce anaesthesia_states fullpath load_data +end + +%% +prop_th = 1/2; +nas = cellfun(@(x) zscore(x), anaesthesia_states, 'UniformOutput', false); +ths = -3.5:0.01:3.5; +props = zeros(numel(ths), numel(nas)); +ii = 1; +for cth = ths + prop = cellfun(@(x) sum(x>cth)/numel(x), nas); + props(ii,:) = prop; + ii = ii + 1; +end + +opt_th = props>(prop_th*0.99) & props <(prop_th*1.01); +th = mean(ths(any(opt_th,2))); \ No newline at end of file diff --git a/Emilio/PSTH_percluster_pertrial.m b/Emilio/PSTH_percluster_pertrial.m new file mode 100644 index 0000000..5089e27 --- /dev/null +++ b/Emilio/PSTH_percluster_pertrial.m @@ -0,0 +1,25 @@ +histOpts2 = {'BinLimits', [0,0.3], 'BinWidth', 1e-3, 'Normalization', ... + 'probability'}; +binSizes = logspace(-4,-2,100); +b_var = zeros(ceil(diff(histOpts2{2})/histOpts2{4}),length(binSizes),'single'); +ii = 1; +for bz = binSizes + binSize = bz; vw = configStructure.Viewing_window_s; + histOpts = {'BinLimits', vw, 'BinWidth', binSize, ... + 'Normalization', 'count'}; + fnOpts = {'UniformOutput', false}; + psth_u = arrayfun(@(v) cellfun(@(u) histcounts(u, histOpts{:}), ... + relativeSpkTmsStruct(1).SpikeTimes(v,:), fnOpts{:}), ... + 1:size(relativeSpkTmsStruct(1).SpikeTimes,1), fnOpts{:}); + psth_u = cellfun(@(x) cat(1, x{:}), psth_u, fnOpts{:}); + psth_u = cat(3, psth_u{:}); + + %mdl_psth_tx = fit_poly([1,size(psth_u, 2)], vw + [1,-1]*binSize/2, 1); + %psth_tx = ( ( 1:size(psth_u, 2) )'.^[1,0] ) * mdl_psth_tx; + %plot(psth_tx, mean(psth_u, [1,3])) + b_var(:,ii) = histcounts(mean(psth_u, [1,3]), histOpts2{:}); + ii = ii + 1; + % figure; imagesc( psth_tx, [], psth_u) +end +figure; imagesc(1:length(binSizes), histOpts2{2}, log10(b_var+1e-6)) +axis xy; colormap(inferno) \ No newline at end of file diff --git a/Emilio/Plot_fst_and_BIestimations.m b/Emilio/Plot_fst_and_BIestimations.m new file mode 100644 index 0000000..ebee0ed --- /dev/null +++ b/Emilio/Plot_fst_and_BIestimations.m @@ -0,0 +1,37 @@ +jitDist = makedist("Normal", "mu", 0, "sigma", 0.1); +vw = [-10, 50]*1e-3; binSize = 5e-4; +histOpts = {'BinLimits', vw, 'BinWidth', binSize, ... + 'Normalization', 'probability'}; +uH = arrayfun(@(c) ... + arrayfun(@(u) ... + histcounts( (params.alpha(:,u,c) + params.g(:,c))*fs_scale + fs_centre, ... + histOpts{:} ), 1:Ncl, fnOpts{:}), 1:Ncond, fnOpts{:}); +uH = cellfun(@(c) cat(1, c{:}), uH, fnOpts{:}); +uH = cat(3, uH{:}); + +[Ncl, Nt, Ncond] = size(uH); + +mdl = fit_poly([1,Nt], vw + [1,-1]*(binSize/2), 1); +tx = ( (1:Nt)'.^[1,0] ) * mdl; + +clrMap = [zeros(1,3); inferno(5)]; +for cu = 1:Ncl + figure; + contour(ones(Nt,1)*(1:6), tx * ones(1,Ncond), squeeze(uH(cu,:,:)), 5); + colormap(inferno(10)) + hold on; + plot(1:6, ... + squeeze(mean( params.alpha(:,cu,:) + reshape(params.g,2e3,1,6), 1 ) ) * ... + fs_scale + fs_centre, "k", "LineWidth", 2) + + arrayfun(@(c) scatter( c+random( jitDist, ... + size([firstSpkStruct(c).FirstSpikeTimes{cu,:}]) ), ... + ... + [firstSpkStruct(c).FirstSpikeTimes{cu,:}], ... + "MarkerEdgeColor","k", "MarkerFaceColor",clrMap(c,:), ... + "MarkerFaceAlpha",0.5), 1:Ncond) + ylim([0,50]*1e-3); set(gca, "Box", "off", "Color", "none"); + yticklabels(yticks*1e3); ylabel('Latency [ms]') + xticks(1:Ncond); xticklabels(string({relativeSpkTmsStruct.name})) + set(get(gca, "YAxis"), "Scale", "log") +end \ No newline at end of file diff --git a/Emilio/Plot_rasters_dirty.m b/Emilio/Plot_rasters_dirty.m new file mode 100644 index 0000000..fc315be --- /dev/null +++ b/Emilio/Plot_rasters_dirty.m @@ -0,0 +1,36 @@ + +figure; hold on +Nu = size(relativeSpkTmsStruct(1).SpikeTimes, 1); +clrMap = hsv(Nu); +for ccond = 1:length(relativeSpkTmsStruct) + for cu = 15 + for ct = 1:size(relativeSpkTmsStruct(ccond).SpikeTimes, 2) + spks_cu_ct = [relativeSpkTmsStruct(ccond).SpikeTimes{cu, ct}]'; + tid = repmat(ct, length(spks_cu_ct), 1); + cid = repmat(cu, length(spks_cu_ct), 1); + scatter3( spks_cu_ct, tid, cid, [], ... + 'MarkerFaceColor', clrMap(cu,:), 'MarkerEdgeColor', 'none', ... + 'MarkerFaceAlpha', 3/4) + end + end +end + +%% +clrMap = [zeros(1,3); lines(length(relativeSpkTmsStruct)-1)]; +cu = 18; +figure; hold on +tc = 1; +for ccond = 1:3 + for ctr = 1:size(relativeSpkTmsStruct(ccond).SpikeTimes, 2) + cspks = relativeSpkTmsStruct(ccond).SpikeTimes{cu,ctr}; + if ~isempty(cspks) + line(cspks, tc, 'Marker', 'o', ... + 'MarkerEdgeColor', 'none', ... + 'MarkerFaceColor', clrMap(ccond,:)) + end + tc = tc + 1; + end +end +yticks(Na/2 + cumsum([0, Na(1:end-1)])); +yticklabels({relativeSpkTmsStruct.name}) +ylim([0, sum(Na)+1]) \ No newline at end of file diff --git a/Emilio/Reg_vs_RST.m b/Emilio/Reg_vs_RST.m new file mode 100644 index 0000000..f327b0e --- /dev/null +++ b/Emilio/Reg_vs_RST.m @@ -0,0 +1,137 @@ +mID = 1; +Nm = numel( reg_mice ); +Ns = sum( arrayfun(@(m) numel( m.Sessions ), reg_mice ) ); +rst_reg_dt = zeros( Ns, 5 ); +rsq_dt = zeros( Ns, 10 ); +regMiceNames = [reg_mice.Name]'; +rstMiceNames = [rst_mice.Name]'; +cr = 1; +for cm = 1:numel(reg_mice) + sID = 1; + for cs = 1:numel(reg_mice(cm).Sessions) + dt = rst_mice(cm).Sessions(cs).DataTable; + rst_reg_dt(cr,:) = [cm, cs, dt.NUnits, dt.Proportion]; + dt = reg_mice(cm).Sessions(cs).DataTable; + rsq_dt(cr,:) = [cm, cs, dt.R_squared]; + cr = cr + 1; + end +end + +%% + +f = figure( "Color", "w" ); +createtiles = @(f,r,c) tiledlayout( f, r, c, 'TileSpacing', 'Compact', ... + 'Padding', 'tight'); +cleanAxis = @(x) set( x, "Box", "off", "Color", "none" ); +t = createtiles( f, 3, 1 ); + +ax = gobjects(3, 1); pl = ax; +clrMap = [0,0,0; 0.45*ones(1,3); 0,0,0]; +x = 0:0.05:0.8; +samples = [1e4, 1]; +ylbls = ["Recorded units", "Responsive 20 - 50 ms", "Responsive 50 - 200 ms"]; +for cp = 1:3 + ax(cp) = nexttile( t ); + pl(cp) = plot( ax(cp), rsq_dt(:,3), rst_reg_dt(:,2+cp), 'Marker', '.', ... + 'Color', clrMap(cp,:), 'MarkerSize', 16, 'LineStyle', 'none' ); + cleanAxis( ax(cp) ); + ylabel( ax(cp), ylbls(cp) ); + ft = fitlm( rsq_dt(:,3), rst_reg_dt(:, 2+cp ), 'poly1' ); + cCI = coefCI( ft ); sig = (ft.Coefficients{:,"Estimate"} - cCI(:,1))/2; + slope = makedist( "Normal", "mu", ft.Coefficients{"x1","Estimate"}, ... + "sigma", sig(2) ); + intercept = makedist( "Normal", "mu", ... + ft.Coefficients{"(Intercept)","Estimate"}, "sigma", sig(1) ); + y = random( slope, samples ) * x + random( intercept, samples ); + CI = quantile( y, [0.025, 0.975], 1 ); + hold( ax(cp), 'on' ); lobjs = line( x, CI', 'Color', 0.35*ones(1,3), ... + 'LineStyle', '--' ); + lobjs(1) = []; + lobjs = cat(1, lobjs, line( x, predict( ft, x' ), 'Color', 0.35*ones(1,3) )); + legend( lobjs, {'CI 95%', sprintf('Fit %.3f r^2', ... + ft.Rsquared.Ordinary)}, Box="off", Color='none', Location='best' ); +end +xlabel( ax(cp), "R^2_{SWM}" ) +set( ax, 'TickDir', 'out' ) +arrayfun(@(x) set( get( x, 'XAxis' ), 'Visible', 'off' ), ax(1:2) ) +%% +Bsel = 1; +Nex = 3; +f = figure("Color", "w" ); +t = createtiles( f, Nex+2, 1 ); + +getSEM = @(x) [mean( x, 2 ), std( x, 1, 2 )./sqrt( size( x, 2 ) )]; +mat2ptch = @(x) [x(1:end,:)*[1;1]; x(end:-1:1,:)*[1;-1]]; +phOpts = {'EdgeColor', 'none', 'FaceAlpha', 0.25, 'FaceColor'}; + +clrMap = brighten( blues(2), -0.8 ); +ax = gobjects( Nex+1, 1 ); +[~, ord] = sort( rmse_ltrials, "ascend" ); +cpi = 1; +for cp = ord(1:round(end/Nex):end) + ax(cpi) = nexttile( t ); + set( ax(cpi), 'NextPlot', 'add' ); cleanAxis( ax(cpi) ); + line( ax(cpi), tr_tx, squeeze( y_ltrials(:,cp,Bsel) ), 'Color', 0.15*ones(1,3), 'LineWidth', 0.5 ) + line( ax(cpi), tr_tx, squeeze( y_lptrials(:,cp,Bsel) ), 'Color', 0.55*ones(1,3), 'LineWidth', 0.5 ) + yticklabels( ax(cpi), yticks(ax(cpi)) - 90) + ax(cpi).YTickLabelRotation = 90; + set( get( ax(cpi), 'XAxis' ), 'Visible', 'off' ) + cpi = cpi + 1; +end +ax(cpi) = nexttile( t, [2, 1] ); +cleanAxis( ax(cpi) ) +sem_lshadow = getSEM( y_ltrials ); +sem_lpshadow = getSEM( y_lptrials ); +line(ax(cpi), tr_tx, squeeze( mean( y_ltrials(:,:,Bsel), 2 ) ), 'LineWidth', 2, 'Color', clrMap(1,:) ) +line(ax(cpi), tr_tx, squeeze( mean( y_lptrials(:,:,Bsel), 2 ) ), 'LineWidth', 2, 'Color', clrMap(2,:) ) +patch( ax(cpi), [tr_tx(:); flip( tr_tx(:) )], mat2ptch( sem_lshadow(:,:,Bsel) ), 1, phOpts{:}, clrMap(1,:) ) +patch( ax(cpi), [tr_tx(:); flip( tr_tx(:) )], mat2ptch( sem_lpshadow(:,:,Bsel) ), 1, phOpts{:}, clrMap(2,:) ) +yticklabels( ax(cpi), yticks(ax(cpi)) - 90); ylabel( ax(cpi), 'Angle [°]') +xticklabels( ax(cpi), xticks( ax(cpi) )*1e3 ); +xlabel(ax(cpi), 'Time [ms]') +legend( ax(cpi), flip({'Predicted', 'Observed'}), 'Box', 'off', 'Color', 'none', ... + 'Location', 'best', 'AutoUpdate', 'off' ); +set( ax, 'TickDir', 'out' ) +xline(ax(cpi), 0, 'k--') +xline( ax(cpi), [-0.1, 0.2], 'b') + +saveFigure( f, fullfile( "Z:\Emilio\SuperiorColliculusExperiments\" + ... + "Roller\Batch7_ephys\MC\GADi52\220808_C+F_2100\ephys_E1\Figures", ... + "Example reconstruction laser" ), true, false ) + +%% +f = figure("Color", "w"); +t = createtiles( f, 3, 1); +my_xor = @(x) xor( x(:,1), x(:,2) ); +lnOpts = {'LineStyle', 'none', 'Marker', '|', 'Color', 0.15*ones(1,3)}; +tlSelect = 9; +vWin = [-0.3,0.5]; +[~, ord2] = sort( cellfun(@(x) size(x, 1), spike_times ), "descend" ); +cni = 1; + +ax = gobjects( 2, 1 ); +ax(1) = nexttile( t, [2, 1] ); cleanAxis( ax(1) ); ylabel( ax(1), 'Units') +for cn = ord2(1:round(end/30):end)' + spkIdx = my_xor( spike_times{cn} > time_limits(tlSelect,:) ); + line( spike_times{cn}(spkIdx), cni+zeros(sum(spkIdx),1), lnOpts{:} ) + cni = cni + 1; +end +set( get( ax(1), 'XAxis' ), 'Visible', 'off' ) +bin_size = 0.02; +ax(2) = nexttile(t); +behIdx = my_xor( btx > time_limits(tlSelect,:) ); +line(ax(2), btx(behIdx), behSignals( behIdx, 1 ) ) +linkaxes( ax, 'x' ) +xline(ax(2), time_limits(tlSelect,1)+(bin_size/2):bin_size: ... + time_limits(tlSelect,2)-(bin_size/2), 'LineWidth', 0.1, 'Color', 0.5*ones(1,3) ) +xlim( ax(2), mean(time_limits(tlSelect,:)) + vWin) +xline( ax(2), mean( time_limits(tlSelect,:)), 'k--' ) +set( ax, 'TickDir', 'out' ) +xtv = mean( time_limits(tlSelect,:) ) + vWin; +xticks( ax(2), xtv(1):0.1:xtv(2) ); xlabel( ax(2), 'Time [ms]' ) +xticklabels( ax(2), round( ( xticks( ax(2) ) - xtv(1) + vWin(1) ) *1e3 ) ) +yticklabels( ax(2), yticks(ax(2)) - 90); ylabel( ax(2), 'Angle [°]') + +saveFigure( f, fullfile( "Z:\Emilio\SuperiorColliculusExperiments\" + ... + "Roller\Batch7_ephys\MC\GADi52\220808_C+F_2100\ephys_E1\Figures", ... + "Regression method" ), true, false ) \ No newline at end of file diff --git a/Emilio/Rescue_trig.m b/Emilio/Rescue_trig.m new file mode 100644 index 0000000..37910c3 --- /dev/null +++ b/Emilio/Rescue_trig.m @@ -0,0 +1,7 @@ +for ct = lSub(lSub(:,1) > 1e3*fs,:)' + trig(2,ct(1):ct(2)) = trig(2, ct(1):ct(2)) + 2^15 - 230; +end +%% +for ct = (Conditions(2).Triggers(Conditions(2).Triggers(:,1)>expSamples(1),:) - expSamples(1))' + trig(2,ct(1):ct(2)) = trig(2, ct(1):ct(2)) + int16(2^15 - 230); +end \ No newline at end of file diff --git a/Emilio/RollerCorrection.m b/Emilio/RollerCorrection.m new file mode 100644 index 0000000..413be12 --- /dev/null +++ b/Emilio/RollerCorrection.m @@ -0,0 +1,128 @@ +fnOpts = {"UniformOutput", false}; +vidTx = (0:length(sPx)-1)'/fr; +%expTx = (0:length(trig)-1)'/fs; + +timeLapse = [-2, 4]; +consideredConditions = 3:5; +% All triggers in the experiment without overlap +allTSubs = sort(cat(1,Conditions(consideredConditions).Triggers)); +% Aligning the roller signal to the highest temporal correlation. +[xcr, lgs] = xcorr(sPx, vf); [~, mxLg] = max(xcr); delSamples = lgs(mxLg); +del = delSamples / fsRoll; +vf_corrected = cat(1, zeros(delSamples, 1), vf(:)); +% Creating the stack for the roller speed. Assumption: Acustic stimulation +% makes the mouse to walk backwards (or move the roller in any direction). +[~, vStack] = getStacks(false, allTSubs, 'on', timeLapse, fs, fsRoll,... + [], {vf_corrected}); [Ne, Nt, NTa] = size(vStack); +vStack = squeeze(vStack); +[ms, bs] = lineariz([1,size(vStack,1)], timeLapse(2), timeLapse(1)); +% Stack time axis +stTx = (1:size(vStack,1))' * ms + bs; spontFlag = stTx < 0; +excludeFlag = rms(vStack(spontFlag,:)) > 0.85 | rms(vStack) > 0.9; +plotEEGchannels(vStack(:,~excludeFlag)', [], diff(timeLapse), fsRoll,... + 1, abs(timeLapse(1))); +% Peaks and valleys for each trial. +cpts = getWaveformCriticalPoints(vStack, fsRoll); +cpts = cellfun(@(x) x + timeLapse(1), cpts, fnOpts{:}); +% Amplitude for each peak and valley +camp = arrayfun(@(x) interp1(stTx, vStack(:,x), cpts{x,1}),... + (1:size(vStack,2))', fnOpts{:}); +% Location for the critical point +[~, mxSub] = cellfun(@max, camp, fnOpts{:}); +dlTms = arrayfun(@(x) cpts{x,1}(mxSub{x}), (1:size(cpts,1))', fnOpts{:}); +ttms = allTSubs./fs; emptyCells = cellfun(@isempty, dlTms); +% For a given experimental time i.e. trigger time we estimate an assosiated +% delay for the Arduino board. +pts = [ttms(~emptyCells), cat(1,dlTms{~emptyCells})]; +figure; scatter(pts(:,1), pts(:,2), "filled") +%% DE_jittering +Nccond = length(consideredConditions); +delayFlags = false(NTa,Nccond); chCond = 1; +counter2 = 1; +for ccond = consideredConditions + delayFlags(:,counter2) = ismember(allTSubs(:,1),... + Conditions(ccond).Triggers(:,1)); counter2 = counter2 + 1; +end +Na = sum(delayFlags,1); +%% RANSAC line estimation +n = 1; +[rmdl, inln] = boot_fit_poly([pts(:,1), pts(:,2)-0.5], n, (n+1)/size(pts,1),... + 2^17, 0.56); +%% RANSAC correction +Conditions_corrected = arrayfun(@(x) struct('name', Conditions(x).name,... + 'Triggers', Conditions(x).Triggers +... + round((Conditions(x).Triggers./fs) .* rmdl(1) + rmdl(2))*fs),... + (1:length(Conditions))'); + +%% RANSAC threshold estimation +n = 1; xpts = [0;pts(end,1)]; +for cth = 0.5:0.01:0.6 + [rmdl, inln] = boot_fit_poly(pts, n, (n+1)/size(pts,1), 2^17, cth); + if islogical(inln) + figure; gscatter(pts(:,1), pts(:,2), inln); title(sprintf('%.4f',cth)) + hold on; plot(xpts, xpts.^(n:-1:0) * rmdl) + end +end +%% Special case for GAD49 frequency stimulation +Conditions_corrected = arrayfun(@(x) struct('name', Conditions(x).name, 'Triggers', Conditions(x).Triggers + ... + round(cat(1, (Conditions(x).Triggers(Conditions(x).Triggers(:,1)<(675.8*fs),:)/fs) .* mdl_1(1) + mdl_1(2) - 1, ... + (Conditions(x).Triggers(Conditions(x).Triggers(:,1) >= (675.8*fs) & Conditions(x).Triggers(:,1) < (887.3*fs),:)/fs) .* mdl_2(1) + mdl_2(2) - 1.3, ... + (Conditions(x).Triggers(Conditions(x).Triggers(:,1) >= (887.3*fs) & Conditions(x).Triggers(:,1) < size(expTx,1),:)/fs) .* mdl_3(1) + mdl_3(2) - 1)*fs)),... + (1:length(Conditions))'); + +%% Producing the final figures +en2cm = ((2*pi)/((2^15)-1))*((14.85/2)^2)*fsRoll; +miinOpts = {"Color", 'k', "LineWidth", 2}; +vMean = zeros(length(stTx), Nccond); vcount = 1; +vFigs = gobjects(Nccond+1, 1); +for ccond = consideredConditions + [~, vStack] = getStacks(false, Conditions_corrected(ccond).Triggers, 'on',... + timeLapse, fs, fsRoll, [], {vf_corrected}); vStack = squeeze(vStack); + % No movement before nor after + excludeFlag = rms(vStack(spontFlag,:)) > 0.85 | rms(vStack) > 0.9; + % Movement before + % excludeFlag = rms(vStack(spontFlag,:)) < 0.85; + % No exclusion + % excludeFlag = false(size(vStack,2),1); + % No movement before but only after the trigger + % excludeFlag = rms(vStack(spontFlag,:)) > 0.85 | rms(vStack) < 0.9; + % No movement before + % excludeFlag = rms(vStack(spontFlag,:)) > 0.85; + if all(excludeFlag) + continue + end + plotEEGchannels(vStack(:, ~excludeFlag)', '', diff(timeLapse),... + fsRoll, 1, abs(timeLapse(1))); + vFigs(vcount) = figure; + plot(stTx, vStack(:, ~excludeFlag)*en2cm, "Color", 0.65*ones(3,1)); + vMean(:,vcount) = mean(vStack(:, ~excludeFlag),2)*en2cm; + hold on; plot(stTx, vMean(:,vcount), miinOpts{:}) + set(gca, "Box", "off", "Color", "none", "Clipping", "off"); + title(Conditions(ccond).name) + xlabel("Time [s]"); ylabel("Roller speed [cm/s]") + vcount = vcount + 1; +end +%% +arrayfun(@(x) saveFigure(vFigs(x), fullfile(figureDir,... + sprintf('RollerSpeed_%s VW%.1f - %.1f s (no movement)',... + Conditions(x+2).name, timeLapse)),1, 1), (1:3)'); +vFigs(4) = figure; plot(stTx, vMean); +lgnd = legend(arrayfun(@(x) Conditions(x).name, consideredConditions, fnOpts{:})); +set(lgnd, "Box", "off", "Location", "best") +set(gca, "Box", "off", "Color", "none") +xlabel("Time [s]"); ylabel("Roller speed [cm/s]") +title("Condition comparison") +saveFigure(vFigs(4), fullfile(figureDir,... + sprintf(... + 'Roller mean speed comparison_3 conditions VW%.1f - %.1f s (no movement)',... + timeLapse)),1, 1); +%% +figure; +for cm = unique(mSubs)' + scatter3(coeff(mSubs == cm, 1), coeff(mSubs == cm, 2),... + coeff(mSubs == cm, 3), "filled", "DisplayName", num2str(cm),... + "MarkerFaceAlpha", 0.8) + if cm == 1 + hold on + end +end \ No newline at end of file diff --git a/Emilio/Spike_times_for_R.m b/Emilio/Spike_times_for_R.m new file mode 100644 index 0000000..f27e458 --- /dev/null +++ b/Emilio/Spike_times_for_R.m @@ -0,0 +1,31 @@ +fnOpts = {'UniformOutput', false}; +% N_spikes_pcond = arrayfun(@(c) sum(arrayfun(@(u) ... +% numel([relativeSpkTmsStruct(c).SpikeTimes{u,:}]), ... +% 1:size(relativeSpkTmsStruct(c).SpikeTimes,1))), ... +% 1:length(relativeSpkTmsStruct)); +N_spikes_ptrial_u25 = arrayfun(@(c) cellfun(@(ut) numel(ut), ... + relativeSpkTmsStruct(c).SpikeTimes(25,:)), ... + 1:length(relativeSpkTmsStruct), fnOpts{:}); +% (Neuron), condition, trial, spike time. No neuron information now because +% trying only with unit X (25). +unit_spike_times = zeros(sum([N_spikes_ptrial_u25{:}]), 3); + +dat_i = 1; dat_j = 1; +for ccond = 1:length(relativeSpkTmsStruct) + for cu = 25 + cond_id = repmat(ccond, sum(N_spikes_ptrial_u25{ccond}), 1); + for ctr = 1:size(relativeSpkTmsStruct(ccond).SpikeTimes,2) + if N_spikes_ptrial_u25{ccond}(ctr) + trial_id = repmat(ctr, N_spikes_ptrial_u25{ccond}(ctr), 1); + curr_i = dat_i:N_spikes_ptrial_u25{ccond}(ctr)+dat_i-1; + unit_spike_times(curr_i,2:3) = [trial_id, ... + relativeSpkTmsStruct(ccond).SpikeTimes{cu,ctr}']; + dat_i = dat_i + N_spikes_ptrial_u25{ccond}(ctr); + else + continue + end + end + unit_spike_times(dat_j:sum(N_spikes_ptrial_u25{ccond})+dat_j-1,1) = ... + cond_id; dat_j = dat_j + sum(N_spikes_ptrial_u25{ccond}); + end +end \ No newline at end of file diff --git a/Emilio/Spontaneous_eOPN3_Figure3.m b/Emilio/Spontaneous_eOPN3_Figure3.m new file mode 100644 index 0000000..b911509 --- /dev/null +++ b/Emilio/Spontaneous_eOPN3_Figure3.m @@ -0,0 +1,124 @@ +%% +fnOpts = {'UniformOutput', false}; +my_xor = @(x) xor( x(:,1), x(:,2) ); +ovwFlag = false; + +getMI = @(x,d) diff(x, 1, d)./sum(x, d).*(sum(x,d)>0) + (1.*(sum(x,d)==0 | sum(x,d)< 1e-12)); +% getMI = @(ctr, cnd) (cnd - ctr) ./ ( (cnd + ctr).*((cnd + ctr)>0) + (1.*((cnd + ctr)==0 | (cnd + ctr)<1e-9) )); +load(['C:\Users\jefe_\seadrive_root\Emilio U\Für meine Gruppen\GDrive ' ... + 'GrohLab\Projects\00 SC\SC Behaviour\Figures\Figure 3\Matlab ' ... + 'figures\Data\Spontaneous FR.mat']) +expandName = @(x) fullfile( x.folder, x.name ); + +sessions_per_mouse = arrayfun(@(x) dir( fullfile( expandName( x ) ) ), ... + animalFolders, fnOpts{:} ); +sessions_per_mouse = cellfun(@(x) x([x.isdir] & ... + ~ismember( {x.name}, {'.','..'} )), sessions_per_mouse, fnOpts{:} ); +Nsess = sum( cellfun(@numel, sessions_per_mouse ) ); +% 1. Mouse and session number, 2. spike count per spontaneous window, 3. +% spontaneous window limits, 4. firing frequency per window per unit, 5. +% treatment start, 6. conditions indicator, 7. median firing rate per unit, +% 8. p-value of modulation index +results = cell(Nsess, 8 ); +cr = 1; +for ca = 1:numel(animalFolders) + fprintf(1, 'Animal: %s\n', animalFolders(ca).name ) + sessions = sessions_per_mouse{ca}; + ce = 1; + for cs = 1:numel(sessions) + results{cr,1} = [ca,cs]; + fprintf(1, 'Session: %s\n', sessions(cs).name ); + spkFN = dir( fullfile( expandName( sessions(cs) ), 'ephys*', ... + '*spike_times.mat' ) ); + anFN = dir( fullfile( expandName( sessions(cs) ), '*', ... + '*analysis.mat' ) ); + if ~isempty( spkFN ) + load( expandName(spkFN ) ) + else + fprintf(1, "%s: ", sessions(cs).name ) + fprintf(1, 'No spike_times file found!\n') + fprintf(1, 'Skipping!\n') + continue + end + if ~isempty( anFN ) + load( expandName(anFN ), 'Conditions', 'fs' ) + else + fprintf(1, "%s: ", sessions(cs).name ) + fprintf(1, 'No analysis file found!\n') + fprintf(1, 'Skipping!\n') + continue + end + FigureDir = fullfile( spkFN.folder, "Figures" ); + Nu = numel( spike_times ); + Topn = Conditions(2).Triggers(1,1)/fs; + Texp = Conditions(4).Triggers(end,2)/fs; + allTrigs = sortrows( cat(1, Conditions(2:4).Triggers ), 1, "ascend" ); + + lmts = [[0; allTrigs(:,2)/fs + 0.2], [allTrigs(:,1)/fs;Texp]]; + lmts(diff( lmts, 1, 2 ) < 0,:) = []; + + treat_sub = find( lmts(:,1) < Topn, 1, "last" ); + Nt = size(lmts, 1); + Nsp = cellfun(@(u) arrayfun(@(t) sum( my_xor( u < lmts(t,:) ) ), ... + 1:size( lmts, 1 ) ), spike_times, fnOpts{:} ); + Nsp = cat( 1, Nsp{:} ); + + fr_sp = Nsp ./ diff( lmts, 1, 2 )'; + + cndID = [ones( 1, treat_sub), 1+ones(1, Nt-treat_sub)]; + cndID = repmat( cndID, Nu, 1 ); + + medFr = arrayfun(@(c) median( fr_sp(:,cndID(1,:)==c), 2 ), 1:2, fnOpts{:} ); + medFr = cat(2, medFr{:}); + + medMI = getMI( medFr, 2 ); + p = signrank( medMI ); + + results(cr,2:8) = {Nsp, ... Spike cound per window per unit + lmts, ... Window limits + fr_sp, ... Firing rate per unit per window + treat_sub, ... Subscript when treatment started + cndID(1,:), ... Condition membership indicator + medFr, ... Median firing rate per unit over each condition windows + [p, median( medMI( ~isnan( medMI ) ) )] }; % p-value and median MI for all units per condition. + cr = cr + 1; + %% + + f = figure("Color", "w"); t = createtiles( f, 1, 4 ); + ax(1) = nexttile(t,[1,3]); + + loglog(ax(1), medFr(:,1), medFr(:,2), "k." ); + hold(ax(1), 'on'); line(ax(1), xlim, xlim, 'Color', 'k', 'LineStyle', ':' ) + xticklabels(ax(1), xticks(ax(1)) ); yticklabels(ax(1), yticks(ax(1)) ) + xlabel(ax(1), 'Control [Hz]', 'interpreter', 'latex' ); + ylabel(ax(1), 'eOPN3 [Hz]', 'interpreter', 'latex' ) + axis( ax(1), 'square' ) + ytickangle(ax(1), 90 ) + + ax(2) = nexttile(t); + boxchart(ax(2), getMI(medFr, 2), 'Notch', 'on', ... + 'BoxFaceColor', 0.15*ones(1,3), 'JitterOutliers', 'on', ... + 'MarkerStyle', '.', 'MarkerColor', 0.15*ones(1,3) ) + text( ax(2), 1, -1.1, sprintf("$p=%.3g$", p), 'Interpreter', 'latex', ... + "HorizontalAlignment", "center" ) + ylabel(ax(2), 'Decrease $\leftarrow$ Modulation index $\rightarrow$ Increase', ... + 'Interpreter', 'latex' ) + yline( ax(2) , 0, 'k:' ) + disappearAxis(ax(2)) + ylim( ax(2), [-1,1] ) + cleanAxis(ax); + set( ax, 'TickDir', 'out' ) + set( f, 'UserData', {cndID(1,:), medFr, medMI, p} ) + title(t, 'Spontaneous firing rate per unit', 'interpreter', 'latex') + saveFigure(f, fullfile( FigureDir, 'Spontaneous firing rate pre and post eOPN3' ), true, ovwFlag ) + end + close all + fprintf(1, 'Complete!\n' ) +end +%% +results( all( cellfun(@isempty, results ), 2 ), : ) = []; +rTable = cell2table( results, "VariableNames", {'ID', 'SpikeCounts', 'SpontaneousWindows', ... + 'FR', 'TreatmentStart', 'ConditionID', 'MedianFR_pu', 'p_MedianTot'} ); +save( "c:\Users\jefe_\seadrive_root\Emilio U\Für meine Gruppen\GDrive " + ... + "GrohLab\Projects\00 SC\SC Behaviour\Figures\Figure 3\Matlab " + ... + "figures\Data\Spontaneous FR.mat", "rTable", "animalFolders" ) \ No newline at end of file diff --git a/Emilio/Synchrony.m b/Emilio/Synchrony.m new file mode 100644 index 0000000..4579228 --- /dev/null +++ b/Emilio/Synchrony.m @@ -0,0 +1,26 @@ +time_scale = 2.5e-3; delta_t = 5e-4; synchTrial = []; + +for ccond = 1:length(relativeSpkTmsStruct) + for ctr = 1:size(relativeSpkTmsStruct(ccond).SpikeTimes,2) + spks_in_trial = [relativeSpkTmsStruct(ccond).SpikeTimes{:,ctr}]; + c_end = vw(1) + time_scale; c_init = vw(1); + while c_end <= vw(2) + spks_in_cons = spks_in_trial(spks_in_trial > c_init & ... + spks_in_trial < c_end); + if ~isempty(spks_in_cons) && numel(spks_in_cons) > 1 + dm = pdist([spks_in_cons(:)], "euclidean"); + if numel(dm) > 1 + lnorm_fit = fitdist(dm(:), "Normal"); + synchTrial = [synchTrial; ccond, ctr, ... + mean([c_init, c_end]), ... + log(lnorm_fit.ParameterValues(1))]; + else + synchTrial = [synchTrial; ccond, ctr, ... + mean([c_init, c_end]), log(dm(:))]; + end + end + c_init = c_init + delta_t; + c_end = c_end + delta_t; + end + end +end \ No newline at end of file diff --git a/Emilio/TRNClassification.m b/Emilio/TRNClassification.m new file mode 100644 index 0000000..8497c72 --- /dev/null +++ b/Emilio/TRNClassification.m @@ -0,0 +1,76 @@ +%% TRN clustering for response +Ngcl = sum(wruIdx); +chMap = readNPY(fullfile(dataDir,'channel_map.npy')); +chPos = readNPY(fullfile(dataDir,'channel_positions.npy')); +orthMat = [0,1;-1,0]; +ptsPer = 0.2; +if sum(wruIdx) < 10 + ptsPer = 0.9; +end + +featMat = [-1./mdls(:,2), qDiff, -1./cmdls(wruIdx,2), cqDiff(wruIdx)].*1e3; + +rmdl = boot_fit_poly(featMat(:,[1,2]), 1, ptsPer, 100); +rn = getHesseLineForm(rmdl); +rI = featMat(:,[1,2]) * orthMat * rn; + +amdl = boot_fit_poly(featMat(:,[3,4]), 1, ptsPer, 100); +an = getHesseLineForm(amdl); +aI = featMat(:,[3,4]) * orthMat * an; + +trnMat = [rI, aI]; [trnMat_w, whMat, trnMu] = whitenPoints(trnMat); +try + gm = fitgmdist(trnMat_w, 2); + trnFlag = gm.cluster(trnMat_w); +catch + fprintf(1,'Time to classify with your eyes\n') + figure; scatter(trnMat(:,1), trnMat(:,2), '.'); + text(trnMat(:,1), trnMat(:,2), pclID) + return +end + +trnSubs = find(ismember(gclID, pclID(trnFlag))); sqrSb = sqrt(length(trnSubs)); +trnSubs_psth = find(trnFlag); +apeFig = figure('Name', 'Auto-correlation & PSTH', 'Color',[1,1,1]); +for csp = 1:size(trnSubs,1) + subplot(ceil(sqrSb),ceil(sqrSb),csp); + plot(corrTx, acorrs(trnSubs(csp),:)) + yyaxis right; plot(btx, PSTH(trnSubs_psth(csp),:,1)) + title(sprintf('Cluster %s', pclID{trnSubs_psth(csp)})) +end +legend({'Auto-correlogram','Cluster PSTH'}) +%% Saving the TRN classification +clInfo = addvars(clInfo, false(size(clInfo,1),1), 'NewVariableNames', 'TRN'); +clInfo{gclID(trnSubs),'TRN'} = true; +writeClusterInfo(clInfo,fullfile(dataDir,'cluster_info.tsv')); +%% Plotting the +% Placing the TRN channels on the probe +probeFig = figure('Name','Probe','Color',[1,1,1]); +probAx = axes('Parent', probeFig); +plot(chPos(:,1), chPos(:,2),'LineStyle', 'none', 'Marker', 'o',... + 'MarkerEdgeColor', ones(1,3)*0.8) +[~,trnChanSub] = find(chMap' == clInfo{clInfo.TRN==1,'ch'}); +set(probAx,'Box','off'); set(get(probAx,'XAxis'),'Color','none'); +probAx.YAxis.Color = 'none'; +hold(probAx, 'on'); scatter(probAx, chPos(trnChanSub,1),... + chPos(trnChanSub,2), 'MarkerFaceColor', [0,0.6,0],... + 'MarkerEdgeColor', 'none') +% Placing the electrode name on the probe +text(35:250:(250*3)+35, -20*ones(4,1),... + arrayfun(@(x) sprintf('Shank %d',x), (1:4)', 'UniformOutput', 0),... + 'HorizontalAlignment', 'center', 'Color', [0.7,0.7,0.7]) +probLeg = legend({'E1-channels','TRN cells'' locations'}); +probLeg.Box = 'off'; probLeg.Color = 'none'; probLeg.Orientation = 'horizontal'; +probLeg.Location = 'north'; +probeFig = configureFigureToPDF(probeFig); +probFile = fullfile(figureDir, 'Probemap TRN cluster''s position'); +if ~exist([probFile,'.fig'],'file') + savefig(probeFig, [probFile, '.fig']) +end +if ~exist([probFile,'.pdf'],'file') + print(probeFig, [probFile, '.pdf'],'-dpdf','-fillpage') +end +if ~exist([probFile,'.emf'],'file') + print(probeFig, [probFile, '.emf'],'-dmeta') +end + diff --git a/Emilio/Unit_localozation.m b/Emilio/Unit_localozation.m new file mode 100644 index 0000000..83439ec --- /dev/null +++ b/Emilio/Unit_localozation.m @@ -0,0 +1,46 @@ + +[pg_centered, xy_centre, xy_scale] = zscore( [xcoords, ycoords] ); +[ptp_centered, ptp_centre, ptp_scale] = zscore( ptp, 0, 'all' ); + + +tic +% Create optimization variables +theta_hat = optimvar("theta_hat",1,4,"LowerBound",-10,"UpperBound",10); + +% Set initial starting point for the solver +initialPoint.theta_hat = theta; + +% Create problem +problem = optimproblem; + +% Define problem objective +problem.Objective = fcn2optimexpr(@objectiveFcn,theta_hat,ptp_centered,... + pg_centered); + +% Display problem information +show(problem); + +% Solve problem +[solution,objectiveValue,reasonSolverStopped] = solve(problem,initialPoint); + +% Display results +disp(solution) +disp(reasonSolverStopped) +disp(objectiveValue) +toc + +function objective = objectiveFcn(theta_hat, ptp_centered, pg_centered) +% This function should return a scalar representing an optimization objective. + +% Example: Concession stand profit +% revenue = 3*soda + 5*popcorn + 2*candy; +% cost = 1*soda + 2*popcorn + 0.75*candy; +% objective = revenue - cost; % profit + +% Edit the lines below with your calculations. +for c = 1:size( ptp_centered, 2 ) + objective = sum( ( ptp_centered(:,c) - ... + ( theta_hat(1)./ sqrt( sum( (pg_centered - theta_hat([2,3])).^2, 2 ) + ... + theta_hat(4).^2 ) ) ).^2, 'all' ); +end +end \ No newline at end of file diff --git a/Emilio/aux_space.m b/Emilio/aux_space.m new file mode 100644 index 0000000..68d18e5 --- /dev/null +++ b/Emilio/aux_space.m @@ -0,0 +1,129 @@ +aux_mat = zeros( sum( any( ~isnan( PTX_mat(:,[2,3],:) ), 1 ), 'all' ), 2 ); +cm = 1; +for cm2 = 1:size( PTX_mat, 3 ) + dat_flag = any( ~isnan( PTX_mat(:,[2,3],cm2) ), 1 ); + if any( dat_flag ) + dat_flag2 = any( ~isnan( PTX_mat(:,[2,3],cm2) ), 2 ) ; + aux_mat(cm,:) = PTX_mat(dat_flag2,[true, dat_flag],cm2); + cm=cm+1; + end +end +%% +fowFlag = false; +batch_dir = fullfile( "Z:\Emilio\SuperiorColliculusExperiments\Roller\Batch6_beh+Muscimol" ); +exp_dirs = dir( fullfile( batch_dir, "Musc", "*", "*" ) ); +exp_dirs( any( string( {exp_dirs.name} ) == ["."; ".."], 1 ) ) = []; +get_full_path = @(x) fullfile( x.folder, x.name); +m = 1e-3; +for cep = 1:numel(exp_dirs) + exp_path = get_full_path( exp_dirs(cep) ); + eph_path = dir( fullfile( exp_path, "ephys*" ) ); + eph_path( ~[eph_path.isdir] ) = []; + beh_path = fullfile( exp_path, "Behaviour" ); + + if ~isempty( eph_path ) + eph_path = get_full_path( eph_path ); + figure_path = fullfile( eph_path, "Figures" ); + af_path = dir( fullfile( eph_path , "*analysis.mat" ) ); + af_path = get_full_path( af_path ); + elseif exist( beh_path, "dir" ) + af_path = get_full_path( dir( fullfile( beh_path, "*analysis.mat") ) ); + figure_path = fullfile( beh_path, "Figures" ); + else + beh_path = exp_path; + af_path = get_full_path( dir( fullfile( beh_path, "*analysis.mat") ) ); + figure_path = fullfile( beh_path, "Figures" ); + end + + [~, af_name] = fileparts( af_path ); + expName = extractBefore(af_name, "analysis"); + load( af_path, "Conditions", "fs") + + fnOpts = {'UniformOutput', false}; + axOpts = {'Box','off','Color','none'}; + lgOpts = cat( 2, axOpts{1:2}, {'Location','best'} ); + + ldFlag = false; + try + load( get_full_path( dir( fullfile( beh_path, "RollerSpeed*.mat" ) ) ), "fr") + catch + ldFlag = true; + end + + ctrl_cond = contains( {Conditions.name}, "Control puff", "IgnoreCase", true ); + ptx_cond = contains( {Conditions.name}, 'musc', 'IgnoreCase', true ); + if sum(ptx_cond)==0 + fprintf(1, 'Did not find PTX condition!! Continuing!!') + fprintf(1, '%s', exp_path ) + continue + end + consCond = find( or(ctrl_cond, ptx_cond) ); + Nccond = length( consCond ); + prmSubs = nchoosek( 1:Nccond, 2 ); + + pairedStimFlags = arrayfun(@(c) any( ... + Conditions(1).Triggers(:,1) == ... + reshape( Conditions(c).Triggers(:,1), 1, [] ), 2 ), consCond, fnOpts{:} ); + pairedStimFlags = cat( 2, pairedStimFlags{:} ); + + consCondNames = string( { Conditions( consCond ).name } ); + + [behRes, behFig_path, behData, aInfo] = analyseBehaviour( beh_path, ... + "ConditionsNames", cellstr( consCondNames ), ... + "PairedFlags", pairedStimFlags, ... + "FigureDirectory", figure_path, ... + "ResponseWindow", [25, 350] * m, ... + "ViewingWindow", [-450, 500] * m, ... + "figOverWrite", fowFlag ); + + if ~exist( "fr", "var" ) && ldFlag + try + load( get_full_path( dir( fullfile( beh_path, "RollerSpeed*.mat" ) ) ), "fr") + catch + load( fullfile( beh_path, 'RollerFrameRate.mat' ), 'fr' ) + end + ldFlag = false; + end + + [pAreas, ~, behAreaFig] = createBehaviourIndex(behRes); + behMeasures = string({behAreaFig.Name}); + biFigPttrn = behMeasures+"%s"; + biFigPttrn = arrayfun(@(s) sprintf(s, sprintf(" %s (%%.3f)", ... + consCondNames ) ), biFigPttrn ); + + for it = 1:numel(behMeasures) + behRes = arrayfun(@(bs, ba) setfield( bs, ... + strrep( behMeasures(it), " ", "_" ), ba), behRes(:), pAreas(:,it) ); + end + + arrayfun(@(f) set( f, 'UserData', behRes ), behAreaFig ); + + biFN = arrayfun(@(s) sprintf( biFigPttrn(s), pAreas(:,s) ), 1:numel(behMeasures) ); + + arrayfun(@(f, fn) saveFigure(f, fullfile(behFig_path, fn), true, fowFlag), ... + behAreaFig(:), biFN(:) ); + + close all +end + +%% +% batch_dir = fullfile( "Z:\Emilio\SuperiorColliculusExperiments\Roller\Batch13_beh" ); +% ss_fp = dir( fullfile( batch_dir, "PTX\WT*\*PTX\Behaviour\BehaviourResults*.mat" ) ); +batch_dir = fullfile( "Z:\Emilio\SuperiorColliculusExperiments\Roller\Batch12_ephys.e" ); +ss_fp = dir( fullfile( batch_dir, 'MC', 'vGlut*', '*PTX*', '*', 'BehaviourResults V-0.45 - 0.50 s R25.00 - 350.00 ms.mat' ) ); +Nf = numel( ss_fp ); +bl_changes = zeros( Nf, 8 ); +my_zscore = @(x, m, s) ( x - m ) ./ ( s .* (s~=0) + 1 .* (s==0) ); +for cf = 1:Nf + load( get_full_path( ss_fp(cf) ), "behRes" ) + c_idx = contains( {behRes.ConditionName}, 'control puff', 'IgnoreCase', true ); + p_idx = contains( {behRes.ConditionName}, 'ptx', 'IgnoreCase', true ); + c = {behRes(c_idx).Results.Baseline}; + c = cat( 1, c{:} ); + t = {behRes(p_idx).Results.Baseline}; + t = cat( 1, t{:} ); + [cz, centre, scale] = zscore( c , 0, 2 ); + bl_changes(cf,:) = median( my_zscore( t, centre, scale ), 2 ) - ... + median( cz, 2 ); +end +bs_n = string( {behRes(1).Results.BehSigName} ); diff --git a/Emilio/compareR2_preVSpost_reconstruction.m b/Emilio/compareR2_preVSpost_reconstruction.m new file mode 100644 index 0000000..a36fa21 --- /dev/null +++ b/Emilio/compareR2_preVSpost_reconstruction.m @@ -0,0 +1,176 @@ +%% +expandName = @(x) fullfile( x.folder, x.name ); +roller_path = "Z:\Emilio\SuperiorColliculusExperiments\Roller"; +%% +% mice_results = "Z:\Emilio\SuperiorColliculusExperiments\Roller\PoolFigures\MC-iegRNs"; +mice_results = fullfile(roller_path, "PoolFigures/MC-iegRNs/iRNs"); +% pool_fig_path = "Z:\Emilio\SuperiorColliculusExperiments\Roller\PoolFigures\MC-iegRNs\iRNs"; +pool_fig_path = mice_results; +r2_fp = dir( fullfile( mice_results,'*_gof.mat') ); +load( expandName( r2_fp ), 'mice' ) +%% +cellcat = @(x,d) cat( d, x{:} ); +bp_names = ["Stim-whisker mean", "Stim-whisker fan arc", ... + "Nonstim-whisker mean", "Nonstim-whisker fan arc", ... + "Interwhisker arc", "Symmetry", "Nose", "Roller speed"]; + +%% +Nm = numel( mice ); % Numer of mice +Nspm = arrayfun(@(x) numel( x.Sessions ), mice ); % Number of sessions per mouse +Nexp = sum( Nspm ); +r2_res_c = zeros( 3, 8, Nexp ); +r2_res_l = zeros( 3, 8, Nexp ); +ce = 1; +mouseID = zeros( Nexp, 1 ); +sessID = zeros( Nexp, 1 ); +for cm = 1:Nm + for cs = 1:Nspm(cm) + dt = mice(cm).Sessions(cs).DataTable; + r2 = dt.R_2_p_L; + r2_res_c(:,:,ce) = r2{1}; + r2_res_l(:,:,ce) = r2{2}; + mouseID(ce) = cm; + sessID(ce) = cs; + ce = ce + 1; + end +end +[Nep, Ns] = size( r2_res_c, [1,2] ); + +%% Control pre- and post-stimulus +% fnOpts = {'UniformOutput', false}; +tocol = @(x) x(:); +% r2_mean_c = cellcat( arrayfun(@(x) mean( r2_res_c(:,:,mouseID==x), 3 ), ... +% 1:Nm, fnOpts{:} ), 3 ); +% r2_mean_l = cellcat( arrayfun(@(x) mean( r2_res_l(:,:,mouseID==x), 3 ), ... +% 1:Nm, fnOpts{:} ), 3 ); +r2_mean_c = r2_res_c; r2_mean_l = r2_res_l; +%% +f = figure("Color", "w"); t = createtiles( f, 1, 1); +ax = nexttile( t ); +% bpID = repmat( ones( Nep, 1 ) * (1:Ns), 1, 1, Nm); +% preVSpostID = repmat( (1:Nep)' * ones( 1, Ns ), 1, 1, Nm ); +bpID = repmat( ones( Nep-1, 1 ) * (1:Ns), 1, 1, Nexp ); +preVSpostID = repmat( (1:Nep-1)' * ones( 1, Ns ), 1, 1, Nexp ); +% boxchart( ax, bpID(:), tocol( r2_mean_c ), 'GroupByColor', preVSpostID(:), ... +% 'Notch', 'on' ) +boxchart( ax, bpID(:), tocol( r2_mean_c(2:3,:,:) ), ... + 'GroupByColor', preVSpostID(:), 'Notch', 'on' ) +xline( ax, (1:Ns-1) + 1/2, '--', 'Color', 0.45*ones(1,3) ); +% legend( {'Overall', 'Pre', 'Post'}, "Box", "off", "Color", "none", ... +% "Location", "best", "AutoUpdate", "off" ) +legend( {'Pre', 'Post'}, "Box", "off", "Color", "none", ... + "Location", "best", "AutoUpdate", "off" ) +cleanAxis( ax ); ytickangle( ax, 90 ); set( ax, 'TickDir', 'out' ); +ylabel( ax, 'R²' ) +xticks( ax, 1:Ns ); xticklabels( ax, bp_names ); +xlim( ax, [1,Ns] + [-1,1]/2 ); +ylim( ax, [0, 1] ) +set( f, 'UserData', {r2_mean_c, bpID, preVSpostID, mouseID, sessID} ) +title( ax, 'Reconstruction R² for overall, pre-, and post-stimulus' ) + +%% Stats tests +p = arrayfun(@(x) signrank( squeeze( r2_mean_c(2,x,:) ), ... + squeeze( r2_mean_c(3,x,:) ) ), 1:Ns ); +fnOpts = {'UniformOutput', false}; +txOpts = {'HorizontalAlignment', 'center', 'VerticalAlignment', 'bottom'}; +astk = sum( p < [0.05, 0.01, 0.001]' ); +x = (1:Ns) + [-1;1]/4; +y = [1;1] * max( r2_mean_c(2:3,:,:), [], [3,1] ) * 1.05; +line( ax, x, y, 'Color', 'k' ) +txt = [arrayfun( @(a) replace( join( repmat("\ast", 1, a) ), " ", "" ), astk, fnOpts{:} ); +arrayfun(@(h) sprintf( "$p=%.3f$", h) , p)]; +%txt = arrayfun(@(s) replace( join( txt(:,s) ), " ", ""), 1:Ns ); +text( ax, mean( x, 1 ), y(1,:)+0.035, txt(1,:), txOpts{:}, "FontSize", 10 ) +text( ax, mean( x, 1 ), y(1,:), txt(2,:), txOpts{:}, "FontSize", 8, ... + "Interpreter", "latex" ) +%% +saveFigure( f, fullfile( pool_fig_path, ... + "Reconstruction R² overall, pre and post" ), true, true ) + +%% Laser ON out and in laser stimulation +% r2_mean_c = cellcat( arrayfun(@(x) mean( r2_res_c(:,:,mouseID==x), 3 ), ... +% 1:Nm, fnOpts{:} ), 3 ); +% r2_mean_l = cellcat( arrayfun(@(x) mean( r2_res_l(:,:,mouseID==x), 3 ), ... +% 1:Nm, fnOpts{:} ), 3 ); +% r2_mean_c = r2_res_c; r2_mean_l = r2_res_l; +f = figure("Color", "w"); t = createtiles( f, 1, 1); +ax = nexttile( t ); +% bpID = repmat( ones( Nep, 1 ) * (1:Ns), 1, 1, Nm); +% preVSpostID = repmat( (1:Nep)' * ones( 1, Ns ), 1, 1, Nm ); +bpID = repmat( ones( Nep-1, 1 ) * (1:Ns), 1, 1, Nexp ); +preVSpostID = repmat( (1:Nep-1)' * ones( 1, Ns ), 1, 1, Nexp ); +% boxchart( ax, bpID(:), tocol( r2_mean_c ), 'GroupByColor', preVSpostID(:), ... +% 'Notch', 'on' ) +boxchart( ax, bpID(:), tocol( r2_mean_l(2:3,:,:) ), ... + 'GroupByColor', preVSpostID(:), 'Notch', 'on' ) +xline( ax, (1:Ns-1) + 1/2, '--', 'Color', 0.45*ones(1,3) ); +% legend( {'Overall', 'Pre', 'Post'}, "Box", "off", "Color", "none", ... +% "Location", "best", "AutoUpdate", "off" ) +legend( {'Pre', 'Post'}, "Box", "off", "Color", "none", ... + "Location", "best", "AutoUpdate", "off" ) +cleanAxis( ax ); ytickangle( ax, 90 ); set( ax, 'TickDir', 'out' ); +ylabel( ax, 'R²' ) +xticks( ax, 1:Ns ); xticklabels( ax, bp_names ); +xlim( ax, [1,Ns] + [-1,1]/2 ); +ylim( ax, [0, 1] ) +set( f, 'UserData', {r2_mean_l, bpID, preVSpostID, mouseID, sessID} ) +title( ax, 'Reconstruction R² for overall, pre-, and post-stimulus' ) +%% +p = arrayfun(@(x) signrank( squeeze( r2_mean_l(2,x,:) ), ... + squeeze( r2_mean_l(3,x,:) ) ), 1:Ns ); +fnOpts = {'UniformOutput', false}; +txOpts = {'HorizontalAlignment', 'center', 'VerticalAlignment', 'bottom'}; +astk = sum( p < [0.05, 0.01, 0.001]' ); +x = (1:Ns) + [-1;1]/4; +y = [1;1] * max( r2_mean_l(2:3,:,:), [], [3,1] ) * 1.05; +line( ax, x, y, 'Color', 'k' ) +txt = [arrayfun( @(a) replace( join( repmat("\ast", 1, a) ), " ", "" ), astk, fnOpts{:} ); +arrayfun(@(h) sprintf( "$p=%.3f$", h) , p)]; +%txt = arrayfun(@(s) replace( join( txt(:,s) ), " ", ""), 1:Ns ); +text( ax, mean( x, 1 ), y(1,:)+0.035, txt(1,:), txOpts{:}, "FontSize", 10 ) +text( ax, mean( x, 1 ), y(1,:), txt(2,:), txOpts{:}, "FontSize", 8, ... + "Interpreter", "latex" ) + +%% Laser OFF vs Laser ON comparison +% r2_mean_c = cellcat( arrayfun(@(x) mean( r2_res_c(:,:,mouseID==x), 3 ), ... +% 1:Nm, fnOpts{:} ), 3 ); +% r2_mean_l = cellcat( arrayfun(@(x) mean( r2_res_l(:,:,mouseID==x), 3 ), ... +% 1:Nm, fnOpts{:} ), 3 ); +% r2_mean_c = r2_res_c; r2_mean_l = r2_res_l; +f = figure("Color", "w"); t = createtiles( f, 1, 1); +ax = nexttile( t ); +% bpID = repmat( ones( Nep, 1 ) * (1:Ns), 1, 1, Nm); +% preVSpostID = repmat( (1:Nep)' * ones( 1, Ns ), 1, 1, Nm ); +bpID = repmat( ones( Nep-1, 1 ) * (1:Ns), 1, 1, Nexp ); +preVSpostID = repmat( (1:Nep-1)' * ones( 1, Ns ), 1, 1, Nexp ); +% boxchart( ax, bpID(:), tocol( r2_mean_c ), 'GroupByColor', preVSpostID(:), ... +% 'Notch', 'on' ) +boxchart( ax, bpID(:), tocol( cat( 1, r2_mean_c(1,:,:), r2_mean_l(1,:,:) ) ), ... + 'GroupByColor', preVSpostID(:), 'Notch', 'on' ) +xline( ax, (1:Ns-1) + 1/2, '--', 'Color', 0.45*ones(1,3) ); +% legend( {'Overall', 'Pre', 'Post'}, "Box", "off", "Color", "none", ... +% "Location", "best", "AutoUpdate", "off" ) +legend( {'Laser OFF', 'Laser ON'}, "Box", "off", "Color", "none", ... + "Location", "best", "AutoUpdate", "off" ) +cleanAxis( ax ); ytickangle( ax, 90 ); set( ax, 'TickDir', 'out' ); +ylabel( ax, 'R²' ) +xticks( ax, 1:Ns ); xticklabels( ax, bp_names ); +xlim( ax, [1,Ns] + [-1,1]/2 ); +ylim( ax, [-1, 1] ) +set( f, 'UserData', {r2_mean_c, r2_mean_l, bpID, preVSpostID, mouseID, sessID} ) +title( ax, 'Reconstruction R² for overall, pre-, and post-stimulus for BC→iRNs' ) +%% +p = arrayfun(@(x) signrank( squeeze( r2_mean_c(1,x,:) ), ... + squeeze( r2_mean_l(1,x,:) ) ), 1:Ns ); +fnOpts = {'UniformOutput', false}; +txOpts = {'HorizontalAlignment', 'center', 'VerticalAlignment', 'bottom'}; +astk = sum( p < [0.05, 0.01, 0.001]' ); +x = (1:Ns) + [-1;1]/4; +y = [1;1] * max( cat(1, r2_mean_l(1,:,:), r2_mean_c(1,:,:) ), [], [3,1] ) * 1.05; +line( ax, x, y, 'Color', 'k' ) +txt = [arrayfun( @(a) replace( join( repmat("\ast", 1, a) ), " ", "" ), astk, fnOpts{:} ); +arrayfun(@(h) sprintf( "$p=%.2g$", h) , p)]; +%txt = arrayfun(@(s) replace( join( txt(:,s) ), " ", ""), 1:Ns ); +text( ax, mean( x, 1 ), y(1,:)*1.1, txt(1,:), txOpts{:}, "FontSize", 10 ) +text( ax, mean( x, 1 ), y(1,:), txt(2,:), txOpts{:}, "FontSize", 8, ... + "Interpreter", "latex" ) \ No newline at end of file diff --git a/Emilio/computeEphMI.m b/Emilio/computeEphMI.m new file mode 100644 index 0000000..e633978 --- /dev/null +++ b/Emilio/computeEphMI.m @@ -0,0 +1,50 @@ +fnOpts = {'UniformOutput', false}; +tocol = @(x) x(:); +my_cat = @(x,d) cat( d, x{:} ); +getMI = @(x,d) diff( x, 1, d ) ./ sum( x, d ); + +mi_lp = squeeze( getMI( lp_mu, 2 ) )'; +popMImean_lp = [mean( mi_lp(:, tx < 0.05), 2, "omitmissing"), ... + mean( mi_lp(:, tx >= 0.05), 2, "omitmissing")]; + +mi_lpu = cell( size( lPSTH ) ); +uMiMatMean = zeros( sum( cellfun(@(x) size( x, 1), lPSTH ) ), 3 ); +uMiMatMed = uMiMatMean; +ridx = cumsum( cellfun(@(x) size( x, 1), lPSTH ) ); +r = 1; +for cs = 1:numel( lPSTH ) + mi_lpu{cs} = getMI( lPSTH{cs}, 3 ); + uMiMatMean(r:ridx(cs),:) = [repmat( cs, size( mi_lpu{cs}, 1 ), 1 ), ... + mean( mi_lpu{cs}(:, tx < 0.05), 2, "omitmissing" ), ... + mean( mi_lpu{cs}(:, tx >= 0.05), 2, "omitmissing" )]; + % uMiMatMed(r:ridx(cs),:) = [repmat( cs, size( mi_lpu{cs}, 1 ), 1 ), ... + % median( mi_lpu{cs}(:, tx < 0.05), 2, "omitmissing" ), ... + % median( mi_lpu{cs}(:, tx >= 0.05, "omitmissing" ), 2)]; + r = 1 + ridx(cs); +end + +popMImedian = my_cat( arrayfun( @(s) ... + median( uMiMatMean( uMiMatMean(:,1) == s, [2,3] ), 1, "omitmissing" ), ... + unique( uMiMatMean(:,1) ), fnOpts{:} ), 1 ); +popMImean = my_cat( arrayfun( @(s) ... + mean( uMiMatMean( uMiMatMean(:,1) == s, [2,3] ), 1, "omitmissing" ), ... + unique( uMiMatMean(:,1) ), fnOpts{:} ), 1 ); + +figure; +subplot(1,5,[1,4]) +boxchart( tocol( repmat( uMiMatMean(:,1), 2, 1) ), ... + tocol( uMiMatMean(:,[2,3]) ), "Notch", "on", ... + "GroupByColor", tocol( ones( size( uMiMatMean, 1), 1) * (1:2) ) ); +xlim( [0, numel(lPSTH)] + 0.5 ) +yline( 0, 'k--'); set( gca, "Box", "off", "Color", "none" ) +subplot(1,5,5) +boxchart(popMImean, 'Notch', 'on' ) +yline( 0, 'k--'); set( gca, "Box", "off", "Color", "none" ) + +figure; boxchart( popMImean_lp, 'Notch', 'on' ); +yline( 0, 'k--'); set( gca, "Box", "off", "Color", "none" ) + +figure; smth = 0.015; +daviolinplot( uMiMatMean(:,[2,3]), 'groups', tocol( ones( size( uMiMatMean, 1), 1 ) * (1:2) ), ... + 'violinalpha', 0.5, 'smoothing', smth, ... 'jitter', 2, ... + 'color', [0,0.51,1] ); \ No newline at end of file diff --git a/Emilio/diagonalMatrix.m b/Emilio/diagonalMatrix.m new file mode 100644 index 0000000..6606c02 --- /dev/null +++ b/Emilio/diagonalMatrix.m @@ -0,0 +1,5 @@ +for x = 1:size(MatSignStep,2) + for y = x+1:size(MatSignStep,1) + fprintf(1, 'x:%d, y:%d\n', x, y) + end +end \ No newline at end of file diff --git a/Emilio/ephysBehaviourRegression.m b/Emilio/ephysBehaviourRegression.m new file mode 100644 index 0000000..15fb03a --- /dev/null +++ b/Emilio/ephysBehaviourRegression.m @@ -0,0 +1,353 @@ +%{ +res_gof = zeros( 15, 1 ); +% feps = zeros( 15, 1 ); +parfor ii = 1:15 + trainIdx = training( cvpart, ii ); + testIdx = test( cvpart, ii ); + Xtrain = gpuArray( X( any( tr_ID == diag( trainIdx * (1:Nr) )', 2 ), : ) ); + Ytrain = gpuArray( y( any( tr_ID == diag( trainIdx * (1:Nr) )', 2 ), 1 ) ); + Xtest = gpuArray( X( any( tr_ID == diag( testIdx * (1:Nr) )', 2 ), : ) ); + Ytest = gpuArray( y( any( tr_ID == diag( testIdx * (1:Nr) )', 2 ), 1 ) ); + + mdl = fitglm( Xtrain, Ytrain, 'linear', 'Distribution', 'Normal' ); + y_pred = feval( mdl, Xtest ); + res_gof(ii) = goodnessOfFit( Ytest, y_pred, 'MSE' ); + % feps(ii) = loss( mdl, Xtest, Ytest ); +end +%} +%% +fnOpts = {'UniformOutput', false}; +tocol = @(x) x(:); +getAbsPath = @(x) string( fullfile( x.folder, x.name ) ); +roller_path = "Z:\Emilio\SuperiorColliculusExperiments\Roller"; +data_path = fullfile( roller_path, "Batch16_ephys/MC/GADi35/231204_C+F_2450"); +eph_path = dir( fullfile( data_path, "ephys*" ) ); +if ~isempty( eph_path ) + eph_path = getAbsPath( eph_path ); +else + fprintf(1, 'No ephys folder found!\n') + return +end +beh_path = fullfile( data_path, "Behaviour" ); + +beh_pttrns = ["RollerSpeed*.mat", "BehaviourSignals*.mat"]; +bfs_paths = arrayfun(@(pt) dir( fullfile( beh_path, pt) ), beh_pttrns ); +if any( ~arrayfun(@(x) exist( getAbsPath(x), "file" ), bfs_paths ) ) + fprintf(1, 'Not all necessary behaviour files exist!\n') + return +end +for x=bfs_paths, load( getAbsPath( x ) ), end + +eph_pttrns = ["*_Spike_Times.mat", "*analysis.mat"]; +efs_paths = arrayfun(@(pt) dir( fullfile( eph_path, pt) ), eph_pttrns ); +if any( ~arrayfun(@(x) exist( getAbsPath(x), "file" ), efs_paths ) ) + fprintf(1, 'Not all necessary ephys files exist!\n') + return +end +for x=efs_paths, load( getAbsPath( x ) ), end + +stop_time = length( Triggers.Whisker )/ fs; +bp_names = ["Stim-whisker mean", "Stim-whisker fan arc", ... + "Nonstim-whisker mean", "Nonstim-whisker fan arc", ... + "Interwhisker arc", "Symmetry", "Nose", "Roller speed"]; + +analysis_pttrn = "CW%.2f-%.2fms DW%.2f-%.2f BZ%.2f"; +%% +behSignals = [behDLCSignals, vf]; +mdl_btx = fit_poly( [1, size( behSignals, 1 )], [0, size( behSignals, 1 )/fr] + [1,-1] * (1/fr), 1 ); +btx = (1:size( behSignals, 1 ))'.^[1,0] * mdl_btx; +my_xor = @(x) xor( x(:,1), x(:,2) ); +my_cat = @(x,d) cat( d, x{:} ); + +m = 1e-3; +rel_win = [-1, 1]*0.8; +del_win = [-100, 100]*m; +bin_size = 10*m; + +Nb = ceil( diff( rel_win )/ bin_size ); +% Nb = ceil( diff( time_limits ) / bin_size ); +Nu = numel( spike_times ); +% cons_time = my_xor( btx > time_limits ); +Ns = size( behSignals, 2 ); +wtx = (del_win(1) + bin_size/2):bin_size:(del_win(2) - bin_size/2); +ttx = (rel_win(1) + bin_size/2):bin_size:(rel_win(2) - bin_size/2); +%% +bin_edges = 0:bin_size:stop_time; +bin_centres = mean( [bin_edges(1:end-1); bin_edges(2:end)] ); +Ntb = length( bin_centres ); +hstOpts = {'Normalization', 'countdensity'}; +binned_spikes = cellfun(@(s) histcounts( s, bin_edges, hstOpts{:}), ... + spike_times, fnOpts{:} ); +binned_spikes = cat( 1, binned_spikes{:} ); + +binned_beh = zeros( Ntb, Ns ); +parfor b = 1:Ntb + idx = my_xor( btx(:) < bin_edges(b:b+1) ); + binned_beh(b,:) = mean( behSignals( idx , : ), 1 ); +end + +%% Design matrix for a set of trials (Control) +ctrl_sub = ismember( string( {Conditions.name} ), "Control Puff" ); +time_limits = Conditions(ctrl_sub).Triggers(:,1)./fs + rel_win; +Nr = size( time_limits, 1 ); +Nd = ceil( diff( del_win ) / bin_size ); +auX = zeros( Nb*Nr, Nu, Nd ); + +cwin = arrayfun(@(x) linspace( time_limits(x,1) + (bin_size/2), ... + time_limits(x,2) - (bin_size/2), Nb )', (1:Nr)', fnOpts{:} ); +cwin = cat( 1, cwin{:} ); + +bin_ax = cwin + linspace( del_win(1)+(bin_size/2), ... + del_win(2)-(bin_size/2), Nd ); +% tr_ID = ceil( ( 1:(Nr*Nb) )' / Nb ); +parfor r = 1:(Nr*Nb) + tempC = my_cat( arrayfun( @(u) interp1( bin_centres, binned_spikes(u,:), ... + bin_ax(r,:) ), 1:Nu, fnOpts{:} ), 1); + auX( r, :, :) = tempC; +end + +X = reshape( auX, Nb*Nr, Nu*Nd ); clearvars auX; +Xp = [ ones( Nb*Nr, 1), X]; + +%% Multivariate regression response matrix +%X2 = [ ones( Nb*Nr, 1), X]; +%lmObjs = cell( Ns, 1 ); +y = zeros( Nb*Nr, Ns); +for r = 1:Nr + idx = (r-1)*Nb + (1:Nb); + aux = arrayfun(@(s) interp1( bin_centres, binned_beh(:,s), ... + (1:Nb)'*bin_size + time_limits(r,1) ), (1:Ns), fnOpts{:} ); + aux = cat( 2, aux{:} ); + y(idx,:) = aux; +end +%{ +%% Linear regression using fitlm +cvk = 15; +tr_ID = tocol( ones( Nb, 1 ) * (1:Nr) ); +rmse1v = zeros( cvk , 1 ); mdl1v = cell( size( rmse1v ) ); +Nk = round( Nr*0.15 ); +parfor ii = 1:cvk + testTrials = sort( randperm( Nr, Nk ) ); + trainingTrials = setdiff( 1:Nr, testTrials ); + trainingIdx = any( tr_ID == trainingTrials(:)', 2 ); + testIdx = ~trainingIdx; + + mdl1v{ii} = fitlm( X(trainingIdx,:), y(trainingIdx,1) ); + y_pred = predict( mdl1v{ii}, X(testIdx,:) ); + rmse1v(ii) = sqrt( mean( ( y(testIdx,1) - y_pred ).^2 ) ); +end + +[~, min_error] = min(rmse1v); +y_1_pred = predict( mdl1v{min_error}, X ); + +y_1 = reshape( y(:,1), Nb, Nr ); +y_1_pred = reshape( y_1_pred, Nb, Nr ); + +%% Linear regression using ridge regularisation +cvk = 15; Nlambda = 64; +tr_ID = tocol( ones( Nb, 1 ) * (1:Nr) ); +rmse1v = zeros( cvk , Nlambda ); +mdl1v = zeros( size(X,2)+1, Nlambda, cvk ); +Nk = round( Nr*0.15 ); +lambdas = logspace( 3, 8, Nlambda); +parfor ii = 1:cvk + testTrials = sort( randperm( Nr, Nk ) ); + trainingTrials = setdiff( 1:Nr, testTrials ); + trainingIdx = any( tr_ID == trainingTrials(:)', 2 ); + testIdx = ~trainingIdx; + + Xtrain = [ones( sum( trainingIdx ), 1 ), X(trainingIdx,:)]; + Xtest = [ones( sum( testIdx ), 1 ), X(testIdx,:)]; + % theta_0 = ( X2' * X2 ) \ ( X2' * y(trainingIdx,1) ) ; + mdl1v(:,:,ii) = ridge( y(trainingIdx,1), Xtrain, lambdas ); + y_pred = Xtest * mdl1v(:,:,ii); + rmse1v(ii,:) = sqrt( mean( ( y(testIdx,1) - y_pred ).^2 ) ); +end + +%} +%% Linear regression for all behavioural signals using matrix multiplication +cvk = 15; +tr_ID = tocol( ones( Nb, 1 ) * (1:Nr) ); +rmseAll_ind = zeros( cvk, Ns ); +mdlAll_ind = zeros( size(X,2)+1, cvk, Ns ); +Nk = round( Nr*0.15 ); idxs = zeros( cvk, Nk ); +parfor ii = 1:cvk + testTrials = sort( randperm( Nr, Nk ) ); + idxs(ii,:) = testTrials; + trainingTrials = setdiff( 1:Nr, testTrials ); + trainingIdx = any( tr_ID == trainingTrials, 2 ); + testIdx = ~trainingIdx; + + Xtrain = Xp(trainingIdx,:); Xtest = Xp(testIdx,:); + for cb = 1:Ns + ytrain = y(trainingIdx, cb); ytest = y(testIdx, cb); + mdlAll_ind(:,ii,cb) = ( Xtrain' * Xtrain ) \ ( Xtrain' * ytrain ) ; + %mdl1v(:,:,ii) = ridge( y(trainingIdx,1), Xtrain, lambdas ); + y_pred = Xtest * mdlAll_ind(:,ii,cb); + rmseAll_ind(ii,cb) = sqrt( mean( ( ytest - y_pred ).^2 ) ); + end +end +analysis_key = sprintf( analysis_pttrn, rel_win/m, del_win/m, bin_size/m ); +save( fullfile( data_path, join( ["Regression", analysis_key + ".mat"] ) ), ... + "mdlAll_ind", "DX", "params", "-v7.3" ) +%% Weight matrices +createtiles = @(f,nr,nc) tiledlayout( f, nr, nc, ... + 'TileSpacing', 'Compact', 'Padding', 'tight'); +cleanAxis = @(x) set( x, "Box", "off", "Color", "none" ); +figWeight = figure('Color', 'w'); t = createtiles( figWeight, 2, 4 ); +mdlAll_ind_norm = [mdlAll_ind(1,:,:); + mdlAll_ind(2:end,:,:) ./ vecnorm( mdlAll_ind(2:end,:,:), 2, 1 )]; +mdl_mu = squeeze( mean( mdlAll_ind_norm, 2 ) ); +for cb = 1:Ns + ax = nexttile(t); + imagesc( ax, wtx/m, [], reshape( mdl_mu(2:end,cb), Nu, Nd ) ) + cleanAxis( ax ); yticks( ax, 1:Nu ); title( ax, bp_names( cb ) ); + colormap( traffic ); clim( 1.3*max(abs(mdl_mu(2:end,cb)))*[-1,1] ) + cbObj = colorbar( 'Box', 'off', 'AxisLocation', 'out', ... + 'TickDirection', 'out', 'Location', 'northoutside' ); +end +xlabel(ax, 'Time [ms]'); axs = findobj( t, "Type", "Axes" ); +ylabel( axs(end), 'Units' ) +title( t, 'Regression weights' ) +arrayfun(@(x) set( get( x, "YAxis" ), "Visible", "off" ), ... + axs(setdiff( 1:Ns, [4,8] )) ) +arrayfun(@(x) set( get( x, "XAxis" ), "Visible", "off" ), axs(5:8) ) + +saveFigure( figWeight, fullfile( eph_path, "Figures", ... + sprintf( "Regression weights CW%.2f-%.2fms DW%.2f-%.2f BZ%.2f", ... + rel_win/m, del_win/m, bin_size/m ) ), true ) +%% Reconstruction error (trial-wise) + +%% Total error per body part +errFig = figure("color", "w"); t = createtiles( errFig, 1, 1 ); +ax = nexttile(t); +gray15pc = 0.15*ones(1,3); +boxchart(ax, rmseAll_ind./range(y) , 'Notch', 'on', ... + 'BoxFaceColor', gray15pc, 'JitterOutliers', 'on', ... + 'MarkerStyle', '.', 'MarkerColor', gray15pc ); +xticklabels( ax, bp_names ); cleanAxis( ax ); +ylabel( ax, 'Normalised error' ) +title( ax, sprintf( '%d-kfold cross-validated error', cvk ) ) + +saveFigure( errFig, fullfile( eph_path, "Figures", ... + join( [sprintf( "%d-fold cv error", cvk ), analysis_key] ) ), true ) + +%% Delay +delay_sub = cellfun(@(x) ~isempty(x), regexp( string( {Conditions.name} ), ... + 'Delay \d\.\d+\ss\s\+\sL' ) ); + +time_limits = Conditions(delay_sub).Triggers(:,1)./fs + rel_win; +Nr = size( time_limits, 1 ); +Nd = ceil( diff( del_win ) / bin_size ); +auX = zeros( Nb*Nr, Nu, Nd ); + +cwin = arrayfun(@(x) linspace( time_limits(x,1) + (bin_size/2), ... + time_limits(x,2) - (bin_size/2), Nb )', (1:Nr)', fnOpts{:} ); +cwin = cat( 1, cwin{:} ); + +bin_ax = cwin + linspace( del_win(1)+(bin_size/2), ... + del_win(2)-(bin_size/2), Nd ); +% tr_ID = ceil( ( 1:(Nr*Nb) )' / Nb ); +parfor r = 1:(Nr*Nb) + tempC = my_cat( arrayfun( @(u) interp1( bin_centres, binned_spikes(u,:), ... + bin_ax(r,:) ), 1:Nu, fnOpts{:} ), 1); + auX( r, :, :) = tempC; +end + +X = reshape( auX, Nb*Nr, Nu*Nd ); clearvars auX; +Xl = [ ones( Nb*Nr, 1), X]; + +%{ +%% Multiple output linear regression +cvk = 15; +Nk = round( Nr*0.15 ); +rmse = zeros( cvk , Ns ); +mdl = zeros( size( X, 2 )+Ns, size( y, 2 ), cvk ); +idxs = zeros( cvk, Nk ); %[zy, y_mu, y_sig] = zscore(y, 0, 1); +X2 = [[eye(Ns); zeros( size(X,1) - Ns, Ns )], X]; +for ii = 1:cvk + fprintf(1, 'K:%d\n', ii) + testTrials = sort( randperm( Nr, Nk ) ); + idxs(ii,:) = testTrials; + trainingTrials = setdiff( 1:Nr, testTrials ); + trainingIdx = any( tr_ID == trainingTrials, 2 ); + testIdx = ~trainingIdx; + + mdl(:,:,ii) = mvregress( gpuArray( X2(trainingIdx,:) ), ... + gpuArray( y(trainingIdx,:) ) ); + y_pred = X2(testIdx,:) * mdl(:,:,ii); + rmse(ii,:) = sqrt( mean( ( y(testIdx,:) - y_pred ).^2 ) ); +end + +[~, min_error] = min(rmse,[],1); +y_all_pred = X2 * squeeze( mean( mdl, 3 ) ); + +y_trials = reshape( y, Nb, Nr, Ns ); +y_all_pred = reshape( y_all_pred, Nb, Nr, Ns ); + +%% Training + +ho_trials = randperm( Nr, round( Nr*0.1 ) ); +testIdx = any( tr_ID == sort(ho_trials), 2 ); +cv_kf = cvpartition( tr_ID( ~testIdx ), "KFold", 15 ); + +Xtrain = X(~testIdx, :); ytrain = y(~testIdx,1); + +[mdl, fitInfo] = lassoglm( X(~testIdx,:), y(~testIdx,1), 'normal', ... + 'CV', cv_kf, 'Lambda', logspace( -5, 3, 64 ), ... + 'Options', statset('UseParallel', true ), ... + 'Alpha', eps ); + +w_vec = [fitInfo.Intercept(fitInfo.IndexMinDeviance); + mdl(:,fitInfo.IndexMinDeviance)]; +y_pred = glmval( w_vec, X, "identity" ); +y_pred = reshape( y_pred, Nb, Nr ); +clrMap = [0.15*ones(1,3); 0.85,0.51,0.15 ]; +figure; lObj = line( 1:(Nb*numel( ho_trials )), [y(testIdx,1), y_pred(:)] ); +arrayfun(@(ii,x) set( x, 'Color', clrMap(ii,:) ), (1:numel(lObj))', lObj(:) ) + +createtiles = @(f,nr,nc) tiledlayout( f, nr, nc, ... + 'TileSpacing', 'Compact', 'Padding', 'tight'); +cleanAxis = @(x) set( x, "Box", "off", "Color", "none" ); + +fig = figure( 'Color', 'w' ); t = createtiles( fig, 10, 2); +nexttile([8, 1]); +imagesc( ttx, [], y_1' - 90); colormap(inferno) +xline(0, 'LineStyle', '--', 'Color', 0.85*ones(1,3) ) +nexttile([8, 1]); +imagesc( ttx, [], y_pred' - 90); colormap(inferno) +set( get( gca, 'YAxis' ), 'Visible', 'off' ) +nexttile(t); +line( ttx, mean( y_1, 2 ) - 90, 'Color', 0.15*ones(1,3), 'LineWidth', 1.5 ) +nexttile(t); +line( ttx, mean( y_pred, 2 ) - 90, 'Color', [0.85, 0.51, 0.15] , 'LineWidth', 1.5 ) +axs = get( t, "Children" ); +linkaxes( axs, 'x') +xlim(ttx([1,end])) +arrayfun(@(x) set( get( x, "XAxis" ), "Visible", "off" ), axs(3:4) ) +arrayfun(@(x) xticklabels( x, xticks(x) / m ), axs(1:2) ) + +rmse = mean( ( y_1 - y_pred ).^2, 1 ); + + +wtx = (del_win(1) + bin_size/2):bin_size:(del_win(2) - bin_size/2); +ttx = (rel_win(1) + bin_size/2):bin_size:(rel_win(2) - bin_size/2); + +figure; imagesc( wtx, [], reshape( w_vec(2:end), Nd, Nu )' ) + +%% Design matrix for the whole experiment +Nb = ceil( diff( bin_edges([1,end]) )/ bin_size ); +auX = zeros( Nb, Nu, Nd ); +parfor b = 1:Nb + cwin = bin_centres(b) + del_win; + bin_ax = linspace( cwin(1), cwin(2), Nd ); + tempC = arrayfun(@(u) interp1( bin_centres, binned_spikes(u,:), ... + bin_ax ), 1:Nu, fnOpts{:} ); + tempC = cat( 1, tempC{:} ); + tempC( isnan(tempC) ) = 0; + auX( b, :, :) = tempC; +end +X = reshape( auX, [], Nu*Nd ); +X2 = [ ones( Nb*Nr, 1), X]; +Xa = X2; +%} diff --git a/Emilio/ephysVSai.m b/Emilio/ephysVSai.m new file mode 100644 index 0000000..71f34fa --- /dev/null +++ b/Emilio/ephysVSai.m @@ -0,0 +1,284 @@ +fnOpts = {'UniformOutput', false}; +expandName = @(x) fullfile(x.folder, x.name); +animalPattern = '[a-zA-Z]+\d{1,}'; +rsOpts = {animalPattern, 'SearchType', 'expression'}; +ctOpts = {'IgnoreCase', true}; +lsOpts = {'L\d+.\d+', 'match'}; +ephFF = 'Ephys VW(-?\d+\.\d+)-(\d+\.\d+) RW20.00-200.00 SW(-?\d+\.\d+)-(-?\d+\.\d+)'; +cond_exp = {'^Delay\s\d[.]\d{3}\s\w\s[+]\sL[0-9.]', ... iRNs + '^Delay\s\d[.]\d{3}\s\w'}; % Continuous +cond_sel = 2; +tblOpts = {'VariableNames', {'Conditions', 'MI'}}; +my_zscore = @(x, m, s) ( x - m ) ./ ( s .* (s~=0) + 1 .* (s==0) ); +owfFlag = false; +m = 1e-3; k = 1e3; + +cellcat = @(x,d) cat( d, x{:} ); +tocol = @(x) x(:); +getMI = @(x,d) diff(x, 1, d) ./ ... + sum(x, d).*(sum(x,d)>0) + (1.*(sum(x,d)==0 | sum(x,d)< 1e-12)); +% total_var_dist = @(dmat) integral( @(x) abs( pdf( dmat(1), x ) - pdf( dmat(2), x ) ), -5, 5 ); + +% exclude_names = {'GADi13', 'GADi15', 'GADi53'}; +exclude_names = { }; +vWin = [-300, 400]*m; +% iRN_mice = dir( "Z:\Emilio\SuperiorColliculusExperiments\Roller\Batch*\MC\GADi*" ); +iRN_mice = dir( "Z:\Emilio\SuperiorColliculusExperiments\Roller\Batch*\eOPN3\*" ); +iRN_mice = iRN_mice( ~cellfun('isempty', regexp({iRN_mice.name}, '^\w{2}\d{2}' ) ) ); +animalFolders = arrayfun(@(f) string( expandName( f ) ), iRN_mice(:)); +exclude_flags = contains( animalFolders, exclude_names ); +animalFolders = animalFolders( ~exclude_flags ); +%% +% asPaths = arrayfun(@(a) dir( fullfile( a, '*F*', 'ephys*', 'cluster_info.tsv' ) ), ... +% animalFolders, fnOpts{:} ); +asPaths = arrayfun(@(a) dir( fullfile( a, '*', 'ephys*', 'cluster_info.tsv' ) ), ... + animalFolders, fnOpts{:} ); +bad_flag = cellfun(@(x) contains( {x.folder}, 'bad' ), asPaths, fnOpts{:} ); +notF_flag = cellfun(@(x) contains( {x.folder}, 'f' ), asPaths, fnOpts{:} ); +asPaths = cellfun(@(a,f,w) a(~f&~w), asPaths, bad_flag, notF_flag, fnOpts{:} ); +empty_flag = cellfun('isempty', asPaths ); +asPaths = asPaths(~empty_flag); animalFolders = animalFolders(~empty_flag); +clInfo = cellfun(@(a) arrayfun(@(s) getClusterInfo( expandName( s ) ), ... + a, fnOpts{:} ), asPaths, fnOpts{:} ); + +%% +Nu = cellfun(@(x) cellfun(@(y) sum( y.ActiveUnit ), x ), clInfo, fnOpts{:} ); +low_unit_flag = cellfun(@(x) x < 10, Nu, fnOpts{:} ); +low_unit_animal = cellfun(@(x) all(x < 10), Nu ); +asPaths = cellfun(@(a,f) a(~f), asPaths, low_unit_flag , fnOpts{:} ); +animalFolders = animalFolders( ~low_unit_animal ); +clInfo = cellfun(@(a,f) a(~f), clInfo, low_unit_flag , fnOpts{:} ); +Nm = numel( clInfo ); +Nu = cellfun(@(a,f) a(~f), Nu, low_unit_flag , fnOpts{:} ); +% clInfo = arrayfun(@(x) getClusterInfo( expandName( ... +% dir( fullfile( x, '*F*', 'ephys*', 'cluster_info.tsv' ) ) ) ), animalFolders, ... +% fnOpts{:}); +%% Pooling ephys and behaviour +% Initialising +Nspm = cellfun("size", clInfo, 1 ); % Number of sessions per mouse +Nexp = sum( Nspm ); +Nu_all = cat( 1, Nu{:} ); +Nuinit = cumsum( [1; Nu_all(1:end-1) ] ); +Nuend = cumsum( Nu_all ); +PSTHall_mu = zeros( 700, sum( Nu_all ), 2 ); +brAll = []; +PSTHall = cell( Nexp, 2 ); +uSig = cell( Nexp, 1 ); uID = uSig; +uMod = uSig; +uMI = uSig; ce = 1; +%% +rstVars2load = {'relativeSpkTmsStruct', 'configStructure'}; +afVars2load = {'Conditions', 'fs'}; +for ca = 1:Nm + for cs = 1:Nspm(ca) + data_dir = string( getParentDir( asPaths{ca}(cs).folder, 1 ) ); + % condStruct = load( expandName( dir( fullfile( data_dir, "*\*analysis.mat" ) ) ), afVars2load{:} ); + rstPath = dir( fullfile( data_dir, "*", "*RW20.00-200.00*(unfiltered) RelSpkTms.mat" ) ); + brPath = dir( fullfile( data_dir, "*","BehaviourResult*.mat" ) ); + mfPath = dir( fullfile( data_dir, "ephys*", "Results", "Res VW* RW20.00-200.00 ms SW*PuffAll.mat") ); + brVars2load = 'behRes'; + if isempty( brPath ) + brPath = dir( fullfile( data_dir, "*\Simple summary.mat" ) ); + brVars2load = 'summStruct'; + end + brStruct = load( expandName( brPath ), brVars2load ); + behRes = brStruct.(brVars2load); + ctrlSub = ismember( string( {behRes.ConditionName} ), 'Control Puff' ); + % cf_flags = regexp( string( {behRes.ConditionName} ), {'Control Puff', ... + % 'Delay\s\d[.]\d{3}\s\w\s[+]\sL[0-9.]'} ); + % cf_flags = contains( string( {behRes.ConditionName} ), 'Control Puff'); + cf_flags = regexp( string( {behRes.ConditionName} ), ... + cond_exp{cond_sel} ); + cf_flags = ctrlSub | ~cellfun( 'isempty', cf_flags ); + + brAll = cat( 1, brAll, behRes(cf_flags) ); + if ~isempty(rstPath) || isscalar( rstPath ) + rstCont = load( expandName( rstPath ), rstVars2load{:} ); + else + fprintf(1, 'Either empty or more than 1 file found!\n'); + disp( {rstPath.name} ) + continue + end + mftype = 1; + mfVars2load = {'Results', 'gclID', 'Counts', 'configStructure'}; + if isempty( mfPath ) + fprintf( 1, 'Res file not found!\n') + mfPath = dir( fullfile( data_dir, "ephys*", "Results", "Map*.mat") ); + mfVars2load = {'keyCell', 'resMap'}; + if isempty( mfPath ) + fprintf( 1, 'Unable to load unit response information!\n') + disp( mfPath ) + continue + end + mftype = 2; + end + mfStruct = load( expandName( mfPath ), mfVars2load{:} ); + if mftype == 1 + Results = mfStruct.Results; + % Taking only control and laser frequency + cnfStruct = mfStruct.configStructure; + Nccond = numel( cnfStruct.ConsideredConditions ); + valid_cond_subs = 1:Nccond; + ctrlSub = ismember( cnfStruct.ConsideredConditions, 'Control Puff' ); + cf_flags = regexp( cnfStruct.ConsideredConditions, ... + cond_exp{cond_sel} ); + cf_flags = ctrlSub | ~cellfun( 'isempty', cf_flags ); + valid_cond_subs = valid_cond_subs( cf_flags ); + cmbSubs = cellcat(arrayfun(@(x) sscanf( x.Combination, '%d %d'), ... + Results , fnOpts{:} ), 2 ); + configFlag = cmbSubs(1,:) == cmbSubs(2,:) & ... + any(cmbSubs(1,:) == valid_cond_subs(:), 1); + cond_ordr = cmbSubs( 1, configFlag ); + gclID = mfStruct.gclID; + + Counts = mfStruct.Counts; + Counts = arrayfun(@(c) squeeze( mean( cellcat( Counts(c,:), 3 ), 2 ) ), ... + valid_cond_subs, fnOpts{:} ); + % configFlag = cellfun(@(x) ~isempty(x), regexp( {Results.Combination}, ... + % '1\s1\ssignrank', 'ignorecase' ) ); + sig_aux = arrayfun(@(x) x.Activity(1).Pvalues, Results(configFlag), fnOpts{:} ); + mod_aux = arrayfun(@(x) x.Activity(1).Direction, Results(configFlag), fnOpts{:} ); + mi_aux = cellfun(@(x) getMI( x, 2 ), Counts, fnOpts{:} ); + uSig{ce} = cellcat( sig_aux(cond_ordr), 2); + uMod{ce} = cellcat( mod_aux(cond_ordr), 2); + uMI{ce} = cellcat( mod_aux(cond_ordr), 2 ); + uID{ce} = gclID; + else + resMap = mfStruct.resMap; keyCell = mfStruct.keyCell; + configFlag = contains( keyCell(:,1), 'RW20.00-200.00' ) & ... + contains( keyCell(:,4), 'Control Puff' ); + if sum( configFlag ) ~= 1 + fprintf( 1, 'Cannot process this keycell... \n') + disp( keyCell ) + end + uSig{ce} = resMap( keyCell{configFlag,:} ); + uMod{ce} = zeros( Nu(ca), 1 ); uMI{ca} = uMod{ca}; + uID{ce} = clInfo{ca}{clInfo{ca}.ActiveUnit==1, "cluster_id" }; + end + rstStruct = rstCont.relativeSpkTmsStruct; + confStruct = rstCont.configStructure; + % Conditions = condStruct.Conditions; + % fs = condStruct.fs; + if any( confStruct.Viewing_window_s ~= vWin ) + confStruct.Viewing_window_s = vWin; + end + [PSTH, trial_tx, Na] = getPSTH_perU_perT( ... + rstStruct(valid_cond_subs), confStruct ); + a = Nuinit(ce); b = Nuend(ce); + idx = a:b; + PSTHall_mu(:,idx,:) = cellcat( cellfun(@(x) squeeze( mean( x, 1 ) ), ... + PSTH, fnOpts{:} ), 3 ); + PSTHall(ce,:) = PSTH; + ce = ce + 1; + end +end +clearvars PSTH brStruct ctrlSub rstStruct confStruct brPath brVars2load ... + rstCont a b idx; +ai_pt = arrayfun(@(s) getAIperTrial( s ), brAll, fnOpts{:} ); + +%% Sliding window analysis for behaviour correlation +% Idea is to slide a time window per unit per trial for getting an R² +slid_win_length = 20*m; time_slide = 5*m; +time_init = -50*m; time_stop = 400*m; +Nrs = (time_stop - time_init - slid_win_length) / time_slide; +r_squared = cell( Nexp, 1 ); +Nt = cellfun( "size", PSTHall, 1 ); +parfor cexp = 1:Nexp + r_squared{cexp} = zeros( Nu_all(cexp), Nrs, 2 ); + for cu = 1:Nu_all(cexp) + aux_rs = zeros(1, Nrs, 2 ); + for ct = 1:2 + cw = time_init + [0, slid_win_length]; + ci = 1; + aux_trial = cellcat( arrayfun(@(t) conv( PSTHall{cexp,ct}(t, :, cu ), ... + gausswin( 5 ), "same" ), 1:Nt(cexp,ct), 'UniformOutput', false ), 1 ); + while cw(2) <= time_stop + act_mu = mean( aux_trial(:, my_xor( trial_tx < cw ) ) , 2 ); + if ( sum( act_mu == 0 ) / numel(act_mu ) ) < 0.4 + aux_mdl = fitlm( zscore( act_mu )', zscore( ai_pt{cexp,ct} )', 'poly1' ); + aux_rs(1,ci,ct) = aux_mdl.Rsquared.Ordinary; + end + cw = cw + time_slide; ci = ci + 1; + end + end + r_squared{cexp}(cu,:,:) = aux_rs; + end +end +% r_squared_cat = cat( 1, r_squared{:} ); +%% Time resolved boxplots for all experiments +td = 30; +slid_win_length = td*m; time_slide = td*m; +time_init = -160*m; time_stop = 400*m; +Nrs = floor( (time_stop - time_init - slid_win_length) / time_slide ); +r_squared_pexp = zeros( Nexp, Nrs, 2 ); +parfor cexp = 1:Nexp + for ct = 1:2 + cw = time_init + [0, slid_win_length]; + for ci = 1:Nrs + act_mu = mean( PSTHall{cexp,ct}(:, my_xor( trial_tx < cw ),: ) , [2,3] ); + aux_mdl = fitlm( zscore( act_mu )', zscore( ai_pt{cexp,ct} )', 'poly1' ); + r_squared_pexp(cexp,ci,ct) = aux_mdl.Rsquared.Ordinary; + cw = cw + time_slide; + end + end +end +aux_mdl = fit_poly( [1,Nrs], [time_init, time_init + Nrs*slid_win_length] ... + + (slid_win_length/2)*[1,-1], 1 ); +b_tx = ( ( 1:Nrs )'.^[1,0] ) * aux_mdl; +% r_squared_cat = cat( 1, r_squared_pexp{:} ); +%% +bxOpts = {'JitterOutliers', 'on', 'MarkerStyle', '.', 'MarkerColor', 'k',... + 'BoxFaceColor', 'k', 'BoxWidth', k*(time_slide)/2, ... + 'Notch', 'off' }; +ttl = ["Laser OFF", "Laser ON"]; +f = figure('Color', 'w'); t = createtiles(f, 2, 2); +ax = gobjects( 3, 1 ); +for ct = 1:2 + ax(ct) = nexttile( t ); + boxchart(ax(ct), tocol( ones(Nexp,1)*b_tx' * k ), ... + tocol(r_squared_pexp(:,:,ct)), bxOpts{:} ) + hold( ax(ct), 'on'); + line(ax(ct), k*b_tx, median( r_squared_pexp(:,:,ct), 1 ), 'Color', 'k', ... + 'LineWidth', 2 ) + xline( ax(ct), [0,50,200], 'r--') + xlabel( ax(ct), 'Time [ms]' ) + xlim( ax(ct), k*(b_tx([1,end]) + [-1;1]*slid_win_length/2) ) + if ct ~=2 + ylabel( ax(ct), 'R² per window' ) + else + set( get( ax(ct), 'YAxis'), 'Visible', 'off' ) + end + cleanAxis( ax(ct) ); + title( ax(ct), ttl(ct) ) + +end +ct = ct + 1; +title( t, sprintf('Time-resolved_{%d ms} R² population (per experiment, eOPN3)', td ) ) +ax(ct) = nexttile( t, [1,2] ); +lObjs = line( ax(ct), b_tx*k, squeeze( median( r_squared_pexp, 1 ) ) ); +legend( lObjs, ttl, 'Color', 'none', 'Box', 'off', 'Location', 'best'); +xlabel( ax(ct), 'Time [ms]' ) +ylabel( ax(ct), 'R²' ) +ytickangle( ax, 90 ) +set( ax, 'TickDir', 'out' ) +linkaxes(ax, 'x'); linkaxes( ax(1:2), 'y' ) + +%% +% Comparing conditions agains each other +p_cond_per_window = arrayfun(@(x) signrank( ... + squeeze( r_squared_pexp(:,x,1) ), ... + squeeze( r_squared_pexp(:,x,2) ) ), ... + 1:Nrs ); +p_th = [0.05; 0.01; 0.001]; +astk = sum( p_cond_per_window < p_th ); +text( ax(ct), b_tx*k, max( median( r_squared_pexp ), [], 3 ) * 1.15, ... + cellfun(@(x) join(x), arrayfun(@(x) repmat( "\ast", 1, x ), astk, fnOpts{:} ) ), ... + "HorizontalAlignment", "center", "VerticalAlignment", "middle", "FontSize", 17 ) +%% Statistics on the time-resolved R² +tbl2 = cell(2, 1 ); +for ct = 1:2 + [p, tbl, stats] = kruskalwallis( squeeze(r_squared_pexp(:,:,ct) ), ... + string( b_tx(:) * k ) ); + figure; tbl2{ct} = multcompare( stats ); + sum( tbl2{ct}(:,end) < 0.05 ) +end diff --git a/Emilio/evolutionPlots.m b/Emilio/evolutionPlots.m new file mode 100644 index 0000000..4586f28 --- /dev/null +++ b/Emilio/evolutionPlots.m @@ -0,0 +1,14 @@ +stableFlag = getMatrixStabilityMeasure(Counts{1,2},'slopeRange', 4e-3); +popResponse = getModulatedPopulationMeanResponse(Counts,... + [wruIdx, signMod & stableFlag, potFlag]); +evolutionFigures = plotResponseEvolution(popResponse,... + 'windowDuration', diff(responseWindow),... + 'triggerTimes', trigTms,... + 'trialBin', 15, 'inMinutes', true,'error','SEM'); + +%% save (or overwrite) figures +modulationLabel = ["potentiated"; "depressed"]; +arrayfun(@(x,y) saveFigure(x, fullfile(figureDir,... + sprintf('Response evolution for %s stable clusters %s(%s)',... + y, sprintf('%d ',chExp), structString)), 1),... + evolutionFigures, modulationLabel) diff --git a/Emilio/findFittingPoints.m b/Emilio/findFittingPoints.m new file mode 100644 index 0000000..ac4af80 --- /dev/null +++ b/Emilio/findFittingPoints.m @@ -0,0 +1,313 @@ +%% +Nat = size(atTimes{1},1); Nit = size(itTimes{1}(:,1),1); +err = Inf; r2 = 0; +errTh = -3; +atDelta = diff(atTimes{1}(:,1)); itDelta = diff(itTimes{1}(:,1)); +ddm = distmatrix(itDelta, atDelta); +%figure; +cit = 1; +% Arduino times always come before the intan. +dm = atTimes{1} - itTimes{1}(:,1)'; preArd = dm < 0; +[~, mnSubs] = sort(dm(:), "ascend", "ComparisonMethod", "abs"); +mnSubs(~preArd(mnSubs)) = []; [aSubs, iSubs] = ind2sub(size(dm), mnSubs); +mxSub = min(Nit, Nat); +cp = 1; +figure; stem(itTimes{1}(:,1), ones(size(itTimes{1},1),1)); +hold on; stem(atTimes{1}, -ones(size(atTimes{1},1),1)); +while err > errTh || r2 < 0.99 + while length(unique(iSubs(cp:mxSub-1+cp))) < mxSub ||... + length(unique(aSubs(cp:mxSub-1+cp))) < mxSub + cp = cp + 1; + end + xSubs = sort(iSubs(cp:mxSub-1+cp)); + x = itTimes{1}(xSubs,1); + ySubs = sort(aSubs(cp:mxSub-1+cp)); + y = atTimes{1}(ySubs); + [mdl, yhat, r2] = fit_poly(x, y, 1); + err = log(norm(y - yhat, 1)); + cp = cp + 1; +end +%% +figure; stem(itTimes{cc}(:,1), ones(size(itTimes{cc},1),1)); +hold on; stem(atTimes{ca}, -ones(size(atTimes{ca},1),1)); +%% +figure; imagesc(log(abs(dm{cc}+1))) +%% +[bC, bE] = prepareLogBinEdges(abs(dm{cc}(preArd)), 32); +bH = histcounts(log10(abs(dm{cc}(preArd))), bE); +bH = bH./(diff(10.^bE) * sum(bH)); +[~, delSubs] = sort(bH, "descend"); + +figure; semilogx(10.^bC, bH) + +% Arduino times that are before the intan +posPairs = arrayfun(@(x) find(preArd(:,x), 1, "last"), 1:Nit); + +%% +while err > errTh + % DEFINE: randSubs + if Nat > Nit + % Choose random sets of points fitting with intan cardinality + + x = itTimes{1}(:,1); + y = atTimes{1}(randSubs); + elseif Nat < Nit + % Choose random sets of points fitting with arduino cardinality + x = itTimes{1}(setdiff(1:Nit, randperm(Nit, Nit - Nat)),1); + y = atTimes{1}; + else + % Compute y = mx + b + x = itTimes{1}(:,1); y = atTimes{1}; + end + [mdl, yhat, r2] = fit_poly(x, y, 1); + hold on; scatter(x, y, ".", "MarkerFaceAlpha", 0.3) + plot([min(x);max(x)], [min(x), 1; max(x), 1]*mdl,... + "DisplayName", num2str(r2)) + errVec = abs(y - yhat); err = log(norm(y - yhat, 1)); +end + +%% +[Nta, Nti] = cellfun(@size, dm); cc = 1; ca = 3 - cc; +preArd = dm{cc} < 0; [~, mnSubs] = sort(dm{cc}(:), "ascend",... + "ComparisonMethod", "abs"); +mnSubs(~preArd(mnSubs)) = []; +[aSubs, iSubs] = ind2sub(size(dm{cc}), mnSubs); +mxSub = min(Nti(cc),Nta(cc)); naiveSubs = 1:mxSub; +pairFlags = abs(iSubs - aSubs) < abs(Nta(cc) - Nti(cc)) + 1; +dstPrs = dm{cc}(mnSubs(pairFlags)); medDst = median(dstPrs); +unqePrs = unique([... + iSubs(pairFlags), aSubs(pairFlags), dstPrs], "row"); +allFlag = unqePrs(:,1:2) == reshape(naiveSubs, 1,1,[]); +IoA = all(any(allFlag,3))'; snglPairs = zeros(mxSub, 2); +if all(IoA) + [~, IoASub] = min([Nti(cc),Nta(cc)]); IoA = false(2,1); + IoA(IoASub) = true; +end +auxCnt = 1; +% Logical reduction of possibilities +while auxCnt <= mxSub && ~isempty(unqePrs) + allFlag = unqePrs(:,1:2) == reshape(naiveSubs, 1,1,[]); + appCount = squeeze(sum(allFlag, 1)); + appCount(appCount == 0) = NaN; + % Lower cardinality trigger times with only one pairing possibility + mstUseFlag = any(appCount == IoA); + if all(~mstUseFlag) + unlikelyFlag = isnan(appCount(IoA,:)); + unpairFlag = any(unqePrs(:,IoA) == naiveSubs(unlikelyFlag),2); + if all(~unpairFlag) + unlikelyFlag = unqePrs(:,3) < medDst*1.1; + if all(~unlikelyFlag) + fprintf(1, "Taking the pair(s) that is(are) closest to") + fprintf(1, " the linear fit\n") + xSubs = snglPairs(snglPairs(:,1) ~= 0,1); + ySubs = snglPairs(snglPairs(:,2) ~= 0,2); + x = itTimes{cc}(xSubs,1); + y = atTimes{ca}(ySubs); + [n, d] = getHesseLineForm(fit_poly(x, y, 1)); + M = [itTimes{cc}(unqePrs(:,1),1), atTimes{ca}(unqePrs(:,2))]; + yErr = log(abs(M*n - d)); + bigErrFlag = yErr > 0; + unqePrs(bigErrFlag,:) = []; + else + fprintf(1, "Removing pairs with a 'big'") + fprintf(1, " distance. (%.2f)\n", medDst*1.1) + unqePrs(unlikelyFlag,:) = []; + end + else + unqePrs(unpairFlag,:) = []; + end + continue + end + % Pairs that *must* be in the pair selection + unPrFlag = any(unqePrs(:,IoA) == naiveSubs(mstUseFlag),2); + Nup = sum(unPrFlag); + snglPairs(auxCnt:auxCnt-1+Nup,:) = unqePrs(unPrFlag,1:2); + auxCnt = auxCnt+Nup; + unavFlags = arrayfun(@(x) any(unqePrs(:,x) == snglPairs(:,x)',2), 1:2,... + "UniformOutput", false); unavFlags = [unavFlags{:}]; + unqePrs(any(unavFlags,2),:) = []; +end +%% +foldersInBatch = dir("Z:\Emilio\SuperiorColliculusExperiments\Roller\Batch2\*\*\*"); +fileFlags = [foldersInBatch.isdir]'; +pointFlag = arrayfun(@(x) any(strcmpi(x.name, {'.','..'})), foldersInBatch); +und_Flag = arrayfun(@(x) contains(x.name, "_"), foldersInBatch); +foldersInBatch(pointFlag | ~fileFlags | ~und_Flag) = []; +%% +for cf = foldersInBatch' + dataDir = fullfile(cf.folder, cf.name); + fprintf(1, "Processing folder %s\n", dataDir) + readAndCorrectArdTrigs(dataDir); +end +%% +pmFlags = arrayfun(@(x) ismember(Conditions(pFlag).Triggers(:,1),... + Conditions(x).Triggers(:,1)), mixSubs, fnOpts{:}); pmFlags = [pmFlags{:}]; + + +lmFlags = arrayfun(@(x) ismember(Conditions(lFlag).Triggers(:,1),... + Conditions(x).Triggers(:,1)), mixSubs, fnOpts{:}); lmFlags = [lmFlags{:}]; +for ctf = 1:Nat + atName = fullfile(atFiles(ctf).folder, atFiles(ctf).name); + % Loading only arduino triggers (atTimes and atNames) + auxVars = load(atName, "at*"); + if isempty(auxVars) + fprintf(1, "Warning! Unable to load necessary variables") + fprintf(1, " from the condition file:\n%s\n", atFiles(ctf).name) + return + end + fieldnames(auxVars); +end +%% + +figure; subplot(2,3,1); imagesc(psthTx, [], wPSTH(find(anyH)+1,:)./max(wPSTH(find(anyH)+1,:),[],2)); +title("Whisker deflection"); yticks(1:sum(anyH));yticklabels(gclID(anyH)) +subplot(2,3,2); imagesc(psthTx, [], PSTH(anyH,:,1)./max(PSTH(anyH,:,1),[],2)); +title("L5-BC"); set(get(gca, "YAxis"), "Visible", "off") +subplot(2,3,3); imagesc(psthTx, [], PSTH(anyH,:,2)./max(PSTH(anyH,:,2),[],2)); +title("L5-MC"); set(get(gca, "YAxis"), "Visible", "off") +% Non-normalized +subplot(2,3,4); imagesc(psthTx, [], wPSTH(find(anyH)+1,:)); +title("Whisker deflection"); yticks(1:sum(anyH));yticklabels(gclID(anyH)) +subplot(2,3,5); imagesc(psthTx, [], PSTH(anyH,:,1)); +title("L5-BC"); set(get(gca, "YAxis"), "Visible", "off") +subplot(2,3,6); imagesc(psthTx, [], PSTH(anyH,:,2)); +title("L5-MC"); set(get(gca, "YAxis"), "Visible", "off") + +%% +for cif = 1:size(imFiles,1) + ifName = fullfile(imFiles(cif).folder, imFiles(cif).name); + [~, bName] = fileparts(ifName); + im = imread(ifName, "jpg"); + imInv = 255 - im; + imwrite(imInv, fullfile(imFiles(cif).folder, string(bName) + "_Inv.jpg")) +end +%% Pooled anaesthetised experiments +dataDir = 'Z:\Emilio\SuperiorColliculusExperiments\Anaesthetised'; +load(fullfile(dataDir, 'Opto-responses.mat')) +fnOpts = {"UniformOutput", false}; H = logical(H); +gclID = clInfo(clInfo.ActiveUnit == 1, :).Properties.RowNames; +respWin = [3, 35]*1e-3; +condNames = arrayfun(@(x) string(x.name), relativeSpkTmsStruct); +concatCellRows = @(cmat) arrayfun(@(x) cat(2, cmat{x,:}),... + (1:size(cmat,1))', fnOpts{:}); +getSpikeCellMat = @(spkStruct) arrayfun(@(x) x.SpikeTimes,... + spkStruct, fnOpts{:}); +sqzSpks = cellfun(concatCellRows, getSpikeCellMat(relativeSpkTmsStruct),... + fnOpts{:}); +respSpks = cellfun(@(x) cellfun(@(y) y(y>=respWin(1)&y<=respWin(2)),... + x, fnOpts{:}), sqzSpks, fnOpts{:}); +stDv = cellfun(@(x) cellfun(@(y) std(y), x), respSpks, fnOpts{:}); +stDv = cat(2, stDv{:}); +[PSTH, bnEdgs] = cellfun(@(x) cellfun(@(y) histcounts(y,... + "BinLimits", respWin, "BinWidth", 5e-4), x, fnOpts{:}),... + respSpks, fnOpts{:}); bnEdgs = bnEdgs{1}{1}; +bnCnts = (bnEdgs(1:end-1)+bnEdgs(2:end))/2; +PSTH = cellfun(@(x) cat(1, x{:}), PSTH, fnOpts{:}); +for ccond = 1:size(condNames, 2) + fig = figure; axs(1) = subplot(1,2,1); + imagesc(bnCnts*1e3, [], PSTH{ccond}(H(:,ccond),:)) + yticks(1:sum(H(:,ccond))); title(condNames(ccond)) + yticklabels(cellfun(@(x) strrep(x, '_','\_'), gclID(H(:,ccond)),... + fnOpts{:})); xlabel("Time [ms]"); axs(2) = subplot(1,2,2); + barh(stDv(H(:,ccond),ccond), "EdgeColor", "none"); xlabel("Time [ms]"); + set(get(axs(2), "YAxis"), "Direction", "reverse", "Visible", "off") + xticklabels(xticks*1e3); title("\sigma in ms") + arrayfun(@(x) set(x, "Box", "off", "Color", "none"), axs) + linkaxes(axs,'y') + saveFigure(fig, fullfile(dataDir,"PopFigures",condNames(ccond)),1,1); +end +%% +dataDir = 'Z:\Emilio\SuperiorColliculusExperiments\Anaesthetised'; +repU = @(x) strrep(x,'_','.'); +spkTh = 0.8; +Npsth_t = size(PSTH,2); +m_ph = fit_poly([1, Npsth_t], timeLapse, 1); +psthTx = (1:Npsth_t)*m_ph(1) + m_ph(2); +respFlag = psthTx' > responseWindow; +respFlag = xor(respFlag(:,1), respFlag(:,2)); +% 0.8 spikes per trial as a threshold for accepting significance. +enghSpkFlag = squeeze(sum(PSTH(:, respFlag, :), 2) ./... + reshape(NaStack,1,1,[])) > spkTh; +cmoment = 1; +signPrCnt = (1-alph)*100; +%% Figures +for ccond = 1:Nccond + figure; imagesc(timeLapse, [], PSTH(:,:,ccond)./... + max(PSTH(:,:,ccond),[],2)) + yticks(1:size(PSTH,1));yticklabels(repU(gclID)) + title(sprintf("All clusters (%s)", consCondNames{ccond})); + figure; imagesc(timeLapse, [],... + PSTH(wruIdx,:,ccond)./max(PSTH(wruIdx,:,ccond),[],2)) + yticks(1:sum(wruIdx)); yticklabels(repU(gclID(wruIdx))) + title("Clusters with different evoked median") + momentStr = ["\mu", "Median"]; + for signLvl = 1:size(alph,2) + signFlag = signMat{ccond}(:,cmoment,signLvl) & wruIdx &... + enghSpkFlag(:,ccond); + sgnFig = figure; axs(1) = subplot(10,1,1:8); + imagesc(timeLapse, [], zscore(PSTH(signFlag,:, ccond),1,2)); + set(axs(1), "Box", "off", "Color", "none") + set(get(axs(1), "XAxis"), "Visible", "off") + yticks(1:sum(signFlag)); + yticklabels(repU(gclID(signFlag))); + title(sprintf("Z-score significance %.3f%% %s (%s)",... + signPrCnt(signLvl), consCondNames{ccond}, momentStr(cmoment))) + axs(2) = subplot(10,1,9:10); plot(psthTx,... + mean(zscore(PSTH(signFlag,:,ccond),1,2))) + linkaxes(axs, "x"); xlim(timeLapse); + set(axs(2), "Box", "off", "Color", "none") + xlabel(axs(2), "Time [s]"); ylabel(axs(2), "Z-score") + ylabel(axs(1), "Clusters"); + saveFigure(sgnFig, fullfile(dataDir, "PopFigures",... + sprintf("%s SPKTH%.2f SIGNLVL%.2f%%",consCondNames{ccond},... + spkTh, signPrCnt(signLvl))), 1) + end +end +%% Convergence proportions +rclIdx = arrayfun(@(x) arrayfun(@(y) wruIdx & enghSpkFlag(:,x) &... + signMat{x}(:,1,y), 1:size(alph,2), fnOpts{:}), 1:Nccond, fnOpts{:}); +rclIdx = cellfun(@(x) cat(2,x{:}), rclIdx, fnOpts{:}); +rclIdx = cat(3, rclIdx{:}); +%% +cvgPropFig = figure; bar(flip(squeeze(sum(rclIdx).\... + sum(all(rclIdx,3))),2), "EdgeColor", "none") +lgnd = legend({'BC','MC'}); +set(lgnd, "Box", "off", "Color", "none", "Location", "best") +ylim([0,1]) +set(gca, "Box", "off", "Color", "none") +xticklabels(signPrCnt) +ylabel("Convergence proportion") +xlabel("Significance percentage [%]") +title("Convergence proportion per \alpha") +saveFigure(cvgPropFig, fullfile(dataDir, "PopFigures/",... + "Relative convergence proportion per significance"), 1) +%% Convergence info +% Raw numbers +sum(rclIdx); +sum(rclIdx).\sum(all(rclIdx,3)); +% Motor unique +gclID(xor(rclIdx(:,1,1), all(rclIdx(:,1,:),3))) +% BC unique +gclID(xor(rclIdx(:,1,2), all(rclIdx(:,1,:),3))) +% Convergent +gclID(all(rclIdx(:,1,:),3)) +%% Response type +[mSubs, coeffs, Npc, Nv] = responseType(PSTH(rclIdx(:,1),:), timeLapse, 'Plot', true); +for cpc = unique(mSubs)' + mIdx = mSubs == cpc; + figure; imagesc(timeLapse, [], PSTH(mIdx,:)); + yticks(1:sum(mIdx)); + yticklabels(repU(gclID(mIdx))); + title(sprintf("PC %d", cpc)) +end + +%% +Nbin = 64; +ncl = size(relativeSpkTmsStruct(1).SpikeTimes,1); + +logPSTH = getLogTimePSTH(relativeSpkTmsStruct, true(ncl,1),... + 'tmWin', responseWindow, 'Offset', 2.5e-3, 'Nbin', Nbin,... + 'normalization', 'fr'); +logFigs = plotLogPSTH(logPSTH); + + diff --git a/Emilio/first_spike_4_R.m b/Emilio/first_spike_4_R.m new file mode 100644 index 0000000..d78cc60 --- /dev/null +++ b/Emilio/first_spike_4_R.m @@ -0,0 +1,18 @@ +fnOpts = {'UniformOutput', false}; +Ns_puc = arrayfun(@(c) ... + arrayfun(@(u) ... + cellfun(@(t) all([~isempty(t), t>0, t<0.05]), ... + firstSpkStruct(c).FirstSpikeTimes(u,:)), ... + 1:size(firstSpkStruct(c).FirstSpikeTimes, 1), fnOpts{:}), ... + 1:length(firstSpkStruct), fnOpts{:}); + +fs_puc = arrayfun(@(c) ... + arrayfun(@(u) ... + [repmat(c, sum(Ns_puc{c}{u}), 1), ... + repmat(u, sum(Ns_puc{c}{u}), 1), ... + [firstSpkStruct(c).FirstSpikeTimes{u,Ns_puc{c}{u}}]'], ... + 1:size(firstSpkStruct(c).FirstSpikeTimes, 1), fnOpts{:}), ... + 1:length(firstSpkStruct), fnOpts{:}); + +fs_puc = cellfun(@(c) cat(1, c{ cellfun(@(c2) ~isempty(c2),c) }), fs_puc, fnOpts{:}); +fs_puc = cat(1, fs_puc{:}); \ No newline at end of file diff --git a/Emilio/getRollerSpeedScript.m b/Emilio/getRollerSpeedScript.m new file mode 100644 index 0000000..037f261 --- /dev/null +++ b/Emilio/getRollerSpeedScript.m @@ -0,0 +1,188 @@ +% Reading the roller positions in a matrix of Nx2 (rp) where the first +% column is the position and the second the time in microseconds, a cell +% array with the trigger times (tTimes), and the corrected values from the +% arduino rollTrigTable +% Microseconds +us = 1e-6; +% cell- and arrayfun auxiliary variable. +fnOpts = {'UniformOutput', false}; +%% Choosing the file +rfName = "Z:\Emilio\SuperiorColliculusExperiments\Roller\Batch3\WT27\211209\2.2bar\Roller_position2021-12-09T18_44_00.csv"; +% rfName = uigetdir("Z:\Emilio\SuperiorColliculusExperiments\Roller\Batch3\",... +% "Choose directory to work with"); +[rp, tTimes, rollTrigTable] = readRollerPositionsFile(rfName); +%% Reading and preprocessing roller speed +% Get the folder and file name of the experiment to get the video frame +% rate to re-sample the position signal. +[dataDir, rollBaseName] = fileparts(rfName); +expDate = extractAfter(rollBaseName, "Roller_position"); +% Split in date and time get the video 10 seconds ahead +dateFormStr = 'yyyy-MM-dd''T''HH_mm_ss'; +expDate = datetime(expDate, 'InputFormat', dateFormStr); +vidDate = expDate + seconds(10); vidDate.Format = dateFormStr; +vfName = fullfile(dataDir, "roller" + string(vidDate) + ".avi"); +try + vidObj = VideoReader(vfName); +catch + vfName = dir(fullfile(dataDir, "*.avi")); + if numel(vfName) > 1 + sel = listdlg("ListString", arrayfun(@(x) x.name, vfName,... + 'UniformOutput', false), "SelectionMode", "multiple"); + if isempty(sel) + fprintf(1, 'Cancelling...\n') + return + end + vfName = fullfile(vfName(sel).folder, vfName(sel).name); + else + vfName = fullfile(vfName.folder, vfName.name); + end +end +fr = vidObj.FrameRate; +% Computing a regular-interval time array in seconds to interpolate in +% between the asynchronous roller position values. +rollFs = fr; rollTx = (rp(1,2)*us:1/rollFs:rp(end,2)*us)'; +% Encoder to centimeters per second. +en2cm = ((2*pi)/((2^15)-1))*((14.85/2)^2)*rollFs; +% Roller time axis +rx = interp1(rp(:,2)*us, rp(:,1), rollTx, 'pchip'); +%TODO: Beautify this figure +figure; plot(rp(:,2)*us, rp(:,1), rollTx, rx); +title("Roller position") +% Now, we compute the roller speed. Finally. We get the speed bc its easier +% to locate the small movements of the mouse. +v = diff(rx); +[b, a] = butter(10, (2*18)/rollFs, "low"); +vf = filtfilt(b, a, v); +%TODO: Beautify figure with butter and flies, or fries. +figure; plot(rollTx(1:end-1), [v, vf]); +%% Getting trigger times +% The point of this section is to equalize the triggers from the arduino +% with the trigger signals recorded from the Intan board. +expDate.Format = dateFormStr; atTimes = tTimes{:}.*us; +% Similar strategy as with the video but without addin 10 seconds. +fID = fopen(fullfile(dataDir,... + "TriggerSignals" + string(expDate) + ".bin"), "r"); +trig = fread(fID, [2, Inf], 'uint16=>int32'); [~] = fclose(fID); +trig = median(trig, 2) - trig; %trig = int16(trig); +figure; plot(trig'); +% Sampling frequency of the intan board: 30 kHz. We also extract the +% trigger onsets of each pulse using the StepWaveform object. +fs = 3e4; pObj = StepWaveform(trig(1,:), fs); +pSubs = pObj.subTriggers; itTimes = pSubs./fs; +% Moving all arduino times from their arbitrary time back to zero. +atTimes = atTimes - rollTx(1); +% Removing repeated values from the trigger times. +atTimes([false;diff(atTimes(:,1)) < 1],:) = []; +% If the arduino trigger times are different from the intan, we need to +% fix it. +if size(itTimes,1) ~= size(atTimes,1) + % Oh no... they are different. we can exclude the intan extra times. + % But if you really feel up for it, you can estimate the time of + % arduino. I can search for it in my MATLAB history. + fprintf(1, 'Hm... What should we do?'); + return +end +% If RollerSpeed.mat doesn't exist in the experiment folder, then create +% it. +rsfName = fullfile(dataDir, "RollerSpeed" + string(expDate) + ".mat"); +if ~exist(rsfName, 'file') + save(rsfName, "vf", "rollTx", "rollFs", "atTimes", "itTimes", "rx") +end +%% Figure time! +fFig = figure(); +plot(rollTx(1:end-1) - rollTx(1), vf, "DisplayName", "Roller velocity (speed)") +hold on; stem(itTimes(:,1), ones(size(itTimes, 1), 1), "DisplayName", "Intan triggers") +stem(atTimes, -ones(size(atTimes, 1), 1), "DisplayName", "Arduino triggers") +lgnd = legend("show"); set(lgnd, "Box", "off", "Location", "best") +title("Roller velocity and triggers"); xlabel("Time [s]"); +ylabel("Roller velocity [encoder step per second]") +set(gca, "Box", "off", "Color", "none") +saveFigure(fFig, fullfile(dataDir, "Roller velocity and triggers"), 1); +%% Trigger average of the roller speed. +timeLapse = [-1, 2]; +[~, vStack] = getStacks(false, atTimes * rollFs, 'on', timeLapse, rollFs,... + rollFs, [], vf); vStack = squeeze(vStack); +plotEEGchannels(vStack', [], diff(timeLapse), rollFs, 1, -timeLapse(1)) + +[Nts, NTa] = size(vStack); +[ms, bs] = lineariz([1, Nts], timeLapse(2), timeLapse(1)); +% Stack time axis --> st T x +stTx = (1:Nts)'*ms + bs; +% Spontaneous logical flag. +spontFlag = stTx < 0; +% No previous movement before nor after the stimulus +rmsTh = 0.85; +% Logical Flag to exclude trials with 'too much movement' before or after +% the trigger. +excludeFlag = rms(vStack(spontFlag,:)) > rmsTh | rms(vStack) > 0.9; +% Previous movement before +% excludeFlag = rms(vStack(spontFlag,:)) < 0.85; + +delayFlags = true(NTa,1); Nccond = 1; +% Number of triggers (Number of alignment points) Na excluding the +% indicated trials. +Na = sum(delayFlags & ~excludeFlag(:)); + +% Loop to get the maximum value of the roller velocity. +rngRollSpeed = cell(Nccond,1); +responseWindow = [0, 0.4]; +responseFlags = stTx >= responseWindow(1) & stTx <= responseWindow(2); +for ccond = 1:Nccond + rngRollSpeed{ccond} =... + max(abs(vStack(responseFlags, delayFlags(:, ccond) & ~excludeFlag(:))))'; +end +% Maximum number of trials +maxNt = max(cellfun(@numel, rngRollSpeed)); +% Placing the trial's maximum speed in a matrix +speedsMat = cellfun(@(x) cat(1, x, nan(maxNt - size(x,1),1)),... + rngRollSpeed, fnOpts{:}); speedsMat = cat(2, speedsMat{:}); +speedsMat = speedsMat * en2cm; +% Cutting on different thresholds for all trials +thetaSpeed = 0.1:0.1:3; +moveFlag = speedsMat > thetaSpeed; +probMove = sum(moveFlag)./Na; probMove = squeeze(probMove); +probFig = figure; plot(thetaSpeed, probMove'); ylim([0,1]) +set(gca, "Box", "off", "Color", "none") +generalProb = nnz(moveFlag)./numel(moveFlag); +puffIntensity = strsplit(string(dataDir), "\"); +puffIntensity = puffIntensity(end); +lgnd = legend(puffIntensity); set(lgnd, "Box", "off", "Location", "best") +ylabel("Trial proportion / Movement probability") +xlabel("Speed threshold \theta [cm/s]") +title(sprintf("Trial proportion with elicited movement\n(General prob: %.2f)",... + generalProb)) +%% Save? +sveFigAns = questdlg("Save figure?", "Save", "Yes", "No", "Yes"); +probFigName = ... + sprintf('Movement probability EX%.2f RW%.1f - %.1f s',... + rmsTh, responseWindow); +if strcmpi(sveFigAns, "Yes") + saveFigure(probFig, fullfile(dataDir, probFigName), 1) +end +%% DeepLabCuts - whisker movements as a reaction. +[~, vfNameBase] = fileparts(vfName); +dlcffName = dir(fullfile(dataDir, string(vfNameBase)) + "*filtered.csv"); +dlcffName = fullfile(dataDir, dlcffName.name); +dlcTable = readDLCData(dlcffName); +[a_bodyParts, refStruct] = getBehaviourSignals(dlcTable); +% Left whiskers +lw = mean(a_bodyParts{:,{'lw1', 'lw2', 'lw3', 'lw4'}},2); +lw = lw - mean(lw); +% Right whiskers +rw = mean(a_bodyParts{:,{'rw1', 'rw2', 'rw3', 'rw4'}},2); +rw = rw - mean(rw); +% Nose signal +nose = a_bodyParts{:,"nose"} - mean(a_bodyParts{:,"nose"}); +% Trigger cut +sNames = ["LeftWhiskers","RightWhiskers","Nose"]; +[~, dlcStack] = getStacks(false, round(itTimes * fr), 'on', timeLapse,... + fr, fr, [], lw, rw, nose); +for cbp = 1:size(dlcStack,1) + plotEEGchannels(squeeze(dlcStack(cbp,:,:))', [], diff(timeLapse),... + fr, 1, -timeLapse(1)); + title(sNames(cbp)) + figure; plot(stTx, squeeze(dlcStack(cbp,:,:)), "LineWidth", 0.5,... + "Color", 0.75*ones(3,1)); hold on; + plot(stTx, mean(dlcStack(cbp, :, :), 3), "LineWidth", 2, "Color", "k") + title(sNames(cbp)) +end diff --git a/Emilio/helix_BehReconstruct.sh b/Emilio/helix_BehReconstruct.sh new file mode 100644 index 0000000..ebad542 --- /dev/null +++ b/Emilio/helix_BehReconstruct.sh @@ -0,0 +1,9 @@ +#!/bin/bash +#SBATCH --partition=cpu-single +#SBATCH --ntasks=32 +#SBATCH --time=24:00:00 +#SBATCH --mem=128gb + +module load math/matlab/R2023a + +matlab -nodisplay -r poolEphBeh_regression > results.out 2>&1 \ No newline at end of file diff --git a/Emilio/homogenise_images_4_sharcq.m b/Emilio/homogenise_images_4_sharcq.m new file mode 100644 index 0000000..565a978 --- /dev/null +++ b/Emilio/homogenise_images_4_sharcq.m @@ -0,0 +1,39 @@ + +fullpath = @(x) fullfile(x.folder, x.name); +get_img_size = @(x) [x.getTag("ImageWidth"), x.getTag("ImageLength")]; +fnOpts = {'UniformOutput', false}; +ideal_prop = 57/40; + + +img_dir = fullfile("Z:\Leonie\AC\M68\M68 fit"); +original_resolution = 1.15; +desired_resolution = 10; +homogenised_img_folder = fullfile(img_dir, 'Homogenised and downsampled'); +if ~exist(homogenised_img_folder,"dir") + mkdir(homogenised_img_folder) +end +scaling_factor = original_resolution/desired_resolution; + +img_paths = dir(fullfile(img_dir, "*Merged_overlay.tif")); +roi_paths = dir(fullfile(img_dir, "*Merged_overlay.csv")); +t_objs = arrayfun(@(x) Tiff(fullpath(x), 'r'), img_paths); +img_size = arrayfun(@(x) get_img_size(x), t_objs, fnOpts{:}); +arrayfun(@(x) x.close, t_objs); +img_size = cat(1, img_size{:}); +img_prop = img_size(:,1)./img_size(:,2); +final_sz = ceil(max(img_size(:,1)) * [1, (1/ideal_prop)]); +for ci = 1:numel(img_paths) + shift_px = [floor((final_sz([2,1]) - img_size(ci,[2,1]))/2)]; + img = imread(fullpath(img_paths(ci))); + img2 = padarray(img, [shift_px, 0], 0, 'both'); + img2 = imresize(img2, scaling_factor); + img2 = img2(1:800,1:1140,:); + roi_table = readtable(fullpath(roi_paths(ci)), ... + 'Delimiter',',','VariableNamingRule','preserve'); + roi_table{:,{'X','Y'}} = round((roi_table{:,{'X','Y'}} + ... + shift_px([2,1]))*scaling_factor); + imwrite(img2,fullfile(homogenised_img_folder, ... + img_paths(ci).name),'tif', 'WriteMode', 'overwrite') + writetable(roi_table,fullfile(homogenised_img_folder, ... + roi_paths(ci).name),'WriteVariableNames',true) +end \ No newline at end of file diff --git a/Emilio/iegRNs_AmplitudeIndexPool.m b/Emilio/iegRNs_AmplitudeIndexPool.m new file mode 100644 index 0000000..6abc3ca --- /dev/null +++ b/Emilio/iegRNs_AmplitudeIndexPool.m @@ -0,0 +1,138 @@ +roller_path = "Z:\Emilio\SuperiorColliculusExperiments\Roller"; +bp_paths = dir( fullfile( roller_path, "\Batch*\Batch*_BehaviourIndex.mat" ) ); +bodypart_names = string( {bp_paths.name} )'; +b_num = regexp( bodypart_names, '\d+', 'match' ); +b_num = cat(1, b_num{:} ); b_num = str2double( b_num ); +expandPath = @(x) fullfile( x.folder, x.name); +fnOpts = {'UniformOutput', false}; + +mc_subs = [1, 2, 7, 8, 10, 12, 15, 16, 18]; +bc_subs = [1, 2, 19]; +bs_subs = 2; +mt_subs = [11, 14, 17]; + +exp_type_subs_cell = {mc_subs, bc_subs, bs_subs, mt_subs}; +% clearvars *_subs -except exp_type_subs_cell + +mice_bulk = arrayfun( @(x) load( expandPath( x ), "mice" ), ... + bp_paths ); +mice_exp_sub = cellfun(@(x) any(b_num == x, 2), exp_type_subs_cell, ... + fnOpts{:} ); + +summMice = cellfun(@(x) summariseMiceBeh( cat(1, mice_bulk(x).mice ) ), ... + mice_exp_sub, fnOpts{:} ); +%% +fnOpts = {'UniformOutput', false}; +exp_subtype = {'iRNs', 'eRNs', 'RNs'}; +% exp_subtype = {'terminal inhib'}; +name_keys = {'GADi', {'GADe', 'vGlut'}, 'WTg'}; +% name_keys = {'GADi', 'vGlut', 'WTg'}; +% name_keys = {'GADi', 'GADe', 'WTg'}; +% name_keys = {{'Rb', 'WT'}}; +bodypart_names = ["Stim-whisker mean", "Stim-whisker fan arc", ... + "Nonstim-whisker mean", "Nonstim-whisker fan arc", "Interwhisk arc", ... + "Symmetry", "Nose", "Roller speed"]; +signTh = [0.001, 0.01, 0.05, 0.1]; +createtiles = @(f,nr,nc) tiledlayout( f, nr, nc, ... + 'TileSpacing', 'Compact', 'Padding', 'tight'); +bxOpts = cellstr(["Notch", "on", "JitterOutliers", "on", ... + "BoxFaceColor", "k", 'MarkerStyle', '.', 'MarkerColor', 'k']); +txOpts = {'HorizontalAlignment','left','VerticalAlignment', 'middle', ... + 'Rotation', 90, 'Interpreter', 'latex'}; +cleanAxis = @(x) set( x, "Box", "off", "Color", "none" ); +fig_path = fullfile( ... + "Z:\Emilio\SuperiorColliculusExperiments\Roller\PoolFigures" ); +% load( fullfile( fig_path, "MC, BC, BS, MCterminals pool.mat" ), "summMice" ); + +expMice = summMice{1}(3); +ovwtFlag = false; +% xLabels = ["Control", "C100", "F100"]; +xLabels = ["Control", "C30", "F30", "C100", "F100", ... + "C400", "F400", "C600", "Musc", "Musc" ]; +% xLabels = ["Control", "C30", "F30", "C100", "F100", ... +% "C400", "F400", "Dead", "PTX", "PTX" ]; +exp_subtype_flags = cellfun(@(x) contains( expMice.MiceNames, x ), ... + name_keys, fnOpts{:} ); +exclude_names = {'GADi13', 'GADi15', 'GADi53'}; +exclude_mice = contains(expMice.MiceNames, exclude_names); +exp_subtype_flags = cat( 2, exp_subtype_flags{:} ); +figs = gobjects( numel( exp_subtype ), 1 ); +% exp_type = join( ['MC-', expMice.ExperimentalGroup] ); +exp_type = expMice.ExperimentalGroup; +%% +for cest = 1:numel(exp_subtype) + cons_mice = exp_subtype_flags(:,cest) & ~exclude_mice; + exp_subtype_flags(:,cest) = exp_subtype_flags(:,cest) & ~exclude_mice; + if sum( cons_mice ) + + figs(cest) = figure( "Color", "w" ); + % t = createtiles( figs(cest), 2, 1 ); ax = nexttile(t); + t = createtiles( figs(cest), 1, 1 ); ax = nexttile(t); + aux = squeeze( mean( expMice.AmplitudeIndex(:,:, ... + cons_mice), 1, "omitmissing" ) )'; + boxchart( ax, aux, bxOpts{:} ); + ylabel( ax, 'Amplitude index' ); xticklabels( ax, xLabels ); + ylim(ax, [0,1]); cleanAxis(ax); %ax.XAxis.Visible = "off"; + p = arrayfun(@(x) signrank( aux(:,1), aux(:,x) ), 2:size(aux,2), ... + "ErrorHandler", @(s,a) nan(1) ); + mark_flag = p(:) < signTh; + text( ax, 2:size(aux,2), 1.15*max( aux(:,2:end), [], 1 ), ... + arrayfun(@(x) sprintf("$$p=%.3g$$", x), p(:) ), txOpts{:} ) + xticklabels( xLabels ); + + % ax = nexttile(t); + % aux = squeeze( mean( expMice.TrialProportions(:,:, ... + % cons_mice), 1, "omitmissing" ) )'; + % boxchart(ax, aux, bxOpts{:} ); + % ylabel( ax, 'Trial proportions' ) + % xticklabels( xLabels ); ylim([0,2]); cleanAxis( ax ); + % p = arrayfun(@(x) signrank( aux(:,1), aux(:,x) ), 2:size(aux,2), ... + % "ErrorHandler", @(s,a) nan(1) ); + % text(ax, 2:size(aux,2), 1.15*max( aux(:,2:end), [], 1 ), ... + % arrayfun(@(x) sprintf("$$p=%.3f$$", x), p(:) ), txOpts{:} ) + title(t, sprintf( "%s Area/%s", exp_type, exp_subtype{cest} ) ) + + % for cbp = 1:numel(bodypart_names) + % % fig = figure("Color", "w"); t2 = createtiles( fig, 2, 1 ); + % fig = figure("Color", "w"); t2 = createtiles( fig, 1, 1 ); + % ax = nexttile(t2); + % aux = squeeze( mean( expMice.PolygonUnfoldAmplIndx(:,:, ... + % cbp, cons_mice), 2, "omitmissing" ) )'; + % boxchart( ax, aux, bxOpts{:} ); + % ylabel( ax, 'Amplitude index' ); xticklabels( ax, xLabels ); + % ylim(ax, [0,1]); cleanAxis(ax); ax.XAxis.Visible = "off"; + % p = arrayfun(@(x) signrank( aux(:,1), aux(:,x) ), 2:size(aux,2), ... + % "ErrorHandler", @(s,a) nan(1) ); + % text( 2:size(aux,2), 1.15*max( aux(:,2:end), [], 1 ), ... + % arrayfun(@(x) sprintf("$$p=%.3f$$", x), p(:) ), txOpts{:} ) + + % ax = nexttile(t2); + % aux = squeeze( mean( expMice.PolygonUnfoldTrialProp(:,:, ... + % cbp, cons_mice), 2, "omitmissing" ) )'; + % boxchart(ax, aux, bxOpts{:} ); + % ylabel( ax, 'Trial proportions' ) + % xticklabels( xLabels ); ylim([0,2]); cleanAxis( ax ); + % p = arrayfun(@(x) signrank( aux(:,1), aux(:,x) ), 2:size(aux,2), ... + % "ErrorHandler", @(s,a) nan(1) ); + % text( 2:size(aux,2), 1.15*max( aux(:,2:end), [], 1 ), ... + % arrayfun(@(x) sprintf("$$p=%.3f$$", x), p(:) ), txOpts{:} ) + % title(t2, sprintf( "%s/%s", bodypart_names(cbp), exp_subtype{cest} ) ) + + % saveFigure( fig, fullfile( fig_path, join( [bodypart_names(cbp), ... + % exp_type, exp_subtype{cest}, "all mice pool" ] ) ), ... + % true, ovwtFlag ) + % saveFigure( fig, fullfile( fig_path, join( [bodypart_names(cbp), ... + % exp_type, exp_subtype{cest}, sum( cons_mice ) ] ) ), ... + % true, ovwtFlag ) + % end + end +end + +% arrayfun(@(f) saveFigure( figs(f), fullfile( fig_path, ... +% join( ["Areas", exp_type, exp_subtype{f}, "all mice pool"] ) ), true, ovwtFlag ), ... +% find( arrayfun(@(f) ~isa( f, 'matlab.graphics.GraphicsPlaceholder'), figs ) ) ); + +% arrayfun(@(f) saveFigure( figs(f), fullfile( fig_path, ... +% join( ["Areas", exp_type, exp_subtype{f}, ... +% sum( exp_subtype_flags(:,f) ) ] ) ), true, ovwtFlag ), ... +% find( arrayfun(@(f) ~isa( f, 'matlab.graphics.GraphicsPlaceholder'), figs ) ) ); \ No newline at end of file diff --git a/Emilio/jitt_reorganise_counts.m b/Emilio/jitt_reorganise_counts.m new file mode 100644 index 0000000..19aed14 --- /dev/null +++ b/Emilio/jitt_reorganise_counts.m @@ -0,0 +1,13 @@ +cfg_struct = configStructure; +cfg_struct.Viewing_window_s = [-0.3,0.2]; +[PSTHpupt, psthTx, n_trials] = getPSTH_perU_perT( ... + relativeSpkTmsStruct, cfg_struct); +n_conditions = numel(PSTHpupt); +n_elements = cellfun(@(x) numel(x), PSTHpupt); +condition_names = {'laser1ms','laser10ms','laser50ms',... + 'laser100ms','laser200ms','whisker'}; +for ccond = 1:n_conditions + [n_bins, n_neurons] = size(PSTHpupt{ccond},[2,3]); + + +end \ No newline at end of file diff --git a/kilosortOnSingleTetrodes.m b/Emilio/kilosortOnSingleTetrodes.m similarity index 100% rename from kilosortOnSingleTetrodes.m rename to Emilio/kilosortOnSingleTetrodes.m diff --git a/Emilio/logreg.m b/Emilio/logreg.m new file mode 100644 index 0000000..28af697 --- /dev/null +++ b/Emilio/logreg.m @@ -0,0 +1,4 @@ +function y_hat = logreg(Xtrain, ytrain, Xtest) +mdl = lassoglm( Xtrain, ytrain, 'Distribution', 'binomial', 'Link', 'logit' ); +y_hat = predict(mdl, Xtest); +end \ No newline at end of file diff --git a/Emilio/map_creation.m b/Emilio/map_creation.m new file mode 100644 index 0000000..b0b1899 --- /dev/null +++ b/Emilio/map_creation.m @@ -0,0 +1,15 @@ +CC_key = ''; +for cc = 1:length(consCondNames)-1 + CC_key = [CC_key, sprintf('%s-', consCondNames{cc})]; %#ok +end +CC_key = [CC_key, sprintf('%s', consCondNames{cc+1})]; +CC_map = containers.Map(CC_key, {wruIdx}); + +C_key = condNames{chCond}; +C_map = containers.Map(C_key, CC_map); + +SW_key = sprintf('SW:%.2f-%.2f', spontaneousWindow*1e3); +SW_map = containers.Map(SW_key, C_map); + +RW_key = sprintf('RW:%.2f-%.2f', responseWindow*1e3); +resp_map = containers.Map(RW_key, SW_map); \ No newline at end of file diff --git a/Emilio/mice_struct_to_table.m b/Emilio/mice_struct_to_table.m new file mode 100644 index 0000000..8020e8d --- /dev/null +++ b/Emilio/mice_struct_to_table.m @@ -0,0 +1,17 @@ +fnOpts = { 'UniformOutput', false }; +Ni = arrayfun(@(m) arrayfun(@(s) size( s.Intensities, 1 ), m.Sessions ), ... + mice, fnOpts{:} ); +Nr = sum( cat( 1, Ni{:} ) ); +hab_table = zeros( Nr, 12 ); +cr = 1; +for cm = 1:numel(mice) + for cs = 1:numel(mice(cm).Sessions) + Nism = size( mice(cm).Sessions(cs).Intensities, 1 ); + idxs = (0:Nism-1) + cr; + hab_table(idxs, 1:2) = repmat( [cm,cs], Nism, 1 ); + hab_table(idxs, 3:4) = [mice(cm).Sessions(cs).Intensities, ... + mice(cm).Sessions(cs).BehIndex]; + hab_table(idxs, 5:end) = mice(cm).Sessions(cs).MaxVals; + cr = cr + Nism; + end +end \ No newline at end of file diff --git a/Emilio/muscimol_analysis.m b/Emilio/muscimol_analysis.m new file mode 100644 index 0000000..0c1fecc --- /dev/null +++ b/Emilio/muscimol_analysis.m @@ -0,0 +1,28 @@ +fullName = @(x) string(fullfile(x.folder, x.name)); +fnOpts = {'UniformOutput', false}; +%% +expDir = "Z:\Emilio\SuperiorColliculusExperiments\Roller\Batch2_ephys\MC\WT13\211119_C"; +behDirs = dir(fullfile(expDir, "Beh*")); behDir = fullName(behDirs); +%% +ephDirs = dir(fullfile(expDir, "ephys_*")); ephDir = fullName(ephDirs); +condFiles = dir(fullfile(ephDir, "*analysis.mat")); +load(fullName(condFiles), "Conditions", "fs") +%% +ccSub = find(arrayfun(@(c) contains(c.name, ["Control Puff", "PTX","Death"], ... + "IgnoreCase", true), Conditions)); + +pairedStim = arrayfun(@(x) Conditions(1).Triggers(:,1) == ... + Conditions(x).Triggers(:,1)', ccSub, fnOpts{:}); +pairedStim = cellfun(@(x) any(x, 2), pairedStim, fnOpts{:}); +pairedStim = cat(2, pairedStim{:}); +consCondNames = arrayfun(@(x) string(x.name), Conditions(ccSub)); +%% +[behRes, behFigDir] = analyseBehaviour(behDir, 'PairedFlags', pairedStim, ... + 'ConditionsNames', cellstr(consCondNames)); +biFigPttrn = "BehIndex%s"; +biFigPttrn = sprintf(biFigPttrn, sprintf(" %s (%%.3f)", consCondNames)); +[pAreas, ~, behAreaFig] = createBehaviourIndex(behRes); +behRes = arrayfun(@(bs, ba) setfield(bs,'BehIndex', ba), behRes, pAreas); +set(behAreaFig, 'UserData', behRes) +biFN = sprintf(biFigPttrn, pAreas); +saveFigure(behAreaFig, fullfile(behFigDir, biFN), true); \ No newline at end of file diff --git a/Emilio/neg_log_lik_lnp.m b/Emilio/neg_log_lik_lnp.m new file mode 100644 index 0000000..63adce3 --- /dev/null +++ b/Emilio/neg_log_lik_lnp.m @@ -0,0 +1,5 @@ +function nllik = neg_log_lik_lnp(theta, X, y) +lambda = exp( X * theta ); +log_lik = y' * log( lambda ) - sum( lambda ); +nllik = -log_lik; +end \ No newline at end of file diff --git a/Emilio/parfor_tryout.m b/Emilio/parfor_tryout.m new file mode 100644 index 0000000..65c5112 --- /dev/null +++ b/Emilio/parfor_tryout.m @@ -0,0 +1,19 @@ +Npr = 1000; +for cl = 1:find(wruIdx) + auxSubs = arrayfun(@(x) randperm(NnzvPcl(cl)), 1:Npr, 'UniformOutput', false); + auxSpks = cellfun(@(s) round(cumsum(ISIVals{cl}(s))*fs), auxSubs, 'UniformOutput', false); + rndStack = getStacks(false, Conditions(chCond).Triggers, onOffStr,... + timeLapse, fs, fs, cat(2, spkSubs{cl}, auxSpks)); + rndStack(2,:,:) = []; + rst2 = arrayfun(@(x) getRasterFromStack(rndStack, ~delayFlags(:,x), ... + [false; true(Npr-2,1)], timeLapse, fs, true, true), ... + 1:size(delayFlags,2), 'UniformOutput', false); + [C, bE] = arrayfun(@(c) histcounts([rst2{1}{c,:}], 'BinWidth', ... + binSz, 'BinLimits', timeLapse), 1:size(rst2{1},1), ... + 'UniformOutput', false); + bE = bE{1}; Ctot = cat(1, C{:}); bC = mean([bE(1:end-1);bE(2:end)]); + P = arrayfun(@(x) fitdist(Ctot(2:end,x), 'Poisson'), 1:size(Ctot,2)); + lambdas = arrayfun(@(x) x.lambda, P); + PI = arrayfun(@(x) x.paramci, P, 'UniformOutput', false); PI = cat(2, PI{:}); + figure; plot(bC, Ctot') +end \ No newline at end of file diff --git a/Emilio/pg2ltp.m b/Emilio/pg2ltp.m new file mode 100644 index 0000000..b0719b0 --- /dev/null +++ b/Emilio/pg2ltp.m @@ -0,0 +1,44 @@ +% Transform Conditions from the ProtocolGetter to LTP +% NTa = size(Conditions(1).Triggers,1); +% [biGaps, gapSubs] = sort(diff(Conditions(1).Triggers(:,1)), 'descend'); +% gapFlag = abs(zscore(biGaps)) > 3; +% mainGaps = sort(gapSubs(gapFlag), 'ascend'); +% Ng = numel(mainGaps); +% Ncond = Ng+1; +% condFlags = false(NTa, Ncond); +% initSub = 1; +% for cg = 1:Ng +% condFlags(initSub:mainGaps(cg),cg) = true; +% initSub = mainGaps(cg) + 1; +% end +% condFlags(initSub:NTa, Ncond) = true; +% Na = sum(condFlags,1); +[condFlags, Na] = conditionBlock(Conditions, 1); +Ncond = size(condFlags, 2); +%% Creating the LTP Condition structure +NewConditions = struct('name','Control','Triggers',... + Conditions(1).Triggers(condFlags(:,1),:)); +if Ncond == 2 + NewConditions(2).name = 'Induction'; + NewConditions(2).Triggers = Conditions(2).Triggers; + NewConditions(3) = struct('name','AfterInduction','Triggers',... + Conditions(1).Triggers(condFlags(:,2),:)); + NewConditions(4) = Conditions(1); + NewConditions(5) = Conditions(2); +elseif Ncond == 3 + [condFlagsL, NaL] = conditionBlock(Conditions, 2); + NewConditions(2).name = 'FakeInduction'; + NewConditions(2).Triggers = Conditions(2).Triggers(condFlagsL(:,1),:); + NewConditions(3) = struct('name','AfterFakeInduction','Triggers',... + Conditions(1).Triggers(condFlags(:,2),:)); + NewConditions(4) = Conditions(1); + NewConditions(5) = Conditions(2); + NewConditions(6).name = 'Induction'; + NewConditions(6).Triggers = Conditions(2).Triggers(condFlagsL(:,2),:); + NewConditions(7).name = 'AfterInduction'; + NewConditions(7).Triggers = Conditions(1).Triggers(condFlags(:,3),:); +else + % No experiment planned into this direction + fprintf(1,'Review the Conditions variable. Too many conditions for LTP') +end +Conditions = NewConditions; diff --git a/Emilio/poolBehIndices.m b/Emilio/poolBehIndices.m new file mode 100644 index 0000000..65f95fe --- /dev/null +++ b/Emilio/poolBehIndices.m @@ -0,0 +1,285 @@ +%#ok<*AGROW,*SAGROW> +%% Auxiliary variables and functions +fnOpts = {'UniformOutput', false}; +expandName = @(x) fullfile(x.folder, x.name); +animalPattern = '[A-Z][a-z]+\d{1,}'; +rsOpts = {animalPattern, 'SearchType', 'expression'}; +ctOpts = {'IgnoreCase', true}; +lsOpts = {'L\d+.\d+', 'match'}; +behFF = "Beh V-0.45 - 0.50 s R25.00 - 350.00 ms"; +tblOpts = {'VariableNames', {'Conditions', 'Trial_and_Amp_Indices', 'PolygonUnfold','BaselineL2'}}; +my_zscore = @(x, m, s) ( x - m ) ./ ( s .* (s~=0) + 1 .* (s==0) ); +total_var_dist = @(dmat) integral( @(x) abs( pdf( dmat(1), x ) - pdf( dmat(2), x ) ), -5, 5 ); +tocol = @(x) x(:); +%% Assuming 1 level of animal organisation i.e. +% BatchX/FolderA/Animal001 +% BatchX/FolderB/Animal002 +batchDir = fullfile( "Z:\Emilio\SuperiorColliculusExperiments", ... + "Roller", "Mock" ); +%Z:\Emilio\SuperiorColliculusExperiments\Roller\Batch15_ephys + +childFolders = dir(batchDir); + +pointFlag = arrayfun(@(x) any(strcmpi(x.name, {'.','..'})), childFolders); +fileFlag = ~[childFolders.isdir]'; +childFolders(pointFlag | fileFlag) = []; +animalFolders = arrayfun(@(d) recursiveFolderSearch(expandName(d), ... + rsOpts{:}), childFolders, fnOpts{:}); animalFolders = cat(1, animalFolders{:}); +%% Looping animals +oldMouse = ""; +mc = 0; mice = []; +for cad = animalFolders(:)' + [structPath, currMouse] = fileparts(cad); + [~, structName] = fileparts(structPath); + if string(oldMouse) ~= string(currMouse) + oldMouse = currMouse; + mice = [mice; struct('Name', currMouse, 'Sessions',[], ... + 'Structure', structName)]; + mc = mc + 1; + sc = 0; oldSess = ""; oldDepth = ""; + end + sessDirs = getSubFolds(cad); + % Just date sessions + onlyDateSessFlag = arrayfun(@(x) string(regexp(x.name, '[0-9]{6}', ... + 'match')), sessDirs, fnOpts{:}); + sessDirs(cellfun(@isempty, onlyDateSessFlag)) = []; + for csd = sessDirs(:)' + curDir = expandName(csd); + sessDateDepth = regexp(csd.name, '(\d{6}).*_(\d{4})?', 'tokens', 'once'); + if ~isempty( sessDateDepth ) + currSess = sessDateDepth{1}; + if isempty( sessDateDepth{2} ) + depthSess = ''; + else + depthSess = sessDateDepth{2}; + end + else + currSess = regexp(csd.name, '(\d{6})', 'tokens', 'once'); + depthSess = ''; + if isempty(currSess) + fprintf( 1, "Unable to get session date and depth\n" ); + fprintf( 1, "Skipping: %s %s\n", currMouse, csd.name ) + continue + end + end + childFolders = getSubFolds(curDir); + sessOrgDirs = arrayfun(@(d) string(d.name), childFolders); + sessOrgDirs(contains(sessOrgDirs, {'behaviour', 'ephys', ... + 'figures', 'opto'}, ctOpts{:})) = []; + behFigDir = arrayfun(@(d) recursiveFolderSearch(expandName(d), ... + behFF), childFolders, fnOpts{:}); behFigDir = cat(1, behFigDir{:}); + aiIdxFiles = arrayfun(@(d) dir(fullfile(d, "Amplitude index*.fig")), ... + behFigDir, fnOpts{:}); aiIdxFiles = cat(1, aiIdxFiles{:}); + if isempty(aiIdxFiles) + fprintf(1, 'No behaviour analysis done! Skipping %s!\n', curDir) + continue + end + aiIdxFig = arrayfun(@(x) openfig(expandName(x), 'invisible'), ... + aiIdxFiles); behRes = arrayfun(@(x) get(x, 'UserData'), ... + aiIdxFig, fnOpts{:}); arrayfun(@close, aiIdxFig) + condNames = cellfun(@(x) arrayfun(@(y) string(y.ConditionName), x), ... + behRes, fnOpts{:}); + behIdx = cellfun(@(x) arrayfun(@(y) [y.Trial_proportion, ... + y.Amplitude_index], x, fnOpts{:} ), behRes, fnOpts{:} ); + pol_unfold = cellfun(@(x) arrayfun(@(y) ... + [ reshape( [y.Results.MovProbability], [], 1 ), ... + reshape( [y.Results.AmplitudeIndex], [], 1 ) ], ... + x, fnOpts{:} ), behRes, fnOpts{:} ); + + % Assuming first condition as control!! + [~, mu_c, sig_c] = cellfun(@(c) arrayfun(@(bp) ... + zscore( bp.Baseline_L2 ), ... + c(1).Results, fnOpts{:} ), ... + behRes , fnOpts{:}); + + Nconds = cellfun(@numel, behRes ); + Nbr = numel( behRes ); + bDist = cell( Nbr, 1 ); + + for cc = 1:Nbr + for ccond = 1:Nconds(cc) + for cbp = 1:numel( behRes{cc}(ccond).Results ) + bDist{cc}(cbp, ccond) = fitdist( my_zscore( ... + behRes{cc}(ccond).Results(cbp).Baseline_L2, ... + mu_c{cc}{cbp}, sig_c{cc}{cbp} ), "Kernel", ... + "Kernel", "normal" ); + end + end + end + prmSubs = arrayfun(@(x) nchoosek(1:x,2), Nconds , fnOpts{:} ); + Ncombs = cellfun(@(pr) size( pr, 1 ), prmSubs ); + Nbs = cellfun(@(d) size( d, 1), bDist ); + tvd = cell( Nbr, 1); + for cc = 1:Nbr + if Nconds(cc) > 1 + tvd{cc} = zeros( Nbs(cc), Ncombs(cc) ); + for cr = 1:Ncombs(cc) + ps = prmSubs{cc}(cr,:); + for cbp = 1:Nbs(cc) + tvd{cc}(cbp, cr) = total_var_dist( bDist{cc}(cbp, ps) ); + end + end + else + fprintf(1, 'Unsure what to do\n') + end + end + brSz = cellfun(@numel, behRes); c = 1; Nbix = numel(brSz); + sessType = 'single'; + if Nbix == 1 + behIdx = behIdx{:}; + pol_unfold = pol_unfold{:}; + bDist = bDist{:}'; + dataTable = table( tocol( [condNames{:}] ), ... + cat( 1, behIdx{:} ), pol_unfold(:), bDist, tblOpts{:}); + elseif Nbix > 1 + % We need to check where are all of these different + % measurements are coming from. + sessType = 'multi'; + if numel(sessOrgDirs) == Nbix + % Same folders and measurements. Ideal situation for + % several measurements. + dataTable = table(condNames, behIdx, pol_unfold, bDist, tblOpts{:}, ... + 'RowNames', sessOrgDirs); + else + dataTable = table(condNames, behIdx, pol_unfold,bDist, tblOpts{:}); + end + end + if ( string(oldSess) ~= string(currSess) ) || ... + ( string(oldDepth) ~= string(depthSess) ) + oldSess = currSess; + oldDepth = depthSess; + auxStruct = struct('Date', currSess, ... + 'DataTable', dataTable, 'Type', sessType, ... + 'Depth', depthSess); + if ~isfield(mice, 'Sessions') + mice(mc).Sessions = auxStruct; + else + mice(mc).Sessions = [mice(mc).Sessions; auxStruct]; + end + sc = sc + 1; + end + end +end +mice( arrayfun(@(x) isempty(x.Sessions), mice) ) = []; +btchName = regexp( batchDir, 'Batch\d+','match' ); +behFP = fullfile( batchDir, btchName+"_BehaviourIndex.mat" ); +svOpts = {'-mat'}; +if exist(behFP, "file") + svOpts = {'-append'}; +end +save(behFP, "mice", svOpts{:}) +habFlag = arrayfun(@(m) arrayfun(@(s) string(s.Type) == "multi", ... + m.Sessions), mice, fnOpts{:}); +cat( 1, habFlag{:} ) +%{ +%% multiple +jittDist = makedist('Normal', 'mu', 0, 'sigma', 1/9); +habFlag = arrayfun(@(m) arrayfun(@(s) string(s.Type) == "multi", ... + m.Sessions), mice, fnOpts{:}); +habTable = arrayfun(@(m, f) {m.Sessions(f{:}).DataTable}, mice, habFlag, ... + fnOpts{:}); +pBehIdx = cellfun(@(x) cellfun(@(y) cell2mat(y.BehaviourIndices), x, ... + fnOpts{:}), habTable, fnOpts{:}); +Ncc = cellfun(@(x) cellfun(@(y) numel(y), x), pBehIdx, fnOpts{:}); +rSz = cellfun(@(x) max(cellfun(@(y) numel(y), x)), pBehIdx); +cSz = cellfun(@numel, pBehIdx); +resBehIdx = arrayfun(@(x,y) nan(x,y), rSz, cSz, fnOpts{:}); +resTable = cell(numel(mice), 1); Nm = numel(mice); +mNames = arrayfun(@(m) m.Name, mice); clrMap = roma(Nm); +habFig = figure('Name', 'Intensity v.s. index', 'Color', 'w'); +ax = axes('Parent', habFig, 'Color', 'none', 'Box', 'off', 'NextPlot', 'add'); +x = []; y = []; +for m = 1:Nm + mxSub = find(Ncc{m} == rSz(m), 1, "first"); + for ci = 1:cSz(m) + endS = numel(pBehIdx{m}{ci}); + resBehIdx{m}(1:endS,ci) = pBehIdx{m}{ci}; + end + resTable{m} = table(resBehIdx{m}, ... + 'RowNames', mice(m).Sessions(mxSub).DataTable.Row, ... + 'VariableNames', "BehaviourIndices"); + x = [x; reshape(ones(rSz(m), cSz(m)).*(1:rSz(m))', [], 1)]; + y = [y; resTable{m}.BehaviourIndices(:)]; + %scatter(ax, ones(cSz(m),rSz(m)).*(1:rSz(m)) + ... + scatter(ax, (1:rSz(m)) + random(jittDist, [1,rSz(m)]), ... + mean(resTable{m}.BehaviourIndices,2,'omitnan')', [], clrMap(m,:), ... + "filled", "MarkerFaceAlpha", 0.5) +end +xticks(ax, 1:max(rSz)); + +lgObj = legend(ax, mNames); +set(lgObj, "Box", 'off', 'Color', 'none', 'Location', 'best', 'AutoUpdate', 'off') + +%% single +singFlag = arrayfun(@(m) arrayfun(@(s) string(s.Type) == "single", ... + m.Sessions), mice, fnOpts{:}); +behTable = arrayfun(@(m, f) {m.Sessions(f{:}).DataTable}, mice, singFlag, ... + fnOpts{:}); behTable = arrayfun(@(t) cat(1, t{:}{:}), behTable, fnOpts{:}); +behTable = cat(1, behTable{:}); +ctrl = behTable{behTable.Conditions == "Control Puff", "BehaviourIndices"}; +ptx = behTable{behTable.Conditions == "PTX", "BehaviourIndices"}; +figure; scatter(ones(size(ptx, 1),2).*[1,2], [ctrl, ptx]) +hold on; plot(ones(2,size(ptx, 1)).*[1;2], [ctrl, ptx]', 'k:') +behTable = [behTable; mice(5).Sessions(2).DataTable] +ctrl = behTable{behTable.Conditions == "Control Puff", "BehaviourIndices"} +ptx = behTable{behTable.Conditions == "PTX", "BehaviourIndices"} +figure; scatter(ones(size(ptx, 1),2).*[1,2], [ctrl, ptx]) +hold on; plot(ones(2,size(ptx, 1)).*[1;2], [ctrl, ptx]', 'k:') +ptx = behTable{contains(behTable.Conditions, "PTX"), "BehaviourIndices"} +figure; scatter(ones(size(ptx, 1),2).*[1,2], [ctrl, ptx]) +xlim([0,3]) +xticks(1:2) +hold on; plot(ones(2,size(ptx, 1)).*[1;2], [ctrl, ptx]', 'k:') +[p, h] = ranksum(ctrl, ptx) +[p, h] = ranksum(ctrl(setdiff(1:6,3)), ptx(setdiff(1:6,3))) +koFlag = true(size(ctrl)); +koFlag(3) = false; +[p, h] = ranksum(ctrl(koFlag), ptx(koFlag)) +[ctrl, ptx] +[ctrl, ptx, koFlag] +[p, h] = ranksum(ctrl(koFlag), ptx(koFlag), "tail", "right") +[p, h] = ranksum(ctrl(koFlag), ptx(koFlag), "tail", "left") +[p, h] = ranksum(ctrl, ptx, "tail", "left") +[p, h] = ranksum(ctrl(koFlag), ptx(koFlag), "tail", "left") +ylim([0,1]) +ylabel('Behaviour index') +xticks(1:2) +xticklabels({'Control', 'PTX'}) +hold on; plot([1,2], max([ctrl, ptx], [], "all")*([1,1]+0.1), 'k') +text(1.5, max([ctrl, ptx],[], "all")*1.1, '\ast', "HorizontalAlignment", 'center', "VerticalAlignment", "bottom") +title(["PTX [60 \muM] in SC";"Significance: left tail"]) +configureFigureToPDF(gcf) +figure; scatter(ones(sum(koFlag),2).*[1,2], [ctrl(koFlag), ptx(koFlag)]) +hold on; plot([1,2], max([ctrl(koFlag), ptx(koFlag)], [], "all")*([1,1]+0.1), 'k') +hold on; plot(ones(2,sum(koFlag)).*[1;2], [ctrl(koFlag), ptx(koFlag)]', 'k:') +xlim([0,3]) +xticks(1:2) +xticklabels({'Control', 'PTX'}) +ylim([0,1]) +ylabel('Behaviour index') +title(["PTX [60 \muM] in SC";"Significance: left tail"]) +configureFigureToPDF(gcf) +saveFigure(gcf, fullfile("Z:\Emilio\SuperiorColliculusExperiments\Roller\GenFigures", "PTX effect"), true); +text(1.5, max([ctrl, ptx],[], "all")*1.1, '\ast', "HorizontalAlignment", 'center', "VerticalAlignment", "bottom") +%% +muscFlag = arrayfun(@(m) arrayfun(@(s) cellfun(@(c) ... + any(contains(c, 'musc', ctOpts{:}),2), s.DataTable.Conditions), ... + m.Sessions, fnOpts{:}), mice, fnOpts{:}); +sessFlag = cellfun(@(f) cellfun(@any, f), muscFlag, fnOpts{:}); +behTable2 = arrayfun(@(m, f1) m.Sessions(f1{:}).DataTable, ... + mice, sessFlag, fnOpts{:}); +multFlag = cellfun(@(t) ~isstring(t.Conditions), behTable2); +behTableM = cellfun(@(t, f, s) t(f{s},:), behTable2(multFlag), ... + muscFlag(multFlag), sessFlag(multFlag), fnOpts{:}); +behTableM = cellfun(@(t) table(t.Conditions{:}(:), t.BehaviourIndices{:}(:), ... + 'VariableNames', t.Properties.VariableNames), behTableM, fnOpts{:}); +behTable2 = cat(1, behTableM{:}, behTable2{~multFlag}); + +dateFlag = arrayfun(@(m) arrayfun(@(s) ~contains(fieldnames(s), 'Date'), ... + m.Sessions, fnOpts{:}), mice, fnOpts{:}); +mCatg = arrayfun(@(mn) categorical(regexp(mn.Name, '[A-Za-z]{2}', ... + 'match')), mice); +Nfn = cellfun(@(x) cellfun(@sum, x), dateFlag, fnOpts{:}); +values = arrayfun(@(m) arrayfun(@(s) struct2cell(s), m.Sessions, ... + fnOpts{:}), mice, fnOpts{:}); +%} \ No newline at end of file diff --git a/Emilio/poolEphBeh_recon_and_gof.m b/Emilio/poolEphBeh_recon_and_gof.m new file mode 100644 index 0000000..94026f4 --- /dev/null +++ b/Emilio/poolEphBeh_recon_and_gof.m @@ -0,0 +1,180 @@ +%#ok<*AGROW,*SAGROW> +%% Auxiliary variables and functions +fnOpts = {'UniformOutput', false}; +expandName = @(x) fullfile(x.folder, x.name); +animalPattern = '[a-zA-Z]+\d{1,}'; +rsOpts = {animalPattern, 'SearchType', 'expression'}; +ctOpts = {'IgnoreCase', true}; +lsOpts = {'L\d+.\d+', 'match'}; +ephFF = 'Ephys VW(-?\d+\.\d+)-(\d+\.\d+) RW20.00-200.00 SW(-?\d+\.\d+)-(-?\d+\.\d+)'; +tblOpts = {'VariableNames', {'Conditions', 'MI'}}; +% my_zscore = @(x, m, s) ( x - m ) ./ ( s .* (s~=0) + 1 .* (s==0) ); +% getMI = @(x,d) diff(x, 1, d)./sum(x, d); +% total_var_dist = @(dmat) integral( @(x) abs( pdf( dmat(1), x ) - pdf( dmat(2), x ) ), -5, 5 ); +getRMSE = @( r, x, d ) sqrt( mean( ( r - x ).^2, d, "omitmissing" ) ); +tocol = @(x) x(:); +m = 1e-3; +exclude_names = {'GADi13', 'GADi15', 'GADi53'}; + +if ~strcmp( computer, 'PCWIN64') + home_path = '/gpfs/bwfor/home/hd/hd_hd/hd_bf154/'; + repo_paths = cellfun(@(x) char( fullfile( home_path, x) ), ... + {'NeuroNetzAnalysis', 'AuxiliaryFuncs', 'Scripts'}, fnOpts{:} ); + cellfun(@(x) addpath( genpath( x ) ), repo_paths ) + roller_path = "/mnt/sds-hd/sd19b001/Emilio/SuperiorColliculusExperiments/Roller"; +else + roller_path = "Z:\Emilio\SuperiorColliculusExperiments\Roller"; +end + +params = struct( 'relative_window', [-1,1]*800*m, 'delay_window', ... + [-1,1]*100*m, 'bin_size', 5*m, 'kfold', 20 ); +Nbins = diff(params.relative_window)/params.bin_size; +time_mdl = fit_poly( [1,Nbins], params.relative_window + ... + [1,-1]*(params.bin_size/2), 1 ); +tx = ( ( 1:Nbins)'.^[1,0] ) * time_mdl; +sponFlags = tx < 0; +laserFlags = my_xor(tx < [-0.1, 0.2]); +getTimeBoAT = @(s,f,p) reshape( s(f,:,:), size(s,2) * sum( f ), p.Ns ); + +struct_search = "MC"; % or "MC" "eOPN3" "ChR2" "BC" +selCondition = "freq"; % or "freq" "cont" Continuous or frquency +extra_id = "iRNs"; % "iRNs" "eRNs" "RNs" "" +mouse_line = "GADi"; % "GADi" "Rb" "vGlut" "" +verb = true; % verbose +iRN_mice = dir( fullfile( roller_path, "Batch*", struct_search, mouse_line+"*" ) ); +iRN_mice = iRN_mice( [iRN_mice.isdir] & ... + ~arrayfun(@(x) any( ismember({'.','..'}, x.name ) ), iRN_mice )' ); +animalFolders = arrayfun(@(f) string( expandName( f ) ), iRN_mice(:)); +exclude_flags = contains( animalFolders, exclude_names ); +%% Looping animals +oldMouse = ""; +mc = 0; mice = []; lp_mu = []; lPSTH = []; +sessType = 'single'; +for cad = tocol(animalFolders(~exclude_flags))' + [structPath, currMouse] = fileparts(cad); + [~, structName] = fileparts(structPath); + if string(oldMouse) ~= string(currMouse) + oldMouse = currMouse; + mice = [mice; struct('Name', currMouse, 'Sessions',[], ... + 'Structure', structName)]; + mc = mc + 1; + sc = 0; oldSess = ""; oldDepth = ""; + end + fprintf(1, 'Mouse %s ', currMouse) + sessDirs = getSubFolds(cad); + % Just date sessions + onlyDateSessFlag = arrayfun(@(x) string(regexp(x.name, '[0-9]{6}', ... + 'match')), sessDirs, fnOpts{:}); + sessDirs(cellfun(@isempty, onlyDateSessFlag)) = []; + for csd = sessDirs(:)' + curDir = expandName(csd); + sessDateDepth = regexp(csd.name, '(\d{6}).*_(\d{4})?', 'tokens', 'once'); + if ~isempty( sessDateDepth ) + currSess = sessDateDepth{1}; + if isempty( sessDateDepth{2} ) + depthSess = ''; + else + depthSess = sessDateDepth{2}; + end + else + currSess = regexp(csd.name, '(\d{6})', 'tokens', 'once'); + depthSess = ''; + if isempty(currSess) + fprintf( 1, "Unable to get session date and depth\n" ); + fprintf( 1, "Skipping: %s %s\n", currMouse, csd.name ) + continue + end + end + childFolders = getSubFolds(curDir); + sessOrgDirs = arrayfun(@(d) string(d.name), childFolders ); + sessOrgDirs( ~contains(sessOrgDirs, {'behaviour', 'ephys', ... + 'figures', 'opto'}, ctOpts{:}) ) = []; + if isempty(sessOrgDirs) + continue + end + data_path = curDir; + fprintf(1, ', Session %s\n', currSess ) + rfpStruct = dir( fullfile( data_path, "Regression " + ... + "CW-800.00-800.00ms DW-100.00-100.00 BZ5.00.mat" ) ); + if ~isempty(rfpStruct) + try + load( expandName( rfpStruct ), "mdlAll_ind", "DX", "params" ) + mdl = mdlAll_ind; + catch ME + display(ME.message) + continue + end + if isempty(DX) || (sum( isnan(mdl), "all" ) / numel(mdl) ) > 0.05 || ... + any( cellfun(@isempty, DX) ) || numel(DX)~= 4 + continue + end + else + fprintf(1, 'No Regression file...\n') + continue + end + %% + mdl_mu = squeeze( mean( mdl, 2 ) ); + y_trials = reshape( DX{1}, params.Nb, params.Nr, params.Ns ); + y_pred = DX{2} * mdl_mu; + y_ptrials = reshape( y_pred, params.Nb, params.Nr, params.Ns ); + + r_sq_trials = goodnessFit2( y_trials, y_ptrials, 1 ); + r_sq = goodnessFit2( DX{1}, y_pred, 1 ); + + y_trials_pre = getTimeBoAT(y_trials, sponFlags, params); + y_ptrials_pre = getTimeBoAT(y_ptrials, sponFlags, params); + r_sq_pre = goodnessFit2(y_trials_pre, y_ptrials_pre, 1); + + y_trials_post = getTimeBoAT( y_trials, ~sponFlags, params ); + y_ptrials_post = getTimeBoAT( y_ptrials, ~sponFlags, params ); + r_sq_post = goodnessFit2(y_trials_post, y_ptrials_post, 1); + + y_lpred = DX{3} * mdl_mu; + y_lptrials = reshape( y_lpred, params.Nb, [], params.Ns ); + y_ltrials = reshape( DX{4}, size( y_lptrials ) ); + + r_sq_l = goodnessFit2( DX{4}, y_lpred, 1 ); + + y_trials_pre = getTimeBoAT(y_ltrials, laserFlags, params); + y_ptrials_pre = getTimeBoAT(y_lptrials, laserFlags, params); + r_sq_lpre = goodnessFit2(y_trials_pre, y_ptrials_pre, 1); + + y_trials_post = getTimeBoAT( y_ltrials, ~laserFlags, params ); + y_ptrials_post = getTimeBoAT( y_lptrials, ~laserFlags, params ); + r_sq_lpost = goodnessFit2(y_trials_post, y_ptrials_post, 1); + + rmse_laser = getRMSE( DX{4}, y_lpred, 1 ); + + dataTable = table( {[r_sq;r_sq_pre;r_sq_post],[r_sq_l;r_sq_lpre;r_sq_lpost]}, ... + {r_sq_trials}, {params.fit_error}, ... + rmse_laser, 'VariableNames', {'R_2_p_L', 'R_squared_trials', ... + 'RMSE_c', 'RMSE_l'} ); + if ( string(oldSess) ~= string(currSess) ) || ... + ( string(oldDepth) ~= string(depthSess) ) + oldSess = currSess; + oldDepth = depthSess; + auxStruct = struct('Date', currSess, ... + 'DataTable', dataTable, 'Type', sessType, ... + 'Depth', depthSess); + if ~isfield(mice, 'Sessions') + mice(mc).Sessions = auxStruct; + else + mice(mc).Sessions = [mice(mc).Sessions; auxStruct]; + end + sc = sc + 1; + end + close all + end +end +mice( arrayfun(@(x) isempty(x.Sessions), mice) ) = []; + +behFP = fullfile( roller_path, struct_search + extra_id + ... + "_gof.mat" ); +svOpts = {'-mat'}; +if exist(behFP, "file") + svOpts = {'-append'}; +end +save(behFP, "mice", svOpts{:}) +habFlag = arrayfun(@(m) arrayfun(@(s) string(s.Type) == "multi", ... + m.Sessions), mice, fnOpts{:}); +cat( 1, habFlag{:} ) diff --git a/Emilio/poolEphBeh_reconstruction.m b/Emilio/poolEphBeh_reconstruction.m new file mode 100644 index 0000000..41a30d5 --- /dev/null +++ b/Emilio/poolEphBeh_reconstruction.m @@ -0,0 +1,149 @@ +%#ok<*AGROW,*SAGROW> +%% Auxiliary variables and functions +fnOpts = {'UniformOutput', false}; +expandName = @(x) fullfile(x.folder, x.name); +animalPattern = '[a-zA-Z]+\d{1,}'; +rsOpts = {animalPattern, 'SearchType', 'expression'}; +ctOpts = {'IgnoreCase', true}; +lsOpts = {'L\d+.\d+', 'match'}; +ephFF = 'Ephys VW(-?\d+\.\d+)-(\d+\.\d+) RW20.00-200.00 SW(-?\d+\.\d+)-(-?\d+\.\d+)'; +tblOpts = {'VariableNames', {'Conditions', 'MI'}}; +% my_zscore = @(x, m, s) ( x - m ) ./ ( s .* (s~=0) + 1 .* (s==0) ); +% getMI = @(x,d) diff(x, 1, d)./sum(x, d); +% total_var_dist = @(dmat) integral( @(x) abs( pdf( dmat(1), x ) - pdf( dmat(2), x ) ), -5, 5 ); +getRMSE = @( r, x, d ) sqrt( mean( ( r - x ).^2, d, "omitmissing" ) ); +tocol = @(x) x(:); +m = 1e-3; +exclude_names = {'GADi13', 'GADi15', 'GADi53'}; + +params = struct( 'relative_window', [-1,1]*800*m, 'delay_window', ... + [-1,1]*100*m, 'bin_size', 5*m, 'kfold', 20 ); + +pc = parcluster('local'); +if ~strcmp( computer, 'PCWIN64') + home_path = '/gpfs/bwfor/home/hd/hd_hd/hd_bf154/'; + repo_paths = cellfun(@(x) char( fullfile( home_path, x) ), ... + {'NeuroNetzAnalysis', 'AuxiliaryFuncs', 'Scripts'}, fnOpts{:} ); + cellfun(@(x) addpath( genpath( x ) ), repo_paths ) + roller_path = "/mnt/sds-hd/sd19b001/Emilio/SuperiorColliculusExperiments/Roller"; +else + roller_path = "Z:\Emilio\SuperiorColliculusExperiments\Roller"; +end + +[~, ofgOpts] = checkSystem4Figures(); +ovwFlag = true; + +iRN_mice = dir( fullfile( roller_path, "Batch*", "MC", "GADi*" ) ); +animalFolders = arrayfun(@(f) string( expandName( f ) ), iRN_mice(:)); +exclude_flags = contains( animalFolders, exclude_names ); +%% Looping animals +oldMouse = ""; +mc = 0; mice = []; lp_mu = []; lPSTH = []; +sessType = 'single'; +for cad = tocol(animalFolders(~exclude_flags))' + [structPath, currMouse] = fileparts(cad); + [~, structName] = fileparts(structPath); + if string(oldMouse) ~= string(currMouse) + oldMouse = currMouse; + mice = [mice; struct('Name', currMouse, 'Sessions',[], ... + 'Structure', structName)]; + mc = mc + 1; + sc = 0; oldSess = ""; oldDepth = ""; + end + fprintf(1, 'Mouse %s ', currMouse) + sessDirs = getSubFolds(cad); + % Just date sessions + onlyDateSessFlag = arrayfun(@(x) string(regexp(x.name, '[0-9]{6}', ... + 'match')), sessDirs, fnOpts{:}); + sessDirs(cellfun(@isempty, onlyDateSessFlag)) = []; + for csd = sessDirs(:)' + curDir = expandName(csd); + sessDateDepth = regexp(csd.name, '(\d{6}).*_(\d{4})?', 'tokens', 'once'); + if ~isempty( sessDateDepth ) + currSess = sessDateDepth{1}; + if isempty( sessDateDepth{2} ) + depthSess = ''; + else + depthSess = sessDateDepth{2}; + end + else + currSess = regexp(csd.name, '(\d{6})', 'tokens', 'once'); + depthSess = ''; + if isempty(currSess) + fprintf( 1, "Unable to get session date and depth\n" ); + fprintf( 1, "Skipping: %s %s\n", currMouse, csd.name ) + continue + end + end + childFolders = getSubFolds(curDir); + sessOrgDirs = arrayfun(@(d) string(d.name), childFolders ); + sessOrgDirs( ~contains(sessOrgDirs, {'behaviour', 'ephys', ... + 'figures', 'opto'}, ctOpts{:}) ) = []; + if isempty(sessOrgDirs) + continue + end + data_path = curDir; + fprintf(1, ', Session %s\n', currSess ) + fig_path = dir( fullfile( data_path, 'ephys*', 'Fig*') ); + if isempty( fig_path ) + fig_path = data_path; + else + fig_path = expandName( fig_path ); + end + aiFN = fullfile( fig_path, 'Amplitude index model'); + if ~exist( [aiFN, '.fig'], 'file' ) || ovwFlag + try + [results, f] = AnBeh_Bypass(data_path, [25, 350]*m); + catch ME + fprintf(1, 'Regression ongoing...\n') + DX = cell(4,1); + try + parpool( pc ); + catch + end + % [~, ~, DX] = regressEphysVSBehaviour( data_path, params ); + if ~all( cellfun(@isempty, DX ) ) + [results, f] = AnBeh_Bypass(data_path, [25, 350]*m ); + else + display(ME.message) + continue + end + end + saveFigure( f, [aiFN, '.fig'], true, ovwFlag ) + else + f = openfig( [aiFN, '.fig'], ofgOpts{:} ); + results = get( f, 'UserData' ); + end + + dataTable = table( {results.AmplitudeIndex_pbp}, ... + results.AmplitudeIndex, results.AI_perCond(:)', ... + 'VariableNames', {'AI_pbp', 'AmplitudeIndex','Names'} ); + if ( string(oldSess) ~= string(currSess) ) || ... + ( string(oldDepth) ~= string(depthSess) ) + oldSess = currSess; + oldDepth = depthSess; + auxStruct = struct('Date', currSess, ... + 'DataTable', dataTable, 'Type', sessType, ... + 'Depth', depthSess); + if ~isfield(mice, 'Sessions') + mice(mc).Sessions = auxStruct; + else + mice(mc).Sessions = [mice(mc).Sessions; auxStruct]; + end + sc = sc + 1; + end + close all + end +end +close all +mice( arrayfun(@(x) isempty(x.Sessions), mice) ) = []; + +behFP = fullfile( roller_path, "MCiRNs_reconstruction_sm.mat" ); +svOpts = {'-mat'}; +if exist(behFP, "file") + svOpts = {'-append'}; +end +save(behFP, "mice", svOpts{:}) +habFlag = arrayfun(@(m) arrayfun(@(s) string(s.Type) == "multi", ... + m.Sessions), mice, fnOpts{:}); +cat( 1, habFlag{:} ) diff --git a/Emilio/poolEphBeh_regression.m b/Emilio/poolEphBeh_regression.m new file mode 100644 index 0000000..244a999 --- /dev/null +++ b/Emilio/poolEphBeh_regression.m @@ -0,0 +1,179 @@ +%#ok<*AGROW,*SAGROW> +%% Auxiliary variables and functions +fnOpts = {'UniformOutput', false}; +expandName = @(x) fullfile(x.folder, x.name); +animalPattern = '[a-zA-Z]+\d{1,}'; +rsOpts = {animalPattern, 'SearchType', 'expression'}; +ctOpts = {'IgnoreCase', true}; +lsOpts = {'L\d+.\d+', 'match'}; +ephFF = 'Ephys VW(-?\d+\.\d+)-(\d+\.\d+) RW20.00-200.00 SW(-?\d+\.\d+)-(-?\d+\.\d+)'; +tblOpts = {'VariableNames', {'Conditions', 'MI'}}; +% my_zscore = @(x, m, s) ( x - m ) ./ ( s .* (s~=0) + 1 .* (s==0) ); +% getMI = @(x,d) diff(x, 1, d)./sum(x, d); +% total_var_dist = @(dmat) integral( @(x) abs( pdf( dmat(1), x ) - pdf( dmat(2), x ) ), -5, 5 ); +getRMSE = @( r, x, d ) sqrt( mean( ( r - x ).^2, d, "omitmissing" ) ); +tocol = @(x) x(:); +m = 1e-3; +exclude_names = {'GADi13', 'GADi15', 'GADi53'}; +%% +if ~strcmp( computer, 'PCWIN64') + home_path = '/gpfs/bwfor/home/hd/hd_hd/hd_bf154/'; + repo_paths = cellfun(@(x) char( fullfile( home_path, x) ), ... + {'NeuroNetzAnalysis', 'AuxiliaryFuncs', 'Scripts'}, fnOpts{:} ); + cellfun(@(x) addpath( genpath( x ) ), repo_paths ) + roller_path = "/mnt/sds-hd/sd19b001/Emilio/SuperiorColliculusExperiments/Roller"; +else + roller_path = "Z:\Emilio\SuperiorColliculusExperiments\Roller"; +end +%% +params = struct( 'relative_window', [-1,1]*800*m, 'delay_window', ... + [-1,1]*100*m, 'bin_size', 5*m, 'kfold', 20 ); +Nbins = diff(params.relative_window)/params.bin_size; +time_mdl = fit_poly( [1,Nbins], params.relative_window + ... + [1,-1]*(params.bin_size/2), 1 ); +tx = ( ( 1:Nbins)'.^[1,0] ) * time_mdl; +sponFlags = tx < 0; +getTimeBoAT = @(s,f,p) reshape( s(f,:,:), size(s,2) * sum( f ), p.Ns ); +%% +pc = parcluster('local'); + +try + parpool( pc ); +catch +end +%% +struct_search = "BC"; % or "MC" "eOPN3" "ChR2" "BC" +selCondition = "freq"; % or "freq" "cont" Continuous or frquency +extra_id = "iRNs"; % "iRNs" "eRNs" "RNs" "" +mouse_line = "GADi"; % "GADi" "Rb" "vGlut" "" +verb = true; % verbose +iRN_mice = dir( fullfile( roller_path, "Batch*", struct_search, mouse_line+"*" ) ); +iRN_mice = iRN_mice( [iRN_mice.isdir] & ... + ~arrayfun(@(x) any( ismember({'.','..'}, x.name ) ), iRN_mice )' ); +animalFolders = arrayfun(@(f) string( expandName( f ) ), iRN_mice(:)); +exclude_flags = contains( animalFolders, exclude_names ); +%% Looping animals +oldMouse = ""; +mc = 0; mice = []; lp_mu = []; lPSTH = []; +sessType = 'single'; +for cad = tocol(animalFolders(~exclude_flags))' + [structPath, currMouse] = fileparts(cad); + [~, structName] = fileparts(structPath); + if string(oldMouse) ~= string(currMouse) + oldMouse = currMouse; + mice = [mice; struct('Name', currMouse, 'Sessions',[], ... + 'Structure', structName)]; + mc = mc + 1; + sc = 0; oldSess = ""; oldDepth = ""; + end + fprintf(1, 'Mouse %s ', currMouse) + sessDirs = getSubFolds(cad); + % Just date sessions + onlyDateSessFlag = arrayfun(@(x) string(regexp(x.name, '[0-9]{6}', ... + 'match')), sessDirs, fnOpts{:}); + sessDirs(cellfun(@isempty, onlyDateSessFlag)) = []; + for csd = sessDirs(:)' + curDir = expandName(csd); + sessDateDepth = regexp(csd.name, '(\d{6}).*_(\d{4})?', 'tokens', 'once'); + if ~isempty( sessDateDepth ) + currSess = sessDateDepth{1}; + if isempty( sessDateDepth{2} ) + depthSess = ''; + else + depthSess = sessDateDepth{2}; + end + else + currSess = regexp(csd.name, '(\d{6})', 'tokens', 'once'); + depthSess = ''; + if isempty(currSess) + fprintf( 1, "Unable to get session date and depth\n" ); + fprintf( 1, "Skipping: %s %s\n", currMouse, csd.name ) + continue + end + end + childFolders = getSubFolds(curDir); + sessOrgDirs = arrayfun(@(d) string(d.name), childFolders ); + sessOrgDirs( ~contains(sessOrgDirs, {'behaviour', 'ephys', ... + 'figures', 'opto'}, ctOpts{:}) ) = []; + if isempty(sessOrgDirs) + continue + end + data_path = curDir; + fprintf(1, ', Session %s\n', currSess ) + try + [mdl, params, DX] = regressEphysVSBehaviour( data_path, params, ... + 'Condition', selCondition, 'Verbose', verb ); + catch ME + display(ME.message) + continue + end + if isempty(DX) || (sum( isnan(mdl), "all" ) / numel(mdl) ) > 0.05 || ... + any( cellfun(@isempty, DX) ) + continue + end + %% + mdl_mu = squeeze( mean( mdl, 2 ) ); + y_trials = reshape( DX{1}, params.Nb, params.Nr, params.Ns ); + y_pred = DX{2} * mdl_mu; + y_ptrials = reshape( y_pred, params.Nb, params.Nr, params.Ns ); + + r_sq_trials = goodnessFit2( y_trials, y_ptrials, 1 ); + r_sq = goodnessFit2( DX{1}, y_pred, 1 ); + + y_trials_pre = getTimeBoAT(y_trials, sponFlags, params); + y_ptrials_pre = getTimeBoAT(y_ptrials, sponFlags, params); + r_sq_pre = goodnessFit2(y_trials_pre, y_ptrials_pre, 1); + + y_trials_post = getTimeBoAT( y_trials, ~sponFlags, params ); + y_ptrials_post = getTimeBoAT( y_ptrials, ~sponFlags, params ); + r_sq_post = goodnessFit2(y_trials_post, y_ptrials_post, 1); + + y_lpred = DX{3} * mdl_mu; + y_lptrials = reshape( y_lpred, params.Nb, [], params.Ns ); + y_ltrials = reshape( DX{4}, size( y_lptrials ) ); + + r_sq_l = goodnessFit2( DX{4}, y_lpred, 1 ); + + y_trials_pre = getTimeBoAT(y_ltrials, sponFlags, params); + y_ptrials_pre = getTimeBoAT(y_lptrials, sponFlags, params); + r_sq_lpre = goodnessFit2(y_trials_pre, y_ptrials_pre, 1); + + y_trials_post = getTimeBoAT( y_ltrials, ~sponFlags, params ); + y_ptrials_post = getTimeBoAT( y_lptrials, ~sponFlags, params ); + r_sq_lpost = goodnessFit2(y_trials_post, y_ptrials_post, 1); + + rmse_laser = getRMSE( DX{4}, y_lpred, 1 ); + + dataTable = table( {[r_sq;r_sq_pre;r_sq_post],[r_sq_l;r_sq_lpre;r_sq_lpost]}, ... + {r_sq_trials}, {params.fit_error}, ... + rmse_laser, 'VariableNames', {'R_2_p_L', 'R_squared_trials', ... + 'RMSE_c', 'RMSE_l'} ); + if ( string(oldSess) ~= string(currSess) ) || ... + ( string(oldDepth) ~= string(depthSess) ) + oldSess = currSess; + oldDepth = depthSess; + auxStruct = struct('Date', currSess, ... + 'DataTable', dataTable, 'Type', sessType, ... + 'Depth', depthSess); + if ~isfield(mice, 'Sessions') + mice(mc).Sessions = auxStruct; + else + mice(mc).Sessions = [mice(mc).Sessions; auxStruct]; + end + sc = sc + 1; + end + close all + end +end +mice( arrayfun(@(x) isempty(x.Sessions), mice) ) = []; + +behFP = fullfile( roller_path, struct_search + extra_id + ... + "_reconstruction_sm.mat" ); +svOpts = {'-mat'}; +if exist(behFP, "file") + svOpts = {'-append'}; +end +save(behFP, "mice", svOpts{:}) +habFlag = arrayfun(@(m) arrayfun(@(s) string(s.Type) == "multi", ... + m.Sessions), mice, fnOpts{:}); +cat( 1, habFlag{:} ) diff --git a/Emilio/poolEphMI.m b/Emilio/poolEphMI.m new file mode 100644 index 0000000..f4733e8 --- /dev/null +++ b/Emilio/poolEphMI.m @@ -0,0 +1,233 @@ +%#ok<*AGROW,*SAGROW> +%% Auxiliary variables and functions +fnOpts = {'UniformOutput', false}; +expandName = @(x) fullfile(x.folder, x.name); +animalPattern = '[a-zA-Z]+\d{1,}'; +rsOpts = {animalPattern, 'SearchType', 'expression'}; +ctOpts = {'IgnoreCase', true}; +lsOpts = {'L\d+.\d+', 'match'}; +ephFF = 'Ephys VW(-?\d+\.\d+)-(\d+\.\d+) RW20.00-200.00 SW(-?\d+\.\d+)-(-?\d+\.\d+)'; +tblOpts = {'VariableNames', {'Conditions', 'MI'}}; +my_zscore = @(x, m, s) ( x - m ) ./ ( s .* (s~=0) + 1 .* (s==0) ); +getMI = @(x,d) diff(x, 1, d)./sum(x, d); +total_var_dist = @(dmat) integral( @(x) abs( pdf( dmat(1), x ) - pdf( dmat(2), x ) ), -5, 5 ); +tocol = @(x) x(:); +%% Assuming 1 level of animal organisation i.e. +% BatchX/FolderA/Animal001 +% BatchX/FolderB/Animal002 +batchDir = fullfile( "Z:\Emilio\SuperiorColliculusExperiments", ... + "Roller", "Batch17_ephys.MC"); +%Z:\Emilio\SuperiorColliculusExperiments\Roller\Batch15_ephys + +childFolders = dir(batchDir); + +pointFlag = arrayfun(@(x) any(strcmpi(x.name, {'.','..'})), childFolders); +fileFlag = ~[childFolders.isdir]'; +childFolders(pointFlag | fileFlag) = []; +animalFolders = arrayfun(@(d) recursiveFolderSearch(expandName(d), ... + rsOpts{:}), childFolders, fnOpts{:}); animalFolders = cat(1, animalFolders{:}); +%% Looping animals +oldMouse = ""; +mc = 0; mice = []; lp_mu = []; lPSTH = []; +var2save = {'mice', 'lp_mu', 'lPSTH'}; +for cad = tocol(animalFolders)' + [structPath, currMouse] = fileparts(cad); + [~, structName] = fileparts(structPath); + if string(oldMouse) ~= string(currMouse) + oldMouse = currMouse; + mice = [mice; struct('Name', currMouse, 'Sessions',[], ... + 'Structure', structName)]; + mc = mc + 1; + sc = 0; oldSess = ""; oldDepth = ""; + end + sessDirs = getSubFolds(cad); + % Just date sessions + onlyDateSessFlag = arrayfun(@(x) string(regexp(x.name, '[0-9]{6}', ... + 'match')), sessDirs, fnOpts{:}); + sessDirs(cellfun(@isempty, onlyDateSessFlag)) = []; + for csd = sessDirs(:)' + curDir = expandName(csd); + sessDateDepth = regexp(csd.name, '(\d{6}).*_(\d{4})?', 'tokens', 'once'); + if ~isempty( sessDateDepth ) + currSess = sessDateDepth{1}; + if isempty( sessDateDepth{2} ) + depthSess = ''; + else + depthSess = sessDateDepth{2}; + end + else + currSess = regexp(csd.name, '(\d{6})', 'tokens', 'once'); + depthSess = ''; + if isempty(currSess) + fprintf( 1, "Unable to get session date and depth\n" ); + fprintf( 1, "Skipping: %s %s\n", currMouse, csd.name ) + continue + end + end + childFolders = getSubFolds(curDir); + sessOrgDirs = arrayfun(@(d) string(d.name), childFolders); + sessOrgDirs(contains(sessOrgDirs, {'behaviour', 'ephys', ... + 'figures', 'opto'}, ctOpts{:})) = []; + miFigDir = arrayfun(@(d) recursiveFolderSearch(expandName(d), ... + ephFF, 'SearchType', 'expression'), childFolders, fnOpts{:}); + miFigDir = cat(1, miFigDir{:}); + miIdxFiles = arrayfun(@(d) dir( fullfile( d, ... + "LogPSTH_Structure*.mat" ) ), miFigDir, fnOpts{:} ); + miIdxFiles = cat( 1, miIdxFiles{:} ); + if isempty(miIdxFiles) + fprintf(1, 'No ephys analysis done! Skipping %s!\n', curDir) + continue + end + % miIdxStr = arrayfun(@(x) load( expandName(x), 'logPSTH' ), miIdxFiles); + load( expandName(miIdxFiles), 'logPSTH' ); + lPSTH = cat( 1, lPSTH, {logPSTH.LogPSTH} ); + lp_mu = cat( 3, lp_mu, squeeze( mean( ... + logPSTH.LogPSTH(:,:,logPSTH.indexMIComparison) ) ) ); + muMI = getMI( lp_mu(:,:,end), 2 ); muMI(isnan( muMI )) = 0; + bmot_MI = mean( muMI( ~(logPSTH.TimeAxis < 5e-2) ) ); + sens_MI = mean( muMI( logPSTH.TimeAxis < 5e-2) ); + miVal = [sens_MI, bmot_MI]; + condNames = logPSTH.ConditionNames( logPSTH.indexMIComparison ); + condNames = join([condNames(1), "v", condNames(2)]); + + sessType = 'single'; + dataTable = table( condNames, miVal, tblOpts{:} ); + if ( string(oldSess) ~= string(currSess) ) || ... + ( string(oldDepth) ~= string(depthSess) ) + oldSess = currSess; + oldDepth = depthSess; + auxStruct = struct('Date', currSess, ... + 'DataTable', dataTable, 'Type', sessType, ... + 'Depth', depthSess); + if ~isfield(mice, 'Sessions') + mice(mc).Sessions = auxStruct; + else + mice(mc).Sessions = [mice(mc).Sessions; auxStruct]; + end + sc = sc + 1; + end + end +end +mice( arrayfun(@(x) isempty(x.Sessions), mice) ) = []; +btchName = regexp( batchDir, 'Batch\d+','match' ); +behFP = fullfile( batchDir, btchName+"_EphMI_sm.mat" ); +svOpts = {'-mat'}; +if exist(behFP, "file") + svOpts = {'-append'}; +end +save(behFP, var2save{:}, svOpts{:}) +habFlag = arrayfun(@(m) arrayfun(@(s) string(s.Type) == "multi", ... + m.Sessions), mice, fnOpts{:}); +cat( 1, habFlag{:} ) + +%% multiple +jittDist = makedist('Normal', 'mu', 0, 'sigma', 1/9); +habFlag = arrayfun(@(m) arrayfun(@(s) string(s.Type) == "multi", ... + m.Sessions), mice, fnOpts{:}); +habTable = arrayfun(@(m, f) {m.Sessions(f{:}).DataTable}, mice, habFlag, ... + fnOpts{:}); +pBehIdx = cellfun(@(x) cellfun(@(y) cell2mat(y.Trial_and_Amp_Indices{end}), x, ... + fnOpts{:}), habTable, fnOpts{:}); +Ncc = cellfun(@(x) cellfun(@(y) numel(y), x), pBehIdx, fnOpts{:}); +rSz = cellfun(@(x) max(cellfun(@(y) numel(y), x)), pBehIdx); +cSz = cellfun(@numel, pBehIdx); +resBehIdx = arrayfun(@(x,y) nan(x,y), rSz, cSz, fnOpts{:}); +resTable = cell(numel(mice), 1); Nm = numel(mice); +mNames = arrayfun(@(m) m.Name, mice); clrMap = roma(Nm); +habFig = figure('Name', 'Intensity v.s. index', 'Color', 'w'); +ax = axes('Parent', habFig, 'Color', 'none', 'Box', 'off', 'NextPlot', 'add'); +x = []; y = []; +for m = 1:Nm + mxSub = find(Ncc{m} == rSz(m), 1, "first"); + for ci = 1:cSz(m) + endS = numel(pBehIdx{m}{ci}); + resBehIdx{m}(1:endS,ci) = pBehIdx{m}{ci}; + end + resTable{m} = table(resBehIdx{m}, ... + 'RowNames', mice(m).Sessions(mxSub).DataTable.Row, ... + 'VariableNames', "BehaviourIndices"); + x = [x; reshape(ones(rSz(m), cSz(m)).*(1:rSz(m))', [], 1)]; + y = [y; resTable{m}.BehaviourIndices(:)]; + %scatter(ax, ones(cSz(m),rSz(m)).*(1:rSz(m)) + ... + scatter(ax, (1:rSz(m)) + random(jittDist, [1,rSz(m)]), ... + mean(resTable{m}.BehaviourIndices,2,'omitnan')', [], clrMap(m,:), ... + "filled", "MarkerFaceAlpha", 0.5) +end +xticks(ax, 1:max(rSz)); + +lgObj = legend(ax, mNames); +set(lgObj, "Box", 'off', 'Color', 'none', 'Location', 'best', 'AutoUpdate', 'off') +%{ +%% single +singFlag = arrayfun(@(m) arrayfun(@(s) string(s.Type) == "single", ... + m.Sessions), mice, fnOpts{:}); +behTable = arrayfun(@(m, f) {m.Sessions(f{:}).DataTable}, mice, singFlag, ... + fnOpts{:}); behTable = arrayfun(@(t) cat(1, t{:}{:}), behTable, fnOpts{:}); +behTable = cat(1, behTable{:}); +ctrl = behTable{behTable.Conditions == "Control Puff", "BehaviourIndices"}; +ptx = behTable{behTable.Conditions == "PTX", "BehaviourIndices"}; +figure; scatter(ones(size(ptx, 1),2).*[1,2], [ctrl, ptx]) +hold on; plot(ones(2,size(ptx, 1)).*[1;2], [ctrl, ptx]', 'k:') +behTable = [behTable; mice(5).Sessions(2).DataTable] +ctrl = behTable{behTable.Conditions == "Control Puff", "BehaviourIndices"} +ptx = behTable{behTable.Conditions == "PTX", "BehaviourIndices"} +figure; scatter(ones(size(ptx, 1),2).*[1,2], [ctrl, ptx]) +hold on; plot(ones(2,size(ptx, 1)).*[1;2], [ctrl, ptx]', 'k:') +ptx = behTable{contains(behTable.Conditions, "PTX"), "BehaviourIndices"} +figure; scatter(ones(size(ptx, 1),2).*[1,2], [ctrl, ptx]) +xlim([0,3]) +xticks(1:2) +hold on; plot(ones(2,size(ptx, 1)).*[1;2], [ctrl, ptx]', 'k:') +[p, h] = ranksum(ctrl, ptx) +[p, h] = ranksum(ctrl(setdiff(1:6,3)), ptx(setdiff(1:6,3))) +koFlag = true(size(ctrl)); +koFlag(3) = false; +[p, h] = ranksum(ctrl(koFlag), ptx(koFlag)) +[ctrl, ptx] +[ctrl, ptx, koFlag] +[p, h] = ranksum(ctrl(koFlag), ptx(koFlag), "tail", "right") +[p, h] = ranksum(ctrl(koFlag), ptx(koFlag), "tail", "left") +[p, h] = ranksum(ctrl, ptx, "tail", "left") +[p, h] = ranksum(ctrl(koFlag), ptx(koFlag), "tail", "left") +ylim([0,1]) +ylabel('Behaviour index') +xticks(1:2) +xticklabels({'Control', 'PTX'}) +hold on; plot([1,2], max([ctrl, ptx], [], "all")*([1,1]+0.1), 'k') +text(1.5, max([ctrl, ptx],[], "all")*1.1, '\ast', "HorizontalAlignment", 'center', "VerticalAlignment", "bottom") +title(["PTX [60 \muM] in SC";"Significance: left tail"]) +configureFigureToPDF(gcf) +figure; scatter(ones(sum(koFlag),2).*[1,2], [ctrl(koFlag), ptx(koFlag)]) +hold on; plot([1,2], max([ctrl(koFlag), ptx(koFlag)], [], "all")*([1,1]+0.1), 'k') +hold on; plot(ones(2,sum(koFlag)).*[1;2], [ctrl(koFlag), ptx(koFlag)]', 'k:') +xlim([0,3]) +xticks(1:2) +xticklabels({'Control', 'PTX'}) +ylim([0,1]) +ylabel('Behaviour index') +title(["PTX [60 \muM] in SC";"Significance: left tail"]) +configureFigureToPDF(gcf) +saveFigure(gcf, fullfile("Z:\Emilio\SuperiorColliculusExperiments\Roller\GenFigures", "PTX effect"), true); +text(1.5, max([ctrl, ptx],[], "all")*1.1, '\ast', "HorizontalAlignment", 'center', "VerticalAlignment", "bottom") +%% +muscFlag = arrayfun(@(m) arrayfun(@(s) cellfun(@(c) ... + any(contains(c, 'musc', ctOpts{:}),2), s.DataTable.Conditions), ... + m.Sessions, fnOpts{:}), mice, fnOpts{:}); +sessFlag = cellfun(@(f) cellfun(@any, f), muscFlag, fnOpts{:}); +behTable2 = arrayfun(@(m, f1) m.Sessions(f1{:}).DataTable, ... + mice, sessFlag, fnOpts{:}); +multFlag = cellfun(@(t) ~isstring(t.Conditions), behTable2); +behTableM = cellfun(@(t, f, s) t(f{s},:), behTable2(multFlag), ... + muscFlag(multFlag), sessFlag(multFlag), fnOpts{:}); +behTableM = cellfun(@(t) table(t.Conditions{:}(:), t.BehaviourIndices{:}(:), ... + 'VariableNames', t.Properties.VariableNames), behTableM, fnOpts{:}); +behTable2 = cat(1, behTableM{:}, behTable2{~multFlag}); + +dateFlag = arrayfun(@(m) arrayfun(@(s) ~contains(fieldnames(s), 'Date'), ... + m.Sessions, fnOpts{:}), mice, fnOpts{:}); +mCatg = arrayfun(@(mn) categorical(regexp(mn.Name, '[A-Za-z]{2}', ... + 'match')), mice); +Nfn = cellfun(@(x) cellfun(@sum, x), dateFlag, fnOpts{:}); +values = arrayfun(@(m) arrayfun(@(s) struct2cell(s), m.Sessions, ... + fnOpts{:}), mice, fnOpts{:}); +%} \ No newline at end of file diff --git a/Emilio/poolEphMI_iRNs.m b/Emilio/poolEphMI_iRNs.m new file mode 100644 index 0000000..b28c167 --- /dev/null +++ b/Emilio/poolEphMI_iRNs.m @@ -0,0 +1,113 @@ +%#ok<*AGROW,*SAGROW> +%% Auxiliary variables and functions +fnOpts = {'UniformOutput', false}; +expandName = @(x) fullfile(x.folder, x.name); +animalPattern = '[a-zA-Z]+\d{1,}'; +rsOpts = {animalPattern, 'SearchType', 'expression'}; +ctOpts = {'IgnoreCase', true}; +lsOpts = {'L\d+.\d+', 'match'}; +ephFF = 'Ephys VW(-?\d+\.\d+)-(\d+\.\d+) RW20.00-200.00 SW(-?\d+\.\d+)-(-?\d+\.\d+)'; +tblOpts = {'VariableNames', {'Conditions', 'MI'}}; +my_zscore = @(x, m, s) ( x - m ) ./ ( s .* (s~=0) + 1 .* (s==0) ); +getMI = @(x,d) diff(x, 1, d)./sum(x, d); +total_var_dist = @(dmat) integral( @(x) abs( pdf( dmat(1), x ) - pdf( dmat(2), x ) ), -5, 5 ); +tocol = @(x) x(:); + +exclude_names = {'GADi13', 'GADi15', 'GADi53'}; + +iRN_mice = dir( "Z:\Emilio\SuperiorColliculusExperiments\Roller\Batch*\MC\GADi*" ); +animalFolders = arrayfun(@(f) string( expandName( f ) ), iRN_mice(:)); +exclude_flags = contains( animalFolders, exclude_names ); + +%% Looping animals +oldMouse = ""; +mc = 0; mice = []; lp_mu = []; lPSTH = []; +for cad = tocol(animalFolders(~exclude_flags))' + [structPath, currMouse] = fileparts(cad); + [~, structName] = fileparts(structPath); + if string(oldMouse) ~= string(currMouse) + oldMouse = currMouse; + mice = [mice; struct('Name', currMouse, 'Sessions',[], ... + 'Structure', structName)]; + mc = mc + 1; + sc = 0; oldSess = ""; oldDepth = ""; + end + sessDirs = getSubFolds(cad); + % Just date sessions + onlyDateSessFlag = arrayfun(@(x) string(regexp(x.name, '[0-9]{6}', ... + 'match')), sessDirs, fnOpts{:}); + sessDirs(cellfun(@isempty, onlyDateSessFlag)) = []; + for csd = sessDirs(:)' + curDir = expandName(csd); + sessDateDepth = regexp(csd.name, '(\d{6}).*_(\d{4})?', 'tokens', 'once'); + if ~isempty( sessDateDepth ) + currSess = sessDateDepth{1}; + if isempty( sessDateDepth{2} ) + depthSess = ''; + else + depthSess = sessDateDepth{2}; + end + else + currSess = regexp(csd.name, '(\d{6})', 'tokens', 'once'); + depthSess = ''; + if isempty(currSess) + fprintf( 1, "Unable to get session date and depth\n" ); + fprintf( 1, "Skipping: %s %s\n", currMouse, csd.name ) + continue + end + end + childFolders = getSubFolds(curDir); + sessOrgDirs = arrayfun(@(d) string(d.name), childFolders); + sessOrgDirs(contains(sessOrgDirs, {'behaviour', 'ephys', ... + 'figures', 'opto'}, ctOpts{:})) = []; + miFigDir = arrayfun(@(d) recursiveFolderSearch(expandName(d), ... + ephFF, 'SearchType', 'expression'), childFolders, fnOpts{:}); + miFigDir = cat(1, miFigDir{:}); + miIdxFiles = arrayfun(@(d) dir( fullfile( d, ... + "LogPSTH_Structure*.mat" ) ), miFigDir, fnOpts{:} ); + miIdxFiles = cat( 1, miIdxFiles{:} ); + if isempty(miIdxFiles) + fprintf(1, 'No ephys analysis done! Skipping %s!\n', curDir) + continue + end + % miIdxStr = arrayfun(@(x) load( expandName(x), 'logPSTH' ), miIdxFiles); + load( expandName(miIdxFiles), 'logPSTH' ); + lPSTH = cat( 1, lPSTH, {logPSTH.LogPSTH} ); + lp_mu = cat( 3, lp_mu, squeeze( mean( ... + logPSTH.LogPSTH(:,:,logPSTH.indexMIComparison) ) ) ); + muMI = getMI( lp_mu(:,:,end), 2 ); muMI(isnan( muMI )) = 0; + bmot_MI = mean( muMI( ~(logPSTH.TimeAxis < 5e-2) ) ); + sens_MI = mean( muMI( logPSTH.TimeAxis < 5e-2) ); + miVal = [sens_MI, bmot_MI]; + condNames = logPSTH.ConditionNames( logPSTH.indexMIComparison ); + condNames = join([condNames(1), "v", condNames(2)]); + + sessType = 'single'; + dataTable = table( condNames, miVal, tblOpts{:} ); + if ( string(oldSess) ~= string(currSess) ) || ... + ( string(oldDepth) ~= string(depthSess) ) + oldSess = currSess; + oldDepth = depthSess; + auxStruct = struct('Date', currSess, ... + 'DataTable', dataTable, 'Type', sessType, ... + 'Depth', depthSess); + if ~isfield(mice, 'Sessions') + mice(mc).Sessions = auxStruct; + else + mice(mc).Sessions = [mice(mc).Sessions; auxStruct]; + end + sc = sc + 1; + end + end +end +mice( arrayfun(@(x) isempty(x.Sessions), mice) ) = []; + +behFP = fullfile( "Z:\Emilio\SuperiorColliculusExperiments\Roller", "MCiRNs_EphMI_sm.mat" ); +svOpts = {'-mat'}; +if exist(behFP, "file") + svOpts = {'-append'}; +end +% save(behFP, "mice", svOpts{:}) +habFlag = arrayfun(@(m) arrayfun(@(s) string(s.Type) == "multi", ... + m.Sessions), mice, fnOpts{:}); +cat( 1, habFlag{:} ) diff --git a/Emilio/poolRespUnitProp.m b/Emilio/poolRespUnitProp.m new file mode 100644 index 0000000..39449d0 --- /dev/null +++ b/Emilio/poolRespUnitProp.m @@ -0,0 +1,151 @@ +%#ok<*AGROW,*SAGROW> +%% Auxiliary variables and functions +fnOpts = {'UniformOutput', false}; +expandName = @(x) fullfile(x.folder, x.name); +animalPattern = '[a-zA-Z]+\d{1,}'; +rsOpts = {animalPattern, 'SearchType', 'expression'}; +ctOpts = {'IgnoreCase', true}; +lsOpts = {'L\d+.\d+', 'match'}; +ephFF = 'Ephys VW(-?\d+\.\d+)-(\d+\.\d+) RW20.00-200.00 SW(-?\d+\.\d+)-(-?\d+\.\d+)'; +tblOpts = {'VariableNames', {'Conditions', 'MI'}}; +my_zscore = @(x, m, s) ( x - m ) ./ ( s .* (s~=0) + 1 .* (s==0) ); +getMI = @(x,d) diff(x, 1, d)./sum(x, d); +total_var_dist = @(dmat) integral( @(x) abs( pdf( dmat(1), x ) - pdf( dmat(2), x ) ), -5, 5 ); +tocol = @(x) x(:); +my_xor = @(x) xor( x(:,1), x(:,2) ); +m = 1e-3; +exclude_names = {'GADi13', 'GADi15', 'GADi53'}; + +params = struct( 'relative_window', [-1,1]*800*m, 'delay_window', ... + [-1,1]*100*m, 'bin_size', 5*m, 'kfold', 20 ); + +pc = parcluster('local'); +if ~strcmp( computer, 'PCWIN64') + home_path = '/gpfs/bwfor/home/hd/hd_hd/hd_bf154/'; + repo_paths = cellfun(@(x) char( fullfile( home_path, x) ), ... + {'NeuroNetzAnalysis', 'AuxiliaryFuncs', 'Scripts'}, fnOpts{:} ); + cellfun(@(x) addpath( genpath( x ) ), repo_paths ) + roller_path = "/mnt/sds-hd/sd19b001/Emilio/SuperiorColliculusExperiments/Roller"; +else + roller_path = "Z:\Emilio\SuperiorColliculusExperiments\Roller"; +end +try + parpool( pc ); +catch + fprintf(1, 'Parallel pool already running ;-)\n') +end + +iRN_mice = dir( fullfile( roller_path, "Batch*", "MC", "GADi*" ) ); +animalFolders = arrayfun(@(f) string( expandName( f ) ), iRN_mice(:)); +exclude_flags = contains( animalFolders, exclude_names ); +%% Looping animals +oldMouse = ""; +mc = 0; mice = []; lp_mu = []; lPSTH = []; +sessType = 'single'; +for cad = tocol(animalFolders(~exclude_flags))' + [structPath, currMouse] = fileparts(cad); + [~, structName] = fileparts(structPath); + if string(oldMouse) ~= string(currMouse) + oldMouse = currMouse; + mice = [mice; struct('Name', currMouse, 'Sessions',[], ... + 'Structure', structName)]; + mc = mc + 1; + sc = 0; oldSess = ""; oldDepth = ""; + end + fprintf(1, 'Mouse %s', currMouse) + sessDirs = getSubFolds(cad); + % Just date sessions + onlyDateSessFlag = arrayfun(@(x) string(regexp(x.name, '[0-9]{6}', ... + 'match')), sessDirs, fnOpts{:}); + sessDirs(cellfun(@isempty, onlyDateSessFlag)) = []; + for csd = sessDirs(:)' + curDir = expandName(csd); + sessDateDepth = regexp(csd.name, '(\d{6}).*_(\d{4})?', 'tokens', 'once'); + if ~isempty( sessDateDepth ) + currSess = sessDateDepth{1}; + if isempty( sessDateDepth{2} ) + depthSess = ''; + else + depthSess = sessDateDepth{2}; + end + else + currSess = regexp(csd.name, '(\d{6})', 'tokens', 'once'); + depthSess = ''; + if isempty(currSess) + fprintf( 1, '\n' ) + fprintf( 1, "Unable to get session date and depth\n" ); + fprintf( 1, "Skipping: %s %s\n", currMouse, csd.name ) + continue + end + end + fprintf(1, ', Session %s\n', currSess ) + childFolders = getSubFolds(curDir); + sessOrgDirs = arrayfun(@(d) string(d.name), childFolders ); + sessOrgDirs( ~contains(sessOrgDirs, {'behaviour', 'ephys', ... + 'figures', 'opto'}, ctOpts{:}) ) = []; + if isempty(sessOrgDirs) + continue + end + data_path = curDir; + + mapFile = dir( fullfile( curDir, "ephys*", "Results", "Map *.mat" ) ); + rstFile = dir( fullfile( curDir, "ephys*", "*RW20.00-200.00*.mat" ) ); + rstFile( ~contains({rstFile.name}, 'PuffAll (unfiltered)') ) = []; + if numel( mapFile ) ~= 1 + fprintf(1, '%s\ndoesn''t have result map... skipping...\n', curDir ) + continue + end + if numel( rstFile ) ~= 1 + fprintf(1, '%s\ndoesn''t have relative spikes... skipping...\n', curDir ) + continue + end + % load( expandName(mapFile), 'keyCell', 'resMap' ) + load( expandName(rstFile), 'relativeSpkTmsStruct' ) + Ncl = size( relativeSpkTmsStruct(1).SpikeTimes, 1 ); + Na = arrayfun(@(x) size( x.SpikeTimes, 2 ), relativeSpkTmsStruct); + respWins = [20, 50; 50, 200]*1e-3; + sponWins = -flip( respWins, 2 ) - 0.1; + + countSpks = @(win) arrayfun(@(c) arrayfun(@(t) ... + sum( my_xor( tocol(relativeSpkTmsStruct(1).SpikeTimes{c,t}) > ... + win ) ), 1:Na(1) ), (1:Ncl)', fnOpts{:} ); + rCounts = cellfun(@(x) cat( 1, x{:}), arrayfun(@(x) ... + countSpks(respWins(x,:)), 1:2, fnOpts{:} ), fnOpts{:} ); + sCounts = cellfun(@(x) cat( 1, x{:}), arrayfun(@(x) ... + countSpks(sponWins(x,:)), 1:2, fnOpts{:} ), fnOpts{:} ); + testPairedMedians = @(x,y) arrayfun(@(u) signrank( ... + tocol( x(u,:) ), tocol( y(u,:) ) ), (1:Ncl)' ) < 0.05; + h = cellfun( @(x,y) testPairedMedians(x,y), sCounts, rCounts, ... + fnOpts{:} ); h = cat( 2, h{:} ); + + dataTable = table( Ncl, Na(1), sum(h), sum(h)/Ncl, ... + 'VariableNames', ["NUnits", "NTrials", ... + "Modulated_sens_motr", "Proportion"] ); + if ( string(oldSess) ~= string(currSess) ) || ... + ( string(oldDepth) ~= string(depthSess) ) + oldSess = currSess; + oldDepth = depthSess; + auxStruct = struct('Date', currSess, ... + 'DataTable', dataTable, 'Type', sessType, ... + 'Depth', depthSess); + if ~isfield(mice, 'Sessions') + mice(mc).Sessions = auxStruct; + else + mice(mc).Sessions = [mice(mc).Sessions; auxStruct]; + end + sc = sc + 1; + end + clearvars rCounts sCounts h relativeSpkTmsStruct + end +end +mice( arrayfun(@(x) isempty(x.Sessions), mice) ) = []; + +behFP = fullfile( roller_path, "MCiRNs_respUnitProp.mat" ); +svOpts = {'-mat'}; +if exist(behFP, "file") + svOpts = {'-append'}; +end +save(behFP, "mice", svOpts{:}) +habFlag = arrayfun(@(m) arrayfun(@(s) string(s.Type) == "multi", ... + m.Sessions), mice, fnOpts{:}); +cat( 1, habFlag{:} ) diff --git a/Emilio/popPolygon.m b/Emilio/popPolygon.m new file mode 100644 index 0000000..70355ef --- /dev/null +++ b/Emilio/popPolygon.m @@ -0,0 +1,61 @@ +% iRNs +expMice = summMice{1}(3); +aux = expMice.PolygonUnfoldAmplIndx([1,5],:,:,cons_mice); +% cons_mice comes from the iegRNs_AmplitudeIndexPool.m script + +% eOPN3 +% expMice = summMice{4}(2); +% aux = expMice.PolygonUnfoldAmplIndx([1,8],:,:,:); +%% +vaxOpts = cellstr( ["HorizontalAlignment", "center", ... + "VerticalAlignment", "baseline", "Rotation"] ); +med_AI_pbp = squeeze( median( aux, 2, "omitmissing" ) ); +med_AI_all = median( med_AI_pbp, 3, "omitmissing" ); +clrMap = [0.15*ones(1,3); 0, 0.51, 1]; +Nb = 8; +bodypart_names = ["Stim-whisker mean", "Stim-whisker fan arc", ... + "Nonstim-whisker mean", "Nonstim-whisker fan arc", "Interwhisk arc", ... + "Symmetry", "Nose", "Roller speed"]; + +iqr_AI = quantile( med_AI_pbp, [1,3]/4, 3 ); + +[f, z_axis, poly_coords] = createPolarPlotPolygons( med_AI_all' ); +iqr_coords = iqr_AI .* reshape(z_axis,1,[],1); +[pchObj, ax] = plotPolygons( poly_coords, f, 'clrMap', clrMap ); + +z_rot = exp( 1i*pi/32 ); +% Dots by the polygon +arrayfun(@(c,z) line( real( poly_coords(:,c) * z)', ... + imag( poly_coords(:,c) * z )', 'LineStyle', 'none', ... + 'Marker', '.', 'Color', clrMap(c,:), 'MarkerSize', 20 ), ... + 1:2, [z_rot, z_rot'] ) +set( gca, 'Box', 'off', 'Color', 'none', "Visible", "off" ); +% Lines for IQR +% arrayfun(@(x,z) line( squeeze( real( iqr_coords(:,:,x) * z ) )', ... +% squeeze( imag( iqr_coords(:,:,x) * z ) )', 'LineWidth', 2, ... +% 'Color', clrMap(x,:) ), 1:2, [z_rot, z_rot'] ) +arrayfun(@(x,z) line( squeeze( real( iqr_coords(x,:,:) * z ) )', ... + squeeze( imag( iqr_coords(x,:,:) * z ) )', 'LineWidth', 2, ... + 'Color', clrMap(x,:) ), 1:2, [z_rot, z_rot'] ) +% text(ax, 0.25:0.25:1, zeros(1,4), string( ( 1:4 )'/4 ), ... +% "HorizontalAlignment", "left", "VerticalAlignment", "cap" ) +title('Population Polygons for MC\rightarrowiRNs' ) +legend( findobj( gca, 'Type', 'Patch' ), {'Laser OFF', 'Laser ON'}, ... + "Location", "best", "Color", "none", "Box", "off" ) +p = arrayfun(@(b) signrank( squeeze( med_AI_pbp(1,b,:) ), ... + squeeze( med_AI_pbp(2,b,:) ) ), 1:8 ); +% arrayfun(@(v, y) text( real( 1.25*poly_coords(1,v) ), ... +% imag( 1.25*poly_coords(1,v) ), repmat( '\ast', 1, sum( p(v) < ... +% [0.05, 0.01, 0.001] ) ), "HorizontalAlignment", "center", ... +% "Rotation", y, "VerticalAlignment", "baseline"), 1:8, ... +% (180*angle( transp(z_axis) )/pi) - 90 ); +arrayfun(@(v, y) text( real( 1.25 * max( poly_coords(v,:) ) ), ... + imag( 1.25 * max( poly_coords(v,:) ) ), sprintf("$p=%.3g$", p(v) ), ... + "HorizontalAlignment", "center", "Rotation", y, ... + "VerticalAlignment", "baseline", "Interpreter", "latex"), 1:8, ... + (180*angle( transp(z_axis) )/pi) - 90 ); + + +arrayfun(@(v,b,y) text( real( z_axis(v) ), ... + imag( z_axis(v) ), b, vaxOpts{:}, y ), 1:8, bodypart_names, ... + (180*angle( transp(z_axis) )/pi) - 90 ) \ No newline at end of file diff --git a/Emilio/remove_artifact.m b/Emilio/remove_artifact.m new file mode 100644 index 0000000..707dd41 --- /dev/null +++ b/Emilio/remove_artifact.m @@ -0,0 +1,19 @@ +trig_samples = 5; +Nts = 2*trig_samples + 1; +trig_offset_win = (-trig_samples:trig_samples); +random_triggers = sort( randsample(length(laser_triggers), samples) ); +for cchan = 1:64 + for crt = 1:length(laser_triggers) + artif_win = laser_triggers(crt) + trig_offset_win; + segm = double( data( cchan, artif_win ) ); + correction = segm(1) * ((Nts:-1:1)/(Nts+1)) + ... + segm(end) * ((1:Nts)/(Nts+1)) + ... + rand(1, Nts)*5 - 2.5; + + artif_diff = (correction - segm).^2; + corr_fin = (1 - artif_diff/max(artif_diff)).^3; + segm2 = segm.*corr_fin + (1-corr_fin).*correction; + segm = int16(round(segm2)); + data(cchan, artif_win) = segm; + end +end \ No newline at end of file diff --git a/GatherAI_reconstruction.m b/GatherAI_reconstruction.m new file mode 100644 index 0000000..b8abb14 --- /dev/null +++ b/GatherAI_reconstruction.m @@ -0,0 +1,15 @@ +Nm = numel(mice); +Ns = arrayfun(@(m) numel( m.Sessions ), mice ); +aiPop = zeros( sum( Ns ), 4 ); +aiPbp = zeros( sum( Ns ), 8, 2 ); +aiPbp2 = zeros( 8, 2, sum( Ns ) ); +cr = 1; +for cm = 1:Nm + for cs = 1:Ns(cm) + dt = mice(cm).Sessions(cs).DataTable; + aiPop(cr,:) = [cm, cs, dt.AmplitudeIndex]; + aiPbp(cr,:,:) = reshape( dt.AI_pbp{:}, 1, [], 2 ); + aiPbp2(:,:,cr) = dt.AI_pbp{:}; + cr = cr + 1; + end +end \ No newline at end of file diff --git a/James/BehaviourAnalysis_James.m b/James/BehaviourAnalysis_James.m new file mode 100644 index 0000000..5e9cd07 --- /dev/null +++ b/James/BehaviourAnalysis_James.m @@ -0,0 +1,455 @@ +%% Analysing behaviour alone + +%roller_path = "Z:\Emilio\SuperiorColliculusExperiments\Roller"; +% exp_path = ... +% fullfile( roller_path, "Batch2_ephys/MC/GADi18/211205_C_2450" ); +exp_path = fullfile( "Z:\James\Learning Experiments\28-11-24_AM\m1" ); +% exp_path = ... +% fullfile( roller_path, "behavior/" ); +% Figure overwrite flag +fowFlag = false; +% Annonymus function +expandPath = @(x) fullfile( x.folder, x.name); +% Milli factor +m = 1e-3; +% Looks in the experiment path for objects called ephys* (* is a wild card) +eph_path = dir( fullfile( exp_path, "ephys*" ) ); +% Delete everything that is not a folder +eph_path( ~[eph_path.isdir] ) = []; +% Looking folder 'Behaviour' +beh_path = fullfile( exp_path, "Behaviour" ); +% If the ephys path is empty, look for *analysis.mat file in the behaviour +% folder. +if ~isempty( eph_path ) + eph_path = expandPath( eph_path ); + figure_path = fullfile( eph_path, "Figures" ); + af_path = dir( fullfile( eph_path , "*analysis.mat" ) ); + af_path = expandPath( af_path ); +elseif exist( beh_path, "dir" ) + af_path = expandPath( dir( fullfile( beh_path, "*analysis.mat") ) ); + figure_path = fullfile( beh_path, "Figures" ); +else + % If there is no organisation in the folders, look for the file in the + % 'root' folder a.k.a. experiment folder. Then give up. + beh_path = exp_path; + af_path = expandPath( dir( fullfile( beh_path, "*analysis.mat") ) ); + figure_path = fullfile( beh_path, "Figures" ); +end + +[~, af_name] = fileparts( af_path ); +expName = extractBefore(af_name, "analysis"); +load( af_path, "Conditions", "fs") + +fnOpts = {'UniformOutput', false}; +axOpts = {'Box','off','Color','none'}; +lgOpts = cat( 2, axOpts{1:2}, {'Location','best'} ); + +open Conditions +ldFlag = false; +try + load( expandPath( dir( fullfile( beh_path, "RollerSpeed*.mat" ) ) ), "fr") +catch + ldFlag = true; +end + +%% Run independently +% User input!! +consCond = 1; +Nccond = length( consCond ); +%prmSubs = nchoosek( 1:Nccond, 2 ); + +% pairedStimFlags = arrayfun(@(c) any( ... +% Conditions(1).Triggers(:,1) == ... +% reshape( Conditions(c).Triggers(:,1), 1, [] ), 2 ), consCond, fnOpts{:} ); +% pairedStimFlags = cat( 2, pairedStimFlags{:} ); + +consCondNames = string( { Conditions( consCond ).name } ); + +% [behRes, behFig_path, behData, aInfo] = analyseBehaviour( beh_path, ... +% "ConditionsNames", cellstr( consCondNames ), ... +% "PairedFlags", pairedStimFlags, ... +% "FigureDirectory", figure_path, ... +% "ResponseWindow", [25, 350] * m, ... +% "ViewingWindow", [-450, 500] * m, ... +% "figOverWrite", fowFlag ); +[behRes, behFig_path, behData, aInfo] = analyseBehaviour( beh_path, ... + "ConditionsNames", cellstr( consCondNames ), ... + "FigureDirectory", figure_path, ... + "ResponseWindow", [25, 350] * m, ... + "ViewingWindow", [-450, 500] * m, ... + "figOverWrite", fowFlag ); + +if ldFlag + load( expandPath( dir( fullfile( beh_path, "RollerSpeed*.mat" ) ) ), "fr") +end +[Ns, Nt, Nb] = size( behData.Data ); + +vwin = sscanf( aInfo.VieWin, "V%f - %f s")'; +mdlt = fit_poly( [1, Ns], vwin + [1,-1] * (1/(2 * fr) ), 1 ); +txb = ( (1:Ns)'.^[1,0] ) * mdlt; +behNames = string( { behRes(1).Results.BehSigName } ); + +%% Normalised amplitud by absolute maximum +rollYL = ""; +rsFlag = false; +if contains( behNames, "Roller speed", "IgnoreCase", true) + rollYL = "Roller speed [cm/s]"; + rsFlag = true; +end +yLabels = [repmat("Angle [°]", 1, Nb-rsFlag), rollYL]; +sym_flag = contains( behNames, "symmetry", "IgnoreCase", true ); +yLabels(sym_flag) = "Symmetry [a.u.]"; +yLabels(~strlength(yLabels)) = []; +cbLabels = strings(Nb, 2); +cbLabels([1,3],:) = repmat(["Retract", "Protract"],2,1); +cbLabels([2,4,5],:) = repmat(["Closed", "Opened"],3,1); +cbLabels(6,:) = ["Away", "Puff"]; +cbLabels(7,:) = ["Puff", "Away"]; +cbLabels(8,:) = ["Backward", "Forward"]; +screen_size = get(0, 'ScreenSize' ); +pxHeight = screen_size(4)*0.7; +lowBound = screen_size(4)*1/5; + +possCols = [2,3,5]; +Ncols = possCols( find( mod( Nb, possCols ) == 0, 1, 'first' ) ); +if isempty( Ncols ) + Ncols = 2; +end +Nrows = ceil( Nb / Ncols ); + +% newAx = @(f) subplot( Nrows, Ncols, ix, "NextPlot", "add", "Parent", f ); + +% createtiles = @(f) tiledlayout( f, Nrows, Ncols, ... + % 'TileSpacing', 'Compact', 'Padding', 'tight'); + +isendrow = @(ix) ( (ix/Ncols) + 1) > Nrows; + +newFigure = @(x,y,fn) figure( "Color", "w", "Position", ... + [x, y, pxHeight/sqrt(2), pxHeight], "Name", fn ); + +fig = newFigure(0, lowBound, ""); + +t = createtiles( fig, Nrows, Ncols ); +for cbi = 1:Nb + ax = nexttile(t); + auxStack = squeeze( behData.Data(:,:,cbi) )'; + if cbi ~= 6 + auxStack = ( auxStack - median( auxStack, 2) ); + auxStack = auxStack ./ max( abs( auxStack ), [], 2 ); + end + imagesc( ax, txb*1e3, [], auxStack ); xline(ax, 0, 'k'); + xline( ax, [20, 120], 'LineWidth', 1, 'Color', 'b') + title( ax, behNames(cbi) ) + if mod( cbi, Ncols ) == 1 + ylabel(ax, 'Trials'); + else + ax.YAxis.Visible = 'off'; + end + if isendrow( cbi ) + xlabel(ax, 'Time [ms]'); + else + ax.XAxis.Visible = 'off'; + end + set( ax, axOpts{:} ) + + cb = colorbar(ax, "Box", "off", "Location", "west"); + cb.Ticks = [min(auxStack(:)), max(auxStack(:))] * 0.85; + cb.Label.String = yLabels(cbi); + cb.TickLabels = cellstr(cbLabels(cbi,:)); + cb.TickDirection = "none"; +end +axis( findobj( fig, "Type", "Axes" ), ... + [1e3*txb([1,end])', [1,Nt] + [-1,1]*(1/2)] ) +%cb.TickLabels = {'Backward', 'Forward'}; +linkaxes( findobj(fig, "Type", "Axes"), "xy") + +saveFigure(fig, fullfile( behFig_path, ... + "All trials all body parts normalised" ), true, fowFlag) + +clearvars auxStack + +%% L-norms and derivative +my_zscore = @(x, m, s) ( x - m ) ./ ( s .* (s~=0) + 1 .* (s==0) ); + +respWin = sscanf( aInfo.Evoked, "R%f - %f ms")' * 1e-3; +% respWin = [30, 400]*1e-3; +sponWin = -flip(respWin); +n = getHesseLineForm([1,0]); + +% Spontaneous window +sponFlag = txb > sponWin; +sponFlag = xor( sponFlag(:,1), sponFlag(:,2) ); + +% Responsive window +respWin_aux = respWin; +if respWin(1) < 0.12 + respWin_aux = respWin + 0.1; +end + +if respWin_aux(2) > vwin(2) + respWin_aux(2) = vwin(2); +end +respWin = [repmat(respWin_aux,2,1); repmat( respWin, Nb-2, 1)]; + +evokFlags = arrayfun(@(x) txb > respWin(x,:), 1:Nb, fnOpts{:} ); +evokFlags = cellfun(@(x) xor(x(:,1), x(:,2) ), evokFlags, fnOpts{:} ); +evokFlags = cat( 2, evokFlags{:} ); + +myNorm = @(x, l) vecnorm(x, l, 1); +funcs = {@(x) x, @(x) diff(x, 1, 1) }; +app = [ repmat("", 1,Nb); repmat( "diff", 1, Nb) ]; + +Nfgs = numel(funcs); +figs = gobjects(Nfgs, 2); + +for l = [1, 2, inf] + + for cf = 1:Nfgs + figs(cf, 1) = newFigure(0, lowBound, ""); + %figure( "Color", "w", "Position", ... + % [0, 20, pxHeight/sqrt(2), pxHeight] ); + figs(cf, 2) = newFigure(pxHeight/sqrt(2), lowBound, "");... figure( "Color", "w", "Position", ... + %[pxHeight/sqrt(2), 20, pxHeight/sqrt(2), pxHeight] ); + t1 = createtiles( figs(cf, 1) ); + t2 = createtiles( figs(cf, 2) ); + for cb = 1:Nb + + ax = nexttile(t1); + if cb == 1 + ylabel(ax, 'Evoked') + elseif cb == Nb + xlabel(ax, 'Spontaneous') + lgObj = legend( ax, scObj, consCondNames, lgOpts{:}, ... + "AutoUpdate", "off" ); + end + + aux_x = myNorm( funcs{cf}(behData.Data( sponFlag, :, cb ) ), l ); + aux_y = myNorm( funcs{cf}( ... + behData.Data( evokFlags(:, cb), :, cb ) ), l ); + + scObj = arrayfun(@(c) line(ax, aux_x(pairedStimFlags(:,c)), ... + aux_y(pairedStimFlags(:,c)), "LineStyle", "none", ... + "Marker", "." ), 1:Nccond); + + title(ax, join( [sprintf("L%d", l), behNames(cb), ... + app(cf,cb)] ) ); + set( get(ax, "XAxis"), "Scale", "log"); + set( get(ax, "YAxis"), "Scale", "log") + line(ax, xlim(ax), xlim(ax), "LineStyle", "--", ... + "Color", 0.45*ones(1,3) ); + xticklabels( ax, xticks(ax) ); + yticklabels( ax, yticks(ax) ); + % text( ax, aux_x, aux_y, num2str( (1:Nt)' ), ... + % 'HorizontalAlignment', 'center', 'VerticalAlignment', 'middle') + set(ax, axOpts{:}, "XGrid", "on", "YGrid", "on") + Dyx = [aux_x(:), aux_y(:)] * n; + % [~, d_centre, d_scale] = zscore( double( Dyx(pairedStimFlags(:,1)) ) ); + + ax = nexttile(t2); + % boxchart(ax, pairedStimFlags * (1:Nccond)', Dyx, "Notch", "on" ) + trFlag = any( pairedStimFlags, 2 ); + boxchart( ax, pairedStimFlags(trFlag,:) * (1:Nccond)', ... + Dyx(trFlag), "Notch", "on", "JitterOutliers", "on", ... + "MarkerStyle", "." ) + % yyaxis(ax, "right"); line( ax, pairedStimFlags * (1:Nccond)', ... + % my_zscore(Dyx, d_centre, d_scale), "LineStyle", "none") + % yyaxis(ax, "left"); + yline( ax, 0, 'k' ) + title(ax, join( [sprintf("L%d", l), ... + behNames(cb), app(cf,cb)] ) ); + set( ax, axOpts{:} ); % set( ax.YAxis, "Scale", "log" ) + xticks(ax, 1:Nccond ); + if isendrow( cb ) + xticklabels( ax, consCondNames ) + else + ax.XAxis.Visible = 'off'; + end + + end + saveFigure( figs(cf, 1), fullfile(behFig_path, ... + join([sprintf("L%d norm", l), app(cf,1)]) ), true, fowFlag ) + + saveFigure( figs(cf, 2), fullfile(behFig_path, ... + regexprep( join( [sprintf( "L%d norm", l ), app(cf,2), ... + "boxplots"] ), ' +', ' ' ) ), true, fowFlag ) + end + clearvars aux_* ax figs +end + +%% Weigthed mean +sponWeight = (1:sum(sponFlag))/sum(1:sum(sponFlag)); +ln1 = log10( 1:sum(evokFlags(:,1)) ); +ln2 = sum( evokFlags(:,1) ):-1:1; +evokWeight = ln1 .* ln2; evokWeight = evokWeight / sum( evokWeight ); + +clrMap = lines(Nccond); + +xPos = (0:2)*pxHeight/sqrt(2); +Na = sum( pairedStimFlags ); +figs = gobjects( 3, 1 ); +ts = figs; +figNames = ["Weighted mean"; "Line distance boxplots"; + "Vector magnitude boxplots"]; + +for cf = 1:numel(figs) + figs(cf) = newFigure( xPos(cf), lowBound, figNames(cf) ); + ts(cf) = createtiles( figs( cf ) ); +end + + +for cb = 1:Nb + w_smu = reshape( sponWeight * behData.Data(sponFlag,:,cb), [], 1 ); + + w_emu = reshape( evokWeight * behData.Data( ... + evokFlags(:,cb), :, cb ), [], 1 ); + + + ax = nexttile( ts(1) ); set(ax, 'NextPlot', 'add' ); + scObj = arrayfun(@(c) scatter(ax, w_smu(pairedStimFlags(:,c)), ... + w_emu(pairedStimFlags(:,c)), '.', "MarkerEdgeColor", clrMap(c,:) ), ... + 1:Nccond); + + if cb == Nb + xlabel( ax, 'Spontaneous', 'FontSize', 8 ); + legend( ax, scObj, consCondNames, lgOpts{:}, "AutoUpdate", "off"); + elseif cb == 1 + ylabel( ax, 'Evoked', 'FontSize', 8 ); + end + + title(ax, behNames(cb) ); + set( ax, axOpts{:}, "XAxisLocation", "origin", ... + "YAxisLocation", "origin" ); grid( ax, "on" ); %axis( ax, 'square' ) + line(ax, xlim(ax), xlim(ax), 'LineStyle', '--', 'Color', 0.45*ones(1,3)) + + ax = nexttile( ts(2) ); set(ax, 'NextPlot', 'add' ); + + bxObj = boxchart(ax, pairedStimFlags(trFlag,:) * (1:Nccond)', ... + [w_smu(trFlag), w_emu(trFlag)] * n, ... + "Notch", "on", "JitterOutlier", "on", "MarkerStyle", ".", ... + "Boxfacecolor", "k", "Markercolor", "k" ); + + if cb == Nb + legend( ax, bxObj, '$\vec{x} \cdot n + d$', ... + 'Interpreter' ,'latex' , lgOpts{:}, "AutoUpdate", "off" ); + elseif cb == 1 + ylabel( ax, 'Distance from line' ) + end + + xticks( ax, 1:Nccond ); + if isendrow(cb) + xticklabels( ax, consCondNames ) + else + ax.XAxis.Visible = 'off'; + end + + title(ax, behNames(cb) ); + set( ax, axOpts{:} ); yline( ax, 0, 'Color', 0.75*ones(1,3), ... + 'LineWidth', 1/3); + + ax = nexttile( ts(3) ); set(ax, 'NextPlot', 'add' ); + bxObj = boxchart(ax, pairedStimFlags(trFlag,:) * (1:Nccond)', ... + vecnorm( [w_smu(trFlag), w_emu(trFlag)], 2, 2 ), ... + "Notch", "on", "JitterOutlier", "on", "MarkerStyle", "." ); + if cb == Nb + legend( ax, bxObj, 'L-2 norm', ... + lgOpts{:}, "AutoUpdate", "off", "interpreter", "latex" ); + elseif cb == 1 + ylabel( ax, 'Distance from origin' ) + end + + xticks( ax, 1:Nccond ); + if isendrow(cb) + xticklabels( ax, consCondNames ) + else + ax.XAxis.Visible = 'off'; + end + + title(ax, behNames(cb) ); %axis( ax, 'square' ) + set( ax, axOpts{:} ); + + for cc = 1:Nccond + behRes(cc).Results(cb).Puff_Effect = ... + [w_smu( pairedStimFlags(:,cc) ), ... + w_emu( pairedStimFlags(:,cc) )] * n; + behRes(cc).Results(cb).Baseline_L2 = ... + vecnorm( [w_smu( pairedStimFlags(:,cc) ), ... + w_emu( pairedStimFlags(:,cc) )], 2, 2); + end +end + +wmFigNames = ["Weighted mean scatter"; ... + "Line distance boxplots"; ... + "Origin distance"]; + +arrayfun(@(x, f) saveFigure( x, fullfile( behFig_path, f ), true, fowFlag), ... + figs(:), wmFigNames(:)) + +clearvars ax figs + +%% Amplitude index and trial proportion + +if ~exist( "fr", "var" ) && ldFlag + load( expandPath( dir( fullfile( beh_path, "RollerSpeed*.mat" ) ) ), "fr") + ldFlag = false; +end + +[pAreas, ~, behAreaFig] = createBehaviourIndex(behRes); +behMeasures = string({behAreaFig.Name}); +biFigPttrn = behMeasures+"%s"; +biFigPttrn = arrayfun(@(s) sprintf(s, sprintf(" %s (%%.3f)", ... + consCondNames ) ), biFigPttrn ); + +for it = 1:numel(behMeasures) + behRes = arrayfun(@(bs, ba) setfield( bs, ... + strrep( behMeasures(it), " ", "_" ), ba), behRes(:), pAreas(:,it) ); +end + +arrayfun(@(f) set( f, 'UserData', behRes ), behAreaFig ); + +biFN = arrayfun(@(s) sprintf( biFigPttrn(s), pAreas(:,s) ), 1:numel(behMeasures) ); + +arrayfun(@(f, fn) saveFigure(f, fullfile(behFig_path, fn), true, fowFlag), ... + behAreaFig(:), biFN(:) ); + + + +%% Count figure +trMvFlag = arrayfun(@(cr) behRes(1).Results(cr).MovStrucure.MovmentFlags, ... + 1:size(behRes(1).Results,2), fnOpts{:}); trMvFlag = cat(3, trMvFlag{:}); +BIscaleMat = sum(trMvFlag,3); +BIscale = arrayfun(@(cc) BIscaleMat(pairedStimFlags(:,cc), cc), 1:Nccond, ... + fnOpts{:}); +hstOpts = {'BinMethod', 'integers', 'BinLimits', [0,Nb] + [-1,1]/2}; +[hg, hg_bin] = cellfun(@(c) histcounts(c, hstOpts{:}), ... + BIscale, fnOpts{:}); +hg = cat(1, hg{:}); hg_bin = cat(1, hg_bin{:}); + +% [p_amp, h_amp] = ranksum(cat(1, zamp{1,:}), cat(1, zamp{2,:})); + +clrMap = lines(Nccond); +countFig = figure; ax(1) = subplot(10,1,1:8); +bar(ax(1), (0:Nb)', (hg./sum(hg,2))', 'EdgeColor', 'none'); hold on; +poaDist = cellfun(@(bi) fitdist(bi,"Poisson"), BIscale); +ylim(ax(1), [0,1]); set(ax(1), axOpts{:}); +legend(ax(1), consCondNames, 'AutoUpdate','off', lgOpts{:}) +lmbdaHeight = 0.95-(0.15/Nccond)*(0:Nccond-1); +arrayfun(@(pd) scatter(ax(1), poaDist(pd).lambda, lmbdaHeight(pd), '|',... + 'MarkerEdgeColor', clrMap(pd,:)), 1:Nccond) +arrayfun(@(pd) line(ax(1), paramci(poaDist(pd)), ... + lmbdaHeight([pd,pd]), 'Color', clrMap(pd,:), ... + 'Marker', '|'), 1:Nccond) +[p, chiVal] = arrayfun(@(ps) chi2test(hg(prmSubs(ps,:), :)), ... + 1:size(prmSubs,1)); +ax(2) = subplot(10,1,9:10); +signBeh = arrayfun(@(x) sprintf("%s vs %s p=%.3f", ... + consCondNames(prmSubs(x,:)), p(x)), 1:size(prmSubs,1)); +text(ax(2), 0, -0.3, sprintf('%s vs. %s P=%.3f\n', ... + [consCondNames(prmSubs), string(p(:))]')) +set(ax(2), 'Visible', 'off') +set(countFig, 'UserData', {signBeh, p}) +title(ax(1), strrep(expName, '_',' ')); xlabel(ax(1),'Moving body parts') +ylabel(ax(1),'Trial proportion') +countFigName = sprintf("Count distributions P%s", ... + sprintf(" %.3f", p(:))); + +saveFigure(countFig, fullfile(behFig_path, countFigName), true, fowFlag); \ No newline at end of file diff --git a/James/script_learning_experiments.m b/James/script_learning_experiments.m new file mode 100644 index 0000000..610f909 --- /dev/null +++ b/James/script_learning_experiments.m @@ -0,0 +1,98 @@ +%% Call function + +dt= datetime(2024,11,25); + +dt.Format = 'd-MM-yy'; + +daytime = ["AM","PM"]; + +mice_number= ["m1", ... + "m2", ... + "m3", ... + "m4", ... + "m5", ... + "m6"]; + +data_path = "Z:\James\Learning Experiments"; +% HPC snipet +if ~strcmp( computer, 'PCWIN64' ) + + fnOpts = {'UniformOutput', false}; + unpackCell = @(x) x{:}; + home_path = '/gpfs/bwfor/home/hd/hd_hd/hd_bf154/'; + repo_paths = cellfun(@(x) char( fullfile( home_path, x) ), ... + {'NeuroNetzAnalysis', 'AuxiliaryFuncs', 'Scripts'}, fnOpts{:} ); + sf_repo_paths = cellfun(@(x) genpath(x), repo_paths, fnOpts{:} ); + addpath( sf_repo_paths{:} ); + data_path = '/mnt/sds-hd/sd19b001/James/Learning Experiments'; + +end + +ss_means = NaN(24,6,8); +ss_max = NaN(6,8); + +expandName = @(x) fullfile( x.folder, x.name ); + +for h = 0:11 + for x = 1:2 + for m = 1:6 + ss_Data = fullfile( data_path, ... + sprintf( "%s_%s", string(dt+h), daytime(x) ), ... + mice_number(m), "Simple summary.mat" ); + ss_Path = fullfile(data_path, ... + sprintf("%s_%s",string(dt+h),daytime(x)), ... + mice_number(m) ); + try + load(ss_Data) + catch + try + ss_Data = dir( fullfile(ss_Path, 'BehaviourResults*.mat') ); + load( expandName( ss_Data ), 'behRes' ) + summStruct = behRes; + catch + rec_file = dir(fullfile(ss_Path, 'Recording*.bin')); + fID = fopen( expandName( rec_file ) , 'w' ); + fwrite( fID, [], 'int16' ); + fclose(fID); + + prepare64ChanBin4KS( ss_Path, 'BinFileName', ... + sprintf("%s_%s_%s",mice_number(m),string(dt+h),daytime(x)), ... + 'AllBinFiles', true, 'Overwrite', true ); + + pgObj = ProtocolGetter(ss_Path); + pgObj.getConditionSignals; + pgObj.getSignalEdges; + pgObj.getFrequencyEdges(0.8); + pgObj.pairStimulus(0.2); + pgObj.saveConditions; + + try + [summStruct, behFig_path, behData, aInfo] = analyseBehaviour( ss_Path, ... + "ConditionsNames", "Puff", ... + "ResponseWindow", [25, 350] * 1e-3, ... + "ViewingWindow", [-450, 500] * 1e-3, ... + "figOverWrite", false, ... + "showPlots", false ); + + close all; + catch ME + disp( ME.message ) + disp( ME.identifier ) + disp( ME.cause ) + fprintf( 1, ['Debugging necessary perhaps?\n',... + 'Will continue with the loop...\n'] ) + continue; + end + end + end + r = ((x-1)*12)+(h+1); + N_att = numel(summStruct.Results); + ss_means(r,m,1:N_att) = mean(cat(1,summStruct.Results.MaxValuePerTrial),2); + if h == 0 && x==1 + ss_max(m,1:N_att) = max(cat(1,summStruct.Results.MaxValuePerTrial),[],2); + end + end + end +end + +save( fullfile( data_path, 'AmplitudeIndices.mat' ), 'ss_max', "ss_means" ) diff --git a/Jesus/3dreconstructionSC.m b/Jesus/3dreconstructionSC.m new file mode 100644 index 0000000..78ae120 --- /dev/null +++ b/Jesus/3dreconstructionSC.m @@ -0,0 +1,225 @@ +%% extract contours slices +%V=[0 1 0 ;0 0 0; 1 1 1 ] +close all +myfiles=dir('Z:\Berin\3D reconstruction inputs Cx_BS\*green.jpg'); + +for j=1:numel(myfiles); + +%T=imread('Z:\Berin\3D reconstruction inputs Cx_BS\Rostral0 clear outside green.jpg'); + T=imread(fullfile(['Z:\Berin\3D reconstruction inputs Cx_BS\',[myfiles(j).name]])); +T=rgb2gray(T); +T=255-T; +T=flip(T); +V=T<=250;%grey values on inverted jpeg file +%V=imresize(V,0.1); + +test1=[]; +for i=1:size(V,1); + for ii=1:size(V,2); + if V(i,ii)==0; + test1(i,ii)=0; + elseif V(i,ii)==1; + test1(i,ii)=200; + break + end + end +end + +%V=[1 0 1 0 ;0 0 0 1; 1 1 1 1;0 1 0 1 ]; +%test=zeros(4,4); +test=[]; +for ii=1:size(V,2); + for i=1:size(V,1); + if V(i,ii)==0; + test(i,ii)=0; + elseif V(i,ii)==1; + test(i,ii)=200; + break + end + end +end + +test3=[]; + +for ii=flip(1:size(V,2)); + for i=flip(1:size(V,1)); + if V(i,ii)==0; + test3(i,ii)=0; + elseif V(i,ii)==1; + test3(i,ii)=200; + break + end + end +end + +test4=[]; + +for i=flip(1:size(V,1)); + for ii=flip(1:size(V,2)); + if V(i,ii)==0; + test4(i,ii)=0; + elseif V(i,ii)==1; + test4(i,ii)=200; + break + end + end +end +test2=test4+test3;+test+test1; +test2(1,:)=0; +%figure +%imshow(T); +h=gca;h.Visible='on' +%figure +%imagesc(test2) +colormapJes=[1 1 1; 0 0 0; 0 0 0;0 0 0]; +colormap(colormapJes); axis ij +[x y]=find(test2>=200); +figure +plot(y/61,x/61,'k*','MarkerSize',1); axis ij +hold on + + +%change values of V for labeled cell area detection +V1=T<=230; +%V1=imresize(V1,0.1); +[x1,y1]=find(V1==1); +plot(y1/61,x1/61,'go','MarkerSize',3,'MarkerFaceColor',[0 1 0]); axis ij %pixel size is 0.61*factor of 10 of IMresize +k=boundary(x1,y1,0.8); +patch(y1(k)/61,x1(k)/61,[0 1 0],'FaceAlpha',0.5,'LineStyle','none') +hold on + +myfilesred=dir('Z:\Berin\3D reconstruction inputs Cx_BS\*red.jpg'); + +%T=imread('Z:\Berin\3D reconstruction inputs Cx_BS\Rostral0 clear outside red.jpg'); +T=imread(fullfile(['Z:\Berin\3D reconstruction inputs Cx_BS\',[myfilesred(j).name]])); +T=rgb2gray(T); +T=255-T; +T=flip(T); +V1=T<=215; +%V1=imresize(V1,0.1); +[x2,y2]=find(V1==1); +plot(y2/61,x2/61,'ro','MarkerSize',3,'MarkerFaceColor',[1 0 0]); axis ij %pixel size is 0.61*factor of 10 of IMresize +k=boundary(x2,y2,0.8); +patch(y2(k)/61,x2(k)/61,[1, 0 0],'FaceAlpha',0.5,'LineStyle','none'); +box off +hold off +%figure +%imshow(T) +%x3d1=x; y3d1=y; +%x13d1=x1; y13d1=y1; + +x3d(1:size(x,1),j)=x; +y3d(1:size(y,1),j)=y; +x3d1(1:size(x1,1),j)=x1; +y3d1(1:size(y1,1),j)=y1; +x3d2(1:size(x2,1),j)=x2; +y3d2(1:size(y2,1),j)=y2; +end + +plot3((zeros(size(x3d(:,1),1),1)+0),flip(y3d(:,1))/0.61,flip(x3d(:,1))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +hold on +plot3((zeros(size(x3d(:,2),1),1)+50),flip(y3d(:,2))/0.61,flip(x3d(:,2))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,3),1),1)+100),flip(y3d(:,3))/0.61,flip(x3d(:,3))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,4),1),1)+150),flip(y3d(:,4))/0.61,flip(x3d(:,4))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,5),1),1)+200),flip(y3d(:,5))/0.61,flip(x3d(:,5))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,6),1),1)+250),flip(y3d(:,6))/0.61,flip(x3d(:,6))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,7),1),1)+300),flip(y3d(:,7))/0.61,flip(x3d(:,7))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,8),1),1)+350),flip(y3d(:,8))/0.61,flip(x3d(:,8))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,9),1),1)+400),flip(y3d(:,9))/0.61,flip(x3d(:,9))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,10),1),1)+450),flip(y3d(:,10))/0.61,flip(x3d(:,10))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,11),1),1)+500),flip(y3d(:,11))/0.61,flip(x3d(:,11))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,12),1),1)+550),flip(y3d(:,12))/0.61,flip(x3d(:,12))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,13),1),1)+600),flip(y3d(:,13))/0.61,flip(x3d(:,13))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,14),1),1)+650),flip(y3d(:,14))/0.61,flip(x3d(:,14))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,15),1),1)+700),flip(y3d(:,15))/0.61,flip(x3d(:,15))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) + + + + +box off +axis ij +xlabel("Antero-Posterior (µm)") +ylabel("Medio-lateral (µm)") +zlabel("dorso-Ventral (µm)") +title("to be specified") + +plot3((zeros(size(x3d1(:,1),1),1)+0),flip(y3d1(:,1))/0.61,flip(x3d1(:,1))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 1 0.1]) +plot3((zeros(size(x3d1(:,2),1),2)+50),flip(y3d1(:,2))/0.61,flip(x3d1(:,2))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 1 0.1]) +plot3((zeros(size(x3d1(:,3),1),1)+100),flip(y3d1(:,3))/0.61,flip(x3d1(:,3))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 1 0.1]) +plot3((zeros(size(x3d1(:,4),1),2)+150),flip(y3d1(:,4))/0.61,flip(x3d1(:,4))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 1 0.1]) +plot3((zeros(size(x3d1(:,5),1),1)+200),flip(y3d1(:,5))/0.61,flip(x3d1(:,5))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 1 0.1]) +plot3((zeros(size(x3d1(:,6),1),1)+250),flip(y3d1(:,6))/0.61,flip(x3d1(:,6))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 1 0.1]) +plot3((zeros(size(x3d1(:,7),1),1)+300),flip(y3d1(:,7))/0.61,flip(x3d1(:,7))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 1 0.1]) +plot3((zeros(size(x3d1(:,8),1),1)+350),flip(y3d1(:,8))/0.61,flip(x3d1(:,8))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 1 0.1]) +plot3((zeros(size(x3d1(:,9),1),1)+400),flip(y3d1(:,9))/0.61,flip(x3d1(:,9))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 1 0.1]) +plot3((zeros(size(x3d1(:,10),1),1)+450),flip(y3d1(:,10))/0.61,flip(x3d1(:,10))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 1 0.1]) +plot3((zeros(size(x3d1(:,11),1),1)+500),flip(y3d1(:,11))/0.61,flip(x3d1(:,11))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 1 0.1]) +plot3((zeros(size(x3d1(:,12),1),1)+550),flip(y3d1(:,12))/0.61,flip(x3d1(:,12))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 1 0.1]) +plot3((zeros(size(x3d1(:,13),1),1)+600),flip(y3d1(:,13))/0.61,flip(x3d1(:,13))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 1 0.1]) +plot3((zeros(size(x3d1(:,14),1),1)+650),flip(y3d1(:,14))/0.61,flip(x3d1(:,14))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 1 0.1]) +plot3((zeros(size(x3d1(:,15),1),1)+700),flip(y3d1(:,15))/0.61,flip(x3d1(:,15))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 1 0.1]) + +plot3((zeros(size(x3d2(:,1),1),1)+0),flip(y3d2(:,1))/0.61,flip(x3d2(:,1))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[1 0.1 0.1]) +plot3((zeros(size(x3d2(:,2),1),2)+50),flip(y3d2(:,2))/0.61,flip(x3d2(:,2))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[1 0.1 0.1]) +plot3((zeros(size(x3d2(:,3),1),1)+100),flip(y3d2(:,3))/0.61,flip(x3d2(:,3))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[1 0.1 0.1]) +plot3((zeros(size(x3d2(:,4),1),2)+150),flip(y3d2(:,4))/0.61,flip(x3d2(:,4))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[1 0.1 0.1]) +plot3((zeros(size(x3d2(:,5),1),1)+200),flip(y3d2(:,5))/0.61,flip(x3d2(:,5))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[1 0.1 0.1]) +plot3((zeros(size(x3d2(:,6),1),1)+250),flip(y3d2(:,6))/0.61,flip(x3d2(:,6))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[1 0.1 0.1]) +plot3((zeros(size(x3d2(:,7),1),1)+300),flip(y3d2(:,7))/0.61,flip(x3d2(:,7))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[1 0.1 0.1]) +plot3((zeros(size(x3d2(:,8),1),1)+350),flip(y3d2(:,8))/0.61,flip(x3d2(:,8))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[1 0.1 0.1]) +plot3((zeros(size(x3d2(:,9),1),1)+400),flip(y3d2(:,9))/0.61,flip(x3d2(:,9))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[1 0.1 0.1]) +plot3((zeros(size(x3d2(:,10),1),1)+450),flip(y3d2(:,10))/0.61,flip(x3d2(:,10))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[1 0.1 0.1]) +plot3((zeros(size(x3d2(:,11),1),1)+500),flip(y3d2(:,11))/0.61,flip(x3d2(:,11))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[1 0.1 0.1]) +plot3((zeros(size(x3d2(:,12),1),1)+550),flip(y3d2(:,12))/0.61,flip(x3d2(:,12))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[1 0.1 0.1]) +plot3((zeros(size(x3d2(:,13),1),1)+600),flip(y3d2(:,13))/0.61,flip(x3d2(:,13))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[1 0.1 0.1]) +plot3((zeros(size(x3d2(:,14),1),1)+650),flip(y3d2(:,14))/0.61,flip(x3d2(:,14))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[1 0.1 0.1]) +plot3((zeros(size(x3d2(:,15),1),1)+700),flip(y3d2(:,15))/0.61,flip(x3d2(:,15))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[1 0.1 0.1]) + +z3dtotal=[]; +for ji=0:size(x3d1,2)-1 + c=zeros(size(x3d1,1),1)+(ji*50) + z3dtotal(1:size(c),ji+1)=c +end + + +x3d1total=x3d1(:); +y3d1total=y3d1(:); +z3dtotal=z3dtotal(:); + +contorGreen=cat(2,x3d1total,y3d1total,z3dtotal); +k=boundary(x3d1total,y3d1total,z3dtotal) +%% +figure +plot(NeuronLoc(1:291,3),NeuronLoc(1:291,4),'ro','MarkerFaceColor','r') +hold on +plot(NeuronLoc(292:end,3),NeuronLoc(292:end,4),'go','MarkerFaceColor','g') +%% +figure % figure boundaries, pixel size 0.61 * resizing factor of 10 + +plot((xmc/0.61)*10,(ymc/0.61)*10,'r*','MarkerSize',0.7,'MarkerEdgeColor',[1 0 0]) +hold on +kmc=boundary(x1mc,y1mc,0.9) %get boundaries for Motor cortex +p1=patch((x1mc(kmc)/0.61)*10,(y1mc(kmc)/0.61)*10,[1 0 0],'FaceAlpha',0.4,'LineStyle','none') +plot((xsc/0.61)*10,(ysc/0.61)*10,'b*','MarkerSize',0.7,'MarkerEdgeColor',[0 0 1]) +ksc=boundary(x1sc,y1sc,0.9) %get boundaries for barrel cortex +p2=patch((x1sc(ksc)/0.61)*10,(y1sc(ksc)/0.61)*10,[0 0 1],'FaceAlpha',0.4,'LineStyle','none') +plot((xbs/0.61)*10,(ybs/0.61)*10,'g*','MarkerSize',0.7,'MarkerEdgeColor',[0 1 0]) +kbs=boundary(x1bs,y1bs,0.9) % get boundaries for brainstem +p3=patch((x1bs(kbs)/0.61)*10,(y1bs(kbs)/0.61)*10,[0 1 0],'FaceAlpha',0.4,'LineStyle','none') +title('Location of MC, BC, BS recepient areas in SC ') +set(gca,'XTick',0:500:2500) +%set(gca,'YTickLabel',["0","0.5","1","1.5","2.0","2.5" +ylim([0 2800]) +xlim([0 2800]) +view([90 90]); +xlabel('Ventral<---->Dorsal (µm)') +ylabel('Lateral<---->Medial (µm)') +yticks(flip(mean(max(ymc,[],1))/0.61*10:-500:0)) +set(gca,'YTickLabel',flip([0:500:2712])) +[a p]=kmeans([x1mc,y1mc],1) % calculate centroid with kmeans 1 group for motor cortex +plot(p(1)/0.61*10,p(2)/0.61*10,'r*') %plot coordiantes of centroids +[a p]=kmeans([x1sc,y1sc],1) % calculate centroid with kmeans 1 group for Barrel cortex +plot(p(1)/0.61*10,p(2)/0.61*10,'b*') %plot coordiantes of centroids +[a p]=kmeans([x1bs,y1bs],1) % calculate centroid with kmeans 1 group for Brainstem +plot(p(1)/0.61*10,p(2)/0.61*10,'g*') %plot coordiantes of centroids +legend([p1 p2 p3],{'MC','BC','BS','Centroid MC','Centroid BC','Centroid Bs'},'Location','southeast') diff --git a/Jesus/3dreconstructionSC2.m b/Jesus/3dreconstructionSC2.m new file mode 100644 index 0000000..2f1e14a --- /dev/null +++ b/Jesus/3dreconstructionSC2.m @@ -0,0 +1,160 @@ +%% extract contours slices +%V=[0 1 0 ;0 0 0; 1 1 1 ] +close all +myfiles=dir('Z:\Berin\3D reconstruction inputs Cx_BS\*green.jpg'); + +for j=1:numel(myfiles); + +%T=imread('Z:\Berin\3D reconstruction inputs Cx_BS\Rostral0 clear outside green.jpg'); + T=imread(fullfile(['Z:\Berin\3D reconstruction inputs Cx_BS\',[myfiles(j).name]])); +T=rgb2gray(T); +T=255-T; +T=flip(T); +V=T<=252;%grey values on inverted jpeg file +%V=imresize(V,0.1); + +test1=[]; +for i=1:size(V,1); + for ii=1:size(V,2); + if V(i,ii)==0; + test1(i,ii)=0; + elseif V(i,ii)==1; + test1(i,ii)=200; + break + end + end +end + + +%V=[1 0 1 0 ;0 0 0 1; 1 1 1 1;0 1 0 1 ]; +%test=zeros(4,4); +test=[]; +for ii=1:size(V,2); + for i=1:size(V,1); + if V(i,ii)==0; + test(i,ii)=0; + elseif V(i,ii)==1; + test(i,ii)=200; + break + end + end +end + +test3=[]; + +for ii=flip(1:size(V,2)); + for i=flip(1:size(V,1)); + if V(i,ii)==0; + test3(i,ii)=0; + elseif V(i,ii)==1; + test3(i,ii)=200; + break + end + end +end + +test4=[]; + +for i=flip(1:size(V,1)); + for ii=flip(1:size(V,2)); + if V(i,ii)==0; + test4(i,ii)=0; + elseif V(i,ii)==1; + test4(i,ii)=200; + break + end + end +end +test2=test4;%+test3;%+test+test1; +test2(1,:)=0; +%figure +%imshow(T); +h=gca;h.Visible='on' +%figure +%imagesc(test2) +colormapJes=[1 1 1; 0 0 0; 0 0 0;0 0 0]; +colormap(colormapJes); axis ij +[x y]=find(test2>=1); +figure +plot(y/61,x/61,'k*','MarkerSize',1); axis ij +hold on + + +%change values of V for labeled cell area detection +V1=T<=225; +%V1=imresize(V1,0.1); +[x1,y1]=find(V1==1); +plot(y1/61,x1/61,'go','MarkerSize',3,'MarkerFaceColor',[0 1 0]); axis ij %pixel size is 0.61*factor of 10 of IMresize +k=boundary(x1,y1,0.8); +patch(y1(k)/61,x1(k)/61,[0 1 0],'FaceAlpha',0.5,'LineStyle','none') +hold on + +myfilesred=dir('Z:\Berin\3D reconstruction inputs Cx_BS\*red.jpg'); + +%T=imread('Z:\Berin\3D reconstruction inputs Cx_BS\Rostral0 clear outside red.jpg'); +T=imread(fullfile(['Z:\Berin\3D reconstruction inputs Cx_BS\',[myfilesred(j).name]])); +T=rgb2gray(T); +T=255-T; +T=flip(T); +V1=T<=205; +%V1=imresize(V1,0.1); +[x1,y1]=find(V1==1); +plot(y1/61,x1/61,'ro','MarkerSize',3,'MarkerFaceColor',[1 0 0]); axis ij %pixel size is 0.61*factor of 10 of IMresize +k=boundary(x1,y1,0.8); +patch(y1(k)/61,x1(k)/61,[1, 0 0],'FaceAlpha',0.5,'LineStyle','none'); +box off +hold off +%figure +%imshow(T) +%x3d1=x; y3d1=y; +%x13d1=x1; y13d1=y1; +x3d=[];y3d=[]; +x3d(1:size(x,1),j)=x +y3d(1:size(y,1),j)=y +x3d1(1:size(x1,1),j)=x1 +y3d1(1:size(y1,1),j)=y1 +end + +plot3((zeros(size(x3d(:,1),1),1)+0),flip(y3d(:,1)),flip(x3d(:,1)),'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +hold on +plot3((zeros(size(x3d(:,2),1),1)+50),flip(y3d(:,2)),flip(x3d(:,2)),'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,3),1),1)+100),flip(y3d(:,3)),flip(x3d(:,3)),'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,4),1),1)+150),flip(y3d(:,4)),flip(x3d(:,4)),'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,5),1),1)+200),flip(y3d(:,5)),flip(x3d(:,5)),'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,6),1),1)+250),flip(y3d(:,6)),flip(x3d(:,6)),'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,7),1),1)+300),flip(y3d(:,7)),flip(x3d(:,7)),'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,8),1),1)+350),flip(y3d(:,8)),flip(x3d(:,8)),'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,9),1),1)+400),flip(y3d(:,9)),flip(x3d(:,9)),'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +box off +axis ij +xlabel("x") +ylabel("y") + + +%% +figure +plot(NeuronLoc(1:291,3),NeuronLoc(1:291,4),'ro','MarkerFaceColor','r') +hold on +plot(NeuronLoc(292:end,3),NeuronLoc(292:end,4),'go','MarkerFaceColor','g') +%% +figure + +plot((xmc/0.61)*10,(ymc/0.61)*10,'r*','MarkerSize',0.7,'MarkerEdgeColor',[1 0 0]) +hold on +kmc=boundary(x1mc,y1mc,0.9) +p1=patch((x1mc(kmc)/0.61)*10,(y1mc(kmc)/0.61)*10,[1 0 0],'FaceAlpha',0.4,'LineStyle','none') +plot((xsc/0.61)*10,(ysc/0.61)*10,'b*','MarkerSize',0.7,'MarkerEdgeColor',[0 0 1]) +ksc=boundary(x1sc,y1sc,0.9) +p2=patch((x1sc(ksc)/0.61)*10,(y1sc(ksc)/0.61)*10,[0 0 1],'FaceAlpha',0.4,'LineStyle','none') +plot((xbs/0.61)*10,(ybs/0.61)*10,'g*','MarkerSize',0.7,'MarkerEdgeColor',[0 1 0]) +kbs=boundary(x1bs,y1bs,0.9) +p3=patch((x1bs(kbs)/0.61)*10,(y1bs(kbs)/0.61)*10,[0 1 0],'FaceAlpha',0.4,'LineStyle','none') +title('Location of MC, BC, BS recepient areas in SC ') +legend([p1 p2 p3],{'MC','BC','BS'},'Location','southeast') +set(gca,'XTick',0:500:2500) +%set(gca,'YTickLabel',["0","0.5","1","1.5","2.0","2.5" +ylim([0 2800]) +xlim([0 2800]) +view([90 90]); +xlabel('Ventral<---->Dorsal (µm)') +ylabel('Lateral<---->Medial (µm)') \ No newline at end of file diff --git a/Jesus/AxonMapCode1.m b/Jesus/AxonMapCode1.m new file mode 100644 index 0000000..83c9c87 --- /dev/null +++ b/Jesus/AxonMapCode1.m @@ -0,0 +1,64 @@ + +%first subplot +figure(1); +ax1=subplot(13,4,[1 2 3 5 6 7 9 10 11 13 14 15 17 18 19 21 22 23 25 26 27 29 30 31]) +contour(M1AxonMAP,'Fill','on','LevelStep',1) +view([90 90]) +colormap(jet(128)) +set(gca,'yTick',1:size(M1AxonMAP,1)) +set(gca,'yTicklabel',[0.1:0.1:1.3]) +set(gca,'xTick',1:size(M1AxonMAP,1)) +set(gca,'xTickLabel',rCaxonsMapNames) +set(gca,'yTick',1:13) +set(gca,'yTicklabel',[0.1:0.1:1.3]) +set(gca,'xTick',1:17) +set(gca,'xTickLabel',rCaxonsMapNames) +title("M1RC rostro-caudal distribution axon map per structure") +n=max(M1AxonMAP(:))-1 +n=n/5 +colorbar('Ticks',[0 1 1+n 1+2*n 1+3*n 1+4*n 1+5*n ],'TickLabels',{'-','+','+','++','+++','++++','+++++'}) +xlabel("Thalamic Nuclei") + +%second subplot +ax2=subplot(13,4,[4 8 12 16 20 24 28 32]) +bar(mean(M1AxonMAP,1)) +view([90 90]) +set(gca,'xTick',1:17) +set(gca,'xTickLabel',rCaxonsMapNames) +n1=max(mean(M1AxonMAP,1)) +n1=n1/5 +set(gca,'yTick',[0 1 1+n1 1+2*n1 1+3*n1 1+4*n1 1+5*n1]) +set(gca,'yTicklabel',pluses) +title("M1RC Mean axon map per structure") +linkaxes([ax1, ax2],'x') + +%third subplot +ax3=subplot(13,4,[37 38 39 41 42 43 45 46 47 49 50 51]) +contour(M1AxonMAPBS,'Fill','on','LevelStep',1) +view([90 90]) +set(gca,'xTick',1:7) +set(gca,'xTickLabel',rCaxonsMapBSNames) +set(gca,'yTick',1:size(M1AxonMAPBS,1)) +set(gca,'yTicklabel',[0.1:0.1:(size(M1AxonMAPBS,1)/10)]) +n3=max(M1AxonMAPBS(:))-1 +n3=n3/5 +colorbar('Ticks',[0 1 1+n3 1+2*n3 1+3*n3 1+4*n3 1+5*n3 ],'TickLabels',{'-','+','+','++','+++','++++','+++++'}) +xlabel("BrainStem Nuclei") +ylabel("Rostro <-------> Caudal") +%4th figure +ax4=subplot(13,4,[40 44 48 52]) +bar(mean(M1AxonMAPBS,1)) +view([90 90]) +set(gca,'xTick',1:7) +set(gca,'xTickLabel',rCaxonsMapBSNames) +n4=max(mean(M1AxonMAPBS,1)) +n4=n4/5 +set(gca,'yTick',[0 1 1+n4 1+2*n4 1+3*n4 1+4*n4 1+5*n4]) +set(gca,'yTicklabel',pluses) +ylabel("Density") +linkaxes([ax3,ax4],'x') +saveas(figure(1),'\\lsdf02.urz.uni-heidelberg.de\sd19B001\Berin\Analysis\Matlab\RecipientApproach\AxonMaps\M1\All\M1ContourandMEanAllstructures.fig') + + + + diff --git a/Jesus/BeforeandAfterJesusPlots2.m b/Jesus/BeforeandAfterJesusPlots2.m index 6202ed1..71db08c 100644 --- a/Jesus/BeforeandAfterJesusPlots2.m +++ b/Jesus/BeforeandAfterJesusPlots2.m @@ -88,7 +88,7 @@ allControlOn=RspControlOn(:); allL200On=RspL200On(:); allControlOff=RspControlOff(:);allL200Off=RspL200Off(:); % On scatter plot and Cumulative distribution -figure (4); scatterhist(allControlOn,allL200On,'Direction','out','NBins',50); +figure(4); scatterhist(allControlOn,allL200On,'Direction','out','NBins',50); saveas(figure(4),[pwd '/New figures Jesus/ControlandL200/scatterhist On response Control and L200.emf']); saveas(figure(4),[pwd '/New figures Jesus/ControlandL200/scatterhist On response Control and L200.pdf']); figure (5); cdfplot(allControlOn)% off response scatter plot and Cumulative distribution @@ -494,7 +494,7 @@ %% Contours %Off response XValidControlOff=allControlOff(~isnan(allControlOff)); -YValidL1Off=allL1Off(~isnan(allL1Off)); +YValidL200Off=allL200Off(~isnan(allL200Off)); allValidOff=nan(4000,2); allValidOff(1:size(XValidControlOff),2)=XValidControlOff; allValidOff(1:size(YValidL200Off),1)=YValidL200Off; diff --git a/Jesus/BinningVectors.mlx b/Jesus/BinningVectors.mlx new file mode 100644 index 0000000..45e3a8b Binary files /dev/null and b/Jesus/BinningVectors.mlx differ diff --git a/Jesus/ComparisonsTRNS1VPM.m b/Jesus/ComparisonsTRNS1VPM.m new file mode 100644 index 0000000..5f1208d --- /dev/null +++ b/Jesus/ComparisonsTRNS1VPM.m @@ -0,0 +1,271 @@ +%% control +ClustersControlOnsetVPM1=ClustersControlOnsetVPM(ClustersControlOnsetVPM>0.002 & ClustersControlOnsetVPM>0.05); + +AllControlOnTRN=(ClustersControlOnsetTRN(:)*1000)+3; +AllControlOnVPM=(ClustersControlOnsetVPM(:)*1000)+3; +AllControlOnS1=(ClustersControlOnsetS1(:)*1000)+3; +%on an off +figure; +plot([-0.2:0.001:1.2-0.001],zscore(hist(AllControlOnTRN,1400))) +hold on +plot([-0.2:0.001:1.2-0.001],zscore(hist(AllControlOnVPM,1400))) +plot([-0.2:0.001:1.2-0.001],zscore(hist(AllControlOnS1,1400))) +legend("TRN","VPM","S1"); xlabel ("Time in ms"); ylabel("Z-Score"); +title("Circuit whisker Response Control"); +%%onset +figure; +plot([-30:0.5:39.5],zscore(hist(AllControlOnTRN(AllControlOnTRN<40 & AllControlOnTRN>-30),140))); +hold on; +plot([-30:0.5:39.5],zscore(hist(AllControlOnVPM(AllControlOnVPM<40 & AllControlOnVPM>-30),140))); +plot([-30:0.5:39.5],zscore(hist(AllControlOnS1(AllControlOnS1<40 & AllControlOnS1>-30),140))); +title("Circuit Whisker Onset Response Control"); +legend("TRN","VPM","S1"); xlabel ("Time in ms"); ylabel("Z-Score"); + +%figure all +figure; +histogram(AllControlOnTRN(AllControlOnTRN<80 & AllControlOnTRN>-5),85,'Normalization','probability','DisplayStyle','stairs','LineWidth',2);hold on +histogram(AllControlOnVPM(AllControlOnVPM<80 & AllControlOnVPM>-5),85,'Normalization','probability','DisplayStyle','stairs','LineWidth',2) +histogram(AllControlOnS1(AllControlOnS1<80 & AllControlOnS1>-5),85,'Normalization','probability','DisplayStyle','stairs','LineWidth',2) +title("Control");xlabel("time in ms");ylabel("probability");legend("TRN","VPM","S1") + +figure; %on +histogram(AllControlOnTRN(AllControlOnTRN<40 & AllControlOnTRN>-5),90,'Normalization','probability','DisplayStyle','stairs','LineWidth',2); +hold on; +histogram(AllControlOnVPM(AllControlOnVPM<40 & AllControlOnVPM>-5),90,'Normalization','probability','DisplayStyle','stairs','LineWidth',2); +histogram(AllControlOnS1(AllControlOnS1<40 & AllControlOnS1>-10),90,'Normalization','probability','DisplayStyle','stairs','LineWidth',2); +legend("TRN","VPM","S1"); xlabel ("Time in ms"); ylabel("Probability") +title("Control On response");xlim([-5 40]); + +figure; %Off +histogram(AllControlOnTRN(AllControlOnTRN<90 & AllControlOnTRN>45),90,'Normalization','probability','DisplayStyle','stairs','LineWidth',2); +hold on; +histogram(AllControlOnVPM(AllControlOnVPM<90 & AllControlOnVPM>45),90,'Normalization','probability','DisplayStyle','stairs','LineWidth',2); +histogram(AllControlOnS1(AllControlOnS1<90 & AllControlOnS1>45),90,'Normalization','probability','DisplayStyle','stairs','LineWidth',2); +legend("TRN","VPM","S1"); xlabel ("Time in ms"); ylabel("Probability") +title("Control Off response"); + +%%histogram(AllControlOnS1,400))) + +%% L200 + +AllL200TRN=(ClustersL200OnsetTRN(:)*1000)+3; +AllL200VPM=(ClustersL200OnsetVPM(:)*1000)+3; +AllL200S1=(ClustersL200OnsetS1(:)*1000)+3; +%%on an off +figure; +plot([-0.2:0.001:1.2-0.001],zscore(hist(AllL200TRN,1400))) +hold on +plot([-0.2:0.001:1.2-0.001],zscore(hist(AllL200VPM,1400))) +plot([-0.2:0.001:1.2-0.001],zscore(hist(AllL200S1,1400))) +legend("TRN","VPM","S1"); xlabel ("Time in ms"); ylabel("Z-Score"); +title("Circuit Response AfterInduction"); +%%onset L200 +figure; +plot([-100:1:49],zscore(hist(AllL200TRN(AllL200TRN<50 & AllL200TRN>-100),150))); +hold on; +plot([-100:1:49],zscore(hist(AllL200VPM(AllL200VPM<50 & AllL200VPM>-100),150))); +plot([-100:1:49],zscore(hist(AllL200S1(AllL200S1<50 & AllL200S1>-100),150))); +title("Circuit Whisker Onset Response + Laser Delay 200ms"); +legend("TRN","VPM","S1"); xlabel ("Time in ms"); ylabel("Z-Score"); +%figure all +figure; +histogram(AllL200TRN(AllL200TRN<80 & AllL200TRN>-5),85,'Normalization','probability','DisplayStyle','stairs','LineWidth',2);hold on +histogram(AllL200VPM(AllL200VPM<80 & AllL200VPM>-5),85,'Normalization','probability','DisplayStyle','stairs','LineWidth',2) +histogram(AllL200S1(AllL200S1<80 & AllL200S1>-5),85,'Normalization','probability','DisplayStyle','stairs','LineWidth',2) +title("After Induction");xlabel("time in ms");ylabel("probability");legend("TRN","VPM","S1") + +figure; %On +histogram(AllL200TRN(AllL200TRN<40 & AllL200TRN>-5),90,'Normalization','probability','DisplayStyle','stairs','LineWidth',2); +hold on; +histogram(AllL200VPM(AllL200VPM<40 & AllL200VPM>-5),90,'Normalization','probability','DisplayStyle','stairs','LineWidth',2); +histogram(AllL200S1(AllL200S1<40 & AllL200S1>-5),90,'Normalization','probability','DisplayStyle','stairs','LineWidth',2); +legend("TRN","VPM","S1"); xlabel ("Time in ms"); ylabel("Probability") +title("Circuit Whisker Onset Response After-Induction");xlim([-5 40]); + +figure; %Off +histogram(AllL200TRN(AllL200TRN<80 & AllL200TRN>45),90,'Normalization','probability','DisplayStyle','stairs','LineWidth',2); +hold on; +histogram(AllL200VPM(AllL200VPM<80 & AllL200VPM>45),90,'Normalization','probability','DisplayStyle','stairs','LineWidth',2); +histogram(AllL200S1(AllL200S1<80 & AllL200S1>45),90,'Normalization','probability','DisplayStyle','stairs','LineWidth',2); +legend("TRN","VPM","S1"); xlabel ("Time in ms"); ylabel("Probability") +title("Circuit Whisker Offset Response + Laser Delay 200ms")%;xlim([30 150]); +%% ONL1 +%%on an off +AllL1TRN=(ClustersL1OnsetTRN(:)*1000)+3; +AllL1VPM=(ClustersL1OnsetVPM(:)*1000)+3; +AllL1S1=(ClustersL1OnsetS1(:)*1000)+3; +figure; +plot([-0.25:0.001:0.149],zscore(hist(AllL1TRN,400))) +hold on +plot([-0.25:0.001:0.149],zscore(hist(AllL1VPM,400))) +plot([-0.25:0.001:0.149],zscore(hist(AllL1S1,400))) +legend("TRN","VPM","S1") +title("Circuit whisker Response + Laser Delay 1ms"); + +%plot onset response +figure; +plot([-100:1:49],zscore(hist(AllL1TRN(AllL1TRN<50 & AllL1TRN>-100),150))); +hold on; +plot([-100:1:49],zscore(hist(AllL1VPM(AllL1VPM<50 & AllL1VPM>-100),150))); +plot([-100:1:49],zscore(hist(AllL1S1(AllL1S1<50 & AllL1S1>-100),150))); +title("Circuit Onset Response"); +legend("TRN","VPM","S1"); xlabel ("Time in ms"); ylabel("Z-Score"); +title("Circuit Whisker Onset Response + Laser Delay 1ms"); + +figure; %On +histogram(AllL1TRN(AllL1TRN<50 & AllL1TRN>-80),150,'Normalization','probability','DisplayStyle','stairs','LineWidth',2); +hold on; +histogram(AllL1VPM(AllL1VPM<50 & AllL1VPM>-80),150,'Normalization','probability','DisplayStyle','stairs','LineWidth',2); +histogram(AllL1S1(AllL1S1<50 & AllL1S1>-80),150,'Normalization','probability','DisplayStyle','stairs','LineWidth',2); +legend("TRN","VPM","S1"); xlabel ("Time in ms"); ylabel("Probability") +title("Circuit Whisker Onset Response + Laser Delay -1ms");xlim([-70 50]); + +figure; %Off +histogram(AllL1TRN(AllL1TRN<150 & AllL1TRN>30),150,'Normalization','probability','DisplayStyle','stairs','LineWidth',2); +hold on; +histogram(AllL1VPM(AllL1VPM<150 & AllL1VPM>30),150,'Normalization','probability','DisplayStyle','stairs','LineWidth',2); +histogram(AllL1S1(AllL1S1<150 & AllL1S1>30),150,'Normalization','probability','DisplayStyle','stairs','LineWidth',2); +legend("TRN","VPM","S1"); xlabel ("Time in ms"); ylabel("Probability") +title("Circuit Whisker Offset Response + Laser Delay -1ms");xlim([30 150]); +%% boxplot + +circuitbox=NaN(200000,3); +circuitbox(1:size(AllControlOnTRN(AllControlOnTRN<20 & AllControlOnTRN>3),1),1)= AllControlOnTRN(AllControlOnTRN<20 & AllControlOnTRN>3); +circuitbox(1:size(AllControlOnVPM(AllControlOnVPM<20 & AllControlOnVPM>3),1),2)=AllControlOnVPM(AllControlOnVPM<20 & AllControlOnVPM>3); +circuitbox(1:size(AllControlOnS1(AllControlOnS1<20 & AllControlOnS1>3),1),3)=AllControlOnS1(AllControlOnS1<20 & AllControlOnS1>3); + +a= AllControlOnTRN(AllControlOnTRN<20 & AllControlOnTRN>3);%TRN +b= AllControlOnVPM(AllControlOnVPM<20 & AllControlOnVPM>3);%VPM +c= AllControlOnS1(AllControlOnS1<20 & AllControlOnS1>3);%S1 +Onmarks=["TRN","VPM","S1"]; +figure; subplot(1,2,1); +cdfplot(a); hold on; cdfplot(b);cdfplot(c); ylabel("probability"); +legend("TRN","VPM","S1");subplot(1,2,2); +bar(mode(c)) +hold on +bar(mode(a)) +bar(mode(b)) +legend("S1","TRN","VPM"); title("most frequent value (Mode)");ylabel("time(ms)"); +%% TRN VPM and S1 IMAGESC diff and Zsscore +%diff imagesc S1 +diffS1=hist(ClustersL200OnsetS1,400)-hist(ClustersControlOnsetS1,400); +diffL1S1=hist(ClustersL1OnsetS1,400)-hist(ClustersControlOnsetS1,400); +figure(10); +Ontimes=[-250:1:149]; +yS1=1:size(diffS1,2); +imagesc(yS1,Ontimes,diffS1);colormap(jet); %L200-control +colorbar; ax=gca; ax.XAxisLocation='top'; clim=caxis; caxis([-30 30]); +title("S1 diff Whiskers - whiskers+Laser delay -200ms");xlabel("Clusters");ylabel("time in ms") +figure(20); imagesc(yS1,Ontimes,diffL1S1);colormap(jet);%L1-control +colorbar; ax=gca; ax.XAxisLocation='top'; clim=caxis; caxis([-10 10]); +title("S1 diff Whiskers - whiskers+Laser delay -1ms");xlabel("Clusters");ylabel("time in ms") +%TRN diff imagesc +diffTRN=hist(ClustersL200OnsetTRN,400)-hist(ClustersControlOnsetTRN,400); +diffL1TRN=hist(ClustersL1OnsetTRN,400)-hist(ClustersControlOnsetTRN,400); +figure(11); +Ontimes=[-250:1:149]; +yTRN=1:size(diffTRN,2); +imagesc(yTRN,Ontimes,diffTRN);colormap(jet); %L200-control +colorbar; ax=gca; ax.XAxisLocation='top'; clim=caxis; caxis([-10 10]); +title("TRN diff Whiskers - whiskers+Laser delay -200ms");xlabel("Clusters");ylabel("time in ms") +figure(21);imagesc(yTRN,Ontimes,diffL1TRN);colormap(jet); +colorbar; ax=gca; ax.XAxisLocation='top'; clim=caxis; caxis([-35 35]); +title("TRN diff Whiskers - whiskers+Laser delay -1ms");xlabel("Clusters");ylabel("time in ms") +%VPM diff imagesc +diffVPM=hist(ClustersL200OnsetVPM,400)-hist(ClustersControlOnsetVPM,400); +diffL1VPM=hist(ClustersL1OnsetVPM,400)-hist(ClustersControlOnsetVPM,400); +figure(12); %L200-control +Ontimes=[-250:1:149]; +yVPM=1:size(diffVPM,2); +imagesc(yVPM,Ontimes,diffVPM);colormap(jet); +colorbar; ax=gca; ax.XAxisLocation='top'; clim=caxis; caxis([-10 10]); +title("VPM diff Whiskers - whiskers+Laser delay -200ms");xlabel("Clusters");ylabel("time in ms") +figure(22);%L1-Control +imagesc(yVPM,Ontimes,diffL1VPM);colormap(jet); +colorbar; ax=gca; ax.XAxisLocation='top'; clim=caxis; caxis([-10 10]); +title("VPM diff Whiskers - whiskers+Laser delay -1ms");xlabel("Clusters");ylabel("time in ms") + +%imagesc psth per clusters on response VPM +CircuitOnVPM = NaN(2000, size(ClustersControlOnsetVPM,2)); +for i=1:size(ClustersControlOnsetVPM,2) + value = ClustersControlOnsetVPM(:,i)<0.050 & ClustersControlOnsetVPM(:,i)>-0.070; + spike=(ClustersControlOnsetVPM(value,i).*1000)+3; + CircuitOnVPM(1:size(spike,1),i)=spike; +end +figure; +Ontimes=[-70:1:49]; +CircuitPsthOnVPM=hist(CircuitOnVPM,130); +yVPM=1:size(CircuitPsthOnVPM,2); +imagesc(yVPM,Ontimes,zscore(CircuitPsthOnVPM));colormap(jet); +colorbar; ax=gca; ax.XAxisLocation='top'; clim=caxis; caxis([-5 5]); +title("Control VPM");xlabel("Clusters");ylabel("time in ms") + +%imagesc psth per clusters on response TRN +CircuitOnTRN = NaN(2000, size(ClustersControlOnsetTRN,2)); +for i=1:size(ClustersControlOnsetTRN,2) + value = ClustersControlOnsetTRN(:,i)<0.050 & ClustersControlOnsetTRN(:,i)>-0.070; + spike=(ClustersControlOnsetTRN(value,i).*1000)+3; + CircuitOnTRN(1:size(spike,1),i)=spike; +end +figure; +Ontimes=[-70:1:49]; +CircuitPsthOnTRN=hist(CircuitOnTRN,130); +yTRN=1:size(CircuitPsthOnTRN,2); +imagesc(yTRN,Ontimes,zscore(CircuitPsthOnTRN));colormap(jet);colorbar; ax=gca; ax.XAxisLocation='top'; +clim=caxis; caxis([-4 4]); title("Control TRN");xlabel("Clusters");ylabel("time in ms") +%S1 +CircuitOnS1 = NaN(2000, size(ClustersControlOnsetS1,2)); +for i=1:size(ClustersControlOnsetS1,2) + value = ClustersControlOnsetS1(:,i)<0.050 & ClustersControlOnsetS1(:,i)>-0.070; + spikeS1=(ClustersControlOnsetS1(value,i).*1000)+3; + CircuitOnS1(1:size(spikeS1,1),i)=spikeS1; +end +figure; +Ontimes=[-70:1:49]; +CircuitPsthOnS1=hist(CircuitOnS1,130); +yS1=1:size(CircuitPsthOnS1,2); +imagesc(yS1,Ontimes,zscore(CircuitPsthOnS1));colormap(jet);colorbar; ax=gca; ax.XAxisLocation='top'; +clim=caxis; caxis([-5 5]); title("Control S1");xlabel("Clusters");ylabel("time in ms") + +%% TRN VPM and S1 IMAGESC L200 Zsscore +%imagesc psth per clusters on response VPM +CircuitOnL200VPM = NaN(20000, size(ClustersL200OnsetVPM,2)); +for i=1:size(ClustersL200OnsetVPM,2) + value = ClustersL200OnsetVPM(:,i)<0.050 & ClustersL200OnsetVPM(:,i)>-0.070; + spike=(ClustersL200OnsetVPM(value,i).*1000)+3; + CircuitOnL200VPM(1:size(spike,1),i)=spike; +end +figure; +Ontimes=[-70:1:49]; +CircuitPsthOnL200VPM=hist(CircuitOnL200VPM,130); +yVPM=1:size(CircuitPsthOnL200VPM,2); +imagesc(yVPM,Ontimes,zscore(CircuitPsthOnL200VPM)); +colormap(jet);colorbar; ax=gca; ax.XAxisLocation='top'; clim=caxis; caxis([-5 5]); +title("Whiskers + Laser delay 200ms VPM");xlabel("Clusters");ylabel("time in ms") + +%imagesc psth per clusters on response TRN +CircuitOnL200TRN = NaN(20000, size(ClustersL200OnsetTRN,2)); +for i=1:size(ClustersL200OnsetTRN,2) + value = ClustersL200OnsetTRN(:,i)<0.050 & ClustersL200OnsetTRN(:,i)>-0.070; + spikeL200TRN=(ClustersL200OnsetTRN(value,i).*1000)+3; + CircuitOnL200TRN(1:size(spikeL200TRN,1),i)=spikeL200TRN; +end +figure; +Ontimes=[-70:1:49]; +CircuitPsthOnL200TRN=hist(CircuitOnL200TRN,130); +yTRN=1:size(CircuitPsthOnL200TRN,2); +imagesc(yTRN,Ontimes,zscore(CircuitPsthOnL200TRN));colormap(jet);colorbar; ax=gca; ax.XAxisLocation='top'; +clim=caxis; caxis([-5 5]); +%S1 +CircuitOnL200S1 = NaN(2000, size(ClustersL200OnsetS1,2)); +for i=1:size(ClustersL200OnsetS1,2) + value = ClustersL200OnsetS1(:,i)<0.050 & ClustersL200OnsetS1(:,i)>-0.070; + spikeL200S1=(ClustersL200OnsetS1(value,i).*1000)+3; + CircuitOnL200S1(1:size(spikeL200S1,1),i)=spikeL200S1; +end +figure; +Ontimes=[-70:1:49]; +CircuitPsthOnL200S1=hist(CircuitOnL200S1,130); +yS1=1:size(CircuitPsthOnL200S1,2); +imagesc(yS1,Ontimes,zscore(CircuitPsthOnL200S1));colormap(jet);colorbar; ax=gca; ax.XAxisLocation='top'; +clim=caxis; caxis([-5 5]); \ No newline at end of file diff --git a/Jesus/DE_Jittering.m b/Jesus/DE_Jittering.m index 3e22cc1..d69d275 100644 --- a/Jesus/DE_Jittering.m +++ b/Jesus/DE_Jittering.m @@ -1,49 +1,77 @@ -% 30.08.19 Jittering analysis by using the Data Explorer. +% 30.08.19 Jittering analysis by using the Data Explorer. clearvars -%% Load the data +%% Selecting experiment % Choosing the working directory dataDir = uigetdir('E:\Data\VPM\Jittering\Silicon Probes\',... 'Choose a working directory'); if dataDir == 0 return end +%% Loading data % Creating the figure directory -figureDir = fullfile(dataDir,'Figures\'); -if ~mkdir(figureDir) - fprintf(1,'There was an issue with the figure folder...\n'); +FigureDir = fullfile(dataDir,'Figures\'); +if ~exist(FigureDir, "dir") + if ~mkdir(FigureDir) + error("Could not create figure directory!\n") + end +end +%WARNING! Protocol getter is not fully stable! +if isempty(dir(fullfile(dataDir, '*analysis.mat'))) + pgObj = ProtocolGetter(dataDir); + pgObj.getConditionSignals; + pgObj.getSignalEdges; + pgObj.getFrequencyEdges; + pgObj.pairStimulus; + pgObj.saveConditions; end % Loading the necessary files if ~loadTriggerData(dataDir) fprintf(1,'Not possible to load all the necessary variables\n') return end - +fnOpts = {'UniformOutput', false}; +axOpts = {'Box','off','Color','none'}; +ofgOpts = {'new', 'visible'}; +spk_file_vars = {'spike_times','gclID','Nt','Ns','goods'}; +owFlag = false; +figOpts = {'Visible','on'}; +if ~strcmp( computer, 'PCWIN64' ) + figOpts(2) = {'off'}; + ofgOpts(2) = {'invisible'}; +end %% Constructing the helper 'global' variables -% Number of total samples -Ns = min(structfun(@numel,Triggers)); -% Total duration of the recording -Nt = Ns/fs; -% Useless clusters (labeled as noise or they have very low firing rate) -badsIdx = cellfun(@(x) x==3,sortedData(:,3)); -bads = find(badsIdx); -totSpkCount = cellfun(@numel,sortedData(:,2)); -clusterSpikeRate = totSpkCount/Nt; -silentUnits = clusterSpikeRate < 0.1; -bads = union(bads,find(silentUnits)); -goods = setdiff(1:size(sortedData,1),bads); -badsIdx = badsIdx | silentUnits; -if ~any(ismember(clInfo.Properties.VariableNames,'ActiveUnit')) - clInfo = addvars(clInfo,~badsIdx,'After','id',... - 'NewVariableNames','ActiveUnit'); -end -gclID = sortedData(goods,1); -badsIdx = StepWaveform.subs2idx(bads,size(sortedData,1)); -% Logical spike trace for the first good cluster -spkLog = StepWaveform.subs2idx(round(sortedData{goods(1),2}*fs),Ns); -% Subscript column vectors for the rest good clusters -spkSubs = cellfun(@(x) round(x.*fs),sortedData(goods(2:end),2),... - 'UniformOutput',false); -% Number of good clusters + +spkPttrn = "%s_Spike_Times.mat"; +spk_path = fullfile(dataDir, sprintf(spkPttrn, expName)); +if ~exist(spk_path, "file") + % Number of total samples + Ns = structfun(@numel,Triggers); Ns = min(Ns(Ns>1)); + % Total duration of the recording + Nt = Ns/fs; + % Useless clusters (labeled as noise or they have very low firing rate) + badsIdx = cellfun(@(x) x==3, sortedData(:,3) ); + bads = find(badsIdx); + totSpkCount = cellfun( @numel, sortedData(:,2) ); + clusterSpikeRate = totSpkCount/Nt; + silentUnits = clusterSpikeRate < 0.1; + bads = union(bads,find(silentUnits)); + goods = setdiff(1:size(sortedData,1),bads); + badsIdx = badsIdx | silentUnits; + if ~any(ismember(clInfo.Properties.VariableNames,'ActiveUnit')) + clInfo = addvars(clInfo,~badsIdx,'After',1,... + 'NewVariableNames','ActiveUnit'); + writeClusterInfo(clInfo, fullfile(dataDir, 'cluster_info.tsv'), 1); + end + gclID = sortedData(goods,1); + badsIdx = StepWaveform.subs2idx(bads,size(sortedData,1)); + spike_times = sortedData(~badsIdx, 2); + save(spk_path, spk_file_vars{:}) +else + % Subscript column vectors for the rest good clusters + load(spk_path, spk_file_vars{:}) +end +spkSubs = cellfun(@(x) round(x.*fs),spike_times, fnOpts{:}); +% Number of good clusters Ncl = numel(goods); % Redefining the stimulus signals from the low amplitude to logical values whStim = {'piezo','whisker','mech','audio'}; @@ -72,111 +100,228 @@ continuousSignals(continuousNameSub == 0) = []; continuousNameSub(continuousNameSub == 0) = []; trigNames = trigNames(continuousNameSub); + %% Inter-spike intervals isiFile = fullfile(dataDir,[expName,'_ISIvars.mat']); if ~exist(isiFile,'file') spkSubs2 = cellfun(@(x) round(x.*fs), sortedData(goods,2),... - 'UniformOutput', false); + fnOpts{:}); ISIVals = cellfun(@(x) [x(1)/fs; diff(x)/fs], spkSubs2,... - 'UniformOutput', 0); + fnOpts{:}); NnzvPcl = cellfun(@numel,ISIVals); Nnzv = sum(NnzvPcl); rows = cell2mat(arrayfun(@(x,y) repmat(x,y,1), (1:Ncl)', NnzvPcl,... - 'UniformOutput', 0)); + fnOpts{:})); cols = cell2mat(spkSubs2); vals = cell2mat(ISIVals); - ISIspar = sparse(rows, cols, vals); + try + ISIspar = sparse(rows, cols, vals); + catch + fprintf(1, 'Not possible to create such a big array') + end else - load(isiFile,'ISIspar') + % load(isiFile,'ISIspar') end % ISIsignal = zeros(Ncl,Ns,'single'); % for ccl = 1:Ncl % ISIsignal(ccl,spkSubs2{ccl}) = ISIVals{ccl}; % end + %% User controlling variables -% Time lapse, bin size, and spontaneous and response windows -promptStrings = {'Viewing window (time lapse) [s]:','Response window [s]',... - 'Bin size [s]:'}; -defInputs = {'-0.1, 0.1', '0.002, 0.05', '0.001'}; -answ = inputdlg(promptStrings,'Inputs', [1, 30],defInputs); -if isempty(answ) - fprintf(1,'Cancelling...\n') - return -else - timeLapse = str2num(answ{1}); %#ok<*ST2NM> - if numel(timeLapse) ~= 2 - timeLapse = str2num(inputdlg('Please provide the time window [s]:',... - 'Time window',[1, 30], '-0.1, 0.1')); - if isnan(timeLapse) || isempty(timeLapse) - fprintf(1,'Cancelling...') - return +% Parameter configuration (pc) file name (FN), file path (FP) and variables +% to save (V2S) +pcPttrn = "%s_ParameterConfiguration.mat"; +pcFN = sprintf(pcPttrn, expName); pcFP = fullfile(dataDir, pcFN); +pcV2S = {'configStructure', 'confKeys'}; pcSub = []; pcFlag = false; +if exist(pcFP, 'file') + pcFlag = true; + load(pcFP, pcV2S{:}); + pcSub = listdlg("ListString", join(confKeys,2), ... + "PromptString", ... + "Viewing Response Spontaneous Trigger "+ ... + "Conditions On/Off BinSize [ms]", ... + "name", "Configuration selection", ... + "ListSize", [700, size(confKeys,1)*25], ... + "CancelString", "New"); +end + +if isempty(pcSub) + % If user chose to create a new parameter configuration set or the file + % doesn't exist + if ~pcFlag + % File doesn't exist. Create it. + configStructure = []; confKeys = []; + else + pcV2S = [pcV2S(:)', {'-append'}]; + end + %% Select Time lapse, bin size, and spontaneous and response windows + promptStrings = {'Viewing window (time lapse) [s]:','Response window [s]',... + 'Bin size [s]:'}; + defInputs = {'-0.1, 0.1', '0.002, 0.05', '0.001'}; + answ = inputdlg(promptStrings,'Inputs', [1, 30],defInputs); + if isempty(answ) + fprintf(1,'Cancelling...\n') + return + else + timeLapse = str2num(answ{1}); %#ok<*ST2NM> + if numel(timeLapse) ~= 2 + timeLapse = str2num(inputdlg('Please provide the time window [s]:',... + 'Time window',[1, 30], '-0.1, 0.1')); + if isnan(timeLapse) || isempty(timeLapse) + fprintf(1,'Cancelling...') + return + end end + responseWindow = str2num(answ{2}); + binSz = str2double(answ(3)); end - responseWindow = str2num(answ{2}); - binSz = str2double(answ(3)); -end -fprintf(1,'Time window: %.2f - %.2f ms\n',timeLapse(1)*1e3, timeLapse(2)*1e3) -fprintf(1,'Response window: %.2f - %.2f ms\n',responseWindow(1)*1e3, responseWindow(2)*1e3) -fprintf(1,'Bin size: %.3f ms\n', binSz*1e3) -sponAns = questdlg('Mirror the spontaneous window?','Spontaneous window',... - 'Yes','No','Yes'); -spontaneousWindow = -flip(responseWindow); -if strcmpi(sponAns,'No') - spontPrompt = "Time before the trigger in [s] (e.g. -0.8, -0.6 s)"; - sponDef = string(sprintf('%.3f, %.3f',spontaneousWindow(1),... - spontaneousWindow(2))); - sponStr = inputdlg(spontPrompt, 'Inputs',[1,30],sponDef); - if ~isempty(sponStr) - spontAux = str2num(sponStr{1}); - if length(spontAux) ~= 2 || spontAux(1) > spontAux(2) || ... - spontAux(1) < timeLapse(1) - fprintf(1, 'The given input was not valid.\n') - fprintf(1, 'Keeping the mirror version!\n') - else - spontaneousWindow = spontAux; + fprintf(1,'Time window: %.2f - %.2f ms\n',timeLapse*1e3) + fprintf(1,'Response window: %.2f - %.2f ms\n',responseWindow*1e3) + fprintf(1,'Bin size: %.3f ms\n', binSz*1e3) + sponAns = questdlg('Mirror the spontaneous window?','Spontaneous window',... + 'Yes','No','Yes'); + spontaneousWindow = -flip(responseWindow); + if strcmpi(sponAns,'No') + spontPrompt = "Time before the trigger in [s] (e.g. -0.8, -0.6 s)"; + sponDef = string(sprintf('%.3f, %.3f',spontaneousWindow(1),... + spontaneousWindow(2))); + sponStr = inputdlg(spontPrompt, 'Inputs',[1,30],sponDef); + if ~isempty(sponStr) + spontAux = str2num(sponStr{1}); + if length(spontAux) ~= 2 || spontAux(1) > spontAux(2) || ... + spontAux(1) < timeLapse(1) + fprintf(1, 'The given input was not valid.\n') + fprintf(1, 'Keeping the mirror version!\n') + else + spontaneousWindow = spontAux; + end end end + fprintf(1,'Spontaneous window: %.2f to %.2f ms before the trigger\n',... + spontaneousWindow(1)*1e3, spontaneousWindow(2)*1e3) + %% Select a condition to build the stack + condNames = arrayfun(@(x) string(x.name),Conditions); + condGuess = contains(condNames, ["whiskerall";"puffall"], ... + 'IgnoreCase', true); + % Choose the conditions to create the stack upon + [chCond, iOk] = listdlg('ListString',condNames,'SelectionMode','single',... + 'PromptString',... + 'Choose the condition which has all whisker triggers: (one condition)',... + 'InitialValue', find(condGuess,1,"first"), 'ListSize', ... + [350, numel(condNames)*16]); + if ~iOk + fprintf(1,'Cancelling...\n') + return + end + %% Select the onset or the offset of a trigger + fprintf(1,'Condition ''%s''\n', Conditions(chCond).name) + onOffStr = questdlg('Trigger on the onset or on the offset?','Onset/Offset',... + 'on','off','Cancel','on'); + if strcmpi(onOffStr,'Cancel') + fprintf(1,'Cancelling...\n') + return + end + %% Considered conditions selection + % Choose the conditions to look at + auxSubs = setdiff(1:numel(condNames), chCond); + ccondNames = condNames(auxSubs); + [cchCond, iOk] = listdlg('ListString',ccondNames, ... + 'SelectionMode', 'multiple', 'PromptString',... + 'Choose the condition(s) to look at (including whiskers):',... + 'ListSize', [350, numel(condNames)*16]); + if ~iOk + fprintf(1,'Cancelling...\n') + return + end + consCondSubs = auxSubs(cchCond); + consCondNames = condNames(consCondSubs); + %% Keys creation for parameter configuration comparison + CC_key = ''; + for cc = 1:length(consCondNames)-1 + CC_key = [CC_key, sprintf('%s-', consCondNames{cc})]; %#ok + end + CC_key = [CC_key, sprintf('%s', consCondNames{end})]; + C_key = condNames{chCond}; + SW_key = sprintf('SW%.2f-%.2f', spontaneousWindow*1e3); + RW_key = sprintf('RW%.2f-%.2f', responseWindow*1e3); + O_key = sprintf('%s', onOffStr); + currentMapKey = {RW_key, SW_key, C_key, CC_key, O_key}; + VW_key = sprintf("VW%.2f-%.2f", timeLapse*1e3); + BZ_key = sprintf("BZ%.2f",binSz*1e3); + %% Appending the new pc to the array and saving + configStructure = [configStructure, struct('Experiment', ... + fullfile(dataDir,expName), 'Viewing_window_s', timeLapse, ... + 'Response_window_s', responseWindow, ... + 'Spontaneous_window_s', spontaneousWindow, 'BinSize_s', binSz, ... + 'Trigger', struct('Name', condNames{chCond}, 'Edge',onOffStr), ... + 'ConsideredConditions',{consCondNames})]; + newConfKey = [VW_key, string(currentMapKey), BZ_key]; + confKeys = [confKeys; newConfKey]; + save(fullfile(dataDir, pcFN), pcV2S{:}) + configStructure = configStructure(end); +else + %% Loading paramters to the workspace + % User chose a previous configuration + configStructure = configStructure(pcSub); + condNames = arrayfun(@(x) string(x.name), Conditions); + timeLapse = configStructure.Viewing_window_s; + responseWindow = configStructure.Response_window_s; + spontaneousWindow = configStructure.Spontaneous_window_s; + binSz = configStructure.BinSize_s; + chCond = find(condNames == string(configStructure.Trigger.Name)); + onOffStr = configStructure.Trigger.Edge; + [~, consCondSubs] = find(condNames == ... + string(configStructure.ConsideredConditions)'); + consCondNames = condNames(consCondSubs); + clearvars pcSub + %% Keys creation for parameter configuration comparison + CC_key = ''; + for cc = 1:length(consCondNames)-1 + CC_key = [CC_key, sprintf('%s-', consCondNames{cc})]; %#ok + end + CC_key = [CC_key, sprintf('%s', consCondNames{end})]; + C_key = condNames{chCond}; + SW_key = sprintf('SW%.2f-%.2f', spontaneousWindow*1e3); + RW_key = sprintf('RW%.2f-%.2f', responseWindow*1e3); + O_key = sprintf('%s', onOffStr); + currentMapKey = {RW_key, SW_key, C_key, CC_key, O_key}; + VW_key = sprintf("VW%.2f-%.2f", timeLapse*1e3); + BZ_key = sprintf("BZ%.2f",binSz*1e3); end -fprintf(1,'Spontaneous window: %.2f to %.2f ms before the trigger\n',... - spontaneousWindow(1)*1e3, spontaneousWindow(2)*1e3) -%% Condition triggered stacks -condNames = arrayfun(@(x) x.name,Conditions,'UniformOutput',false); -condGuess = contains(condNames, 'whiskerall', 'IgnoreCase', true); -% Choose the conditions to create the stack upon -[chCond, iOk] = listdlg('ListString',condNames,'SelectionMode','single',... - 'PromptString',... - 'Choose the condition which has all whisker triggers: (one condition)',... - 'InitialValue', find(condGuess), 'ListSize', [350, numel(condNames)*16]); -if ~iOk - fprintf(1,'Cancelling...\n') - return -end - -% Select the onset or the offset of a trigger -fprintf(1,'Condition ''%s''\n', Conditions(chCond).name) -onOffStr = questdlg('Trigger on the onset or on the offset?','Onset/Offset',... - 'on','off','Cancel','on'); -if strcmpi(onOffStr,'Cancel') - fprintf(1,'Cancelling...\n') - return +%% Creating ephys figure folder +subFigDir = sprintf("Ephys %s %s %s", VW_key, RW_key, SW_key); +subFigDir = fullfile(FigureDir, subFigDir); +ephFigDir = subFigDir; +metaNameFlag = false; +if ~exist(subFigDir, "dir") + if ~mkdir(subFigDir) + fprintf(1, "Couldn't create %s!\n", subFigDir) + fprintf(1, "Keeping metadata in figure file names.\n") + metaNameFlag = true; + ephFigDir = FigureDir; + end end - %% Constructing the stack out of the user's choice % discStack - dicrete stack has a logical nature % cst - continuous stack has a numerical nature % Both of these stacks have the same number of time samples and trigger % points. They differ only in the number of considered events. -[discStack, cst] = getStacks(spkLog,Conditions(chCond).Triggers,onOffStr,... +[discStack, cst] = getStacks(false,Conditions(chCond).Triggers,onOffStr,... timeLapse,fs,fs,spkSubs,continuousSignals); +discStack(2,:,:) = []; % ISI stack -[~, isiStack] = getStacks(spkLog,Conditions(chCond).Triggers, onOffStr,... - timeLapse,fs,fs,[],ISIspar); +try + [~, isiStack] = getStacks(spkLog,Conditions(chCond).Triggers, onOffStr,... + timeLapse,fs,fs,[],ISIspar); +catch + fprintf(1,'Not able to do the ISI stack\n') +end % [dst, cst] = getStacks(spkLog, allWhiskersPlusLaserControl,... % 'on',timeLapse,fs,fs,[spkSubs;{Conditions(allLaserStimulus).Triggers}],... % continuousSignals); -if ~exist(isiFile,'file') +if ~exist(isiFile,'file') && exist('ISIspar','var') fprintf(1,'Saving the inter-spike intervals for each cluster... '); - save(isiFile,'ISIspar','isiStack','-v7.3') + save(isiFile,'ISIspar','ISIVals','-v7.3') fprintf(1,'Done!\n') end % Number of clusters + the piezo as the first event + the laser as the last @@ -185,217 +330,172 @@ [Ne, Nt, NTa] = size(discStack); % Computing the time axis for the stack tx = (0:Nt - 1)/fs + timeLapse(1); -%% Considered conditions selection -% Choose the conditions to look at -auxSubs = setdiff(1:numel(condNames), chCond); -ccondNames = condNames(auxSubs); -[cchCond, iOk] = listdlg('ListString',ccondNames,'SelectionMode','multiple',... - 'PromptString',... - 'Choose the condition(s) to look at (including whiskers):',... - 'ListSize', [350, numel(condNames)*16]); -if ~iOk - fprintf(1,'Cancelling...\n') - return -end - % Select the onset or the offset of a trigger fprintf(1,'Condition(s):\n') -fprintf('- ''%s''\n', Conditions(auxSubs(cchCond)).name) +fprintf('- ''%s''\n', consCondNames) - -% Subscript to indicate the conditions with all whisker stimulations, -% whisker control, laser control, and the combination whisker and laser. +% Subscript to indicate the conditions with all whisker stimulations, and +% combinations allWhiskerStimulus = chCond; -% allLaserStimulus = 2; -% whiskerControl = 9; -% laserControl = 8; -consideredConditions = auxSubs(cchCond); - -Nccond = length(consideredConditions); - -% Adding all the triggers from the piezo and the laser in one array -% allWhiskersPlusLaserControl = ... -% union(Conditions(allWhiskerStimulus).Triggers,... -% Conditions(laserControl).Triggers,'rows'); -%% Boolean flags +Nccond = length(consCondNames); +%% Conditions' boolean flags delayFlags = false(NTa,Nccond); counter2 = 1; -for ccond = consideredConditions +for ccond = consCondSubs(:)' delayFlags(:,counter2) = ismember(Conditions(chCond).Triggers(:,1),... Conditions(ccond).Triggers(:,1)); counter2 = counter2 + 1; end Na = sum(delayFlags,1); + %% Computing which units/clusters/putative neurons respond to the stimulus % Logical indices for fetching the stack values sponActStackIdx = tx >= spontaneousWindow(1) & tx <= spontaneousWindow(2); respActStackIdx = tx >= responseWindow(1) & tx <= responseWindow(2); % The spontaneous activity of all the clusters, which are allocated from % the second until one before the last row, during the defined spontaneous -% time window, and the whisker control condition. +% time window, and the whisker control condition. timeFlags = [sponActStackIdx;respActStackIdx]; % Time window delta_t = diff(responseWindow); -% Statistical tests -[Results, Counts] = statTests(discStack, delayFlags, timeFlags); -indCondSubs = cumsum(Nccond:-1:1); -consCondNames = condNames(consideredConditions); -% Plotting statistical tests -[Figs, Results] = scatterSignificance(Results, Counts,... - consCondNames, delta_t, sortedData(goods,1)); -configureFigureToPDF(Figs); -stFigBasename = fullfile(figureDir,[expName,' ']); -stFigSubfix = sprintf(' Stat RW%.1f-%.1fms SW%.1f-%.1fms',... - responseWindow(1)*1e3, responseWindow(2)*1e3, spontaneousWindow(1)*1e3,... - spontaneousWindow(2)*1e3); -ccn = 1; -%for cc = indCondSubs -for cc = 1:numel(Figs) - if ~ismember(cc, indCondSubs) - altCondNames = strsplit(Figs(cc).Children(2).Title.String,': '); - altCondNames = altCondNames{2}; - else - altCondNames = consCondNames{ccn}; - ccn = ccn + 1; - end - stFigName = [stFigBasename, altCondNames, stFigSubfix]; - if ~exist([stFigName,'.*'],'file') - print(Figs(cc),[stFigName,'.pdf'],'-dpdf','-fillpage') - print(Figs(cc),[stFigName,'.emf'],'-dmeta') +% Results directory. Not the best name, but works for now... +resDir = fullfile(dataDir, 'Results'); +if ~exist(resDir, 'dir') + if ~mkdir(resDir) + fprintf(1, "There was an issue creating %s!\n", resDir) + fprintf(1, "Saving results in main directory") + resDir = dataDir; end end -H = cell2mat(cellfun(@(x) x.Pvalues,... - arrayfun(@(x) x.Activity, Results(indCondSubs), 'UniformOutput', 0),... - 'UniformOutput', 0)) < 0.05; +resPttrn = 'Res VW%.2f-%.2f ms %s ms %s ms %s.mat'; +resFN = sprintf(resPttrn, timeLapse*1e3, RW_key, SW_key, C_key); +resFP = fullfile(resDir, resFN); + +% Statistical scatter figure names +stFigSubfix = ""; +if metaNameFlag + stFigSubfix = stFigSubfix + " " + RW_key + " " + SW_key; +end + +cmbSubs = 0; snglSubs = 1; +cmpCondNames = string(consCondNames(:)); prmSubs = ones(1,2); +if Nccond > 1 + prmSubs = nchoosek(1:Nccond,2); Nsf = size(prmSubs,1) + Nccond; + snglSubs = cumsum(Nccond:-1:1); cmbSubs = setdiff(1:Nsf, snglSubs); + cmpCondNames = cat(1, cmpCondNames, arrayfun(@(x) ... + consCondNames(prmSubs(x,1)) + " vs. " + ... + consCondNames(prmSubs(x,2)), (1:size(prmSubs, 1))')); +end +stFigFN = fullfile(ephFigDir, "Stat " + cmpCondNames + stFigSubfix); +if cmbSubs + cmpCondNames_aux([snglSubs, cmbSubs]) = stFigFN; + stFigFN = cmpCondNames_aux; +end +if exist(resFP,"file") && all(arrayfun(@(x) exist(x, "file"), stFigFN + ".fig")) + load(resFP, "Results", "Counts") + arrayfun(@(x) openfig(x + ".fig", ofgOpts{:}), stFigFN) +else + % Statistical tests + [Results, Counts] = statTests(discStack, delayFlags, timeFlags); + % Plotting statistical tests + [Figs, Results] = scatterSignificance(Results, Counts, consCondNames,... + delta_t, gclID); configureFigureToPDF(Figs); + parfor cf = 1:numel(Figs) + saveFigure( Figs(cf), stFigFN(cf), true, owFlag ) + end + save(resFP, "Results", "Counts", "configStructure", "gclID") +end +[rclIdx, H, zH] = getSignificantFlags(Results); Htc = sum(H,2); CtrlCond = contains(consCondNames,'control','IgnoreCase',true); -wruIdx = any(H(:,CtrlCond),2); +if ~nnz(CtrlCond) + CtrlCond = true(size(H,2),1); +end +wruIdx = all(H(:,CtrlCond),2); Nwru = nnz(wruIdx); - -fprintf('%d whisker responding clusters:\n', Nwru); +fprintf('%d responding clusters:\n', Nwru); fprintf('- %s\n',gclID{wruIdx}) -%% Get significantly different clusters -gcans = questdlg(['Do you want to get the waveforms from the',... - ' ''responding'' clusters?'], 'Waveforms', 'Yes', 'No', 'No'); -if strcmp(gcans, 'Yes') - clWaveforms = getClusterWaveform(gclID(wruIdx), dataDir); -end -%% Addition mean signals to the Conditions variable -if ~isfield(Conditions,'Stimulus') ||... - any(arrayfun(@(x) isempty(x.Stimulus), Conditions(consideredConditions))) - fprintf(1,'Writting the stimulus raw signal into Conditions variable:\n') - whFlag = contains(trigNames, whStim, 'IgnoreCase', 1); - lrFlag = contains(trigNames, cxStim, 'IgnoreCase', 1); - cdel = 1; - for cc = consideredConditions - fprintf(1,'- %s\n', Conditions(cc).name) - Conditions(cc).Stimulus = struct(... - 'Mechanical',reshape(mean(cst(whFlag,:,delayFlags(:,cdel)),3),... - 1,Nt),'Laser',reshape(mean(cst(lrFlag,:,delayFlags(:,cdel)),3),... - 1,Nt),'TimeAxis',(0:Nt-1)/fs + timeLapse(1)); - cdel = cdel + 1; - end - save(fullfile(dataDir,[expName,'analysis.mat']),'Conditions','-append') +%% Map prototype +mapPttrn = "Map %s.mat"; +resMap_path = fullfile(resDir, sprintf(mapPttrn, expName)); +nmFlag = true; +try + resMap = MapNested(); +catch + fprintf(1, "'RolandRitt/Matlab-NestedMap' toolbox not installed! ") + fprintf(1, "Cannot create multi-key map!\n") + nmFlag = false; +end +if nmFlag + if exist(resMap_path, "file") + resMap_vars = load(resMap_path,"resMap", "keyCell"); + resMap = resMap_vars.resMap; + keyCell = resMap_vars.keyCell; clearvars respMap_vars + try + % Testing if the current key combination exists + resMap_value = resMap(currentMapKey{:}); + clearvars resMap_value + catch + fprintf(1, "Saving responsive unit flags\n") + resMap(currentMapKey{:}) = wruIdx; + keyCell = cat(1, keyCell, currentMapKey); + end + else + fprintf(1, "Saving responsive unit flags\n") + resMap(currentMapKey{:}) = wruIdx; + keyCell = currentMapKey; + end + save(resMap_path, "resMap", "keyCell") end - - -%% Configuration structure -configStructure = struct('Experiment', fullfile(dataDir,expName),... - 'Viewing_window_s', timeLapse, 'Response_window_s', responseWindow,... - 'BinSize_s', binSz, 'Trigger', struct('Name', condNames{chCond},... - 'Edge',onOffStr), 'ConsideredConditions',{consCondNames}); %% Filter question filterIdx = true(Ne,1); ansFilt = questdlg('Would you like to filter for significance?','Filter',... 'Yes','No','Yes'); -filtStr = 'unfiltered'; +filtStr = 'unfiltered'; filtFlag = false; if strcmp(ansFilt,'Yes') - filterIdx = [true; wruIdx]; + filterIdx = [true; wruIdx]; filtFlag = true; filtStr = 'filtered'; end - %% Getting the relative spike times for the whisker responsive units (wru) % For each condition, the first spike of each wru will be used to compute % the standard deviation of it. -cellLogicalIndexing = @(x,idx) x(idx); + +% cellLogicalIndexing = @(x,idx) x(idx); isWithinResponsiveWindow =... @(x) x > responseWindow(1) & x < responseWindow(2); +relSpkFN = string(expName) + " " + RW_key + " " + SW_key + " " + ... + VW_key + " ms " + C_key + " (" + string(filtStr) + ") RelSpkTms.mat"; +consVars = {'relativeSpkTmsStruct', 'firstSpkStruct', ... + 'SpontaneousStruct', 'configStructure'}; +rspMF = matfile(fullfile(dataDir, relSpkFN)); + +if ~exist( fullfile( dataDir, relSpkFN ),'file') || ... + any(~contains(who(rspMF), consVars)) + rst = arrayfun(@(x) getRasterFromStack(discStack, ~delayFlags(:,x), ... + [false; filterIdx(2:end)], timeLapse, fs, true, true), ... + 1:size(delayFlags,2), fnOpts{:}); + relativeSpkTmsStruct = struct('name', cellstr(consCondNames), ... + 'SpikeTimes', rst); + firstSpkStruct = getFirstSpikeInfo(relativeSpkTmsStruct, configStructure); + + % Spontaneous firing rates + Texp = Ns/fs; + trainDuration = 1; + AllTriggs = unique(cat(1, Conditions.Triggers), 'rows', 'sorted'); + [spFr, ~, SpSpks, spIsi] = getSpontFireFreq(spkSubs, AllTriggs,... + [0, Texp], fs, trainDuration + delta_t + responseWindow(1)); + SpontaneousStruct = struct('Spikes', SpSpks, 'FR', ... + arrayfun(@(x) {x}, spFr), 'ISI', spIsi); + save(fullfile(dataDir, relSpkFN), consVars{:}) +else + load(fullfile(dataDir, relSpkFN), consVars{1:3}) +end -firstSpike = zeros(Nwru,Nccond); -M = 16; -binAx = responseWindow(1):binSz:responseWindow(2); -condHist = zeros(size(binAx,2)-1, Nccond); -firstOrdStats = zeros(2,Nccond); -condParams = zeros(M,3,Nccond); -txpdf = responseWindow(1):1/fs:responseWindow(2); -condPDF = zeros(numel(txpdf),Nccond); -csvBase = fullfile(dataDir, expName); -csvSubfx = sprintf(' VW%.1f-%.1f ms.csv', timeLapse(1)*1e3, timeLapse(2)*1e3); -existFlag = false; -condRelativeSpkTms = cell(Nccond,1); -relativeSpkTmsStruct = struct('name',{},'SpikeTimes',{}); -spkDir = fullfile(dataDir, 'SpikeTimes'); -for ccond = 1:size(delayFlags,2) - csvFileName = [csvBase,' ',consCondNames{ccond}, csvSubfx]; - relativeSpikeTimes = getRasterFromStack(discStack,~delayFlags(:,ccond),... - filterIdx(3:end), timeLapse, fs, true, false); - relativeSpikeTimes(:,~delayFlags(:,ccond)) = []; - relativeSpikeTimes(~filterIdx(2),:) = []; - condRelativeSpkTms{ccond} = relativeSpikeTimes; -% respIdx = cellfun(isWithinResponsiveWindow, relativeSpikeTimes,... -% 'UniformOutput',false); - clSpkTms = cell(size(relativeSpikeTimes,1),1); - if exist(csvFileName, 'file') && ccond == 1 - existFlag = true; - ansOW = questdlg(['The exported .csv files exist! ',... - 'Would you like to overwrite them?'],'Overwrite?','Yes','No','No'); - if strcmp(ansOW,'Yes') - existFlag = false; - fprintf(1,'Overwriting... '); - end - end - fID = 1; - if ~existFlag - fID = fopen(csvFileName,'w'); - fprintf(fID,'%s, %s\n','Cluster ID','Relative spike times [ms]'); - end - for cr = 1:size(relativeSpikeTimes, 1) - clSpkTms(cr) = {sort(cell2mat(relativeSpikeTimes(cr,:)))}; - if fID > 2 - fprintf(fID,'%s,',gclID{cr}); - fprintf(fID,'%f,',clSpkTms{cr});fprintf(fID,'\n'); - end - end - if fID > 2 - fclose(fID); - end - relativeSpkTmsStruct(ccond).name = consCondNames{ccond}; - relativeSpkTmsStruct(ccond).SpikeTimes = condRelativeSpkTms{ccond}; - %{ - spikeTimesINRespWin = cellfun(cellLogicalIndexing,... - relativeSpikeTimes, respIdx, 'UniformOutput',false); - allSpikeTimes = cell2mat(spikeTimesINRespWin(:)'); - condParams(:,:,ccond) = emforgmm(allSpikeTimes, M, 1e-6, 0); - condPDF(:,ccond) = genP_x(condParams(:,:,ccond), txpdf); - firstOrdStats(:,ccond) = [mean(allSpikeTimes), std(allSpikeTimes)]; - hfig = figure('Visible', 'off'); h = histogram(allSpikeTimes, binAx,... - 'Normalization', 'probability'); - condHist(:,ccond) = h.Values; - close(hfig) - for ccl = 1:Nwru - frstSpikeFlag = ~cellfun(@isempty,spikeTimesINRespWin(ccl,:)); - firstSpike(ccl,ccond) = std(... - cell2mat(spikeTimesINRespWin(ccl,frstSpikeFlag))); - end - %} -end -save(fullfile(dataDir,[expName,'_exportSpkTms.mat']),... - 'relativeSpkTmsStruct','configStructure') %% Ordering PSTH orderedStr = 'ID ordered'; @@ -416,56 +516,228 @@ orderedStr = [orderedStr, sprintf('%s ',ordVar{cvar})]; %#ok end orderedStr = [orderedStr, 'ordered']; - + if ~strcmp(ordVar,'id') [~,ordSubs] = sortrows(clInfo(pclID,:),ordVar); end end %% Plot PSTH -goodsIdx = logical(clInfo.ActiveUnit); -csNames = fieldnames(Triggers); +if exist('Triggers', 'var') + csNames = fieldnames(Triggers); +end Nbn = diff(timeLapse)/binSz; -if (Nbn - round(Nbn)) ~= 0 - Nbn = ceil(Nbn); -end -PSTH = zeros(nnz(filterIdx) - 1, Nbn, Nccond); -psthFigs = gobjects(Nccond,1); -for ccond = 1:Nccond - figFileName = sprintf('%s %s VW%.1f-%.1f ms B%.1f ms RW%.1f-%.1f ms SW%.1f-%.1f ms %sset %s (%s)',... - expName, Conditions(consideredConditions(ccond)).name, timeLapse*1e3,... - binSz*1e3, responseWindow*1e3, spontaneousWindow*1e3, onOffStr,... - orderedStr, filtStr); - [PSTH(:,:,ccond), trig, sweeps] = getPSTH(discStack(filterIdx,:,:),timeLapse,... - ~delayFlags(:,ccond),binSz,fs); - stims = mean(cst(:,:,delayFlags(:,ccond)),3); - stims = stims - median(stims,2); - for cs = 1:size(stims,1) - if abs(log10(var(stims(cs,:),[],2))) < 13 - [m,b] = lineariz(stims(cs,:),1,0); - stims(cs,:) = m*stims(cs,:) + b; - else - stims(cs,:) = zeros(1,Nt); +if (Nbn - round( Nbn )) ~= 0 + Nbn = ceil( Nbn ); +end + +%psthTx = (0:Nbn-1) * binSz + timeLapse(1); +Ntc = size(cst,2); +psthFN = "PSTH " + consCondNames(:) + " " + BZ_key + " " + string(orderedStr); +if filtFlag + psthFN = psthFN + " " + filtStr; +end +% PSTH construction +psthFP = fullfile(ephFigDir, psthFN); +if any(arrayfun(@(x) ~exist(x+".fig","file"), psthFP)) + % [PSTH, trig] = arrayfun(@(x) getPSTH(discStack(filterIdx,:,:), ... + % timeLapse, ~delayFlags(:,x), binSz, fs), 1:Nccond, fnOpts{:}); + if exist('cst', 'var') && ~isempty(cst) + % Take into account covariance for signals. + stims = arrayfun(@(x) mean(cst(:,:,delayFlags(:,x)),3), 1:Nccond, ... + fnOpts{:}); stims = cellfun(@(x) zscore(x, 0, 'all'), stims, fnOpts{:}); + else + stims = repmat({zeros(1,Ntc)}, Nccond, 1); + end + psthFigs = gobjects( numel(psthFP), 1 ); + auxID = pclID(ordSubs); auxStack = discStack(filterIdx,:,:); + PSTH = cell(Nccond,1); trig = PSTH; + try + parfor cf = 1:Nccond + % for cf = 1:Nccond + [PSTH{cf}, trig{cf}] = getPSTH(auxStack, timeLapse, ... + ~delayFlags(:,cf), binSz, fs); + psthFigs(cf) = plotClusterReactivity(PSTH{cf}(ordSubs,:), trig{cf},... + Na(cf), timeLapse, binSz, [consCondNames(cf); auxID], strrep(expName,'_',' '), ... + stims{cf}, csNames); + ylabel(psthFigs(cf).Children(end), ... + [psthFigs(cf).Children(end).YLabel.String, ... + sprintf('^{%s}',orderedStr)]) + set( psthFigs(cf), 'UserData', PSTH{cf} ) + saveFigure( psthFigs(cf), psthFP(cf), true, owFlag ); + end + catch + fprintf(1, 'Not enough memory to run PSTH building in parallel!\n') + for cf = 1:Nccond + % for cf = 1:Nccond + [PSTH{cf}, trig{cf}] = getPSTH(auxStack, timeLapse, ... + ~delayFlags(:,cf), binSz, fs); + psthFigs(cf) = plotClusterReactivity(PSTH{cf}(ordSubs,:), trig{cf},... + Na(cf), timeLapse, binSz, [consCondNames(cf); auxID], strrep(expName,'_',' '), ... + stims{cf}, csNames); + ylabel(psthFigs(cf).Children(end), ... + [psthFigs(cf).Children(end).YLabel.String, ... + sprintf('^{%s}',orderedStr)]) + set( psthFigs(cf), 'UserData', PSTH{cf} ) + end + parfor cf = 1:Nccond + saveFigure( psthFigs(cf), psthFP(cf), true, owFlag ); end end - psthFigs(ccond) = plotClusterReactivity(PSTH(ordSubs,:,ccond),trig,sweeps,timeLapse,binSz,... - [{Conditions(consideredConditions(ccond)).name};... - pclID(ordSubs)],... - strrep(expName,'_','\_'),... - stims, csNames); - configureFigureToPDF(psthFigs(ccond)); - psthFigs(ccond).Children(end).YLabel.String =... - [psthFigs(ccond).Children(end).YLabel.String,... - sprintf('^{%s}',orderedStr)]; - if ~exist([figFileName,'.pdf'], 'file') - print(psthFigs(ccond), fullfile(figureDir,[figFileName, '.pdf']),... - '-dpdf','-fillpage') +else + psthFigs = arrayfun(@(f) openfig(f + ".fig", ofgOpts{:} ), psthFP); + PSTH = arrayfun(@(f) get( f, 'UserData' ), psthFigs, fnOpts{:} ); + if all(cellfun(@(c)isempty(c),PSTH)) + [PSTH, trig] = arrayfun(@(x) getPSTH(discStack(filterIdx,:,:), ... + timeLapse, ~delayFlags(:,x), binSz, fs), 1:Nccond, fnOpts{:}); end - if ~exist([figFileName,'.emf'], 'file') - print(psthFigs(ccond), fullfile(figureDir,[figFileName, '.emf']),... - '-dmeta') +end +% Z-score PSTH for all units +ephysPttrn = 'Z-score all-units PSTH %s Ntrials%s.fig'; +ephysName = sprintf(ephysPttrn, sprintf('%s ', consCondNames{:}), ... + sprintf(' %d', Na)); +ephysFile = fullfile(ephFigDir, ephysName); +if ~exist(ephysFile, 'file') + [ppFig, PSTHall] = compareCondPSTHs(cat(3,PSTH{:}), Na, binSz, ... + timeLapse, consCondNames); + saveFigure(ppFig, ephysFile, 1, owFlag ); +else + openfig( ephysFile, ofgOpts{:} ); +end +clearvars ppFig ephysPttrn ephysName ephysFile aux* +%% Log PSTH +Nbin = 64; +ncl = size(relativeSpkTmsStruct(1).SpikeTimes,1); + +logPSTH = getLogTimePSTH(relativeSpkTmsStruct, true(ncl,1),... + 'tmWin', responseWindow, 'Offset', 2.5e-3, 'Nbin', Nbin,... + 'normalization', 'fr'); +lpFN = sprintf("Log-likePSTH %s %d-conditions NB%d",... + logPSTH.Normalization, Nccond, Nbin); +%% Saving Log PSTH figures +if Nccond > 1 + lmiFN = sprintf("LogMI %d-conditions NB%d", Nccond, Nbin); + lmiFP = fullfile(ephFigDir, lmiFN); +end +if filtFlag + lpFN = lpFN + " (" + filtStr + ")"; + if Nccond > 1 + lmiFP = lmiFP + " (" + filtStr + ")"; end end +lpFP = fullfile(ephFigDir, lpFN); +if ~exist(lpFP+".fig", "file") || owFlag + logFigs = plotLogPSTH(logPSTH); saveFigure(logFigs(1), lpFP, true, owFlag ) + if numel(logFigs) > 1 + popEffects = logFigs(2).UserData; + MIStruct = struct('ConditionNames', consCondNames, ... + 'MI', arrayfun(@(x) struct('Comparative', ... + string(popEffects{x,1})+" vs "+... + string(popEffects{x,2}), 'Value', popEffects{x,3}), ... + 1:size(popEffects,1), fnOpts{:})); + set( logFigs(2), 'UserData', MIStruct ); + saveFigure(logFigs(2), lmiFP, true, owFlag ) + vrs = who(matfile(resFP)); + if ~any(ismember(vrs,'MIStruct')) + fprintf(1,'Adding "MIStruct" to %s\n', resFN) + save(resFP, 'MIStruct','-append') + end + end +else + logFigs = openfig(lpFP+".fig", ofgOpts{:} ); + load(resFP, "MIstruct") + if Nccond > 1 + logFigs(2) = openfig(lmiFP+".fig", ofgOpts{:} ); + end +end +%% Save log MI results +logRF = fullfile( ephFigDir, ... + sprintf( "LogPSTH_Structure %s %d-conditions NB%d", ... + logPSTH.Normalization, Nccond, Nbin ) ); +if ~exist( logRF, 'file' ) + save( logRF, "logPSTH" ) +end +%% Cluster population proportions +% Responsive and unresponsive cells, significantly potentiated or depressed +% and unmodulated. +fnOpts = {'UniformOutput', false}; +hsOpts = {'BinLimits', [-1,1], 'NumBins', 32,... + 'Normalization', 'probability', 'EdgeColor', 'none', 'DisplayName'}; +axOpts = {'Box', 'off', 'Color', 'none'}; +evFr = cellfun(@(x) mean(x,2)./diff(responseWindow), Counts(:,2),fnOpts{:}); +evFr = cat(2, evFr{:}); +getMI = @(x) diff(x, 1, 2)./sum(x, 2); +MIevok = getMI(evFr); +Nrn = sum(wruIdx); Ntn = size(wruIdx,1); +signMod = Results(1).Activity(2).Pvalues < 0.05; +potFlag = MIevok > 0; +Nrsn = sum(wruIdx & signMod); Nrsp = sum(wruIdx & signMod & potFlag); +% All spikes in a cell format +if size(spkSubs,1) < size(gclID,1) + spkSubs = cat(1, {round(sortedData{goods(1),2}*fs)}, spkSubs); +end +NaCount = 1; +% Experiment firing rate and ISI per considered condition +spFrC = zeros(Ncl, size(consCondSubs(:),1), 'single'); +econdIsi = cell(Ncl, size(consCondSubs(:),1)); +econdSpks = econdIsi; +trainDuration = 1; +for ccond = consCondSubs(:)' + itiSub = mean(diff(Conditions(ccond).Triggers(:,1))); + consTime = [Conditions(ccond).Triggers(1,1) - round(itiSub/2),... + Conditions(ccond).Triggers(Na(NaCount),2) + round(itiSub/2)]... + ./fs; + [spFrC(:,NaCount),~, econdSpks(:,NaCount), econdIsi(:,NaCount)] =... + getSpontFireFreq(spkSubs, Conditions(ccond).Triggers,... + consTime, fs, trainDuration + delta_t + responseWindow(1)); + NaCount = NaCount + 1; +end +MIspon = getMI(spFrC); SNr = evFr./spFrC; +%% Plot proportional pies +clrMap = lines(2); clrMap([3,4],:) = [0.65;0.8].*ones(2,3); +% Responsive and non responsive clusters +respFig = figure( "Color", "w", figOpts{:} ); +pie([Ntn-Nrn, Nrn], [0, 1], {'Unresponsive', 'Responsive'}); +pObj = findobj(respFig, "Type", "Patch"); +arrayfun(@(x) set(x, "EdgeColor", "none"), pObj); +arrayfun(@(x) set(pObj(x), "FaceColor", clrMap(x+2,:)), 1:length(pObj)) +propPieFileName = fullfile(ephFigDir,... + sprintf("Whisker responsive proportion pie %s (%dC, %dR)",... + C_key, [Ntn-Nrn, Nrn])); +saveFigure(respFig, propPieFileName, 1, owFlag ); +% Potentiated, depressed and unmodulated clusters pie +if Nccond == 2 + potFig = figure("Color", "w", figOpts{:} ); + pie([Nrn - Nrsn, Nrsp, Nrsn - Nrsp], [0, 1, 1], {'Non-modulated', ... + 'Potentiated', 'Depressed'}); % set(potFig, axOpts{:}) + pObj = findobj(potFig, "Type", "Patch"); + arrayfun(@(x) set(x, "EdgeColor", "none"), pObj); + arrayfun(@(x) set(pObj(x), "FaceColor", clrMap(x,:)), 1:length(pObj)) + modPropPieFigFileName = fullfile(ephFigDir,... + sprintf("Modulation proportions pie %s (%dR, %dP, %dD)",... + C_key, Nrn - Nrsn, Nrsp, Nrsn - Nrsp)); + saveFigure(potFig, modPropPieFigFileName, 1, owFlag ) + % Modulation index histogram + MIFig = figure( figOpts{:} ); histogram(MIspon, hsOpts{:}, "Spontaneous"); hold on; + histogram(MIevok, hsOpts{:}, "Evoked"); set(gca, axOpts{:}); + title("Modulation index distribution"); xlabel("MI"); + ylabel("Cluster proportion"); lgnd = legend("show"); + set(lgnd, "Box", "off", "Location", "best") + saveFigure(MIFig, fullfile(ephFigDir,... + "Modulation index dist evoked & after induction "+C_key), 1, owFlag ) +end +%% Get significantly different clusters +gcans = questdlg(['Do you want to get the waveforms from the',... + ' ''responding'' clusters?'], 'Waveforms', 'Resp only', 'All', 'None', ... + 'None'); +switch gcans + case 'Resp only' + clWaveforms = getClusterWaveform(gclID(wruIdx), dataDir); + case 'All' + clWaveforms = getClusterWaveform(gclID, dataDir); + case 'None' + fprintf(1, 'You can always get the waveforms later\n') +end %% Rasters from interesting clusters rasAns = questdlg('Plot rasters?','Raster plot','Yes','No','Yes'); @@ -495,18 +767,18 @@ rectColor = clrmap('Gray'); end % Choose the conditions to be plotted - resCondNames = arrayfun(@(x) x.name, Conditions(consideredConditions),... + resCondNames = arrayfun(@(x) x.name, Conditions(consCondSubs),... 'UniformOutput', 0); [rasCondSel, iOk] = listdlg('ListString', resCondNames,... 'PromptString', 'Which conditions to plot?',... - 'InitialValue', 1:length(consideredConditions),... + 'InitialValue', 1:length(consCondSubs),... 'CancelString', 'None',... 'Name', 'Conditions for raster',... 'SelectionMode', 'multiple'); if ~iOk return end - rasCond = consideredConditions(rasCondSel); + rasCond = consCondSubs(rasCondSel); rasCondNames = consCondNames(rasCondSel); Nrcl = numel(clSel); % Reorganize the rasters in the required order. @@ -514,10 +786,11 @@ [rasIdx, rasOrd] = ismember(pclID(ordSubs), pclID(clSel)); clSub = clSub(rasOrd(rasIdx)); clSel = clSel(rasOrd(rasOrd ~= 0)); - Nma = min(Na); - rasFig = figure; + Nma = min(Na(rasCondSel)); + rasFig = figure( figOpts{:} ); Nrcond = length(rasCond); ax = gobjects(Nrcond*Nrcl,1); + timeFlags = all([tx(:) >= timeLapse(1), tx(:) <= timeLapse(2)],2); for cc = 1:length(rasCond) % Equalize trial number trigSubset = sort(randsample(Na(rasCondSel(cc)),Nma)); @@ -525,24 +798,26 @@ tSubs = tLoc(trigSubset); % Trigger subset for stimulation shading trigAlSubs = Conditions(rasCond(cc)).Triggers(trigSubset,:); - timeDur = round(diff(trigAlSubs, 1, 2)/fs, 3); - trigChange = find(diff(timeDur) ~= 0); + timeDur = round(diff(trigAlSubs, 1, 2)/fs, 3); tol = 0.02/max(timeDur); + timeDurUniq = uniquetol(timeDur, tol); + %trigChange = find(diff(timeDur) ~= 0); + trigChange = find(~ismembertol(timeDur, timeDurUniq, tol)); for ccl = 1:Nrcl lidx = ccl + (cc - 1) * Nrcl; ax(lidx) = subplot(Nrcond, Nrcl, lidx); title(ax(lidx),sprintf('%s cl:%s',rasCondNames{cc},pclID{clSel(ccl)})) - plotRasterFromStack(discStack([1,clSub(ccl)],:,tSubs),... + plotRasterFromStack(discStack([1,clSub(ccl)],timeFlags,tSubs),... timeLapse, fs,'',ax(lidx)); ax(lidx).YAxisLocation = 'origin';ax(lidx).YAxis.TickValues = Nma; ax(lidx).YAxis.Label.String = Nma; ax(lidx).YAxis.Label.Position =... [timeLapse(1)-timeLapse(1)*0.65, Nma,0]; - ax(lidx).XAxis.TickLabels =... - cellfun(@(x) str2num(x)*1e3, ax(lidx).XAxis.TickLabels,... - 'UniformOutput', 0); - xlabel(ax(lidx), 'Time [ms]') + %ax(lidx).XAxis.TickLabels =... + % cellfun(@(x) str2num(x)*1e3, ax(lidx).XAxis.TickLabels,... + % 'UniformOutput', 0); + xlabel(ax(lidx), 'Time [s]') initSub = 0; - optsRect = {'EdgeColor','none','FaceColor',rectColor}; + optsRect = {'EdgeColor',rectColor,'FaceColor','none'}; for ctr = 1:numel(trigChange) rectangle('Position',[0, initSub,... timeDur(trigChange(ctr)), trigChange(ctr)],optsRect{:}) @@ -556,9 +831,166 @@ rasFigName = sprintf('%s R-%scl_%sVW%.1f-%.1f ms', expName,... sprintf('%s ', rasCondNames{:}), sprintf('%s ', pclID{clSel}),... timeLapse*1e3); - configureFigureToPDF (rasFig); - if ~exist([rasFigName,'.pdf'], 'file') || ~exist([rasFigName,'.emf'], 'file') - print(rasFig,fullfile(figureDir,[rasFigName, '.pdf']),'-dpdf','-fillpage') - print(rasFig,fullfile(figureDir,[rasFigName, '.emf']),'-dmeta') + rasFigPath = fullfile(ephFigDir, rasFigName); + arrayfun(@(x) set(x,'Color','none'), ax); + saveFigure(rasFig, rasFigPath, 1, owFlag ); + clearvars ax rasFig +end +%% Response speed characterization +btx = (0:Nbn-1)*binSz + timeLapse(1); +respIdx = isWithinResponsiveWindow(btx); +% Window defined by the response in the population PSTH +% twIdx = btx >= 2e-3 & btx <= 30e-3; +% respTmWin = [2, 30]*1e-3; +[mdls, r2, qVals, qDiff] = exponentialSpread(PSTH{1}, btx, responseWindow); +mdls(mdls(:,2) == 0, 2) = 1; +%% Cross-correlations +ccrAns = questdlg(['Get cross-correlograms?',... + '(Might take a while to compute if no file exists!)'],... + 'Cross-correlations', 'Yes', 'No', 'Yes'); +if strcmpi(ccrAns,'Yes') + consTime = inputdlg('Cross-correlation lag (ms):',... + 'Correlation time', [1,30], {'50'}); + try + consTime = str2num(consTime{1})*1e-3; + catch + fprintf(1, 'Cancelling...\n'); + return + end + corrsFile = fullfile(dataDir,sprintf('%s_%.2f ms_ccorr.mat', expName,... + consTime*1e3)); + if ~exist(corrsFile,'file') + if size(spkSubs,1) < size(goods,1) + spkSubs = cat(1, {round(sortedData{goods(1),2}*fs)},spkSubs); + end + corrs = neuroCorr(spkSubs, consTime, 1, fs); + save(corrsFile,'corrs','consTime','fs','-v7.3'); + else + load(corrsFile, 'corrs') + end +end +%% Auto-correlation measurement +% Arranging the auto-correlograms out of the cross-correlograms into a +% single matrix +try + acorrs = cellfun(@(x) x(1,:), corrs, fnOpts{:} ); +catch + fprintf(1, 'No correlograms in the workspace!\n') +end +if exist('acorrs', "var") + acorrs = single(cat(1, acorrs{:})); Ncrs = size(acorrs, 2); + % Computing the lag axis for the auto-correlograms + b = -ceil(Ncrs/2)/fs; corrTx = (1:Ncrs)'/fs + b; + corrTmWin = [1, 25]*1e-3; + % Interesting region in the auto-correlogram + [cmdls, cr2, cqVals, cqDiff] =... + exponentialSpread(acorrs, corrTx, corrTmWin); +end +% lwIdx = corrTx >= (1e-3 - 1/fs) & corrTx <= 25e-3; +% lTx = corrTx(lwIdx); +% icsAc = double(1 - cumsum(acorrs(:,lwIdx)./sum(acorrs(:,lwIdx),2),2)); +% % Quartile cuts +% quartCut = exp(-log([4/3, 2, exp(1), 4]))'; +% % Exponential analysis for the auto-correlograms +% cmdls = zeros(Ncl,2); cr2 = zeros(Ncl,1); cqVals = zeros(Ncl,4); +% for ccl = 1:Ncl +% % Exponential fit for the inverted cumsum +% [fitObj, gof] = fit(lTx, icsAc(ccl,:)', 'exp1','Display','off'); +% cmdls(ccl,:) = coeffvalues(fitObj); cr2(ccl) = gof.rsquare; +% % Quartiles cut for exponential distribution (25, 50, 63.21, 75) +% quartFlags = icsAc(ccl,:) >= quartCut; +% [qSubs, ~] = find(diff(quartFlags')); +% il = arrayfun(@(x) fit_poly(lTx(x:x+1), icsAc(ccl,x:x+1), 1), qSubs,... +% 'UniformOutput', 0);il = cat(2,il{:}); +% cqVals(ccl,:) = (quartCut' - il(2,:))./il(1,:); +% end +% cqDiff = diff(cqVals(:,[1,4]),1,2); + +%% Behaviour + +flds = dir(getParentDir(dataDir,1)); +pointFlag = arrayfun(@(x) any(strcmpi(x.name, {'.','..'})), flds); +flds(pointFlag) = []; +behFoldFlag = arrayfun(@(x) any(strcmpi(x.name, 'Behaviour')), flds); +possNames = ["P", "L"]; m = 1e-3; +if any(behFoldFlag) && sum(behFoldFlag) == 1 + % If only one folder named Behaviour exists, chances are that this is + % an awake experiment. + behDir = fullfile(flds(behFoldFlag).folder,flds(behFoldFlag).name); + fprintf(1, "Found %s!\n", behDir) + answ = questdlg('Analyse behaviour?','Behaviour','Yes','No','Yes'); + if strcmpi(answ,'Yes') + lgOpts = [axOpts(:)', {'Location'}, {'best'}]; + hstOpts = {'BinMethod', 'integers', 'BinLimits', [-0.5,4.5]}; + behChCond = cellfun(@(x) contains(Conditions(chCond).name, x), ... + {["Piezo", "Puff"];["Laser","Light"]}); + delayFlags = arrayfun(@(x) any( Conditions(chCond).Triggers(:,1) == ... + Conditions(x).Triggers(:,1)', 2 ), consCondSubs, fnOpts{:} ); + delayFlags = cat(2, delayFlags{:}); + [behRes, behFig_path, behData, aInfo] = analyseBehaviour( behDir, ... + "Condition", possNames(behChCond), ... + "ConditionsNames", cellstr( consCondNames ), ... + "PairedFlags", delayFlags, ... + "FigureDirectory", FigureDir, ... + "ResponseWindow", [25, 350] * m, ... + "ViewingWindow", [-450, 500] * m, ... + "figOverWrite", owFlag ); + + [pAreas, ~, behAreaFig] = createBehaviourIndex(behRes); + behMeasures = string({behAreaFig.Name}); + biFigPttrn = behMeasures+"%s"; + biFigPttrn = arrayfun(@(s) sprintf(s, sprintf(" %s (%%.3f)", ... + consCondNames ) ), biFigPttrn ); + + for it = 1:numel(behMeasures) + behRes = arrayfun(@(bs, ba) setfield( bs, ... + strrep( behMeasures(it), " ", "_" ), ba), behRes(:), pAreas(:,it) ); + end + + arrayfun(@(f) set( f, 'UserData', behRes ), behAreaFig ); + + biFN = arrayfun(@(s) sprintf( biFigPttrn(s), pAreas(:,s) ), 1:numel(behMeasures) ); + + % trMvFlag = arrayfun(@(cr) behRes(1).Results(cr).MovStrucure.MovmentFlags, ... + % 1:size(behRes(1).Results,2), fnOpts{:}); trMvFlag = cat(3, trMvFlag{:}); + % BIscaleMat = sum(trMvFlag,3); + % BIscale = arrayfun(@(cc) BIscaleMat(delayFlags(:,cc), cc), 1:Nccond, ... + % fnOpts{:}); + % [hg, hg_bin] = cellfun(@(c) histcounts(c, hstOpts{:}), ... + % BIscale, fnOpts{:}); + % hg = cat(1, hg{:}); hg_bin = cat(1, hg_bin{:}); + + + % [p_amp, h_amp] = ranksum(cat(1, zamp{1,:}), cat(1, zamp{2,:})); + %% + % clrMap = lines(Nccond); + % countFig = figure( figOpts{:} ); ax(1) = subplot(10,1,1:8); + % bar(ax(1), (0:4)', (hg./sum(hg,2))', 'EdgeColor', 'none'); hold on; + % poaDist = cellfun(@(bi) fitdist(bi,"Poisson"), BIscale); + % ylim(ax(1), [0,1]); set(ax(1), axOpts{:}); + % legend(ax(1), consCondNames, 'AutoUpdate','off', lgOpts{:}) + % lmbdaHeight = 0.95-(0.15/Nccond)*(0:Nccond-1); + % arrayfun(@(pd) scatter(ax(1), poaDist(pd).lambda, lmbdaHeight(pd), '|',... + % 'MarkerEdgeColor', clrMap(pd,:)), 1:Nccond) + % arrayfun(@(pd) line(ax(1), paramci(poaDist(pd)), ... + % lmbdaHeight([pd,pd]), 'Color', clrMap(pd,:), ... + % 'Marker', '|'), 1:Nccond) + % [p, chiVal] = arrayfun(@(ps) chi2test(hg(prmSubs(ps,:), :)), ... + % 1:size(prmSubs,1)); + % ax(2) = subplot(10,1,9:10); + % signBeh = arrayfun(@(x) sprintf("%s vs %s p=%.3f", ... + % consCondNames(prmSubs(x,:)), p(x)), 1:size(prmSubs,1)); + % text(ax(2), 0, -0.3, sprintf('%s vs. %s P=%.3f\n', ... + % [consCondNames(prmSubs), string(p(:))]')) + % set(ax(2), 'Visible', 'off') + % set(countFig, 'UserData', {signBeh, p}) + % title(ax(1), strrep(expName, '_',' ')); xlabel(ax(1),'Moving body parts') + % ylabel(ax(1),'Trial proportion') + % countFigName = sprintf("Count distributions P%s", ... + % sprintf(" %.3f", p(:))); + %% + arrayfun(@(f, fn) saveFigure(f, fullfile(behFig_path, fn), true, owFlag), ... + behAreaFig(:), biFN(:) ); + % saveFigure(countFig, fullfile(behFig_path, countFigName), true, owFlag ); end end \ No newline at end of file diff --git a/Jesus/Distributions.m b/Jesus/Distributions.m new file mode 100644 index 0000000..c03449a --- /dev/null +++ b/Jesus/Distributions.m @@ -0,0 +1,27 @@ +plot(zeros(68,1)-0.05,pfr(wruIdx&posMod&signMod,1),'ksquare','MarkerSize',12,'MarkerFaceColor',[0 0.6 1]) +hold on +plot(zeros(68,1)+0.05,pfr(wruIdx&posMod&signMod,2),'k^','MarkerSize',10,'MarkerFaceColor',[1 0 0]) + +plot(zeros(33,1)+0.45,pfr(wruIdx&negMod&signMod,1),'ksquare','MarkerSize',12,'MarkerFaceColor',[0 0.6 1]) +xlim([-1 1]) +plot(zeros(33,1)+0.55,pfr(wruIdx&negMod&signMod,2),'kv','MarkerSize',10,'MarkerFaceColor',[1 0 0]) + + +plot(zeros(318,1)-0.55,pfr(wruIdx,1),'ko','MarkerSize',10,'MarkerFaceColor',[0 0.6 1]) +ylim([-5 40]) +plot(zeros(318,1)-0.45,pfr(wruIdx,2),'ko','MarkerSize',10,'MarkerFaceColor',[1 0 0]) + +%plot(zeros(217,1)+-1.1,pfr(wruIdx&signMod==0,1),'ksquare','MarkerSize',10,'MarkerFaceColor',[0 0.6 1]); hold on +%plot(zeros(217,1)+-1,pfr(wruIdx&signMod==0,2),'ksquare','MarkerSize',10,'MarkerFaceColor',[1 0 0]) + +%plot(zeros(1928,1)+-1.6,pfr(:,1),'ksquare','MarkerSize',10,'MarkerFaceColor',[0 0.6 1]) +%plot(zeros(1928,1)+-1.5,pfr(:,2),'ksquare','MarkerSize',10,'MarkerFaceColor',[1 0 0]) + +set(gca,'XTick',[-0.5:0.5:0.5]) +set(gca,'XTickLabel',["Responsive All", "Potentiated","Depressed"]) +title 'spontaneous firing rate for VPM clusters' +xlabel("VPM Clusters") +ylabel("Firing Rate [Hz]") +annotation('line',[0.5 0.75],[0.8 0.8],'LineWidth',1); +text([-0.05],[35],'significantly Modulated','HorizontalAlignment','left') +legend('Control','After-Induction','Location','northwest'); box off; hold off \ No newline at end of file diff --git a/Jesus/GETmatrixTRN.m b/Jesus/GETmatrixTRN.m new file mode 100644 index 0000000..70f5873 --- /dev/null +++ b/Jesus/GETmatrixTRN.m @@ -0,0 +1,41 @@ +ClustersL1OnsetTRN = nan(2000,size(PopSpikeTimes1,1)); +for i = 1:size(PopSpikeTimes1(:,1),1) + Spikes=cell2mat(PopSpikeTimes1(i,1:end)); + N= size(Spikes,2); + ClustersL1OnsetTRN (1:N,i) = Spikes; +end + +ClustersL10OnsetTRN = nan(2000,size(PopSpikeTimes10,1)); +for i = 1:size(PopSpikeTimes10(:,1),1) + Spikes=cell2mat(PopSpikeTimes10(i,1:end)); + N= size(Spikes,2); + ClustersL10OnsetTRN (1:N,i) = Spikes; +end + +ClustersL50OnsetTRN= nan(2000,size(PopSpikeTimes50,1)); +for i = 1:size(PopSpikeTimes50(:,1),1) + Spikes=cell2mat(PopSpikeTimes50(i,1:end)); + N= size(Spikes,2); + ClustersL50OnsetTRN (1:N,i) = Spikes; +end + +ClustersL100OnsetTRN = nan(2000,size(PopSpikeTimes100,1)); +for i = 1:size(PopSpikeTimes100(:,1),1) + Spikes=cell2mat(PopSpikeTimes100(i,1:end)); + N= size(Spikes,2); + ClustersL100OnsetTRN (1:N,i) = Spikes; +end + +ClustersL200OnsetTRN = nan(2000,size(PopSpikeTimes200,1)); +for i = 1:size(PopSpikeTimes200(:,1),1) + Spikes=cell2mat(PopSpikeTimes200(i,1:end)); + N= size(Spikes,2); + ClustersL200OnsetTRN (1:N,i) = Spikes; +end + +ClustersControlOnsetTRN = nan(2000,size(PopSpikeTimesControl,1)); +for i = 1:size(PopSpikeTimesControl(:,1),1) + Spikes=cell2mat(PopSpikeTimesControl(i,1:end)); + N= size(Spikes,2); + ClustersControlOnsetTRN (1:N,i) = Spikes; +end \ No newline at end of file diff --git a/Jesus/Loop_increasing_or_decreasingresponse.m b/Jesus/Loop_increasing_or_decreasingresponse.m new file mode 100644 index 0000000..e9d0c8a --- /dev/null +++ b/Jesus/Loop_increasing_or_decreasingresponse.m @@ -0,0 +1,11 @@ +a=yControlOn-yL200On +b=[] +for i=1:size(a,2) + if a(:,i)>0 + p=a(i); + else b=a(i); + ShorterMedianClusters(:,i)=b; + LongerMedianClusters(:,i)=p; + + end +end \ No newline at end of file diff --git a/Jesus/NMDAcomponnet.m b/Jesus/NMDAcomponnet.m new file mode 100644 index 0000000..63abf2d --- /dev/null +++ b/Jesus/NMDAcomponnet.m @@ -0,0 +1,59 @@ +%% NMDA COMPONENT DISECTION +posMod=MIevok>=0.0001;negMod=MIevok<=-0.0001 + +PotS1C=nan(68,1000) + spikesJES=(relativeSpkTmsStruct(1).SpikeTimes(wruIdx&posMod&signMod,1:end)) +for i= 1:size(spikesJES,1) + Test1=[(spikesJES{i,1:end})] + PotS1C(i,1:size(Test1,2))=Test1 +end +PotS1AI1=nan(68,1000) + spikesJES1=(relativeSpkTmsStruct(2).SpikeTimes(wruIdx&posMod&signMod,1:150)) +for i= 1:size(spikesJES1,1) + Test2=[(spikesJES1{i,:})] + PotS1AI1(i,1:size(Test2,2))=Test2 +end + +PotS1AI2=nan(68,1000) + spikesJES2=(relativeSpkTmsStruct(2).SpikeTimes(wruIdx&posMod&signMod,150:300)) +for i= 1:size(spikesJES2,1) + Test3=[(spikesJES2{i,1:end})] + PotS1AI2(i,1:size(Test3,2))=Test3 +end + +kernMatrix =nan(68,1000);figure +subplot(1,2,1) +for i=1:size(PotS1C,1) +[yCtrE xCtrE]=ksdensity(PotS1C(i,:),'Bandwidth',0.0005,'Kernel','epanechnikov','NumPoints',1000) +kernMatrix(i,1:1000)=yCtrE; +plot(xCtrE,kernMatrix(i,:)); hold on +end +subplot(1,2,2) +imagesc([-37:0.12:83-0.12],[1:1:68],kernMatrix) +colormap(jet(128)) +camlight; lighting gouraud + +kernMatrixAI =nan(68,240);figure +subplot(1,2,1) +for i=1:size(PotS1AI1,1) +%[yCtrE xCtrE]=ksdensity(PotS1AI1(i,:),'Bandwidth',0.0005,'Kernel','epanechnikov','NumPoints',1000) +%kernMatrixAI(i,1:1000)=yCtrE; +yAI1=histcounts(PotS1AI1(i,:),240); +plot([-37:0.5:83-0.12],yAI1); hold on +kernMatrixAI(i,1:240)=yAI1 +end +subplot(1,2,2) +imagesc([-37:0.12:83-0.12],[1:1:68],kernMatrixAI) +colormap(jet(128)) + + +kernMatrixAI2 =nan(68,1000);figure +subplot(1,2,1) +for i=1:size(PotS1AI2,1) +[yCtrE xCtrE]=ksdensity(PotS1AI2(i,:),'Bandwidth',0.0005,'Kernel','epanechnikov','NumPoints',1000) +kernMatrixAI2(i,1:1000)=yCtrE; +plot(xCtrE,kernMatrixAI2(i,:)); hold on +end +subplot(1,2,2) +imagesc([-37:0.12:83-0.12],[1:1:68],kernMatrixAI2) +colormap(jet(128)) \ No newline at end of file diff --git a/Jesus/Nueva carpeta/3dreconstructionSC2copy.m b/Jesus/Nueva carpeta/3dreconstructionSC2copy.m new file mode 100644 index 0000000..2f1e14a --- /dev/null +++ b/Jesus/Nueva carpeta/3dreconstructionSC2copy.m @@ -0,0 +1,160 @@ +%% extract contours slices +%V=[0 1 0 ;0 0 0; 1 1 1 ] +close all +myfiles=dir('Z:\Berin\3D reconstruction inputs Cx_BS\*green.jpg'); + +for j=1:numel(myfiles); + +%T=imread('Z:\Berin\3D reconstruction inputs Cx_BS\Rostral0 clear outside green.jpg'); + T=imread(fullfile(['Z:\Berin\3D reconstruction inputs Cx_BS\',[myfiles(j).name]])); +T=rgb2gray(T); +T=255-T; +T=flip(T); +V=T<=252;%grey values on inverted jpeg file +%V=imresize(V,0.1); + +test1=[]; +for i=1:size(V,1); + for ii=1:size(V,2); + if V(i,ii)==0; + test1(i,ii)=0; + elseif V(i,ii)==1; + test1(i,ii)=200; + break + end + end +end + + +%V=[1 0 1 0 ;0 0 0 1; 1 1 1 1;0 1 0 1 ]; +%test=zeros(4,4); +test=[]; +for ii=1:size(V,2); + for i=1:size(V,1); + if V(i,ii)==0; + test(i,ii)=0; + elseif V(i,ii)==1; + test(i,ii)=200; + break + end + end +end + +test3=[]; + +for ii=flip(1:size(V,2)); + for i=flip(1:size(V,1)); + if V(i,ii)==0; + test3(i,ii)=0; + elseif V(i,ii)==1; + test3(i,ii)=200; + break + end + end +end + +test4=[]; + +for i=flip(1:size(V,1)); + for ii=flip(1:size(V,2)); + if V(i,ii)==0; + test4(i,ii)=0; + elseif V(i,ii)==1; + test4(i,ii)=200; + break + end + end +end +test2=test4;%+test3;%+test+test1; +test2(1,:)=0; +%figure +%imshow(T); +h=gca;h.Visible='on' +%figure +%imagesc(test2) +colormapJes=[1 1 1; 0 0 0; 0 0 0;0 0 0]; +colormap(colormapJes); axis ij +[x y]=find(test2>=1); +figure +plot(y/61,x/61,'k*','MarkerSize',1); axis ij +hold on + + +%change values of V for labeled cell area detection +V1=T<=225; +%V1=imresize(V1,0.1); +[x1,y1]=find(V1==1); +plot(y1/61,x1/61,'go','MarkerSize',3,'MarkerFaceColor',[0 1 0]); axis ij %pixel size is 0.61*factor of 10 of IMresize +k=boundary(x1,y1,0.8); +patch(y1(k)/61,x1(k)/61,[0 1 0],'FaceAlpha',0.5,'LineStyle','none') +hold on + +myfilesred=dir('Z:\Berin\3D reconstruction inputs Cx_BS\*red.jpg'); + +%T=imread('Z:\Berin\3D reconstruction inputs Cx_BS\Rostral0 clear outside red.jpg'); +T=imread(fullfile(['Z:\Berin\3D reconstruction inputs Cx_BS\',[myfilesred(j).name]])); +T=rgb2gray(T); +T=255-T; +T=flip(T); +V1=T<=205; +%V1=imresize(V1,0.1); +[x1,y1]=find(V1==1); +plot(y1/61,x1/61,'ro','MarkerSize',3,'MarkerFaceColor',[1 0 0]); axis ij %pixel size is 0.61*factor of 10 of IMresize +k=boundary(x1,y1,0.8); +patch(y1(k)/61,x1(k)/61,[1, 0 0],'FaceAlpha',0.5,'LineStyle','none'); +box off +hold off +%figure +%imshow(T) +%x3d1=x; y3d1=y; +%x13d1=x1; y13d1=y1; +x3d=[];y3d=[]; +x3d(1:size(x,1),j)=x +y3d(1:size(y,1),j)=y +x3d1(1:size(x1,1),j)=x1 +y3d1(1:size(y1,1),j)=y1 +end + +plot3((zeros(size(x3d(:,1),1),1)+0),flip(y3d(:,1)),flip(x3d(:,1)),'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +hold on +plot3((zeros(size(x3d(:,2),1),1)+50),flip(y3d(:,2)),flip(x3d(:,2)),'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,3),1),1)+100),flip(y3d(:,3)),flip(x3d(:,3)),'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,4),1),1)+150),flip(y3d(:,4)),flip(x3d(:,4)),'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,5),1),1)+200),flip(y3d(:,5)),flip(x3d(:,5)),'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,6),1),1)+250),flip(y3d(:,6)),flip(x3d(:,6)),'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,7),1),1)+300),flip(y3d(:,7)),flip(x3d(:,7)),'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,8),1),1)+350),flip(y3d(:,8)),flip(x3d(:,8)),'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,9),1),1)+400),flip(y3d(:,9)),flip(x3d(:,9)),'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +box off +axis ij +xlabel("x") +ylabel("y") + + +%% +figure +plot(NeuronLoc(1:291,3),NeuronLoc(1:291,4),'ro','MarkerFaceColor','r') +hold on +plot(NeuronLoc(292:end,3),NeuronLoc(292:end,4),'go','MarkerFaceColor','g') +%% +figure + +plot((xmc/0.61)*10,(ymc/0.61)*10,'r*','MarkerSize',0.7,'MarkerEdgeColor',[1 0 0]) +hold on +kmc=boundary(x1mc,y1mc,0.9) +p1=patch((x1mc(kmc)/0.61)*10,(y1mc(kmc)/0.61)*10,[1 0 0],'FaceAlpha',0.4,'LineStyle','none') +plot((xsc/0.61)*10,(ysc/0.61)*10,'b*','MarkerSize',0.7,'MarkerEdgeColor',[0 0 1]) +ksc=boundary(x1sc,y1sc,0.9) +p2=patch((x1sc(ksc)/0.61)*10,(y1sc(ksc)/0.61)*10,[0 0 1],'FaceAlpha',0.4,'LineStyle','none') +plot((xbs/0.61)*10,(ybs/0.61)*10,'g*','MarkerSize',0.7,'MarkerEdgeColor',[0 1 0]) +kbs=boundary(x1bs,y1bs,0.9) +p3=patch((x1bs(kbs)/0.61)*10,(y1bs(kbs)/0.61)*10,[0 1 0],'FaceAlpha',0.4,'LineStyle','none') +title('Location of MC, BC, BS recepient areas in SC ') +legend([p1 p2 p3],{'MC','BC','BS'},'Location','southeast') +set(gca,'XTick',0:500:2500) +%set(gca,'YTickLabel',["0","0.5","1","1.5","2.0","2.5" +ylim([0 2800]) +xlim([0 2800]) +view([90 90]); +xlabel('Ventral<---->Dorsal (µm)') +ylabel('Lateral<---->Medial (µm)') \ No newline at end of file diff --git a/Jesus/Nueva carpeta/AxonMapComparisonLastCopy.m b/Jesus/Nueva carpeta/AxonMapComparisonLastCopy.m new file mode 100644 index 0000000..92c41a0 --- /dev/null +++ b/Jesus/Nueva carpeta/AxonMapComparisonLastCopy.m @@ -0,0 +1,127 @@ +figure(1); +subplot(3,6,[1 2 3]) + +MeanM1axonmap=mean(M1AxonMAP,1) +[sortS1axonmapNew idsort]=sort(MeanM1axonmap,'descend') +contour(M1AxonMAP(:,idsortA),'Fill','on','LevelStep',1) +view([90 90]) +colormap(jet(128)) +set(gca,'yTick',1:size(M1AxonMAP,1)) +set(gca,'yTicklabel',[0.1:0.1:1.3]) +set(gca,'xTick',1:size(M1AxonMAP,1)) +set(gca,'xTickLabel',rCaxonsMapNames(idsort)) +set(gca,'yTick',1:13) +set(gca,'yTicklabel',[0.1:0.1:1.3]) +set(gca,'xTick',1:15) +set(gca,'xTickLabel',rCaxonsMapNames(idsortA)) +title("MCRC rostro-caudal distribution axon map per structure") +n=max(M1AxonMAP(:))-1 +n=n/5 +colorbar('Ticks',[0 1 1+n 1+2*n 1+3*n 1+4*n 1+5*n ],'TickLabels',{'-','+','+','++','+++','++++','+++++'}) +xlabel("Thalamic Nuclei") +hold on + + +subplot(3,6,[7 8 9 ]) +MeanS1axonmap=mean(S1AxonMAPNew,1) +[sortS1axonmapNew idsort]=sort(MeanS1axonmap,'descend') +contour(S1AxonMAPNew(:,idsortA),'Fill','on','LevelStep',1) +view([90 90]) +colormap(jet(128)) +set(gca,'yTick',1:size(S1AxonMAPNew,1)) +set(gca,'yTicklabel',[0.1:0.1:1.3]) +set(gca,'xTick',1:size(S1AxonMAPNew,1)) +set(gca,'xTickLabel',rCaxonsMapNames(idsort)) +set(gca,'yTick',1:13) +set(gca,'yTicklabel',[0.1:0.1:1.3]) +set(gca,'xTick',1:15) +set(gca,'xTickLabel',rCaxonsMapNames(idsortA)) +title("BCRC rostro-caudal distribution axon map per structure") +n=max(S1AxonMAPNew(:))-1 +n=n/5 +colorbar('Ticks',[0 1 1+n 1+2*n 1+3*n 1+4*n 1+5*n ],'TickLabels',{'-','+','+','++','+++','++++','+++++'}) +xlabel("Thalamic Nuclei") + +hold on + + +subplot(3,6,[13 14 15]) +MeanBSaxonmap=mean(BSAxonMAP,1) +[sortS1axonmapNew idsort]=sort(MeanBSaxonmap,'descend') +contour(BSAxonMAP(:,idsortA),'Fill','on','LevelStep',1) +view([90 90]) +colormap(jet(128)) +set(gca,'yTick',1:size(BSAxonMAP,1)) +set(gca,'yTicklabel',[0.1:0.1:1.3]) +set(gca,'xTick',1:size(BSAxonMAP,1)) +set(gca,'xTickLabel',rCaxonsMapNames(idsort)) +set(gca,'yTick',1:13) +set(gca,'yTicklabel',[0.1:0.1:1.3]) +set(gca,'xTick',1:15) +set(gca,'xTickLabel',rCaxonsMapNames(idsortA)) +title("BsRC rostro-caudal distribution axon map per structure") +n=max(BSAxonMAP(:))-1 +n=n/5 +colorbar('Ticks',[0 1 1+n 1+2*n 1+3*n 1+4*n 1+5*n ],'TickLabels',{'-','+','+','++','+++','++++','+++++'}) +xlabel("Thalamic Nuclei") +hold off + +%zscoreM1=zscore(mean(M1AxonMAP,1),0); +%[sortM1axonmapNew idsortA]=sort(zscoreM1,'descend'); +%zscoreS1=zscore(mean(S1AxonMAPNew,1),0); +%zscoreBS=zscore(mean(BSAxonMAP,1),0); + +orderMaxM1=mean(M1AxonMAP,1); +NMaxM1=orderMaxM1*1./max(orderMaxM1) +[SNMaxM1 idsortA]=sort(NMaxM1,'descend') + +orderMaxS1=mean(S1AxonMAPNew,1); +NMaxS1=orderMaxS1*1./max(orderMaxS1) + +orderMaxBS=mean(BSAxonMAP,1); +NMaxBS=orderMaxBS*1./max(orderMaxBS) + + +subplot(3,6,[5 6 11 12 16 17]) + +%plot(sortM1axonmapNew,'r--O','MarkerFaceColor','r') +%plot(SNMaxM1,'r--O','MarkerFaceColor','r') +%view([90 90]) +%set(gca,'xTick',1:15) +%set(gca,'xTickLabel',rCaxonsMapNames(idsortA)) +%hold on + + + +%subplot(3,6,[5 6 11 12 16 17]) +%plot(zscoreS1(idsortA),'b--O','MarkerFaceColor','b') +%plot(NMaxS1(idsortA),'b--O','MarkerFaceColor','b') +%view([90 90]) +%set(gca,'xTick',1:15) +%set(gca,'xTickLabel',rCaxonsMapNames(idsortA)) +hold on + + +%zscoreALL=cat(2,zscoreM1(idsortA)',zscoreS1(idsortA)',zscoreBS(idsortA)') + +NMaxALL=cat(2,SNMaxM1',NMaxS1(idsortA)',NMaxBS(idsortA)') +subplot(3,6,[5 6 11 12 16 17]) + +%plot(zscoreBS(idsortA),'g--O','MarkerFaceColor','g') +%plot(NMaxBS(idsortA),'g--O','MarkerFaceColor','g') +barall=bar(NMaxALL) +barall(1).FaceColor=[1 0 0]; +hold on +barall(2).FaceColor=[0 0 1] +barall(3).FaceColor=[0 1 0] +view([90 90]) +set(gca,'xTick',1:15) +set(gca,'xTickLabel',rCaxonsMapNames(idsortA)) +set(gca,'yTick',0:0.25:1) +%set(gca,'yTickLabel',[0:0.25:1]) +box off +%ylabel("zscore") +ylabel("Normalized to max. value") +ylim([0 1.5]) +title("Comparison MC BC Bs") +legend("M1","S1","BS",'Location','southeast') \ No newline at end of file diff --git a/Jesus/OnsetSpikestimes.m b/Jesus/OnsetSpikestimes.m index 2ec42f0..21b4541 100644 --- a/Jesus/OnsetSpikestimes.m +++ b/Jesus/OnsetSpikestimes.m @@ -1,7 +1,7 @@ ControlOnsetFlags = ClustersControlOnset >=0.0 & ClustersControlOnset <=0.05; - PopControlOnsetTimes = ClustersControlOnset (ControlOnsetFlags) + PopControlOnsetTimes = ClustersControlOnset (ControlOnsetFlags); OnsetSpikesTimesControl= nan(500,(max(sum(ControlOnsetFlags,1)))); for Sz=1:size(ClustersControlOnset,2) diff --git a/Jesus/PlotGMMFunctionTrial.m b/Jesus/PlotGMMFunctionTrial.m new file mode 100644 index 0000000..3cf261d --- /dev/null +++ b/Jesus/PlotGMMFunctionTrial.m @@ -0,0 +1,38 @@ +function PlotGMMSC(CordMatCVG,CordMatFDIO,XtestC,YtestC) + +%[XtestC YtestC]=find(testGM2>=200); +figure +gmtestCVGMC=fitgmdist([CordMatCVG(:,1)/0.61,CordMatCVG(:,2)/0.61],2) +DM=fcontour(@(x,y) pdf(gmtestCVGMC, [y,x]), [[00, 00]/0.61;[2000,2000]],'LineWidth',1.5) +hold on + +maxDenM=max(DM.ZData(:)) +[XMaxTestDM YMaxTestDM]=find(DM.ZData==maxDenM) +NcellM=size(DM.ZData,1);rxValueM=DM.XRange(2)/NcellM +plot(CordMatFDIO(:,2)/0.61,CordMatFDIO(:,1)/0.61,'ro','MarkerSize',2,'MarkerEdgeColor',[0.7 0.2 0.2],'MarkerFaceColor',[0.7 0.2 0.2]) +hold on +plot(XtestC/.61,YtestC/0.61,'ko','MarkerSize',1) +plot(CordMatCVG(:,2)/0.61,CordMatCVG(:,1)/0.61,'go','MarkerSize',2,'MarkerEdgeColor',[0.2 0.5 0.2],'MarkerFaceColor',[0.2 0.5 0.2]) +plot(YMaxTestDM*rxValueM,XMaxTestDM*rxValueM,'Ko','MarkerSize',10,'MarkerFaceColor',[0.2 0.2 0.2]) +xlim([2 2500]) +ylim([2 2500]) +view([90 90]) +legend('GMM','RN','slice Contour','CVG-RN','Max prob CVG area','Location','southwest') +legend('boxoff') +title(" gausians mixture model MC CVG-RN") +ylabel("Dorso-Ventral") +xlabel("Dorso-Ventral") +ylabel("Medio-Lateral") +colormap(jet(128)) +annotation('line',[0.618 0.618],[0.56 0.11],'LineWidth',1,'LineStyle','--'); +annotation('line',[0.13 0.618],[0.585 0.585],'LineWidth',1,'LineStyle','--'); +%pie +axes('Position',[0.625 0.625 .3 .3]) +TestPieBC=pie([(length(CordMatFDIO)-length(CordMatCVG)) length(CordMatCVG)]) +TestPieBC(1).FaceColor=[0.7 0.1 0.1] +TestPieBC(3).FaceColor=[0.1 0.7 0.1] +TestPieBC(4).HorizontalAlignment='left' +TestPieBC(2).HorizontalAlignment='right' +lgGMMMC=legend("RN","CVG-RN",'Location','south') +lgGMMMC.Position= [0.72 0.57 0.1639 0.0717] +legend('boxoff') \ No newline at end of file diff --git a/Jesus/PopGetMatrix.m b/Jesus/PopGetMatrix.m new file mode 100644 index 0000000..558deb8 --- /dev/null +++ b/Jesus/PopGetMatrix.m @@ -0,0 +1,41 @@ +ClustersL1OnsetVPM = nan(2000,size(PoPrelativeSpkTmsL1,1)); +for i = 1:size(PoPrelativeSpkTmsL1(:,1),1) + Spikes=cell2mat(PoPrelativeSpkTmsL1(i,1:end)); + N= size(Spikes,2); + ClustersL1OnsetVPM (1:N,i) = Spikes; +end + +ClustersL10OnsetVPM = nan(2000,size(PoPrelativeSpkTmsL10,1)); +for i = 1:size(PoPrelativeSpkTmsL10(:,1),1) + Spikes=cell2mat(PoPrelativeSpkTmsL10(i,1:end)); + N= size(Spikes,2); + ClustersL1OnsetVPM (1:N,i) = Spikes; +end + +ClustersL50OnsetVPM = nan(2000,size(PoPrelativeSpkTmsL50,1)); +for i = 1:size(PoPrelativeSpkTmsL50(:,1),1) + Spikes=cell2mat(PoPrelativeSpkTmsL50(i,1:end)); + N= size(Spikes,2); + ClustersL50OnsetVPM (1:N,i) = Spikes; +end + +ClustersL100OnsetVPM = nan(2000,size(PoPrelativeSpkTmsL100,1)); +for i = 1:size(PoPrelativeSpkTmsL100(:,1),1) + Spikes=cell2mat(PoPrelativeSpkTmsL100(i,1:end)); + N= size(Spikes,2); + ClustersL100OnsetVPM (1:N,i) = Spikes; +end + +ClustersL200OnsetVPM = nan(2000,size(PoPrelativeSpkTmsL200,1)); +for i = 1:size(PoPrelativeSpkTmsL200(:,1),1) + Spikes=cell2mat(PoPrelativeSpkTmsL200(i,1:end)); + N= size(Spikes,2); + ClustersL200OnsetVPM (1:N,i) = Spikes; +end + +ClustersControlOnsetVPM = nan(2000,size(PoPrelativeSpkTmsControl,1)); +for i = 1:size(PoPrelativeSpkTmsControl(:,1),1) + Spikes=cell2mat(PoPrelativeSpkTmsControl(i,1:end)); + N= size(Spikes,2); + ClustersControlOnsetVPM (1:N,i) = Spikes; +end \ No newline at end of file diff --git a/Jesus/ProportionsLTP.m b/Jesus/ProportionsLTP.m new file mode 100644 index 0000000..58a7e1e --- /dev/null +++ b/Jesus/ProportionsLTP.m @@ -0,0 +1,46 @@ +figure + +ColorPie=[0.8 0.8 0.8;0 0 0;0.4 0.4 0.4] + +bar([0 4],[13 15],0.3,'FaceColor',[0 0 1]) +hold on +bar([1 5],[21 10],0.3,'FaceColor',[1 0 0]) +set(gca,'xTick',[0.5 4.5]); +set(gca,'xTickLabel',["Potentiated" "Depressed"]) +set(gca,'YTick',[0 10 20]) +ylabel("% wrt total responsive "); title ("Percentage of Modulated Clusters") +xlim([-3 14]);ylim([0 30]) +text([10.5], [28],'L6','HorizontalAlignment','center','fontsize',13) +text([10.5], [13],'Sham','HorizontalAlignment','center','fontsize',13) +box off +annotation('line',[0.26 0.32],[0.73 0.73],'LineWidth',1); +text([0.5], [24],'p=0.011','HorizontalAlignment','center','fontsize',9) +annotation('line',[0.44 0.5],[0.60 0.60],'LineWidth',1); +text([4.5], [19],'p=0.12','HorizontalAlignment','center','fontsize',9) +legend('Sham Induction','L6 Induction') +set(legend,'Position',[0.3 0.85 0.05 0.05]) +%insets1 +axes('Position',[0.60 0.55 0.27 0.27]) +labelsL6={'\leftarrow\rightarrow(68%) ','\uparrow(21%)','\downarrow(10%)'} +P1=pie([217 68 33],[0 1 1],labelsL6) +colormap(ColorPie) +P1(6).Position=[0.9 1.3 0] +P1(6).FontWeight='bold' +P1(4).Position=[1.5 0.7 0] +P1(4).FontWeight='bold' +P1(2).Position=[-0.0 -0.4 0] +hold off + +box off +%inset 2 +axes('Position',[0.6 0.15 0.27 0.27]) +labelsMock={'\leftarrow\rightarrow(72%) ','\uparrow(13%)','\downarrow(15%)'} +P2=pie([180 33 38],[0 1 1],labelsMock) + +P2(6).Position=[0.85 1.2 0] +P2(6).FontWeight='bold' +P2(4).Position=[1.5 0.5 0] +P2(4).FontWeight='bold' +P2(2).Position=[-0.0 -0.4 0] + +box off \ No newline at end of file diff --git a/Jesus/RatiosComparisonS1VPMTRN.m b/Jesus/RatiosComparisonS1VPMTRN.m new file mode 100644 index 0000000..f9f1814 --- /dev/null +++ b/Jesus/RatiosComparisonS1VPMTRN.m @@ -0,0 +1,84 @@ +%S1 L200 +distL200OnvsControlOnS1=hist(AllL200S1,800)-hist(AllControlOnS1,800); +distL1OnvsControlOnS1=hist(AllL1S1,800)-hist(AllControlOnS1,800); +barPositions=1:size(distL200OnvsControlOnS1,2); +pFl=distL200OnvsControlOnS1>=0; NFl=distL200OnvsControlOnS1<0; +%L200-control s1 +figure(1); bar(barPositions(pFl),distL200OnvsControlOnS1(pFl),'FaceColor','g','DisplayName','Facilitation'); +hold on; +bar(barPositions(NFl),distL200OnvsControlOnS1(NFl),'FaceColor','r','DisplayName','Depression'); +legend +xticks('auto') +xlabel('bin_{0.5ms}'); ylabel('difference Number of Spikes'); +title('Ratio Control-Laser200 On respone S1') +xticklabels({'-250', '-200','150','-100','-50','0','50','100','150'}) +%saveas(figure(1),[pwd '/New figures Jesus/RatiosOn/ControlOnvsL200On.emf']); +%saveas(figure(1),[pwd '/New figures Jesus/RatiosOn/ControlOnvsL200On.pdf']); +%L1 +barPositions=1:size(distL1OnvsControlOnS1,2); +pFl=distL1OnvsControlOnS1>=0; NFl=distL1OnvsControlOnS1<0; +figure(2); +bar(barPositions(pFl),distL1OnvsControlOnS1(pFl),'FaceColor','g','DisplayName','Facilitation'); +hold on; bar(barPositions(NFl),distL1OnvsControlOnS1(NFl),'FaceColor','r','DisplayName','Depression'); +legend +xticks('auto') +xlabel('bin_{0.5ms}'); ylabel('difference Number of Spikes'); +title('Ratio Control-Laser1 On response S1') +saveas(figure(5),[pwd '/New figures Jesus/RatiosOn/ControlOnvsL1On.emf']); +saveas(figure(5),[pwd '/New figures Jesus/RatiosOn/ControlOnvsL1On.pdf']); +xticklabels({'-250', '-200','150','-100','-50','0','50','100','150'}) +%% TRN +distL200OnvsControlOnTRN=hist(AllL200TRN,800)-hist(AllControlOnTRN,800); +distL1OnvsControlOnTRN=hist(AllL1TRN,800)-hist(AllControlOnTRN,800); +barPositions=1:size(distL200OnvsControlOnTRN,2); +pFl=distL200OnvsControlOnTRN>=0; NFl=distL200OnvsControlOnTRN<0; %%L200 +figure(3); bar(barPositions(pFl),distL200OnvsControlOnTRN(pFl),'FaceColor','g','DisplayName','Facilitation'); +hold on; +bar(barPositions(NFl),distL200OnvsControlOnTRN(NFl),'FaceColor','r','DisplayName','Depression'); +legend +xticks('auto') +xlabel('bin_{0.5ms}'); ylabel('difference Number of Spikes'); +title('Ratio Control-Laser200 On respone TRN') +xticklabels({'-250', '-200','150','-100','-50','0','50','100','150'}) +%saveas(figure(1),[pwd '/New figures Jesus/RatiosOn/ControlOnvsL200On.emf']); +%saveas(figure(1),[pwd '/New figures Jesus/RatiosOn/ControlOnvsL200On.pdf']); +barPositions=1:size(distL1OnvsControlOnTRN,2); +pFl=distL1OnvsControlOnTRN>=0; NFl=distL1OnvsControlOnTRN<0; +figure(4); +bar(barPositions(pFl),distL1OnvsControlOnTRN(pFl),'FaceColor','g','DisplayName','Facilitation'); +hold on; bar(barPositions(NFl),distL1OnvsControlOnTRN(NFl),'FaceColor','r','DisplayName','Depression'); +legend +xticks('auto') +xlabel('bin_{0.5ms}'); ylabel('different Number of Spikes'); +title('Ratio Control-Laser1 On response TRN') +%saveas(figure(5),[pwd '/New figures Jesus/RatiosOn/ControlOnvsL1On.emf']); +%saveas(figure(5),[pwd '/New figures Jesus/RatiosOn/ControlOnvsL1On.pdf']); +xticklabels({'-250', '-200','150','-100','-50','0','50','100','150'}) +%% VPM +distL200OnvsControlOnVPM=hist(AllL200VPM,800)-hist(AllControlOnVPM,800); +distL1OnvsControlOnVPM=hist(AllL1VPM,800)-hist(AllControlOnVPM,800); +barPositions=1:size(distL200OnvsControlOnVPM,2); +pFl=distL200OnvsControlOnVPM>=0; NFl=distL200OnvsControlOnVPM<0; +figure(5); +bar(barPositions(pFl),distL200OnvsControlOnVPM(pFl),'FaceColor','g','DisplayName','Facilitation'); +hold on; +bar(barPositions(NFl),distL200OnvsControlOnVPM(NFl),'FaceColor','r','DisplayName','Depression'); +legend +xticks('auto') +xlabel('bin_{0.5ms}'); ylabel('difference Number of Spikes'); +title('Ratio Control-Laser200 On respone VPM') +xticklabels({'-250', '-200','150','-100','-50','0','50','100','150'}) +%saveas(figure(1),[pwd '/New figures Jesus/RatiosOn/ControlOnvsL200On.emf']); +%saveas(figure(1),[pwd '/New figures Jesus/RatiosOn/ControlOnvsL200On.pdf']); +barPositions=1:size(distL1OnvsControlOnVPM,2); +pFl=distL1OnvsControlOnVPM>=0; NFl=distL1OnvsControlOnVPM<0; +figure(6); +bar(barPositions(pFl),distL1OnvsControlOnVPM(pFl),'FaceColor','g','DisplayName','Facilitation'); +hold on; bar(barPositions(NFl),distL1OnvsControlOnVPM(NFl),'FaceColor','r','DisplayName','Depression'); +legend +xticks('auto') +xlabel('bin_{0.5ms}'); ylabel('different Number of Spikes'); +title('Ratio Control-Laser1 On response VPM') +saveas(figure(5),[pwd '/New figures Jesus/RatiosOn/ControlOnvsL1On.emf']); +saveas(figure(5),[pwd '/New figures Jesus/RatiosOn/ControlOnvsL1On.pdf']); +xticklabels({'-250', '-200','150','-100','-50','0','50','100','150'}) diff --git a/Jesus/RatiosComparisonS1VPMTRNLaser1.m b/Jesus/RatiosComparisonS1VPMTRNLaser1.m new file mode 100644 index 0000000..2b10d9a --- /dev/null +++ b/Jesus/RatiosComparisonS1VPMTRNLaser1.m @@ -0,0 +1,165 @@ +distL1OnvsControlOnS1=hist(AllL1S1,800)-hist(AllControlOnS1,800); +distL1OnvsControlOnTRN=hist(AllL1TRN,800)-hist(AllControlOnTRN,800); +distL1OnvsControlOnVPM=hist(AllL1VPM,800)-hist(AllControlOnVPM,800); + +figure; +subplot(3,1,1); +barPositions=1:size(distL1OnvsControlOnS1,2); +pFl=distL1OnvsControlOnS1>=0; NFl=distL1OnvsControlOnS1<0; +%L200-control s1 +bar(barPositions(pFl),distL1OnvsControlOnS1(pFl),'FaceColor','g','DisplayName','Facilitation'); +hold on; +bar(barPositions(NFl),distL1OnvsControlOnS1(NFl),'FaceColor','r','DisplayName','Depression'); +legend +xticks('auto') +xlabel('bin_{0.5ms}'); ylabel('Counts'); +title('difference Whissker Control-Whisker&Laser delay -1ms On respone S1') +xticklabels({'-250', '-200','150','-100','-50','0','50','100','150'}); hold off + +subplot(3,1,2); +barPositions=1:size(distL1OnvsControlOnTRN,2); +pFl=distL1OnvsControlOnTRN>=0; NFl=distL1OnvsControlOnTRN<0; %%L200 +%figure(3); +bar(barPositions(pFl),distL1OnvsControlOnTRN(pFl),'FaceColor','g','DisplayName','Facilitation'); +hold on; +bar(barPositions(NFl),distL1OnvsControlOnTRN(NFl),'FaceColor','r','DisplayName','Depression'); +legend +xticks('auto') +xlabel('bin_{0.5ms}'); ylabel('Counts'); +title('Difference Whisker Control-Whisker&Laser delay -1ms On respone TRN') +xticklabels({'-250', '-200','150','-100','-50','0','50','100','150'}); hold off + +subplot(3,1,3); +barPositions=1:size(distL1OnvsControlOnVPM,2); +pFl=distL1OnvsControlOnVPM>=0; NFl=distL1OnvsControlOnVPM<0; +bar(barPositions(pFl),distL1OnvsControlOnVPM(pFl),'FaceColor','g','DisplayName','Facilitation'); +hold on; +bar(barPositions(NFl),distL1OnvsControlOnVPM(NFl),'FaceColor','r','DisplayName','Depression'); +legend +xticks('auto') +xlabel('bin_{0.5ms}'); ylabel('Counts'); +title('difference Whisker Control- Whisker&Laser delay -1ms On respone VPM') +xticklabels({'-250', '-200','150','-100','-50','0','50','100','150'}) +%% only on +distL1OnvsControlOnS1=hist(AllL1S1,800)-hist(AllControlOnS1,800); +distL1OnvsControlOnTRN=hist(AllL1TRN,800)-hist(AllControlOnTRN,800); +distL1OnvsControlOnVPM=hist(AllL1VPM,800)-hist(AllControlOnVPM,800); + +figure; +subplot(3,1,1); +barPositions=1:size(distL1OnvsControlOnS1,2); +pFl=distL1OnvsControlOnS1>=0; NFl=distL1OnvsControlOnS1<0; +%L200-control s1 +bar(barPositions(pFl),distL1OnvsControlOnS1(pFl),'FaceColor','g','DisplayName','Facilitation'); +hold on; +bar(barPositions(NFl),distL1OnvsControlOnS1(NFl),'FaceColor','r','DisplayName','Depression'); +legend +xticks('auto') +xlabel('bin_{0.5ms}'); ylabel('Counts'); +title('difference Whissker Control-Whisker&Laser delay -1ms On respone S1') +xticklabels({'-250', '-200','150','-100','-50','0','50','100','150'}); xlim([450 600]); hold off + +subplot(3,1,2); +barPositions=1:size(distL1OnvsControlOnTRN,2); +pFl=distL1OnvsControlOnTRN>=0; NFl=distL1OnvsControlOnTRN<0; %%L200 +%figure(3); +bar(barPositions(pFl),distL1OnvsControlOnTRN(pFl),'FaceColor','g','DisplayName','Facilitation'); +hold on; +bar(barPositions(NFl),distL1OnvsControlOnTRN(NFl),'FaceColor','r','DisplayName','Depression'); +legend +xticks('auto') +xlabel('bin_{0.5ms}'); ylabel('Counts'); +title('Difference Whisker Control-Whisker&Laser delay -1ms On respone TRN') +xticklabels({'-250', '-200','150','-100','-50','0','50','100','150'}); xlim([450 600]); hold off + +subplot(3,1,3); +barPositions=1:size(distL1OnvsControlOnVPM,2); +pFl=distL1OnvsControlOnVPM>=0; NFl=distL1OnvsControlOnVPM<0; +bar(barPositions(pFl),distL1OnvsControlOnVPM(pFl),'FaceColor','g','DisplayName','Facilitation'); +hold on; +bar(barPositions(NFl),distL1OnvsControlOnVPM(NFl),'FaceColor','r','DisplayName','Depression'); +legend +xticks('auto') +xlabel('bin_{0.5ms}'); ylabel('Counts'); +title('difference Whisker Control- Whisker&Laser delay -1ms On respone VPM') +xticklabels({'-250', '-200','150','-100','-50','0','50','100','150'});xlim([450 600]); +%% only on + +figure; +subplot(3,1,1); +barPositions=1:size(distL1OnvsControlOnS1,2); +pFl=distL1OnvsControlOnS1>=0; NFl=distL1OnvsControlOnS1<0; +%L200-control s1 +bar(barPositions(pFl),distL1OnvsControlOnS1(pFl),'FaceColor','g','DisplayName','Facilitation'); +hold on; +bar(barPositions(NFl),distL1OnvsControlOnS1(NFl),'FaceColor','r','DisplayName','Depression'); +legend +xticks('auto') +xlabel('bin_{0.5ms}'); ylabel('Counts'); +title('Difference Whisker Control- Whisker&Laser delay -1ms ON respone S1') +xticklabels({'-250', '-200','150','-100','-50','0','50','100','150'}); xlim([450 600]); hold off + +subplot(3,1,2); +barPositions=1:size(distL1OnvsControlOnTRN,2); +pFl=distL1OnvsControlOnTRN>=0; NFl=distL1OnvsControlOnTRN<0; %%L200 +%figure(3); +bar(barPositions(pFl),distL1OnvsControlOnTRN(pFl),'FaceColor','g','DisplayName','Facilitation'); +hold on; +bar(barPositions(NFl),distL1OnvsControlOnTRN(NFl),'FaceColor','r','DisplayName','Depression'); +legend +xticks('auto') +xlabel('bin_{0.5ms}'); ylabel('difference Number of Spikes'); +title('Difference Whisker Control- Whisker&Laser delay -1ms ON respone TRN') +xticklabels({'-250', '-200','150','-100','-50','0','50','100','150'}); xlim([450 600]);hold off + +subplot(3,1,3); +barPositions=1:size(distL1OnvsControlOnVPM,2); +pFl=distL1OnvsControlOnVPM>=0; NFl=distL1OnvsControlOnVPM<0; +bar(barPositions(pFl),distL1OnvsControlOnVPM(pFl),'FaceColor','g','DisplayName','Facilitation'); +hold on; +bar(barPositions(NFl),distL1OnvsControlOnVPM(NFl),'FaceColor','r','DisplayName','Depression'); +legend +xticks('auto') +xlabel('bin_{0.5ms}'); ylabel('difference Number of Spikes'); +title('Difference Whisker Control- Whisker&Laser delay -1ms ON respone VPM') +xticklabels({'-250', '-200','150','-100','-50','0','50','100','150'});xlim([450 600]); +%% off + +figure; +subplot(3,1,1); +barPositions=1:size(distL1OnvsControlOnS1,2); +pFl=distL1OnvsControlOnS1>=0; NFl=distL1OnvsControlOnS1<0; +%L200-control s1 +bar(barPositions(pFl),distL1OnvsControlOnS1(pFl),'FaceColor','g','DisplayName','Facilitation'); +hold on; +bar(barPositions(NFl),distL1OnvsControlOnS1(NFl),'FaceColor','r','DisplayName','Depression'); +legend +xticks('auto') +xlabel('bin_{0.5ms}'); ylabel('Counts'); +title('Difference Whisker Control- Whisker&Laser delay -1ms OFF respone S1') +xticklabels({'-250', '-200','150','-100','-50','0','50','100','150'}); xlim([650 800]); hold off + +subplot(3,1,2); +barPositions=1:size(distL1OnvsControlOnTRN,2); +pFl=distL1OnvsControlOnTRN>=0; NFl=distL1OnvsControlOnTRN<0; %%L1 +%figure(3); +bar(barPositions(pFl),distL1OnvsControlOnTRN(pFl),'FaceColor','g','DisplayName','Facilitation'); +hold on; +bar(barPositions(NFl),distL1OnvsControlOnTRN(NFl),'FaceColor','r','DisplayName','Depression'); +legend +xticks('auto') +xlabel('bin_{0.5ms}'); ylabel('Counts'); +title('Difference Whisker Control- Whisker&Laser delay -1ms OFF respone TRN') +xticklabels({'-250', '-200','150','-100','-50','0','50','100','150'}); xlim([650 800]);hold off + +subplot(3,1,3); +barPositions=1:size(distL1OnvsControlOnVPM,2); +pFl=distL1OnvsControlOnVPM>=0; NFl=distL1OnvsControlOnVPM<0; +bar(barPositions(pFl),distL1OnvsControlOnVPM(pFl),'FaceColor','g','DisplayName','Facilitation'); +hold on; +bar(barPositions(NFl),distL1OnvsControlOnVPM(NFl),'FaceColor','r','DisplayName','Depression'); +legend +xticks('auto') +xlabel('bin_{0.5ms}'); ylabel('Counts'); +title('Difference Whisker Control- Whisker&Laser delay -1ms OFF respone VPM') +xticklabels({'-250', '-200','150','-100','-50','0','50','100','150'});xlim([650 800]); \ No newline at end of file diff --git a/Jesus/RatiosTRNVPMS1Subplots.m b/Jesus/RatiosTRNVPMS1Subplots.m new file mode 100644 index 0000000..1c1a866 --- /dev/null +++ b/Jesus/RatiosTRNVPMS1Subplots.m @@ -0,0 +1,137 @@ +AllL200S1=ClustersL200OnsetS1(:);AllL200TRN=ClustersL200OnsetTRN(:); AllL200VPM=ClustersL200OnsetVPM(:); +AllControlOnS1=ClustersControlOnsetS1(:);AllControlOnTRN=ClustersControlOnsetTRN(:); AllControlOnVPM=ClustersControlOnsetVPM(:); + +distL200OnvsControlOnS1=(hist(AllL200S1,1400)./300)./(hist(AllControlOnS1,1400)./150); +distL200OnvsControlOnS1=(distL200OnvsControlOnS1-1)*100; + +distL200OnvsControlOnTRN=(hist(AllL200TRN,1400)./300)./(hist(AllControlOnTRN,1400)./150); + distL200OnvsControlOnTRN=(distL200OnvsControlOnTRN-1)*100 + +distL200OnvsControlOnVPM=(hist(AllL200VPM,1400)./300)./(hist(AllControlOnVPM,1400)./150);(distL200OnvsControlOnVPM-1)*100 + distL200OnvsControlOnVPM=(distL200OnvsControlOnVPM-1)*100 +figure; +subplot(4,1,1); +barPositions=1:size(distL200OnvsControlOnS1,2); +pFl=distL200OnvsControlOnS1>=0; NFl=distL200OnvsControlOnS1<0; +%L200-control s1 +bar(barPositions(pFl),distL200OnvsControlOnS1(pFl),'FaceColor','g','DisplayName','Potentiation'); +hold on; +bar(barPositions(NFl),distL200OnvsControlOnS1(NFl),'FaceColor','r','DisplayName','Depression'); +legend +xticks('auto') +xlabel('bin_{1ms}'); ylabel('Ratio %'); +title('Ratio AfterInduction/Control respone S1') +xticklabels({'-0.2', '0','0.2','0.4','0.6','0.8','1','1.2',}); hold off + +subplot(4,1,2); +barPositions=1:size(distL200OnvsControlOnTRN,2); +pFl=distL200OnvsControlOnTRN>=0; NFl=distL200OnvsControlOnTRN<0; %%L200 +%figure(3); +bar(barPositions(pFl),distL200OnvsControlOnTRN(pFl),'FaceColor','g','DisplayName','Potentiation'); +hold on; +bar(barPositions(NFl),distL200OnvsControlOnTRN(NFl),'FaceColor','r','DisplayName','Depression'); +legend +xticks('auto') +xlabel('bin_{1ms}'); ylabel('Ratio %'); +title('Ratio AferInduction/Control respone TRN') +xticklabels({'-0.2', '0','0.2','0.4','0.6','0.8','1','1.2',}); hold off + +subplot(4,1,3); +barPositions=1:size(distL200OnvsControlOnVPM,2); +pFl=distL200OnvsControlOnVPM>=0; NFl=distL200OnvsControlOnVPM<0; +bar(barPositions(pFl),distL200OnvsControlOnVPM(pFl),'FaceColor','g','DisplayName','Potentiation'); +hold on; +bar(barPositions(NFl),distL200OnvsControlOnVPM(NFl),'FaceColor','r','DisplayName','Depression'); +legend +xticks('auto') +xlabel('bin_{1ms}'); ylabel('Ratio %'); +title('Ratio AfterInduction/Control respone VPM') +xticklabels({'-0.2', '0','0.2','0.4','0.6','0.8','1','1.2',}); hold off +saveFigure(figure(1),['Z:/Jesus\LTP_Jesus_Emilio/PopFigures/TRN_VPM_S1figures/ratiosCircuitS1_TRN_VPM']); +subplot(4,1,4); +plot(TimePsth,histcounts(ClustersControlOnsetVPM,1400));xlim([-200 1200]) + +%% only on +distL200OnvsControlOnS1=hist(AllL200S1,800)-hist(AllControlOnS1,800); +distL200OnvsControlOnTRN=hist(AllL200TRN,800)-hist(AllControlOnTRN,800); +distL200OnvsControlOnVPM=hist(AllL200VPM,800)-hist(AllControlOnVPM,800); +figure; +subplot(3,1,1); +barPositions=1:size(distL200OnvsControlOnS1,2); +pFl=distL200OnvsControlOnS1>=0; NFl=distL200OnvsControlOnS1<0; +%L200-control s1 +bar(barPositions(pFl),distL200OnvsControlOnS1(pFl),'FaceColor','g','DisplayName','Facilitation'); +hold on; +bar(barPositions(NFl),distL200OnvsControlOnS1(NFl),'FaceColor','r','DisplayName','Depression'); +legend +xticks('auto') +xlabel('bin_{0.5ms}'); ylabel('difference Number of Spikes'); +title('Ratio Control-Laser200 On respone S1') +xticklabels({'-250', '-200','150','-100','-50','0','50','100','150'}); xlim([450 600]); hold off + +subplot(3,1,2); +barPositions=1:size(distL200OnvsControlOnTRN,2); +pFl=distL200OnvsControlOnTRN>=0; NFl=distL200OnvsControlOnTRN<0; %%L200 +%figure(3); +bar(barPositions(pFl),distL200OnvsControlOnTRN(pFl),'FaceColor','g','DisplayName','Facilitation'); +hold on; +bar(barPositions(NFl),distL200OnvsControlOnTRN(NFl),'FaceColor','r','DisplayName','Depression'); +legend +xticks('auto') +xlabel('bin_{0.5ms}'); ylabel('difference Number of Spikes'); +title('Ratio Control-Laser200 On respone TRN') +xticklabels({'-250', '-200','150','-100','-50','0','50','100','150'}); xlim([450 600]);hold off + +subplot(3,1,3); +barPositions=1:size(distL200OnvsControlOnVPM,2); +pFl=distL200OnvsControlOnVPM>=0; NFl=distL200OnvsControlOnVPM<0; +bar(barPositions(pFl),distL200OnvsControlOnVPM(pFl),'FaceColor','g','DisplayName','Facilitation'); +hold on; +bar(barPositions(NFl),distL200OnvsControlOnVPM(NFl),'FaceColor','r','DisplayName','Depression'); +legend +xticks('auto') +xlabel('bin_{0.5ms}'); ylabel('difference Number of Spikes'); +title('Ratio Control-Laser200 On respone VPM') +xticklabels({'-250', '-200','150','-100','-50','0','50','100','150'});xlim([450 600]); +%% off +distL200OnvsControlOnS1=hist(AllL200S1,800)-hist(AllControlOnS1,800); +distL200OnvsControlOnTRN=hist(AllL200TRN,800)-hist(AllControlOnTRN,800); +distL200OnvsControlOnVPM=hist(AllL200VPM,800)-hist(AllControlOnVPM,800); +figure; +subplot(3,1,1); +barPositions=1:size(distL200OnvsControlOnS1,2); +pFl=distL200OnvsControlOnS1>=0; NFl=distL200OnvsControlOnS1<0; +%L200-control s1 +bar(barPositions(pFl),distL200OnvsControlOnS1(pFl),'FaceColor','g','DisplayName','Facilitation'); +hold on; +bar(barPositions(NFl),distL200OnvsControlOnS1(NFl),'FaceColor','r','DisplayName','Depression'); +legend +xticks('auto') +xlabel('bin_{0.5ms}'); ylabel('difference Number of Spikes'); +title('Ratio Control-Laser200 OFF respone S1') +xticklabels({'-250', '-200','150','-100','-50','0','50','100','150'}); xlim([650 800]); hold off + +subplot(3,1,2); +barPositions=1:size(distL200OnvsControlOnTRN,2); +pFl=distL200OnvsControlOnTRN>=0; NFl=distL200OnvsControlOnTRN<0; %%L200 +%figure(3); +bar(barPositions(pFl),distL200OnvsControlOnTRN(pFl),'FaceColor','g','DisplayName','Facilitation'); +hold on; +bar(barPositions(NFl),distL200OnvsControlOnTRN(NFl),'FaceColor','r','DisplayName','Depression'); +legend +xticks('auto') +xlabel('bin_{0.5ms}'); ylabel('difference Number of Spikes'); +title('Ratio Control-Laser200 OFF respone TRN') +xticklabels({'-250', '-200','150','-100','-50','0','50','100','150'}); xlim([650 800]);hold off + +subplot(3,1,3); +barPositions=1:size(distL200OnvsControlOnVPM,2); +pFl=distL200OnvsControlOnVPM>=0; NFl=distL200OnvsControlOnVPM<0; +bar(barPositions(pFl),distL200OnvsControlOnVPM(pFl),'FaceColor','g','DisplayName','Facilitation'); +hold on; +bar(barPositions(NFl),distL200OnvsControlOnVPM(NFl),'FaceColor','r','DisplayName','Depression'); +legend +xticks('auto') +xlabel('bin_{0.5ms}'); ylabel('difference Number of Spikes'); +title('Ratio Control-Laser200 OFF respone VPM') +xticklabels({'-250', '-200','150','-100','-50','0','50','100','150'});xlim([650 800]); \ No newline at end of file diff --git a/Jesus/Statistics_VPM_Mock_vs_L6.m b/Jesus/Statistics_VPM_Mock_vs_L6.m new file mode 100644 index 0000000..4617f92 --- /dev/null +++ b/Jesus/Statistics_VPM_Mock_vs_L6.m @@ -0,0 +1,586 @@ +%% statistics +%fisher exact test and tabular table +PotT=table([90;21],[355;233],'RowNames',{'L6','Mock'},'VariableNames',{'Pot','NoPot'}) +XModNoMod=table([101;71],[217;150],'RowNames',{'L6','Mock'},'VariableNames',{'Mod','NoMod'}) +fishertest(xPotNoPot) + +%%chi2test manual + +observed=[PotT.Pot(1) PotT.NoPot(1) PotT.Pot(2) PotT.NoPot(2)] +expected=[] +bigTotal=sum(sum(PotT{:,:})) + + %% evoked +%Control + %l6 + FRcontEVL6=nan(318,3) + FRcontEVL6(1:size(vpmL6Evok.evokAll(:,1),1),1) = vpmL6Evok.evokAll(:,1) + FRcontEVL6(1:size(vpmL6Evok.rPot(:,1),1),2) = vpmL6Evok.rPot(:,1) + FRcontEVL6(1:size(vpmL6Evok.rDep(:,1),1),3) = vpmL6Evok.rDep(:,1) + %mock + FRcontEVMock=nan(318,3) + FRcontEVMock(1:size(vpmMockEVStrtR.All_Resp(:,1),1),1) = vpmMockEVStrtR.All_Resp(:,1) + FRcontEVMock(1:size(vpmMockEVStrtR.rPot(:,1),1),2) = vpmMockEVStrtR.rPot(:,1) + FRcontEVMock(1:size(vpmMockEVStrtR.rDep(:,1),1),3) = vpmMockEVStrtR.rDep(:,1) + %Afterinduction + %l6 + FRAIEVL6=nan(318,3) + FRAIEVL6(1:size(vpmL6Evok.evokAll(:,1),1),1) = vpmL6Evok.evokAll(:,2) + FRAIEVL6(1:size(vpmL6Evok.rPot(:,1),1),2) = vpmL6Evok.rPot(:,2) + FRAIEVL6(1:size(vpmL6Evok.rDep(:,1),1),3) = vpmL6Evok.rDep(:,2) + %mock + FRAIEVMock=nan(318,3) + FRAIEVMock(1:size(vpmMockEVStrtR.All_Resp(:,1),1),1) = vpmMockEVStrtR.All_Resp(:,2) + FRAIEVMock(1:size(vpmMockEVStrtR.rPot(:,1),1),2) = vpmMockEVStrtR.rPot(:,2) + FRAIEVMock(1:size(vpmMockEVStrtR.rDep(:,1),1),3) = vpmMockEVStrtR.rDep(:,2) + %% spontaneous + %control l6 + FRcontSPL6=nan(318,3) + FRcontSPL6(1:size(vpmL6spont.evokAll(:,1),1),1) = vpmL6spont.evokAll(:,1) + FRcontSPL6(1:size(vpmL6spont.rPot(:,1),1),2) = vpmL6spont.rPot(:,1) + FRcontSPL6(1:size(vpmL6spont.rDep(:,1),1),3) = vpmL6spont.rDep(:,1) + %control Mock + FRcontSPMock=nan(318,3) + FRcontSPMock(1:size(vpmMockSPstrR.All_Resp(:,1),1),1) = vpmMockSPstrR.All_Resp(:,1) + FRcontSPMock(1:size(vpmMockSPstrR.rPot(:,1),1),2) = vpmMockSPstrR.rPot(:,1) + FRcontSPMock(1:size(vpmMockSPstrR.rDep(:,1),1),3) = vpmMockSPstrR.rDep(:,1) + %afterinduction L6 + FRAISPL6=nan(318,3) + FRAISPL6(1:size(vpmL6spont.evokAll(:,1),1),1) = vpmL6spont.evokAll(:,1) + FRAISPL6(1:size(vpmL6spont.rPot(:,1),1),2) = vpmL6spont.rPot(:,1) + FRAISPL6(1:size(vpmL6spont.rDep(:,1),1),3) = vpmL6spont.rDep(:,1) + % afterInduction Mock + FRAISPMock=nan(318,3) + FRAISPMock(1:size(vpmMockSPstrR.All_Resp(:,1),1),1) = vpmMockSPstrR.All_Resp(:,2) + FRAISPMock(1:size(vpmMockSPstrR.rPot(:,1),1),2) = vpmMockSPstrR.rPot(:,2) + FRAISPMock(1:size(vpmMockSPstrR.rDep(:,1),1),3) = vpmMockSPstrR.rDep(:,2) + + + %ALL EVoked and spontaneous Matrix mock&L6 + FREVCAIMOCK_L6=cat(2,FRcontEVL6,FRcontEVMock,FRAIEVL6,FRAIEVMock); + FRSPCAIMOCK_L6=cat(2,FRcontSPL6,FRcontSPMock,FRAISPL6,FRAIEVMock); + %names for Evoked groups + nameEVCL6=cat(2,repmat({'L6contrlEvokALL'},318,1),repmat({'L6contrlEvokPOT'},318,1)... + ,repmat({'L6contrlEvokDEP'},318,1)) + nameEVAIL6=cat(2,repmat({'L6AfterIEvokALL'},318,1),repmat({'L6AfterIEvokPOT'},318,1)... + ,repmat({'L6AfterIEvokDEP'},318,1)) + nameEVCMock=cat(2,repmat({'MockContolEvokALL'},318,1),repmat({'MockcontrlEvokPOT'},318,1)... + ,repmat({'MockcontrlEvokDEP'},318,1)) + nameEVAIMock=cat(2,repmat({'MockAfterIEvokALL'},318,1),repmat({'MockAfterIEvokPOT'},318,1)... + ,repmat({'MockAfterIEvokDEP'},318,1)) + %concat names evoked + nameall=cat(2,nameEVCL6,nameEVCMock,nameEVAIL6,nameEVAIMock) + %names for spontaneous groups + nameSPCL6=cat(2,repmat({'L6contrlSPontALL'},318,1),repmat({'L6contrlSPpontPOT'},318,1)... + ,repmat({'L6contrlSPontDEP'},318,1)) + nameSPCMock=cat(2,repmat({'MockContrlSPontALL'},318,1),repmat({'MockcontrlSPontPOT'},318,1)... + ,repmat({'MockcontrolSPontDEP'},318,1)) + nameSPAIL6=cat(2,repmat({'L6AfterISPontALL'},318,1),repmat({'L6AfterISPontPOT'},318,1)... + ,repmat({'L6AfterISPontDEP'},318,1)) + nameSPAIMock=cat(2,repmat({'MockAfterISPontALL'},318,1),repmat({'MockAfterISPontPOT'},318,1)... + ,repmat({'MockAfterISPontDEP'},318,1)) + nameSPall=cat(2,nameSPCL6,nameSPCMock,nameSPAIL6,nameSPAIMock) + + FREV_SPCAIMOCK_L6=cat(2,FREVCAIMOCK_L6,FRSPCAIMOCK_L6) + nameSP_EVall=cat(2,nameall,nameSPall); + + [p h stats]=kruskalwallis(FREV_SPCAIMOCK_L6(:),nameSP_EVall(:),'on') %kruskal wallis + [c m h]=multcompare(stats,'CType','dunn-sidak') + + MatSign=nan(6,6) + for i=1:size(c,1) + a=c(i,1);b=c(i,2); + MatSign(a,b)=c(i,6) + end + for i=1:size(c,1) + a=c(i,1);b=c(i,2); + MatSign(a,b)=c(i,6) + end + %% + %MatSign=nan(24,24); + for i=1:size(c,1) + a=c(i,1);b=c(i,2); + MatSign(b,a)=c(i,6) + end + MatSignStep = (MatSign < 0.05) + (MatSign < 0.01) + (MatSign < 0.001); + range(MatSignStep) + %% Diff change statistics + %L6 evoked + DiffEVAllL6=vpmL6Evok.evokAll(:,2)-vpmL6Evok.evokAll(:,1); + DiffEVPotL6=vpmL6Evok.rPot(:,2)-vpmL6Evok.rPot(:,1); + DIffEVDepL6=vpmL6Evok.rDep(:,2)-vpmL6Evok.rDep(:,1); + %Mock evoked + DiffEVAllMock=vpmMockEVStrtR.All_Resp(:,2)-vpmMockEVStrtR.All_Resp(:,1); + DiffEVPotMock=vpmMockEVStrtR.rPot(:,2)-vpmMockEVStrtR.rPot(:,1); + DIffEVDepMock=vpmMockEVStrtR.rDep(:,2)-vpmMockEVStrtR.rDep(:,1); + + %Spontaneous L6 + DiffSPallL6=vpmL6spont.evokAll(:,2)-vpmL6spont.evokAll(:,1); + DiffSPPotL6=vpmL6spont.rPot(:,2)-vpmL6spont.rPot(:,1); + DiffSPDepL6=vpmL6spont.rDep(:,2)-vpmL6spont.rDep(:,1); + + %spontaneous mock + + DiffSPallMock=vpmMockSPstrR.All_Resp(:,2)-vpmMockSPstrR.All_Resp(:,1); + DiffSPPotMock=vpmMockSPstrR.rPot(:,2)-vpmMockSPstrR.rPot(:,1); + DiffSPDepMock=vpmMockSPstrR.rDep(:,2)-vpmMockSPstrR.rDep(:,1); + + DiffEvSpL6Mock =nan(318,12) + DiffEvSpL6Mock(1:size(DiffEVAllL6),1)=DiffEVAllL6 + DiffEvSpL6Mock(1:size(DiffEVPotL6),2)=DiffEVPotL6 + DiffEvSpL6Mock(1:size(DIffEVDepL6),3)=DIffEVDepL6 + DiffEvSpL6Mock(1:size(DiffEVAllMock),4)=DiffEVAllMock + DiffEvSpL6Mock(1:size(DiffEVPotMock),5)=DiffEVPotMock + DiffEvSpL6Mock(1:size(DIffEVDepMock),6)=DIffEVDepMock + DiffEvSpL6Mock(1:size(DiffSPallL6),7)=DiffSPallL6 + DiffEvSpL6Mock(1:size(DiffSPPotL6),8)=DiffSPPotL6 + DiffEvSpL6Mock(1:size(DiffSPDepL6),9)=DiffSPDepL6 + DiffEvSpL6Mock(1:size(DiffSPallMock),10)=DiffSPallMock + DiffEvSpL6Mock(1:size(DiffSPPotMock),11)=DiffSPPotMock + DiffEvSpL6Mock(1:size(DiffSPDepMock),12)=DiffSPDepMock + %only evoked + DiffEvL6Mock=nan(318,6) + DiffEvL6Mock(1:size(DiffEVAllL6),1)=DiffEVAllL6 + DiffEvL6Mock(1:size(DiffEVPotL6),2)=DiffEVPotL6 + DiffEvL6Mock(1:size(DIffEVDepL6),3)=DIffEVDepL6 + DiffEvL6Mock(1:size(DiffSPallL6),4)=DiffSPallL6 + DiffEvL6Mock(1:size(DiffSPPotL6),5)=DiffSPPotL6 + DiffEvL6Mock(1:size(DiffSPDepL6),6)=DiffSPDepL6 + %only Spontaneous + DiffSpL6Mock=nan(318,6) + DiffSpL6Mock(1:size(DiffSPallL6),1)=DiffSPallL6 + DiffSpL6Mock(1:size(DiffSPPotL6),2)=DiffSPPotL6 + DiffSpL6Mock(1:size(DiffSPDepL6),3)=DiffSPDepL6 + DiffSpL6Mock(1:size(DiffSPallMock),4)=DiffSPallMock + DiffSpL6Mock(1:size(DiffSPPotMock),5)=DiffSPPotMock + DiffSpL6Mock(1:size(DiffSPDepMock),6)=DiffSPDepMock + + + + + %name diff evoked l6 + nameEVdiffL6=cat(2,repmat({'L6EVokDiffALL'},318,1),repmat({'L6EvokDiffPOT'},318,1)... + ,repmat({'L6EVokDiffDEP'},318,1)) + %name diff evoked mock + nameEVdiffMock=cat(2,repmat({'MockEvokDiffALL'},318,1),repmat({'MockEvokDiffPOT'},318,1)... + ,repmat({'MockEvokDiffDEP'},318,1)) + %name diff sp l6 + nameSPdiffL6=cat(2,repmat({'L6SpontDiffALL'},318,1),repmat({'L6SpontDiffPOT'},318,1)... + ,repmat({'L6SpontDiffDEP'},318,1)) + %name diff sp mock + nameSPdiffMock=cat(2,repmat({'MockSPontDiffALL'},318,1),repmat({'MockSpontDiffPOT'},318,1)... + ,repmat({'MockSpontDiffDEP'},318,1)) + + nameDiffAll=cat(2,nameEVdiffL6,nameEVdiffMock,nameSPdiffL6,nameSPdiffMock) + %% DiffEvSPL6Mock all spont and evok comparisons + MatSignwilkEVSP=nan(12,12); + for x = 1:size(DiffEvSpL6Mock,2) + a=DiffEvSpL6Mock(:,x); + for y = x+1:size(DiffEvSpL6Mock,2) + b=DiffEvSpL6Mock(:,y); + fprintf(1, 'x:%d, y:%d\n', x, y) + MatSignwilkEVSP(y,x)=ranksum(a,b,'tail','right') + end + end + MatSignStepEVSP= (MatSignwilkEVSP<=0.05) + (MatSignwilkEVSP<=0.01) + (MatSignwilkEVSP<=0.001) + +NodatEVSP=isnan(MatSignwilkEVSP)| MatSignwilkEVSP>=0.05001 +MatSignStepEVSP(NodatEVSP)=NaN + +h1=heatmap(MatSignStepEVSP,'YDisplayLabels',nameDiffAll(1,:),'XDisplayLabels',nameDiffAll(1,:),'MissingDataColor','w','GridVisible','off') + + + +testCOlor=[0 0 0;0.2 0.2 0.2; 0.4 0.4 0.4] +colormap(testCOlor) +%ax=axes; +%ax.Color='none' +%plot( +title('Paired ranksum comparisons L6-VPM vs Mock-VPM') +options=struct(gca) +cb1=options.Colorbar; +cb1.Ticks=[1.3 2 2.7] +cb1.TickLabels={'*','**','***'} +ax3=options.Axes +ax3.YDir='normal' + + + %% + MatSignwilkEV=nan(6,6); + for x = 1:size(DiffEvL6Mock,2) + a=DiffEvL6Mock(:,x); + for y = x+1:size(DiffEvL6Mock,2) + b=DiffEvL6Mock(:,y); + fprintf(1, 'x:%d, y:%d\n', x, y) + MatSignwilkEV(y,x)=ranksum(a,b,'tail','right') + end + end + %% + MatSignwilkSP=nan(6,6); + for r = 1:size(DiffSpL6Mock,2) + c=DiffSpL6Mock(:,r); + for v = r+1:size(DiffSpL6Mock,2) + d=DiffSpL6Mock(:,v); + fprintf(1, 'r:%d, v:%d\n', r, v) + MatSignwilkSP(v,r)=ranksum(c,d,'tail','right') + end + end + + + + +MatSignStepEV= (MatSignwilkEV<=0.05) + (MatSignwilkEV<=0.01) + (MatSignwilkEV<=0.001) +Nodat=isnan(MatSignwilkEV)| MatSignwilkEV>=0.05001 +MatSignStepEV(Nodat)=NaN + +MatSignStepSP= (MatSignwilkSP<=0.05) + (MatSignwilkSP<=0.01) + (MatSignwilkSP<=0.001) +NodatSp=isnan(MatSignwilkSP)| MatSignwilkSP>=0.05001 +MatSignStepSP(NodatSp)=NaN + +nameDiffAllEv=nameDiffAll(1,[1:6]); +nameDiffAllSP=nameDiffAll(1,[7:12]); + +figure +subplot(1,2,1) +h1=heatmap(MatSignStepEV,'YDisplayLabels',nameDiffAllEv,'XDisplayLabels',nameDiffAllEv,... + 'MissingDataColor','w','GridVisible','off') +testCOlor=[0 1 0;0 0.2 0.2; 1 0 0] +colormap(testCOlor) +%ax=axes; +%ax.Color='none' +%plot( +title('Evoked Paired ranksum comparisons L6 vs Mock') +options=struct(gca) +cb1=options.Colorbar; + +colorbar off +ax3=options.Axes +ax3.YDir='normal' +subplot(1,2,2) +h2=heatmap(MatSignStepSP,'YDisplayLabels',nameDiffAllSP,'XDisplayLabels',nameDiffAllSP,... + 'MissingDataColor','w','GridVisible','off') +testCOlor=[0 0 0;0.2 0.2 0.2; 0.4 0.4 0.4] +colormap(testCOlor) +%ax=axes; +%ax.Color='none' +%plot( +title('Spontaneous Paired ranksum comparisons L6 vs Mock') +options=struct(gca) +cb1=options.Colorbar; +cb1.Ticks=[0 1 4] +cb1.TickLabels={'*','**','***'} +colorbar off +ax3=options.Axes +ax3.YDir='normal' +%% now with non modulated clusters +%% Diff change statistics + %L6 evoked + DiffEVAllL6=vpmL6Evok.evokAll(:,2)-vpmL6Evok.evokAll(:,1); + DiffEVPotL6=vpmL6Evok.rPot(:,2)-vpmL6Evok.rPot(:,1); + DIffEVDepL6=vpmL6Evok.rDep(:,2)-vpmL6Evok.rDep(:,1); + %Mock evoked + DiffEVAllMock=vpmMockEVStrtR.All_Resp(:,2)-vpmMockEVStrtR.All_Resp(:,1); + DiffEVPotMock=vpmMockEVStrtR.rPot(:,2)-vpmMockEVStrtR.rPot(:,1); + DIffEVDepMock=vpmMockEVStrtR.rDep(:,2)-vpmMockEVStrtR.rDep(:,1); + + %Spontaneous L6 + DiffSPallL6=vpmL6spont.evokAll(:,2)-vpmL6spont.evokAll(:,1); + DiffSPPotL6=vpmL6spont.rPot(:,2)-vpmL6spont.rPot(:,1); + DiffSPDepL6=vpmL6spont.rDep(:,2)-vpmL6spont.rDep(:,1); + + %spontaneous mock + + DiffSPallMock=vpmMockSPstrR.All_Resp(:,2)-vpmMockSPstrR.All_Resp(:,1); + DiffSPPotMock=vpmMockSPstrR.rPot(:,2)-vpmMockSPstrR.rPot(:,1); + DiffSPDepMock=vpmMockSPstrR.rDep(:,2)-vpmMockSPstrR.rDep(:,1); + + DiffEvSpL6Mock =nan(318,12) + DiffEvSpL6Mock(1:size(DiffEVAllL6),1)=DiffEVAllL6 + DiffEvSpL6Mock(1:size(DiffEVPotL6),2)=DiffEVPotL6 + DiffEvSpL6Mock(1:size(DIffEVDepL6),3)=DIffEVDepL6 + DiffEvSpL6Mock(1:size(DiffEVAllMock),4)=DiffEVAllMock + DiffEvSpL6Mock(1:size(DiffEVPotMock),5)=DiffEVPotMock + DiffEvSpL6Mock(1:size(DIffEVDepMock),6)=DIffEVDepMock + DiffEvSpL6Mock(1:size(DiffSPallL6),7)=DiffSPallL6 + DiffEvSpL6Mock(1:size(DiffSPPotL6),8)=DiffSPPotL6 + DiffEvSpL6Mock(1:size(DiffSPDepL6),9)=DiffSPDepL6 + DiffEvSpL6Mock(1:size(DiffSPallMock),10)=DiffSPallMock + DiffEvSpL6Mock(1:size(DiffSPPotMock),11)=DiffSPPotMock + DiffEvSpL6Mock(1:size(DiffSPDepMock),12)=DiffSPDepMock + %only evoked + DiffEvL6Mock=nan(318,6) + DiffEvL6Mock(1:size(DiffEVAllL6),1)=DiffEVAllL6 + DiffEvL6Mock(1:size(DiffEVPotL6),2)=DiffEVPotL6 + DiffEvL6Mock(1:size(DIffEVDepL6),3)=DIffEVDepL6 + DiffEvL6Mock(1:size(DiffEVAllMock),4)=DiffEVAllMock + DiffEvL6Mock(1:size(DiffEVPotMock),5)=DiffEVPotMock + DiffEvL6Mock(1:size(DIffEVDepMock),6)=DIffEVDepMock + %only Spontaneous + DiffSpL6Mock=nan(318,6) + DiffSpL6Mock(1:size(DiffSPallL6),1)=DiffSPallL6 + DiffSpL6Mock(1:size(DiffSPPotL6),2)=DiffSPPotL6 + DiffSpL6Mock(1:size(DiffSPDepL6),3)=DiffSPDepL6 + DiffSpL6Mock(1:size(DiffSPallMock),4)=DiffSPallMock + DiffSpL6Mock(1:size(DiffSPPotMock),5)=DiffSPPotMock + DiffSpL6Mock(1:size(DiffSPDepMock),6)=DiffSPDepMock + + + + + %name diff evoked l6 + nameEVdiffL6=cat(2,repmat({'L6EVokDiffALL'},318,1),repmat({'L6EvokDiffPOT'},318,1)... + ,repmat({'L6EVokDiffDEP'},318,1)) + %name diff evoked mock + nameEVdiffMock=cat(2,repmat({'MockEvokDiffALL'},318,1),repmat({'MockEvokDiffPOT'},318,1)... + ,repmat({'MockEvokDiffDEP'},318,1)) + %name diff sp l6 + nameSPdiffL6=cat(2,repmat({'L6SpontDiffALL'},318,1),repmat({'L6SpontDiffPOT'},318,1)... + ,repmat({'L6SpontDiffDEP'},318,1)) + %name diff sp mock + nameSPdiffMock=cat(2,repmat({'MockSPontDiffALL'},318,1),repmat({'MockSpontDiffPOT'},318,1)... + ,repmat({'MockSpontDiffDEP'},318,1)) + + nameDiffAll=cat(2,nameEVdiffL6,nameEVdiffMock,nameSPdiffL6,nameSPdiffMock) + %% DiffEvSPL6Mock all spont and evok comparisons + MatSignwilkEVSP=nan(12,12); + for x = 1:size(DiffEvSpL6Mock,2) + a=DiffEvSpL6Mock(:,x); + for y = x+1:size(DiffEvSpL6Mock,2) + b=DiffEvSpL6Mock(:,y); + fprintf(1, 'x:%d, y:%d\n', x, y) + MatSignwilkEVSP(y,x)=ranksum(a,b,'tail','right') + end + end + MatSignStepEVSP= (MatSignwilkEVSP<=0.05) + (MatSignwilkEVSP<=0.01) + (MatSignwilkEVSP<=0.001) + +NodatEVSP=isnan(MatSignwilkEVSP)| MatSignwilkEVSP>=0.05001 +MatSignStepEVSP(NodatEVSP)=NaN + +h1=heatmap(MatSignStepEVSP,'YDisplayLabels',nameDiffAll(1,:),'XDisplayLabels',nameDiffAll(1,:),'MissingDataColor','w','GridVisible','off') + + + +testCOlor=[0 0 0;0.2 0.2 0.2; 0.4 0.4 0.4] +colormap(testCOlor) +%ax=axes; +%ax.Color='none' +%plot( +title('Paired ranksum comparisons L6-VPM vs Mock-VPM') +options=struct(gca) +cb1=options.Colorbar; +cb1.Ticks=[1.3 2 2.7] +cb1.TickLabels={'*','**','***'} +ax3=options.Axes +ax3.YDir='normal' + + + %% + MatSignwilkEV=nan(6,6); + for x = 1:size(DiffEvL6Mock,2) + a=DiffEvL6Mock(:,x); + for y = x+1:size(DiffEvL6Mock,2) + b=DiffEvL6Mock(:,y); + fprintf(1, 'x:%d, y:%d\n', x, y) + MatSignwilkEV(y,x)=ranksum(a,b,'tail','right') + end + end + %% + MatSignwilkSP=nan(6,6); + for r = 1:size(DiffSpL6Mock,2) + c=DiffSpL6Mock(:,r); + for v = r+1:size(DiffSpL6Mock,2) + d=DiffSpL6Mock(:,v); + fprintf(1, 'r:%d, v:%d\n', r, v) + MatSignwilkSP(v,r)=ranksum(c,d,'tail','right') + end + end + + + + +MatSignStepEV= (MatSignwilkEV<=0.05) + (MatSignwilkEV<=0.01) + (MatSignwilkEV<=0.001) +Nodat=isnan(MatSignwilkEV)| MatSignwilkEV>=0.05001 +MatSignStepEV(Nodat)=NaN + +MatSignStepSP= (MatSignwilkSP<=0.05) + (MatSignwilkSP<=0.01) + (MatSignwilkSP<=0.001) +NodatSp=isnan(MatSignwilkSP)| MatSignwilkSP>=0.05001 +MatSignStepSP(NodatSp)=NaN + +nameDiffAllEv=nameDiffAll(1,[1:6]); +nameDiffAllSP=nameDiffAll(1,[7:12]); + +figure +subplot(1,2,1) +h1=heatmap(MatSignStepEV,'YDisplayLabels',nameDiffAllEv,'XDisplayLabels',nameDiffAllEv,... + 'MissingDataColor','w','GridVisible','off') +testCOlor=[0 1 0;0 0.2 0.2; 1 0 0] +colormap(testCOlor) +%ax=axes; +%ax.Color='none' +%plot( +title('Evoked Paired ranksum comparisons L6 vs Mock') +options=struct(gca) +cb1=options.Colorbar; + +colorbar off +ax3=options.Axes +ax3.YDir='normal' +subplot(1,2,2) +h2=heatmap(MatSignStepSP,'YDisplayLabels',nameDiffAllSP,'XDisplayLabels',nameDiffAllSP,... + 'MissingDataColor','w','GridVisible','off') +testCOlor=[0 0 0;0.2 0.2 0.2; 0.4 0.4 0.4] +colormap(testCOlor) +%ax=axes; +%ax.Color='none' +%plot( +title('Spontaneous Paired ranksum comparisons L6 vs Mock') +options=struct(gca) +cb1=options.Colorbar; +cb1.Ticks=[0 1 4] +cb1.TickLabels={'*','**','***'} +colorbar off +ax3=options.Axes +ax3.YDir='normal' +%% now with non modulated clusters +%Diff change statistics + %L6 evoked + DiffEVNonML6=vpmL6EVStrtR2.NonMOd(:,2)-vpmL6EVStrtR2.NonMOd(:,1); + DiffEVPotL6=vpmL6Evok.rPot(:,2)-vpmL6Evok.rPot(:,1); + DIffEVDepL6=vpmL6Evok.rDep(:,2)-vpmL6Evok.rDep(:,1); + %Mock evoked + DiffEVNonMMock=vpmMockEVStrtR2.NonMod(:,2)-vpmMockEVStrtR2.NonMod(:,1); + DiffEVPotMock=vpmMockEVStrtR.rPot(:,2)-vpmMockEVStrtR.rPot(:,1); + DIffEVDepMock=vpmMockEVStrtR.rDep(:,2)-vpmMockEVStrtR.rDep(:,1); + + %Spontaneous L6 + DiffSPNonML6=vpmL6SPstrR2.NonMod(:,2)-vpmL6SPstrR2.NonMod(:,1); + DiffSPPotL6=vpmL6spont.rPot(:,2)-vpmL6spont.rPot(:,1); + DiffSPDepL6=vpmL6spont.rDep(:,2)-vpmL6spont.rDep(:,1); + + %spontaneous mock + + DiffSPNonMMock=vpmMockSPstrR2.NonMod(:,2)-vpmMockSPstrR2.NonMod(:,1); + DiffSPPotMock=vpmMockSPstrR.rPot(:,2)-vpmMockSPstrR.rPot(:,1); + DiffSPDepMock=vpmMockSPstrR.rDep(:,2)-vpmMockSPstrR.rDep(:,1); + + DiffEvSpWnML6Mock =nan(318,12) + DiffEvSpWnML6Mock(1:size(DiffEVNonML6),1)=DiffEVNonML6 + DiffEvSpWnML6Mock(1:size(DiffEVPotL6),2)=DiffEVPotL6 + DiffEvSpWnML6Mock(1:size(DIffEVDepL6),3)=DIffEVDepL6 + DiffEvSpWnML6Mock(1:size(DiffEVNonMMock),4)=DiffEVNonMMock + DiffEvSpWnML6Mock(1:size(DiffEVPotMock),5)=DiffEVPotMock + DiffEvSpWnML6Mock(1:size(DIffEVDepMock),6)=DIffEVDepMock + DiffEvSpWnML6Mock(1:size(DiffSPNonML6),7)=DiffSPNonML6 + DiffEvSpWnML6Mock(1:size(DiffSPPotL6),8)=DiffSPPotL6 + DiffEvSpWnML6Mock(1:size(DiffSPDepL6),9)=DiffSPDepL6 + DiffEvSpWnML6Mock(1:size(DiffSPNonMMock),10)=DiffSPNonMMock + DiffEvSpWnML6Mock(1:size(DiffSPPotMock),11)=DiffSPPotMock + DiffEvSpWnML6Mock(1:size(DiffSPDepMock),12)=DiffSPDepMock + %only evoked + DiffEvWnML6Mock=nan(318,6) + DiffEvWnML6Mock(1:size(DiffEVNonML6),1)=DiffEVNonML6 + DiffEvWnML6Mock(1:size(DiffEVPotL6),2)=DiffEVPotL6 + DiffEvWnML6Mock(1:size(DIffEVDepL6),3)=DIffEVDepL6 + DiffEvWnML6Mock(1:size(DiffEVNonMMock),4)=DiffEVNonMMock + DiffEvWnML6Mock(1:size(DiffEVPotMock),5)=DiffEVPotMock + DiffEvWnML6Mock(1:size(DIffEVDepMock),6)=DIffEVDepMock + %only Spontaneous + DiffSpL6Mock=nan(318,6) + DiffSpL6Mock(1:size(DiffSPallL6),1)=DiffSPallL6 + DiffSpL6Mock(1:size(DiffSPPotL6),2)=DiffSPPotL6 + DiffSpL6Mock(1:size(DiffSPDepL6),3)=DiffSPDepL6 + DiffSpL6Mock(1:size(DiffSPNonMMock),4)=DiffSPNonMMock + DiffSpL6Mock(1:size(DiffSPPotMock),5)=DiffSPPotMock + DiffSpL6Mock(1:size(DiffSPDepMock),6)=DiffSPDepMock + + + + + %name diff evoked l6 + nameEVdiffL6=cat(2,repmat({'L6EVokDiffNonM'},318,1),repmat({'L6EvokDiffPOT'},318,1)... + ,repmat({'L6EVokDiffDEP'},318,1)) + %name diff evoked mock + nameEVdiffMock=cat(2,repmat({'MockEvokDiffNonM'},318,1),repmat({'MockEvokDiffPOT'},318,1)... + ,repmat({'MockEvokDiffDEP'},318,1)) + %name diff sp l6 + nameSPdiffL6=cat(2,repmat({'L6SpontDiffNonM'},318,1),repmat({'L6SpontDiffPOT'},318,1)... + ,repmat({'L6SpontDiffDEP'},318,1)) + %name diff sp mock + nameSPdiffMock=cat(2,repmat({'MockSPontDiffNonM'},318,1),repmat({'MockSpontDiffPOT'},318,1)... + ,repmat({'MockSpontDiffDEP'},318,1)) + + nameDiffAll=cat(2,nameEVdiffL6,nameEVdiffMock,nameSPdiffL6,nameSPdiffMock) + + + MatSignwilkNonMEV=nan(6,6); + for x = 1:size(DiffEvL6Mock,2) + a=DiffEvL6Mock(:,x); + for y = x+1:size(DiffEvL6Mock,2) + b=DiffEvL6Mock(:,y); + fprintf(1, 'x:%d, y:%d\n', x, y) + MatSignwilkNonMEV(y,x)=ranksum(a,b) + end + end + + + MatSignwilkNonMSP=nan(6,6); + for r = 1:size(DiffSpL6Mock,2) + c=DiffSpL6Mock(:,r); + for v = r+1:size(DiffSpL6Mock,2) + d=DiffSpL6Mock(:,v); + fprintf(1, 'r:%d, v:%d\n', r, v) + MatSignwilkNonMSP(v,r)=ranksum(c,d) + end + end + + +MatSignStepNonMEV= (MatSignwilkNonMEV<=0.05) + (MatSignwilkNonMEV<=0.01) + (MatSignwilkNonMEV<=0.001) +NodatNonM=isnan(MatSignwilkNonMEV)%| MatSignwilkNonMEV>=0.05001 + +MatSignStepNonMEV(NodatNonM)=NaN + +MatSignStepNonMSP= (MatSignwilkNonMSP<=0.05) + (MatSignwilkNonMSP<=0.01) + (MatSignwilkNonMSP<=0.001) +NodatNonMSp=isnan(MatSignwilkNonMSP)%| MatSignwilkNonMSP>=0.05001 + + +MatSignStepNonMSP(NodatNonMSp)=NaN + +nameDiffAllEv=nameDiffAll(1,[1:6]); +nameDiffAllSP=nameDiffAll(1,[7:12]); + +figure +subplot(1,2,1) +h1=heatmap(MatSignStepNonMEV,'YDisplayLabels',nameDiffAllEv,'XDisplayLabels',nameDiffAllEv,... + 'MissingDataColor','w','GridVisible','off') +testCOlor=[0 1 0;0 0.2 0.2; 1 0 0] +colormap(testCOlor) +%ax=axes; +%ax.Color='none' +%plot( +title('Evoked Paired ranksum comparisons L6 vs Mock') +options=struct(gca) +cb1=options.Colorbar; + +colorbar off +ax3=options.Axes +ax3.YDir='normal' +subplot(1,2,2) +h2=heatmap(MatSignStepNonMSP,'YDisplayLabels',nameDiffAllSP,'XDisplayLabels',nameDiffAllSP,... + 'MissingDataColor','w','GridVisible','off') +testCOlor=[0 0 0;0.2 0.2 0.2; 0.4 0.4 0.4] +colormap(testCOlor) +%ax=axes; +%ax.Color='none' +%plot( +title('Spontaneous Paired ranksum comparisons L6 vs Mock') +options=struct(gca) +cb1=options.Colorbar; +cb1.Ticks=[0 1 4] +cb1.TickLabels={'*','**','***'} +colorbar off +ax3=options.Axes +ax3.YDir='normal' + + + + \ No newline at end of file diff --git a/Jesus/Trains S1_VPM_TRN Comparisons.m b/Jesus/Trains S1_VPM_TRN Comparisons.m new file mode 100644 index 0000000..144f90a --- /dev/null +++ b/Jesus/Trains S1_VPM_TRN Comparisons.m @@ -0,0 +1,94 @@ +%% primer stimulo tren VPM TRN S1 Control + +%ClustersControlOnsetVPMbad=ClustersControlOnsetVPM>=0 & ClustersControlOnsetVPM<=0.002 +%ClustersControlOnsetVPMbad1=ClustersControlOnsetVPM>=0.101 & ClustersControlOnsetVPM>=0.104; +%ClustersControlOnsetVPMbad=(ClustersControlOnsetVPM>=0 & ClustersControlOnsetVPM<=2) | (ClustersControlOnsetVPM>=0.100&ClustersControlOnsetVPM<=0.104); +%ClustersControlOnsetVPM1=ClustersControlOnsetVPM(ClusetersControlONsetVPMbad~=1); +ClustersControlOnsetVPMms=(ClustersControlOnsetVPM*1000)+3; +ClustersControlOnsetTRNms=(ClustersControlOnsetTRN*1000)+3; +ClustersControlOnsetS1ms=(ClustersControlOnsetS1*1000)+3; +TimePsth=[-197:1:1203-1] +Binsize=0.001 + +ClustersControlOnsetVPMTren=ClustersControlOnsetVPMms(:,54:end); +NclustersVPMTren=size(ClustersControlOnsetVPMms(:,54:end),2); +NclustersTRNtren=size(ClustersControlOnsetTRNms,2); +NclustersS1tren=size(ClustersControlOnsetS1ms,2); + +NormControlVPM=hist(ClustersControlOnsetVPMTren(:),1400)./(150*(NclustersVPMTren*Binsize)); +figure(1); +plot(TimePsth,NormControlVPM) +hold on +NormControlTRN=hist(ClustersControlOnsetTRNms(:),1400)./(150*NclustersTRNtren*Binsize); +plot(TimePsth,NormControlTRN) +NormControlS1=hist(ClustersControlOnsetS1ms(:),1400)./(150*NclustersS1tren*Binsize) +plot(TimePsth,NormControlS1); +legend("VPM","TRN","S1Bf"); +xlabel('time (ms)'); ylabel('Firing Rate (Hz)');title('Whisker system Psth Control');xlim([-150 1150]); + +saveFigure(figure(1),['Z:/Jesus\LTP_Jesus_Emilio/PopFigures/TRN_VPM_S1figures/HzCircuitPsthControl']); + +TimePsth2=[-200:0.5:1200-0.5]; +%probabilidad VPM +HistVPM=hist(ClustersControlOnsetVPMTren(:),1400); +ProbVPM=HistVPM./(sum(HistVPM)); +%probabilidad TRN +HistTRN=hist(ClustersControlOnsetTRNms(:),1400); +ProbTRN=HistTRN./(sum(HistTRN)); +%probability S1 +HistS1=hist(ClustersControlOnsetS1ms(:),1400); +ProbS1=HistS1./(sum(HistS1)); figure(2); +plot(TimePsth,ProbVPM); hold on; +plot(TimePsth,ProbTRN); +plot(TimePsth,ProbS1); hold off; +legend("VPM","TRN","S1Bf"); +xlabel('time (ms)'); ylabel('Probability');title('Probability Whisker system Psth Control'),;xlim([-150 1150]); +%save figure +%foldername='Z:\Jesus\LTP_Jesus_Emilio\PopFigures\TRN_VPM_S1figures' +%saveas(figure(1),['Z:/Jesus\LTP_Jesus_Emilio/PopFigures/TRN_VPM_S1figures/ProbCircuitPsth.emf']); +%saveas(figure(1),['Z:/Jesus\LTP_Jesus_Emilio/PopFigures/TRN_VPM_S1figures/ProbCircuitPsth.pdf']); +%saveas(figure(1),['Z:/Jesus\LTP_Jesus_Emilio/PopFigures/TRN_VPM_S1figures/ProbCircuitPsth.fig']); + +saveFigure(figure(2),['Z:/Jesus\LTP_Jesus_Emilio/PopFigures/TRN_VPM_S1figures/ProbCircuitPsthControl']); +%% afterinduction +ClustersL200OnsetVPMms=(ClustersL200OnsetVPM*1000)+3; +ClustersL200OnsetTRNms=(ClustersL200OnsetTRN*1000)+3; +ClustersL200OnsetS1ms=(ClustersL200OnsetS1*1000)+3; +TimePsth=[-197:1:1203-1] +Binsize=0.001 + +ClustersL200OnsetVPMTren=ClustersL200OnsetVPMms(:,54:end); +NclustersVPMTrenafter=size(ClustersL200OnsetVPMms(:,54:end),2); +NclustersTRNtrenafter=size(ClustersL200OnsetTRNms,2); +NclustersS1trenafter=size(ClustersL200OnsetS1ms,2); +figure; +NormControlVPMafter=hist(ClustersL200OnsetVPMTren(:),1400)./(300*NclustersVPMTrenafter*Binsize); +plot(TimePsth,NormControlVPMafter) +hold on +NormControlTRNafter=hist(ClustersL200OnsetTRNms(:),1400)./(300*NclustersTRNtrenafter*Binsize); +plot(TimePsth,NormControlTRNafter) +NormControlS1after=hist(ClustersL200OnsetS1ms(:),1400)./(300*NclustersS1trenafter*Binsize) +plot(TimePsth,NormControlS1after); hold off +legend("VPM","TRN","S1Bf"); +xlabel('time (ms)'); ylabel('Firing Rate (Hz)');title('Whisker system Psth After-Induction');;xlim([-150 1150]); + +saveFigure(figure,['Z:/Jesus\LTP_Jesus_Emilio/PopFigures/TRN_VPM_S1figures/HzCircuitPsth-After']); + +%probabilidad VPM +HistVPMAfter=hist(ClustersL200OnsetVPMTren(:),1400); +ProbVPMAfter=HistVPMAfter./(sum(HistVPMAfter)); +%probabilidad TRN +HistTRNAfter=hist(ClustersL200OnsetTRNms(:),1400); +ProbTRNAfter=HistTRNAfter./(sum(HistTRNAfter)); +%probability S1 +HistS1After=hist(ClustersL200OnsetS1ms(:),1400); +ProbS1After=HistS1After./(sum(HistS1After)); figure(2); +plot(TimePsth,ProbVPMAfter); hold on; +plot(TimePsth,ProbTRNAfter); +plot(TimePsth,ProbS1After); hold off; +legend("VPM","TRN","S1Bf"); +xlabel('time (ms)'); ylabel('Probability');title('probability Whisker system Psth After-Inductiom');;xlim([-150 1150]); +%save figure +%foldername='Z:\Jesus\LTP_Jesus_Emilio\PopFigures\TRN_VPM_S1figures' + +saveFigure(figure(2),['Z:/Jesus\LTP_Jesus_Emilio/PopFigures/TRN_VPM_S1figures/Prob_CircuitPsth-After']); \ No newline at end of file diff --git a/Jesus/TrialLogaritmicRegression.m b/Jesus/TrialLogaritmicRegression.m new file mode 100644 index 0000000..eb25462 --- /dev/null +++ b/Jesus/TrialLogaritmicRegression.m @@ -0,0 +1,35 @@ +% Create random data +x = y3dsampleTodos(:,1); +y = y3dsampleTodos(:,2); +%y(1:50) = x(1:50) > 0.3; % To avoid perfect seperation +% Fit modelx, +mdl = fitglm(x, y,'Distribution','binomial'); +xnew = (linspace(0,1281,1281)'); % test data +ynew = predict(mdl, xnew); +scatter(x, y); +hold on; +%plot(xnew(:,2), ynew); +plot(xnew,ynew) +%% +% Create random data +x = rand(100, 1); +y = x > 0.5; +y(1:50) = x(1:50) > 0.3; % To avoid perfect seperation +% Fit model +mdl = fitglm(x, y,"quadratic", "Distribution", "binomial"); +xnew = linspace(0,1,1000)'; % test data +ynew = predict(mdl, xnew); +scatter(x, y); +hold on; +plot(xnew, ynew); +%% +x = xycombined; +y = xy3DTodosFin(:,3); +%y(1:50) = x(1:50) > 0.3; % To avoid perfect seperation +% Fit modelx, +mdl = fitglm(x, y, "Distribution", "binomial"); +xnew = linspace(0,50000,3000)'; % test data +ynew = predict(mdl, xnew); +scatter(x, y); +hold on; +plot(xnew, ynew); \ No newline at end of file diff --git a/Jesus/Untitled.m b/Jesus/Untitled.m new file mode 100644 index 0000000..91f386a --- /dev/null +++ b/Jesus/Untitled.m @@ -0,0 +1,14 @@ +ClustersControlOnsetMOCK = nan(2000,size(relativeSpkTmsStruct(1).SpikeTimes(:,1),1)); +for i = 1:size(relativeSpkTmsStruct(1).SpikeTimes(:,1),1) + Spikes=cell2mat(relativeSpkTmsStruct(1).SpikeTimes(i,1:end)); + N= size(Spikes,2); + ClustersControlOnsetMOCK (1:N,i) = Spikes; +end + + +ClustersL200OnsetMOCK = nan(2000,size(relativeSpkTmsStruct(2).SpikeTimes(:,1),1)); +for i = 1:size(relativeSpkTmsStruct(2).SpikeTimes(:,1),1) + Spikes=cell2mat(relativeSpkTmsStruct(2).SpikeTimes(i,1:end)); + N= size(Spikes,2); + ClustersL200OnsetMOCK (1:N,i) = Spikes; +end \ No newline at end of file diff --git a/Jesus/Untitled2.m b/Jesus/Untitled2.m new file mode 100644 index 0000000..2cfeced --- /dev/null +++ b/Jesus/Untitled2.m @@ -0,0 +1,114 @@ +ProbabilitybinAI=nan(50,size(ClustersL200Onset1stVPM,2)); +for i= 1:size(ClustersL200Onset1stVPM,2); + latAI=histcounts(ClustersL200Onset1stVPM(ClustersL200Onset1stVPM(:,i)>0.003),50,'Normalization','probability'); + ProbabilitybinAI(:,i)=latAI; +end +%% +minlatencyAI=nan(2000,size(ClustersL200Onset1stVPM,2)); +for i= 1:size(ClustersL200Onset1stVPM,2); + latenciesAI=ClustersL200Onset1stVPM(ClustersL200Onset1stVPM(:,i)>0.005 & ClustersL200Onset1stVPM(:,i)<0.02); + minlatencyAI(1:size(latenciesAI,1),i) = latenciesAI; + WminlatencyAI=min(minlatencyAI,[],1) +end +%% +minlatencyS1=nan(size(ClustersControlOnset1stS1,1),size(ClustersControlOnset1stS1,2)); +for i= 1:size(ClustersControlOnset1stS1,2); + siglatColS1=ClustersControlOnset1stS1>0.004; + BS1=ClustersControlOnset1stS1(siglatColS1(:,i),i) + minlatencyS1(1:size(BS1,1),i) = BS1; +end +%% +minlatencyMOCK=nan(size(ClustersControlOnset1stMOCK,1),size(ClustersControlOnset1stMOCK,2)); +for i= 1:size(ClustersControlOnset1stMOCK,2); + siglatColMOCK=ClustersControlOnset1stMOCK>0.004; + BS1MOCK=ClustersControlOnset1stMOCK(siglatColMOCK(:,i),i) + minlatencyMOCK(1:size(BS1MOCK,1),i) = BS1MOCK; +end +%% +minlatencyAIMOCK=nan(size(ClustersL200Onset1stMOCK,1),size(ClustersL200Onset1stMOCK,2)); +for i= 1:size(ClustersL200Onset1stMOCK,2); + siglatColAIMOCK=ClustersL200Onset1stMOCK>0.004; + BS1AIMOCK=ClustersL200Onset1stMOCK(siglatColAIMOCK(:,i),i) + minlatencyAIMOCK(1:size(BS1AIMOCK,1),i) = BS1AIMOCK; +end +%% +minlatencyAI=nan(20000,276); +for i= 1:size(ClustersL200Onset1stVPM,2); + latCol=ClustersL200Onset1stVPM>0.005 & ClustersL200Onset1stVPM<0.015; + B=ClustersL200Onset1stVPM(latCol(:,i)); + minlatencyAI(1:size(B,1),i) = B; +end +%% +minlatencyAI=nan(size(ClustersL200Onset1stVPM,1),size(ClustersL200Onset1stVPM,2)); +idAI=find(ClustersL200Onset1stVPM>=0.005 & ClustersL200Onset1stVPM<=0.015); +for i=1:size(idAI); + minlatencyAI(idAI(i))=ClustersL200Onset1stVPM(idAI(i)); +end +%% +minlatency=nan(size(ClustersControlOnset1stVPM,1),size(ClustersControlOnset1stVPM,2)); +idControl=find(ClustersControlOnset1stVPM>=0.005 & ClustersControlOnset1stVPM<=0.015); +for i=1:size(idControl); + minlatency(idControl(i))=ClustersControlOnset1stVPM(idControl(i)); +end +%% +minlatencyALL=nan(size(Clusters1stVPM,1),size(Clusters1stVPM,2)); +idALL=find(Clusters1stVPM>=0.005 & Clusters1stVPM<=0.015); +for i=1:size(idALL); + minlatencyALL(idALL(i))=Clusters1stVPM(idALL(i)); +end +%% +ClustersControlOnset1stVPMLong=nan(size(ClustersControlOnsetVPM,1),size(ClustersControlOnsetVPM,2)); +id=find(ClustersControlOnsetVPM>=-0.2 & ClustersControlOnsetVPM<=0.05); +for i=1:size(id); +ClustersControlOnset1stVPMLong(id(i))=ClustersControlOnsetVPM(id(i)); +end +zRespControl=zscore(hist(ClustersControlOnset1stVPMLong,500)); +sigRespControl=zRespControl>=1.95; +Tscale=[-0.200:0.0005:0.05-0.0005]; + +TWsigResp=nan(250,276); +for i = 1:size(sigRespControl,2) + TsigResp=Tscale(sigRespControl(:,i)==1); + TWsigResp(1:size(TsigResp,2),i)=TsigResp; +end +TWsigResp=TWsigResp+0.0025 + +Ctl=nan(size(TWsigResp,1),size(TWsigResp,2)); +for i=1:size(TWsigResp,2) + BCtl=TWsigResp>0.005&TWsigResp<0.04; + cCtl=TWsigResp(BCtl(:,i),i); + Ctl(1:size(cCtl,1),i)=cCtl; +end + +%% +ClustersL200Onset1stVPMLong=nan(size(ClustersL200OnsetVPM,1),size(ClustersL200OnsetVPM,2)); +idAI=find(ClustersL200OnsetVPM>=-0.2 & ClustersL200OnsetVPM<=0.05); +for i=1:size(idAI); +ClustersL200Onset1stVPMLong(idAI(i))=ClustersL200OnsetVPM(idAI(i)); +end +zRespAI=zscore(hist(ClustersL200Onset1stVPMLong,500)); +sigRespAI=zRespAI>=1.95; +Tscale=[-0.200:0.0005:0.05-0.0005]; + +TWsigRespAI=nan(250,276); +for i = 1:size(sigRespAI,2) + TsigRespAI=Tscale(sigRespAI(:,i)==1); + TWsigRespAI(1:size(TsigRespAI,2),i)=TsigRespAI; +end +TWsigRespAI=TWsigRespAI+0.0025 + +C=nan(size(TWsigRespAI,1),size(TWsigRespAI,2)); +for i=1:size(TWsigRespAI,2) + B=TWsigRespAI>0.005&TWsigRespAI<0.04; + c=TWsigRespAI(B(:,i),i); + C(1:size(c,1),i)=c; +end + + + +%% +minlatency8=[]; +for i= 1:size(ClustersControlOnset1stS1,2); + latVPM8=min(ClustersControlOnset1stVPM8(ClustersControlOnset1stVPM8(:,i)>0.004)); + minlatency8(i,1)=latVPM8; +end diff --git a/Jesus/Untitled4.m b/Jesus/Untitled4.m new file mode 100644 index 0000000..e9d0c8a --- /dev/null +++ b/Jesus/Untitled4.m @@ -0,0 +1,11 @@ +a=yControlOn-yL200On +b=[] +for i=1:size(a,2) + if a(:,i)>0 + p=a(i); + else b=a(i); + ShorterMedianClusters(:,i)=b; + LongerMedianClusters(:,i)=p; + + end +end \ No newline at end of file diff --git a/Jesus/Violin Plot evoked subplot.m b/Jesus/Violin Plot evoked subplot.m new file mode 100644 index 0000000..b3c4801 --- /dev/null +++ b/Jesus/Violin Plot evoked subplot.m @@ -0,0 +1,56 @@ + +[yCtrE xCtrE]=ksdensity(evFr(wruIdx&posMod&signMod,1),'Bandwidth',7) +patch(yCtrE*-1,xCtrE,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIE xAIE]=ksdensity(evFr(wruIdx&posMod&signMod,2),'Bandwidth',7) +patch(yAIE,xAIE,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(68,1)-0.0025,evFr(wruIdx&posMod&signMod,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(68,1)+0.0025,evFr(wruIdx&posMod&signMod,2),'k^','MarkerFaceColor',[0.7 0 0]) +plot(-0.0025,median(evFr(wruIdx&posMod&signMod,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(-0.0025,median(evFr(wruIdx&posMod&signMod,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) +plot(+0.0025,median(evFr(wruIdx&posMod&signMod,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(+0.0025,median(evFr(wruIdx&posMod&signMod,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) + +%deprressed + +[yCtrDepE xCtrDepE]=ksdensity(evFr(wruIdx&negMod&signMod,1),'Bandwidth',7) +patch((yCtrDepE-0.05)*-1,xCtrDepE,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIDepE xAIDepE]=ksdensity(evFr(wruIdx&negMod&signMod,2),'Bandwidth',7) +patch((yAIDepE+0.05),xAIDepE+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(33,1)+0.0475,evFr(wruIdx&negMod&signMod,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(33,1)+0.0525,evFr(wruIdx&negMod&signMod,2),'kv','MarkerFaceColor',[0.7 0 0]) +plot(+0.0475,median(evFr(wruIdx&negMod&signMod,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(+0.0475,median(evFr(wruIdx&negMod&signMod,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) +plot(+0.0525,median(evFr(wruIdx&negMod&signMod,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(+0.0525,median(evFr(wruIdx&negMod&signMod,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) + +%all responsive + +[yCtrAllE xCtrAllE]=ksdensity(evFr(wruIdx,1),'Bandwidth',7) +patch((yCtrAllE+0.05)*-1,xCtrAllE,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIAllE xAIAllE]=ksdensity(evFr(wruIdx,2),'Bandwidth',7) +patch((yAIAllE-0.05),xAIAllE+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(318,1)-0.0475,evFr(wruIdx,2),'ksquare','MarkerFaceColor',[0.7 0 0]) +plot(zeros(318,1)-0.0525,evFr(wruIdx,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(-0.0475,median(evFr(wruIdx,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(-0.0475,median(evFr(wruIdx,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) +plot(-0.0525,median(evFr(wruIdx,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(-0.0525,median(evFr(wruIdx,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) +ylim([-50 300]) +xlim([-0.08 0.08]) + +set(gca,'XTick',[-0.05 0.0 0.05]) +set(gca,'XTickLabel',["Responsive All", "Potentiated","Depressed"]) +set(gca,'yTick',[0,50,100,150 200]) +set(gca,'XTickLabel',["Responsive All", "Potentiated","Depressed"]) +title 'Evoked firing rate for VPM clusters' +xlabel("VPM Clusters") +ylabel("Firing Rate [Hz]") +annotation('line',[0.51 0.76],[0.8 0.8],'LineWidth',1); +text([0.024],[255],{'Significantly Modulated'},'HorizontalAlignment','center') +legend('Control','After-Induction','Location','northwest'); box off; hold off \ No newline at end of file diff --git a/Jesus/Violin plot VPM Spontaneous.m b/Jesus/Violin plot VPM Spontaneous.m new file mode 100644 index 0000000..9f818a5 --- /dev/null +++ b/Jesus/Violin plot VPM Spontaneous.m @@ -0,0 +1,72 @@ +%subplot(2,1,1) +%potentiated + +[yCtr xCtr]=ksdensity(pfr(wruIdx&posMod&signMod,1),'Bandwidth',0.7) +patch(yCtr*-1,xCtr,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAI xAI]=ksdensity(pfr(wruIdx&posMod&signMod,2),'Bandwidth',0.7) +patch(yAI,xAI,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(68,1)-0.025,pfr(wruIdx&posMod&signMod,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(68,1)+0.025,pfr(wruIdx&posMod&signMod,2),'k^','MarkerFaceColor',[0.7 0 0]) +plot(-0.025,median(pfr(wruIdx&posMod&signMod,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(-0.025,median(pfr(wruIdx&posMod&signMod,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) +plot(+0.025,median(pfr(wruIdx&posMod&signMod,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(+0.025,median(pfr(wruIdx&posMod&signMod,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) + +%deprressed + +[yCtrDep xCtrDep]=ksdensity(pfr(wruIdx&negMod&signMod,1),'Bandwidth',1) +patch((yCtrDep-0.5)*-1,xCtrDep,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIDep xAIDep]=ksdensity(pfr(wruIdx&negMod&signMod,2),'Bandwidth',1) +patch((yAIDep+0.5),xAIDep+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(33,1)+0.475,pfr(wruIdx&negMod&signMod,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(33,1)+0.525,pfr(wruIdx&negMod&signMod,2),'kv','MarkerFaceColor',[0.7 0 0]) +plot(+0.475,median(pfr(wruIdx&negMod&signMod,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(+0.475,median(pfr(wruIdx&negMod&signMod,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) +plot(+0.525,median(pfr(wruIdx&negMod&signMod,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(+0.525,median(pfr(wruIdx&negMod&signMod,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) + +%all responsive + +[yCtrAll xCtrAll]=ksdensity(pfr(wruIdx,1),'Bandwidth',1) +patch((yCtrAll+0.5)*-1,xCtrAll,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIAll xAIAll]=ksdensity(pfr(wruIdx,2),'Bandwidth',1) +patch((yAIAll-0.5),xAIAll+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(318,1)-0.475,pfr(wruIdx,2),'ksquare','MarkerFaceColor',[0.7 0 0]) +plot(zeros(318,1)-0.525,pfr(wruIdx,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(-0.475,median(pfr(wruIdx,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(-0.475,median(pfr(wruIdx,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) +plot(-0.525,median(pfr(wruIdx,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(-0.525,median(pfr(wruIdx,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) +ylim([-5 40]) +title 'VPM Responsive Clusters Distribution' +set(gca,'XTick',[-0.5:0.5:0.5]) +set(gca,'XTickLabel',["Responsive All", "Potentiated","Depressed"]) +set(gca,'yTick',[0,10,20,30]) +set(gca,'XTickLabel',["Responsive All", "Potentiated","Depressed"]) +title 'Spontaneous firing rate for VPM clusters' +xlabel("VPM Clusters") +ylabel("Firing Rate [Hz]") +annotation('line',[0.51 0.76],[0.8 0.8],'LineWidth',1); +text([0.24],[35],{'Significantly Modulated'},'HorizontalAlignment','center') +legend('Control','After-Induction','Location','northwest'); box off; hold off +%% pie + +axes('Position',[0.8 0.8 0.15 0.15]) +pie([68 33]) +colormap([0.25 0.25 0.25; 0.5 0.5 0.5]) +box on + + + + +%% C=colormap(hot(100)) +patch(yCtr*-1,xCtr,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +fill(yAI,xAI,C) +colormap(hot(100)) +colorbar \ No newline at end of file diff --git a/Jesus/Violin plot VPM.m b/Jesus/Violin plot VPM.m new file mode 100644 index 0000000..774b624 --- /dev/null +++ b/Jesus/Violin plot VPM.m @@ -0,0 +1,72 @@ +%subplot(2,1,1) +%potentiated + +[yCtr xCtr]=ksdensity(pfr(wruIdx&posMod&signMod,1),'Bandwidth',0.7) +patch(yCtr*-1,xCtr,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAI xAI]=ksdensity(pfr(wruIdx&posMod&signMod,2),'Bandwidth',0.7) +patch(yAI,xAI,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(68,1)-0.025,pfr(wruIdx&posMod&signMod,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(68,1)+0.025,pfr(wruIdx&posMod&signMod,2),'k^','MarkerFaceColor',[0.7 0 0]) +plot(-0.025,median(pfr(wruIdx&posMod&signMod,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(-0.025,median(pfr(wruIdx&posMod&signMod,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) +plot(+0.025,median(pfr(wruIdx&posMod&signMod,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(+0.025,median(pfr(wruIdx&posMod&signMod,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) + +%deprressed + +[yCtrDep xCtrDep]=ksdensity(pfr(wruIdx&negMod&signMod,1),'Bandwidth',1) +patch((yCtrDep-0.5)*-1,xCtrDep,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIDep xAIDep]=ksdensity(pfr(wruIdx&negMod&signMod,2),'Bandwidth',1) +patch((yAIDep+0.5),xAIDep+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(33,1)+0.475,pfr(wruIdx&negMod&signMod,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(33,1)+0.525,pfr(wruIdx&negMod&signMod,2),'kv','MarkerFaceColor',[0.7 0 0]) +plot(+0.475,median(pfr(wruIdx&negMod&signMod,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(+0.475,median(pfr(wruIdx&negMod&signMod,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) +plot(+0.525,median(pfr(wruIdx&negMod&signMod,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(+0.525,median(pfr(wruIdx&negMod&signMod,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) + +%all responsive + +[yCtrAll xCtrAll]=ksdensity(pfr(wruIdx,1),'Bandwidth',1) +patch((yCtrAll+0.5)*-1,xCtrAll,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIAll xAIAll]=ksdensity(pfr(wruIdx,2),'Bandwidth',1) +patch((yAIAll-0.5),xAIAll+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(318,1)-0.475,pfr(wruIdx,2),'ksquare','MarkerFaceColor',[0.7 0 0]) +plot(zeros(318,1)-0.525,pfr(wruIdx,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(-0.475,median(pfr(wruIdx,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(-0.475,median(pfr(wruIdx,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) +plot(-0.525,median(pfr(wruIdx,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(-0.525,median(pfr(wruIdx,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) +ylim([-5 40]) +title 'VPM Responsive Clusters Distribution' +set(gca,'XTick',[-0.5:0.5:0.5]) +set(gca,'XTickLabel',["Responsive All", "Potentiated","Depressed"]) +set(gca,'yTick',[0,10,20,30]) +set(gca,'XTickLabel',["Responsive All", "Potentiated","Depressed"]) +title 'Spontaneous firing rate for VPM clusters' +xlabel("VPM Clusters") +ylabel("Firing Rate [Hz]") +annotation('line',[0.51 0.76],[0.8 0.8],'LineWidth',1); +text([0.24],[35],{'Significantly Modulated'},'HorizontalAlignment','center') +legend('Control','After-Induction','Location','northwest'); box off; hold off +%% pie + +axes('Position',[0.57 0.4 0.15 0.15]) +pie([68 33]) +colormap([0.25 0.25 0.25; 0.5 0.5 0.5]) +box on + + + + +%% C=colormap(hot(100)) +patch(yCtr*-1,xCtr,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +fill(yAI,xAI,C) +colormap(hot(100)) +colorbar \ No newline at end of file diff --git a/Jesus/Violin plot evoked and sponatenous.m b/Jesus/Violin plot evoked and sponatenous.m new file mode 100644 index 0000000..37e385b --- /dev/null +++ b/Jesus/Violin plot evoked and sponatenous.m @@ -0,0 +1,115 @@ +subplot(2,1,1) +[yCtrE xCtrE]=ksdensity(evFr(wruIdx&posMod&signMod,1),'Bandwidth',7) +patch(yCtrE*-1,xCtrE,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIE xAIE]=ksdensity(evFr(wruIdx&posMod&signMod,2),'Bandwidth',7) +patch(yAIE,xAIE,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(68,1)-0.0025,evFr(wruIdx&posMod&signMod,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(68,1)+0.0025,evFr(wruIdx&posMod&signMod,2),'k^','MarkerFaceColor',[0.7 0 0]) +plot(-0.0025,median(evFr(wruIdx&posMod&signMod,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(-0.0025,median(evFr(wruIdx&posMod&signMod,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) +plot(+0.0025,median(evFr(wruIdx&posMod&signMod,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(+0.0025,median(evFr(wruIdx&posMod&signMod,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) + +%deprressed + +[yCtrDepE xCtrDepE]=ksdensity(evFr(wruIdx&negMod&signMod,1),'Bandwidth',7) +patch((yCtrDepE-0.05)*-1,xCtrDepE,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIDepE xAIDepE]=ksdensity(evFr(wruIdx&negMod&signMod,2),'Bandwidth',7) +patch((yAIDepE+0.05),xAIDepE+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(33,1)+0.0475,evFr(wruIdx&negMod&signMod,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(33,1)+0.0525,evFr(wruIdx&negMod&signMod,2),'kv','MarkerFaceColor',[0.7 0 0]) +plot(+0.0475,median(evFr(wruIdx&negMod&signMod,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(+0.0475,median(evFr(wruIdx&negMod&signMod,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) +plot(+0.0525,median(evFr(wruIdx&negMod&signMod,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(+0.0525,median(evFr(wruIdx&negMod&signMod,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) + +%all responsive + +[yCtrAllE xCtrAllE]=ksdensity(evFr(wruIdx,1),'Bandwidth',7) +patch((yCtrAllE+0.05)*-1,xCtrAllE,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIAllE xAIAllE]=ksdensity(evFr(wruIdx,2),'Bandwidth',7) +subplot(2,1,1) +patch((yAIAllE-0.05),xAIAllE+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) % evoked +hold on +plot(zeros(318,1)-0.0475,evFr(wruIdx,2),'ksquare','MarkerFaceColor',[0.7 0 0]) +plot(zeros(318,1)-0.0525,evFr(wruIdx,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(-0.0475,median(evFr(wruIdx,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(-0.0475,median(evFr(wruIdx,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) +plot(-0.0525,median(evFr(wruIdx,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(-0.0525,median(evFr(wruIdx,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) +ylim([-50 300]) +xlim([-0.08 0.08]) + +set(gca,'XTick',[-0.05 0.0 0.05]) +set(gca,'XTickLabel',["Responsive All", "Potentiated","Depressed"]) +set(gca,'yTick',[0,50,100,150 200]) +set(gca,'XTickLabel',["Responsive All", "Potentiated","Depressed"]) +title 'Evoked firing rate for VPM clusters' +xlabel("VPM Clusters") +ylabel("Firing Rate [Hz]") +annotation('line',[0.51 0.76],[0.85 0.85],'LineWidth',1); +text([0.025],[255],{'Significantly Modulated'},'HorizontalAlignment','center') +legend('Control','After-Induction','Location','northwest'); box off; hold off +%% spontaneous +subplot(2,1,2) +%potentiated + +[yCtr xCtr]=ksdensity(pfr(wruIdx&posMod&signMod,1),'Bandwidth',0.7) +patch(yCtr*-1,xCtr,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAI xAI]=ksdensity(pfr(wruIdx&posMod&signMod,2),'Bandwidth',0.7) +patch(yAI,xAI,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(68,1)-0.025,pfr(wruIdx&posMod&signMod,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(68,1)+0.025,pfr(wruIdx&posMod&signMod,2),'k^','MarkerFaceColor',[0.7 0 0]) +plot(-0.025,median(pfr(wruIdx&posMod&signMod,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(-0.025,median(pfr(wruIdx&posMod&signMod,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) +plot(+0.025,median(pfr(wruIdx&posMod&signMod,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(+0.025,median(pfr(wruIdx&posMod&signMod,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) + +%deprressed + +[yCtrDep xCtrDep]=ksdensity(pfr(wruIdx&negMod&signMod,1),'Bandwidth',1) +patch((yCtrDep-0.5)*-1,xCtrDep,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIDep xAIDep]=ksdensity(pfr(wruIdx&negMod&signMod,2),'Bandwidth',1) +patch((yAIDep+0.5),xAIDep+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(33,1)+0.475,pfr(wruIdx&negMod&signMod,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(33,1)+0.525,pfr(wruIdx&negMod&signMod,2),'kv','MarkerFaceColor',[0.7 0 0]) +plot(+0.475,median(pfr(wruIdx&negMod&signMod,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(+0.475,median(pfr(wruIdx&negMod&signMod,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) +plot(+0.525,median(pfr(wruIdx&negMod&signMod,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(+0.525,median(pfr(wruIdx&negMod&signMod,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) + +%all responsive + +[yCtrAll xCtrAll]=ksdensity(pfr(wruIdx,1),'Bandwidth',1) +patch((yCtrAll+0.5)*-1,xCtrAll,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIAll xAIAll]=ksdensity(pfr(wruIdx,2),'Bandwidth',1) +patch((yAIAll-0.5),xAIAll+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(318,1)-0.475,pfr(wruIdx,2),'ksquare','MarkerFaceColor',[0.7 0 0]) +plot(zeros(318,1)-0.525,pfr(wruIdx,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(-0.475,median(pfr(wruIdx,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(-0.475,median(pfr(wruIdx,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) +plot(-0.525,median(pfr(wruIdx,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(-0.525,median(pfr(wruIdx,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) +ylim([-5 40]) +title 'VPM Responsive Clusters Distribution' +set(gca,'XTick',[-0.5:0.5:0.5]) +set(gca,'XTickLabel',["Responsive All", "Potentiated","Depressed"]) +set(gca,'yTick',[0,10,20,30]) +set(gca,'XTickLabel',["Responsive All", "Potentiated","Depressed"]) +title 'Spontaneous firing rate for VPM clusters' +xlabel("VPM Clusters") +ylabel("Firing Rate [Hz]") +annotation('line',[0.51 0.76],[0.385 0.385],'LineWidth',1); +text([0.24],[35],{'Significantly Modulated'},'HorizontalAlignment','center') +legend('Control','After-Induction','Location','northwest'); box off; hold off \ No newline at end of file diff --git a/Jesus/ViolinPlotEvoked&Spontaneous_ubplotbetter.m b/Jesus/ViolinPlotEvoked&Spontaneous_ubplotbetter.m new file mode 100644 index 0000000..8057812 --- /dev/null +++ b/Jesus/ViolinPlotEvoked&Spontaneous_ubplotbetter.m @@ -0,0 +1,123 @@ +posMod=MIevok>=0.001;negMod=MIevok<=-0.001 +h1=subplot(2,1,2) +[yCtrE xCtrE]=ksdensity(evFr(wruIdx&posMod&signMod,1),'Bandwidth',7) +patch(yCtrE*-1,xCtrE,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIE xAIE]=ksdensity(evFr(wruIdx&posMod&signMod,2),'Bandwidth',7) +patch(yAIE,xAIE,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(33,1)-0.0025,evFr(wruIdx&posMod&signMod,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(33,1)+0.0025,evFr(wruIdx&posMod&signMod,2),'k^','MarkerFaceColor',[0.7 0 0]) +plot(-0.0025,median(evFr(wruIdx&posMod&signMod,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(-0.0025,median(evFr(wruIdx&posMod&signMod,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +plot(+0.0025,median(evFr(wruIdx&posMod&signMod,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(+0.0025,median(evFr(wruIdx&posMod&signMod,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) + + +%deprressed + +[yCtrDepE xCtrDepE]=ksdensity(evFr(wruIdx&negMod&signMod,1),'Bandwidth',7) +patch((yCtrDepE-0.05)*-1,xCtrDepE,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIDepE xAIDepE]=ksdensity(evFr(wruIdx&negMod&signMod,2),'Bandwidth',7) +patch((yAIDepE+0.05),xAIDepE+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(38,1)+0.0475,evFr(wruIdx&negMod&signMod,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(38,1)+0.0525,evFr(wruIdx&negMod&signMod,2),'kv','MarkerFaceColor',[0.7 0 0]) +plot(+0.0475,median(evFr(wruIdx&negMod&signMod,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(+0.0475,median(evFr(wruIdx&negMod&signMod,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +plot(+0.0525,median(evFr(wruIdx&negMod&signMod,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(+0.0525,median(evFr(wruIdx&negMod&signMod,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) + +%all responsive + +[yCtrAllE xCtrAllE]=ksdensity(evFr(wruIdx,1),'Bandwidth',7) +patch((yCtrAllE+0.05)*-1,xCtrAllE,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIAllE xAIAllE]=ksdensity(evFr(wruIdx,2),'Bandwidth',7) + +patch((yAIAllE-0.05),xAIAllE+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) % evoked +hold on +plot(zeros(251,1)-0.0475,evFr(wruIdx,2),'ksquare','MarkerFaceColor',[0.7 0 0]) +plot(zeros(251,1)-0.0525,evFr(wruIdx,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(-0.0475,median(evFr(wruIdx,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(-0.0475,median(evFr(wruIdx,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +plot(-0.0525,median(evFr(wruIdx,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(-0.0525,median(evFr(wruIdx,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +ylim([-50 300]) +xlim([-0.08 0.08]) + +set(gca,'XTick',[-0.05 0.0 0.05]) +set(gca,'XTickLabel',["Responsive All", "Potentiated","Depressed"]) +set(gca,'yTick',[0 40,80,120,160 200]) +set(gca,'XTickLabel',["Responsive All", "Potentiated","Depressed"]) +title 'Evoked firing rate for VPM clusters' +xlabel("VPM Clusters") +ylabel("Firing Rate [Hz]") +%annotation('line',[0.51 0.76],[0.85 0.85],'LineWidth',1); +%text([0.025],[255],{'Significantly Modulated'},'HorizontalAlignment','center') +%legend('Control','After-Induction','Location','northwest'); box off; hold off +legend('Control','After-Induction'); box off; +set(legend,'position',[0.735 0.46 0.21 0.075]); legend boxon +%% spontaneous +h2=subplot(2,1,1) +h2.XColor=[1 1 1] + +%potentiated + +[yCtr xCtr]=ksdensity(pfr(wruIdx&posMod&signMod,1),'Bandwidth',0.7) +patch(yCtr*-1,xCtr,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAI xAI]=ksdensity(pfr(wruIdx&posMod&signMod,2),'Bandwidth',0.7) +patch(yAI,xAI,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(33,1)-0.025,pfr(wruIdx&posMod&signMod,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(33,1)+0.025,pfr(wruIdx&posMod&signMod,2),'k^','MarkerFaceColor',[0.7 0 0]) +plot(-0.025,median(pfr(wruIdx&posMod&signMod,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(-0.025,median(pfr(wruIdx&posMod&signMod,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +plot(+0.025,median(pfr(wruIdx&posMod&signMod,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(+0.025,median(pfr(wruIdx&posMod&signMod,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) + +%deprressed + +[yCtrDep xCtrDep]=ksdensity(pfr(wruIdx&negMod&signMod,1),'Bandwidth',1) +patch((yCtrDep-0.5)*-1,xCtrDep,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIDep xAIDep]=ksdensity(pfr(wruIdx&negMod&signMod,2),'Bandwidth',1) +patch((yAIDep+0.5),xAIDep+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(38,1)+0.475,pfr(wruIdx&negMod&signMod,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(38,1)+0.525,pfr(wruIdx&negMod&signMod,2),'kv','MarkerFaceColor',[0.7 0 0]) +plot(+0.475,median(pfr(wruIdx&negMod&signMod,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(+0.475,median(pfr(wruIdx&negMod&signMod,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +plot(+0.525,median(pfr(wruIdx&negMod&signMod,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(+0.525,median(pfr(wruIdx&negMod&signMod,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) + +%all responsive + +[yCtrAll xCtrAll]=ksdensity(pfr(wruIdx,1),'Bandwidth',1) +patch((yCtrAll+0.5)*-1,xCtrAll,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIAll xAIAll]=ksdensity(pfr(wruIdx,2),'Bandwidth',1) +patch((yAIAll-0.5),xAIAll+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(251,1)-0.475,pfr(wruIdx,2),'ksquare','MarkerFaceColor',[0.7 0 0]) +plot(zeros(8,1)-0.525,pfr(wruIdx,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(-0.475,median(pfr(wruIdx,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(-0.475,median(pfr(wruIdx,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +plot(-0.525,median(pfr(wruIdx,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(-0.525,median(pfr(wruIdx,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +ylim([-5 40]) +title 'VPM Responsive Clusters Distribution' +set(gca,'XTick',[-0.5:0.5:0.5]) +%set(gca,'XTickLabel',["Responsive All", "Potentiated","Depressed"]) +set(gca,'yTick',[0,10,20,30]) +set(gca,'XTickLabel',[]) +title 'Spontaneous firing rate for VPM clusters' +%xlabel("VPM Clusters") +ylabel("Firing Rate [Hz]") +%annotation('line',[0.51 0.76],[0.385 0.385],'LineWidth',1); +annotation('line',[0.51 0.76],[0.86 0.86],'LineWidth',1); +text([0.24],[35],{'Significantly Modulated'},'HorizontalAlignment','center') +set(gcf,'color','w'); +hold off \ No newline at end of file diff --git a/Jesus/ViolinPlotEvoked_Spontaneous_ubplotbetter.m b/Jesus/ViolinPlotEvoked_Spontaneous_ubplotbetter.m new file mode 100644 index 0000000..b0b88a6 --- /dev/null +++ b/Jesus/ViolinPlotEvoked_Spontaneous_ubplotbetter.m @@ -0,0 +1,123 @@ + +h1=subplot(2,1,2) +[yCtrE xCtrE]=ksdensity(evFr(wruIdx&posMod&signMod,1),'Bandwidth',7) +patch(yCtrE*-1,xCtrE,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIE xAIE]=ksdensity(evFr(wruIdx&posMod&signMod,2),'Bandwidth',7) +patch(yAIE,xAIE,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(35,1)-0.0025,evFr(wruIdx&posMod&signMod,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(35,1)+0.0025,evFr(wruIdx&posMod&signMod,2),'k^','MarkerFaceColor',[0.7 0 0]) +plot(-0.0025,median(evFr(wruIdx&posMod&signMod,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(-0.0025,median(evFr(wruIdx&posMod&signMod,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +plot(+0.0025,median(evFr(wruIdx&posMod&signMod,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(+0.0025,median(evFr(wruIdx&posMod&signMod,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) + + +%deprressed + +[yCtrDepE xCtrDepE]=ksdensity(evFr(wruIdx&negMod&signMod,1),'Bandwidth',7) +patch((yCtrDepE-0.1)*-1,xCtrDepE,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIDepE xAIDepE]=ksdensity(evFr(wruIdx&negMod&signMod,2),'Bandwidth',7) +patch((yAIDepE+0.1),xAIDepE+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(13,1)+0.0975,evFr(wruIdx&negMod&signMod,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(13,1)+0.1025,evFr(wruIdx&negMod&signMod,2),'kv','MarkerFaceColor',[0.7 0 0]) +plot(+0.0975,median(evFr(wruIdx&negMod&signMod,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(+0.0975,median(evFr(wruIdx&negMod&signMod,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +plot(+0.1025,median(evFr(wruIdx&negMod&signMod,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(+0.1025,median(evFr(wruIdx&negMod&signMod,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) + +%all responsive + +[yCtrAllE xCtrAllE]=ksdensity(evFr(wruIdx,1),'Bandwidth',7) +patch((yCtrAllE+0.1)*-1,xCtrAllE,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIAllE xAIAllE]=ksdensity(evFr(wruIdx,2),'Bandwidth',7) + +patch((yAIAllE-0.1),xAIAllE+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) % evoked +hold on +plot(zeros(107,1)-0.0975,evFr(wruIdx,2),'ksquare','MarkerFaceColor',[0.7 0 0]) +plot(zeros(107,1)-0.1025,evFr(wruIdx,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(-0.0975,median(evFr(wruIdx,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(-0.0975,median(evFr(wruIdx,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +plot(-0.1025,median(evFr(wruIdx,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(-0.1025,median(evFr(wruIdx,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +ylim([-50 300]) +xlim([-0.18 0.18]) + +set(gca,'XTick',[-0.05 0.0 0.05]) +set(gca,'XTickLabel',["Responsive All", "Potentiated","Depressed"]) +set(gca,'yTick',[0 40,80,120,160 200]) +set(gca,'XTickLabel',["Responsive All", "Potentiated","Depressed"]) +title 'Evoked firing rate for BC clusters' +xlabel("VPM Clusters") +ylabel("Firing Rate [Hz]") +%annotation('line',[0.51 0.76],[0.85 0.85],'LineWidth',1); +%text([0.025],[255],{'Significantly Modulated'},'HorizontalAlignment','center') +%legend('Control','After-Induction','Location','northwest'); box off; hold off +legend('Control','After-Induction'); box off; +set(legend,'position',[0.735 0.46 0.21 0.075]); legend boxon +%% spontaneous +h2=subplot(2,1,1) +h2.XColor=[1 1 1] + +%potentiated + +[yCtr xCtr]=ksdensity(pfr(wruIdx&posMod&signMod,1),'Bandwidth',0.7) +patch(yCtr*-1,xCtr,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAI xAI]=ksdensity(pfr(wruIdx&posMod&signMod,2),'Bandwidth',0.7) +patch(yAI,xAI,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(35,1)-0.025,pfr(wruIdx&posMod&signMod,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(35,1)+0.025,pfr(wruIdx&posMod&signMod,2),'k^','MarkerFaceColor',[0.7 0 0]) +plot(-0.025,median(pfr(wruIdx&posMod&signMod,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(-0.025,median(pfr(wruIdx&posMod&signMod,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +plot(+0.025,median(pfr(wruIdx&posMod&signMod,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(+0.025,median(pfr(wruIdx&posMod&signMod,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) + +%deprressed + +[yCtrDep xCtrDep]=ksdensity(pfr(wruIdx&negMod&signMod,1),'Bandwidth',1) +patch((yCtrDep-0.5)*-1,xCtrDep,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIDep xAIDep]=ksdensity(pfr(wruIdx&negMod&signMod,2),'Bandwidth',1) +patch((yAIDep+0.5),xAIDep+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(13,1)+0.475,pfr(wruIdx&negMod&signMod,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(13,1)+0.525,pfr(wruIdx&negMod&signMod,2),'kv','MarkerFaceColor',[0.7 0 0]) +plot(+0.475,median(pfr(wruIdx&negMod&signMod,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(+0.475,median(pfr(wruIdx&negMod&signMod,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +plot(+0.525,median(pfr(wruIdx&negMod&signMod,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(+0.525,median(pfr(wruIdx&negMod&signMod,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) + +%all responsive + +[yCtrAll xCtrAll]=ksdensity(pfr(wruIdx,1),'Bandwidth',1) +patch((yCtrAll+0.5)*-1,xCtrAll,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIAll xAIAll]=ksdensity(pfr(wruIdx,2),'Bandwidth',1) +patch((yAIAll-0.5),xAIAll+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(107,1)-0.475,pfr(wruIdx,2),'ksquare','MarkerFaceColor',[0.7 0 0]) +plot(zeros(107,1)-0.525,pfr(wruIdx,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(-0.475,median(pfr(wruIdx,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(-0.475,median(pfr(wruIdx,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +plot(-0.525,median(pfr(wruIdx,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(-0.525,median(pfr(wruIdx,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +ylim([-5 40]) +title 'VPM Responsive Clusters Distribution' +set(gca,'XTick',[-0.5:0.5:0.5]) +%set(gca,'XTickLabel',["Responsive All", "Potentiated","Depressed"]) +set(gca,'yTick',[0,10,20,30]) +set(gca,'XTickLabel',[]) +title 'Spontaneous firing rate for BC clusters' +%xlabel("VPM Clusters") +ylabel("Firing Rate [Hz]") +%annotation('line',[0.51 0.76],[0.385 0.385],'LineWidth',1); +annotation('line',[0.51 0.76],[0.86 0.86],'LineWidth',1); +text([0.24],[35],{'Significantly Modulated'},'HorizontalAlignment','center') +set(gcf,'color','w'); +hold off \ No newline at end of file diff --git a/Jesus/ViolinPlotEvoked_Spontaneous_ubplotbetterBC.m b/Jesus/ViolinPlotEvoked_Spontaneous_ubplotbetterBC.m new file mode 100644 index 0000000..fa50957 --- /dev/null +++ b/Jesus/ViolinPlotEvoked_Spontaneous_ubplotbetterBC.m @@ -0,0 +1,124 @@ + +h1=subplot(2,1,2) + +[yCtrE xCtrE]=ksdensity(evFr(wruIdx&posMod&signMod,1),'Bandwidth',7) +patch(yCtrE*-1,xCtrE,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIE xAIE]=ksdensity(evFr(wruIdx&posMod&signMod,2),'Bandwidth',7) +patch(yAIE,xAIE,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(35,1)-0.0025,evFr(wruIdx&posMod&signMod,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(35,1)+0.0025,evFr(wruIdx&posMod&signMod,2),'k^','MarkerFaceColor',[0.7 0 0]) +plot(-0.0025,median(evFr(wruIdx&posMod&signMod,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(-0.0025,median(evFr(wruIdx&posMod&signMod,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +plot(+0.0025,median(evFr(wruIdx&posMod&signMod,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(+0.0025,median(evFr(wruIdx&posMod&signMod,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) + + +%deprressed + +[yCtrDepE xCtrDepE]=ksdensity(evFr(wruIdx&negMod&signMod,1),'Bandwidth',7) +patch((yCtrDepE-0.1)*-1,xCtrDepE,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIDepE xAIDepE]=ksdensity(evFr(wruIdx&negMod&signMod,2),'Bandwidth',7) +patch((yAIDepE+0.1),xAIDepE+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(13,1)+0.0975,evFr(wruIdx&negMod&signMod,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(13,1)+0.1025,evFr(wruIdx&negMod&signMod,2),'kv','MarkerFaceColor',[0.7 0 0]) +plot(+0.0975,median(evFr(wruIdx&negMod&signMod,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(+0.0975,median(evFr(wruIdx&negMod&signMod,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +plot(+0.1025,median(evFr(wruIdx&negMod&signMod,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(+0.1025,median(evFr(wruIdx&negMod&signMod,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) + +%all responsive + +[yCtrAllE xCtrAllE]=ksdensity(evFr(wruIdx,1),'Bandwidth',7) +patch((yCtrAllE+0.1)*-1,xCtrAllE,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIAllE xAIAllE]=ksdensity(evFr(wruIdx,2),'Bandwidth',7) + +patch((yAIAllE-0.1),xAIAllE+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) % evoked +hold on +plot(zeros(107,1)-0.0975,evFr(wruIdx,2),'ksquare','MarkerFaceColor',[0.7 0 0]) +plot(zeros(107,1)-0.1025,evFr(wruIdx,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(-0.0975,median(evFr(wruIdx,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(-0.0975,median(evFr(wruIdx,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +plot(-0.1025,median(evFr(wruIdx,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(-0.1025,median(evFr(wruIdx,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +ylim([-50 300]) +xlim([-0.15 0.15]) + +set(gca,'XTick',[-0.05 0.0 0.05]) +set(gca,'XTickLabel',["Responsive All", "Potentiated","Depressed"]) +set(gca,'yTick',[0 40,80,120,160 200]) +set(gca,'XTickLabel',["Responsive All", "Potentiated","Depressed"]) +title 'Evoked firing rate for BC clusters' +xlabel("VPM Clusters") +ylabel("Firing Rate [Hz]") +%annotation('line',[0.51 0.76],[0.85 0.85],'LineWidth',1); +%text([0.025],[255],{'Significantly Modulated'},'HorizontalAlignment','center') +%legend('Control','After-Induction','Location','northwest'); box off; hold off +legend('Control','After-Induction'); box off; +set(legend,'position',[0.735 0.46 0.21 0.075]); legend boxon +%% spontaneous +h2=subplot(2,1,1) +h2.XColor=[1 1 1] + +%potentiated + +[yCtr xCtr]=ksdensity(pfr(wruIdx&posMod&signMod,1),'Bandwidth',0.7) +patch(yCtr*-1,xCtr,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAI xAI]=ksdensity(pfr(wruIdx&posMod&signMod,2),'Bandwidth',0.7) +patch(yAI,xAI,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(35,1)-0.025,pfr(wruIdx&posMod&signMod,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(35,1)+0.025,pfr(wruIdx&posMod&signMod,2),'k^','MarkerFaceColor',[0.7 0 0]) +plot(-0.025,median(pfr(wruIdx&posMod&signMod,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(-0.025,median(pfr(wruIdx&posMod&signMod,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +plot(+0.025,median(pfr(wruIdx&posMod&signMod,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(+0.025,median(pfr(wruIdx&posMod&signMod,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) + +%deprressed + +[yCtrDep xCtrDep]=ksdensity(pfr(wruIdx&negMod&signMod,1),'Bandwidth',1) +patch((yCtrDep-1)*-1,xCtrDep,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIDep xAIDep]=ksdensity(pfr(wruIdx&negMod&signMod,2),'Bandwidth',1) +patch((yAIDep+1),xAIDep+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(13,1)+0.975,pfr(wruIdx&negMod&signMod,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(13,1)+1.025,pfr(wruIdx&negMod&signMod,2),'kv','MarkerFaceColor',[0.7 0 0]) +plot(+0.975,median(pfr(wruIdx&negMod&signMod,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(+0.975,median(pfr(wruIdx&negMod&signMod,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +plot(+1.025,median(pfr(wruIdx&negMod&signMod,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(+1.025,median(pfr(wruIdx&negMod&signMod,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) + +%all responsive + +[yCtrAll xCtrAll]=ksdensity(pfr(wruIdx,1),'Bandwidth',1) +patch((yCtrAll+1)*-1,xCtrAll,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIAll xAIAll]=ksdensity(pfr(wruIdx,2),'Bandwidth',1) +patch((yAIAll-1),xAIAll+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(107,1)-0.975,pfr(wruIdx,2),'ksquare','MarkerFaceColor',[0.7 0 0]) +plot(zeros(107,1)-1.025,pfr(wruIdx,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(-0.975,median(pfr(wruIdx,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(-0.975,median(pfr(wruIdx,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +plot(-1.025,median(pfr(wruIdx,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(-1.025,median(pfr(wruIdx,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +ylim([-5 40]) +title 'VPM Responsive Clusters Distribution' +set(gca,'XTick',[-0.5:0.5:0.5]) +%set(gca,'XTickLabel',["Responsive All", "Potentiated","Depressed"]) +set(gca,'yTick',[0,10,20,30]) +set(gca,'XTickLabel',[]) +title 'Spontaneous firing rate for BC clusters' +%xlabel("VPM Clusters") +ylabel("Firing Rate [Hz]") +%annotation('line',[0.51 0.76],[0.385 0.385],'LineWidth',1); +annotation('line',[0.51 0.76],[0.86 0.86],'LineWidth',1); +text([0.24],[35],{'Significantly Modulated'},'HorizontalAlignment','center') +set(gcf,'color','w'); +hold off \ No newline at end of file diff --git a/Jesus/ViolinPlotEvoked_Spontaneous_ubplotbetter_TRN.m b/Jesus/ViolinPlotEvoked_Spontaneous_ubplotbetter_TRN.m new file mode 100644 index 0000000..a75d256 --- /dev/null +++ b/Jesus/ViolinPlotEvoked_Spontaneous_ubplotbetter_TRN.m @@ -0,0 +1,121 @@ +h1=subplot(2,1,2) +[yCtrE xCtrE]=ksdensity(evFr(wruIdx&posMod&signMod,1),'Bandwidth',10) +patch(yCtrE*-1,xCtrE,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIE xAIE]=ksdensity(evFr(wruIdx&posMod&signMod,2),'Bandwidth',10) +patch(yAIE,xAIE,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(8,1)-0.0025,evFr(wruIdx&posMod&signMod,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(8,1)+0.0025,evFr(wruIdx&posMod&signMod,2),'k^','MarkerFaceColor',[0.7 0 0]) +plot(-0.0025,median(evFr(wruIdx&posMod&signMod,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(-0.0025,median(evFr(wruIdx&posMod&signMod,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +plot(+0.0025,median(evFr(wruIdx&posMod&signMod,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(+0.0025,median(evFr(wruIdx&posMod&signMod,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) + +%deprressed + +[yCtrDepE xCtrDepE]=ksdensity(evFr(wruIdx&negMod&signMod,1),'Bandwidth',7) +patch((yCtrDepE-0.05)*-1,xCtrDepE,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIDepE xAIDepE]=ksdensity(evFr(wruIdx&negMod&signMod,2),'Bandwidth',7) +patch((yAIDepE+0.05),xAIDepE+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(20,1)+0.0475,evFr(wruIdx&negMod&signMod,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(20,1)+0.0525,evFr(wruIdx&negMod&signMod,2),'kv','MarkerFaceColor',[0.7 0 0]) +plot(+0.0475,median(evFr(wruIdx&negMod&signMod,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(+0.0475,median(evFr(wruIdx&negMod&signMod,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +plot(+0.0525,median(evFr(wruIdx&negMod&signMod,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(+0.0525,median(evFr(wruIdx&negMod&signMod,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) + +%all responsive + +[yCtrAllE xCtrAllE]=ksdensity(evFr(wruIdx,1),'Bandwidth',7) +patch((yCtrAllE+0.05)*-1,xCtrAllE,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIAllE xAIAllE]=ksdensity(evFr(wruIdx,2),'Bandwidth',7) + +patch((yAIAllE-0.05),xAIAllE+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) % evoked +hold on +plot(zeros(84,1)-0.0475,evFr(wruIdx,2),'ksquare','MarkerFaceColor',[0.7 0 0]) +plot(zeros(84,1)-0.0525,evFr(wruIdx,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(-0.0475,median(evFr(wruIdx,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(-0.0475,median(evFr(wruIdx,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +plot(-0.0525,median(evFr(wruIdx,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(-0.0525,median(evFr(wruIdx,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +ylim([-50 300]) +xlim([-0.08 0.08]) + +set(gca,'XTick',[-0.05 0.0 0.05]) +set(gca,'XTickLabel',["Responsive All", "Potentiated","Depressed"]) +set(gca,'yTick',[0 40,80,120,160 200]) +set(gca,'XTickLabel',["Responsive All", "Potentiated","Depressed"]) +title 'Evoked firing rate for VPM clusters' +xlabel("VPM Clusters") +ylabel("Firing Rate [Hz]") +%annotation('line',[0.51 0.76],[0.85 0.85],'LineWidth',1); +%text([0.025],[255],{'Significantly Modulated'},'HorizontalAlignment','center') +%legend('Control','After-Induction','Location','northwest'); box off; hold off +legend('Control','After-Induction'); box off; +set(legend,'position',[0.735 0.46 0.21 0.075]); legend boxon +%% spontaneous +h2=subplot(2,1,1) +h2.XColor=[1 1 1] + +%potentiated + +[yCtr xCtr]=ksdensity(pfr(wruIdx&posMod&signMod,1),'Bandwidth',0.7) +patch(yCtr*-1,xCtr,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAI xAI]=ksdensity(pfr(wruIdx&posMod&signMod,2),'Bandwidth',0.7) +patch(yAI,xAI,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(8,1)-0.025,pfr(wruIdx&posMod&signMod,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(8,1)+0.025,pfr(wruIdx&posMod&signMod,2),'k^','MarkerFaceColor',[0.7 0 0]) +plot(-0.025,median(pfr(wruIdx&posMod&signMod,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(-0.025,median(pfr(wruIdx&posMod&signMod,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +plot(+0.025,median(pfr(wruIdx&posMod&signMod,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(+0.025,median(pfr(wruIdx&posMod&signMod,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) + +%deprressed + +[yCtrDep xCtrDep]=ksdensity(pfr(wruIdx&negMod&signMod,1),'Bandwidth',1) +patch((yCtrDep-0.5)*-1,xCtrDep,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIDep xAIDep]=ksdensity(pfr(wruIdx&negMod&signMod,2),'Bandwidth',1) +patch((yAIDep+0.5),xAIDep+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(20,1)+0.475,pfr(wruIdx&negMod&signMod,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(20,1)+0.525,pfr(wruIdx&negMod&signMod,2),'kv','MarkerFaceColor',[0.7 0 0]) +plot(+0.475,median(pfr(wruIdx&negMod&signMod,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(+0.475,median(pfr(wruIdx&negMod&signMod,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +plot(+0.525,median(pfr(wruIdx&negMod&signMod,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(+0.525,median(pfr(wruIdx&negMod&signMod,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) + +%all responsive + +[yCtrAll xCtrAll]=ksdensity(pfr(wruIdx,1),'Bandwidth',1) +patch((yCtrAll+0.5)*-1,xCtrAll,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIAll xAIAll]=ksdensity(pfr(wruIdx,2),'Bandwidth',1) +patch((yAIAll-0.5),xAIAll+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(84,1)-0.475,pfr(wruIdx,2),'ksquare','MarkerFaceColor',[0.7 0 0]) +plot(zeros(84,1)-0.525,pfr(wruIdx,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(-0.475,median(pfr(wruIdx,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(-0.475,median(pfr(wruIdx,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +plot(-0.525,median(pfr(wruIdx,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(-0.525,median(pfr(wruIdx,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +ylim([-5 40]) +title 'VPM Responsive Clusters Distribution' +set(gca,'XTick',[-0.5:0.5:0.5]) +%set(gca,'XTickLabel',["Responsive All", "Potentiated","Depressed"]) +set(gca,'yTick',[0,10,20,30]) +set(gca,'XTickLabel',[]) +title 'Spontaneous firing rate for VPM clusters' +%xlabel("VPM Clusters") +ylabel("Firing Rate [Hz]") +%annotation('line',[0.51 0.76],[0.385 0.385],'LineWidth',1); +annotation('line',[0.51 0.76],[0.86 0.86],'LineWidth',1); +text([0.24],[35],{'Significantly Modulated'},'HorizontalAlignment','center') +set(gcf,'color','w'); +hold off \ No newline at end of file diff --git a/Jesus/Violin_Diff_Mock_vs_L6.m b/Jesus/Violin_Diff_Mock_vs_L6.m new file mode 100644 index 0000000..f4190eb --- /dev/null +++ b/Jesus/Violin_Diff_Mock_vs_L6.m @@ -0,0 +1,147 @@ +%% Violing plot for structure Mock vs real L6 induction difference AfterInduction - control +DiffMockEVPot=vpmMockEVStrtR.rPot(:,2)-vpmMockEVStrtR.rPot(:,1) +DiffL6EVPot=vpmL6Evok.rPot(:,2)-vpmL6Evok.rPot(:,1) + +h2=subplot(2,1,2) +[yCtrE xCtrE]=ksdensity(DiffMockEVPot,'Bandwidth',7) +patch(yCtrE*-1,xCtrE,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIE xAIE]=ksdensity(DiffL6EVPot,'Bandwidth',7) +patch(yAIE,xAIE,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(33,1)-0.0025,DiffMockEVPot,'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(68,1)+0.0025,DiffL6EVPot,'k^','MarkerFaceColor',[0.7 0 0]) +plot(-0.0025,median(DiffMockEVPot),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(-0.0025,median(DiffMockEVPot),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +plot(+0.0025,median(DiffL6EVPot),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(+0.0025,median(DiffL6EVPot),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +%deprressed +DiffMockEVDep=vpmMockEVStrtR.rDep(:,2)-vpmMockEVStrtR.rDep(:,1) +DiffL6EVDep=vpmL6Evok.rDep(:,2)-vpmL6Evok.rDep(:,1) + +[yCtrDepE xCtrDepE]=ksdensity(DiffMockEVDep,'Bandwidth',7) +patch((yCtrDepE-0.075)*-1,xCtrDepE,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIDepE xAIDepE]=ksdensity(DiffL6EVDep,'Bandwidth',7) +patch((yAIDepE+0.075),xAIDepE+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(38,1)+0.0725,DiffMockEVDep,'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(33,1)+0.0775,DiffL6EVDep,'kv','MarkerFaceColor',[0.7 0 0]) +plot(+0.0725,median(DiffMockEVDep),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(+0.0725,median(DiffMockEVDep),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +plot(+0.0775,median(DiffL6EVDep),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(+0.0775,median(DiffL6EVDep),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) + +%all responsive +DiffMockEVAll=vpmMockEVStrtR.All_Resp(:,2)-vpmMockEVStrtR.All_Resp(:,1) +DiffL6EVAll=vpmL6Evok.evokAll(:,2)-vpmL6Evok.evokAll(:,1) + + +[yCtrAllE xCtrAllE]=ksdensity(DiffMockEVAll,'Bandwidth',7) +patch((yCtrAllE+0.075)*-1,xCtrAllE,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIAllE xAIAllE]=ksdensity(DiffL6EVAll,'Bandwidth',7) + +patch((yAIAllE-0.075),xAIAllE+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) % evoked +hold on +plot(zeros(318,1)-0.0725,DiffL6EVAll,'ksquare','MarkerFaceColor',[0.7 0 0]) +plot(zeros(251,1)-0.0775,DiffMockEVAll,'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(-0.0725,median(DiffL6EVAll),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(-0.0725,median(DiffL6EVAll),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +plot(-0.0775,median(DiffMockEVAll),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(-0.0775,median(DiffMockEVAll),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +ylim([-160 160]) +xlim([-0.125 0.125]) + +set(gca,'XTick',[-0.07 0.0 0.07]) +set(gca,'XTickLabel',["Responsive All", "Potentiated","Depressed"]) +set(gca,'yTick',[-120 -80 -40 0 40 80 120]) +set(gca,'XTickLabel',["Responsive All", "Potentiated","Depressed"]) +%titl=title (' Evoked VPM firing rate After Induction: \newlineDifference (AI-Control) L6 vs Sham stimulation') +%set(titl,'horizontalAlignment','Center') +xlabel("VPM Clusters") +ylabel("Firing Rate [Hz]") +%annotation('line',[0.51 0.76],[0.85 0.85],'LineWidth',1); +%text([0.025],[255],{'Significantly Modulated'},'HorizontalAlignment','center') +%legend('Control','After-Induction','Location','northwest'); box off; hold off +legend('Sham Induction','L6 Induction'); box off; +set(legend,'position',[0.735 0.46 0.21 0.075]); legend boxon + +%% Violing plot for structure Mock vs real L6 induction difference AfterInduction - control Spontaneous +DiffMockSPPot=vpmMockSPstrR.rPot(:,2)-vpmMockSPstrR.rPot(:,1) +DiffL6SPPot=vpmL6spont.rPot(:,2)-vpmL6spont.rPot(:,1) + +h1=subplot(2,1,1) +h1.XColor=[1 1 1] +[yCtrE xCtrE]=ksdensity(DiffMockSPPot,'Bandwidth',1.5) +patch(yCtrE*-1,xCtrE,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIE xAIE]=ksdensity(DiffL6SPPot,'Bandwidth',1.5) +patch(yAIE,xAIE,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(33,1)-0.01,DiffMockSPPot,'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(68,1)+0.01,DiffL6SPPot,'k^','MarkerFaceColor',[0.7 0 0]) +plot(-0.0125,median(DiffMockSPPot),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(-0.0125,median(DiffMockSPPot),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +plot(+0.0125,median(DiffL6SPPot),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(+0.0125,median(DiffL6SPPot),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +%deprressed +DiffMockSPDep=vpmMockSPstrR.rDep(:,2)-vpmMockSPstrR.rDep(:,1) +DiffL6SPDep=vpmL6spont.rDep(:,2)-vpmL6spont.rDep(:,1) + +[yCtrDepE xCtrDepE]=ksdensity(DiffMockSPDep,'Bandwidth',1.5) +patch((yCtrDepE-0.375)*-1,xCtrDepE,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIDepE xAIDepE]=ksdensity(DiffL6SPDep,'Bandwidth',1.5) +patch((yAIDepE+0.375),xAIDepE+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(38,1)+0.365,DiffMockSPDep,'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(33,1)+0.385,DiffL6SPDep,'kv','MarkerFaceColor',[0.7 0 0]) +plot(+0.365,median(DiffMockSPDep),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(+0.365,median(DiffMockSPDep),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +plot(+0.385,median(DiffL6SPDep),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(+0.385,median(DiffL6SPDep),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) + +%all responsive +DiffMockSPAll=vpmMockSPstrR.All_Resp(:,2)-vpmMockSPstrR.All_Resp(:,1) +DiffL6SPAll=vpmL6spont.evokAll(:,2)-vpmL6spont.evokAll(:,1) + + +[yCtrAllE xCtrAllE]=ksdensity(DiffMockSPAll,'Bandwidth',7) +patch((yCtrAllE+0.375)*-1,xCtrAllE,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIAllE xAIAllE]=ksdensity(DiffL6SPAll,'Bandwidth',7) + +patch((yAIAllE-0.375),xAIAllE+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) % evoked +hold on +plot(zeros(318,1)-0.365,DiffL6SPAll,'ksquare','MarkerFaceColor',[0.7 0 0]) +plot(zeros(251,1)-0.385,DiffMockEVAll,'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(-0.365,median(DiffL6EVAll),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(-0.365,median(DiffL6EVAll),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +plot(-0.385,median(DiffMockEVAll),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',6) +plot(-0.385,median(DiffMockEVAll),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',6) +ylim([-50 50]) +xlim([-0.625 0.625]) +set(gca,'XTick',[-0.375 0.0 0.375]) +set(gca,'XTickLabel',["Responsive All", "Potentiated","Depressed"]) +set(gca,'yTick',[-50 -25 0 25 50]) +set(gca,'XTickLabel',["Responsive All", "Potentiated","Depressed"]) +%titl=title (' Evoked VPM firing rate After Induction: \newlineDifference (AI-Control) L6 vs Sham stimulation') +%set(titl,'horizontalAlignment','Center') +%xlabel("VPM Clusters") +ylabel("Firing Rate [Hz]") +%annotation('line',[0.51 0.76],[0.85 0.85],'LineWidth',1); +%text([0.025],[255],{'Significantly Modulated'},'HorizontalAlignment','center') +%legend('Control','After-Induction','Location','northwest'); box off; hold off +legend('Sham Induction','L6 Induction'); box off; +set(legend,'position',[0.735 0.46 0.21 0.075]); legend boxon +set(gcf,'color','w'); +hold off +%% +ylim([-100 70]) +annotation('line',[0.505 0.53],[0.81 0.81],'LineWidth',1); +annotation('line',[0.735 0.76],[0.81 0.81],'LineWidth',1); +annotation('line',[0.2725 0.2975],[0.81 0.81],'LineWidth',1); +text([0],[50],{'ns'},'HorizontalAlignment','center','fontsize',14) +text([-0.375],[50],{'***'},'HorizontalAlignment','center','fontsize',14) +text([0.375],[50],{'ns'},'HorizontalAlignment','center','fontsize',14) \ No newline at end of file diff --git a/Jesus/Violinplotevokedandsponatenous.m b/Jesus/Violinplotevokedandsponatenous.m new file mode 100644 index 0000000..81386d5 --- /dev/null +++ b/Jesus/Violinplotevokedandsponatenous.m @@ -0,0 +1,115 @@ +subplot(2,1,1) +[yCtrE xCtrE]=ksdensity(evFr(wruIdx&posMod&signMod,1),'Bandwidth',7) +patch(yCtrE*-1,xCtrE,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIE xAIE]=ksdensity(evFr(wruIdx&posMod&signMod,2),'Bandwidth',7) +patch(yAIE,xAIE,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(68,1)-0.0025,evFr(wruIdx&posMod&signMod,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(68,1)+0.0025,evFr(wruIdx&posMod&signMod,2),'k^','MarkerFaceColor',[0.7 0 0]) +plot(-0.0025,median(evFr(wruIdx&posMod&signMod,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(-0.0025,median(evFr(wruIdx&posMod&signMod,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) +plot(+0.0025,median(evFr(wruIdx&posMod&signMod,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(+0.0025,median(evFr(wruIdx&posMod&signMod,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) + +%deprressed + +[yCtrDepE xCtrDepE]=ksdensity(evFr(wruIdx&negMod&signMod,1),'Bandwidth',7) +patch((yCtrDepE-0.05)*-1,xCtrDepE,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIDepE xAIDepE]=ksdensity(evFr(wruIdx&negMod&signMod,2),'Bandwidth',7) +patch((yAIDepE+0.05),xAIDepE+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(33,1)+0.0475,evFr(wruIdx&negMod&signMod,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(33,1)+0.0525,evFr(wruIdx&negMod&signMod,2),'kv','MarkerFaceColor',[0.7 0 0]) +plot(+0.0475,median(evFr(wruIdx&negMod&signMod,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(+0.0475,median(evFr(wruIdx&negMod&signMod,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) +plot(+0.0525,median(evFr(wruIdx&negMod&signMod,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(+0.0525,median(evFr(wruIdx&negMod&signMod,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) + +%all responsive + +[yCtrAllE xCtrAllE]=ksdensity(evFr(wruIdx,1),'Bandwidth',7) +patch((yCtrAllE+0.05)*-1,xCtrAllE,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIAllE xAIAllE]=ksdensity(evFr(wruIdx,2),'Bandwidth',7) +subplot(2,1,1) +patch((yAIAllE-0.05),xAIAllE+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) % evoked +hold on +plot(zeros(318,1)-0.0475,evFr(wruIdx,2),'ksquare','MarkerFaceColor',[0.7 0 0]) +plot(zeros(318,1)-0.0525,evFr(wruIdx,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(-0.0475,median(evFr(wruIdx,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(-0.0475,median(evFr(wruIdx,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) +plot(-0.0525,median(evFr(wruIdx,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(-0.0525,median(evFr(wruIdx,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) +ylim([-50 300]) +xlim([-0.08 0.08]) + +set(gca,'XTick',[-0.05 0.0 0.05]) +set(gca,'XTickLabel',["Responsive All", "Potentiated","Depressed"]) +set(gca,'yTick',[0,50,100,150 200]) +set(gca,'XTickLabel',["Responsive All", "Potentiated","Depressed"]) +title 'Evoked firing rate for VPM clusters' +xlabel("VPM Clusters") +ylabel("Firing Rate [Hz]") +annotation('line',[0.51 0.76],[0.85 0.85],'LineWidth',1); +text([0.025],[255],{'Significantly Modulated'},'HorizontalAlignment','center') +legend('Control','After-Induction','Location','northwest'); box on; hold off +%% spontaneous +subplot(2,1,2) +%potentiated + +[yCtr xCtr]=ksdensity(pfr(wruIdx&posMod&signMod,1),'Bandwidth',0.7) +patch(yCtr*-1,xCtr,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAI xAI]=ksdensity(pfr(wruIdx&posMod&signMod,2),'Bandwidth',0.7) +patch(yAI,xAI,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(68,1)-0.025,pfr(wruIdx&posMod&signMod,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(68,1)+0.025,pfr(wruIdx&posMod&signMod,2),'k^','MarkerFaceColor',[0.7 0 0]) +plot(-0.025,median(pfr(wruIdx&posMod&signMod,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(-0.025,median(pfr(wruIdx&posMod&signMod,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) +plot(+0.025,median(pfr(wruIdx&posMod&signMod,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(+0.025,median(pfr(wruIdx&posMod&signMod,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) + +%deprressed + +[yCtrDep xCtrDep]=ksdensity(pfr(wruIdx&negMod&signMod,1),'Bandwidth',1) +patch((yCtrDep-0.5)*-1,xCtrDep,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIDep xAIDep]=ksdensity(pfr(wruIdx&negMod&signMod,2),'Bandwidth',1) +patch((yAIDep+0.5),xAIDep+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(33,1)+0.475,pfr(wruIdx&negMod&signMod,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(zeros(33,1)+0.525,pfr(wruIdx&negMod&signMod,2),'kv','MarkerFaceColor',[0.7 0 0]) +plot(+0.475,median(pfr(wruIdx&negMod&signMod,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(+0.475,median(pfr(wruIdx&negMod&signMod,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) +plot(+0.525,median(pfr(wruIdx&negMod&signMod,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(+0.525,median(pfr(wruIdx&negMod&signMod,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) + +%all responsive + +[yCtrAll xCtrAll]=ksdensity(pfr(wruIdx,1),'Bandwidth',1) +patch((yCtrAll+0.5)*-1,xCtrAll,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +[yAIAll xAIAll]=ksdensity(pfr(wruIdx,2),'Bandwidth',1) +patch((yAIAll-0.5),xAIAll+1,[1 0 0],'EdgeAlpha',0.1,'FaceAlpha',0.7) +hold on +plot(zeros(318,1)-0.475,pfr(wruIdx,2),'ksquare','MarkerFaceColor',[0.7 0 0]) +plot(zeros(318,1)-0.525,pfr(wruIdx,1),'ksquare','MarkerFaceColor',[0 0 0.7]) +plot(-0.475,median(pfr(wruIdx,2)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(-0.475,median(pfr(wruIdx,2)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) +plot(-0.525,median(pfr(wruIdx,1)),'w*','MarkerFaceColor',[0 0 0],'MarkerSize',8) +plot(-0.525,median(pfr(wruIdx,1)),'ko','MarkerFaceColor',[1 1 1],'MarkerSize',8) +ylim([-5 40]) +title 'VPM Responsive Clusters Distribution' +set(gca,'XTick',[-0.5:0.5:0.5]) +set(gca,'XTickLabel',["Responsive All", "Potentiated","Depressed"]) +set(gca,'yTick',[0,10,20,30]) +set(gca,'XTickLabel',["Responsive All", "Potentiated","Depressed"]) +title 'Spontaneous firing rate for VPM clusters' +xlabel("VPM Clusters") +ylabel("Firing Rate [Hz]") +annotation('line',[0.51 0.76],[0.385 0.385],'LineWidth',1); +text([0.24],[35],{'Significantly Modulated'},'HorizontalAlignment','center') +legend('Control','After-Induction','Location','northwest'); box off; hold off \ No newline at end of file diff --git a/Jesus/arrayfun_examples_sum_mean.m b/Jesus/arrayfun_examples_sum_mean.m new file mode 100644 index 0000000..2a721fc --- /dev/null +++ b/Jesus/arrayfun_examples_sum_mean.m @@ -0,0 +1,515 @@ +% introduction to anonymous functions + + out = arrayfun(@(var2) arrayfun(@(var1) sum(x(var1,var2,1:2:end),3), 1:size(x,1)), 1:size(x,2),'UniformOutput',false) + out = arrayfun(@(var2) arrayfun(@(var1) sum(x(var1,var2,1:2:end),3), 1:size(x,1), 'UniformOutput', false), 1:size(x,2), 'UniformOutput', false) + + +out = cat(1, out{:}); +out + +out = + + 2 3 4 5 6 7 8 9 10 11 + 3 4 5 6 7 8 9 10 11 12 + 4 5 6 7 8 9 10 11 12 13 + 5 6 7 8 9 10 11 12 13 14 + 6 7 8 9 10 11 12 13 14 15 + 7 8 9 10 11 12 13 14 15 16 + 8 9 10 11 12 13 14 15 16 17 + 9 10 11 12 13 14 15 16 17 18 + 10 11 12 13 14 15 16 17 18 19 + 11 12 13 14 15 16 17 18 19 20 + 12 13 14 15 16 17 18 19 20 21 + 13 14 15 16 17 18 19 20 21 22 + +out = arrayfun(@(var2) arrayfun(@(var1) var1 + var2, 1:size(x,1)), 1:size(x,2), 'UniformOutput', false); +out = arrayfun(@(var2) arrayfun(@(var1) x(var1) + x(var2), 1:size(x,1)), 1:size(x,2), 'UniformOutput', false); + arrayfun(@(var2) arrayfun(@(var1) x(var1) + x(var2), 1:size(x,1)), 1:size(x,2), 'UniformOutput', false); +x + +x(:,:,1) = + + 43 54 78 52 26 92 18 27 65 46 59 55 + 10 66 43 95 23 1 73 77 68 67 55 65 + 60 41 10 64 67 47 48 19 64 78 87 55 + 48 82 27 96 85 43 16 29 95 36 27 73 + 70 72 16 25 35 47 35 10 21 67 32 53 + 70 97 29 68 79 78 61 58 71 42 12 100 + 64 54 45 29 68 33 20 69 24 85 94 22 + 4 33 53 68 1 79 74 55 12 84 65 11 + 7 11 46 70 61 48 25 43 61 26 48 11 + 32 62 88 7 39 4 92 65 46 62 64 7 + + +x(:,:,2) = + + 41 70 35 74 83 80 52 54 86 62 74 77 + 45 10 15 40 43 95 89 9 57 99 59 59 + 37 53 59 69 89 33 59 12 93 53 25 93 + 77 54 27 71 40 68 16 14 70 48 67 59 + 63 87 5 45 77 44 20 68 59 81 9 2 + 78 49 76 2 40 84 41 50 82 23 63 13 + 94 40 25 34 81 77 75 19 88 50 67 87 + 98 68 45 43 76 17 83 50 99 91 73 49 + 20 75 69 28 38 87 79 15 1 58 90 85 + 14 53 36 20 22 99 32 6 87 85 99 21 + + +x(:,:,3) = + + 56 15 13 95 74 14 56 99 18 92 90 46 + 63 19 50 9 7 4 86 54 36 11 8 11 + 4 5 86 11 87 94 35 71 6 75 25 100 + 62 64 88 15 94 31 45 100 53 74 6 34 + 37 29 28 17 99 30 6 29 34 57 45 30 + 5 54 21 63 86 34 18 42 18 19 2 7 + 49 70 57 58 79 47 67 47 21 60 90 30 + 20 50 65 6 52 65 34 77 91 30 20 5 + 13 54 42 94 18 3 90 82 68 14 10 51 + 21 45 21 73 40 85 12 11 47 22 31 77 + +arrayfun(@(var2) arrayfun(@(var1) x(var1) + x(var2), 1:size(x,1)), 1:size(x,2), 'UniformOutput', false); +out = arrayfun(@(var2) arrayfun(@(var1) x(var1) + x(var2), 1:size(x,1)), 1:size(x,2), 'UniformOutput', false); +out = arrayfun(@(var2) arrayfun(@(var1) x(var1) + x(var2), 1:size(x,1)), 1:size(x,2), 'UniformOutput', false); +out = arrayfun(@(var2) arrayfun(@(var1) x(var1) + x(var2), 1:size(x,1)), 1:size(x,2), 'UniformOutput', false); +out = arrayfun(@(var2) arrayfun(@(var1) x(var1) + x(var2), 1:size(x,1)), 1:size(x,2), 'UniformOutput', false) + +out = + + 1×12 cell array + + Columns 1 through 7 + + {1×10 double} {1×10 double} {1×10 double} {1×10 double} {1×10 double} {1×10 double} {1×10 double} + + Columns 8 through 12 + + {1×10 double} {1×10 double} {1×10 double} {1×10 double} {1×10 double} + +out = arrayfun(@(var2) arrayfun(@(var1) mean(x(var1,var2,:),3), 1:size(x,1)), 1:size(x,2), 'UniformOutput', false) + +out = + + 1×12 cell array + + Columns 1 through 7 + + {1×10 double} {1×10 double} {1×10 double} {1×10 double} {1×10 double} {1×10 double} {1×10 double} + + Columns 8 through 12 + + {1×10 double} {1×10 double} {1×10 double} {1×10 double} {1×10 double} + +out = cat(1, out{:}); +out = cat(1, out{:}) +Brace indexing is not supported for variables of this type. + +out + +out = + + 46.6667 39.3333 33.6667 62.3333 56.6667 51.0000 69.0000 40.6667 13.3333 22.3333 + 46.3333 31.6667 33.0000 66.6667 62.6667 66.6667 54.6667 50.3333 46.6667 53.3333 + 42.0000 36.0000 51.6667 47.3333 16.3333 42.0000 42.3333 54.3333 52.3333 48.3333 + 73.6667 48.0000 48.0000 60.6667 29.0000 44.3333 40.3333 39.0000 64.0000 33.3333 + 61.0000 24.3333 81.0000 73.0000 70.3333 68.3333 76.0000 43.0000 39.0000 33.6667 + 62.0000 33.3333 58.0000 47.3333 40.3333 65.3333 52.3333 53.6667 46.0000 62.6667 + 42.0000 82.6667 47.3333 25.6667 20.3333 40.0000 54.0000 63.6667 64.6667 45.3333 + 60.0000 46.6667 34.0000 47.6667 35.6667 50.0000 45.0000 60.6667 46.6667 27.3333 + 56.3333 53.6667 54.3333 72.6667 38.0000 57.0000 44.3333 67.3333 43.3333 60.0000 + 66.6667 59.0000 68.6667 52.6667 68.3333 28.0000 65.0000 68.3333 32.6667 56.3333 + 74.3333 40.6667 45.6667 33.3333 28.6667 25.6667 83.6667 52.6667 49.3333 64.6667 + 59.3333 45.0000 82.6667 55.3333 28.3333 40.0000 46.3333 21.6667 49.0000 35.0000 + +x + +x(:,:,1) = + + 43 54 78 52 26 92 18 27 65 46 59 55 + 10 66 43 95 23 1 73 77 68 67 55 65 + 60 41 10 64 67 47 48 19 64 78 87 55 + 48 82 27 96 85 43 16 29 95 36 27 73 + 70 72 16 25 35 47 35 10 21 67 32 53 + 70 97 29 68 79 78 61 58 71 42 12 100 + 64 54 45 29 68 33 20 69 24 85 94 22 + 4 33 53 68 1 79 74 55 12 84 65 11 + 7 11 46 70 61 48 25 43 61 26 48 11 + 32 62 88 7 39 4 92 65 46 62 64 7 + + +x(:,:,2) = + + 41 70 35 74 83 80 52 54 86 62 74 77 + 45 10 15 40 43 95 89 9 57 99 59 59 + 37 53 59 69 89 33 59 12 93 53 25 93 + 77 54 27 71 40 68 16 14 70 48 67 59 + 63 87 5 45 77 44 20 68 59 81 9 2 + 78 49 76 2 40 84 41 50 82 23 63 13 + 94 40 25 34 81 77 75 19 88 50 67 87 + 98 68 45 43 76 17 83 50 99 91 73 49 + 20 75 69 28 38 87 79 15 1 58 90 85 + 14 53 36 20 22 99 32 6 87 85 99 21 + + +x(:,:,3) = + + 56 15 13 95 74 14 56 99 18 92 90 46 + 63 19 50 9 7 4 86 54 36 11 8 11 + 4 5 86 11 87 94 35 71 6 75 25 100 + 62 64 88 15 94 31 45 100 53 74 6 34 + 37 29 28 17 99 30 6 29 34 57 45 30 + 5 54 21 63 86 34 18 42 18 19 2 7 + 49 70 57 58 79 47 67 47 21 60 90 30 + 20 50 65 6 52 65 34 77 91 30 20 5 + 13 54 42 94 18 3 90 82 68 14 10 51 + 21 45 21 73 40 85 12 11 47 22 31 77 + +x>50 + + 10×12×3 logical array + +ans(:,:,1) = + + 0 1 1 1 0 1 0 0 1 0 1 1 + 0 1 0 1 0 0 1 1 1 1 1 1 + 1 0 0 1 1 0 0 0 1 1 1 1 + 0 1 0 1 1 0 0 0 1 0 0 1 + 1 1 0 0 0 0 0 0 0 1 0 1 + 1 1 0 1 1 1 1 1 1 0 0 1 + 1 1 0 0 1 0 0 1 0 1 1 0 + 0 0 1 1 0 1 1 1 0 1 1 0 + 0 0 0 1 1 0 0 0 1 0 0 0 + 0 1 1 0 0 0 1 1 0 1 1 0 + + +ans(:,:,2) = + + 0 1 0 1 1 1 1 1 1 1 1 1 + 0 0 0 0 0 1 1 0 1 1 1 1 + 0 1 1 1 1 0 1 0 1 1 0 1 + 1 1 0 1 0 1 0 0 1 0 1 1 + 1 1 0 0 1 0 0 1 1 1 0 0 + 1 0 1 0 0 1 0 0 1 0 1 0 + 1 0 0 0 1 1 1 0 1 0 1 1 + 1 1 0 0 1 0 1 0 1 1 1 0 + 0 1 1 0 0 1 1 0 0 1 1 1 + 0 1 0 0 0 1 0 0 1 1 1 0 + + +ans(:,:,3) = + + 1 0 0 1 1 0 1 1 0 1 1 0 + 1 0 0 0 0 0 1 1 0 0 0 0 + 0 0 1 0 1 1 0 1 0 1 0 1 + 1 1 1 0 1 0 0 1 1 1 0 0 + 0 0 0 0 1 0 0 0 0 1 0 0 + 0 1 0 1 1 0 0 0 0 0 0 0 + 0 1 1 1 1 0 1 0 0 1 1 0 + 0 0 1 0 1 1 0 1 1 0 0 0 + 0 1 0 1 0 0 1 1 1 0 0 1 + 0 0 0 1 0 1 0 0 0 0 0 1 + +arrayfun(@(varEm) varEm>50, x(:,:,:)) + + 10×12×3 logical array + +ans(:,:,1) = + + 0 1 1 1 0 1 0 0 1 0 1 1 + 0 1 0 1 0 0 1 1 1 1 1 1 + 1 0 0 1 1 0 0 0 1 1 1 1 + 0 1 0 1 1 0 0 0 1 0 0 1 + 1 1 0 0 0 0 0 0 0 1 0 1 + 1 1 0 1 1 1 1 1 1 0 0 1 + 1 1 0 0 1 0 0 1 0 1 1 0 + 0 0 1 1 0 1 1 1 0 1 1 0 + 0 0 0 1 1 0 0 0 1 0 0 0 + 0 1 1 0 0 0 1 1 0 1 1 0 + + +ans(:,:,2) = + + 0 1 0 1 1 1 1 1 1 1 1 1 + 0 0 0 0 0 1 1 0 1 1 1 1 + 0 1 1 1 1 0 1 0 1 1 0 1 + 1 1 0 1 0 1 0 0 1 0 1 1 + 1 1 0 0 1 0 0 1 1 1 0 0 + 1 0 1 0 0 1 0 0 1 0 1 0 + 1 0 0 0 1 1 1 0 1 0 1 1 + 1 1 0 0 1 0 1 0 1 1 1 0 + 0 1 1 0 0 1 1 0 0 1 1 1 + 0 1 0 0 0 1 0 0 1 1 1 0 + + +ans(:,:,3) = + + 1 0 0 1 1 0 1 1 0 1 1 0 + 1 0 0 0 0 0 1 1 0 0 0 0 + 0 0 1 0 1 1 0 1 0 1 0 1 + 1 1 1 0 1 0 0 1 1 1 0 0 + 0 0 0 0 1 0 0 0 0 1 0 0 + 0 1 0 1 1 0 0 0 0 0 0 0 + 0 1 1 1 1 0 1 0 0 1 1 0 + 0 0 1 0 1 1 0 1 1 0 0 0 + 0 1 0 1 0 0 1 1 1 0 0 1 + 0 0 0 1 0 1 0 0 0 0 0 1 + +out = arrayfun(@(var2) arrayfun(@(var1) x(var1,var2,:) > 50, 1:size(x,1)), 1:size(x,2), 'UniformOutput', false) +Error using arrayfun +Non-scalar in Uniform output, at index 1, output 1. +Set 'UniformOutput' to false. + +Error in (var2)arrayfun(@(var1)x(var1,var2,:)>50,1:size(x,1)) + +out = arrayfun(@(var2) arrayfun(@(var1) x(var1,var2,:) > 50, 1:size(x,1), 'UniformOutput', false), 1:size(x,2), 'UniformOutput', false) + +out = + + 1×12 cell array + + Columns 1 through 8 + + {1×10 cell} {1×10 cell} {1×10 cell} {1×10 cell} {1×10 cell} {1×10 cell} {1×10 cell} {1×10 cell} + + Columns 9 through 12 + + {1×10 cell} {1×10 cell} {1×10 cell} {1×10 cell} + +out = cat(1, out{:}) + +out = + + 12×10 cell array + + Columns 1 through 6 + + {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} + {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} + {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} + {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} + {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} + {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} + {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} + {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} + {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} + {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} + {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} + {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} + + Columns 7 through 10 + + {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} + {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} + {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} + {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} + {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} + {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} + {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} + {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} + {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} + {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} + {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} + {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} {1×1×3 logical} + +x + +x(:,:,1) = + + 43 54 78 52 26 92 18 27 65 46 59 55 + 10 66 43 95 23 1 73 77 68 67 55 65 + 60 41 10 64 67 47 48 19 64 78 87 55 + 48 82 27 96 85 43 16 29 95 36 27 73 + 70 72 16 25 35 47 35 10 21 67 32 53 + 70 97 29 68 79 78 61 58 71 42 12 100 + 64 54 45 29 68 33 20 69 24 85 94 22 + 4 33 53 68 1 79 74 55 12 84 65 11 + 7 11 46 70 61 48 25 43 61 26 48 11 + 32 62 88 7 39 4 92 65 46 62 64 7 + + +x(:,:,2) = + + 41 70 35 74 83 80 52 54 86 62 74 77 + 45 10 15 40 43 95 89 9 57 99 59 59 + 37 53 59 69 89 33 59 12 93 53 25 93 + 77 54 27 71 40 68 16 14 70 48 67 59 + 63 87 5 45 77 44 20 68 59 81 9 2 + 78 49 76 2 40 84 41 50 82 23 63 13 + 94 40 25 34 81 77 75 19 88 50 67 87 + 98 68 45 43 76 17 83 50 99 91 73 49 + 20 75 69 28 38 87 79 15 1 58 90 85 + 14 53 36 20 22 99 32 6 87 85 99 21 + + +x(:,:,3) = + + 56 15 13 95 74 14 56 99 18 92 90 46 + 63 19 50 9 7 4 86 54 36 11 8 11 + 4 5 86 11 87 94 35 71 6 75 25 100 + 62 64 88 15 94 31 45 100 53 74 6 34 + 37 29 28 17 99 30 6 29 34 57 45 30 + 5 54 21 63 86 34 18 42 18 19 2 7 + 49 70 57 58 79 47 67 47 21 60 90 30 + 20 50 65 6 52 65 34 77 91 30 20 5 + 13 54 42 94 18 3 90 82 68 14 10 51 + 21 45 21 73 40 85 12 11 47 22 31 77 + +x=randi(100,10,12,5) + +x(:,:,1) = + + 64 75 70 55 69 75 79 49 12 11 68 10 + 9 2 56 49 14 24 37 16 79 94 43 1 + 9 5 40 90 73 74 21 79 30 19 46 43 + 78 67 7 80 12 98 9 11 61 27 61 66 + 91 61 79 74 12 87 78 30 97 80 6 73 + 54 53 34 6 65 9 21 24 44 49 32 54 + 11 73 61 8 33 37 39 54 70 77 78 11 + 83 71 75 9 66 37 56 10 76 40 70 64 + 34 79 11 80 75 69 23 41 44 28 13 13 + 30 29 13 95 59 60 65 11 66 4 14 14 + + +x(:,:,2) = + + 10 56 99 16 60 13 76 17 81 3 76 32 + 15 19 18 39 34 3 75 67 75 93 23 82 + 17 22 26 17 30 30 75 90 13 66 7 79 + 20 8 40 76 46 32 11 52 53 94 77 86 + 32 92 8 88 43 66 69 71 33 17 68 51 + 32 71 69 36 36 96 47 16 55 93 72 64 + 22 56 41 69 56 94 22 96 40 80 65 96 + 26 32 99 30 75 46 10 55 42 58 42 45 + 90 17 41 54 43 25 83 68 19 45 40 7 + 71 63 63 84 43 77 18 4 26 26 82 87 + + +x(:,:,3) = + + 64 19 23 63 28 99 14 95 42 36 79 23 + 36 73 38 3 25 7 22 68 61 98 70 27 + 100 38 9 92 46 94 19 99 76 35 1 68 + 23 85 65 81 23 2 5 77 59 89 85 48 + 66 74 19 75 81 69 11 34 56 46 93 63 + 61 58 5 82 99 79 62 67 59 42 78 24 + 39 18 73 39 3 54 94 25 52 22 5 18 + 15 96 35 62 54 89 36 30 9 13 38 83 + 3 27 67 58 9 90 42 69 72 31 71 77 + 43 93 39 54 81 63 99 53 100 73 73 94 + + +x(:,:,4) = + + 11 32 51 72 84 50 29 72 51 59 41 94 + 19 18 44 62 33 70 24 86 49 68 13 40 + 10 34 100 35 56 98 72 29 88 37 27 5 + 49 22 82 94 98 33 63 74 36 63 26 35 + 20 52 49 13 55 84 60 14 45 82 34 74 + 90 91 90 74 34 74 67 84 97 2 16 80 + 10 63 14 65 62 96 5 14 5 9 35 55 + 5 11 40 84 37 4 35 59 98 98 13 69 + 56 40 93 40 76 36 46 37 19 66 89 90 + 78 6 92 75 42 67 25 81 67 24 10 6 + + +x(:,:,5) = + + 31 29 51 3 95 83 41 39 46 28 58 12 + 5 55 65 56 55 85 67 46 21 72 33 82 + 20 99 31 31 73 38 94 25 90 29 46 33 + 73 72 14 94 58 60 82 79 77 90 72 25 + 73 84 48 99 3 88 49 89 89 83 89 35 + 88 44 37 29 45 94 76 92 29 40 73 38 + 59 48 79 81 65 67 42 56 68 50 2 55 + 8 57 79 90 53 21 98 60 67 70 68 57 + 93 27 67 60 38 66 99 15 13 84 44 40 + 81 75 14 89 94 8 87 90 41 61 44 40 + +out = arrayfun(@(var2) arrayfun(@(var1) sum(x(var1,var2,1:2:end),3), 1:size(x,1), 'UniformOutput', false), 1:size(x,2), 'UniformOutput', false) + +out = + + 1×12 cell array + + {1×10 cell} {1×10 cell} {1×10 cell} {1×10 cell} {1×10 cell} {1×10 cell} {1×10 cell} {1×10 cell} {1×10 cell} {1×10 cell} {1×10 cell} {1×10 cell} + +out = arrayfun(@(var2) arrayfun(@(var1) sum(x(var1,var2,1:2:end),3), 1:size(x,1)), 1:size(x,2)) +Error using arrayfun +Non-scalar in Uniform output, at index 1, output 1. +Set 'UniformOutput' to false. + +out = arrayfun(@(var2) arrayfun(@(var1) sum(x(var1,var2,1:2:end),3), 1:size(x,1)), 1:size(x,2),'UniformOutput',false) + +out = + + 1×12 cell array + + {1×10 double} {1×10 double} {1×10 double} {1×10 double} {1×10 double} {1×10 double} {1×10 double} {1×10 double} {1×10 double} {1×10 double} {1×10 double} {1×10 double} + +out = cat(2, out{:}) + +out = + + Columns 1 through 35 + + 159 50 129 174 230 203 109 106 130 154 123 130 142 224 219 155 139 224 133 197 144 159 80 86 146 76 213 189 145 66 121 108 213 255 248 + + Columns 36 through 70 + + 117 128 161 198 238 192 94 192 93 96 209 101 173 122 234 257 116 206 160 244 182 158 147 225 131 134 126 134 96 138 159 175 190 164 251 + + Columns 71 through 105 + + 183 130 203 167 153 183 135 100 125 154 100 161 196 197 242 132 190 152 129 207 75 264 83 206 209 131 149 123 143 138 205 146 93 218 188 + + Columns 106 through 120 + + 183 85 176 128 131 45 110 144 139 171 116 84 204 130 148 + +out = cat(1, out{:}) +Brace indexing is not supported for variables of this type. + +out = arrayfun(@(var2) arrayfun(@(var1) sum(x(var1,var2,1:2:end),3), 1:size(x,1)), 1:size(x,2),'UniformOutput',false) + +out = + + 1×12 cell array + + {1×10 double} {1×10 double} {1×10 double} {1×10 double} {1×10 double} {1×10 double} {1×10 double} {1×10 double} {1×10 double} {1×10 double} {1×10 double} {1×10 double} + +out = cat(1, out{:}) + +out = + + 159 50 129 174 230 203 109 106 130 154 + 123 130 142 224 219 155 139 224 133 197 + 144 159 80 86 146 76 213 189 145 66 + 121 108 213 255 248 117 128 161 198 238 + 192 94 192 93 96 209 101 173 122 234 + 257 116 206 160 244 182 158 147 225 131 + 134 126 134 96 138 159 175 190 164 251 + 183 130 203 167 153 183 135 100 125 154 + 100 161 196 197 242 132 190 152 129 207 + 75 264 83 206 209 131 149 123 143 138 + 205 146 93 218 188 183 85 176 128 131 + 45 110 144 139 171 116 84 204 130 148 + +size(out) + +ans = + + 12 10 + +size(x) + +ans = + + 10 12 5 + +size(out) + +ans = + + 12 10 + +out = arrayfun(@(var2) arrayfun(@(var1) sum(x(var1,var2,1:2:end),3), 1:size(x,1), 'UniformOutput', false), 1:size(x,2), 'UniformOutput', false) \ No newline at end of file diff --git a/Jesus/cdfForAllConditions.m b/Jesus/cdfForAllConditions.m index a9b8403..e22e38a 100644 --- a/Jesus/cdfForAllConditions.m +++ b/Jesus/cdfForAllConditions.m @@ -1,4 +1,4 @@ - +x %CdfOff response figure(71); diff --git a/Jesus/chiCuadrado.m b/Jesus/chiCuadrado.m new file mode 100644 index 0000000..c138bfb --- /dev/null +++ b/Jesus/chiCuadrado.m @@ -0,0 +1,10 @@ +tbl = [68, 33, 217;... + 33, 35, 180]; +sumCol = sum(tbl)'; +sumFil = sum(tbl,2)'; +multSum = (sumCol * sumFil)'; +esperado = multSum / sum(tbl(:)); +resChi = ((tbl - esperado).^2)./esperado; +resChi = sum(resChi(:)); +figure; plot(0:100, chi2pdf(0:100, 2)) +hold on; scatter(resChi, chi2pdf(resChi,2)) \ No newline at end of file diff --git a/Jesus/clusterstomat.m b/Jesus/clusterstomat.m index dd61ed1..1c8b711 100644 --- a/Jesus/clusterstomat.m +++ b/Jesus/clusterstomat.m @@ -1,4 +1,4 @@ -ClustersControlOnset = nan(1200,size(relativeSpkTmsStruct(6).SpikeTimes(:,1),1)); +ClustersControlOnset = nan(2000,size(relativeSpkTmsStruct(6).SpikeTimes(:,1),1)); for i = 1:size(relativeSpkTmsStruct(6).SpikeTimes(:,1),1) Spikes=cell2mat(relativeSpkTmsStruct(6).SpikeTimes(i,1:end)); N= size(Spikes,2); @@ -7,7 +7,7 @@ save('ClustersControlOnset.mat','ClustersControlOnset') -ClustersL200Onset = nan(1200,size(relativeSpkTmsStruct(5).SpikeTimes(:,1),1)); +ClustersL200Onset = nan(2000,size(relativeSpkTmsStruct(5).SpikeTimes(:,1),1)); for i = 1:size(relativeSpkTmsStruct(5).SpikeTimes(:,1),1) Spikes=cell2mat(relativeSpkTmsStruct(5).SpikeTimes(i,1:end)); N= size(Spikes,2); @@ -15,7 +15,7 @@ end save('ClustersL200Onset.mat','ClustersL200Onset') -ClustersL100Onset = nan(1200,size(relativeSpkTmsStruct(4).SpikeTimes(:,1),1)); +ClustersL100Onset = nan(2000,size(relativeSpkTmsStruct(4).SpikeTimes(:,1),1)); for i = 1:size(relativeSpkTmsStruct(4).SpikeTimes(:,1),1) Spikes=cell2mat(relativeSpkTmsStruct(4).SpikeTimes(i,1:end)); N= size(Spikes,2); @@ -23,7 +23,7 @@ end save('ClustersL100Onset.mat','ClustersL100Onset') -ClustersL50Onset = nan(1200,size(relativeSpkTmsStruct(3).SpikeTimes(:,1),1)); +ClustersL50Onset = nan(2000,size(relativeSpkTmsStruct(3).SpikeTimes(:,1),1)); for i = 1:size(relativeSpkTmsStruct(3).SpikeTimes(:,1),1) Spikes=cell2mat(relativeSpkTmsStruct(3).SpikeTimes(i,1:end)); N= size(Spikes,2); @@ -31,7 +31,7 @@ end save('ClustersL50Onset.mat','ClustersL50Onset') -ClustersL10Onset = nan(1200,size(relativeSpkTmsStruct(2).SpikeTimes(:,1),1)); +ClustersL10Onset = nan(20000,size(relativeSpkTmsStruct(2).SpikeTimes(:,1),1)); for i = 1:size(relativeSpkTmsStruct(2).SpikeTimes(:,1),1) Spikes=cell2mat(relativeSpkTmsStruct(2).SpikeTimes(i,1:end)); N= size(Spikes,2); @@ -39,11 +39,11 @@ end save('ClustersL10Onset.mat','ClustersL10Onset') -ClustersL1Onset = nan(1200,size(relativeSpkTmsStruct(1).SpikeTimes(:,1),1)); +ClustersL1Onset = nan(20000,size(relativeSpkTmsStruct(1).SpikeTimes(:,1),1)); for i = 1:size(relativeSpkTmsStruct(1).SpikeTimes(:,1),1) Spikes=cell2mat(relativeSpkTmsStruct(1).SpikeTimes(i,1:end)); N= size(Spikes,2); ClustersL1Onset (1:N,i) = Spikes; end -save('ClustersL1Onset.mat','ClustersL1Onset') + diff --git a/Jesus/cutsignalimproved.m b/Jesus/cutsignalimproved.m new file mode 100644 index 0000000..9738f6a --- /dev/null +++ b/Jesus/cutsignalimproved.m @@ -0,0 +1,31 @@ +[a1 a2 a3 a4]=pulsewidth(piezo);%obtain flags, test is a portion of a signal as an example.a2 contains the onset flags, +%a3 contains the offset flags. a4 contains the time duraction between onset +%and offset in time. +%fs = 1/signal sample interval +%make sure fs is equal in all signals!! fs=fs/sampling interval +a5=round(a2); +fs=1/Control_LTP_Ch68.interval; +t=[1/fs:1/fs:size(v)/fs];%time scale +%onset flag +%v1 is just a lfp signal to be plotted loaded in the workspace colum vector +ct=[]; +for i=1:size(a5,1); + spike=Control1(a5(i)-round(0.001*fs):1:a5(i)+round(0.1*fs));%cut signal + ct(:,i)=spike; +end +a6=0; +figure + subplot(3,1,1); + plot(ct) + wavecontrol=mean(ct(:,1:150),2); + waveafterind=mean(ct(:,151:390),2); + subplot(3,1,2) + plot(wavecontrol); + hold on; + plot(waveafterind); + hold off + subplot(3,1,3) + plot(mean(ct,2)); + allwave=mean(ct,2); + hold off + figure; plot(allwave); \ No newline at end of file diff --git a/Jesus/cutsignallfp.m b/Jesus/cutsignallfp.m new file mode 100644 index 0000000..b0b0883 --- /dev/null +++ b/Jesus/cutsignallfp.m @@ -0,0 +1,20 @@ +[a1 a2 a3 a4]=pulsewidth(test);%obtain flags, test is a portion of a signal as an example.a2 contains the onset flags, +%a3 contains the offset flags. a4 contains the time duraction between onset +%and offset in time. +%fs = 1/signal sample interval +a5=round(a2); +t=[1/fs:1/fs:size(v)/fs];%time scale +%onset flag +%v1 is just a lfp signal to be plotted loaded in the workspace colum vector +ct=[]; +for i=1:size(a5,1); + spike=v1(a5(i)-50:1:a5(i)+30000);%cut signal + ct(:,i)=spike +end +a6=0; +x2=[(a6-50:1:a6+30000)/fs];%time scale for evoked potentials + subplot(2,1,1); + plot(x2,ct,x2,test(a5)); + wave=mean(ct,2); + subplot(2,1,2) + plot(x2,wave) \ No newline at end of file diff --git a/Jesus/data for KS2.m b/Jesus/data for KS2.m new file mode 100644 index 0000000..4919232 --- /dev/null +++ b/Jesus/data for KS2.m @@ -0,0 +1,69 @@ +vectorBSandM1CVG=zeros(13,max(round(mean(BSandM1CVG,2)))) +for i = 1:size(BSandM1CVG,1) + approxMeanBSandM1=round(mean(BSandM1CVG,2)) + repBSandM1=repmat(i,approxMeanBSandM1(i),1) + vectorBSandM1CVG(i,1:size(repBSandM1))=repBSandM1 +end + +vectorBSandS1CVG=zeros(13,max(round(mean(BSandS1CVG,2)))) +for i = 1:size(BSandS1CVG,1) + approxMeanBSandS1=round(mean(BSandS1CVG,2)) + repBSandS1=repmat(i,approxMeanBSandS1(i),1) + vectorBSandS1CVG(i,1:size(repBSandS1))=repBSandS1 +end + + +%V=[0 1 0 ;0 0 0; 1 1 1 ] +%test1=zeros(719,591); + +for i=1:size(V,1); + for ii=1:size(V,2); + if V(i,ii)==0; + test1(i,ii)=0; + elseif V(i,ii)==1; + test1(i,ii)=200; + break + end + end +end + + + +%V=[1 0 1 0 ;0 0 0 1; 1 1 1 1;0 1 0 1 ]; +%test=zeros(4,4); +for ii=1:size(V,2); + for i=1:size(V,1); + if V(i,ii)==0; + test(i,ii)=0; + elseif V(i,ii)==1; + test(i,ii)=200; + break + end + end +end + +for ii=flip(1:size(V,2)); + for i=flip(1:size(V,1)); + if V(i,ii)==0; + test3(i,ii)=0; + elseif V(i,ii)==1; + test3(i,ii)=200; + break + end + end +end + +for i=flip(1:size(V,1)); + for ii=flip(1:size(V,2)); + if V(i,ii)==0; + test4(i,ii)=0; + elseif V(i,ii)==1; + test4(i,ii)=200; + break + end + end +end +test2=test1+test+test3+test4 +imagesc(test2) +colormapJes=[1 1 1; 0 0 0; 0 0 0;0 0 0] + \ No newline at end of file diff --git a/Jesus/data_for_KS2_and_contour slice_extractor.m b/Jesus/data_for_KS2_and_contour slice_extractor.m new file mode 100644 index 0000000..4fdd430 --- /dev/null +++ b/Jesus/data_for_KS2_and_contour slice_extractor.m @@ -0,0 +1,167 @@ +vectorBSandM1CVG=zeros(13,max(round(mean(BSandM1CVG,2)))) +for i = 1:size(BSandM1CVG,1) + approxMeanBSandM1=round(mean(BSandM1CVG,2)) + repBSandM1=repmat(i,approxMeanBSandM1(i),1) + vectorBSandM1CVG(i,1:size(repBSandM1))=repBSandM1 +end +vectorBSandM1CVG(vectorBSandM1CVG==0)=nan + +vectorBSandS1CVG=zeros(13,max(round(mean(BSandS1CVG,2)))) +for i = 1:size(BSandS1CVG,1) + approxMeanBSandS1=round(mean(BSandS1CVG,2)) + repBSandS1=repmat(i,approxMeanBSandS1(i),1) + vectorBSandS1CVG(i,1:size(repBSandS1))=repBSandS1 +end + +vectorBSandS1CVG(vectorBSandS1CVG==0)=nan + + +vectorS1andM1CVG=zeros(13,max(round(mean(M1andS1CVG,2)))) +for i = 1:size(M1andS1CVG,1) + approxMeanS1andM1=round(mean(M1andS1CVG,2)) + repS1andM1=repmat(i,approxMeanS1andM1(i),1) + vectorS1andM1CVG(i,1:size(repS1andM1))=repS1andM1 +end +vectorS1andM1CVG(vectorS1andM1CVG==0)=nan + +%% +vectorBSRC=zeros(13,max(round(mean(BSRC,2)))) +for i = 1:size(BSRC,1) + approxMeanBSRC=round(mean(BSRC,2)) + repBSRC=repmat(i,approxMeanBSRC(i),1) + vectorBSRC(i,1:size(repBSRC))=repBSRC +end +vectorBSRC(vectorBSRC==0)=nan +vectorM1RC=zeros(13,max(round(mean(M1RC,2)))) +for i = 1:size(M1RC,1) + approxMeanM1RC=round(mean(M1RC,2)) + repM1RC=repmat(i,approxMeanM1RC(i),1) + vectorM1RC(i,1:size(repM1RC))=repM1RC +end +vectorM1RC(vectorM1RC==0)=nan +vectorS1RC=zeros(13,max(round(mean(S1RC,2)))) +for i = 1:size(S1RC,1) + approxMeanS1RC=round(mean(S1RC,2)) + repS1RC=repmat(i,approxMeanS1RC(i),1) + vectorS1RC(i,1:size(repS1RC))=repS1RC +end +vectorS1RC(vectorS1RC==0)=nan + + +i + +vectorM1RCT=zeros(13,max(sum(M1RC,2))) +for i = 1:size(M1RC,1) + approxMeanM1RC=sum(M1RC,2) + repM1RC=repmat(i,approxMeanM1RC(i),1) + vectorM1RCT(i,1:size(repM1RC))=repM1RC +end +vectorM1RCT(vectorM1RCT==0)=nan + + +%% extract contours slices +%V=[0 1 0 ;0 0 0; 1 1 1 ] +%close all +V=T(:,:,1)<=240;%grey values on inverted jpeg file +V=imresize(V,0.1); +test1=[] +for i=1:size(V,1); + for ii=1:size(V,2); + if V(i,ii)==0; + test1(i,ii)=0; + elseif V(i,ii)==1; + test1(i,ii)=200; + break + end + end +end + + +%V=[1 0 1 0 ;0 0 0 1; 1 1 1 1;0 1 0 1 ]; +%test=zeros(4,4); +test=[] +for ii=1:size(V,2); + for i=1:size(V,1); + if V(i,ii)==0; + test(i,ii)=0; + elseif V(i,ii)==1; + test(i,ii)=200; + break + end + end +end + +test3=[] + +for ii=flip(1:size(V,2)); + for i=flip(1:size(V,1)); + if V(i,ii)==0; + test3(i,ii)=0; + elseif V(i,ii)==1; + test3(i,ii)=200; + break + end + end +end + +test4=[] + +for i=flip(1:size(V,1)); + for ii=flip(1:size(V,2)); + if V(i,ii)==0; + test4(i,ii)=0; + elseif V(i,ii)==1; + test4(i,ii)=200; + break + end + end +end +test2=test1+test%+test3+test4 +figure +imshow(T); +h=gca;h.Visible='on' +figure +imagesc(test2) +colormapJes=[1 1 1; 0 0 0; 0 0 0;0 0 0] +colormap(colormapJes); axis ij +[x y]=find(test2>=1); +figure +plot(y/61,x/61,'k*','MarkerSize',1); axis ij +hold on + + +%change values of V for labeled cell area detection +V1=T(:,:,1)<=70; +V1=imresize(V1,0.1); +[x1,y1]=find(V1==1); +plot(y1/61,x1/61,'ro','MarkerSize',3,'MarkerFaceColor',[1 0 0]); axis ij %pixel size is 0.61*factor of 10 of IMresize +k=boundary(x1,y1,1); +patch(y1(k)/61,x1(k)/61,[1, 0 0],'FaceAlpha',0.5,'LineStyle','none') + +%% +figure +plot(NeuronLoc(1:291,3),NeuronLoc(1:291,4),'ro','MarkerFaceColor','r') +hold on +plot(NeuronLoc(292:end,3),NeuronLoc(292:end,4),'go','MarkerFaceColor','g') +%% +figure + +plot((xmc/0.61)*10,(ymc/0.61)*10,'r*','MarkerSize',0.7,'MarkerEdgeColor',[1 0 0]) +hold on +kmc=boundary(x1mc,y1mc,0.9) +p1=patch((x1mc(kmc)/0.61)*10,(y1mc(kmc)/0.61)*10,[1 0 0],'FaceAlpha',0.4,'LineStyle','none') +plot((xsc/0.61)*10,(ysc/0.61)*10,'b*','MarkerSize',0.7,'MarkerEdgeColor',[0 0 1]) +ksc=boundary(x1sc,y1sc,0.9) +p2=patch((x1sc(ksc)/0.61)*10,(y1sc(ksc)/0.61)*10,[0 0 1],'FaceAlpha',0.4,'LineStyle','none') +plot((xbs/0.61)*10,(ybs/0.61)*10,'g*','MarkerSize',0.7,'MarkerEdgeColor',[0 1 0]) +kbs=boundary(x1bs,y1bs,0.9) +p3=patch((x1bs(kbs)/0.61)*10,(y1bs(kbs)/0.61)*10,[0 1 0],'FaceAlpha',0.4,'LineStyle','none') +title('Location of MC, BC, BS recepient areas in SC ') +legend([p1 p2 p3],{'MC','BC','BS'},'Location','southeast') +set(gca,'XTick',0:500:2500) +%set(gca,'YTickLabel',["0","0.5","1","1.5","2.0","2.5" +ylim([0 2800]) +xlim([0 2800]) +view([90 90]); +xlabel('Ventral<---->Dorsal (µm)') +ylabel('Lateral<---->Medial (µm)') \ No newline at end of file diff --git a/Jesus/duration.m b/Jesus/duration.m new file mode 100644 index 0000000..eb7706c --- /dev/null +++ b/Jesus/duration.m @@ -0,0 +1,143 @@ +%% VPM Control +ClustersControlOnset1stVPMLong=nan(size(ClustersControlOnsetVPM,1),size(ClustersControlOnsetVPM,2)); +id=find(ClustersControlOnsetVPM>=-0.2 & ClustersControlOnsetVPM<=0.05); +for i=1:size(id); +ClustersControlOnset1stVPMLong(id(i))=ClustersControlOnsetVPM(id(i)); +end +zRespControl=zscore(hist(ClustersControlOnset1stVPMLong,500)); +sigRespControl=zRespControl>=1.95; +Tscale=[-0.200:0.0005:0.05-0.0005]; + +TWsigResp=nan(250,size(ClustersControlOnset1stVPM,2)); +for i = 1:size(sigRespControl,2) + TsigResp=Tscale(sigRespControl(:,i)==1); + TWsigResp(1:size(TsigResp,2),i)=TsigResp; +end +TWsigResp=TWsigResp+0.0025 + +Ctl=nan(size(TWsigResp,1),size(TWsigResp,2)); +for i=1:size(TWsigResp,2) + BCtl=TWsigResp>0.005&TWsigResp<0.04; + cCtl=TWsigResp(BCtl(:,i),i); + Ctl(1:size(cCtl,1),i)=cCtl; +end + +%% VPM AI +ClustersL200Onset1stVPMLong=nan(size(ClustersL200OnsetVPM,1),size(ClustersL200OnsetVPM,2)); +idAI=find(ClustersL200OnsetVPM>=-0.2 & ClustersL200OnsetVPM<=0.05); +for i=1:size(idAI); +ClustersL200Onset1stVPMLong(idAI(i))=ClustersL200OnsetVPM(idAI(i)); +end +zRespAI=zscore(hist(ClustersL200Onset1stVPMLong,500)); +sigRespAI=zRespAI>=1.95; +Tscale=[-0.200:0.0005:0.05-0.0005]; + +TWsigRespAI=nan(250,size(ClustersL200Onset1stVPM,2)); +for i = 1:size(sigRespAI,2) + TsigRespAI=Tscale(sigRespAI(:,i)==1); + TWsigRespAI(1:size(TsigRespAI,2),i)=TsigRespAI; +end +TWsigRespAI=TWsigRespAI+0.0025 + +C=nan(size(TWsigRespAI,1),size(TWsigRespAI,2)); +for i=1:size(TWsigRespAI,2) + B=TWsigRespAI>0.005&TWsigRespAI<0.04; + c=TWsigRespAI(B(:,i),i); + C(1:size(c,1),i)=c; +end +%% S1 Control +ClustersControlOnset1stS1Long=nan(size(ClustersControlOnsetS1,1),size(ClustersControlOnsetS1,2)); +idS1=find(ClustersControlOnsetS1>=-0.2 & ClustersControlOnsetS1<=0.05); +for i=1:size(idS1); +ClustersControlOnset1stS1Long(idS1(i))=ClustersControlOnsetS1(idS1(i)); +end +zRespControlS1=zscore(hist(ClustersControlOnset1stS1Long,500)); +sigRespControlS1=zRespControlS1>=1.95; +Tscale=[-0.200:0.0005:0.05-0.0005]; + +TWsigRespS1=nan(250,size(ClustersControlOnset1stS1,2)); + +for i = 1:size(sigRespControlS1,2) + TsigRespS1=Tscale(sigRespControlS1(:,i)==1); + TWsigRespS1(1:size(TsigRespS1,2),i)=TsigRespS1; +end +TWsigRespS1=TWsigRespS1+0.0025 + +CtlS1=nan(size(TWsigRespS1,1),size(TWsigRespS1,2)); +for i=1:size(TWsigRespS1,2) + BCtlS1=TWsigRespS1>0.005&TWsigRespS1<0.04; + cCtlS1=TWsigRespS1(BCtlS1(:,i),i); + CtlS1(1:size(cCtlS1,1),i)=cCtlS1; +end + +%% S1 Laser +ClustersL200Onset1stS1Long=nan(size(ClustersL200OnsetS1,1),size(ClustersL200OnsetS1,2)); +idAIS1=find(ClustersL200OnsetS1>=-0.2 & ClustersL200OnsetS1<=0.05); +for i=1:size(idAIS1); +ClustersL200Onset1stS1Long(idAIS1(i))=ClustersL200OnsetS1(idAIS1(i)); +end +zRespAIS1=zscore(hist(ClustersL200Onset1stS1Long,500)); +sigRespAIS1=zRespAIS1>=1.95; +Tscale=[-0.200:0.0005:0.05-0.0005]; + +TWsigRespAIS1=nan(250,size(ClustersL200Onset1stS1,2)); +for i = 1:size(sigRespAIS1,2) + TsigRespAIS1=Tscale(sigRespAIS1(:,i)==1); + TWsigRespAIS1(1:size(TsigRespAIS1,2),i)=TsigRespAIS1; +end +TWsigRespAIS1=TWsigRespAIS1+0.0025 + +CS1=nan(size(TWsigRespAIS1,1),size(TWsigRespAIS1,2)); +for i=1:size(TWsigRespAIS1,2) + BS1=TWsigRespAIS1>0.005&TWsigRespAIS1<0.04; + cS1=TWsigRespAIS1(BS1(:,i),i); + CS1(1:size(cS1,1),i)=cS1; +end +%% TRN Control +ClustersControlOnset1stTRNLong=nan(size(ClustersControlOnsetTRN,1),size(ClustersControlOnsetTRN,2)); +idTRN=find(ClustersControlOnsetTRN>=-0.2 & ClustersControlOnsetTRN<=0.05); +for i=1:size(idTRN); +ClustersControlOnset1stTRNLong(idTRN(i))=ClustersControlOnsetTRN(idTRN(i)); +end +zRespControlTRN=zscore(hist(ClustersControlOnset1stTRNLong,500)); +sigRespControlTRN=zRespControlTRN>=1.95; +Tscale=[-0.200:0.0005:0.05-0.0005]; + +TWsigRespTRN=nan(250,size(ClustersControlOnset1stTRN,2)); +for i = 1:size(sigRespControlTRN,2) + TsigRespTRN=Tscale(sigRespControlTRN(:,i)==1); + TWsigRespTRN(1:size(TsigRespTRN,2),i)=TsigRespTRN; +end +TWsigRespTRN=TWsigRespTRN+0.0025 + +CtlTRN=nan(size(TWsigRespTRN,1),size(TWsigRespTRN,2)); +for i=1:size(TWsigRespTRN,2) + BCtlTRN=TWsigRespTRN>0.005&TWsigRespTRN<0.04; + cCtlTRN=TWsigRespTRN(BCtlTRN(:,i),i); + CtlTRN(1:size(cCtlTRN,1),i)=cCtlTRN; +end + +%% TRN Laser +ClustersL200Onset1stTRNLong=nan(size(ClustersL200OnsetTRN,1),size(ClustersL200OnsetTRN,2)); +idAITRN=find(ClustersL200OnsetTRN>=-0.2 & ClustersL200OnsetTRN<=0.05); +for i=1:size(idAITRN); +ClustersL200Onset1stTRNLong(idAITRN(i))=ClustersL200OnsetTRN(idAITRN(i)); +end +zRespAITRN=zscore(hist(ClustersL200Onset1stTRNLong,500)); +sigRespAITRN=zRespAITRN>=1.95; +Tscale=[-0.200:0.0005:0.05-0.0005]; + +TWsigRespAITRN=nan(250,size(ClustersL200Onset1stTRN,2)); +for i = 1:size(sigRespAITRN,2) + TsigRespAITRN=Tscale(sigRespAITRN(:,i)==1); + TWsigRespAITRN(1:size(TsigRespAITRN,2),i)=TsigRespAITRN; +end +TWsigRespAITRN=TWsigRespAITRN+0.0025; + +CTRN=nan(size(TWsigRespAITRN,1),size(TWsigRespAITRN,2)); +for i=1:size(TWsigRespAITRN,2) + BTRN=TWsigRespAITRN>0.005&TWsigRespAITRN<0.04; + cTRN=TWsigRespAITRN(BTRN(:,i),i); + CTRN(1:size(cTRN,1),i)=cTRN; +end + diff --git a/Jesus/eCDFcontrol-after.m b/Jesus/eCDFcontrol-after.m new file mode 100644 index 0000000..71e4c84 --- /dev/null +++ b/Jesus/eCDFcontrol-after.m @@ -0,0 +1,257 @@ +%cdfplot(control) +figure +subplot(2,5,[1 2]) +VPMControlON1st=AllControlOnVPM(AllControlOnVPM<=0.020 & AllControlOnVPM>=0.002); +TRNControlON1st=AllControlOnTRN(AllControlOnTRN<=0.020 & AllControlOnTRN>=0.002); +S1ControlON1st=AllControlOnS1(AllControlOnS1<=0.020 & AllControlOnS1>=0.002); +cdfplot(VPMControlON1st); hold on +cdfplot(TRNControlON1st); +cdfplot(S1ControlON1st); +title("First stimulus Control");xlabel("time in ms");ylabel("Cumulative probability"); +legend("VPM","TRN","S1"); +saveFigure(figure(1),['Z:/Jesus\LTP_Jesus_Emilio/PopFigures/TRN_VPM_S1figures/CDF_COntrol_1st_S1_TRN_VPM']); + +%cdfplot (afterinducton + +subplot(2,5,[6 7]) +VPMAfterON1st=AllL200VPM(AllL200VPM<=0.020 & AllL200VPM>=0.002); +TRNafterON1st=AllL200TRN(AllL200TRN<=0.020 & AllL200TRN>=0.002); +S1L2001st=AllL200S1(AllL200S1<=0.020 & AllL200S1>=0.002); +cdfplot(VPMAfterON1st);hold on; +cdfplot(TRNafterON1st); +cdfplot(S1L2001st); +title("First stimulus After-Induction");xlabel("time in ms");ylabel("Cumulative probability"); +legend("VPM","TRN","S1"); +%%Boxplot control +S1stControl= ClustersControlOnsetS1>=0 & ClustersControlOnsetS1<=0.040; +VPM1stControl=ClustersControlOnsetVPM>=0 & ClustersControlOnsetVPM<=0.040; +TRN1stControl=ClustersControlOnsetTRN>=0 & ClustersControlOnsetTRN<=0.040; +subplot(2,5,[4 5]) +boxplot(CircuitMode,'Labels',{'VPM','TRN','S1Bf'},'Orientation','horizontal');xlim([-0.010 0.043]); title(" Spike Time Mode Control"); +xlabel("time in s") +subplot(2,5,[9 10]) +boxplot(CircuitModeAfter,'Labels',{'VPM','TRN','S1Bf'},'Orientation','horizontal');xlim([-0.010 0.043]); title(" Spike Time Mode Control"); +xlabel("Time in ms") +saveFigure(figure(1),['Z:/Jesus\LTP_Jesus_Emilio/PopFigures/TRN_VPM_S1figures/CDF_andBoxplotMode_control_and_after_1st_S1_TRN_VPM']); + +CircuitMode= NaN(300,3); CircuitMode(1:size(VPMMode1st),1)=VPMMode1st; +CircuitMode(1:size(TRNMode1st),2)=TRNMode1st; CircuitMode(1:size(s1Mode1st),3)=s1Mode1st; +CircuitModeAfter= NaN(300,3); CircuitModeAfter(1:size(VPMMode1stAfter),1)=VPMMode1stAfter; +CircuitModeAfter(1:size(TRNMode1stAfter),2)=TRNMode1stAfter; CircuitModeAfter(1:size(s1Mode1stAfter),3)=s1Mode1stAfter; +figure; +boxplot([CircuitMode(:,1) CircuitModeAfter(:,1)],'Orientation','horizontal');xlim([0 0.02]); +figure; +boxplot([CircuitMode(:,2) CircuitModeAfter(:,2)],'Orientation','horizontal');xlim([0 0.02]); +yticklabels({"TRN-Control","TRN-After-Induction"}) +figure; +boxplot([CircuitMode(:,3) CircuitModeAfter(:,3)],'Orientation','horizontal');xlim([0 0.02]); +yticklabels({"S1-Control","S1-After-Induction"}) + + +%% sequential mapa control +%MOCK +ClustersControlOnset1stMOCK=nan(size(ClustersControlOnsetMOCK,1),size(ClustersControlOnsetMOCK,2)); +id=find(ClustersControlOnsetMOCK>=0.003 & ClustersControlOnsetMOCK<=0.04); +for i=1:size(id); +ClustersControlOnset1stMOCK(id(i))=ClustersControlOnsetMOCK(id(i)); +end +ClustersControlOnset1stMOCK=(ClustersControlOnset1stMOCK)+0.0025; +boxplot(mode(ClustersControlOnset1stMOCK)) +%vpm + +ClustersControlOnset1stVPM=nan(size(ClustersControlOnsetVPM,1),size(ClustersControlOnsetVPM,2)); +id=find(ClustersControlOnsetVPM>=0.003 & ClustersControlOnsetVPM<=0.04); +for i=1:size(id); +ClustersControlOnset1stVPM(id(i))=ClustersControlOnsetVPM(id(i)); +end +ClustersControlOnset1stVPM=(ClustersControlOnset1stVPM)+0.0025; +boxplot(mode(ClustersControlOnset1stVPM)) +%TRN +ClustersControlOnset1stTRN=nan(size(ClustersControlOnsetTRN,1),size(ClustersControlOnsetTRN,2)); +id=find(ClustersControlOnsetTRN>=0.003 & ClustersControlOnsetTRN<=0.04); +for i=1:size(id); +ClustersControlOnset1stTRN(id(i))=ClustersControlOnsetTRN(id(i)); +end +ClustersControlOnset1stTRN=(ClustersControlOnset1stTRN)+0.0025; +boxplot(mode(ClustersControlOnset1stTRN)) + +%S1 +ClustersControlOnset1stS1=nan(size(ClustersControlOnsetS1,1),size(ClustersControlOnsetS1,2)); +id=find(ClustersControlOnsetS1>=0.005 & ClustersControlOnsetS1<=0.04); +for i=1:size(id); +ClustersControlOnset1stS1(id(i))=ClustersControlOnsetS1(id(i)); +end +ClustersControlOnset1stS1=(ClustersControlOnset1stS1)+0.0025; +boxplot(mode(ClustersControlOnset1stS1)) + +VPMMode1st=mode(ClustersControlOnset1stVPM)'; +s1Mode1st=mode(ClustersControlOnset1stS1)'; +TRNMode1st=mode(ClustersControlOnset1stTRN)'; +figure; +CircuitMode= NaN(300,3); CircuitMode(1:size(VPMMode1st),1)=VPMMode1st; +CircuitMode(1:size(TRNMode1st),2)=TRNMode1st; CircuitMode(1:size(s1Mode1st),3)=s1Mode1st; +boxplot(CircuitMode) +secuantialactivationVPMTRNS1map=cat(2,ClustersControlOnset1stVPM(:,4:54),ClustersControlOnset1stTRN(:,1:50),ClustersControlOnset1stS1(:,100:150)); +figure(1); +subplot(13,1,[1 2 3 4]); ax2=subplot(13,1,[1 2 3 4]) +plot([-0.007:0.0005:0.043-0.0005],zscore(hist(ClustersControlOnset1stVPM(:),100)),'LineWidth',2);hold on; plot([-0.007:0.0005:0.043-0.0005],zscore(hist(ClustersControlOnset1stTRN(:),100)),'LineWidth',2) +plot([-0.007:0.0005:0.043-0.0005],zscore(hist(ClustersControlOnset1stS1(:),100)),'LineWidth',2);hold off; xlim([-0.005 0.04]) +title("Sequential activation Control"), xlabel("time in s");ylabel("zscore") +figure(1) +subplot(13,1,[6 7 8 9 10 11 12 13]); ax3=subplot(13,1,[6 7 8 9 10 11 12 13]) +secuantialactivationVPMTRNS1Controlmap=cat(2,ClustersControlOnset1stVPM(:,4:54),ClustersControlOnset1stTRN(:,1:50),ClustersControlOnset1stS1(:,100:150)); +NtotalCircuitControl=1:size(secuantialactivationVPMTRNS1Controlmap,2); +ZscoresequentialPsthControl=zscore(hist(secuantialactivationVPMTRNS1Controlmap,50)) +imagesc([-0.010:0.001:0.05-0.001],NtotalCircuitControl,ZscoresequentialPsthControl'); axis xy +colormap(jet);caxis([0 5]);hold on; plot([0,size(NtotalCircuitControl,2)],[0.0;0.0],'LineStyle','--','LineWidth',2,'Color','w') +hold off; xlim([-0.005 0.04]); xlabel("time in s");ylabel("Circuit clusters") +hold on +plot([-0.005 0.04],[42;42],'LineStyle','--','LineWidth',1,'Color','w') +plot([-0.005 0.04],[91;91],'LineStyle','--','LineWidth',1,'Color','w') +hold off + +linkaxes([ax2,ax3],'x'); colorbar; titlecolorbar=colorbar; titlecolorbar.Label.String= "zscore" +saveFigure(figure(1),['Z:/Jesus\LTP_Jesus_Emilio/PopFigures/TRN_VPM_S1figures/Sequential_Activation1st_S1_TRN_VPM_Control']); + + +%% mapa afterinduction sequential +ClustersL200Onset1stMOCK=nan(size(ClustersL200OnsetMOCK,1),size(ClustersL200OnsetMOCK,2)); +id=find(ClustersL200OnsetMOCK>=0.003 & ClustersL200OnsetMOCK<=0.04); +for i=1:size(id); + ClustersL200Onset1stMOCK(id(i))=ClustersL200OnsetMOCK(id(i)); +end +ClustersL200Onset1stMOCK=(ClustersL200Onset1stMOCK)+0.0025; +boxplot(mode(ClustersL200Onset1stMOCK)) + + +ClustersL200Onset1stVPM=nan(size(ClustersL200OnsetVPM,1),size(ClustersL200OnsetVPM,2)); +id=find(ClustersL200OnsetVPM>=0.003 & ClustersL200OnsetVPM<=0.04); +for i=1:size(id); + ClustersL200Onset1stVPM(id(i))=ClustersL200OnsetVPM(id(i)); +end +ClustersL200Onset1stVPM=(ClustersL200Onset1stVPM)+0.0025; +boxplot(mode(ClustersL200Onset1stVPM)) + +ClustersL200Onset1stTRN=nan(size(ClustersL200OnsetTRN,1),size(ClustersL200OnsetTRN,2)); +id=find(ClustersL200OnsetTRN>=0 & ClustersL200OnsetTRN<=0.04); +for i=1:size(id); +ClustersL200Onset1stTRN(id(i))=ClustersL200OnsetTRN(id(i)); +end +ClustersL200Onset1stTRN=(ClustersL200Onset1stTRN)+0.0025; +boxplot(mode(ClustersL200Onset1stTRN)) + +ClustersL200Onset1stS1=nan(size(ClustersL200OnsetS1,1),size(ClustersL200OnsetS1,2)); +id=find(ClustersL200OnsetS1>=0.003 & ClustersL200OnsetS1<=0.04); +for i=1:size(id); +ClustersL200Onset1stS1(id(i))=ClustersL200OnsetS1(id(i)); +end +ClustersL200Onset1stS1=(ClustersL200Onset1stS1)+0.0025; +boxplot(mode(ClustersL200Onset1stS1)) + +VPMMode1stAfter=mode(ClustersL200Onset1stVPM)'; +s1Mode1stAfter=mode(ClustersL200Onset1stS1)'; +TRNMode1stAfter=mode(ClustersL200Onset1stTRN)'; + +subplot(13,1,[1 2 3 4]); ax2=subplot(13,1,[1 2 3 4]) +plot([-0.007:0.0005:0.043-0.0005],zscore(hist(ClustersL200Onset1stVPM(:),100)),'LineWidth',2);hold on; plot([-0.007:0.0005:0.043-0.0005],zscore(hist(ClustersL200Onset1stTRN(:),100)),'LineWidth',2) +plot([-0.007:0.0005:0.043-0.0005],zscore(hist(ClustersL200Onset1stS1(:),100)),'LineWidth',2);hold off; xlim([-0.005 0.04]) +title("Sequential activation After-Induction"), xlabel("time in s");ylabel("zscore") + +subplot(13,1,[6 7 8 9 10 11 12 13]); ax3=subplot(13,1,[6 7 8 9 10 11 12 13]) +secuantialactivationVPMTRNS1AFTERmap=cat(2,ClustersL200Onset1stVPM(:,4:54),ClustersL200Onset1stTRN(:,1:50),ClustersL200Onset1stS1(:,100:150)); +NtotalCircuit=1:size(secuantialactivationVPMTRNS1AFTERmap,2); +ZscoresequentialPsth=zscore(hist(secuantialactivationVPMTRNS1AFTERmap,50)) +imagesc([-0.017:0.0001:0.053-0.001],NtotalCircuit,ZscoresequentialPsth'); axis xy +colormap(jet);caxis([-1 8]);hold on; plot([0;size(NtotalCircuit,2)],[0.0;0.0],'LineStyle','--','LineWidth',2,'Color','w') +hold off; xlim([-0.005 0.04]); xlabel("time in s");ylabel("Circuit clusters") + +linkaxes([ax2,ax3],'x'); colorbar; titlecolorbar=colorbar; +saveFigure(figure(1),['Z:/Jesus\LTP_Jesus_Emilio/PopFigures/TRN_VPM_S1figures/Sequential_Activation1st_S1_TRN_VPM_After']); +%% probability diff +%VPM +MatrixVPMProbAfter1st=histcounts(ClustersL200Onset1stVPM,50,'Normalization','probability') +MatrixVPMProbControl1st=histcounts(ClustersControlOnset1stVPM,50,'Normalization','probability'); +diffProb1stVPM=MatrixVPMProbAfter1st-MatrixVPMProbControl1st; +plot(diffProb1stVPM); +%TRN +MatrixTRNProbAfter1st=histcounts(ClustersL200Onset1stTRN,50,'Normalization','probability') +MatrixTRNProbControl1st=histcounts(ClustersControlOnset1stTRN,50,'Normalization','probability'); +diffProb1stTRN=MatrixTRNProbAfter1st-MatrixTRNProbControl1st; +plot(diffProb1stTRN); +%S1 +MatrixS1ProbAfter1st=histcounts(ClustersL200Onset1stS1,50,'Normalization','probability') +MatrixS1ProbControl1st=histcounts(ClustersControlOnset1stS1,50,'Normalization','probability'); +diffProb1stS1=MatrixS1ProbAfter1st-MatrixS1ProbControl1st; +plot(diffProb1stS1); +% plot diff in probability per structura VPM TRN S1 +plot([-0.007:0.001:0.043-0.001],diffProb1stVPM,'LineWidth',2) +hold on +plot([-0.007:0.001:0.043-0.001],diffProb1stTRN,'LineWidth',2) +plot([-0.007:0.001:0.043-0.001],diffProb1stS1,'LineWidth',2) +title("Probability Change") + legend("VPM","TRN","S1"); hold off; + +%mock get 1st trial control +ClustersControlOnset1stMOCK=nan(size(ClustersControlOnsetMOCK,1),size(ClustersControlOnsetMOCK,2)); +id=find(ClustersControlOnsetMOCK>=-0.010 & ClustersControlOnsetMOCK<=0.04); +for i=1:size(id); +ClustersControlOnset1stMOCK(id(i))=ClustersControlOnsetMOCK(id(i)); +end +ClustersControlOnset1stMOCK=(ClustersControlOnset1stMOCK)+0.003; +boxplot(mode(ClustersControlOnset1stMOCK)) +%mock get 1st trial After +ClustersL200Onset1stMOCK=nan(size(ClustersL200OnsetMOCK,1),size(ClustersL200OnsetMOCK,2)); +id=find(ClustersL200OnsetMOCK>=-0.010 & ClustersL200OnsetMOCK<=0.04); +for i=1:size(id); +ClustersL200Onset1stMOCK(id(i))=ClustersL200OnsetMOCK(id(i)); +end +ClustersL200Onset1stMOCK=(ClustersL200Onset1stMOCK)+0.003; +boxplot(mode(ClustersL200Onset1stMOCK)) + +%Ratio +MatrixMOCKProbAfter1st=histcounts(ClustersL200Onset1stMOCK,50,'Normalization','probability') +MatrixMOCKProbControl1st=histcounts(ClustersControlOnset1stMOCK,50,'Normalization','probability'); +diffProb1stMOCK=MatrixMOCKProbAfter1st-MatrixMOCKProbControl1st; +plot(diffProb1stMOCK); + +ratioProb1stVPM=((MatrixVPMProbAfter1st./MatrixVPMProbControl1st)-1)*100; +ratioProb1stTRN=((MatrixTRNProbAfter1st./MatrixTRNProbControl1st)-1)*100; +ratioProb1stS1=((MatrixS1ProbAfter1st./MatrixS1ProbControl1st)-1)*100; +ratioProb1stMOCK=((MatrixMOCKProbAfter1st./MatrixMOCKProbControl1st)-1)*100; +figure +plot([-0.007:0.001:0.043-0.001],ratioProb1stVPM,'LineWidth',2); hold on; +plot([-0.007:0.001:0.043-0.001],ratioProb1stTRN,'LineWidth',2); +plot([-0.007:0.001:0.043-0.001],ratioProb1stS1,'LineWidth',2); +plot([-0.007:0.001:0.043-0.001],ratioProb1stMOCK,'LineWidth',2); hold off +legend("VPM","TRN","S1","MOCK-VPM"); +saveFigure(figure(1),['Z:\Jesus\LTP_Jesus_Emilio\PopFigures\TRN_VPM_S1figures/Ratio_ALL']); +figure; +plot([-0.007:0.001:0.043-0.001],ratioProb1stVPM,'LineWidth',2); hold on +plot([-0.007:0.001:0.043-0.001],ratioProb1stMOCK,'LineWidth',2);hold off +legend("VPM","MOCK-VPM"); title("Probability ratio After/Control");xlabel("time (s)") +ylabel("% Change") + +saveFigure(figure(1),['Z:\Jesus\LTP_Jesus_Emilio\PopFigures\TRN_VPM_S1figures/Ratio_MockvsVPM']) +%% +CircuitModeAfter= NaN(300,3); CircuitModeAfter(1:size(VPMMode1stAfter),1)=VPMMode1stAfter; +CircuitModeAfter(1:size(TRNMode1stAfter),2)=TRNMode1stAfter; CircuitModeAfter(1:size(s1Mode1stAfter),3)=s1Mode1stAfter; +subplot(9,1,[1 2 3 4]); ax1=subplot(9,1,[1 2 3 4]) +boxplot(CircuitModeAfter,'Orientation','horizontal');xlim([-0.010 0.043]) +subplot(9,1,[6 7 8 9]); ax2=subplot(9,1,[6 7 8 9]) +boxplot(CircuitMode,'Orientation','horizontal');xlim([-0.010 0.043]) +linkaxes([ax1 ax2],'xy') + +subplot(16,1,[5 6 7 8]); ax2=subplot(16,1,[5 6 7 8]) +plot([-0.007:0.0005:0.043-0.0005],zscore(hist(ClustersL200Onset1stVPM(:),100)),'LineWidth',2);hold on; plot([-0.007:0.0005:0.043-0.0005],zscore(hist(ClustersL200Onset1stTRN(:),100)),'LineWidth',2) +plot([-0.007:0.0005:0.043-0.0005],zscore(hist(ClustersL200Onset1stS1(:),100)),'LineWidth',2);hold off +xlim([-0.005 0.04]) + +subplot(16,1,[10 11 12 13 14 15 16]); ax3=subplot(16,1,[10 11 12 13 14 15 16]) +secuantialactivationVPMTRNS1AFTERmap=cat(2,ClustersL200Onset1stVPM(:,4:45),ClustersL200Onset1stTRN(:,1:50),ClustersL200Onset1stS1(:,1:41)); +NtotalCircuit=1:size(secuantialactivationVPMTRNS1AFTERmap,2); + +imagesc(NtotalCircuit,[-0.007:0.001:0.043-0.001],zscore(hist(secuantialactivationVPMTRNS1AFTERmap,100))) +colormap(jet);caxis([-1 8]);view([-90 90]);hold on; plot([0;size(NtotalCircuit,2)],[0.0;0.0],'LineStyle','--','LineWidth',2,'Color','w') +hold off; ylim([-0.005 0.04]) +linkaxes([ax1,ax2,ax3],'x'); + diff --git a/Jesus/exampleToStractwaveslicesIndex.m b/Jesus/exampleToStractwaveslicesIndex.m new file mode 100644 index 0000000..a6601ce --- /dev/null +++ b/Jesus/exampleToStractwaveslicesIndex.m @@ -0,0 +1,7 @@ +ct=[] +for i=1:size(b,2); + spike=a(b(i)-10:1:b(i)+5); + ct(:,i)=spike +end + +wave=mean(ct,2); diff --git a/Jesus/example_concat_two_spikeTimes.m b/Jesus/example_concat_two_spikeTimes.m new file mode 100644 index 0000000..8837c59 --- /dev/null +++ b/Jesus/example_concat_two_spikeTimes.m @@ -0,0 +1 @@ + c=cat(1,relativeSpkTmsStruct_1(6).SpikeTimes{:,1:40}, relativeSpkTmsStruct_2(6).SpikeTimes{:,1:40}); \ No newline at end of file diff --git a/Jesus/exportChannels2Matrix1.m b/Jesus/exportChannels2Matrix1.m new file mode 100644 index 0000000..f2e9371 --- /dev/null +++ b/Jesus/exportChannels2Matrix1.m @@ -0,0 +1,36 @@ + +clear all +%open('D:\mat to brainstorm\TestAllChannels1.mat') +path='C:\Users\jesus\Desktop\Test' +myfile='Test18.mat' +cd(path) +names=fieldnames(open(myfile)); +goods=[]; +for i=1:numel(names) + if ~isempty(strfind(names{i},'Ch')) + if isempty(strfind(names{i},'Ch31')) + goods=[goods;i]; + end + end +end +names=names(goods) + +%get number sample points +firstchan=load(myfile,names{1}) +eval(['nsamples=firstchan.' names{1} '.length;']) +nchan=numel(names); +%% +V=zeros(nsamples,nchan); %%preallocate space + +%get every individual channel +for i=1:nchan + thischan=names{i}; %name of channel as string + v=load(myfile,thischan); %load channel from file + eval([' V(:,i)=v.' thischan '.values;']) %put channel values in to preallocated matrix + clear v + +end + +outputfile=[myfile(1:end-4) '_matrix'] +save(outputfile,'V') +save(outputfile,'V','-v7.3') \ No newline at end of file diff --git a/Jesus/figureGMMallCX.m b/Jesus/figureGMMallCX.m new file mode 100644 index 0000000..03d3dd3 --- /dev/null +++ b/Jesus/figureGMMallCX.m @@ -0,0 +1,29 @@ +figure + + +%plot(XtestFB,YtestFB,'o','MarkerSize',1,'MarkerEdgeColor',[0.3 0.3 0.3],'MarkerFaceColor',[0.3 0.3 0.3]) + + +%plot(XtestCVB,YtestCVB,'go','MarkerSize',1) +gmtestCVGBC=fitgmdist([XYBCGMMCVGALLCX(:,1)/0.61,XYBCGMMCVGALLCX(:,2)/0.61],2) +D=fcontour(@(x,y) pdf(gmtestCVGALL, [y,x]), [[00, 00]/0.61;[2000,2000]],'LineWidth',1.5,'LevelStep',0.0000001,'Fill','on') +hold on + +maxDen=max(D.ZData(:)) +[XMaxTestD YMaxTestD]=find(D.ZData==maxDen) +Ncell=size(D.ZData,1);rxValue=D.XRange(2)/Ncell +plot(YMaxTestD*rxValue,XMaxTestD*rxValue,'Ko','MarkerSize',10,'MarkerFaceColor',[0.2 0.2 0.2]) +plot(XYGMMFDIOALLCX(:,2)/0.61,XYGMMFDIOALLCX(:,1)/0.61,'ro','MarkerSize',2,'MarkerEdgeColor',[0.7 0.2 0.2],'MarkerFaceColor',[0.7 0.2 0.2]) +hold on +plot(XtestC/.61,YtestC/0.61,'ko','MarkerSize',1) +plot(XYBCGMMCVGALLCX(:,2)/0.61,XYBCGMMCVGALLCX(:,1)/0.61,'go','MarkerSize',2,'MarkerEdgeColor',[0.2 0.5 0.2],'MarkerFaceColor',[0.2 0.5 0.2]) +xlim([2 2500]) +ylim([2 2500]) +view([90 90]) +legend('GMM','Max prob CVG area','RN','slice Contour','CVG-RN','Location','southwest') +legend('boxoff') +title(" gausians mixture model all cx CVG-RN area") +ylabel("Dorso-Ventral") +xlabel("Dorso-Ventral") +ylabel("Medio-Lateral") +colormap(jet(128)) \ No newline at end of file diff --git a/Jesus/figurefinal3dplot.m b/Jesus/figurefinal3dplot.m new file mode 100644 index 0000000..6a7e624 --- /dev/null +++ b/Jesus/figurefinal3dplot.m @@ -0,0 +1,199 @@ +figure +subplot(2,2,[1 3]) + +plot3((zeros(size(x3d(:,1),1),1)+0),flip(y3d(:,1))/0.61,flip(x3d(:,1))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +hold on + +plot3((zeros(size(xIntS(:,1),1),1)+0),flip(yIntS)/0.61,flip(xIntS)/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.8 0.8 0.8]) +%plot3((zeros(size(xIntL(:,1),1),1)+0),flip(yIntL)/0.61,flip(xIntL)/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +plot3((zeros(size(xIntI(:,1),1),1)+0),flip(yIntI)/0.61,flip(xIntI)/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.8 0.8 0.8]) + +plot3((zeros(size(x3d(:,2),1),1)+50),flip(y3d(:,2))/0.61,flip(x3d(:,2))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1],'MarkerEdgeColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,8),1),1)+100),flip(y3d(:,8))/0.61,flip(x3d(:,8))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1],'MarkerEdgeColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,9),1),1)+150),flip(y3d(:,9))/0.61,flip(x3d(:,9))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1],'MarkerEdgeColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,10),1),1)+200),flip(y3d(:,10))/0.61,flip(x3d(:,10))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1],'MarkerEdgeColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,11),1),1)+250),flip(y3d(:,11))/0.61,flip(x3d(:,11))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1],'MarkerEdgeColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,12),1),1)+300),flip(y3d(:,12))/0.61,flip(x3d(:,12))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1],'MarkerEdgeColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,13),1),1)+350),flip(y3d(:,13))/0.61,flip(x3d(:,13))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1],'MarkerEdgeColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,14),1),1)+400),flip(y3d(:,14))/0.61,flip(x3d(:,14))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1],'MarkerEdgeColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,15),1),1)+450),flip(y3d(:,15))/0.61,flip(x3d(:,15))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1],'MarkerEdgeColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,3),1),1)+500),flip(y3d(:,3))/0.61,flip(x3d(:,3))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1],'MarkerEdgeColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,4),1),1)+550),flip(y3d(:,4))/0.61,flip(x3d(:,4))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1],'MarkerEdgeColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,5),1),1)+600),flip(y3d(:,5))/0.61,flip(x3d(:,5))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1],'MarkerEdgeColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,6),1),1)+650),flip(y3d(:,6))/0.61,flip(x3d(:,6))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1],'MarkerEdgeColor',[0.1 0.1 0.1]) +plot3((zeros(size(x3d(:,7),1),1)+700),flip(y3d(:,7))/0.61,flip(x3d(:,7))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1],'MarkerEdgeColor',[0.1 0.1 0.1]) + + + + +box off +axis ij +xlabel("Antero-Posterior (µm)") +ylabel("Medio-lateral (µm)") +zlabel("dorso-Ventral (µm)") +title("3D distribution of Cortical and peripheral inputs in SC ") + +pgreen1=plot3((zeros(size(x3d1(:,1),1),1)+0),flip(y3d1(:,1))/0.61,flip(x3d1(:,1))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 1 0.1],'MarkerEdgeColor',[0.1 1 0.1]) +hold on +plot3((zeros(size(x3d1(:,2),1),2)+50),flip(y3d1(:,2))/0.61,flip(x3d1(:,2))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 1 0.1],'MarkerEdgeColor',[0.1 1 0.1]) +plot3((zeros(size(x3d1(:,8),1),1)+100),flip(y3d1(:,8))/0.61,flip(x3d1(:,8))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 1 0.1],'MarkerEdgeColor',[0.1 1 0.1]) +plot3((zeros(size(x3d1(:,9),1),1)+150),flip(y3d1(:,9))/0.61,flip(x3d1(:,9))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 1 0.1],'MarkerEdgeColor',[0.1 1 0.1]) +plot3((zeros(size(x3d1(:,10),1),1)+200),flip(y3d1(:,10))/0.61,flip(x3d1(:,10))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 1 0.1],'MarkerEdgeColor',[0.1 1 0.1]) +plot3((zeros(size(x3d1(:,11),1),1)+250),flip(y3d1(:,11))/0.61,flip(x3d1(:,11))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 1 0.1],'MarkerEdgeColor',[0.1 1 0.1]) +plot3((zeros(size(x3d1(:,12),1),1)+300),flip(y3d1(:,12))/0.61,flip(x3d1(:,12))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 1 0.1],'MarkerEdgeColor',[0.1 1 0.1]) +plot3((zeros(size(x3d1(:,13),1),1)+350),flip(y3d1(:,13))/0.61,flip(x3d1(:,13))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 1 0.1],'MarkerEdgeColor',[0.1 1 0.1]) +plot3((zeros(size(x3d1(:,14),1),1)+400),flip(y3d1(:,14))/0.61,flip(x3d1(:,14))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 1 0.1],'MarkerEdgeColor',[0.1 1 0.1]) +plot3((zeros(size(x3d1(:,15),1),1)+450),flip(y3d1(:,15))/0.61,flip(x3d1(:,15))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 1 0.1],'MarkerEdgeColor',[0.1 1 0.1]) +plot3((zeros(size(x3d1(:,3),1),1)+500),flip(y3d1(:,3))/0.61,flip(x3d1(:,3))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 1 0.1],'MarkerEdgeColor',[0.1 1 0.1]) +plot3((zeros(size(x3d1(:,4),1),2)+550),flip(y3d1(:,4))/0.61,flip(x3d1(:,4))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 1 0.1],'MarkerEdgeColor',[0.1 1 0.1]) +plot3((zeros(size(x3d1(:,5),1),1)+600),flip(y3d1(:,5))/0.61,flip(x3d1(:,5))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 1 0.1],'MarkerEdgeColor',[0.1 1 0.1]) +plot3((zeros(size(x3d1(:,6),1),1)+650),flip(y3d1(:,6))/0.61,flip(x3d1(:,6))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 1 0.1],'MarkerEdgeColor',[0.1 1 0.1]) +plot3((zeros(size(x3d1(:,7),1),1)+700),flip(y3d1(:,7))/0.61,flip(x3d1(:,7))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 1 0.1],'MarkerEdgeColor',[0.1 1 0.1]) + +pred1=plot3((zeros(size(x3d2(:,1),1),1)+0),flip(y3d2(:,1))/0.61,flip(x3d2(:,1))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[1 0.1 0.1]) +hold on + +plot3((zeros(size(x3d2(:,2),1),2)+50),flip(y3d2(:,2))/0.61,flip(x3d2(:,2))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[1 0.1 0.1],'MarkerEdgeColor',[1 0.1 0.1]) +plot3((zeros(size(x3d2(:,8),1),1)+100),flip(y3d2(:,8))/0.61,flip(x3d2(:,8))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[1 0.1 0.1],'MarkerEdgeColor',[1 0.1 0.1]) +plot3((zeros(size(x3d2(:,9),1),1)+150),flip(y3d2(:,9))/0.61,flip(x3d2(:,9))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[1 0.1 0.1],'MarkerEdgeColor',[1 0.1 0.1]) +plot3((zeros(size(x3d2(:,10),1),1)+200),flip(y3d2(:,10))/0.61,flip(x3d2(:,10))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[1 0.1 0.1],'MarkerEdgeColor',[1 0.1 0.1]) +plot3((zeros(size(x3d2(:,11),1),1)+250),flip(y3d2(:,11))/0.61,flip(x3d2(:,11))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[1 0.1 0.1],'MarkerEdgeColor',[1 0.1 0.1]) +plot3((zeros(size(x3d2(:,12),1),1)+300),flip(y3d2(:,12))/0.61,flip(x3d2(:,12))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[1 0.1 0.1],'MarkerEdgeColor',[1 0.1 0.1]) +plot3((zeros(size(x3d2(:,13),1),1)+350),flip(y3d2(:,13))/0.61,flip(x3d2(:,13))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[1 0.1 0.1],'MarkerEdgeColor',[1 0.1 0.1]) +plot3((zeros(size(x3d2(:,14),1),1)+400),flip(y3d2(:,14))/0.61,flip(x3d2(:,14))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[1 0.1 0.1],'MarkerEdgeColor',[1 0.1 0.1]) +plot3((zeros(size(x3d2(:,15),1),1)+450),flip(y3d2(:,15))/0.61,flip(x3d2(:,15))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[1 0.1 0.1],'MarkerEdgeColor',[1 0.1 0.1]) +plot3((zeros(size(x3d2(:,3),1),1)+500),flip(y3d2(:,3))/0.61,flip(x3d2(:,3))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[1 0.1 0.1],'MarkerEdgeColor',[1 0.1 0.1]) +plot3((zeros(size(x3d2(:,4),1),2)+550),flip(y3d2(:,4))/0.61,flip(x3d2(:,4))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[1 0.1 0.1],'MarkerEdgeColor',[1 0.1 0.1]) +plot3((zeros(size(x3d2(:,5),1),1)+600),flip(y3d2(:,5))/0.61,flip(x3d2(:,5))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[1 0.1 0.1],'MarkerEdgeColor',[1 0.1 0.1]) +plot3((zeros(size(x3d2(:,6),1),1)+650),flip(y3d2(:,6))/0.61,flip(x3d2(:,6))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[1 0.1 0.1],'MarkerEdgeColor',[1 0.1 0.1]) +plot3((zeros(size(x3d2(:,7),1),1)+700),flip(y3d2(:,7))/0.61,flip(x3d2(:,7))/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[1 0.1 0.1],'MarkerEdgeColor',[1 0.1 0.1]) + +set(gca,'ZTick',0:1000:3000) +set(gca,'yTick',0:1000:3000) +legend([pgreen1 pred1],{'peripheral inputs','Cortical'},'Location','southeast') +[h icons]=legend([pgreen1 pred1],{'peripheral inputs','Cortical'},'Location','northeast') +icons(4).MarkerSize=5 +icons(6).MarkerSize=5 +text(15,500,1800,'Int','HorizontalAlignment','center') +text(15,500,2500,'Sup','HorizontalAlignment','center') +text(15,500,1100,'Deep','HorizontalAlignment','center') +view([-52 23]); +ylim([0.4 3000]) +zticks(flip(mean(max(x3d,[],1))/0.61:-500:0)) +set(gca,'ZTickLabel',flip([0:500:2712])) +yticks([0.1,1000,2000,3000]) +set(gca,'YTickLabel',([0, 1000,2000,3000])) + +ax1=subplot(2,2,2) +histogram(x3d1(:)./0.61,100,'FaceColor',[0 1 0],'Normalization','probability','EdgeColor',[0 1 0]) %pixel size =0.61 +hold on +histogram(x3d2(:)./0.61,100,'FaceColor',[1 0.1 0.1],'Normalization','probability','EdgeColor',[1 0 0]) +%set(gca,'XTick',0:500:2500) +xlabel("(µm)") +ylabel("probability") +title("peripheral inputs signal vs cortical input signal \newline ventral-dorsal") +xlabel("Ventral<---->Dorsal (µm)") +box off +le1=legend("Peripheral Inputs","Cortical Inputs",'Location','northwest') +le1.Box='off' +box off + +xticks(flip(mean(max(x3d,[],1))/0.61:-500:0)) +set(gca,'XTickLabel',flip([0:500:2712])) +set(gca,'XDir','reverse') +xlim(ax1, [0 mean(max(x3d,[],1))/0.61]) + +ax2=subplot(2,2,4) +histogram(y3d1(:)./0.61,100,'FaceColor',[0.1 1 0.1],'Normalization','probability','EdgeColor',[0 0.6 0]) +hold on +histogram(y3d2(:)./0.61,100,'FaceColor',[1 0.1 0.1],'Normalization','probability','EdgeColor',[0.6 0 0]) +set(gca,'XTick',0:500:2500) +xlabel("medio-lateral (µm)") +ylabel("probability") +%title("medio-lateral (µm)") +box off +le2=legend("Peripheral Inputs","Cortical Inputs",'Location','northwest') +le2.Box='off' + +xlim(ax2, [0 mean(max(y3d,[],1))/0.61]) +linkaxes([ax1 ax2],'x') +%xticks(flip(mean(max(y3d,[],1))/0.61:-500:0)) + + +%% +figure + +ax0=subplot(4,4,[2 3 4 6 7 8 10 11 12]) + +plot(y3d./0.61,x3d./0.61,'k*','MarkerSize',0.5) +ylim([0 3000]) +hold on +plot(y3d1(:)/0.61,x3d1(:)/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 1 0.1]) +plot(y3d2(:)/0.61,x3d2(:)/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[1 0.1 0.1]) +plot(flip(yIntS)/0.61,flip(xIntS)/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.8 0.8 0.8]) +%plot3((zeros(size(xIntL(:,1),1),1)+0),flip(yIntL)/0.61,flip(xIntL)/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.1 0.1 0.1]) +plot(flip(yIntI)/0.61,flip(xIntI)/0.61,'LineStyle','none','MarkerSize',0.1,'Marker','diamond','MarkerFaceColor',[0.8 0.8 0.8]) + +text(500,1800,'Int','HorizontalAlignment','center') +text(500,2500,'Sup','HorizontalAlignment','center') +text(500,1100,'Deep','HorizontalAlignment','center') +title("D-V and M-L distribution of Cortical and peripheral inputs in SC ") +yticks(flip(mean(max(x3d,[],1))/0.61:-500:0)) +set(gca,'yTickLabel',flip([0:500:2712])) +% Obvious effect ;-) +% set(get(ax0, "XAxis"), "Visible", "off") +% set(get(ax0, "YAxis"), "Visible", "off") + +ax1=subplot(4,4,[1 5 9]) + +histogram(x3d1(:)./0.61,100,'FaceColor',[0.1 1 0.1],'Normalization','probability','EdgeColor',[0.1 1 0.1],'Orientation', 'horizontal') +hold on +histogram(x3d2(:)./0.61,100,'FaceColor',[1 0.1 0.1],'Normalization','probability','EdgeColor',[1 0.1 0.1],'Orientation', 'horizontal') +set(gca,'YTick',0:500:2500) +ylabel("(µm)") +xlabel("probability") +title("ventral-dorsal") + + +box off +le1=legend("Peripheral Inputs","Cortical Inputs",'Location','northwest') +le1.Box='off' +box off +% view([-90 90]) +ylim([0 3000]) +yticks(flip(mean(max(x3d,[],1))/0.61:-500:0)) +set(gca,'yTickLabel',flip([0:500:2712])) +linkaxes([ax0, ax1], 'y') +set(ax1, 'XDir', 'reverse') + +ax2=subplot(4,4,[14 15 16]) +histogram(y3d1(:)./0.61,100,'FaceColor',[0.1 1 0.1],'Normalization','probability','EdgeColor',[0.1 1 0.1]) +hold on +histogram(y3d2(:)./0.61,100,'FaceColor',[1 0.1 0.1],'Normalization','probability','EdgeColor',[1 0.1 0.1]) +set(gca,'XTick',0:500:2500) +xlabel("(µm)") +ylabel("probability") +title("medio-lateral (µm)") +box off +le2=legend("Peripheral Inputs","Cortical Inputs",'Location','northwest') +le2.Box='off' +xlim([0 3000]) +% set(ax2, 'YDir', 'reverse') +set(gcf, 'Color', 'w') +set([ax0, ax1, ax2], 'Box','off','Color','none') +%%test +%hold on +[c1 c2]=histcounts((x3d1(:)./0.61),100) +c3=(c1./(sum(c1(:)))) +c3=c3.*3000/max(c3) + +[p1 p2]=histcounts((x3d2(:)./0.61),100) +p3=(p1./(sum(p1(:)))) +p3=p3.*3000/max(p3) + +plot(c3,c2(1:end-1)) +hold on +plot(p3,p2(1:end-1)) +ylim([0 3000]) +%plot(c2(1:end-1),ans) + diff --git a/Jesus/functionTestJ.m b/Jesus/functionTestJ.m new file mode 100644 index 0000000..673b0de --- /dev/null +++ b/Jesus/functionTestJ.m @@ -0,0 +1,5 @@ + function [n,mean,stdev] = stat(x) + %STAT Interesting statistics. + n = length(x); + mean = sum(x) / n; + stdev = sqrt(sum((x - mean).^2)/n); diff --git a/Jesus/importTiff_stack_create 3D Matrix.m b/Jesus/importTiff_stack_create 3D Matrix.m new file mode 100644 index 0000000..db2230f --- /dev/null +++ b/Jesus/importTiff_stack_create 3D Matrix.m @@ -0,0 +1,9 @@ +T=imfinfo('D:\C2-TestT.tif'); +T1=T.ImageDescription +numbers = str2double(regexp(T1, '(?<=slices[^0-9])[0-9][0-9]','match')) +for i=1:numbers +T=imread('D:\C2-TestT.tif',i)*10; +testM(:,:,i)=T; +end +V=imresize(testM,0.25); +V1=subvolume(V,[150,270,250,350,10 20]) \ No newline at end of file diff --git a/Jesus/importTiff_stack_create3DMatrix.m b/Jesus/importTiff_stack_create3DMatrix.m new file mode 100644 index 0000000..216ae3d --- /dev/null +++ b/Jesus/importTiff_stack_create3DMatrix.m @@ -0,0 +1,29 @@ +T=imfinfo('C:\Users\jesus\Downloads\Brain_Tetrodes_overlay.tif'); +T1=T.ImageDescription +numbers = str2double(regexp(T1, '(?<=slices[^0-9])[0-9][0-9]','match')) +testM=[]; +for i=1:numbers +T=imread('C:\Users\jesus\Downloads\Brain_Tetrodes_overlay.tif',i); +testM(:,:,i)=T(:,:,1); +end + +V=imresize(testM,0.125); +V1=subvolume(V,[150,270,250,350,10 20]) +slice(V,[],[],20) +hold on +slice(V,[],[],[10]) +slice(V,[],[],1) +zlim([-5 25]) +shading flat +camlight; +lighting gouraud +isosurface(V,200) +isocaps(V,20) +camlight; lighting gouraud +%% +for i= 1:numbers + slice(V,[],[],i) + hold on; +end +shading flat +camlight; lighting gouraud; \ No newline at end of file diff --git a/Jesus/kruskalwalliscomparison.m b/Jesus/kruskalwalliscomparison.m new file mode 100644 index 0000000..b8b924e --- /dev/null +++ b/Jesus/kruskalwalliscomparison.m @@ -0,0 +1,2 @@ +[a p stats]=kruskalwallis(groupedCVGperID,nameGroupedCVGRN) +multcompare(stats) \ No newline at end of file diff --git a/Jesus/modulationZscores.m b/Jesus/modulationZscores.m new file mode 100644 index 0000000..5c1e6b5 --- /dev/null +++ b/Jesus/modulationZscores.m @@ -0,0 +1,5 @@ +%zscores +muL6sp=mean(pfr(wruIdx==0,1),1) +sdL6sp=std(pfr(wruIdx==0,2),0,1) +stscorespMockck + diff --git a/Jesus/prelimnar.txt b/Jesus/prelimnar.txt new file mode 100644 index 0000000..a91dd69 --- /dev/null +++ b/Jesus/prelimnar.txt @@ -0,0 +1,67 @@ +Group1,Group2,Lower_Limit,mean,UpperLimit,P_value +1,2,-173.935150231758,12.9202275249723,199.775605281702,0.99999999952564 +1,3,-581.003157701588,-325.225271583762,-69.4473854659365,0.00192944645178439 +1,4,-102.706457120343,15.3760805833272,133.458618286997,0.999999563470047 +1,5,-260.775884974315,-4.9979988564894,250.779887261336,1 +1,6,-593.577138872011,-353.528301886792,-113.479464901573,9.46804334233109e-05 +1,7,-185.83883272859,-74.9261006289307,35.986631470729,0.54393218475359 +1,8,-539.97191493764,-353.11653718091,-166.26115942418,2.64379784731261e-07 +1,9,-254.169824368254,1.60806174957122,257.385947867397,1 +1,10,-66.2263774390679,51.8561602646021,169.938697968272,0.956733844557192 +1,11,-563.73043042886,-307.952544311035,-52.1746581932092,0.00475387612028955 +1,12,-181.116612556222,58.9322244289971,298.981061414216,0.999711525224197 +2,3,-634.853478579632,-338.145499108734,-41.4375196378366,0.0106234784257925 +2,4,-188.742430839117,2.45585305835482,193.654136955826,1 +2,5,-314.62620585236,-17.9182263814617,278.789753089436,0.999999999891624 +2,6,-649.709437750271,-366.448529411765,-83.1876210732584,0.00141741646168192 +2,7,-274.701705910633,-87.8463281539031,99.0090496028271,0.930638598913277 +2,8,-605.887197791607,-366.036764705882,-126.186331620158,3.9408782304573e-05 +2,9,-308.020145246299,-11.3121657754011,285.395813695497,0.999999999999294 +2,10,-152.262351157842,38.9359327396297,230.134216637101,0.999954595189398 +2,11,-617.580751306905,-320.872771836007,-24.1647923651092,0.0209585396446385 +2,12,-237.248911434482,46.0119969040247,329.272905242531,0.999995531131263 +3,4,81.633827956753,340.601352167089,599.568876377426,0.00104416451618583 +3,5,-24.0734968216724,320.227272727273,664.528042276218,0.0973486673581874 +3,6,-361.085447240958,-28.3030303030303,304.479386634897,0.999999995502393 +3,7,-5.47871516299418,250.299170954831,506.077057072657,0.0618213669551347 +3,8,-324.599245068046,-27.8912655971478,268.81671387375,0.999999986719807 +3,9,-17.4674362156118,326.833333333333,671.134102882279,0.0817067153662377 +3,10,118.113907638028,377.081431848364,636.0489560587,0.000123658870686771 +3,11,-327.028042276218,17.2727272727274,361.573496821673,0.999999999985726 +3,12,51.3750790748315,384.157496012759,716.939912950687,0.00888064733315019 +4,5,-279.341603650153,-20.3740794398166,238.59344477052,0.999999998068491 +4,6,-612.349028553544,-368.90438247012,-125.459736386695,4.71323556994196e-05 +4,7,-208.384718915928,-90.3021812122579,27.7803564914121,0.340212280790887 +4,8,-559.690901661708,-368.492617764237,-177.294333866766,2.42302614750223e-07 +4,9,-272.735543044092,-13.7680188337559,245.19950537658,0.999999999973069 +4,10,-88.3611686273926,36.4800796812749,161.321327989942,0.998508141250251 +4,11,-582.296149104698,-323.328624894362,-64.3611006840256,0.00263956469515969 +4,12,-199.888502237755,43.5561438456699,287.000789929095,0.999987853238833 +5,6,-681.312719968231,-348.530303030303,-15.7478860923753,0.0305276732490682 +5,7,-325.705987890267,-69.9281017724413,185.849784345384,0.999195220127254 +5,8,-644.826517795319,-348.118538324421,-51.4105588535227,0.00702674601223319 +5,9,-337.694708942885,6.60606060606062,350.906830155006,1 +5,10,-202.113365089245,56.8541591210915,315.821683331428,0.999903640739936 +5,11,-647.255315003491,-302.954545454545,41.3462240943998,0.149581866070904 +5,12,-268.852193652441,63.9302232854865,396.712640223414,0.999974845674539 +6,7,38.5533642726426,278.602201257862,518.651038243081,0.00822537030885173 +6,8,-282.849143632624,0.411764705882433,283.672673044389,1 +6,9,22.3539466984359,355.136363636364,687.918780574291,0.0245783689927478 +6,10,161.93981606797,405.384462151394,648.829108234819,3.61202990106779e-06 +6,11,-287.20665936217,45.5757575757576,378.358174513685,0.99999925485464 +6,12,91.609697839219,412.460526315789,733.31135479236,0.00158890122053867 +7,8,-465.045814308709,-278.190436551979,-91.3350587952491,7.29530930801969e-05 +7,9,-179.243723739324,76.5341623785019,332.312048496328,0.998148108507617 +7,10,8.69972318986284,126.782260893533,244.864798597203,0.0228655991106524 +7,11,-488.80432979993,-233.026443682104,22.7514424357215,0.115138986947463 +7,12,-106.190511927291,133.858325057928,373.907162043147,0.806015117066203 +8,9,58.0166194595833,354.724598930481,651.432578401379,0.00529991422802223 +8,10,213.774413548041,404.972697445512,596.170981342983,2.24610987475948e-07 +8,11,-251.543986601023,45.1639928698752,341.871972340773,0.999997733033212 +8,12,128.787853271401,412.048761609907,695.309669948413,0.000126519036048989 +9,10,-208.719425695305,50.2480985150308,309.215622725367,0.999972162293265 +9,11,-653.861375609551,-309.560606060606,34.7401634883391,0.12754855452666 +9,12,-275.458254258502,57.3241626794259,390.106579617354,0.999991784643414 +10,11,-618.776228785973,-359.808704575637,-100.841180365301,0.000349503114430716 +10,12,-236.36858191903,7.07606416439501,250.52071024782,0.999999999999964 +11,12,34.1023518021042,366.884768740032,699.66718567796,0.0164852719648371 diff --git a/Jesus/ramdon_feature_Jittering.m b/Jesus/ramdon_feature_Jittering.m new file mode 100644 index 0000000..2cfeced --- /dev/null +++ b/Jesus/ramdon_feature_Jittering.m @@ -0,0 +1,114 @@ +ProbabilitybinAI=nan(50,size(ClustersL200Onset1stVPM,2)); +for i= 1:size(ClustersL200Onset1stVPM,2); + latAI=histcounts(ClustersL200Onset1stVPM(ClustersL200Onset1stVPM(:,i)>0.003),50,'Normalization','probability'); + ProbabilitybinAI(:,i)=latAI; +end +%% +minlatencyAI=nan(2000,size(ClustersL200Onset1stVPM,2)); +for i= 1:size(ClustersL200Onset1stVPM,2); + latenciesAI=ClustersL200Onset1stVPM(ClustersL200Onset1stVPM(:,i)>0.005 & ClustersL200Onset1stVPM(:,i)<0.02); + minlatencyAI(1:size(latenciesAI,1),i) = latenciesAI; + WminlatencyAI=min(minlatencyAI,[],1) +end +%% +minlatencyS1=nan(size(ClustersControlOnset1stS1,1),size(ClustersControlOnset1stS1,2)); +for i= 1:size(ClustersControlOnset1stS1,2); + siglatColS1=ClustersControlOnset1stS1>0.004; + BS1=ClustersControlOnset1stS1(siglatColS1(:,i),i) + minlatencyS1(1:size(BS1,1),i) = BS1; +end +%% +minlatencyMOCK=nan(size(ClustersControlOnset1stMOCK,1),size(ClustersControlOnset1stMOCK,2)); +for i= 1:size(ClustersControlOnset1stMOCK,2); + siglatColMOCK=ClustersControlOnset1stMOCK>0.004; + BS1MOCK=ClustersControlOnset1stMOCK(siglatColMOCK(:,i),i) + minlatencyMOCK(1:size(BS1MOCK,1),i) = BS1MOCK; +end +%% +minlatencyAIMOCK=nan(size(ClustersL200Onset1stMOCK,1),size(ClustersL200Onset1stMOCK,2)); +for i= 1:size(ClustersL200Onset1stMOCK,2); + siglatColAIMOCK=ClustersL200Onset1stMOCK>0.004; + BS1AIMOCK=ClustersL200Onset1stMOCK(siglatColAIMOCK(:,i),i) + minlatencyAIMOCK(1:size(BS1AIMOCK,1),i) = BS1AIMOCK; +end +%% +minlatencyAI=nan(20000,276); +for i= 1:size(ClustersL200Onset1stVPM,2); + latCol=ClustersL200Onset1stVPM>0.005 & ClustersL200Onset1stVPM<0.015; + B=ClustersL200Onset1stVPM(latCol(:,i)); + minlatencyAI(1:size(B,1),i) = B; +end +%% +minlatencyAI=nan(size(ClustersL200Onset1stVPM,1),size(ClustersL200Onset1stVPM,2)); +idAI=find(ClustersL200Onset1stVPM>=0.005 & ClustersL200Onset1stVPM<=0.015); +for i=1:size(idAI); + minlatencyAI(idAI(i))=ClustersL200Onset1stVPM(idAI(i)); +end +%% +minlatency=nan(size(ClustersControlOnset1stVPM,1),size(ClustersControlOnset1stVPM,2)); +idControl=find(ClustersControlOnset1stVPM>=0.005 & ClustersControlOnset1stVPM<=0.015); +for i=1:size(idControl); + minlatency(idControl(i))=ClustersControlOnset1stVPM(idControl(i)); +end +%% +minlatencyALL=nan(size(Clusters1stVPM,1),size(Clusters1stVPM,2)); +idALL=find(Clusters1stVPM>=0.005 & Clusters1stVPM<=0.015); +for i=1:size(idALL); + minlatencyALL(idALL(i))=Clusters1stVPM(idALL(i)); +end +%% +ClustersControlOnset1stVPMLong=nan(size(ClustersControlOnsetVPM,1),size(ClustersControlOnsetVPM,2)); +id=find(ClustersControlOnsetVPM>=-0.2 & ClustersControlOnsetVPM<=0.05); +for i=1:size(id); +ClustersControlOnset1stVPMLong(id(i))=ClustersControlOnsetVPM(id(i)); +end +zRespControl=zscore(hist(ClustersControlOnset1stVPMLong,500)); +sigRespControl=zRespControl>=1.95; +Tscale=[-0.200:0.0005:0.05-0.0005]; + +TWsigResp=nan(250,276); +for i = 1:size(sigRespControl,2) + TsigResp=Tscale(sigRespControl(:,i)==1); + TWsigResp(1:size(TsigResp,2),i)=TsigResp; +end +TWsigResp=TWsigResp+0.0025 + +Ctl=nan(size(TWsigResp,1),size(TWsigResp,2)); +for i=1:size(TWsigResp,2) + BCtl=TWsigResp>0.005&TWsigResp<0.04; + cCtl=TWsigResp(BCtl(:,i),i); + Ctl(1:size(cCtl,1),i)=cCtl; +end + +%% +ClustersL200Onset1stVPMLong=nan(size(ClustersL200OnsetVPM,1),size(ClustersL200OnsetVPM,2)); +idAI=find(ClustersL200OnsetVPM>=-0.2 & ClustersL200OnsetVPM<=0.05); +for i=1:size(idAI); +ClustersL200Onset1stVPMLong(idAI(i))=ClustersL200OnsetVPM(idAI(i)); +end +zRespAI=zscore(hist(ClustersL200Onset1stVPMLong,500)); +sigRespAI=zRespAI>=1.95; +Tscale=[-0.200:0.0005:0.05-0.0005]; + +TWsigRespAI=nan(250,276); +for i = 1:size(sigRespAI,2) + TsigRespAI=Tscale(sigRespAI(:,i)==1); + TWsigRespAI(1:size(TsigRespAI,2),i)=TsigRespAI; +end +TWsigRespAI=TWsigRespAI+0.0025 + +C=nan(size(TWsigRespAI,1),size(TWsigRespAI,2)); +for i=1:size(TWsigRespAI,2) + B=TWsigRespAI>0.005&TWsigRespAI<0.04; + c=TWsigRespAI(B(:,i),i); + C(1:size(c,1),i)=c; +end + + + +%% +minlatency8=[]; +for i= 1:size(ClustersControlOnset1stS1,2); + latVPM8=min(ClustersControlOnset1stVPM8(ClustersControlOnset1stVPM8(:,i)>0.004)); + minlatency8(i,1)=latVPM8; +end diff --git a/Jesus/structvpmFRL6Real.m b/Jesus/structvpmFRL6Real.m new file mode 100644 index 0000000..ee9fe22 --- /dev/null +++ b/Jesus/structvpmFRL6Real.m @@ -0,0 +1,14 @@ +%structure evoked firing rates VPM +structString +posMod=MIevok>=0.001 +negMod=MIevok<=-0.001 +VPML6Evokr=evFr(wruIdx&signMod==0,:) +VPML6EvokPot=evFr(wruIdx&posMod&signMod,:) +VPML6EvokDep=evFr(wruIdx&negMod&signMod,:) +vpmL6EVStrtR2=struct('NonMOd',VPML6Evokr,'rPot',VPML6EvokPot,'rDep',VPML6EvokDep) +%struct spontaneous firing rates VPM +VPML6Spontr=pfr(wruIdx&signMod==0,:) +VPML6SpontDep=pfr(wruIdx&negMod&signMod,:) +VPML6SpontPot=pfr(wruIdx&posMod&signMod,:) +vpmL6SPstrR2=struct('NonMod',VPML6Spontr,'rPot',VPML6SpontPot,'rDep',VPML6SpontDep) +structString \ No newline at end of file diff --git a/Jesus/structvpmFRmock.m b/Jesus/structvpmFRmock.m new file mode 100644 index 0000000..1da9002 --- /dev/null +++ b/Jesus/structvpmFRmock.m @@ -0,0 +1,33 @@ +%%struct evoked firing rates MOCK +structString +MIevokE=(evFr(:,2) - evFr(:,1))./(evFr(:,1) + evFr(:,2)) +MIevokESP=(spFr(:,2) - spFr(:,1))./(spFr(:,1) + spFr(:,2)) +posMod=MIevokE>=0.001 +negMod=MIevokE<=-0.001 +VPMMockEvokr=evFr(wruIdx&signMod==0,:) +VPMMockEvokPot=evFr(wruIdx&posMod&signMod,:) +VPMMockEvokDep=evFr(wruIdx&negMod&signMod,:) +vpmMockEVStrtR=struct('NonMod',VPMMockEvokr,'rPot',VPMMockEvokPot,'rDep',VPMMockEvokDep) +vpmMockEVStrtR2=vpmMockEVStrtR +%%struct spontaneous firing rates MOCK +VPMMockSpontr=pfr(wruIdx&signMod==0,:) +VPMMockSpontDep=pfr(wruIdx&negMod&signMod,:) +VPMMockSpontPot=pfr(wruIdx&posMod&signMod,:) +vpmMockSPstrR2=struct('NonMod',VPMMockSpontr,'rPot',VPMMockSpontPot,'rDep',VPMMockSpontDep) +vpmMockSPstrR=vpmMockSPstrR2 +%% struct evoked firing rate VPM-L6 + +MIevokE=(evFr(:,2) - evFr(:,1))./(evFr(:,1) + evFr(:,2)) +MIevokSP=(spFr(:,2) - spFr(:,1))./(spFr(:,1) + spFr(:,2)) +posMod=MIevokSP>=0.001 +negMod=MIevokSP<=-0.001 +VPMEvokr=evFr(wruIdx&signMod==0,:) +VPMEvokPot=evFr(wruIdx&posMod&signMod,:) +VPMEvokDep=evFr(wruIdx&negMod&signMod,:) +vpmEVStrtR2=struct('NonMod',VPMEvokr,'rPot',VPMEvokPot,'rDep',VPMEvokDep) +%%struct spontaneous firing rates MOCK +VPMSpontr=spFr(wruIdx&signMod==0,[1 2]) +VPMSpontDep=spFr(wruIdx&negMod&signMod,[1 2]) +VPMSpontPot=spFr(wruIdx&posMod&signMod,[1 2]) +vpmSPstrR=struct('NonMod',VPMSpontr,'rPot',VPMSpontPot,'rDep',VPMSpontDep) +vpmSPstrR=vpmSPstrR2 \ No newline at end of file diff --git a/Jesus/whiskerScBehavior.m b/Jesus/whiskerScBehavior.m new file mode 100644 index 0000000..dfa2afc --- /dev/null +++ b/Jesus/whiskerScBehavior.m @@ -0,0 +1,172 @@ + +[num,txt,raw] = xlsread('Z:\Jesus\TestCellExplorerSCBehavior\211205_C\Behaviour\roller2021-12-05T14_28_44DLC_resnet50_AwakenSCJul20shuffle1_1030000.xlsx','K:M')%ReadExcelData +puffTimes=Conditions(1).Triggers %puff in samples +PuffTimes1=puffTimes./fs % puff Times in time using fs of the intan recording 30000hz +puffTimes2=puffTimes*cfs %stimation of the position sample in the camera recording fs +zsczz=[]; +for i=1:size(spikes.times,2) % all clusters aligned with camera fs +cfs=653.98 +Fr1=spikes.times{1,i};%firing rate primera celula optotag +Fr2=diff(Fr1); +Fr3=1./Fr2; +Fr3=[Fr3;0]; +AsocPos1=[]; +AsocPos1=zeros(size(num(:,1)));%preallocate +equivPos1=Fr1*cfs; % equivalent position (Time*fs camera +equivPos1=round(equivPos1); +AsocPos1(equivPos1)=Fr3; +xx=[deeplabcut.position.x deeplabcut.position.x]; +yy=[deeplabcut.position.y deeplabcut.position.y]; +zz=[AsocPos1 AsocPos1]; +zsczz(1:size(AsocPos1,1),i)=AsocPos1;%zscore(AsocPos1); +AsocPosAll(:,i)=AsocPos1; +%sp=[deeplabcut.speed deeplabcut.speed]; +%idj1=AsocPos1>2; +end +figure +plot(deeplabcut.timestamps,deeplabcut.position.y) +hold on +yyaxis right +%plot(deeplabcut.timestamps(idj1),zz(idj1),'*r') +plot(deeplabcut.timestamps,zscore(zz),'*r') + +%[a1 a2 a3 a4]=pulsewidth(test);%obtain flags, test is a portion of a signal as an example.a2 contains the onset flags, +%a3 contains the offset flags. a4 contains the time duraction between onset +%and offset in time. +%fs = 1/signal sample interval +a5=round(a2); +t=[1/fs:1/fs:size(v)/fs];%time scale +%onset flag +%v1 is just a lfp signal to be plotted loaded in the workspace colum vector +ct=[]; +for i=1:size(puffTimes2',2); %roller speed + spike=vels(puffTimes2(i)-500:1:puffTimes2(i)+500);%cut signal + ct(:,i)=spike; +end + +ctAsocPosAll=[]; %firing rate neurons 3D matrix timexUIDxtrial +for i=1:size(puffTimes2',2); + for ii=1:size(AsocPosAll,2); + AsocPosAlli=AsocPosAll(:,ii); + spike1=AsocPosAlli(puffTimes2(i)-500:1:puffTimes2(i)+500);%cut signal + ctAsocPosAll(:,ii,i)=spike1; + sprintf("cycle1 %d\n",ii) + end + sprintf("cycle2 %d\n",i) +end +cutAllclusPuff=mean(ctAsocPosAll,3); %mean per trial + +delPufAsocPosAll=AsocPosAll; +for i=1:size(puffTimes2',2) + tobedeletT=(puffTimes2(i)-500:1:puffTimes2(i)+500) + tobedeleted(:,i)=tobedeletT; +end +iDdel=round(tobedeleted(:)) %Id positions of the array to be deleted +delPufAsocPosAll(iDdel,:)=[]; + +a=deeplabcut.position.x;%whisking in x +awp=a; +awp(iDdel)=[];%whisking in x without -0.5 to 0.5 airpuff period. +b=deeplabcut.position.y; %whisking in y +bwp=b; +bwp(iDdel)=[]; %whisking in y without -0.5 to 0.5 airpuff period. + +%Evoked whsiking in y +EvokedB=[]; +for i=1:size(puffTimes2',2); %roller speed vs y-whisking + EvokedT=b(puffTimes2(i)-500:1:puffTimes2(i)+500);%cut signal + EvokedB(:,i)=EvokedT; +end + +EvokedA=[]; +for i=1:size(puffTimes2',2); %roller speed vs x-whiksing + EvokedTA=a(puffTimes2(i)-500:1:puffTimes2(i)+500);%cut signal + EvokedA(:,i)=EvokedTA; +end + +evokedN=[] %nose +for i=1:size(puffTimes2',2); %roller speed + EvokedTN=rw(puffTimes2(i)-500:1:puffTimes2(i)+500);%cut signal + EvokedN(:,i)=EvokedTN; +end + +%Laser Control without puff +LaserTimesC=Conditions(4).Triggers; +LaserTimes1C=LaserTimes./fs; +LaserTimes2C=LaserTimes1C.*cfs + +ctAsocPosAllLas=[]; %firing rate neurons 3D matrix timexUIDxtrial +for i=1:size(LaserTimes2C',2); + for ii=1:size(AsocPosAll,2); + AsocPosAllLi=AsocPosAll(:,ii); + spike2=AsocPosAllLi(LaserTimes2C(i)-500:1:LaserTimes2C(i)+500);%cut signal + ctAsocPosAllLas(:,ii,i)=spike2; + sprintf("cycle1 %d\n",ii) + end + sprintf("cycle2 %d\n",i) +end +cutAllclusLas=mean(ctAsocPosAllLas,3); %mean per trial +%only laser +EvokedBLC=[]; +for i=1:size(LaserTimes2C',2); %only laser pulses + EvokedTLC=b(LaserTimes2C(i)-500:1:LaserTimes2C(i)+500);%cut signal + EvokedBLC(:,i)=EvokedTLC; +end + + + +EvokedALC=[]; +for i=1:size(LaserTimes2C',2); %only laser pulses + EvokedTALC=a(LaserTimes2C(i)-500:1:LaserTimes2C(i)+500);%cut signal + EvokedALC(:,i)=EvokedTALC; +end + +%only puff + +PuffTimesonlyC=Conditions(5).Triggers; +PuffTimesonly1C=PuffTimesonlyC./fs; +PuffTimesonly2C=PuffTimesonly1C.*cfs + +ctAsocPosAllPonly=[]; %firing rate neurons 3D matrix timexUIDxtrial +for i=1:size(PuffTimesonly2C',2); + for ii=1:size(PuffTimesonly2C,2); + AsocPosAllPi=AsocPosAll(:,ii); + spike3=AsocPosAllPi(PuffTimesonly2C(i)-500:1:PuffTimesonly2C(i)+500);%cut signal + ctAsocPosAllPonly(:,ii,i)=spike3; + sprintf("cycle1 %d\n",ii) + end + sprintf("cycle2 %d\n",i) +end +cutAllclusPonly=mean(ctAsocPosAllPonly,3); %mean per trial +EvokedBPC=[]; +for i=1:size(LaserTimes2C',2); %only puff + EvokedTPC=b(LaserTimes2C(i)-500:1:LaserTimes2C(i)+500);%cut signal + EvokedBPC(:,i)=EvokedTPC; +end + +EvokedALC=[]; +for i=1:size(LaserTimes2C',2); %only puff + EvokedTAPC=a(LaserTimes2C(i)-500:1:LaserTimes2C(i)+500);%cut signal + EvokedAPC(:,i)=EvokedTAPC; +end + + +%% +figure +hs=surf(xx,yy,zz,'EdgeColor','interp','FaceColor','interp') +caxis([0 200]) +colormap(jet(64)) +view(3) +caxis([0 100]) +figure +hs=surf(yy,yy,zz,'EdgeColor','interp','FaceColor','interp') +caxis([0 200]) +colormap(jet(64)) +view(2) +caxis([0 100]) +figure +hs=surf(xx,xx,zz,'EdgeColor','interp','FaceColor','interp') +caxis([0 200]) +colormap(jet(64)) +view(3) +caxis([0 100]) \ No newline at end of file diff --git a/Melina_scripts/MelinaRHDminiPipeline.m b/Melina_scripts/MelinaRHDminiPipeline.m new file mode 100644 index 0000000..e372ea0 --- /dev/null +++ b/Melina_scripts/MelinaRHDminiPipeline.m @@ -0,0 +1,79 @@ +read_Intan_RHD2000_file +fs = frequency_parameters.amplifier_sample_rate; +filteredSignals = iir50NotchFilter(amplifier_data',fs); +filteredSignals = iirSpikeFilter(filteredSignals,fs)'; +[Nch, Ns] = size(filteredSignals); +clearvars -except filteredSignals fs baseName path Nch Ns +%% +spkSrt = UMSDataLoader(filteredSignals',fs); % Spike sort +spkSrt.UMS2kPipeline +spkStr = spkSrt.SpikeUMSStruct; % Spike structure from UMS2k +%% +st = cell(1,sum(spkStr.labels(:,2) < 4)); +ccl = 1; +ccl2 = ccl; +while ccl <= length(st) + if spkStr.labels(ccl2,2) < 4 + st(ccl) = {spkStr.spiketimes(spkStr.assigns == spkStr.labels(ccl2,1))}; + ccl = ccl + 1; + end + ccl2 = ccl2 + 1; +end +%% Plot +labels = cell(Nch,1); +for cs = 1:Nch + labels(cs) = {num2str(cs)}; +end + +%% +nch = 1:Nch; +%% +pltDur = 2; +sclFact = 5*numel(nch)*std(filteredSignals(:)); +iSub = randi(Ns-fs,1); +fSub = iSub + (pltDur * 3e4); +plotEEGchannels(filteredSignals(nch,iSub:fSub),labels(nch),pltDur,fs,0.5); +fprintf('Showing from %.3f seconds\n',iSub/fs) + +Npn = length(st); +hold on; +cmap = jet(numel(st)); +for cpn = 1:Npn + shwnSpk = iSub/fs <= st{cpn} & fSub/fs >= st{cpn}; + Nsk = sum(shwnSpk); + plot(repmat(st{cpn}(shwnSpk),2,1)-(iSub/fs),... + [sclFact*ones(1,Nsk,'single');zeros(1,Nsk,'single')],... + 'Color',cmap(cpn,:),'LineStyle','--','LineWidth',0.1) + plot(st{cpn}(shwnSpk)-(iSub/fs),cpn*ones(1,Nsk,'single'),... + 'LineStyle','none','Marker','.','Color',cmap(cpn,:),... + 'DisplayName',sprintf('P. neuron %d',cpn)); +end + +%% Unit overlay + +ccl2 = 1; +Nts = size(spkStr.waveforms,2); +tx = (0:Nts-1)*(1/fs); +f = gobjects(size(spkStr.labels,1),1); +for ccl = 1:size(spkStr.labels,1) + if spkStr.labels(ccl,2) < 4 + spSub = spkStr.labels(ccl,1); + spIdx = spkStr.assigns == spSub; + swf_allChannels = spkStr.waveforms(spIdx,:,:); + avSpkWvf = reshape(mean(swf_allChannels,1),Nts,Nch); + [~, pch] = max(sum(abs(avSpkWvf))); + pWvf = swf_allChannels(:,:,pch); + f(ccl2) = figure('Name',sprintf('Cluster %d, channel %d',spSub,pch),... + 'Color',[1,1,1]); + p = plot(tx,pWvf','LineWidth',0.1,'Color',[0.8,0.8,0.8]);box off; + hold on;ap = plot(tx,avSpkWvf(:,pch),'LineWidth',2,'Color',[0,0,0]); + legend([p(end),ap],{'Raw traces','Average trace'}); + title(sprintf('Cluster %d, channel %d',spSub,pch)) +% f(ccl2).PaperOrientation = 'landscape'; +% print(f(ccl2),fullfile(path,... +% [baseName,sprintf('_cluster_%d.pdf',spSub)]),'-dpdf',... +% '-bestfit') +% close(f(ccl2)); + ccl2 = ccl2 + 1; + end +end \ No newline at end of file diff --git a/Melina_scripts/msmrx2bin.m b/Melina_scripts/msmrx2bin.m deleted file mode 100644 index edaef92..0000000 --- a/Melina_scripts/msmrx2bin.m +++ /dev/null @@ -1,190 +0,0 @@ -function iOk = msmrx2bin(dataDir, outBaseName) -iOk = -1; -impStr = 'Rhd'; - -smrxFiles = dir(fullfile(dataDir,'*.smrx')); -if isempty(smrxFiles) - smrxFiles = dir(fullfile(dataDir,'*\*.smrx')); -elseif isempty(smrxFiles) - fprintf(1,'The given directory contains no .smrx files. Please ') - fprintf(1,'try again with another folder which do contain .smrx files.\n') - return -end - -cellSmrxFiles = {smrxFiles.name}; -Nf = size(smrxFiles,1); - -% Selecting files -[incFiles, iok] = listdlg('ListString',cellSmrxFiles(1,:),... - 'SelectionMode','multiple',... - 'PromptString','Select the files to join:',... - 'InitialValue',1:Nf); -if iok - smrxFiles = smrxFiles(incFiles); - cellSmrxFiles = {smrxFiles.name}; - Nf = size(smrxFiles,1); -else - fprintf(1,'Cancelling...\n') - return -end - -% Merging order -fileOrder = (1:Nf)'; -defInput = num2cell(num2str(fileOrder)); -answr = inputdlg(cellSmrxFiles,'File order',[1, 60],defInput); -nFileOrder = str2double(answr); -nSmrxFiles = smrxFiles; -if ~isempty(answr) && sum(abs(fileOrder - nFileOrder)) ~= 0 - fprintf(1,'Changing file order...\n') - nSmrxFiles(nFileOrder) = smrxFiles(fileOrder); - smrxFiles = nSmrxFiles; -else - fprintf('File order not altered\n') -end -clearvars nSmrxFiles nFileOrder -% Creating a .bin file -if ~exist('outBaseName','var') || isempty(outBaseName) ||... - ~ischar(outBaseName) - fprintf(1,'No outname given. Computing a name...\n') - pathPieces = strsplit(dataDir,filesep); - outBaseName = [pathPieces{end},'.bin']; - fprintf(1,'File name: %s.bin\n',pathPieces{end}) -end - -outFullName = fullfile(dataDir,outBaseName); -if exist(outFullName,'file') - ovwtAns = questdlg(... - sprintf('Warning! File %s exists. Overwrite?',outFullName),... - 'Overwrite?','Yes','No','No'); - if strcmpi(ovwtAns,'no') - fprintf('No file written.\n') - return - end -end -fID = fopen(outFullName,'w'); -m = (2^32)/100; -for cf = 1:Nf - cfName = fullfile(smrxFiles(cf).folder,smrxFiles(cf).name); - FileInfo = SONXFileHeader(cfName); - fhand = CEDS64Open(cfName); - if fhand < 0 - fprintf(1,'The file might be opened in Spike2. Please close it and') - fprintf(1,' try again.\n') - fclose(fID); - return - end - totalTime = CEDS64TicksToSecs(fhand,FileInfo.maxFTime); - - if fhand > 0 - % Import the data. - mxChans = CEDS64MaxChan(fhand); - chanList = 1:mxChans; - chTypes = zeros(mxChans,1); - try - heads = SONXChannelInfo(fhand,1,1); - fch = 2; - ch1 = 2; - chTypes(1) = 1; - catch - heads = SONXChannelInfo(fhand,2,2); - fch = 3; - ch1 = 3; - chTypes(2) = 1; - end - heads = repmat(heads,mxChans,1); - for ch = ch1:mxChans - chTypes(ch) = CEDS64ChanType(fhand,ch); - if chTypes(ch) == 1 - fch = fch + 1; - heads(ch) = SONXChannelInfo(fhand,ch,fch); - end - end - heads = heads(chTypes == 1); - chanList = chanList(chTypes == 1); - chead = numel(heads); - while chead >= 1 - if ~xor(isnan(str2double(heads(chead).title)),... - ~contains(heads(chead).title,impStr)) - heads(chead) = []; - chanList(chead) = []; - end - chead = chead - 1; - end - multiplexerFactor = heads(1).ChanDiv; - fs = 1 / (FileInfo.usPerTime * multiplexerFactor); - FileInfo.SamplingFrequency = fs; - [~, baseName, ~] = fileparts(smrxFiles(cf).name); - save(fullfile(dataDir,... - [baseName, '_sampling_frequency.mat']),'fs') - display(FileInfo) - % Determining the necessary array size to occupy approximately the - % 75% of the available memory given that the array is int16 - memStruct = memory; - BuffSize = 3 * memStruct.MemAvailableAllArrays / 8; - dataPointsExp = (BuffSize / (numel(chanList) * 2)); - if heads(1).npoints < dataPointsExp - dataPointsExp = heads(1).npoints; - end - wwidth = double(dataPointsExp)/fs; - % dataPointsExp = ceil(log10(fs)+2); - % wwidth = 10^ceil(log10(fs)+2)/fs; - is = 1/fs; - cw = 0; - if abs(totalTime-(heads(1).stop - heads(1).start)) - oldTotalTime = totalTime; - totalTime = heads(1).stop - heads(1).start; - fprintf(1,'The length of the signals in the file seem to ') - fprintf(1,'differ (%.3f s \\delta (%.3f ms)).\nConsidering %.3f seconds\n',... - oldTotalTime, 1e3*(oldTotalTime - totalTime), totalTime) - end - while cw < totalTime - % if exist('Npts','var') - % fID = fopen(outfilename,'a'); - % end - % dataBuff = zeros(numel(chanList),10^dataPointsExp,'int16'); - dataBuff = zeros(numel(chanList),dataPointsExp,'int16'); - if cw <= totalTime - wwidth - timeSegment = [cw, cw + wwidth]; - else - timeSegment = [cw, totalTime]; - cw = totalTime * 2; - dataBuff = zeros(numel(chanList),int32(diff(timeSegment)*fs),... - 'int16'); - end - shortFlag = false; - fprintf(1,'Reading... ') - for ch = 1:numel(chanList) - [Npts, chanAux, ~] =... - SONXGetWaveformChannelSegment(fhand, chanList(ch), timeSegment,... - heads(ch)); %#ok - dat = int16(chanAux * m); - try - dataBuff(ch,:) = dat; - catch - dataBuff(ch,1:length(dat)) = dat; - shortFlag = true; - end - end - - fprintf(1,'done!\n') - cw = cw + wwidth + is; - fprintf(1,'Writting... ') - if shortFlag - dataBuff(:,length(dat)+1:dataPointsExp) = []; - end - fwrite(fID,dataBuff,'int16'); - fprintf(1,' done!\n') - % ftell(fID) - % fclose(fID); - end - end - CEDS64Close(fhand); -end -fclose(fID); -fprintf('Successfully imported files!\n') -fprintf('The files merged are the following:\n') -for cf = 1:numel(smrxFiles) - fprintf('%s\n',smrxFiles(cf).name) -end -iOk = CEDS64Close(fhand); -end \ No newline at end of file diff --git a/Ross/AllWaveforms.m b/Ross/AllWaveforms.m new file mode 100644 index 0000000..788b474 --- /dev/null +++ b/Ross/AllWaveforms.m @@ -0,0 +1,16 @@ +function fig = AllWaveforms(clWaveforms, ID, fs) +fig = figure('color', 'white'); +hold on +for a = 1:length(ID) + ind = find(ismember(clWaveforms(:,1), ID(a))); + plot(mean(clWaveforms{ind,2}')); +end +fig = gcf; +ax = fig(1).Children; +ind = size(clWaveforms{1,2}(:,1)); +ind = ind(1); +ax.XTickLabel = [1:ind]/fs*1000; +title('m379 All Units') +xlabel(ax,'Time_(_m_s_)') +ax.FontSize = 30; +end \ No newline at end of file diff --git a/Ross/AutomateRasters.m b/Ross/AutomateRasters.m new file mode 100644 index 0000000..cc1dcb1 --- /dev/null +++ b/Ross/AutomateRasters.m @@ -0,0 +1,80 @@ +% DE_Jittering needs to be unfiltered for significance for this to work! + + +rasterDir = fullfile(figureDir,'Rasters\'); +if ~mkdir(rasterDir) + fprintf(1,'There was an issue with the figure folder...\n'); +end +for pwr = [5, 10, 15] +MchTblInd = ['Mech_Control_', num2str(pwr), 'mW_MR']; +LasTblInd = ['Laser_Control_', num2str(pwr), 'mW_LR']; +MchCondControl = ['Mech_Control_', num2str(pwr), 'mW']; +LasCondControl = ['Laser_Control_', num2str(pwr), 'mW']; +MchLasCond = ['Mech_Laser_', num2str(pwr), 'mW']; +EffectTblInd = ['Mech_Control_', num2str(pwr), 'mW_vs_Mech_Laser_', num2str(pwr), 'mW_Evoked_Response']; +TblInd = find(clInfo.(MchTblInd)); % ATM this only makes rasters that show sig control mech response +clIDind = clInfo.id(TblInd); +lngth = length(clIDind); +for a = 1:lngth + cl = clIDind(a); + clSel = find(ismember(pclID, cl)); + if chCond == 1 + rasCondSel = find(ismember(consCondNames, MchCondControl) | ismember(consCondNames, MchLasCond)); + label = 'Mech'; + else + rasCondSel = find(ismember(consCondNames, LasCondControl) | ismember(consCondNames, MchLasCond)); + label = 'Laser'; + end + rasCond = consideredConditions(rasCondSel); + rasCondNames = consCondNames(rasCondSel); + Nrcl = numel(clSel); + % Reorganize the rasters in the required order. + clSub = find(ismember(gclID, pclID(clSel)))+1; + [rasIdx, rasOrd] = ismember(pclID(ordSubs), pclID(clSel)); + clSub = clSub(rasOrd(rasIdx)); + clSel = clSel(rasOrd(rasOrd ~= 0)); + Nma = min(Na(rasCondSel)); + rasFig = figure; + Nrcond = length(rasCond); + ax = gobjects(Nrcond*Nrcl,1); + for cc = 1:length(rasCond) + % Equalize trial number + trigSubset = sort(randsample(Na(rasCondSel(cc)),Nma)); + tLoc = find(delayFlags(:,rasCondSel(cc))); + tSubs = tLoc(trigSubset); + % Trigger subset for stimulation shading + trigAlSubs = Conditions(rasCond(cc)).Triggers(trigSubset,:); + timeDur = round(diff(trigAlSubs, 1, 2)/fs, 3); + trigChange = find(diff(timeDur) ~= 0); + for ccl = 1:Nrcl + lidx = ccl + (cc - 1) * Nrcl; + ax(lidx) = subplot(Nrcond, Nrcl, lidx); + title(ax(lidx),sprintf('%s cl:%s',rasCondNames{cc},pclID{clSel(ccl)})) + plotRasterFromStack(discStack([1,clSub(ccl)],:,tSubs),... + timeLapse, fs,'',ax(lidx)); + ax(lidx).YAxisLocation = 'origin';ax(lidx).YAxis.TickValues = Nma; + ax(lidx).YAxis.Label.String = Nma; + ax(lidx).YAxis.Label.Position =... + [timeLapse(1)-timeLapse(1)*0.65, Nma,0]; + ax(lidx).XAxis.TickLabels =... + cellfun(@(x) str2num(x)*1e3, ax(lidx).XAxis.TickLabels,... + 'UniformOutput', 0); + xlabel(ax(lidx), 'Time [ms]') + initSub = 0; + optsRect = {'EdgeColor','none','FaceColor','none'}; + for ctr = 1:numel(trigChange) + rectangle('Position',[0, initSub,... + timeDur(trigChange(ctr)), trigChange(ctr)],optsRect{:}) + initSub = trigChange(ctr); + end + rectangle('Position', [0, initSub, timeDur(Nma),... + Nma - initSub],optsRect{:}) + end + end + linkaxes(ax,'x') + rasFigName = ['Unit_', cell2mat(cl), '_', label, '_', num2str(pwr), 'mW_Raster']; + configureFigureToPDF (rasFig); + savefig(rasFig,fullfile(rasterDir, [rasFigName, '.fig'])); +end +end +close all \ No newline at end of file diff --git a/Ross/BaselineVsEvokedISIs.m b/Ross/BaselineVsEvokedISIs.m new file mode 100644 index 0000000..675a543 --- /dev/null +++ b/Ross/BaselineVsEvokedISIs.m @@ -0,0 +1,125 @@ +function fig = BaselineVsEvokedISIs(SalISIhist, CfaISIhist) +%% Saline & CFA Spont vs Evoked (Mech Control) +for model = 1:2 + if model == 1 + Hist = SalISIhist; + else + Hist = CfaISIhist; + end + evInd =[]; + for e = 1:length(Hist) + if contains(Hist(e).name, 'Mech_Control', 'IgnoreCase', true) == true + evInd = [evInd; e]; + end + end + IsiR = length(Hist(evInd(1)).Vals(1).CumISI); + for a = 2:length(evInd) + IsiR = [IsiR, length(Hist(evInd(a)).Vals(2).CumISI)]; + end + r = sum(IsiR); + SpontIsiStack = zeros(r, length(Hist(evInd(1)).Vals(1).ISI{1})); + SpontcumIsiStack = zeros(r, length(Hist(evInd(1)).Vals(1).CumISI{1})); + EvokedIsiStack = zeros(r, length(Hist(evInd(1)).Vals(2).ISI{1})); + EvokedcumIsiStack = zeros(r, length(Hist(evInd(1)).Vals(2).CumISI{1})); + c = 1; + for a = 1: length(evInd) + for b = 1:length(Hist(evInd(a)).Vals(2).CumISI) + SpontcumIsiStack(c,:) = Hist(evInd(a)).Vals(1).CumISI{b}; + EvokedcumIsiStack(c,:) = Hist(evInd(a)).Vals(2).CumISI{b}; + SpontIsiStack(c,:) = Hist(evInd(a)).Vals(1).ISI{b}; + EvokedIsiStack(c,:) = Hist(evInd(a)).Vals(2).ISI{b}; + c = c + 1; + end + end + % Getting rid of NaNs + SpontcumIsiStack(length(SpontcumIsiStack(:,1)) + 1,:) = NaN; + SpontIsiStack(length(SpontIsiStack(:,1)) + 1,:) = NaN; + EvokedcumIsiStack(length(EvokedcumIsiStack(:,1)) + 1,:) = NaN; + EvokedIsiStack(length(EvokedIsiStack(:,1)) + 1,:) = NaN; + + SpontIndNaN = length(SpontIsiStack(:,1)); + EvokedIndNaN = length(EvokedIsiStack(:,1)); + + + for nInd = 1:length(SpontIsiStack(:,1))-1 + if isnan(SpontIsiStack(nInd,:)) == true + SpontIndNaN = [SpontIndNaN; nInd]; + end + end + + for nInd = 1:length(EvokedIsiStack(:,1))-1 + if isnan(EvokedIsiStack(nInd,:)) == true + EvokedIndNaN = [EvokedIndNaN; nInd]; + end + end + SpontIndNaN = sort(SpontIndNaN, 'descend'); + SpontIsiStack(SpontIndNaN,:) =[]; + SpontcumIsiStack(SpontIndNaN,:) = []; + EvokedIndNaN = sort(EvokedIndNaN, 'descend'); + EvokedIsiStack(EvokedIndNaN,:) =[]; + EvokedcumIsiStack(EvokedIndNaN,:) = []; + if model == 1 + cumSpontSalIsi = sum(SpontcumIsiStack)/length(SpontcumIsiStack(:,1)); + cumEvokedSalIsi = sum(EvokedcumIsiStack)/length(EvokedcumIsiStack(:,1)); + sumSpontSalISI = sum(SpontIsiStack)/length(SpontIsiStack(:,1)); + sumEvokedSalISI = sum(EvokedIsiStack)/length(EvokedIsiStack(:,1)); + else + cumSpontCfaIsi = sum(SpontcumIsiStack)/length(SpontcumIsiStack(:,1)); + cumEvokedCfaIsi = sum(EvokedcumIsiStack)/length(EvokedcumIsiStack(:,1)); + sumSpontCfaISI = sum(SpontIsiStack)/length(SpontIsiStack(:,1)); + sumEvokedCfaISI = sum(EvokedIsiStack)/length(EvokedIsiStack(:,1)); + end +end + +figure('Color',[1,1,1], 'Name', 'Saline & CFA Spontaneous vs Evoked Cumulative Fraction'); +subplot(2,1,1) +for model = 1:2 + subplot(2,1,model) + if model == 1 + Hist = SalISIhist; + spont = cumSpontSalIsi; + evoked = cumEvokedSalIsi; + SpontISI = sumSpontSalISI; + EvokedISI = sumEvokedSalISI; + else + Hist = CfaISIhist; + spont = cumSpontCfaIsi; + evoked = cumEvokedCfaIsi; + SpontISI = sumSpontCfaISI; + EvokedISI = sumEvokedCfaISI; + end + % Only if the bin widths are constant!!! + plot(Hist(1).Vals(1).bns{1}, spont); + hold on + plot(Hist(1).Vals(2).bns{1}, evoked); + ylabel('Cumulative Fraction'); + xlabel('ISI (msecs)'); + xlim([-3, 2]); + xticks([-3:2]); + ylim([0, 1]); + legend('Spontaneous', 'Evoked'); + fig = gcf; + ax = gca; + ax.FontSize = 20; + ax.XTickLabel = 10.^cellfun(@str2double,ax.XTickLabel) * 1e3; + % ax.XTickLabelRotation = -45; + if model == 1 + title('Saline'); + else + title('CFA'); + end + %% More Stats + [txt, star] = findKSsignificance(SpontISI, EvokedISI); + annotation(figure(gcf),'textbox',... + [0.21428125, 0.438809261300992*(1/model) 0.0568125 0.029768467475193],'String',star,... + 'FontSize',20,... + 'FitBoxToText','off',... + 'EdgeColor','none'); + annotation(figure(gcf),'textbox',... + [0.673958333333333, 0.112328008579419 *(1/model) 0.203645833333333 0.232874455900804],... + 'String',{txt},... + 'FontSize',15,... + 'FitBoxToText','off',... + 'EdgeColor','none'); +end +end \ No newline at end of file diff --git a/Ross/Bursty.m b/Ross/Bursty.m new file mode 100644 index 0000000..205d272 --- /dev/null +++ b/Ross/Bursty.m @@ -0,0 +1,23 @@ +function [BurstStruct, popFreq, totalBursts, totalSpikes] = Bursty(SpikeTrainArray, fs) +for a = 1:length(SpikeTrainArray) + [burstSpkFreq, burstCF, nBursts, nSpikes] = getBurstingMeasures(SpikeTrainArray{a, 1}, fs, 4, 100); + BurstStruct(a).Freq = burstSpkFreq; + BurstStruct(a).Coeff = burstCF; + BurstStruct(a).nBursts = nBursts; + BurstStruct(a).nSpikes = nSpikes; +end + +freq = cat(2, BurstStruct(:).Freq); +popFreq = sum(freq')'; +bursts = cat(2, BurstStruct(:).nBursts); +totalBursts = sum(bursts')'; +relFreq = popFreq/totalBursts; +spikes = cat(2, BurstStruct(:).nSpikes); +totalSpikes = sum(spikes')'; + + + + + + +end \ No newline at end of file diff --git a/Ross/CondISIs.m b/Ross/CondISIs.m new file mode 100644 index 0000000..3e93fed --- /dev/null +++ b/Ross/CondISIs.m @@ -0,0 +1,106 @@ +function [fig, ksResults] = CondISIs(SalISIhist, CfaISIhist) +fig = gobjects(4); +%% CumISI Comparing Conditions +r = 1; +cf = 1; +for model = 1:2 + if model == 1 + Histy = SalISIhist; + modName = 'Saline'; + else + Histy = CfaISIhist; + modName = 'CFA'; + end + for wIndex = 1:2 + if wIndex == 1 + wName = 'Spontaneous'; + else + wName = 'Evoked'; + end + + fig(cf) = figure('Color',[1,1,1], 'Name', [modName, ' ', wName, ' Cumulative Fraction']); + cf = cf + 1; + + for a = 3%:3 + pwr = a*5; + if a == 1 + chCond = [7 8 9]; + elseif a == 2 + chCond = [1 2 3]; + elseif a == 3 + chCond = [4 5 6]; + end + % subplot(3,1,a) + hold on + for chFig = chCond + IsiStack = zeros(length(Histy(chFig).Vals(wIndex).ISI), length(Histy(chFig).Vals(wIndex).ISI{1})); + cumIsiStack = zeros(length(Histy(chFig).Vals(wIndex).CumISI), length(Histy(chFig).Vals(wIndex).CumISI{1})); + for cInd = 1:length(Histy(chFig).Vals(wIndex).CumISI) + IsiStack(cInd,:) = Histy(chFig).Vals(wIndex).ISI{cInd}; + cumIsiStack(cInd,:) = Histy(chFig).Vals(wIndex).CumISI{cInd}; + end + % Getting rid of NaNs + cumIsiStack(length(Histy(chFig).Vals(wIndex).CumISI) + 1,:) = NaN; + IsiStack(length(Histy(chFig).Vals(wIndex).ISI) + 1,:) = NaN; + cumIndNaN = (length(Histy(chFig).Vals(wIndex).CumISI) + 1); + for nInd = 1:(length(Histy(chFig).Vals(wIndex).CumISI)) + if isnan(cumIsiStack(nInd,:)) == true + cumIndNaN = [cumIndNaN; nInd]; + end + end + cumIndNaN = sort(cumIndNaN, 'descend'); + cumIsiStack(cumIndNaN,:) =[]; + IsiStack(cumIndNaN,:) = []; + ISIcum = sum(cumIsiStack)/length(Histy(chFig).Vals(wIndex).CumISI); + % Only if the bin widths are constant!!! + plot(CfaISIhist(1).Vals(1).bns{1}, ISIcum) + if model == 1 + SalISIhist(chFig).Vals(wIndex).cumsum = ISIcum; + SalISIhist(chFig).Vals(wIndex).ISIsum = IsiStack/length(Histy(chFig).Vals(wIndex).ISI); + % SalISIhist(chFig).Vals(wIndex).sumISI = sum(Isi); + Histy = SalISIhist; + elseif model == 2 + CfaISIhist(chFig).Vals(wIndex).cumsum = ISIcum; + CfaISIhist(chFig).Vals(wIndex).ISIsum = IsiStack/length(Histy(chFig).Vals(wIndex).ISI); + % CfaISIhist(chFig).Vals(wIndex).sumISI = sum(Isi); + Histy = CfaISIhist; + end + end + % Results(c).name = kstest2(CumISI(chCond(1)).Condition(wIndex).Vals; + ylabel('Cumulative Fraction'); + xlabel('ISI (msecs)'); + xlim([-3, 1]); + xticks([-3:1]) + ylim([0, 1]); + legend(Histy(chCond(1)).name, Histy(chCond(2)).name, Histy(chCond(3)).name); + fig = gcf; + ax = gca; + ax.FontSize = 20; + ax.XTickLabel = 10.^cellfun(@str2double,ax.XTickLabel) * 1e3; + + end + c = 0; +% for a = 1:3 +% pwr = a*5; +% if a == 1 +% chCond = [7 8 9]; +% elseif a == 2 +% chCond = [1 2 3]; +% elseif a == 3 +% chCond = [4 5 6]; +% end +% for d = 1:length(chCond)-1 +% for b = d+1: length(chCond) +% ksResults(r).name = [modName, ' ', Histy(chCond(d) + c).name, ' vs ', Histy(chCond(b) + c).name, ' ', wName]; +% ksResults(r).kstest2 = findKSsignificance(sum(Histy(chCond(d) + c).Vals(wIndex).ISIsum), sum(Histy(chCond(b) + c).Vals(wIndex).ISIsum)); +% r = r + 1; +% end +% end + + end + end +end +%% +% for a = 1:length(ksResults) +% fprintf(1, [ksResults(a).name,' Kolgorov-Smirnov Test ', num2str(ksResults(a).kstest2), ' \n \n']) +% end \ No newline at end of file diff --git a/Ross/ConditionISIs.m b/Ross/ConditionISIs.m new file mode 100644 index 0000000..9e1fbd4 --- /dev/null +++ b/Ross/ConditionISIs.m @@ -0,0 +1,224 @@ +%% + + + + +%% ISIs +ind = 1; +for model = 1:2 + if model == 1 + Histy = SalIIShist; + modName = 'Saline'; + else + Histy = CfaISIhist; + modName = 'CFA'; + end + for wIndex = 1:2 + if wIndex == 1 + wName = 'Spontaneous'; + else + wName = 'Evoked'; + end + + figure('Color',[1,1,1], 'Name', [modName, ' ', wName, ' ISIs']); + for a = 1:3 + pwr = a*5; + if a == 1 + chCond = [7 8 9]; + elseif a == 2 + chCond = [1 2 3]; + elseif a == 3 + chCond = [4 5 6]; + end + + subplot(3,1,a) + plot(Histy(chCond(1)).Vals(wIndex).bns, Histy(chCond(1)).Vals(wIndex).cts./sum(Histy(chCond(1)).Vals(wIndex).cts),'LineWidth',1); + hold on + plot(Histy(chCond(2)).Vals(wIndex).bns, Histy(chCond(2)).Vals(wIndex).cts./sum(Histy(chCond(2)).Vals(wIndex).cts),'LineWidth',1); + plot(Histy(chCond(3)).Vals(wIndex).bns, Histy(chCond(3)).Vals(wIndex).cts./sum(Histy(chCond(3)).Vals(wIndex).cts),'LineWidth',1); + ylabel('ISI Probability'); + xlabel('ISI (msecs)'); + % title([num2str(pwr), ' mW']); + legend(Histy(chCond(1)).name, Histy(chCond(2)).name, Histy(chCond(3)).name); + ylim([0, 10^(-2)]); + xlim([log(0.001), 4.5]); + fig = gcf; + ax = gca; + ax.FontSize = 20; + ax.XTickLabels = round(exp(cellfun(@str2double,ax.XTickLabel))* 1e3); % This goes weird when image is not full size + + ISIvals(ind).name = [modName, ' ', wName, ' ', Histy(chCond(1)).name]; + ISIvals(ind).Vals = Histy(chCond(1)).Vals(wIndex).cts./sum(Histy(chCond(1)).Vals(wIndex).cts); + ind = ind + 1; + ISIvals(ind).name = [modName, ' ', wName, ' ', Histy(chCond(2)).name]; + ISIvals(ind).Vals = Histy(chCond(2)).Vals(wIndex).cts./sum(Histy(chCond(2)).Vals(wIndex).cts); + ind = ind + 1; + ISIvals(ind).name = [modName, ' ', wName, ' ', Histy(chCond(3)).name]; + ISIvals(ind).Vals = Histy(chCond(3)).Vals(wIndex).cts./sum(Histy(chCond(3)).Vals(wIndex).cts); + ind = ind + 1; + end + end +end +%% kstest2 +ind = 1; +BonfAlpha = 0.05/length(ISIvals); +c = 0; +for comparisons = 1:3:length(ISIvals) + for a = 1:2 + for b = a+1:3 + Results(ind).name = [ISIvals(c + a).name, ' vs ', ISIvals(c + b).name,]; + Results(ind).kstest = kstest2(ISIvals(c + a).Vals, ISIvals(c + b).Vals,'Alpha',BonfAlpha); + ind = ind + 1; + end + end + c = c + 3; +end +for a = 1:36 +fprintf(1, [Results(a).name,' Kolgorov-Smirnov Test = ', num2str(Results(a).kstest), ' \n \n']) +end +save(fullfile('Z:\Ross\Experiments\VPL', 'Laser_Results'), 'Results', '-v7.3'); +%% Cumulative Fraction +for model = 1:2 + if model == 1 + Histy = SalIsi; + modName = 'Saline'; + else + Histy = CFAisi; + modName = 'CFA'; + end + for wIndex = 1:2 + if wIndex == 1 + wName = 'Spontaneous'; + else + wName = 'Evoked'; + end + + figure('Color',[1,1,1], 'Name', [modName, ' ', wName, ' Cumulative Fraction']); + for a = 1:3 + pwr = a*5; + if a == 1 + chCond = [7 8 9]; + elseif a == 2 + chCond = [1 2 3]; + elseif a == 3 + chCond = [4 5 6]; + end + + subplot(3,1,a) + Ncts = Histy(chCond(1)).Vals(wIndex).cts/sum(Histy(chCond(1)).Vals(wIndex).cts); + plot(Histy(chCond(1)).Vals(wIndex).bns,cumsum(Ncts),'LineStyle','-') + hold on + Ncts = Histy(chCond(2)).Vals(wIndex).cts/sum(Histy(chCond(2)).Vals(wIndex).cts); + plot(Histy(chCond(2)).Vals(wIndex).bns,cumsum(Ncts),'LineStyle','-') + Ncts = Histy(chCond(3)).Vals(wIndex).cts/sum(Histy(chCond(3)).Vals(wIndex).cts); + plot(Histy(chCond(3)).Vals(wIndex).bns,cumsum(Ncts),'LineStyle','-') + ylabel('Cumulative Fraction'); + xlabel('ISI (msecs)'); + xlim([log(0.001), 4.5]); + ylim([0, 1]); + + % title([num2str(pwr), ' mW']); + legend(Histy(chCond(1)).name, Histy(chCond(2)).name, Histy(chCond(3)).name); + % ylim([0, 1]); + % xlim([log(0.001), 4.5]); + ax = gca; + ax.FontSize = 20; + grid(ax,'on') + ax.XTickLabels = round(exp(cellfun(@str2double,ax.XTickLabel))* 1e3); + end + end +end +%% Saline vs CFA of Mechanically Responsive Units + +Sal.SpontCts = SalIsi(1).Vals(1).cts; +for a = 2:length(SalIsi) + Sal.SpontCts = Sal.SpontCts + SalIsi(a).Vals(1).cts; +end +Sal.EvokedCts = SalIsi(1).Vals(2).cts; +for a = [4, 7] + Sal.EvokedCts = Sal.EvokedCts + SalIsi(a).Vals(2).cts; +end +Sal.bns = SalIsi(1).Vals(2).bns; + +CFA.SpontCts = CFAisi(1).Vals(1).cts; +for a = 2:length(CFAisi) + CFA.SpontCts = CFA.SpontCts + CFAisi(a).Vals(1).cts; +end +CFA.EvokedCts = CFAisi(1).Vals(2).cts; +for a = [4, 7] + CFA.EvokedCts = CFA.EvokedCts + CFAisi(a).Vals(2).cts; +end +CFA.bns = CFAisi(1).Vals(2).bns; + +figure('Color',[1,1,1], 'Name', 'Saline vs CFA ISIs'); +subplot(2,1,1) +plot(CFA.bns, CFA.SpontCts./sum(CFA.SpontCts),'LineWidth',1); +hold on +plot(Sal.bns, Sal.SpontCts./sum(Sal.SpontCts),'LineWidth',1); + +title('Spontaneous'); +ylabel('ISI Probability'); +xlabel('ISI (msecs)'); +legend('CFA', 'Saline'); +ylim([0, 10^(-2)]); +xlim([log(0.001), 4.5]); +ax = gca; +ax.FontSize = 20; +ax.XTickLabels = round(exp(cellfun(@str2double,ax.XTickLabel))* 1e3); + +subplot(2,1,2) +plot(CFA.bns, CFA.EvokedCts./sum(CFA.EvokedCts),'LineWidth',1); +hold on +plot(Sal.bns, Sal.EvokedCts./sum(Sal.EvokedCts),'LineWidth',1); + +title('Evoked'); +ylabel('ISI Probability'); +xlabel('ISI (msecs)'); +legend('CFA', 'Saline'); +ylim([0, 10^(-2)]); +xlim([log(0.001), 4.5]); +ax = gca; +ax.FontSize = 20; +ax.XTickLabels = round(exp(cellfun(@str2double,ax.XTickLabel))* 1e3); +figure('Color',[1,1,1], 'Name', 'Saline vs CFA Cumulative Fraction'); +subplot(2,1,1) +Ncts = CFA.SpontCts/sum(CFA.SpontCts); +plot(CFA.bns,cumsum(Ncts),'LineStyle','-') +hold on +Ncts = Sal.SpontCts/sum(Sal.SpontCts); +plot(Sal.bns,cumsum(Ncts),'LineStyle','-') +title('Spontaneous'); +ylabel('Cumulative Fraction'); +xlabel('ISI (msecs)'); +xlim([log(0.001), 4.5]); +ylim([0, 1]); +legend('CFA', 'Saline'); +ax = gca; +ax.XTickLabels = round(exp(cellfun(@str2double,ax.XTickLabel))* 1e3);ax.FontSize = 20; +grid(ax,'on') +subplot(2,1,2) +Ncts = CFA.EvokedCts/sum(CFA.EvokedCts); +plot(CFA.bns,cumsum(Ncts),'LineStyle','-') +hold on +Ncts = Sal.EvokedCts/sum(Sal.EvokedCts); +plot(Sal.bns,cumsum(Ncts),'LineStyle','-') +title('Evoked'); +ylabel('Cumulative Fraction'); +xlabel('ISI (msecs)'); +xlim([log(0.001), 4.5]); +ylim([0, 1]); +legend('CFA', 'Saline'); +ax = gca; +ax.FontSize = 20; +ax.XTickLabels = round(exp(cellfun(@str2double,ax.XTickLabel))* 1e3); +grid(ax,'on') +%% Results +if kstest2(CFA.SpontCts./sum(CFA.SpontCts),Sal.SpontCts./sum(Sal.SpontCts)) + fprintf(1,'Spontaneous activity between Saline and CFA is significantly different (kstest2) \n'); +else + fprintf(1,'Spontaneous activity between Saline and CFA is NOT significantly different (kstest2) \n'); +end +%% Laser Differences in Saline vs CFA (Needs to be normalise somehow) + + + diff --git a/Ross/CumISI.m b/Ross/CumISI.m new file mode 100644 index 0000000..af84d23 --- /dev/null +++ b/Ross/CumISI.m @@ -0,0 +1,305 @@ + + +%% Saline vs CFA Spontaneous +for model = 1:2 + if model == 1 + Hist = SalISIhist; + else + Hist = CfaISIhist; + end + + IsiR = length(Hist(1).Vals(1).CumISI); + for a = 2: length(Hist) + IsiR = [IsiR, length(Hist(a).Vals(1).CumISI)]; + end + r = sum(IsiR); + cumIsiStack = zeros(r, length(Hist(1).Vals(1).CumISI{1})); + IsiStack = zeros(r, length(Hist(1).Vals(1).ISI{1})); + c = 1; + for a = 1:length(Hist) + for b = 1:length(Hist(a).Vals(1).CumISI) + cumIsiStack(c,:) = Hist(a).Vals(1).CumISI{b}; + IsiStack(c,:) = Hist(a).Vals(1).ISI{b}; + c = c +1; + end + end + % Getting rid of NaNs + cumIsiStack(length(cumIsiStack(:,1)) + 1,:) = NaN; + IsiStack(length(IsiStack(:,1)) + 1,:) = NaN; + cumIndNaN = length(cumIsiStack(:,1)); + IndNaN = length(IsiStack(:,1)); + for nInd = 1:length(cumIsiStack(:,1)) + if isnan(cumIsiStack(nInd,:)) == true + cumIndNaN = [cumIndNaN; nInd]; + end + if isnan(IsiStack(nInd,:)) == true + IndNaN = [IndNaN; nInd]; + end + end + cumIndNaN = sort(cumIndNaN, 'descend'); + cumIsiStack(cumIndNaN,:) =[]; + IndNaN = sort(IndNaN, 'descend'); + IsiStack(IndNaN,:) =[]; + if model == 1 + sumSalIsi = sum(IsiStack)/length(IsiStack(:,1)); + cumSalspont = sum(cumIsiStack)/length(cumIsiStack(:,1)); + + else + sumCfaIsi = sum(IsiStack)/length(IsiStack(:,1)); + cumCFAspont = sum(cumIsiStack)/length(cumIsiStack(:,1)); + end +end +figure('Color',[1,1,1], 'Name', 'Saline vs CFA Spontaneous Cumulative Fraction'); +% Only if the bin widths are constant!!! +plot(SalISIhist(1).Vals(1).bns{1}, cumSalspont); +hold on +plot(CfaISIhist(1).Vals(1).bns{1}, cumCFAspont); +ylabel('Cumulative Fraction'); +xlabel('ISI (msecs)'); +xlim([log(0.001), 4.5]); +ylim([0, 1]); +legend('Saline', 'CFA'); +title('Spontaneous Activity Cumulative Fractions'); +fig = gcf; +ax = gca; +ax.FontSize = 20; + +ax.XTickLabels = round(exp(-6:4)* 1e3); +%% Stats Test and p-Values on Figure +[txt, star] = findKSsignificance(sumSalIsi, sumCfaIsi); + +annotation(figure(gcf),'textbox',... + [0.21428125 0.438809261300992 0.0568125 0.029768467475193],'String',star,... + 'FontSize',20,... + 'FitBoxToText','off',... + 'EdgeColor','none'); +annotation(figure(gcf),'textbox',... + [0.673958333333333 0.112328008579419 0.203645833333333 0.232874455900804],... + 'String',{txt},... + 'FontSize',15,... + 'FitBoxToText','off',... + 'EdgeColor','none'); +%% Saline & CFA Spont vs Evoked (Mech Control) +for model = 1:2 + if model == 1 + Hist = SalISIhist; + else + Hist = CfaISIhist; + end + evInd =[]; + for e = 1:length(Hist) + if contains(Hist(e).name, 'Mech_Control', 'IgnoreCase', true) == true + evInd = [evInd; e]; + end + end + IsiR = length(Hist(evInd(1)).Vals(1).CumISI); + for a = 2:length(evInd) + IsiR = [IsiR, length(Hist(evInd(a)).Vals(2).CumISI)]; + end + r = sum(IsiR); + SpontIsiStack = zeros(r, length(Hist(evInd(1)).Vals(1).ISI{1})); + SpontcumIsiStack = zeros(r, length(Hist(evInd(1)).Vals(1).CumISI{1})); + EvokedIsiStack = zeros(r, length(Hist(evInd(1)).Vals(2).ISI{1})); + EvokedcumIsiStack = zeros(r, length(Hist(evInd(1)).Vals(2).CumISI{1})); + c = 1; + for a = 1: length(evInd) + for b = 1:length(Hist(evInd(a)).Vals(2).CumISI) + SpontcumIsiStack(c,:) = Hist(evInd(a)).Vals(1).CumISI{b}; + EvokedcumIsiStack(c,:) = Hist(evInd(a)).Vals(2).CumISI{b}; + SpontIsiStack(c,:) = Hist(evInd(a)).Vals(1).ISI{b}; + EvokedIsiStack(c,:) = Hist(evInd(a)).Vals(2).ISI{b}; + c = c + 1; + end + end + % Getting rid of NaNs + SpontcumIsiStack(length(SpontcumIsiStack(:,1)) + 1,:) = NaN; + SpontIsiStack(length(SpontIsiStack(:,1)) + 1,:) = NaN; + EvokedcumIsiStack(length(EvokedcumIsiStack(:,1)) + 1,:) = NaN; + EvokedIsiStack(length(EvokedIsiStack(:,1)) + 1,:) = NaN; + + SpontIndNaN = length(SpontIsiStack(:,1)); + EvokedIndNaN = length(EvokedIsiStack(:,1)); + + + for nInd = 1:length(SpontIsiStack(:,1))-1 + if isnan(SpontIsiStack(nInd,:)) == true + SpontIndNaN = [SpontIndNaN; nInd]; + end + end + + for nInd = 1:length(EvokedIsiStack(:,1))-1 + if isnan(EvokedIsiStack(nInd,:)) == true + EvokedIndNaN = [EvokedIndNaN; nInd]; + end + end + SpontIndNaN = sort(SpontIndNaN, 'descend'); + SpontIsiStack(SpontIndNaN,:) =[]; + SpontcumIsiStack(SpontIndNaN,:) = []; + EvokedIndNaN = sort(EvokedIndNaN, 'descend'); + EvokedIsiStack(EvokedIndNaN,:) =[]; + EvokedcumIsiStack(EvokedIndNaN,:) = []; + if model == 1 + cumSpontSalIsi = sum(SpontcumIsiStack)/length(SpontcumIsiStack(:,1)); + cumEvokedSalIsi = sum(EvokedcumIsiStack)/length(EvokedcumIsiStack(:,1)); + sumSpontSalISI = sum(SpontIsiStack)/length(SpontIsiStack(:,1)); + sumEvokedSalISI = sum(EvokedIsiStack)/length(EvokedIsiStack(:,1)); + else + cumSpontCfaIsi = sum(SpontcumIsiStack)/length(SpontcumIsiStack(:,1)); + cumEvokedCfaIsi = sum(EvokedcumIsiStack)/length(EvokedcumIsiStack(:,1)); + sumSpontCfaISI = sum(SpontIsiStack)/length(SpontIsiStack(:,1)); + sumEvokedCfaISI = sum(EvokedIsiStack)/length(EvokedIsiStack(:,1)); + end +end + +figure('Color',[1,1,1], 'Name', 'Saline & CFA Spontaneous vs Evoked Cumulative Fraction'); +subplot(2,1,1) +for model = 1:2 + subplot(2,1,model) + if model == 1 + Hist = SalISIhist; + spont = cumSpontSalIsi; + evoked = cumEvokedSalIsi; + SpontISI = sumSpontSalISI; + EvokedISI = sumEvokedSalISI; + else + Hist = CfaISIhist; + spont = cumSpontCfaIsi; + evoked = cumEvokedCfaIsi; + SpontISI = sumSpontCfaISI; + EvokedISI = sumEvokedCfaISI; + end + % Only if the bin widths are constant!!! + plot(Hist(1).Vals(1).bns{1}, spont); + hold on + plot(Hist(1).Vals(2).bns{1}, evoked); + ylabel('Cumulative Fraction'); + xlabel('ISI (msecs)'); + xlim([log(0.001), 4.5]); + ylim([0, 1]); + legend('Spontaneous', 'Evoked'); + fig = gcf; + ax = gca; + ax.FontSize = 20; + if model == 1 + title('Saline'); + else + title('CFA'); + end + ax.XTickLabels = round(exp(-6:4)* 1e3); + %% More Stats + [txt, star] = findKSsignificance(SpontISI, EvokedISI); + annotation(figure(gcf),'textbox',... + [0.21428125, 0.438809261300992*(1/model) 0.0568125 0.029768467475193],'String',star,... + 'FontSize',20,... + 'FitBoxToText','off',... + 'EdgeColor','none'); + annotation(figure(gcf),'textbox',... + [0.673958333333333, 0.112328008579419 *(1/model) 0.203645833333333 0.232874455900804],... + 'String',{txt},... + 'FontSize',15,... + 'FitBoxToText','off',... + 'EdgeColor','none'); +end + +%% CumISI Comparing Conditions +r = 1; +for model = 1:2 + if model == 1 + Histy = SalISIhist; + modName = 'Saline'; + else + Histy = CfaISIhist; + modName = 'CFA'; + end + for wIndex = 1:2 + if wIndex == 1 + wName = 'Spontaneous'; + else + wName = 'Evoked'; + end + + figure('Color',[1,1,1], 'Name', [modName, ' ', wName, ' Cumulative Fraction']); + + + for a = 1:3 + pwr = a*5; + if a == 1 + chCond = [7 8 9]; + elseif a == 2 + chCond = [1 2 3]; + elseif a == 3 + chCond = [4 5 6]; + end + subplot(3,1,a) + hold on + for chFig = chCond + IsiStack = zeros(length(Histy(chFig).Vals(wIndex).ISI), length(Histy(chFig).Vals(wIndex).ISI{1})); + cumIsiStack = zeros(length(Histy(chFig).Vals(wIndex).CumISI), length(Histy(chFig).Vals(wIndex).CumISI{1})); + for cInd = 1:length(Histy(chFig).Vals(wIndex).CumISI) + IsiStack(cInd,:) = Histy(chFig).Vals(wIndex).ISI{cInd}; + cumIsiStack(cInd,:) = Histy(chFig).Vals(wIndex).CumISI{cInd}; + end + % Getting rid of NaNs + cumIsiStack(length(Histy(chFig).Vals(wIndex).CumISI) + 1,:) = NaN; + IsiStack(length(Histy(chFig).Vals(wIndex).ISI) + 1,:) = NaN; + cumIndNaN = (length(Histy(chFig).Vals(wIndex).CumISI) + 1); + for nInd = 1:(length(Histy(chFig).Vals(wIndex).CumISI)) + if isnan(cumIsiStack(nInd,:)) == true + cumIndNaN = [cumIndNaN; nInd]; + end + end + cumIndNaN = sort(cumIndNaN, 'descend'); + cumIsiStack(cumIndNaN,:) =[]; + IsiStack(cumIndNaN,:) = []; + ISIcum = sum(cumIsiStack)/length(Histy(chFig).Vals(wIndex).CumISI); + % Only if the bin widths are constant!!! + plot(CfaISIhist(1).Vals(1).bns{1}, ISIcum) + if model == 1 + SalISIhist(chFig).Vals(wIndex).cumsum = ISIcum; + SalISIhist(chFig).Vals(wIndex).ISIsum = IsiStack/length(Histy(chFig).Vals(wIndex).ISI); + % SalISIhist(chFig).Vals(wIndex).sumISI = sum(Isi); + Histy = SalISIhist; + elseif model == 2 + CfaISIhist(chFig).Vals(wIndex).cumsum = ISIcum; + CfaISIhist(chFig).Vals(wIndex).ISIsum = IsiStack/length(Histy(chFig).Vals(wIndex).ISI); + % CfaISIhist(chFig).Vals(wIndex).sumISI = sum(Isi); + Histy = CfaISIhist; + end + end + % Results(c).name = kstest2(CumISI(chCond(1)).Condition(wIndex).Vals; + ylabel('Cumulative Fraction'); + xlabel('ISI (msecs)'); + xlim([log(0.001), 4.5]); + ylim([0, 1]); + legend(Histy(chCond(1)).name, Histy(chCond(2)).name, Histy(chCond(3)).name); + fig = gcf; + ax = gca; + ax.FontSize = 20; + ax.XTickLabels = round(exp(-6:4)* 1e3); + + end + c = 0; + for a = 1:3 + pwr = a*5; + if a == 1 + chCond = [7 8 9]; + elseif a == 2 + chCond = [1 2 3]; + elseif a == 3 + chCond = [4 5 6]; + end + for d = 1:length(chCond)-1 + for b = d+1: length(chCond) + ksResults(r).name = [modName, ' ', Histy(chCond(d) + c).name, ' vs ', Histy(chCond(b) + c).name, ' ', wName]; + ksResults(r).kstest2 = findKSsignificance(sum(Histy(chCond(d) + c).Vals(wIndex).ISIsum), sum(Histy(chCond(b) + c).Vals(wIndex).ISIsum)); + r = r + 1; + end + end + + end + end +end +%% +for a = 1:length(ksResults) + fprintf(1, [ksResults(a).name,' Kolgorov-Smirnov Test ', num2str(ksResults(a).kstest2), ' \n \n']) +end \ No newline at end of file diff --git a/Ross/DE_Jittering.m b/Ross/DE_Jittering.m new file mode 100644 index 0000000..681f256 --- /dev/null +++ b/Ross/DE_Jittering.m @@ -0,0 +1,577 @@ +% 30.08.19 Jittering analysis by using the Data Explorer. +clearvars +%% Load the data +% Choosing the working directory +dataDir = uigetdir('E:\Data\VPM\Jittering\Silicon Probes\',... + 'Choose a working directory'); +if dataDir == 0 + return +end +% Creating the figure directory +figureDir = fullfile(dataDir,'Figures\'); +if ~mkdir(figureDir) + fprintf(1,'There was an issue with the figure folder...\n'); +end +% Loading the necessary files +if ~loadTriggerData(dataDir) + fprintf(1,'Not possible to load all the necessary variables\n') + return +end + +%% Constructing the helper 'global' variables +% Number of total samples +Ns = min(structfun(@numel,Triggers)); +% Total duration of the recording +Nt = Ns/fs; +% Useless clusters (labeled as noise or they have very low firing rate) +badsIdx = cellfun(@(x) x==3,sortedData(:,3)); +bads = find(badsIdx); +totSpkCount = cellfun(@numel,sortedData(:,2)); +clusterSpikeRate = totSpkCount/Nt; +silentUnits = clusterSpikeRate < 0.1; +bads = union(bads,find(silentUnits)); +goods = setdiff(1:size(sortedData,1),bads); +badsIdx = badsIdx | silentUnits; +if ~any(ismember(clInfo.Properties.VariableNames,'ActiveUnit')) + clInfo = addvars(clInfo,~badsIdx,'After','id',... + 'NewVariableNames','ActiveUnit'); +end +gclID = sortedData(goods,1); +badsIdx = StepWaveform.subs2idx(bads,size(sortedData,1)); +% Logical spike trace for the first good cluster +spkLog = StepWaveform.subs2idx(round(sortedData{goods(1),2}*fs),Ns); +% Subscript column vectors for the rest good clusters +spkSubs = cellfun(@(x) round(x.*fs),sortedData(goods(2:end),2),... + 'UniformOutput',false); +% Number of good clusters +Ncl = numel(goods); +% Redefining the stimulus signals from the low amplitude to logical values +whStim = {'piezo','whisker','mech','audio'}; +cxStim = {'laser','light'}; +lfpRec = {'lfp','s1','cortex','s1lfp'}; +trigNames = fieldnames(Triggers); +numTrigNames = numel(trigNames); +ctn = 1; +continuousSignals = cell(numTrigNames,1); +continuousNameSub = zeros(size(trigNames)); +while ctn <= numTrigNames + if contains(trigNames{ctn},whStim,'IgnoreCase',true) + continuousSignals{ctn} = Triggers.(trigNames{ctn}); + continuousNameSub(ctn) = ctn; + end + if contains(trigNames{ctn},cxStim,'IgnoreCase',true) + continuousSignals{ctn} = Triggers.(trigNames{ctn}); + continuousNameSub(ctn) = ctn; + end + if contains(trigNames{ctn},lfpRec,'IgnoreCase',true) + continuousSignals{ctn} = Triggers.(trigNames{ctn}); + continuousNameSub(ctn) = ctn; + end + ctn = ctn + 1; +end +continuousSignals(continuousNameSub == 0) = []; +continuousNameSub(continuousNameSub == 0) = []; +trigNames = trigNames(continuousNameSub); +%% Inter-spike intervals +isiFile = fullfile(dataDir,[expName,'_ISIvars.mat']); +if ~exist(isiFile,'file') + spkSubs2 = cellfun(@(x) round(x.*fs), sortedData(goods,2),... + 'UniformOutput', false); + ISIVals = cellfun(@(x) [x(1)/fs; diff(x)/fs], spkSubs2,... + 'UniformOutput', 0); + NnzvPcl = cellfun(@numel,ISIVals); + Nnzv = sum(NnzvPcl); + rows = cell2mat(arrayfun(@(x,y) repmat(x,y,1), (1:Ncl)', NnzvPcl,... + 'UniformOutput', 0)); + cols = cell2mat(spkSubs2); + vals = cell2mat(ISIVals); + ISIspar = sparse(rows, cols, vals); +else + load(isiFile,'ISIspar') +end +% ISIsignal = zeros(Ncl,Ns,'single'); +% for ccl = 1:Ncl +% ISIsignal(ccl,spkSubs2{ccl}) = ISIVals{ccl}; +% end +%% User controlling variables +% Time lapse, bin size, and spontaneous and response windows +promptStrings = {'Viewing window (time lapse) [s]:','Response window [s]',... + 'Bin size [s]:'}; +defInputs = {'-0.1, 0.1', '0.002, 0.05', '0.001'}; +answ = inputdlg(promptStrings,'Inputs', [1, 30],defInputs); +if isempty(answ) + fprintf(1,'Cancelling...\n') + return +else + timeLapse = str2num(answ{1}); %#ok<*ST2NM> + if numel(timeLapse) ~= 2 + timeLapse = str2num(inputdlg('Please provide the time window [s]:',... + 'Time window',[1, 30], '-0.1, 0.1')); + if isnan(timeLapse) || isempty(timeLapse) + fprintf(1,'Cancelling...') + return + end + end + responseWindow = str2num(answ{2}); + binSz = str2double(answ(3)); +end +fprintf(1,'Time window: %.2f - %.2f ms\n',timeLapse(1)*1e3, timeLapse(2)*1e3) +fprintf(1,'Response window: %.2f - %.2f ms\n',responseWindow(1)*1e3, responseWindow(2)*1e3) +fprintf(1,'Bin size: %.3f ms\n', binSz*1e3) +sponAns = questdlg('Mirror the spontaneous window?','Spontaneous window',... + 'Yes','No','Yes'); +spontaneousWindow = -flip(responseWindow); +if strcmpi(sponAns,'No') + spontPrompt = "Time before the trigger in [s] (e.g. -0.8, -0.6 s)"; + sponDef = string(sprintf('%.3f, %.3f',spontaneousWindow(1),... + spontaneousWindow(2))); + sponStr = inputdlg(spontPrompt, 'Inputs',[1,30],sponDef); + if ~isempty(sponStr) + spontAux = str2num(sponStr{1}); + if length(spontAux) ~= 2 || spontAux(1) > spontAux(2) || ... + spontAux(1) < timeLapse(1) + fprintf(1, 'The given input was not valid.\n') + fprintf(1, 'Keeping the mirror version!\n') + else + spontaneousWindow = spontAux; + end + end +end +fprintf(1,'Spontaneous window: %.2f to %.2f ms before the trigger\n',... + spontaneousWindow(1)*1e3, spontaneousWindow(2)*1e3) +%% Condition triggered stacks +condNames = arrayfun(@(x) x.name,Conditions,'UniformOutput',false); +condGuess = contains(condNames, 'whiskerall', 'IgnoreCase', true); +% Choose the conditions to create the stack upon +[chCond, iOk] = listdlg('ListString',condNames,'SelectionMode','single',... + 'PromptString',... + 'Choose the condition which has all whisker triggers: (one condition)',... + 'InitialValue', find(condGuess), 'ListSize', [350, numel(condNames)*16]); +if ~iOk + fprintf(1,'Cancelling...\n') + return +end + +% Select the onset or the offset of a trigger +fprintf(1,'Condition ''%s''\n', Conditions(chCond).name) +onOffStr = questdlg('Trigger on the onset or on the offset?','Onset/Offset',... + 'on','off','Cancel','on'); +if strcmpi(onOffStr,'Cancel') + fprintf(1,'Cancelling...\n') + return +end + +%% Constructing the stack out of the user's choice +% discStack - dicrete stack has a logical nature +% cst - continuous stack has a numerical nature +% Both of these stacks have the same number of time samples and trigger +% points. They differ only in the number of considered events. +[discStack, cst] = getStacks(spkLog,Conditions(chCond).Triggers,onOffStr,... + timeLapse,fs,fs,spkSubs,continuousSignals); +% ISI stack +try + [~, isiStack] = getStacks(spkLog,Conditions(chCond).Triggers, onOffStr,... + timeLapse,fs,fs,[],ISIspar); +catch + fprintf(1, 'Perhaps there''s not enough memory to cope with this ISIs\n'); + % General ISI + +end +%[dst, cst] = getStacks(spkLog, allWhiskersPlusLaserControl,... +% 'on',timeLapse,fs,fs,[spkSubs;{Conditions(allLaserStimulus).Triggers}],... +% continuousSignals); +if ~exist(isiFile,'file') + fprintf(1,'Saving the inter-spike intervals for each cluster... '); + save(isiFile,'ISIspar','isiStack','-v7.3') + fprintf(1,'Done!\n') +end +% Number of clusters + the piezo as the first event + the laser as the last +% event, number of time samples in between the time window, and number of +% total triggers. +[Ne, Nt, NTa] = size(discStack); +% Computing the time axis for the stack +tx = (0:Nt - 1)/fs + timeLapse(1); +%% Considered conditions selection +% Choose the conditions to look at +auxSubs = setdiff(1:numel(condNames), chCond); +ccondNames = condNames(auxSubs); +[cchCond, iOk] = listdlg('ListString',ccondNames,'SelectionMode','multiple',... + 'PromptString',... + 'Choose the condition(s) to look at (including whiskers):',... + 'ListSize', [350, numel(condNames)*16]); +if ~iOk + fprintf(1,'Cancelling...\n') + return +end + +% Select the onset or the offset of a trigger +fprintf(1,'Condition(s):\n') +fprintf('- ''%s''\n', Conditions(auxSubs(cchCond)).name) + + +% Subscript to indicate the conditions with all whisker stimulations, +% whisker control, laser control, and the combination whisker and laser. +allWhiskerStimulus = chCond; +% allLaserStimulus = 2; +% whiskerControl = 9; +% laserControl = 8; +consideredConditions = auxSubs(cchCond); + +Nccond = length(consideredConditions); + +% Adding all the triggers from the piezo and the laser in one array +% allWhiskersPlusLaserControl = ... +% union(Conditions(allWhiskerStimulus).Triggers,... +% Conditions(laserControl).Triggers,'rows'); +%% Boolean flags +delayFlags = false(NTa,Nccond); +counter2 = 1; +for ccond = consideredConditions + delayFlags(:,counter2) = ismember(Conditions(chCond).Triggers(:,1),... + Conditions(ccond).Triggers(:,1)); + counter2 = counter2 + 1; +end +Na = sum(delayFlags,1); +%% Computing which units/clusters/putative neurons respond to the stimulus +% Logical indices for fetching the stack values +sponActStackIdx = tx >= spontaneousWindow(1) & tx <= spontaneousWindow(2); +respActStackIdx = tx >= responseWindow(1) & tx <= responseWindow(2); +% The spontaneous activity of all the clusters, which are allocated from +% the second until one before the last row, during the defined spontaneous +% time window, and the whisker control condition. + +timeFlags = [sponActStackIdx;respActStackIdx]; +% Time window +delta_t = diff(responseWindow); +% Statistical tests +[Results, Counts] = statTests(discStack, delayFlags, timeFlags); + +indCondSubs = cumsum(Nccond:-1:1); +consCondNames = condNames(consideredConditions); +% Plotting statistical tests +[Figs, Results] = scatterSignificance(Results, Counts,... + consCondNames, delta_t, sortedData(goods,1)); +configureFigureToPDF(Figs); +stFigBasename = fullfile(figureDir,[expName,' ']); +stFigSubfix = sprintf(' Stat RW%.1f-%.1fms SW%.1f-%.1fms',... + responseWindow(1)*1e3, responseWindow(2)*1e3, spontaneousWindow(1)*1e3,... + spontaneousWindow(2)*1e3); +ccn = 1; +%for cc = indCondSubs +for cc = 1:numel(Figs) + if ~ismember(cc, indCondSubs) + altCondNames = strsplit(Figs(cc).Children(2).Title.String,': '); + altCondNames = altCondNames{2}; + else + altCondNames = consCondNames{ccn}; + ccn = ccn + 1; + end + stFigName = [stFigBasename, altCondNames, stFigSubfix]; + % if ~exist([stFigName,'.pdf'],'file') || ~exist([stFigName,'.emf'],'file') + % print(Figs(cc),[stFigName,'.pdf'],'-dpdf','-fillpage') + % print(Figs(cc),[stFigName,'.emf'],'-dmeta') + % end + savefig(Figs(cc),fullfile(figureDir, [altCondNames, '.fig'])); +end +H = cell2mat(cellfun(@(x) x.Pvalues,... + arrayfun(@(x) x.Activity, Results(indCondSubs), 'UniformOutput', 0),... + 'UniformOutput', 0)) < 0.05; + +Htc = sum(H,2); +CtrlCond = contains(consCondNames,'control','IgnoreCase',true); +if ~nnz(CtrlCond) + CtrlCond = true(size(H,2),1); +end +wruIdx = any(H(:,CtrlCond),2); +Nwru = nnz(wruIdx); + +fprintf('%d whisker responding clusters:\n', Nwru); +fprintf('- %s\n',gclID{wruIdx}) +%% Get significantly different clusters +gcans = questdlg(['Do you want to get the waveforms from the',... + ' ''responding'' clusters?'], 'Waveforms', 'Yes', 'No', 'No'); +if strcmp(gcans, 'Yes') + clWaveforms = getClusterWaveform(gclID(wruIdx), dataDir); +end + +%% Addition mean signals to the Conditions variable +if ~isfield(Conditions,'Stimulus') ||... + any(arrayfun(@(x) isempty(x.Stimulus), Conditions(consideredConditions))) + fprintf(1,'Writting the stimulus raw signal into Conditions variable:\n') + whFlag = contains(trigNames, whStim, 'IgnoreCase', 1); + lrFlag = contains(trigNames, cxStim, 'IgnoreCase', 1); + cdel = 1; + for cc = consideredConditions + fprintf(1,'- %s\n', Conditions(cc).name) + Conditions(cc).Stimulus = struct(... + 'Mechanical',reshape(mean(cst(whFlag,:,delayFlags(:,cdel)),3),... + 1,Nt),'Laser',reshape(mean(cst(lrFlag,:,delayFlags(:,cdel)),3),... + 1,Nt),'TimeAxis',(0:Nt-1)/fs + timeLapse(1)); + cdel = cdel + 1; + end + save(fullfile(dataDir,[expName,'analysis.mat']),'Conditions','-append') +end + + +%% Configuration structure +configStructure = struct('Experiment', fullfile(dataDir,expName),... + 'Viewing_window_s', timeLapse, 'Response_window_s', responseWindow,... + 'BinSize_s', binSz, 'Trigger', struct('Name', condNames{chCond},... + 'Edge',onOffStr), 'ConsideredConditions',{consCondNames}); + +%% Filter question +filterIdx = true(Ne,1); +ansFilt = questdlg('Would you like to filter for significance?','Filter',... + 'Yes','No','Yes'); +filtStr = 'unfiltered'; +if strcmp(ansFilt,'Yes') + filterIdx = [true; wruIdx]; + filtStr = 'filtered'; +end + +%% Getting the relative spike times for the whisker responsive units (wru) +% For each condition, the first spike of each wru will be used to compute +% the standard deviation of it. +cellLogicalIndexing = @(x,idx) x(idx); +isWithinResponsiveWindow =... + @(x) x > responseWindow(1) & x < responseWindow(2); + +firstSpike = zeros(Nwru,Nccond); +M = 16; +binAx = responseWindow(1):binSz:responseWindow(2); +condHist = zeros(size(binAx,2)-1, Nccond); +firstOrdStats = zeros(2,Nccond); +condParams = zeros(M,3,Nccond); +txpdf = responseWindow(1):1/fs:responseWindow(2); +condPDF = zeros(numel(txpdf),Nccond); +csvBase = fullfile(dataDir, expName); +csvSubfx = sprintf(' VW%.1f-%.1f ms.csv', timeLapse(1)*1e3, timeLapse(2)*1e3); +existFlag = false; +condRelativeSpkTms = cell(Nccond,1); +relativeSpkTmsStruct = struct('name',{},'SpikeTimes',{}); +spkDir = fullfile(dataDir, 'SpikeTimes'); +for ccond = 1:size(delayFlags,2) + csvFileName = [csvBase,' ',consCondNames{ccond}, csvSubfx]; + relativeSpikeTimes = getRasterFromStack(discStack,~delayFlags(:,ccond),... + filterIdx(3:end), timeLapse, fs, true, false); + relativeSpikeTimes(:,~delayFlags(:,ccond)) = []; + relativeSpikeTimes(~filterIdx(2),:) = []; + condRelativeSpkTms{ccond} = relativeSpikeTimes; +% respIdx = cellfun(isWithinResponsiveWindow, relativeSpikeTimes,... +% 'UniformOutput',false); + clSpkTms = cell(size(relativeSpikeTimes,1),1); + if exist(csvFileName, 'file') && ccond == 1 + existFlag = true; + ansOW = questdlg(['The exported .csv files exist! ',... + 'Would you like to overwrite them?'],'Overwrite?','Yes','No','No'); + if strcmp(ansOW,'Yes') + existFlag = false; + fprintf(1,'Overwriting... '); + end + end + fID = 1; + if ~existFlag + fID = fopen(csvFileName,'w'); + fprintf(fID,'%s, %s\n','Cluster ID','Relative spike times [ms]'); + end + for cr = 1:size(relativeSpikeTimes, 1) + clSpkTms(cr) = {sort(cell2mat(relativeSpikeTimes(cr,:)))}; + if fID > 2 + fprintf(fID,'%s,',gclID{cr}); + fprintf(fID,'%f,',clSpkTms{cr});fprintf(fID,'\n'); + end + end + if fID > 2 + fclose(fID); + end + relativeSpkTmsStruct(ccond).name = consCondNames{ccond}; + relativeSpkTmsStruct(ccond).SpikeTimes = condRelativeSpkTms{ccond}; + %{ + spikeTimesINRespWin = cellfun(cellLogicalIndexing,... + relativeSpikeTimes, respIdx, 'UniformOutput',false); + allSpikeTimes = cell2mat(spikeTimesINRespWin(:)'); + condParams(:,:,ccond) = emforgmm(allSpikeTimes, M, 1e-6, 0); + condPDF(:,ccond) = genP_x(condParams(:,:,ccond), txpdf); + firstOrdStats(:,ccond) = [mean(allSpikeTimes), std(allSpikeTimes)]; + hfig = figure('Visible', 'off'); h = histogram(allSpikeTimes, binAx,... + 'Normalization', 'probability'); + condHist(:,ccond) = h.Values; + close(hfig) + for ccl = 1:Nwru + frstSpikeFlag = ~cellfun(@isempty,spikeTimesINRespWin(ccl,:)); + firstSpike(ccl,ccond) = std(... + cell2mat(spikeTimesINRespWin(ccl,frstSpikeFlag))); + end + %} +end +save(fullfile(dataDir,[expName,'_exportSpkTms.mat']),... + 'relativeSpkTmsStruct','configStructure') +%% Ordering PSTH + +orderedStr = 'ID ordered'; +dans = questdlg('Do you want to order the PSTH other than by IDs?',... + 'Order', 'Yes', 'No', 'No'); +ordSubs = 1:nnz(filterIdx(2:Ncl+1)); +pclID = gclID(filterIdx(2:Ncl+1)); +if strcmp(dans, 'Yes') + if ~exist('clInfo','var') + clInfo = getClusterInfo(fullfile(dataDir,'cluster_info.tsv')); + end + % varClass = varfun(@class,clInfo,'OutputFormat','cell'); + [ordSel, iOk] = listdlg('ListString', clInfo.Properties.VariableNames,... + 'SelectionMode', 'multiple'); + orderedStr = []; + ordVar = clInfo.Properties.VariableNames(ordSel); + for cvar = 1:numel(ordVar) + orderedStr = [orderedStr, sprintf('%s ',ordVar{cvar})]; %#ok + end + orderedStr = [orderedStr, 'ordered']; + + if ~strcmp(ordVar,'id') + [~,ordSubs] = sortrows(clInfo(pclID,:),ordVar); + end +end + +%% Plot PSTH +goodsIdx = logical(clInfo.ActiveUnit); +csNames = fieldnames(Triggers); +Nbn = diff(timeLapse)/binSz; +if (Nbn - round(Nbn)) ~= 0 + Nbn = ceil(Nbn); +end +PSTH = zeros(nnz(filterIdx) - 1, Nbn, Nccond); +psthFigs = gobjects(Nccond,1); +for ccond = 1:Nccond + figFileName = sprintf('%s %s VW%.1f-%.1f ms B%.1f ms RW%.1f-%.1f ms SW%.1f-%.1f ms %sset %s (%s)',... + expName, Conditions(consideredConditions(ccond)).name, timeLapse*1e3,... + binSz*1e3, responseWindow*1e3, spontaneousWindow*1e3, onOffStr,... + orderedStr, filtStr); + [PSTH(:,:,ccond), trig, sweeps] = getPSTH(discStack(filterIdx,:,:),timeLapse,... + ~delayFlags(:,ccond),binSz,fs); + stims = mean(cst(:,:,delayFlags(:,ccond)),3); + stims = stims - median(stims,2); + for cs = 1:size(stims,1) + if abs(log10(var(stims(cs,:),[],2))) < 13 + [m,b] = lineariz(stims(cs,:),1,0); + stims(cs,:) = m*stims(cs,:) + b; + else + stims(cs,:) = zeros(1,Nt); + end + end + psthFigs(ccond) = plotClusterReactivity(PSTH(ordSubs,:,ccond),trig,sweeps,timeLapse,binSz,... + [{Conditions(consideredConditions(ccond)).name};... + pclID(ordSubs)],... + strrep(expName,'_','\_'),... + stims, csNames); + configureFigureToPDF(psthFigs(ccond)); + psthFigs(ccond).Children(end).YLabel.String =... + [psthFigs(ccond).Children(end).YLabel.String,... + sprintf('^{%s}',orderedStr)]; + if ~exist([figFileName,'.pdf'], 'file') + print(psthFigs(ccond), fullfile(figureDir,[figFileName, '.pdf']),... + '-dpdf','-fillpage') + end + if ~exist([figFileName,'.emf'], 'file') + print(psthFigs(ccond), fullfile(figureDir,[figFileName, '.emf']),... + '-dmeta') + end + +end +for a = 1:length(consideredConditions) + savefig(figure(a), fullfile(figureDir, [consCondNames{a}, '_filtered_PSTH.fig'])); +end +%% Rasters from interesting clusters +rasAns = questdlg('Plot rasters?','Raster plot','Yes','No','Yes'); +if strcmpi(rasAns,'Yes') + [clSel, iOk] = listdlg('ListString',pclID,... + 'Name', 'Selection of clusters',... + 'CancelString', 'None',... + 'PromptString', 'Select clusters',... + 'SelectionMode', 'multiple'); + if ~iOk + return + end + % Color of the rectangle + cmap = [{[0.6, 0.6, 0.6]};... gray + {[1, 0.6, 0]};... orange + {[0.5, 0.6, 0.5]};... greenish gray (poo) + {[0, 0.6, 1]};... baby blue + {[0.6, 0.6, 1]};... lila + {[1, 0.6, 1]}]; % pink + clrNames = {'Gray','Orange','Poo','Baby Blue','Lila','Pink'}'; + clrmap = containers.Map(clrNames,cmap); + if contains(Conditions(chCond).name, whStim,'IgnoreCase', 1) + rectColor = clrmap('Orange'); + elseif contains(Conditions(chCond).name, cxStim, 'IgnoreCase', 1) + rectColor = clrmap('Baby Blue'); + else + rectColor = clrmap('Gray'); + end + % Choose the conditions to be plotted + resCondNames = arrayfun(@(x) x.name, Conditions(consideredConditions),... + 'UniformOutput', 0); + [rasCondSel, iOk] = listdlg('ListString', resCondNames,... + 'PromptString', 'Which conditions to plot?',... + 'InitialValue', 1:length(consideredConditions),... + 'CancelString', 'None',... + 'Name', 'Conditions for raster',... + 'SelectionMode', 'multiple'); + if ~iOk + return + end + rasCond = consideredConditions(rasCondSel); + rasCondNames = consCondNames(rasCondSel); + Nrcl = numel(clSel); + % Reorganize the rasters in the required order. + clSub = find(ismember(gclID, pclID(clSel)))+1; + [rasIdx, rasOrd] = ismember(pclID(ordSubs), pclID(clSel)); + clSub = clSub(rasOrd(rasIdx)); + clSel = clSel(rasOrd(rasOrd ~= 0)); + Nma = min(Na(rasCondSel)); + rasFig = figure; + Nrcond = length(rasCond); + ax = gobjects(Nrcond*Nrcl,1); + for cc = 1:length(rasCond) + % Equalize trial number + trigSubset = sort(randsample(Na(rasCondSel(cc)),Nma)); + tLoc = find(delayFlags(:,rasCondSel(cc))); + tSubs = tLoc(trigSubset); + % Trigger subset for stimulation shading + trigAlSubs = Conditions(rasCond(cc)).Triggers(trigSubset,:); + timeDur = round(diff(trigAlSubs, 1, 2)/fs, 3); + trigChange = find(diff(timeDur) ~= 0); + for ccl = 1:Nrcl + lidx = ccl + (cc - 1) * Nrcl; + ax(lidx) = subplot(Nrcond, Nrcl, lidx); + title(ax(lidx),sprintf('%s cl:%s',rasCondNames{cc},pclID{clSel(ccl)})) + plotRasterFromStack(discStack([1,clSub(ccl)],:,tSubs),... + timeLapse, fs,'',ax(lidx)); + ax(lidx).YAxisLocation = 'origin';ax(lidx).YAxis.TickValues = Nma; + ax(lidx).YAxis.Label.String = Nma; + ax(lidx).YAxis.Label.Position =... + [timeLapse(1)-timeLapse(1)*0.65, Nma,0]; + ax(lidx).XAxis.TickLabels =... + cellfun(@(x) str2num(x)*1e3, ax(lidx).XAxis.TickLabels,... + 'UniformOutput', 0); + xlabel(ax(lidx), 'Time [ms]') + initSub = 0; + optsRect = {'EdgeColor',rectColor,'FaceColor','none'}; + for ctr = 1:numel(trigChange) + rectangle('Position',[0, initSub,... + timeDur(trigChange(ctr)), trigChange(ctr)],optsRect{:}) + initSub = trigChange(ctr); + end + rectangle('Position', [0, initSub, timeDur(Nma),... + Nma - initSub],optsRect{:}) + end + end + linkaxes(ax,'x') + rasFigName = sprintf('%s R-%scl_%sVW%.1f-%.1f ms', expName,... + sprintf('%s ', rasCondNames{:}), sprintf('%s ', pclID{clSel}),... + timeLapse*1e3); + configureFigureToPDF (rasFig); + if ~exist([rasFigName,'.pdf'], 'file') || ~exist([rasFigName,'.emf'], 'file') + print(rasFig,fullfile(figureDir,[rasFigName, '.pdf']),'-dpdf','-fillpage') + print(rasFig,fullfile(figureDir,[rasFigName, '.emf']),'-dmeta') + end +end \ No newline at end of file diff --git a/Ross/DepthFrModulation.m b/Ross/DepthFrModulation.m new file mode 100644 index 0000000..f37fb36 --- /dev/null +++ b/Ross/DepthFrModulation.m @@ -0,0 +1,56 @@ +%function [increased, decreased, fig] = DepthFrModulation(clInfo, consideredConditions, consCondNames, Counts, IDs, gclID) +clInd = ismember(clInfo.id, nonTagged); +depths = table(clInfo.id(clInd), clInfo.abs_depth(clInd)); +depths = sortrows(depths,'Var2','ascend'); +ID = depths{:,1}; +depth = depths.Var2; +jitter = randi(20,size(depth)); +depth = depth + jitter; % adding small jitter for visualisation +depth = -1*depth; +for chc = 15 + spontCounts = Counts{chc,1}; + evCounts = Counts{chc,2}; + c = size(spontCounts); + c = c(2); + ordSpontCounts = zeros(length(ID), c); + ordEvCounts = zeros(length(ID), c); + for cl = 1:length(ID) + ind = find(ismember(gclID, ID(cl))); + ordSpontCounts(cl,:) = spontCounts(ind,:); + ordEvCounts(cl,:) = evCounts(ind,:); + end + spWindow = spontaneousWindow(2)-spontaneousWindow(1); + evWindow = responseWindow(2)-responseWindow(1); + medSpontRate = median(ordSpontCounts,2)/spWindow; + medEvokedRate = median(ordEvCounts,2)/evWindow; + deltaRate = zeros(length(depth), 2); + deltaRate(:,2) = medEvokedRate - medSpontRate; + increased{chc} = ID(deltaRate(:,2)>0); + decreased{chc} = ID(deltaRate(:,2)<0); + fig = figure('Name', 'Depth vs Modulation', 'Color', 'White'); + ax = gca; + hold on + for cl = 1:length(ID) + dr = deltaRate(cl,:); + dpth = [depth(cl), depth(cl)]; + plot(dr, dpth, 'LineStyle', '-', 'Marker', 'none', 'Color', [0, 0.5, 1], 'MarkerSize', 2.5, 'LineWidth', 0.01, 'MarkerFaceColor',[0.5,0.5,0.5]); + end + + + + %plot(deltaRate(:,2), depth, 'LineStyle', '-', 'Marker', 'none', 'Color', [0.5, 1, 1], 'MarkerSize', 2.5, 'LineWidth', 0.01, 'MarkerFaceColor',[0.5,0.5,0.5]) + title(['Depth vs Change in Firing Rate: ', consCondNames{chc}], 'Interpreter', 'none') + ylabel( 'Depth_{(\mum)}', 'Interpreter', 'tex'); + xlabel('\Delta Firing Rate_{ Hz}', 'Interpreter', 'tex'); + ax.XLim = [-1.1*max(deltaRate(:,2)), 1.1*max(deltaRate(:,2))]; + % ax.YLim = [ax.YLim(1), 0]; + + hold on + plot(deltaRate(:,1), linspace(ax.YLim(1),ax.YLim(2), length(deltaRate)), 'LineStyle', '-', 'Color', 'k'); + ax.FontSize = 20; +% end + + + + +end diff --git a/Ross/DepthMod.m b/Ross/DepthMod.m new file mode 100644 index 0000000..5c79044 --- /dev/null +++ b/Ross/DepthMod.m @@ -0,0 +1,53 @@ +%DepthModIndex + +%% Depth vs Modulation Plots +clInd = find(clInfo.Mech_Control_R); +id_depth_mod = table(clInfo.id(clInd), clInfo.abs_depth(clInd), clInfo.modIndex(clInd)); +id_depth_mod = sortrows(id_depth_mod,'Var2','ascend'); +ID = id_depth_mod{:,1}; +depth = id_depth_mod.Var2; +jitter = randi(20,size(depth)); +depth = depth + jitter; % adding small jitter for visualisation +depth = -1*depth; +mod = id_depth_mod.Var3; +modinc = zeros(length(mod),1); +inc = mod>0; +modinc(inc) = mod(inc); + +moddec = zeros(length(mod),1); +dec = mod<0; +moddec(dec) = mod(dec); +for chc = 1 + + fig = figure('Name', 'Depth vs Modulation', 'Color', 'White'); + ax = gca; + hold on + for cl = 1:length(ID) + clMod = mod(cl); + dpth = depth(cl); + plot([0, clMod], [dpth, dpth], 'LineStyle', '-', 'Marker', 'none', 'Color', [0, 0, 1], 'MarkerSize', 2.5, 'LineWidth', 0.01, 'MarkerFaceColor',[0.5,0.5,0.5]); + + end + +% f = fit(depth, modinc, 'smoothingspline'); +% plot(f,depth, modinc) + + + + % legend on + %plot(deltaRate(:,2), depth, 'LineStyle', '-', 'Marker', 'none', 'Color', [0.5, 1, 1], 'MarkerSize', 2.5, 'LineWidth', 0.01, 'MarkerFaceColor',[0.5,0.5,0.5]) + title('Depth vs Modulation of Mechanical Responses', 'Interpreter', 'none') + ylabel( 'Depth [\mum]', 'Interpreter', 'tex'); + xlabel('Modulation Index', 'Interpreter', 'tex'); + %ax.XLim = [-1.1*max(deltaRate(:,2)), 1.1*max(deltaRate(:,2))]; + ax.XLim = [-1, 1]; + + hold on + plot(zeros(length(mod)), linspace(ax.YLim(1),ax.YLim(2), length(mod)), 'LineStyle', '-', 'Color', 'k'); + ax.FontSize = 25; + ax.FontName = 'Arial'; + % ax.Legend.String = {'Late Responders'}; + % savefig(fig, fullfile('Z:\Ross\Experiments\smrxFiles\16.12.20\12.6.21\Figures\', [consCondNames{chc}, '_LateResponders_Depth_vs_Modulation.fig'])); +end + + \ No newline at end of file diff --git a/Ross/DepthRate.m b/Ross/DepthRate.m new file mode 100644 index 0000000..8bdac79 --- /dev/null +++ b/Ross/DepthRate.m @@ -0,0 +1,88 @@ +%% Prep Variables +mrControl = clInfo.Mech_Control_4mW_Rate_Evoked-clInfo.Mech_Control_4mW_Rate_Spont; +mrLaser = clInfo.Mech_Laser_5sec_4mW_Rate_Evoked-clInfo.Mech_Laser_5sec_4mW_Rate_Spont; +data = table(clInfo.id, clInfo.abs_depth, mrControl, mrLaser); +mrInd = ismember(data.Var1, clInfo.id(clInfo.Mech_Control_4mW_R==true)); +data = data(find(mrInd),:); +data = sortrows(data,'Var2','ascend'); +ID = data.Var1; +depths = data.Var2; +c = data.Var3; +l = data.Var4; +jitter = randi(20,size(depths)); +depths = -1*(depths + jitter); + +plottedData = [{'Mech'}, {[zeros(length(c),1), c]};... + {'Mech + L6'}, {[zeros(length(l),1), l]};... + {'L6 Modulation of Mechanical Responses'}, {[zeros(length(l),1), l-c]}]; + + +%% Plotting + +red = [0.75, 0, 0]; +green = [0, 0.75, 0]; +blue = [0.25, 0.5, 1]; + +figure('Color', 'White'); +firstLater = find(ismember(ID,Later), 1, 'first'); +firstLatest = find(ismember(ID,Latest), 1, 'first'); +firstL6 = find(ismember(ID,L6), 1, 'first'); +for fg = 1:3 + subplot(2,2,fg); + if fg == 3 + hold on + subplot(2,2,3:4) + end + hold on + + % Plotting the first of each group for the legend + dr = plottedData{fg,2}(firstLater,:); + dpth = [depths(firstLater), depths(firstLater)]; + plot(dr, dpth, 'LineStyle', '-', 'Color', [red, 0.5], 'LineWidth', 10); + + dr = plottedData{fg,2}(firstLatest,:); + dpth = [depths(firstLatest), depths(firstLatest)]; + plot(dr, dpth, 'LineStyle', '-', 'Color', [green, 0.5], 'LineWidth', 10); + + dr = plottedData{fg,2}(firstL6,:); + dpth = [depths(firstL6), depths(firstL6)]; + plot(dr, dpth, 'LineStyle', '-', 'Color', [blue, 0.5], 'LineWidth', 10); + if fg == 3 + leg = legend; + leg.String = [{'Group 1'}, {'Group 2'}, {'L6'}]; + end + + + + + + + for unit = 1:length(ID) + dr = plottedData{fg,2}(unit,:); + dpth = [depths(unit), depths(unit)]; + + if ismember(ID{unit}, Later) & unit ~= firstLater + plot(dr, dpth, 'LineStyle', '-', 'Color', [red, 0.5], 'LineWidth', 10); + elseif ismember(ID{unit}, Latest) & unit ~= firstLatest + plot(dr, dpth, 'LineStyle', '-', 'Color',[green, 0.5], 'LineWidth', 10); + elseif ismember(ID{unit}, L6) & unit ~= firstL6 + plot(dr, dpth, 'LineStyle', '-', 'Color', [blue 0.5], 'LineWidth', 10); + end + end + ax = gca; + ax.Title.String = plottedData{fg,1}; + ax.YLabel.String = 'Depth [\mum]'; + ax.XLabel.String = '\DeltaRate [Hz]'; + ax.FontName = 'Arial'; + ax.FontSize = 10; + ax.YLim = [-1600, 0]; + % ax.XLim = [-50, 50]; + % ax.XTick = [-50:10:50]; + plot(zeros(length(ID)), linspace(ax.YLim(1),ax.YLim(2), length(ID)), 'LineStyle', '-', 'Color', 'k'); + if fg == 3 + leg.String(4:end) = []; + leg.String(4:end) = []; + leg.Box = 'off'; + legend('Location', 'southeastoutside'); + end +end \ No newline at end of file diff --git a/Ross/DepthReorder.m b/Ross/DepthReorder.m new file mode 100644 index 0000000..f784331 --- /dev/null +++ b/Ross/DepthReorder.m @@ -0,0 +1,9 @@ +% Unit Depth Re-ordering besed on corrected channel maps. +load('Z:\Emilio\Cambridge_NeuroTech_H3.mat') +load('Z:\Ross\ProbeFiles\Adaptor-Amplifier_Mapping.mat') +depths = [0:20:1275]'; +for ch = 1:length(chanMap0ind) + chNo = chanMap0ind(ch); + ind = find(rhdInput == chNo); + clInfo.depth(clInfo.ch == chNo) = depths(ind); +end \ No newline at end of file diff --git a/Ross/DepthvsRate.m b/Ross/DepthvsRate.m new file mode 100644 index 0000000..f6748f4 --- /dev/null +++ b/Ross/DepthvsRate.m @@ -0,0 +1,122 @@ +%% Prep Variables + +mrControl = clInfo.Mech_Control_4mW_Mech_Rate_Evoked-clInfo.Mech_Control_4mW_preMech_Rate_Evoked; +mrLaser = clInfo.Mech_Laser_5sec_4mW_Rate_Evoked-clInfo.Mech_Laser_5sec_4mW_preMech_Rate_Evoked; +data = table(clInfo.id, clInfo.abs_depth, mrControl, mrLaser); +mrInd = ismember(data.Var1, clInfo.id(clInfo.Mech_Control_4mW_R==true)); +data = data(find(mrInd),:); +data = sortrows(data,'Var2','ascend'); +ID = data.Var1; +depths = data.Var2; +c = data.Var3; +l = data.Var4; +rng('default'); +jitter = randi(20,size(depths)); +depths = -1*(depths + jitter); + + +%% Depth vs Evoked Rate (Control) + + +deltaRate = zeros(length(depths), 2); +deltaRate(:,2) = c; + +figure('Color', 'White', 'Name', 'Changes in FR with Mechanical Stimulation'); +hold on +for unit = 1:length(ID) +dr = deltaRate(unit,:); +dpth = [depths(unit), depths(unit)]; +if ismember(ID{unit},L6) +plot(dr, dpth, 'LineStyle', '-', 'Color', [0, 0.5, 1, 0.5], 'LineWidth', 10); +elseif ismember(ID{unit}, Later) +plot(dr, dpth, 'LineStyle', '-', 'Color', [1, 0, 0, 0.5], 'LineWidth', 10); +elseif ismember(ID{unit}, Latest) +plot(dr, dpth, 'LineStyle', '-', 'Color', [0, 1, 0, 0.5], 'LineWidth', 10); +end +end +ax = gca; +ax.Title.String = 'Changes in FR with Mechanical Stimulation'; +ax.YLabel.String = 'Depth [\mum]'; +ax.XLabel.String = '\DeltaRate [Hz]'; +ax.FontName = 'Arial'; +ax.FontSize = 30; +ax.YLim = [-1600, 0]; +% ax.XLim = [-50, 50]; +% ax.XTick = [-50:10:50]; +plot(zeros(length(ID)), linspace(ax.YLim(1),ax.YLim(2), length(ID)), 'LineStyle', '-', 'Color', 'k'); + + + + + +%% Depth vs Evoked Rate (Laser) + + +deltaRate = zeros(length(depths), 2); +deltaRate(:,2) = l; + +figure('Color', 'White', 'Name', 'Changes in FR with Mechanical + L6 Stimulation'); +hold on +for unit = 1:length(ID) +dr = deltaRate(unit,:); +dpth = [depths(unit), depths(unit)]; +if ismember(ID{unit},L6) +plot(dr, dpth, 'LineStyle', '-', 'Color', [0, 0.5, 1, 0.5], 'LineWidth', 10); +elseif ismember(ID{unit}, Later) +plot(dr, dpth, 'LineStyle', '-', 'Color', [1, 0, 0, 0.5], 'LineWidth', 10); +elseif ismember(ID{unit}, Latest) +plot(dr, dpth, 'LineStyle', '-', 'Color', [0, 1, 0, 0.5], 'LineWidth', 10); +end +end +ax = gca; +ax.Title.String = 'Changes in FR with Mechanical + L6 Stimulation'; +ax.YLabel.String = 'Depth [\mum]'; +ax.XLabel.String = '\DeltaRate [Hz]'; +ax.FontName = 'Arial'; +ax.FontSize = 30; +ax.YLim = [-1600, 0]; +% ax.XLim = [-50, 50]; +% ax.XTick = [-50:10:50]; +plot(zeros(length(ID)), linspace(ax.YLim(1),ax.YLim(2), length(ID)), 'LineStyle', '-', 'Color', 'k'); + + + + + + + + +%% +% Depth vs Delta Rate 8.10.21 + +deltaRate = zeros(length(depths), 2); +deltaRate(:,2) = l - c; + + + + +figure('Color', 'White', 'Name', 'Laser Modulation of Mechanical Responses'); + +hold on +for unit = 1:length(ID) +dr = deltaRate(unit,:); +dpth = [depths(unit), depths(unit)]; +if ismember(ID{unit},L6) +plot(dr, dpth, 'LineStyle', '-', 'Color', [0, 0.5, 1, 0.5], 'LineWidth', 10); +elseif ismember(ID{unit}, Later) +plot(dr, dpth, 'LineStyle', '-', 'Color', [1, 0, 0, 0.5], 'LineWidth', 10); +elseif ismember(ID{unit}, Latest) +plot(dr, dpth, 'LineStyle', '-', 'Color', [0, 1, 0, 0.5], 'LineWidth', 10); +end +end +ax = gca; +ax.Title.String = 'Laser Modulation of Mechanical Responses'; +ax.YLabel.String = 'Depth [\mum]'; +ax.XLabel.String = '\DeltaRate [Hz]'; +ax.FontName = 'Arial'; +ax.FontSize = 30; +ax.YLim = [-1600, 0]; +% ax.XLim = [-50, 50]; +% ax.XTick = [-50:10:50]; +plot(zeros(length(ID)), linspace(ax.YLim(1),ax.YLim(2), length(ID)), 'LineStyle', '-', 'Color', 'k'); + \ No newline at end of file diff --git a/Ross/DifMechRasters.m b/Ross/DifMechRasters.m new file mode 100644 index 0000000..ff5b729 --- /dev/null +++ b/Ross/DifMechRasters.m @@ -0,0 +1,259 @@ +%% Rasters +% DE_Jittering needs to be unfiltered for significance for this to work! +csNames = fieldnames(Triggers); +% csNames = csNames(2:end); +IDs = csNames; +trigTX = linspace(timeLapse(1),timeLapse(2),size(trig,2)); + +rasterDir = fullfile(figureDir,'Rasters\'); +if ~mkdir(rasterDir) + fprintf(1,'There was an issue with the figure folder...\n'); +end + + +Power = NaN(length(consCondNames),1); +for cc = 1:length(consCondNames) + + mWfind = strfind(consCondNames{cc}, 'mW'); + + pwr = consCondNames{cc}(mWfind-2:mWfind+1); + if isnan(pwr) + pwrMissing = true; + elseif contains(pwr, '.') + pwr = consCondNames{cc}(mWfind-3:mWfind+1); + elseif contains(pwr, '_') || contains(pwr, ' ') + pwr = pwr(2:end); + end + pwr = str2double(pwr(1:end-2)); + Power(cc) = pwr; +end +pwrs = unique(Power); + +med = 0.2; + low = 0.4; + high = 0; +colours = ones(1,3); +colours(1:4,:) = med; colours(5:8,:) = low; colours(9:10,:) = high; + +for a = 1%:length(pwrs) + pwr = pwrs(a); + % MchTblInd = ['Mech_Control_', num2str(pwr), 'mW_MR']; + % LasTblInd = [20,21,22];%['Laser_Control_', num2str(pwr), 'mW_LR']; + % MchCondControl = ['Mech_Control_', num2str(pwr), 'mW']; + % LasCondControl = ['Laser_Control_', num2str(pwr), 'mW']; + % MchLasCond = ['Mech_Laser_', num2str(pwr), 'mW']; + % EffectTblInd = ['Mech_Control_', num2str(pwr), 'mW_vs_Mech_Laser_', num2str(pwr), 'mW_Evoked_Response']; + % TblInd = find(clInfo.ActiveUnit); % ATM this only makes rasters that show sig control mech response + % clIDind = clInfo.id(TblInd); + pwrInd = Power == pwr; + clIDind = ind; + lngth = length(clIDind); + for a = 1:lngth + rng('default'); + cl = clIDind(a); + clSel = find(ismember(pclID, cl)); + % if chCond == 1 + % rasCondSel = find(ismember(consCondNames, MchCondControl) | ismember(consCondNames, MchLasCond)); + % label = 'Mech'; + % else + % rasCondSel = find(ismember(consCondNames, LasCondControl) | ismember(consCondNames, MchLasCond)); + % label = 'Laser'; + % end + rasCondSel = [1 2 3]; + rasCond = consideredConditions(rasCondSel); + rasCondNames = consCondNames(rasCondSel); + Nrcl = numel(clSel); + % Reorganize the rasters in the required order. + clSub = find(ismember(gclID, pclID(clSel)))+1; + [rasIdx, rasOrd] = ismember(pclID(ordSubs), pclID(clSel)); + clSub = clSub(rasOrd(rasIdx)); + clSel = clSel(rasOrd(rasOrd ~= 0)); + Nma = min(Na(rasCondSel)); + rasFig = figure; + columns = length(pwrs); + Nrcond = length(rasCond); + ax = gobjects(4*Nrcond*Nrcl,1); + lidx = 1; + for cc = 1:length(rasCond) + % Equalize trial number + trigSubset = sort(randsample(Na(rasCondSel(cc)),Nma)); + tLoc = find(delayFlags(:,rasCondSel(cc))); + tSubs = tLoc(trigSubset); + % Trigger subset for stimulation shading + trigAlSubs = Conditions(rasCond(cc)).Triggers(trigSubset,:); + timeDur = round(diff(trigAlSubs, 1, 2)/fs, 3); + trigChange = find(diff(timeDur) ~= 0); + for ccl = 1:Nrcl + + stims = mean(cst(:,:,delayFlags(:,rasCondSel(cc))),3); + % stims = stims([2,3],:); + + stims = stims - median(stims,2); + + + + for cs = 2 %for cs = 1:size(stims,1) + if abs(log10(var(stims(cs,:),[],2))) < 13 + [m,b] = lineariz(stims(cs,:),1,0); + stims(cs,:) = m*stims(cs,:) + b; + else + stims(cs,:) = zeros(1,Nt); + end + end + + [r,c] = size(stims); + + if r < c + stims = stims'; + stmClr = zeros(r, 3); + + end + + + + + for cs = 2 %for cs = 1:size(stims,1) + if stims(1,cs) > 0.5 + stim = ones(size(stims(:,cs)))-stims(:,cs); + else + stim = stims(:,cs); + end +% dP=[0; diff(stim)]; + stim = smooth(stim,10); + ax(lidx) = subplot(4*Nrcond, Nrcl, lidx); + if exist('IDs','var') + plot(trigTX,stim, 'LineStyle','-','LineWidth', 1,... + 'DisplayName', IDs{cs}, 'Color', stmClr(cs,:)) +% P = stim'; %ax(lidx).Children.YData; +% dP = [0 diff(P)]; +% dP = smooth(dP,100); +% dP = dP-mean(dP(1:100));dP=dP/max(dP); +% +% yyaxis right +% plot(trigTX, dP, 'LineStyle','-','LineWidth', 1,... +% 'DisplayName', IDs{cs}, 'Color', stmClr(cs,:)) + else + plot(trigTX,stim,'LineStyle','-','LineWidth',1, 'Color', stmClr(cs,:)) + +% P = ax(lidx).Children.YData; +% dP = [0 diff(P)]; +% dP = smooth(dP,100); +% dP = dP-mean(dP(1:100));dP=dP/max(dP); +% yyaxis right +% plot(trigTX, dP, 'LineStyle','-','LineWidth', 1,... +% 'DisplayName', IDs{cs}, 'Color', stmClr(cs,:)) + end + ax(lidx).Visible = 'off'; + + + % ax2.Children(1).Color = defineColorForStimuli(IDs(cs)); + + if cs == 1 + ax2.NextPlot = 'add'; + end + + end + % ax = gca; + % + % + % % ax.YAxis(2).Limits = [0.015, 1]; + % % ax.YAxis(2).Visible = 'off'; + % ax.FontName ='Arial'; + % ax.FontSize = 12; + + % f=get(gca,'Children'); + % legend(f) + % + lidx = lidx + 1; + + + % lidx = ccl + (cc - 1) * Nrcl; + ax(lidx) = subplot(4*Nrcond, Nrcl, lidx:lidx+2); % subplot( Nrcl, Nrcond, lidx); % to plot the other way around + title(ax(lidx),sprintf(rasCondNames{cc}), 'Interpreter', 'none') % ,pclID{clSel(ccl)} + plotRasterFromStack(discStack([1,clSub(ccl)],:,tSubs),... + timeLapse, fs,'',colours(lidx,:),ax(lidx)); + ax(lidx).YAxisLocation = 'origin';ax(lidx).YAxis.TickValues = Nma; + ax(lidx).YAxis.Label.String = 'Trials'; + % ax(lidx).YAxis.Label.Position =... + % [timeLapse(1)-timeLapse(1)*0.65, Nma,0]; + % ax(lidx).XAxis.TickLabels =... + % cellfun(@(x) (x)*1e3, ax(lidx).XAxis.TickValues,... + % 'UniformOutput', 0); + xlabel(ax(lidx), 'Time [s]') + initSub = 0; + optsRect = {'EdgeColor','none','FaceColor','none'}; + for ctr = 1:numel(trigChange) + rectangle('Position',[0, initSub,... + timeDur(trigChange(ctr)), trigChange(ctr)],optsRect{:}) + initSub = trigChange(ctr); + end + rectangle('Position', [0, initSub, timeDur(Nma),... + Nma - initSub],optsRect{:}) + + ax(lidx).XAxis.Visible = 'off'; + ax(lidx).YAxis.Visible = 'off'; + stims = mean(cst(:,:,delayFlags(:,rasCondSel(cc))),3); + % stims = stims([2,3],:); + + stims = stims - median(stims,2); + + + + for cs = 2 %for cs = 1:size(stims,1) + if abs(log10(var(stims(cs,:),[],2))) < 13 + [m,b] = lineariz(stims(cs,:),1,0); + stims(cs,:) = m*stims(cs,:) + b; + else + stims(cs,:) = zeros(1,Nt); + end + end + + [r,c] = size(stims); + + if r < c + stims = stims'; + stmClr = zeros(r, 3); + + end + + % stmClr =[ 1 0 0 0.25; 0 1 1 0.25]; + + + + lidx = lidx + 3; + + + end + end + + + + + + rasConds = rasCondNames{1}; + if length(rasCondNames) > 1 + for r = 2:length(rasCondNames) + rasConds = [rasConds, '+', rasCondNames{r}]; + end + end + + + ax(2).Title.Color = colours(2,:); + ax(6).Title.Color = colours(6,:); + ax(10).Title.Color = colours(10,:); + ax(1).Children.Color = colours(1,:); + ax(5).Children.Color = colours(5,:); + ax(9).Children.Color = colours(9,:); + + + linkaxes(ax,'x') + rasFigName = ['Unit_', cell2mat(cl), '_', ]; + rasFig.Name = [rasFigName, '_', num2str(pwr), 'mW']; + configureFigureToPDF (rasFig); + set(rasFig, 'Position', get(0, 'ScreenSize')/2); + saveas(rasFig,fullfile(rasterDir, [rasFigName,'_',rasConds,'_', num2str(timeLapse(1)), '_to_', num2str(timeLapse(2)),'.emf'])); + %savefig(rasFig,fullfile(rasterDir, [rasFigName, ' ', num2str(pwr), 'mW.fig'])); + savefig(rasFig,fullfile(rasterDir, [rasFigName,'_',rasConds, '.fig'])); + end +end + diff --git a/Ross/FR_Mod.m b/Ross/FR_Mod.m new file mode 100644 index 0000000..12f5e4c --- /dev/null +++ b/Ross/FR_Mod.m @@ -0,0 +1,60 @@ +%FR_Modulation + +%% FR Modulation Plots +clInd = find(clInfo.Mech_Control_R); + +id_depth_mod = table(clInfo.id(clInd), clInfo.abs_depth(clInd), clInfo.Mech_Control_Rate(clInd),... + clInfo.Mech_Control_Rate_Baseline(clInd), clInfo.Mech_Laser_Rate(clInd), clInfo.Mech_Laser_Rate_Baseline(clInd)); +id_depth_mod = sortrows(id_depth_mod,'Var2','ascend'); + +ID = id_depth_mod{:,1}; + +mc = id_depth_mod{:,3}; +mcb = id_depth_mod{:,4}; +ml = id_depth_mod{:,5}; +mlb = id_depth_mod{:,6}; + +deltaRate = [mc-mcb, ml-mlb]; + + + +depth = id_depth_mod.Var2; +jitter = randi(20,size(depth)); +depth = depth + jitter; % adding small jitter for visualisation +depth = -1*depth; + + + +for chc = 1:2 + + fig = figure('Name', 'Depth vs Modulation', 'Color', 'White'); + ax = gca; + hold on + for cl = 1:length(ID) + rt = deltaRate(cl,chc); + dpth = depth(cl); + plot([0, rt], [dpth, dpth], 'LineStyle', '-', 'Marker', 'none', 'Color', [0, 0, 1], 'MarkerSize', 2.5, 'LineWidth', 0.01, 'MarkerFaceColor',[0.5,0.5,0.5]); + + end + + % f = fit(depth, modinc, 'smoothingspline'); + % plot(f,depth, modinc) + +end + +% legend on +%plot(deltaRate(:,2), depth, 'LineStyle', '-', 'Marker', 'none', 'Color', [0.5, 1, 1], 'MarkerSize', 2.5, 'LineWidth', 0.01, 'MarkerFaceColor',[0.5,0.5,0.5]) +title('Depth vs Modulation of Mechanical Responses', 'Interpreter', 'none') +ylabel( 'Depth [\mum]', 'Interpreter', 'tex'); +xlabel('Modulation Index', 'Interpreter', 'tex'); +%ax.XLim = [-1.1*max(deltaRate(:,2)), 1.1*max(deltaRate(:,2))]; +ax.XLim = [-1, 1]; + +hold on +plot(zeros(length(mod)), linspace(ax.YLim(1),ax.YLim(2), length(mod)), 'LineStyle', '-', 'Color', 'k'); +ax.FontSize = 25; +ax.FontName = 'Arial'; +% ax.Legend.String = {'Late Responders'}; +% savefig(fig, fullfile('Z:\Ross\Experiments\smrxFiles\16.12.20\12.6.21\Figures\', [consCondNames{chc}, '_LateResponders_Depth_vs_Modulation.fig'])); + + diff --git a/Ross/Gq Baseline Rates.emf b/Ross/Gq Baseline Rates.emf new file mode 100644 index 0000000..b98d521 Binary files /dev/null and b/Ross/Gq Baseline Rates.emf differ diff --git a/Ross/Gq Rate.emf b/Ross/Gq Rate.emf new file mode 100644 index 0000000..1adc323 Binary files /dev/null and b/Ross/Gq Rate.emf differ diff --git a/Ross/Gq Rates.emf b/Ross/Gq Rates.emf new file mode 100644 index 0000000..2657e5c Binary files /dev/null and b/Ross/Gq Rates.emf differ diff --git a/Ross/Gq Spont Rate.emf b/Ross/Gq Spont Rate.emf new file mode 100644 index 0000000..10e2dd4 Binary files /dev/null and b/Ross/Gq Spont Rate.emf differ diff --git a/Ross/GqSpontRates.emf b/Ross/GqSpontRates.emf new file mode 100644 index 0000000..8bebcc8 Binary files /dev/null and b/Ross/GqSpontRates.emf differ diff --git a/Ross/HBIGS_EPHYS.m b/Ross/HBIGS_EPHYS.m new file mode 100644 index 0000000..3d5dcdf --- /dev/null +++ b/Ross/HBIGS_EPHYS.m @@ -0,0 +1,1757 @@ +% HBIGs 2022 in vivo electrophysiology analysis tutorial + +% Welcome to the HBIGS tutorial. In this tutorial will be be covering the +% basics of the kinds of analysis we do in the Groh Lab, specifically +% multi-unit extracellular electrophysiology. + +% Whilst the script should run in full, we recommend (especially for those +% unfamiliar with MATLAB or programming) to run the script section by +% section to really get a feel for how and why each step is necessary for answering the questions that we're interested in. +% You can do this run each section by either clicking th 'Run Section' icon in the +% Editor section of the taskbar, or by pressing Strg + Enter. +% To run a section and then automatically advance to the next section in +% the script there is also a 'Run and Advance' button, or alternatively +% Strg + Shift + Enter will do this. + + + +%% Firstly, we need a data directory to work in: + +dataDir = 'Z:\HBIGS'; + +% We can see what files are in the current directory with the ls functino: + +ls(dataDir) + +%% Concatenating and converting smrx files to bin file. + +% The .smrx files contain the data that was collected during the experiment. +% Therefore we need to access both the voltage traces from the probes, and +% therefore the traces of any non-neural paramters we may be interested in +% (e.g. TTL traces, respiration rate, etc.) + + +% To take votlage traces from multiple electrodes and and assign the +% spikes from these into respective neurons, we need to put these traces +% through a 'Spike-sorter'; an algorithm that clusters similar spikes as +% belonging to these putative neurons (referred to as units). But first, +% we need to concatenate the separate smrx files together and convertthem into a single binary file to be read by the +% spike-sorting software. + + +msmrx2bin('Z:\HBIGS','HBIGS_Tutorial') + +% The chronological order of the recording are denoted by 'P', where 'P1_' +% denotes the first recording of the experiment. + + + +%% Now that we have the bin file, we can run our spike-sorter. + + +cd C:\Users\NeuroNetz\Documents\GitHub\Kilosort2_5 + +kilosort + +% probe file = 'Z:\Ross\ProbeFiles\' - Corrected_H3_ChanMap.mat +fs = 3.003003003003003e+04; + + + + +%% Once sorted and curated we can import our units and their spikes into MATLAB. + +cd C:\Users\NeuroNetz\Documents\GitHub\Scripts\Ross + +% Experiment Name +expName = 'I_hope_this_works_please!'; + +% Spike-sorted units and their spike times +sortedData = importPhyFiles('Z:\HBIGS\Pre-sorted', expName); + +%Unit/Cluster (same thing) information in a table. +clInfo = getClusterInfo([dataDir, '\cluster_info.tsv']); + + +%% Now we need to organise the TTL data to know when we are stimulating the brain. + +% Calling a function to give us the Conditions and the Trigger times. + +% We will need the MechTTL, MechStim, and Laser channels +[Conditions, Triggers] = getTriggers(expName, dataDir, fs); + + + +%% If any problems occur, we can also jut load the spikes and triggers that have been pre-sorted and orgainised earlier + +load('Z:\PainData\Corrected_Channel_Map\L6\Cortex\20.8.21\KS2\m6_newChanMap_all_channels.mat'); +load('Z:\PainData\Corrected_Channel_Map\L6\Cortex\20.8.21\KS2\m6_analysis.mat'); +clInfo = getClusterInfo('Z:\PainData\Corrected_Channel_Map\L6\Cortex\20.8.21\KS2\cluster_info.tsv'); +% expName = 'Replace_this_text_with_your_experiment_name'; +%% Creating a directory to put our figures in to. + + +% Creating the figure directory +figureDir = fullfile(dataDir,'Figures\'); +if ~mkdir(figureDir) + fprintf(1,'There was an issue with the figure folder...\n'); +end + + +%% Constructing the helper 'global' variables + +Triggers.MechStim = Triggers.MechStim * -1; + +% Number of total samples +Ns = min(structfun(@numel,Triggers)); + +% Total duration of the recording in seconds +Nt = Ns/fs; + +% Useless clusters (labeled as noise or they have very low firing rate) +badsIdx = cellfun(@(x) x==3,sortedData(:,3)); +bads = find(badsIdx); +totSpkCount = cellfun(@numel,sortedData(:,2)); +clusterSpikeRate = totSpkCount/Nt; +silentUnits = clusterSpikeRate < 0.1; +bads = union(bads,find(silentUnits)); +goods = setdiff(1:size(sortedData,1),bads); +badsIdx = badsIdx | silentUnits; + +% Indicating which units will be analysed in the clInfo table +% (ActiveUnits!) +if ~any(ismember(clInfo.Properties.VariableNames,'ActiveUnit')) + clInfo = addvars(clInfo,~badsIdx','After','id',... + 'NewVariableNames','ActiveUnit'); +end + +% Get the IDs of the axctive units +gclID = sortedData(goods,1); +badsIdx = StepWaveform.subs2idx(bads,size(sortedData,1)); + +% Logical spike trace for the first good cluster +spkLog = StepWaveform.subs2idx(round(sortedData{goods(1),2}*fs),Ns); + + +% Subscript column vectors for the rest good clusters +spkSubs = cellfun(@(x) round(x.*fs),sortedData(goods(2:end),2),... + 'UniformOutput',false); + +% Number of good clusters +Ncl = numel(goods); + +% Redefining the stimulus signals from the low amplitude to logical values +whStim = {'piezo','whisker','mech','audio'}; +cxStim = {'laser','light'}; +lfpRec = {'lfp','s1','cortex','s1lfp'}; +trigNames = fieldnames(Triggers); +numTrigNames = numel(trigNames); +ctn = 1; +continuousSignals = cell(numTrigNames,1); +continuousNameSub = zeros(size(trigNames)); +while ctn <= numTrigNames + if contains(trigNames{ctn},whStim,'IgnoreCase',true) + continuousSignals{ctn} = Triggers.(trigNames{ctn}); + continuousNameSub(ctn) = ctn; + end + if contains(trigNames{ctn},cxStim,'IgnoreCase',true) + continuousSignals{ctn} = Triggers.(trigNames{ctn}); + continuousNameSub(ctn) = ctn; + end + if contains(trigNames{ctn},lfpRec,'IgnoreCase',true) + continuousSignals{ctn} = Triggers.(trigNames{ctn}); + continuousNameSub(ctn) = ctn; + end + ctn = ctn + 1; +end +continuousSignals(continuousNameSub == 0) = []; +continuousNameSub(continuousNameSub == 0) = []; +trigNames = trigNames(continuousNameSub); + + + + +%% Now we have identified the units we want to analyse, and the different manipulations we've induced in thenm (Conditions). + +% With multi-unit extracellular recordngs, the information we reliably have +% access to and can answer question about, are unit firing (spike) rates +% and the inter-spike intervals. + +% Lets calculate the interspike intervals for later + +isiFile = fullfile(dataDir,[expName,'_ISIvars.mat']); +if ~exist(isiFile,'file') + spkSubs2 = cellfun(@(x) round(x.*fs), sortedData(goods,2),... + 'UniformOutput', false); + ISIVals = cellfun(@(x) [x(1)/fs; diff(x)/fs], spkSubs2,... + 'UniformOutput', 0); + NnzvPcl = cellfun(@numel,ISIVals); + Nnzv = sum(NnzvPcl); + rows = cell2mat(arrayfun(@(x,y) repmat(x,y,1), (1:Ncl)', NnzvPcl,... + 'UniformOutput', 0)); + cols = cell2mat(spkSubs2); + vals = cell2mat(ISIVals); + ISIspar = sparse(rows, cols, vals); +else + load(isiFile,'ISIspar') +end + + + +%% We can now decide how to porceed with respect to the time around each +% manipulation that we want to consider. + + + +% Time lapse, bin size, and spontaneous and response windows + +% Viewing window denotes the timespan around the TTL trigger shown for the +% Peri-Stimulus-Time-Histograms (PSTHs - something we'll get on to later) + +% Response window is the timespan after the TTL trigger to be +% considered for the statistical analysis. + +% Bin size is also a PSTH measure that determines how many spikes are bunched into a given bin. + +% Feel free to play around with these parameters once after first +% running with the defaults. + + +promptStrings = {'Viewing window (time lapse) [s]:','Response window [s]',... + 'Bin size [s]:'}; +defInputs = {'-2, 6', '0.5, 2', '0.01'}; +answ = inputdlg(promptStrings,'Inputs', [1, 30],defInputs); +if isempty(answ) + fprintf(1,'Cancelling...\n'); + return +else + timeLapse = str2num(answ{1}); %#ok<*ST2NM> + if numel(timeLapse) ~= 2 + timeLapse = str2num(inputdlg('Please provide the time window [s]:',... + 'Time window',[1, 30], '-0.1, 0.1')); + if isnan(timeLapse) || isempty(timeLapse) + fprintf(1,'Cancelling...') + return + end + end + responseWindow = str2num(answ{2}); + binSz = str2double(answ(3)); +end +fprintf(1,'Time window: %.2f - %.2f ms\n',timeLapse(1)*1e3, timeLapse(2)*1e3) +fprintf(1,'Response window: %.2f - %.2f ms\n',responseWindow(1)*1e3, responseWindow(2)*1e3) +fprintf(1,'Bin size: %.3f ms\n', binSz*1e3) + + +% In most scenarios it makes sense to take the same time-window before each +% TTL trigger to compare activity statistically + +sponAns = questdlg('Mirror the spontaneous window?','Spontaneous window',... + 'Yes','No','Yes'); +spontaneousWindow = -flip(responseWindow); +if strcmpi(sponAns,'No') + spontPrompt = "Time before the trigger in [s] (e.g. -0.8, -0.6 s)"; + sponDef = string(sprintf('%.3f, %.3f',spontaneousWindow(1),... + spontaneousWindow(2))); + sponStr = inputdlg(spontPrompt, 'Inputs',[1,30],sponDef); + if ~isempty(sponStr) + spontAux = str2num(sponStr{1}); + if length(spontAux) ~= 2 || spontAux(1) > spontAux(2) || ... + spontAux(1) < timeLapse(1) + fprintf(1, 'The given input was not valid.\n') + fprintf(1, 'Keeping the mirror version!\n') + else + spontaneousWindow = spontAux; + end + end +end +fprintf(1,'Spontaneous window: %.2f to %.2f ms before the trigger\n',... + spontaneousWindow(1)*1e3, spontaneousWindow(2)*1e3) + + +%% We now need to consider one stack of triggers that we will later split up into their respective conditions. + + +% Some conditions are duplicated as either '_AllTriggers', or 'Block'. The +% Block triggers are 5 seconds time durations of the 'All_Triggers' +% condition. + +% e.g. 10Hz_All_Triggers will contain trigger times for each TTL pulse, +% which can be a little as 5ms. The Block variety of this condition +% considers the duration of the pulse train (usually 5 seconds), to compare +% with other longer manipulations. + +% We suggest going for a 'Mech_All_Block' conditions initally. + +condNames = arrayfun(@(x) x.name,Conditions,'UniformOutput',false); +condGuess = contains(condNames, 'whiskerall', 'IgnoreCase', true); + + +% Choose the conditions to create the stack upon + +[chCond, iOk] = listdlg('ListString',condNames,'SelectionMode','single',... + 'PromptString',... + 'Choose the condition which has all triggers: (one condition)',... + 'InitialValue', find(condGuess), 'ListSize', [350, numel(condNames)*16]); +if ~iOk + fprintf(1,'Cancelling...\n') + return +end +% Select the onset or the offset of a trigger + +fprintf(1,'Condition ''%s''\n', Conditions(chCond).name) +onOffStr = questdlg('Trigger on the onset or on the offset?','Onset/Offset',... + 'on','off','Cancel','on'); +if strcmpi(onOffStr,'Cancel') + fprintf(1,'Cancelling...\n') + return +end + +%% We'll now create 3-D stacks of the chosen data that we can access in alter analysis. + + +% discStack - dicrete stack has a logical nature +% cst - continuous stack has a numerical nature +% Both of these stacks have the same number of time samples and trigger +% points. They differ only in the number of considered events. + +[discStack, cst] = getStacks(spkLog,Conditions(chCond).Triggers,onOffStr,... + timeLapse,fs,fs,spkSubs,continuousSignals); + + + + + + +% Ne = Number of units + the Mech as the first event + the Laser as the last +% event, + +% Nt = Number of time samples in between the time window, + +% Nta = number of total triggers. + +[Ne, Nt, NTa] = size(discStack); + + + + +% Computing the time axis for the stack + +tx = (0:Nt - 1)/fs + timeLapse(1); + + +%% Now we can choose the conditions we wish to analyse within our 'All' condition. + +% Choose the conditions to look at +auxSubs = setdiff(1:numel(condNames), chCond); +ccondNames = condNames(auxSubs); +[cchCond, iOk] = listdlg('ListString',ccondNames,'SelectionMode','multiple',... + 'PromptString',... + 'Choose the condition(s) to look at (should be in the a subset of ALL condition):',... + 'ListSize', [350, numel(condNames)*16]); +if ~iOk + fprintf(1,'Cancelling...\n') + return +end + +cchCond = flip(cchCond); % Flip the conditions to get Control on x-axis later + +% Select the onset or the offset of a trigger +fprintf(1,'Condition(s):\n') +fprintf('- ''%s''\n', Conditions(auxSubs(cchCond)).name) + + +% Subscript to indicate the conditions with all whisker stimulations, +% whisker control, laser control, and the combination whisker and laser. +allWhiskerStimulus = chCond; +% allLaserStimulus = 2; +% whiskerControl = 9; +% laserControl = 8; +consideredConditions = auxSubs(cchCond); + +Nccond = length(consideredConditions); + +% Adding all the triggers from the piezo and the laser in one array +% allWhiskersPlusLaserControl = ... +% union(Conditions(allWhiskerStimulus).Triggers,... +% Conditions(laserControl).Triggers,'rows'); + + +%% We'll create logical Boolean flags to index the subset of conditinos into the larger stack +delayFlags = false(NTa,Nccond); +counter2 = 1; +for ccond = consideredConditions + delayFlags(:,counter2) = ismember(Conditions(chCond).Triggers(:,1),... + Conditions(ccond).Triggers(:,1)); + counter2 = counter2 + 1; +end +Na = sum(delayFlags,1); + + + +%% Computing which units/clusters/putative neurons respond to the stimulus + + +% Logical indices for fetching the stack values +sponActStackIdx = tx >= spontaneousWindow(1) & tx <= spontaneousWindow(2); +respActStackIdx = tx >= responseWindow(1) & tx <= responseWindow(2); +% The spontaneous activity of all the clusters, which are allocated from +% the second until one before the last row, during the defined spontaneous +% time window, and the whisker control condition. + +timeFlags = [sponActStackIdx;respActStackIdx]; +% Time window +delta_t = diff(responseWindow); +% Statistical tests +[Results, Counts] = statTests(discStack, delayFlags, timeFlags); + +indCondSubs = cumsum(Nccond:-1:1); +consCondNames = condNames(consideredConditions); +% Plotting statistical tests +[Figs, Results] = scatterSignificance(Results, Counts,... + consCondNames, delta_t, sortedData(goods,1)); +configureFigureToPDF(Figs); +stFigBasename = fullfile(figureDir,[expName,' ']); +stFigSubfix = sprintf(' Stat RW%.1f-%.1fms SW%.1f-%.1fms',... + responseWindow(1)*1e3, responseWindow(2)*1e3, spontaneousWindow(1)*1e3,... + spontaneousWindow(2)*1e3); +ccn = 1; +%for cc = indCondSubs +for cc = 1:numel(Figs) + if ~ismember(cc, indCondSubs) + altCondNames = strsplit(Figs(cc).Children(2).Title.String,': '); + altCondNames = altCondNames{2}; + else + altCondNames = consCondNames{ccn}; + ccn = ccn + 1; + end + stFigName = [stFigBasename, altCondNames, stFigSubfix]; + % if ~exist([stFigName,'.pdf'],'file') || ~exist([stFigName,'.emf'],'file') + % print(Figs(cc),[stFigName,'.pdf'],'-dpdf','-fillpage') + % print(Figs(cc),[stFigName,'.emf'],'-dmeta') + % end + savefig(Figs(cc),fullfile(figureDir, [altCondNames, '.fig'])); +end + +H = cell2mat(cellfun(@(x) x.Pvalues,... + arrayfun(@(x) x.Activity, Results(indCondSubs), 'UniformOutput', 0),... + 'UniformOutput', 0)) < 0.05; + +Htc = sum(H,2); +CtrlCond = contains(consCondNames,'control','IgnoreCase',true); +if ~nnz(CtrlCond) + CtrlCond = true(size(H,2),1); +end +wruIdx = any(H(:,CtrlCond),2); +Nwru = nnz(wruIdx); + +fprintf('%d responding units:\n', Nwru); +fprintf('- %s\n',gclID{wruIdx}) + + + +%% Adding our newly calculated results to the clInfo table. + + +window = diff(responseWindow); + +for a = 1: length(consCondNames) + clInfo{clInfo.ActiveUnit == true,[consCondNames{1,a}, '_Rate_Spont']} = mean(Counts{a,1}')'/window; + clInfo{clInfo.ActiveUnit == true,[consCondNames{1,a}, '_Rate_Evoked']} = mean(Counts{a,2}')'/window; +end + + +% Significant mechanical responses per condition +b = length(consCondNames); +for a = 1 : length(consCondNames) + clInfo{clInfo.ActiveUnit == true,[consCondNames{1,a}, '_R']} = Results(b).Activity(1).Pvalues < 0.05; + b = b + length(consCondNames) - a; +end + + +sZ = size(Counts); +d = length(consCondNames); +e = 1; +f = length(consCondNames); +for a = 1:length(consCondNames) - 1 + for b = (a + 1): length(consCondNames) + + for c = 1: sZ(1,2) + clInfo{clInfo.ActiveUnit == true,[consCondNames{1,a},'_vs_',consCondNames{1,b}, '_', Results(e).Activity(c).Type, '_Response']} = Results(e).Activity(c).Pvalues < 0.05; + + end + + e = e + 1; + + if e == f + e = e + 1; + end + end + d = d - 1; + f = f + d; +end + +%% Adding the absolute depth of each unit to the clInfo table. + +dpth = 1500; + +abs_depth = dpth - clInfo.depth; + +clInfo = addvars(clInfo,abs_depth,'After','depth',... + 'NewVariableNames','abs_depth'); + + +%% Opto-tagging + +% Now that we have the absolute depths of our units, we can look at the +% spike latencies of each unit in response to the laser laser triggers, to +% determine the temporal sequence of spike activation (e.g. which +% population is expressing the channel-rhodopsin protein). + +[TaggedIDs, fig] = Optotag([2,12], [0.2,6], clInfo, gclID, Conditions(6).name, Conditions(6).Triggers, sortedData, fs); + +% idxTagged = ismember(clInfo.id, TaggedIDs); +% if ~any(ismember(clInfo.Properties.VariableNames,'Tagged')) +% clInfo = addvars(clInfo,idxTagged,'After','ActiveUnit',... +% 'NewVariableNames','Tagged'); +% end + +%% Saving the ammended clInfo table + +writeClusterInfo(clInfo, fullfile(dataDir,'cluster_info.tsv')); + + +%% Adding the mean trace signals to the Conditions variable +if ~isfield(Conditions,'Stimulus') ||... + any(arrayfun(@(x) isempty(x.Stimulus), Conditions(consideredConditions))) + fprintf(1,'Writting the stimulus raw signal into Conditions variable:\n') + whFlag = contains(trigNames, whStim, 'IgnoreCase', 1); + lrFlag = contains(trigNames, cxStim, 'IgnoreCase', 1); + cdel = 1; + for cc = consideredConditions + fprintf(1,'- %s\n', Conditions(cc).name) + Conditions(cc).Stimulus = struct(... + 'Mechanical',reshape(mean(cst((1),:,delayFlags(:,cdel)),3),... + 1,Nt),... + 'MechPressure',reshape(mean(cst((2),:,delayFlags(:,cdel)),3),... + 1,Nt),... + 'Laser',reshape(mean(cst(lrFlag,:,delayFlags(:,cdel)),3),... + 1,Nt),'TimeAxis',(0:Nt-1)/fs + timeLapse(1)); + cdel = cdel + 1; + end +end + + +%% Creating a configuration structure to keep track of all the +configStructure = struct('Experiment', fullfile(dataDir,expName),... + 'Viewing_window_s', timeLapse, 'Response_window_s', responseWindow,... + 'BinSize_s', binSz, 'Trigger', struct('Name', condNames{chCond},... + 'Edge',onOffStr), 'ConsideredConditions',{consCondNames}); + + +%% Filter question +filterIdx = true(Ne,1); +ansFilt = questdlg('Would you like to filter for significance?','Filter',... + 'Yes','No','Yes'); +filtStr = 'unfiltered'; +if strcmp(ansFilt,'Yes') + filterIdx = [true; wruIdx]; + filtStr = 'Filtered'; +end +%ruIdx = wruIdx; + + +%% Getting the relative spike times for the responsive units (ru) +% For each condition, the first spike of each ru will be used to compute +% the standard deviation of it. +cellLogicalIndexing = @(x,idx) x(idx); +isWithinResponsiveWindow =... + @(x) x > responseWindow(1) & x < responseWindow(2); + +firstSpike = zeros(Nwru,Nccond); +M = 16; +binAx = responseWindow(1):binSz:responseWindow(2); +condHist = zeros(size(binAx,2)-1, Nccond); +firstOrdStats = zeros(2,Nccond); +condParams = zeros(M,3,Nccond); +txpdf = responseWindow(1):1/fs:responseWindow(2); +condPDF = zeros(numel(txpdf),Nccond); +csvBase = fullfile(dataDir, expName); +csvSubfx = sprintf(' VW%.1f-%.1f ms.csv', timeLapse(1)*1e3, timeLapse(2)*1e3); +existFlag = false; +condRelativeSpkTms = cell(Nccond,1); +relativeSpkTmsStruct = struct('name',{},'SpikeTimes',{}); +spkDir = fullfile(dataDir, 'SpikeTimes'); +for ccond = 1:size(delayFlags,2) + csvFileName = [csvBase,' ',consCondNames{ccond}, csvSubfx]; + relativeSpikeTimes = getRasterFromStack(discStack,~delayFlags(:,ccond),... + filterIdx(3:end), timeLapse, fs, true, false); + relativeSpikeTimes(:,~delayFlags(:,ccond)) = []; + relativeSpikeTimes(~filterIdx(2),:) = []; + condRelativeSpkTms{ccond} = relativeSpikeTimes; + + clSpkTms = cell(size(relativeSpikeTimes,1),1); + if exist(csvFileName, 'file') && ccond == 1 + existFlag = true; + ansOW = questdlg(['The exported .csv files exist! ',... + 'Would you like to overwrite them?'],'Overwrite?','Yes','No','No'); + if strcmp(ansOW,'Yes') + existFlag = false; + fprintf(1,'Overwriting... '); + end + end + fID = 1; + + for cr = 1:size(relativeSpikeTimes, 1) + clSpkTms(cr) = {sort(cell2mat(relativeSpikeTimes(cr,:)))}; + if fID > 2 + fprintf(fID,'%s,',gclID{cr}); + fprintf(fID,'%f,',clSpkTms{cr});fprintf(fID,'\n'); + end + end + if fID > 2 + fclose(fID); + end + relativeSpkTmsStruct(ccond).name = consCondNames{ccond}; + relativeSpkTmsStruct(ccond).SpikeTimes = condRelativeSpkTms{ccond}; + +end +save(fullfile(dataDir,[expName,'_exportSpkTms.mat']),... + 'relativeSpkTmsStruct','configStructure') + + +%% Ordering PSTH + +orderedStr = 'ID ordered'; +dans = questdlg('Do you want to order the PSTH other than by IDs?',... + 'Order', 'Yes', 'No', 'No'); +ordSubs = 1:nnz(filterIdx(2:Ncl+1)); +pclID = gclID(filterIdx(2:end)); +if strcmp(dans, 'Yes') + if ~exist('clInfo','var') + clInfo = getClusterInfo(fullfile(dataDir,'cluster_info.tsv')); + end + % varClass = varfun(@class,clInfo,'OutputFormat','cell'); + [ordSel, iOk] = listdlg('ListString', clInfo.Properties.VariableNames,... + 'SelectionMode', 'multiple'); + orderedStr = []; + ordVar = clInfo.Properties.VariableNames(ordSel); + for cvar = 1:numel(ordVar) + orderedStr = [orderedStr, sprintf('%s ',ordVar{cvar})]; %#ok + end + orderedStr = [orderedStr, 'ordered']; + + if ~strcmp(ordVar,'id') + [~,ordSubs] = sortrows(clInfo(pclID,:),ordVar, 'ascend'); + end +end + +%% Plot PSTH +% goodsIdx = logical(clInfo.ActiveUnit); +csNames = fieldnames(Triggers); +Nbn = diff(timeLapse)/binSz; +if (Nbn - round(Nbn)) ~= 0 + Nbn = ceil(Nbn); +end +PSTH = zeros(nnz(filterIdx) - 1, Nbn, Nccond); +psthFigs = gobjects(Nccond,1); +for ccond = 1:Nccond + figFileName = sprintf('%s %s VW%.1f-%.1f ms B%.1f ms RW%.1f-%.1f ms SW%.1f-%.1f ms %sset %s (%s)',... + expName, Conditions(consideredConditions(ccond)).name, timeLapse*1e3,... + binSz*1e3, responseWindow*1e3, spontaneousWindow*1e3, onOffStr,... + orderedStr, filtStr); + [PSTH(:,:,ccond), trig, sweeps] = getPSTH(discStack(filterIdx,:,:),timeLapse,... + ~delayFlags(:,ccond),binSz,fs); + stims = mean(cst(:,:,delayFlags(:,ccond)),3); + stims = stims - median(stims,2); + for cs = 1:size(stims,1) + if abs(log10(var(stims(cs,:),[],2))) < 13 + [m,b] = lineariz(stims(cs,:),1,0); + stims(cs,:) = m*stims(cs,:) + b; + else + stims(cs,:) = zeros(1,Nt); + end + end + psthFigs(ccond) = plotClusterReactivity(PSTH(ordSubs,:,ccond),trig,sweeps,timeLapse,binSz,... + [{Conditions(consideredConditions(ccond)).name};... + pclID(ordSubs)],... + strrep(expName,'_','\_'),... + stims, csNames); + configureFigureToPDF(psthFigs(ccond)); + psthFigs(ccond).Children(end).YLabel.String =... + [psthFigs(ccond).Children(end).YLabel.String,... + sprintf('^{%s}',orderedStr)]; + + +end +% for a = 1:length(consideredConditions) +% savefig(figure(a), fullfile(figureDir, [consCondNames{a}, '_filtered_PSTH_0.001binSz.fig'])); +% end + + +%% Plot depthPSTH + +csNames = fieldnames(Triggers); +pclTblInd = ismember(clInfo.id, pclID(ordSubs)); +depthOrd = sort(clInfo.abs_depth(pclTblInd), 'descend'); +depthVals = [4200:-200:0]; +depthInds = zeros(length(depthVals), 1); +for a = 1:length(depthInds) + selDepths = depthOrd < depthVals(a); + if sum(selDepths)> 0 + depthInd = find(selDepths); + depthInds(a) = depthInd(1); + end +end +topDepth = find(depthInds == 0); +topDepth = topDepth(1); +depthInds(topDepth) = length(pclID); +depthInds = depthInds(depthInds > 0); +selClIDs = cell(length(pclID),1); +depthVals = depthVals(1:length(depthInds))'; +for a = 1:length(depthInds) + selClIDs{depthInds(a)} = num2str(depthVals(a)); +end +goodsIdx = logical(clInfo.ActiveUnit); +%csNames = csNames(2:end); +Nbn = diff(timeLapse)/binSz; +if (Nbn - round(Nbn)) ~= 0 + Nbn = ceil(Nbn); +end +PSTH = zeros(nnz(filterIdx) - 1, Nbn, Nccond); +psthFigs = gobjects(Nccond,1); +for ccond = 1:Nccond + figFileName = sprintf('%s %s VW%.1f-%.1f ms B%.1f ms RW%.1f-%.1f ms SW%.1f-%.1f ms %sset %s (%s)',... + expName, Conditions(consideredConditions(ccond)).name, timeLapse*1e3,... + binSz*1e3, responseWindow*1e3, spontaneousWindow*1e3, onOffStr,... + orderedStr, filtStr); + [PSTH(:,:,ccond), trig, sweeps] = getPSTH(discStack(filterIdx,:,:),timeLapse,... + ~delayFlags(:,ccond),binSz,fs); + stims = mean(cst(:,:,delayFlags(:,ccond)),3); + %stims = stims([2,3],:); + stims = stims - median(stims,2); + for cs = 1:size(stims,1) + if abs(log10(var(stims(cs,:),[],2))) < 13 + [m,b] = lineariz(stims(cs,:),1,0); + stims(cs,:) = m*stims(cs,:) + b; + else + stims(cs,:) = zeros(1,Nt); + end + end + psthFigs(ccond) = plotClusterReactivityRoss(PSTH(ordSubs,:,ccond),trig,sweeps,timeLapse,binSz,... + [{Conditions(consideredConditions(ccond)).name};... + selClIDs],... + strrep(expName,'_','\_'),... + stims, csNames); + configureFigureToPDF(psthFigs(ccond)); + psthFigs(ccond).Children(end).Title.String = consCondNames{ccond}; + +end +% for a = 1:length(consideredConditions) +% savefig(figure(a), fullfile(figureDir, [consCondNames{a}, '_filtered_PSTH_0.001binSz.fig'])); +% end + + + +%% We can now use k means clustering analysis for a less biased splitting of the population based on the units' depths, latencies and jitter. +[GroupIDs, fig] = findSubPopulations(3, clInfo, gclID, Conditions(14).name, Conditions(14).Triggers, sortedData, fs); + + +Group1 = GroupIDs{1,2}; +Group2 = GroupIDs{2,2}; +Group3 = GroupIDs{3,2}; + +idxGroup1 = ismember(gclID, Group1); +idxGroup2 = ismember(gclID, Group2); +idxGroup3 = ismember(gclID, Group3); + +% Order the groups by depth + +ruIdx = [true, true, true; idxGroup3, idxGroup1, idxGroup2]; +%% We can plot the Depth vs change in FR by the groups we've just assigned + + +% Prep Variables +mrControl = clInfo.Mech_Control_4mW_Mech_Rate_Evoked-clInfo.Mech_Control_4mW_Mech_Rate_Spont; +mrLaser = clInfo.Mech_Laser_5sec_4mW_Rate_Evoked-clInfo.Mech_Laser_5sec_4mW_Mech_Rate_Spont; +data = table(clInfo.id, clInfo.abs_depth, mrControl, mrLaser); +mrInd = ismember(data.Var1, clInfo.id(clInfo.Mech_Control_4mW_R==true)); +data = data(find(mrInd),:); +data = sortrows(data,'Var2','ascend'); +ID = data.Var1; +depths = data.Var2; +c = data.Var3; +l = data.Var4; +rng('default'); +jitter = randi(20,size(depths)); +depths = -1*(depths + jitter); + +red = [0.75, 0, 0]; +green = [0, 0.75, 0]; +blue = [0.25, 0.5, 1]; +purple = [0.5,0,0.5]; +grey = [0.5, 0.5, 0.5]; +colour = [green; red; blue]; + +% Depth vs Evoked Rate (Control): MR Evoked - MR Baseline + + +deltaRate = zeros(length(depths), 2); +deltaRate(:,2) = c; + +figure('Color', 'White', 'Name', 'Changes in FR with Mechanical Stimulation'); +hold on +for unit = 1:length(ID) + dr = deltaRate(unit,:); + dpth = [depths(unit), depths(unit)]; + if ismember(ID{unit}, Group3) + plot(dr, dpth, 'LineStyle', '-', 'Color', [green, 0.5], 'LineWidth', 10); + elseif ismember(ID{unit}, Group2) + plot(dr, dpth, 'LineStyle', '-', 'Color', [red, 0.5], 'LineWidth', 10); + elseif ismember(ID{unit}, Group1) + plot(dr, dpth, 'LineStyle', '-', 'Color', [blue, 0.5], 'LineWidth', 10); + end +end +ax = gca; +ax.Title.String = 'Changes in FR with Mechanical Stimulation'; +ax.YLabel.String = 'Depth [\mum]'; +ax.XLabel.String = '\DeltaRate [Hz]'; +ax.FontName = 'Arial'; +ax.FontSize = 30; +ax.YLim = [-1600, 0]; +% ax.XLim = [-50, 50]; +% ax.XTick = [-50:10:50]; +plot(zeros(length(ID)), linspace(ax.YLim(1),ax.YLim(2), length(ID)), 'LineStyle', '-', 'Color', 'k'); + + +% Mech vs Mech Laser: MR Laser - MR Evoked + + +deltaRate = zeros(length(depths), 2); +deltaRate(:,2) = l-c; + +figure('Color', 'White', 'Name', 'Laser Modulation of Mechanical Responses'); +hold on +for unit = 1:length(ID) + dr = deltaRate(unit,:); + dpth = [depths(unit), depths(unit)]; + if ismember(ID{unit}, Group3) + plot(dr, dpth, 'LineStyle', '-', 'Color', [green, 0.5], 'LineWidth', 10); + elseif ismember(ID{unit}, Group2) + plot(dr, dpth, 'LineStyle', '-', 'Color', [red, 0.5], 'LineWidth', 10); + elseif ismember(ID{unit}, Group1) + plot(dr, dpth, 'LineStyle', '-', 'Color', [blue, 0.5], 'LineWidth', 10); + end +end +ax = gca; +ax.Title.String = 'Laser Modulation of Mechanical Responses'; +ax.YLabel.String = 'Depth [\mum]'; +ax.XLabel.String = '\DeltaRate [Hz]'; +ax.FontName = 'Arial'; +ax.FontSize = 30; +ax.YLim = [-1600, 0]; +% ax.XLim = [-50, 50]; +% ax.XTick = [-50:10:50]; +plot(zeros(length(ID)), linspace(ax.YLim(1),ax.YLim(2), length(ID)), 'LineStyle', '-', 'Color', 'k'); + + + + +%% Violin Plots + +mechResponse = All_Units.Mech_Control_R; +ruNames = [{'L4'}, {'L5'}, {'L6'}]; + + +red = [0.75, 0, 0]; +green = [0, 0.75, 0]; +blue = [0.25, 0.5, 1]; +purple = [0.5,0,0.5]; +colours = [green; red; blue]; +% colours = [0,0,0]; + +idxGroup1Tbl = ismember(All_Units.id, Group3); +idxGroup2Tbl = ismember(All_Units.id, Group1); +idxL6Tbl = ismember(All_Units.id, Group2); + +ansFilt = questdlg('Would you like to filter for Mech Response?','Filter',... + 'Yes','No','Yes'); +if strcmp(ansFilt,'Yes') + idxMat = [idxGroup1Tbl, idxGroup2Tbl, idxL6Tbl] & mechResponse; +else + idxMat = [idxGroup1Tbl, idxGroup2Tbl, idxL6Tbl] ; +end + +% idxMat = mechResponse; % & clInfo.Mech_Laser_1Hz_15mW_Rate_Evoked < 60; +matDims = size(idxMat); +nGroups = matDims(2); + +% yMax = [max(clInfo.Laser_5sec_pulse_15mW_Block_Rate_Spont), max(clInfo.Laser_5sec_pulse_15mW_Block_Rate_Evoked)]; + +yMin = 0; + +% Spontaneous vs Evoked +for unitGroup = 1:nGroups + + + unitIds = idxMat(:,unitGroup)==true; + nUnits = sum(unitIds); + rts = NaN(nUnits, 2); + rts(:,1) = All_Units.Mech_Control_Rate_Spont(unitIds); + rts(:,2) = All_Units.Mech_Control_Rate_Evoked(unitIds); + [p, sig] = ranksum(rts(:,1), rts(:,2)); + fprintf([ruNames{unitGroup}, ' baseline vs evoked p value: ', num2str(p), '\n']); + figure('Color', 'White', 'Name', [ruNames{unitGroup}, '_Baseline_vs_Evoked_Rates_ViolinPlot']); + hold on + + + [yCtr, xCtr] = ksdensity(rts(:,1),'Bandwidth',0.7); + patch(yCtr * -1,xCtr,colours(unitGroup,:),'EdgeAlpha',0.1,'FaceAlpha',0.2); + + [yCtr, xCtr] = ksdensity(rts(:,2),'Bandwidth',0.7); + patch(yCtr,xCtr,colours(unitGroup,:),'EdgeAlpha',0.1,'FaceAlpha',0.5); + + + + % plot(zeros(nUnits,1) - 0.0025, rts(:,1),... + % 'LineStyle','none', 'Marker', '*', 'Color', colour(unitGroup,:), 'MarkerSize', 2); + % + % plot(zeros(nUnits,1) + 0.0025, rts(:,2),... + % 'LineStyle','none', 'Marker', '*', 'Color', [0,0,1], 'MarkerSize', 2); + + medControl = median(rts(:,1)); + medLaser = median(rts(:,2)); + + + % leg = legend('Mech Control','Mech Laser', 'Location','northwest'); + % leg.Box = 'off'; + % leg.Location = 'northeast'; + + + + ax = gca; + ax.Title.String = ruNames{unitGroup}; + ax.FontName = 'Arial'; + ax.FontSize = 10; + ax.XAxis.Visible = 'off'; + xscale = max(abs(ax.XAxis.Limits)); + yMax = ax.YAxis.Limits(2); + yMax = round(max(yMax)+5, -1); + + + plot([-xscale/5,0], [medControl, medControl], 'LineStyle', '-', 'LineWidth', 1, 'Color', colours(unitGroup,:)); + plot([0,xscale/5], [medLaser, medLaser], 'LineStyle', '-', 'LineWidth', 1, 'Color', colours(unitGroup,:)); + + plot(zeros(nUnits,1) - xscale/50, rts(:,1),... + 'LineStyle','none', 'Marker', '*', 'Color', colours(unitGroup,:), 'MarkerSize', 2); + + plot(zeros(nUnits,1) + xscale/50, rts(:,2),... + 'LineStyle','none', 'Marker', '*', 'Color', colours(unitGroup,:), 'MarkerSize', 2); + + + %leg.String = [{'Mech Control'}, {'Mech + Laser'}, {'Population Median'}]; + ax.XAxis.Limits = [-xscale, xscale]; + ax.YAxis.Limits = [yMin, yMax]; + ax.YLabel.String = 'Firing Rate [Hz]'; + ax.XTick = []; + % ax.Visible = 'off'; +end + + +% Mech Control vs Mech Laser + +for unitGroup = 1:nGroups + + + unitIds = idxMat(:,unitGroup)==true; + nUnits = sum(unitIds); + rts = NaN(nUnits, 2); + rts(:,1) = All_Units.Mech_Control_Rate_Evoked(unitIds); + rts(:,2) = All_Units.Mech_Laser_Rate_Evoked(unitIds); + [p, sig] = ranksum(rts(:,1), rts(:,2)); + fprintf([ruNames{unitGroup}, ' Mech Control vs Mech Laser p value: ', num2str(p), '\n']); + figure('Color', 'White', 'Name', [ruNames{unitGroup}, '_Evoked_Rates_ViolinPlot']); + hold on + + + [yCtr, xCtr] = ksdensity(rts(:,1),'Bandwidth',0.7); + patch(yCtr * -1,xCtr,colours(unitGroup,:),'EdgeAlpha',0.1,'FaceAlpha',0.2); + + [yCtr, xCtr] = ksdensity(rts(:,2),'Bandwidth',0.7); + patch(yCtr,xCtr,colours(unitGroup,:),'EdgeAlpha',0.1,'FaceAlpha',0.5); + + + + % plot(zeros(nUnits,1) - 0.0025, rts(:,1),... + % 'LineStyle','none', 'Marker', '*', 'Color', colour(unitGroup,:), 'MarkerSize', 2); + % + % plot(zeros(nUnits,1) + 0.0025, rts(:,2),... + % 'LineStyle','none', 'Marker', '*', 'Color', [0,0,1], 'MarkerSize', 2); + + medControl = median(rts(:,1)); + medLaser = median(rts(:,2)); + + + % leg = legend('Mech Control','Mech Laser', 'Location','northwest'); + % leg.Box = 'off'; + % leg.Location = 'northeast'; + + + + ax = gca; + ax.XAxis.Visible = 'off'; + ax.Title.String = ruNames{unitGroup}; + ax.FontName = 'Arial'; + ax.FontSize = 10; + xscale = max(abs(ax.XAxis.Limits)); + yMax = ax.YAxis.Limits(2); + yMax = round(max(yMax)+5, -1); + + + plot([-xscale/5,0], [medControl, medControl], 'LineStyle', '-', 'LineWidth', 1, 'Color', colours(unitGroup,:)); + plot([0,xscale/5], [medLaser, medLaser], 'LineStyle', '-', 'LineWidth', 1, 'Color', colours(unitGroup,:)); + + plot(zeros(nUnits,1) - xscale/50, rts(:,1),... + 'LineStyle','none', 'Marker', '*', 'Color', colours(unitGroup,:), 'MarkerSize', 2); + + plot(zeros(nUnits,1) + xscale/50, rts(:,2),... + 'LineStyle','none', 'Marker', '*', 'Color', colours(unitGroup,:), 'MarkerSize', 2); + + + %leg.String = [{'Mech Control'}, {'Mech + Laser'}, {'Population Median'}]; + ax.XAxis.Limits = [-xscale, xscale]; + ax.YAxis.Limits = [yMin, yMax]; + ax.YLabel.String = 'Firing Rate [Hz]'; + ax.XTick = []; + % ax.Visible = 'off'; +end + +% Firing Rates Violin Plots - One Plot + + +% Baseline vs Evoked Rates + +% yMax = [max(All_Units.Mech_Control_Rate_Spont), max(All_Units.Mech_Control_Rate_Evoked)]; +% yMin = 0; +figure('Color', 'White', 'Name','Baseline_vs_Evoked_Rates_ViolinPlot'); +for unitGroup = 1:nGroups + + + unitIds = idxMat(:,unitGroup)==true; + nUnits = sum(unitIds); + rts = NaN(nUnits, 2); + rts(:,1) = All_Units.Mech_Control_Rate_Spont(unitIds); + rts(:,2) = All_Units.Mech_Control_Rate_Evoked(unitIds); + + subplot(nGroups,1,unitGroup) + hold on + + + [yCtr, xCtr] = ksdensity(rts(:,1),'Bandwidth',0.7); + patch(yCtr * -1,xCtr,colours(unitGroup,:),'EdgeAlpha',0.1,'FaceAlpha',0.2); + + [yCtr, xCtr] = ksdensity(rts(:,2),'Bandwidth',0.7); + patch(yCtr,xCtr,colours(unitGroup,:),'EdgeAlpha',0.1,'FaceAlpha',0.5); + + + + % plot(zeros(nUnits,1) - 0.0025, rts(:,1),... + % 'LineStyle','none', 'Marker', '*', 'Color', colour(unitGroup,:), 'MarkerSize', 2); + % + % plot(zeros(nUnits,1) + 0.0025, rts(:,2),... + % 'LineStyle','none', 'Marker', '*', 'Color', [0,0,1], 'MarkerSize', 2); + + medControl = median(rts(:,1)); + medLaser = median(rts(:,2)); + + + leg = legend('Mech Control','Mech Laser', 'Location','northwest'); + leg.Box = 'off'; + leg.Location = 'northeast'; + + + + ax = gca; + ax.Title.String = ruNames{unitGroup}; + ax.FontName = 'Arial'; + ax.FontSize = 10; + xscale = max(abs(ax.XAxis.Limits)); + ax.XAxis.Visible = 'off'; + + + plot([-xscale/10,0], [medControl, medControl], 'LineStyle', '-', 'LineWidth', 1, 'Color', colours(unitGroup,:)); + plot([0,xscale/10], [medLaser, medLaser], 'LineStyle', '-', 'LineWidth', 1, 'Color', [0,0,1]); + + plot(zeros(nUnits,1) - xscale/50, rts(:,1),... + 'LineStyle','none', 'Marker', '*', 'Color', colours(unitGroup,:), 'MarkerSize', 2); + + plot(zeros(nUnits,1) + xscale/50, rts(:,2),... + 'LineStyle','none', 'Marker', '*', 'Color', [0,0,1], 'MarkerSize', 2); + + + leg.String = [{'Mech Control'}, {'Mech + Laser'}, {'Population Median'}]; + ax.XAxis.Limits = [-xscale, xscale]; + %ax.YAxis.Limits = [yMin, yMax]; + ax.YAxis.Limits(1) = 0; + ax.YLabel.String = 'Firing Rate [Hz]'; + ax.XTick = []; + % ax.Visible = 'off'; +end + + + + + + + + + +% Mech Control vs Mech Laser Rates - One Plot + + +% yMax = [max(All_Units.Mech_Control_Rate_Spont), max(All_Units.Mech_Control_Rate_Evoked)]; +% yMin = 0; +figure('Color', 'White', 'Name','Mech_Control_vs_Mech+Laser_Rates_ViolinPlot'); +for unitGroup = 1:nGroups + + + unitIds = idxMat(:,unitGroup)==true; + nUnits = sum(unitIds); + rts = NaN(nUnits, 2); + rts(:,1) = All_Units.Mech_Control_Rate_Evoked(unitIds); + rts(:,2) = All_Units.Mech_Laser_Rate_Evoked(unitIds); + + subplot(nGroups,1,unitGroup) + hold on + + + [yCtr, xCtr] = ksdensity(rts(:,1),'Bandwidth',0.7); + patch(yCtr * -1,xCtr,colours(unitGroup,:),'EdgeAlpha',0.1,'FaceAlpha',0.2); + + [yCtr, xCtr] = ksdensity(rts(:,2),'Bandwidth',0.7); + patch(yCtr,xCtr,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.2); + + + + % plot(zeros(nUnits,1) - 0.0025, rts(:,1),... + % 'LineStyle','none', 'Marker', '*', 'Color', colour(unitGroup,:), 'MarkerSize', 2); + % + % plot(zeros(nUnits,1) + 0.0025, rts(:,2),... + % 'LineStyle','none', 'Marker', '*', 'Color', [0,0,1], 'MarkerSize', 2); + + medControl = median(rts(:,1)); + medLaser = median(rts(:,2)); + + + leg = legend('Mech Control','Mech Laser', 'Location','northwest'); + leg.Box = 'off'; + leg.Location = 'northeast'; + + + + ax = gca; + ax.Title.String = ruNames{unitGroup}; + ax.FontName = 'Arial'; + ax.FontSize = 10; + xscale = max(abs(ax.XAxis.Limits)); + ax.XAxis.Visible = 'off'; + + + plot([-xscale/10,0], [medControl, medControl], 'LineStyle', '-', 'LineWidth', 1, 'Color', colours(unitGroup,:)); + plot([0,xscale/10], [medLaser, medLaser], 'LineStyle', '-', 'LineWidth', 1, 'Color', [0,0,1]); + + plot(zeros(nUnits,1) - xscale/50, rts(:,1),... + 'LineStyle','none', 'Marker', '*', 'Color', colours(unitGroup,:), 'MarkerSize', 2); + + plot(zeros(nUnits,1) + xscale/50, rts(:,2),... + 'LineStyle','none', 'Marker', '*', 'Color', [0,0,1], 'MarkerSize', 2); + + + leg.String = [{'Mech Control'}, {'Mech + Laser'}, {'Population Median'}]; + ax.XAxis.Limits = [-xscale, xscale]; + %ax.YAxis.Limits = [yMin, yMax]; + ax.YAxis.Limits(1) = 0; + ax.YLabel.String = 'Firing Rate [Hz]'; + ax.XTick = []; + % ax.Visible = 'off'; +end + +% Relative Rates Violin Plots + +figure('Color', 'White', 'Name','Relative_Rates_ViolinPlot'); +for unitGroup = 1:nGroups + + + unitIds = idxMat(:,unitGroup); + nUnits = sum(unitIds); + rts = NaN(nUnits, 2); + rts(:,1) = All_Units.Mech_Control_Rate_Evoked(unitIds)- All_Units.Mech_Control_Rate_Spont(unitIds); + rts(:,2) = All_Units.Mech_Laser_Rate_Evoked(unitIds) - All_Units.Mech_Laser_Rate_Spont(unitIds); + + + subplot(nGroups,1,unitGroup) + hold on + + + [yCtr, xCtr] = ksdensity(rts(:,1),'Bandwidth',0.7); + patch(yCtr * -1,xCtr,colours(unitGroup,:),'EdgeAlpha',0.1,'FaceAlpha',0.2); + + [yCtr, xCtr] = ksdensity(rts(:,2),'Bandwidth',0.7); + patch(yCtr,xCtr,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.2); + + + + % plot(zeros(nUnits,1) - 0.0025, rts(:,1),... + % 'LineStyle','none', 'Marker', '*', 'Color', colour(unitGroup,:), 'MarkerSize', 2); + % + % plot(zeros(nUnits,1) + 0.0025, rts(:,2),... + % 'LineStyle','none', 'Marker', '*', 'Color', [0,0,1], 'MarkerSize', 2); + + medControl = median(rts(:,1)); + medLaser = median(rts(:,2)); + + + leg = legend('Mech Control','Mech Laser', 'Location','northwest'); + leg.Box = 'off'; + leg.Location = 'northeast'; + + + + ax = gca; + ax.Title.String = ruNames{unitGroup}; + ax.FontName = 'Arial'; + ax.FontSize = 10; + xscale = max(abs(ax.XAxis.Limits)); + ax.XAxis.Visible = 'off'; + + + plot([-xscale/10,0], [medControl, medControl], 'LineStyle', '-', 'LineWidth', 1, 'Color', colours(unitGroup,:)); + plot([0,xscale/10], [medLaser, medLaser], 'LineStyle', '-', 'LineWidth', 1, 'Color', [0,0,1]); + + plot(zeros(nUnits,1) - xscale/50, rts(:,1),... + 'LineStyle','none', 'Marker', '*', 'Color', colours(unitGroup,:), 'MarkerSize', 2); + + plot(zeros(nUnits,1) + xscale/50, rts(:,2),... + 'LineStyle','none', 'Marker', '*', 'Color', [0,0,1], 'MarkerSize', 2); + + + leg.String = [{'Mech Control'}, {'Mech + Laser'}, {'Population Median'}]; + ax.XAxis.Limits = [-xscale, xscale]; + %ax.YAxis.Limits = [yMin, yMax]; + % ax.YAxis.Limits(1) = 0; + ax.YLabel.String = 'Relative Rate [Hz]'; + ax.XTick = []; + % ax.Visible = 'off'; +end + +% SNR Violin Plots + +figure('Color', 'White', 'Name','Signal_to_Noise_Ratio_ViolinPlot'); +for unitGroup = 1:nGroups + + + unitIds = idxMat(:,unitGroup); + nUnits = sum(unitIds); + rts = NaN(nUnits, 2); + rts(:,1) = All_Units.Mech_Control_Rate_Evoked(unitIds)./All_Units.Mech_Control_Rate_Spont(unitIds); + rts(:,2) = All_Units.Mech_Laser_Rate_Evoked(unitIds)./All_Units.Mech_Laser_Rate_Spont(unitIds); + + + subplot(nGroups,1,unitGroup) + hold on + + + [yCtr, xCtr] = ksdensity(rts(:,1),'Bandwidth',0.7); + patch(yCtr * -1,xCtr,colours(unitGroup,:),'EdgeAlpha',0.1,'FaceAlpha',0.2); + + [yCtr, xCtr] = ksdensity(rts(:,2),'Bandwidth',0.7); + patch(yCtr,xCtr,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.2); + + + + % plot(zeros(nUnits,1) - 0.0025, rts(:,1),... + % 'LineStyle','none', 'Marker', '*', 'Color', colour(unitGroup,:), 'MarkerSize', 2); + % + % plot(zeros(nUnits,1) + 0.0025, rts(:,2),... + % 'LineStyle','none', 'Marker', '*', 'Color', [0,0,1], 'MarkerSize', 2); + + medControl = median(rts(:,1)); + medLaser = median(rts(:,2)); + + + leg = legend('Mech Control','Mech Laser', 'Location','northwest'); + leg.Box = 'off'; + leg.Location = 'northeast'; + + + + ax = gca; + ax.Title.String = ruNames{unitGroup}; + ax.FontName = 'Arial'; + ax.FontSize = 10; + xscale = max(abs(ax.XAxis.Limits)); + ax.XAxis.Visible = 'off'; + + + plot([-xscale/10,0], [medControl, medControl], 'LineStyle', '-', 'LineWidth', 1, 'Color', colours(unitGroup,:)); + plot([0,xscale/10], [medLaser, medLaser], 'LineStyle', '-', 'LineWidth', 1, 'Color', [0,0,1]); + + plot(zeros(nUnits,1) - xscale/50, rts(:,1),... + 'LineStyle','none', 'Marker', '*', 'Color', colours(unitGroup,:), 'MarkerSize', 2); + + plot(zeros(nUnits,1) + xscale/50, rts(:,2),... + 'LineStyle','none', 'Marker', '*', 'Color', [0,0,1], 'MarkerSize', 2); + + + leg.String = [{'Mech Control'}, {'Mech + Laser'}, {'Population Median'}]; + ax.XAxis.Limits = [-xscale, xscale]; + %ax.YAxis.Limits = [yMin, yMax]; + % ax.YAxis.Limits(1) = 0; + ax.YLabel.String = 'Relative Rate [Hz]'; + ax.XTick = []; + % ax.Visible = 'off'; +end + +%% We can also plot the popPSTHs according to these groups + +red = [0.75, 0, 0]; +green = [0, 0.75, 0]; +blue = [0.25, 0.5, 1]; +purple = [0.5,0,0.5]; +grey = [0.5, 0.5, 0.5]; +csNames = fieldnames(Triggers); +colour = [green; red; blue]; +% ruIdx = filterIdx; +axLabel = 'Firing Rate [Hz]'; +for ccond = 1: length(consideredConditions) + ruIdxDim = size(ruIdx); + nFilters = ruIdxDim(2); + + fig = figure('Name',[expName,'_', consCondNames{ccond}],'Color',[1,1,1]); + fthAxFlag = false; + if ~exist('stims','var') + totlX = nFilters; + + elseif ~isempty(stims) + fthAxFlag = true; + totlX = nFilters + 1; + end + + + clrDivider = nFilters-1; + if nFilters <= 1 + clrDivider = nFilters; + end + + datclr = [green; red; blue]; + + for a = 1:nFilters + ax(a) = subplot(totlX,1,a,'Parent',fig); + [PSTHarray{a}(:,:,ccond), trig, sweeps] = getPSTH(discStack(ruIdx(:,a),:,:),timeLapse,... + ~delayFlags(:,ccond),binSz,fs); + + PSTH = PSTHarray{a}(:,:,ccond); + [Ncl, Npt] = size(PSTH); + PSTHn = PSTH./max(PSTH,[],2); + + + psthTX = linspace(timeLapse(1),timeLapse(2),Npt); + trigTX = linspace(timeLapse(1),timeLapse(2),size(trig,2)); + popPSTH = sum(PSTH,1,'omitnan')/(Ncl * sweeps * binSz); + plot(psthTX,popPSTH,'Color', colour(a,:)) + ax(a).XLabel.String = sprintf('Time_{%.2f ms} [s]',binSz*1e3); + ax(a).XLim = [timeLapse(1), timeLapse(2)]; + + ax(a).Box = 'off'; + ax(a).ClippingStyle = 'rectangle'; + legend(ax(a),'show','Location','northeast') + ruNames = [{'Group 3'}, {'Group 2'}, {'Group 1'}]; + ax(a).Legend.String = ruNames{a}; + ax(a).YAxis(1).Label.String = axLabel; + + end + ax(1).Title.String = consCondNames(ccond); + + ax2 = subplot(totlX,1,nFilters + 1,'Parent',fig); + + stims = mean(cst(:,:,delayFlags(:,ccond)),3); + stims = stims - median(stims,2); + for cs = 1:size(stims,1) + if abs(log10(var(stims(cs,:),[],2))) < 13 + [m,b] = lineariz(stims(cs,:),1,0); + stims(cs,:) = m*stims(cs,:) + b; + else + stims(cs,:) = zeros(1,Nt); + end + end + + [r,c] = size(stims); + + if r < c + stims = stims'; + stmClr = zeros(r, 3); + + end + + + stmClr([1,5,9]) = 1; + stmClr(stmClr == 0) = 0.25; + + + + for cs = 1:min(r,c) + if exist('IDs','var') + plot(ax2,trigTX,stims(:,cs),'LineStyle','-.','LineWidth',0.5,... + 'DisplayName', csNames{cs}, 'Color', stmClr(cs,:)) + else + plot(ax2,trigTX,stims(:,cs),'LineStyle','-.','LineWidth',0.5, 'Color', stmClr(cs,:)) + end + + + if cs == 1 + ax2.NextPlot = 'add'; + end + end + legend(ax2,'show','Location','best') + + ax2.Box = 'off'; + ax2.XLim = [timeLapse(1), timeLapse(2)]; + ax2.XAxis.Visible = 'off'; + ax2.YAxis.Visible = 'off'; + linkaxes([ax, ax2], 'x') + %end + + + + % + % Formatting the population PSTH plot + + ax2.YAxis(1).Limits = [0,1.01]; + ax2.Legend.String = csNames; + % + % + + % + % + clear PSTH + clear PSTHarray + clear ax + +end +% end + +clear ax +%% We can now look at individual units and their spiking responses to each stimulus over n trials in a Spike Raster plot + +csNames = fieldnames(Triggers); +% csNames = csNames(2:end); +IDs = csNames; +trigTX = linspace(timeLapse(1),timeLapse(2),size(trig,2)); + +rasterDir = fullfile(figureDir,'Rasters\'); +if ~mkdir(rasterDir) + fprintf(1,'There was an issue with the figure folder...\n'); +end + + +Power = NaN(length(consCondNames),1); +for cc = 1:length(consCondNames) + + mWfind = strfind(consCondNames{cc}, 'mW'); + + pwr = consCondNames{cc}(mWfind-2:mWfind+1); + if isnan(pwr) + pwrMissing = true; + elseif contains(pwr, '.') + pwr = consCondNames{cc}(mWfind-3:mWfind+1); + elseif contains(pwr, '_') || contains(pwr, ' ') + pwr = pwr(2:end); + end + pwr = str2double(pwr(1:end-2)); + Power(cc) = pwr; +end +pwrs = unique(Power); + + + +for b = 1:length(pwrs) + pwr = pwrs(b); + + pwrInd = Power == pwr; + clIDind = pclID; % {'365'}; % Change this to e.g. L6 or Group 1 to generate only these rasters + lngth = length(clIDind); + for a = 1:lngth + rng('default'); + cl = clIDind(a); + clSel = find(ismember(pclID, cl)); + + rasCondSel = find(pwrInd); + rasCond = consideredConditions(rasCondSel); + rasCondNames = consCondNames(rasCondSel); + Nrcl = numel(clSel); + % Reorganize the rasters in the required order. + clSub = find(ismember(gclID, pclID(clSel)))+1; + [rasIdx, rasOrd] = ismember(pclID(ordSubs), pclID(clSel)); + clSub = clSub(rasOrd(rasIdx)); + clSel = clSel(rasOrd(rasOrd ~= 0)); + Nma = min(Na(rasCondSel)); + rasFig = figure; + nPwrs = length(pwrs); + Nrcond = length(rasCond); + ax = gobjects(Nrcond*Nrcl,1); + lidx = 1; + cf = 1; + for cc = 1:length(rasCond) + % Equalize trial number + trigSubset = sort(randsample(Na(rasCondSel(cc)),Nma)); + tLoc = find(delayFlags(:,rasCondSel(cc))); + tSubs = tLoc(trigSubset); + % Trigger subset for stimulation shading + trigAlSubs = Conditions(rasCond(cc)).Triggers(trigSubset,:); + timeDur = round(diff(trigAlSubs, 1, 2)/fs, 3); + trigChange = find(diff(timeDur) ~= 0); + + for ccl = 1:Nrcl +% lidx = ccl + (cc - 1) * Nrcl; + ax(cf) = subplot(Nrcond*3,Nrcl, lidx:lidx+1); +% ax(lidx) = subplot(Nrcond, Nrcl, lidx); % subplot( Nrcl, Nrcond, lidx); % to plot the other way around + title(ax(cf),sprintf(rasCondNames{cc}), 'Interpreter', 'none') % ,pclID{clSel(ccl)} + plotRasterFromStack(discStack([1,clSub(ccl)],:,tSubs),... + timeLapse, fs,'',ax(cf)); + ax(cf).YAxisLocation = 'origin';ax(cf).YAxis.TickValues = Nma; + ax(cf).YAxis.Label.String = 'Trials'; + + xlabel(ax(cf), 'Time [s]') + initSub = 0; + optsRect = {'EdgeColor','none','FaceColor','none'}; + for ctr = 1:numel(trigChange) + rectangle('Position',[0, initSub,... + timeDur(trigChange(ctr)), trigChange(ctr)],optsRect{:}) + initSub = trigChange(ctr); + end + rectangle('Position', [0, initSub, timeDur(Nma),... + Nma - initSub],optsRect{:}) + + + stims = mean(cst(:,:,delayFlags(:,rasCondSel(cc))),3); + % stims = stims([2,3],:); + + stims = stims - median(stims,2); + + + + ax(cf).Title.String = rasCondNames(cc); + %ax1.Title.String = consCondNames(ccond); + % %if fthAxFlag + % ax2 = subplot(totlX,1,nFilters + 1,'Parent',fig); + cf = cf + 1; + ax(cf) = subplot(Nrcond*3, Nrcl, lidx+2); + lidx = lidx+3; +% stims = mean(cst(:,:,delayFlags(:,ccond)),3); +% stims = stims - median(stims,2); + for cs = 1:size(stims,1) + if abs(log10(var(stims(cs,:),[],2))) < 13 + [m,b] = lineariz(stims(cs,:),1,0); + stims(cs,:) = m*stims(cs,:) + b; + else + stims(cs,:) = zeros(1,Nt); + end + end + + [r,c] = size(stims); + + if r < c + stims = stims'; + stmClr = zeros(r, 3); + + end + + + stmClr([1,5,9]) = 1; + stmClr(stmClr == 0) = 0.25; + + + + for cs = 1:min(r,c) + if exist('IDs','var') + plot(ax(cf),trigTX,stims(:,cs),'LineStyle','-','LineWidth',0.5,... + 'DisplayName', csNames{cs}, 'Color', stmClr(cs,:)) + else + plot(ax(cf),trigTX,stims(:,cs),'LineStyle','-','LineWidth',0.5, 'Color', stmClr(cs,:)) + end + + + if cs == 1 + ax(cf).NextPlot = 'add'; + end + end + legend(ax(cf),'show','Location','best') + + ax(cf).Box = 'off'; + ax(cf).XLim = [timeLapse(1), timeLapse(2)]; + ax(cf).XAxis.Visible = 'off'; + ax(cf).YAxis.Visible = 'off'; +% linkaxes([ax, ax2], 'x') + + + + + + + + ax(cf).YAxis(1).Limits = [0,1.01]; + ax(cf).Legend.String = csNames; + + + + + + rasConds = rasCondNames{1}; + if length(rasCondNames) > 1 + for r = 2:length(rasCondNames) + rasConds = [rasConds, '+', rasCondNames{r}]; + end + end + + linkaxes(ax,'x') + rasFigName = ['Unit_', cell2mat(cl), '_', ]; + rasFig.Name = [rasFigName, '_', num2str(pwr), 'mW']; + configureFigureToPDF (rasFig); + set(rasFig, 'Position', get(0, 'ScreenSize')); + cf = cf+1; +% + end + end + saveas(rasFig,fullfile(rasterDir, [rasFigName,'_',rasConds,'_', num2str(timeLapse(1)), '_to_', num2str(timeLapse(2)),'.emf'])); +% %savefig(rasFig,fullfile(rasterDir, [rasFigName, ' ', num2str(pwr), 'mW.fig'])); +% savefig(rasFig,fullfile(rasterDir, [rasFigName,'_',rasConds, '.fig'])); + end +end + +% close all + +%% ISI analysis - + + +% Computing the Triggered ISIs + + +% Getting the ActiveUnit ISIs from sortedData +ind = ismember(gclID,(clInfo.id(clInfo.Mech_Control_7mW_R==true))); +% gclID = clInfo.id(ind == true); +% ind = ismember(sortedData(:,1), gclID(wruIdx,1)); +% ind = ismember(sortedData(:,1), gclID(wru)); +Ncl = sum(ind); +spkSubs = cellfun(@(x) round(x.*fs), sortedData(ind,2),... + 'UniformOutput', false); +ISIVals = cellfun(@(x) [x(1)/fs; diff(x)/fs], spkSubs,... + 'UniformOutput', 0); +NnzvPcl = cellfun(@numel,ISIVals); +Nnzv = sum(NnzvPcl); +rows = cell2mat(arrayfun(@(x,y) repmat(x,y,1), (1:Ncl)', NnzvPcl,... + 'UniformOutput', 0)); +cols = cell2mat(spkSubs); +vals = cell2mat(ISIVals); +ISIspar = sparse(rows, cols, vals); + +% Creating the TrigISIs Struct + + +ConsConds = cchCond; +nCond = length(ConsConds); +% sortedData = sortedData(:,1); +for chCond = 1:nCond + TrigISIs.name = Conditions(cchCond(chCond)).name; + TrigISIs.Vals(1).name = 'Spontaneous'; + TrigISIs.Vals(2).name = 'Evoked'; + + + % Adding ISIs to TrigISIs + spontaneousWindow = -flip(responseWindow); + + + + + % contains will give multiple units when looking for e.g. cl45 + % spkLog = StepWaveform.subs2idx(round(sortedData{goods(1),2}*fs),Ns); + % spkSubs replaces round(sortedData{goods(1),2}*fs) for the rest of the + % clusters + % Subscript column vectors for the rest good clusters + for wIndex = 1:2 + if wIndex == 1 + Window = spontaneousWindow; + else + Window = responseWindow; + end + [~, isiStack] = getStacks(false,Conditions(cchCond(chCond)).Triggers, onOffStr,... + Window,fs,fs,[],ISIspar); + lInda = isiStack > 0; + % timelapse becomes spontaneousWindow for pre-trigger, and responseWindow + % for post + TrigISIs.Vals(wIndex).TriggeredIsI = isiStack; + for histInd = 1: Ncl + figure('Visible','off'); + hisi = histogram(log10(isiStack(histInd,:,:)), 'BinEdges', log10(0.0001):0.01:log10(10)); + TrigISIs.Vals(wIndex).cts{histInd} = hisi.BinCounts; + TrigISIs.Vals(wIndex).bns{histInd} = (hisi.BinEdges(1:end-1) + hisi.BinEdges(2:end))/2; + + close gcf; + end + end + + % ISIs and CumISIs + + for a = 1:length(TrigISIs.Vals(wIndex).cts) + TrigISIs.Vals(1).ISI{a} = TrigISIs.Vals(1).cts{a}./sum(TrigISIs.Vals(1).cts{a}); + TrigISIs.Vals(2).ISI{a} = TrigISIs.Vals(2).cts{a}./sum(TrigISIs.Vals(2).cts{a}); + TrigISIs.Vals(1).CumISI{a} = cumsum(TrigISIs.Vals(1).ISI{a}); + TrigISIs.Vals(2).CumISI{a} = cumsum(TrigISIs.Vals(2).ISI{a}); + end + + + + % Plotting the ISIs + + + figure('Color', 'White', 'Name', [TrigISIs.name]); + hold on + for wIndex = 1:2 + CondNames = {'Baseline', 'Evoked'}; + clr = {[0.5, 0, 0], [0, 1, 1]}; + IsiStack = zeros(length(TrigISIs.Vals(wIndex).ISI), length(TrigISIs.Vals(wIndex).ISI{1})); + cumIsiStack = zeros(length(TrigISIs.Vals(wIndex).CumISI), length(TrigISIs.Vals(wIndex).CumISI{1})); + for cInd = 1:length(TrigISIs.Vals(wIndex).CumISI) + IsiStack(cInd,:) = TrigISIs.Vals(wIndex).ISI{cInd}; + cumIsiStack(cInd,:) = TrigISIs.Vals(wIndex).CumISI{cInd}; + end + % Getting rid of NaNs + cumIsiStack(length(TrigISIs.Vals(wIndex).CumISI) + 1,:) = NaN; + IsiStack(length(TrigISIs.Vals(wIndex).ISI) + 1,:) = NaN; + cumIndNaN = (length(TrigISIs.Vals(wIndex).CumISI) + 1); + for nInd = 1:(length(TrigISIs.Vals(wIndex).CumISI)) + if isnan(cumIsiStack(nInd,:)) == true + cumIndNaN = [cumIndNaN; nInd]; + end + end + cumIndNaN = sort(cumIndNaN, 'descend'); + cumIsiStack(cumIndNaN,:) =[]; + IsiStack(cumIndNaN,:) = []; + stckSz = size(cumIsiStack); + ISIcum = sum(cumIsiStack)/stckSz(1); + % Only if the bin widths are constant!!! + plot(TrigISIs(1).Vals(1).bns{1}, ISIcum, 'Color', clr{wIndex}) + end + legend(CondNames) + ylabel('Cumulative Fraction'); + xlabel('ISI (msecs)'); + xlim([-4, 1]); + xticks([-4:1]) + ylim([0, 1]); + fig = gcf; + ax = gca; + ax.FontSize = 20; + ax.XTickLabel = 10.^cellfun(@str2double,ax.XTickLabel) * 1e3; +end +%% +% We've now come to the end of the tutorial script. Please feel free to try +% uot other conditions, bin sizes, optotagging paramters etc. Just play +% around with it until you get bored. diff --git a/Ross/IsiStructs.m b/Ross/IsiStructs.m new file mode 100644 index 0000000..aab3391 --- /dev/null +++ b/Ross/IsiStructs.m @@ -0,0 +1,70 @@ +for a = 1:length(ISIhist) + IsiStruct(a).name = ISIhist(a).name; + IsiStruct(a).Stacks(1).name = 'Baseline'; + IsiStruct(a).Stacks(1).ISIs = ISIhist(a).Vals(1).TriggeredIsI; + IsiStruct(a).Stacks(2).name = 'Evoked'; + IsiStruct(a).Stacks(2).ISIs = ISIhist(a).Vals(2).TriggeredIsI; + + % Unit ReturnMap loop (Baseline) + clear new; + for cu = 1:length(IsiStruct(a).Stacks(1).ISIs(:,1,1)) + firstTrialISIs = IsiStruct(a).Stacks(1).ISIs(cu,:,1); + ftInd = firstTrialISIs ~= 0; + firstTrialISIs = firstTrialISIs(ftInd); + current = firstTrialISIs(1:end-1); + next = firstTrialISIs(2:end); + isiReturnMap = [current', next']; + + + for ct = 2:length(IsiStruct(a).Stacks(1).ISIs(cu,1,:)) + TrialISIs = IsiStruct(a).Stacks(1).ISIs(cu,:,ct); + tInd = TrialISIs ~= 0; + TrialISIs = TrialISIs(tInd); + current = TrialISIs(1:end-1); + next = TrialISIs(2:end); + new = [current', next']; + isiReturnMap = [isiReturnMap; new]; + end + IsiStruct(a).Stacks(1).ReturnMap(cu).Unit = isiReturnMap; + end + + % Condition ReturnMap loop (Baseline) + IsiStruct(a).Stacks(1).ConditionMap = IsiStruct(a).Stacks(1).ReturnMap(1).Unit; + for cu = 2:length(IsiStruct(a).Stacks(1).ReturnMap) + IsiStruct(a).Stacks(1).ConditionMap = [IsiStruct(a).Stacks(1).ConditionMap; IsiStruct(a).Stacks(1).ReturnMap(cu).Unit]; + end + + + + + % Unit ReturnMap loop (Evoked) + clear new; + for cu = 1:length(IsiStruct(a).Stacks(2).ISIs(:,1,1)) + firstTrialISIs = IsiStruct(a).Stacks(2).ISIs(cu,:,1); + ftInd = firstTrialISIs ~= 0; + firstTrialISIs = firstTrialISIs(ftInd); + current = firstTrialISIs(1:end-1); + next = firstTrialISIs(2:end); + isiReturnMap = [current', next']; + + + for ct = 2:length(IsiStruct(a).Stacks(2).ISIs(cu,1,:)) + TrialISIs = IsiStruct(a).Stacks(2).ISIs(cu,:,ct); + tInd = TrialISIs ~= 0; + TrialISIs = TrialISIs(tInd); + current = TrialISIs(1:end-1); + next = TrialISIs(2:end); + new = [current', next']; + isiReturnMap = [isiReturnMap; new]; + end + IsiStruct(a).Stacks(2).ReturnMap(cu).Unit = isiReturnMap; + end + + % Condition ReturnMap loop (Evoked) + IsiStruct(a).Stacks(2).ConditionMap = IsiStruct(a).Stacks(2).ReturnMap(1).Unit; + for cu = 2:length(IsiStruct(a).Stacks(2).ReturnMap) + IsiStruct(a).Stacks(2).ConditionMap = [IsiStruct(a).Stacks(2).ConditionMap;IsiStruct(a).Stacks(2).ReturnMap(cu).Unit]; + end + +end +save(fullfile(dataDir,[expName,'_ISI_Struct.mat']), 'IsiStruct', '-v7.3'); diff --git a/Ross/JoinCts.m b/Ross/JoinCts.m new file mode 100644 index 0000000..227a057 --- /dev/null +++ b/Ross/JoinCts.m @@ -0,0 +1,10 @@ +CFA.SpontCts = CFAisi(1).Vals(1).cts; +for a = 2:length(CFAisi) +CFA.SpontCts = CFA.SpontCts + CFAisi(a).Vals(1).cts; +end +CFA.EvokedCts = CFAisi(1).Vals(2).cts; +for a = [4, 7] +CFA.EvokedCts = CFA.EvokedCts + CFAisi(a).Vals(2).cts; +end +CFA.bns = CFAisi(1).Vals(2).bns; +save(fullfile('Z:\Ross\Experiments\VPL\VPL_CFA','CFA_Spont&Evoked.mat'), 'CFA', '-v7.3'); \ No newline at end of file diff --git a/Ross/KobayashiPrep.m b/Ross/KobayashiPrep.m new file mode 100644 index 0000000..4bc0841 --- /dev/null +++ b/Ross/KobayashiPrep.m @@ -0,0 +1,44 @@ +function iOK = KobayashiPrep(dataDir, sortedData, Conditions, Triggers, fs) +iOK = false; + + +% Creating the Kobayashi directory +KobaDir = fullfile(dataDir,'Kobayashi\'); +if ~mkdir(KobaDir) + fprintf(1,'There was an issue with the figure folder...\n'); +end + +%% Finding goods + +% Number of total samples +Ns = min(structfun(@numel,Triggers)); +% Total duration of the recording +Nt = Ns/fs; +% Useless clusters (labeled as noise or they have very low firing rate) +badsIdx = cellfun(@(x) x==3,sortedData(:,3)); +bads = find(badsIdx); +totSpkCount = cellfun(@numel,sortedData(:,2)); +clusterSpikeRate = totSpkCount/Nt; +silentUnits = clusterSpikeRate < 0.1; +bads = union(bads,find(silentUnits)); +goods = setdiff(1:size(sortedData,1),bads); + +%% Finding Spontaneous activity of good clusters +spkSubs = cellfun(@(x) round(x.*fs), sortedData(goods,2),... + 'UniformOutput', false); +[FR, ~, sponSpks, ~] = getSpontFireFreq(spkSubs, Conditions(1).Triggers, [0, Nt], fs, 2); +%% Saving Spikes in Kobayashi format +sponSpks = cellfun(@(x) (x/fs)*1e3, sponSpks,... + 'UniformOutput', false); +formatSpec = '%f \n'; +ind = FR > 0.5; % Take only units with spont rate over a certain threshold (GLM complains if 0.1 or under) + +sponSpks = sponSpks(find(ind)); +for a = 1:length(sponSpks) + fileID = fopen([KobaDir, ['cell', num2str(a-1)], '.txt'], 'w'); + fprintf(fileID, formatSpec, sponSpks{a}); + fclose(fileID); +end + +iOK = true; +end diff --git a/Ross/M6_Population_Separation_22.2.22 b/Ross/M6_Population_Separation_22.2.22 new file mode 100644 index 0000000..32647fe Binary files /dev/null and b/Ross/M6_Population_Separation_22.2.22 differ diff --git a/Ross/MRpie.m b/Ross/MRpie.m new file mode 100644 index 0000000..7ab5f58 --- /dev/null +++ b/Ross/MRpie.m @@ -0,0 +1,83 @@ +%% MR Pie Charts + +red = [0.75, 0, 0]; +green = [0, 0.75, 0]; +blue = [0.25, 0.5, 1]; + +ruNames = {'VPL'}; %[{'Group 1'}, {'Group 2'}, {'L6'}]; + +% LatertblInd = ismember(clInfo.id, Later); +% LatesttblInd = ismember(clInfo.id, Latest); +% L6tblInd = ismember(clInfo.id, L6); +mrControl = clInfo.Mech_Control_15mW_MR; +mrLaser = clInfo.Mech_Laser_15mW_MR; +mCinc = clInfo.Mech_Control_15mW_Counts_Evoked > clInfo.Mech_Control_15mW_Counts_Spont; mCinc = mCinc/diff(responseWindow); +mLinc = clInfo.Mech_Laser_15mW_Counts_Evoked > clInfo.Mech_Laser_15mW_Counts_Spont; mLinc = mLinc/diff(responseWindow); + +inds = clInfo.ActiveUnit; % [LatertblInd, LatesttblInd, L6tblInd]; +colours = [red; green; blue]; +purple = [0.5,0,0.5]; +ruIdxDim = size(ruIdx); +nFilters = ruIdxDim(2); + +for p = 1:nFilters + nCl = sum(inds(:,p)); + nMRcontrol = sum(inds(:,p) & mrControl & mCinc); + nMRlaser = sum(inds(:,p) & mrLaser & mLinc); + + figure('Color', 'White', 'Name', [ruNames{p}, '_MR_PieCharts']); + + subplot(2,1,1) + dataControl = [nCl-nMRcontrol, nMRcontrol]; + explode = [1,1]; + pie(dataControl, explode) + + ax = gca; + axSz = size(ax.Children,1); + if axSz > 2 + ax.Children(2).EdgeColor = [1,1,1]; + ax.Children(2).FaceColor = purple; + ax.Children(4).EdgeColor = [1,1,1]; + ax.Children(4).FaceColor = 0.5 * ones(1,3); + + else + ax.Children(2).EdgeColor = [1,1,1]; + ax.Children(2).FaceColor = 0.5 * ones(1,3); + end + + leg = legend({'Non-Responsive', 'Increased Firing Rate [Hz]'}); + leg.FontSize = 10; + leg.Location = 'eastoutside'; + leg.Box = 'off'; + ax.FontName = 'Arial'; + ax.FontSize = 15; + ax.Title.String = 'Mech Control'; + + + subplot(2,1,2) + dataLaser = [nCl-nMRlaser, nMRlaser]; + explode = [1,0]; + pie(dataLaser, explode) + + ax = gca; + axSz = size(ax.Children,1); + if axSz > 2 + ax.Children(2).EdgeColor = [1,1,1]; + ax.Children(2).FaceColor = purple; + ax.Children(4).EdgeColor = [1,1,1]; + ax.Children(4).FaceColor = 0.5 * ones(1,3); + + else + ax.Children(2).EdgeColor = [1,1,1]; + ax.Children(2).FaceColor = 0.5 * ones(1,3); + end + + + ax.Title.String = 'Mech + Laser'; + leg = legend({'Non-Responsive', 'Increased Firing Rate [Hz]'}); + leg.Location = 'eastoutside'; + leg.Box = 'off'; + leg.FontSize = 10; + ax.FontName = 'Arial'; + ax.FontSize = 15; +end \ No newline at end of file diff --git a/Ross/Optotag.m b/Ross/Optotag.m new file mode 100644 index 0000000..a1840ea --- /dev/null +++ b/Ross/Optotag.m @@ -0,0 +1,225 @@ +function [TaggedIDs, fig] = Optotag(latencyCutoffs, sdCutoffs, clInfo, clIDs, ConditionName, TriggerTimes, sortedData, samplingFrequency) +fs = samplingFrequency; +clInd = ismember(clInfo.id, clIDs); +depths = table(clInfo.id(clInd), clInfo.abs_depth(clInd)); +depths = sortrows(depths,'Var2','ascend'); +ID = depths{:,1}; +depth = depths.Var2; +spkInd = []; +for i = 1:length(ID) + spkInd = [spkInd; find(ismember(sortedData(:,1), ID(i)))]; +end +name = ConditionName; +name(strfind(name, '_')) = ' '; +name = ['Optotagging: ', name]; +tm = 5e-2; +[Latencies, Fidelities] = TriggerLatencies(sortedData(spkInd,2), TriggerTimes, fs, tm); +mn = (cellfun(@mean, Latencies)*1e3); +sd = (cellfun(@std, Latencies)*1e3); +rng('default'); +jitter = randi(20,size(depth)); +depth = depth + jitter; % adding small jitter for visualisation +depth = -1*depth; + +% Removing and highlighting dodgy units from plot +lowestLat = 0.5; %latencyCutoffs(1); +lowestSD = 0; %sdCutoffs(1); +dodgyMean = ID(find(mn -500 & depth < -300; +taggedInd = spkInd(tagged); +TaggedIDs = sortedData(taggedInd,1); +nontagged = ~tagged & ~nan; + +minDepth = depth(min(find(tagged))); +maxDepth = depth(max(find(tagged))); + +fig = figure('Name', name, 'Color', 'White'); + +subplot(3,2,2) +x = [sum(nontagged), sum(tagged)]; +explode = [0, 1]; +% labels = {['Tagged Fraction = ',num2str(tg), '%'], ' '}; +pie(x, explode) +ax = gca; +ax.FontName = 'Arial'; +if sum(tagged) > 0 + ax.Children(2).FaceColor = [0, 0.5, 1]; + ax.Children(4).FaceColor = [0.5 0.5 0.5]; +else + ax.Children(2).FaceColor = [0.5 0.5 0.5]; +end +ax.FontSize = 15; +% ax.FontName = 'Times New Roman'; + +% Formatting (text is in weird place if there are no tagged cells) + +if sum(tagged) == 0 + lgd = legend; + lgd.String{1} = ['Untagged']; + text(-5,1.0,['Selection Criteria:'],'FontSize', 15 ); + text(-5,0.75,['Mean Latencies between ' num2str(latencyCutoffs(1)), ' and ',num2str(latencyCutoffs(2)), 'ms'], 'FontSize', 10); + text(-5,0.50,['Standard Deviations between ' num2str(sdCutoffs(1)), ' and ',num2str(sdCutoffs(2)), 'ms'], 'FontSize', 10); + text(-5,-0.25,'Opto-tagged Units Displayed:', 'FontSize', 15); + text(-5,-0.5,['Depths between ' num2str(minDepth), ' and ',num2str(maxDepth), '\mum'], 'Interpreter', 'tex', 'FontSize', 10); + lgd.String{2} = ['Opto-tagged']; + lgd.Location = 'northoutside'; + %lgd.Box = 'off'; + +else + lgd = legend; + lgd.String{1} = ['Untagged']; + text(-6,1.5,['Selection Criteria:'],'FontSize', 15 ); + text(-6,1,['Mean Latencies between ' num2str(latencyCutoffs(1)), ' and ',num2str(latencyCutoffs(2)), 'ms'], 'FontSize', 10); + text(-6,0.50,['Standard Deviations between ' num2str(sdCutoffs(1)), ' and ',num2str(sdCutoffs(2)), 'ms'], 'FontSize', 10); + text(-6,-0.5,'Opto-tagged Units Displayed:', 'FontSize', 15); + text(-6,-1,['Depths between ' num2str(minDepth), ' and ',num2str(maxDepth), '\mum'], 'Interpreter', 'tex', 'FontSize', 10); + lgd.String{2} = ['Opto-tagged']; + lgd.Location = 'northoutside'; + %lgd.Box = 'off'; +end +subplot(3,2,4) + +scatter(mn(~tagged),sd(~tagged), 1+4*fd(~tagged), [0.5, 0.5, 0.5], '*') +hold on +scatter(mn(tagged),sd(tagged),1+4*fd(tagged), [0, 0.5, 1], '*') +hold off +pulseWidth = round(median(diff(TriggerTimes'/fs)')*1e3); +% title(name, 'Interpreter', 'none'); +ylim([0,round(round(max(sd))+5,-1)]); +%yticks([round(round(min(Dpth),-2)/2,-2)*2-200:200:0]); +xlim([0 tm*1e3]); +xticks(0:5:tm*1e3); +xlabel('First-Spike Latency [ms]'); +ylabel('StdDev [ms]', 'Interpreter', 'tex') +% ax.XTickLabelRotation = -45; +ax = gca; +hold on +laser = plot([0:pulseWidth], (ax.YLim(2))*ones(pulseWidth + 1,1), 'Color', [0 1 1 0.5], 'LineWidth', 3); +ax = gca; +ax.FontName = 'Arial'; +ax.FontSize = 20; +% ax.FontName = 'Times New Roman'; +% Create rectangle +%lsText = text(3, ax.YLim(1)+45, 'Laser Pulse', 'FontSize', 10); + +lgd = legend; +lgd.String{1} = ['Units (n=', num2str(sum(nontagged)), ')']; +lgd.String{2} = ['Opto-tagged Units (n=', num2str(sum(tagged)), ')']; +lgd.String{3} = ['Laser Pulse (',num2str(pulseWidth), 'ms)']; + +% rectangle(ax, 'Position', [1, ax.YLim(2)-100, 4, 50], ... +% 'LineStyle', 'none', 'FaceColor', [0 1 1 0.5]) + +rectangle(ax, 'Position', [ax.XLim(1), ax.YLim(1), pulseWidth, ax.YLim(2) - ax.YLim(1)], ... + 'LineStyle', 'none', 'FaceColor', [0 1 1 0.1]) +lgd.FontSize = 8; + + +subplot(1,2,1) + +errorbar(mn(~tagged),depth(~tagged),sd(~tagged), 'horizontal', 'LineStyle', 'none', 'Marker', 'd', 'Color', [0.5, 0.5, 0.5], 'MarkerSize', 2.5, 'LineWidth', 0.01, 'CapSize', 0, 'MarkerFaceColor',[0.5,0.5,0.5]); +hold on +errorbar(mn(tagged),depth(tagged),sd(tagged), 'horizontal', 'LineStyle', 'none', 'Marker', 'd', 'Color',[0, 0.5, 1], 'MarkerSize', 2.5, 'LineWidth', 0.01, 'CapSize', 0, 'MarkerFaceColor',[0,0.5,1]); +hold off + + +pulseWidth = round(median(diff(TriggerTimes'/fs)')*1e3); +% title(name, 'Interpreter', 'none'); +ylim([round(round(min(depth),-2)/2,-2)*2-200,0]); +yticks([round(round(min(depth),-2)/2,-2)*2-200:200:0]); +xlim([0 tm*1e3]); +xticks(0:5:tm*1e3); +xlabel('First-Spike Latency [ms]'); +ylabel('Unit Depth [\mum]', 'Interpreter', 'tex') +% ax.XTickLabelRotation = -45; +ax = gca; +hold on +laser = plot([0:pulseWidth], ax.YLim(2)*ones(pulseWidth + 1,1), 'Color', [0 1 1 0.5], 'LineWidth', 3); +ax = gca; +ax.FontName = 'Arial'; +ax.FontSize = 20; +% ax.FontName = 'Times New Roman'; +% Create rectangle +% lsText = text(3, ax.YLim(1)+45, 'Laser Pulse', 'FontSize', 10); + +lgd = legend; +lgd.String{1} = (['Unit Mean +/- SD (n=', num2str(sum(nontagged)), ')']); +lgd.String{2} = (['Opto-tagged Units (n=', num2str(sum(tagged)), ')']); +lgd.String{3} = ['Laser Pulse (',num2str(pulseWidth), 'ms)']; +% rectangle(ax, 'Position', [1, ax.YLim(2)-100, 4, 50], ... +% 'LineStyle', 'none', 'FaceColor', [0 1 1 0.5]) + +rectangle(ax, 'Position', [ax.XLim(1), ax.YLim(1), pulseWidth, ax.YLim(2) - ax.YLim(1)], ... + 'LineStyle', 'none', 'FaceColor', [0 1 1 0.1]) +lgd.FontSize = 8; + +subplot(3,2,6) + +h = histogram(round(mn(~tagged))); +h.FaceColor = [0.5, 0.5, 0.5]; +hold on +j = histogram(round(mn(tagged))); +j.FaceColor = [0, 0.5, 1]; +hold off + +pulseWidth = round(median(diff(TriggerTimes'/fs)')*1e3); +% title(name, 'Interpreter', 'none'); +% ylim([0,sum(mode(round(mn)+5))]); +%yticks([round(round(min(Dpth),-2)/2,-2)*2-200:200:0]); +xlim([0 tm*1e3]); +xticks(0:5:tm*1e3); +yMax = max([max(h.BinCounts), max(j.BinCounts)]); +ylim([0, round(yMax + 5, -1)]); +xlabel('First-Spike Latency [ms]'); +ylabel('Frequency [no. of units]', 'Interpreter', 'tex') +% ax.XTickLabelRotation = -45; +ax = gca; +ax.FontName = 'Arial'; +laserLngth = linspace(0, pulseWidth + 0.5); +hold on +laser = plot(laserLngth, (ax.YLim(2))*ones(length(laserLngth),1), 'Color', [0 1 1 0.5], 'LineWidth', 3); +ax.FontSize = 20; +% ax.FontName = 'Times New Roman'; +% Create rectangle +%lsText = text(3, ax.YLim(1)+45, 'Laser Pulse', 'FontSize', 10); + + +rectangle(ax, 'Position', [ax.XLim(1), ax.YLim(1), pulseWidth + 0.5, ax.YLim(2) - ax.YLim(1)], ... + 'LineStyle', 'none', 'FaceColor', [0 1 1 0.1]) + +lgd = legend; +lgd.String{1} = ['Units (n=', num2str(sum(nontagged)), ')']; +lgd.String{2} = ['Opto-tagged Units (n=', num2str(sum(tagged)), ')']; +lgd.String{3} = ['Laser Pulse (',num2str(pulseWidth), 'ms)']; +lgd.FontSize = 8; + +idxTagged = ismember(clInfo.id, TaggedIDs); +if ~any(ismember(clInfo.Properties.VariableNames,'Tagged')) + clInfo = addvars(clInfo,idxTagged,'After','ActiveUnit',... + 'NewVariableNames','Tagged'); +end + +end + + diff --git a/Ross/OptotagMUA.m b/Ross/OptotagMUA.m new file mode 100644 index 0000000..e5e96dc --- /dev/null +++ b/Ross/OptotagMUA.m @@ -0,0 +1,259 @@ +function [TaggedIDs, fig] = OptotagMUA(figureDir, latencyCutoffs, sdCutoffs, clInfo, clIDs, ConditionName, TriggerTimes, sortedData, samplingFrequency) + + + +layer = 'L5'; +% expNames = {'M5', 'M6', 'M7'}; + +fs = samplingFrequency; +clInd = ismember(clInfo.id, clIDs); +depths = table(clInfo.id(clInd), clInfo.abs_depth(clInd)); +depths = sortrows(depths,'Var2','ascend'); +ID = depths{:,1}; +depth = depths.Var2; +spkInd = []; +for i = 1:length(ID) + spkInd = [spkInd; find(ismember(sortedData(:,1), ID(i)))]; +end +name = ConditionName; +% name(strfind(name, '_')) = ' '; +name = ['Optotagging_', name]; +tm = 2.5e-2; +[Latencies, Fidelities] = TriggerLatencies(sortedData(spkInd,2), TriggerTimes, fs, tm); +mn = (cellfun(@mean, Latencies)*1e3); +sd = (cellfun(@std, Latencies)*1e3); +rng('default'); +jitter = randi(20,size(depth)); +depth = depth + jitter; % adding small jitter for visualisation +depth = -1*depth; + +% Removing and highlighting dodgy units from plot +lowestLat = latencyCutoffs(1); +lowestSD = sdCutoffs(1); +dodgyMean = ID(find(mn -500 & depth < -300; +taggedInd = spkInd(tagged); +TaggedIDs = sortedData(taggedInd,1); +nontagged = ~tagged & ~nan; + +minDepth = depth(min(find(tagged))); +maxDepth = depth(max(find(tagged))); + +fig = figure('Name', [name, '_pie'], 'Color', 'White'); + +% subplot(2,2,1) +% subplot(3,2,2) + +x = [sum(nontagged), sum(tagged)]; +explode = [0, 1]; +% labels = {['Tagged Fraction = ',num2str(tg), '%'], ' '}; +pie(x, explode) +ax = gca; +ax.FontName = 'Arial'; +if sum(tagged) > 0 + ax.Children(2).FaceColor = [0, 0.5, 1]; + ax.Children(4).FaceColor = [0.5 0.5 0.5]; +else + ax.Children(2).FaceColor = [0.5 0.5 0.5]; +end +ax.FontSize = 10; +% ax.FontName = 'Times New Roman'; +set(fig, 'Position', [1.6810, 0.2794, 0.5, 0.5]*1.0e+03); + +% Formatting (text is in weird place if there are no tagged cells) +xAx = ax.XLim(1) - diff(ax.XLim)/6; +yAx = ax.YLim(1) + diff(ax.YLim)/1.75; +if sum(tagged) == 0 + lgd = legend; + lgd.String{1} = ['Untagged']; + text(ax,xAx,yAx+1.0,['Selection Criteria:'],'FontSize', 10 ); + text(ax,xAx,yAx+0.75,['Mean Latencies between ' num2str(latencyCutoffs(1)), ' and ',num2str(latencyCutoffs(2)), 'ms'], 'FontSize', 10); + text(ax,xAx,yAx+0.50,['Standard Deviations between ' num2str(sdCutoffs(1)), ' and ',num2str(sdCutoffs(2)), 'ms'], 'FontSize', 10); + text(ax,xAx,yAx-0.25,'Opto-tagged Units Displayed:', 'FontSize', 10); + text(ax,xAx,yAx-0.5,['Depths between ' num2str(minDepth), ' and ',num2str(maxDepth), '\mum'], 'Interpreter', 'tex', 'FontSize', 10); + lgd.String{2} = ['Opto-tagged']; + lgd.Location = 'northoutside'; + %lgd.Box = 'off'; + +else + lgd = legend; + lgd.String{1} = ['Untagged']; + text(ax,xAx,yAx+1.25,['Selection Criteria:'],'FontSize', 10 ); + text(ax,xAx,yAx+1,['Mean Latencies between ' num2str(latencyCutoffs(1)), ' and ',num2str(latencyCutoffs(2)), 'ms'], 'FontSize', 10); + text(ax,xAx,yAx+0.75,['Standard Deviations between ' num2str(sdCutoffs(1)), ' and ',num2str(sdCutoffs(2)), 'ms'], 'FontSize', 10); + text(ax,xAx,yAx,'Opto-tagged Units Displayed:', 'FontSize', 10); + text(ax,xAx,yAx-0.25,['Depths between ' num2str(minDepth), ' and ',num2str(maxDepth), '\mum'], 'Interpreter', 'tex', 'FontSize', 10); + lgd.String{2} = ['Opto-tagged']; + lgd.Location = 'northoutside'; + %lgd.Box = 'off'; +end +set(fig, 'Position', [1.6810, 0.2794, 0.5, 0.5]*1.0e+03); +exportgraphics(fig, fullfile(figureDir, [layer, '_', fig.Name, '.pdf']),'ContentType','vector'); +exportgraphics(fig, fullfile(figureDir, [layer, '_', fig.Name, '.emf']),'ContentType','vector'); + +fig = figure('Name', [name, '_scatter'], 'Color', 'White'); + +% subplot(2,2,2) +% subplot(3,2,4) + +scatter(mn(~tagged),sd(~tagged),12,depth(~tagged),'filled'); % 1+4*fd(~tagged), scatter(mn(~tagged),sd(~tagged),12, [0.5, 0.5, 0.5], '*') +hold on +scatter(mn(tagged),sd(tagged),12, depth(tagged),'filled'); % 1+4*fd(tagged), +hold off +pulseWidth = round(median(diff(TriggerTimes'/fs)')*1e3); +% title(name, 'Interpreter', 'none'); +ylim([0,10]); %ylim([0,round(round(max(sd))+5,-1)]); +%yticks([round(round(min(Dpth),-2)/2,-2)*2-200:200:0]); +xlim([0 tm*1e3]); +xticks(0:5:tm*1e3); +xlabel('First-Spike Latency [ms]'); +ylabel('StdDev [ms]', 'Interpreter', 'tex') +% ax.XTickLabelRotation = -45; +ax = gca; +hold on +laser = plot([0:pulseWidth], (ax.YLim(2))*ones(pulseWidth + 1,1), 'Color', [0 1 1 0.5], 'LineWidth', 3); +ax = gca; +ax.FontName = 'Arial'; +ax.FontSize = 10; +% ax.FontName = 'Times New Roman'; +% Create rectangle +%lsText = text(3, ax.YLim(1)+45, 'Laser Pulse', 'FontSize', 10); + +lgd = legend; +lgd.String{1} = ['Non-tagged Units (n=', num2str(sum(nontagged)), ')']; +lgd.String{2} = ['Opto-tagged Units (n=', num2str(sum(tagged)), ')']; +lgd.String{3} = ['Laser Pulse (',num2str(pulseWidth), 'ms)']; + +% rectangle(ax, 'Position', [1, ax.YLim(2)-100, 4, 50], ... +% 'LineStyle', 'none', 'FaceColor', [0 1 1 0.5]) + +rectangle(ax, 'Position', [ax.XLim(1), ax.YLim(1), pulseWidth, ax.YLim(2) - ax.YLim(1)], ... + 'LineStyle', 'none', 'FaceColor', [0 1 1 0.1]) +lgd.FontSize = 10; +set(fig, 'Position', [1.6810, 0.2794, 0.5, 0.5]*1.0e+03); +exportgraphics(fig, fullfile(figureDir, [layer, '_', fig.Name, '.pdf']),'ContentType','vector'); +exportgraphics(fig, fullfile(figureDir, [layer, '_', fig.Name, '.emf']),'ContentType','vector'); + + +fig = figure('Name', [name, '_depthlatency'], 'Color', 'White'); + +% subplot(2,2,3) +% subplot(1,2,1) + +% errorbar(mn(~tagged),depth(~tagged),sd(~tagged), 'horizontal', 'LineStyle', 'none', 'Marker', 'd', 'Color', [0.5, 0.5, 0.5], 'MarkerSize', 2.5, 'LineWidth', 0.01, 'CapSize', 0, 'MarkerFaceColor',[0.5,0.5,0.5]); +% hold on +errorbar(mn(tagged),depth(tagged),sd(tagged), 'horizontal', 'LineStyle', 'none', 'Marker', 'd', 'Color',[0, 0.5, 1], 'MarkerSize', 2.5, 'LineWidth', 0.01, 'CapSize', 0, 'MarkerFaceColor',[0,0.5,1]); +hold off + + +pulseWidth = round(median(diff(TriggerTimes'/fs)')*1e3); +% title(name, 'Interpreter', 'none'); +ylim([-1400, 0]); % ylim([round(round(min(depth),-2)/2,-2)*2-200,0]); +yticks([round(round(min(depth),-2)/2,-2)*2-200:200:0]); +xlim([0 tm*1e3]); +xticks(0:5:tm*1e3); +xlabel('First-Spike Latency [ms]'); +ylabel('Unit Depth [\mum]', 'Interpreter', 'tex') +% ax.XTickLabelRotation = -45; +ax = gca; +hold on +laser = plot([0:pulseWidth], ax.YLim(2)*ones(pulseWidth + 1,1), 'Color', [0 1 1 0.5], 'LineWidth', 3); +ax = gca; +ax.FontName = 'Arial'; +ax.FontSize = 10; +% ax.FontName = 'Times New Roman'; +% Create rectangle +% lsText = text(3, ax.YLim(1)+45, 'Laser Pulse', 'FontSize', 10); + +lgd = legend; +% lgd.String{1} = (['Unit Mean +/- SD (n=', num2str(sum(nontagged)), ')']); +lgd.String{1} = (['Opto-tagged Units (n=', num2str(sum(tagged)), ')']); +lgd.String{2} = ['Laser Pulse (',num2str(pulseWidth), 'ms)']; +% rectangle(ax, 'Position', [1, ax.YLim(2)-100, 4, 50], ... +% 'LineStyle', 'none', 'FaceColor', [0 1 1 0.5]) + +rectangle(ax, 'Position', [ax.XLim(1), ax.YLim(1), pulseWidth, ax.YLim(2) - ax.YLim(1)], ... + 'LineStyle', 'none', 'FaceColor', [0 1 1 0.1]) +lgd.FontSize = 10; +set(fig, 'Position', [1.6810, 0.2794, 0.4, 0.5]*1.0e+03); +exportgraphics(fig, fullfile(figureDir, [layer, '_', fig.Name, '.pdf']),'ContentType','vector'); +exportgraphics(fig, fullfile(figureDir, [layer, '_', fig.Name, '.emf']),'ContentType','vector'); + + +fig = figure('Name', [name, '_bar'], 'Color', 'White'); +% subplot(2,2,4) +% subplot(3,2,6) + +h = histogram(round(mn(~tagged))); +h.FaceColor = [0.5, 0.5, 0.5]; +hold on +j = histogram(round(mn(tagged))); +j.FaceColor = [0, 0.5, 1]; +hold off + +pulseWidth = round(median(diff(TriggerTimes'/fs)')*1e3); +% title(name, 'Interpreter', 'none'); +% ylim([0,sum(mode(round(mn)+5))]); +%yticks([round(round(min(Dpth),-2)/2,-2)*2-200:200:0]); +xlim([0 tm*1e3]); +xticks(0:5:tm*1e3); +yMax = max([max(h.BinCounts), max(j.BinCounts)]); +ylim([0, round(yMax + 5, -1)]); +xlabel('First-Spike Latency [ms]'); +ylabel('Frequency [no. of units]', 'Interpreter', 'tex') +% ax.XTickLabelRotation = -45; +ax = gca; +ax.FontName = 'Arial'; +laserLngth = linspace(0, pulseWidth + 0.5); +hold on +laser = plot(laserLngth, (ax.YLim(2))*ones(length(laserLngth),1), 'Color', [0 1 1 0.5], 'LineWidth', 3); +ax.FontSize = 10; +% ax.FontName = 'Times New Roman'; +% Create rectangle +%lsText = text(3, ax.YLim(1)+45, 'Laser Pulse', 'FontSize', 10); + + +rectangle(ax, 'Position', [ax.XLim(1), ax.YLim(1), pulseWidth + 0.5, ax.YLim(2) - ax.YLim(1)], ... + 'LineStyle', 'none', 'FaceColor', [0 1 1 0.1]) + +lgd = legend; +lgd.String{1} = ['Non-tagged Units (n=', num2str(sum(nontagged)), ')']; +lgd.String{2} = ['Opto-tagged Units (n=', num2str(sum(tagged)), ')']; +lgd.String{3} = ['Laser Pulse (',num2str(pulseWidth), 'ms)']; +lgd.FontSize = 10; + +set(fig, 'Position', [1.6810, 0.2794, 0.5, 0.5]*1.0e+03); + +idxTagged = ismember(clInfo.id, TaggedIDs); +% if ~any(ismember(clInfo.Properties.VariableNames,'Tagged')) +% clInfo = addvars(clInfo,idxTagged,'After','ActiveUnit',... +% 'NewVariableNames','Tagged'); +% end + + +exportgraphics(fig, fullfile(figureDir, [layer, '_', fig.Name, '.pdf']),'ContentType','vector'); +exportgraphics(fig, fullfile(figureDir, [layer, '_', fig.Name, '.emf']),'ContentType','vector'); +end + + diff --git a/Ross/Optotag_MUA.m b/Ross/Optotag_MUA.m new file mode 100644 index 0000000..a1840ea --- /dev/null +++ b/Ross/Optotag_MUA.m @@ -0,0 +1,225 @@ +function [TaggedIDs, fig] = Optotag(latencyCutoffs, sdCutoffs, clInfo, clIDs, ConditionName, TriggerTimes, sortedData, samplingFrequency) +fs = samplingFrequency; +clInd = ismember(clInfo.id, clIDs); +depths = table(clInfo.id(clInd), clInfo.abs_depth(clInd)); +depths = sortrows(depths,'Var2','ascend'); +ID = depths{:,1}; +depth = depths.Var2; +spkInd = []; +for i = 1:length(ID) + spkInd = [spkInd; find(ismember(sortedData(:,1), ID(i)))]; +end +name = ConditionName; +name(strfind(name, '_')) = ' '; +name = ['Optotagging: ', name]; +tm = 5e-2; +[Latencies, Fidelities] = TriggerLatencies(sortedData(spkInd,2), TriggerTimes, fs, tm); +mn = (cellfun(@mean, Latencies)*1e3); +sd = (cellfun(@std, Latencies)*1e3); +rng('default'); +jitter = randi(20,size(depth)); +depth = depth + jitter; % adding small jitter for visualisation +depth = -1*depth; + +% Removing and highlighting dodgy units from plot +lowestLat = 0.5; %latencyCutoffs(1); +lowestSD = 0; %sdCutoffs(1); +dodgyMean = ID(find(mn -500 & depth < -300; +taggedInd = spkInd(tagged); +TaggedIDs = sortedData(taggedInd,1); +nontagged = ~tagged & ~nan; + +minDepth = depth(min(find(tagged))); +maxDepth = depth(max(find(tagged))); + +fig = figure('Name', name, 'Color', 'White'); + +subplot(3,2,2) +x = [sum(nontagged), sum(tagged)]; +explode = [0, 1]; +% labels = {['Tagged Fraction = ',num2str(tg), '%'], ' '}; +pie(x, explode) +ax = gca; +ax.FontName = 'Arial'; +if sum(tagged) > 0 + ax.Children(2).FaceColor = [0, 0.5, 1]; + ax.Children(4).FaceColor = [0.5 0.5 0.5]; +else + ax.Children(2).FaceColor = [0.5 0.5 0.5]; +end +ax.FontSize = 15; +% ax.FontName = 'Times New Roman'; + +% Formatting (text is in weird place if there are no tagged cells) + +if sum(tagged) == 0 + lgd = legend; + lgd.String{1} = ['Untagged']; + text(-5,1.0,['Selection Criteria:'],'FontSize', 15 ); + text(-5,0.75,['Mean Latencies between ' num2str(latencyCutoffs(1)), ' and ',num2str(latencyCutoffs(2)), 'ms'], 'FontSize', 10); + text(-5,0.50,['Standard Deviations between ' num2str(sdCutoffs(1)), ' and ',num2str(sdCutoffs(2)), 'ms'], 'FontSize', 10); + text(-5,-0.25,'Opto-tagged Units Displayed:', 'FontSize', 15); + text(-5,-0.5,['Depths between ' num2str(minDepth), ' and ',num2str(maxDepth), '\mum'], 'Interpreter', 'tex', 'FontSize', 10); + lgd.String{2} = ['Opto-tagged']; + lgd.Location = 'northoutside'; + %lgd.Box = 'off'; + +else + lgd = legend; + lgd.String{1} = ['Untagged']; + text(-6,1.5,['Selection Criteria:'],'FontSize', 15 ); + text(-6,1,['Mean Latencies between ' num2str(latencyCutoffs(1)), ' and ',num2str(latencyCutoffs(2)), 'ms'], 'FontSize', 10); + text(-6,0.50,['Standard Deviations between ' num2str(sdCutoffs(1)), ' and ',num2str(sdCutoffs(2)), 'ms'], 'FontSize', 10); + text(-6,-0.5,'Opto-tagged Units Displayed:', 'FontSize', 15); + text(-6,-1,['Depths between ' num2str(minDepth), ' and ',num2str(maxDepth), '\mum'], 'Interpreter', 'tex', 'FontSize', 10); + lgd.String{2} = ['Opto-tagged']; + lgd.Location = 'northoutside'; + %lgd.Box = 'off'; +end +subplot(3,2,4) + +scatter(mn(~tagged),sd(~tagged), 1+4*fd(~tagged), [0.5, 0.5, 0.5], '*') +hold on +scatter(mn(tagged),sd(tagged),1+4*fd(tagged), [0, 0.5, 1], '*') +hold off +pulseWidth = round(median(diff(TriggerTimes'/fs)')*1e3); +% title(name, 'Interpreter', 'none'); +ylim([0,round(round(max(sd))+5,-1)]); +%yticks([round(round(min(Dpth),-2)/2,-2)*2-200:200:0]); +xlim([0 tm*1e3]); +xticks(0:5:tm*1e3); +xlabel('First-Spike Latency [ms]'); +ylabel('StdDev [ms]', 'Interpreter', 'tex') +% ax.XTickLabelRotation = -45; +ax = gca; +hold on +laser = plot([0:pulseWidth], (ax.YLim(2))*ones(pulseWidth + 1,1), 'Color', [0 1 1 0.5], 'LineWidth', 3); +ax = gca; +ax.FontName = 'Arial'; +ax.FontSize = 20; +% ax.FontName = 'Times New Roman'; +% Create rectangle +%lsText = text(3, ax.YLim(1)+45, 'Laser Pulse', 'FontSize', 10); + +lgd = legend; +lgd.String{1} = ['Units (n=', num2str(sum(nontagged)), ')']; +lgd.String{2} = ['Opto-tagged Units (n=', num2str(sum(tagged)), ')']; +lgd.String{3} = ['Laser Pulse (',num2str(pulseWidth), 'ms)']; + +% rectangle(ax, 'Position', [1, ax.YLim(2)-100, 4, 50], ... +% 'LineStyle', 'none', 'FaceColor', [0 1 1 0.5]) + +rectangle(ax, 'Position', [ax.XLim(1), ax.YLim(1), pulseWidth, ax.YLim(2) - ax.YLim(1)], ... + 'LineStyle', 'none', 'FaceColor', [0 1 1 0.1]) +lgd.FontSize = 8; + + +subplot(1,2,1) + +errorbar(mn(~tagged),depth(~tagged),sd(~tagged), 'horizontal', 'LineStyle', 'none', 'Marker', 'd', 'Color', [0.5, 0.5, 0.5], 'MarkerSize', 2.5, 'LineWidth', 0.01, 'CapSize', 0, 'MarkerFaceColor',[0.5,0.5,0.5]); +hold on +errorbar(mn(tagged),depth(tagged),sd(tagged), 'horizontal', 'LineStyle', 'none', 'Marker', 'd', 'Color',[0, 0.5, 1], 'MarkerSize', 2.5, 'LineWidth', 0.01, 'CapSize', 0, 'MarkerFaceColor',[0,0.5,1]); +hold off + + +pulseWidth = round(median(diff(TriggerTimes'/fs)')*1e3); +% title(name, 'Interpreter', 'none'); +ylim([round(round(min(depth),-2)/2,-2)*2-200,0]); +yticks([round(round(min(depth),-2)/2,-2)*2-200:200:0]); +xlim([0 tm*1e3]); +xticks(0:5:tm*1e3); +xlabel('First-Spike Latency [ms]'); +ylabel('Unit Depth [\mum]', 'Interpreter', 'tex') +% ax.XTickLabelRotation = -45; +ax = gca; +hold on +laser = plot([0:pulseWidth], ax.YLim(2)*ones(pulseWidth + 1,1), 'Color', [0 1 1 0.5], 'LineWidth', 3); +ax = gca; +ax.FontName = 'Arial'; +ax.FontSize = 20; +% ax.FontName = 'Times New Roman'; +% Create rectangle +% lsText = text(3, ax.YLim(1)+45, 'Laser Pulse', 'FontSize', 10); + +lgd = legend; +lgd.String{1} = (['Unit Mean +/- SD (n=', num2str(sum(nontagged)), ')']); +lgd.String{2} = (['Opto-tagged Units (n=', num2str(sum(tagged)), ')']); +lgd.String{3} = ['Laser Pulse (',num2str(pulseWidth), 'ms)']; +% rectangle(ax, 'Position', [1, ax.YLim(2)-100, 4, 50], ... +% 'LineStyle', 'none', 'FaceColor', [0 1 1 0.5]) + +rectangle(ax, 'Position', [ax.XLim(1), ax.YLim(1), pulseWidth, ax.YLim(2) - ax.YLim(1)], ... + 'LineStyle', 'none', 'FaceColor', [0 1 1 0.1]) +lgd.FontSize = 8; + +subplot(3,2,6) + +h = histogram(round(mn(~tagged))); +h.FaceColor = [0.5, 0.5, 0.5]; +hold on +j = histogram(round(mn(tagged))); +j.FaceColor = [0, 0.5, 1]; +hold off + +pulseWidth = round(median(diff(TriggerTimes'/fs)')*1e3); +% title(name, 'Interpreter', 'none'); +% ylim([0,sum(mode(round(mn)+5))]); +%yticks([round(round(min(Dpth),-2)/2,-2)*2-200:200:0]); +xlim([0 tm*1e3]); +xticks(0:5:tm*1e3); +yMax = max([max(h.BinCounts), max(j.BinCounts)]); +ylim([0, round(yMax + 5, -1)]); +xlabel('First-Spike Latency [ms]'); +ylabel('Frequency [no. of units]', 'Interpreter', 'tex') +% ax.XTickLabelRotation = -45; +ax = gca; +ax.FontName = 'Arial'; +laserLngth = linspace(0, pulseWidth + 0.5); +hold on +laser = plot(laserLngth, (ax.YLim(2))*ones(length(laserLngth),1), 'Color', [0 1 1 0.5], 'LineWidth', 3); +ax.FontSize = 20; +% ax.FontName = 'Times New Roman'; +% Create rectangle +%lsText = text(3, ax.YLim(1)+45, 'Laser Pulse', 'FontSize', 10); + + +rectangle(ax, 'Position', [ax.XLim(1), ax.YLim(1), pulseWidth + 0.5, ax.YLim(2) - ax.YLim(1)], ... + 'LineStyle', 'none', 'FaceColor', [0 1 1 0.1]) + +lgd = legend; +lgd.String{1} = ['Units (n=', num2str(sum(nontagged)), ')']; +lgd.String{2} = ['Opto-tagged Units (n=', num2str(sum(tagged)), ')']; +lgd.String{3} = ['Laser Pulse (',num2str(pulseWidth), 'ms)']; +lgd.FontSize = 8; + +idxTagged = ismember(clInfo.id, TaggedIDs); +if ~any(ismember(clInfo.Properties.VariableNames,'Tagged')) + clInfo = addvars(clInfo,idxTagged,'After','ActiveUnit',... + 'NewVariableNames','Tagged'); +end + +end + + diff --git a/Ross/Optotagging.emf b/Ross/Optotagging.emf new file mode 100644 index 0000000..1af10ec Binary files /dev/null and b/Ross/Optotagging.emf differ diff --git a/Ross/PAIN.m b/Ross/PAIN.m new file mode 100644 index 0000000..336429c --- /dev/null +++ b/Ross/PAIN.m @@ -0,0 +1,1224 @@ +% PAIN +% 30.08.19 Jittering analysis by using the Data Explorer. +%clearvars +%% Load the data +% Choosing the working directory +dataDir = uigetdir('E:\Data\VPM\Jittering\Silicon Probes\',... + 'Choose a working directory'); +if dataDir == 0 + return +end +% Creating the figure directory +figureDir = fullfile(dataDir,'Figures\'); +if ~mkdir(figureDir) + fprintf(1,'There was an issue with the figure folder...\n'); +end +% Loading the necessary files +if ~loadTriggerData(dataDir) + fprintf(1,'Not possible to load all the necessary variables\n') + return +end + +%% Constructing the helper 'global' variables + +Triggers.MechStim = Triggers.MechStim * -1; + +% Number of total samples +Ns = min(structfun(@numel,Triggers)); +% Total duration of the recording +Nt = Ns/fs; +% Useless clusters (labeled as noise or they have very low firing rate) +badsIdx = cellfun(@(x) x==3,sortedData(:,3)); +bads = find(badsIdx); +totSpkCount = cellfun(@numel,sortedData(:,2)); +clusterSpikeRate = totSpkCount/Nt; +silentUnits = clusterSpikeRate < 0.1; +bads = union(bads,find(silentUnits)); +goods = setdiff(1:size(sortedData,1),bads); +badsIdx = badsIdx | silentUnits; +% clInfo = getClusterInfo([dataDir, '\cluster_info.tsv']); +if ~any(ismember(clInfo.Properties.VariableNames,'ActiveUnit')) + clInfo = addvars(clInfo,~badsIdx,'After','id',... + 'NewVariableNames','ActiveUnit'); +end +gclID = sortedData(goods,1); +badsIdx = StepWaveform.subs2idx(bads,size(sortedData,1)); +% Logical spike trace for the first good cluster +spkLog = StepWaveform.subs2idx(round(sortedData{goods(1),2}*fs),Ns); +% Subscript column vectors for the rest good clusters +spkSubs = cellfun(@(x) round(x.*fs),sortedData(goods(2:end),2),... + 'UniformOutput',false); +% Number of good clusters +Ncl = numel(goods); +% Redefining the stimulus signals from the low amplitude to logical values +whStim = {'piezo','whisker','mech','audio'}; +cxStim = {'laser','light'}; +lfpRec = {'lfp','s1','cortex','s1lfp'}; +trigNames = fieldnames(Triggers); +numTrigNames = numel(trigNames); +ctn = 1; +continuousSignals = cell(numTrigNames,1); +continuousNameSub = zeros(size(trigNames)); +while ctn <= numTrigNames + if contains(trigNames{ctn},whStim,'IgnoreCase',true) + continuousSignals{ctn} = Triggers.(trigNames{ctn}); + continuousNameSub(ctn) = ctn; + end + if contains(trigNames{ctn},cxStim,'IgnoreCase',true) + continuousSignals{ctn} = Triggers.(trigNames{ctn}); + continuousNameSub(ctn) = ctn; + end + if contains(trigNames{ctn},lfpRec,'IgnoreCase',true) + continuousSignals{ctn} = Triggers.(trigNames{ctn}); + continuousNameSub(ctn) = ctn; + end + ctn = ctn + 1; +end +continuousSignals(continuousNameSub == 0) = []; +continuousNameSub(continuousNameSub == 0) = []; +trigNames = trigNames(continuousNameSub); +%% Inter-spike intervals +isiFile = fullfile(dataDir,[expName,'_ISIvars.mat']); +if ~exist(isiFile,'file') + spkSubs2 = cellfun(@(x) round(x.*fs), sortedData(goods,2),... + 'UniformOutput', false); + ISIVals = cellfun(@(x) [x(1)/fs; diff(x)/fs], spkSubs2,... + 'UniformOutput', 0); + NnzvPcl = cellfun(@numel,ISIVals); + Nnzv = sum(NnzvPcl); + rows = cell2mat(arrayfun(@(x,y) repmat(x,y,1), (1:Ncl)', NnzvPcl,... + 'UniformOutput', 0)); + cols = cell2mat(spkSubs2); + vals = cell2mat(ISIVals); + ISIspar = sparse(rows, cols, vals); +else + load(isiFile,'ISIspar') +end +% ISIsignal = zeros(Ncl,Ns,'single'); +% for ccl = 1:Ncl +% ISIsignal(ccl,spkSubs2{ccl}) = ISIVals{ccl}; +% end +%% User controlling variables +% Time lapse, bin size, and spontaneous and response windows +promptStrings = {'Viewing window (time lapse) [s]:','Response window [s]',... + 'Bin size [s]:'}; +defInputs = {'-2, 6', '0.1, 1.5', '0.01'}; +answ = inputdlg(promptStrings,'Inputs', [1, 30],defInputs); +if isempty(answ) + fprintf(1,'Cancelling...\n'); + return +else + timeLapse = str2num(answ{1}); %#ok<*ST2NM> + if numel(timeLapse) ~= 2 + timeLapse = str2num(inputdlg('Please provide the time window [s]:',... + 'Time window',[1, 30], '-0.1, 0.1')); + if isnan(timeLapse) || isempty(timeLapse) + fprintf(1,'Cancelling...') + return + end + end + responseWindow = str2num(answ{2}); + binSz = str2double(answ(3)); +end +fprintf(1,'Time window: %.2f - %.2f ms\n',timeLapse(1)*1e3, timeLapse(2)*1e3) +fprintf(1,'Response window: %.2f - %.2f ms\n',responseWindow(1)*1e3, responseWindow(2)*1e3) +fprintf(1,'Bin size: %.3f ms\n', binSz*1e3) +sponAns = questdlg('Mirror the spontaneous window?','Spontaneous window',... + 'Yes','No','Yes'); +spontaneousWindow = -flip(responseWindow); +if strcmpi(sponAns,'No') + spontPrompt = "Time before the trigger in [s] (e.g. -0.8, -0.6 s)"; + sponDef = string(sprintf('%.3f, %.3f',spontaneousWindow(1),... + spontaneousWindow(2))); + sponStr = inputdlg(spontPrompt, 'Inputs',[1,30],sponDef); + if ~isempty(sponStr) + spontAux = str2num(sponStr{1}); + if length(spontAux) ~= 2 || spontAux(1) > spontAux(2) || ... + spontAux(1) < timeLapse(1) + fprintf(1, 'The given input was not valid.\n') + fprintf(1, 'Keeping the mirror version!\n') + else + spontaneousWindow = spontAux; + end + end +end +fprintf(1,'Spontaneous window: %.2f to %.2f ms before the trigger\n',... + spontaneousWindow(1)*1e3, spontaneousWindow(2)*1e3) +%% Condition triggered stacks +condNames = arrayfun(@(x) x.name,Conditions,'UniformOutput',false); +condGuess = contains(condNames, 'whiskerall', 'IgnoreCase', true); +% Choose the conditions to create the stack upon +[chCond, iOk] = listdlg('ListString',condNames,'SelectionMode','single',... + 'PromptString',... + 'Choose the condition which has all whisker triggers: (one condition)',... + 'InitialValue', find(condGuess), 'ListSize', [350, numel(condNames)*16]); +if ~iOk + fprintf(1,'Cancelling...\n') + return +end + +% Select the onset or the offset of a trigger +fprintf(1,'Condition ''%s''\n', Conditions(chCond).name) +onOffStr = questdlg('Trigger on the onset or on the offset?','Onset/Offset',... + 'on','off','Cancel','on'); +if strcmpi(onOffStr,'Cancel') + fprintf(1,'Cancelling...\n') + return +end + +%% Constructing the stack out of the user's choice +% discStack - dicrete stack has a logical nature +% cst - continuous stack has a numerical nature +% Both of these stacks have the same number of time samples and trigger +% points. They differ only in the number of considered events. +[discStack, cst] = getStacks(spkLog,Conditions(chCond).Triggers,onOffStr,... + timeLapse,fs,fs,spkSubs,continuousSignals); +% ISI stack +% try +% [~, isiStack] = getStacks(spkLog,Conditions(chCond).Triggers, onOffStr,... +% timeLapse,fs,fs,[],ISIspar); +% catch +% fprintf(1, 'Perhaps there''s not enough memory to cope with this ISIs\n'); +% % General ISI +% +% end +% %[dst, cst] = getStacks(spkLog, allWhiskersPlusLaserControl,... +% % 'on',timeLapse,fs,fs,[spkSubs;{Conditions(allLaserStimulus).Triggers}],... +% % continuousSignals); +% if ~exist(isiFile,'file') +% fprintf(1,'Saving the inter-spike intervals for each cluster... '); +% save(isiFile,'ISIspar','isiStack','-v7.3') +% fprintf(1,'Done!\n') +% end +% Number of clusters + the piezo as the first event + the laser as the last +% event, number of time samples in between the time window, and number of +% total triggers. +[Ne, Nt, NTa] = size(discStack); +% Computing the time axis for the stack +tx = (0:Nt - 1)/fs + timeLapse(1); +%% Considered conditions selection +% Choose the conditions to look at +auxSubs = setdiff(1:numel(condNames), chCond); +ccondNames = condNames(auxSubs); +[cchCond, iOk] = listdlg('ListString',ccondNames,'SelectionMode','multiple',... + 'PromptString',... + 'Choose the condition(s) to look at (including whiskers):',... + 'ListSize', [350, numel(condNames)*16]); +if ~iOk + fprintf(1,'Cancelling...\n') + return +end + +% Select the onset or the offset of a trigger +fprintf(1,'Condition(s):\n') +fprintf('- ''%s''\n', Conditions(auxSubs(cchCond)).name) + + +% Subscript to indicate the conditions with all whisker stimulations, +% whisker control, laser control, and the combination whisker and laser. +allWhiskerStimulus = chCond; +% allLaserStimulus = 2; +% whiskerControl = 9; +% laserControl = 8; +consideredConditions = auxSubs(cchCond); + +Nccond = length(consideredConditions); + +% Adding all the triggers from the piezo and the laser in one array +% allWhiskersPlusLaserControl = ... +% union(Conditions(allWhiskerStimulus).Triggers,... +% Conditions(laserControl).Triggers,'rows'); +%% Boolean flags +delayFlags = false(NTa,Nccond); +counter2 = 1; +for ccond = consideredConditions + delayFlags(:,counter2) = ismember(Conditions(chCond).Triggers(:,1),... + Conditions(ccond).Triggers(:,1)); + counter2 = counter2 + 1; +end +Na = sum(delayFlags,1); +%% Computing which units/clusters/putative neurons respond to the stimulus +% Logical indices for fetching the stack values +sponActStackIdx = tx >= spontaneousWindow(1) & tx <= spontaneousWindow(2); +respActStackIdx = tx >= responseWindow(1) & tx <= responseWindow(2); +% The spontaneous activity of all the clusters, which are allocated from +% the second until one before the last row, during the defined spontaneous +% time window, and the whisker control condition. + +timeFlags = [sponActStackIdx;respActStackIdx]; +% Time window +delta_t = diff(responseWindow); +% Statistical tests +[Results, Counts] = statTests(discStack, delayFlags, timeFlags); + +indCondSubs = cumsum(Nccond:-1:1); +consCondNames = condNames(consideredConditions); +% Plotting statistical tests +[Figs, Results] = scatterSignificance(Results, Counts,... + consCondNames, delta_t, sortedData(goods,1)); +configureFigureToPDF(Figs); +stFigBasename = fullfile(figureDir,[expName,' ']); +stFigSubfix = sprintf(' Stat RW%.1f-%.1fms SW%.1f-%.1fms',... + responseWindow(1)*1e3, responseWindow(2)*1e3, spontaneousWindow(1)*1e3,... + spontaneousWindow(2)*1e3); +ccn = 1; +%for cc = indCondSubs +for cc = 1:numel(Figs) + if ~ismember(cc, indCondSubs) + altCondNames = strsplit(Figs(cc).Children(2).Title.String,': '); + altCondNames = altCondNames{2}; + else + altCondNames = consCondNames{ccn}; + ccn = ccn + 1; + end + stFigName = [stFigBasename, altCondNames, stFigSubfix]; + % if ~exist([stFigName,'.pdf'],'file') || ~exist([stFigName,'.emf'],'file') + % print(Figs(cc),[stFigName,'.pdf'],'-dpdf','-fillpage') + % print(Figs(cc),[stFigName,'.emf'],'-dmeta') + % end + savefig(Figs(cc),fullfile(figureDir, [altCondNames, stFigSubfix '.fig'])); +end + +H = cell2mat(cellfun(@(x) x.Pvalues,... + arrayfun(@(x) x.Activity, Results(indCondSubs), 'UniformOutput', 0),... + 'UniformOutput', 0)) < 0.05; + +Htc = sum(H,2); +CtrlCond = contains(consCondNames,'control','IgnoreCase',true); +if ~nnz(CtrlCond) + CtrlCond = true(size(H,2),1); +end +wruIdx = any(H(:,CtrlCond),2); +Nwru = nnz(wruIdx); + +fprintf('%d responding clusters:\n', Nwru); +fprintf('- %s\n',gclID{wruIdx}) +%% Getting cluster info and adding variables to table +% clInfo = getClusterInfo(fullfile(dataDir,'cluster_info.tsv')); +% chanMap = readNPY(fullfile(dataDir,'channel_map.npy')); +% chanPos = readNPY(fullfile(dataDir,'channel_positions.npy')); +% [m,b] = lineariz(chanPos(:,1), 6, 1); +% shank = m*chanPos(:,1) + b; +% shank = round(shank); +% shMap = containers.Map(chanMap, shank); +% setShank = @(x) shMap(x); +% clInfo.shank = arrayfun(setShank, clInfo.channel); +% tb = size(clInfo); +% sz = tb(1); +% ActiveUnit = false(sz,1); +% clInfo = addvars(clInfo,ActiveUnit,'NewVariableNames','ActiveUnit','After','id'); +% clInfo{gclID, 'ActiveUnit'} = true; + +window = diff(responseWindow); + +for a = 1: length(consCondNames) + clInfo{clInfo.ActiveUnit == true,[consCondNames{1,a}, '_Rate_Spont']} = mean(Counts{a,1}')'/window; + clInfo{clInfo.ActiveUnit == true,[consCondNames{1,a}, '_Rate_Evoked']} = mean(Counts{a,2}')'/window; +end + + +% Significant mechanical responses per condition +b = length(consCondNames); +for a = 1 : length(consCondNames) + clInfo{clInfo.ActiveUnit == true,[consCondNames{1,a}, '_R']} = Results(b).Activity(1).Pvalues < 0.05; + b = b + length(consCondNames) - a; +end + +% Comparing Across Conditions (i.e. manipulation effect on spontaneous and evoked activity) +% RAM: comment to explain what you are doing +sZ = size(Counts); +d = length(consCondNames); +e = 1; +f = length(consCondNames); +for a = 1:length(consCondNames) - 1 + for b = (a + 1): length(consCondNames) + + for c = 1: sZ(1,2) + clInfo{clInfo.ActiveUnit == true,[consCondNames{1,a},'_vs_',consCondNames{1,b}, '_', Results(e).Activity(c).Type, '_Response']} = Results(e).Activity(c).Pvalues < 0.05; + %RAM example + %myString = [consCondNames{1,a},'_vs_',consCondNames{1,b}, '_', Results(e).Activity(c).Type, '_Response']; + %clInfo{clInfo.ActiveUnit == true,myString} = Results(e).Activity(c).Pvalues < 0.05; + + end + + e = e + 1; + + if e == f + e = e + 1; + end + end + d = d - 1; + f = f + d; +end +writeClusterInfo(clInfo, fullfile(dataDir,'cluster_info.tsv')); +%% Add modulation index + +ml = clInfo.Mech_Laser_5mW_Rate_Evoked; +mc = clInfo.Mech_Control_5mW_Rate_Evoked; +modInd = (ml - mc)./(ml + mc); + +if ~any(ismember(clInfo.Properties.VariableNames,'modIndex')) + clInfo = addvars(clInfo,modInd,'After','shank',... + 'NewVariableNames','modIndex'); +end +% writeClusterInfo(clInfo, fullfile(dataDir,'cluster_info.tsv')); +%% adding abs_depth to table + +promptStrings = {'How deep was your probe? (um)'}; +defInputs = {'1400'}; +dpth = inputdlg(promptStrings,'Inputs', [1, 30],defInputs); + +dpth = str2double(dpth{1}); + + +abs_depth = dpth - clInfo.depth; +% dif = abs(dpth) - 1275; +% abs_depth = clInfo.depth + dif; + + + + +clInfo = addvars(clInfo,abs_depth,'After','depth',... + 'NewVariableNames','abs_depth'); + +writeClusterInfo(clInfo, fullfile(dataDir,'cluster_info.tsv')); + +%% Depth vs Modulation Plots +clInd = ismember(clInfo.id, gclID); +depths = table(clInfo.id(clInd), clInfo.abs_depth(clInd)); +depths = sortrows(depths,'Var2','ascend'); +ID = depths{:,1}; +depth = depths.Var2; +jitter = randi(20,size(depth)); +depth = depth + jitter; % adding small jitter for visualisation +depth = -1*depth; +for chc = 1:length(consideredConditions) + spontCounts = Counts{chc,1}; + evCounts = Counts{chc,2}; + c = size(spontCounts); + c = c(2); + ordSpontCounts = zeros(length(ID), c); + ordEvCounts = zeros(length(ID), c); + for cl = 1:length(ID) + ind = find(ismember(gclID, ID(cl))); + ordSpontCounts(cl,:) = spontCounts(ind,:); + ordEvCounts(cl,:) = evCounts(ind,:); + end + spWindow = spontaneousWindow(2)-spontaneousWindow(1); + evWindow = responseWindow(2)-responseWindow(1); + medSpontRate = median(ordSpontCounts,2)/spWindow; + medEvokedRate = median(ordEvCounts,2)/evWindow; + deltaRate = zeros(length(depth), 2); + deltaRate(:,2) = medEvokedRate - medSpontRate; + normDeltaRate = zeros(length(depth), 2); + f = (medEvokedRate + medSpontRate); + normDeltaRate(:,2) = (medEvokedRate - medSpontRate)./f; + increased{chc} = ID(deltaRate(:,2)>0); + decreased{chc} = ID(deltaRate(:,2)<0); + fig = figure('Name', 'Depth vs Modulation', 'Color', 'White'); + ax = gca; + hold on + for cl = 1:length(ID) + dr = deltaRate(cl,:); + dpth = [depth(cl), depth(cl)]; + plot(dr, dpth, 'LineStyle', '-', 'Marker', 'none', 'Color', [0, 0, 1], 'MarkerSize', 2.5, 'LineWidth', 0.01, 'MarkerFaceColor',[0.5,0.5,0.5]); + + end + + + % legend on + %plot(deltaRate(:,2), depth, 'LineStyle', '-', 'Marker', 'none', 'Color', [0.5, 1, 1], 'MarkerSize', 2.5, 'LineWidth', 0.01, 'MarkerFaceColor',[0.5,0.5,0.5]) + title(['Depth vs Change in Firing Rate: ', consCondNames{chc}], 'Interpreter', 'none') + ylabel( 'Depth_{(\mum)}', 'Interpreter', 'tex'); + xlabel('\Delta Firing Rate_{ Hz}', 'Interpreter', 'tex'); + %ax.XLim = [-1.1*max(deltaRate(:,2)), 1.1*max(deltaRate(:,2))]; + ax.XLim = [-50, 50]; + + hold on + plot(deltaRate(:,1), linspace(ax.YLim(1),ax.YLim(2), length(deltaRate)), 'LineStyle', '-', 'Color', 'k'); + ax.FontSize = 20; + % ax.Legend.String = {'Late Responders'}; + % savefig(fig, fullfile('Z:\Ross\Experiments\smrxFiles\16.12.20\12.6.21\Figures\', [consCondNames{chc}, '_LateResponders_Depth_vs_Modulation.fig'])); +end + +%% Get significantly different clusters +gcans = questdlg(['Do you want to get the waveforms of the good clusters?'], 'Waveforms', 'Yes', 'No', 'No'); +if strcmp(gcans, 'Yes') + clWaveforms = getClusterWaveform(gclID, dataDir); +end +%% Addition mean signals to the Conditions variable +if ~isfield(Conditions,'Stimulus') ||... + any(arrayfun(@(x) isempty(x.Stimulus), Conditions(consideredConditions))) + fprintf(1,'Writting the stimulus raw signal into Conditions variable:\n') + whFlag = contains(trigNames, whStim, 'IgnoreCase', 1); + lrFlag = contains(trigNames, cxStim, 'IgnoreCase', 1); + cdel = 1; + for cc = consideredConditions + fprintf(1,'- %s\n', Conditions(cc).name) + Conditions(cc).Stimulus = struct(... + 'Mechanical',reshape(mean(cst((1),:,delayFlags(:,cdel)),3),... + 1,Nt),... + 'MechPressure',reshape(mean(cst((2),:,delayFlags(:,cdel)),3),... + 1,Nt),... + 'Laser',reshape(mean(cst(lrFlag,:,delayFlags(:,cdel)),3),... + 1,Nt),'TimeAxis',(0:Nt-1)/fs + timeLapse(1)); + cdel = cdel + 1; + end + %save(fullfile(dataDir,[expName,'_analysis.mat']),'Conditions','-append') +end + + +%% Configuration structure +configStructure = struct('Experiment', fullfile(dataDir,expName),... + 'Viewing_window_s', timeLapse, 'Response_window_s', responseWindow,... + 'BinSize_s', binSz, 'Trigger', struct('Name', condNames{chCond},... + 'Edge',onOffStr), 'ConsideredConditions',{consCondNames}); + +%% Filter question +filterIdx = true(Ne,1); +ansFilt = questdlg('Would you like to filter for significance?','Filter',... + 'Yes','No','Yes'); +filtStr = 'unfiltered'; +if strcmp(ansFilt,'Yes') + filterIdx = [true; wruIdx]; + filtStr = 'Filtered'; +end +%ruIdx = wruIdx; +%% Getting the relative spike times for the whisker responsive units (wru) +% For each condition, the first spike of each wru will be used to compute +% the standard deviation of it. +cellLogicalIndexing = @(x,idx) x(idx); +isWithinResponsiveWindow =... + @(x) x > responseWindow(1) & x < responseWindow(2); + +firstSpike = zeros(Nwru,Nccond); +M = 16; +binAx = responseWindow(1):binSz:responseWindow(2); +condHist = zeros(size(binAx,2)-1, Nccond); +firstOrdStats = zeros(2,Nccond); +condParams = zeros(M,3,Nccond); +txpdf = responseWindow(1):1/fs:responseWindow(2); +condPDF = zeros(numel(txpdf),Nccond); +csvBase = fullfile(dataDir, expName); +csvSubfx = sprintf(' VW%.1f-%.1f ms.csv', timeLapse(1)*1e3, timeLapse(2)*1e3); +existFlag = false; +condRelativeSpkTms = cell(Nccond,1); +relativeSpkTmsStruct = struct('name',{},'SpikeTimes',{}); +spkDir = fullfile(dataDir, 'SpikeTimes'); +for ccond = 1:size(delayFlags,2) + csvFileName = [csvBase,' ',consCondNames{ccond}, csvSubfx]; + relativeSpikeTimes = getRasterFromStack(discStack,~delayFlags(:,ccond),... + filterIdx(3:end), timeLapse, fs, true, false); + relativeSpikeTimes(:,~delayFlags(:,ccond)) = []; + relativeSpikeTimes(~filterIdx(2),:) = []; + condRelativeSpkTms{ccond} = relativeSpikeTimes; + % respIdx = cellfun(isWithinResponsiveWindow, relativeSpikeTimes,... + % 'UniformOutput',false); + clSpkTms = cell(size(relativeSpikeTimes,1),1); + if exist(csvFileName, 'file') && ccond == 1 + existFlag = true; + ansOW = questdlg(['The exported .csv files exist! ',... + 'Would you like to overwrite them?'],'Overwrite?','Yes','No','No'); + if strcmp(ansOW,'Yes') + existFlag = false; + fprintf(1,'Overwriting... '); + end + end + fID = 1; + % if ~existFlag + % fID = fopen(csvFileName,'w'); + % fprintf(fID,'%s, %s\n','Cluster ID','Relative spike times [ms]'); + % end + for cr = 1:size(relativeSpikeTimes, 1) + clSpkTms(cr) = {sort(cell2mat(relativeSpikeTimes(cr,:)))}; + if fID > 2 + fprintf(fID,'%s,',gclID{cr}); + fprintf(fID,'%f,',clSpkTms{cr});fprintf(fID,'\n'); + end + end + if fID > 2 + fclose(fID); + end + relativeSpkTmsStruct(ccond).name = consCondNames{ccond}; + relativeSpkTmsStruct(ccond).SpikeTimes = condRelativeSpkTms{ccond}; + %{ + spikeTimesINRespWin = cellfun(cellLogicalIndexing,... + relativeSpikeTimes, respIdx, 'UniformOutput',false); + allSpikeTimes = cell2mat(spikeTimesINRespWin(:)'); + condParams(:,:,ccond) = emforgmm(allSpikeTimes, M, 1e-6, 0); + condPDF(:,ccond) = genP_x(condParams(:,:,ccond), txpdf); + firstOrdStats(:,ccond) = [mean(allSpikeTimes), std(allSpikeTimes)]; + hfig = figure('Visible', 'off'); h = histogram(allSpikeTimes, binAx,... + 'Normalization', 'probability'); + condHist(:,ccond) = h.Values; + close(hfig) + for ccl = 1:Nwru + frstSpikeFlag = ~cellfun(@isempty,spikeTimesINRespWin(ccl,:)); + firstSpike(ccl,ccond) = std(... + cell2mat(spikeTimesINRespWin(ccl,frstSpikeFlag))); + end + %} +end +save(fullfile(dataDir,[expName,'_exportSpkTms.mat']),... + 'relativeSpkTmsStruct','configStructure') +%% Ordering PSTH + +orderedStr = 'ID ordered'; +dans = questdlg('Do you want to order the PSTH other than by IDs?',... + 'Order', 'Yes', 'No', 'No'); +ordSubs = 1:nnz(filterIdx(2:Ncl+1)); +pclID = gclID(filterIdx(2:end)); +if strcmp(dans, 'Yes') + if ~exist('clInfo','var') + clInfo = getClusterInfo(fullfile(dataDir,'cluster_info.tsv')); + end + % varClass = varfun(@class,clInfo,'OutputFormat','cell'); + [ordSel, iOk] = listdlg('ListString', clInfo.Properties.VariableNames,... + 'SelectionMode', 'multiple'); + orderedStr = []; + ordVar = clInfo.Properties.VariableNames(ordSel); + for cvar = 1:numel(ordVar) + orderedStr = [orderedStr, sprintf('%s ',ordVar{cvar})]; %#ok + end + orderedStr = [orderedStr, 'ordered']; + + if ~strcmp(ordVar,'id') + [~,ordSubs] = sortrows(clInfo(pclID,:),ordVar, 'ascend'); + end +end + +%% Plot PSTH +goodsIdx = logical(clInfo.ActiveUnit); +csNames = fieldnames(Triggers); +Nbn = diff(timeLapse)/binSz; +if (Nbn - round(Nbn)) ~= 0 + Nbn = ceil(Nbn); +end +PSTH = zeros(nnz(filterIdx) - 1, Nbn, Nccond); +psthFigs = gobjects(Nccond,1); +for ccond = 1:Nccond + figFileName = sprintf('%s %s VW%.1f-%.1f ms B%.1f ms RW%.1f-%.1f ms SW%.1f-%.1f ms %sset %s (%s)',... + expName, Conditions(consideredConditions(ccond)).name, timeLapse*1e3,... + binSz*1e3, responseWindow*1e3, spontaneousWindow*1e3, onOffStr,... + orderedStr, filtStr); + [PSTH(:,:,ccond), trig, sweeps] = getPSTH(discStack(filterIdx,:,:),timeLapse,... + ~delayFlags(:,ccond),binSz,fs); + stims = mean(cst(:,:,delayFlags(:,ccond)),3); + stims = stims - median(stims,2); + for cs = 1:size(stims,1) + if abs(log10(var(stims(cs,:),[],2))) < 13 + [m,b] = lineariz(stims(cs,:),1,0); + stims(cs,:) = m*stims(cs,:) + b; + else + stims(cs,:) = zeros(1,Nt); + end + end + psthFigs(ccond) = plotClusterReactivity(PSTH(ordSubs,:,ccond),trig,sweeps,timeLapse,binSz,... + [{Conditions(consideredConditions(ccond)).name};... + pclID(ordSubs)],... + strrep(expName,'_','\_'),... + stims, csNames); + configureFigureToPDF(psthFigs(ccond)); + psthFigs(ccond).Children(end).YLabel.String =... + [psthFigs(ccond).Children(end).YLabel.String,... + sprintf('^{%s}',orderedStr)]; + % if ~exist([figFileName,'.pdf'], 'file') + % print(psthFigs(ccond), fullfile(figureDir,[figFileName, '.pdf']),... + % '-dpdf','-fillpage') + % end + % if ~exist([figFileName,'.emf'], 'file') + % print(psthFigs(ccond), fullfile(figureDir,[figFileName, '.emf']),... + % '-dmeta') + % end + +end +% for a = 1:length(consideredConditions) +% savefig(figure(a), fullfile(figureDir, [consCondNames{a}, '_filtered_PSTH_0.001binSz.fig'])); +% end + + +%% depthPSTH + +csNames = fieldnames(Triggers); +pclTblInd = ismember(clInfo.id, pclID(ordSubs)); +depthOrd = sort(clInfo.abs_depth(pclTblInd), 'descend'); +depthVals = [4200:-200:0]; +depthInds = zeros(length(depthVals), 1); +for a = 1:length(depthInds) + selDepths = depthOrd < depthVals(a); + if sum(selDepths)> 0 + depthInd = find(selDepths); + depthInds(a) = depthInd(1); + end +end +topDepth = find(depthInds == 0); +topDepth = topDepth(1); +depthInds(topDepth) = length(pclID); +depthInds = depthInds(depthInds > 0); +selClIDs = cell(length(pclID),1); +depthVals = depthVals(1:length(depthInds))'; +for a = 1:length(depthInds) + selClIDs{depthInds(a)} = num2str(depthVals(a)); +end +goodsIdx = logical(clInfo.ActiveUnit); +csNames = fieldnames(Triggers); +%csNames = csNames(2:end); +Nbn = diff(timeLapse)/binSz; +if (Nbn - round(Nbn)) ~= 0 + Nbn = ceil(Nbn); +end +PSTH = zeros(nnz(filterIdx) - 1, Nbn, Nccond); +psthFigs = gobjects(Nccond,1); +for ccond = 1:Nccond + figFileName = sprintf('%s %s VW%.1f-%.1f ms B%.1f ms RW%.1f-%.1f ms SW%.1f-%.1f ms %sset %s (%s)',... + expName, Conditions(consideredConditions(ccond)).name, timeLapse*1e3,... + binSz*1e3, responseWindow*1e3, spontaneousWindow*1e3, onOffStr,... + orderedStr, filtStr); + [PSTH(:,:,ccond), trig, sweeps] = getPSTH(discStack(filterIdx,:,:),timeLapse,... + ~delayFlags(:,ccond),binSz,fs); + stims = mean(cst(:,:,delayFlags(:,ccond)),3); + %stims = stims([2,3],:); + stims = stims - median(stims,2); + for cs = 1:size(stims,1) + if abs(log10(var(stims(cs,:),[],2))) < 13 + [m,b] = lineariz(stims(cs,:),1,0); + stims(cs,:) = m*stims(cs,:) + b; + else + stims(cs,:) = zeros(1,Nt); + end + end + psthFigs(ccond) = plotClusterReactivityRoss(PSTH(ordSubs,:,ccond),trig,sweeps,timeLapse,binSz,... + [{Conditions(consideredConditions(ccond)).name};... + selClIDs],... + strrep(expName,'_','\_'),... + stims, csNames); + configureFigureToPDF(psthFigs(ccond)); + psthFigs(ccond).Children(end).Title.String = consCondNames{ccond}; + % psthFigs(ccond).Children(end).YLabel.String =... + % [psthFigs(ccond).Children(end).YLabel.String,... + % sprintf('^{%s}',orderedStr)]; + % if ~exist([figFileName,'.pdf'], 'file') + % print(psthFigs(ccond), fullfile(figureDir,[figFileName, '.pdf']),... + % '-dpdf','-fillpage') + % end + % if ~exist([figFileName,'.emf'], 'file') + % print(psthFigs(ccond), fullfile(figureDir,[figFileName, '.emf']),... + % '-dmeta') + % end + +end +% for a = 1:length(consideredConditions) +% savefig(figure(a), fullfile(figureDir, [consCondNames{a}, '_filtered_PSTH_0.001binSz.fig'])); +% end + + + +%% PopPSTH Comparisons - By Condition + + +red = [0.75, 0, 0]; +green = [0, 0.75, 0]; +blue = [0.25, 0.5, 1]; +purple = [0.5,0,0.5]; +grey = [0.5, 0.5, 0.5]; +csNames = fieldnames(Triggers); +colour = [green; red; blue]; +% ruIdx = filterIdx; +axLabel = 'Firing Rate [Hz]'; +for ccond = 1: length(consideredConditions) + ruIdxDim = size(ruIdx); + nFilters = ruIdxDim(2); + + fig = figure('Name',[expName,'_', consCondNames{ccond}],'Color',[1,1,1]); + fthAxFlag = false; + if ~exist('stims','var') + totlX = nFilters; + + elseif ~isempty(stims) + fthAxFlag = true; + totlX = nFilters + 1; + end + % ax1 = subplot(totlX,1,1:2,'Parent',fig); + + clrDivider = nFilters-1; + if nFilters <= 1 + clrDivider = nFilters; + end + %datclr = [0:0.8/(nFilters-1):0.8]' * ones(1, 3); + datclr = [green; red; blue]; %[1,0,0; 0,1,0; 0,0,0; 0,0.5,1]; + + for a = 1:nFilters + ax(a) = subplot(totlX,1,a,'Parent',fig); + [PSTHarray{a}(:,:,ccond), trig, sweeps] = getPSTH(discStack(ruIdx(:,a),:,:),timeLapse,... + ~delayFlags(:,ccond),binSz,fs); + + PSTH = PSTHarray{a}(:,:,ccond); + [Ncl, Npt] = size(PSTH); + PSTHn = PSTH./max(PSTH,[],2); + + + psthTX = linspace(timeLapse(1),timeLapse(2),Npt); + trigTX = linspace(timeLapse(1),timeLapse(2),size(trig,2)); + popPSTH = sum(PSTH,1,'omitnan')/(Ncl * sweeps * binSz); + plot(psthTX,popPSTH,'Color', colour(a,:)) + ax(a).XLabel.String = sprintf('Time_{%.2f ms} [s]',binSz*1e3); + ax(a).XLim = [timeLapse(1), timeLapse(2)]; + %ax(a).YLim = [0, 50]; + %ax(a).YLabel.String = 'Firing Rate [Hz]'; + ax(a).Box = 'off'; + ax(a).ClippingStyle = 'rectangle'; + legend(ax(a),'show','Location','northeast') + ruNames = [{'L4'}, {'L5'}, {'L6'}]; + ax(a).Legend.String = ruNames{a}; + ax(a).YAxis(1).Label.String = axLabel; + + end + ax(1).Title.String = consCondNames(ccond); + %ax1.Title.String = consCondNames(ccond); + % %if fthAxFlag + ax2 = subplot(totlX,1,nFilters + 1,'Parent',fig); + + stims = mean(cst(:,:,delayFlags(:,ccond)),3); + stims = stims - median(stims,2); + for cs = 1:size(stims,1) + if abs(log10(var(stims(cs,:),[],2))) < 13 + [m,b] = lineariz(stims(cs,:),1,0); + stims(cs,:) = m*stims(cs,:) + b; + else + stims(cs,:) = zeros(1,Nt); + end + end + + [r,c] = size(stims); + + if r < c + stims = stims'; + stmClr = zeros(r, 3); + + end + + + stmClr([1,5,9]) = 1; + stmClr(stmClr == 0) = 0.25; + + + + for cs = 1:min(r,c) + if exist('IDs','var') + plot(ax2,trigTX,stims(:,cs),'LineStyle','-.','LineWidth',0.5,... + 'DisplayName', csNames{cs}, 'Color', stmClr(cs,:)) + else + plot(ax2,trigTX,stims(:,cs),'LineStyle','-.','LineWidth',0.5, 'Color', stmClr(cs,:)) + end + + % ax2.Children(1).Color = defineColorForStimuli(IDs(cs)); + + if cs == 1 + ax2.NextPlot = 'add'; + end + end + legend(ax2,'show','Location','best') + + ax2.Box = 'off'; + ax2.XLim = [timeLapse(1), timeLapse(2)]; + ax2.XAxis.Visible = 'off'; + ax2.YAxis.Visible = 'off'; + linkaxes([ax, ax2], 'x') + %end + + + + + + + + + + + % [Ncl, Npt] = size(PSTH); + % + % psthTX = linspace(timeLapse(1),timeLapse(2),Npt); + % trigTX = linspace(timeLapse(1),timeLapse(2),size(trig,2)); + % % clr = defineColorForStimuli(IDe); + % popPSTH = sum(PSTH,1,'omitnan')/(Ncl * sweeps); + % plot(ax1,psthTX,popPSTH,'DisplayName','Population PSTH') + % axLabel = 'Population activity'; + % yyaxis(ax1,'right') + % plot(ax1,trigTX,trig,'LineWidth',1.5,... + % 'LineStyle',':')%,'Color',clr,'DisplayName',IDe{1},... + % + % Formatting the population PSTH plot + + ax2.YAxis(1).Limits = [0,1.01]; + ax2.Legend.String = csNames; + % + % + + % title(ax1,[expName,sprintf(' %d trials',sweeps)], 'Interpreter', 'none') + % + % + clear PSTH + clear PSTHarray + + +end +% end + + + +%% PopPSTH By Group + + +red = [0.75, 0, 0]; +green = [0, 0.75, 0]; +blue = [0.25, 0.5, 1]; +purple = [0.5,0,0.5]; +colour = [red; green; blue; purple]; + + +transparency = [1, 0.25]; %1:-1/length(consideredConditions):0.5; + +csNames = fieldnames(Triggers); +% ruIdx = filterIdx; +axLabel = 'Firing Rate [Hz]'; +ruIdxDim = size(ruIdx); +nFilters = ruIdxDim(2); +for grp = 1: nFilters + + + fig = figure('Name',[expName,'_', ruNames{grp}],'Color',[1,1,1]); + + hold on + fthAxFlag = false; + if ~exist('stims','var') + totlX = 2; + + elseif ~isempty(stims) + fthAxFlag = true; + totlX = 3; + end + ax1 = subplot(totlX,1,1:2,'Parent',fig); + +% +% datclr = [0:0.8/(nFilters-1):0.8]' * ones(1, nFilters); + + for ccond = length(consideredConditions):-1:1 + [PSTHarray{grp}(:,:,ccond), trig, sweeps] = getPSTH(discStack(ruIdx(:,grp),:,:),timeLapse,... + ~delayFlags(:,ccond),binSz,fs); + + PSTH = PSTHarray{grp}(:,:,ccond); + [Ncl, Npt] = size(PSTH); + PSTHn = PSTH./max(PSTH,[],2); + + + psthTX = linspace(timeLapse(1),timeLapse(2),Npt); + trigTX = linspace(timeLapse(1),timeLapse(2),size(trig,2)); + popPSTH = sum(PSTH,1,'omitnan')/(Ncl * sweeps * binSz); + plot(psthTX,popPSTH, 'Color', colour(grp,:)) + hold on + + end + leg = legend; + leg.String = flip(consCondNames); + leg.Box = 'off'; + leg.FontName = 'Arial'; + leg.FontSize = 10; + leg.Location = 'north'; + + ax1.Title.String = ruNames{grp}; + ax1.YLim = [0, 50]; + % %if fthAxFlag + ax2 = subplot(totlX,1,3,'Parent',fig); + + stims = mean(cst(:,:,delayFlags(:,ccond)),3); + stims = stims - median(stims,2); + for cs = 1:size(stims,1) + if abs(log10(var(stims(cs,:),[],2))) < 13 + [m,b] = lineariz(stims(cs,:),1,0); + stims(cs,:) = m*stims(cs,:) + b; + else + stims(cs,:) = zeros(1,Nt); + end + end + + [r,c] = size(stims); + + if r < c + stims = stims'; + stmClr = zeros(r, 3); + + end + + + stmClr([1,5,9]) = 1; + stmClr(stmClr == 0) = 0.25; + + + + for cs = 1:min(r,c) + if exist('IDs','var') + plot(ax2,trigTX,stims(:,cs),'LineStyle','-.','LineWidth',0.5,... + 'DisplayName', csNames{cs}, 'Color', stmClr(cs,:)) + else + plot(ax2,trigTX,stims(:,cs),'LineStyle','-.','LineWidth',0.5, 'Color', stmClr(cs,:)) + end + + % ax2.Children(1).Color = defineColorForStimuli(IDs(cs)); + + if cs == 1 + ax2.NextPlot = 'add'; + end + end + legend(ax2,'show','Location','northwest') + + ax2.Box = 'off'; + ax2.XLim = [timeLapse(1), timeLapse(2)]; + ax2.XAxis.Visible = 'off'; + ax2.YAxis.Visible = 'off'; + linkaxes([ax1,ax2],'x') + %end + + + + + + + + + + + % [Ncl, Npt] = size(PSTH); + % + % psthTX = linspace(timeLapse(1),timeLapse(2),Npt); + % trigTX = linspace(timeLapse(1),timeLapse(2),size(trig,2)); + % % clr = defineColorForStimuli(IDe); + % popPSTH = sum(PSTH,1,'omitnan')/(Ncl * sweeps); + % plot(ax1,psthTX,popPSTH,'DisplayName','Population PSTH') + % axLabel = 'Population activity'; + % yyaxis(ax1,'right') + % plot(ax1,trigTX,trig,'LineWidth',1.5,... + % 'LineStyle',':')%,'Color',clr,'DisplayName',IDe{1},... + % + % Formatting the population PSTH plot + ax1.YAxis(1).Label.String = axLabel; + ax2.YAxis(1).Limits = [0,1.01]; + ax2.Legend.String = csNames; + ax = gca; + leg = legend; + leg.Box = 'off'; + leg.FontName = 'Arial'; + leg.FontSize = 10; + % + % + ax1.XLabel.String = sprintf('Time_{%.2f ms} [s]',binSz*1e3); + ax1.XLim = [timeLapse(1), timeLapse(2)]; + ax1.Box = 'off'; + ax1.ClippingStyle = 'rectangle'; + % + legend(ax1,'show','Location','northeast') +% ax1.Legend.String = ruNames; + % title(ax1,[expName,sprintf(' %d trials',sweeps)], 'Interpreter', 'none') + % + % + clear PSTH + clear PSTHarray + + +end +% end + +%% Rasters +% DE_Jittering needs to be unfiltered for significance for this to work! +csNames = fieldnames(Triggers); +% csNames = csNames(2:end); +IDs = csNames; +trigTX = linspace(timeLapse(1),timeLapse(2),size(trig,2)); + +rasterDir = fullfile(figureDir,'Rasters\'); +if ~mkdir(rasterDir) + fprintf(1,'There was an issue with the figure folder...\n'); +end + + +Power = NaN(length(consCondNames),1); +for cc = 1:length(consCondNames) + + mWfind = strfind(consCondNames{cc}, 'mW'); + + pwr = consCondNames{cc}(mWfind-2:mWfind+1); + if isnan(pwr) + pwrMissing = true; + elseif contains(pwr, '.') + pwr = consCondNames{cc}(mWfind-3:mWfind+1); + elseif contains(pwr, '_') || contains(pwr, ' ') + pwr = pwr(2:end); + end + pwr = str2double(pwr(1:end-2)); + Power(cc) = pwr; +end +pwrs = unique(Power); + + + +for a = 1:length(pwrs) + pwr = pwrs(a); + % MchTblInd = ['Mech_Control_', num2str(pwr), 'mW_MR']; + % LasTblInd = [20,21,22];%['Laser_Control_', num2str(pwr), 'mW_LR']; + % MchCondControl = ['Mech_Control_', num2str(pwr), 'mW']; + % LasCondControl = ['Laser_Control_', num2str(pwr), 'mW']; + % MchLasCond = ['Mech_Laser_', num2str(pwr), 'mW']; + % EffectTblInd = ['Mech_Control_', num2str(pwr), 'mW_vs_Mech_Laser_', num2str(pwr), 'mW_Evoked_Response']; + % TblInd = find(clInfo.ActiveUnit); % ATM this only makes rasters that show sig control mech response + % clIDind = clInfo.id(TblInd); + pwrInd = Power == pwr; + clIDind = pclID; + lngth = length(clIDind); + for a = 1:lngth + rng('default'); + cl = clIDind(a); + clSel = find(ismember(pclID, cl)); + % if chCond == 1 + % rasCondSel = find(ismember(consCondNames, MchCondControl) | ismember(consCondNames, MchLasCond)); + % label = 'Mech'; + % else + % rasCondSel = find(ismember(consCondNames, LasCondControl) | ismember(consCondNames, MchLasCond)); + % label = 'Laser'; + % end + rasCondSel = [1 2 3];; + rasCond = consideredConditions(rasCondSel); + rasCondNames = consCondNames(rasCondSel); + Nrcl = numel(clSel); + % Reorganize the rasters in the required order. + clSub = find(ismember(gclID, pclID(clSel)))+1; + [rasIdx, rasOrd] = ismember(pclID(ordSubs), pclID(clSel)); + clSub = clSub(rasOrd(rasIdx)); + clSel = clSel(rasOrd(rasOrd ~= 0)); + Nma = min(Na(rasCondSel)); + rasFig = figure; + columns = length(pwrs); + Nrcond = length(rasCond); + ax = gobjects(Nrcond*Nrcl,1); + for cc = 1:length(rasCond) + % Equalize trial number + trigSubset = sort(randsample(Na(rasCondSel(cc)),Nma)); + tLoc = find(delayFlags(:,rasCondSel(cc))); + tSubs = tLoc(trigSubset); + % Trigger subset for stimulation shading + trigAlSubs = Conditions(rasCond(cc)).Triggers(trigSubset,:); + timeDur = round(diff(trigAlSubs, 1, 2)/fs, 3); + trigChange = find(diff(timeDur) ~= 0); + + for ccl = 1:Nrcl + lidx = ccl + (cc - 1) * Nrcl; + ax(lidx) = subplot(Nrcond, Nrcl, lidx); % subplot( Nrcl, Nrcond, lidx); % to plot the other way around + title(ax(lidx),sprintf(rasCondNames{cc}), 'Interpreter', 'none') % ,pclID{clSel(ccl)} + plotRasterFromStack(discStack([1,clSub(ccl)],:,tSubs),... + timeLapse, fs,'',ax(lidx)); + ax(lidx).YAxisLocation = 'origin';ax(lidx).YAxis.TickValues = Nma; + ax(lidx).YAxis.Label.String = 'Trials'; +% ax(lidx).YAxis.Label.Position =... +% [timeLapse(1)-timeLapse(1)*0.65, Nma,0]; + % ax(lidx).XAxis.TickLabels =... + % cellfun(@(x) (x)*1e3, ax(lidx).XAxis.TickValues,... + % 'UniformOutput', 0); + xlabel(ax(lidx), 'Time [s]') + initSub = 0; + optsRect = {'EdgeColor','none','FaceColor','none'}; + for ctr = 1:numel(trigChange) + rectangle('Position',[0, initSub,... + timeDur(trigChange(ctr)), trigChange(ctr)],optsRect{:}) + initSub = trigChange(ctr); + end + rectangle('Position', [0, initSub, timeDur(Nma),... + Nma - initSub],optsRect{:}) + + + stims = mean(cst(:,:,delayFlags(:,rasCondSel(cc))),3); +% stims = stims([2,3],:); + + stims = stims - median(stims,2); + + + + for cs = 1:size(stims,1) + if abs(log10(var(stims(cs,:),[],2))) < 13 + [m,b] = lineariz(stims(cs,:),1,0); + stims(cs,:) = m*stims(cs,:) + b; + else + stims(cs,:) = zeros(1,Nt); + end + end + + [r,c] = size(stims); + + if r < c + stims = stims'; + stmClr = zeros(r, 3); + + end + +% stmClr =[ 1 0 0 0.25; 0 1 1 0.25]; + + + +% yyaxis('right'); +% hold on +% for cs = 1:min(r,c) +% if exist('IDs','var') +% plot(trigTX,stims(:,cs),'LineStyle','-','LineWidth', 1,... +% 'DisplayName', IDs{cs}, 'Color', stmClr(cs,:)) +% else +% plot(trigTX,stims(:,cs),'LineStyle','-','LineWidth',1, 'Color', stmClr(cs,:)) +% end + + + % ax2.Children(1).Color = defineColorForStimuli(IDs(cs)); + +% if cs == 1 +% ax2.NextPlot = 'add'; +% end + +% end + hold off + ax = gca; + + +% ax.YAxis(2).Limits = [0.015, 1]; +% ax.YAxis(2).Visible = 'off'; + ax.FontName ='Arial'; + ax.FontSize = 25; + +% f=get(gca,'Children'); +% legend(f) +% + + + + end + end + + + + + + rasConds = rasCondNames{1}; + if length(rasCondNames) > 1 + for r = 2:length(rasCondNames) + rasConds = [rasConds, '+', rasCondNames{r}]; + end + end + + linkaxes(ax,'x') + rasFigName = ['Unit_', cell2mat(cl), '_', ]; + rasFig.Name = [rasFigName, '_', num2str(pwr), 'mW']; + configureFigureToPDF (rasFig); + set(rasFig, 'Position', get(0, 'ScreenSize')); + saveas(rasFig,fullfile(rasterDir, [rasFigName,'_',rasConds,'_', num2str(timeLapse(1)), '_to_', num2str(timeLapse(2)),'.emf'])); + %savefig(rasFig,fullfile(rasterDir, [rasFigName, ' ', num2str(pwr), 'mW.fig'])); + savefig(rasFig,fullfile(rasterDir, [rasFigName,'_',rasConds, '.fig'])); + end +end +close all + + + diff --git a/Ross/PainAnalysis.m b/Ross/PainAnalysis.m index 3973cb1..a49f516 100644 --- a/Ross/PainAnalysis.m +++ b/Ross/PainAnalysis.m @@ -20,7 +20,7 @@ %% Constructing the helper 'global' variables % Number of total samples -Ns = min(structfun(@numel,Triggers)); +Ns = max(structfun(@numel,Triggers)); % Total duration of the recording Nt = Ns/fs; % Useless clusters (labeled as noise or they have very low firing rate) @@ -69,7 +69,7 @@ % Time lapse, bin size, and spontaneous and response windows promptStrings = {'Viewing window (time lapse) [s]:','Response window [s]',... 'Bin size [s]:'}; -defInputs = {'0.1, 0.1', '0.002, 0.05', '0.001'}; +defInputs = {'3, 6', '0.1, 1', '0.01'}; answ = inputdlg(promptStrings,'Inputs', [1, 30],defInputs); if isempty(answ) fprintf(1,'Cancelling...\n') @@ -234,36 +234,46 @@ for cc = indCondSubs stFigName = [stFigBasename, consCondNames{ccn}, stFigSubfix]; ccn = ccn + 1; - if ~exist([stFigName,'.*'],'file') + if ~exist([stFigName,'.pdf'],'file') || ~exist([stFigName,'.fig'],'file') print(figs(cc),[stFigName,'.pdf'],'-dpdf','-fillpage') - print(figs(cc),[stFigName,'.emf'],'-dmeta') + savefig(figs(cc),[stFigName,'.fig']) end end +H = cell2mat(cellfun(@(x) x.Pvalues,... + arrayfun(@(x) x.Activity, Results(indCondSubs), 'UniformOutput', 0),... + 'UniformOutput', 0)) < 0.05; +Htc = sum(H,2); +CtrlCond = contains(consCondNames,'control','IgnoreCase',true); +wruIdx = any(H(:,CtrlCond),2); +Nwru = nnz(wruIdx); + +fprintf('%d whisker responding clusters:\n', Nwru); +fprintf('- %s\n',gclID{wruIdx}) %% Saving variables -save(fullfile(dataDir,[expName,'_Variables.mat']),'consCondNames','Counts', 'Results', 'responseWindow','Triggers', '-v7.3'); +save(fullfile(dataDir,[expName,'_MechVariables.mat']),'consCondNames','Counts', 'Results', 'responseWindow','Triggers', '-v7.3'); %RAM: shove all of this previous stuff into functions and then replace %with one or more function calls. %% Getting cluster info and adding variables to table -clInfo = getClusterInfo(fullfile(dataDir,'cluster_info.tsv')); -chanMap = readNPY(fullfile(dataDir,'channel_map.npy')); -chanPos = readNPY(fullfile(dataDir,'channel_positions.npy')); -[m,b] = lineariz(chanPos(:,1), 6, 1); -shank = m*chanPos(:,1) + b; -shank = round(shank); -shMap = containers.Map(chanMap, shank); -setShank = @(x) shMap(x); -clInfo.shank = arrayfun(setShank, clInfo.channel); -tb = size(clInfo); -sz = tb(1); -ActiveUnit = false(sz,1); -clInfo = addvars(clInfo,ActiveUnit,'NewVariableNames','ActiveUnit','After','id'); -clInfo{gclID, 'ActiveUnit'} = true; +% clInfo = getClusterInfo(fullfile(dataDir,'cluster_info.tsv')); +% chanMap = readNPY(fullfile(dataDir,'channel_map.npy')); +% chanPos = readNPY(fullfile(dataDir,'channel_positions.npy')); +% [m,b] = lineariz(chanPos(:,1), 6, 1); +% shank = m*chanPos(:,1) + b; +% shank = round(shank); +% shMap = containers.Map(chanMap, shank); +% setShank = @(x) shMap(x); +% clInfo.shank = arrayfun(setShank, clInfo.channel); +% tb = size(clInfo); +% sz = tb(1); +% ActiveUnit = false(sz,1); +% clInfo = addvars(clInfo,ActiveUnit,'NewVariableNames','ActiveUnit','After','id'); +% clInfo{gclID, 'ActiveUnit'} = true; for a = 1: length(consCondNames) clInfo{clInfo.ActiveUnit == true,[consCondNames{1,a}, '_Counts_Spont']} = mean(Counts{a,1}')'; @@ -304,7 +314,7 @@ d = d - 1; f = f + d; end -% writeClusterInfo(clInfo, fullfile(dataDir,'cluster_info.tsv')); +writeClusterInfo(clInfo, fullfile(dataDir,'cluster_info.tsv')); %% Determining nShanks @@ -342,15 +352,13 @@ ax = gca; ax.FontSize = 14; - ax = gca; - ax.FontSize = 14; end % configureFigureToPDF(SpontaneousBox); - % Getting Wilcoxon rank sums for box plots + % Getting Wilcoxon sign ranks for box plots for a = 1: length(consCondNames) - 1 for b = (a + 1): length(consCondNames) @@ -916,8 +924,8 @@ %% rasters for testing lastlevel=0; -thisCondition=4; -for trialNo = 1:55 +thisCondition=2; +for trialNo = 20% :55 figure; for n=1:length(relativeSpikeTimes) if mod(n,2)==0, col='b';else col='k';end diff --git a/Ross/PainProtocolGetter.m b/Ross/PainProtocolGetter.m new file mode 100644 index 0000000..ecf2c87 --- /dev/null +++ b/Ross/PainProtocolGetter.m @@ -0,0 +1,97 @@ +%% +a = 5; +Trig(1).name = head69.title; +Trig(2).name = head71.title; +% Trig(3).name = head66.title; +%Trig(4).name = head67.title; +%Trig(5).name = head68.title; +Trig(6).name = head70.title; +Trig(1).info{a} = chan69; +Trig(1).offset(a) = length(chan69); +Trig(2).info{a} = chan71; +Trig(2).offset(a) = length(chan71); +% Trig(3).info{a} = chan66; +%Trig(3).offset(a) = length(chan66); +% Trig(4).info{a} = chan67; +% Trig(4).offset(a) = length(chan67); +% Trig(5).info{a} = chan68; +% Trig(5).offset(a) = length(chan68); +Trig(6).info{a} = chan70; +Trig(6).offset(a) = length(chan70); +%% Getting Trigger data +for b = 2 + for a = 1:length(Trig(b).info) + Obj = StepWaveform(Trig(b).info{a}, fs); + Trig(b).triggers{a} = Obj.subTriggers; + end +end +%% Concatenating Triggers +for b = 2 + Trig(b).AllTriggers = Trig(b).triggers{1}; + lngth = length(Trig(b).triggers); + offset = Trig(b).offset(1); + for a = 2:lngth + offInd = a; + Trig(b).AllTriggers = [Trig(b).AllTriggers; offset + Trig(b).triggers{a}]; + offset = offset + Trig(b).offset(offInd); + end +end +%% Creating Trigger Struct Data +lngth = length(Trig(1).info); +Triggers.MechTTL = [Trig(1).info{1}]; +Triggers.Laser = [Trig(2).info{1}]; +% Triggers.CED = [Trig(3).info{1}]; +% Triggers.LFP = [Trig(4).info{1}]; +% Triggers.Resp = [Trig(5).info{1}]; +Triggers.MechStim = [Trig(6).info{1}]; +for a = 2: lngth + Triggers.MechTTL = [Triggers.MechTTL; Trig(1).info{a}]; + Triggers.Laser = [Triggers.Laser; Trig(2).info{a}]; +% Triggers.CED = [Triggers.CED; Trig(3).info{a}]; +% Triggers.LFP = [Triggers.LFP; Trig(4).info{a}]; +% Triggers.Resp = [Triggers.Resp; Trig(5).info{a}]; + Triggers.MechStim = [Triggers.MechStim; Trig(6).info{a}]; +end +%% Separating Conditions + +Conditions(1).name = 'MechALL'; Conditions(1).Triggers = Trig(1).AllTriggers; +Conditions(2).name = 'LaserAll'; Conditions(2).Triggers = Trig(2).AllTriggers; +%save(fullfile(dataDir,[expName,'analysis.mat']),'Conditions','Triggers','-v7.3'); +%% Adding New Conditions +Conditions(3).name = 'Mech_Control_10mW'; +Conditions(4).name = 'Mech_Laser_10mW'; +Conditions(5).name = 'Laser_Control_10mW'; +Conditions(6).name = 'Mech_Control_15mW'; +Conditions(7).name = 'Mech_Laser_15mW'; +Conditions(8).name = 'Laser_Control_15mW'; +Conditions(9).name = 'Mech_Control_5mW'; +Conditions(10).name = 'Mech_Laser_5mW'; +Conditions(11).name = 'Laser_Control_5mW'; +Conditions(3).name = 'Mech_Control_10mW'; +Conditions(4).name = 'Mech_Laser_10mW'; +Conditions(5).name = 'Laser_Control_10mW'; +Conditions(6).name = 'Mech_Control_15mW'; +Conditions(7).name = 'Mech_Laser_15mW'; +Conditions(8).name = 'Laser_Control_15mW'; +Conditions(9).name = 'Mech_Control_5mW'; +Conditions(10).name = 'Mech_Laser_5mW'; +Conditions(11).name = 'Laser_Control_5mW'; + +Conditions(3).Triggers = Conditions(1).Triggers; +Conditions(4).name = Conditions(1).Triggers; +Conditions(5).Triggers = Conditions(2).Triggers; +Conditions(6).Triggers = Conditions(1).Triggers; +Conditions(7).Triggers = Conditions(1).Triggers; +Conditions(8).Triggers = Conditions(2).Triggers; +Conditions(9).Triggers = Conditions(1).Triggers; +Conditions(10).Triggers = Conditions(1).Triggers; +Conditions(11).Triggers = Conditions(2).Triggers; +Conditions(3).Triggers = Conditions(1).Triggers; +Conditions(4).Triggers = Conditions(1).Triggers; +Conditions(5).Triggers = Conditions(2).Triggers; +Conditions(6).Triggers = Conditions(1).Triggers; +Conditions(7).Triggers = Conditions(1).Triggers; +Conditions(8).Triggers = Conditions(2).Triggers; +Conditions(9).Triggers = Conditions(1).Triggers; +Conditions(10).Triggers = Conditions(1).Triggers; +Conditions(11).Triggers = Conditions(2).Triggers; \ No newline at end of file diff --git a/Ross/PeakTrough.m b/Ross/PeakTrough.m new file mode 100644 index 0000000..f214add --- /dev/null +++ b/Ross/PeakTrough.m @@ -0,0 +1,25 @@ +function [PT, fig] = PeakTrough(clWaveforms, ID, fs) +PT = zeros(length(ID),1); +r = 1; +for a = 1:length(ID) + ind = find(ismember(clWaveforms(:,1), ID(a))); + avWv{r} = mean(clWaveforms{ind,2}')'; + minVal = min(avWv{r}); + minInd = find((avWv{r} == minVal)); + maxVal = max(avWv{r}(minInd:end,1)); + maxInd = find((avWv{r} == maxVal)); + SampleDif = maxInd - minInd; + msecDif = SampleDif/fs*1000; + PT(r,1) = msecDif; + r = r + 1; +end +xLow = min(PT); +xHigh = max(PT); +scaled = round((xHigh-xLow)*20); +fig = figure('color', 'white'); histogram(PT,scaled); +title('Peak-Trough delta-t Distribution'); +xlabel('Time (msec)'); +fig = gcf; +ax = fig(1).Children; +ax.FontSize = 20; +end \ No newline at end of file diff --git a/Ross/PlotISIbox.m b/Ross/PlotISIbox.m new file mode 100644 index 0000000..2c1dbc8 --- /dev/null +++ b/Ross/PlotISIbox.m @@ -0,0 +1,31 @@ +%% Considered conditions selection +% Choose the conditions to look at +% auxSubs = setdiff(1:numel(CFA_ISI.CondName)); +% ccondNames = CFA_ISI.CondName(auxSubs); +% [cchCond, iOk] = listdlg('ListString',ccondNames,'SelectionMode','multiple',... +% 'PromptString',... +% 'Choose the condition(s) to look at:',... +% 'ListSize', [350, numel(condNames)*16]); +% if ~iOk +% fprintf(1,'Cancelling...\n') +% return +% end + +figure('Color',[1,1,1]); +for figNo = 1:3 + subplot(3,1,figNo) + plot(CFA_ISI(figNo).Vals(2).bns{1}, CFA_ISI(figNo).Vals(2).cts{1}./sum(CFA_ISI(figNo).Vals(2).cts{1}),'LineWidth',1); + % hold on + for a = 2: length(CFA_ISI(figNo).Vals(2).cts) + plot(CFA_ISI(figNo).Vals(2).bns{a}, CFA_ISI(figNo).Vals(2).cts{a}./sum(CFA_ISI(figNo).Vals(2).cts{a}),'LineWidth',1); + end + fig = gcf; +% ax = fig.Children; +% % ax.XTickLabel = round(exp(cellfun(@str2double,ax.XTickLabel)) * 1e3); +% % xlabel(ax,'Time [ms]'); ylabel(ax,'ISI Probability'); +% grid(ax,'on') + title(CFA_ISI(figNo).CondName) + +end + + diff --git a/Ross/PlotTriggeredISI.m b/Ross/PlotTriggeredISI.m new file mode 100644 index 0000000..14d411a --- /dev/null +++ b/Ross/PlotTriggeredISI.m @@ -0,0 +1,39 @@ +chCond = 1; +figure('Color', 'White', 'Name', [TrigISIs(chCond).name]); +hold on +for wIndex = 1:2 + CondNames = {'Baseline', 'Evoked'}; + clr = {[0.5, 0, 0], [0, 1, 1]}; + IsiStack = zeros(length(TrigISIs(chCond).Vals(wIndex).ISI), length(TrigISIs(chCond).Vals(wIndex).ISI{1})); + cumIsiStack = zeros(length(TrigISIs(chCond).Vals(wIndex).CumISI), length(TrigISIs(chCond).Vals(wIndex).CumISI{1})); + for cInd = 1:length(TrigISIs(chCond).Vals(wIndex).CumISI) + IsiStack(cInd,:) = TrigISIs(chCond).Vals(wIndex).ISI{cInd}; + cumIsiStack(cInd,:) = TrigISIs(chCond).Vals(wIndex).CumISI{cInd}; + end + % Getting rid of NaNs + cumIsiStack(length(TrigISIs(chCond).Vals(wIndex).CumISI) + 1,:) = NaN; + IsiStack(length(TrigISIs(chCond).Vals(wIndex).ISI) + 1,:) = NaN; + cumIndNaN = (length(TrigISIs(chCond).Vals(wIndex).CumISI) + 1); + for nInd = 1:(length(TrigISIs(chCond).Vals(wIndex).CumISI)) + if isnan(cumIsiStack(nInd,:)) == true + cumIndNaN = [cumIndNaN; nInd]; + end + end + cumIndNaN = sort(cumIndNaN, 'descend'); + cumIsiStack(cumIndNaN,:) =[]; + IsiStack(cumIndNaN,:) = []; + stckSz = size(cumIsiStack); + ISIcum = sum(cumIsiStack)/stckSz(1); + % Only if the bin widths are constant!!! + plot(TrigISIs(1).Vals(1).bns{1}, ISIcum, 'Color', clr{wIndex}) +end +legend(CondNames) +ylabel('Cumulative Fraction'); +xlabel('ISI (msecs)'); +xlim([-4, 1]); +xticks([-4:1]) +ylim([0, 1]); +fig = gcf; +ax = gca; +ax.FontSize = 20; +ax.XTickLabel = 10.^cellfun(@str2double,ax.XTickLabel) * 1e3; \ No newline at end of file diff --git a/Ross/PoolDifMech.m b/Ross/PoolDifMech.m new file mode 100644 index 0000000..7cd4456 --- /dev/null +++ b/Ross/PoolDifMech.m @@ -0,0 +1,1223 @@ +%% PoolDifMech + +clear +close all +clc +%% +dataDirs = { + '\\lsdf02.urz.uni-heidelberg.de\sd19b001\PainData\Corrected_Channel_Map\VPL\1.8.22\KS3__Nblocks2__9_9__0pt9__20\' + '\\lsdf02.urz.uni-heidelberg.de\sd19b001\PainData\Corrected_Channel_Map\VPL\4.8.22\KS3__Nblocks2__9_9__0pt9__20\' + '\\lsdf02.urz.uni-heidelberg.de\sd19b001\PainData\Corrected_Channel_Map\VPL\8.8.22\DifMech\VPL_E1_KS3__Nblocks2__9_9__0pt9__20\' + }; + +selUnitDirs = { + '\\lsdf02.urz.uni-heidelberg.de\sd19b001\PainData\Corrected_Channel_Map\VPL\1.8.22\KS3__Nblocks2__9_9__0pt9__20\m51_ECE_Processing_-10-to-10\PopulationAnalysis\SelectedUnitData.mat' + '\\lsdf02.urz.uni-heidelberg.de\sd19b001\PainData\Corrected_Channel_Map\VPL\4.8.22\KS3__Nblocks2__9_9__0pt9__20\m50_ECE_Processing_-10-to-10\PopulationAnalysis\SelectedUnitData.mat' + '\\lsdf02.urz.uni-heidelberg.de\sd19b001\PainData\Corrected_Channel_Map\VPL\8.8.22\DifMech\VPL_E1_KS3__Nblocks2__9_9__0pt9__20\m53_VPL_E1_DifMech_ECE_Processing_-10-to-10\PopulationAnalysis\SelectedUnitData.mat' + }; + +figureDir = '\\lsdf02.urz.uni-heidelberg.de\sd19b001\PainData\Corrected_Channel_Map\VPL\DifMechPooled'; +%% variables to be collected + +discStacks = false(0); +csts = []; +Data = []; +sortedDatapooled = []; +goodspooled = []; +%% collecting trial numbers early +chCond = 1; +nExpts = size(dataDirs, 1); +trialnumbers = []; +for cexpt = 1:nExpts + dataDir = dataDirs{cexpt}; + Conditions = dir([dataDir, '*analysis*.mat']); + [r, ~] = size(Conditions); + if r ~= 1 + fprintf(['multiple or no analysis files in directory...\n' ... + 'choose one \n']) + return + end + load([dataDir, Conditions.name]); + trialnumbers = [trialnumbers, size(Conditions(1).Triggers,chCond)]; +end + +constrials = min(trialnumbers); +%% User controlling variables +% Time lapse, bin size, and spontaneous and response windows +promptStrings = {'Viewing window (time lapse) [s]:','Response window [s]',... + 'Bin size [s]:'}; +defInputs = {'-2, 6', '0.1, 3', '0.05'}; +answ = inputdlg(promptStrings,'Inputs', [1, 30],defInputs); +if isempty(answ) + fprintf(1,'Cancelling...\n'); + return +else + timeLapse = str2num(answ{1}); %#ok<*ST2NM> + if numel(timeLapse) ~= 2 + timeLapse = str2num(inputdlg('Please provide the time window [s]:',... + 'Time window',[1, 30], '-0.1, 0.1')); + if isnan(timeLapse) || isempty(timeLapse) + fprintf(1,'Cancelling...') + return + end + end + responseWindow = str2num(answ{2}); + binSz = str2double(answ(3)); +end +fprintf(1,'Time window: %.2f - %.2f ms\n',timeLapse(1)*1e3, timeLapse(2)*1e3) +fprintf(1,'Response window: %.2f - %.2f ms\n',responseWindow(1)*1e3, responseWindow(2)*1e3) +fprintf(1,'Bin size: %.3f ms\n', binSz*1e3) +sponAns = questdlg('Mirror the spontaneous window?','Spontaneous window',... + 'Yes','No','Yes'); +spontaneousWindow = -flip(responseWindow); +if strcmpi(sponAns,'No') + spontPrompt = "Time before the trigger in [s] (e.g. -0.8, -0.6 s)"; + sponDef = string(sprintf('%.3f, %.3f',spontaneousWindow(1),... + spontaneousWindow(2))); + sponStr = inputdlg(spontPrompt, 'Inputs',[1,30],sponDef); + if ~isempty(sponStr) + spontAux = str2num(sponStr{1}); + if length(spontAux) ~= 2 || spontAux(1) > spontAux(2) || ... + spontAux(1) < timeLapse(1) + fprintf(1, 'The given input was not valid.\n') + fprintf(1, 'Keeping the mirror version!\n') + else + spontaneousWindow = spontAux; + end + end +end +fprintf(1,'Spontaneous window: %.2f to %.2f ms before the trigger\n',... + spontaneousWindow(1)*1e3, spontaneousWindow(2)*1e3) + + + + +%% loading variables for a given experiment - Starting the for-loop + +for cexpt = 1:nExpts + dataDir = dataDirs{cexpt}; + selUnits = selUnitDirs{cexpt}; + + Conditions = dir([dataDir, '*analysis*.mat']); + [r, ~] = size(Conditions); + if r ~= 1 + fprintf(['multiple or no analysis files in directory...\n' ... + 'choose one \n']) + return + end + load([dataDir, Conditions.name]); + + % homogenising trial numbers + Conditions(chCond).Triggers = Conditions(chCond).Triggers(1:constrials,:); + + + sortedData = dir([dataDir, '*all_channels*.mat']); + [r, ~] = size(sortedData); + if r ~= 1 + fprintf(['multiple or no all_channels files in directory...\n' ... + 'choose one \n']) + return + end + load([dataDir, sortedData.name]); + + clInfo = getClusterInfo([dataDir filesep 'cluster_info.tsv']); + + if any(ismember(clInfo.Properties.VariableNames,'ActiveUnit')) + clInfo = removevars(clInfo, 'ActiveUnit'); + end + + + expID = dir([dataDir, '*expParams*.mat']); + [r, ~] = size(expID); + if r ~= 1 + fprintf(['multiple or no expParams files in directory...\n']) + return + end + load([dataDir, expID.name], 'expID'); + + load(selUnits, 'unit_ids') + + + %% renaming units to avoid confusion + + + for i = 1:length(sortedData) + sortedData{i,1} = [expID, '_unit_', sortedData{i,1}]; + end + + for i = 1:height(clInfo) + clInfo.id{i,1} = [expID, '_unit_', clInfo.id{i,1}]; + clInfo.Properties.RowNames{i,1} = clInfo.id{i,1}; + end + + for i = 1:length(unit_ids) + unit_ids{i} = [expID, '_unit_', unit_ids{i,1}]; + end + + + + %% global variables + + goods = find(ismember(sortedData(:,1), unit_ids)); + + Triggers.MechStim = Triggers.MechStim * -1; + + % Number of total samples + Ns = min(structfun(@numel,Triggers)); + % Total duration of the recording + Nt = Ns/fs; + + gclID = sortedData(goods,1); + % Logical spike trace for the first good cluster + spkLog = StepWaveform.subs2idx(round(sortedData{goods(1),2}*fs),Ns); + % Subscript column vectors for the rest good clusters + spkSubs = cellfun(@(x) round(x.*fs),sortedData(goods,2),... + 'UniformOutput',false); + % Number of good clusters + Ncl = numel(goods); + % Redefining the stimulus signals from the low amplitude to logical values + whStim = {'piezo','whisker','mech','audio'}; + cxStim = {'laser','light'}; + lfpRec = {'lfp','s1','cortex','s1lfp'}; + trigNames = fieldnames(Triggers); + numTrigNames = numel(trigNames); + ctn = 1; + continuousSignals = cell(numTrigNames,1); + continuousNameSub = zeros(size(trigNames)); + while ctn <= numTrigNames + if contains(trigNames{ctn},whStim,'IgnoreCase',true) + continuousSignals{ctn} = Triggers.(trigNames{ctn}); + continuousNameSub(ctn) = ctn; + end + if contains(trigNames{ctn},cxStim,'IgnoreCase',true) + continuousSignals{ctn} = Triggers.(trigNames{ctn}); + continuousNameSub(ctn) = ctn; + end + if contains(trigNames{ctn},lfpRec,'IgnoreCase',true) + continuousSignals{ctn} = Triggers.(trigNames{ctn}); + continuousNameSub(ctn) = ctn; + end + ctn = ctn + 1; + end + continuousSignals(continuousNameSub == 0) = []; + continuousNameSub(continuousNameSub == 0) = []; + trigNames = trigNames(continuousNameSub); + + + + Data = [Data; clInfo(:,1:12)]; + + %% Constructing the stack out of the user's choice + + + onOffStr = 'on'; + + % discStack - dicrete stack has a logical nature + % cst - continuous stack has a numerical nature + % Both of these stacks have the same number of time samples and trigger + % points. They differ only in the number of considered events. + + [~, cst] = getStacks(false,Conditions(chCond).Triggers,onOffStr,... + timeLapse,fs,fs,spkSubs,continuousSignals); + if cexpt == 1 + nTriggerscst = size(cst, 1); + end + + + + while size(cst, 1) > nTriggerscst + cst(end,:,:) = []; + end + + + + + while size(cst, 1) < nTriggerscst + csts(end,:,:) = []; + end + + discStack = getStacks(false,Conditions(chCond).Triggers,onOffStr,... + timeLapse,fs,fs,spkSubs,continuousSignals); + if cexpt == 1 + discStack(2,:,:) = []; + else + discStack(1:2,:,:) = []; + end + + %% concatenating important variables across expts + + tic + discStacks = cat(1, discStacks, discStack); + toc + csts = cat(1, csts, cst); + + + goodsoffset = size(sortedDatapooled,1); + goodspooled = cat(1, goodspooled, goods + goodsoffset); + + sortedDatapooled = cat(1, sortedDatapooled, sortedData); + +end +%% +discStack = discStacks; clear discStacks +cst = [mean(csts([1,3,5],:,:)); mean(csts([2,4,6],:,:))]; clear csts +sortedData = sortedDatapooled; clear sortedDatapooled +goods = goodspooled; clear goodspooled +[Ne, Nt, NTa] = size(discStack); +Ncl = numel(goods); +% Computing the time axis for the stack +tx = (0:Nt - 1)/fs + timeLapse(1); + +condNames = arrayfun(@(x) x.name,Conditions,'UniformOutput',false); +consideredConditions = find(~ismember(1:length(Conditions), chCond)); +Nccond = length(consideredConditions); +%% Boolean flags +delayFlags = false(NTa,Nccond); +counter2 = 1; +for ccond = consideredConditions + delayFlags(:,counter2) = ismember(Conditions(chCond).Triggers(:,1),... + Conditions(ccond).Triggers(:,1)); + counter2 = counter2 + 1; +end +Na = sum(delayFlags,1); + +%% Computing which units/clusters/putative neurons respond to the stimulus +% Logical indices for fetching the stack values +gclID = sortedData(goods,1); +expName = 'pooled'; +sponActStackIdx = tx >= spontaneousWindow(1) & tx <= spontaneousWindow(2); +respActStackIdx = tx >= responseWindow(1) & tx <= responseWindow(2); +% The spontaneous activity of all the clusters, which are allocated from +% the second until one before the last row, during the defined spontaneous +% time window, and the whisker control condition. + +timeFlags = [sponActStackIdx;respActStackIdx]; +% Time window +delta_t = diff(responseWindow); +% Statistical tests +[Results, Counts] = statTests(discStack, delayFlags, timeFlags); + +indCondSubs = cumsum(Nccond:-1:1); +consCondNames = condNames(consideredConditions); +% Plotting statistical tests +[Figs, Results] = scatterSignificance(Results, Counts,... + consCondNames, delta_t, sortedData(goods,1)); +configureFigureToPDF(Figs); +stFigBasename = fullfile(figureDir,[expName,' ']); +stFigSubfix = sprintf(' Stat RW%.1f-%.1fms SW%.1f-%.1fms',... + responseWindow(1)*1e3, responseWindow(2)*1e3, spontaneousWindow(1)*1e3,... + spontaneousWindow(2)*1e3); +ccn = 1; +%for cc = indCondSubs +for cc = 1:numel(Figs) + if ~ismember(cc, indCondSubs) + altCondNames = strsplit(Figs(cc).Children(2).Title.String,': '); + altCondNames = altCondNames{2}; + else + altCondNames = consCondNames{ccn}; + ccn = ccn + 1; + end + stFigName = [stFigBasename, altCondNames, stFigSubfix]; + % if ~exist([stFigName,'.pdf'],'file') || ~exist([stFigName,'.emf'],'file') + % print(Figs(cc),[stFigName,'.pdf'],'-dpdf','-fillpage') + % print(Figs(cc),[stFigName,'.emf'],'-dmeta') + % end + savefig(Figs(cc),fullfile(figureDir, [altCondNames, stFigSubfix '.fig'])); +end + +H = cell2mat(cellfun(@(x) x.Pvalues,... + arrayfun(@(x) x.Activity, Results(indCondSubs), 'UniformOutput', 0),... + 'UniformOutput', 0)) < 0.05; + +Htc = sum(H,2); +CtrlCond = contains(consCondNames,'control','IgnoreCase',true); +if ~nnz(CtrlCond) + CtrlCond = true(size(H,2),1); +end +wruIdx = any(H(:,CtrlCond),2); +Nwru = nnz(wruIdx); + +fprintf('%d responding clusters:\n', Nwru); +fprintf('- %s\n',gclID{wruIdx}) + +%% Addition mean signals to the Conditions variable +if ~isfield(Conditions,'Stimulus') ||... + any(arrayfun(@(x) isempty(x.Stimulus), Conditions(consideredConditions))) + fprintf(1,'Writting the stimulus raw signal into Conditions variable:\n') + whFlag = contains(trigNames, whStim, 'IgnoreCase', 1); + lrFlag = contains(trigNames, cxStim, 'IgnoreCase', 1); + cdel = 1; + for cc = consideredConditions + fprintf(1,'- %s\n', Conditions(cc).name) + Conditions(cc).Stimulus = struct(... + 'Mechanical',reshape(mean(cst((1),:,delayFlags(:,cdel)),3),... + 1,Nt),... + 'MechPressure',reshape(mean(cst((2),:,delayFlags(:,cdel)),3),... + 1,Nt),'TimeAxis',(0:Nt-1)/fs + timeLapse(1)); + cdel = cdel + 1; + end + %save(fullfile(dataDir,[expName,'_analysis.mat']),'Conditions','-append') +end + + +%% Filter question +filterIdx = true(Ne,1); +ansFilt = questdlg('Would you like to filter for significance?','Filter',... + 'Yes','No','Yes'); +filtStr = 'unfiltered'; +if strcmp(ansFilt,'Yes') + filterIdx = [true; wruIdx]; + filtStr = 'Filtered'; +end +%ruIdx = wruIdx; + + +%% Ordering PSTH + +orderedStr = 'ID ordered'; +dans = questdlg('Do you want to order the PSTH other than by IDs?',... + 'Order', 'Yes', 'No', 'No'); +ordSubs = 1:nnz(filterIdx(2:Ncl+1)); +pclID = gclID(filterIdx(2:end)); +if strcmp(dans, 'Yes') + % if ~exist('clInfo','var') + % clInfo = getClusterInfo(fullfile(dataDir,'cluster_info.tsv')); + % end + % varClass = varfun(@class,clInfo,'OutputFormat','cell'); + [ordSel, iOk] = listdlg('ListString', Data.Properties.VariableNames,... + 'SelectionMode', 'multiple'); + orderedStr = []; + ordVar = Data.Properties.VariableNames(ordSel); + for cvar = 1:numel(ordVar) + orderedStr = [orderedStr, sprintf('%s ',ordVar{cvar})]; %#ok + end + orderedStr = [orderedStr, 'ordered']; + + if ~strcmp(ordVar,'id') + [~,ordSubs] = sortrows(Data(pclID,:),ordVar, 'ascend'); + end +end +%% Plot PSTH +% goodsIdx = logical(clInfo.ActiveUnit); +csNames = fieldnames(Triggers); +while size(csNames,1) > size(cst) + csNames(end) = []; +end + +Nbn = diff(timeLapse)/binSz; +if (Nbn - round(Nbn)) ~= 0 + Nbn = ceil(Nbn); +end +PSTH = zeros(nnz(filterIdx) - 1, Nbn, Nccond); +psthFigs = gobjects(Nccond,1); +for ccond = 1:Nccond + figFileName = sprintf('%s %s VW%.1f-%.1f ms B%.1f ms RW%.1f-%.1f ms SW%.1f-%.1f ms %sset %s (%s)',... + expName, Conditions(consideredConditions(ccond)).name, timeLapse*1e3,... + binSz*1e3, responseWindow*1e3, spontaneousWindow*1e3, onOffStr,... + orderedStr, filtStr); + [PSTH(:,:,ccond), trig, sweeps] = getPSTH(discStack(filterIdx,:,:),timeLapse,... + ~delayFlags(:,ccond),binSz,fs); + stims = mean(cst(:,:,delayFlags(:,ccond)),3); + stims = stims - median(stims,2); + for cs = 1:size(stims,1) + if abs(log10(var(stims(cs,:),[],2))) < 15 + [m,b] = lineariz(stims(cs,:),1,0); + stims(cs,:) = m*stims(cs,:) + b; + else + stims(cs,:) = zeros(1,Nt); + end + end + psthFigs(ccond) = plotClusterReactivity(PSTH(ordSubs,:,ccond),trig,sweeps,timeLapse,binSz,... + [{Conditions(consideredConditions(ccond)).name};... + pclID(ordSubs)],... + strrep(expName,'_','\_'),... + stims, csNames); + configureFigureToPDF(psthFigs(ccond)); + psthFigs(ccond).Children(end).YLabel.String =... + [psthFigs(ccond).Children(end).YLabel.String,... + sprintf('^{%s}',orderedStr)]; + % if ~exist([figFileName,'.pdf'], 'file') + % print(psthFigs(ccond), fullfile(figureDir,[figFileName, '.pdf']),... + % '-dpdf','-fillpage') + % end + % if ~exist([figFileName,'.emf'], 'file') + % print(psthFigs(ccond), fullfile(figureDir,[figFileName, '.emf']),... + % '-dmeta') + % end + +end +% for a = 1:length(consideredConditions) +% savefig(figure(a), fullfile(figureDir, [consCondNames{a}, '_filtered_PSTH_0.001binSz.fig'])); +% end + + +%% Getting cluster info and adding variables to table + +ActiveUnit = false(height(Data),1); +Data = addvars(Data,ActiveUnit,'NewVariableNames','ActiveUnit','After','id'); +Data{goods, 'ActiveUnit'} = true; + +window = diff(responseWindow); + +for a = 1: length(consCondNames) + Data{Data.ActiveUnit == true,[consCondNames{1,a}, '_Rate_Spont']} = mean(Counts{a,1}')'/window; + Data{Data.ActiveUnit == true,[consCondNames{1,a}, '_Rate_Evoked']} = mean(Counts{a,2}')'/window; +end + + +% Significant mechanical responses per condition +b = length(consCondNames); +for a = 1 : length(consCondNames) + Data{Data.ActiveUnit == true,[consCondNames{1,a}, '_R']} = Results(b).Activity(1).Pvalues < 0.05; + b = b + length(consCondNames) - a; +end + +% Comparing Across Conditions (i.e. manipulation effect on spontaneous and evoked activity) +% RAM: comment to explain what you are doing +sZ = size(Counts); +d = length(consCondNames); +e = 1; +f = length(consCondNames); +for a = 1:length(consCondNames) - 1 + for b = (a + 1): length(consCondNames) + + for c = 1: sZ(1,2) + Data{Data.ActiveUnit == true,[consCondNames{1,a},'_vs_',consCondNames{1,b}, '_', Results(e).Activity(c).Type, '_Response']} = Results(e).Activity(c).Pvalues < 0.05; + %RAM example + %myString = [consCondNames{1,a},'_vs_',consCondNames{1,b}, '_', Results(e).Activity(c).Type, '_Response']; + %clInfo{clInfo.ActiveUnit == true,myString} = Results(e).Activity(c).Pvalues < 0.05; + + end + + e = e + 1; + + if e == f + e = e + 1; + end + end + d = d - 1; + f = f + d; +end +writeClusterInfo(Data, fullfile(figureDir,'cluster_info_TonicResponses.tsv')); + +%% Rasters +% DE_Jittering needs to be unfiltered for significance for this to work! +csNames = fieldnames(Triggers); +% csNames = csNames(2:end); +IDs = csNames; +trigTX = linspace(timeLapse(1),timeLapse(2),size(trig,2)); + +rasterDir = fullfile(figureDir,'Rasters\'); +if ~mkdir(rasterDir) + fprintf(1,'There was an issue with the figure folder...\n'); +end + + +Power = NaN(length(consCondNames),1); +for cc = 1:length(consCondNames) + + mWfind = strfind(consCondNames{cc}, 'mW'); + + pwr = consCondNames{cc}(mWfind-2:mWfind+1); + if isnan(pwr) + pwrMissing = true; + elseif contains(pwr, '.') + pwr = consCondNames{cc}(mWfind-3:mWfind+1); + elseif contains(pwr, '_') || contains(pwr, ' ') + pwr = pwr(2:end); + end + pwr = str2double(pwr(1:end-2)); + Power(cc) = pwr; +end +pwrs = unique(Power); + +med = 0.2; +low = 0.4; +high = 0; +colours = ones(1,3); +colours(1:4,:) = med; colours(5:8,:) = low; colours(9:10,:) = high; + +for a = 1%:length(pwrs) + pwr = pwrs(a); + % MchTblInd = ['Mech_Control_', num2str(pwr), 'mW_MR']; + % LasTblInd = [20,21,22];%['Laser_Control_', num2str(pwr), 'mW_LR']; + % MchCondControl = ['Mech_Control_', num2str(pwr), 'mW']; + % LasCondControl = ['Laser_Control_', num2str(pwr), 'mW']; + % MchLasCond = ['Mech_Laser_', num2str(pwr), 'mW']; + % EffectTblInd = ['Mech_Control_', num2str(pwr), 'mW_vs_Mech_Laser_', num2str(pwr), 'mW_Evoked_Response']; + % TblInd = find(clInfo.ActiveUnit); % ATM this only makes rasters that show sig control mech response + % clIDind = clInfo.id(TblInd); + % pwrInd = Power == pwr; + clIDind = Data.id(Data.Mech_Low_R); + lngth = length(clIDind); + for a = 1:lngth + rng('default'); + cl = clIDind(a); + clSel = find(ismember(pclID, cl)); + % if chCond == 1 + % rasCondSel = find(ismember(consCondNames, MchCondControl) | ismember(consCondNames, MchLasCond)); + % label = 'Mech'; + % else + % rasCondSel = find(ismember(consCondNames, LasCondControl) | ismember(consCondNames, MchLasCond)); + % label = 'Laser'; + % end + rasCondSel = [1 2 3]; + rasCond = consideredConditions(rasCondSel); + rasCondNames = consCondNames(rasCondSel); + Nrcl = numel(clSel); + % Reorganize the rasters in the required order. + clSub = find(ismember(gclID, pclID(clSel)))+1; + [rasIdx, rasOrd] = ismember(pclID(ordSubs), pclID(clSel)); + clSub = clSub(rasOrd(rasIdx)); + clSel = clSel(rasOrd(rasOrd ~= 0)); + Nma = min(Na(rasCondSel)); + rasFig = figure; + columns = length(pwrs); + Nrcond = length(rasCond); + ax = gobjects(4*Nrcond*Nrcl,1); + lidx = 1; + for cc = 1:length(rasCond) + % Equalize trial number + trigSubset = sort(randsample(Na(rasCondSel(cc)),Nma)); + tLoc = find(delayFlags(:,rasCondSel(cc))); + tSubs = tLoc(trigSubset); + % Trigger subset for stimulation shading + trigAlSubs = Conditions(rasCond(cc)).Triggers(trigSubset,:); + timeDur = round(diff(trigAlSubs, 1, 2)/fs, 3); + trigChange = find(diff(timeDur) ~= 0); + for ccl = 1:Nrcl + + stims = mean(cst(:,:,delayFlags(:,rasCondSel(cc))),3); + % stims = stims([2,3],:); + + stims = stims - median(stims,2); + + + + for cs = 2 %for cs = 1:size(stims,1) + if abs(log10(var(stims(cs,:),[],2))) < 13 + [m,b] = lineariz(stims(cs,:),1,0); + stims(cs,:) = m*stims(cs,:) + b; + else + stims(cs,:) = zeros(1,Nt); + end + end + + [r,c] = size(stims); + + if r < c + stims = stims'; + stmClr = zeros(r, 3); + + end + + + + + for cs = 2 %for cs = 1:size(stims,1) + if stims(1,cs) > 0.5 + stim = ones(size(stims(:,cs)))-stims(:,cs); + else + stim = stims(:,cs); + end + % dP=[0; diff(stim)]; + stim = smooth(stim,10); + ax(lidx) = subplot(4*Nrcond, Nrcl, lidx); + if exist('IDs','var') + plot(trigTX,stim, 'LineStyle','-','LineWidth', 1,... + 'DisplayName', IDs{cs}, 'Color', stmClr(cs,:)) + % P = stim'; %ax(lidx).Children.YData; + % dP = [0 diff(P)]; + % dP = smooth(dP,100); + % dP = dP-mean(dP(1:100));dP=dP/max(dP); + % + % yyaxis right + % plot(trigTX, dP, 'LineStyle','-','LineWidth', 1,... + % 'DisplayName', IDs{cs}, 'Color', stmClr(cs,:)) + else + plot(trigTX,stim,'LineStyle','-','LineWidth',1, 'Color', stmClr(cs,:)) + + % P = ax(lidx).Children.YData; + % dP = [0 diff(P)]; + % dP = smooth(dP,100); + % dP = dP-mean(dP(1:100));dP=dP/max(dP); + % yyaxis right + % plot(trigTX, dP, 'LineStyle','-','LineWidth', 1,... + % 'DisplayName', IDs{cs}, 'Color', stmClr(cs,:)) + end + ax(lidx).Visible = 'off'; + + + % ax2.Children(1).Color = defineColorForStimuli(IDs(cs)); + + if cs == 1 + ax2.NextPlot = 'add'; + end + + end + % ax = gca; + % + % + % % ax.YAxis(2).Limits = [0.015, 1]; + % % ax.YAxis(2).Visible = 'off'; + % ax.FontName ='Arial'; + % ax.FontSize = 12; + + % f=get(gca,'Children'); + % legend(f) + % + lidx = lidx + 1; + + + % lidx = ccl + (cc - 1) * Nrcl; + ax(lidx) = subplot(4*Nrcond, Nrcl, lidx:lidx+2); % subplot( Nrcl, Nrcond, lidx); % to plot the other way around + title(ax(lidx),sprintf(rasCondNames{cc}), 'Interpreter', 'none') % ,pclID{clSel(ccl)} + plotRasterFromStack(discStack([1,clSub(ccl)],:,tSubs),... + timeLapse, fs,'',ax(lidx)); + % plotRasterFromStack(discStack([1,clSub(ccl)],:,tSubs),... + % timeLapse, fs,'',colours(lidx,:),ax(lidx)); + ax(lidx).YAxisLocation = 'origin';ax(lidx).YAxis.TickValues = Nma; + ax(lidx).YAxis.Label.String = 'Trials'; + % ax(lidx).YAxis.Label.Position =... + % [timeLapse(1)-timeLapse(1)*0.65, Nma,0]; + % ax(lidx).XAxis.TickLabels =... + % cellfun(@(x) (x)*1e3, ax(lidx).XAxis.TickValues,... + % 'UniformOutput', 0); + xlabel(ax(lidx), 'Time [s]') + initSub = 0; + optsRect = {'EdgeColor','none','FaceColor','none'}; + for ctr = 1:numel(trigChange) + rectangle('Position',[0, initSub,... + timeDur(trigChange(ctr)), trigChange(ctr)],optsRect{:}) + initSub = trigChange(ctr); + end + rectangle('Position', [0, initSub, timeDur(Nma),... + Nma - initSub],optsRect{:}) + + % ax(lidx).XAxis.Visible = 'off'; + ax(lidx).YAxis.Visible = 'off'; + stims = mean(cst(:,:,delayFlags(:,rasCondSel(cc))),3); + % stims = stims([2,3],:); + + stims = stims - median(stims,2); + + + + for cs = 2 %for cs = 1:size(stims,1) + if abs(log10(var(stims(cs,:),[],2))) < 13 + [m,b] = lineariz(stims(cs,:),1,0); + stims(cs,:) = m*stims(cs,:) + b; + else + stims(cs,:) = zeros(1,Nt); + end + end + + [r,c] = size(stims); + + if r < c + stims = stims'; + stmClr = zeros(r, 3); + + end + + % stmClr =[ 1 0 0 0.25; 0 1 1 0.25]; + + + + lidx = lidx + 3; + + + end + end + + + + + + rasConds = rasCondNames{1}; + if length(rasCondNames) > 1 + for r = 2:length(rasCondNames) + rasConds = [rasConds, '+', rasCondNames{r}]; + end + end + + + ax(2).Title.Color = colours(2,:); + ax(6).Title.Color = colours(6,:); + ax(10).Title.Color = colours(10,:); + ax(1).Children.Color = colours(1,:); + ax(5).Children.Color = colours(5,:); + ax(9).Children.Color = colours(9,:); + + + linkaxes(ax,'x') + rasFigName = ['Unit_', cell2mat(cl), '_', ]; + rasFig.Name = [rasFigName, '_', num2str(pwr), 'mW']; + configureFigureToPDF (rasFig); + set(rasFig, 'Position', get(0, 'ScreenSize')/2); + saveas(rasFig,fullfile(rasterDir, [rasFigName,'_',rasConds,'_', num2str(timeLapse(1)), '_to_', num2str(timeLapse(2)),'.emf'])); + %savefig(rasFig,fullfile(rasterDir, [rasFigName, ' ', num2str(pwr), 'mW.fig'])); + savefig(rasFig,fullfile(rasterDir, [rasFigName,'_',rasConds, '.fig'])); + end +end + + +%% print mech responses to pdf +targetdir = [figureDir filesep 'difMech']; %put all individual pdfs here, replace blocking with whatever makes sense +mergedir=print_all_figs(targetdir,'-dpdf'); %print all open figures to pdf +cd(figureDir) +merge_PDF_dir(mergedir) %merge all single figure pdfs to one large pdf, in this directory + + +%% Ordering PSTH +filterIdx = [true; ismember(gclID, Data.id(Data.Mech_Low_R))]; +orderedStr = 'ID ordered'; +ordSubs = 1:nnz(filterIdx(2:Ncl+1)); +pclID = gclID(filterIdx(2:end)); + + + + +%% PSTHs for comparisons +binSz = 0.5; +% goodsIdx = logical(clInfo.ActiveUnit); +csNames = fieldnames(Triggers); +while size(csNames,1) > size(cst) + csNames(end) = []; +end + +Nbn = diff(timeLapse)/binSz; +if (Nbn - round(Nbn)) ~= 0 + Nbn = ceil(Nbn); +end +PSTH = zeros(nnz(filterIdx) - 1, Nbn, Nccond); +psthFigs = gobjects(Nccond,1); +for ccond = 1:Nccond + figFileName = sprintf('%s %s VW%.1f-%.1f ms B%.1f ms RW%.1f-%.1f ms SW%.1f-%.1f ms %sset %s (%s)',... + expName, Conditions(consideredConditions(ccond)).name, timeLapse*1e3,... + binSz*1e3, responseWindow*1e3, spontaneousWindow*1e3, onOffStr,... + orderedStr, filtStr); + [PSTH(:,:,ccond), trig, sweeps] = getPSTH(discStack(filterIdx,:,:),timeLapse,... + ~delayFlags(:,ccond),binSz,fs); + stims = mean(cst(:,:,delayFlags(:,ccond)),3); + stims = stims - median(stims,2); + for cs = 1:size(stims,1) + if abs(log10(var(stims(cs,:),[],2))) < 13 + [m,b] = lineariz(stims(cs,:),1,0); + stims(cs,:) = m*stims(cs,:) + b; + else + stims(cs,:) = zeros(1,Nt); + end + end + PSTH = PSTH./binSz/sum(delayFlags(:,1)); + +end + +%% +for unit = 1:size(PSTH, 1) + figure('Name',['unit_', pclID{unit}], 'Color', 'white') + hold on + for ccond = 1:length(consideredConditions) + plot(PSTH(unit,:,ccond)); + end + ax = gca; + legend(consCondNames); + ax.XTickLabel = ax.XTick*binSz-2; + +end + + +%% PopPSTH By Group +colours = [0,0,0.75; 0, 0.75, 0; 0.75, 0, 0.75]; +figure('Name','DifMech_PopPSTH', 'Color','white'); hold on +[Ncl, Npt, Nconds] = size(PSTH); +psthTX = linspace(timeLapse(1),timeLapse(2),Npt); +trigTX = linspace(timeLapse(1),timeLapse(2),size(trig,2)); +for ccond = 1:length(consideredConditions) + + + medPSTH = median(sum(PSTH(:,1:40,ccond),1,'omitnan')/(Ncl * sweeps * binSz)); + popPSTH = sum(PSTH(:,:,ccond),1,'omitnan')/(Ncl * sweeps * binSz); + % popPSTH = popPSTH-medPSTH; + popPSTH = smooth(popPSTH, 5); + plot(psthTX,popPSTH, 'LineWidth',1.5, 'Color',colours(ccond,:)); + + +end +leg = legend; +leg.String = consCondNames; +leg.Box = 'off'; +leg.FontName = 'Arial'; +ax = gca; +ax.FontSize = 25; +leg.Location = 'northeast'; +ax.XTickLabel = ax.XTick*binSz-2; + +%% Absolute Pressure Difference Comparison +trigTX = linspace(timeLapse(1),timeLapse(2),size(trig,2)); +colours = [0,0,0.75; 0, 0.75, 0; 0.75, 0, 0.75]; +cs = 2; +stims = mean(cst,3); +[m,b] = lineariz(stims(cs,:),1,0); +stims(cs,:) = m*stims(cs,:) + b; +% figure('Color','white', 'Name', 'AvPressure'); +% plot(stims(cs,:)) + +figure('Color','white', 'Name', 'Pressures'); + +hold on + +for ccond = 1:Nccond + stims = mean(cst(:,:,delayFlags(:,ccond)),3); + if abs(log10(var(stims(cs,:),[],2))) < 15 + stims(cs,:) = m*stims(cs,:) + b; + stims(cs,:) = stims(cs,:) - min(stims(cs,:)); + + stims(cs,:) = smooth(stims(cs,:),10^4); + else + stims(cs,:) = zeros(1,Nt); + end + plot(trigTX, stims(cs,:), 'Color',colours(ccond,:), 'LineWidth',2) +end + +leg = legend; +leg.String = consCondNames; +leg.Box = 'off'; +leg.FontName = 'Arial'; +ax = gca; +ax.FontSize = 25; +leg.Location = 'northeast'; + +%% Delta Pressure Difference Comparison + +colours = [0,0,0.75; 0, 0.75, 0; 0.75, 0, 0.75]; +cs = 2; +stims = mean(cst,3); +[m,b] = lineariz(stims(cs,:),1,0); +stims(cs,:) = m*stims(cs,:) + b; +% figure('Color','white', 'Name', 'AvPressure'); +% plot(stims(cs,:)) + +figure('Color','white', 'Name', '\Delta Pressures'); + +hold on + +for ccond = 1:Nccond + stims = mean(cst(:,:,delayFlags(:,ccond)),3); + if abs(log10(var(stims(cs,:),[],2))) < 15 + stims(cs,:) = m*stims(cs,:) + b; + stims(cs,:) = stims(cs,:) - min(stims(cs,:)); + + stims(cs,:) = smooth(stims(cs,:),10^4); + else + stims(cs,:) = zeros(1,Nt); + end + stim = diff(stims(cs,:)); + stim = smooth(stim, 10^4); + plot(stim, 'color', colours(ccond,:), 'LineWidth', 1.25); +end +fig = gcf; +ax = gca; +ax.FontName = 'Arial'; +ax.FontSize = 25; + +%% Rasters + +csNames = fieldnames(Triggers); +% csNames = csNames(2:end); +IDs = csNames; +trigTX = linspace(timeLapse(1),timeLapse(2),size(trig,2)); + + +rasterDir = fullfile(figureDir,'Rasters\'); +if ~mkdir(rasterDir) + fprintf(1,'There was an issue with the figure folder...\n'); +end + +colours = [0,0,0.75; 0, 0.25, 0; 0.5, 0, 0.5]; +cs = 2; + +clIDind = pclID; +lngth = length(clIDind); +for a = 1:lngth + rng('default'); + cl = clIDind(a); + clSel = find(ismember(pclID, cl)); + % if chCond == 1 + % rasCondSel = find(ismember(consCondNames, MchCondControl) | ismember(consCondNames, MchLasCond)); + % label = 'Mech'; + % else + % rasCondSel = find(ismember(consCondNames, LasCondControl) | ismember(consCondNames, MchLasCond)); + % label = 'Laser'; + % end + rasCondSel = [1 2 3]; + rasCond = consideredConditions(rasCondSel); + rasCondNames = consCondNames(rasCondSel); + Nrcl = numel(clSel); + % Reorganize the rasters in the required order. + clSub = find(ismember(gclID, pclID(clSel)))+1; + [rasIdx, rasOrd] = ismember(pclID(ordSubs), pclID(clSel)); + clSub = clSub(rasOrd(rasIdx)); + clSel = clSel(rasOrd(rasOrd ~= 0)); + Nma = min(Na(rasCondSel)); + rasFig = figure('Color','white'); + Nrcond = length(rasCond); + ax = gobjects(4*Nrcond*Nrcl,1); + lidx = 1; + for cc = 1:length(rasCond) + % Equalize trial number + trigSubset = sort(randsample(Na(rasCondSel(cc)),Nma)); + tLoc = find(delayFlags(:,rasCondSel(cc))); + tSubs = tLoc(trigSubset); + % Trigger subset for stimulation shading + trigAlSubs = Conditions(rasCond(cc)).Triggers(trigSubset,:); + timeDur = round(diff(trigAlSubs, 1, 2)/fs, 3); + trigChange = find(diff(timeDur) ~= 0); + + for ccl = 1:Nrcl + ax(lidx) = subplot(6*Nrcond, Nrcl, lidx:lidx+1); + % subplot( Nrcl, Nrcond, lidx); % to plot the other way around + % title(ax(lidx),sprintf(rasCondNames{cc}), 'Interpreter', 'none') % ,pclID{clSel(ccl)} + + plotRasterFromStack(discStack([1,clSub(ccl)],:,tSubs),... + timeLapse, fs,'',ax(lidx)); + ax(lidx).YAxisLocation = 'origin';ax(lidx).YAxis.TickValues = Nma; + ax(lidx).YAxis.Label.String = 'Trials'; + + xlabel(ax(lidx), 'Time [s]') + initSub = 0; + optsRect = {'EdgeColor','none','FaceColor','none'}; + for ctr = 1:numel(trigChange) + rectangle('Position',[0, initSub,... + timeDur(trigChange(ctr)), trigChange(ctr)],optsRect{:}) + initSub = trigChange(ctr); + end + rectangle('Position', [0, initSub, timeDur(Nma),... + Nma - initSub],optsRect{:}) + + ax(lidx).XAxis.Visible = 'off'; + ax(lidx).YAxis.Visible = 'off'; + + lidx = lidx + 2; + + + + + ax(lidx) = subplot(6*Nrcond, Nrcl, lidx:lidx+3); + stims = mean(cst(:,:,delayFlags(:,rasCondSel(cc))),3); + if abs(log10(var(stims(cs,:),[],2))) < 15 + stims(cs,:) = m*stims(cs,:) + b; + stims(cs,:) = stims(cs,:) - min(stims(cs,:)); + + stims(cs,:) = smooth(stims(cs,:),10^4); + else + stims(cs,:) = zeros(1,Nt); + end + stim = [0, diff(stims(cs,:))]; + stim = smooth(stim, 10^4); + % stim = stim - min(stim); + + yyaxis right + plot(trigTX,stim, 'Color',colours(rasCondSel(cc),:), 'LineWidth',1.5) + ylim([-10^-4, 10^-4]); + + + + yyaxis left + if exist('IDs','var') + area(trigTX,stims(cs,:), 'FaceColor', [0.75,0.75,0.75], 'LineStyle','none') + + + else + area(trigTX,stim(cs,:), 'FaceColor', [0.75,0.75,0.75], 'LineStyle','none') + + end + ax(lidx).Visible = 'off'; + ylim([-1,1]); + + + + if cs == 1 + ax2.NextPlot = 'add'; + end + + end + + + + + + + + + + + + lidx = lidx + 4; + + + end + + + + + + + rasConds = rasCondNames{1}; + if length(rasCondNames) > 1 + for r = 2:length(rasCondNames) + rasConds = [rasConds, '+', rasCondNames{r}]; + end + end + + + + + + linkaxes(ax,'x') + rasFigName = ['Unit_', cell2mat(cl), '_', ]; + rasFig.Name = rasFigName; + configureFigureToPDF (rasFig); + saveas(rasFig,fullfile(rasterDir, [rasFigName,'_',rasConds,'_', num2str(timeLapse(1)), '_to_', num2str(timeLapse(2)),'.emf'])); + %savefig(rasFig,fullfile(rasterDir, [rasFigName, ' ', num2str(pwr), 'mW.fig'])); + savefig(rasFig,fullfile(rasterDir, [rasFigName,'_',rasConds, '.fig'])); +end +%% Pressures vs PopPSTHs +colours = [0,0,0.75; 0, 0.25, 0; 0.5, 0, 0.5]; +[Ncl, Npt, Nconds] = size(PSTH); +psthTX = linspace(timeLapse(1),timeLapse(2),Npt); +cs = 2; +lidx = 1; +fig = figure('Color','white', 'Name', 'PopPSTHwithPressures'); +for ccond = 1:length(consideredConditions) + ax(lidx) = subplot(6*Nccond, 1, lidx:lidx+1); + medPSTH = median(sum(PSTH(:,1:40,ccond),1,'omitnan')/(Ncl * sweeps * binSz)); + popPSTH = sum(PSTH(:,:,ccond),1,'omitnan')/(Ncl * sweeps * binSz); + % popPSTH = popPSTH-medPSTH; + popPSTH = smooth(popPSTH, 5); + plot(psthTX,popPSTH, 'LineWidth',1.5, 'Color',colours(ccond,:)) + ylim([ax(lidx).YLim(1), 4]); + + ax(lidx).XAxis.Visible = 'off'; + + + + + lidx = lidx + 2; + + ax(lidx) = subplot(6*Nccond, 1, lidx:lidx+3); + stims = mean(cst(:,:,delayFlags(:,ccond)),3); + if abs(log10(var(stims(cs,:),[],2))) < 15 + stims(cs,:) = m*stims(cs,:) + b; + stims(cs,:) = stims(cs,:) - min(stims(cs,:)); + + stims(cs,:) = smooth(stims(cs,:),10^4); + else + stims(cs,:) = zeros(1,Nt); + end + stim = [0, diff(stims(cs,:))]; + stim = smooth(stim, 10^4); + % stim = stim - min(stim); + + yyaxis right + plot(trigTX,stim, 'Color',[0,0,0], 'LineWidth',1.5) + ylim([-10^-4, 10^-4]); + + + + yyaxis left + if exist('IDs','var') + area(trigTX,stims(cs,:), 'FaceColor', [0.75,0.75,0.75], 'LineStyle','none') + + + else + area(trigTX,stim(cs,:), 'FaceColor', [0.75,0.75,0.75], 'LineStyle','none') + + end + ax(lidx).Visible = 'off'; + ylim([-1,1]); + + + + + + + + + + + + + + + + + + lidx = lidx + 4; + + +end + + +%% Abs pressure vs PopPTH overlay + +%% Absolute Pressure Difference Comparison +trigTX = linspace(timeLapse(1),timeLapse(2),size(trig,2)); +pressurecolours = [0.8,0.8,0.8; 0.7, 0.7, 0.7; 0.9, 0.9, 0.9]; + +cs = 2; +stims = mean(cst,3); +[m,b] = lineariz(stims(cs,:),1,0); +stims(cs,:) = m*stims(cs,:) + b; +colours = [0,0,0.75; 0, 0.25, 0; 0.5, 0, 0.5]; +[Ncl, Npt, Nconds] = size(PSTH); +psthTX = linspace(timeLapse(1),timeLapse(2),Npt); + +fig = figure('Color','white', 'Name', 'Pressures'); + +yyaxis right + +hold on + +for ccond = [3, 1, 2] + stims = mean(cst(:,:,delayFlags(:,ccond)),3); + if abs(log10(var(stims(cs,:),[],2))) < 15 + stims(cs,:) = m*stims(cs,:) + b; + stims(cs,:) = stims(cs,:) - min(stims(cs,:)); + + stims(cs,:) = smooth(stims(cs,:),10^4); + else + stims(cs,:) = zeros(1,Nt); + end + area(trigTX,stims(cs,:), 'FaceColor', pressurecolours(ccond,:), 'LineStyle','none') +end + + + +yyaxis left +hold on + +for ccond = 1:length(consideredConditions) + medPSTH = median(sum(PSTH(:,1:40,ccond),1,'omitnan')/(Ncl * sweeps * binSz)); + popPSTH = sum(PSTH(:,:,ccond),1,'omitnan')/(Ncl * sweeps * binSz); + % popPSTH = popPSTH-medPSTH; + popPSTH = smooth(popPSTH, 5); + plot(psthTX,popPSTH, 'LineWidth',2, 'Color',colours(ccond,:), 'LineStyle', '-') +end + + +leg = legend; +leg.String = [consCondNames{3}, consCondNames{1}, consCondNames{2}, consCondNames]; +leg.Box = 'off'; +leg.FontName = 'Arial'; +ax = gca; +ax.XLabel.String = 'Time [secs]'; +ax.YAxis(2).Visible = 'off'; +ax.YAxis(1).Label.String = 'Spike Frequency[Hz]'; +ax.FontSize = 25; +leg.Location = 'northeast'; +set(gca, 'SortMethod', 'depth'); + +configureFigureToPDF (fig); +saveas(fig,fullfile(figureDir, 'MechPressure+PopPSTHs.emf')); +savefig(fig,fullfile(figureDir, 'MechPressure+PopPSTHs.fig')); \ No newline at end of file diff --git a/Ross/PoolPain.m b/Ross/PoolPain.m new file mode 100644 index 0000000..a9d48f9 --- /dev/null +++ b/Ross/PoolPain.m @@ -0,0 +1,2484 @@ +% PoolPain is a script that takes in all the experiments to be analysed +% together and will then analyse them ala DE_Jittering/PAIN scripts + +% It is recommended to analyse eache experiment individually to assess +% whether each experiment worked and should be included + + +%% Choose a Directory to save info to +pooledDataDir = uigetdir('Z:\',... + 'Choose a working directory'); +if pooledDataDir == 0 + return +end + +% Creating the figure directory +figureDir = fullfile(pooledDataDir,'Figures\'); +if ~mkdir(figureDir) + fprintf(1,'There was an issue with the figure folder...\n'); +end +%% +% Select the experiment folders and add to the Analysis struct +Analysis.Experiments = struct; +nExpts = str2double(cell2mat(inputdlg('How Many Experiments are you considering?'))); + +for exp = 1:nExpts + Analysis.Experiments(exp).Directory = uigetdir('Z:\',... + 'Choose a working directory'); + if Analysis.Experiments(exp).Directory == 0 + return + end +end + +%% Get data from the selected directories + +ObjNames = {'bin', 'all_channels', 'analysis', 'cluster_info'}; +for exp = 1:nExpts + + cDir = Analysis.Experiments(exp).Directory; + % fprintf(['Reading the relevant files in ', cDir , '. \n This may take a few mins']) + files = {dir(fullfile(cDir, '*.bin')),... + dir(fullfile(cDir, '*all_channels.mat')),... + dir(fullfile(cDir, '*analysis.mat')),... + dir(fullfile(cDir, '*cluster_info.tsv'))}; + + + + + mouseIDfind = strfind(files{2}.name, 'm'); + mouseIDfind = mouseIDfind(1); + find_ = strfind(files{2}.name, '_'); + find_ = find_(1); + mouseID{exp} = files{2}.name(mouseIDfind:find_); + + + for name = 1:length(ObjNames) + Analysis.Experiments(exp).(ObjNames{name}) = {}; + end + + + for ind = 1:length(files) + file = files{ind}; + + if length(file) > 1 + promptStr = {'Select the relevant file: '}; + input = struct2cell(file); + input = (cell(input(1,1:end)))'; + fileNo = listdlg('PromptString', promptStr, 'ListString', input); + file = dir(fullfile(cDir, file(fileNo).name)); + Analysis.Experiments(exp).(ObjNames{ind}) = file; + elseif length(file) < 1 + if ind == 3 + fprintf(['There is no ', ObjNames{ind}, ' file in directory ', num2str(exp), ' \n']); + ansFilt = questdlg('Would you like to create one with the smrx files?','Filter',... + 'Yes','No','Yes'); + if strcmp(ansFilt,'Yes') + fs = Analysis.Experiments(exp).all_channels.fs; % This won't work, all_channels hasn't been loaded in yet + expName = inputdlg('Please give a name to the analysis file:', 'FileName', [1, 50]); + expName = expName{1}; + iOk = getTriggers(expName, cDir, fs); + file = dir(fullfile(cDir, '*analysis.mat')); + % Bring this file back into the analysis and make + % getTriggers an iOK function + end + end + + + + fprintf(['There is no ', ObjNames{ind}, ' file in directory ', num2str(exp), ' \n']); + fprintf('Maybe you can find one manually? \n \n'); + else + Analysis.Experiments(exp).(ObjNames{ind}) = file; + end + + end + + for mat = [2,3] + indx = Analysis.Experiments(exp).(ObjNames{mat}); + Analysis.Experiments(exp).(ObjNames{mat}) = load([indx.folder, '\', indx.name]); + end + + tsv = 4; + indx = Analysis.Experiments(exp).(ObjNames{tsv}); + Analysis.Experiments(exp).(ObjNames{tsv}) = getClusterInfo([indx.folder, '\', indx.name]); +end + + +%% Combining the tables together & altering unit names for pooled analysis +for exp = 1:nExpts + if sum(contains(Analysis.Experiments(exp).cluster_info.Properties.VariableNames, 'abs_depth')) < 1 + promptStrings = {'How deep was your probe? (um)'}; + defInputs = {'1500'}; + dpth = inputdlg(promptStrings,'Inputs', [1, 30],defInputs); + + dpth = str2double(dpth{1}); + + + abs_depth = dpth - Analysis.Experiments(exp).cluster_info.depth; + % dif = abs(dpth) - 1275; + % abs_depth = clInfo.depth + dif; + + + + + Analysis.Experiments(exp).cluster_info = addvars(Analysis.Experiments(exp).cluster_info,abs_depth,'After','depth',... + 'NewVariableNames','abs_depth'); + + + end + for ind = 1:length(Analysis.Experiments(exp).cluster_info.id) + Analysis.Experiments(exp).cluster_info.id{ind} = [mouseID{exp}, Analysis.Experiments(exp).cluster_info.id{ind}]; + Analysis.Experiments(exp).cluster_info.Properties.RowNames{ind} = Analysis.Experiments(exp).cluster_info.id{ind}; + Analysis.Experiments(exp).all_channels.sortedData{ind} = Analysis.Experiments(exp).cluster_info.id{ind}; + end +end + +All_Units = Analysis.Experiments(1).cluster_info(:,[1,3:13]); +for nClInfo = 2: nExpts + + + All_Units = [All_Units; Analysis.Experiments(nClInfo).cluster_info(:,[1,3:13])]; +end + +%% User controlling variables +% Time lapse, bin size, and spontaneous and response windows +promptStrings = {'Viewing window (time lapse) [s]:','Response window [s]',... + 'Bin size [s]:'}; +defInputs = {'-2, 6', '0.5, 2', '0.01'}; +answ = inputdlg(promptStrings,'Inputs', [1, 30],defInputs); +if isempty(answ) + fprintf(1,'Cancelling...\n') + return +else + timeLapse = str2num(answ{1}); %#ok<*ST2NM> + if numel(timeLapse) ~= 2 + timeLapse = str2num(inputdlg('Please provide the time window [s]:',... + 'Time window',[1, 30], '-0.1, 0.1')); + if isnan(timeLapse) || isempty(timeLapse) + fprintf(1,'Cancelling... \n') + return + end + end + responseWindow = str2num(answ{2}); + binSz = str2double(answ(3)); +end +fprintf(1,'Time window: %.2f - %.2f ms\n',timeLapse(1)*1e3, timeLapse(2)*1e3) +fprintf(1,'Response window: %.2f - %.2f ms\n',responseWindow(1)*1e3, responseWindow(2)*1e3) +fprintf(1,'Bin size: %.3f ms\n', binSz*1e3) +sponAns = questdlg('Mirror the spontaneous window?','Spontaneous window',... + 'Yes','No','Yes'); +spontaneousWindow = -flip(responseWindow); +if strcmpi(sponAns,'No') + spontPrompt = "Time before the trigger in [s] (e.g. -0.8, -0.6 s)"; + sponDef = string(sprintf('%.3f, %.3f',spontaneousWindow(1),... + spontaneousWindow(2))); + sponStr = inputdlg(spontPrompt, 'Inputs',[1,30],sponDef); + if ~isempty(sponStr) + spontAux = str2num(sponStr{1}); + if length(spontAux) ~= 2 || spontAux(1) > spontAux(2) || ... + spontAux(1) < timeLapse(1) + fprintf(1, 'The given input was not valid.\n') + fprintf(1, 'Keeping the mirror version!\n') + else + spontaneousWindow = spontAux; + end + end +end +fprintf(1,'Spontaneous window: %.2f to %.2f ms before the trigger\n',... + spontaneousWindow(1)*1e3, spontaneousWindow(2)*1e3) +statFigFileNameEndings = {'.pdf','.emf'}; +printOpts = {{'-dpdf','-fillpage'},'-dmeta'}; + +cellLogicalIndexing = @(x,idx) x(idx); + +expCo = 1; + + + +%% Experiment loop +% For all the chosen experiments, perform the statistical test and save its +% results, and extract the spike times for all clusters blending in the +% trial information for a PDF calculation +relativeSpikeTimes = cell(nExpts); +activeUnits = []; +for cExp = 1:nExpts + + dataDir = Analysis.Experiments(cExp).Directory; + sortedData = Analysis.Experiments(cExp).all_channels.sortedData; + fs = Analysis.Experiments(cExp).all_channels.fs; + Conditions = Analysis.Experiments(cExp).analysis.Conditions; + Triggers = Analysis.Experiments(cExp).analysis.Triggers; + + + + %% Constructing the helper 'global' variables + if (fs - (1/33.3e-6)) > 1 + fprintf(2, '%.3f kHz different sampling frequency!\n', fs/1e3); + [~, cfld] = fileparts(dataDir); + fprintf(2, 'Skipping %s\n', cfld); + continue + end + % Number of total samples + Ns = structfun(@numel,Triggers); + Ns = min(Ns(Ns>1)); + % Total duration of the recording + Nt = Ns/fs; + + + autoCorr = @(x) neuroCorr(x, corrWin, 1, fs); + % Useless clusters (labeled as noise or they have very low firing rate) + badsIdx = cellfun(@(x) x==3, sortedData(:,3)); bads = find(badsIdx); + silentUnits = cellfun(@(x) (numel(x)/Nt) < 0.1, sortedData(:,2)); + bads = union(bads, find(silentUnits)); + goods = setdiff(1:size(sortedData,1),bads); + badsIdx = badsIdx | silentUnits; + + activeUnits = [activeUnits; ~badsIdx]; + + gclID = sortedData(goods,1); + % Logical spike trace for the first good cluster + spkLog = StepWaveform.subs2idx(round(sortedData{goods(1),2}*fs),Ns); + % Subscript column vectors for the rest good clusters + spkSubs = cellfun(@(x) round(x.*fs),sortedData(goods(2:end),2),... + 'UniformOutput',false); + % Number of good clusters + Ncl = numel(goods); + % Redefining the stimulus signals from the low amplitude to logical values + whStim = {'piezo','whisker','mech','audio'}; + cxStim = {'laser','light'}; + lfpRec = {'lfp','s1','cortex','s1lfp'}; + trigNames = fieldnames(Triggers); + numTrigNames = numel(trigNames); + continuousSignals = struct2cell(Triggers); + % User defined conditions + + Nt = round(sum(ceil(abs(timeLapse)*fs))+1); + % Computing the time axis for the stack + tx = (0:Nt - 1)/fs + timeLapse(1); + %% Condition triggered stacks + condNames = arrayfun(@(x) x.name,Conditions,'UniformOutput',false); + condGuess = contains(condNames, 'whiskerall', 'IgnoreCase', true); + % Choose the conditions to create the stack upon + [chCond, iOk] = listdlg('ListString',condNames,'SelectionMode','single',... + 'PromptString',... + 'Choose the condition which has all Mechanical triggers: (one condition)',... + 'InitialValue', find(condGuess), 'ListSize', [350, numel(condNames)*16]); + if ~iOk + fprintf(1,'Cancelling...\n') + return + end + + % Select the onset or the offset of a trigger + fprintf(1,'Condition ''%s''\n', Conditions(chCond).name) + onOffStr = questdlg('Trigger on the onset or on the offset?','Onset/Offset',... + 'on','off','Cancel','on'); + if strcmpi(onOffStr,'Cancel') + fprintf(1,'Cancelling...\n') + return + end + + %% Considered conditions selection + % Choose the conditions to look at + auxSubs = setdiff(1:numel(condNames), chCond); + ccondNames = condNames(auxSubs); + [cchCond, iOk] = listdlg('ListString',ccondNames,'SelectionMode','multiple',... + 'PromptString',... + 'Choose the condition to analyse (Only one intenstiy!):',... + 'ListSize', [350, numel(condNames)*16]); + if ~iOk + fprintf(1,'Cancelling...\n') + return + end + + cchCond = flip(cchCond); % Flip the conditions to get Control on x-axis later + + % Select the onset or the offset of a trigger + fprintf(1,'Condition(s):\n') + fprintf('- ''%s''\n', Conditions(auxSubs(cchCond)).name) + +% ansFilt = questdlg('Would you like to filter for significance?','Filter',... +% 'Yes','No','Yes'); +% filtStr = 'unfiltered'; +% if strcmp(ansFilt,'Yes') +% filtStr = 'filtered'; +% end + % Subscript to indicate the conditions with all whisker stimulations, + % whisker control, laser control, and the combination whisker and laser. + consideredConditions = cchCond; + Nccond = length(consideredConditions); + + % Select the onset or the offset of a trigger + fprintf(1,'Condition(s):\n') + fprintf('- ''%s''\n', Conditions(auxSubs(cchCond)).name) + % Subscripts and names for the considered conditions + consCondNames = condNames(consideredConditions); + + % Time windows for comparison between conditions and activity + sponActStackIdx = tx >= spontaneousWindow(1) & tx <= spontaneousWindow(2); + respActStackIdx = tx >= responseWindow(1) & tx <= responseWindow(2); + % The spontaneous activity of all the clusters, which are allocated from + % the second until one before the last row, during the defined spontaneous + % time window, and the whisker control condition. + + timeFlags = [sponActStackIdx; respActStackIdx]; + % Time window + delta_t = diff(responseWindow); + % Spontaneous vs evoked comparison + indCondSubs = cumsum(Nccond:-1:1); + isWithinResponsiveWindow =... + @(x) x > responseWindow(1) & x < responseWindow(2); + + % Constructing the stack out of the user's choice + % discStack - dicrete stack has a logical nature + % cst - continuous stack has a numerical nature + % Both of these stacks have the same number of time samples and trigger + % points. They differ only in the number of considered events. + [auxDStack, auxCStack] = getStacks(spkLog, Conditions(chCond).Triggers,... + onOffStr, timeLapse, fs, fs, spkSubs, continuousSignals); + % Number of clusters + the piezo as the first event + the laser as the last + % event, number of time samples in between the time window, and number of + % total triggers. + [Ne, Nt, NTa] = size(auxDStack); + + % Computing which alignment points belong to which condition. + auxDelayFlags = false(NTa,Nccond); + counter2 = 1; + for ccond = consideredConditions + auxDelayFlags(:,counter2) = ismember(Conditions(chCond).Triggers(:,1),... + Conditions(ccond).Triggers(:,1)); + counter2 = counter2 + 1; + end + NaNew = sum(auxDelayFlags,1); + + % All spikes in a cell format + spkSubs = cat(1, {round(sortedData{goods(1),2}*fs)}, spkSubs); + + % % Autocorrelation for all active units + % + % corrFileName = fullfile(dataDir, '*_ccorr.mat'); + % corrFiles = dir(corrFileName); corrCorr =... + % arrayfun(@(x) contains(x.name, sprintf('%.2f', corrWin*1e3)),... + % corrFiles); + % if ~isempty(corrFiles) && any(corrCorr) + % load(fullfile(corrFiles(corrCorr).folder,corrFiles(corrCorr).name),... + % 'corrs') + % eaCorr = cellfun(@(x) x(1,:), corrs, 'UniformOutput', 0); + % else + % eaCorr = arrayfun(autoCorr, spkSubs, 'UniformOutput', 0); + % eaCorr = cat(1, eaCorr{:}); + % end + % eaCorr = cat(1, eaCorr{:}); + % eaCorr = sparse(eaCorr); + % % % Computing the lag axis for the auto-correlograms + % % b = -ceil(Ncrs/2)/fs; corrTx = (1:Ncrs)'/fs + b; + + % Computing the firing rate during the different conditions + NaCount = 1; + % Experiment firing rate and ISI per considered condition + efr = zeros(Ncl, size(consideredConditions,2), 'single'); + eisi = cellfun(@(x) diff(x), spkSubs, 'UniformOutput', 0); + econdIsi = cell(Ncl, size(consideredConditions,2)); + econdSpks = econdIsi; + trainDuration = 1; + for ccond = consideredConditions + itiSub = mean(diff(Conditions(ccond).Triggers(:,1))); + consTime = [Conditions(ccond).Triggers(1,1) - round(itiSub/2),... + Conditions(ccond).Triggers(NaNew(NaCount),2) + round(itiSub/2)]... + ./fs; + [efr(:,NaCount),~, econdSpks(:,NaCount), econdIsi(:,NaCount)] =... + getSpontFireFreq(spkSubs, Conditions(ccond).Triggers,... + consTime, fs, trainDuration + delta_t + responseWindow(1)); + NaCount = NaCount + 1; + end + + % % Getting the clusters' waveforms + % sewf = getClusterWaveform(gclID, dataDir); + % sewf(:,1) = cellfun(@(x) [sprintf('%d_',cexp), x], sewf(:,1),... + % 'UniformOutput', 0); + % mswf = cellfun(@(x) mean(x,2), sewf(:,2),'UniformOutput', 0); + % mswf = cat(2, mswf{:}); + % cwID = sewf(:,1); + %% Building the population stack + % Removing not considered conditions + if sum(NaNew) ~= NTa + emptyRow = find(~sum(auxDelayFlags,2)); + auxDelayFlags(emptyRow,:) = []; + auxDStack(:,:,emptyRow) = []; + auxCStack(:,:,emptyRow) = []; + end + % clInfo.id = cellfun(@(x) [sprintf('%d_',cexp), x], clInfo.id,... + % 'UniformOutput', 0); + % clInfo.Properties.RowNames = clInfo.id; + if cExp == 1 + % First assignment + delayFlags = auxDelayFlags; + discStack = auxDStack; + cStack = auxCStack; + % clInfoTotal = clInfo; + NaStack = NaNew; + % popClWf = mswf; + % % pcwID = cwID; + pfr = efr; + pisi = eisi; + % paCorr = eaCorr; + pcondIsi = econdIsi; + pcondSpks = econdSpks; + pSpkSubs = spkSubs; + else + pfr = cat(1, pfr, efr); + pisi = cat(1, pisi, eisi); + % paCorr = cat(1, paCorr, eaCorr); + pcondIsi = cat(1, pcondIsi, econdIsi); + pcondSpks = cat(1, pcondSpks, econdSpks); + % popClWf = cat(2, popClWf, mswf); + % pcwID = cat(1, pcwID, cwID); + pSpkSubs = cat(1, pSpkSubs, spkSubs); + % Homogenizing trial numbers + if any(NaNew ~= NaStack) + NaMin = min(NaStack, NaNew); + NaMax = max(NaStack, NaNew); + trigSubset = cell(numel(NaStack),1); + for cc = 1:numel(NaStack) + trigSubset{cc} = sort(randsample(NaMax(cc),NaMin(cc))); + if NaStack(cc) == NaMin(cc) + tLoc = find(auxDelayFlags(:,cc)); + try + tSubs = tLoc(trigSubset{cc}); + catch + trigSubset{cc} = sort(randsample(numel(tLoc),NaMin(cc))); + tSubs = tLoc(trigSubset{cc}); + end + auxDelayFlags(setdiff(tLoc,tSubs),:) = []; + auxDStack(:,:,setdiff(tLoc,tSubs)) = []; + auxCStack(:,:,setdiff(tLoc,tSubs)) = []; + else + tLoc = find(delayFlags(:,cc)); + tSubs = tLoc(trigSubset{cc}); + delayFlags(setdiff(tLoc,tSubs),:) = []; + discStack(:,:,setdiff(tLoc,tSubs)) = []; + cStack(:,:,setdiff(tLoc,tSubs)) = []; + NaStack(cc) = NaNew(cc); + end + end + end + + % When the stacks have different order for different conditions + if nnz(size(auxDelayFlags) - size(delayFlags)) + [ntrials, nconds] = size(delayFlags); + [nctrials, ncconds] = size(auxDelayFlags); + fprintf(1,'There are more trials in ') + if ntrials > nctrials + fprintf(1, 'DelayFlags\n') + + else + fprintf(1, 'AuxDelayFlags\n') + emptyADFFlag = ~any(auxDelayFlags,2); + if (nctrials - sum(emptyADFFlag)) ~= ntrials + fprintf(1, 'The populated trials are different in ') + fprintf(1, 'each delayFlag matrix!!\n') + end + auxDelayFlags(emptyADFFlag,:) = []; + auxDStack(:,:,emptyADFFlag) = []; + auxCStack(:,:,emptyADFFlag) = []; + end + end + if nnz(auxDelayFlags - delayFlags) + [stOrd, ~] = find(delayFlags); + [astOrd , ~] = find(auxDelayFlags); + auxDStack(:,:,stOrd) = auxDStack(:,:,astOrd); + cStack(:,:,stOrd) = cStack(:,:,astOrd); + auxDelayFlags(stOrd,:) = auxDelayFlags(astOrd,:); + end + auxDStack(1,:,:) = []; + discStack = cat(1, discStack, auxDStack); + cStack = cat(1, cStack, auxCStack); + end +end + +%% Homogenising the condition names + +controlFlag = false(Nccond,1); +mechFlag = false(Nccond,1); +lasFlag = false(Nccond,1); + +for ccond = 1:Nccond + controlFlag(ccond,1) = ~isempty(strfind(consCondNames{1, ccond}, 'Control')); + mechFlag(ccond,1) = ~isempty(strfind(consCondNames{1, ccond}, 'Mech')); + lasFlag(ccond,1) = ~isempty(strfind(consCondNames{1, ccond}, 'Laser')); +end + +if sum(mechFlag & controlFlag) > 0 + consCondNames{mechFlag&controlFlag} = 'Mech_Control'; +end +if sum(mechFlag & lasFlag) > 0 + consCondNames{mechFlag&lasFlag} = 'Mech_Laser'; +end +if sum(lasFlag & controlFlag) > 0 + consCondNames{lasFlag&controlFlag} = 'Laser_Control'; +end + +%% Creating the data table (All_Units) +if ~any(ismember(All_Units.Properties.VariableNames,'ActiveUnit')) + try + All_Units = addvars(All_Units,activeUnits==1,'After','id',... + 'NewVariableNames','ActiveUnit'); + catch + All_Units = addvars(All_Units,false(size(All_Units,1),1),'After','id',... + 'NewVariableNames','ActiveUnit'); + All_Units{sortedData(activeUnits==1,1),'ActiveUnit'} = true; + fprintf(1,'Not all clusters are curated!\n') + fprintf(1,'%s\n',dataDir) + end + try + writeClusterInfo(All_Units,fullfile(pooledDataDir,'All_Units.tsv'),true); + catch + fprintf(1,'Unable to write cluster info for %s\n',pooledDataDir) + end +end + +gclID = All_Units{All_Units.ActiveUnit == true,'id'}; +Ncl = numel(gclID); +Ne = size(discStack, 1); + + +%% Optotagging and Separating Populations + + + +rng('default'); + +for cExp = 1:nExpts + dataDir = Analysis.Experiments(cExp).Directory; + sortedData = Analysis.Experiments(cExp).all_channels.sortedData; + fs = Analysis.Experiments(cExp).all_channels.fs; + Conditions = Analysis.Experiments(cExp).analysis.Conditions; + Triggers = Analysis.Experiments(cExp).analysis.Triggers; + clInfo = Analysis.Experiments(cExp).cluster_info; + + clInd = ismember(clInfo.id, gclID); + Depths = table(clInfo.id(clInd), clInfo.abs_depth(clInd)); + Depths = sortrows(Depths,'Var2','ascend'); + ID = Depths{:,1}; + depth = Depths.Var2; + spkInd = []; + for i = 1:length(ID) + spkInd = [spkInd; find(ismember(sortedData(:,1), ID(i)))]; + end + + tm = 5e-2; + + + + + + condNames = arrayfun(@(x) x.name,Conditions,'UniformOutput',false); + condGuess = contains(condNames, 'whiskerall', 'IgnoreCase', true); + % Choose the conditions to create the stack upon + [tCond, iOk] = listdlg('ListString',condNames,'SelectionMode','single',... + 'PromptString',... + 'which conditions would you like to use for the opto-tagging?',... + 'InitialValue', find(condGuess), 'ListSize', [350, numel(condNames)*16]); + if ~iOk + fprintf(1,'Cancelling...\n') + return + end + + TriggerTimes = Conditions(tCond).Triggers; + [Latencies, Fidelities] = TriggerLatencies(sortedData(spkInd,2), TriggerTimes, fs, tm); + if cExp == 1 + mn = (cellfun(@mean, Latencies)*1e3); + sd = (cellfun(@std, Latencies)*1e3); + jitter = randi(20,size(depth)); + depth = depth + jitter; % adding small jitter for visualisation + depths = -1*depth; + depthID = ID; + spkInds = spkInd; + + else + mn = [mn; (cellfun(@mean, Latencies)*1e3)]; + sd = [sd; (cellfun(@std, Latencies)*1e3)]; + jitter = randi(20,size(depth)); + depthID = [depthID; ID]; + jitter = randi(20,size(depth)); + depth = depth + jitter; % adding small jitter for visualisation + depths = [depths; -1*depth]; + offset = length(spkInds); + spkInds = [spkInds; spkInd + offset]; + end + + +end + +% Optotagging + + +% Time lapse, bin size, and spontaneous and response windows +promptStrings = {'Tagged Latencies between [s]:','Tagged Standard Devs between [s]'}; +defInputs = {'2, 9', '0.2, 4'}; +answ = inputdlg(promptStrings,'Inputs', [1, 30],defInputs); +if isempty(answ) + fprintf(1,'Cancelling...\n') + return +else + latencyCutoffs = str2num(answ{1}); %#ok<*ST2NM> + if numel(latencyCutoffs) ~= 2 + timeLapse = str2num(inputdlg('Please provide both the min and the max latency [s]:',... + 'Time window',[1, 30], '-0.1, 0.1')); + if isnan(timeLapse) || isempty(timeLapse) + fprintf(1,'Cancelling... \n') + return + end + end + sdCutoffs = str2num(answ{2}); +end +fprintf(1,'Tagged Latencies between: %.2f - %.2f ms\n',timeLapse(1)*1e3, timeLapse(2)*1e3) +fprintf(1,'Tagged Standard Deviations between: %.2f - %.2f ms\n',responseWindow(1)*1e3, responseWindow(2)*1e3) + + + + +% Removing and highlighting dodgy units from plot +lowestLat = latencyCutoffs(1); +lowestSD = sdCutoffs(1); +dodgyMean = depthID(find(mn 0 + ax.Children(2).FaceColor = [0, 0.5, 1]; + ax.Children(4).FaceColor = [0.5 0.5 0.5]; +else + ax.Children(2).FaceColor = [0.5 0.5 0.5]; +end +ax.FontSize = 15; +% ax.FontName = 'Times New Roman'; + +% Formatting (text is in weird place if there are no tagged cells) + +if sum(tagged) == 0 + lgd = legend; + lgd.String{1} = ['Untagged']; + text(-5,1.0,['Selection Criteria:'],'FontSize', 15 ); + text(-5,0.75,['Mean Latencies between ' num2str(latencyCutoffs(1)), ' and ',num2str(latencyCutoffs(2)), 'ms'], 'FontSize', 10); + text(-5,0.50,['Standard Deviations between ' num2str(sdCutoffs(1)), ' and ',num2str(sdCutoffs(2)), 'ms'], 'FontSize', 10); + text(-5,-0.25,'Opto-tagged Units Displayed:', 'FontSize', 15); + text(-5,-0.5,['Depths between ' num2str(minDepth), ' and ',num2str(maxDepth), '\mum'], 'Interpreter', 'tex', 'FontSize', 10); + lgd.String{2} = ['Opto-tagged']; + lgd.Location = 'northoutside'; + %lgd.Box = 'off'; + +else + lgd = legend; + lgd.String{1} = ['Untagged']; + text(-6,1.5,['Selection Criteria:'],'FontSize', 15 ); + text(-6,1,['Mean Latencies between ' num2str(latencyCutoffs(1)), ' and ',num2str(latencyCutoffs(2)), 'ms'], 'FontSize', 10); + text(-6,0.50,['Standard Deviations between ' num2str(sdCutoffs(1)), ' and ',num2str(sdCutoffs(2)), 'ms'], 'FontSize', 10); + text(-6,-0.5,'Opto-tagged Units Displayed:', 'FontSize', 15); + text(-6,-1,['Depths between ' num2str(maxDepth), ' and ',num2str(minDepth), '\mum'], 'Interpreter', 'tex', 'FontSize', 10); + lgd.String{2} = ['Opto-tagged']; + lgd.Location = 'northoutside'; + %lgd.Box = 'off'; +end +subplot(3,2,4) + +scatter(mn(~tagged),sd(~tagged), 5, [0.5, 0.5, 0.5], '*') % scatter(mn(~tagged),sd(~tagged), 1+4*fd(~tagged), [0.5, 0.5, 0.5], '*') +hold on +scatter(mn(tagged),sd(tagged),5, [0, 0.5, 1], '*') % scatter(mn(tagged),sd(tagged),1+4*fd(tagged), [0, 0.5, 1], '*') +hold off +pulseWidth = round(median(diff(TriggerTimes'/fs)')*1e3); +% title(name, 'Interpreter', 'none'); +ylim([0,round(round(max(sd))+5,-1)]); +%yticks([round(round(min(Dpth),-2)/2,-2)*2-200:200:0]); +xlim([0 tm*1e3]); +xticks(0:5:tm*1e3); +xlabel('First-Spike Latency [ms]'); +ylabel('StdDev [ms]', 'Interpreter', 'tex') +% ax.XTickLabelRotation = -45; +ax = gca; +hold on +laser = plot([0:pulseWidth], (ax.YLim(2))*ones(pulseWidth + 1,1), 'Color', [0 1 1 0.5], 'LineWidth', 3); +ax = gca; +ax.FontName = 'Arial'; +ax.FontSize = 20; +% ax.FontName = 'Times New Roman'; +% Create rectangle +%lsText = text(3, ax.YLim(1)+45, 'Laser Pulse', 'FontSize', 10); + +lgd = legend; +lgd.String{1} = ['Units (n=', num2str(sum(nontagged)), ')']; +lgd.String{2} = ['Opto-tagged Units (n=', num2str(sum(tagged)), ')']; +lgd.String{3} = ['Laser Pulse (',num2str(pulseWidth), 'ms)']; + +% rectangle(ax, 'Position', [1, ax.YLim(2)-100, 4, 50], ... +% 'LineStyle', 'none', 'FaceColor', [0 1 1 0.5]) + +rectangle(ax, 'Position', [ax.XLim(1), ax.YLim(1), pulseWidth, ax.YLim(2) - ax.YLim(1)], ... + 'LineStyle', 'none', 'FaceColor', [0 1 1 0.1]) +lgd.FontSize = 8; + + +subplot(1,2,1) + +errorbar(mn(~tagged),depths(~tagged),sd(~tagged), 'horizontal', 'LineStyle', 'none', 'Marker', 'd', 'Color', [0.5, 0.5, 0.5], 'MarkerSize', 2.5, 'LineWidth', 0.01, 'CapSize', 0, 'MarkerFaceColor',[0.5,0.5,0.5]); +hold on +errorbar(mn(tagged),depths(tagged),sd(tagged), 'horizontal', 'LineStyle', 'none', 'Marker', 'd', 'Color',[0, 0.5, 1], 'MarkerSize', 2.5, 'LineWidth', 0.01, 'CapSize', 0, 'MarkerFaceColor',[0,0.5,1]); +hold off + + +pulseWidth = round(median(diff(TriggerTimes'/fs)')*1e3); +% title(name, 'Interpreter', 'none'); +ylim([round(round(min(depths),-2)/2,-2)*2-200,0]); +yticks([round(round(min(depths),-2)/2,-2)*2-200:200:0]); +xlim([0 tm*1e3]); +xticks(0:5:tm*1e3); +xlabel('First-Spike Latency [ms]'); +ylabel('Unit Depth [\mum]', 'Interpreter', 'tex') +% ax.XTickLabelRotation = -45; +ax = gca; +hold on +laser = plot([0:pulseWidth], ax.YLim(2)*ones(pulseWidth + 1,1), 'Color', [0 1 1 0.5], 'LineWidth', 3); +ax = gca; +ax.FontName = 'Arial'; +ax.FontSize = 20; +% ax.FontName = 'Times New Roman'; +% Create rectangle +% lsText = text(3, ax.YLim(1)+45, 'Laser Pulse', 'FontSize', 10); + +lgd = legend; +lgd.String{1} = (['Unit Mean +/- SD (n=', num2str(sum(nontagged)), ')']); +lgd.String{2} = (['Opto-tagged Units (n=', num2str(sum(tagged)), ')']); +lgd.String{3} = ['Laser Pulse (',num2str(pulseWidth), 'ms)']; +% rectangle(ax, 'Position', [1, ax.YLim(2)-100, 4, 50], ... +% 'LineStyle', 'none', 'FaceColor', [0 1 1 0.5]) + +rectangle(ax, 'Position', [ax.XLim(1), ax.YLim(1), pulseWidth, ax.YLim(2) - ax.YLim(1)], ... + 'LineStyle', 'none', 'FaceColor', [0 1 1 0.1]) +lgd.FontSize = 8; + +subplot(3,2,6) + +h = histogram(round(mn(~tagged))); +h.FaceColor = [0.5, 0.5, 0.5]; +hold on +j = histogram(round(mn(tagged))); +j.FaceColor = [0, 0.5, 1]; +hold off + +pulseWidth = round(median(diff(TriggerTimes'/fs)')*1e3); +% title(name, 'Interpreter', 'none'); +% ylim([0,sum(mode(round(mn)+5))]); +%yticks([round(round(min(Dpth),-2)/2,-2)*2-200:200:0]); +xlim([0 tm*1e3]); +xticks(0:5:tm*1e3); +yMax = max([max(h.BinCounts), max(j.BinCounts)]); +ylim([0, round(yMax + 5, -1)]); +xlabel('First-Spike Latency [ms]'); +ylabel('Frequency [no. of units]', 'Interpreter', 'tex') +% ax.XTickLabelRotation = -45; +ax = gca; +ax.FontName = 'Arial'; +laserLngth = linspace(0, pulseWidth + 0.5); +hold on +laser = plot(laserLngth, (ax.YLim(2))*ones(length(laserLngth),1), 'Color', [0 1 1 0.5], 'LineWidth', 3); +ax.FontSize = 20; +% ax.FontName = 'Times New Roman'; +% Create rectangle +%lsText = text(3, ax.YLim(1)+45, 'Laser Pulse', 'FontSize', 10); + + +rectangle(ax, 'Position', [ax.XLim(1), ax.YLim(1), pulseWidth + 0.5, ax.YLim(2) - ax.YLim(1)], ... + 'LineStyle', 'none', 'FaceColor', [0 1 1 0.1]) + +lgd = legend; +lgd.String{1} = ['Units (n=', num2str(sum(nontagged)), ')']; +lgd.String{2} = ['Opto-tagged Units (n=', num2str(sum(tagged)), ')']; +lgd.String{3} = ['Laser Pulse (',num2str(pulseWidth), 'ms)']; +lgd.FontSize = 8; + +idxTagged = ismember(All_Units.id, TaggedIDs); +if ~any(ismember(All_Units.Properties.VariableNames,'Tagged')) + All_Units = addvars(All_Units,idxTagged,'After','ActiveUnit',... + 'NewVariableNames','Tagged'); +end + + + +%% Finding subpopulations with K means (run Optotagging section first) +nkm = 3; +rng('default'); + +name = 'Pooled Subpopulations'; + +kmat = [mn, sd, depths]; + +km = kmeans(kmat(~nan,:), nkm, 'Replicates', 50); +GroupIDs = cell(nkm,1); + +colours = [0,0,0; 1,0,0; 0,1,0; 0,0,1; 1,1,0; 1,0,1]; + +fig = figure('Name', name, 'Color', 'White'); + + +for sub = 1:nkm + GroupIDs{sub,1} = sub; + GroupIDs{sub,2} = depthID(km==sub); + errorbar(mn(km == sub),depths(km == sub),sd(km == sub), 'horizontal', 'LineStyle', 'none', 'Marker', 'd', 'Color', colours(sub,:), 'MarkerSize', 2.5, 'LineWidth', 0.01, 'CapSize', 0, 'MarkerFaceColor', colours(sub,:)); + hold on +end +hold off + + +legend +lgd = legend; +for sub = 1:nkm + lgd.String{sub} = ['Group ', num2str(sub), ' mean latency +/- SD']; +end + +pulseWidth = round(median(diff(TriggerTimes'/fs)')*1e3); +% title(name, 'Interpreter', 'none'); +ylim([round(round(min(depths),-2)/2,-2)*2-200,0]); +yticks([round(round(min(depths),-2)/2,-2)*2-200:200:0]); +xlim([0 tm*1e3]); +xticks(0:5:tm*1e3); +xlabel('First-Spike Latency [ms]'); +ylabel('Unit Depth [\mum]', 'Interpreter', 'tex') + +ax = gca; +hold on +laser = plot([0:pulseWidth], ax.YLim(2)*ones(pulseWidth + 1,1), 'Color', [0 1 1 0.5], 'LineWidth', 3); +ax = gca; +ax.FontName = 'Arial'; +ax.FontSize = 20; +lgd.String{sub+1} = ['Laser Pulse (',num2str(pulseWidth), 'ms)']; + +% rectangle(ax, 'Position', [1, ax.YLim(2)-100, 4, 50], ... +% 'LineStyle', 'none', 'FaceColor', [0 1 1 0.5]) + +rectangle(ax, 'Position', [ax.XLim(1), ax.YLim(1), pulseWidth, ax.YLim(2) - ax.YLim(1)], ... + 'LineStyle', 'none', 'FaceColor', [0 1 1 0.1]) +lgd.FontSize = 8; + + + + +%% Finding subpopulations with user-defined latencies and jitter (Run optotagging first) +red = [0.75, 0, 0]; +green = [0, 0.75, 0]; +blue = [0.25, 0.5, 1]; +purple = [0.5,0,0.5]; +colours = [green; red; blue]; + +name = 'Population Separations'; + + +tagged = mn > 2 & mn <= 9 & sd >=0.2 & sd <= 4; % Could make these a Nby2 matrix 2 assign groups based on latency, jitter, depth +tagged = tagged & depths >-1500 & depths <-800; +group1 = mn > 9 & mn <= 18 & sd >=0.5 & sd <= 10; +group1 = group1 & depths >-650 & depths <-200; +group2 = mn > 15 & mn <= 50 & sd >=0.2 & sd <= 50; +group2 = group2 & depths <-700 & depths >-1000; + +other = ~tagged & ~group1 & ~group2; + + +nTagged = sum(tagged); +nGroup1 = sum(group1); +nGroup2 = sum(group2); +nOther = sum(other); + +% Plotting + +red = [0.75, 0, 0]; +green = [0, 0.75, 0]; +blue = [0.25, 0.5, 1]; + + +%Plotting the first data point of each group member for the legend +firstGroup1 = find(group1, 1, 'first'); +firstGroup2 = find(group2, 1, 'first'); +firstL6 = find(tagged, 1, 'first'); + +tagged(firstL6) = false; +group1(firstGroup1) = false; +group2(firstGroup2) = false; + + +fig = figure('Name', name, 'Color', 'White'); + +hold on + +errorbar(mn(firstGroup1),depths(firstGroup1),sd(firstGroup1), 'horizontal', 'LineStyle', 'none', 'Marker', 'o', 'Color', green, 'MarkerSize', 2, 'LineWidth', 0.01, 'CapSize', 5, 'MarkerFaceColor', green); +errorbar(mn(firstGroup2),depths(firstGroup2),sd(firstGroup2), 'horizontal', 'LineStyle', 'none', 'Marker', 'o', 'Color', red, 'MarkerSize', 2, 'LineWidth', 0.01, 'CapSize', 5, 'MarkerFaceColor', red); +errorbar(mn(firstL6),depths(firstL6),sd(firstL6), 'horizontal', 'LineStyle', 'none', 'Marker', 'o', 'Color', blue, 'MarkerSize', 2, 'LineWidth', 0.01, 'CapSize', 5, 'MarkerFaceColor', blue); + +leg = legend; + + + +hold on + +errorbar(mn(group1),depths(group1),sd(group1), 'horizontal', 'LineStyle', 'none', 'Marker', 'o', 'Color', green, 'MarkerSize', 2, 'LineWidth', 0.01, 'CapSize', 5, 'MarkerFaceColor', green); +%errorbar(mn(laterRS),Dpth(laterRS),sd(laterRS), 'horizontal', 'LineStyle', 'none', 'Marker', 'o', 'Color', [1, 0, 0], 'MarkerSize', 6, 'LineWidth', 0.01, 'CapSize', 5); %, 'MarkerFaceColor', [1, 0, 0]); + +errorbar(mn(group2),depths(group2),sd(group2), 'horizontal', 'LineStyle', 'none', 'Marker', 'o', 'Color', red, 'MarkerSize', 2, 'LineWidth', 0.01, 'CapSize', 5, 'MarkerFaceColor', red); +%errorbar(mn(latestRS),Dpth(latestRS),sd(latestRS), 'horizontal', 'LineStyle', 'none', 'Marker', 'o', 'Color', [0, 1, 0], 'MarkerSize', 6, 'LineWidth', 0.01, 'CapSize', 5); %, 'MarkerFaceColor', [0, 1, 0]); + +errorbar(mn(tagged),depths(tagged),sd(tagged), 'horizontal', 'LineStyle', 'none', 'Marker', 'o', 'Color', blue, 'MarkerSize', 2, 'LineWidth', 0.01, 'CapSize', 5, 'MarkerFaceColor', blue); +%errorbar(mn(taggedRS),Dpth(taggedRS),sd(taggedRS), 'horizontal', 'LineStyle', 'none', 'Marker', 'o', 'Color', [0.25, 0.5, 1], 'MarkerSize', 6, 'LineWidth', 0.01, 'CapSize', 5); %, 'MarkerFaceColor', [0.25, 0.5, 1]); + +leg.String(4:end) = []; +leg.String(4:end-1) = []; +leg.Box = 'off'; +legend('Location', 'southeast'); + + +pulseWidth = round(median(diff(TriggerTimes'/fs)')*1e3); +% title(name, 'Interpreter', 'none'); +ylim([round(round(min(depths),-2)/2,-2)*2-200,0]); +yticks([-2000:500:0]); +xlim([0 50]); +xticks(0:10:50); +xlabel('Latency [ms]'); +ylabel('Depth [\mum]', 'Interpreter', 'tex') +% ax.XTickLabelRotation = -45; +ax = gca; +hold on +laser = plot([0:pulseWidth], ax.YLim(2)*ones(pulseWidth + 1,1), 'Color', [0 1 1 0.5], 'LineWidth', 3); +leg = legend; +leg.String = [{'L4 Mean +/- SD'}, {'L5 Mean +/- SD'}, {'L6 Mean +/- SD'}, {['Laser Pulse (',num2str(pulseWidth), 'ms)']}]; +leg.FontSize = 10; +ax.FontName = 'Arial'; +ax.FontSize = 15; +% ax.FontName = 'Times New Roman'; +% Create rectangle +% lsText = text(3, ax.YLim(1)+45, 'Laser Pulse', 'FontSize', 10); + +% lgd = legend; +% lgd.String{1} = (['Unit Mean +/- SD (n=', num2str(sum(nontagged)), ')']); +% lgd.String{2} = (['Opto-tagged Units (n=', num2str(sum(tagged)), ')']); +% lgd.String{3} = ['Laser Pulse (',num2str(pulseWidth), 'ms)']; +% rectangle(ax, 'Position', [1, ax.YLim(2)-100, 4, 50], ... +% 'LineStyle', 'none', 'FaceColor', [0 1 1 0.5]) + +rectangle(ax, 'Position', [ax.XLim(1), ax.YLim(1), pulseWidth, ax.YLim(2) - ax.YLim(1)], ... + 'LineStyle', 'none', 'FaceColor', [0 1 1 0.1]) + +hold off + + +Group1 = depthID(group1); +Group2 = depthID(group2); +L6 = depthID(tagged); + + + + + +% Pie Chart + +x = [nGroup1, nGroup2, nTagged, nOther]; +explode = ones(1,4); +labels = [{'L4'}, {'L5'}, {'L6'}, {'Other'}]; + +figure('Color', 'White'); +pie(x, explode) +leg = legend; +leg.String = labels; +leg.Box = 'Off'; +leg.Location = 'eastoutside'; +leg.FontSize = 8; + + +ax = gca; +ax.Children(2).FaceColor = [1,1,1]; +ax.Children(4).FaceColor = blue; +ax.Children(6).FaceColor = red; +ax.Children(8).FaceColor = green; +ax.FontName = 'Arial'; + +for slice = 1:2:2*length(x) +ax.Children(slice).FontName = 'Arial'; +ax.Children(1).FontSize = 10; +end + +ax.Children(2).FaceColor = [1,1,1]; +ax.Children(4).FaceColor = blue; +ax.Children(6).FaceColor = red; +ax.Children(8).FaceColor = green; + +for slice = 2:2:2*length(x) + ax.Children(slice).EdgeColor = [1,1,1]; +end + + +%% Population analysis + +chExps = ['_', mouseID{1}]; +if length(mouseID) > 1 + + for expNo = 2:length(mouseID) + chExps = [chExps, mouseID{expNo}, '_']; + end +end +chExps = chExps(1:end-1); +[~,expName] = fileparts(pooledDataDir); +dataDir = pooledDataDir; +% Statistical tests +[Results, Counts] = statTests(discStack, delayFlags, timeFlags); + +% Plotting statistical tests +[figs, Results] = scatterSignificance(Results, Counts,... + consCondNames, delta_t, gclID); +arrayfun(@configureFigureToPDF, figs); +% % Firing rate for all clusters, for all trials +% % meanfr = cellfun(@(x) mean(x,2)/delta_t,Counts,'UniformOutput',false); +stFigBasename = fullfile(figureDir,[expName,' ',chExps]); +stFigSubfix = sprintf(' Stat RW%.1f-%.1fms SW%.1f-%.1fms',... + responseWindow(1)*1e3, responseWindow(2)*1e3, spontaneousWindow(1)*1e3,... + spontaneousWindow(2)*1e3); +ccn = 1; +%for cc = indCondSubs +for cc = 1:numel(figs) + if ~ismember(cc, indCondSubs) + altCondNames = strsplit(figs(cc).Children(2).Title.String,': '); + altCondNames = altCondNames{2}; + else + altCondNames = consCondNames{ccn}; + ccn = ccn + 1; + end + stFigName = [stFigBasename, altCondNames, stFigSubfix]; + if ~exist([stFigName,'.pdf'],'file') ||... + ~exist([stFigName,'.emf'],'file') + print(figs(cc),[stFigName,'.pdf'],printOpts{1}{:}) + print(figs(cc),[stFigName,'.emf'],printOpts{2}) + end +end + +% Filtering for the whisker responding clusters +H = cell2mat(cellfun(@(x) x.Pvalues,... + arrayfun(@(x) x.Activity, Results(indCondSubs), 'UniformOutput', 0),... + 'UniformOutput', 0)) < 0.05; +Htc = sum(H,2); +% Those clusters responding more than 80% of all whisker stimulating +% conditions +CtrlCond = contains(consCondNames,'control','IgnoreCase',true); +if ~nnz(CtrlCond) + CtrlCond = true(size(H,2),1); +end +wruIdx = any(H(:,CtrlCond),2); +Nwru = nnz(wruIdx); + +fprintf('%d whisker responding clusters:\n', Nwru); +fprintf('- %s\n',gclID{wruIdx}) + + +%% Getting cluster info and adding variables to table +% clInfo = getClusterInfo(fullfile(dataDir,'cluster_info.tsv')); +% chanMap = readNPY(fullfile(dataDir,'channel_map.npy')); +% chanPos = readNPY(fullfile(dataDir,'channel_positions.npy')); +% [m,b] = lineariz(chanPos(:,1), 6, 1); +% shank = m*chanPos(:,1) + b; +% shank = round(shank); +% shMap = containers.Map(chanMap, shank); +% setShank = @(x) shMap(x); +% clInfo.shank = arrayfun(setShank, clInfo.channel); +% tb = size(clInfo); +% sz = tb(1); +% ActiveUnit = false(sz,1); +% clInfo = addvars(clInfo,ActiveUnit,'NewVariableNames','ActiveUnit','After','id'); +% clInfo{gclID, 'ActiveUnit'} = true; + +window = diff(responseWindow); + +for a = 1: length(consCondNames) + All_Units{All_Units.ActiveUnit == true,[consCondNames{1,a}, '_Rate_Spont']} = mean(Counts{a,1}')'/window; % '_', num2str(responseWindow(1)), '_to_', num2str(responseWindow(2)), 's', + All_Units{All_Units.ActiveUnit == true,[consCondNames{1,a}, '_Rate_Evoked']} = mean(Counts{a,2}')'/window; % '_', num2str(responseWindow(1)), '_to_', num2str(responseWindow(2)), 's', +end + + +% Significant mechanical responses per condition +b = length(consCondNames); +for a = 1 : length(consCondNames) + All_Units{All_Units.ActiveUnit == true,[consCondNames{1,a}, '_R']} = Results(b).Activity(1).Pvalues < 0.05; + b = b + length(consCondNames) - a; +end + +% Comparing Across Conditions (i.e. manipulation effect on spontaneous and evoked activity) +% RAM: comment to explain what you are doing +sZ = size(Counts); +d = length(consCondNames); +e = 1; +f = length(consCondNames); +for a = 1:length(consCondNames) - 1 + for b = (a + 1): length(consCondNames) + + for c = 1: sZ(1,2) + All_Units{All_Units.ActiveUnit == true,[consCondNames{1,a},'_vs_',consCondNames{1,b}, '_', Results(e).Activity(c).Type, '_Response']} = Results(e).Activity(c).Pvalues < 0.05; + %RAM example + %myString = [consCondNames{1,a},'_vs_',consCondNames{1,b}, '_', Results(e).Activity(c).Type, '_Response']; + %clInfo{clInfo.ActiveUnit == true,myString} = Results(e).Activity(c).Pvalues < 0.05; + + end + + e = e + 1; + + if e == f + e = e + 1; + end + end + d = d - 1; + f = f + d; +end +writeClusterInfo(All_Units, fullfile(dataDir,'All_Units.tsv')); + +%% Filter question + + +idxGroup1 = ismember(gclID, Group1); +idxGroup2 = ismember(gclID, Group2); +idxL6 = ismember(gclID, L6); +ruIdx = [idxGroup1, idxGroup2, idxL6]; +nGroups = size(ruIdx, 2); +filterIdx = true(Ne,1); +ansFilt = questdlg('Would you like to filter for significance?','Filter',... + 'Yes','No','Yes'); +filtStr = 'unfiltered'; +if strcmp(ansFilt,'Yes') + filterIdx = [true(1,nGroups); ruIdx]; + filtStr = 'Filtered'; +end + + +%% Violin Plots + +mechResponse = All_Units.Mech_Control_R; +ruNames = [{'L4'}, {'L5'}, {'L6'}]; + + +red = [0.75, 0, 0]; +green = [0, 0.75, 0]; +blue = [0.25, 0.5, 1]; +purple = [0.5,0,0.5]; +colours = [green; red; blue]; +% colours = [0,0,0]; + +idxGroup1Tbl = ismember(All_Units.id, Group1); +idxGroup2Tbl = ismember(All_Units.id, Group2); +idxL6Tbl = ismember(All_Units.id, L6); + +ansFilt = questdlg('Would you like to filter for Mech Response?','Filter',... + 'Yes','No','Yes'); +if strcmp(ansFilt,'Yes') + idxMat = [idxGroup1Tbl, idxGroup2Tbl, idxL6Tbl] & mechResponse; +else + idxMat = [idxGroup1Tbl, idxGroup2Tbl, idxL6Tbl] ; +end + +% idxMat = mechResponse; % & clInfo.Mech_Laser_1Hz_15mW_Rate_Evoked < 60; +matDims = size(idxMat); +nGroups = matDims(2); + +% yMax = [max(clInfo.Laser_5sec_pulse_15mW_Block_Rate_Spont), max(clInfo.Laser_5sec_pulse_15mW_Block_Rate_Evoked)]; + +yMin = 0; + +% Spontaneous vs Evoked +for unitGroup = 1:nGroups + + + unitIds = idxMat(:,unitGroup)==true; + nUnits = sum(unitIds); + rts = NaN(nUnits, 2); + rts(:,1) = All_Units.Mech_Control_Rate_Spont(unitIds); + rts(:,2) = All_Units.Mech_Control_Rate_Evoked(unitIds); + [p, sig] = ranksum(rts(:,1), rts(:,2)); + fprintf([ruNames{unitGroup}, ' baseline vs evoked p value: ', num2str(p), '\n']); + figure('Color', 'White', 'Name', [ruNames{unitGroup}, '_Baseline_vs_Evoked_Rates_ViolinPlot']); + hold on + + + [yCtr, xCtr] = ksdensity(rts(:,1),'Bandwidth',0.7); + patch(yCtr * -1,xCtr,colours(unitGroup,:),'EdgeAlpha',0.1,'FaceAlpha',0.2); + + [yCtr, xCtr] = ksdensity(rts(:,2),'Bandwidth',0.7); + patch(yCtr,xCtr,colours(unitGroup,:),'EdgeAlpha',0.1,'FaceAlpha',0.5); + + + +% plot(zeros(nUnits,1) - 0.0025, rts(:,1),... +% 'LineStyle','none', 'Marker', '*', 'Color', colour(unitGroup,:), 'MarkerSize', 2); +% +% plot(zeros(nUnits,1) + 0.0025, rts(:,2),... +% 'LineStyle','none', 'Marker', '*', 'Color', [0,0,1], 'MarkerSize', 2); + + medControl = median(rts(:,1)); + medLaser = median(rts(:,2)); + + +% leg = legend('Mech Control','Mech Laser', 'Location','northwest'); +% leg.Box = 'off'; +% leg.Location = 'northeast'; + + + + ax = gca; + ax.Title.String = ruNames{unitGroup}; + ax.FontName = 'Arial'; + ax.FontSize = 10; + ax.XAxis.Visible = 'off'; + xscale = max(abs(ax.XAxis.Limits)); + yMax = ax.YAxis.Limits(2); + yMax = round(max(yMax)+5, -1); + + + plot([-xscale/5,0], [medControl, medControl], 'LineStyle', '-', 'LineWidth', 1, 'Color', colours(unitGroup,:)); + plot([0,xscale/5], [medLaser, medLaser], 'LineStyle', '-', 'LineWidth', 1, 'Color', colours(unitGroup,:)); + + plot(zeros(nUnits,1) - xscale/50, rts(:,1),... + 'LineStyle','none', 'Marker', '*', 'Color', colours(unitGroup,:), 'MarkerSize', 2); + + plot(zeros(nUnits,1) + xscale/50, rts(:,2),... + 'LineStyle','none', 'Marker', '*', 'Color', colours(unitGroup,:), 'MarkerSize', 2); + + + %leg.String = [{'Mech Control'}, {'Mech + Laser'}, {'Population Median'}]; + ax.XAxis.Limits = [-xscale, xscale]; + ax.YAxis.Limits = [yMin, yMax]; + ax.YLabel.String = 'Firing Rate [Hz]'; + ax.XTick = []; + % ax.Visible = 'off'; +end + + +% Mech Control vs Mech Laser + +for unitGroup = 1:nGroups + + + unitIds = idxMat(:,unitGroup)==true; + nUnits = sum(unitIds); + rts = NaN(nUnits, 2); + rts(:,1) = All_Units.Mech_Control_Rate_Evoked(unitIds); + rts(:,2) = All_Units.Mech_Laser_Rate_Evoked(unitIds); + [p, sig] = ranksum(rts(:,1), rts(:,2)); + fprintf([ruNames{unitGroup}, ' Mech Control vs Mech Laser p value: ', num2str(p), '\n']); + figure('Color', 'White', 'Name', [ruNames{unitGroup}, '_Evoked_Rates_ViolinPlot']); + hold on + + + [yCtr, xCtr] = ksdensity(rts(:,1),'Bandwidth',0.7); + patch(yCtr * -1,xCtr,colours(unitGroup,:),'EdgeAlpha',0.1,'FaceAlpha',0.2); + + [yCtr, xCtr] = ksdensity(rts(:,2),'Bandwidth',0.7); + patch(yCtr,xCtr,colours(unitGroup,:),'EdgeAlpha',0.1,'FaceAlpha',0.5); + + + +% plot(zeros(nUnits,1) - 0.0025, rts(:,1),... +% 'LineStyle','none', 'Marker', '*', 'Color', colour(unitGroup,:), 'MarkerSize', 2); +% +% plot(zeros(nUnits,1) + 0.0025, rts(:,2),... +% 'LineStyle','none', 'Marker', '*', 'Color', [0,0,1], 'MarkerSize', 2); + + medControl = median(rts(:,1)); + medLaser = median(rts(:,2)); + + +% leg = legend('Mech Control','Mech Laser', 'Location','northwest'); +% leg.Box = 'off'; +% leg.Location = 'northeast'; + + + + ax = gca; + ax.XAxis.Visible = 'off'; + ax.Title.String = ruNames{unitGroup}; + ax.FontName = 'Arial'; + ax.FontSize = 10; + xscale = max(abs(ax.XAxis.Limits)); + yMax = ax.YAxis.Limits(2); + yMax = round(max(yMax)+5, -1); + + + plot([-xscale/5,0], [medControl, medControl], 'LineStyle', '-', 'LineWidth', 1, 'Color', colours(unitGroup,:)); + plot([0,xscale/5], [medLaser, medLaser], 'LineStyle', '-', 'LineWidth', 1, 'Color', colours(unitGroup,:)); + + plot(zeros(nUnits,1) - xscale/50, rts(:,1),... + 'LineStyle','none', 'Marker', '*', 'Color', colours(unitGroup,:), 'MarkerSize', 2); + + plot(zeros(nUnits,1) + xscale/50, rts(:,2),... + 'LineStyle','none', 'Marker', '*', 'Color', colours(unitGroup,:), 'MarkerSize', 2); + + + %leg.String = [{'Mech Control'}, {'Mech + Laser'}, {'Population Median'}]; + ax.XAxis.Limits = [-xscale, xscale]; + ax.YAxis.Limits = [yMin, yMax]; + ax.YLabel.String = 'Firing Rate [Hz]'; + ax.XTick = []; + % ax.Visible = 'off'; +end + +% Firing Rates Violin Plots - One Plot + + +% Baseline vs Evoked Rates + +% yMax = [max(All_Units.Mech_Control_Rate_Spont), max(All_Units.Mech_Control_Rate_Evoked)]; +% yMin = 0; + figure('Color', 'White', 'Name','Baseline_vs_Evoked_Rates_ViolinPlot'); +for unitGroup = 1:nGroups + + + unitIds = idxMat(:,unitGroup)==true; + nUnits = sum(unitIds); + rts = NaN(nUnits, 2); + rts(:,1) = All_Units.Mech_Control_Rate_Spont(unitIds); + rts(:,2) = All_Units.Mech_Control_Rate_Evoked(unitIds); + + subplot(nGroups,1,unitGroup) + hold on + + + [yCtr, xCtr] = ksdensity(rts(:,1),'Bandwidth',0.7); + patch(yCtr * -1,xCtr,colours(unitGroup,:),'EdgeAlpha',0.1,'FaceAlpha',0.2); + + [yCtr, xCtr] = ksdensity(rts(:,2),'Bandwidth',0.7); + patch(yCtr,xCtr,colours(unitGroup,:),'EdgeAlpha',0.1,'FaceAlpha',0.5); + + + +% plot(zeros(nUnits,1) - 0.0025, rts(:,1),... +% 'LineStyle','none', 'Marker', '*', 'Color', colour(unitGroup,:), 'MarkerSize', 2); +% +% plot(zeros(nUnits,1) + 0.0025, rts(:,2),... +% 'LineStyle','none', 'Marker', '*', 'Color', [0,0,1], 'MarkerSize', 2); + + medControl = median(rts(:,1)); + medLaser = median(rts(:,2)); + + + leg = legend('Mech Control','Mech Laser', 'Location','northwest'); + leg.Box = 'off'; + leg.Location = 'northeast'; + + + + ax = gca; + ax.Title.String = ruNames{unitGroup}; + ax.FontName = 'Arial'; + ax.FontSize = 10; + xscale = max(abs(ax.XAxis.Limits)); + ax.XAxis.Visible = 'off'; + + + plot([-xscale/10,0], [medControl, medControl], 'LineStyle', '-', 'LineWidth', 1, 'Color', colours(unitGroup,:)); + plot([0,xscale/10], [medLaser, medLaser], 'LineStyle', '-', 'LineWidth', 1, 'Color', [0,0,1]); + + plot(zeros(nUnits,1) - xscale/50, rts(:,1),... + 'LineStyle','none', 'Marker', '*', 'Color', colours(unitGroup,:), 'MarkerSize', 2); + + plot(zeros(nUnits,1) + xscale/50, rts(:,2),... + 'LineStyle','none', 'Marker', '*', 'Color', [0,0,1], 'MarkerSize', 2); + + + leg.String = [{'Mech Control'}, {'Mech + Laser'}, {'Population Median'}]; + ax.XAxis.Limits = [-xscale, xscale]; + %ax.YAxis.Limits = [yMin, yMax]; + ax.YAxis.Limits(1) = 0; + ax.YLabel.String = 'Firing Rate [Hz]'; + ax.XTick = []; + % ax.Visible = 'off'; +end + + + + + + + + + +% Mech Control vs Mech Laser Rates - One Plot + + +% yMax = [max(All_Units.Mech_Control_Rate_Spont), max(All_Units.Mech_Control_Rate_Evoked)]; +% yMin = 0; + figure('Color', 'White', 'Name','Mech_Control_vs_Mech+Laser_Rates_ViolinPlot'); +for unitGroup = 1:nGroups + + + unitIds = idxMat(:,unitGroup)==true; + nUnits = sum(unitIds); + rts = NaN(nUnits, 2); + rts(:,1) = All_Units.Mech_Control_Rate_Evoked(unitIds); + rts(:,2) = All_Units.Mech_Laser_Rate_Evoked(unitIds); + + subplot(nGroups,1,unitGroup) + hold on + + + [yCtr, xCtr] = ksdensity(rts(:,1),'Bandwidth',0.7); + patch(yCtr * -1,xCtr,colours(unitGroup,:),'EdgeAlpha',0.1,'FaceAlpha',0.2); + + [yCtr, xCtr] = ksdensity(rts(:,2),'Bandwidth',0.7); + patch(yCtr,xCtr,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.2); + + + +% plot(zeros(nUnits,1) - 0.0025, rts(:,1),... +% 'LineStyle','none', 'Marker', '*', 'Color', colour(unitGroup,:), 'MarkerSize', 2); +% +% plot(zeros(nUnits,1) + 0.0025, rts(:,2),... +% 'LineStyle','none', 'Marker', '*', 'Color', [0,0,1], 'MarkerSize', 2); + + medControl = median(rts(:,1)); + medLaser = median(rts(:,2)); + + + leg = legend('Mech Control','Mech Laser', 'Location','northwest'); + leg.Box = 'off'; + leg.Location = 'northeast'; + + + + ax = gca; + ax.Title.String = ruNames{unitGroup}; + ax.FontName = 'Arial'; + ax.FontSize = 10; + xscale = max(abs(ax.XAxis.Limits)); + ax.XAxis.Visible = 'off'; + + + plot([-xscale/10,0], [medControl, medControl], 'LineStyle', '-', 'LineWidth', 1, 'Color', colours(unitGroup,:)); + plot([0,xscale/10], [medLaser, medLaser], 'LineStyle', '-', 'LineWidth', 1, 'Color', [0,0,1]); + + plot(zeros(nUnits,1) - xscale/50, rts(:,1),... + 'LineStyle','none', 'Marker', '*', 'Color', colours(unitGroup,:), 'MarkerSize', 2); + + plot(zeros(nUnits,1) + xscale/50, rts(:,2),... + 'LineStyle','none', 'Marker', '*', 'Color', [0,0,1], 'MarkerSize', 2); + + + leg.String = [{'Mech Control'}, {'Mech + Laser'}, {'Population Median'}]; + ax.XAxis.Limits = [-xscale, xscale]; + %ax.YAxis.Limits = [yMin, yMax]; + ax.YAxis.Limits(1) = 0; + ax.YLabel.String = 'Firing Rate [Hz]'; + ax.XTick = []; + % ax.Visible = 'off'; +end + +% Relative Rates Violin Plots + +figure('Color', 'White', 'Name','Relative_Rates_ViolinPlot'); +for unitGroup = 1:nGroups + + + unitIds = idxMat(:,unitGroup); + nUnits = sum(unitIds); + rts = NaN(nUnits, 2); + rts(:,1) = All_Units.Mech_Control_Rate_Evoked(unitIds)- All_Units.Mech_Control_Rate_Spont(unitIds); + rts(:,2) = All_Units.Mech_Laser_Rate_Evoked(unitIds) - All_Units.Mech_Laser_Rate_Spont(unitIds); + + + subplot(nGroups,1,unitGroup) + hold on + + + [yCtr, xCtr] = ksdensity(rts(:,1),'Bandwidth',0.7); + patch(yCtr * -1,xCtr,colours(unitGroup,:),'EdgeAlpha',0.1,'FaceAlpha',0.2); + + [yCtr, xCtr] = ksdensity(rts(:,2),'Bandwidth',0.7); + patch(yCtr,xCtr,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.2); + + + +% plot(zeros(nUnits,1) - 0.0025, rts(:,1),... +% 'LineStyle','none', 'Marker', '*', 'Color', colour(unitGroup,:), 'MarkerSize', 2); +% +% plot(zeros(nUnits,1) + 0.0025, rts(:,2),... +% 'LineStyle','none', 'Marker', '*', 'Color', [0,0,1], 'MarkerSize', 2); + + medControl = median(rts(:,1)); + medLaser = median(rts(:,2)); + + + leg = legend('Mech Control','Mech Laser', 'Location','northwest'); + leg.Box = 'off'; + leg.Location = 'northeast'; + + + + ax = gca; + ax.Title.String = ruNames{unitGroup}; + ax.FontName = 'Arial'; + ax.FontSize = 10; + xscale = max(abs(ax.XAxis.Limits)); + ax.XAxis.Visible = 'off'; + + + plot([-xscale/10,0], [medControl, medControl], 'LineStyle', '-', 'LineWidth', 1, 'Color', colours(unitGroup,:)); + plot([0,xscale/10], [medLaser, medLaser], 'LineStyle', '-', 'LineWidth', 1, 'Color', [0,0,1]); + + plot(zeros(nUnits,1) - xscale/50, rts(:,1),... + 'LineStyle','none', 'Marker', '*', 'Color', colours(unitGroup,:), 'MarkerSize', 2); + + plot(zeros(nUnits,1) + xscale/50, rts(:,2),... + 'LineStyle','none', 'Marker', '*', 'Color', [0,0,1], 'MarkerSize', 2); + + + leg.String = [{'Mech Control'}, {'Mech + Laser'}, {'Population Median'}]; + ax.XAxis.Limits = [-xscale, xscale]; + %ax.YAxis.Limits = [yMin, yMax]; +% ax.YAxis.Limits(1) = 0; + ax.YLabel.String = 'Relative Rate [Hz]'; + ax.XTick = []; + % ax.Visible = 'off'; +end + +% SNR Violin Plots + +figure('Color', 'White', 'Name','Signal_to_Noise_Ratio_ViolinPlot'); +for unitGroup = 1:nGroups + + + unitIds = idxMat(:,unitGroup); + nUnits = sum(unitIds); + rts = NaN(nUnits, 2); + rts(:,1) = All_Units.Mech_Control_Rate_Evoked(unitIds)./All_Units.Mech_Control_Rate_Spont(unitIds); + rts(:,2) = All_Units.Mech_Laser_Rate_Evoked(unitIds)./All_Units.Mech_Laser_Rate_Spont(unitIds); + + + subplot(nGroups,1,unitGroup) + hold on + + + [yCtr, xCtr] = ksdensity(rts(:,1),'Bandwidth',0.7); + patch(yCtr * -1,xCtr,colours(unitGroup,:),'EdgeAlpha',0.1,'FaceAlpha',0.2); + + [yCtr, xCtr] = ksdensity(rts(:,2),'Bandwidth',0.7); + patch(yCtr,xCtr,[0 0 1],'EdgeAlpha',0.1,'FaceAlpha',0.2); + + + +% plot(zeros(nUnits,1) - 0.0025, rts(:,1),... +% 'LineStyle','none', 'Marker', '*', 'Color', colour(unitGroup,:), 'MarkerSize', 2); +% +% plot(zeros(nUnits,1) + 0.0025, rts(:,2),... +% 'LineStyle','none', 'Marker', '*', 'Color', [0,0,1], 'MarkerSize', 2); + + medControl = median(rts(:,1)); + medLaser = median(rts(:,2)); + + + leg = legend('Mech Control','Mech Laser', 'Location','northwest'); + leg.Box = 'off'; + leg.Location = 'northeast'; + + + + ax = gca; + ax.Title.String = ruNames{unitGroup}; + ax.FontName = 'Arial'; + ax.FontSize = 10; + xscale = max(abs(ax.XAxis.Limits)); + ax.XAxis.Visible = 'off'; + + + plot([-xscale/10,0], [medControl, medControl], 'LineStyle', '-', 'LineWidth', 1, 'Color', colours(unitGroup,:)); + plot([0,xscale/10], [medLaser, medLaser], 'LineStyle', '-', 'LineWidth', 1, 'Color', [0,0,1]); + + plot(zeros(nUnits,1) - xscale/50, rts(:,1),... + 'LineStyle','none', 'Marker', '*', 'Color', colours(unitGroup,:), 'MarkerSize', 2); + + plot(zeros(nUnits,1) + xscale/50, rts(:,2),... + 'LineStyle','none', 'Marker', '*', 'Color', [0,0,1], 'MarkerSize', 2); + + + leg.String = [{'Mech Control'}, {'Mech + Laser'}, {'Population Median'}]; + ax.XAxis.Limits = [-xscale, xscale]; + %ax.YAxis.Limits = [yMin, yMax]; +% ax.YAxis.Limits(1) = 0; + ax.YLabel.String = 'Relative Rate [Hz]'; + ax.XTick = []; + % ax.Visible = 'off'; +end + + +%% Spontaneous firing rate with a bigger window +mltpl = 10; +sfrMdl = fit_poly(pfr(:,1), pfr(:,2), 1); +xyLims = ceil(max(pfr,[],1)./mltpl)*mltpl; +yeqxOpts = {'LineStyle','--','Color',[0.7,0.7,0.7],'DisplayName','y = x'}; +ptOpts = {'LineStyle',':','Color','k',... + 'DisplayName',sprintf('Population trend (%.1fx%+.2f)',sfrMdl)}; +scatOpts = {'MarkerEdgeColor', 'k', 'Marker', '.'}; +sfrFig = figure('Name','Spontaneous firing rate','Color',[1,1,1]); +sfrAx = axes('Parent',sfrFig,'NextPlot','add'); +yeqxLine = line(sfrAx, [0;min(xyLims)], [0;min(xyLims)], yeqxOpts{:}); +scPts = scatter(sfrAx, pfr(:,1), pfr(:,2), scatOpts{:}); +text(sfrAx, double(pfr(:,1)), double(pfr(:,2)), gclID, 'FontSize', 9) +axis(sfrAx,[0,xyLims(1),0,xyLims(2)],'square'); grid(sfrAx,'on'); +grid(sfrAx, 'minor'); ptLine = line(sfrAx,[0;xyLims(1)],... + [0;xyLims(1)]*sfrMdl(1) + sfrMdl(2), ptOpts{:}); +legend(sfrAx, [yeqxLine, ptLine]); +xlabel(consCondNames{1}); +ylabel(consCondNames{2}); +ttlString = sprintf('Spontaneous firing rate %s vs. %s', ... + Conditions(cchCond).name); ttlFile = cat(2, ttlString, ... + chExps); +structAns = inputdlg('What structure are you looking at?','Structure'); +if ~isempty(structAns) + ttlString = cat(2,ttlString, sprintf(' (%s)', structAns{:})); + ttlFile = cat(2, ttlFile, sprintf(' (%s)', structAns{:})); + structString = structAns{:}; +end +title(sfrAx, ttlString); +savefig(sfrFig, fullfile(figureDir, [ttlFile, '.fig'])); clearvars sfr*; +%% Spontaneous modulation distribution +% Proportion or ratio between conditions and number of bins (Nlb) +psr = double(pfr(:,2)./pfr(:,1)); Nlb = 64; +% Color map for the areas under the quartiles +qCMap = [224, 231, 250; 123, 152, 234; 21, 50, 132]; +qCMap = cat(1, qCMap, flip(qCMap(1:2,:),1))./255; +% Computing logarithmic histogram +[binCents, binEdges, logData, ts] = prepareLogBinEdges(psr, Nlb); +binCounts = histcounts(logData, binEdges, 'Normalization', 'probability'); +sdFig = figure('Name','Spontaneous fr proportion','Color',[1,1,1]); +sdAx = axes('Parent', sdFig, 'NextPlot', 'add'); +sdOpts = {"LineStyle","--","Color",qCMap(2,:),"LineWidth",0.5}; +sdDist = semilogx(sdAx,10.^binCents, binCounts, sdOpts{:}); +sdAx.XAxis.Scale = "log"; xticklabels(sdAx, xticks(sdAx)) +% Computing the quartiles +grid(sdAx, 'on'); [~, ~, qVals, ~] =... + exponentialSpread(binCounts, binCents, binCents([1,end])); +% Depicting the area under first, second & third, and fourth quartile +qVals10 = double(10.^[binCents(1), qVals([1,2,5,6]), binCents(Nlb)]); +binCents10 = double(10.^binCents); binCtsQV = interp1(binCents10,... + binCounts, qVals10); +sdaOpts = {"FaceAlpha", 0.6, "EdgeColor", "none", "FaceColor"}; +for cq = 1:length(qVals10)-1 + qIdx = binCents10 >= qVals10(cq) & binCents10 <= qVals10(cq+1); + area(sdAx, [qVals10(cq), binCents10(qIdx), qVals10(cq+1)],... + [binCtsQV(cq), binCounts(qIdx), binCtsQV(cq+1)], sdaOpts{:},... + qCMap(cq,:)); +end +% Median , mean, and mode markers +[~, mxQSub] = max(binCounts); mLabels = ["Median","Mean","Mode"]; +triM = 10.^[qVals(3), nanmean(logData), binCents(mxQSub)]; +triBCts = interp1(binCents10, binCounts, triM); mCMap = flip(hsv(3),1); +for cm = 1:length(triM) + line(sdAx, repmat(triM(cm),2,1), [0; triBCts(cm)],... + "Color", mCMap(cm,:), "DisplayName", mLabels(cm)+" "+triM(cm)) +end +triMLines = get(sdAx, 'Children'); +ttlString = sprintf('Proportional change distribution %s & %s',... + consCondNames{1:2}); +ttlFile = cat(2, ttlString, sprintf(' %d', chExps)); +if exist('structString','var') + ttlString = cat(2, ttlString, sprintf(' (%s)', structString)); + ttlFile = cat(2, ttlFile, sprintf(' (%s)', structString)); +end +lgnd = legend(sdAx, triMLines(1:length(triM))); title(sdAx, ttlString) +lgnd.Box = 'off'; lgnd.Location = 'best'; +xlabel(sdAx, sprintf('%s multiplier to get %s fr', consCondNames{1:2})) +ylabel(sdAx, "Population proportion"); saveFigure(sdFig,... + fullfile(figureDir, ttlFile),1) +%% Modulation index +frNbin = 32; + +evFr = cellfun(@(x) mean(x,2)./diff(responseWindow), Counts(:,2),... + 'UniformOutput', 0); evFr = cat(2, evFr{:}); SNr = evFr./pfr; +if ~exist('structString','var') + structStruct = []; + structAns = inputdlg('What structure are you looking at?','Structure'); + if ~isempty(structAns) + structString = structAns{:}; + end +end +mdOpts = {figureDir, chExps, structString}; + +[MIh(:,1), ~, ~, MIspon] = modulationDist(pfr, frNbin,... + 'Spontaneous modulation index', mdOpts{:}); +[MIh(:,2), ~, ~, MIevok] = modulationDist(evFr, frNbin,... + 'Evoked modulation index', mdOpts{:}); +ttls = "SNR modulation"; ttls(2) = ttls(1) + " responsive"; +ttls(3) = ttls(1) + " non-responsive"; ci = 1; SNR = zeros(frNbin, 3); +ttls = ttls.cellstr; +for cr = [true(size(H,1),1), any(H,2), ~any(H,2)] + [SNR(:,ci),~,~,MIsnr] = modulationDist(SNr(cr,:), frNbin,... + ttls{ci}, mdOpts{:}); + ci = ci + 1; +end +% sfrBPAx = axes('Parent', sfrFig, 'Position', [0.13, 0.8, 0.775, 0.2],... +% 'Box','off', 'Color', 'none'); +% boxplot(sfrBPAx, MI, 'Orientation', 'horizontal', 'Symbol', '.',... +% 'Notch', 'on'); sfrBPAx.Visible = 'off'; +% linkaxes([sfrAx, sfrBPAx], 'x'); +%% Add the response to the table +try + All_Units = addvars(All_Units, false(size(All_Units,1),1),... + 'NewVariableNames', 'Control'); + All_Units{logical(All_Units.ActiveUnit), 'Control'} = wruIdx; +catch + fprintf('Reran, perhaps?\n') +end +%% Response dynamics +trigTms = cell2mat(arrayfun(@(x) x.Triggers(:,1), Conditions(chCond),... + 'UniformOutput', 0)')/fs; +timesum = @(x) squeeze(sum(x,2)); +clsum = @(x) squeeze(sum(x,1)); +matsum = @(x) timesum(clsum(x)); +stackTx = (0:Nt-1)/fs + timeLapse(1) + 2.5e-3; + +[~,cnd] = find(delayFlags); +[~, tmOrdSubs] = sort(trigTms, 'ascend'); +cnd = cnd(tmOrdSubs(1:length(cnd))); +trialAx = minutes(seconds(trigTms(tmOrdSubs))); +% Modulation: distance from the y=x line. +try + modFlags = sign(All_Units{All_Units.ActiveUnit &... + All_Units.Control, 'Modulation'}); +catch + All_Units = addvars(All_Units, zeros(size(All_Units,1),1),... + 'NewVariableNames', 'Modulation'); + All_Units{All_Units.ActiveUnit==1,'Modulation'} =... Thalamus + Results(1).Activity(2).Direction; + %clInfoTotal{clInfoTotal.ActiveUnit==1,'Modulation'} =... Cortex with laser + % Results.Activity(1).Direction; + modFlags = sign(All_Units{All_Units.ActiveUnit &... + All_Units.Control, 'Modulation'}); +end +% Group indeces +modVal = All_Units{All_Units.ActiveUnit == 1, 'Modulation'}; +pruIdx = wruIdx & modVal > 0; % Potentiated responding +druIdx = wruIdx & modVal <= 0; % Depressed responding +nruIdx = ~any(H,2); % Non-responding what-so-ever +nmuIdx = false(size(nruIdx)); % Non-responding nor modulating +nmuIdx(nruIdx) = abs(zscore(modVal(nruIdx))) < 0.33; % With this criteria +% Thalamus +aruIdx = and(xor(H(:,1),H(:,2)),H(:,2)); % Response only A.-I. +sruIdx = and(xor(H(:,1),H(:,2)),H(:,1)); % Stopped responding after A.-I. + +modFlags = modFlags > 0; +modFlags(:,2) = ~modFlags; +cmap = lines(Nccond); +cmap(CtrlCond,:) = ones(1,3)*1/3; cmap(:,:,2) = ones(Nccond,3)*0.7; + +signMod = Results(1).Activity(2).Pvalues < 0.05; signMod(~wruIdx) = []; +potFlag = MIevok > 0; potFlag(~wruIdx) = []; + +% modFlags = false(size(modFlags)); +% modVals_rt = clInfoTotal(clInfoTotal.ActiveUnit == 1 & clInfoTotal.Control, 'Modulation'); +% trnFlag = string(clInfoTotal{clInfoTotal.ActiveUnit == 1 & clInfoTotal.Control,'Region'}) == 'TRN'; +% modFlags(trnFlag,:) = [modVals_rt(trnFlag),-modVals_rt(trnFlag)] > 0; + +plotOpts = {'LineStyle', 'none', 'Marker', '.', 'Color', 'DisplayName'}; +modLabel = {'Potentiation', 'Depression'}; +clrSat = 0.5; +ax = gobjects(size(modFlags,2), 1); +condLey = consCondNames; +respLey = {'Responsive', 'Non-responsive'}; +% Time steps for the 3D PSTH in ms +focusStep = 2.5; +focusPeriods = (-3:focusStep:25)'; +focusPeriods(:,2) = focusPeriods + focusStep; focusPeriods = focusPeriods * 1e-3; +Nfs = size(focusPeriods,1); +fws = 1:Nfs; +auxOr = [false, true]; +trialBin = 1; +Nas = [0;cumsum(NaStack./trialBin)']; +spkDomain = 0:15; +spkBins = spkDomain(1) - 0.5:spkDomain(end) + 0.5; + + +resTotalTrial = mod(sum(NaStack),trialBin); +resTrialPerCond = mod(NaStack, trialBin); + +trialsPerCond = floor(NaStack./trialBin); +NaCs = [0;cumsum(trialsPerCond(:))]; +% popMeanResp = nan(Nfs, floor(Nas(end)), 4); +popMeanResp = nan(Nfs, sum(trialsPerCond), 4); +auxResp = [H(:,1), ~any(H,2)]; + +for pfp = fws + tdFig = figure('Name', 'Temporal dynamics', 'Color', [1,1,1]); + for cmod = 1:size(modFlags,2) % Up- and down-modulation + tcount = 1; + ax(cmod) = subplot(size(modFlags,2),1,cmod,'Parent',tdFig); + ax(cmod).NextPlot = 'add'; + title(ax(cmod), sprintf('%s',modLabel{cmod})); + trSubsTotal = zeros(sum(trialsPerCond),1); + for ccond = 1:Nccond % Cycling through the conditions (control and after-induction) + % muTrSubs = Nas(ccond:ccond+1)+[1;0]; + % muTrSubs = [ceil(Nas(ccond)+1);floor(Nas(ccond+1))]; + muTrSubs = NaCs(ccond:ccond+1)+[1;0]; + % trSubs = tcount:trialBin:sum(NaStack(1:ccond)); + trSubs = tcount:trialBin:muTrSubs(2)*trialBin; + % clMod = modFlags(:,cmod); + clMod = signMod & xor(potFlag,cmod-1); + for cr = 1:2 % responsive and non-responsive + rsSel = [cr,cmod-1]*[1;2]; + respIdx = auxResp(:,cr); + %respIdx = xor(H(:,1), auxOr(cr)); % Negation of H(:,2) + %respIdx = xor(any(H,2), auxOr(cr)); % Negation of H(:,2) + popErr = nan(Nfs, trialsPerCond(ccond)); + for cp = 1:Nfs % 'Micro' time windows + % Mean count for selected conditions + focusIdx = stackTx >= focusPeriods(cp,1) &... + stackTx <= focusPeriods(cp,2); + clCounts = timesum( discStack( [false; respIdx],... + focusIdx, delayFlags(:,ccond))); + clCounts_resh = reshape(clCounts(clMod, ... + 1:NaStack(ccond)-resTrialPerCond(ccond)),... + sum(clMod), trialBin, trialsPerCond(ccond)); + clMean = squeeze(mean(mean(clCounts_resh,2,'omitnan'))); + popMeanResp(cp, muTrSubs(1):muTrSubs(2),... + rsSel) = clMean; + + % Error per mean + if trialBin > 1 + sem = squeeze(std(std(clCounts_resh,0,2,'omitnan')))./... + sqrt(sum(respIdx)); + else + sem = std(clCounts(clMod,:))./sqrt(sum(respIdx)); + end + popErr(cp, muTrSubs(1):muTrSubs(2),rsSel) = sem; + end + dispName = [condLey{ccond}, ' ', respLey{cr}]; + errorbar(ax(cmod), trialAx(trSubs),... + popMeanResp(pfp, muTrSubs(1):muTrSubs(2),rsSel)./... + (focusStep * 1e-3), popErr(pfp, muTrSubs(1):... + muTrSubs(2),rsSel)./(focusStep * 1e-3),... + 'Color', cmap(ccond,:,cr), 'DisplayName', dispName,... + 'LineWidth',0.1, 'LineStyle', ':', 'Marker', '.') + clMod = true(sum(auxResp(:,2)),1); + end + trSubsTotal(muTrSubs(1):muTrSubs(2)) = trSubs; + tcount = 1 + sum(NaStack(1:ccond));% + resTrialPerCond(ccond); + end + ctMu = mean(popMeanResp(pfp, (NaCs(1)+1):NaCs(2), [cmod,1]*[2;-1])); + if ~ctMu + ctMu = 1; + end + aiMu = mean(popMeanResp(pfp, (NaCs(2)+1):NaCs(3), [cmod,1]*[2;-1])); + if ~aiMu + aiMu = 1; + end + yyaxis(ax(cmod), 'right') + % plot(trialAx(1:trialBin:sum(NaStack)),... + plot(trialAx(trSubsTotal), popMeanResp(pfp,:,[cmod,1]*[2;-1]),... + 'LineStyle', 'none', 'Color',[0.7,0.7,0.7]); + ax(cmod).YAxis(2).Limits = ax(cmod).YAxis(1).Limits*focusStep*1e-3; + tpMlt = floor(ax(cmod).YAxis(2).Limits(2)/ctMu); + yticks(ax(cmod),ctMu*(1:tpMlt)'); yticklabels(num2str((1:tpMlt)')) + set(get(ax(cmod),'YAxis'),'Color',[0.4,0.4,0.45]); + if cmod == 1 + ylabel(ax(cmod),'Proportional change'); + end + yyaxis(ax(cmod),'left') + + cmap(ccond,:,1) = brighten(cmap(ccond, :, 1), clrSat); + clrSat = -clrSat; + end + ylabel(ax(cmod), 'Spikes / Time window [Hz]'); xlabel(ax(cmod),... + sprintf('(%.1f - %.1f [ms]) Trial_{%d trials} [min]',... + focusPeriods(pfp,:)*1e3, trialBin)) + % linkaxes(ax,'xy') + tdFigName = string(... + sprintf('Temporal dynamics exps %sFW%.1f-%.1f ms TB %d trials (f, prop, lines & bars)',... + sprintf('%d ', chExps), focusPeriods(pfp,:)*1e3, trialBin)); + % if ~isempty(dirNames) && exist('subFoldSel','var') + % tdFigName = tdFigName + " sf-" + dirNames{subFoldSel}; + % end + tempFigName = fullfile(figureDir, tdFigName); + saveFigure(tdFig, tempFigName); +end + +%% 3D Visualization of the spiking dynamics +redundantFlag = false(size(popMeanResp,3),1); +lvls = 128; +redundantFlag(2) = length(redundantFlag)==4; +popMeanResp(:,:,redundantFlag) = []; +popMeanFreq = popMeanResp./(focusStep * 1e-3); +srfOp = {'FaceColor','interp','EdgeColor','none'}; +tpVal = max(popMeanFreq(:)); +NaCum = [0;cumsum(NaStack(:))]; +% Colormap for all modulated neurons +clrMap = jet(lvls); [m, b] = lineariz([0;tpVal], lvls, 1); +[Ntw, Nbt, Nmn] = size(popMeanFreq); +clrSheet = clrMap(round(popMeanFreq*m + b),1:3); +clrSheet = reshape(clrSheet, Ntw, Nbt, Nmn, 3); +modLey = ["potentiated";"depressed";"non-responding"]; +for cmod = 1:size(popMeanFreq,3) + summFig = figure('Color', [1,1,1], 'Colormap', clrMap); + ax = axes('Parent', summFig, 'NextPlot', 'add','Clipping','off',... + 'View',[-37.5, 30]); + caxis([0, tpVal]); + tcount = 1; + for ccond = 1:Nccond + muTrEdges = NaCs(ccond:ccond+1)+[1;0]; + muTrSubs = muTrEdges(1):muTrEdges(2); + trEdges = NaCum(ccond:ccond+1)+[1;0]+[resTrialPerCond(ccond);0]; + trSubs = trEdges(1):trialBin:trEdges(2); + clrSheetSq = squeeze(clrSheet(:,muTrSubs,cmod,:)); + surf(trialAx(trSubs), 1e3*focusPeriods(:,1), popMeanFreq(:,... + muTrSubs, cmod), clrSheetSq, srfOp{:}, 'Parent', ax); + end + cbOut = colorbar('Parent', summFig); cbOut.Label.String = ... + 'Response [Hz]';box(ax,'off'); grid(ax,'on'); + xlim(ax, trialAx([NaCum(1)+1, NaCum(Nccond+1)])); ylim(ax,... + focusPeriods([1,end],1)*1e3); xlabel(ax, 'Trial time [min]'); + ylabel(ax, 'Within-trial time [ms]'); zlabel(ax,... + 'Spike / within-trial window [Hz]'); title(ax, sprintf(... + '%s clusters', capitalizeFirst(modLey(cmod)))) + sumFigName = fullfile(figureDir,... + sprintf('Spike-dynamics 3D %s exp%s FP%.2f - %.2f ms FW%.2f ms TB %d trial(s)',... + modLey(cmod), sprintf(' %d', chExps), focusPeriods([1,end])*1e3,... + focusStep, trialBin)); + if numel(chExps) == 1 && ~isempty(dirNames) && exist('subFoldSel','var') + sumFigName = cat(2, sumFigName,... + sprintf(' sf-%s', dirNames{subFoldSel})); + end + summFig.PaperType = 'A4'; + saveFigure(summFig, sumFigName, false); +end + +%% Spontaneous ISIs for different cluster groups +% Logarithmic spacing for the histogram counts +lDt = 0.01; +logSpkHD = [-log10(2e3); 1] + [-1;1]*(lDt/2); +logSpkEdges = logSpkHD(1):lDt:logSpkHD(2);logSpkDom = logSpkHD +... + [1;-1]*(lDt/2); logSpkDom = logSpkDom(1):lDt:logSpkDom(2); +lgStTmAx = 10.^logSpkDom'; +% Potentiated (2), non-modulated (1), depressed (0) clusters' +% classification +modCat = categorical(... + sign(All_Units{All_Units.ActiveUnit == 1,'Modulation'}) + 1); +modLey = ["depressed";"non-modulated";"potentiated"]; +% Conditions for the plot +condLey = string(consCondNames)'; +respLey = ["responsive";"non-responsive"]; +% Responsive clusters in any condition (control AND after induction) +respIdx = any(H,2); +% respIdx = H(:,1); % Control only +% respIdx = H(:,2); % After-induction only +% % Responsive and TRN +% respIdx = any(H,2) &... +% string(clInfoTotal{clInfoTotal.ActiveUnit == 1, 'Region'}) == 'TRN'; + +% Auxiliary variables for the loop +isiFigs = gobjects(6,1); +% Combinatorial loop +for cr = 1:2 % Responsive and non-responsive + riveFlag = xor(respIdx, cr-1); % 0 passes, 1 negates + for cmod = 0:2 % depressed - non-modulalted - potentiated + lc = [cr-1,cmod+1] * [3;1]; + modFlag = modCat == num2str(cmod); + isiFigs(lc) = figure('Color',[1,1,1]); + htotal = zeros(length(logSpkDom),Nccond); + totalErr = htotal; + for ccond = 1:Nccond % Condition numbers + hcond = cellfun(@(x) histcounts(log10(x/fs), logSpkEdges),... + pcondIsi(riveFlag & modFlag, ccond), 'UniformOutput', 0); + hcond = cellfun(@(x) x./sum(x), hcond, 'UniformOutput', 0); + hcond = cat(1,hcond{:}); totalErr(:,ccond) =... + std(hcond,'omitnan');%./sqrt(sum(~emptFlag)); + hcond = mean(hcond,1,'omitnan'); + if isempty(hcond) + fprintf(1, 'No spikes!\n') + continue + end + hcond = hcond./sum(hcond); htotal(:,ccond) = hcond; + end + ax = axes('Parent', isiFigs(lc)); + semilogx(ax, lgStTmAx, cumsum(htotal)); ylim(ax,[0,1]); + ax.NextPlot = 'add'; ax.ColorOrderIndex = 1; + semilogx(ax, lgStTmAx, cumsum(htotal) + totalErr,'LineStyle',':') + ax.ColorOrderIndex = 1; semilogx(ax, lgStTmAx, cumsum(htotal) -... + totalErr,'LineStyle',':') + xlim(ax,10.^logSpkHD); box(ax,'off'); grid('on'); + xticklabels(ax, xticks(ax)*1e3); + xlabel(ax,'Inter-spike interval [ms]'); + ylabel('Cumulative probability'); + title(ax, "Cumulative ISI: "+respLey(cr)+" & "+modLey(cmod+1)) + lgnd = legend(ax, condLey); set(lgnd, 'Location','best', 'Box', 'off'); + ciName = "Cumulative ISI, "+respLey(cr)+" & "+modLey(cmod+1) + ... + ", exp"+string(sprintf(' %d', chExps))+ " LB 10^"+string(lDt); + ciFilePath = fullfile(figureDir, ciName); + if numel(chExps) == 1 && ~isempty(dirNames) + ciFilePath = ciFilePath + ' sf-' + dirNames{subFoldSel}; + end + saveFigure(isiFigs(lc),ciFilePath); + end +end +%% Getting the relative spike times for the whisker responsive units (wru) +% For each condition, the first spike of each wru will be used to compute +% the standard deviation of it. +configStructure = struct('Experiment', fullfile(dataDir,expName),... + 'Viewing_window_s', timeLapse, 'Response_window_s', responseWindow,... + 'BinSize_s', binSz, 'Trigger', struct('Name', condNames{chCond},... + 'Edge',onOffStr), 'ConsideredConditions',{consCondNames}); +cellLogicalIndexing = @(x,idx) x(idx); +isWithinResponsiveWindow =... + @(x) x > responseWindow(1) & x < responseWindow(2); + +firstSpike = zeros(Nwru,Nccond); +M = 16; +binAx = responseWindow(1):binSz:responseWindow(2); +condHist = zeros(size(binAx,2)-1, Nccond); +firstOrdStats = zeros(2,Nccond); +condParams = zeros(M,3,Nccond); +txpdf = responseWindow(1):1/fs:responseWindow(2); +condPDF = zeros(numel(txpdf),Nccond); +csvSubfx = sprintf(' SW%.1f-%.1f ms RW%.1f-%.1f ms VW%.1f-%.1f ms (%s).csv',... + spontaneousWindow*1e3, responseWindow*1e3, timeLapse*1e3, filtStr); +existFlag = false; +condRelativeSpkTms = cell(Nccond,1); +relativeSpkTmsStruct = struct('name',{},'SpikeTimes',{}); +csvDir = fullfile(dataDir, 'SpikeTimes'); +if ~exist(csvDir,'dir') + iOk = mkdir(csvDir); + if ~iOk + fprintf(1, 'The ''Figure'' folder was not created!\n') + fprintf(1, 'Please verify your writing permissions!\n') + end +end +for ccond = 1:size(delayFlags,2) + csvFileName = fullfile(csvDir,[expName,' ', sprintf('%d ',chExps),... + consCondNames{ccond}, csvSubfx]); + relativeSpikeTimes = getRasterFromStack(discStack,~delayFlags(:,ccond),... + filterIdx(3:end), timeLapse, fs, true, false); + relativeSpikeTimes(:,~delayFlags(:,ccond)) = []; + relativeSpikeTimes(~filterIdx(2),:) = []; + condRelativeSpkTms{ccond} = relativeSpikeTimes; + % respIdx = cellfun(isWithinResponsiveWindow, relativeSpikeTimes,... + % 'UniformOutput',false); + clSpkTms = cell(size(relativeSpikeTimes,1),1); + if exist(csvFileName, 'file') && ccond == 1 + existFlag = true; + ansOW = questdlg(['The exported .csv files exist! ',... + 'Would you like to overwrite them?'],'Overwrite?','Yes','No','No'); + if strcmp(ansOW,'Yes') + existFlag = false; + fprintf(1,'Overwriting... '); + end + end + fID = 1; + if ~existFlag + fID = fopen(csvFileName,'w'); + fprintf(fID,'%s, %s\n','Cluster ID','Relative spike times [ms]'); + end + rsclSub = find(filterIdx(2:end))-1; + % If a subcript is zero, don't substract. + if any(~rsclSub) + rsclSub = rsclSub + 1; + end + for cr = 1:size(relativeSpikeTimes, 1) + clSpkTms(cr) = {sort(cell2mat(relativeSpikeTimes(cr,:)))}; + if fID > 2 + fprintf(fID,'%s,',gclID{rsclSub(cr)}); + fprintf(fID,'%f,',clSpkTms{cr});fprintf(fID,'\n'); + end + end + if fID > 2 + fclose(fID); + end + relativeSpkTmsStruct(ccond).name = consCondNames{ccond}; + relativeSpkTmsStruct(ccond).SpikeTimes = condRelativeSpkTms{ccond}; +end +spkFileName =... + sprintf('%s exps%s RW%.2f - %.2f ms SW%.2f - %.2f ms VW%.2f - %.2f ms %s (%s) exportSpkTms.mat',... + expName, sprintf(' %d',chExps), responseWindow*1e3, spontaneousWindow*1e3,... + timeLapse*1e3, Conditions(chCond).name, filtStr); +if ~exist(spkFileName,'file') + save(fullfile(csvDir, spkFileName), 'relativeSpkTmsStruct',... + 'configStructure') +end + +%% ISI PDF & CDF +areaFig = figure('Visible','on', 'Color', [1,1,1],'Name','ISI probability'); +areaAx = gobjects(2,1); +lDt = 0.01; +logSpkHD = [-log10(1e3); log10(0.05)] + [-1;1]*(lDt/2); % 2000 = 1/0.0005 +logSpkEdges = logSpkHD(1):lDt:logSpkHD(2);logSpkDom = logSpkHD +... + [1;-1]*(lDt/2); logSpkDom = logSpkDom(1):lDt:logSpkDom(2); +lgStTmAx = 10.^logSpkDom'; +% cmap = [0,0,102;... azul marino +% 153, 204, 255]/255; % azul cielo +cmap = lines(Nccond); +%areaOpts = {'EdgeColor', 'none', 'FaceAlpha', 0.3, 'FaceColor'}; +areaOpts = {'Color','LineStyle','--','LineWidth',1.5}; +ley = ["Potentiated", "Depressed"]; +isiPdf = zeros(length(logSpkDom),2*Nccond); +for cmod = 1:2 % Potentiated and depressed clusters + areaAx(cmod) = subplot(1,2,cmod,'Parent',areaFig); + Nccl = sum(modFlags(:,cmod)); + for ccond = 1:Nccond + cnt = [cmod-1,ccond] * [2,1]'; + ISI = cellfun(@(x) diff(x(x >= 0 & x <= 0.05)), ... + relativeSpkTmsStruct(ccond).SpikeTimes(modFlags(:,cmod),:),... + 'UniformOutput', 0); + ISIpc = arrayfun(@(x) cat(2, ISI{x,:}), (1:size(ISI,1))',... + 'UniformOutput', 0); + hisi = cellfun(@(x) histcounts(log10(x), logSpkEdges), ISIpc,... + 'UniformOutput', 0); + hisi = cellfun(@(x) x/sum(x), hisi, 'UniformOutput', 0); + hisi = cat(1,hisi{:}); + hisi = mean(hisi,1,'omitnan'); hisi = hisi./sum(hisi); + if ~isempty(hisi) + isiPdf(:,cnt) = hisi; + end + %ISI_merge = [ISI{:}]; + %lISI = log10(ISI_merge); + %hisi = histcounts(lISI, logSpkEdges); + %spkPerT_C = hisi./(NaStack(ccond)*Nccl); + %isiPdf(:,cnt) = spkPerT_C/sum(spkPerT_C); + semilogx(areaAx(cmod), lgStTmAx, isiPdf(:,cnt),... + areaOpts{1}, cmap(ccond,:), areaOpts{4:5}); + if ccond == 1 + hold(areaAx(cmod), 'on'); + areaAx(cmod).XAxis.Scale = 'log'; + areaAx(cmod).XLabel.String = "ISI [ms]"; + areaAx(cmod).YLabel.String = "ISI probability"; + end + yyaxis(areaAx(cmod) ,'right') + + semilogx(areaAx(cmod), lgStTmAx, cumsum(isiPdf(:,cnt)),... + areaOpts{1}, cmap(ccond,:), areaOpts{2:3}) + ylim(areaAx(cmod), [0,1]); areaAx(cmod).YAxis(2).Color = [0,0,0]; + ylabel(areaAx(cmod), 'Cumulative probability'); + yyaxis(areaAx(cmod) ,'left'); set(areaAx(cmod),'Box','off') + xticklabels(xticks*1e3) + end + title(areaAx(cmod), sprintf('ISI PDF for %s clusters',ley(cmod))); + grid(areaAx(cmod),'on') +end +legend(areaAx(cmod),consCondNames,'Location','best') +linkaxes(areaAx,'xy') +evokIsiFigPath = fullfile(figureDir, "Evoked ISI, potentiated & depressed" +... + " clusters, exp"+string(sprintf(' %d',chExps))+" LB 10^"+string(lDt)); +saveFigure(areaFig, evokIsiFigPath) + +%% Ordering PSTH +orderedStr = 'ID ordered'; +dans = questdlg('Do you want to order the PSTH other than by IDs?',... + 'Order', 'Yes', 'No', 'No'); +ordSubs = 1:nnz(filterIdx(2:Ncl+1)); +pclID = gclID(filterIdx(2:Ncl+1)); +if strcmp(dans, 'Yes') + if ~exist('clInfoTotal','var') + All_Units = getClusterInfo(fullfile(dataDir,'All_Units.tsv')); + end + % varClass = varfun(@class,clInfo,'OutputFormat','cell'); + [ordSel, iOk] = listdlg('ListString', All_Units.Properties.VariableNames,... + 'SelectionMode', 'multiple'); + orderedStr = []; + ordVar = All_Units.Properties.VariableNames(ordSel); + for cvar = 1:numel(ordVar) + orderedStr = [orderedStr, sprintf('%s ',ordVar{cvar})]; %#ok + end + orderedStr = [orderedStr, 'ordered']; + + if ~strcmp(ordVar,'id') + [~,ordSubs] = sortrows(All_Units(pclID,:),ordVar); + end +end +%% Plot PSTH +goodsIdx = logical(All_Units.ActiveUnit); +csNames = fieldnames(Triggers); +Nbn = diff(timeLapse)/binSz; +if (Nbn - round(Nbn)) ~= 0 + Nbn = ceil(Nbn); +end +PSTH = zeros(nnz(filterIdx) - 1, Nbn, Nccond); +for ccond = 1:Nccond + figFileName = sprintf('%s %s %sVW%.1f-%.1f ms B%.1f ms RW%.1f-%.1f ms SW%.1f-%.1f ms %sset %s (%s)',... + expName, consCondNames{ccond},... + sprintf('%d ', chExps), timeLapse*1e3,... + binSz*1e3, responseWindow*1e3, spontaneousWindow*1e3, onOffStr,... + orderedStr, filtStr); + [PSTH(:,:,ccond), trig, sweeps] = getPSTH(discStack(filterIdx,:,:),... + timeLapse, ~delayFlags(:,ccond), binSz, fs); + stims = mean(discStack(:,:,delayFlags(:,ccond)),3); + stims = stims - median(stims,2); + for cs = 1:size(stims,1) + if abs(log10(var(stims(cs,:),[],2))) < 13 + [m,b] = lineariz(stims(cs,:),1,0); + stims(cs,:) = m*stims(cs,:) + b; + else + stims(cs,:) = zeros(1,Nt); + end + end + figs = plotClusterReactivity(PSTH(ordSubs,:,ccond), trig, sweeps,... + timeLapse, binSz, [consCondNames(ccond);... + pclID(ordSubs)], strrep(expName,'_','\_')); + configureFigureToPDF(figs); + figs.Children(end).YLabel.String = [figs.Children(end).YLabel.String,... + sprintf('^{%s}',orderedStr)]; + if ~exist([figFileName,'.pdf'], 'file') || ~exist([figFileName,'.emf'], 'file') + print(figs, fullfile(figureDir,[figFileName, '.pdf']),'-dpdf','-fillpage') + print(figs, fullfile(figureDir,[figFileName, '.emf']),'-dmeta') + end +end + +%% depthPSTH + +csNames = fieldnames(Triggers); +pclTblInd = ismember(clInfo.id, pclID(ordSubs)); +depthOrd = sort(clInfo.abs_depth(pclTblInd), 'descend'); +depthVals = [4200:-200:0]; +depthInds = zeros(length(depthVals), 1); +for a = 1:length(depthInds) + selDepths = depthOrd < depthVals(a); + if sum(selDepths)> 0 + depthInd = find(selDepths); + depthInds(a) = depthInd(1); + end +end +topDepth = find(depthInds == 0); +topDepth = topDepth(1); +depthInds(topDepth) = length(pclID); +depthInds = depthInds(depthInds > 0); +selClIDs = cell(length(pclID),1); +depthVals = depthVals(1:length(depthInds))'; +for a = 1:length(depthInds) + selClIDs{depthInds(a)} = num2str(depthVals(a)); +end +goodsIdx = logical(clInfo.ActiveUnit); +csNames = fieldnames(Triggers); +%csNames = csNames(2:end); +Nbn = diff(timeLapse)/binSz; +if (Nbn - round(Nbn)) ~= 0 + Nbn = ceil(Nbn); +end +PSTH = zeros(nnz(filterIdx) - 1, Nbn, Nccond); +psthFigs = gobjects(Nccond,1); +for ccond = 1:Nccond + figFileName = sprintf('%s %s VW%.1f-%.1f ms B%.1f ms RW%.1f-%.1f ms SW%.1f-%.1f ms %sset %s (%s)',... + expName, Conditions(consideredConditions(ccond)).name, timeLapse*1e3,... + binSz*1e3, responseWindow*1e3, spontaneousWindow*1e3, onOffStr,... + orderedStr, filtStr); + [PSTH(:,:,ccond), trig, sweeps] = getPSTH(discStack(filterIdx,:,:),timeLapse,... + ~delayFlags(:,ccond),binSz,fs); + stims = mean(discStack(:,:,delayFlags(:,ccond)),3); + %stims = stims([2,3],:); + stims = stims - median(stims,2); + for cs = 1:size(stims,1) + if abs(log10(var(stims(cs,:),[],2))) < 13 + [m,b] = lineariz(stims(cs,:),1,0); + stims(cs,:) = m*stims(cs,:) + b; + else + stims(cs,:) = zeros(1,Nt); + end + end + psthFigs(ccond) = plotClusterReactivityRoss(PSTH(ordSubs,:,ccond),trig,sweeps,timeLapse,binSz,... + [{Conditions(consideredConditions(ccond)).name};... + selClIDs],... + strrep(expName,'_','\_'),... + stims, csNames); + configureFigureToPDF(psthFigs(ccond)); + psthFigs(ccond).Children(end).Title.String = consCondNames{ccond}; + % psthFigs(ccond).Children(end).YLabel.String =... + % [psthFigs(ccond).Children(end).YLabel.String,... + % sprintf('^{%s}',orderedStr)]; + % if ~exist([figFileName,'.pdf'], 'file') + % print(psthFigs(ccond), fullfile(figureDir,[figFileName, '.pdf']),... + % '-dpdf','-fillpage') + % end + % if ~exist([figFileName,'.emf'], 'file') + % print(psthFigs(ccond), fullfile(figureDir,[figFileName, '.emf']),... + % '-dmeta') + % end + +end +% for a = 1:length(consideredConditions) +% savefig(figure(a), fullfile(figureDir, [consCondNames{a}, '_filtered_PSTH_0.001binSz.fig'])); +% end + + +%% Comparing the PSTHs for all conditions + +txpsth = (0:Nbn-1)*binSz + timeLapse(1) + 2.5e-3; +focusWindow = [-5, 30]*1e-3; +focusIdx = txpsth >= focusWindow(1) & txpsth <= focusWindow(2); +txfocus = txpsth(focusIdx); +modLabels = {'potentiated', 'depressed'}; +%modLabels = {'non-responding','non-modulated'}; +lnClr = lines(Nccond); +for cmod = 1:2 + psthFig = figure('Color', [1,1,1], 'Name', 'Condition PSTH comparison',... + 'Visible', 'off'); + PSTH_raw = squeeze(sum(PSTH(modFlags(:,cmod),:,:),1)); + PSTH_trial = PSTH_raw./(NaStack.*sum(modFlags(:,cmod))); + PSTH_prob = PSTH_raw./sum(PSTH_raw,1); + PSTH_all = cat(3, PSTH_raw, PSTH_trial, PSTH_prob); + axp = gobjects(4,1); + subpltsTitles = {sprintf('PSTH per condition, %s clusters',modLabels{cmod}),... + 'Cumulative density function', 'Cumulative sum for normalized spikes'}; + yaxsLbls = {'Spikes / (Trials * Cluster)', 'Spike probability',... + 'Spike number'}; + for cax = 1:3 + axp(cax) = subplot(2, 2, cax, 'Parent', psthFig, 'NextPlot', 'add'); + for ccond = 1:Nccond + plotOpts = {'DisplayName', consCondNames{ccond},'Color',... + lnClr(ccond,:), 'LineStyle','-.'}; + switch cax + case 1 % Plot the trial-normalized PSTH; page #2 + plot(axp(cax), txfocus, PSTH_all(focusIdx,ccond,2),... + plotOpts{1:4}) + case 2 % Plot the cumulative probability function; page 3 + PSTH_aux = PSTH_all(focusIdx, ccond, 3); + PSTH_aux = PSTH_aux./sum(PSTH_aux); + plot(axp(cax), txfocus, PSTH_aux, plotOpts{1:4}) + yyaxis(axp(cax), 'right'); plot(axp(cax), txfocus,... + cumsum(PSTH_aux), plotOpts{:}) + ylim(axp(cax), [0,1]); ylabel(axp(cax),... + 'Cumulative probability'); set(axp(cax).YAxis(2),... + 'Color',0.2*ones(3,1)) + yyaxis(axp(cax), 'left'); + case 3 % Plot the cumulative sum for the mean spikes; page 2 + plot(axp(cax), txfocus, ... + cumsum(PSTH_all(focusIdx, ccond, 2)), plotOpts{1:4}) + end + end + title(axp(cax), subpltsTitles{cax}) + ylabel(axp(cax), yaxsLbls{cax}) + if cax == 3 + xlabel(axp(cax), sprintf('Time_{%.2f ms} [s]', binSz*1e3)) + lgnd = legend(axp(cax), 'show'); + set(lgnd, 'Location', 'best', 'Box', 'off') + end + end + axp(4) = subplot(2,2,4, 'Parent', psthFig); + PSTH_diff = 100 * ((PSTH_prob(:,2)./PSTH_prob(:,1)) - 1); + bar(axp(4), txfocus(PSTH_diff(focusIdx) > 0), PSTH_diff(PSTH_diff > 0 & focusIdx'),... + 'FaceColor', [51, 204, 51]/255, 'DisplayName', 'Potentiation'); hold on + bar(axp(4), txfocus(PSTH_diff(focusIdx) <= 0), PSTH_diff(PSTH_diff <= 0 & focusIdx'),... + 'FaceColor', [204, 51, 0]/255, 'DisplayName', 'Depression'); + axp(4).Box = 'off'; ylabel(axp(4), '%'); title(axp(4), 'Percentage of change') + xticks(axp(4),''); linkaxes(axp, 'x'); lgnd = legend(axp(4),'show'); + lgnd.Box = 'off'; lgnd.Location = 'best'; psthFig.Visible = 'on'; + %psthFig = configureFigureToPDF(psthFig); + psthFigFileName = sprintf('%s %sPSTH %sRW%.2f-%.2f ms FW%.2f-%.2f ms %s clusters',... + expName, sprintf('%d ',chExps), sprintf('%s ',string(consCondNames)),... + responseWindow*1e3, focusWindow*1e3, modLabels{cmod}); + psthFigFileName = fullfile(figureDir,psthFigFileName); + arrayfun(@(x) set(x, 'Color', 'none'), axp) + if numel(chExps) == 1 && ~isempty(dirNames) + psthFigFileName = string(psthFigFileName) + " sf-" + dirNames{subFoldSel}; + end + saveFigure(psthFig, string(psthFigFileName)) +end + + +%% Waveform analysis +% pltDot = {'LineStyle', 'none', 'Marker', '.', 'MarkerSize', 5}; +% fprintf(1, 'This is the waveform analysis section\n'); +% mg2db = @(x) 20*log10(abs(x)); [Nws, Ncw] = size(popClWf); +% Np = 2^(nextpow2(Nws)-1) - Nws/2; tx = (0:Nws-1)/fs; +% pwf_m = popClWf - mean(popClWf); pwf_w = pwf_m .* chebwin(Nws, 150); +% pwf_p = padarray(padarray(pwf_w, [floor(Np),0], 'pre'),... +% [ceil(Np),0], 'post'); pwf_n = pwf_p./max(abs(pwf_p)); +% ltx = ((0:size(pwf_p,1)-1)' - size(pwf_n,1)/2)/fs; +% ft = fftshift(fft(pwf_n,[],1),1); dw = fs/size(ft,1); mg = mg2db(ft); +% ph = angle(ft); wx = (0:size(ft,1)-1)'*dw - fs/2; +% mg = mg(wx>=0,:); ph = ph(wx>=0,:); wx = wx(wx>=0); [~, mxWxSub] = max(mg); +% wcp = getWaveformCriticalPoints(mg, size(ft,1)/fs); +% pwc = cellfun(@(x) x(1), wcp(:,1)); mxW = wx(mxWxSub); +% +% tcp = getWaveformCriticalPoints(pwf_n, fs); +% featWf = getWaveformFeatures(pwf_n, fs); +% params = emforgmm(log(featWf(:,1)), 3, 1e-7, 0); +% logDomain = (round(min(log(featWf(:,1)))*1.05,1):0.01:... +% round(max(log(featWf(:,1)))*0.95,1))'; +% p_x = genP_x(params, logDomain); +% probCriticPts = getWaveformCriticalPoints(p_x', 100); +% probCriticPts = cellfun(@(x) x + logDomain(1), probCriticPts,... +% 'UniformOutput', 0); logThresh = probCriticPts{1,1}(2); +% time_wf = log(featWf(:,1)) > logThresh; +% +% [m, b] = lineariz(pwc, 1, -1); pwc_n = pwc*m + b; +% params_freq = emforgmm(pwc_n, 3, 1e-7, 0); wDomain = (-1.05:0.01:1.05)'; +% p_wx = genP_x(params_freq, wDomain); +% probCriticPts_w = getWaveformCriticalPoints(p_wx', 100); +% probCriticPts_w = cellfun(@(x) x + wDomain(1), probCriticPts_w,... +% 'UniformOutput', 0); wThresh = probCriticPts_w{1,1}(2); +% freq_wf = pwc_n < wThresh; +% tf_groups = [... +% ~time_wf & ~freq_wf,... +% ~freq_wf & time_wf,... +% freq_wf & ~time_wf,... +% freq_wf & time_wf]; +% % meanWf = cellfun(@(x) mean(x,2), popClWf(:,2),'UniformOutput', 0); +% % meanWf = cat(2,meanWf{:}); featWf = getWaveformFeatures(meanWf, fs); +% % wFeat = whitenPoints(featWf); +%% Adaptation +if diff(timeLapse) > 0.5 + dt = 1/8; + onst = (0:7)'*dt; + ofst = (0:7)'*dt + 0.05; + onrpWins = [onst+5e-3, onst+3e-2]; + ofrpWins = [ofst+5e-3, ofst+3e-2]; + onrpIdx = txpsth >= onrpWins(:,1) & txpsth <= onrpWins(:,2); + ofrpIdx = txpsth >= ofrpWins(:,1) & txpsth <= ofrpWins(:,2); + ptsOn = zeros(size(onrpIdx,1),size(PSTH_prob,2),2); % time, magnitude + ptsOf = ptsOn; + for ccond = 1:size(PSTH_prob,2) + for crw = 1:size(onst,1) + [mg, tmSub] = max(PSTH_prob(onrpIdx(crw,:),ccond)); + tmWinSub = find(onrpIdx(crw,:)); + ptsOn(crw, ccond, 1) = txpsth(tmWinSub(tmSub)); + ptsOn(crw, ccond, 2) = mg; + [mg, tmSub] = max(PSTH_prob(ofrpIdx(crw,:),ccond)); + tmWinSub = find(ofrpIdx(crw,:)); + ptsOf(crw, ccond, 1) = txpsth(tmWinSub(tmSub)); + ptsOf(crw, ccond, 2) = mg; + end + end + +else + +end + + + + + diff --git a/Ross/PrepTables.m b/Ross/PrepTables.m new file mode 100644 index 0000000..4d827c5 --- /dev/null +++ b/Ross/PrepTables.m @@ -0,0 +1,18 @@ +% PrepTables +clInfo = getClusterInfo(fullfile(dataDir,'cluster_info.tsv')); +sZ = height(clInfo); + +for a = 1:sZ +clInfo.Properties.RowNames{a,1} = [expName, '_', clInfo.id{a}]; +clInfo.id{a,1} = clInfo.Properties.RowNames{a}; + +end +Region = cell(sZ,1); +Model = cell(sZ,1); +for a = 1:sZ + Region{a} = 'VPL'; + Model{a} = 'CFA'; +end +clInfo = addvars(clInfo,Model,'NewVariableNames','Model','After','id'); +clInfo = addvars(clInfo,Region,'NewVariableNames','Region','After','id'); +% writeClusterInfo(clInfo, fullfile(dataDir,[expName, '_Table'], '.tsv')); diff --git a/Ross/PrintResults.m b/Ross/PrintResults.m new file mode 100644 index 0000000..414f8cf --- /dev/null +++ b/Ross/PrintResults.m @@ -0,0 +1,3 @@ +for a = 1:length(Results) +fprintf(1, [Results(a).name,' Kolgorov-Smirnov Test = ', num2str(Results(a).kstest), ' \n \n']) +end \ No newline at end of file diff --git a/Ross/Rate.emf b/Ross/Rate.emf new file mode 100644 index 0000000..1e91e1d Binary files /dev/null and b/Ross/Rate.emf differ diff --git a/Ross/Rates.m b/Ross/Rates.m new file mode 100644 index 0000000..457173b --- /dev/null +++ b/Ross/Rates.m @@ -0,0 +1,30 @@ +% Rates +% Spont vs Evoked +SpontInd = find(contains(Vpl.Properties.VariableNames, 'Counts_Spont')); +MechControlInd = contains(Vpl.Properties.VariableNames, 'Mech_Control'); +CountsInd = contains(Vpl.Properties.VariableNames, 'Counts_Evoked'); +EvInd = find(CountsInd & MechControlInd); +figure('Name', 'CFA Spontaneous vs Evoked Rates (MR Units)', 'Color', 'white'); +boxplot([CFA_Spont, CFA_Evoked], 'Notch', 'on', 'Colors', 'r'); +hold on +for i = 1:length(CFA_Spont) + plot([1.25, 1.75],[CFA_Spont(i,1), CFA_Evoked(i,1)],'-o', 'color', [0.9,0.9,0.9]); +end +ylabel('Firing Rate (Hz)'); +labels = [{'Spontaneous'}, {'Evoked'}]; +xticklabels(labels); +title('CFA'); +[txt, star] = findRSsignificance(CFA_Spont, CFA_Evoked); +annotation(figure(gcf),'textbox',... + [0.21428125 0.438809261300992 0.0568125 0.029768467475193],'String',star,... + 'FontSize',20,... + 'FitBoxToText','off',... + 'EdgeColor','none'); +annotation(figure(gcf),'textbox',... + [0.673958333333333 0.112328008579419 0.203645833333333 0.232874455900804],... + 'String',{txt},... + 'FontSize',15,... + 'FitBoxToText','off',... + 'EdgeColor','none'); +ax = gca; +ax.FontSize = 25; \ No newline at end of file diff --git a/Ross/Responsive_1Hz_1mW.txt b/Ross/Responsive_1Hz_1mW.txt new file mode 100644 index 0000000..3e027f8 --- /dev/null +++ b/Ross/Responsive_1Hz_1mW.txt @@ -0,0 +1,522547 @@ +60.032274 +77.561394 +152.608405 +211.004584 +211.009679 +211.018903 +211.105716 +211.908146 +253.824255 +253.828251 +261.294211 +264.959076 +265.174560 +268.506958 +324.000908 +342.852804 +643.429626 +644.231623 +644.931190 +646.531122 +657.659982 +657.811064 +672.719674 +678.028992 +679.631255 +680.632686 +713.332820 +723.047296 +726.274232 +727.063109 +755.337140 +755.362948 +758.923150 +762.226344 +762.321815 +762.598804 +853.332014 +867.795369 +892.230010 +925.427779 +927.232240 +931.163105 +931.194906 +932.720579 +934.150115 +934.305592 +935.326104 +968.379318 +968.388709 +971.909284 +972.189937 +990.291750 +1006.075817 +1006.226233 +1006.958334 +1011.150637 +1018.725954 +1066.631368 +1084.391789 +1098.129604 +1109.011778 +1110.790664 +1112.318202 +1135.227436 +1135.601129 +1135.620609 +1135.628734 +1135.828468 +1136.132763 +1182.260123 +1203.556106 +1203.629432 +1203.830964 +1204.132096 +1214.021630 +1217.115666 +1218.000380 +1238.029564 +1266.029770 +1365.966499 +1366.966598 +1366.972326 +1367.966597 +1368.966829 +1370.966794 +1376.066423 +1376.066989 +1376.567921 +1376.868087 +1376.968054 +1377.068253 +1377.668319 +1377.768319 +1377.967520 +1378.468518 +1378.568418 +1378.768518 +1379.168551 +1379.268751 +1379.768783 +1379.968583 +1380.268650 +1380.868915 +1385.979700 +1386.631281 +1386.905473 +1386.946831 +1387.037074 +1387.167810 +1387.768709 +1387.840137 +1387.998212 +1388.131213 +1388.299711 +1388.349261 +1388.482161 +1388.555688 +1388.594449 +1388.720856 +1388.770306 +1388.821755 +1388.893882 +1389.017758 +1389.046630 +1389.060416 +1389.135441 +1389.237339 +1389.312031 +1389.385890 +1389.413096 +1389.456386 +1389.528714 +1389.611464 +1389.745430 +1389.929179 +1389.971570 +1389.988553 +1390.003905 +1390.033542 +1390.065676 +1390.093748 +1390.203938 +1390.555319 +1390.627913 +1390.643631 +1390.689219 +1390.793381 +1390.962712 +1410.966921 +1410.973281 +1411.368519 +1412.669317 +1414.868682 +1414.968748 +1415.168748 +1415.369347 +1415.569447 +1415.669413 +1415.869546 +1421.016328 +1421.039405 +1421.428349 +1421.888721 +1422.105005 +1422.160716 +1422.456719 +1422.639670 +1422.730012 +1422.838304 +1423.046196 +1423.191417 +1423.258750 +1423.416459 +1423.590052 +1423.890418 +1423.900607 +1423.912662 +1424.097244 +1424.240967 +1424.458149 +1424.587187 +1424.685555 +1424.751089 +1424.819055 +1425.040466 +1425.069371 +1425.116057 +1425.228911 +1425.259147 +1425.304302 +1425.373933 +1425.436936 +1425.491415 +1425.638767 +1425.685720 +1425.712460 +1425.763443 +1425.897342 +1425.960545 +1437.969225 +1440.969688 +1445.969616 +1447.971579 +1448.272345 +1448.872211 +1449.071445 +1449.571611 +1449.672043 +1449.772210 +1450.272376 +1450.372243 +1450.471510 +1450.771609 +1454.345066 +1455.873869 +1457.692582 +1457.803937 +1457.943597 +1458.388352 +1458.472601 +1458.758714 +1459.084055 +1459.299673 +1459.346992 +1459.389916 +1459.574731 +1459.644095 +1459.760445 +1459.888217 +1459.935137 +1460.074431 +1460.229942 +1460.293844 +1460.345759 +1460.466338 +1460.572732 +1460.659678 +1460.688483 +1460.759944 +1460.805932 +1460.821083 +1460.896774 +1460.927643 +1481.071712 +1481.172112 +1481.472744 +1481.572977 +1481.873443 +1482.774108 +1483.173808 +1483.273309 +1483.873974 +1484.074007 +1484.474107 +1484.574173 +1484.874173 +1485.373207 +1485.473939 +1485.873972 +1490.984856 +1491.215059 +1491.620886 +1492.082457 +1492.213260 +1492.325647 +1492.424515 +1492.651055 +1492.831008 +1493.025913 +1493.267005 +1493.449456 +1493.844094 +1493.892379 +1493.991280 +1494.123980 +1494.237733 +1494.366404 +1494.541795 +1494.916221 +1494.954149 +1494.973064 +1495.075561 +1495.119983 +1495.198638 +1495.301269 +1495.344126 +1495.412757 +1495.443260 +1495.477392 +1495.533836 +1495.586949 +1505.972087 +1507.972318 +1510.972515 +1515.971145 +1516.672876 +1516.873475 +1517.173574 +1517.772142 +1517.973307 +1518.173174 +1518.373440 +1518.774272 +1518.873772 +1518.972241 +1519.173739 +1519.573938 +1520.174204 +1520.273738 +1520.373271 +1520.474071 +1520.874403 +1525.971201 +1525.985420 +1526.203735 +1526.519852 +1526.896775 +1526.985286 +1527.177061 +1527.676195 +1527.770933 +1527.840830 +1527.853650 +1527.937000 +1528.138532 +1528.218319 +1528.387949 +1528.425012 +1528.520050 +1528.566137 +1528.659877 +1528.767103 +1528.808861 +1529.034934 +1529.098671 +1529.243226 +1529.440795 +1529.482953 +1529.532170 +1529.592077 +1529.644990 +1529.852616 +1529.922879 +1529.951550 +1530.026042 +1530.067601 +1530.332569 +1530.373694 +1530.460441 +1530.512056 +1530.578556 +1530.615985 +1530.647620 +1530.708992 +1530.816318 +1540.972485 +1543.972549 +1545.972713 +1550.972375 +1551.373640 +1551.474006 +1551.674006 +1552.174405 +1552.374771 +1552.474671 +1553.674437 +1553.774503 +1553.874703 +1554.174903 +1554.274703 +1554.374836 +1554.574936 +1554.874735 +1555.174102 +1555.274902 +1555.374935 +1555.674635 +1561.059511 +1561.221882 +1561.619617 +1561.748721 +1561.840063 +1562.135900 +1562.472530 +1562.540995 +1562.617552 +1562.819683 +1562.834368 +1563.078923 +1563.206562 +1563.292476 +1563.510291 +1563.636232 +1563.702732 +1563.804863 +1564.058975 +1564.239828 +1564.353081 +1564.411722 +1564.642924 +1564.745422 +1564.788911 +1564.825874 +1564.991009 +1565.090709 +1565.116550 +1565.217516 +1565.247985 +1565.293939 +1565.340559 +1565.441392 +1565.477589 +1565.506693 +1565.551814 +1565.584482 +1565.737162 +1565.767365 +1565.796636 +1565.880286 +1575.972883 +1576.972815 +1579.973045 +1586.173339 +1587.174503 +1587.674969 +1587.974536 +1588.074070 +1588.174669 +1588.374968 +1588.774369 +1589.675067 +1589.775067 +1589.874601 +1590.174767 +1590.275033 +1590.374767 +1590.575133 +1590.674966 +1590.874899 +1595.971731 +1596.001667 +1596.129007 +1596.492609 +1596.587781 +1596.640594 +1596.711390 +1596.898370 +1597.201300 +1597.458909 +1597.692808 +1597.742458 +1597.775225 +1597.871762 +1597.922345 +1597.953181 +1598.283850 +1598.339427 +1598.425841 +1598.469897 +1598.534798 +1598.800599 +1598.910256 +1599.112420 +1599.212753 +1599.310588 +1599.390375 +1599.678087 +1599.737095 +1599.772126 +1599.852679 +1599.906958 +1599.947851 +1599.976322 +1600.038693 +1600.069729 +1600.206958 +1600.362402 +1600.415516 +1600.456208 +1600.503927 +1600.551946 +1600.581816 +1600.633231 +1600.677254 +1600.752379 +1600.782582 +1612.973079 +1621.674302 +1621.774003 +1621.874269 +1622.274402 +1622.374701 +1622.474701 +1622.574934 +1622.775134 +1622.974068 +1623.074767 +1623.374933 +1623.474900 +1624.175166 +1624.574766 +1624.874432 +1625.074798 +1625.474432 +1625.674931 +1625.974831 +1630.972428 +1631.046820 +1631.364236 +1631.459407 +1631.571595 +1631.817882 +1632.013952 +1632.072194 +1632.149550 +1632.232966 +1632.671095 +1632.704028 +1632.750781 +1632.947351 +1632.975790 +1633.027704 +1633.097068 +1633.171494 +1633.261370 +1633.383115 +1633.449948 +1633.514750 +1633.597867 +1633.828003 +1634.214683 +1634.320677 +1634.477386 +1634.516914 +1634.563001 +1634.589707 +1634.632897 +1634.661569 +1634.713883 +1634.889940 +1634.949214 +1635.064499 +1635.103260 +1635.173756 +1635.244552 +1635.292704 +1635.321941 +1635.431531 +1635.513116 +1635.613849 +1635.674888 +1635.765830 +1635.894368 +1635.926469 +1645.972080 +1649.971910 +1656.172137 +1656.472902 +1657.073201 +1657.373434 +1657.473367 +1657.573334 +1657.973467 +1658.073400 +1658.172834 +1658.173333 +1658.273467 +1658.673733 +1658.773599 +1658.973532 +1659.173599 +1659.573665 +1659.673532 +1659.873565 +1660.073565 +1660.273631 +1660.473364 +1660.573864 +1660.673497 +1665.971694 +1666.011820 +1666.051114 +1666.268330 +1666.429236 +1666.700631 +1666.739492 +1666.820844 +1666.901463 +1666.980551 +1667.103794 +1667.185113 +1667.483014 +1667.701462 +1667.738592 +1667.858638 +1667.989274 +1668.133763 +1668.307789 +1668.455807 +1668.456640 +1668.906190 +1669.013316 +1669.057705 +1669.231165 +1669.302660 +1669.399829 +1669.502859 +1669.532863 +1669.632430 +1669.733795 +1669.762300 +1669.802326 +1669.847747 +1670.001826 +1670.029865 +1670.130964 +1670.163531 +1670.314980 +1670.404457 +1670.407520 +1670.435459 +1670.482079 +1670.510983 +1670.541420 +1670.586275 +1670.874986 +1670.904556 +1680.972012 +1691.272867 +1691.773333 +1691.774032 +1692.274398 +1692.673998 +1692.874031 +1693.274164 +1693.374497 +1693.574497 +1693.674730 +1694.474529 +1694.673830 +1694.674296 +1694.874229 +1695.174595 +1695.374528 +1695.474795 +1695.673662 +1695.674528 +1695.874261 +1695.974328 +1701.527802 +1701.721841 +1701.928102 +1702.023606 +1702.187542 +1702.228767 +1702.321241 +1702.399729 +1702.574421 +1702.951277 +1703.058337 +1703.215480 +1703.484211 +1703.522572 +1703.618110 +1703.670724 +1703.738556 +1703.795133 +1704.134393 +1704.191836 +1704.233993 +1704.337024 +1704.380880 +1704.592201 +1704.660799 +1704.704422 +1704.750310 +1704.847413 +1704.936324 +1704.977316 +1705.008019 +1705.260133 +1705.338987 +1705.397995 +1705.470689 +1705.515044 +1705.668358 +1705.709716 +1705.773186 +1705.800325 +1705.875817 +1720.971805 +1726.072733 +1726.373432 +1727.174730 +1727.374596 +1727.575229 +1727.774896 +1728.174895 +1728.374629 +1728.474695 +1728.674761 +1728.774528 +1729.175094 +1729.574061 +1729.574894 +1729.673961 +1729.674860 +1729.774760 +1729.874028 +1729.874893 +1730.074927 +1730.674859 +1730.973793 +1730.974759 +1735.972656 +1736.160202 +1736.684311 +1737.081280 +1737.469624 +1737.535359 +1737.730530 +1738.091835 +1738.262564 +1738.330296 +1738.491235 +1738.608418 +1738.705188 +1738.980013 +1739.113978 +1739.405254 +1739.473918 +1739.550375 +1739.728363 +1739.895463 +1739.933425 +1739.983475 +1740.071953 +1740.111547 +1740.202422 +1740.230561 +1740.275316 +1740.324467 +1740.529528 +1740.680910 +1740.773484 +1740.807616 +1740.842781 +1740.899791 +1740.933757 +1758.227546 +1761.875228 +1762.175194 +1762.475061 +1762.774927 +1762.974394 +1762.975360 +1763.575326 +1763.675293 +1764.175192 +1764.675292 +1764.975491 +1765.075324 +1765.775124 +1765.875224 +1765.975157 +1770.973054 +1771.014746 +1771.316810 +1772.013946 +1772.263529 +1772.361997 +1772.504887 +1773.352606 +1773.399925 +1773.732925 +1773.903521 +1773.930893 +1774.284040 +1774.356800 +1774.634656 +1774.667856 +1774.893663 +1774.966290 +1774.997193 +1775.027762 +1775.058365 +1775.098125 +1775.207948 +1775.338151 +1775.365024 +1775.412843 +1775.429460 +1775.529327 +1775.588767 +1775.632657 +1775.670885 +1775.712277 +1775.742413 +1775.833822 +1775.873815 +1785.150229 +1785.155691 +1796.173395 +1796.474827 +1796.675026 +1797.074760 +1797.774193 +1797.774859 +1798.375058 +1798.475591 +1798.675424 +1798.775457 +1799.175157 +1799.875323 +1800.475822 +1800.675156 +1806.003422 +1806.070688 +1806.469456 +1806.552805 +1806.646445 +1806.728629 +1806.807184 +1807.531259 +1807.617007 +1808.247010 +1808.284972 +1808.352970 +1808.615041 +1808.738884 +1808.879510 +1809.202420 +1809.256965 +1809.312476 +1809.410911 +1809.439549 +1809.637951 +1809.741380 +1809.810211 +1809.863392 +1809.923098 +1809.966921 +1810.040781 +1810.085336 +1810.124064 +1810.365589 +1810.468120 +1810.507414 +1810.557663 +1810.638782 +1810.653234 +1810.738083 +1810.771749 +1810.815805 +1810.846607 +1810.905448 +1820.973204 +1822.973535 +1824.973633 +1831.574559 +1831.974025 +1832.274858 +1832.875190 +1832.975290 +1833.875122 +1834.375322 +1834.475288 +1834.675488 +1834.775455 +1835.075288 +1835.175354 +1835.675121 +1835.775121 +1835.875220 +1840.993763 +1841.083107 +1841.320103 +1841.453603 +1842.155933 +1842.276113 +1842.376945 +1842.473482 +1842.699556 +1842.848940 +1843.235786 +1843.276145 +1843.382872 +1843.454200 +1843.791063 +1844.052335 +1844.139481 +1844.205648 +1844.263823 +1844.349737 +1844.426361 +1844.486634 +1844.592361 +1844.756031 +1844.868152 +1844.911408 +1844.982770 +1845.130423 +1845.408444 +1845.580905 +1845.655630 +1845.741444 +1845.784301 +1845.829290 +1845.928823 +1845.961657 +1855.973136 +1857.973433 +1860.972198 +1866.072826 +1866.374091 +1866.774790 +1866.874756 +1866.974790 +1867.074423 +1867.175056 +1867.375122 +1867.874389 +1867.975088 +1868.175022 +1868.374855 +1868.875221 +1869.275054 +1869.474987 +1869.575120 +1869.675320 +1869.774987 +1870.075153 +1870.275219 +1870.475086 +1870.674853 +1870.775052 +1870.875185 +1876.046509 +1876.634720 +1876.751470 +1877.010610 +1877.076944 +1877.526527 +1877.720666 +1877.788632 +1878.125961 +1878.501685 +1878.710675 +1878.782637 +1878.902150 +1879.203049 +1879.293592 +1879.412406 +1879.459925 +1879.760225 +1879.833052 +1879.974710 +1880.112705 +1880.215003 +1880.289362 +1880.319199 +1880.438379 +1880.484267 +1880.531086 +1880.570847 +1880.604346 +1880.636614 +1880.724060 +1880.815668 +1880.938745 +1890.973001 +1892.972799 +1893.973064 +1900.971859 +1901.273490 +1901.874189 +1902.074355 +1902.374355 +1902.574754 +1903.674586 +1903.974753 +1904.274553 +1904.474586 +1904.774752 +1905.173852 +1905.174652 +1905.374818 +1905.574518 +1905.773885 +1910.972381 +1911.009844 +1911.073314 +1911.371715 +1911.514705 +1911.595624 +1911.879507 +1911.918534 +1912.153233 +1912.249570 +1912.483469 +1912.590695 +1912.641178 +1912.678340 +1912.739845 +1912.951234 +1913.258693 +1913.491593 +1913.529588 +1913.671613 +1913.839645 +1913.952265 +1913.994689 +1914.024360 +1914.282668 +1914.314636 +1914.357293 +1914.444239 +1914.504612 +1914.666384 +1914.695421 +1914.724459 +1914.784965 +1914.938178 +1914.953863 +1915.027456 +1915.113370 +1915.130619 +1915.175441 +1915.235847 +1915.314535 +1915.360322 +1915.416133 +1915.522726 +1915.638111 +1915.653529 +1915.698850 +1915.883932 +1915.912370 +1915.955227 +1926.972565 +1935.972023 +1936.573621 +1936.773821 +1936.874120 +1936.974187 +1937.774219 +1937.974352 +1938.074119 +1938.273320 +1938.474185 +1938.574385 +1939.071654 +1939.773551 +1939.774351 +1939.974517 +1940.074250 +1940.374383 +1940.474283 +1940.771253 +1940.871719 +1940.974449 +1945.972080 +1946.047804 +1946.157095 +1946.273278 +1946.966418 +1947.160224 +1947.382102 +1947.503647 +1947.627789 +1947.682867 +1947.791392 +1947.917200 +1947.995987 +1948.219797 +1948.274475 +1948.619164 +1948.886429 +1949.013702 +1949.178171 +1949.374707 +1949.415233 +1949.616132 +1949.733681 +1949.844337 +1949.924357 +1949.962486 +1949.992222 +1950.035579 +1950.089625 +1950.151030 +1950.209905 +1950.243038 +1950.386794 +1950.443870 +1950.598282 +1950.612335 +1950.717896 +1950.837110 +1964.971262 +1964.971661 +1965.972293 +1971.072488 +1971.473253 +1971.573420 +1971.773619 +1972.373552 +1972.774118 +1972.873618 +1973.274117 +1973.374350 +1973.673717 +1973.873650 +1974.173251 +1974.272984 +1974.574382 +1974.973083 +1975.774115 +1980.971945 +1980.985032 +1981.245005 +1981.820263 +1982.042374 +1982.178004 +1982.542373 +1982.889359 +1983.133781 +1983.597883 +1983.763084 +1983.905675 +1983.957690 +1984.012635 +1984.095652 +1984.136444 +1984.197816 +1984.441572 +1984.466547 +1984.522624 +1984.576404 +1984.622358 +1984.920826 +1984.966979 +1985.089890 +1985.269477 +1985.297948 +1985.452194 +1985.493985 +1985.521491 +1985.926685 +1995.972130 +1998.972859 +2006.072320 +2006.173252 +2006.273518 +2006.673651 +2006.773951 +2007.074450 +2007.173551 +2007.274516 +2007.574616 +2007.674616 +2007.774815 +2007.974282 +2008.074482 +2008.174715 +2008.374748 +2008.574648 +2008.674748 +2008.774748 +2009.374114 +2009.473582 +2009.875013 +2010.074380 +2010.274879 +2010.374446 +2010.475012 +2010.674846 +2010.772881 +2015.973009 +2015.986229 +2016.066482 +2016.117364 +2016.399182 +2017.277203 +2017.502678 +2017.689724 +2017.849730 +2018.040073 +2018.341471 +2018.379300 +2018.450795 +2018.642670 +2018.735477 +2018.848064 +2018.919493 +2019.039273 +2019.108237 +2019.161784 +2019.350695 +2019.377601 +2019.550062 +2019.597148 +2019.671374 +2019.798346 +2019.869908 +2019.913798 +2020.039205 +2020.396914 +2020.479764 +2020.509501 +2020.561516 +2020.615895 +2020.692784 +2020.745931 +2020.870939 +2020.913996 +2031.973759 +2034.973323 +2041.174282 +2041.374649 +2042.675546 +2042.775646 +2042.875846 +2043.375612 +2043.475645 +2043.575912 +2043.675978 +2043.875046 +2043.975745 +2044.475977 +2044.974512 +2045.175577 +2045.375011 +2045.475277 +2045.675910 +2045.775443 +2045.975177 +2050.973507 +2051.179201 +2051.733113 +2052.420725 +2052.763548 +2053.019126 +2053.085426 +2053.281829 +2053.319658 +2053.366878 +2053.469408 +2053.605339 +2053.670907 +2053.767177 +2054.027217 +2054.274336 +2054.305238 +2054.374303 +2054.740336 +2054.849827 +2054.930579 +2054.969007 +2055.020822 +2055.149660 +2055.188088 +2055.228281 +2055.271271 +2055.339836 +2055.417425 +2055.457818 +2055.484824 +2055.552823 +2055.643099 +2055.761814 +2055.833375 +2055.878830 +2060.695642 +2062.055713 +2065.973458 +2065.973791 +2066.974223 +2076.173581 +2076.274514 +2076.374980 +2076.475013 +2076.775312 +2076.875479 +2076.975579 +2077.473480 +2078.174778 +2078.475877 +2078.575910 +2078.876010 +2079.775942 +2079.875909 +2080.076108 +2080.175842 +2080.275875 +2080.575508 +2080.676008 +2080.975841 +2085.987524 +2086.056389 +2086.165246 +2086.372339 +2086.638040 +2086.809035 +2086.977467 +2087.108702 +2087.595781 +2088.091318 +2088.148961 +2088.192284 +2088.239870 +2088.274735 +2088.320989 +2088.439903 +2088.628248 +2088.696180 +2088.737272 +2088.791218 +2088.849759 +2088.935906 +2088.990285 +2089.024285 +2089.100575 +2089.176199 +2089.418490 +2089.471936 +2089.506302 +2089.569539 +2089.608933 +2089.736472 +2089.820954 +2090.065309 +2090.096112 +2090.136604 +2090.259715 +2090.345296 +2090.490450 +2090.586754 +2090.626214 +2090.658982 +2090.698209 +2090.769338 +2090.783590 +2090.891216 +2090.938036 +2101.973356 +2102.973222 +2110.973813 +2111.575011 +2111.775511 +2111.875644 +2112.375876 +2112.575476 +2112.875809 +2113.175642 +2113.275442 +2113.375809 +2113.475809 +2113.974609 +2114.275941 +2114.375808 +2114.576140 +2114.774742 +2114.875741 +2114.975807 +2115.075574 +2115.175674 +2115.675940 +2115.875706 +2115.975573 +2120.973670 +2121.013164 +2121.383593 +2121.492550 +2122.222120 +2122.425916 +2122.509199 +2122.921687 +2123.233141 +2123.377397 +2123.604337 +2123.659515 +2123.723717 +2123.871602 +2123.998242 +2124.264109 +2124.354452 +2124.411462 +2124.496577 +2124.647759 +2124.690416 +2124.784688 +2125.033506 +2125.077928 +2125.223316 +2125.225947 +2125.459246 +2125.766106 +2125.868037 +2138.972953 +2139.972619 +2145.972613 +2146.273645 +2146.573944 +2146.874510 +2146.974143 +2147.074443 +2147.174509 +2147.474309 +2147.574576 +2147.674409 +2147.874409 +2147.974609 +2148.674641 +2149.775006 +2150.174873 +2150.274373 +2150.374440 +2150.874439 +2150.974339 +2155.985623 +2156.022153 +2156.382925 +2156.488553 +2156.728612 +2156.791450 +2157.159148 +2157.578995 +2157.953353 +2158.012494 +2158.061378 +2158.229210 +2158.425214 +2158.568071 +2158.580792 +2158.603502 +2158.666672 +2158.719619 +2158.771135 +2158.874897 +2158.936303 +2159.031008 +2159.223016 +2159.441230 +2159.480225 +2159.628476 +2159.704300 +2159.788649 +2159.861443 +2159.890747 +2160.048989 +2160.089981 +2160.136701 +2160.209695 +2160.237633 +2160.292279 +2160.316921 +2160.491912 +2160.533737 +2160.745125 +2160.807529 +2160.896807 +2171.971787 +2172.971686 +2180.971079 +2181.472710 +2182.173109 +2182.273176 +2182.472576 +2182.472842 +2182.773608 +2182.873575 +2182.973608 +2183.073375 +2183.470843 +2183.673507 +2183.873773 +2183.972608 +2184.172141 +2184.273773 +2184.373407 +2184.473307 +2184.573307 +2185.173672 +2185.473572 +2185.673505 +2185.773472 +2190.978162 +2191.023150 +2191.032341 +2191.141165 +2191.525148 +2191.588751 +2192.012826 +2192.151721 +2192.265607 +2192.716156 +2192.871034 +2192.979525 +2193.318553 +2193.672865 +2193.728975 +2193.827476 +2193.977460 +2194.043460 +2194.058312 +2194.146757 +2194.183720 +2194.494209 +2194.537732 +2194.880189 +2194.917619 +2194.953583 +2195.007196 +2195.077492 +2195.342760 +2195.464105 +2195.581654 +2195.611291 +2195.775427 +2195.816785 +2195.961107 +2206.701057 +2207.700123 +2208.701088 +2208.705883 +2209.700854 +2209.859728 +2211.701285 +2211.705714 +2216.700580 +2216.706108 +2216.901812 +2217.002145 +2217.102212 +2217.202378 +2220.002775 +2221.102641 +2226.706098 +2226.799372 +2227.011293 +2227.344859 +2227.369168 +2227.505798 +2227.694875 +2227.870100 +2227.959077 +2227.979590 +2228.146390 +2228.245091 +2228.284485 +2228.331571 +2228.420116 +2228.501135 +2228.544391 +2228.584485 +2228.620815 +2228.667202 +2228.733436 +2228.786449 +2228.866402 +2228.905264 +2228.985250 +2229.012290 +2229.126742 +2229.318650 +2229.408293 +2229.435033 +2229.490911 +2229.515120 +2229.538163 +2229.551983 +2229.667001 +2229.680221 +2229.707827 +2229.776858 +2229.818749 +2230.008259 +2230.065635 +2230.253081 +2230.312721 +2230.557643 +2230.953080 +2231.046487 +2241.702021 +2242.702319 +2243.702418 +2244.702384 +2245.702483 +2246.702615 +2251.022757 +2251.055624 +2251.075771 +2251.802943 +2251.903476 +2252.003675 +2252.103875 +2253.304174 +2254.104239 +2254.304006 +2261.714322 +2261.877192 +2262.080155 +2262.437331 +2262.504697 +2262.571663 +2262.672596 +2262.840628 +2262.875792 +2263.064670 +2263.197204 +2263.248886 +2263.288513 +2263.426441 +2263.471096 +2263.684816 +2263.802898 +2263.829105 +2263.880720 +2264.072728 +2264.245355 +2264.261505 +2264.341758 +2264.423943 +2264.438994 +2264.464302 +2264.561971 +2264.632867 +2264.674991 +2264.768897 +2264.812920 +2264.894105 +2264.923243 +2264.952014 +2265.239227 +2265.395803 +2265.467232 +2265.524841 +2265.626972 +2265.727871 +2266.051813 +2277.703883 +2279.709608 +2281.704312 +2286.804440 +2287.005006 +2287.105272 +2287.405538 +2287.905637 +2288.005671 +2288.105704 +2288.805803 +2289.105703 +2290.005769 +2290.505735 +2291.305801 +2296.715186 +2296.789278 +2296.871329 +2297.153913 +2297.218648 +2297.258975 +2297.354712 +2297.407126 +2297.613620 +2297.625874 +2297.637895 +2297.675291 +2297.901898 +2297.968498 +2298.098301 +2298.234165 +2298.294405 +2298.372227 +2298.409090 +2298.535530 +2298.614451 +2298.738427 +2298.896003 +2299.004927 +2299.072126 +2299.124074 +2299.297667 +2299.447984 +2299.490508 +2299.554610 +2299.568396 +2299.625173 +2299.797001 +2299.810021 +2299.905526 +2299.981549 +2300.037893 +2300.047384 +2300.346917 +2311.704515 +2316.704876 +2321.905304 +2322.305969 +2323.706134 +2323.806168 +2324.006101 +2324.306101 +2324.706034 +2324.806100 +2325.106233 +2325.306166 +2325.505999 +2325.606099 +2325.706132 +2325.806132 +2326.405965 +2326.505998 +2326.606065 +2331.857275 +2331.896636 +2332.140891 +2332.229036 +2332.275057 +2332.408523 +2332.724973 +2332.749748 +2332.837094 +2333.006059 +2333.029901 +2333.067530 +2333.100198 +2333.200764 +2333.387410 +2333.515648 +2333.763600 +2333.815182 +2334.013084 +2334.046983 +2334.234362 +2334.272224 +2334.329900 +2334.442687 +2334.467795 +2334.627202 +2334.688408 +2334.830799 +2334.925903 +2335.054408 +2335.096666 +2335.110918 +2335.267095 +2335.340222 +2335.436026 +2335.450945 +2335.481714 +2335.497265 +2335.596932 +2336.052975 +2336.141453 +2348.705310 +2356.905901 +2357.406434 +2358.006700 +2358.206799 +2358.506832 +2358.706799 +2359.006832 +2359.406731 +2360.606664 +2361.606696 +2366.838026 +2366.975522 +2367.244885 +2367.431565 +2367.476687 +2367.544319 +2367.614749 +2367.893203 +2368.042687 +2368.102693 +2368.128101 +2368.228201 +2368.292137 +2368.507522 +2368.575853 +2368.656106 +2368.876652 +2369.096932 +2369.246548 +2369.272922 +2369.352409 +2369.395133 +2369.430731 +2369.562965 +2369.591636 +2369.618143 +2369.687041 +2369.738822 +2369.766561 +2369.798063 +2369.904590 +2370.015845 +2370.214380 +2370.230830 +2370.247280 +2370.347113 +2370.363830 +2370.423304 +2370.510084 +2370.526201 +2370.852874 +2370.958035 +2371.406020 +2371.512580 +2371.562996 +2378.755197 +2381.705577 +2383.706141 +2386.706305 +2391.705900 +2391.711494 +2391.806399 +2391.906799 +2392.607531 +2393.607730 +2394.207596 +2394.407562 +2394.707429 +2395.307461 +2395.507628 +2395.807561 +2396.007427 +2401.716213 +2401.722373 +2401.778917 +2402.133595 +2402.192936 +2402.226236 +2402.326169 +2402.663598 +2403.319774 +2403.358203 +2403.385276 +2403.422971 +2403.477517 +2403.504057 +2403.738156 +2403.831096 +2403.971156 +2404.009417 +2404.193566 +2404.293466 +2404.321239 +2404.378148 +2404.447978 +2404.473486 +2404.501325 +2404.528764 +2404.617775 +2404.631461 +2404.674019 +2404.774052 +2404.916376 +2404.973985 +2405.061031 +2405.075350 +2405.101624 +2405.306852 +2405.347112 +2405.464394 +2405.525034 +2405.791800 +2405.807484 +2405.958966 +2406.067158 +2406.127730 +2406.202888 +2406.276115 +2406.449142 +2420.705938 +2427.006497 +2429.006995 +2429.306928 +2429.406994 +2429.706828 +2430.007027 +2430.306827 +2430.806893 +2431.406893 +2436.715012 +2436.737790 +2436.746781 +2436.973720 +2437.165561 +2437.241452 +2437.375884 +2437.426434 +2437.624669 +2437.659667 +2437.784542 +2437.906020 +2437.953772 +2438.128831 +2438.157635 +2438.249210 +2438.455703 +2438.493599 +2438.540352 +2438.586606 +2438.670388 +2438.756369 +2438.823668 +2439.022702 +2439.115143 +2439.153238 +2439.192699 +2439.244880 +2439.395563 +2439.491700 +2439.543881 +2439.668623 +2439.850707 +2440.041250 +2440.127430 +2440.483940 +2440.528395 +2440.661862 +2440.719770 +2440.753437 +2440.891865 +2440.954702 +2440.983307 +2441.109347 +2441.254435 +2455.704837 +2456.704969 +2461.905896 +2462.106396 +2462.306728 +2462.506462 +2462.906395 +2462.958343 +2463.005529 +2463.506794 +2464.006161 +2464.506760 +2464.706793 +2464.806759 +2465.006193 +2465.806825 +2465.906758 +2466.406591 +2466.606691 +2466.706724 +2471.709483 +2471.912546 +2471.957401 +2472.009050 +2472.093665 +2472.164428 +2472.211214 +2472.410681 +2472.639818 +2472.779812 +2472.835789 +2472.884740 +2473.078712 +2473.318772 +2473.359931 +2473.387137 +2473.414177 +2473.500723 +2473.667223 +2473.858299 +2474.036221 +2474.104885 +2474.172085 +2474.258498 +2474.340316 +2474.368155 +2474.438385 +2474.466323 +2474.492730 +2474.550339 +2474.623999 +2474.895494 +2475.043978 +2475.060262 +2475.237685 +2475.327994 +2475.431857 +2475.523565 +2475.555600 +2475.646009 +2475.820135 +2475.838483 +2475.932356 +2476.457131 +2486.705672 +2490.706001 +2498.807325 +2499.007391 +2499.507191 +2499.607257 +2499.807424 +2499.907224 +2500.007323 +2500.407223 +2501.607255 +2501.707189 +2506.715941 +2506.722601 +2506.761829 +2506.865192 +2506.913510 +2507.003487 +2507.070220 +2507.244079 +2507.275215 +2507.315608 +2507.363593 +2507.480709 +2507.619937 +2507.683007 +2507.763460 +2507.895527 +2507.973949 +2508.038617 +2508.077279 +2508.100356 +2508.213609 +2508.440748 +2508.520801 +2508.554335 +2508.637784 +2508.664957 +2508.742280 +2508.794494 +2508.819736 +2508.888100 +2509.039016 +2509.053835 +2509.158863 +2509.266255 +2509.306681 +2509.694560 +2509.734353 +2509.887034 +2509.926661 +2510.043744 +2510.085768 +2510.127660 +2510.223830 +2510.238249 +2510.321099 +2510.345342 +2525.705666 +2531.705327 +2531.805826 +2531.906193 +2532.606925 +2533.106991 +2534.106990 +2534.406989 +2534.806989 +2536.406954 +2541.715740 +2541.729693 +2541.808480 +2541.882640 +2541.930458 +2542.033588 +2542.090931 +2542.162626 +2542.235853 +2542.282273 +2542.393828 +2542.481507 +2542.531690 +2542.589832 +2542.613408 +2542.648673 +2542.790597 +2542.817271 +2542.887867 +2542.901520 +2542.925729 +2542.951603 +2543.040847 +2543.064257 +2543.091330 +2543.153900 +2543.190564 +2543.276178 +2543.301220 +2543.333387 +2543.353700 +2543.443344 +2543.534819 +2543.559661 +2543.611509 +2543.717503 +2543.782504 +2543.924695 +2543.939514 +2544.095691 +2544.120799 +2544.211608 +2544.224795 +2544.235018 +2544.317536 +2544.488231 +2544.580506 +2544.620299 +2544.815204 +2544.908577 +2544.972114 +2545.068084 +2545.157628 +2545.172879 +2545.353132 +2545.393159 +2545.419433 +2545.497621 +2545.622429 +2556.705136 +2561.705697 +2567.106590 +2568.106789 +2568.306856 +2568.406922 +2569.106855 +2569.206888 +2569.407021 +2569.906987 +2576.882904 +2576.932122 +2576.988965 +2577.060360 +2577.092095 +2577.174346 +2577.221732 +2577.267120 +2577.571049 +2577.631255 +2577.703350 +2577.905347 +2577.928990 +2578.173779 +2578.224461 +2578.297855 +2578.428490 +2578.708810 +2578.748870 +2578.787631 +2578.867118 +2579.084101 +2579.150035 +2579.284167 +2579.460391 +2579.507677 +2579.561556 +2579.682469 +2579.708176 +2579.815435 +2580.019831 +2580.107177 +2580.450333 +2580.540809 +2580.627256 +2580.769247 +2580.858625 +2581.051765 +2581.216600 +2581.435980 +2591.705600 +2591.711294 +2601.806156 +2601.906489 +2602.206788 +2602.507288 +2602.607221 +2603.107387 +2603.307387 +2604.107319 +2606.207217 +2606.307017 +2611.738381 +2611.916269 +2612.094757 +2612.182536 +2612.269116 +2612.329855 +2612.355763 +2612.440511 +2612.499219 +2612.651766 +2612.710840 +2612.858493 +2613.010840 +2613.110807 +2613.204147 +2613.286031 +2613.324060 +2613.377839 +2613.414336 +2613.593990 +2614.024592 +2614.089827 +2614.186130 +2614.295055 +2614.372677 +2614.425824 +2614.552497 +2614.590692 +2614.618664 +2614.700649 +2614.729220 +2614.786663 +2614.855127 +2614.884198 +2614.993755 +2615.145104 +2615.184231 +2615.321794 +2615.472043 +2615.489026 +2615.665549 +2615.860221 +2615.976005 +2616.015066 +2616.188426 +2627.712890 +2630.706360 +2636.704889 +2636.806288 +2636.906787 +2637.707286 +2638.206952 +2638.806452 +2638.907051 +2639.007584 +2639.207517 +2639.407684 +2640.207416 +2640.707616 +2641.607515 +2643.689897 +2646.746671 +2647.053630 +2647.112338 +2647.254096 +2647.307542 +2647.426523 +2647.751764 +2647.903912 +2647.998850 +2648.075074 +2648.190559 +2648.243672 +2648.405011 +2648.450032 +2648.690924 +2648.791257 +2648.897484 +2649.084297 +2649.162685 +2649.191790 +2649.249898 +2649.343604 +2649.359189 +2649.368679 +2649.405576 +2649.455992 +2649.620660 +2649.764716 +2649.809638 +2649.893188 +2649.906607 +2650.113833 +2650.132881 +2650.149598 +2650.321559 +2650.537143 +2650.561818 +2650.707139 +2650.826387 +2650.869310 +2650.930349 +2651.194119 +2651.261518 +2651.589523 +2651.629949 +2662.706395 +2663.706327 +2671.705986 +2671.906652 +2672.107384 +2674.507648 +2674.607682 +2674.807648 +2675.507814 +2676.007414 +2676.307347 +2681.705643 +2681.716399 +2681.795154 +2681.917065 +2682.009106 +2682.088760 +2682.152995 +2682.220794 +2682.271111 +2682.451996 +2682.550897 +2682.608972 +2682.669845 +2682.722992 +2682.800581 +2682.826921 +2683.033747 +2683.072175 +2683.253061 +2683.329984 +2683.379668 +2683.487759 +2683.638142 +2683.690390 +2683.730150 +2683.767346 +2683.803943 +2683.936477 +2684.037775 +2684.038774 +2684.105608 +2684.181698 +2684.291854 +2684.461085 +2684.477569 +2684.573905 +2684.601611 +2684.652793 +2684.681664 +2684.736509 +2684.761051 +2684.844102 +2684.869476 +2684.885061 +2684.984794 +2685.068977 +2685.096249 +2685.239073 +2685.294018 +2685.438906 +2685.523755 +2685.567844 +2685.668077 +2686.127783 +2686.264213 +2698.706559 +2699.706291 +2700.706790 +2701.706855 +2706.706417 +2706.806950 +2706.812311 +2706.907283 +2707.107916 +2707.508148 +2707.907948 +2708.308048 +2708.408114 +2709.208047 +2716.706407 +2716.738742 +2716.862751 +2716.947866 +2717.047666 +2717.165648 +2717.301179 +2717.406340 +2717.646433 +2717.757256 +2718.126752 +2718.317994 +2718.342670 +2718.382963 +2718.555523 +2718.672539 +2718.781464 +2718.937774 +2719.029782 +2719.069542 +2719.163714 +2719.248596 +2719.436508 +2719.616128 +2719.766777 +2720.044966 +2720.110533 +2720.159284 +2720.241202 +2720.285591 +2720.532577 +2720.622088 +2720.648961 +2720.729680 +2720.881228 +2721.023786 +2721.145797 +2721.338704 +2721.434741 +2731.706626 +2732.706658 +2733.706923 +2734.706722 +2736.706720 +2741.706249 +2742.207781 +2742.807713 +2742.907913 +2743.107780 +2743.207879 +2743.707779 +2744.007679 +2744.907878 +2745.607711 +2745.907744 +2746.307810 +2746.407776 +2746.507710 +2751.759120 +2751.921757 +2752.041604 +2752.139372 +2752.204074 +2752.251460 +2752.321623 +2752.385859 +2752.658486 +2752.745799 +2753.044466 +2753.137873 +2753.231779 +2753.307170 +2753.398345 +2753.444899 +2753.471006 +2753.586324 +2753.732078 +2753.789254 +2753.827549 +2753.855122 +2753.989620 +2754.044499 +2754.116926 +2754.169340 +2754.251824 +2754.295181 +2754.433376 +2754.544265 +2754.586090 +2754.672537 +2754.727748 +2754.842899 +2754.868707 +2755.102040 +2755.251790 +2755.279762 +2755.366775 +2755.440135 +2755.503005 +2755.518490 +2755.547161 +2755.608666 +2755.743198 +2755.759449 +2755.790484 +2755.926881 +2756.255086 +2770.705088 +2770.705488 +2777.006181 +2777.306680 +2779.306678 +2786.704906 +2786.757952 +2786.990253 +2787.371572 +2787.500209 +2787.637705 +2787.791318 +2787.931711 +2788.151058 +2788.241734 +2788.279529 +2788.328480 +2788.394581 +2788.445596 +2788.511963 +2788.732909 +2788.875533 +2788.970238 +2789.284523 +2789.324916 +2789.405469 +2789.474067 +2789.684090 +2789.711130 +2789.780693 +2789.864410 +2789.950890 +2790.019321 +2790.120087 +2790.247693 +2790.276630 +2790.307633 +2790.498475 +2790.527346 +2790.601971 +2790.701805 +2790.818455 +2790.996110 +2791.123416 +2791.577528 +2791.593545 +2801.710518 +2802.705456 +2803.705588 +2811.805780 +2812.206712 +2813.707143 +2814.306943 +2815.006975 +2815.607108 +2815.907174 +2816.007007 +2816.107074 +2816.207174 +2821.722653 +2821.767108 +2821.903871 +2822.101906 +2822.152223 +2822.271970 +2822.377297 +2822.445995 +2822.487920 +2822.705702 +2822.762612 +2822.808932 +2822.971569 +2823.105835 +2823.158149 +2823.207666 +2823.327513 +2823.408832 +2823.435105 +2823.581292 +2823.727812 +2823.879327 +2823.983057 +2824.008065 +2824.154319 +2824.380692 +2824.479094 +2824.629143 +2824.734538 +2824.773699 +2825.014724 +2825.141564 +2825.323149 +2825.408230 +2825.481723 +2825.587984 +2825.685686 +2825.743927 +2825.757181 +2825.849056 +2825.865406 +2825.893111 +2825.950321 +2826.035469 +2826.133304 +2826.210694 +2826.280257 +2826.610460 +2833.459604 +2833.588109 +2834.330399 +2834.884345 +2835.240521 +2835.880281 +2836.880180 +2836.880446 +2837.880279 +2837.885341 +2838.880544 +2839.880610 +2839.885339 +2844.880039 +2844.880305 +2844.981004 +2845.081404 +2845.181604 +2845.281703 +2845.381770 +2845.481770 +2845.581870 +2845.681903 +2846.081869 +2848.382100 +2848.682100 +2848.782100 +2848.882099 +2848.982133 +2849.281999 +2849.482099 +2849.682165 +2849.782198 +2849.882098 +2854.885523 +2854.905337 +2855.075034 +2855.360614 +2855.418090 +2855.452855 +2855.590917 +2855.782226 +2855.970737 +2856.051023 +2856.330144 +2856.369338 +2856.409431 +2856.531875 +2856.618955 +2856.635005 +2856.699474 +2856.727380 +2856.765408 +2856.854253 +2856.879194 +2856.997343 +2857.020686 +2857.164542 +2857.217289 +2857.268838 +2857.296010 +2857.321785 +2857.395944 +2857.409830 +2857.547425 +2857.602304 +2857.662211 +2857.717056 +2857.782557 +2857.849623 +2857.863076 +2857.918088 +2857.997741 +2858.217322 +2858.344761 +2858.374631 +2858.403235 +2858.416555 +2858.669968 +2858.836202 +2869.886407 +2870.881545 +2871.881743 +2871.887238 +2873.881708 +2873.887536 +2874.882107 +2874.887535 +2879.882468 +2879.983001 +2880.083567 +2880.283933 +2880.383999 +2880.483999 +2880.684232 +2880.984265 +2881.084332 +2881.984431 +2882.584597 +2884.484828 +2889.895279 +2890.115125 +2890.274166 +2890.356017 +2890.519687 +2890.554186 +2890.627812 +2890.821118 +2890.930842 +2891.056783 +2891.093546 +2891.138134 +2891.209630 +2891.418754 +2891.497308 +2891.531274 +2891.554251 +2891.708830 +2891.782589 +2891.837934 +2891.917321 +2892.001004 +2892.014424 +2892.079492 +2892.161710 +2892.186985 +2892.211194 +2892.355516 +2892.377227 +2892.558679 +2892.657480 +2892.759045 +2892.772132 +2892.812725 +2892.854749 +2892.869834 +2892.910860 +2892.926245 +2893.064073 +2893.578325 +2893.633204 +2893.827576 +2893.845025 +2905.886238 +2906.886304 +2907.886469 +2909.892628 +2914.886429 +2914.986862 +2915.087228 +2915.187494 +2915.287561 +2915.387694 +2915.487727 +2915.587727 +2915.687794 +2924.886319 +2925.010228 +2925.058114 +2925.137201 +2925.179725 +2925.224081 +2925.268037 +2925.319419 +2925.453984 +2925.700604 +2925.781723 +2925.847191 +2925.925479 +2925.972665 +2926.033138 +2926.096108 +2926.146391 +2926.184586 +2926.254982 +2926.299405 +2926.461542 +2926.538199 +2926.700969 +2926.810360 +2926.863373 +2927.005398 +2927.070366 +2927.097206 +2927.112591 +2927.162507 +2927.284785 +2927.313323 +2927.364638 +2927.444458 +2927.470932 +2927.496340 +2927.682853 +2927.764705 +2927.790079 +2927.884351 +2927.940595 +2927.979856 +2928.056612 +2928.348254 +2928.652949 +2928.832602 +2941.887301 +2942.887333 +2944.887232 +2949.886461 +2949.886694 +2949.987226 +2950.087693 +2950.187926 +2950.488158 +2951.088158 +2951.588191 +2952.288123 +2952.588123 +2959.890380 +2959.999870 +2960.154882 +2960.186683 +2960.251785 +2960.343227 +2960.556979 +2960.642361 +2960.735268 +2960.842727 +2961.065337 +2961.087282 +2961.179157 +2961.191378 +2961.288314 +2961.301401 +2961.389579 +2961.645556 +2961.754514 +2962.077025 +2962.139795 +2962.290577 +2962.429305 +2962.500101 +2962.522179 +2962.581386 +2962.632435 +2962.827973 +2962.928805 +2962.968865 +2963.015052 +2963.028772 +2963.259774 +2974.886069 +2974.886302 +2975.886501 +2976.886534 +2977.886433 +2978.886398 +2979.886198 +2984.885560 +2984.885793 +2984.986292 +2985.086659 +2985.287058 +2985.387058 +2986.487257 +2987.387256 +2987.987222 +2988.087222 +2988.287221 +2988.887254 +2994.889712 +2994.895307 +2995.117051 +2995.198770 +2995.258943 +2995.501167 +2995.611723 +2995.624277 +2995.728939 +2995.767434 +2995.829938 +2995.861706 +2995.901699 +2995.934833 +2996.064470 +2996.252748 +2996.461173 +2996.523910 +2996.601699 +2996.661206 +2996.713753 +2996.763237 +2996.822711 +2996.848518 +2996.930003 +2997.038495 +2997.091275 +2997.113420 +2997.176490 +2997.201698 +2997.332933 +2997.390376 +2997.406060 +2997.447052 +2997.552081 +2997.592240 +2997.619247 +2997.673526 +2997.875091 +2997.932134 +2998.148217 +2998.259806 +2998.791140 +3009.885302 +3009.890863 +3012.885931 +3019.885492 +3019.889887 +3019.986024 +3020.086424 +3020.386923 +3020.586124 +3020.986989 +3021.186456 +3021.287022 +3021.687022 +3021.787021 +3021.886955 +3022.287054 +3022.387021 +3022.486954 +3024.286952 +3024.786985 +3024.886885 +3029.972328 +3030.051282 +3030.468598 +3030.502198 +3030.587079 +3030.609856 +3030.775191 +3030.817682 +3030.931268 +3030.980685 +3031.042790 +3031.202397 +3031.284514 +3031.309323 +3031.371194 +3031.447351 +3031.483216 +3031.562003 +3031.598667 +3031.674191 +3031.723309 +3031.748250 +3031.787411 +3031.944421 +3032.008090 +3032.118713 +3032.289375 +3032.340890 +3032.367697 +3032.393571 +3032.421976 +3032.514550 +3032.543121 +3032.692405 +3032.733897 +3032.750181 +3033.051179 +3033.077220 +3033.091905 +3033.205025 +3033.219478 +3033.436494 +3042.205349 +3042.438083 +3045.886365 +3048.886295 +3055.087088 +3055.187354 +3055.487587 +3056.087786 +3056.387686 +3056.487686 +3056.987686 +3057.287785 +3057.387685 +3064.574857 +3064.955277 +3064.995570 +3065.299099 +3065.397800 +3065.450381 +3065.894836 +3065.957374 +3065.959438 +3066.216681 +3066.571825 +3066.598232 +3066.828402 +3066.864832 +3067.184245 +3067.309320 +3067.322773 +3067.449680 +3067.544185 +3067.792969 +3068.084944 +3068.099030 +3068.197564 +3068.211617 +3068.227568 +3068.744417 +3068.993035 +3079.886197 +3080.886729 +3081.886728 +3083.886826 +3084.886825 +3090.187619 +3090.687785 +3091.287951 +3091.787884 +3092.187850 +3092.987883 +3094.487515 +3094.587681 +3094.787781 +3094.887714 +3099.995834 +3100.142687 +3100.188841 +3100.231665 +3100.387276 +3100.439890 +3100.462068 +3100.584578 +3100.805091 +3101.037159 +3101.274987 +3101.317844 +3101.380981 +3101.459003 +3101.555773 +3101.699962 +3101.737458 +3101.818243 +3101.923105 +3102.100461 +3102.235426 +3102.291470 +3102.345782 +3102.470557 +3103.200060 +3103.437889 +3103.619540 +3115.886661 +3117.886626 +3124.886119 +3124.986652 +3125.087151 +3126.487749 +3134.886109 +3134.919676 +3134.996099 +3135.121440 +3135.510018 +3135.720507 +3135.966927 +3136.076451 +3136.104057 +3136.315778 +3136.342285 +3136.380780 +3136.528698 +3136.863263 +3136.929364 +3136.945348 +3136.985374 +3137.116210 +3137.181045 +3137.222304 +3137.248245 +3137.344448 +3137.400892 +3137.429929 +3137.910115 +3137.984508 +3138.028164 +3138.143515 +3138.636688 +3138.940484 +3149.886028 +3151.886592 +3159.885851 +3160.087050 +3163.087579 +3169.978648 +3170.062098 +3170.130496 +3170.574518 +3170.597662 +3170.672187 +3171.131095 +3171.143549 +3171.284474 +3171.569223 +3171.738287 +3171.818839 +3171.845613 +3172.025033 +3172.072918 +3172.109515 +3172.120704 +3172.189335 +3172.246045 +3172.296728 +3172.398626 +3172.498492 +3172.551206 +3172.580710 +3172.627297 +3172.790134 +3172.934623 +3173.259964 +3173.616140 +3173.779710 +3174.045844 +3189.886221 +3194.885583 +3197.686912 +3204.885340 +3204.911047 +3204.966459 +3205.025599 +3205.094597 +3205.105420 +3205.270621 +3205.467757 +3205.517407 +3205.588669 +3205.713611 +3205.823401 +3205.907883 +3205.999158 +3206.072318 +3206.096627 +3206.173983 +3206.185771 +3206.209681 +3206.240617 +3206.242581 +3206.279644 +3206.353703 +3206.428728 +3206.541882 +3206.620303 +3206.752671 +3206.779011 +3207.013276 +3207.040216 +3207.232957 +3207.413842 +3207.461761 +3207.523099 +3207.664558 +3207.691797 +3207.747208 +3207.899023 +3208.007048 +3208.050139 +3208.431290 +3219.885691 +3220.885923 +3221.885922 +3222.885555 +3223.885920 +3229.890610 +3240.102021 +3240.336986 +3240.602221 +3240.661561 +3240.698091 +3240.874048 +3240.909746 +3240.948507 +3241.032923 +3241.067322 +3241.103818 +3241.246675 +3241.320835 +3241.344711 +3241.367388 +3241.596925 +3241.609312 +3241.782339 +3241.804484 +3241.826495 +3241.877011 +3241.897990 +3241.961860 +3242.066788 +3242.080840 +3242.106748 +3242.318602 +3242.334320 +3242.507913 +3242.547940 +3242.591030 +3242.751702 +3242.858362 +3242.873813 +3242.916104 +3242.931289 +3243.130889 +3243.171948 +3243.184969 +3243.297523 +3243.369351 +3254.885523 +3255.885855 +3256.885954 +3265.586944 +3265.786944 +3265.886744 +3266.487010 +3274.985303 +3275.017204 +3275.105416 +3275.180208 +3275.188699 +3275.278077 +3275.444876 +3275.457863 +3275.657264 +3275.736418 +3275.781806 +3275.807513 +3275.910877 +3276.041879 +3276.075612 +3276.150037 +3276.184203 +3276.222565 +3276.300087 +3276.414606 +3276.484669 +3276.575977 +3276.872314 +3276.906114 +3276.959693 +3277.081671 +3277.135717 +3277.364422 +3277.572513 +3277.632753 +3277.687898 +3277.715437 +3277.827558 +3277.913372 +3277.941411 +3278.120565 +3289.885521 +3290.885953 +3291.885619 +3293.885983 +3300.986609 +3303.287073 +3309.957696 +3310.018701 +3310.063956 +3310.229857 +3310.335884 +3310.427026 +3310.715837 +3310.794924 +3310.823229 +3311.005547 +3311.131787 +3311.205946 +3311.230122 +3311.476442 +3311.579339 +3311.829256 +3311.881803 +3311.908709 +3312.041909 +3312.067983 +3312.096488 +3312.164387 +3312.218133 +3312.244373 +3312.366618 +3312.382002 +3312.445439 +3312.457460 +3312.536847 +3312.577240 +3312.801982 +3312.828455 +3313.147969 +3313.175341 +3313.295288 +3313.457725 +3324.885520 +3325.886085 +3335.086808 +3335.686674 +3336.887306 +3337.287305 +3338.287404 +3338.387404 +3339.187503 +3339.787403 +3344.951966 +3345.085599 +3345.243974 +3345.351267 +3345.502682 +3345.728622 +3345.774343 +3345.799318 +3345.864253 +3345.996854 +3346.032185 +3346.071412 +3346.377340 +3346.425724 +3346.450000 +3346.720063 +3346.828355 +3346.867815 +3346.957192 +3347.199850 +3347.322227 +3347.393689 +3347.419463 +3347.461921 +3347.503346 +3347.656259 +3347.725457 +3347.796319 +3347.838710 +3348.031317 +3348.161387 +3348.245503 +3348.301780 +3348.342539 +3348.383864 +3348.423658 +3348.582532 +3348.612535 +3348.722725 +3349.299048 +3349.500380 +3359.886084 +3360.886716 +3362.886347 +3363.886746 +3364.886512 +3364.886712 +3370.487938 +3371.288037 +3374.088034 +3374.488134 +3374.587934 +3374.788134 +3374.888134 +3379.961455 +3380.023327 +3380.109673 +3380.153563 +3380.224092 +3380.268415 +3380.310572 +3380.384931 +3380.423559 +3380.515700 +3380.601315 +3380.782200 +3380.860022 +3381.054494 +3381.079969 +3381.168147 +3381.268347 +3381.329519 +3381.366116 +3381.411071 +3381.460654 +3381.583465 +3381.675240 +3381.704144 +3381.754693 +3381.849632 +3381.887261 +3381.990824 +3382.015699 +3382.122259 +3382.133381 +3382.148033 +3382.174840 +3382.230051 +3382.257490 +3382.310204 +3382.339242 +3382.492022 +3382.576304 +3382.591456 +3382.679301 +3382.746734 +3382.923424 +3382.992688 +3383.173906 +3383.309171 +3383.349830 +3383.392720 +3383.541605 +3383.685627 +3383.731914 +3383.912034 +3384.163149 +3394.887048 +3394.891577 +3395.887247 +3396.887212 +3397.887345 +3398.887310 +3398.891839 +3399.887276 +3405.087804 +3406.687869 +3406.787869 +3406.788301 +3406.888301 +3407.188301 +3407.287868 +3407.288301 +3407.387835 +3407.388301 +3407.587868 +3407.588301 +3407.688334 +3407.887867 +3407.888300 +3408.087934 +3408.088234 +3408.188333 +3408.388300 +3408.587867 +3408.588233 +3408.687867 +3408.688233 +3408.788266 +3409.888298 +3415.060787 +3415.112935 +3415.165249 +3415.258623 +3415.430717 +3415.600813 +3415.647667 +3415.857923 +3415.942671 +3416.085861 +3416.098282 +3416.225588 +3416.378901 +3416.507040 +3416.532414 +3416.638575 +3416.664382 +3416.691522 +3416.848964 +3416.949097 +3417.075437 +3417.254691 +3417.381031 +3417.435710 +3417.549196 +3417.602143 +3417.741238 +3417.942403 +3418.349029 +3418.465113 +3418.525686 +3418.584061 +3418.627950 +3418.643801 +3418.775602 +3418.789788 +3418.954623 +3419.376867 +3433.886476 +3434.886475 +3442.586767 +3450.087193 +3450.159787 +3450.260286 +3450.316630 +3450.340739 +3450.602577 +3450.650462 +3450.673173 +3450.683529 +3450.768211 +3450.855557 +3450.940072 +3451.117561 +3451.140938 +3451.142303 +3451.211068 +3451.507071 +3451.706538 +3451.770841 +3451.784061 +3451.798080 +3451.871973 +3452.013997 +3452.072172 +3452.111433 +3452.136808 +3452.190787 +3452.202575 +3452.328149 +3452.518026 +3452.630114 +3452.643534 +3452.801043 +3453.025118 +3453.116693 +3453.303706 +3453.425185 +; +0.079887 +0.308558 +0.996736 +3.116314 +8.931892 +10.431125 +10.553702 +11.647840 +11.661327 +11.696592 +11.947574 +12.203817 +13.067253 +13.074612 +13.385368 +13.440180 +13.470483 +19.087094 +19.095452 +20.372707 +28.549222 +32.091177 +33.265534 +33.443223 +33.538128 +33.690942 +34.674191 +34.686046 +34.944354 +36.277819 +37.697898 +37.770725 +37.949979 +38.348946 +60.160945 +75.293498 +76.968355 +78.586335 +88.809568 +93.149890 +94.956515 +95.034970 +96.741928 +98.925209 +99.630536 +100.338328 +100.345887 +103.918378 +108.639385 +118.316465 +119.751196 +121.121191 +121.512333 +122.672038 +127.789716 +129.156081 +137.437159 +137.586276 +138.196931 +138.283112 +148.469149 +150.151898 +150.173010 +156.956320 +159.304303 +159.313360 +159.897509 +161.171734 +162.373963 +163.635934 +165.293974 +165.576325 +165.638562 +165.758809 +166.011456 +166.101965 +166.231535 +166.332934 +166.557176 +167.110489 +167.187911 +167.193706 +167.215284 +167.233865 +167.662403 +168.198200 +168.248949 +168.328037 +168.515316 +168.909754 +169.366764 +169.712817 +172.135958 +172.372522 +176.859663 +177.472683 +177.584771 +177.638983 +177.708913 +177.804584 +177.903951 +178.614773 +178.828559 +180.026260 +180.404149 +180.488930 +180.794025 +181.019732 +182.448169 +182.489461 +183.288561 +184.294188 +185.014534 +185.602578 +187.099413 +187.270975 +187.480332 +187.698880 +187.769942 +187.941171 +187.951993 +188.250727 +189.620090 +189.729913 +190.820855 +190.934807 +191.821087 +192.631342 +192.933340 +194.333572 +194.612060 +194.906065 +195.186851 +195.212692 +195.226078 +195.892178 +195.976228 +196.123047 +196.293210 +196.408961 +196.629773 +196.958478 +197.191711 +197.333469 +197.398604 +197.495207 +197.703865 +197.920415 +198.209459 +198.392575 +199.045189 +199.124709 +199.218715 +199.361106 +199.835265 +200.341758 +200.500599 +200.842357 +201.079053 +201.323741 +201.458640 +201.501796 +201.516082 +201.740890 +201.834796 +202.121643 +202.185745 +202.206891 +202.291872 +202.579651 +202.861669 +203.101828 +203.156140 +203.415681 +203.554142 +203.759703 +204.326069 +204.551843 +204.654507 +204.669625 +204.944151 +204.988340 +205.308619 +205.630530 +206.075884 +206.389604 +206.972454 +207.819572 +208.937753 +209.313777 +210.496626 +210.532923 +210.894095 +214.396256 +214.511008 +215.395389 +215.403647 +216.935814 +217.985962 +218.361919 +221.705606 +223.009767 +223.024819 +223.059717 +223.344365 +229.114156 +229.314622 +229.770533 +231.127574 +235.193937 +238.612582 +239.261399 +239.688705 +240.280779 +242.636221 +243.720569 +252.938375 +254.353558 +255.041869 +255.057554 +255.149095 +257.010998 +257.016559 +258.135606 +261.089616 +263.301302 +263.303799 +266.225242 +266.229904 +266.358675 +269.710420 +272.419441 +274.777481 +276.208515 +277.299556 +278.267787 +279.765787 +282.092791 +282.993690 +284.974740 +285.340873 +286.613899 +286.624022 +286.965281 +288.161850 +290.630379 +290.725683 +292.345262 +294.760411 +294.869535 +294.924580 +295.720983 +295.723547 +298.950384 +299.008792 +299.387713 +299.587413 +300.669296 +303.018378 +303.127602 +303.257972 +304.187808 +304.254874 +304.273722 +304.386542 +308.231493 +308.243315 +308.547943 +309.108182 +309.314443 +311.020701 +311.398190 +311.403585 +311.763325 +312.345475 +312.746973 +313.688065 +313.848371 +313.982803 +316.164552 +317.230585 +317.308374 +318.224224 +318.619928 +319.438642 +320.253726 +320.256223 +321.303708 +322.028582 +323.880129 +324.516792 +324.551857 +325.206368 +325.597044 +325.874000 +325.976764 +325.982558 +326.026680 +326.509397 +326.514658 +327.729542 +328.084087 +328.710327 +330.402100 +330.404265 +330.406829 +330.721248 +330.725477 +330.822113 +331.015586 +331.123245 +331.221980 +331.423611 +332.026874 +332.049751 +332.422511 +332.540260 +333.322810 +333.761138 +333.763303 +333.767698 +333.964035 +334.144821 +334.147385 +334.150115 +334.420345 +334.621677 +334.624341 +334.719778 +335.183681 +335.186678 +336.024805 +336.027170 +336.406490 +337.600328 +337.939622 +338.392968 +338.395266 +338.397430 +338.400128 +338.515912 +338.519042 +338.889638 +338.892502 +338.895332 +339.232395 +339.497463 +339.500326 +340.487838 +341.640884 +341.686605 +341.756068 +342.392831 +342.396061 +342.609847 +342.847476 +342.852871 +342.865225 +343.538384 +344.518670 +344.766955 +345.263191 +345.492462 +345.495658 +345.846507 +346.009344 +346.016337 +346.175977 +346.410509 +346.413273 +346.548671 +346.551002 +346.553366 +347.296722 +347.299087 +347.301484 +347.445240 +347.448004 +348.174111 +348.399418 +349.115169 +349.118299 +349.379770 +349.685897 +350.251931 +350.254362 +350.256926 +351.081234 +351.407541 +351.411037 +352.077403 +352.079968 +352.496750 +352.498882 +352.500946 +352.503310 +352.818828 +353.169910 +353.672906 +353.675570 +354.222023 +354.366878 +354.370009 +354.514297 +354.751627 +354.764514 +355.024287 +355.026751 +355.218293 +355.542735 +355.716661 +355.813863 +355.816993 +356.346896 +356.351791 +356.372737 +356.600576 +356.604305 +357.033409 +357.036106 +357.343166 +357.345697 +357.497112 +358.115393 +358.117690 +358.119822 +358.758449 +358.763377 +359.220054 +359.797642 +359.800140 +360.193513 +360.401604 +360.404135 +360.406766 +360.581458 +361.307997 +361.310328 +361.812226 +361.814856 +363.092044 +363.234069 +363.237033 +363.695540 +363.698071 +363.700635 +364.228807 +364.231271 +364.233768 +364.414854 +364.954047 +364.956878 +364.959608 +364.969732 +365.135799 +365.502598 +366.688145 +366.691075 +366.930902 +367.024741 +367.723275 +368.467430 +368.478486 +368.520610 +368.815315 +369.774855 +370.104392 +370.862666 +371.388273 +371.448580 +371.611683 +372.202159 +372.693334 +372.768925 +373.409983 +373.449377 +374.044548 +374.071954 +374.104421 +374.196362 +374.787737 +374.990101 +375.015109 +375.415076 +375.458599 +375.594596 +375.714643 +376.084406 +376.121502 +376.154735 +376.214209 +376.756833 +376.972950 +377.343612 +377.389566 +377.886768 +378.422199 +379.140147 +379.441612 +379.620100 +379.752634 +380.215737 +380.315304 +380.341711 +380.544241 +382.924858 +383.534215 +383.593789 +383.998417 +384.022893 +384.035547 +384.056925 +384.126289 +384.170911 +384.663884 +384.680634 +384.695686 +384.722326 +384.784197 +384.877304 +384.899149 +385.005143 +385.192955 +385.255792 +385.875139 +385.931282 +385.978235 +386.182264 +386.381132 +386.562517 +386.623822 +386.707738 +387.133845 +387.185194 +387.209736 +387.325520 +387.386759 +387.423289 +387.487924 +387.605240 +387.876502 +387.891454 +388.021090 +388.370374 +388.879864 +388.981363 +389.088822 +389.146564 +389.218958 +389.236008 +389.272205 +389.510333 +389.555754 +389.582194 +389.642068 +389.677366 +389.848028 +389.867476 +389.962714 +389.985424 +390.189453 +390.251791 +390.281428 +390.293216 +390.305704 +390.322820 +390.352856 +390.379563 +390.402407 +390.454155 +390.479063 +390.501175 +390.565344 +390.649693 +390.676965 +390.829479 +390.911331 +391.708266 +391.734140 +391.750591 +391.785655 +391.811197 +391.841833 +391.892249 +391.922185 +392.385189 +392.402072 +392.451655 +392.501372 +392.576231 +392.629910 +392.653520 +392.688185 +392.749790 +392.785255 +392.893746 +392.969171 +393.521651 +393.582523 +393.671934 +393.727578 +393.770935 +393.780425 +393.833073 +393.850122 +393.880658 +393.898907 +393.959180 +394.019453 +394.320518 +394.441364 +394.492113 +394.583055 +394.660811 +394.718353 +394.823648 +394.865939 +394.930075 +395.021550 +395.328975 +395.415455 +395.458579 +395.544826 +395.584020 +395.669668 +395.851352 +396.165305 +396.210526 +396.276127 +396.352717 +396.370666 +396.387016 +396.400436 +396.416653 +396.493010 +396.684685 +396.840862 +397.082154 +397.210558 +397.260675 +397.288913 +397.332869 +397.353649 +397.426609 +397.520049 +397.593808 +397.599436 +397.743458 +397.771530 +397.847488 +397.871930 +397.967368 +398.064237 +398.105063 +398.137963 +398.326375 +398.670164 +398.751449 +398.775292 +398.814486 +398.828539 +398.892808 +398.970863 +399.517216 +399.555544 +399.572294 +399.607293 +399.611655 +399.672694 +399.696670 +399.726973 +399.776723 +399.802997 +399.831502 +399.900832 +399.959640 +399.983116 +400.121678 +400.338527 +400.414951 +400.523709 +400.623342 +400.902696 +400.914950 +400.920178 +400.944721 +400.959206 +400.984914 +401.125506 +401.129702 +401.140858 +401.148184 +401.225140 +401.325406 +401.415016 +401.513318 +401.569628 +401.596302 +401.624607 +401.660770 +401.829901 +402.019378 +402.124040 +402.178386 +402.215315 +402.467729 +402.513850 +402.523374 +402.625938 +402.821309 +402.839024 +402.928435 +403.007922 +403.031865 +403.333263 +403.421308 +403.530466 +403.633862 +403.681414 +403.711951 +403.815680 +403.892903 +403.924305 +404.121740 +404.230132 +404.320208 +404.410585 +404.560335 +404.625902 +404.662732 +404.735559 +404.750677 +404.769525 +404.793235 +404.801127 +404.810884 +405.050844 +405.186841 +405.211849 +405.244550 +405.275519 +405.298829 +405.342818 +405.367627 +405.389038 +405.426301 +405.459601 +405.625402 +405.732661 +405.788772 +405.874219 +405.923237 +405.998329 +406.060966 +406.143650 +406.228964 +406.298328 +406.361099 +406.490003 +406.534492 +406.582943 +406.641218 +406.790635 +406.877449 +407.028631 +407.098494 +407.117808 +407.141651 +407.173519 +407.232593 +407.296496 +407.344781 +407.420172 +407.466659 +407.631727 +407.671420 +407.727831 +407.769622 +407.781710 +407.905586 +407.943948 +407.983874 +408.015842 +408.071920 +408.121303 +408.241550 +408.317507 +408.425499 +408.472985 +408.609981 +408.682841 +408.717274 +408.959598 +409.084240 +409.263926 +409.497293 +409.534222 +410.024232 +410.239317 +410.254402 +410.300888 +410.355733 +410.389999 +410.525497 +410.546043 +410.571484 +410.602819 +410.633222 +410.658364 +410.676046 +410.707581 +410.712410 +410.739483 +410.758797 +410.775580 +410.785303 +410.796159 +410.826396 +410.857365 +410.928993 +410.956765 +410.987101 +411.018470 +411.061127 +411.089233 +411.104251 +411.134088 +411.158230 +411.180774 +411.241613 +411.287900 +411.323498 +411.328293 +411.335619 +411.345110 +411.350538 +411.358963 +411.420434 +411.448806 +411.454134 +411.546475 +411.664790 +411.776611 +411.801520 +411.806648 +411.817004 +411.825229 +411.867886 +411.932289 +411.979741 +412.013074 +412.043444 +412.249704 +412.327127 +412.457396 +412.478675 +412.520200 +412.662025 +412.733320 +412.759527 +412.771848 +412.807180 +412.811342 +412.826194 +412.834352 +412.844575 +412.888099 +412.914272 +412.937016 +413.008145 +413.058295 +413.122464 +413.173879 +413.197689 +413.203516 +413.287499 +413.339047 +413.530089 +413.589963 +413.659726 +413.709010 +413.720665 +413.784268 +413.827691 +413.904648 +413.957528 +414.002317 +414.065054 +414.114205 +414.141044 +414.245007 +414.290894 +414.307911 +414.399985 +414.448037 +414.516535 +414.568383 +414.708343 +414.744607 +414.861956 +414.964620 +415.015336 +415.209442 +415.918698 +416.216467 +416.274642 +416.489893 +416.591258 +416.675807 +416.791558 +416.894588 +417.216899 +417.288361 +417.355893 +417.540175 +417.572976 +417.736345 +417.791590 +418.129785 +418.168746 +418.250930 +418.325522 +418.499015 +418.596118 +418.633148 +418.662385 +418.707407 +418.818928 +418.914999 +418.964949 +419.040274 +419.148365 +419.246567 +419.306107 +419.559754 +419.621825 +419.685694 +419.753526 +419.864848 +419.919061 +419.939673 +419.990356 +420.157588 +420.241704 +420.313033 +420.420658 +420.572906 +420.607871 +420.682330 +420.780998 +420.995550 +421.123322 +421.226818 +421.430215 +421.503907 +421.628749 +421.710168 +421.809035 +421.874237 +422.109535 +422.381462 +422.442934 +422.479664 +422.544199 +422.585691 +422.679298 +422.786290 +422.857353 +423.057486 +423.230080 +423.395148 +423.455554 +423.699843 +423.855387 +424.042167 +424.139836 +424.484391 +424.568240 +424.629545 +424.780661 +424.855719 +424.936305 +425.155219 +425.167307 +425.205669 +425.241266 +425.292615 +425.339635 +425.397377 +425.440201 +425.489884 +425.560813 +425.615592 +425.745229 +425.774233 +425.898975 +425.936537 +425.958948 +426.302471 +426.336304 +426.375598 +426.413193 +426.499107 +426.660779 +426.920485 +426.966573 +427.011661 +427.172966 +427.230175 +427.290582 +427.329876 +427.342396 +427.467671 +427.630142 +427.813492 +427.884953 +427.934970 +428.018386 +428.207364 +428.337001 +428.379725 +428.451087 +428.520717 +428.608696 +428.927543 +428.969368 +429.028675 +429.244093 +429.251286 +429.290813 +429.331905 +429.453383 +429.526044 +429.632138 +429.782854 +429.888548 +429.925311 +430.020049 +430.279456 +430.454281 +430.533669 +430.675560 +430.711657 +430.739329 +430.807162 +430.856379 +430.929472 +430.948453 +431.002999 +431.028540 +431.037764 +431.071730 +431.089412 +431.095972 +431.131437 +431.168467 +431.380521 +431.402332 +431.442359 +431.477890 +431.632868 +431.659275 +431.695539 +431.790577 +431.845489 +431.976358 +432.016384 +432.067500 +432.097170 +432.109291 +432.114353 +432.124443 +432.131536 +432.172928 +432.255145 +432.304663 +432.365269 +432.419647 +432.436364 +432.468465 +432.517350 +432.576490 +432.598702 +432.727439 +432.932900 +433.068098 +433.502397 +433.543223 +433.580652 +433.599200 +433.647085 +433.663236 +433.694138 +434.291807 +434.402962 +434.527105 +434.606925 +434.724907 +434.958839 +435.016681 +435.234963 +435.453744 +435.665765 +435.919611 +436.036793 +436.117346 +436.220743 +436.287276 +436.311418 +436.413516 +436.516313 +436.542754 +437.012383 +437.397864 +437.530631 +437.556505 +437.597731 +437.621873 +437.715846 +438.134660 +438.223638 +438.318876 +438.673587 +438.812115 +438.927067 +439.374219 +439.381878 +439.415278 +439.517076 +439.628498 +439.692201 +439.712880 +439.720173 +440.173453 +440.510915 +440.533426 +440.607551 +440.740685 +441.134224 +441.142083 +441.182409 +441.414111 +441.558200 +442.346777 +442.363294 +442.488435 +442.562328 +442.654303 +443.514775 +443.572250 +443.659896 +443.730725 +444.065623 +444.262593 +444.637351 +445.493794 +445.741479 +445.799821 +445.842145 +446.233087 +446.255431 +446.284768 +446.307446 +446.334918 +446.391462 +446.424429 +446.510309 +446.523796 +446.559660 +446.572980 +446.590829 +446.662557 +446.676743 +446.705214 +446.754831 +446.778075 +446.811708 +447.185700 +447.196722 +447.213339 +447.231388 +447.256629 +447.288297 +447.320698 +448.079805 +448.156395 +448.163788 +448.201650 +448.227624 +448.256495 +448.281603 +449.274409 +449.328755 +449.374576 +449.403913 +449.471212 +449.507809 +449.673976 +449.697253 +449.749101 +449.757426 +449.793190 +449.823593 +449.839210 +449.918997 +449.953163 +449.977272 +451.053728 +454.079632 +454.092986 +454.184294 +454.483362 +454.559186 +454.748130 +454.758020 +454.804340 +455.217860 +455.261782 +456.795381 +456.969706 +457.231144 +457.235307 +457.719256 +458.102705 +458.343997 +458.402139 +458.682925 +459.185588 +459.191482 +460.013226 +461.206399 +461.212093 +461.243695 +461.421283 +463.296440 +463.617685 +463.919882 +464.571164 +465.031470 +465.267966 +465.329571 +465.533101 +465.994905 +466.067499 +466.379820 +466.384915 +466.397702 +467.799232 +467.819279 +468.030068 +468.332898 +468.851712 +469.047683 +469.510919 +469.980649 +470.166896 +470.541521 +470.700195 +471.765695 +472.759168 +472.828864 +473.055871 +474.200125 +475.554936 +475.719571 +477.245443 +478.178876 +478.352402 +479.745041 +480.993458 +481.190461 +482.793690 +483.627522 +484.192623 +485.222592 +485.225322 +485.660820 +486.177403 +486.179900 +486.182631 +486.820259 +488.796514 +489.455088 +490.353356 +490.355853 +490.358251 +491.427114 +492.265775 +495.433537 +495.828375 +496.126943 +496.164938 +496.956213 +497.605363 +498.129139 +499.349384 +500.514984 +501.728103 +501.896301 +501.973457 +502.907456 +502.924072 +503.692636 +504.364797 +505.097697 +506.070989 +506.880645 +507.801024 +508.680044 +509.709980 +512.579308 +512.582504 +512.878908 +513.927491 +513.930022 +513.932520 +514.560025 +515.326624 +515.352332 +515.620497 +517.506509 +518.273308 +519.000014 +519.813599 +519.845967 +519.972374 +520.483795 +520.662616 +520.665813 +520.837541 +521.739005 +521.764247 +522.059984 +523.247362 +523.560582 +523.934608 +523.944331 +524.330678 +524.855086 +525.757516 +525.760114 +526.138601 +526.147592 +527.228710 +527.906998 +527.909629 +527.912492 +529.652351 +530.805263 +531.583717 +531.618716 +532.269764 +533.592740 +534.000032 +535.011520 +536.337526 +536.348215 +536.521741 +536.986243 +537.078684 +537.195467 +539.371688 +539.393233 +540.655137 +541.501923 +541.513777 +541.716974 +543.186503 +543.518870 +544.658463 +544.670717 +544.834986 +545.883836 +545.945142 +546.586466 +547.486565 +547.506579 +547.802982 +547.805579 +548.219731 +549.038645 +553.290655 +553.778401 +553.797948 +555.234543 +555.237174 +555.240970 +557.663112 +558.100174 +559.719154 +559.721884 +560.081791 +561.099039 +561.101670 +561.296908 +562.660976 +563.374994 +564.045989 +564.316452 +565.324876 +565.327573 +565.330537 +566.616183 +566.846386 +566.849650 +567.029936 +569.137360 +570.561700 +570.691604 +570.707788 +571.574986 +572.242351 +572.400493 +572.801325 +573.612713 +573.615077 +573.617575 +574.304953 +574.473818 +574.501057 +574.657434 +575.909314 +575.912578 +575.923234 +577.836285 +578.032722 +578.116605 +578.943277 +578.980207 +579.583803 +579.621099 +580.024595 +580.451068 +581.972911 +582.697985 +584.015999 +584.094188 +584.696984 +585.596351 +586.334445 +586.469510 +587.190122 +587.201144 +587.693951 +588.062982 +588.243501 +588.328416 +589.013264 +590.132943 +590.135840 +590.360449 +590.437605 +590.440668 +590.477498 +590.517092 +590.534707 +590.625883 +590.629513 +590.673069 +591.305602 +591.308899 +591.324051 +592.338402 +592.695245 +592.717023 +593.340133 +594.092613 +594.333272 +595.403867 +595.480357 +595.515422 +596.088648 +596.096407 +596.967502 +597.349286 +597.354381 +597.695972 +598.598036 +599.181419 +599.785148 +600.034598 +601.074357 +601.316981 +601.683614 +602.405092 +604.126835 +604.957737 +605.488938 +605.737723 +606.351308 +606.353839 +606.680379 +607.222703 +607.551107 +607.605719 +608.400457 +609.178678 +609.181808 +610.123399 +610.125863 +610.128527 +611.212076 +611.614740 +611.629891 +611.893727 +611.950970 +612.023231 +612.512008 +613.222064 +613.226859 +613.252134 +613.427925 +613.430689 +613.823229 +615.005978 +615.291126 +615.295788 +616.293090 +616.685664 +616.746603 +616.974008 +617.434847 +617.721360 +618.737277 +618.740174 +619.868611 +619.918361 +620.203009 +621.550361 +621.991719 +622.545798 +624.037638 +624.428213 +624.481793 +624.511397 +624.604670 +625.763443 +625.766540 +626.068205 +626.070536 +626.072934 +626.190549 +626.193646 +627.253852 +627.256782 +627.419153 +628.416588 +628.419252 +628.422049 +629.021715 +629.024179 +629.026810 +630.026043 +631.072229 +632.374759 +633.238361 +634.228104 +634.554510 +635.030101 +635.374057 +635.800063 +635.919511 +636.746150 +636.749513 +637.138490 +638.029732 +638.045050 +638.092202 +638.362165 +638.834393 +638.862198 +639.674452 +639.895264 +639.917475 +640.432360 +640.449676 +640.788670 +641.510181 +642.069055 +642.585671 +643.085970 +643.329127 +643.329993 +643.342513 +643.529793 +643.535320 +643.642047 +643.651171 +643.843579 +643.949073 +644.049006 +644.144710 +644.148773 +644.232423 +644.244377 +644.246342 +644.332156 +644.344078 +644.348540 +644.630125 +644.649039 +644.843777 +644.848506 +644.945109 +645.151303 +645.231989 +645.250071 +645.331356 +645.341379 +645.344176 +645.443177 +645.545508 +645.645042 +645.744975 +645.751469 +645.831955 +645.833287 +645.844376 +645.849004 +645.951469 +646.030656 +646.041512 +646.144076 +646.159527 +646.242777 +646.343609 +646.346939 +646.442610 +646.530822 +646.641844 +646.645274 +646.744475 +646.845174 +646.848504 +646.948171 +647.045873 +647.048637 +647.145507 +647.151268 +647.244807 +647.344607 +647.349636 +647.441177 +647.741910 +647.844340 +647.931853 +647.943308 +648.044840 +649.140576 +649.521994 +649.958624 +651.698949 +653.093353 +657.456652 +658.244830 +658.607733 +658.610430 +658.820686 +659.589217 +659.591615 +659.593979 +659.897342 +659.900039 +660.068937 +660.077329 +660.843661 +660.846325 +661.314623 +661.489748 +661.790614 +662.559610 +662.873929 +664.444324 +665.775958 +667.126539 +667.296402 +667.428370 +668.676154 +669.361901 +669.367429 +670.030932 +670.187109 +670.204824 +671.139256 +671.774620 +671.784476 +672.656703 +673.030429 +673.198627 +674.024101 +674.402456 +674.544747 +676.465557 +677.581340 +677.584637 +677.591863 +678.045442 +678.087667 +678.127893 +678.330157 +678.341013 +678.442745 +678.532355 +678.545575 +678.632288 +678.744842 +678.845242 +678.944110 +678.946674 +679.033620 +679.045308 +679.144043 +679.344076 +679.531821 +679.741012 +679.834651 +679.852201 +679.951401 +680.044974 +680.146772 +680.149003 +680.232853 +680.245873 +680.250435 +680.345140 +680.443342 +680.542843 +680.545873 +680.632519 +680.644274 +680.648570 +680.745240 +680.748270 +680.844973 +680.847737 +680.945273 +680.947737 +681.034584 +681.045273 +681.048037 +681.132519 +681.145106 +681.152599 +681.233518 +681.248070 +681.334017 +681.347903 +681.455296 +681.548003 +681.845272 +681.946371 +682.134083 +682.147769 +682.248802 +682.346004 +682.348369 +682.445005 +682.447170 +682.545238 +682.557959 +682.646370 +682.648834 +682.944638 +683.033849 +683.044039 +683.253696 +684.456558 +684.459788 +685.047833 +685.054959 +685.688592 +686.211169 +686.213733 +686.368245 +687.278334 +687.484094 +688.010368 +693.214558 +693.216723 +693.647158 +693.650255 +693.898973 +693.901104 +694.256215 +694.258480 +694.260611 +694.263275 +695.245492 +695.247723 +695.249854 +695.252452 +695.357213 +696.443593 +697.045457 +697.053116 +698.030005 +698.039828 +699.372161 +699.455744 +700.115450 +700.708657 +701.197600 +701.612285 +702.253277 +702.724805 +702.728268 +703.032597 +703.045717 +703.332896 +703.335594 +703.338291 +704.592868 +705.032329 +705.032628 +706.031029 +706.042617 +706.245980 +706.271188 +706.338055 +706.823003 +706.825767 +708.033191 +708.046511 +708.190434 +708.192931 +708.195462 +708.361363 +708.364560 +708.632358 +709.364392 +709.536487 +710.356965 +711.032922 +711.920900 +711.923331 +711.925562 +711.930457 +713.031055 +713.043609 +713.046107 +713.142044 +713.144542 +713.243742 +713.332220 +713.341678 +713.344342 +713.433352 +713.443409 +713.445840 +713.547205 +713.634118 +713.643875 +713.646206 +713.743975 +713.746539 +713.834518 +713.845207 +713.847604 +714.046239 +714.049469 +714.233285 +714.248070 +714.445906 +714.448536 +714.546072 +714.548803 +714.645239 +714.648569 +714.733651 +714.745406 +714.748436 +714.845972 +714.848469 +714.946205 +714.948469 +715.034683 +715.049335 +715.146071 +715.152631 +715.246504 +715.345838 +715.348102 +715.445671 +715.448702 +715.545904 +715.549301 +715.851732 +715.953330 +716.046537 +716.058358 +716.149167 +716.248035 +716.346004 +716.348201 +716.748834 +716.832850 +716.845770 +716.945936 +716.949133 +717.055393 +717.146069 +717.149133 +717.247068 +717.347101 +717.352862 +717.446702 +717.449233 +717.546269 +717.553095 +717.646901 +717.649066 +717.746901 +717.847201 +717.853694 +717.948832 +718.045536 +718.048866 +718.205509 +718.677303 +718.680134 +718.683297 +718.952927 +718.955491 +718.958588 +719.153027 +719.158422 +719.429817 +720.873838 +721.318160 +721.321423 +721.818326 +721.821356 +722.421688 +723.030579 +723.198511 +724.401407 +725.305002 +725.311296 +725.328978 +725.392415 +725.433141 +725.500673 +725.514459 +725.617057 +725.638602 +725.642032 +725.675531 +725.704536 +725.780227 +725.790250 +725.808199 +725.848358 +726.636403 +726.674232 +726.737568 +726.743929 +726.760445 +726.791747 +726.836636 +726.893978 +726.940598 +727.036236 +727.043862 +727.121018 +727.145194 +727.184687 +727.393212 +727.421817 +727.503968 +727.565140 +727.630541 +727.670834 +727.678660 +727.729209 +727.755949 +727.883688 +727.888383 +728.255182 +728.259978 +728.266205 +728.455715 +728.457846 +728.459977 +728.462708 +728.722015 +728.724080 +728.726611 +729.022148 +729.024246 +729.026910 +729.493276 +729.496773 +729.505131 +729.653516 +729.655947 +729.658478 +729.866203 +729.868501 +729.870898 +729.987848 +729.990945 +730.168800 +730.171198 +730.173695 +730.348121 +730.351118 +730.612123 +731.042992 +731.344124 +731.346854 +731.354280 +731.546754 +731.908026 +731.910956 +731.927207 +732.316584 +732.527273 +732.529970 +732.663004 +732.666900 +732.793207 +732.796636 +732.939094 +732.941924 +733.375990 +733.564368 +733.567432 +733.824841 +734.430867 +734.433232 +734.435429 +734.438393 +734.689941 +734.692339 +734.694836 +734.857440 +734.859938 +734.862535 +735.403460 +735.406058 +735.408722 +735.418945 +736.093636 +736.095934 +736.098132 +736.100796 +736.518045 +736.998664 +737.174987 +737.403925 +737.407055 +737.770458 +737.773122 +738.046182 +738.942884 +739.247313 +739.249810 +739.409317 +739.602257 +739.999859 +740.045780 +740.340085 +740.342383 +740.344648 +740.446512 +740.449543 +740.457768 +740.692066 +740.988503 +740.991034 +741.269222 +741.272219 +741.871086 +741.873284 +741.875415 +741.878146 +741.983640 +742.053970 +742.706017 +742.708748 +742.835920 +742.838318 +742.840716 +743.029460 +743.046976 +743.202886 +743.295660 +743.447775 +743.450705 +743.455101 +743.904484 +743.907348 +743.909546 +744.386801 +744.389066 +744.391197 +744.393861 +744.578942 +745.077810 +745.080840 +745.200587 +745.215705 +745.555398 +745.751136 +746.386000 +746.388165 +746.390196 +746.392560 +747.400485 +747.402916 +747.405280 +747.749002 +747.926425 +748.052465 +748.131087 +748.131353 +748.146838 +748.246704 +748.250867 +748.346837 +748.444107 +748.446138 +748.532685 +748.646138 +748.731419 +748.744273 +748.747103 +748.749168 +748.846104 +748.944506 +748.947070 +749.043906 +749.131852 +749.146470 +749.344439 +749.346970 +749.432051 +749.444239 +749.543806 +749.546337 +749.633050 +749.643772 +749.646903 +749.746903 +749.848001 +749.945171 +749.948401 +750.047735 +750.132217 +750.144738 +750.147035 +750.244704 +750.246902 +750.348500 +750.444837 +750.449033 +750.544571 +750.546902 +750.630718 +750.644471 +750.652463 +750.743838 +750.746535 +750.841074 +750.843771 +750.946702 +751.045270 +751.047667 +751.148233 +751.245070 +751.247667 +751.344637 +751.347767 +751.445069 +751.449465 +751.545136 +751.547933 +751.645236 +751.647966 +751.745902 +751.844669 +751.847367 +751.945102 +752.044303 +752.046934 +752.149464 +752.245069 +752.247300 +752.344869 +752.444469 +752.545634 +752.550330 +752.645401 +752.648032 +752.744269 +752.833147 +752.844768 +752.944369 +752.946966 +753.033280 +753.044635 +753.047299 +753.488457 +753.491055 +753.493652 +753.769343 +754.131380 +754.404374 +754.407071 +754.409902 +754.720357 +754.723221 +755.627083 +755.658185 +755.900509 +755.903706 +756.081695 +756.084692 +756.422587 +756.426150 +756.909100 +757.808633 +757.827747 +758.029045 +758.509298 +758.676464 +758.702638 +758.763477 +758.826048 +758.955019 +759.040400 +759.045128 +759.078162 +760.189316 +760.322150 +760.327212 +760.456416 +760.479093 +760.498407 +760.799506 +760.805666 +761.018153 +761.024647 +761.043794 +761.073365 +761.088283 +761.130308 +761.155549 +761.334403 +761.353251 +761.372632 +761.454816 +761.743294 +761.788449 +761.806364 +761.832538 +761.834303 +761.837933 +761.845292 +761.850387 +761.857447 +761.862242 +761.868236 +761.880890 +761.908362 +761.940264 +761.944160 +761.983420 +762.121183 +762.533603 +762.560276 +762.578858 +762.606130 +762.671065 +762.708128 +762.794542 +762.859377 +762.878591 +762.899637 +762.913989 +762.993110 +763.204432 +763.206629 +763.313023 +763.739896 +763.742127 +763.744258 +763.747055 +763.893009 +763.895506 +763.898137 +764.025443 +764.920947 +764.923111 +764.925209 +764.927707 +765.084649 +765.087746 +765.690143 +765.692508 +765.694805 +766.281884 +766.285248 +766.603496 +766.608224 +766.611688 +766.756975 +766.932233 +767.586878 +767.870261 +767.882049 +768.195669 +768.218279 +768.727103 +768.889374 +768.892105 +769.123273 +769.588474 +769.596933 +769.911518 +769.914215 +770.039823 +770.308321 +770.311884 +770.471790 +770.474821 +770.490338 +770.665829 +770.668393 +770.673255 +770.820241 +770.824537 +771.226102 +771.396531 +771.399195 +771.402592 +771.844616 +771.847014 +771.849478 +771.863697 +772.024403 +772.434792 +772.437356 +772.439887 +772.841152 +772.844582 +773.051974 +773.216443 +773.219173 +773.230262 +773.628231 +773.970555 +773.972986 +773.975716 +774.029029 +774.030428 +774.209582 +775.029861 +775.042615 +775.109082 +775.128029 +775.270853 +776.689200 +776.747475 +776.944744 +777.027694 +777.304950 +777.358896 +779.649137 +779.713839 +781.497620 +781.604846 +781.668549 +781.713937 +783.029154 +783.030053 +783.030219 +783.249167 +783.342240 +783.354894 +783.447235 +783.542407 +783.545104 +783.630518 +783.640475 +783.643405 +783.842406 +783.845270 +783.930951 +783.942373 +784.042573 +784.044770 +784.131084 +784.141340 +784.144537 +784.242706 +784.245869 +784.342639 +784.350498 +784.439775 +784.443471 +784.531350 +784.644137 +784.742938 +784.748200 +784.841906 +784.845436 +784.932848 +784.943204 +784.945236 +785.042039 +785.142904 +785.238609 +785.242871 +785.451529 +785.531615 +785.546234 +785.731882 +785.742771 +785.831682 +785.841072 +785.844702 +785.942804 +785.946500 +786.043570 +786.046666 +786.144602 +786.147832 +786.233912 +786.243403 +786.346233 +786.442770 +786.542470 +786.640705 +786.732547 +786.743169 +786.749396 +786.832413 +786.842636 +786.943602 +787.043136 +787.143702 +787.244334 +787.431514 +787.440338 +787.543102 +787.545533 +787.631347 +787.643501 +787.646032 +787.743035 +787.843368 +787.943035 +787.945166 +788.047597 +788.380164 +788.769075 +788.988089 +789.794981 +789.845464 +790.927314 +791.178163 +793.810928 +793.934304 +793.939366 +793.944461 +793.958647 +793.975530 +794.053285 +794.059978 +794.064874 +794.070634 +794.195543 +794.203834 +794.238766 +794.280225 +794.298140 +794.357880 +794.386685 +794.497207 +794.503368 +794.548256 +794.577394 +794.582455 +794.609029 +794.629042 +794.670234 +794.691113 +794.707797 +794.756182 +794.865306 +794.896974 +794.909861 +795.033670 +795.147057 +795.248589 +795.253284 +795.268768 +795.280457 +795.285785 +795.311359 +795.375029 +795.392744 +795.538632 +795.643160 +795.663640 +795.684785 +795.726777 +795.741595 +795.845092 +795.850386 +795.881089 +795.915121 +795.970333 +795.981289 +795.999304 +796.100669 +796.111125 +796.298804 +796.548587 +796.566969 +796.574794 +796.603000 +796.608927 +796.615654 +796.632736 +796.801168 +796.805364 +796.837332 +796.856979 +796.976059 +797.034468 +797.043226 +797.091444 +797.163072 +797.287315 +797.297105 +797.309725 +797.339529 +797.355013 +797.419316 +797.492409 +797.497438 +797.561107 +797.563971 +797.688646 +797.720814 +797.785216 +797.850484 +797.940694 +798.242791 +799.415651 +799.464002 +799.964501 +799.991408 +800.027072 +800.046686 +800.323342 +800.473325 +800.482283 +800.510688 +800.532333 +801.471127 +801.574723 +801.763201 +801.803194 +801.880750 +803.063399 +803.110053 +803.151345 +803.274888 +803.307289 +803.371158 +803.401394 +803.425803 +803.503459 +803.553808 +803.566229 +803.610585 +803.658770 +803.697664 +803.724704 +803.802060 +803.839622 +803.864797 +803.885843 +803.949113 +803.973821 +803.999029 +804.034827 +804.055739 +804.087907 +804.110351 +804.141787 +804.154307 +804.168060 +804.179149 +804.185509 +804.210385 +804.218610 +804.233295 +804.275919 +804.300994 +804.320241 +804.337524 +804.351577 +804.366062 +804.394234 +804.411217 +804.448912 +804.481147 +804.505889 +804.521740 +804.541153 +804.556938 +804.568559 +804.592369 +804.631596 +804.654806 +804.672489 +804.698662 +804.708020 +804.746481 +804.773887 +804.789105 +804.835226 +804.860933 +804.920907 +804.947214 +804.972122 +804.998795 +805.044949 +805.068392 +805.155805 +805.193600 +805.216544 +805.303157 +805.334959 +805.406354 +805.426367 +805.539621 +805.615511 +805.655838 +805.731429 +805.876650 +806.371621 +806.395364 +806.438288 +806.511581 +806.526366 +806.573852 +806.613113 +806.638221 +806.647845 +806.697595 +807.555170 +807.689668 +807.712412 +807.748643 +807.787437 +807.825100 +807.862063 +807.959132 +807.987171 +808.006984 +808.017141 +808.039352 +808.258632 +808.363527 +808.409348 +808.455868 +808.471120 +808.493963 +808.511046 +808.570720 +808.605851 +808.641382 +808.774416 +808.814975 +808.839551 +808.893630 +808.957699 +808.984106 +808.992265 +809.013776 +809.029694 +809.039351 +809.180276 +809.212944 +809.384405 +809.441981 +809.520203 +809.636520 +809.708681 +809.763626 +809.777911 +809.802787 +809.824565 +809.870252 +810.041647 +810.044844 +810.211511 +810.241647 +810.407215 +810.882739 +811.033355 +811.279442 +811.492528 +811.509778 +811.525096 +811.552169 +811.575246 +811.590397 +811.604916 +811.614040 +811.620334 +811.716338 +811.738615 +811.811076 +811.863957 +811.903084 +811.962192 +811.992661 +812.016304 +812.027992 +812.040513 +812.188765 +812.192228 +812.242744 +812.449837 +812.533320 +812.617969 +812.681871 +812.737582 +812.780739 +812.813273 +812.833886 +812.871814 +812.922097 +812.941545 +813.030722 +813.040479 +813.055497 +813.209044 +813.229490 +813.259460 +813.387398 +813.520132 +813.590628 +813.629856 +813.661657 +813.683602 +813.706279 +813.734584 +813.821464 +813.904447 +813.935350 +813.956762 +813.976808 +814.001983 +814.117135 +814.161623 +814.222096 +814.261590 +814.300817 +814.333218 +814.380571 +814.404613 +814.443175 +814.456695 +814.507311 +814.549135 +814.588429 +814.611173 +814.631886 +814.657693 +814.713038 +814.828489 +814.928389 +814.947836 +814.985299 +815.024293 +815.050567 +815.082502 +815.093757 +815.143540 +815.187663 +815.257293 +815.356694 +815.410806 +815.472378 +815.539244 +815.596587 +815.654795 +815.710140 +815.759158 +815.789094 +815.845904 +815.874575 +815.890260 +815.904545 +815.913004 +815.929853 +815.979104 +816.041142 +816.073809 +816.095621 +816.115734 +816.144305 +816.251265 +816.266450 +816.282234 +816.296187 +816.305710 +816.325890 +816.361155 +816.388228 +816.406876 +816.418531 +816.435014 +816.454095 +816.469580 +816.488527 +816.526822 +816.637378 +816.839609 +817.027921 +817.543105 +817.740374 +817.935679 +817.958956 +818.034646 +818.142772 +818.149232 +818.240940 +818.332681 +818.342438 +818.348899 +818.430550 +818.431416 +818.431682 +818.442571 +818.531582 +818.542871 +818.545135 +818.642205 +818.645435 +818.742904 +818.747400 +818.831116 +818.842837 +818.844969 +818.931415 +818.932548 +818.943070 +819.040706 +819.043437 +819.131482 +819.132947 +819.143004 +819.145601 +819.231415 +819.243170 +819.332581 +819.341572 +819.344569 +819.443070 +819.533546 +819.541305 +819.544735 +819.641205 +819.644302 +819.742537 +819.745401 +819.843070 +819.943269 +819.948697 +820.031781 +820.041171 +820.043968 +820.143935 +820.148464 +820.233112 +820.243968 +820.246233 +820.344068 +820.346199 +820.441937 +820.445067 +820.542436 +820.640405 +820.651061 +820.732612 +820.743868 +820.842103 +820.845033 +821.041736 +821.044833 +821.141903 +821.144733 +821.241503 +821.244467 +821.331813 +821.443534 +821.543667 +821.545798 +821.644100 +821.732445 +821.741769 +821.744566 +821.843467 +821.845532 +821.944200 +822.032378 +822.032844 +822.033410 +822.043867 +822.142035 +822.244033 +822.246397 +822.344266 +822.434009 +822.444532 +822.541435 +822.544565 +822.749327 +822.844132 +822.853822 +822.943866 +823.044199 +823.395780 +823.825750 +824.372136 +824.405869 +824.757217 +824.842132 +824.870304 +824.892482 +824.975399 +825.264310 +825.339967 +825.380693 +825.425348 +826.011029 +826.423416 +826.483855 +826.497975 +826.548824 +826.749157 +826.793079 +826.825780 +826.923349 +826.990981 +827.021484 +827.037734 +827.049789 +827.070735 +827.081857 +827.104567 +827.159746 +827.178560 +827.216988 +827.229309 +827.244661 +827.297408 +827.337068 +827.366239 +827.405167 +827.444427 +827.518320 +827.531873 +827.555250 +827.562975 +827.570601 +827.602069 +827.622782 +827.654850 +827.675463 +827.701736 +827.736468 +827.777461 +827.792878 +827.814723 +827.873131 +827.890048 +828.041130 +828.095542 +828.147923 +828.217220 +828.337034 +828.817420 +829.110726 +829.152850 +829.312024 +829.324545 +829.328908 +829.334236 +829.354415 +829.388115 +829.445791 +829.520882 +829.567868 +829.701335 +830.119616 +830.274794 +830.759875 +830.795972 +830.991343 +831.493840 +831.700001 +833.238760 +833.241358 +834.456541 +834.464434 +835.438625 +835.441655 +835.688175 +835.702494 +835.996467 +836.306923 +836.654308 +836.665730 +836.732463 +837.676485 +837.684910 +838.600793 +838.652408 +838.882211 +838.939188 +838.978149 +839.002324 +839.083610 +839.145082 +839.211016 +839.240686 +839.247879 +839.259267 +839.318808 +839.355371 +839.398395 +839.495597 +839.519607 +839.556037 +839.569990 +839.603156 +839.619640 +839.658767 +839.690902 +839.748178 +839.775018 +839.810982 +839.819240 +839.844981 +839.864728 +839.943616 +839.967758 +839.990169 +840.024601 +840.050342 +840.079480 +840.127631 +840.339652 +840.367991 +840.384108 +840.463795 +840.506785 +840.537754 +840.570222 +840.593565 +840.607951 +840.612046 +840.634957 +840.655303 +840.692066 +840.703455 +840.722369 +840.755103 +840.769922 +840.823235 +840.865293 +840.941250 +840.971154 +841.005586 +841.028130 +841.073784 +841.142915 +841.172452 +841.214876 +841.257367 +841.324234 +841.379478 +841.413111 +841.455202 +841.504853 +841.541782 +841.573617 +841.590167 +841.660097 +841.719438 +841.755402 +841.767357 +841.792765 +841.847476 +841.867190 +841.961196 +841.973217 +842.057200 +842.087336 +842.112877 +842.156001 +842.257266 +842.297926 +842.344512 +842.464825 +842.587003 +842.653869 +842.702088 +842.774382 +842.832724 +842.889067 +842.952670 +843.003952 +843.034255 +843.041082 +843.177945 +843.181741 +843.230725 +843.365157 +843.471517 +843.539849 +843.658530 +843.761327 +843.820834 +843.914907 +843.985869 +844.042146 +844.178310 +844.208513 +844.327361 +844.425696 +844.593494 +844.664457 +844.715306 +844.769751 +844.836851 +844.903750 +844.950937 +845.005549 +845.043844 +845.249804 +845.337716 +845.417669 +845.501152 +845.557296 +845.619001 +845.707113 +845.781205 +845.833620 +845.891562 +845.950070 +846.002184 +846.057196 +846.280872 +846.376143 +846.429190 +846.484535 +846.517602 +846.589097 +846.661990 +846.718734 +846.772480 +846.822163 +846.842543 +846.871348 +846.907411 +846.945473 +846.982436 +847.022796 +847.040378 +847.196089 +847.281337 +847.347637 +847.412273 +847.469016 +847.490794 +847.526292 +847.535116 +847.561657 +847.610941 +847.654297 +847.675676 +847.717834 +847.752399 +847.787597 +847.836382 +847.879372 +847.919931 +847.978906 +848.041410 +848.044873 +848.190161 +848.193424 +848.245672 +848.329055 +848.428089 +848.488129 +848.544406 +848.589061 +848.649035 +848.711772 +848.735581 +848.774742 +848.818898 +848.891459 +848.957759 +849.028222 +849.057559 +849.097652 +849.118698 +849.182701 +849.219031 +849.235148 +849.264219 +849.340276 +849.367149 +849.389693 +849.411805 +849.428255 +849.442141 +849.537745 +849.595288 +849.608108 +849.626323 +849.662687 +849.702747 +849.725391 +849.751564 +849.779437 +849.817831 +849.875207 +849.899883 +849.939709 +849.993722 +850.048101 +850.102080 +850.118031 +850.134581 +850.174108 +850.203612 +850.258291 +850.294188 +850.320195 +850.351963 +850.378270 +850.427421 +850.482000 +850.518697 +850.572576 +850.595719 +850.625856 +850.672742 +850.713468 +850.757757 +850.815899 +850.841407 +850.894087 +850.929419 +850.962486 +850.986628 +851.020294 +851.075972 +851.135812 +851.162086 +851.173341 +851.255126 +851.276704 +851.309638 +851.349265 +851.373707 +851.406075 +851.419029 +851.464849 +851.558223 +851.572342 +851.599415 +851.621426 +851.632915 +851.646634 +851.663950 +851.708539 +851.731316 +851.748299 +852.136644 +852.160420 +852.167846 +852.198548 +852.217829 +852.575071 +852.709171 +852.828851 +852.833113 +852.861185 +852.868911 +852.888857 +852.906606 +852.919294 +853.011168 +853.130416 +853.231981 +853.232513 +853.243136 +853.246000 +853.343302 +853.348397 +853.443369 +853.445500 +853.531381 +853.532913 +853.543502 +853.545600 +853.632879 +853.641837 +853.644368 +853.732579 +853.743402 +853.745766 +853.833245 +853.841437 +853.844301 +853.932146 +853.942603 +853.945466 +853.950694 +854.042469 +854.045366 +854.143901 +854.149795 +854.244201 +854.246898 +854.344234 +854.347031 +854.432579 +854.433378 +854.444200 +854.544167 +854.641636 +854.644766 +854.742702 +854.745499 +854.844167 +854.941869 +854.945132 +855.033610 +855.033877 +855.042668 +855.045865 +855.132378 +855.133577 +855.141669 +855.144666 +855.244366 +855.344866 +855.347363 +855.443367 +855.542068 +855.644932 +855.734342 +855.743200 +855.746097 +855.833909 +855.844632 +855.846697 +855.934042 +855.943300 +856.046996 +856.143832 +856.243566 +856.443499 +856.543899 +856.546596 +856.632643 +856.648627 +856.743732 +856.747861 +856.832576 +856.844398 +856.943998 +856.946862 +857.033142 +857.041900 +857.144697 +857.242832 +857.346928 +857.432542 +857.442199 +857.547394 +857.643565 +857.646495 +857.744164 +857.834074 +857.841633 +857.844064 +857.950158 +858.042665 +858.455119 +858.523084 +859.267672 +859.394245 +859.581724 +860.567538 +861.367603 +861.391480 +862.252118 +862.284652 +862.323080 +863.924544 +863.936632 +863.967601 +865.457176 +865.692541 +866.595604 +866.614518 +866.618248 +867.370927 +868.279518 +868.281816 +868.284147 +868.291539 +868.397899 +868.400297 +868.403361 +868.603560 +868.606491 +868.742654 +869.712850 +869.772324 +870.501460 +871.687240 +872.386307 +872.389937 +872.974485 +873.393732 +873.398094 +874.085007 +874.087771 +874.590367 +874.595596 +874.729395 +875.844745 +876.060030 +877.243445 +878.031123 +878.177077 +878.730257 +878.857762 +879.031988 +879.201385 +879.216570 +879.589696 +880.030089 +880.364221 +880.568683 +880.581104 +880.600718 +881.594856 +882.264919 +882.290127 +883.032084 +883.044105 +883.405377 +883.407641 +883.409872 +883.419629 +884.992522 +885.165448 +886.301778 +887.164847 +887.172739 +888.010867 +888.244133 +888.248995 +888.331812 +888.343301 +888.442768 +888.544732 +888.547663 +888.644932 +888.650726 +888.750993 +888.845698 +888.849228 +888.933943 +888.944965 +889.052424 +889.145964 +889.149594 +889.244798 +889.533509 +889.534209 +889.545397 +889.632877 +889.633076 +889.642001 +889.645098 +889.733542 +889.746763 +889.843499 +889.952157 +890.148660 +890.246029 +890.347461 +890.353022 +890.452390 +890.546695 +890.551757 +890.664943 +890.854620 +890.957484 +891.033208 +891.044264 +891.049592 +891.134140 +891.145129 +891.148393 +891.246828 +891.249325 +891.334407 +891.346661 +891.355918 +891.446761 +891.449092 +891.546827 +891.551356 +891.645329 +891.742964 +891.949558 +892.043663 +892.242265 +892.450090 +892.550523 +892.646027 +892.649124 +892.743396 +892.944362 +893.042230 +893.044894 +893.225114 +893.944228 +893.947191 +895.136534 +895.402235 +895.773630 +895.816220 +895.876294 +896.761974 +896.808394 +897.612056 +899.930136 +899.981984 +901.075256 +901.137294 +901.231533 +902.511552 +902.838125 +903.144318 +903.146583 +903.148747 +903.374321 +903.376752 +903.379716 +903.594667 +903.597032 +903.599563 +903.745783 +903.977484 +903.979882 +903.982413 +904.791469 +904.794267 +904.797364 +905.179348 +905.234293 +906.290203 +907.235057 +907.573252 +907.576182 +907.841550 +908.038386 +908.114809 +908.974882 +909.078478 +909.446776 +910.159463 +911.311643 +911.349771 +912.097656 +912.168951 +912.406846 +913.031821 +913.044442 +913.127425 +913.130289 +914.031154 +914.623960 +916.302280 +916.949832 +917.049832 +917.257125 +917.651763 +918.548432 +918.788825 +920.141837 +920.362117 +920.606206 +921.445299 +922.302374 +922.527616 +923.007968 +923.130146 +923.330445 +923.533808 +923.545563 +923.645130 +923.647495 +923.744797 +923.849259 +923.944963 +923.952689 +924.044297 +924.144464 +924.146662 +924.231177 +924.448360 +924.644963 +924.647860 +924.734007 +924.846328 +924.850624 +924.957883 +925.145961 +925.167640 +925.245961 +925.248991 +925.348891 +925.648458 +925.942963 +925.945528 +926.045794 +926.145794 +926.162077 +926.246160 +926.345161 +926.442264 +926.446526 +926.744295 +926.755850 +926.842896 +926.845460 +926.946159 +926.948690 +927.043195 +927.046126 +927.145693 +927.157315 +927.334437 +927.347058 +927.434704 +927.446392 +927.453984 +927.555782 +927.645692 +927.648756 +927.857514 +927.931240 +928.044593 +928.046558 +928.245059 +928.248023 +928.270467 +928.708329 +929.739463 +930.461374 +931.119149 +931.571762 +932.018848 +934.198433 +934.253212 +934.344354 +934.437394 +935.423973 +935.486610 +937.076352 +937.096898 +938.076751 +938.218143 +938.220807 +938.404023 +938.613247 +938.615745 +938.618775 +938.861998 +938.864729 +940.037821 +940.040818 +941.515176 +942.640449 +942.663593 +943.409779 +943.412809 +944.600054 +944.893894 +944.910310 +945.359761 +945.807379 +945.833020 +946.274012 +946.590628 +946.866419 +947.530288 +947.532819 +947.789961 +947.792625 +947.795522 +948.029888 +948.178739 +948.936580 +949.152497 +949.330519 +950.192323 +950.195287 +950.375873 +951.566048 +951.644236 +952.031216 +952.031948 +952.093054 +952.745767 +952.940772 +953.028917 +953.524421 +953.550229 +955.206704 +955.209834 +955.246564 +956.427282 +958.015692 +958.261479 +958.332575 +958.445062 +958.547759 +958.743996 +958.748825 +958.859714 +958.944928 +959.045961 +959.053786 +959.149324 +959.247725 +959.345328 +959.445694 +959.652820 +959.846193 +959.849257 +959.934338 +959.948124 +960.044628 +960.143362 +960.146925 +960.244894 +960.334371 +960.434537 +960.451987 +960.535436 +960.547424 +960.647291 +960.745792 +960.753285 +960.843894 +960.952186 +961.044593 +961.132705 +961.145159 +961.234969 +961.246192 +961.248656 +961.446025 +961.545758 +961.645026 +961.745026 +961.843327 +961.945891 +962.033803 +962.045491 +962.048255 +962.134902 +962.146524 +962.247456 +962.251685 +962.335002 +962.347789 +962.458778 +962.542361 +962.746057 +962.749920 +962.843459 +962.942527 +962.945357 +963.050652 +963.321614 +963.324411 +963.331537 +963.949019 +963.952249 +964.324310 +964.327008 +964.329971 +964.344923 +965.349018 +965.913586 +965.922178 +966.836229 +967.556142 +967.559239 +967.562669 +967.566332 +969.841621 +971.293001 +973.258068 +973.260365 +973.262863 +973.349010 +973.351541 +973.625933 +973.628663 +974.142649 +974.144980 +974.757800 +974.760664 +975.625032 +976.663226 +977.028427 +977.134554 +977.137118 +977.139616 +977.218603 +977.796025 +978.712708 +978.807446 +980.297921 +980.486632 +980.503182 +981.647004 +981.649701 +981.656960 +982.880469 +983.031651 +983.971643 +984.073441 +984.849265 +984.880800 +985.031849 +985.822657 +986.050862 +987.434910 +988.032112 +988.288689 +989.003706 +989.062481 +989.325085 +989.615194 +989.625417 +990.391484 +991.184323 +991.187587 +992.143863 +992.563909 +993.032673 +993.247325 +993.442663 +993.532373 +993.644994 +993.733505 +993.742663 +993.745593 +993.833905 +993.845493 +993.855683 +993.945759 +993.948656 +994.045260 +994.048456 +994.143794 +994.146691 +994.234903 +994.249555 +994.346924 +994.349022 +994.435802 +994.447390 +994.455482 +994.546691 +994.646191 +994.648223 +994.851386 +994.959178 +995.049188 +995.156581 +995.251119 +995.343660 +995.347223 +995.445824 +995.448022 +995.547456 +995.746024 +995.934935 +995.947655 +995.949787 +996.047455 +996.145990 +996.154748 +996.243459 +996.246223 +996.544691 +996.560875 +996.646722 +996.746556 +996.832936 +996.844391 +996.956346 +997.047288 +997.146622 +997.153282 +997.244391 +997.246955 +997.533202 +997.643125 +997.646422 +997.745622 +997.753747 +997.834267 +997.845289 +997.945089 +998.493374 +998.496238 +998.499401 +998.511156 +998.750949 +998.754146 +999.229570 +999.232301 +1000.703362 +1000.708323 +1000.731134 +1001.385212 +1002.409454 +1002.810952 +1003.055773 +1005.769890 +1005.836557 +1005.919474 +1005.988471 +1006.087805 +1006.185674 +1006.566060 +1006.999526 +1007.105819 +1007.873118 +1008.063061 +1008.512311 +1008.514975 +1008.749407 +1008.752404 +1008.919870 +1008.922301 +1008.924799 +1009.709147 +1009.711678 +1009.714142 +1009.872550 +1009.875014 +1009.877678 +1010.500421 +1010.507448 +1010.986601 +1011.571383 +1012.438348 +1012.634785 +1012.658028 +1012.857695 +1013.348437 +1013.491760 +1015.615268 +1015.951998 +1017.246768 +1018.032682 +1018.688026 +1019.325754 +1019.902077 +1019.904808 +1020.032779 +1020.181897 +1020.582629 +1021.032412 +1021.279065 +1021.432279 +1021.983593 +1023.044065 +1023.228980 +1023.232643 +1023.269706 +1026.503336 +1028.126111 +1028.346224 +1028.444226 +1028.545292 +1028.549388 +1028.645092 +1028.745092 +1028.748755 +1028.856713 +1028.951319 +1029.049454 +1029.147189 +1029.157745 +1029.247655 +1029.654748 +1029.744658 +1029.747322 +1029.843526 +1029.944924 +1030.046023 +1030.145956 +1030.151950 +1030.334201 +1030.346023 +1030.435433 +1030.445623 +1030.545057 +1030.550951 +1030.645656 +1030.848486 +1030.854347 +1030.950418 +1031.033734 +1031.047154 +1031.150983 +1031.660973 +1031.744956 +1031.853414 +1031.945155 +1031.948219 +1032.045854 +1032.150217 +1032.246021 +1032.370629 +1032.447985 +1032.548518 +1032.557742 +1032.647785 +1032.945221 +1033.048784 +1034.029169 +1034.043821 +1035.040923 +1035.480450 +1035.513317 +1035.587276 +1036.598197 +1036.600662 +1036.603126 +1036.627235 +1036.982047 +1037.110818 +1037.888972 +1038.417476 +1038.613081 +1038.638688 +1038.744649 +1039.349044 +1039.454738 +1039.999426 +1040.744747 +1041.143548 +1041.939651 +1041.967556 +1042.183973 +1042.750406 +1042.971518 +1043.157865 +1043.160062 +1043.164824 +1043.169986 +1043.310145 +1043.313342 +1044.140048 +1044.293395 +1044.325929 +1044.849305 +1044.867387 +1044.884869 +1044.928992 +1045.721665 +1046.152767 +1046.364322 +1047.163155 +1047.324361 +1048.189028 +1048.230853 +1048.335382 +1048.636447 +1049.091025 +1049.139410 +1049.590126 +1049.606143 +1049.661588 +1050.169879 +1050.281301 +1050.291823 +1050.300049 +1050.351530 +1050.988726 +1051.108140 +1051.194020 +1051.226388 +1051.240041 +1051.268413 +1051.297150 +1051.458089 +1051.469977 +1051.493021 +1051.507473 +1051.525289 +1051.552129 +1051.575505 +1051.599514 +1051.639441 +1051.700813 +1051.760353 +1051.784396 +1051.825688 +1051.861186 +1051.886727 +1051.911169 +1051.935445 +1051.962185 +1051.984795 +1051.990323 +1052.005675 +1052.021359 +1052.053593 +1052.131882 +1052.610469 +1052.651262 +1052.689623 +1052.848531 +1052.876336 +1052.923256 +1052.941871 +1052.957622 +1052.974471 +1053.000812 +1053.018860 +1053.041538 +1053.204808 +1053.207805 +1053.280865 +1054.260751 +1054.354224 +1054.366811 +1054.386824 +1054.425086 +1054.464413 +1054.672605 +1054.717227 +1054.759784 +1054.787190 +1054.805672 +1054.826717 +1054.845166 +1055.023454 +1055.211499 +1055.324519 +1055.337007 +1055.354422 +1055.418259 +1055.454889 +1055.498578 +1055.504306 +1055.532011 +1055.551425 +1055.585824 +1055.610433 +1055.641968 +1055.688688 +1055.725451 +1055.788854 +1055.830379 +1055.852957 +1055.869007 +1055.916327 +1055.922487 +1055.987589 +1056.041302 +1056.278631 +1056.359416 +1056.389087 +1056.489520 +1056.527049 +1056.550292 +1056.597478 +1056.661081 +1056.682726 +1056.962979 +1057.013995 +1057.041800 +1057.188054 +1057.261047 +1057.670937 +1057.690717 +1057.698243 +1057.763311 +1057.788253 +1057.818056 +1057.838769 +1057.905735 +1057.940134 +1057.973334 +1058.007866 +1058.030843 +1058.188219 +1058.191150 +1058.206601 +1058.232142 +1058.333474 +1058.417689 +1058.833140 +1058.929677 +1059.042298 +1059.215424 +1059.221485 +1059.250223 +1059.337669 +1059.383689 +1059.436303 +1059.500905 +1059.531741 +1059.571967 +1059.616922 +1059.628011 +1059.649856 +1059.704868 +1059.770835 +1059.921484 +1060.088584 +1060.697041 +1060.824380 +1060.944327 +1061.057347 +1061.660110 +1061.700070 +1061.707596 +1061.749388 +1061.785918 +1061.830440 +1061.926744 +1062.123447 +1062.207096 +1062.225778 +1062.278258 +1062.347556 +1062.415221 +1062.449554 +1062.474462 +1062.506330 +1062.525777 +1062.555514 +1062.628941 +1062.749487 +1063.130805 +1063.131538 +1063.145790 +1063.166736 +1063.242060 +1063.245390 +1063.332803 +1063.342726 +1063.346989 +1063.432603 +1063.443425 +1063.550318 +1063.643359 +1063.646455 +1063.739962 +1063.742593 +1063.843225 +1063.942959 +1064.043558 +1064.048753 +1064.142892 +1064.232702 +1064.241393 +1064.244157 +1064.343524 +1064.349219 +1064.443458 +1064.445589 +1064.534600 +1064.542725 +1064.642791 +1064.645922 +1064.731902 +1064.743624 +1064.745788 +1064.843657 +1064.848585 +1064.943191 +1065.032901 +1065.043590 +1065.045821 +1065.141859 +1065.144689 +1065.243490 +1065.246587 +1065.343657 +1065.346221 +1065.443257 +1065.446254 +1065.541525 +1065.544622 +1065.554412 +1065.633333 +1065.643190 +1065.646054 +1065.743590 +1065.755811 +1065.843589 +1065.846353 +1065.941358 +1065.944255 +1066.031901 +1066.032733 +1066.043523 +1066.046220 +1066.142191 +1066.144888 +1066.243323 +1066.341358 +1066.344188 +1066.443789 +1066.446353 +1066.541924 +1066.544887 +1066.643755 +1066.741757 +1066.744554 +1066.831834 +1066.843122 +1066.845287 +1066.942523 +1067.043488 +1067.140158 +1067.143355 +1067.148117 +1067.231700 +1067.242522 +1067.343488 +1067.346985 +1067.442322 +1067.444986 +1067.542422 +1067.545186 +1067.645686 +1067.741390 +1067.744054 +1067.843055 +1067.845785 +1067.943554 +1068.040757 +1068.043754 +1068.292538 +1068.357606 +1068.395402 +1068.403627 +1068.437826 +1068.478785 +1068.534063 +1068.599464 +1068.686211 +1068.762967 +1068.798731 +1068.818745 +1068.841555 +1068.850480 +1068.858139 +1068.899098 +1068.932964 +1069.009121 +1069.056640 +1069.089773 +1069.126070 +1069.154076 +1069.198032 +1069.229167 +1069.271824 +1069.327369 +1069.398731 +1069.465131 +1069.498631 +1069.526436 +1069.633596 +1069.648381 +1069.686842 +1069.723273 +1069.764864 +1069.857238 +1069.908720 +1069.941021 +1070.016279 +1070.161800 +1070.205856 +1070.268360 +1070.290238 +1070.323738 +1070.338923 +1070.356705 +1070.384977 +1070.416479 +1070.449113 +1070.485243 +1070.536592 +1070.591004 +1070.634294 +1070.659102 +1070.698263 +1070.710318 +1070.736492 +1070.748613 +1070.808087 +1070.868460 +1070.908753 +1070.920441 +1070.934727 +1070.972122 +1071.015246 +1071.081979 +1071.091536 +1071.139355 +1071.169425 +1071.190104 +1071.222339 +1071.241753 +1071.296897 +1071.322272 +1071.345948 +1071.384410 +1071.404556 +1071.423038 +1071.464163 +1071.491536 +1071.516311 +1071.547480 +1071.557104 +1071.608519 +1071.664962 +1071.704956 +1071.729165 +1071.765994 +1071.812981 +1071.862032 +1071.903257 +1071.945715 +1071.988971 +1072.021306 +1072.054173 +1072.101925 +1072.184842 +1072.273953 +1072.364395 +1072.403057 +1072.422471 +1072.453739 +1072.499727 +1072.538854 +1072.562664 +1072.646047 +1072.709816 +1072.745181 +1072.790769 +1072.830895 +1072.883443 +1072.959067 +1073.020572 +1073.039753 +1073.158434 +1073.221737 +1073.252806 +1073.297162 +1073.378680 +1073.407551 +1073.508850 +1073.538787 +1073.568324 +1073.600924 +1073.607218 +1073.613312 +1073.622503 +1073.638886 +1073.655869 +1073.672919 +1073.737454 +1073.754970 +1073.954803 +1073.968257 +1074.054470 +1074.071287 +1074.135423 +1074.143947 +1074.149675 +1074.154870 +1074.162829 +1074.177347 +1074.251906 +1074.259798 +1074.264993 +1074.274417 +1074.293131 +1074.339319 +1074.442882 +1074.469888 +1074.513478 +1074.562762 +1074.576714 +1074.583141 +1074.593431 +1074.609049 +1074.627963 +1074.651539 +1074.655735 +1074.659864 +1074.672219 +1074.689601 +1074.704886 +1074.786604 +1074.797660 +1074.818039 +1074.833024 +1074.875981 +1074.915841 +1074.919904 +1074.953637 +1075.003920 +1075.018738 +1075.032525 +1075.038619 +1075.061096 +1075.095295 +1075.106884 +1075.166491 +1075.185438 +1075.199491 +1075.214476 +1075.227163 +1075.278978 +1075.285105 +1075.293830 +1075.323667 +1075.350240 +1075.355568 +1075.369454 +1075.401855 +1075.413910 +1075.446877 +1075.468688 +1075.475548 +1075.487702 +1075.543180 +1075.547143 +1075.553270 +1075.560063 +1075.589534 +1075.603853 +1075.608382 +1075.626597 +1075.637652 +1075.653270 +1075.685404 +1075.698958 +1075.708914 +1075.716307 +1075.739750 +1075.783773 +1075.788934 +1075.794395 +1075.805984 +1075.819970 +1075.835055 +1075.878245 +1075.909214 +1076.013210 +1076.113043 +1076.225930 +1076.305684 +1076.345377 +1076.349473 +1076.354302 +1076.365424 +1076.382140 +1076.402620 +1076.414275 +1076.449473 +1076.455567 +1076.461294 +1076.472217 +1076.503153 +1076.607115 +1076.630425 +1076.638883 +1076.660795 +1076.678743 +1076.754135 +1076.760861 +1076.765457 +1076.777711 +1076.815673 +1076.894794 +1076.912609 +1076.920768 +1076.925330 +1076.940282 +1076.970418 +1076.984005 +1077.050638 +1077.059063 +1077.063025 +1077.092696 +1077.191164 +1077.211177 +1077.231557 +1077.259695 +1077.308147 +1077.414041 +1077.430424 +1077.435020 +1077.446875 +1077.464357 +1077.545776 +1077.560827 +1077.639082 +1077.653235 +1077.666854 +1077.686335 +1077.766055 +1077.833188 +1078.004416 +1078.020234 +1078.037050 +1078.214240 +1078.700087 +1079.085867 +1079.131588 +1079.394525 +1079.475277 +1079.507046 +1079.559859 +1079.993359 +1080.065953 +1080.152699 +1080.671180 +1080.679838 +1080.697987 +1080.949968 +1080.972545 +1081.009242 +1081.475076 +1081.604779 +1082.034049 +1082.191991 +1082.271245 +1082.661455 +1082.680336 +1082.798984 +1082.838910 +1083.408340 +1083.897551 +1083.976771 +1084.313135 +1084.373241 +1084.480667 +1084.763850 +1085.090457 +1085.135079 +1085.171242 +1086.098814 +1086.115131 +1086.232147 +1086.256223 +1086.268877 +1086.294252 +1086.332813 +1086.374938 +1086.482130 +1086.545733 +1086.584361 +1086.619226 +1086.849529 +1087.025520 +1087.059119 +1087.110468 +1087.159153 +1087.173238 +1087.211434 +1087.266212 +1087.278200 +1087.304241 +1087.320558 +1087.373138 +1087.394650 +1087.411167 +1087.448430 +1087.546065 +1087.694617 +1087.717860 +1087.765079 +1087.791753 +1087.862082 +1087.952891 +1088.023554 +1088.040703 +1088.127283 +1088.240237 +1088.421556 +1088.522987 +1088.622088 +1088.694715 +1088.743966 +1088.835774 +1088.902641 +1088.994715 +1089.029214 +1089.041269 +1089.249727 +1089.432710 +1089.559883 +1089.626982 +1089.647195 +1089.679330 +1089.711764 +1089.825151 +1089.872070 +1089.925117 +1089.966642 +1090.015427 +1090.039936 +1090.192017 +1090.195413 +1090.276499 +1090.428780 +1090.488120 +1090.539036 +1090.610897 +1090.650824 +1090.678197 +1090.698743 +1090.723152 +1090.767840 +1090.850058 +1090.873235 +1090.905236 +1090.959748 +1090.991516 +1091.040634 +1091.183591 +1091.403171 +1091.482292 +1091.599508 +1091.643464 +1091.719055 +1091.772035 +1091.831942 +1091.846927 +1091.931376 +1091.995378 +1092.032208 +1092.039367 +1092.181159 +1092.252820 +1092.355351 +1092.359680 +1092.382024 +1092.435571 +1092.531575 +1092.610429 +1092.636670 +1092.723483 +1092.809164 +1092.871035 +1092.908864 +1092.926213 +1092.951688 +1092.982690 +1092.997242 +1093.034638 +1093.038834 +1093.187252 +1093.254018 +1093.349589 +1093.487451 +1093.579992 +1093.635470 +1093.698107 +1093.767904 +1093.793845 +1093.873165 +1093.937834 +1093.967005 +1093.998040 +1094.006931 +1094.064740 +1094.113258 +1094.195942 +1094.238533 +1094.279059 +1094.289016 +1094.361177 +1094.409395 +1094.439165 +1094.491080 +1094.527044 +1094.564173 +1094.609561 +1094.694143 +1094.729108 +1094.805032 +1094.831406 +1094.899538 +1094.946191 +1094.976194 +1095.044659 +1095.119451 +1095.162208 +1095.184186 +1095.197140 +1095.256880 +1095.288515 +1095.311892 +1095.343593 +1095.404466 +1095.449188 +1095.633370 +1095.707529 +1095.740163 +1095.760343 +1095.817086 +1095.862640 +1095.882787 +1095.930106 +1095.989147 +1096.035800 +1096.091178 +1096.153616 +1096.281355 +1096.328874 +1096.352217 +1096.384285 +1096.407362 +1096.452983 +1096.527442 +1096.576825 +1096.612756 +1096.662606 +1096.691278 +1096.756346 +1096.801001 +1096.938830 +1096.963771 +1097.004764 +1097.051917 +1097.108826 +1097.153282 +1097.202000 +1097.334967 +1097.385449 +1097.427274 +1097.436298 +1097.479056 +1097.577457 +1097.635899 +1097.654380 +1097.759908 +1097.839462 +1097.936464 +1098.029338 +1098.129738 +1098.141493 +1098.144789 +1098.151915 +1098.230071 +1098.241093 +1098.249218 +1098.329271 +1098.330537 +1098.330870 +1098.341293 +1098.349751 +1098.429438 +1098.430703 +1098.440693 +1098.445954 +1098.530803 +1098.541259 +1098.544589 +1098.629904 +1098.631868 +1098.641559 +1098.643790 +1098.729804 +1098.730669 +1098.741425 +1098.743956 +1098.831036 +1098.831602 +1098.839794 +1098.842358 +1098.940093 +1098.942657 +1099.031835 +1099.041558 +1099.046020 +1099.142257 +1099.146320 +1099.242124 +1099.247286 +1099.340026 +1099.442324 +1099.449283 +1099.530502 +1099.531967 +1099.542723 +1099.544988 +1099.630835 +1099.631101 +1099.639826 +1099.642856 +1099.742457 +1099.842323 +1099.844521 +1099.942756 +1099.946153 +1100.142057 +1100.231867 +1100.242423 +1100.249882 +1100.342256 +1100.439492 +1100.542323 +1100.557474 +1100.646552 +1100.742356 +1100.747317 +1100.832199 +1100.842855 +1100.845219 +1100.942356 +1100.949182 +1101.043554 +1101.142455 +1101.230667 +1101.241090 +1101.244020 +1101.339858 +1101.342921 +1101.441989 +1101.444386 +1101.546051 +1101.732132 +1101.743054 +1101.843087 +1101.847316 +1101.939890 +1101.942854 +1102.042687 +1102.046184 +1102.131665 +1102.142821 +1102.144952 +1102.247349 +1102.457539 +1102.540589 +1102.543952 +1102.642687 +1102.647582 +1102.744918 +1102.832064 +1102.842021 +1102.942653 +1102.945417 +1103.041654 +1103.398863 +1103.662499 +1104.594300 +1105.636923 +1106.163662 +1106.215377 +1106.260565 +1106.301724 +1108.558532 +1110.451071 +1111.129558 +1112.085701 +1112.090629 +1112.111009 +1112.772713 +1113.244441 +1113.247039 +1114.082236 +1114.084966 +1114.636148 +1115.213903 +1115.569747 +1115.924525 +1115.931685 +1116.418331 +1116.421128 +1116.430186 +1116.823492 +1116.872809 +1117.733481 +1118.305209 +1118.307806 +1119.229150 +1119.238308 +1119.512200 +1119.863482 +1119.885926 +1120.641503 +1121.192086 +1121.590553 +1121.593450 +1121.625718 +1122.093750 +1122.864245 +1123.179529 +1123.440968 +1124.683591 +1125.029611 +1125.590616 +1125.620020 +1125.967006 +1127.011760 +1128.436933 +1129.602567 +1130.713754 +1130.716751 +1130.727707 +1131.613420 +1131.615985 +1131.618649 +1132.958740 +1133.343222 +1133.443622 +1133.452013 +1133.532300 +1133.543389 +1133.547518 +1133.643488 +1133.650381 +1133.745286 +1133.951746 +1134.045020 +1134.146318 +1134.243121 +1134.346551 +1134.442955 +1134.445652 +1134.544420 +1134.553444 +1134.644620 +1134.647383 +1134.731799 +1134.743587 +1134.851279 +1134.943354 +1135.044120 +1135.047450 +1135.143021 +1135.332498 +1135.558272 +1136.144918 +1136.148781 +1136.345151 +1136.356473 +1136.445250 +1136.451977 +1136.544751 +1136.553209 +1136.669160 +1136.846016 +1136.853608 +1136.946382 +1137.044584 +1137.344051 +1137.444151 +1137.446215 +1137.644284 +1137.646648 +1137.745183 +1137.832029 +1137.833960 +1137.849711 +1137.945382 +1138.522871 +1138.525635 +1138.534226 +1140.490002 +1141.235389 +1142.571751 +1142.574815 +1146.023662 +1147.680437 +1148.260423 +1148.262521 +1148.264719 +1148.999384 +1149.002214 +1149.120030 +1150.120928 +1150.123658 +1151.121226 +1152.153593 +1153.951593 +1154.201343 +1154.204607 +1154.737040 +1155.361615 +1156.583059 +1156.596113 +1157.275699 +1157.278363 +1157.280961 +1157.589385 +1157.592882 +1157.669738 +1157.810830 +1158.030477 +1158.205468 +1158.385721 +1158.559980 +1159.031009 +1159.399540 +1159.402837 +1159.660545 +1160.772099 +1161.101103 +1162.042661 +1162.049754 +1163.026576 +1163.046156 +1163.461274 +1164.263804 +1164.266768 +1164.454946 +1165.665534 +1166.062970 +1166.829236 +1166.832133 +1166.844454 +1168.130700 +1168.139125 +1168.425838 +1168.549880 +1168.730766 +1168.748482 +1168.833064 +1168.843919 +1168.847949 +1168.944485 +1169.225371 +1169.254608 +1169.345384 +1169.448814 +1169.547415 +1169.646016 +1169.744418 +1169.750878 +1169.845317 +1169.854408 +1170.059602 +1170.246216 +1170.345183 +1170.355939 +1170.441753 +1170.444950 +1170.543884 +1170.548680 +1170.641587 +1170.644350 +1170.744317 +1170.850144 +1170.934260 +1170.946415 +1171.033561 +1171.045416 +1171.134260 +1171.145749 +1171.148413 +1171.245582 +1171.253108 +1171.346248 +1171.442785 +1171.632428 +1171.801759 +1171.848578 +1172.042917 +1172.144649 +1172.154739 +1172.245348 +1172.346313 +1172.362198 +1172.447246 +1172.546147 +1172.645847 +1172.650576 +1172.743050 +1172.747412 +1173.033226 +1173.043183 +1173.478247 +1173.977181 +1174.064094 +1174.520004 +1174.567657 +1174.768056 +1175.280843 +1175.283740 +1176.041548 +1176.870784 +1176.873249 +1176.875746 +1177.111377 +1177.278776 +1177.728659 +1178.030457 +1178.131256 +1178.315338 +1181.583034 +1183.223559 +1183.225723 +1183.227788 +1183.230485 +1183.376306 +1183.378537 +1183.380801 +1183.384131 +1183.540908 +1183.543339 +1183.546302 +1183.851463 +1183.853728 +1183.855859 +1183.858656 +1184.041007 +1184.043405 +1184.046002 +1184.228952 +1184.231949 +1184.545036 +1184.547733 +1185.115465 +1185.118096 +1185.121026 +1185.674705 +1186.476403 +1186.479067 +1186.481897 +1187.202476 +1187.205439 +1187.220591 +1188.254722 +1188.257386 +1189.417059 +1190.661214 +1190.969538 +1191.168406 +1191.188086 +1191.684856 +1192.237669 +1192.573233 +1193.862775 +1193.906598 +1194.031407 +1194.215989 +1194.218186 +1194.220784 +1194.436368 +1194.438799 +1194.441529 +1194.565539 +1194.568769 +1194.715289 +1195.238831 +1195.241595 +1195.518818 +1195.521382 +1195.524146 +1195.724379 +1195.727109 +1195.729906 +1195.961641 +1195.964139 +1195.966603 +1195.981521 +1196.029440 +1196.223279 +1196.226010 +1196.448421 +1197.041161 +1197.155646 +1197.158310 +1197.161440 +1197.540128 +1197.542925 +1197.546255 +1198.029804 +1198.042658 +1198.213920 +1198.886846 +1198.889410 +1199.220679 +1199.222977 +1199.225141 +1199.228238 +1199.233499 +1199.412021 +1200.663501 +1200.665899 +1200.668130 +1201.519012 +1202.084013 +1203.132097 +1203.231697 +1203.244085 +1203.343885 +1203.433029 +1203.443618 +1203.447315 +1203.530931 +1203.542919 +1203.753608 +1203.848147 +1203.931963 +1203.942819 +1203.948446 +1204.030531 +1204.042685 +1204.051810 +1204.143285 +1204.150711 +1204.231230 +1204.233394 +1204.243951 +1204.343784 +1204.445515 +1204.645415 +1204.660067 +1204.745249 +1204.844982 +1204.944682 +1205.264329 +1205.353240 +1205.443183 +1205.446214 +1205.544549 +1205.549477 +1205.645115 +1205.650942 +1205.741285 +1205.850176 +1205.932693 +1205.945780 +1206.042817 +1206.143083 +1206.543216 +1206.646978 +1206.744248 +1206.832060 +1206.940918 +1206.946445 +1207.033258 +1207.045579 +1207.134058 +1207.145047 +1207.150841 +1207.245180 +1207.251274 +1207.342216 +1207.432426 +1207.442515 +1207.541883 +1207.544780 +1207.642082 +1207.743814 +1207.758266 +1207.844746 +1208.050840 +1208.163261 +1208.719237 +1208.721935 +1208.858198 +1208.861295 +1209.352737 +1209.507881 +1209.538451 +1210.191564 +1210.552536 +1210.587800 +1210.608280 +1210.830757 +1211.397590 +1212.170716 +1212.587299 +1213.110808 +1213.318234 +1213.927857 +1213.932219 +1213.963954 +1214.403015 +1214.406944 +1214.413737 +1214.719265 +1214.852165 +1214.915235 +1214.989761 +1215.014536 +1215.039311 +1215.234649 +1215.326290 +1215.392557 +1215.425891 +1215.483633 +1215.518065 +1215.548568 +1215.595488 +1215.727389 +1216.009207 +1216.034282 +1216.258258 +1216.591724 +1216.671011 +1216.687495 +1216.943039 +1216.999216 +1217.039642 +1217.081600 +1217.135779 +1217.150431 +1217.156791 +1217.183798 +1217.227387 +1217.262486 +1217.296885 +1217.324790 +1217.327787 +1217.412935 +1217.450131 +1217.494986 +1217.562052 +1217.604410 +1217.625589 +1217.633381 +1218.232714 +1218.234846 +1218.370909 +1218.376038 +1218.503244 +1218.505608 +1218.508239 +1218.774938 +1218.777203 +1218.779367 +1218.782131 +1219.051595 +1219.056656 +1219.384861 +1219.387159 +1219.389357 +1219.392121 +1219.742437 +1219.744934 +1219.747798 +1220.057421 +1220.060585 +1220.939738 +1220.942535 +1220.945499 +1221.293950 +1221.728349 +1221.737673 +1222.329447 +1222.507003 +1223.335640 +1223.338603 +1223.740135 +1223.784191 +1224.408766 +1224.564943 +1224.665908 +1224.894712 +1224.897909 +1225.898141 +1226.286886 +1226.289383 +1226.292080 +1226.721850 +1227.037068 +1228.075295 +1228.427709 +1228.430007 +1228.567036 +1228.812291 +1229.249453 +1229.421381 +1229.423779 +1229.426976 +1229.542160 +1229.544724 +1229.548387 +1230.029839 +1230.238164 +1230.240928 +1230.453515 +1230.601533 +1230.604564 +1231.279821 +1231.282651 +1231.414586 +1231.417217 +1231.420247 +1231.539095 +1231.685348 +1231.688545 +1231.916384 +1232.207925 +1232.210756 +1233.044321 +1233.047984 +1233.187012 +1233.189676 +1233.192406 +1233.304095 +1233.308357 +1233.623875 +1233.970794 +1234.163401 +1234.722808 +1236.126436 +1236.128934 +1236.131731 +1236.342786 +1236.711384 +1236.928666 +1236.931663 +1237.043618 +1237.290205 +1238.046681 +1238.243983 +1238.246414 +1238.332328 +1238.343916 +1238.349677 +1238.444316 +1238.547246 +1238.646214 +1238.744182 +1238.748911 +1238.843183 +1238.845315 +1238.933826 +1238.943483 +1238.946080 +1239.045048 +1239.144548 +1239.233759 +1239.244681 +1239.249477 +1239.344415 +1239.346946 +1239.444715 +1239.446912 +1239.545480 +1239.644748 +1239.744581 +1239.747079 +1239.844681 +1239.848044 +1239.944881 +1240.045147 +1240.047578 +1240.144714 +1240.147045 +1240.244714 +1240.247444 +1240.345879 +1240.445013 +1240.447477 +1240.488004 +1240.549908 +1240.610081 +1240.748909 +1240.845079 +1240.847377 +1240.850474 +1241.146012 +1241.244713 +1241.247244 +1241.344946 +1241.347343 +1241.445312 +1241.450140 +1241.543980 +1241.546411 +1241.645578 +1241.647843 +1241.847976 +1241.943513 +1242.044212 +1242.046743 +1242.149973 +1242.244079 +1242.248641 +1242.344279 +1242.444845 +1242.544578 +1242.552071 +1242.645311 +1242.649407 +1242.734155 +1242.745843 +1242.747975 +1242.833456 +1242.845044 +1242.847242 +1242.944078 +1242.946909 +1243.044778 +1243.469353 +1243.471817 +1243.474348 +1244.227194 +1244.229725 +1244.232355 +1244.379541 +1244.383537 +1244.397523 +1244.583138 +1244.586135 +1244.906148 +1244.909611 +1245.522531 +1245.525128 +1245.527992 +1245.675278 +1246.075444 +1246.078141 +1246.081005 +1246.361491 +1246.363822 +1246.365986 +1246.369083 +1246.573545 +1246.576243 +1247.419465 +1247.421896 +1247.424227 +1247.427424 +1247.912938 +1247.915302 +1247.917567 +1247.920397 +1249.376440 +1249.474441 +1249.480569 +1249.498151 +1249.533582 +1249.580136 +1249.638477 +1249.649333 +1249.656326 +1249.758257 +1249.798317 +1249.836912 +1249.955660 +1250.019629 +1250.072310 +1250.246302 +1250.274973 +1250.321893 +1250.511337 +1250.544004 +1250.589858 +1250.651929 +1250.676571 +1250.859788 +1250.886262 +1250.906808 +1250.961286 +1250.978103 +1250.993055 +1251.032182 +1251.079501 +1251.101646 +1251.166381 +1251.180067 +1251.219794 +1251.234280 +1251.259388 +1251.269811 +1251.321592 +1251.325755 +1251.336244 +1251.356957 +1251.368179 +1251.406208 +1251.445369 +1251.451729 +1251.457357 +1251.483497 +1251.520227 +1251.550863 +1251.692654 +1251.740007 +1251.752128 +1251.771342 +1251.784129 +1251.798582 +1251.843903 +1251.850929 +1251.865748 +1251.871642 +1251.953626 +1252.059254 +1252.069877 +1252.107040 +1252.202011 +1252.238941 +1252.255058 +1252.257522 +1252.272341 +1252.322724 +1252.351195 +1252.354958 +1252.371741 +1252.414665 +1252.419160 +1252.436510 +1252.504875 +1252.508138 +1252.579733 +1252.597082 +1252.614898 +1252.636243 +1252.706206 +1252.823722 +1252.846433 +1252.874238 +1252.934511 +1252.993952 +1253.037109 +1253.215363 +1253.217595 +1253.424920 +1253.427285 +1253.429782 +1253.813398 +1253.815829 +1253.818560 +1253.947231 +1254.127650 +1254.491819 +1254.494749 +1254.928182 +1254.930846 +1254.933643 +1255.256554 +1255.259051 +1255.262015 +1255.423320 +1255.426184 +1255.637839 +1255.910532 +1255.913329 +1256.773435 +1256.776132 +1257.531943 +1257.534806 +1257.783624 +1257.786088 +1257.788419 +1257.803537 +1258.092615 +1258.440933 +1258.444129 +1258.768105 +1259.038634 +1259.154552 +1260.029043 +1260.178826 +1260.535136 +1260.537467 +1260.539698 +1260.543228 +1261.133571 +1261.136335 +1261.139065 +1261.143261 +1261.579458 +1261.582155 +1262.031239 +1262.227742 +1262.904065 +1262.906529 +1263.297072 +1263.299403 +1263.301800 +1263.304997 +1263.420282 +1263.888813 +1264.438396 +1264.440660 +1264.442858 +1264.446121 +1264.452715 +1264.838395 +1264.841293 +1264.857643 +1265.031635 +1265.058309 +1265.253147 +1265.256277 +1265.506893 +1265.509291 +1265.511755 +1265.533366 +1265.678854 +1265.851681 +1266.028537 +1266.421611 +1266.423742 +1266.425840 +1266.806192 +1266.809223 +1267.300298 +1267.536961 +1267.540258 +1267.917480 +1268.019245 +1268.031599 +1268.522341 +1269.093236 +1269.226736 +1269.229600 +1269.410053 +1269.412950 +1269.416113 +1269.533895 +1270.025437 +1270.027901 +1270.030298 +1271.048046 +1271.315645 +1271.318342 +1271.321140 +1272.299260 +1272.301458 +1272.306287 +1272.587339 +1273.012347 +1273.014811 +1273.144315 +1273.150075 +1273.250075 +1273.333725 +1273.445713 +1273.545679 +1273.547844 +1273.645147 +1273.745946 +1273.845646 +1273.945346 +1273.947677 +1274.034357 +1274.045912 +1274.056735 +1274.148343 +1274.153904 +1274.248842 +1274.445912 +1274.449342 +1274.548442 +1274.634689 +1274.648342 +1274.748209 +1274.846477 +1274.848708 +1274.947809 +1275.045611 +1275.048775 +1275.145978 +1275.149008 +1275.245245 +1275.348308 +1275.446743 +1275.448974 +1275.545911 +1275.549640 +1275.634522 +1275.649873 +1275.734788 +1275.753037 +1275.846177 +1275.849673 +1275.945411 +1275.948607 +1276.046243 +1276.054735 +1276.146143 +1276.246176 +1276.249340 +1276.434355 +1276.446276 +1276.646908 +1276.649140 +1276.749839 +1276.846942 +1276.856232 +1276.942479 +1276.945576 +1277.045543 +1277.049572 +1277.146042 +1277.148240 +1277.248373 +1277.345942 +1277.348839 +1277.445942 +1277.448173 +1277.545609 +1277.548606 +1277.645975 +1277.649105 +1277.745642 +1277.748439 +1277.846008 +1277.946141 +1277.949937 +1278.046441 +1278.051369 +1278.839380 +1278.983436 +1280.064055 +1281.654895 +1281.726823 +1281.830586 +1281.868881 +1281.933117 +1282.735414 +1282.829819 +1283.095620 +1283.685896 +1284.023491 +1284.138310 +1284.225223 +1284.360421 +1284.466814 +1284.692288 +1284.770110 +1284.813400 +1284.845868 +1284.998382 +1285.032548 +1285.081232 +1285.178302 +1285.192654 +1285.202644 +1285.220093 +1285.249630 +1285.264482 +1285.315431 +1285.405907 +1285.413167 +1285.427353 +1285.458255 +1285.476603 +1285.632181 +1285.635011 +1285.649330 +1285.668245 +1285.683663 +1285.701212 +1285.772640 +1285.898281 +1285.911468 +1285.961751 +1286.069044 +1286.087758 +1286.117895 +1286.152194 +1286.365414 +1286.481098 +1286.570675 +1286.620125 +1286.722390 +1286.779799 +1286.784028 +1286.800145 +1286.851327 +1286.950994 +1286.963382 +1286.981197 +1286.996615 +1287.077701 +1287.101210 +1287.105106 +1287.139272 +1287.250727 +1287.265479 +1287.331247 +1287.589954 +1287.593950 +1287.626185 +1287.804706 +1287.853124 +1287.861616 +1287.867477 +1287.885059 +1287.922821 +1287.969708 +1288.217959 +1288.220357 +1288.350027 +1289.151625 +1289.227948 +1289.414128 +1290.697910 +1290.720621 +1290.744996 +1290.782958 +1290.833175 +1290.864610 +1290.961346 +1290.987021 +1291.023551 +1291.054786 +1291.108333 +1291.172069 +1293.916189 +1294.261676 +1294.273531 +1294.301403 +1294.378959 +1294.502002 +1294.556248 +1294.983087 +1295.365005 +1295.445791 +1295.725577 +1295.733236 +1295.764438 +1295.789880 +1295.818817 +1295.838031 +1295.868701 +1295.889114 +1295.917019 +1295.969034 +1296.005897 +1296.061708 +1296.095973 +1296.273762 +1296.285916 +1296.309726 +1296.329107 +1296.339596 +1296.370132 +1296.382520 +1296.389546 +1296.399303 +1296.423978 +1296.434967 +1296.595806 +1296.645124 +1296.678790 +1296.687181 +1296.709526 +1296.733002 +1296.753315 +1297.286715 +1297.377624 +1297.394873 +1297.419748 +1297.433867 +1297.444856 +1298.162971 +1298.182218 +1298.247653 +1298.264170 +1298.299967 +1298.574592 +1298.602997 +1298.619747 +1298.650982 +1298.679953 +1298.710390 +1298.870629 +1298.924109 +1299.004195 +1299.043489 +1299.404228 +1299.462503 +1299.494871 +1299.513752 +1299.539893 +1299.550116 +1299.574758 +1299.580052 +1299.610955 +1299.640059 +1299.735563 +1299.802796 +1299.848783 +1299.900332 +1299.934098 +1299.987877 +1300.041024 +1300.487544 +1300.559838 +1300.660704 +1300.712485 +1300.778719 +1300.803761 +1300.818879 +1300.856808 +1300.899698 +1300.956008 +1301.011486 +1301.042522 +1301.520676 +1301.578652 +1301.699364 +1301.728235 +1301.750879 +1301.788775 +1301.822907 +1301.880017 +1301.980383 +1302.022541 +1302.198431 +1302.682980 +1302.690905 +1302.707821 +1302.721275 +1302.782647 +1302.953775 +1302.999862 +1303.042320 +1303.174354 +1303.229832 +1303.303658 +1303.411417 +1303.479249 +1303.579249 +1303.626901 +1303.721573 +1303.736958 +1303.751610 +1303.774054 +1303.869126 +1303.906189 +1303.945549 +1303.977817 +1304.050078 +1304.123105 +1304.145882 +1304.166961 +1304.216578 +1304.399661 +1304.436524 +1304.481812 +1304.541286 +1304.568759 +1304.625302 +1304.686507 +1304.723304 +1304.775452 +1304.823137 +1304.887107 +1304.993034 +1305.046714 +1305.129031 +1305.153706 +1305.169890 +1305.204755 +1305.224802 +1305.255771 +1305.313247 +1305.379614 +1305.424802 +1305.460799 +1305.503656 +1305.550409 +1305.673553 +1305.726833 +1305.754072 +1305.777649 +1305.864495 +1305.924934 +1305.972953 +1306.006519 +1306.018940 +1306.049710 +1306.104555 +1306.220305 +1306.283176 +1306.338620 +1306.390002 +1306.432293 +1306.499126 +1306.533359 +1306.561597 +1306.601224 +1306.650375 +1306.804121 +1306.846479 +1306.885806 +1306.964161 +1306.985340 +1307.035723 +1307.114444 +1307.138986 +1307.170921 +1307.219738 +1307.300158 +1307.344713 +1307.367957 +1307.408017 +1307.497660 +1307.540484 +1307.574883 +1307.587970 +1307.595096 +1307.657633 +1307.749541 +1307.803387 +1307.945812 +1307.965359 +1308.012412 +1308.021702 +1308.042148 +1308.144180 +1308.150806 +1308.232858 +1308.243680 +1308.247143 +1308.344046 +1308.347077 +1308.433190 +1308.433690 +1308.443647 +1308.447076 +1308.533523 +1308.543780 +1308.550007 +1308.641848 +1308.644379 +1308.743879 +1308.748508 +1308.842248 +1308.845211 +1308.941615 +1309.033723 +1309.034289 +1309.044312 +1309.142047 +1309.145078 +1309.241914 +1309.244645 +1309.334355 +1309.344278 +1309.348507 +1309.426230 +1309.442746 +1309.445544 +1309.542380 +1309.545044 +1309.644678 +1309.650572 +1309.744644 +1309.746709 +1309.844178 +1309.849573 +1309.944544 +1309.948240 +1310.034687 +1310.042912 +1310.045610 +1310.144444 +1310.147608 +1310.244610 +1310.334221 +1310.342113 +1310.445609 +1310.533122 +1310.533688 +1310.547574 +1310.644810 +1310.745109 +1310.844610 +1310.944743 +1311.043111 +1311.045808 +1311.144576 +1311.147906 +1311.244410 +1311.246607 +1311.334519 +1311.343510 +1311.346374 +1311.443710 +1311.446441 +1311.544210 +1311.547073 +1311.644642 +1311.646774 +1311.742378 +1311.745208 +1311.842977 +1311.845808 +1311.944309 +1312.034485 +1312.044109 +1312.143443 +1312.233753 +1312.240979 +1312.244941 +1312.344375 +1312.444975 +1312.541977 +1312.544841 +1312.632953 +1312.644342 +1312.744641 +1312.842577 +1312.845374 +1312.944941 +1312.947871 +1313.034718 +1313.042177 +1313.044974 +1313.296289 +1313.341444 +1313.370148 +1313.449369 +1313.537548 +1313.631720 +1313.852965 +1313.951933 +1314.017001 +1314.085632 +1314.127823 +1314.208809 +1314.242342 +1314.317034 +1314.406977 +1314.515702 +1314.648835 +1314.691726 +1314.741509 +1314.818465 +1314.858359 +1314.912671 +1314.979471 +1315.027256 +1315.072378 +1315.117932 +1315.195255 +1315.251132 +1315.310440 +1315.331185 +1315.368581 +1315.409873 +1315.513969 +1315.543173 +1315.567948 +1315.599883 +1315.653163 +1315.680469 +1315.714302 +1315.764818 +1315.841974 +1315.879204 +1315.935148 +1315.959989 +1316.026123 +1316.056892 +1316.067448 +1316.079903 +1316.121394 +1316.146270 +1316.166216 +1316.231784 +1316.236879 +1316.266249 +1316.319496 +1316.385563 +1316.420695 +1316.446902 +1316.475174 +1316.520895 +1316.547202 +1316.558157 +1316.576938 +1316.611637 +1316.618730 +1316.671910 +1316.689193 +1316.719363 +1316.727022 +1316.766549 +1316.798383 +1316.834381 +1316.849432 +1316.881034 +1316.939076 +1316.967248 +1316.991390 +1317.014700 +1317.029152 +1317.065483 +1317.148366 +1317.191190 +1317.235213 +1317.242639 +1317.248866 +1317.280268 +1317.343971 +1317.366615 +1317.447933 +1317.481999 +1317.563384 +1317.588126 +1317.619095 +1317.669911 +1317.733880 +1317.758522 +1317.813534 +1317.867480 +1317.985029 +1318.025322 +1318.042471 +1318.065448 +1318.107373 +1318.171542 +1318.244036 +1318.308039 +1318.335345 +1318.488825 +1318.547932 +1318.591722 +1318.650030 +1318.694719 +1318.807472 +1318.884728 +1318.902943 +1318.936277 +1318.977502 +1319.182197 +1319.224788 +1319.298614 +1319.316763 +1319.332114 +1319.338174 +1319.346766 +1319.365247 +1319.397016 +1319.408537 +1319.412700 +1319.426519 +1319.445467 +1319.492820 +1319.528850 +1319.535211 +1319.544734 +1319.558121 +1319.569909 +1319.633812 +1319.638840 +1319.643269 +1319.658953 +1319.707605 +1319.749230 +1319.753925 +1319.782430 +1319.810435 +1319.891854 +1319.895716 +1319.905973 +1319.915730 +1319.933312 +1319.956755 +1319.982230 +1320.004208 +1320.019193 +1320.031281 +1320.063448 +1320.086492 +1320.095017 +1320.099412 +1320.142203 +1320.176435 +1320.273005 +1320.283129 +1320.300811 +1320.317761 +1320.387857 +1320.392552 +1320.401210 +1320.405906 +1320.468709 +1320.511800 +1320.525819 +1320.540904 +1320.545200 +1320.590088 +1320.620824 +1320.630348 +1320.638040 +1320.649195 +1320.665612 +1320.681696 +1320.695582 +1320.726518 +1320.732112 +1320.742935 +1320.776868 +1320.835909 +1320.865879 +1320.870374 +1320.883960 +1320.905139 +1320.930714 +1320.936808 +1320.952425 +1321.002808 +1321.019458 +1321.027983 +1321.080564 +1321.084993 +1321.104240 +1321.131812 +1321.202841 +1321.208735 +1321.213331 +1321.226518 +1321.236308 +1321.269574 +1321.281796 +1321.286258 +1321.300310 +1321.305372 +1321.329981 +1321.361616 +1321.398912 +1321.404673 +1321.409168 +1321.437440 +1321.453624 +1321.498845 +1321.532212 +1321.536807 +1321.546697 +1321.551259 +1321.585025 +1321.603240 +1321.610700 +1321.622588 +1321.635941 +1321.642268 +1321.681495 +1321.731079 +1321.736274 +1321.741236 +1321.755421 +1321.773037 +1321.803174 +1321.834775 +1321.841202 +1321.856520 +1321.891485 +1321.924386 +1321.930047 +1321.940736 +1321.945465 +1322.000210 +1322.045997 +1322.063014 +1322.122887 +1322.127283 +1322.142001 +1322.146563 +1322.227349 +1322.234575 +1322.315527 +1322.373270 +1322.376866 +1322.420556 +1322.450692 +1322.462647 +1322.468374 +1322.492650 +1322.497845 +1322.549327 +1322.566443 +1322.580262 +1322.584458 +1322.593915 +1322.601708 +1322.614628 +1322.631211 +1322.665244 +1322.670639 +1322.677998 +1322.688354 +1322.750758 +1322.784625 +1322.801841 +1322.818857 +1322.834075 +1322.839803 +1322.848694 +1322.894248 +1322.905071 +1322.917725 +1322.936006 +1322.953622 +1322.963912 +1322.971071 +1322.983592 +1322.997312 +1323.240468 +1324.282059 +1324.297477 +1324.307234 +1324.327114 +1324.790883 +1324.805402 +1324.818422 +1324.867040 +1324.890883 +1324.927080 +1324.955685 +1324.987753 +1325.053687 +1325.147293 +1325.749923 +1325.758348 +1325.775264 +1325.791781 +1325.859680 +1325.887918 +1326.416189 +1326.441264 +1326.585686 +1326.631840 +1326.686918 +1326.788250 +1326.986985 +1327.015856 +1327.044161 +1327.077727 +1327.100604 +1327.139832 +1327.194244 +1327.222116 +1327.245626 +1327.270667 +1327.305466 +1327.427011 +1327.437700 +1327.483554 +1327.524080 +1327.640764 +1327.689415 +1327.729175 +1327.780257 +1327.857413 +1327.884653 +1327.904300 +1327.923181 +1327.935535 +1327.977460 +1328.016554 +1328.063640 +1328.089448 +1328.097939 +1328.145592 +1328.232804 +1328.275095 +1328.309461 +1328.358312 +1328.418418 +1328.470500 +1328.486883 +1328.544059 +1328.580223 +1328.637299 +1328.746623 +1328.773030 +1328.835334 +1329.061408 +1329.115454 +1329.163439 +1329.214488 +1329.246789 +1329.307295 +1329.362973 +1329.411025 +1329.493975 +1329.524245 +1329.600235 +1329.846556 +1329.919782 +1330.001900 +1330.092376 +1330.397604 +1330.463771 +1330.563305 +1330.609292 +1330.655313 +1330.713221 +1330.807860 +1330.860141 +1330.884949 +1330.909791 +1330.957377 +1331.009591 +1331.065369 +1331.194107 +1331.247420 +1331.300101 +1331.369431 +1331.413354 +1331.461173 +1331.525575 +1331.574126 +1331.630137 +1331.733700 +1331.770729 +1331.815984 +1331.881885 +1331.994539 +1332.072960 +1332.142491 +1332.212321 +1332.274059 +1332.332833 +1332.384582 +1332.399300 +1332.502164 +1332.588278 +1332.639893 +1332.715517 +1332.794904 +1332.852846 +1332.899766 +1332.972493 +1333.023276 +1333.042523 +1333.185713 +1333.188677 +1333.497667 +1333.636162 +1333.716881 +1333.786612 +1333.896701 +1333.944187 +1334.023175 +1334.030501 +1334.206225 +1334.211819 +1334.258806 +1334.378153 +1334.594236 +1334.627770 +1334.685645 +1334.737160 +1334.824939 +1334.901396 +1334.943687 +1334.970726 +1335.010653 +1335.042355 +1335.199031 +1335.201695 +1335.205225 +1335.420343 +1335.545384 +1335.576620 +1335.646949 +1335.723539 +1335.778185 +1335.817545 +1335.844718 +1335.859803 +1335.903692 +1335.990139 +1336.005091 +1336.211484 +1336.214281 +1336.259902 +1336.495300 +1336.556306 +1336.590771 +1336.659736 +1336.730831 +1336.767794 +1336.790804 +1336.850445 +1336.862433 +1337.037424 +1337.259335 +1337.443151 +1337.512116 +1337.534959 +1337.638789 +1337.686308 +1337.723604 +1337.882079 +1337.913048 +1337.956038 +1338.008752 +1338.024170 +1338.042285 +1338.189338 +1338.192135 +1338.731761 +1338.884542 +1338.944948 +1339.034092 +1339.106187 +1339.190069 +1339.221738 +1339.252174 +1339.296363 +1339.351241 +1339.395564 +1339.428930 +1339.466093 +1339.519440 +1339.573785 +1339.585707 +1339.647212 +1339.716842 +1339.753572 +1339.773452 +1339.804754 +1339.845313 +1339.887971 +1339.916143 +1340.003089 +1340.087305 +1340.243482 +1340.302189 +1340.334724 +1340.391100 +1340.410947 +1340.569156 +1340.605952 +1340.854270 +1340.910381 +1340.961296 +1340.990767 +1341.019638 +1341.117607 +1341.286238 +1341.328229 +1341.365259 +1341.408382 +1341.415242 +1341.478012 +1341.524566 +1341.559131 +1341.596627 +1341.634955 +1341.686737 +1341.728728 +1341.758698 +1341.804719 +1341.861295 +1341.912910 +1342.016374 +1342.058831 +1342.094795 +1342.103420 +1342.270486 +1342.823099 +1342.841747 +1342.847375 +1342.856799 +1342.952703 +1343.143778 +1343.147674 +1343.151770 +1343.243745 +1343.247541 +1343.342846 +1343.345843 +1343.431723 +1343.432656 +1343.444011 +1343.543512 +1343.549339 +1343.642512 +1343.644977 +1343.649239 +1343.744011 +1343.746342 +1343.843944 +1343.944011 +1344.042112 +1344.044810 +1344.132655 +1344.133954 +1344.134287 +1344.144044 +1344.146308 +1344.233754 +1344.244377 +1344.247873 +1344.344610 +1344.442745 +1344.544709 +1344.643710 +1344.834386 +1344.844543 +1344.847273 +1344.933953 +1344.935385 +1344.944276 +1345.042911 +1345.143976 +1345.147439 +1345.243576 +1345.344043 +1345.443809 +1345.533719 +1345.543976 +1345.733120 +1345.743076 +1345.745940 +1345.844542 +1345.944541 +1345.947572 +1346.044108 +1346.134651 +1346.142477 +1346.244641 +1346.247571 +1346.344075 +1346.442410 +1346.445240 +1346.544241 +1346.634284 +1346.641810 +1346.644907 +1346.743109 +1346.834118 +1346.845207 +1346.934617 +1346.943042 +1346.945972 +1347.045073 +1347.047204 +1347.144574 +1347.245406 +1347.343841 +1347.346671 +1347.442775 +1347.445472 +1347.544107 +1347.745239 +1347.751433 +1347.833484 +1347.844972 +1347.945006 +1348.034383 +1348.044573 +1349.020596 +1349.049933 +1349.082534 +1349.105044 +1350.191657 +1350.353228 +1350.545969 +1350.588060 +1350.756891 +1350.789425 +1350.815332 +1350.845935 +1350.894154 +1351.729784 +1351.744802 +1351.812068 +1351.932348 +1351.954592 +1351.982964 +1352.051229 +1352.290855 +1352.415930 +1352.465647 +1352.525820 +1352.553060 +1352.575604 +1352.606606 +1352.635477 +1352.751661 +1352.782630 +1352.796316 +1353.031181 +1353.046466 +1353.078034 +1353.526019 +1354.289288 +1354.336574 +1354.944599 +1354.954056 +1354.969574 +1354.973437 +1354.985458 +1354.999344 +1355.017027 +1355.131112 +1355.446097 +1356.608367 +1358.260846 +1358.407533 +1359.309630 +1360.380358 +1360.383721 +1360.728742 +1360.753418 +1361.657413 +1361.922214 +1361.961442 +1362.843859 +1363.890877 +1364.087880 +1364.123711 +1364.157743 +1364.231070 +1364.276957 +1364.703164 +1365.300400 +1365.312221 +1365.611954 +1365.720079 +1366.142756 +1366.148284 +1366.450115 +1366.966132 +1367.118180 +1367.120977 +1367.124174 +1367.129935 +1367.219712 +1367.306425 +1367.966231 +1368.148715 +1368.258405 +1368.798265 +1368.966297 +1369.391571 +1369.527668 +1369.965929 +1369.966795 +1370.194600 +1370.255906 +1370.332429 +1370.848479 +1370.966028 +1371.155272 +1371.249578 +1371.291835 +1371.338489 +1371.352708 +1371.368425 +1371.406687 +1371.630397 +1372.503789 +1372.565727 +1373.321770 +1373.425566 +1373.481643 +1373.573718 +1373.610947 +1373.644314 +1373.670321 +1373.701823 +1373.731527 +1373.764127 +1373.796395 +1373.831926 +1373.853804 +1373.870121 +1373.910481 +1373.944647 +1373.976049 +1373.990800 +1374.157101 +1374.181376 +1374.196461 +1374.237553 +1374.258100 +1374.290334 +1374.320237 +1374.837520 +1374.859831 +1374.888968 +1374.921902 +1374.948875 +1375.000723 +1375.078645 +1375.092098 +1375.202254 +1375.281508 +1375.318738 +1375.497759 +1375.532024 +1375.560529 +1375.589767 +1375.947109 +1375.965990 +1376.067189 +1376.073216 +1376.166523 +1376.177212 +1376.179243 +1376.266756 +1376.277645 +1376.279942 +1376.377878 +1376.380009 +1376.467488 +1376.478111 +1376.480542 +1376.568553 +1376.580508 +1376.668120 +1376.668387 +1376.680441 +1376.778310 +1376.780674 +1376.878310 +1376.885103 +1376.978676 +1377.078610 +1377.080774 +1377.178743 +1377.180974 +1377.186169 +1377.280907 +1377.286302 +1377.367853 +1377.378809 +1377.468020 +1377.478909 +1377.481140 +1377.568786 +1377.578842 +1377.681706 +1377.687866 +1377.768752 +1377.778742 +1377.779175 +1377.781439 +1377.786667 +1377.867487 +1377.878809 +1377.880940 +1377.885069 +1377.978875 +1377.981139 +1378.079175 +1378.081606 +1378.179175 +1378.182072 +1378.268086 +1378.279241 +1378.281406 +1378.368152 +1378.369517 +1378.379108 +1378.382038 +1378.467652 +1378.480040 +1378.484136 +1378.568019 +1378.578941 +1378.581039 +1378.668218 +1378.668918 +1378.679374 +1378.682404 +1378.686900 +1378.768451 +1378.781405 +1378.786300 +1378.879174 +1378.881405 +1378.968218 +1378.979274 +1378.981904 +1378.985767 +1379.068318 +1379.079407 +1379.081571 +1379.179407 +1379.181638 +1379.279407 +1379.281671 +1379.285167 +1379.368318 +1379.379140 +1379.381704 +1379.479173 +1379.481238 +1379.579306 +1379.581438 +1379.668317 +1379.679406 +1379.681571 +1379.768384 +1379.779439 +1379.781670 +1379.868317 +1379.879439 +1379.881504 +1379.968384 +1379.981870 +1380.082769 +1380.085966 +1380.179139 +1380.181437 +1380.279672 +1380.281803 +1380.368650 +1380.382103 +1380.386132 +1380.482702 +1380.579272 +1380.581437 +1380.669016 +1380.679638 +1380.681670 +1380.779272 +1380.781570 +1380.879472 +1380.881703 +1380.977473 +1380.980004 +1380.982768 +1382.212670 +1382.347902 +1382.870712 +1382.895520 +1383.342140 +1384.652728 +1384.679834 +1384.693520 +1384.729151 +1384.786327 +1384.903277 +1385.028585 +1385.855657 +1385.966546 +1385.978467 +1386.019293 +1386.252859 +1386.336409 +1386.431914 +1386.476236 +1386.501244 +1386.541737 +1386.664181 +1386.763881 +1387.004507 +1387.091953 +1387.179332 +1387.205739 +1387.318559 +1387.439905 +1387.467743 +1387.497946 +1387.548130 +1387.771972 +1387.804073 +1387.868575 +1387.879798 +1387.907603 +1388.009534 +1388.024020 +1388.060883 +1388.075269 +1388.102641 +1388.231612 +1388.260483 +1388.285625 +1388.326684 +1388.347896 +1388.362381 +1388.415628 +1388.446031 +1388.469341 +1388.567143 +1388.631612 +1388.662914 +1388.697079 +1388.724519 +1388.770040 +1388.811132 +1388.848861 +1388.863480 +1388.892517 +1388.943832 +1388.998944 +1389.015760 +1389.117492 +1389.145963 +1389.176733 +1389.193582 +1389.207235 +1389.295580 +1389.364811 +1389.396379 +1389.453156 +1389.461314 +1389.511631 +1389.537305 +1389.593416 +1389.624751 +1389.664078 +1389.697012 +1389.700042 +1389.727082 +1389.744065 +1389.754255 +1389.787821 +1389.804271 +1389.822520 +1389.833076 +1389.878364 +1389.890851 +1389.895447 +1389.908101 +1389.929612 +1389.940568 +1389.956053 +1389.965776 +1389.982459 +1390.014727 +1390.030012 +1390.042466 +1390.061580 +1390.074667 +1390.105636 +1390.125083 +1390.136605 +1390.154587 +1390.167474 +1390.183558 +1390.215526 +1390.230145 +1390.251590 +1390.259549 +1390.260315 +1390.269139 +1390.305336 +1390.360981 +1390.415926 +1390.445263 +1390.447694 +1390.461247 +1390.506069 +1390.518356 +1390.554287 +1390.571104 +1390.614793 +1390.637737 +1390.669605 +1390.689052 +1390.700008 +1390.715792 +1390.730910 +1390.746328 +1390.754587 +1390.761813 +1390.776598 +1390.792049 +1390.838170 +1390.867840 +1390.882792 +1390.927580 +1390.947627 +1396.035067 +1396.830172 +1397.254214 +1397.304697 +1398.251482 +1398.302231 +1398.473959 +1398.829803 +1399.009090 +1399.038394 +1399.600532 +1400.276955 +1400.374191 +1400.852778 +1400.889741 +1400.898000 +1401.131799 +1401.134296 +1401.137160 +1401.909687 +1401.967795 +1402.132997 +1402.135361 +1402.137925 +1402.141189 +1402.224239 +1402.252444 +1402.978750 +1403.137525 +1403.139889 +1403.142553 +1403.208587 +1403.246482 +1404.143418 +1404.153274 +1405.134992 +1405.137423 +1405.703922 +1405.893199 +1405.936323 +1405.977781 +1406.144581 +1406.147079 +1406.993864 +1407.943447 +1407.965958 +1407.988202 +1408.026997 +1408.049741 +1408.063893 +1408.125498 +1408.218106 +1408.256301 +1408.359764 +1408.374682 +1408.419904 +1408.614209 +1409.431058 +1409.456599 +1409.504085 +1409.524032 +1409.548008 +1409.600222 +1409.669886 +1409.718004 +1409.793462 +1409.830192 +1409.867788 +1410.053335 +1410.095893 +1410.226329 +1410.283205 +1410.969618 +1411.067920 +1411.178176 +1411.180573 +1411.187833 +1411.278376 +1411.280640 +1411.284936 +1411.369051 +1411.378509 +1411.380973 +1411.388698 +1411.468552 +1411.478608 +1411.481106 +1411.483404 +1411.579041 +1411.581439 +1411.583770 +1411.669351 +1411.679008 +1411.681505 +1411.683936 +1411.779041 +1411.783936 +1411.879241 +1411.881672 +1411.884835 +1411.968818 +1412.078108 +1412.080473 +1412.082737 +1412.179573 +1412.182138 +1412.184635 +1412.279207 +1412.281638 +1412.289996 +1412.379607 +1412.478075 +1412.480406 +1412.482670 +1412.485034 +1412.569350 +1412.579740 +1412.582470 +1412.668584 +1412.679506 +1412.682237 +1412.687199 +1412.779806 +1412.782370 +1412.878207 +1412.880572 +1412.882903 +1412.979639 +1412.982004 +1412.984901 +1412.987598 +1413.071747 +1413.078007 +1413.082869 +1413.179572 +1413.182170 +1413.186232 +1413.279872 +1413.369582 +1413.379772 +1413.382536 +1413.386032 +1413.469516 +1413.480438 +1413.482869 +1413.485599 +1413.569282 +1413.569715 +1413.579739 +1413.582536 +1413.584900 +1413.679805 +1413.682469 +1413.689795 +1413.769615 +1413.780005 +1413.785066 +1413.869382 +1413.978439 +1413.980671 +1413.982902 +1414.071080 +1414.077973 +1414.082868 +1414.089062 +1414.179372 +1414.278173 +1414.280604 +1414.282968 +1414.379871 +1414.382568 +1414.478306 +1414.480703 +1414.570114 +1414.578172 +1414.580637 +1414.679671 +1414.682335 +1414.779604 +1414.781935 +1414.784799 +1414.868182 +1414.883034 +1414.885432 +1414.968748 +1414.969114 +1414.980203 +1414.982867 +1414.987429 +1415.078572 +1415.081036 +1415.083433 +1415.170313 +1415.179737 +1415.184532 +1415.269014 +1415.269647 +1415.270146 +1415.282900 +1415.286996 +1415.379470 +1415.383699 +1415.478072 +1415.480503 +1415.482900 +1415.578638 +1415.581069 +1415.583799 +1415.668814 +1415.679803 +1415.681901 +1415.686496 +1415.769680 +1415.779736 +1415.782434 +1415.785131 +1415.879536 +1415.882434 +1415.889793 +1415.969147 +1415.979703 +1415.984964 +1416.601281 +1417.396784 +1419.233979 +1419.258787 +1420.527850 +1420.966678 +1420.967610 +1421.294083 +1421.426950 +1421.545598 +1421.607969 +1421.647396 +1421.700010 +1421.777866 +1421.804239 +1422.075867 +1422.130180 +1422.220456 +1422.307502 +1422.454788 +1422.577831 +1422.650659 +1422.678964 +1422.828714 +1422.941101 +1422.965610 +1422.992949 +1423.021188 +1423.033242 +1423.110565 +1423.136339 +1423.350991 +1423.387721 +1423.524284 +1423.591150 +1423.670804 +1423.697910 +1423.774733 +1423.860547 +1424.006401 +1424.069005 +1424.124450 +1424.166042 +1424.210564 +1424.350624 +1424.362445 +1424.389984 +1424.404403 +1424.431942 +1424.730144 +1424.754553 +1424.855818 +1424.870670 +1424.885521 +1424.912095 +1424.929677 +1424.948625 +1424.960213 +1425.004669 +1425.041565 +1425.063044 +1425.069571 +1425.092148 +1425.152188 +1425.183989 +1425.205601 +1425.286254 +1425.289117 +1425.303536 +1425.318155 +1425.328844 +1425.345894 +1425.364475 +1425.378128 +1425.388385 +1425.394312 +1425.406600 +1425.461545 +1425.478561 +1425.481591 +1425.505501 +1425.538002 +1425.555384 +1425.604535 +1425.625447 +1425.654485 +1425.723749 +1425.732740 +1425.805367 +1425.837901 +1425.848224 +1425.869936 +1425.927112 +1425.939433 +1425.957115 +1426.348624 +1426.351354 +1426.577794 +1426.861643 +1427.142229 +1427.145060 +1428.603267 +1430.043392 +1430.061440 +1431.322345 +1432.196337 +1432.211521 +1433.170262 +1433.181684 +1433.640891 +1435.368028 +1435.603726 +1435.969227 +1436.389240 +1437.740087 +1437.752542 +1437.969091 +1437.969691 +1438.967659 +1438.968658 +1438.980213 +1439.456236 +1439.969922 +1439.981577 +1440.590201 +1442.134522 +1442.240749 +1445.020666 +1445.969350 +1445.976176 +1446.070415 +1446.081238 +1446.181338 +1446.270482 +1446.281437 +1446.381004 +1446.383469 +1446.481337 +1446.486932 +1446.571114 +1446.670814 +1446.671547 +1446.684367 +1446.771181 +1446.784367 +1446.788263 +1446.971580 +1446.971713 +1446.983135 +1447.071313 +1447.083035 +1447.182336 +1447.270314 +1447.282435 +1447.290294 +1447.372179 +1447.482502 +1447.485266 +1447.497687 +1447.582901 +1447.592525 +1447.674643 +1447.683034 +1447.685798 +1447.688229 +1447.782835 +1447.785565 +1447.881802 +1447.981702 +1447.984233 +1447.993124 +1448.082601 +1448.085265 +1448.088562 +1448.171645 +1448.172211 +1448.182601 +1448.185365 +1448.272211 +1448.282335 +1448.284999 +1448.288162 +1448.371412 +1448.382334 +1448.384799 +1448.472577 +1448.481369 +1448.483700 +1448.583200 +1448.672244 +1448.682534 +1448.772311 +1448.783033 +1448.796653 +1448.871844 +1448.872211 +1448.889027 +1449.071878 +1449.083166 +1449.086063 +1449.088061 +1449.183199 +1449.186296 +1449.188294 +1449.283099 +1449.285963 +1449.291191 +1449.372610 +1449.382900 +1449.389593 +1449.472410 +1449.485131 +1449.582200 +1449.686729 +1449.771744 +1449.772310 +1449.782300 +1449.785030 +1449.786995 +1449.885530 +1449.971743 +1449.972176 +1449.972409 +1449.982433 +1449.987061 +1450.072343 +1450.081267 +1450.083631 +1450.086196 +1450.089725 +1450.271843 +1450.282899 +1450.371776 +1450.382299 +1450.385130 +1450.389359 +1450.481966 +1450.484630 +1450.486928 +1450.571710 +1450.582499 +1450.585096 +1450.588526 +1450.672442 +1450.684896 +1450.688593 +1450.771976 +1450.775073 +1450.781200 +1450.783564 +1450.786095 +1450.883131 +1450.888526 +1450.971709 +1450.983331 +1450.985495 +1450.989358 +1451.747566 +1451.750230 +1452.454258 +1452.458221 +1452.705141 +1452.807671 +1454.175236 +1454.182928 +1455.851624 +1455.857219 +1455.992017 +1456.101175 +1456.148927 +1456.373202 +1456.671137 +1456.725883 +1456.881926 +1456.953754 +1457.555019 +1457.726714 +1457.842165 +1457.957716 +1458.097210 +1458.135971 +1458.213660 +1458.550656 +1458.630976 +1458.763410 +1458.824682 +1459.000173 +1459.083123 +1459.215757 +1459.255550 +1459.431175 +1459.448191 +1459.461045 +1459.490415 +1459.518987 +1459.641198 +1459.647391 +1459.750755 +1459.783755 +1459.813725 +1459.821351 +1459.859013 +1459.900372 +1459.962543 +1460.112493 +1460.129442 +1460.231207 +1460.243528 +1460.334437 +1460.426245 +1460.477594 +1460.547424 +1460.590481 +1460.647224 +1460.673864 +1460.771233 +1460.804933 +1460.809661 +1460.817587 +1460.821716 +1460.833105 +1460.869601 +1460.882988 +1460.887117 +1460.924746 +1460.969302 +1461.449288 +1461.451519 +1461.535435 +1461.550886 +1461.709760 +1461.925578 +1461.927942 +1461.930439 +1462.054981 +1462.058445 +1462.557345 +1462.559876 +1463.504897 +1463.507627 +1464.935631 +1464.938861 +1465.958041 +1465.960905 +1467.033531 +1467.708256 +1468.018279 +1468.841921 +1470.636958 +1471.764795 +1471.776750 +1472.971954 +1473.386638 +1473.389935 +1473.983841 +1474.222901 +1474.225499 +1474.971119 +1474.972018 +1475.971418 +1476.122500 +1476.125397 +1478.854532 +1478.943742 +1479.084468 +1479.570182 +1479.817967 +1480.956861 +1480.970514 +1481.083068 +1481.182235 +1481.184799 +1481.283001 +1481.285398 +1481.372778 +1481.386297 +1481.488329 +1481.582801 +1481.683267 +1481.688595 +1481.771412 +1481.772011 +1481.783666 +1481.788162 +1481.883999 +1481.886896 +1481.889261 +1482.084365 +1482.283932 +1482.286963 +1482.292257 +1482.372943 +1482.373309 +1482.383333 +1482.483466 +1482.486063 +1482.488894 +1482.583366 +1482.587695 +1482.683699 +1482.690459 +1482.774108 +1482.784365 +1482.787228 +1482.873542 +1482.883299 +1482.973475 +1482.973942 +1482.986929 +1482.991524 +1483.073941 +1483.074175 +1483.082266 +1483.084731 +1483.173975 +1483.184131 +1483.186795 +1483.273608 +1483.284298 +1483.296752 +1483.384297 +1483.386995 +1483.388993 +1483.484364 +1483.489925 +1483.573974 +1483.584231 +1483.587028 +1483.591224 +1483.684497 +1483.697084 +1483.784530 +1483.787361 +1483.798017 +1483.887694 +1483.893388 +1483.987027 +1483.989525 +1484.084430 +1484.087527 +1484.184430 +1484.273774 +1484.284496 +1484.295186 +1484.373274 +1484.384363 +1484.387427 +1484.390557 +1484.473474 +1484.473774 +1484.484363 +1484.487060 +1484.573107 +1484.573440 +1484.574040 +1484.584463 +1484.587160 +1484.589191 +1484.673440 +1484.684396 +1484.690490 +1484.784662 +1484.787526 +1484.883230 +1484.885595 +1484.888359 +1484.984462 +1484.986927 +1484.990390 +1485.084962 +1485.087759 +1485.173939 +1485.184362 +1485.187126 +1485.190356 +1485.284062 +1485.286627 +1485.373373 +1485.386327 +1485.388891 +1485.473972 +1485.486560 +1485.584495 +1485.673240 +1485.687192 +1485.773273 +1485.784095 +1485.786826 +1485.791788 +1485.873439 +1485.882730 +1485.885227 +1485.973439 +1485.984595 +1486.795283 +1486.800544 +1488.508402 +1489.321554 +1490.971902 +1490.972069 +1490.983258 +1491.535738 +1491.598508 +1491.644629 +1491.719454 +1492.130143 +1492.236969 +1492.482823 +1492.546593 +1492.625347 +1492.879193 +1492.902004 +1492.941764 +1493.005100 +1493.060245 +1493.151287 +1493.176262 +1493.309429 +1493.318054 +1493.344128 +1493.387318 +1493.413092 +1493.462975 +1493.784553 +1493.931673 +1494.087217 +1494.122848 +1494.189115 +1494.319185 +1494.348889 +1494.406231 +1494.421449 +1494.426011 +1494.447790 +1494.462009 +1494.486517 +1494.497407 +1494.517120 +1494.541662 +1494.738931 +1494.918618 +1495.008628 +1495.014855 +1495.139830 +1495.224978 +1495.235268 +1495.262108 +1495.291179 +1495.315188 +1495.373763 +1495.387149 +1495.563906 +1495.587915 +1495.634668 +1495.642494 +1495.659210 +1495.680655 +1495.701102 +1495.736766 +1495.794408 +1495.810725 +1495.842993 +1495.875061 +1495.880256 +1495.937398 +1495.965770 +1495.979823 +1496.284917 +1496.417751 +1497.108526 +1497.110657 +1497.112822 +1497.115353 +1497.567100 +1497.762538 +1498.774425 +1500.618579 +1501.347916 +1503.333229 +1505.286906 +1505.758601 +1505.972120 +1506.301191 +1506.303955 +1506.787537 +1506.797761 +1506.983142 +1507.971452 +1508.238319 +1508.241415 +1509.350505 +1509.983738 +1510.972615 +1511.789630 +1511.801752 +1512.563855 +1513.070448 +1513.073445 +1513.322829 +1513.341810 +1514.306411 +1514.675442 +1514.696354 +1515.971478 +1516.072477 +1516.182233 +1516.184831 +1516.583232 +1516.585796 +1516.672709 +1516.683132 +1516.685729 +1516.773308 +1516.775606 +1516.783465 +1516.786129 +1516.788893 +1516.873808 +1516.883864 +1516.973608 +1516.974007 +1516.983964 +1516.986328 +1517.084297 +1517.086894 +1517.184497 +1517.192023 +1517.273574 +1517.284597 +1517.287760 +1517.374240 +1517.384596 +1517.387926 +1517.389991 +1517.473774 +1517.487360 +1517.583730 +1517.783331 +1517.883264 +1517.886461 +1517.896484 +1517.972142 +1517.983464 +1517.995219 +1518.083963 +1518.086061 +1518.090190 +1518.174073 +1518.184363 +1518.195019 +1518.274339 +1518.287193 +1518.387626 +1518.392188 +1518.473873 +1518.474505 +1518.484995 +1518.487659 +1518.494053 +1518.584695 +1518.600213 +1518.674539 +1518.684862 +1518.772873 +1518.784861 +1518.787892 +1518.883762 +1518.886660 +1518.972940 +1518.983762 +1519.083229 +1519.183396 +1519.186126 +1519.283829 +1519.287325 +1519.373006 +1519.384428 +1519.389623 +1519.474371 +1519.484428 +1519.496682 +1519.573805 +1519.588957 +1519.674171 +1519.687624 +1519.689689 +1519.784627 +1519.786559 +1519.873505 +1519.887158 +1519.983728 +1519.989822 +1520.084627 +1520.086692 +1520.184460 +1520.186991 +1520.284827 +1520.287024 +1520.373405 +1520.374304 +1520.383395 +1520.484094 +1520.486358 +1520.490487 +1520.574070 +1520.582795 +1520.684360 +1520.687124 +1520.689255 +1520.783028 +1520.785326 +1520.788056 +1520.873770 +1520.884593 +1520.887723 +1520.892319 +1520.984693 +1520.986791 +1521.737972 +1521.740636 +1524.458482 +1525.231475 +1525.381691 +1525.733173 +1525.972100 +1526.190682 +1526.466306 +1526.543895 +1526.661544 +1526.852552 +1526.868969 +1526.931340 +1526.970401 +1527.060677 +1527.345625 +1528.106930 +1528.205298 +1528.242328 +1528.335934 +1528.360676 +1528.542794 +1528.577859 +1528.633836 +1528.673363 +1528.723546 +1528.783053 +1528.794975 +1528.880889 +1528.958378 +1529.161241 +1529.163772 +1529.229273 +1529.296972 +1529.313156 +1529.356080 +1529.372230 +1529.394941 +1529.453182 +1529.489113 +1529.493242 +1529.513655 +1529.590145 +1529.623479 +1529.627175 +1529.656046 +1529.789979 +1529.876858 +1529.895739 +1529.905530 +1529.919283 +1529.966369 +1530.008993 +1530.083651 +1530.094574 +1530.132802 +1530.213122 +1530.229106 +1530.272729 +1530.300701 +1530.331237 +1530.361906 +1530.387614 +1530.416052 +1530.444257 +1530.450717 +1530.515053 +1530.526375 +1530.559908 +1530.575725 +1530.588379 +1530.614020 +1530.630471 +1530.694507 +1530.721413 +1530.751583 +1530.811623 +1530.816018 +1530.845322 +1530.879521 +1530.910757 +1530.937197 +1530.944756 +1530.949585 +1530.966901 +1530.979255 +1531.885847 +1531.888178 +1532.143789 +1532.146520 +1532.455377 +1532.461105 +1534.630633 +1535.625737 +1535.628701 +1536.034395 +1536.103159 +1536.505090 +1536.772289 +1537.301160 +1538.020440 +1538.458768 +1539.313546 +1539.618041 +1539.621537 +1539.626233 +1539.634091 +1540.529861 +1540.984040 +1541.176048 +1541.178279 +1541.931092 +1541.933590 +1541.936287 +1541.971418 +1542.158997 +1543.190764 +1543.382905 +1544.215106 +1544.217437 +1544.465855 +1544.468319 +1544.470750 +1544.983670 +1545.518534 +1545.522863 +1545.525561 +1545.602950 +1545.972813 +1546.175743 +1546.178207 +1546.180705 +1546.267884 +1546.839812 +1546.842809 +1547.472911 +1547.957593 +1548.932350 +1548.934948 +1548.946037 +1549.078970 +1549.081668 +1550.081933 +1550.774906 +1550.777637 +1550.952928 +1550.972442 +1551.072908 +1551.083197 +1551.086095 +1551.172275 +1551.172941 +1551.183497 +1551.272941 +1551.288658 +1551.372907 +1551.374606 +1551.385994 +1551.484063 +1551.486061 +1551.573806 +1551.584263 +1551.586960 +1551.590057 +1551.686993 +1551.691855 +1551.784462 +1551.786560 +1551.884662 +1551.886760 +1551.973473 +1551.986826 +1552.074172 +1552.074705 +1552.074938 +1552.084429 +1552.174139 +1552.174905 +1552.284528 +1552.384228 +1552.387592 +1552.484561 +1552.485893 +1552.487125 +1552.584661 +1552.587758 +1552.591887 +1552.684794 +1552.774072 +1552.787691 +1552.884694 +1552.890622 +1552.974737 +1552.985060 +1552.990522 +1553.075703 +1553.087225 +1553.184727 +1553.187325 +1553.274271 +1553.275003 +1553.285060 +1553.287025 +1553.385226 +1553.387291 +1553.484827 +1553.584660 +1553.586891 +1553.673937 +1553.684494 +1553.784327 +1553.786791 +1553.974337 +1553.984593 +1554.084560 +1554.174936 +1554.187124 +1554.274869 +1554.284826 +1554.287690 +1554.384892 +1554.391552 +1554.474136 +1554.474902 +1554.485026 +1554.487257 +1554.586857 +1554.685092 +1554.687589 +1554.774403 +1554.875102 +1554.884792 +1554.886890 +1554.984792 +1554.987689 +1554.992284 +1555.075035 +1555.084858 +1555.087090 +1555.174102 +1555.184925 +1555.187023 +1555.285125 +1555.292551 +1555.384891 +1555.387456 +1555.474269 +1555.484658 +1555.487122 +1555.584691 +1555.684492 +1555.686589 +1555.784725 +1555.786723 +1555.874635 +1555.887089 +1555.984591 +1555.986656 +1556.210632 +1556.213429 +1556.219523 +1557.282792 +1557.285522 +1558.047127 +1558.178928 +1559.274331 +1559.276696 +1559.279193 +1559.884521 +1559.886952 +1560.079059 +1560.082389 +1560.972165 +1561.141762 +1561.333936 +1561.434669 +1561.532804 +1561.657546 +1561.790013 +1561.887083 +1562.114921 +1562.138298 +1562.173596 +1562.224711 +1562.243726 +1562.280789 +1562.308095 +1562.321714 +1562.468001 +1562.539463 +1562.556446 +1562.565570 +1562.580022 +1562.667601 +1562.690312 +1562.721514 +1562.735567 +1562.769832 +1562.803299 +1562.890445 +1563.051151 +1563.104830 +1563.131537 +1563.220048 +1563.305496 +1563.346189 +1563.362806 +1563.429106 +1563.476425 +1563.677557 +1563.812156 +1563.893841 +1563.921113 +1563.985316 +1564.071363 +1564.097137 +1564.110790 +1564.125376 +1564.149851 +1564.176358 +1564.195705 +1564.236564 +1564.248586 +1564.267234 +1564.272328 +1564.310124 +1564.376857 +1564.379821 +1564.439128 +1564.469564 +1564.496604 +1564.523211 +1564.540893 +1564.570363 +1564.686647 +1564.702764 +1564.755545 +1564.792241 +1564.868565 +1564.898169 +1564.917449 +1564.945421 +1564.960007 +1564.999734 +1565.031235 +1565.098235 +1565.157076 +1565.185181 +1565.214019 +1565.219081 +1565.256310 +1565.275691 +1565.305994 +1565.465134 +1565.488744 +1565.529037 +1565.566500 +1565.582384 +1565.590609 +1565.609590 +1565.627872 +1565.656343 +1565.666100 +1565.681984 +1565.706926 +1565.764302 +1565.777755 +1565.792174 +1565.804861 +1565.810189 +1565.822710 +1565.851514 +1565.922010 +1565.932600 +1565.941225 +1565.977721 +1566.624674 +1566.626971 +1566.742789 +1566.756775 +1566.999532 +1567.776987 +1567.780550 +1568.265898 +1568.268761 +1570.008220 +1570.340121 +1570.360634 +1570.629332 +1571.115945 +1571.532095 +1572.086307 +1572.088704 +1572.091202 +1573.160232 +1573.162563 +1573.165027 +1574.197060 +1575.141915 +1575.867988 +1575.871051 +1575.971851 +1575.972250 +1575.972450 +1576.171684 +1576.176579 +1576.474647 +1576.479476 +1577.126528 +1577.129092 +1577.132122 +1577.960826 +1577.972481 +1578.200953 +1578.203250 +1578.205448 +1578.208978 +1578.984868 +1579.166419 +1579.168750 +1579.171081 +1579.854864 +1579.857661 +1579.972712 +1579.972912 +1579.984667 +1580.140977 +1580.143408 +1580.432885 +1580.984200 +1581.206710 +1581.452464 +1581.454795 +1581.457193 +1581.689261 +1582.208807 +1582.496053 +1582.891690 +1582.894121 +1582.896552 +1583.119696 +1583.370644 +1583.636944 +1584.452828 +1584.455925 +1584.809537 +1584.984229 +1585.799646 +1585.972706 +1585.983928 +1586.072407 +1586.083562 +1586.172640 +1586.191054 +1586.284361 +1586.287158 +1586.290755 +1586.374671 +1586.384461 +1586.387058 +1586.391587 +1586.484760 +1586.486825 +1586.674038 +1586.687757 +1586.774071 +1586.774637 +1586.784827 +1586.786958 +1586.887158 +1586.987024 +1587.175036 +1587.175336 +1587.185059 +1587.187124 +1587.285093 +1587.287790 +1587.385292 +1587.387324 +1587.487124 +1587.585026 +1587.687024 +1587.774936 +1587.775135 +1587.787223 +1587.884826 +1587.984959 +1588.074369 +1588.085658 +1588.088089 +1588.173470 +1588.184892 +1588.285125 +1588.287223 +1588.374036 +1588.385258 +1588.387423 +1588.473636 +1588.475035 +1588.575101 +1588.583726 +1588.684625 +1588.686723 +1588.773503 +1588.783626 +1588.886856 +1588.983959 +1588.986323 +1589.174401 +1589.184824 +1589.186889 +1589.275001 +1589.283925 +1589.286489 +1589.374168 +1589.385091 +1589.387455 +1589.485090 +1589.487088 +1589.574001 +1589.587155 +1589.684957 +1589.773602 +1589.774501 +1589.774934 +1589.784924 +1589.787521 +1589.791051 +1589.886156 +1590.074367 +1590.074867 +1590.088120 +1590.184957 +1590.187021 +1590.284723 +1590.287321 +1590.291750 +1590.374833 +1590.383924 +1590.386288 +1590.474001 +1590.474833 +1590.485356 +1590.487753 +1590.585389 +1590.587420 +1590.685156 +1590.687387 +1590.788186 +1590.794014 +1591.285122 +1591.382724 +1592.289650 +1592.500339 +1592.503735 +1592.696276 +1593.010029 +1593.013026 +1593.258214 +1594.027743 +1594.030307 +1594.033105 +1594.035535 +1594.257880 +1595.404865 +1595.450053 +1595.452717 +1595.576526 +1595.832270 +1595.835001 +1595.837831 +1595.970965 +1595.972563 +1595.977625 +1596.139196 +1596.420215 +1596.575526 +1596.615586 +1596.665236 +1596.751084 +1596.995273 +1597.073228 +1597.187114 +1597.260008 +1597.597803 +1597.792075 +1597.815818 +1597.873494 +1597.888978 +1597.964170 +1597.993107 +1598.063903 +1598.085481 +1598.125774 +1598.208691 +1598.334898 +1598.355744 +1598.384782 +1598.432467 +1598.438628 +1598.442790 +1598.490076 +1598.569663 +1598.590509 +1598.651149 +1598.709224 +1598.800466 +1598.851748 +1598.865534 +1598.892607 +1598.985814 +1599.041791 +1599.069097 +1599.214085 +1599.252746 +1599.417948 +1599.486845 +1599.534131 +1599.549183 +1599.584448 +1599.599066 +1599.626372 +1599.638827 +1599.667198 +1599.689609 +1599.764334 +1599.825473 +1599.879852 +1599.976489 +1599.989043 +1600.035196 +1600.066498 +1600.096102 +1600.157541 +1600.170861 +1600.216582 +1600.314017 +1600.359838 +1600.374823 +1600.375622 +1600.377454 +1600.388443 +1600.440457 +1600.515982 +1600.531200 +1600.595003 +1600.615915 +1600.644253 +1600.649049 +1600.658872 +1600.701563 +1600.705459 +1600.732698 +1600.765632 +1600.783447 +1600.824573 +1600.846817 +1600.852145 +1600.890873 +1600.903727 +1600.934829 +1600.961569 +1602.044086 +1603.444217 +1603.446815 +1604.645348 +1605.620639 +1606.019739 +1608.043047 +1608.045645 +1608.048242 +1608.233989 +1608.711978 +1608.714975 +1608.833223 +1609.056999 +1609.060495 +1609.412410 +1610.239648 +1610.242146 +1610.244643 +1610.661127 +1610.972981 +1610.984636 +1611.182072 +1611.184569 +1611.340480 +1611.517969 +1611.873846 +1611.877209 +1611.984635 +1612.175644 +1612.248637 +1612.522064 +1612.525027 +1612.552300 +1612.984967 +1613.155230 +1613.157927 +1613.946904 +1614.971945 +1614.972811 +1615.973709 +1620.576734 +1621.083793 +1621.173171 +1621.183527 +1621.186357 +1621.283793 +1621.286391 +1621.383593 +1621.385591 +1621.486390 +1621.583860 +1621.586257 +1621.594249 +1621.674069 +1621.684459 +1621.693017 +1621.773769 +1621.784292 +1621.786890 +1621.790519 +1621.884792 +1621.886756 +1621.974069 +1621.974635 +1622.074102 +1622.074702 +1622.086989 +1622.173836 +1622.174235 +1622.184358 +1622.186623 +1622.191618 +1622.274502 +1622.284858 +1622.287322 +1622.290752 +1622.373869 +1622.374302 +1622.374834 +1622.384891 +1622.392650 +1622.482960 +1622.485457 +1622.487921 +1622.584758 +1622.587488 +1622.683259 +1622.690818 +1622.774301 +1622.784658 +1622.787388 +1622.884524 +1622.892117 +1622.974101 +1622.984791 +1622.987887 +1623.082759 +1623.085257 +1623.087588 +1623.174767 +1623.187121 +1623.193215 +1623.284724 +1623.374567 +1623.387787 +1623.474301 +1623.483058 +1623.485556 +1623.487954 +1623.584956 +1623.587754 +1623.595213 +1623.690384 +1623.783225 +1623.785755 +1623.886888 +1623.974067 +1623.983824 +1624.083957 +1624.086721 +1624.183224 +1624.188186 +1624.190617 +1624.284856 +1624.384723 +1624.388053 +1624.485022 +1624.487320 +1624.583091 +1624.585788 +1624.673933 +1624.684889 +1624.773933 +1624.775165 +1624.787886 +1624.873700 +1624.883523 +1624.886487 +1624.974299 +1624.974799 +1624.984789 +1624.987419 +1624.995578 +1625.075231 +1625.084689 +1625.087919 +1625.090316 +1625.174465 +1625.188618 +1625.284788 +1625.287752 +1625.292547 +1625.383023 +1625.388518 +1625.483856 +1625.486853 +1625.584322 +1625.586952 +1625.674765 +1625.684688 +1625.687552 +1625.774265 +1625.785720 +1625.884455 +1625.886752 +1625.890415 +1625.984654 +1625.986719 +1625.989649 +1627.131839 +1627.793044 +1627.842528 +1628.620116 +1629.225077 +1629.666602 +1629.970664 +1630.109392 +1630.712522 +1630.778722 +1630.972328 +1630.985948 +1631.021912 +1631.080853 +1631.114986 +1631.220613 +1631.384249 +1631.447286 +1631.495405 +1631.556510 +1631.710090 +1631.727273 +1631.745721 +1631.853846 +1631.868565 +1631.910822 +1632.011988 +1632.061738 +1632.118814 +1632.160039 +1632.173326 +1632.213253 +1632.243722 +1632.291408 +1632.317349 +1632.386380 +1632.486446 +1632.514285 +1632.554078 +1632.586779 +1632.588977 +1632.589809 +1632.634631 +1632.819646 +1632.939992 +1633.084847 +1633.110421 +1633.177954 +1633.181817 +1633.186345 +1633.219579 +1633.243322 +1633.271227 +1633.299366 +1633.354144 +1633.380817 +1633.419046 +1633.434530 +1633.514151 +1633.541856 +1633.572026 +1633.588609 +1633.620844 +1633.646651 +1633.674823 +1633.687177 +1633.690141 +1633.718280 +1633.762602 +1633.802762 +1633.835829 +1633.861370 +1633.951846 +1633.973224 +1633.979884 +1633.995935 +1634.024973 +1634.052545 +1634.056541 +1634.080850 +1634.083148 +1634.112785 +1634.123940 +1634.153944 +1634.182781 +1634.210986 +1634.239525 +1634.242821 +1634.265432 +1634.303527 +1634.360603 +1634.365132 +1634.387277 +1634.417180 +1634.431299 +1634.465765 +1634.547649 +1634.550280 +1634.619777 +1634.633097 +1634.662568 +1634.686943 +1634.721342 +1634.738725 +1634.804059 +1634.819810 +1634.860270 +1634.874389 +1634.900530 +1634.904892 +1634.930167 +1634.952211 +1635.008022 +1635.037293 +1635.049214 +1635.089041 +1635.095468 +1635.112551 +1635.126770 +1635.169660 +1635.240489 +1635.267163 +1635.302061 +1635.308788 +1635.322074 +1635.334662 +1635.345817 +1635.349946 +1635.376819 +1635.403559 +1635.409720 +1635.427602 +1635.443320 +1635.454708 +1635.485477 +1635.511851 +1635.516713 +1635.537292 +1635.541521 +1635.553842 +1635.556739 +1635.612384 +1635.625304 +1635.640955 +1635.648714 +1635.668661 +1635.698531 +1635.702394 +1635.731531 +1635.777418 +1635.796033 +1635.829366 +1635.864565 +1635.875554 +1635.911717 +1635.940255 +1635.953675 +1635.965164 +1638.839853 +1640.034790 +1640.071520 +1640.090967 +1640.117041 +1640.144913 +1641.086171 +1641.203187 +1642.201355 +1642.252270 +1642.379676 +1642.560895 +1642.648540 +1642.822300 +1642.888667 +1643.132589 +1643.187568 +1643.410145 +1643.477011 +1643.529958 +1643.655100 +1643.721999 +1643.934154 +1643.971949 +1644.019735 +1644.065422 +1644.232288 +1644.291296 +1644.354266 +1644.457530 +1644.523197 +1644.711276 +1644.884735 +1645.083503 +1645.137682 +1645.351568 +1645.429756 +1645.691161 +1645.889230 +1645.956796 +1645.971448 +1646.126193 +1646.971447 +1646.982802 +1647.133518 +1647.616601 +1647.687996 +1647.971512 +1647.971978 +1648.131286 +1648.133816 +1648.192924 +1648.972044 +1648.983066 +1649.139243 +1649.954594 +1649.971177 +1650.150231 +1650.173108 +1650.587827 +1650.629585 +1650.655459 +1650.757224 +1650.971642 +1650.982531 +1651.150130 +1651.153094 +1651.167013 +1651.322558 +1651.733513 +1651.886227 +1651.928851 +1652.091854 +1652.230249 +1652.443036 +1652.472740 +1652.497082 +1652.515197 +1652.544068 +1652.590089 +1652.668244 +1652.713166 +1652.729350 +1652.747531 +1652.791221 +1652.843868 +1652.895750 +1652.938407 +1652.969642 +1653.011833 +1653.051793 +1653.106139 +1653.187691 +1653.222523 +1653.278833 +1653.315263 +1653.366578 +1653.386558 +1653.425553 +1653.506705 +1653.555822 +1653.591786 +1653.626984 +1653.738007 +1653.922089 +1653.971673 +1654.008636 +1654.042169 +1654.145032 +1654.241569 +1654.375135 +1654.441602 +1654.511899 +1654.602541 +1654.691219 +1654.766910 +1654.887789 +1655.032411 +1655.095215 +1655.320989 +1655.416426 +1655.490486 +1655.555587 +1655.650892 +1655.758551 +1655.832110 +1655.971537 +1655.981594 +1656.084924 +1656.182293 +1656.190385 +1656.272236 +1656.281061 +1656.283159 +1656.372936 +1656.381560 +1656.386056 +1656.473435 +1656.482659 +1656.484924 +1656.489019 +1656.587920 +1656.682692 +1656.685123 +1656.782925 +1656.785489 +1656.790018 +1656.883058 +1656.973102 +1656.973768 +1656.981793 +1656.986322 +1657.082126 +1657.173035 +1657.182958 +1657.185522 +1657.187520 +1657.273068 +1657.281759 +1657.286288 +1657.382026 +1657.386388 +1657.483424 +1657.485788 +1657.491116 +1657.582192 +1657.584490 +1657.586754 +1657.673500 +1657.675498 +1657.681959 +1657.684290 +1657.783257 +1657.789584 +1657.873134 +1657.883290 +1657.885522 +1657.888186 +1657.973300 +1657.983490 +1657.985921 +1657.988818 +1658.072801 +1658.073200 +1658.085854 +1658.088718 +1658.182225 +1658.184589 +1658.186820 +1658.272767 +1658.273233 +1658.274799 +1658.284389 +1658.286787 +1658.373233 +1658.373566 +1658.381991 +1658.386653 +1658.472834 +1658.473100 +1658.483623 +1658.582091 +1658.593213 +1658.673100 +1658.685954 +1658.688684 +1658.773166 +1658.785820 +1658.873533 +1658.882290 +1658.884621 +1658.890183 +1658.972800 +1658.973166 +1658.973766 +1658.983456 +1658.985953 +1659.173166 +1659.183456 +1659.185753 +1659.189849 +1659.282190 +1659.286885 +1659.373565 +1659.383023 +1659.474098 +1659.483289 +1659.582123 +1659.584521 +1659.586752 +1659.685919 +1659.783388 +1659.785919 +1659.789982 +1659.884421 +1659.886685 +1659.890515 +1659.983521 +1659.986052 +1660.083355 +1660.085852 +1660.090215 +1660.173132 +1660.184787 +1660.283355 +1660.285419 +1660.373298 +1660.373764 +1660.383121 +1660.385686 +1660.392445 +1660.482022 +1660.484420 +1660.486718 +1660.586751 +1660.591779 +1660.682155 +1660.684653 +1660.773131 +1660.783288 +1660.785952 +1660.884653 +1660.973098 +1660.984586 +1660.986884 +1660.989548 +1661.364406 +1662.176293 +1662.404431 +1662.466902 +1662.567035 +1662.694574 +1663.260708 +1663.357877 +1663.502732 +1663.640394 +1663.816385 +1663.972995 +1664.197836 +1664.416850 +1664.561805 +1664.594173 +1664.650150 +1664.748019 +1664.835198 +1664.861971 +1664.947053 +1664.994106 +1665.066067 +1665.120513 +1665.200000 +1665.218581 +1665.228704 +1665.235531 +1665.242391 +1665.248185 +1665.254911 +1665.286946 +1665.298967 +1665.307525 +1665.362770 +1665.420046 +1665.737761 +1665.784215 +1665.859839 +1665.902363 +1665.970395 +1665.981418 +1666.003063 +1666.140259 +1666.204261 +1666.225706 +1666.269796 +1666.676155 +1666.692805 +1666.782915 +1666.832532 +1666.898766 +1666.913618 +1666.977254 +1667.024140 +1667.116248 +1667.145253 +1667.172625 +1667.233031 +1667.261137 +1667.271060 +1667.300530 +1667.354510 +1667.365632 +1667.397267 +1667.421609 +1667.439458 +1667.439691 +1667.506258 +1667.556907 +1667.583780 +1667.654976 +1667.690806 +1667.825638 +1667.936261 +1668.097066 +1668.119344 +1668.198998 +1668.238558 +1668.241788 +1668.253343 +1668.288841 +1668.394968 +1668.434529 +1668.488275 +1668.493003 +1668.606723 +1668.620875 +1668.644785 +1668.661535 +1668.755707 +1668.766330 +1668.785777 +1668.810885 +1668.833929 +1668.845251 +1668.903359 +1668.918744 +1668.931265 +1668.946350 +1668.987109 +1669.013682 +1669.026569 +1669.053809 +1669.069993 +1669.077685 +1669.127302 +1669.157638 +1669.186110 +1669.201727 +1669.242820 +1669.261268 +1669.286476 +1669.375886 +1669.386642 +1669.456006 +1669.503425 +1669.559070 +1669.639789 +1669.644617 +1669.659070 +1669.692736 +1669.721807 +1669.731530 +1669.746682 +1669.813348 +1669.820641 +1669.845483 +1669.875286 +1669.878283 +1669.889938 +1669.917611 +1669.950411 +1669.995300 +1670.026502 +1670.057071 +1670.088140 +1670.159835 +1670.174787 +1670.188240 +1670.233927 +1670.252476 +1670.265396 +1670.284277 +1670.296465 +1670.340021 +1670.346481 +1670.374054 +1670.387041 +1670.401859 +1670.418643 +1670.456838 +1670.474686 +1670.504290 +1670.564230 +1670.569791 +1670.575486 +1670.601559 +1670.656504 +1670.685808 +1670.697563 +1670.729964 +1670.737790 +1670.751942 +1670.761499 +1670.791636 +1670.822572 +1670.864629 +1670.884609 +1670.913481 +1670.930397 +1670.942785 +1670.950810 +1671.975584 +1673.393065 +1673.418373 +1673.447877 +1675.619270 +1676.082406 +1676.109479 +1677.132289 +1677.150837 +1677.543977 +1677.626661 +1678.020733 +1678.033453 +1678.550170 +1678.561591 +1679.347705 +1679.406679 +1679.578940 +1679.781737 +1679.972679 +1680.112372 +1680.333884 +1680.380038 +1680.429388 +1680.971512 +1681.983366 +1682.242807 +1682.320029 +1683.211603 +1683.240907 +1683.740774 +1683.754294 +1683.971743 +1684.252162 +1684.790723 +1684.983630 +1685.147366 +1685.149830 +1685.152727 +1687.701276 +1687.997013 +1688.962880 +1689.770371 +1690.971536 +1691.082591 +1691.172668 +1691.183124 +1691.185621 +1691.273001 +1691.282991 +1691.285854 +1691.373001 +1691.385421 +1691.483823 +1691.486420 +1691.583889 +1691.586287 +1691.588218 +1691.686720 +1691.784122 +1691.790416 +1691.884056 +1691.886586 +1691.983589 +1692.074432 +1692.082357 +1692.084755 +1692.174065 +1692.186619 +1692.188584 +1692.286952 +1692.384655 +1692.387485 +1692.484721 +1692.487552 +1692.489683 +1692.586619 +1692.782656 +1692.785320 +1692.882756 +1692.982623 +1692.985087 +1693.072799 +1693.074397 +1693.089649 +1693.174431 +1693.283322 +1693.285719 +1693.373864 +1693.387218 +1693.475995 +1693.584587 +1693.586918 +1693.593678 +1693.686751 +1693.772998 +1693.783255 +1693.785552 +1693.874397 +1693.884853 +1693.887484 +1693.973930 +1693.985452 +1693.988383 +1694.084686 +1694.087350 +1694.090114 +1694.184553 +1694.284486 +1694.287150 +1694.373231 +1694.373930 +1694.387117 +1694.484886 +1694.584552 +1694.596108 +1694.673896 +1694.784752 +1694.874296 +1694.874829 +1694.887349 +1694.974595 +1694.984918 +1694.987849 +1695.073596 +1695.087382 +1695.184585 +1695.187516 +1695.284685 +1695.287615 +1695.373663 +1695.392943 +1695.484718 +1695.487415 +1695.493110 +1695.574062 +1695.574628 +1695.584984 +1695.588148 +1695.590645 +1695.686816 +1695.774694 +1695.784784 +1695.789713 +1695.873629 +1695.889646 +1695.987015 +1697.118916 +1697.701632 +1698.472427 +1699.370662 +1699.842090 +1700.054877 +1700.065566 +1700.981949 +1701.769660 +1702.240422 +1702.317778 +1702.409853 +1702.485544 +1702.889806 +1703.333794 +1703.495299 +1703.737091 +1703.765029 +1703.793734 +1703.849445 +1703.937623 +1704.052708 +1704.063497 +1704.090470 +1704.131862 +1704.134127 +1704.176318 +1704.194366 +1704.230397 +1704.289638 +1704.305222 +1704.321040 +1704.333793 +1704.363331 +1704.407320 +1704.434926 +1704.476517 +1704.514846 +1704.559468 +1704.589171 +1704.619674 +1704.723570 +1704.730863 +1704.747746 +1704.792667 +1704.851875 +1704.923670 +1704.938055 +1704.947146 +1704.989570 +1704.994033 +1705.022870 +1705.143150 +1705.178115 +1705.231528 +1705.255204 +1705.395597 +1705.407619 +1705.467559 +1705.593499 +1705.715777 +1705.754072 +1705.759733 +1705.784941 +1705.824335 +1705.829696 +1705.860832 +1707.808582 +1708.944878 +1709.559596 +1709.857997 +1710.509678 +1710.868819 +1710.874446 +1711.440946 +1711.968851 +1712.955796 +1712.971913 +1714.232785 +1714.324992 +1715.364418 +1715.972976 +1715.984398 +1716.514234 +1717.958155 +1717.971675 +1717.973107 +1717.983730 +1718.101812 +1718.984628 +1719.152493 +1719.155557 +1720.275935 +1720.849927 +1721.552191 +1724.636704 +1724.876397 +1725.254452 +1725.271368 +1725.973465 +1726.083888 +1726.091581 +1726.173199 +1726.173465 +1726.183788 +1726.273998 +1726.289216 +1726.387751 +1726.473865 +1726.474597 +1726.584088 +1726.784387 +1726.786984 +1726.874530 +1726.884787 +1726.888183 +1726.892745 +1726.974663 +1726.988316 +1726.990980 +1727.074963 +1727.083421 +1727.085785 +1727.187417 +1727.284287 +1727.374396 +1727.374929 +1727.383454 +1727.385785 +1727.474363 +1727.474996 +1727.487217 +1727.490613 +1727.574263 +1727.674596 +1727.684619 +1727.693377 +1727.785185 +1727.787316 +1727.885252 +1727.891279 +1727.974063 +1727.974229 +1727.985185 +1727.987916 +1727.992511 +1728.074362 +1728.075062 +1728.174429 +1728.184752 +1728.187549 +1728.273563 +1728.282621 +1728.285351 +1728.374362 +1728.384552 +1728.396773 +1728.474429 +1728.487915 +1728.584818 +1728.587715 +1728.591511 +1728.673929 +1728.674595 +1728.684818 +1728.687649 +1728.784651 +1728.787349 +1728.874428 +1728.883619 +1728.886017 +1728.974362 +1728.984818 +1728.987415 +1729.085017 +1729.087149 +1729.174361 +1729.175460 +1729.184984 +1729.187448 +1729.189912 +1729.283552 +1729.285850 +1729.373229 +1729.373795 +1729.484917 +1729.491211 +1729.574361 +1729.583518 +1729.585916 +1729.588280 +1729.688014 +1729.785250 +1729.788613 +1729.874394 +1729.887248 +1729.974127 +1730.083152 +1730.085583 +1730.173994 +1730.174793 +1730.175026 +1730.183818 +1730.274627 +1730.284883 +1730.387647 +1730.485482 +1730.490311 +1730.574526 +1730.585416 +1730.785349 +1730.787979 +1730.790743 +1730.884450 +1730.984616 +1730.987513 +1732.415217 +1732.995203 +1733.861803 +1734.294403 +1734.318379 +1734.632431 +1735.475820 +1735.983912 +1735.999729 +1736.709752 +1736.794167 +1736.947514 +1737.105889 +1737.377217 +1737.742451 +1737.951609 +1738.038721 +1738.315478 +1738.355871 +1738.593266 +1738.606919 +1738.771821 +1739.575949 +1739.754937 +1739.904520 +1739.996462 +1740.006285 +1740.039852 +1740.119206 +1740.148909 +1740.203754 +1740.388736 +1740.407517 +1740.449841 +1740.518040 +1740.540384 +1740.586671 +1740.631626 +1740.665259 +1740.706484 +1740.724866 +1740.727663 +1740.812412 +1740.866391 +1740.900890 +1740.925865 +1740.964160 +1740.971619 +1740.976481 +1741.258865 +1741.261429 +1741.608415 +1742.509313 +1742.520335 +1742.655766 +1743.476711 +1746.110508 +1746.549502 +1747.364353 +1747.820963 +1748.102414 +1749.464684 +1750.941173 +1750.972108 +1751.217996 +1751.984961 +1752.127585 +1752.268344 +1752.984894 +1753.973238 +1753.984426 +1754.972837 +1754.984126 +1755.224119 +1755.227049 +1755.522920 +1755.692783 +1755.973402 +1756.554720 +1756.867574 +1757.483824 +1757.525715 +1758.029377 +1759.502403 +1759.507997 +1760.422549 +1761.073031 +1761.183687 +1761.286850 +1761.384652 +1761.387716 +1761.475028 +1761.485085 +1761.574629 +1761.685151 +1761.688115 +1761.787715 +1761.885517 +1761.888548 +1761.896573 +1761.985617 +1761.988914 +1762.073929 +1762.074761 +1762.075427 +1762.088581 +1762.091944 +1762.175194 +1762.185784 +1762.274695 +1762.285051 +1762.384718 +1762.387548 +1762.393409 +1762.474728 +1762.485517 +1762.488048 +1762.575560 +1762.585583 +1762.588281 +1762.674994 +1762.675460 +1762.690312 +1762.778124 +1762.785250 +1762.874661 +1762.885683 +1762.892876 +1762.985450 +1762.988280 +1762.992210 +1763.085483 +1763.088680 +1763.174227 +1763.174794 +1763.185816 +1763.191444 +1763.274660 +1763.275160 +1763.285449 +1763.288147 +1763.374727 +1763.386448 +1763.488280 +1763.491310 +1763.585649 +1763.588413 +1763.599102 +1763.674360 +1763.685815 +1763.688546 +1763.691809 +1763.785049 +1763.788279 +1763.873727 +1763.874593 +1763.875625 +1763.885182 +1763.890377 +1763.985316 +1763.994873 +1764.091376 +1764.186048 +1764.274626 +1764.275159 +1764.285548 +1764.385615 +1764.387813 +1764.485715 +1764.574825 +1764.585715 +1764.674759 +1764.685781 +1764.688545 +1764.773793 +1764.774892 +1764.783949 +1764.885914 +1764.888711 +1764.974326 +1764.975125 +1764.983683 +1764.985981 +1765.075291 +1765.085747 +1765.088278 +1765.185581 +1765.188311 +1765.190809 +1765.283782 +1765.375158 +1765.385481 +1765.393906 +1765.475124 +1765.485514 +1765.493239 +1765.585580 +1765.588544 +1765.674491 +1765.774291 +1765.783749 +1765.786246 +1765.884181 +1765.886712 +1765.889509 +1765.974791 +1765.975324 +1765.985547 +1766.330368 +1766.333465 +1767.686111 +1767.689608 +1769.053409 +1770.041420 +1770.045516 +1770.433927 +1770.551909 +1771.384009 +1771.479114 +1772.087106 +1772.176882 +1772.251874 +1772.585540 +1772.625733 +1772.689669 +1773.326765 +1773.465925 +1773.534190 +1773.705019 +1773.797460 +1773.830461 +1773.874616 +1773.884307 +1773.984506 +1774.072785 +1774.218306 +1774.299391 +1774.323634 +1774.478112 +1774.756500 +1774.875847 +1774.881808 +1774.937486 +1774.992564 +1775.008781 +1775.049307 +1775.111045 +1775.178744 +1775.266024 +1775.296493 +1775.298025 +1775.325664 +1775.338751 +1775.364292 +1775.368854 +1775.465923 +1775.567389 +1775.576413 +1775.639350 +1775.645244 +1775.665624 +1775.693895 +1775.709580 +1775.739316 +1775.771351 +1775.801421 +1775.803519 +1775.888301 +1775.921201 +1776.419369 +1776.421600 +1776.424431 +1776.547341 +1776.550471 +1776.821800 +1776.824064 +1776.826495 +1776.837018 +1777.958861 +1777.961492 +1777.968119 +1778.225628 +1778.625627 +1778.629024 +1778.643876 +1779.411341 +1781.153530 +1781.165352 +1781.699417 +1781.827322 +1783.163185 +1784.593587 +1785.193153 +1785.620559 +1785.984461 +1786.493485 +1787.136108 +1787.985325 +1788.785457 +1788.814628 +1789.703871 +1789.983325 +1790.453920 +1790.984956 +1791.520353 +1792.856416 +1793.909395 +1794.070600 +1794.669201 +1795.021215 +1795.806862 +1796.098004 +1796.173628 +1796.174527 +1796.184085 +1796.186715 +1796.273928 +1796.284850 +1796.287215 +1796.384717 +1796.487614 +1796.585083 +1796.587414 +1796.685050 +1796.785483 +1796.885183 +1796.887281 +1796.891410 +1796.986714 +1797.084816 +1797.089112 +1797.174993 +1797.185649 +1797.188213 +1797.274926 +1797.285682 +1797.287946 +1797.385915 +1797.388612 +1797.393041 +1797.475459 +1797.488113 +1797.591376 +1797.674559 +1797.775192 +1797.788412 +1797.885515 +1797.974626 +1797.974925 +1797.985981 +1797.992208 +1798.075658 +1798.085781 +1798.088212 +1798.174992 +1798.185947 +1798.192174 +1798.285981 +1798.383350 +1798.485647 +1798.487579 +1798.585847 +1798.592241 +1798.691575 +1798.774791 +1798.785580 +1798.788378 +1798.885947 +1798.989743 +1799.085580 +1799.190742 +1799.274025 +1799.274558 +1799.274891 +1799.286146 +1799.289110 +1799.297668 +1799.374058 +1799.374524 +1799.375024 +1799.386013 +1799.388910 +1799.485746 +1799.586079 +1799.673725 +1799.686379 +1799.774491 +1799.790541 +1799.885812 +1799.898000 +1799.975056 +1799.985912 +1799.989975 +1800.074157 +1800.088343 +1800.174990 +1800.185812 +1800.188476 +1800.274523 +1800.285579 +1800.385779 +1800.387843 +1800.485612 +1800.574956 +1800.585545 +1800.589208 +1800.674456 +1800.691339 +1800.785712 +1800.789508 +1800.874523 +1800.893171 +1800.984046 +1801.530999 +1801.533963 +1802.531431 +1803.368127 +1803.980747 +1803.992169 +1804.210117 +1806.375816 +1806.456835 +1806.592599 +1806.916641 +1807.121803 +1807.161929 +1807.289268 +1807.719271 +1808.022268 +1808.109114 +1808.509214 +1808.692597 +1808.877645 +1808.951238 +1808.994428 +1809.197691 +1809.286769 +1809.301288 +1809.342080 +1809.397824 +1809.401487 +1809.565157 +1809.572949 +1809.751936 +1809.780408 +1809.836985 +1809.865789 +1809.962725 +1809.994494 +1810.006415 +1810.053701 +1810.085569 +1810.142412 +1810.253468 +1810.366055 +1810.381173 +1810.384104 +1810.469252 +1810.593128 +1810.651969 +1810.696358 +1810.722132 +1810.755898 +1810.815272 +1810.829225 +1810.874113 +1810.906214 +1810.939448 +1811.254599 +1811.738182 +1811.740479 +1811.742910 +1813.417600 +1814.681902 +1816.339909 +1817.421426 +1817.424356 +1818.572640 +1819.345933 +1820.107937 +1820.456155 +1820.972438 +1820.972838 +1821.144199 +1821.984025 +1822.143599 +1822.161548 +1822.855220 +1822.972736 +1822.972936 +1822.973368 +1823.133475 +1823.136472 +1823.984623 +1824.554952 +1824.973067 +1824.984822 +1825.972799 +1826.221584 +1826.224447 +1826.251520 +1826.494677 +1827.359311 +1828.100403 +1828.278158 +1829.701933 +1830.639062 +1830.972628 +1831.084050 +1831.183850 +1831.188412 +1831.273893 +1831.275058 +1831.284582 +1831.384615 +1831.387080 +1831.390443 +1831.475458 +1831.483383 +1831.488112 +1831.587412 +1831.685181 +1831.687279 +1831.690642 +1831.785481 +1831.787612 +1831.874059 +1831.874392 +1831.887046 +1831.891142 +1831.924941 +1832.073826 +1832.166899 +1832.274791 +1832.285014 +1832.385014 +1832.387645 +1832.389743 +1832.487112 +1832.574291 +1832.587278 +1832.685014 +1832.687311 +1832.784914 +1832.787511 +1832.789742 +1832.885213 +1832.890741 +1832.975523 +1832.985613 +1832.989542 +1833.074391 +1833.074890 +1833.085546 +1833.174957 +1833.185679 +1833.190375 +1833.274923 +1833.287977 +1833.374990 +1833.385779 +1833.389142 +1833.474091 +1833.485679 +1833.489542 +1833.673857 +1833.774190 +1833.785013 +1833.887677 +1833.890107 +1833.983647 +1833.986078 +1834.074889 +1834.090973 +1834.174756 +1834.185245 +1834.188342 +1834.193637 +1834.275355 +1834.275788 +1834.283614 +1834.286078 +1834.288642 +1834.385645 +1834.390640 +1834.474722 +1834.475155 +1834.485711 +1834.488275 +1834.584113 +1834.674988 +1834.686011 +1834.688941 +1834.691206 +1834.775987 +1834.785744 +1834.794402 +1834.888708 +1834.985977 +1834.988674 +1835.085944 +1835.088042 +1835.174988 +1835.189007 +1835.274289 +1835.275654 +1835.286243 +1835.292037 +1835.385377 +1835.472157 +1835.485377 +1835.573389 +1835.685011 +1835.785344 +1835.790172 +1835.885310 +1835.892736 +1835.974188 +1835.983778 +1835.986243 +1836.268893 +1839.413345 +1840.623934 +1840.973717 +1841.156101 +1841.253270 +1841.601555 +1841.673050 +1842.167488 +1842.484305 +1842.681407 +1843.098390 +1843.103651 +1843.154068 +1843.302752 +1843.422299 +1843.529558 +1843.559662 +1843.860694 +1843.919368 +1843.951303 +1843.981073 +1844.065056 +1844.108446 +1844.218136 +1844.308212 +1844.364256 +1844.394126 +1844.400020 +1844.424796 +1844.439614 +1844.483570 +1844.514106 +1844.545042 +1844.611109 +1844.667852 +1844.707080 +1844.771116 +1844.873613 +1844.935951 +1844.997256 +1845.045841 +1845.071282 +1845.080606 +1845.176510 +1845.219034 +1845.269084 +1845.275244 +1845.298421 +1845.312274 +1845.346406 +1845.474312 +1845.512140 +1845.529756 +1845.599786 +1845.665087 +1845.836682 +1845.839013 +1845.849536 +1845.866985 +1845.877941 +1845.896822 +1845.942310 +1845.958993 +1848.335647 +1849.724524 +1853.316162 +1853.321557 +1854.529814 +1854.916693 +1855.454422 +1855.984757 +1856.124251 +1856.137305 +1856.808699 +1856.984823 +1857.148026 +1857.157350 +1857.710497 +1857.973433 +1858.149391 +1858.964641 +1859.340964 +1859.344161 +1859.432140 +1859.645626 +1860.033804 +1860.745325 +1860.984419 +1861.442128 +1861.459577 +1862.252184 +1862.946955 +1865.972859 +1865.973192 +1866.072959 +1866.084348 +1866.183682 +1866.274391 +1866.284148 +1866.286412 +1866.390708 +1866.486745 +1866.574923 +1866.584480 +1866.684847 +1866.687544 +1866.689509 +1866.784713 +1866.874657 +1866.885013 +1866.985479 +1866.987577 +1867.074790 +1867.091440 +1867.174123 +1867.185246 +1867.190507 +1867.275455 +1867.285179 +1867.287976 +1867.383247 +1867.386011 +1867.475622 +1867.483514 +1867.486144 +1867.585045 +1867.587943 +1867.673457 +1867.684846 +1867.687609 +1867.874955 +1867.884979 +1867.975721 +1867.985611 +1867.990406 +1868.074722 +1868.085378 +1868.088342 +1868.185045 +1868.187343 +1868.274222 +1868.285278 +1868.385045 +1868.387942 +1868.392704 +1868.474755 +1868.488708 +1868.490939 +1868.585244 +1868.587675 +1868.591671 +1868.674755 +1868.685444 +1868.687775 +1868.774755 +1868.785344 +1868.788341 +1868.792370 +1868.875087 +1868.885244 +1868.887741 +1868.974654 +1868.983079 +1868.985743 +1868.988341 +1869.073755 +1869.075054 +1869.075354 +1869.084877 +1869.173988 +1869.183312 +1869.185876 +1869.274987 +1869.285010 +1869.289240 +1869.388307 +1869.393702 +1869.485077 +1869.490638 +1869.574720 +1869.585210 +1869.588140 +1869.675253 +1869.687807 +1869.784843 +1869.883012 +1869.885676 +1869.888373 +1869.975619 +1869.988406 +1870.073788 +1870.074187 +1870.074853 +1870.093035 +1870.185176 +1870.188206 +1870.274753 +1870.283378 +1870.285842 +1870.294533 +1870.374753 +1870.385242 +1870.387507 +1870.474120 +1870.474653 +1870.483344 +1870.485908 +1870.488506 +1870.585009 +1870.687273 +1870.774220 +1870.774686 +1870.785275 +1870.788073 +1870.790270 +1870.886141 +1870.985109 +1870.987873 +1870.992268 +1872.417608 +1873.274017 +1873.299925 +1873.937953 +1874.076880 +1875.219470 +1875.972683 +1875.983805 +1875.994694 +1876.058164 +1876.144078 +1876.166256 +1876.242013 +1876.338983 +1876.432389 +1876.596259 +1876.762525 +1876.854467 +1876.904417 +1876.908846 +1877.007081 +1877.086867 +1877.173547 +1877.256265 +1877.288233 +1877.299688 +1877.326461 +1877.484070 +1877.522265 +1877.675079 +1877.857496 +1877.930823 +1878.069251 +1878.164089 +1878.186100 +1878.208545 +1878.225894 +1878.241045 +1878.300386 +1878.334452 +1878.409244 +1878.617435 +1878.708078 +1878.763556 +1878.767119 +1878.783103 +1878.794958 +1878.823562 +1878.854165 +1878.884235 +1878.894525 +1878.914272 +1878.950868 +1879.029190 +1879.043276 +1879.086499 +1879.101118 +1879.130122 +1879.188763 +1879.198987 +1879.215803 +1879.257195 +1879.317301 +1879.320199 +1879.348504 +1879.378640 +1879.408943 +1879.438214 +1879.517934 +1879.527957 +1879.541244 +1879.568983 +1879.609176 +1879.623595 +1879.662423 +1879.676941 +1879.702549 +1879.759392 +1879.788996 +1879.820464 +1879.940877 +1879.972246 +1880.033118 +1880.049036 +1880.083468 +1880.148802 +1880.181470 +1880.198253 +1880.211806 +1880.226558 +1880.255862 +1880.274010 +1880.344107 +1880.347370 +1880.359825 +1880.391193 +1880.407377 +1880.452632 +1880.455495 +1880.468549 +1880.485432 +1880.498686 +1880.509508 +1880.541942 +1880.571013 +1880.596521 +1880.615169 +1880.646837 +1880.651100 +1880.661289 +1880.678805 +1880.693923 +1880.706211 +1880.736514 +1880.752731 +1880.763554 +1880.766850 +1880.782801 +1880.804213 +1880.828822 +1880.844839 +1880.857027 +1880.890593 +1880.901083 +1880.919664 +1880.951932 +1880.960323 +1883.525789 +1884.240673 +1886.687391 +1887.447929 +1887.674869 +1887.768742 +1887.799344 +1887.878065 +1887.976534 +1888.033710 +1888.066777 +1888.152824 +1888.196413 +1888.261482 +1888.327882 +1888.433077 +1888.717958 +1888.756453 +1888.902340 +1888.940935 +1889.007601 +1889.037005 +1889.145197 +1889.248793 +1889.304704 +1889.350292 +1889.761780 +1889.901840 +1889.994880 +1890.059049 +1890.225682 +1890.466974 +1890.505336 +1890.745329 +1890.810530 +1891.145395 +1891.148259 +1891.726680 +1891.732108 +1891.859014 +1891.973133 +1891.983822 +1892.116523 +1892.118920 +1892.121451 +1892.727112 +1892.972666 +1892.983921 +1893.132939 +1893.135636 +1893.814789 +1893.915622 +1893.972465 +1893.972831 +1893.973231 +1894.132138 +1894.637799 +1895.140129 +1895.493609 +1895.876792 +1896.145623 +1896.183452 +1896.309592 +1896.677424 +1896.918050 +1896.964670 +1897.033667 +1897.117950 +1897.237796 +1897.379754 +1897.420081 +1897.498735 +1897.568332 +1897.601665 +1897.678122 +1897.743424 +1897.930436 +1897.957975 +1898.026007 +1898.077789 +1898.123110 +1898.201865 +1898.333300 +1898.406726 +1898.528971 +1898.665700 +1898.743622 +1898.991041 +1899.064601 +1899.224141 +1899.266166 +1899.410388 +1899.694870 +1899.772892 +1899.861104 +1900.017814 +1900.096135 +1900.311420 +1900.416881 +1900.522642 +1900.618179 +1900.729368 +1900.982981 +1901.073257 +1901.173190 +1901.185478 +1901.188075 +1901.273457 +1901.283347 +1901.285545 +1901.385811 +1901.389940 +1901.582680 +1901.585178 +1901.673889 +1901.686477 +1901.783746 +1901.786277 +1901.789174 +1901.874122 +1901.884045 +1901.974122 +1901.986676 +1901.989473 +1902.073489 +1902.086909 +1902.090172 +1902.093369 +1902.174322 +1902.182913 +1902.187775 +1902.275121 +1902.285410 +1902.287808 +1902.374288 +1902.384411 +1902.387175 +1902.390439 +1902.484611 +1902.487342 +1902.574288 +1902.587808 +1902.682979 +1902.685410 +1902.687708 +1902.774254 +1902.784544 +1902.786642 +1902.874221 +1902.885510 +1902.887807 +1902.985510 +1903.074088 +1903.074820 +1903.084544 +1903.090471 +1903.183345 +1903.284577 +1903.287441 +1903.383078 +1903.387973 +1903.475319 +1903.483278 +1903.487973 +1903.582978 +1903.585376 +1903.587873 +1903.683244 +1903.685609 +1903.687940 +1903.774653 +1903.784643 +1903.789804 +1903.887040 +1903.973887 +1903.984676 +1903.987040 +1903.989271 +1904.091935 +1904.174220 +1904.174653 +1904.186740 +1904.285608 +1904.287906 +1904.383144 +1904.387839 +1904.474286 +1904.484676 +1904.574785 +1904.583443 +1904.585841 +1904.588305 +1904.592334 +1904.684542 +1904.690236 +1904.774652 +1904.783377 +1904.785774 +1904.788072 +1904.887106 +1904.890936 +1904.983609 +1904.986007 +1904.988438 +1905.083010 +1905.088038 +1905.174685 +1905.182910 +1905.283676 +1905.286073 +1905.385474 +1905.387938 +1905.393399 +1905.487139 +1905.584208 +1905.586606 +1905.590768 +1905.684541 +1905.687139 +1905.774218 +1905.784308 +1905.786706 +1905.873852 +1905.874285 +1905.883242 +1905.885706 +1905.974185 +1905.974884 +1905.983142 +1905.985606 +1905.988004 +1906.527098 +1906.561930 +1906.600158 +1906.878013 +1907.439518 +1908.174282 +1908.200290 +1908.222934 +1908.238118 +1908.284206 +1908.401022 +1908.469453 +1908.496826 +1908.620269 +1908.645244 +1908.676380 +1908.751005 +1908.844645 +1909.089166 +1909.272483 +1909.402519 +1909.489566 +1909.550671 +1909.564924 +1909.596658 +1909.688267 +1909.729159 +1909.808779 +1909.848640 +1909.878943 +1909.911477 +1909.951670 +1910.005749 +1910.072482 +1910.119835 +1910.338549 +1910.431390 +1910.494093 +1910.555732 +1910.618769 +1910.693694 +1910.737516 +1910.804449 +1910.947107 +1910.971882 +1911.006580 +1911.054499 +1911.130989 +1911.227126 +1911.271648 +1911.295758 +1911.478708 +1911.502917 +1911.524562 +1911.555431 +1911.612774 +1911.633420 +1911.649404 +1911.652334 +1911.687832 +1911.752634 +1911.761858 +1911.805114 +1911.837515 +1911.864821 +1911.943176 +1911.967618 +1912.043709 +1912.129223 +1912.161791 +1912.169683 +1912.194558 +1912.209410 +1912.320066 +1912.347005 +1912.515304 +1912.550868 +1912.651534 +1912.689396 +1912.713405 +1912.725327 +1912.756296 +1912.796655 +1912.880838 +1912.892326 +1912.907777 +1912.919099 +1912.935050 +1912.945606 +1912.989262 +1913.014737 +1913.039279 +1913.080504 +1913.121996 +1913.186765 +1913.200784 +1913.230121 +1913.281303 +1913.297920 +1913.323428 +1913.349668 +1913.366352 +1913.378773 +1913.406878 +1913.421463 +1913.433618 +1913.460624 +1913.474177 +1913.528256 +1913.549335 +1913.556495 +1913.573911 +1913.585066 +1913.612539 +1913.627057 +1913.671480 +1913.682335 +1913.695722 +1913.754397 +1913.769415 +1913.779105 +1913.796954 +1913.830720 +1913.837980 +1913.875575 +1913.933184 +1913.948436 +1913.966351 +1913.974376 +1913.994456 +1914.005678 +1914.039544 +1914.065518 +1914.100717 +1914.107210 +1914.134849 +1914.149401 +1914.204180 +1914.237013 +1914.252698 +1914.280403 +1914.296454 +1914.326158 +1914.385332 +1914.397919 +1914.407176 +1914.414303 +1914.441775 +1914.469248 +1914.485498 +1914.502148 +1914.515302 +1914.572478 +1914.588795 +1914.615168 +1914.629254 +1914.661422 +1914.677639 +1914.694855 +1914.707776 +1914.721662 +1914.737712 +1914.757193 +1914.766450 +1914.772111 +1914.796087 +1914.812371 +1914.823327 +1914.843973 +1914.860889 +1914.878405 +1914.905544 +1914.962953 +1914.977073 +1914.992690 +1915.005644 +1915.010373 +1915.051132 +1915.057659 +1915.066183 +1915.082434 +1915.112737 +1915.127322 +1915.139776 +1915.154961 +1915.176240 +1915.182267 +1915.232317 +1915.237745 +1915.263153 +1915.293689 +1915.308707 +1915.324458 +1915.352730 +1915.367682 +1915.382334 +1915.396819 +1915.408774 +1915.414735 +1915.448634 +1915.472976 +1915.483999 +1915.489759 +1915.530885 +1915.599083 +1915.605677 +1915.616766 +1915.631218 +1915.646602 +1915.750399 +1915.781334 +1915.783432 +1915.855227 +1915.908607 +1915.924924 +1923.270771 +1923.327447 +1923.389552 +1923.562878 +1923.583757 +1923.618756 +1925.161478 +1925.194778 +1925.342663 +1925.470469 +1925.625181 +1925.657581 +1925.726612 +1925.770102 +1925.983755 +1926.140065 +1926.142629 +1926.804334 +1926.830607 +1926.858046 +1926.953651 +1926.983121 +1927.137866 +1927.140430 +1927.923979 +1928.129241 +1928.131938 +1928.286850 +1928.625943 +1928.972696 +1929.150352 +1929.509892 +1929.582519 +1929.603465 +1929.647854 +1930.140461 +1930.145755 +1930.983683 +1931.150017 +1931.157576 +1931.574892 +1931.604961 +1931.855677 +1932.276722 +1932.444621 +1932.512420 +1932.558174 +1932.600798 +1933.108190 +1933.124241 +1933.172093 +1933.193505 +1933.330201 +1933.493038 +1933.885878 +1933.893437 +1934.334829 +1934.736460 +1934.750446 +1934.831632 +1935.179583 +1935.858171 +1935.934061 +1935.971257 +1935.984045 +1936.072689 +1936.083279 +1936.172589 +1936.183345 +1936.190038 +1936.283478 +1936.285676 +1936.486242 +1936.573588 +1936.674420 +1936.686508 +1936.688606 +1936.783977 +1936.786441 +1936.874420 +1936.882678 +1936.887407 +1936.974720 +1936.987573 +1937.083011 +1937.085575 +1937.174753 +1937.176251 +1937.184310 +1937.186941 +1937.273820 +1937.290803 +1937.382645 +1937.384909 +1937.487640 +1937.582811 +1937.673886 +1937.674353 +1937.683077 +1937.773487 +1937.789471 +1937.874319 +1937.888938 +1937.982711 +1937.985108 +1937.987572 +1937.991968 +1938.073486 +1938.073886 +1938.084342 +1938.087073 +1938.172054 +1938.186607 +1938.275950 +1938.283976 +1938.286673 +1938.487006 +1938.489970 +1938.573652 +1938.574185 +1938.672986 +1938.684109 +1938.773919 +1938.785141 +1938.787638 +1938.873552 +1938.884575 +1938.974318 +1938.982643 +1938.985107 +1938.987505 +1939.273552 +1939.282909 +1939.373618 +1939.373818 +1939.390102 +1939.484274 +1939.486772 +1939.574118 +1939.576116 +1939.586638 +1939.588670 +1939.676748 +1939.682842 +1939.687771 +1939.774550 +1939.789569 +1939.874417 +1939.884807 +1939.887504 +1939.889535 +1939.983308 +1939.985606 +1940.084707 +1940.090001 +1940.184906 +1940.187437 +1940.274383 +1940.287270 +1940.289268 +1940.384573 +1940.386671 +1940.473884 +1940.484606 +1940.487570 +1940.490467 +1940.573917 +1940.574017 +1940.584839 +1940.587237 +1940.591333 +1940.685272 +1940.785172 +1940.883973 +1940.984506 +1940.987370 +1940.991965 +1942.066723 +1942.347775 +1943.247973 +1944.532088 +1945.577009 +1945.982636 +1946.358227 +1946.542775 +1946.911540 +1947.454563 +1947.627989 +1947.906211 +1947.971479 +1948.216633 +1948.688661 +1948.767615 +1948.805244 +1948.849267 +1948.951531 +1949.069013 +1949.087528 +1949.139742 +1949.230485 +1949.284264 +1949.316699 +1949.371477 +1949.432949 +1949.471044 +1949.613268 +1949.687061 +1949.716632 +1949.807574 +1949.938376 +1950.004976 +1950.044603 +1950.113101 +1950.183598 +1950.210304 +1950.270810 +1950.279002 +1950.388692 +1950.427853 +1950.447533 +1950.518462 +1950.570444 +1950.597683 +1950.668779 +1950.674639 +1950.715099 +1950.719195 +1950.743803 +1950.762784 +1950.777370 +1950.788692 +1950.808206 +1950.817163 +1950.885095 +1950.914566 +1950.924622 +1950.945202 +1953.070907 +1954.639371 +1954.647729 +1955.600309 +1956.414394 +1957.225748 +1957.776930 +1957.788352 +1960.983653 +1961.163806 +1961.181322 +1961.922414 +1961.972264 +1962.178024 +1962.866036 +1963.614220 +1963.971596 +1963.983351 +1964.299301 +1964.301632 +1964.778421 +1964.781285 +1964.794206 +1964.971928 +1965.972060 +1965.982816 +1966.728936 +1966.979085 +1967.482148 +1967.491739 +1967.843986 +1968.651411 +1968.664065 +1969.557171 +1969.566595 +1970.969191 +1971.071922 +1971.082711 +1971.172421 +1971.182644 +1971.272587 +1971.283144 +1971.288438 +1971.383210 +1971.388871 +1971.485741 +1971.673852 +1971.674352 +1971.684275 +1971.686773 +1971.784342 +1971.790935 +1971.874651 +1971.884375 +1971.984208 +1971.986806 +1972.073686 +1972.088371 +1972.174651 +1972.184375 +1972.186506 +1972.283376 +1972.290269 +1972.386506 +1972.482277 +1972.487205 +1972.573885 +1972.583808 +1972.586406 +1972.682709 +1972.773685 +1972.784574 +1972.789169 +1972.884407 +1972.887571 +1972.985073 +1973.082909 +1973.085273 +1973.173651 +1973.184574 +1973.189735 +1973.273618 +1973.274051 +1973.284440 +1973.373684 +1973.383008 +1973.385306 +1973.387870 +1973.472785 +1973.473251 +1973.474284 +1973.474550 +1973.484074 +1973.486305 +1973.572951 +1973.582309 +1973.672485 +1973.683907 +1973.686671 +1973.782575 +1973.784939 +1973.873551 +1973.882442 +1973.984273 +1973.990400 +1974.084306 +1974.173883 +1974.182408 +1974.184872 +1974.187536 +1974.273683 +1974.284273 +1974.287070 +1974.373117 +1974.384439 +1974.387136 +1974.389667 +1974.487070 +1974.582674 +1974.585038 +1974.673250 +1974.683640 +1974.691299 +1974.783973 +1974.786770 +1974.792264 +1974.873383 +1974.882774 +1974.885205 +1974.887635 +1974.984239 +1974.986670 +1975.087069 +1975.173516 +1975.187302 +1975.189567 +1975.273716 +1975.274848 +1975.285404 +1975.288135 +1975.373716 +1975.386902 +1975.473915 +1975.474814 +1975.484704 +1975.573749 +1975.584738 +1975.773482 +1975.773982 +1975.782207 +1975.784671 +1975.874148 +1975.882839 +1975.885170 +1975.984371 +1976.223232 +1977.272781 +1977.276178 +1978.187099 +1978.808810 +1978.816436 +1979.455130 +1979.478873 +1980.345605 +1980.388562 +1980.630587 +1980.983134 +1981.406577 +1981.511405 +1982.502147 +1982.681933 +1982.925123 +1983.917963 +1984.090923 +1984.121892 +1984.200047 +1984.371509 +1984.533613 +1984.541938 +1984.613766 +1984.723024 +1984.835045 +1985.050762 +1985.411434 +1985.527718 +1985.568044 +1985.607505 +1985.629683 +1985.640871 +1985.701844 +1985.724488 +1985.751927 +1985.828650 +1985.863915 +1985.877634 +1985.911234 +1985.921557 +1985.967911 +1986.272006 +1986.274237 +1986.276835 +1986.840637 +1986.842702 +1986.847297 +1987.181463 +1987.183727 +1987.186091 +1987.582728 +1987.585125 +1988.002874 +1988.331079 +1988.334042 +1989.381527 +1989.384890 +1989.387288 +1991.039967 +1991.629044 +1991.632141 +1991.865674 +1992.367338 +1993.039965 +1993.732239 +1996.947420 +1997.983949 +1998.308658 +1998.972127 +1998.972726 +1998.983249 +2000.512052 +2000.971392 +2001.580449 +2001.583313 +2002.650145 +2002.726302 +2003.450611 +2004.761665 +2005.086073 +2005.592666 +2005.973285 +2006.073219 +2006.082876 +2006.172752 +2006.373685 +2006.385206 +2006.474284 +2006.486305 +2006.573485 +2006.584007 +2006.586172 +2006.673351 +2006.684041 +2006.783608 +2006.785805 +2006.883774 +2006.982542 +2007.084939 +2007.185039 +2007.188935 +2007.273717 +2007.284939 +2007.290134 +2007.383274 +2007.385805 +2007.473850 +2007.484173 +2007.486837 +2007.573583 +2007.574083 +2007.574383 +2007.584373 +2007.673950 +2007.674915 +2007.683207 +2007.685571 +2007.773450 +2007.784506 +2007.787136 +2007.874615 +2007.875148 +2007.883007 +2007.885371 +2007.974649 +2007.983173 +2007.985571 +2008.074882 +2008.084772 +2008.087169 +2008.183373 +2008.185737 +2008.188535 +2008.274149 +2008.283473 +2008.285870 +2008.374182 +2008.374382 +2008.374715 +2008.384938 +2008.387402 +2008.390466 +2008.485238 +2008.488101 +2008.585004 +2008.587169 +2008.687968 +2008.690765 +2008.773949 +2008.783273 +2008.785604 +2008.884571 +2008.983772 +2008.990032 +2009.074348 +2009.084971 +2009.184438 +2009.192929 +2009.274115 +2009.284937 +2009.287768 +2009.384870 +2009.387101 +2009.393262 +2009.485203 +2009.574481 +2009.592696 +2009.688433 +2009.690431 +2009.774547 +2009.785736 +2009.788433 +2009.874580 +2009.885403 +2009.890697 +2009.985902 +2010.074214 +2010.084537 +2010.183404 +2010.185835 +2010.188233 +2010.283804 +2010.286035 +2010.288033 +2010.374280 +2010.384836 +2010.387633 +2010.474979 +2010.483670 +2010.486001 +2010.585335 +2010.588232 +2010.685269 +2010.688399 +2010.691429 +2010.774313 +2010.785235 +2010.888066 +2010.974046 +2011.361925 +2011.364422 +2011.630589 +2013.286432 +2015.204345 +2016.612935 +2016.650298 +2016.822758 +2016.920161 +2017.110304 +2017.205409 +2017.227720 +2017.317563 +2017.464349 +2017.636444 +2017.674006 +2017.780433 +2018.000446 +2018.152327 +2018.210669 +2018.464715 +2018.487892 +2018.524288 +2018.747032 +2019.172140 +2019.226719 +2019.253725 +2019.280332 +2019.286792 +2019.506439 +2019.515063 +2019.532712 +2019.637108 +2019.833644 +2020.027051 +2020.093051 +2020.289655 +2020.336841 +2020.394017 +2020.424786 +2020.465312 +2020.480231 +2020.549295 +2020.587223 +2020.615662 +2020.672904 +2020.691819 +2020.704439 +2020.745931 +2020.774170 +2020.786124 +2020.790553 +2020.862315 +2020.934875 +2020.946963 +2021.278665 +2021.280862 +2021.283127 +2021.580629 +2021.872504 +2022.088887 +2022.091251 +2022.268774 +2023.211963 +2023.214860 +2024.789917 +2025.209363 +2025.222583 +2026.164874 +2026.167637 +2026.170868 +2028.033203 +2029.419283 +2029.771064 +2030.303997 +2030.973260 +2031.139161 +2031.973259 +2031.973859 +2032.149250 +2033.163068 +2033.166365 +2033.178686 +2033.971526 +2033.985312 +2035.138058 +2035.539989 +2035.554874 +2035.984278 +2036.170957 +2036.409785 +2036.749711 +2037.531928 +2038.190469 +2038.200459 +2039.012446 +2040.858632 +2040.972584 +2040.973017 +2041.084273 +2041.088901 +2041.173916 +2041.174682 +2041.184372 +2041.188568 +2041.374982 +2041.386070 +2041.483706 +2041.486037 +2041.574782 +2041.576014 +2041.585804 +2041.683972 +2041.785904 +2041.788001 +2041.875014 +2041.876147 +2041.883939 +2041.886436 +2041.975813 +2041.983439 +2041.985870 +2042.175613 +2042.175813 +2042.187735 +2042.275613 +2042.285503 +2042.287701 +2042.374714 +2042.375247 +2042.384305 +2042.386636 +2042.485969 +2042.489299 +2042.586003 +2042.588800 +2042.690198 +2042.776046 +2042.875180 +2042.886069 +2042.889066 +2042.892995 +2042.986335 +2043.089032 +2043.184703 +2043.187001 +2043.274081 +2043.274613 +2043.284936 +2043.288266 +2043.374047 +2043.375013 +2043.385269 +2043.387733 +2043.485236 +2043.487966 +2043.490664 +2043.586901 +2043.686002 +2043.688099 +2043.785036 +2043.790630 +2043.886201 +2043.890597 +2043.985468 +2043.988166 +2044.075279 +2044.086101 +2044.175445 +2044.175978 +2044.184403 +2044.186834 +2044.284736 +2044.287200 +2044.375445 +2044.386400 +2044.388465 +2044.484635 +2044.575478 +2044.584402 +2044.586900 +2044.675444 +2044.677509 +2044.684202 +2044.686800 +2044.689364 +2044.774312 +2044.774745 +2044.785634 +2044.885201 +2044.889364 +2044.973812 +2044.974612 +2044.985268 +2045.175544 +2045.183969 +2045.186266 +2045.274911 +2045.283935 +2045.286366 +2045.289064 +2045.385334 +2045.484102 +2045.486632 +2045.575310 +2045.575710 +2045.583968 +2045.586433 +2045.689063 +2045.691128 +2045.785833 +2045.791061 +2045.885633 +2045.985500 +2046.951499 +2046.954630 +2047.394789 +2048.700449 +2048.708208 +2049.615433 +2050.250530 +2050.751263 +2050.754426 +2050.984163 +2051.268345 +2051.586893 +2051.591388 +2051.969676 +2052.201278 +2052.616396 +2052.718627 +2052.729516 +2052.755856 +2052.813798 +2052.846232 +2052.963948 +2053.329582 +2053.684293 +2054.011999 +2054.124120 +2054.165145 +2054.219458 +2054.274070 +2054.374003 +2054.385458 +2054.388522 +2054.430080 +2054.569241 +2054.584292 +2054.598578 +2054.645498 +2054.664645 +2054.816260 +2054.860549 +2054.898045 +2055.121321 +2055.296246 +2055.414728 +2055.602740 +2055.806635 +2055.933841 +2056.350857 +2056.352989 +2056.598043 +2056.600308 +2057.508965 +2057.511163 +2057.514193 +2058.212660 +2058.218554 +2058.950255 +2059.726079 +2060.549588 +2063.401933 +2063.574726 +2064.288245 +2064.469131 +2064.656910 +2064.674725 +2065.513019 +2065.812786 +2065.818280 +2065.972693 +2066.146119 +2066.390041 +2066.393172 +2066.415416 +2066.974323 +2066.985878 +2067.156175 +2067.158672 +2067.973423 +2068.287975 +2068.291039 +2068.872223 +2068.973222 +2069.156972 +2069.536492 +2069.973255 +2069.985409 +2070.160234 +2070.229232 +2070.973820 +2071.127166 +2071.129963 +2071.203124 +2071.348778 +2073.363095 +2073.530361 +2073.556335 +2073.689568 +2074.808947 +2075.151271 +2075.286003 +2075.973049 +2075.984837 +2076.183671 +2076.186469 +2076.287501 +2076.385303 +2076.483904 +2076.585702 +2076.685735 +2076.687900 +2076.784270 +2076.786668 +2076.886601 +2076.976378 +2076.986068 +2077.075312 +2077.084636 +2077.087134 +2077.175245 +2077.186468 +2077.275811 +2077.283704 +2077.286234 +2077.291030 +2077.385968 +2077.574912 +2077.585135 +2077.591262 +2077.675278 +2077.685235 +2077.688698 +2077.783270 +2077.885368 +2077.889231 +2078.086167 +2078.088598 +2078.187732 +2078.284269 +2078.389030 +2078.391028 +2078.485600 +2078.488264 +2078.490829 +2078.575044 +2078.584701 +2078.589496 +2078.675544 +2078.776043 +2078.786899 +2078.789463 +2078.884668 +2078.887165 +2078.985900 +2078.988797 +2079.075177 +2079.084368 +2079.175909 +2079.186033 +2079.188797 +2079.286132 +2079.289296 +2079.374544 +2079.386032 +2079.391793 +2079.486066 +2079.491227 +2079.585766 +2079.587797 +2079.590994 +2079.686065 +2079.691860 +2079.784500 +2079.786831 +2079.789628 +2079.888563 +2079.984034 +2080.083901 +2080.093258 +2080.185799 +2080.191360 +2080.285998 +2080.288895 +2080.375009 +2080.386065 +2080.388695 +2080.485931 +2080.488063 +2080.585465 +2080.591626 +2080.688262 +2080.775275 +2080.776141 +2080.785998 +2080.883733 +2080.886197 +2080.975908 +2081.491958 +2082.850698 +2083.343038 +2084.592820 +2084.595584 +2085.279433 +2085.444601 +2085.447731 +2085.941371 +2085.986659 +2085.987391 +2086.201543 +2086.627517 +2086.726951 +2086.880164 +2087.484226 +2087.507569 +2087.608968 +2087.696480 +2087.830813 +2088.059284 +2088.213929 +2088.396047 +2088.539836 +2088.562513 +2088.649426 +2088.737139 +2088.757685 +2089.040035 +2089.188021 +2089.335706 +2089.469672 +2089.639635 +2089.680061 +2089.749059 +2089.779662 +2089.891483 +2089.909898 +2089.939002 +2089.949259 +2089.989052 +2090.036138 +2090.048726 +2090.063644 +2090.092915 +2090.149525 +2090.187553 +2090.241266 +2090.248126 +2090.375166 +2090.453088 +2090.510064 +2090.522818 +2090.552888 +2090.586421 +2090.603304 +2090.609831 +2090.629012 +2090.644396 +2090.647227 +2090.674133 +2090.738002 +2090.766307 +2090.773400 +2090.796610 +2090.871136 +2091.962610 +2091.964708 +2091.966772 +2092.249523 +2092.251820 +2092.254218 +2092.479193 +2092.481424 +2092.716555 +2092.718920 +2093.030075 +2093.437034 +2093.829375 +2093.832372 +2094.091845 +2094.094809 +2094.423646 +2094.426377 +2094.429274 +2095.557045 +2095.827574 +2095.830005 +2096.154048 +2096.490910 +2097.068765 +2097.985381 +2099.129236 +2099.314651 +2100.082648 +2100.193704 +2100.298066 +2100.342655 +2100.387610 +2100.449814 +2100.468795 +2101.341655 +2101.972923 +2102.972789 +2102.973055 +2103.353508 +2104.122172 +2104.974385 +2104.985740 +2105.663395 +2107.129561 +2108.051705 +2109.123865 +2109.373049 +2110.361659 +2110.710044 +2110.984769 +2111.073946 +2111.084769 +2111.184669 +2111.187433 +2111.284868 +2111.384835 +2111.474212 +2111.474778 +2111.487632 +2111.489896 +2111.574945 +2111.590829 +2111.674811 +2111.685268 +2111.775078 +2111.788331 +2111.790762 +2111.875177 +2111.885667 +2111.975244 +2111.976243 +2111.985800 +2112.075377 +2112.186199 +2112.188730 +2112.198620 +2112.274578 +2112.292493 +2112.375410 +2112.384268 +2112.575310 +2112.592459 +2112.675277 +2112.685833 +2112.775210 +2112.775643 +2112.785699 +2112.791394 +2112.875376 +2112.876076 +2112.885499 +2112.888530 +2112.988230 +2113.075243 +2113.085666 +2113.088496 +2113.092792 +2113.185865 +2113.189096 +2113.286565 +2113.374943 +2113.375342 +2113.388563 +2113.484200 +2113.574776 +2113.575675 +2113.589095 +2113.686598 +2113.801849 +2113.875342 +2114.085765 +2114.184133 +2114.189128 +2114.275375 +2114.284033 +2114.393557 +2114.486830 +2114.489694 +2114.574409 +2114.575474 +2114.588894 +2114.687096 +2114.786497 +2114.886863 +2114.975174 +2114.985964 +2114.988827 +2114.991092 +2115.175041 +2115.175474 +2115.275440 +2115.295420 +2115.485797 +2115.575873 +2115.586096 +2115.589027 +2115.686229 +2115.774974 +2115.785996 +2115.791790 +2115.885796 +2115.887761 +2115.975540 +2115.985763 +2115.998716 +2116.766814 +2116.784064 +2116.975539 +2117.881798 +2118.707239 +2119.727850 +2119.790088 +2120.972338 +2121.298578 +2121.544698 +2121.569973 +2121.643399 +2121.763046 +2121.896513 +2121.935574 +2122.024085 +2122.373402 +2122.409533 +2122.414727 +2122.700708 +2122.786289 +2122.865976 +2122.879495 +2122.934374 +2123.063911 +2123.093581 +2123.105602 +2123.199209 +2123.234740 +2123.298143 +2123.300041 +2123.335939 +2123.527447 +2123.535838 +2123.549458 +2123.588952 +2123.645162 +2123.673467 +2123.748725 +2123.780527 +2123.807766 +2123.822718 +2123.911129 +2123.967406 +2124.009764 +2124.079894 +2124.276397 +2124.278495 +2124.431842 +2124.501439 +2124.569870 +2124.598541 +2124.638268 +2124.645861 +2124.742131 +2124.758082 +2124.818654 +2124.851688 +2124.925947 +2124.942597 +2124.967405 +2125.193146 +2125.207498 +2125.255051 +2125.342663 +2125.397608 +2125.437435 +2125.456682 +2125.486086 +2125.496476 +2125.536269 +2125.580425 +2125.584488 +2125.599306 +2125.633172 +2125.712693 +2125.765806 +2125.867471 +2125.880658 +2125.918986 +2125.924414 +2125.940531 +2128.848787 +2128.882387 +2128.953482 +2128.967834 +2129.021914 +2129.824477 +2129.874094 +2130.005263 +2130.098536 +2130.156778 +2130.312955 +2130.998069 +2131.007659 +2131.071995 +2131.133167 +2131.185881 +2131.224842 +2131.265434 +2131.313486 +2131.382218 +2131.443290 +2131.484049 +2131.586247 +2131.622444 +2131.701631 +2132.255943 +2132.357408 +2132.381584 +2132.486479 +2132.538061 +2132.621743 +2132.766765 +2132.794104 +2132.823874 +2132.946785 +2133.149848 +2133.226771 +2133.276222 +2134.090640 +2134.270360 +2134.354542 +2134.385145 +2134.406657 +2134.455941 +2134.626070 +2135.019377 +2135.130998 +2135.184944 +2135.203792 +2135.221474 +2135.275154 +2135.308421 +2135.368927 +2135.505923 +2135.623006 +2135.704258 +2135.972889 +2135.973355 +2136.146016 +2136.148780 +2136.972821 +2136.973554 +2136.983844 +2137.141619 +2137.144416 +2138.128498 +2138.133892 +2138.547379 +2138.581544 +2139.130994 +2139.133558 +2139.136589 +2139.211447 +2140.127863 +2140.130627 +2140.203987 +2140.245279 +2140.322269 +2140.384073 +2140.439718 +2141.118472 +2141.120936 +2141.123733 +2141.131192 +2141.199457 +2141.328295 +2142.409013 +2142.730258 +2142.941946 +2143.154767 +2143.186934 +2143.237883 +2143.261426 +2143.282239 +2143.298689 +2143.318736 +2143.345742 +2143.400121 +2143.454733 +2143.508446 +2143.530157 +2143.602951 +2143.692761 +2143.722332 +2143.757197 +2144.133587 +2144.777309 +2144.806680 +2144.851468 +2145.091894 +2145.171648 +2145.881004 +2145.902216 +2146.072646 +2146.073179 +2146.083668 +2146.183368 +2146.185766 +2146.274044 +2146.285766 +2146.291560 +2146.373378 +2146.386631 +2146.483701 +2146.486432 +2146.574510 +2146.583801 +2146.586731 +2146.686498 +2146.791326 +2146.874143 +2146.875043 +2146.886931 +2146.989495 +2147.074110 +2147.082901 +2147.085365 +2147.187197 +2147.384466 +2147.387130 +2147.389328 +2147.473044 +2147.486364 +2147.574010 +2147.574442 +2147.592491 +2147.674243 +2147.685498 +2147.774109 +2147.787829 +2147.887596 +2147.984332 +2147.986830 +2148.085431 +2148.174175 +2148.274175 +2148.284398 +2148.287862 +2148.374608 +2148.384964 +2148.483499 +2148.486063 +2148.574108 +2148.584764 +2148.587761 +2148.674175 +2148.690692 +2148.785364 +2148.788161 +2148.885264 +2148.887695 +2148.984464 +2148.986695 +2148.990425 +2149.085530 +2149.087994 +2149.184631 +2149.186962 +2149.284231 +2149.287528 +2149.374341 +2149.387461 +2149.483498 +2149.584763 +2149.587527 +2149.674174 +2149.685496 +2149.688360 +2149.784430 +2149.884863 +2149.887793 +2149.889858 +2149.974806 +2149.975039 +2149.985263 +2149.987827 +2150.074140 +2150.074240 +2150.084497 +2150.183065 +2150.185629 +2150.188093 +2150.274173 +2150.287393 +2150.374240 +2150.384430 +2150.392255 +2150.473674 +2150.485062 +2150.490723 +2150.573574 +2150.574706 +2150.584330 +2150.587227 +2150.589325 +2150.684796 +2150.687093 +2150.774140 +2150.784796 +2150.790590 +2150.874073 +2150.884296 +2150.887892 +2150.889990 +2150.974639 +2150.984129 +2150.986760 +2152.517328 +2152.876635 +2153.229781 +2153.732512 +2153.761316 +2154.998711 +2155.464411 +2155.971370 +2155.971737 +2156.056452 +2156.266342 +2156.336971 +2156.619588 +2156.765842 +2156.981692 +2157.048059 +2157.059082 +2157.145029 +2157.452954 +2157.624116 +2157.646360 +2157.675032 +2157.710530 +2157.749391 +2157.785954 +2157.802804 +2157.900273 +2157.998375 +2158.001905 +2158.036537 +2158.049857 +2158.141998 +2158.190915 +2158.255717 +2158.322117 +2158.384588 +2158.417655 +2158.579959 +2158.656283 +2158.681990 +2158.731807 +2158.771867 +2158.821484 +2158.845427 +2158.890582 +2158.942996 +2159.002237 +2159.016822 +2159.100372 +2159.171101 +2159.193112 +2159.293245 +2159.347591 +2159.388650 +2159.428543 +2159.465972 +2159.468770 +2159.509928 +2159.528143 +2159.531840 +2159.559179 +2159.592246 +2159.642362 +2159.652286 +2159.685752 +2159.690148 +2159.714623 +2159.745859 +2159.750288 +2159.760311 +2159.788716 +2159.875629 +2159.904067 +2159.915389 +2159.931073 +2159.943428 +2159.982022 +2160.013158 +2160.030374 +2160.034703 +2160.057980 +2160.075595 +2160.090181 +2160.120051 +2160.128276 +2160.133338 +2160.177460 +2160.194377 +2160.195709 +2160.197374 +2160.236235 +2160.308862 +2160.329641 +2160.364140 +2160.369335 +2160.436734 +2160.453684 +2160.472665 +2160.506697 +2160.517253 +2160.527876 +2160.542994 +2160.591912 +2160.617819 +2160.627909 +2160.653317 +2160.662541 +2160.678658 +2160.690580 +2160.707763 +2160.738665 +2160.757080 +2160.769135 +2160.788282 +2160.849954 +2160.862008 +2160.938865 +2160.953983 +2160.968102 +2163.708193 +2164.427406 +2165.204695 +2165.289876 +2165.477588 +2166.316482 +2166.358107 +2166.737227 +2167.546617 +2167.572558 +2167.734262 +2168.304159 +2168.349713 +2168.467129 +2168.492370 +2168.602926 +2168.621374 +2168.665963 +2169.447547 +2169.461200 +2169.484411 +2169.500594 +2169.522006 +2169.555839 +2169.718576 +2169.750178 +2169.761600 +2170.552009 +2170.584742 +2170.606254 +2170.640254 +2170.653807 +2170.971322 +2170.983177 +2171.118841 +2171.533593 +2171.550076 +2171.585474 +2171.617342 +2171.669490 +2171.694298 +2171.753206 +2171.970855 +2171.972054 +2172.132859 +2172.269290 +2172.340951 +2172.381610 +2172.475683 +2172.567757 +2172.612080 +2172.630961 +2172.669822 +2173.145479 +2173.148243 +2173.739551 +2173.767623 +2173.971053 +2173.971486 +2173.983074 +2174.142181 +2175.100955 +2175.103819 +2175.120136 +2175.395094 +2175.971217 +2175.981673 +2176.151637 +2176.164391 +2176.753201 +2177.175145 +2177.193327 +2177.617136 +2178.393326 +2179.414304 +2179.499852 +2179.718633 +2179.777074 +2179.840511 +2179.918166 +2180.074110 +2180.117367 +2180.201116 +2180.676374 +2180.679205 +2180.971112 +2180.978472 +2181.171379 +2181.182467 +2181.185231 +2181.188595 +2181.282634 +2181.372311 +2181.373043 +2181.383566 +2181.386130 +2181.473643 +2181.485830 +2181.583066 +2181.585730 +2181.590326 +2181.673842 +2181.683533 +2181.686596 +2181.785797 +2181.881135 +2181.982866 +2181.985697 +2181.990425 +2182.082966 +2182.085097 +2182.092790 +2182.185630 +2182.272776 +2182.273342 +2182.386129 +2182.486429 +2182.592123 +2182.686495 +2182.689625 +2182.782100 +2182.784497 +2182.873042 +2182.972576 +2182.981800 +2182.984131 +2183.186262 +2183.283664 +2183.286328 +2183.573341 +2183.583364 +2183.586461 +2183.673041 +2183.684496 +2183.787793 +2183.873907 +2183.884096 +2184.072708 +2184.182398 +2184.273007 +2184.372707 +2184.472874 +2184.473606 +2184.586560 +2184.683496 +2184.783763 +2184.785894 +2184.873606 +2184.972041 +2184.983396 +2184.986293 +2185.072374 +2185.081764 +2185.084228 +2185.182064 +2185.184395 +2185.273073 +2185.283895 +2185.286892 +2185.386992 +2185.390222 +2185.473073 +2185.473672 +2185.474072 +2185.484228 +2185.572640 +2185.586792 +2185.589456 +2185.673072 +2185.682230 +2185.687025 +2185.783329 +2185.786892 +2185.872806 +2185.983728 +2185.986758 +2186.182296 +2187.343800 +2187.346497 +2190.970270 +2190.970803 +2190.982424 +2191.104036 +2191.306367 +2191.677395 +2191.794678 +2191.859014 +2191.997941 +2192.094045 +2192.541797 +2192.596409 +2192.828010 +2193.018353 +2193.058713 +2193.194610 +2193.316255 +2193.359412 +2193.463241 +2193.481290 +2193.482056 +2193.495675 +2193.558479 +2193.867037 +2193.884353 +2193.993011 +2194.072198 +2194.435235 +2194.475728 +2194.565238 +2194.637932 +2194.664572 +2194.711125 +2194.860010 +2195.034768 +2195.074262 +2195.146057 +2195.330838 +2195.345290 +2195.373429 +2195.446189 +2195.596006 +2195.681221 +2195.684051 +2195.709293 +2195.727208 +2195.730538 +2195.757378 +2195.844124 +2195.918150 +2195.977924 +2196.343092 +2196.904929 +2196.907160 +2197.933033 +2198.912087 +2200.105825 +2200.286611 +2201.018278 +2201.720176 +2202.009786 +2202.707687 +2202.716146 +2203.351776 +2203.385842 +2203.871922 +2203.874486 +2204.031296 +2204.033893 +2204.036923 +2204.988871 +2206.168723 +2206.700524 +2206.700724 +2206.701023 +2206.712645 +2207.088036 +2207.150840 +2207.558299 +2207.701089 +2208.935820 +2209.397391 +2209.442512 +2209.700920 +2209.704883 +2209.713508 +2210.700820 +2210.886867 +2210.889797 +2211.700952 +2211.701318 +2211.712141 +2212.686832 +2212.690261 +2214.429088 +2214.457659 +2214.878638 +2215.032550 +2215.096353 +2215.489659 +2215.516166 +2215.764384 +2216.269545 +2216.700847 +2216.902345 +2217.302145 +2217.302778 +2217.402877 +2217.513600 +2217.515764 +2217.602478 +2217.602611 +2217.603410 +2217.614699 +2217.702444 +2217.703044 +2217.703377 +2217.717962 +2217.802810 +2217.803476 +2217.815931 +2217.912301 +2218.002411 +2218.102411 +2218.102843 +2218.210402 +2218.214065 +2218.302477 +2218.402510 +2218.402976 +2218.502710 +2218.602843 +2218.611135 +2218.803009 +2218.815863 +2218.901910 +2219.003509 +2219.012466 +2219.103675 +2219.202076 +2219.411467 +2219.602709 +2219.703308 +2219.902908 +2220.102608 +2220.103075 +2220.203607 +2220.302641 +2220.303074 +2220.403241 +2220.902807 +2220.903373 +2221.202108 +2221.202474 +2221.203040 +2221.302541 +2221.402674 +2221.602973 +2221.603473 +2221.619423 +2223.690883 +2223.703304 +2224.196111 +2224.872700 +2226.160544 +2226.705898 +2226.711926 +2226.739099 +2226.765539 +2226.916421 +2226.938299 +2227.237133 +2227.265905 +2227.378858 +2227.401602 +2227.517653 +2227.585618 +2227.597972 +2227.679590 +2227.706663 +2227.815188 +2227.870633 +2227.937665 +2228.058811 +2228.086117 +2228.135068 +2228.158411 +2228.254948 +2228.391811 +2228.394974 +2228.404731 +2228.431871 +2228.446989 +2228.483852 +2228.524078 +2228.555880 +2228.594375 +2228.643625 +2228.681554 +2228.691211 +2228.745324 +2228.772163 +2228.784684 +2228.809892 +2228.827774 +2228.836599 +2228.839629 +2228.850552 +2228.863772 +2228.902699 +2228.941527 +2228.954647 +2228.967834 +2228.982187 +2229.000102 +2229.025044 +2229.027608 +2229.038497 +2229.093875 +2229.120448 +2229.138064 +2229.232969 +2229.248853 +2229.276092 +2229.277691 +2229.287947 +2229.314421 +2229.341027 +2229.418516 +2229.438064 +2229.448486 +2229.499702 +2229.504930 +2229.533501 +2229.608293 +2229.647854 +2229.677824 +2229.688879 +2229.693508 +2229.716585 +2229.744224 +2229.749319 +2229.764503 +2229.814786 +2229.819482 +2229.877657 +2229.891943 +2229.920447 +2229.949052 +2230.019681 +2230.037397 +2230.048719 +2230.151616 +2230.270364 +2230.604196 +2231.122244 +2231.181352 +2231.648917 +2232.355010 +2233.028703 +2235.964963 +2237.133694 +2237.156138 +2239.368124 +2241.310180 +2241.701554 +2241.702220 +2241.961095 +2242.041414 +2242.713408 +2242.939182 +2242.941880 +2243.702718 +2243.713807 +2243.944376 +2244.290696 +2244.701918 +2244.702184 +2244.944841 +2245.457528 +2245.713971 +2245.963755 +2246.701949 +2246.940444 +2248.582966 +2249.030485 +2249.033682 +2249.839109 +2250.025489 +2250.028020 +2250.972974 +2251.363183 +2251.701811 +2251.803309 +2251.813532 +2251.824122 +2251.913532 +2251.915963 +2252.003775 +2252.013965 +2252.016229 +2252.115963 +2252.212899 +2252.215264 +2252.217328 +2252.412899 +2252.417261 +2252.513132 +2252.515463 +2252.517461 +2252.603875 +2252.604474 +2252.613032 +2252.615430 +2252.617561 +2252.713165 +2252.715563 +2252.717860 +2252.721856 +2252.804041 +2252.815729 +2252.914663 +2252.921057 +2253.013265 +2253.015596 +2253.103941 +2253.104973 +2253.117893 +2253.205339 +2253.214264 +2253.216561 +2253.305339 +2253.315462 +2253.414130 +2253.422056 +2253.504506 +2253.513497 +2253.515962 +2253.518392 +2253.604007 +2253.618859 +2253.705405 +2253.718192 +2253.813763 +2253.913797 +2253.916294 +2253.922122 +2254.003906 +2254.013397 +2254.015661 +2254.104040 +2254.115362 +2254.117426 +2254.203340 +2254.204306 +2254.205305 +2254.213297 +2254.215661 +2254.305305 +2254.403906 +2254.404739 +2254.414229 +2254.416660 +2254.504672 +2254.513596 +2254.604139 +2254.604605 +2254.604738 +2254.604971 +2254.613629 +2254.618591 +2254.713196 +2254.717725 +2254.903573 +2254.914062 +2255.113562 +2255.204671 +2255.304771 +2255.314095 +2255.404704 +2255.416459 +2255.504138 +2255.513795 +2255.516159 +2255.613895 +2255.616459 +2255.618857 +2255.815959 +2255.818290 +2256.205136 +2256.213561 +2256.404870 +2256.405303 +2256.504903 +2256.618423 +2256.713761 +2258.748257 +2258.768803 +2260.042129 +2261.703366 +2261.714155 +2261.785783 +2261.814588 +2261.870965 +2261.918218 +2262.101800 +2262.180255 +2262.359542 +2262.370665 +2262.449985 +2262.624844 +2262.748453 +2262.761074 +2262.845456 +2262.901467 +2263.149418 +2263.241293 +2263.289079 +2263.352815 +2263.448852 +2263.507027 +2263.532035 +2263.535499 +2263.605828 +2263.654513 +2263.709624 +2263.774693 +2263.781686 +2263.789844 +2263.843357 +2263.904263 +2263.944489 +2263.954879 +2263.997403 +2264.019747 +2264.073493 +2264.094772 +2264.117383 +2264.163304 +2264.177856 +2264.178255 +2264.215651 +2264.245654 +2264.328605 +2264.340859 +2264.396037 +2264.423809 +2264.448485 +2264.477656 +2264.493839 +2264.574725 +2264.588545 +2264.605428 +2264.618048 +2264.656976 +2264.710955 +2264.725741 +2264.739127 +2264.754012 +2264.783083 +2264.800000 +2264.811155 +2264.812787 +2264.822410 +2264.838295 +2264.850882 +2264.877622 +2264.895304 +2264.905760 +2264.921644 +2264.962104 +2264.976756 +2264.994904 +2265.003762 +2265.053845 +2265.062370 +2265.079720 +2265.119247 +2265.132067 +2265.145953 +2265.181251 +2265.189809 +2265.219313 +2265.260938 +2265.275890 +2265.297335 +2265.380385 +2265.728170 +2265.936229 +2265.955543 +2266.013984 +2271.024935 +2271.900226 +2272.385973 +2273.075216 +2273.729395 +2273.760597 +2274.713310 +2276.935052 +2277.089931 +2277.704216 +2277.704449 +2277.716404 +2278.879140 +2278.952766 +2279.899052 +2279.969182 +2280.715735 +2280.945238 +2281.409140 +2281.462454 +2281.704578 +2281.716466 +2281.881601 +2282.810971 +2283.110238 +2284.900512 +2284.925454 +2284.979400 +2285.153892 +2286.228117 +2286.398479 +2286.427151 +2286.471173 +2286.551393 +2286.587623 +2286.627750 +2286.671939 +2286.703408 +2286.804040 +2286.805039 +2286.921090 +2287.005705 +2287.114130 +2287.120157 +2287.214030 +2287.222521 +2287.315262 +2287.317493 +2287.414363 +2287.416727 +2287.505172 +2287.515528 +2287.615528 +2287.617859 +2287.622421 +2287.714495 +2287.716960 +2287.724752 +2287.805371 +2287.815561 +2287.817959 +2287.915727 +2287.918058 +2287.921455 +2288.005471 +2288.014462 +2288.114628 +2288.206070 +2288.214395 +2288.216659 +2288.315860 +2288.318324 +2288.322420 +2288.417092 +2288.419556 +2288.521687 +2288.615527 +2288.617492 +2288.620189 +2288.714594 +2288.717025 +2288.719323 +2288.816892 +2288.819123 +2288.914627 +2288.916925 +2288.925850 +2289.005969 +2289.015726 +2289.023885 +2289.114461 +2289.215826 +2289.218323 +2289.317291 +2289.321886 +2289.325516 +2289.414460 +2289.419089 +2289.505669 +2289.516925 +2289.519156 +2289.615759 +2289.626282 +2289.715959 +2289.718356 +2289.724250 +2289.815925 +2289.818290 +2289.905402 +2289.914860 +2290.014793 +2290.017290 +2290.019755 +2290.114493 +2290.217557 +2290.223917 +2290.314793 +2290.317157 +2290.323018 +2290.414892 +2290.417357 +2290.515758 +2290.605502 +2290.617256 +2290.714825 +2290.717123 +2290.815791 +2290.818222 +2290.823417 +2290.905535 +2290.914492 +2290.916923 +2290.919121 +2290.928378 +2291.023017 +2291.114625 +2291.119121 +2291.214392 +2291.325747 +2291.406000 +2291.416090 +2291.418454 +2291.505967 +2291.514259 +2291.516723 +2291.519054 +2291.524681 +2291.618388 +2291.714591 +2291.719287 +2293.651486 +2295.311324 +2296.704263 +2296.810790 +2296.879788 +2296.920014 +2297.029338 +2297.043957 +2297.204496 +2297.269031 +2297.270064 +2297.407726 +2297.519014 +2297.544156 +2297.624043 +2297.762870 +2297.782284 +2297.823543 +2297.831735 +2297.856377 +2297.873859 +2297.912054 +2297.932401 +2297.956810 +2297.971561 +2298.005428 +2298.071062 +2298.130935 +2298.134798 +2298.157342 +2298.184049 +2298.220279 +2298.233965 +2298.258141 +2298.275158 +2298.284715 +2298.330569 +2298.369097 +2298.405827 +2298.430835 +2298.434665 +2298.456776 +2298.482683 +2298.502164 +2298.533932 +2298.562204 +2298.584781 +2298.635364 +2298.727272 +2298.747585 +2298.810289 +2298.820012 +2298.834265 +2298.847518 +2298.853845 +2298.873159 +2298.886479 +2298.907025 +2299.017215 +2299.039726 +2299.068463 +2299.081217 +2299.133265 +2299.144887 +2299.183681 +2299.193005 +2299.224441 +2299.237261 +2299.273392 +2299.309988 +2299.322209 +2299.369562 +2299.382449 +2299.410554 +2299.421177 +2299.485613 +2299.513851 +2299.566532 +2299.579519 +2299.589742 +2299.621343 +2299.660970 +2299.676155 +2299.689908 +2299.731666 +2299.765033 +2299.827071 +2299.849781 +2299.863967 +2299.874024 +2299.956774 +2299.969362 +2300.005126 +2300.127104 +2300.153977 +2300.362535 +2300.439724 +2300.493437 +2300.563234 +2300.857006 +2300.969794 +2301.140889 +2301.278684 +2301.482580 +2309.489865 +2311.272647 +2311.871348 +2311.890362 +2312.710175 +2312.877607 +2312.886365 +2313.037780 +2313.108976 +2313.887996 +2313.890760 +2314.704545 +2314.716200 +2314.897086 +2314.906843 +2315.889259 +2316.704976 +2316.705142 +2316.716831 +2317.860652 +2317.920293 +2318.010802 +2318.293719 +2318.821424 +2318.831181 +2318.920958 +2319.367011 +2319.408270 +2320.468242 +2321.601641 +2321.618058 +2321.703839 +2321.815261 +2321.915127 +2321.920855 +2322.005470 +2322.005637 +2322.015560 +2322.017591 +2322.021687 +2322.115627 +2322.215593 +2322.217858 +2322.222087 +2322.415793 +2322.422086 +2322.518390 +2322.614893 +2322.617324 +2322.714827 +2322.717258 +2322.814727 +2322.817091 +2322.819056 +2322.906635 +2322.915093 +2322.917391 +2323.005902 +2323.006368 +2323.014926 +2323.116358 +2323.205902 +2323.317124 +2323.319255 +2323.405768 +2323.406668 +2323.414560 +2323.419555 +2323.424083 +2323.518589 +2323.523051 +2323.617523 +2323.705868 +2323.714992 +2323.717323 +2323.719421 +2323.817656 +2323.819921 +2323.915258 +2324.006534 +2324.014959 +2324.019454 +2324.119521 +2324.205834 +2324.216091 +2324.305867 +2324.319387 +2324.326913 +2324.405934 +2324.417456 +2324.419654 +2324.424282 +2324.505734 +2324.506600 +2324.605767 +2324.615924 +2324.618255 +2324.620786 +2324.705867 +2324.716223 +2324.721685 +2324.727079 +2324.805767 +2324.815091 +2324.817455 +2324.819420 +2324.916256 +2325.005867 +2325.014858 +2325.017189 +2325.019353 +2325.115291 +2325.117655 +2325.216323 +2325.306632 +2325.317521 +2325.322417 +2325.405866 +2325.406366 +2325.417355 +2325.514691 +2325.517155 +2325.605300 +2325.617854 +2325.718453 +2325.816256 +2325.827211 +2325.917521 +2325.923615 +2326.005832 +2326.015190 +2326.017521 +2326.114923 +2326.117487 +2326.119718 +2326.215323 +2326.217820 +2326.317587 +2326.405865 +2326.415223 +2326.417520 +2326.419751 +2326.422649 +2326.515955 +2326.518220 +2326.605898 +2326.615023 +2326.620051 +2326.705998 +2326.706464 +2326.715156 +2328.833735 +2329.949052 +2331.018448 +2332.238893 +2332.527871 +2332.728137 +2332.811420 +2332.887011 +2332.975622 +2333.079985 +2333.151946 +2333.210487 +2333.244520 +2333.261170 +2333.264100 +2333.297167 +2333.347417 +2333.387843 +2333.464600 +2333.492139 +2333.568595 +2333.589308 +2333.593038 +2333.614383 +2333.617413 +2333.644653 +2333.670027 +2333.710087 +2333.736094 +2333.763234 +2333.774389 +2333.787476 +2333.801196 +2333.840790 +2333.867230 +2333.897400 +2333.917513 +2334.008322 +2334.081915 +2334.190739 +2334.243953 +2334.257339 +2334.302661 +2334.328635 +2334.341788 +2334.355441 +2334.368894 +2334.396067 +2334.439790 +2334.492504 +2334.506956 +2334.620076 +2334.638658 +2334.647449 +2334.661834 +2334.671092 +2334.697832 +2334.710952 +2334.782447 +2334.855607 +2334.875953 +2334.884578 +2334.900229 +2334.922374 +2334.949047 +2334.976852 +2335.019676 +2335.032463 +2335.049180 +2335.090872 +2335.105690 +2335.119310 +2335.134628 +2335.148680 +2335.164132 +2335.194002 +2335.204058 +2335.220309 +2335.233629 +2335.248481 +2335.266862 +2335.277518 +2335.307954 +2335.336925 +2335.350678 +2335.446382 +2335.462799 +2335.518211 +2335.610318 +2335.875586 +2336.262232 +2336.383877 +2336.670724 +2338.405820 +2339.073985 +2341.109514 +2341.657066 +2342.142580 +2344.043910 +2345.383935 +2345.918500 +2346.704713 +2346.975608 +2347.717765 +2348.298984 +2348.705210 +2350.705708 +2352.934444 +2353.975834 +2354.448128 +2355.198710 +2356.704303 +2356.704603 +2356.705336 +2356.716025 +2356.805469 +2356.814793 +2357.016058 +2357.018322 +2357.106268 +2357.119155 +2357.121652 +2357.206001 +2357.207167 +2357.218955 +2357.316757 +2357.319121 +2357.321918 +2357.516623 +2357.519021 +2357.616757 +2357.618755 +2357.716756 +2357.806933 +2357.815191 +2357.817789 +2357.917888 +2357.920219 +2357.922950 +2358.006333 +2358.015258 +2358.017655 +2358.019853 +2358.117455 +2358.119753 +2358.215657 +2358.306499 +2358.417255 +2358.515890 +2358.518421 +2358.617055 +2358.619619 +2358.715523 +2358.718121 +2358.815190 +2358.906332 +2358.916522 +2358.918886 +2359.015490 +2359.020019 +2359.206565 +2359.216822 +2359.218720 +2359.315423 +2359.319785 +2359.406032 +2359.416655 +2359.506731 +2359.517154 +2359.615423 +2359.617820 +2359.619818 +2359.706565 +2359.716588 +2359.718486 +2359.725046 +2359.817154 +2359.819885 +2359.917220 +2359.920251 +2360.015555 +2360.017886 +2360.019851 +2360.106431 +2360.106897 +2360.116488 +2360.217120 +2360.306531 +2360.307763 +2360.315389 +2360.319851 +2360.416954 +2360.506630 +2360.516754 +2360.519318 +2360.524379 +2360.615555 +2360.617986 +2360.619950 +2360.706530 +2360.707829 +2360.715721 +2360.718185 +2360.720150 +2360.806530 +2360.815954 +2360.818285 +2360.820383 +2360.919883 +2361.019584 +2361.117086 +2361.119617 +2361.206596 +2361.215787 +2361.218218 +2361.220449 +2361.317452 +2361.319750 +2361.406696 +2361.418418 +2361.421048 +2361.516986 +2361.519350 +2361.522081 +2361.606230 +2361.617752 +2361.706529 +2361.715321 +2361.719550 +2361.913822 +2361.916552 +2367.041889 +2367.063201 +2367.255308 +2367.600097 +2367.706024 +2367.740389 +2367.839690 +2367.890939 +2367.904592 +2368.044685 +2368.115647 +2368.150246 +2368.366330 +2368.497199 +2368.536826 +2368.563432 +2368.642653 +2368.709919 +2368.821208 +2368.833862 +2368.874155 +2368.937791 +2368.963732 +2369.018177 +2369.030498 +2369.125903 +2369.133229 +2369.160934 +2369.187441 +2369.215579 +2369.243485 +2369.256772 +2369.284344 +2369.324637 +2369.339722 +2369.353308 +2369.371257 +2369.389206 +2369.481580 +2369.530298 +2369.573521 +2369.599828 +2369.615346 +2369.636991 +2369.644650 +2369.657704 +2369.687307 +2369.710651 +2369.724903 +2369.780980 +2369.792502 +2369.799661 +2369.831896 +2369.886774 +2369.902259 +2369.918642 +2369.929665 +2369.940820 +2369.954273 +2369.983344 +2369.997430 +2370.015579 +2370.024470 +2370.039155 +2370.054207 +2370.068492 +2370.083910 +2370.098296 +2370.103790 +2370.114679 +2370.124203 +2370.151076 +2370.156005 +2370.167760 +2370.210084 +2370.214047 +2370.218076 +2370.273054 +2370.286974 +2370.298562 +2370.327400 +2370.356870 +2370.387073 +2370.416444 +2370.445049 +2370.868358 +2370.897496 +2371.084309 +2371.224169 +2372.168723 +2373.463927 +2374.813642 +2377.092861 +2378.718534 +2378.802416 +2379.484001 +2380.176408 +2381.256560 +2381.706210 +2381.717765 +2382.929285 +2383.134014 +2383.152096 +2383.705542 +2383.706041 +2384.054626 +2385.038008 +2385.620725 +2385.705606 +2386.705905 +2386.706171 +2387.065312 +2391.294678 +2391.717289 +2391.806699 +2391.818487 +2391.916522 +2391.918787 +2392.017788 +2392.107398 +2392.115590 +2392.219086 +2392.307698 +2392.319686 +2392.322816 +2392.407165 +2392.420518 +2392.423648 +2392.516022 +2392.615256 +2392.707131 +2392.707264 +2392.718486 +2392.817953 +2392.907297 +2392.918852 +2392.920884 +2393.018120 +2393.020417 +2393.118852 +2393.215955 +2393.220750 +2393.306598 +2393.320584 +2393.407164 +2393.416621 +2393.516254 +2393.518585 +2393.606997 +2393.624912 +2393.716521 +2393.807130 +2393.817819 +2393.819751 +2393.907629 +2393.916054 +2393.918752 +2393.920883 +2394.017919 +2394.107163 +2394.116287 +2394.118851 +2394.216787 +2394.219384 +2394.307329 +2394.316354 +2394.318784 +2394.416320 +2394.418951 +2394.517885 +2394.520549 +2394.607262 +2394.616520 +2394.618884 +2394.620982 +2394.715754 +2394.720349 +2394.816187 +2394.818651 +2394.820682 +2394.907195 +2394.916153 +2394.918617 +2394.920615 +2395.007229 +2395.019183 +2395.116686 +2395.121314 +2395.216519 +2395.218983 +2395.316619 +2395.319183 +2395.409160 +2395.416552 +2395.421547 +2395.616585 +2395.619050 +2395.708660 +2395.716985 +2395.821181 +2395.917984 +2396.007294 +2396.017684 +2396.020048 +2396.117284 +2396.119249 +2396.316884 +2396.319215 +2396.416252 +2396.418716 +2396.420680 +2396.507227 +2396.519215 +2396.620913 +2396.707227 +2396.716584 +2396.719048 +2397.831002 +2400.436727 +2400.439424 +2403.024537 +2403.026801 +2403.110551 +2403.269691 +2403.318542 +2403.384776 +2403.408652 +2403.446781 +2403.503624 +2403.529831 +2403.540653 +2403.627833 +2403.655339 +2403.725535 +2403.790337 +2403.814479 +2403.836990 +2403.931495 +2403.954706 +2403.981112 +2404.021039 +2404.033926 +2404.037256 +2404.065228 +2404.137523 +2404.163929 +2404.170689 +2404.220140 +2404.222238 +2404.248112 +2404.276017 +2404.290969 +2404.294299 +2404.331995 +2404.359167 +2404.387273 +2404.415011 +2404.441019 +2404.445781 +2404.474319 +2404.497096 +2404.539254 +2404.583776 +2404.630396 +2404.671188 +2404.683942 +2404.700426 +2404.712380 +2404.726566 +2404.741884 +2404.756270 +2404.770955 +2404.785474 +2404.799393 +2404.804688 +2404.841451 +2404.872886 +2404.913646 +2404.925534 +2404.957801 +2404.971088 +2405.015177 +2405.028997 +2405.054871 +2405.088371 +2405.113612 +2405.133492 +2405.146246 +2405.156369 +2405.180312 +2405.202357 +2405.213712 +2405.226932 +2405.255170 +2405.328564 +2405.333825 +2405.341417 +2405.356602 +2405.387072 +2405.394831 +2405.402889 +2405.432193 +2405.447378 +2405.462063 +2405.521504 +2405.533392 +2405.552673 +2405.607118 +2405.696262 +2405.790068 +2405.927531 +2406.005086 +2406.460864 +2406.781309 +2408.236786 +2409.529126 +2411.065055 +2411.831887 +2415.340908 +2416.698882 +2416.704843 +2416.971676 +2417.705674 +2417.705874 +2418.202144 +2420.706271 +2421.243699 +2422.157951 +2423.631442 +2424.878361 +2426.716454 +2426.815355 +2426.819784 +2426.906564 +2427.016387 +2427.018585 +2427.117853 +2427.216720 +2427.219018 +2427.223081 +2427.307063 +2427.317253 +2427.319251 +2427.418252 +2427.515621 +2427.606763 +2427.618152 +2427.715621 +2427.718185 +2427.909227 +2427.917219 +2428.015687 +2428.018085 +2428.106596 +2428.106929 +2428.115754 +2428.207062 +2428.218318 +2428.220715 +2428.316020 +2428.318651 +2428.417085 +2428.419649 +2428.515820 +2428.518351 +2428.521181 +2428.617285 +2428.619882 +2428.707262 +2428.716019 +2428.718550 +2428.818284 +2428.918483 +2429.007028 +2429.016186 +2429.018850 +2429.115819 +2429.118350 +2429.120947 +2429.206695 +2429.215719 +2429.226209 +2429.318117 +2429.425076 +2429.516152 +2429.617384 +2429.619315 +2429.706761 +2429.715785 +2429.718383 +2429.720447 +2429.806295 +2429.815885 +2429.818449 +2429.906694 +2429.925709 +2430.016351 +2430.117150 +2430.119048 +2430.206661 +2430.215885 +2430.218382 +2430.220380 +2430.316084 +2430.318549 +2430.320580 +2430.418349 +2430.420347 +2430.516084 +2430.518648 +2430.615984 +2430.618415 +2430.620913 +2430.706560 +2430.715718 +2430.718215 +2430.816084 +2430.915618 +2430.918082 +2431.006693 +2431.118581 +2431.215817 +2431.223043 +2431.309124 +2431.315684 +2431.318048 +2431.320079 +2431.416383 +2431.624974 +2431.717215 +2432.194970 +2432.197268 +2432.199699 +2434.979117 +2434.989939 +2435.373555 +2436.089172 +2436.690770 +2436.800993 +2437.114379 +2437.300859 +2437.658435 +2437.861298 +2437.990735 +2438.206786 +2438.260332 +2438.330362 +2438.416576 +2438.441418 +2438.583875 +2438.913745 +2438.923169 +2438.923868 +2439.103222 +2439.139785 +2439.142150 +2439.181543 +2439.216242 +2439.248909 +2439.297661 +2439.311047 +2439.380744 +2439.414610 +2439.542515 +2439.571720 +2439.573751 +2439.610214 +2439.643215 +2439.665659 +2439.683508 +2439.694264 +2439.748676 +2439.752139 +2439.806951 +2439.808982 +2439.823734 +2439.837420 +2439.890600 +2439.920637 +2439.934889 +2439.949108 +2439.964626 +2439.983041 +2439.991300 +2439.995828 +2440.030194 +2440.090534 +2440.111779 +2440.120637 +2440.125698 +2440.134956 +2440.140450 +2440.165026 +2440.180244 +2440.184206 +2440.210713 +2440.252538 +2440.282175 +2440.285605 +2440.299924 +2440.312844 +2440.317073 +2440.342781 +2440.346511 +2440.371619 +2440.387636 +2440.408315 +2440.417873 +2440.432258 +2440.454170 +2440.467057 +2440.483906 +2440.494130 +2440.521502 +2440.547243 +2440.564925 +2440.596227 +2440.612578 +2440.731325 +2440.852970 +2441.363493 +2441.632723 +2444.753466 +2446.315103 +2446.677740 +2447.645438 +2448.828620 +2451.289024 +2454.340969 +2454.705404 +2455.664944 +2455.715693 +2455.872835 +2456.521420 +2457.010363 +2459.439099 +2460.918651 +2462.016186 +2462.115387 +2462.117784 +2462.120981 +2462.215420 +2462.217817 +2462.318150 +2462.417751 +2462.517418 +2462.614753 +2462.715020 +2462.717684 +2462.815286 +2462.817750 +2462.820015 +2462.915885 +2462.918216 +2463.016218 +2463.018882 +2463.115386 +2463.117883 +2463.119881 +2463.207127 +2463.215585 +2463.220048 +2463.306428 +2463.416085 +2463.424643 +2463.516085 +2463.518449 +2463.618382 +2463.620513 +2463.716118 +2463.807127 +2463.815418 +2463.818016 +2463.820247 +2463.907060 +2463.920080 +2464.015218 +2464.017749 +2464.106027 +2464.114685 +2464.117183 +2464.216317 +2464.218814 +2464.314852 +2464.317249 +2464.319480 +2464.405927 +2464.406926 +2464.416916 +2464.419247 +2464.506460 +2464.615384 +2464.620379 +2464.706526 +2464.806526 +2464.815717 +2464.820113 +2464.924974 +2465.005460 +2465.015217 +2465.017748 +2465.023975 +2465.105926 +2465.114984 +2465.117448 +2465.119546 +2465.217981 +2465.315284 +2465.317714 +2465.406459 +2465.418181 +2465.506525 +2465.515616 +2465.616848 +2465.619179 +2465.806525 +2465.820744 +2465.916981 +2466.006492 +2466.007191 +2466.017114 +2466.019645 +2466.106458 +2466.119812 +2466.215316 +2466.305859 +2466.306292 +2466.315316 +2466.317713 +2466.406391 +2466.507157 +2466.518346 +2466.607157 +2466.616115 +2466.618479 +2466.706458 +2466.707290 +2466.716914 +2466.723241 +2468.436859 +2468.439256 +2468.441587 +2468.449213 +2469.261833 +2469.928699 +2470.479381 +2471.704754 +2471.705953 +2471.793898 +2472.080678 +2472.321370 +2472.490768 +2472.640518 +2472.652439 +2472.921137 +2473.116808 +2473.292465 +2473.396461 +2473.439951 +2473.488302 +2473.628529 +2473.651506 +2473.743946 +2473.869687 +2473.896394 +2473.949874 +2474.075248 +2474.088069 +2474.102454 +2474.117206 +2474.117739 +2474.142781 +2474.182341 +2474.240017 +2474.268488 +2474.287103 +2474.323600 +2474.328361 +2474.350240 +2474.380010 +2474.423133 +2474.426330 +2474.430293 +2474.477612 +2474.532224 +2474.564991 +2474.590965 +2474.594428 +2474.649207 +2474.690699 +2474.694961 +2474.706050 +2474.718671 +2474.735221 +2474.760629 +2474.775580 +2474.803552 +2474.818904 +2474.821867 +2474.833423 +2474.837219 +2474.847908 +2474.862294 +2474.877445 +2474.907315 +2474.955800 +2474.965757 +2474.982174 +2474.994961 +2475.011178 +2475.024331 +2475.027861 +2475.030958 +2475.039849 +2475.053968 +2475.068854 +2475.083572 +2475.098657 +2475.113642 +2475.128394 +2475.146309 +2475.172150 +2475.205916 +2475.218071 +2475.231790 +2475.246909 +2475.253336 +2475.253935 +2475.261361 +2475.265157 +2475.306083 +2475.316805 +2475.337118 +2475.381774 +2475.396459 +2475.401354 +2475.410578 +2475.424831 +2475.441947 +2475.472216 +2475.478643 +2475.487135 +2475.522699 +2475.531790 +2475.549539 +2475.593795 +2475.764724 +2475.837751 +2475.921167 +2476.015339 +2476.039449 +2476.278276 +2476.294560 +2476.395825 +2476.409711 +2476.488100 +2477.399687 +2479.654264 +2482.174707 +2483.966081 +2484.529617 +2485.471174 +2486.705272 +2487.151426 +2488.716492 +2489.583891 +2489.666841 +2489.705602 +2489.706401 +2490.705335 +2491.048491 +2491.705833 +2491.710895 +2492.898140 +2494.441195 +2495.486549 +2496.815918 +2496.920780 +2497.016417 +2497.018782 +2497.106627 +2497.116917 +2497.119248 +2497.121745 +2497.206827 +2497.207060 +2497.217083 +2497.318182 +2497.422644 +2497.507060 +2497.516916 +2497.618381 +2497.715751 +2497.718415 +2497.720413 +2497.815817 +2497.818748 +2497.915617 +2497.920479 +2498.007259 +2498.018414 +2498.117382 +2498.207092 +2498.217448 +2498.219280 +2498.315650 +2498.320645 +2498.416016 +2498.420678 +2498.515983 +2498.607358 +2498.617415 +2498.620079 +2498.707092 +2498.807624 +2498.820778 +2498.915716 +2498.920445 +2499.016315 +2499.018813 +2499.106758 +2499.217114 +2499.219479 +2499.318080 +2499.320944 +2499.406924 +2499.418679 +2499.515782 +2499.520744 +2499.615815 +2499.620377 +2499.717147 +2499.915982 +2499.918412 +2500.017447 +2500.118346 +2500.120777 +2500.217147 +2500.219178 +2500.315015 +2500.317380 +2500.319944 +2500.327237 +2500.416314 +2500.418845 +2500.516314 +2500.616347 +2500.706956 +2500.725338 +2500.817046 +2500.819610 +2500.915348 +2500.917079 +2500.924872 +2501.017179 +2501.019544 +2501.116580 +2501.118911 +2501.215880 +2501.218278 +2501.419643 +2501.516013 +2501.518477 +2501.520742 +2501.523872 +2501.606889 +2501.616579 +2501.619010 +2501.720575 +2505.599059 +2505.632826 +2506.705285 +2506.705718 +2506.709515 +2506.721736 +2506.798226 +2506.908649 +2506.942814 +2506.946744 +2507.014509 +2507.085505 +2507.210413 +2507.267423 +2507.492098 +2507.617006 +2507.742747 +2507.808581 +2507.841848 +2507.857166 +2507.932524 +2507.944345 +2507.945511 +2507.986336 +2508.011445 +2508.169986 +2508.238318 +2508.349007 +2508.367788 +2508.401021 +2508.466389 +2508.481408 +2508.519270 +2508.530758 +2508.562826 +2508.598624 +2508.625663 +2508.648174 +2508.675014 +2508.689965 +2508.740215 +2508.818104 +2508.891464 +2508.938417 +2508.959396 +2508.970718 +2508.984437 +2509.000155 +2509.025230 +2509.037484 +2509.092329 +2509.116339 +2509.169519 +2509.195060 +2509.276945 +2509.342978 +2509.356032 +2509.366155 +2509.439881 +2509.467620 +2509.551303 +2509.605616 +2509.608779 +2509.609678 +2509.636218 +2509.647374 +2509.661460 +2509.690664 +2509.718070 +2509.721266 +2509.787866 +2509.799888 +2509.827660 +2509.846042 +2509.856198 +2509.869352 +2509.883104 +2509.913740 +2509.937217 +2509.950437 +2509.989431 +2510.008446 +2510.023064 +2510.079641 +2510.094326 +2510.110743 +2510.138282 +2510.141979 +2510.142578 +2510.179375 +2510.206814 +2510.219401 +2510.233787 +2510.259128 +2510.274679 +2510.302052 +2510.307879 +2510.317470 +2510.332854 +2510.370550 +2510.400686 +2510.414972 +2510.428825 +2510.456997 +2510.499321 +2510.514772 +2510.658195 +2510.885068 +2511.008178 +2511.104582 +2511.112441 +2511.335417 +2511.362790 +2511.393592 +2511.682969 +2514.567116 +2516.669112 +2517.348898 +2518.691854 +2519.963214 +2519.968742 +2520.739737 +2520.749028 +2521.527748 +2521.705737 +2521.914661 +2522.706035 +2522.716791 +2524.897408 +2525.673998 +2525.716022 +2525.898073 +2526.653084 +2526.711226 +2526.716088 +2526.891679 +2527.889946 +2528.561374 +2529.128773 +2529.213355 +2529.726708 +2529.793607 +2530.272528 +2530.349651 +2530.441459 +2530.496504 +2530.635198 +2531.218181 +2531.431801 +2531.705127 +2531.815850 +2531.914717 +2532.006592 +2532.014817 +2532.115350 +2532.117581 +2532.315217 +2532.417814 +2532.419945 +2532.423075 +2532.517714 +2532.519845 +2532.523908 +2532.620111 +2532.715582 +2532.720145 +2532.815682 +2532.817947 +2532.820178 +2532.824673 +2532.918146 +2532.920178 +2533.015516 +2533.019978 +2533.120111 +2533.216781 +2533.221709 +2533.224706 +2533.318412 +2533.415615 +2533.420210 +2533.506790 +2533.620277 +2533.622641 +2533.716014 +2533.816680 +2533.818945 +2533.821475 +2533.920709 +2533.924739 +2534.018179 +2534.118312 +2534.207522 +2534.216047 +2534.218345 +2534.220443 +2534.224572 +2534.318245 +2534.323473 +2534.407322 +2534.424205 +2534.520176 +2534.616247 +2534.721774 +2534.906689 +2534.907155 +2534.916046 +2534.922607 +2535.007322 +2535.018211 +2535.020275 +2535.107288 +2535.118344 +2535.121075 +2535.216246 +2535.318910 +2535.325104 +2535.415946 +2535.420675 +2535.516079 +2535.718310 +2535.722173 +2535.915812 +2535.918243 +2535.922173 +2536.006855 +2536.115945 +2536.207853 +2536.218443 +2536.316012 +2536.423771 +2536.507953 +2536.522738 +2536.607786 +2536.706954 +2536.718176 +2536.720573 +2539.329495 +2540.515042 +2540.651106 +2540.883307 +2541.153203 +2541.633056 +2541.704818 +2541.732723 +2541.818104 +2541.919369 +2541.983905 +2542.090365 +2542.173082 +2542.209213 +2542.272749 +2542.283871 +2542.304850 +2542.479842 +2542.482173 +2542.505116 +2542.770284 +2542.792396 +2542.815972 +2542.841147 +2542.877510 +2542.961826 +2542.967820 +2543.024730 +2543.088666 +2543.140181 +2543.141146 +2543.166754 +2543.251603 +2543.417803 +2543.441379 +2543.511442 +2543.559095 +2543.597989 +2543.688965 +2543.716304 +2543.741579 +2543.781505 +2543.787499 +2543.806447 +2543.808778 +2543.872148 +2543.898155 +2543.926527 +2543.950470 +2543.987299 +2544.017236 +2544.025495 +2544.054033 +2544.079141 +2544.094792 +2544.120000 +2544.157862 +2544.173613 +2544.184768 +2544.200020 +2544.221498 +2544.254166 +2544.283270 +2544.321065 +2544.333253 +2544.340846 +2544.359394 +2544.399886 +2544.422764 +2544.434918 +2544.471581 +2544.483569 +2544.512374 +2544.520199 +2544.536683 +2544.590196 +2544.629290 +2544.641545 +2544.708544 +2544.722497 +2544.724628 +2544.735950 +2544.744342 +2544.759593 +2544.816469 +2544.817402 +2544.840146 +2544.865853 +2544.919100 +2544.921964 +2544.978940 +2545.025960 +2545.063089 +2545.113372 +2545.127525 +2545.167385 +2545.232253 +2545.241777 +2545.268350 +2545.274578 +2545.381138 +2545.621730 +2545.953864 +2546.361023 +2546.680770 +2552.333745 +2554.978231 +2556.343165 +2556.408033 +2556.705002 +2556.705535 +2556.896078 +2557.448858 +2557.453653 +2557.705934 +2557.717222 +2557.880059 +2558.705433 +2558.716222 +2559.705266 +2559.716821 +2559.933138 +2560.908561 +2560.911259 +2561.716885 +2562.004964 +2563.753480 +2565.020412 +2565.158241 +2565.381983 +2566.705425 +2566.706258 +2566.805558 +2566.818046 +2567.007756 +2567.106324 +2567.117280 +2567.217579 +2567.315481 +2567.417979 +2567.519777 +2567.606756 +2567.616780 +2567.715414 +2567.719810 +2567.906689 +2567.915547 +2567.917845 +2567.920043 +2568.015614 +2568.020209 +2568.022640 +2568.106489 +2568.115614 +2568.119909 +2568.207322 +2568.306622 +2568.315980 +2568.318344 +2568.416046 +2568.418311 +2568.506589 +2568.515946 +2568.520508 +2568.615880 +2568.618211 +2568.707155 +2568.719842 +2568.815846 +2568.818144 +2568.821008 +2568.915779 +2569.019809 +2569.115346 +2569.119675 +2569.207254 +2569.220141 +2569.306588 +2569.307021 +2569.312316 +2569.318310 +2569.416878 +2569.422139 +2569.515912 +2569.518243 +2569.520541 +2569.606055 +2569.607121 +2569.615779 +2569.715978 +2569.815912 +2569.820407 +2569.906621 +2569.915745 +2569.920241 +2570.016011 +2570.018209 +2570.020607 +2570.115811 +2570.307952 +2570.315678 +2570.320007 +2570.406654 +2570.407253 +2570.424736 +2570.515744 +2570.616843 +2570.619108 +2570.623870 +2570.715744 +2570.720506 +2570.916077 +2570.920906 +2570.924569 +2571.007252 +2571.016010 +2571.115644 +2571.120139 +2571.207186 +2571.215577 +2571.218008 +2571.317042 +2571.318940 +2571.323336 +2571.406619 +2571.416176 +2571.418541 +2571.515943 +2571.518308 +2571.616043 +2571.618374 +2571.715910 +2571.718307 +2571.723602 +2573.880909 +2574.060696 +2574.729660 +2576.542245 +2576.705349 +2576.714706 +2577.049171 +2577.100786 +2577.174712 +2577.251369 +2577.359727 +2577.446507 +2577.554432 +2577.670749 +2578.073379 +2578.326493 +2578.438714 +2578.441544 +2578.547871 +2578.650035 +2578.663622 +2578.690428 +2578.735483 +2578.772979 +2578.876675 +2578.890262 +2578.914670 +2578.995556 +2579.031220 +2579.134750 +2579.150235 +2579.160658 +2579.175243 +2579.188097 +2579.241810 +2579.282069 +2579.314337 +2579.351899 +2579.368383 +2579.382868 +2579.391959 +2579.406811 +2579.419332 +2579.495722 +2579.526391 +2579.573444 +2579.586431 +2579.601117 +2579.628190 +2579.641310 +2579.695789 +2579.705779 +2579.725059 +2579.847437 +2579.885032 +2579.909508 +2579.951666 +2580.003614 +2580.018932 +2580.034982 +2580.063287 +2580.078772 +2580.102282 +2580.159857 +2580.178439 +2580.202714 +2580.251266 +2580.305179 +2580.316600 +2580.401615 +2580.415701 +2580.419930 +2580.432584 +2580.490493 +2580.534382 +2580.538145 +2580.549534 +2580.592091 +2580.636713 +2580.651865 +2580.654029 +2580.665318 +2580.679704 +2580.699517 +2580.781835 +2580.786397 +2580.839244 +2580.853430 +2580.903580 +2581.050333 +2581.052364 +2581.113070 +2581.391924 +2581.640076 +2581.686862 +2582.374973 +2586.711399 +2587.635508 +2591.705933 +2591.717322 +2592.705965 +2594.706330 +2595.706129 +2596.716484 +2597.651914 +2598.213985 +2598.393106 +2599.528070 +2599.544653 +2600.339957 +2600.529268 +2601.816479 +2602.014980 +2602.115580 +2602.118011 +2602.216412 +2602.218610 +2602.317677 +2602.406788 +2602.417644 +2602.507787 +2602.516112 +2602.518576 +2602.607021 +2602.618443 +2602.706954 +2602.716312 +2602.718643 +2602.807087 +2602.815879 +2602.818409 +2602.820974 +2602.907121 +2602.916511 +2602.919009 +2603.016345 +2603.018742 +2603.117510 +2603.119441 +2603.316045 +2603.320940 +2603.420074 +2603.607520 +2603.607786 +2603.615545 +2603.618109 +2603.620473 +2603.707586 +2603.715978 +2603.807053 +2603.815911 +2603.818542 +2604.017542 +2604.107053 +2604.118841 +2604.121572 +2604.207419 +2604.217809 +2604.220040 +2604.316210 +2604.321205 +2604.417509 +2604.419873 +2604.507918 +2604.517875 +2604.615943 +2604.618508 +2604.816509 +2604.819007 +2604.907718 +2604.918640 +2605.016143 +2605.018441 +2605.020738 +2605.025001 +2605.116775 +2605.119173 +2605.217475 +2605.219872 +2605.307618 +2605.316842 +2605.418940 +2605.516675 +2605.716342 +2605.718873 +2605.807084 +2605.918972 +2605.921270 +2606.016675 +2606.107117 +2606.118772 +2606.121070 +2606.207151 +2606.216075 +2606.218573 +2606.316075 +2606.320604 +2606.416075 +2606.420970 +2606.506984 +2606.507783 +2606.619038 +2606.716507 +2606.719038 +2606.721502 +2606.724766 +2607.262294 +2607.267223 +2607.877246 +2607.879743 +2608.078944 +2609.031390 +2609.033888 +2610.327160 +2610.554632 +2610.914106 +2611.705380 +2611.705946 +2612.400318 +2612.559126 +2612.594857 +2613.240710 +2613.312005 +2613.323061 +2613.425725 +2613.460923 +2613.605012 +2613.789194 +2613.908575 +2613.920729 +2613.997486 +2614.008808 +2614.012471 +2614.023427 +2614.036314 +2614.047969 +2614.171878 +2614.184099 +2614.197019 +2614.304545 +2614.332351 +2614.357725 +2614.359956 +2614.367049 +2614.370879 +2614.383666 +2614.448834 +2614.472144 +2614.497585 +2614.513702 +2614.538278 +2614.551831 +2614.589893 +2614.603712 +2614.615001 +2614.628687 +2614.643206 +2614.654129 +2614.681634 +2614.685397 +2614.701781 +2614.711438 +2614.727289 +2614.768214 +2614.785930 +2614.794388 +2614.798118 +2614.919829 +2614.925690 +2614.934082 +2614.949733 +2615.050432 +2615.076606 +2615.092390 +2615.129386 +2615.137744 +2615.210938 +2615.250232 +2615.253295 +2615.262719 +2615.275107 +2615.279769 +2615.330385 +2615.333149 +2615.357358 +2615.402479 +2615.410871 +2615.424924 +2615.429186 +2615.439676 +2615.453295 +2615.497817 +2615.512170 +2615.526089 +2615.539376 +2615.598217 +2615.647268 +2615.662519 +2615.679436 +2615.732149 +2615.749632 +2615.828653 +2615.898450 +2616.027354 +2616.176405 +2616.205742 +2616.498149 +2616.562085 +2619.712066 +2621.111398 +2622.638569 +2623.563244 +2625.075697 +2626.711526 +2629.257144 +2629.717350 +2630.511289 +2630.705894 +2630.716916 +2631.706293 +2631.717481 +2631.900532 +2632.474157 +2633.399897 +2633.767163 +2634.304558 +2634.585877 +2635.100395 +2635.103059 +2635.654374 +2636.501126 +2636.705122 +2636.716611 +2636.806088 +2637.007453 +2637.218475 +2637.307419 +2637.515811 +2637.518308 +2637.607519 +2637.615910 +2637.622837 +2637.715744 +2637.718175 +2637.816143 +2637.907785 +2637.916443 +2638.007219 +2638.018807 +2638.020739 +2638.107285 +2638.117642 +2638.123969 +2638.207252 +2638.215843 +2638.318774 +2638.320905 +2638.508217 +2638.607418 +2638.616276 +2638.618740 +2638.718773 +2638.807418 +2638.817707 +2638.906319 +2638.908017 +2639.018074 +2639.020504 +2639.116075 +2639.218939 +2639.220937 +2639.418872 +2639.519372 +2639.524733 +2639.607883 +2639.616674 +2639.619105 +2639.724833 +2639.816841 +2639.819172 +2639.821403 +2639.919371 +2640.007417 +2640.019538 +2640.116174 +2640.124266 +2640.216174 +2640.218672 +2640.315974 +2640.416141 +2640.418472 +2640.420803 +2640.423400 +2640.619171 +2640.716573 +2640.719004 +2640.816906 +2640.819404 +2640.916806 +2640.919204 +2641.006883 +2641.007382 +2641.016873 +2641.119237 +2641.125231 +2641.207449 +2641.216473 +2641.220902 +2641.307315 +2641.317572 +2641.319903 +2641.416439 +2641.517072 +2641.519436 +2641.619003 +2641.716739 +2642.291597 +2642.749105 +2643.596790 +2643.599354 +2644.799253 +2645.698986 +2646.706045 +2646.716401 +2646.722595 +2646.784300 +2647.514668 +2647.545671 +2647.628721 +2647.932750 +2648.141308 +2648.205976 +2648.463685 +2648.476772 +2648.503812 +2648.515966 +2648.693921 +2648.726655 +2648.816798 +2648.855426 +2649.027854 +2649.041374 +2649.080734 +2649.160454 +2649.189292 +2649.273375 +2649.302146 +2649.328519 +2649.358423 +2649.397783 +2649.411969 +2649.417730 +2649.442106 +2649.479668 +2649.506841 +2649.550098 +2649.589325 +2649.617330 +2649.628453 +2649.688592 +2649.703844 +2649.716831 +2649.731383 +2649.744903 +2649.761419 +2649.788892 +2649.847134 +2649.862951 +2649.876671 +2649.908139 +2649.932248 +2650.013068 +2650.043004 +2650.051762 +2650.060820 +2650.066714 +2650.085928 +2650.102245 +2650.112535 +2650.157689 +2650.174706 +2650.186427 +2650.203910 +2650.260786 +2650.304043 +2650.319128 +2650.336078 +2650.348132 +2650.358089 +2650.365648 +2650.375138 +2650.402178 +2650.410836 +2650.426187 +2650.436677 +2650.445035 +2650.474239 +2650.488658 +2650.516863 +2650.522757 +2650.531815 +2650.547100 +2650.582831 +2650.604376 +2650.627652 +2650.655092 +2650.660186 +2650.671941 +2650.690856 +2650.705108 +2650.803709 +2650.849131 +2650.880100 +2650.911468 +2650.926786 +2650.942038 +2650.955025 +2651.027019 +2651.218028 +2651.302643 +2651.375637 +2653.902707 +2657.430509 +2658.434371 +2659.317088 +2659.322948 +2659.599139 +2659.961376 +2661.596572 +2661.705264 +2662.706628 +2663.217850 +2663.716983 +2664.916849 +2665.169063 +2665.717547 +2665.812519 +2665.833698 +2666.706058 +2666.706624 +2667.454142 +2668.001361 +2668.008188 +2668.543086 +2669.758902 +2669.984509 +2670.149844 +2670.840652 +2671.585573 +2671.588337 +2671.818740 +2671.820905 +2672.106885 +2672.108017 +2672.206652 +2672.318906 +2672.417441 +2672.419838 +2672.607118 +2672.615476 +2672.718373 +2672.720537 +2672.817607 +2672.819638 +2673.016508 +2673.021037 +2673.116741 +2673.119105 +2673.124100 +2673.220970 +2673.318905 +2673.416641 +2673.519071 +2673.616574 +2673.618971 +2673.717506 +2673.719204 +2673.807316 +2673.808615 +2673.817173 +2673.907316 +2673.916673 +2673.919004 +2674.007949 +2674.016673 +2674.116607 +2674.119071 +2674.219237 +2674.323832 +2674.407282 +2674.408648 +2674.418937 +2674.421168 +2674.516573 +2674.521401 +2674.616606 +2674.618937 +2674.621002 +2674.707848 +2674.807881 +2674.823166 +2675.107648 +2675.116572 +2675.208414 +2675.221667 +2675.318870 +2675.416639 +2675.419103 +2675.516605 +2675.519136 +2675.808513 +2676.007714 +2676.116638 +2676.208046 +2676.307547 +2676.321166 +2676.608512 +2676.707113 +2676.707680 +2676.708112 +2677.489330 +2677.491795 +2680.124193 +2680.312072 +2680.799883 +2680.802680 +2681.652363 +2681.705677 +2681.715966 +2681.956026 +2682.039742 +2682.189892 +2682.242972 +2682.573941 +2682.631017 +2682.824923 +2682.890557 +2682.956025 +2683.019328 +2683.048266 +2683.071942 +2683.186028 +2683.304676 +2683.420726 +2683.446501 +2683.473340 +2683.553127 +2683.563450 +2683.690223 +2683.779567 +2683.788592 +2683.840639 +2683.896284 +2683.911502 +2684.074772 +2684.089224 +2684.102744 +2684.206373 +2684.245834 +2684.257789 +2684.304109 +2684.345734 +2684.402377 +2684.416363 +2684.430516 +2684.457922 +2684.462750 +2684.486826 +2684.572407 +2684.613199 +2684.617162 +2684.692220 +2684.707871 +2684.732780 +2684.748298 +2684.763949 +2684.779699 +2684.805074 +2684.849929 +2684.859286 +2684.896150 +2684.912233 +2684.922457 +2684.980066 +2684.993818 +2685.011734 +2685.035776 +2685.040205 +2685.139073 +2685.171807 +2685.180565 +2685.195716 +2685.212566 +2685.222922 +2685.250129 +2685.278234 +2685.289356 +2685.300645 +2685.306739 +2685.321124 +2685.366379 +2685.484927 +2685.491087 +2685.508337 +2685.544467 +2685.563182 +2685.596915 +2685.635709 +2685.678833 +2685.712066 +2685.784127 +2685.815629 +2685.878500 +2686.023588 +2686.127983 +2686.153158 +2686.294350 +2686.324620 +2686.341536 +2686.383094 +2686.580097 +2687.847529 +2689.124484 +2690.209631 +2693.812424 +2695.197072 +2696.705928 +2696.706294 +2696.706694 +2696.708492 +2696.966900 +2697.229504 +2697.706360 +2697.706560 +2697.706926 +2698.706725 +2698.707158 +2699.421277 +2699.646817 +2699.705692 +2699.705958 +2699.716348 +2700.717745 +2700.734329 +2701.052077 +2701.717445 +2701.970125 +2701.972656 +2703.779614 +2705.345014 +2706.706084 +2706.717273 +2706.806884 +2706.915708 +2707.007949 +2707.218671 +2707.308015 +2707.316906 +2707.416740 +2707.419370 +2707.516806 +2707.521535 +2707.617139 +2707.708148 +2707.719870 +2707.808414 +2707.817971 +2707.907648 +2707.919004 +2707.921168 +2708.008114 +2708.017139 +2708.019436 +2708.119336 +2708.217172 +2708.219603 +2708.308181 +2708.319336 +2708.408181 +2708.419736 +2708.517238 +2708.608347 +2708.610445 +2708.619669 +2708.622100 +2708.708447 +2708.717471 +2708.817271 +2708.819835 +2708.917804 +2708.920368 +2709.008446 +2709.017704 +2709.108846 +2709.117437 +2709.122233 +2709.219768 +2709.317537 +2709.319901 +2709.417304 +2709.419635 +2709.520634 +2709.617304 +2709.816538 +2709.916970 +2709.919368 +2710.007846 +2710.017137 +2710.019468 +2710.108445 +2710.117436 +2710.218369 +2710.220666 +2710.317103 +2710.319467 +2710.417336 +2710.517436 +2710.519933 +2710.607979 +2710.708411 +2710.717136 +2710.719634 +2710.722131 +2710.817269 +2710.821931 +2710.907878 +2710.916969 +2711.017102 +2711.019467 +2711.210409 +2711.218201 +2711.220366 +2711.225594 +2711.307978 +2711.317069 +2711.417302 +2711.422097 +2711.521697 +2711.617568 +2711.719666 +2711.722030 +2715.122193 +2715.926422 +2716.511136 +2716.711402 +2717.414032 +2717.553726 +2717.680899 +2718.016196 +2718.028084 +2718.083163 +2718.281664 +2718.324554 +2718.641237 +2718.673405 +2718.752526 +2718.874504 +2718.938606 +2719.235076 +2719.322422 +2719.381530 +2719.505406 +2719.548929 +2719.576668 +2719.591020 +2719.599545 +2719.604173 +2719.626618 +2719.630547 +2719.707004 +2719.798046 +2719.859584 +2719.888356 +2719.964446 +2719.986224 +2720.027983 +2720.071539 +2720.115828 +2720.154989 +2720.184459 +2720.198146 +2720.235408 +2720.270706 +2720.313164 +2720.337306 +2720.356753 +2720.361582 +2720.366277 +2720.383060 +2720.396747 +2720.412398 +2720.426617 +2720.443167 +2720.446297 +2720.469307 +2720.486224 +2720.500110 +2720.501941 +2720.510133 +2720.527416 +2720.558085 +2720.572005 +2720.598278 +2720.602308 +2720.607436 +2720.618858 +2720.630546 +2720.647196 +2720.650792 +2720.660583 +2720.726317 +2720.799643 +2720.806636 +2720.825584 +2720.867476 +2720.883493 +2720.916360 +2720.921122 +2720.949094 +2720.956420 +2720.978032 +2720.987689 +2721.056986 +2721.071072 +2721.094515 +2721.109234 +2721.123752 +2721.174135 +2721.221887 +2721.240669 +2721.350092 +2722.995645 +2724.127679 +2724.880159 +2728.123978 +2729.523811 +2730.579754 +2731.641557 +2731.706992 +2731.718114 +2732.917447 +2732.924107 +2733.717979 +2734.026137 +2734.028901 +2734.706489 +2734.717878 +2734.916879 +2735.706755 +2735.717810 +2736.000427 +2736.005389 +2736.865162 +2736.867526 +2736.870057 +2738.101324 +2738.104555 +2739.093731 +2739.096462 +2739.560963 +2741.178211 +2741.807381 +2741.816839 +2741.919569 +2741.922866 +2742.022366 +2742.107647 +2742.116305 +2742.118969 +2742.208180 +2742.216538 +2742.218936 +2742.307847 +2742.316605 +2742.319236 +2742.325396 +2742.407914 +2742.419136 +2742.421067 +2742.517937 +2742.607414 +2742.718569 +2742.918969 +2743.019035 +2743.107646 +2743.119202 +2743.207913 +2743.516437 +2743.520966 +2743.617037 +2743.619401 +2743.707379 +2743.708245 +2743.818668 +2743.820799 +2743.916337 +2743.918834 +2743.921099 +2744.007912 +2744.018934 +2744.020966 +2744.116370 +2744.118934 +2744.207545 +2744.216770 +2744.219134 +2744.228924 +2744.317868 +2744.416636 +2744.419100 +2744.521065 +2744.707578 +2744.716603 +2744.719033 +2744.807545 +2744.818834 +2744.918967 +2744.921065 +2745.008743 +2745.016969 +2745.116003 +2745.118300 +2745.208543 +2745.215903 +2745.220365 +2745.225027 +2745.319000 +2745.419799 +2745.507577 +2745.519932 +2745.618600 +2745.716535 +2745.718966 +2745.721430 +2745.807111 +2745.819032 +2745.916402 +2745.918932 +2745.920897 +2746.009275 +2746.016468 +2746.019032 +2746.118033 +2746.120264 +2746.218199 +2746.220231 +2746.307543 +2746.320297 +2746.407710 +2746.416101 +2746.418865 +2746.507277 +2746.515868 +2746.520563 +2746.607443 +2746.607643 +2746.616434 +2746.618865 +2749.724856 +2750.920359 +2751.715696 +2751.743002 +2752.249096 +2752.298247 +2752.464347 +2752.707071 +2753.068276 +2753.111000 +2753.123354 +2753.205172 +2753.216095 +2753.242568 +2753.333211 +2753.399711 +2753.411566 +2753.530680 +2753.549561 +2753.651326 +2753.775168 +2753.814362 +2753.982594 +2754.026850 +2754.092884 +2754.178165 +2754.181362 +2754.208768 +2754.251325 +2754.253356 +2754.277765 +2754.323186 +2754.333942 +2754.387988 +2754.430712 +2754.488088 +2754.497578 +2754.525983 +2754.541768 +2754.625783 +2754.653755 +2754.657352 +2754.701974 +2754.702207 +2754.711098 +2754.837805 +2754.881761 +2754.894814 +2754.925517 +2754.939503 +2755.000175 +2755.040335 +2755.056752 +2755.068740 +2755.084924 +2755.187821 +2755.203971 +2755.233109 +2755.274967 +2755.278830 +2755.293016 +2755.365077 +2755.392716 +2755.420122 +2755.435306 +2755.450691 +2755.465909 +2755.480828 +2755.503938 +2755.511397 +2755.532243 +2755.588553 +2755.599975 +2755.603838 +2755.618390 +2755.646329 +2755.650957 +2755.677631 +2755.722452 +2755.728180 +2755.742399 +2755.773335 +2755.774101 +2755.784657 +2755.819389 +2755.830977 +2755.846095 +2755.875832 +2755.891616 +2755.920754 +2755.925050 +2755.925949 +2755.935972 +2755.967207 +2755.971470 +2755.972336 +2755.981693 +2756.009998 +2756.042898 +2756.059448 +2756.072069 +2756.104104 +2756.222585 +2756.235006 +2756.252122 +2756.255386 +2756.263944 +2756.279295 +2756.312595 +2756.321486 +2756.389385 +2756.458948 +2756.479728 +2756.521419 +2756.549957 +2756.652388 +2760.093477 +2763.342724 +2763.358642 +2764.129437 +2764.151382 +2764.678854 +2764.727538 +2765.567231 +2766.705392 +2767.880149 +2767.955174 +2768.705623 +2768.899229 +2768.945383 +2768.993102 +2769.020508 +2769.047447 +2769.094201 +2769.184477 +2769.251443 +2769.286375 +2769.883977 +2770.705221 +2770.705521 +2770.705521 +2770.937489 +2770.955970 +2770.987938 +2771.716509 +2771.892400 +2772.932492 +2773.034456 +2773.066591 +2773.736820 +2773.828928 +2773.941915 +2774.888867 +2775.642546 +2776.704849 +2776.815638 +2776.915971 +2777.021432 +2777.108845 +2777.117070 +2777.122797 +2777.206846 +2777.214572 +2777.416503 +2777.418901 +2777.506413 +2777.507212 +2777.515038 +2777.517502 +2777.519500 +2777.606313 +2777.717902 +2777.720266 +2777.815138 +2777.817635 +2777.820133 +2777.823529 +2777.907012 +2777.917668 +2777.920066 +2778.006379 +2778.007012 +2778.016469 +2778.029789 +2778.117768 +2778.215170 +2778.220132 +2778.315204 +2778.317701 +2778.429656 +2778.516535 +2778.519033 +2778.525393 +2778.606412 +2778.617634 +2778.619965 +2778.806412 +2778.815403 +2778.817934 +2778.826425 +2778.906578 +2778.915103 +2778.917467 +2778.926658 +2779.017767 +2779.106512 +2779.115303 +2779.120398 +2779.124427 +2779.206445 +2779.217600 +2779.315702 +2779.318000 +2779.406411 +2779.506411 +2779.519498 +2779.606478 +2779.622761 +2779.715435 +2779.720364 +2779.723094 +2779.806378 +2779.810906 +2779.815335 +2779.817866 +2779.819964 +2779.917733 +2779.920197 +2780.016667 +2780.019031 +2780.024093 +2780.115135 +2780.117633 +2780.119597 +2780.206377 +2780.215468 +2780.224326 +2780.306377 +2780.415634 +2780.420463 +2780.423360 +2780.520230 +2780.615601 +2780.617999 +2780.622627 +2780.715667 +2780.718132 +2780.720429 +2780.723393 +2780.806410 +2780.816633 +2780.818598 +2780.824925 +2780.920263 +2781.015501 +2781.018065 +2781.023992 +2781.107076 +2781.115667 +2781.118098 +2781.120429 +2781.206443 +2781.215467 +2781.217898 +2781.306376 +2781.307009 +2781.326822 +2781.406409 +2781.415067 +2781.417532 +2781.506443 +2781.515300 +2781.517731 +2781.525190 +2781.706509 +2781.717864 +2783.374140 +2783.393154 +2785.507904 +2785.541204 +2786.704439 +2786.721855 +2787.266277 +2787.313663 +2787.590619 +2787.652823 +2787.681428 +2787.930046 +2788.050925 +2788.304904 +2788.406469 +2788.434208 +2788.495780 +2788.627781 +2788.705170 +2788.730012 +2788.872369 +2789.048193 +2789.112595 +2789.113628 +2789.188320 +2789.213428 +2789.294980 +2789.297311 +2789.311330 +2789.336005 +2789.349925 +2789.389818 +2789.487187 +2789.499775 +2789.515559 +2789.541766 +2789.611130 +2789.637237 +2789.684723 +2789.708532 +2789.721619 +2789.763511 +2789.778928 +2789.806368 +2789.808865 +2789.863344 +2789.904636 +2789.920820 +2789.948392 +2789.989151 +2790.012728 +2790.034672 +2790.044762 +2790.081159 +2790.115425 +2790.132907 +2790.157982 +2790.171569 +2790.200407 +2790.229477 +2790.244829 +2790.287786 +2790.332641 +2790.377929 +2790.407200 +2790.440932 +2790.463810 +2790.475731 +2790.481891 +2790.483323 +2790.514192 +2790.571968 +2790.580093 +2790.599807 +2790.610896 +2790.625514 +2790.630809 +2790.640166 +2790.670469 +2790.699440 +2790.711761 +2790.726280 +2790.756883 +2790.777695 +2790.842797 +2790.859081 +2790.918488 +2790.947159 +2791.131241 +2793.720050 +2801.870758 +2801.873355 +2801.972856 +2802.705056 +2802.716977 +2802.881646 +2803.224436 +2803.875917 +2803.878948 +2803.893000 +2804.297762 +2804.498860 +2804.584675 +2804.705154 +2804.705387 +2804.715344 +2804.834591 +2804.875750 +2805.090535 +2805.705220 +2805.706385 +2805.706585 +2805.882509 +2805.965126 +2806.376148 +2806.705152 +2806.705452 +2806.705751 +2806.875715 +2808.322500 +2808.343878 +2808.371584 +2808.399090 +2808.649306 +2811.704947 +2811.806113 +2811.815869 +2811.832220 +2811.906679 +2811.914371 +2811.916635 +2811.918533 +2812.019233 +2812.106479 +2812.106612 +2812.114903 +2812.117301 +2812.206578 +2812.215203 +2812.217567 +2812.219532 +2812.317767 +2812.320031 +2812.406878 +2812.415170 +2812.419665 +2812.515303 +2812.519898 +2812.606744 +2812.615369 +2812.617700 +2812.627224 +2812.806744 +2812.815402 +2812.817800 +2812.920264 +2813.017966 +2813.022761 +2813.126258 +2813.206744 +2813.219931 +2813.306710 +2813.406744 +2813.415635 +2813.515701 +2813.520197 +2813.606610 +2813.619198 +2813.706710 +2813.707276 +2813.719098 +2813.906743 +2813.920030 +2814.016999 +2814.118465 +2814.206710 +2814.217765 +2814.219930 +2814.224858 +2814.320729 +2814.326823 +2814.406776 +2814.408141 +2814.418398 +2814.518031 +2814.520196 +2814.615833 +2814.620362 +2814.715334 +2814.717765 +2814.719962 +2814.723992 +2814.815900 +2814.820262 +2814.915667 +2814.918331 +2815.006709 +2815.017664 +2815.115100 +2815.215933 +2815.220628 +2815.317997 +2815.320661 +2815.415566 +2815.417964 +2815.420228 +2815.424857 +2815.516232 +2815.518530 +2815.520761 +2815.615533 +2815.617930 +2815.620394 +2815.716099 +2815.718496 +2815.720694 +2815.816964 +2815.822359 +2815.916132 +2815.918596 +2815.920960 +2816.007340 +2816.018896 +2816.106774 +2816.107474 +2816.115332 +2816.215932 +2816.218229 +2816.318629 +2816.415732 +2816.418063 +2816.420494 +2816.423557 +2816.508572 +2816.515632 +2816.606507 +2816.618462 +2816.620726 +2816.705974 +2816.706807 +2819.619958 +2820.044066 +2820.681129 +2820.700176 +2821.273802 +2821.817558 +2821.818490 +2821.829279 +2821.979529 +2822.177597 +2822.272103 +2822.353521 +2822.409598 +2822.732242 +2822.881393 +2823.259581 +2823.292015 +2823.418955 +2823.457150 +2823.524016 +2823.617423 +2823.640167 +2823.703803 +2823.760946 +2823.826547 +2823.880626 +2823.920419 +2823.997209 +2824.077362 +2824.098741 +2824.113526 +2824.227312 +2824.253453 +2824.308764 +2824.435737 +2824.504435 +2824.534172 +2824.585454 +2824.639167 +2824.643163 +2824.669003 +2824.758148 +2824.780891 +2824.812626 +2824.848524 +2824.856149 +2824.868737 +2824.954318 +2824.969170 +2824.970135 +2824.980758 +2825.012826 +2825.040698 +2825.053485 +2825.097774 +2825.110728 +2825.208763 +2825.251420 +2825.265440 +2825.280591 +2825.306698 +2825.348856 +2825.361144 +2825.392113 +2825.404501 +2825.477328 +2825.488117 +2825.514624 +2825.544760 +2825.556482 +2825.570867 +2825.625246 +2825.679059 +2825.701204 +2825.729342 +2825.828176 +2825.873864 +2825.946358 +2826.031373 +2826.054084 +2826.111559 +2826.234836 +2826.456547 +2826.657679 +2831.894471 +2832.521876 +2833.390606 +2834.416047 +2834.788108 +2834.879483 +2834.879949 +2835.433362 +2835.883877 +2836.008353 +2836.234060 +2836.236624 +2836.784642 +2837.091235 +2837.879779 +2837.881012 +2838.880711 +2838.885406 +2840.036654 +2840.039118 +2840.051039 +2841.293462 +2841.338218 +2842.932688 +2844.880339 +2844.884068 +2844.981071 +2845.080838 +2845.081237 +2845.197654 +2845.381670 +2845.392559 +2845.481670 +2845.481836 +2845.482169 +2845.490195 +2845.492626 +2845.592626 +2845.681903 +2845.699252 +2845.882768 +2845.992758 +2845.994890 +2846.093058 +2846.097487 +2846.193124 +2846.282235 +2846.293191 +2846.381802 +2846.382868 +2846.482402 +2846.493024 +2846.592791 +2846.690560 +2846.695422 +2846.790327 +2846.793057 +2846.795588 +2846.893190 +2846.982867 +2846.993357 +2847.082401 +2847.082900 +2847.290659 +2847.293223 +2847.390393 +2847.395288 +2847.690459 +2847.781867 +2847.782567 +2847.782900 +2847.793389 +2848.095553 +2848.190558 +2848.296119 +2848.482966 +2848.490824 +2848.581967 +2848.790791 +2848.890691 +2848.896618 +2848.982399 +2848.982932 +2849.181966 +2849.195386 +2849.281999 +2849.381966 +2849.682032 +2849.690923 +2850.435511 +2850.437809 +2850.440140 +2853.929880 +2853.932844 +2854.291218 +2854.880628 +2854.881061 +2854.884391 +2854.891118 +2854.891651 +2855.531710 +2855.594747 +2855.663411 +2855.790817 +2855.870338 +2855.889685 +2856.406967 +2856.497843 +2856.632275 +2856.775465 +2856.790417 +2856.951089 +2856.980060 +2857.018821 +2857.166407 +2857.253953 +2857.308265 +2857.332507 +2857.347958 +2857.374898 +2857.386653 +2857.503436 +2857.518588 +2857.558381 +2857.643463 +2857.758081 +2857.769603 +2857.781358 +2857.782523 +2857.795311 +2857.822916 +2857.851355 +2857.910695 +2857.915390 +2857.928411 +2857.938900 +2857.955550 +2857.969603 +2857.993446 +2858.020752 +2858.037502 +2858.063709 +2858.113659 +2858.151221 +2858.176229 +2858.215057 +2858.267804 +2858.289416 +2858.327478 +2858.346892 +2858.360978 +2858.370235 +2858.383222 +2858.398074 +2858.454418 +2858.471900 +2858.498873 +2858.539333 +2858.572699 +2858.711760 +2858.752120 +2858.966172 +2859.094777 +2859.112126 +2859.199572 +2860.626976 +2862.649418 +2863.431369 +2866.995002 +2868.398597 +2869.240787 +2869.489671 +2870.058768 +2871.881677 +2871.881943 +2872.079146 +2873.881575 +2873.893230 +2874.276580 +2874.893495 +2875.091697 +2877.702350 +2877.916436 +2877.972646 +2878.210475 +2879.101683 +2879.751466 +2879.882002 +2879.882468 +2879.882801 +2879.992991 +2880.283833 +2880.296087 +2880.298452 +2880.384232 +2880.384532 +2880.492990 +2880.584332 +2880.592690 +2880.595321 +2880.683733 +2880.684299 +2880.686963 +2880.693256 +2880.695721 +2880.793456 +2880.795854 +2880.993156 +2881.001947 +2881.096852 +2881.193422 +2881.293589 +2881.393056 +2881.395487 +2881.397884 +2881.401181 +2881.484365 +2881.493755 +2881.496219 +2881.595953 +2881.684065 +2881.696319 +2881.884098 +2881.884597 +2881.893522 +2881.896052 +2882.093755 +2882.096252 +2882.098949 +2882.102080 +2882.299216 +2882.393455 +2882.395952 +2882.500414 +2882.684996 +2882.784297 +2882.794153 +2882.796751 +2882.799748 +2882.893654 +2882.994020 +2883.193620 +2883.195951 +2883.198182 +2883.284962 +2883.396084 +2883.484429 +2883.485062 +2883.584529 +2883.696583 +2883.794119 +2883.796683 +2883.900679 +2883.984961 +2884.094285 +2884.201511 +2884.384362 +2884.385227 +2884.396183 +2884.485261 +2884.694152 +2884.801577 +2890.655584 +2890.736770 +2890.786720 +2891.247891 +2891.836802 +2891.849323 +2892.093844 +2892.107497 +2892.148789 +2892.187284 +2892.427377 +2892.465173 +2892.467504 +2892.478759 +2892.543628 +2892.586085 +2892.679458 +2892.783621 +2892.795542 +2892.797940 +2892.822415 +2892.845858 +2892.852618 +2892.863974 +2892.892811 +2892.896474 +2892.979791 +2892.990747 +2893.103634 +2893.145758 +2893.159977 +2893.258645 +2893.286684 +2893.289681 +2893.311526 +2893.329008 +2893.345658 +2893.358845 +2893.384919 +2893.397140 +2893.462175 +2893.471132 +2893.504732 +2893.510693 +2893.532704 +2893.544559 +2893.552717 +2893.670866 +2893.716920 +2893.786350 +2894.199304 +2894.433169 +2894.562274 +2894.845756 +2894.874028 +2895.574960 +2898.070395 +2898.760538 +2900.585045 +2901.749080 +2902.324637 +2903.525268 +2903.724669 +2903.924668 +2904.319706 +2904.885673 +2904.886139 +2905.127231 +2905.321037 +2905.897960 +2906.008150 +2907.018039 +2907.285438 +2907.886070 +2908.152736 +2908.313442 +2908.531157 +2908.885969 +2909.212775 +2909.885868 +2910.133687 +2911.752067 +2912.446471 +2912.787530 +2913.334483 +2914.289227 +2915.007008 +2915.197185 +2915.287428 +2915.287661 +2915.387561 +2915.389192 +2915.396185 +2915.398550 +2915.496385 +2915.498783 +2915.590424 +2915.596818 +2915.796651 +2915.801080 +2915.896585 +2915.901280 +2916.004676 +2916.088659 +2916.097184 +2916.099581 +2916.187593 +2916.197050 +2916.203744 +2916.387493 +2916.399315 +2916.401912 +2916.501812 +2916.594453 +2916.599348 +2916.897449 +2916.904942 +2917.387659 +2917.397216 +2917.888191 +2918.187658 +2918.188157 +2918.287691 +2918.388224 +2918.487691 +2918.488090 +2918.587691 +2918.588224 +2918.687724 +2918.703575 +2918.888123 +2918.988290 +2919.087757 +2919.088356 +2919.187790 +2919.188156 +2919.387091 +2919.487657 +2920.527882 +2921.059383 +2921.731411 +2921.733908 +2923.629444 +2924.808064 +2924.886153 +2924.897108 +2925.073765 +2925.159812 +2925.396209 +2925.712759 +2925.742362 +2925.780624 +2925.790447 +2926.265872 +2926.388349 +2926.411093 +2926.526577 +2926.810160 +2926.822548 +2926.848388 +2927.084186 +2927.097239 +2927.150220 +2927.151319 +2927.216320 +2927.268501 +2927.296007 +2927.323579 +2927.390213 +2927.405364 +2927.430273 +2927.545091 +2927.560609 +2927.583586 +2927.603166 +2927.669833 +2927.705597 +2927.734235 +2927.773662 +2927.800868 +2927.828407 +2927.953249 +2927.980289 +2928.031937 +2928.040762 +2928.095773 +2928.151617 +2928.188181 +2928.274294 +2928.319549 +2928.341227 +2928.354980 +2928.366003 +2928.371231 +2928.382153 +2928.411224 +2928.524144 +2928.535533 +2928.582719 +2928.648653 +2929.542325 +2929.597903 +2929.700500 +2932.326805 +2933.612185 +2934.761168 +2936.920673 +2938.321404 +2938.829795 +2939.886937 +2939.887270 +2939.892198 +2940.886869 +2942.082239 +2943.134553 +2943.137250 +2943.154200 +2944.070083 +2944.887731 +2945.074477 +2945.484400 +2947.252997 +2947.381568 +2947.479137 +2948.314834 +2948.363352 +2949.127554 +2949.205576 +2949.298116 +2949.886327 +2949.886727 +2949.886993 +2949.987659 +2950.097116 +2950.099414 +2950.102811 +2950.198249 +2950.488391 +2950.496483 +2950.498848 +2950.505374 +2950.599014 +2950.696783 +2950.796317 +2950.800879 +2950.896783 +2950.996649 +2950.999080 +2951.001278 +2951.007372 +2951.098847 +2951.101012 +2951.199380 +2951.201911 +2951.205107 +2951.304808 +2951.399413 +2951.596715 +2951.599146 +2951.601344 +2951.801677 +2951.804807 +2951.999279 +2952.004607 +2952.099013 +2952.103575 +2952.199212 +2952.288190 +2952.296981 +2952.299379 +2952.305106 +2952.396715 +2952.501410 +2952.587956 +2952.599845 +2952.603308 +2952.607570 +2952.687923 +2952.699212 +2952.787856 +2952.802741 +2952.996614 +2953.001276 +2953.096681 +2953.099078 +2953.103607 +2953.197113 +2953.202608 +2953.396680 +2953.405438 +2953.496813 +2953.597146 +2953.599444 +2953.696846 +2953.702541 +2953.887889 +2953.905038 +2953.987888 +2953.996646 +2954.096580 +2954.101108 +2954.104072 +2954.204105 +2954.299377 +2954.304638 +2954.399210 +2954.496579 +2954.501508 +2954.598943 +2954.696746 +2954.896745 +2958.497941 +2958.560711 +2958.665040 +2959.021017 +2959.886118 +2959.886284 +2959.887416 +2960.094409 +2960.261941 +2960.382454 +2960.603500 +2960.746123 +2961.314155 +2961.362140 +2961.425177 +2961.426842 +2961.449320 +2961.543059 +2961.543359 +2961.553149 +2961.570065 +2961.579256 +2961.682153 +2961.756612 +2961.767601 +2961.803199 +2961.831171 +2961.877591 +2961.898870 +2961.941460 +2961.969998 +2962.005063 +2962.125909 +2962.150751 +2962.175826 +2962.225476 +2962.270531 +2962.300667 +2962.303897 +2962.338763 +2962.374027 +2962.405596 +2962.449552 +2962.477957 +2962.530670 +2962.548586 +2962.558909 +2962.560574 +2962.571829 +2962.573394 +2962.615086 +2962.642692 +2962.645056 +2962.653115 +2962.669298 +2962.679988 +2962.720314 +2962.736431 +2962.737397 +2962.787280 +2962.814253 +2962.826907 +2962.831669 +2962.866068 +2962.927540 +2962.966834 +2962.988912 +2963.044456 +2963.077257 +2963.135199 +2963.136531 +2963.159208 +2963.187779 +2963.193673 +2963.248186 +2963.269731 +2963.396304 +2963.405894 +2963.447020 +2963.638228 +2964.169264 +2964.349983 +2969.825901 +2970.051875 +2974.045844 +2974.095994 +2974.643612 +2974.797458 +2974.885903 +2975.054800 +2975.067854 +2975.886901 +2975.897524 +2976.062125 +2976.071882 +2977.056197 +2977.781538 +2977.896955 +2978.059426 +2978.065021 +2978.886298 +2978.886598 +2978.896755 +2979.062156 +2979.481436 +2979.885964 +2980.062288 +2980.531385 +2981.142973 +2981.208640 +2982.152895 +2982.196485 +2982.250531 +2982.386994 +2982.975239 +2984.034578 +2984.679100 +2984.694951 +2984.711467 +2984.896482 +2984.998447 +2985.086459 +2985.097115 +2985.099313 +2985.197215 +2985.199346 +2985.295483 +2985.387657 +2985.395849 +2985.400111 +2985.495649 +2985.497880 +2985.504740 +2985.595549 +2985.597913 +2985.695882 +2985.795516 +2985.799878 +2985.803574 +2985.894117 +2985.896115 +2985.995615 +2985.998046 +2986.000111 +2986.087623 +2986.100444 +2986.295748 +2986.298179 +2986.395881 +2986.398246 +2986.504173 +2986.595981 +2986.600310 +2986.695981 +2986.698345 +2986.796014 +2986.798412 +2986.898312 +2986.900343 +2986.987622 +2986.995847 +2986.998212 +2987.096180 +2987.196047 +2987.300176 +2987.304139 +2987.395980 +2987.398311 +2987.498644 +2987.596180 +2987.598511 +2987.687056 +2987.698278 +2987.701674 +2987.704272 +2987.798444 +2987.800342 +2987.804904 +2987.896013 +2987.900442 +2987.995980 +2987.998444 +2988.087988 +2988.200342 +2988.287588 +2988.296113 +2988.301607 +2988.395913 +2988.398177 +2988.587055 +2988.598643 +2988.798543 +2988.895879 +2988.903172 +2988.996112 +2989.000741 +2989.101839 +2989.295845 +2989.387021 +2989.595812 +2989.795878 +2989.901938 +2992.973597 +2993.049887 +2993.617253 +2994.970964 +2995.733568 +2995.870397 +2995.914853 +2996.084383 +2996.172994 +2996.186881 +2996.200633 +2996.275825 +2996.422944 +2996.445821 +2996.528539 +2996.590443 +2996.637496 +2996.685881 +2996.749118 +2996.834632 +2996.870363 +2996.883450 +2996.894905 +2996.896603 +2996.922145 +2996.943323 +2996.987479 +2997.038861 +2997.102664 +2997.177056 +2997.278621 +2997.333433 +2997.367965 +2997.402997 +2997.515218 +2997.548151 +2997.567166 +2997.617948 +2997.642990 +2997.655977 +2997.669896 +2997.696436 +2997.762903 +2997.793273 +2997.797269 +2997.817948 +2997.830935 +2997.876223 +2997.913719 +2997.930102 +2997.945154 +2997.968364 +2997.979320 +2998.010455 +2998.090941 +2998.227105 +2998.271361 +2998.348317 +2998.439859 +2998.863701 +2998.951047 +2999.211753 +3002.704590 +3003.656537 +3006.178246 +3006.848042 +3007.675847 +3009.885002 +3009.890164 +3010.453433 +3011.165587 +3011.886332 +3012.096089 +3012.885832 +3013.886230 +3015.064884 +3016.142971 +3016.505575 +3016.544836 +3017.379567 +3019.986091 +3020.085891 +3020.086324 +3020.086923 +3020.096047 +3020.098312 +3020.186024 +3020.186590 +3020.186823 +3020.188522 +3020.197346 +3020.200343 +3020.286690 +3020.295248 +3020.297679 +3020.386623 +3020.387422 +3020.397246 +3020.399311 +3020.486623 +3020.586357 +3020.588388 +3020.687589 +3020.697712 +3020.786756 +3020.787156 +3020.798245 +3020.997945 +3021.086756 +3021.087089 +3021.102607 +3021.187522 +3021.198144 +3021.295913 +3021.305404 +3021.398644 +3021.486755 +3021.596046 +3021.688220 +3021.695380 +3021.697844 +3021.700208 +3021.886322 +3021.886755 +3021.895912 +3021.987487 +3022.100441 +3022.198443 +3022.295612 +3022.298243 +3022.398110 +3022.400441 +3022.404603 +3022.587787 +3022.600507 +3022.698742 +3022.895612 +3022.898143 +3022.995978 +3022.998242 +3023.000174 +3023.087553 +3023.195845 +3023.198242 +3023.300407 +3023.395844 +3023.487886 +3023.595778 +3023.598208 +3023.686886 +3023.698342 +3023.702038 +3023.795844 +3023.895844 +3023.898175 +3023.995711 +3024.003370 +3024.095944 +3024.196077 +3024.198474 +3024.295843 +3024.398341 +3024.495843 +3024.500772 +3024.596243 +3024.598607 +3024.695543 +3024.697974 +3024.795943 +3024.798307 +3024.800605 +3024.897808 +3025.227244 +3026.333337 +3027.533569 +3030.430936 +3030.634232 +3030.739294 +3030.954978 +3031.041658 +3031.180485 +3031.250948 +3031.463735 +3031.522210 +3031.610488 +3031.672393 +3031.709755 +3031.760438 +3031.772859 +3031.931667 +3031.983082 +3031.983648 +3032.054644 +3032.103328 +3032.128836 +3032.232565 +3032.286478 +3032.289042 +3032.289309 +3032.327504 +3032.341257 +3032.379319 +3032.395303 +3032.431999 +3032.445819 +3032.461103 +3032.501197 +3032.526505 +3032.609188 +3032.621942 +3032.675222 +3032.690840 +3032.744353 +3032.758406 +3032.786511 +3032.800530 +3032.841955 +3032.853810 +3032.860071 +3032.869661 +3032.904193 +3032.921709 +3032.991406 +3033.030167 +3033.042954 +3033.070726 +3033.088309 +3033.104359 +3033.121109 +3033.129501 +3033.159338 +3033.202495 +3033.215581 +3033.332298 +3033.374922 +3033.433663 +3033.834362 +3034.130865 +3037.036856 +3041.373149 +3042.210511 +3044.072014 +3045.110341 +3045.886165 +3045.897986 +3047.886429 +3049.726454 +3049.886161 +3051.616262 +3052.825352 +3054.885856 +3054.996279 +3055.000208 +3055.087454 +3055.187321 +3055.196745 +3055.395979 +3055.596212 +3055.599009 +3055.888120 +3055.996378 +3055.998909 +3056.001240 +3056.087453 +3056.196478 +3056.296378 +3056.298875 +3056.300940 +3056.387420 +3056.387919 +3056.400706 +3056.496144 +3056.504969 +3056.601339 +3056.798908 +3056.899374 +3057.001472 +3057.196676 +3057.298075 +3057.300139 +3057.396976 +3057.399407 +3057.499307 +3057.598940 +3057.696776 +3058.004368 +3058.096409 +3058.101171 +3058.296808 +3058.302270 +3058.396975 +3058.399705 +3058.496542 +3058.499039 +3058.501570 +3058.602835 +3058.896541 +3058.899006 +3059.002269 +3059.096741 +3059.099105 +3059.101370 +3059.202868 +3059.299238 +3059.599005 +3059.687683 +3059.688182 +3059.699371 +3062.505029 +3062.507960 +3063.387413 +3063.772394 +3064.688877 +3065.463168 +3065.657940 +3065.678586 +3065.712485 +3065.751979 +3066.020810 +3066.267530 +3066.586111 +3066.613583 +3066.635029 +3066.676587 +3066.705225 +3066.815182 +3066.880949 +3066.996234 +3067.066730 +3067.118112 +3067.134129 +3067.168561 +3067.296300 +3067.307089 +3067.406823 +3067.431898 +3067.516213 +3067.543852 +3067.557339 +3067.575121 +3067.706523 +3067.717878 +3067.793136 +3067.830066 +3067.837392 +3067.853076 +3067.859137 +3067.866562 +3067.965064 +3068.054008 +3068.068527 +3068.099296 +3068.120641 +3068.126402 +3068.149546 +3068.162833 +3068.179249 +3068.205723 +3068.248047 +3068.264964 +3068.358470 +3068.538024 +3068.699695 +3069.433094 +3069.537923 +3071.087705 +3075.774746 +3077.416270 +3078.108077 +3078.511274 +3078.721996 +3080.512171 +3080.744338 +3081.816365 +3081.886295 +3081.886728 +3082.886428 +3082.898382 +3084.886426 +3085.441803 +3086.294549 +3088.016392 +3088.872369 +3089.885988 +3089.996510 +3090.099507 +3090.199540 +3090.296044 +3090.598574 +3090.696277 +3090.698907 +3090.701072 +3090.787685 +3090.796310 +3090.798807 +3090.898907 +3090.901072 +3090.987685 +3090.988151 +3091.087651 +3091.296909 +3091.396342 +3091.399073 +3091.499073 +3091.501437 +3091.596509 +3091.598840 +3091.688184 +3091.698840 +3091.796375 +3091.798873 +3091.896542 +3091.901237 +3091.996808 +3092.199006 +3092.298806 +3092.599538 +3092.699538 +3092.705499 +3092.796707 +3092.799271 +3092.803101 +3092.896907 +3092.987816 +3092.999338 +3093.196507 +3093.287583 +3093.288515 +3093.296241 +3093.386750 +3093.496240 +3093.500636 +3093.504432 +3093.596407 +3093.799037 +3094.001435 +3094.088348 +3094.203532 +3094.466836 +3094.588447 +3094.596606 +3094.687615 +3094.699003 +3094.787681 +3094.887548 +3094.887681 +3095.403664 +3096.014020 +3097.829869 +3099.886044 +3100.086211 +3100.388641 +3100.906589 +3101.009087 +3101.084911 +3101.223339 +3101.540089 +3101.554041 +3101.656738 +3101.722606 +3101.808120 +3101.931230 +3101.959535 +3101.976851 +3102.055606 +3102.074221 +3102.083811 +3102.086542 +3102.111816 +3102.127967 +3102.136625 +3102.192469 +3102.204723 +3102.262565 +3102.303391 +3102.305189 +3102.315013 +3102.356771 +3102.372289 +3102.388106 +3102.456704 +3102.469458 +3102.480847 +3102.523071 +3102.582578 +3102.622805 +3102.664097 +3102.721040 +3102.751642 +3102.752342 +3102.798928 +3102.826434 +3102.842485 +3102.869891 +3102.972521 +3102.986840 +3103.000726 +3103.063863 +3103.104922 +3103.164929 +3103.185275 +3103.273087 +3103.776916 +3103.821571 +3104.131062 +3104.321604 +3104.553639 +3112.233718 +3112.914037 +3113.602614 +3116.587593 +3116.886560 +3116.886993 +3116.888125 +3116.892587 +3117.886226 +3117.886892 +3118.286425 +3118.813931 +3118.886258 +3119.135542 +3119.886490 +3119.898578 +3120.095182 +3120.417492 +3120.756919 +3123.416457 +3124.885686 +3124.986785 +3125.087251 +3125.095310 +3125.298673 +3125.396275 +3125.398873 +3125.496175 +3125.588083 +3125.696142 +3125.705432 +3125.796241 +3125.896641 +3125.899172 +3125.996208 +3126.001036 +3126.096274 +3126.098839 +3126.196241 +3126.199538 +3126.296541 +3126.399338 +3126.501369 +3126.596474 +3126.696607 +3126.699104 +3126.796474 +3126.887516 +3126.896374 +3126.987516 +3126.988115 +3127.096806 +3127.196873 +3127.399170 +3127.403466 +3127.496739 +3127.499237 +3127.596839 +3127.599337 +3127.696806 +3127.887681 +3127.899569 +3128.099403 +3128.199203 +3128.202733 +3128.387414 +3128.387814 +3128.498903 +3128.501134 +3128.604630 +3128.796771 +3128.897137 +3128.903165 +3129.196771 +3129.296937 +3129.505096 +3129.903197 +3130.244389 +3134.009986 +3134.461801 +3134.885976 +3134.937724 +3136.352341 +3136.514746 +3136.675884 +3136.759434 +3136.791102 +3136.849477 +3136.983177 +3137.035391 +3137.088371 +3137.101658 +3137.126999 +3137.153273 +3137.232427 +3137.304289 +3137.327932 +3137.342517 +3137.356270 +3137.412314 +3137.441551 +3137.458701 +3137.472653 +3137.539686 +3137.546413 +3137.610615 +3137.614212 +3137.652307 +3137.670922 +3137.710682 +3137.742750 +3137.777948 +3137.791468 +3137.795697 +3137.849443 +3137.863029 +3137.867658 +3137.892100 +3137.904388 +3137.920072 +3137.934757 +3138.094065 +3138.167924 +3138.197661 +3138.226465 +3138.256236 +3138.286139 +3138.345047 +3138.348643 +3138.423268 +3139.665425 +3139.734523 +3139.789801 +3139.876281 +3142.706181 +3144.770482 +3144.921031 +3146.049235 +3148.676838 +3150.413033 +3151.407704 +3151.897514 +3152.105572 +3152.371306 +3153.886490 +3153.894182 +3159.658612 +3159.885585 +3159.896907 +3160.098938 +3160.295707 +3160.387482 +3160.395841 +3160.398505 +3160.401835 +3160.597072 +3160.599437 +3160.696373 +3160.796440 +3160.799037 +3161.096106 +3161.098504 +3161.186749 +3161.196472 +3161.286815 +3161.296239 +3161.398703 +3161.696106 +3161.796871 +3161.799502 +3161.896239 +3161.901001 +3161.996605 +3161.999169 +3162.099136 +3162.201067 +3162.296405 +3162.299235 +3162.496538 +3162.587413 +3162.596571 +3162.687347 +3162.696271 +3162.701000 +3162.787380 +3162.796404 +3162.798968 +3162.903963 +3162.987480 +3162.999334 +3163.096704 +3163.099234 +3163.196770 +3163.204496 +3163.287646 +3163.396603 +3163.404163 +3163.501032 +3163.587679 +3163.596637 +3163.696703 +3163.704429 +3163.796903 +3163.799434 +3163.987945 +3163.996403 +3163.998801 +3164.001098 +3164.087678 +3164.099134 +3164.299666 +3164.303729 +3164.396503 +3164.399100 +3164.487412 +3164.487844 +3164.499000 +3164.587545 +3164.599000 +3164.687345 +3164.703928 +3164.799166 +3164.805027 +3165.224307 +3165.229369 +3167.036293 +3168.124138 +3169.138622 +3170.347079 +3170.712114 +3170.760133 +3171.234824 +3171.285573 +3171.393632 +3171.514311 +3171.594864 +3171.685673 +3171.789535 +3171.791767 +3171.832026 +3171.868789 +3171.896195 +3172.000990 +3172.084074 +3172.132392 +3172.160997 +3172.234224 +3172.258499 +3172.370887 +3172.380977 +3172.422735 +3172.467091 +3172.508982 +3172.522602 +3172.537753 +3172.540850 +3172.565326 +3172.601722 +3172.629062 +3172.670021 +3172.689501 +3172.724133 +3172.751239 +3172.804087 +3172.813577 +3172.944712 +3173.001389 +3173.006750 +3173.030293 +3173.090700 +3173.094562 +3173.119471 +3173.123567 +3173.149907 +3173.169421 +3173.194429 +3173.223633 +3173.254136 +3173.327829 +3173.373250 +3173.403054 +3173.425698 +3173.601322 +3173.640449 +3173.676247 +3173.811445 +3173.926063 +3174.379709 +3174.532656 +3174.587968 +3179.079904 +3188.886555 +3189.091949 +3189.799840 +3189.886254 +3189.896810 +3190.099341 +3190.865807 +3190.916523 +3191.010595 +3191.349722 +3192.216155 +3192.297907 +3192.423115 +3194.428740 +3194.716086 +3194.835899 +3194.885516 +3194.886216 +3194.886415 +3194.896972 +3194.996106 +3195.089379 +3195.097671 +3195.387814 +3195.486781 +3195.487680 +3195.495905 +3195.498703 +3195.596138 +3195.598702 +3195.799202 +3195.904030 +3195.987680 +3195.998569 +3196.099534 +3196.198802 +3196.287513 +3196.298569 +3196.396304 +3196.496470 +3196.598701 +3196.698901 +3196.800766 +3196.998901 +3197.098501 +3197.196103 +3197.200765 +3197.287445 +3197.296237 +3197.387179 +3197.396236 +3197.487578 +3197.500832 +3197.504961 +3197.595970 +3197.600465 +3197.687179 +3197.796103 +3197.896469 +3197.903129 +3197.996469 +3197.998933 +3198.096036 +3198.098600 +3198.100898 +3198.196136 +3198.296369 +3198.298866 +3198.304361 +3198.387244 +3198.487244 +3198.498966 +3198.798666 +3198.996301 +3199.198899 +3199.298799 +3199.398665 +3199.498532 +3199.587210 +3199.596101 +3199.598765 +3199.602694 +3199.796367 +3199.887609 +3202.183478 +3203.005322 +3204.895363 +3205.210215 +3206.232991 +3206.265558 +3206.279877 +3206.327130 +3206.366557 +3206.432991 +3206.465325 +3206.492032 +3206.530793 +3206.777179 +3206.802820 +3206.826364 +3206.851638 +3206.915108 +3206.936753 +3206.959031 +3206.984672 +3206.996660 +3207.118638 +3207.192264 +3207.219137 +3207.233623 +3207.234155 +3207.235421 +3207.257532 +3207.295993 +3207.323366 +3207.336286 +3207.471151 +3207.483306 +3207.518005 +3207.597825 +3207.621801 +3207.659763 +3207.678211 +3207.705151 +3207.718271 +3207.761694 +3207.768387 +3207.819003 +3207.827195 +3207.860728 +3207.874681 +3207.879776 +3207.933455 +3207.948773 +3207.955467 +3207.996958 +3208.069985 +3208.087468 +3208.115806 +3208.153602 +3208.164491 +3208.246142 +3208.303252 +3208.317604 +3208.515506 +3208.527794 +3209.041380 +3209.140747 +3218.224288 +3218.283661 +3218.989155 +3219.885292 +3219.885758 +3220.063280 +3221.077765 +3221.891517 +3222.776098 +3222.835538 +3222.885688 +3222.886387 +3222.886554 +3222.890650 +3222.896810 +3223.885621 +3223.885954 +3223.896277 +3225.077794 +3225.281989 +3227.400169 +3227.445757 +3227.488847 +3227.535034 +3227.854881 +3228.473328 +3228.660707 +3229.565568 +3229.896837 +3229.986347 +3229.996570 +3230.086880 +3230.087712 +3230.096603 +3230.187113 +3230.194905 +3230.199167 +3230.299467 +3230.303829 +3230.399633 +3230.495171 +3230.595471 +3230.597735 +3230.697868 +3230.700099 +3230.795937 +3230.798234 +3230.801498 +3230.895670 +3230.898001 +3230.902663 +3230.995936 +3230.998301 +3231.098234 +3231.195403 +3231.197668 +3231.199766 +3231.300065 +3231.304627 +3231.386779 +3231.386978 +3231.395936 +3231.498167 +3231.501730 +3231.587378 +3231.595703 +3231.787344 +3231.788710 +3231.995969 +3231.998400 +3232.096035 +3232.098366 +3232.104227 +3232.195935 +3232.397866 +3232.487477 +3232.495702 +3232.586844 +3232.603361 +3232.700963 +3232.796101 +3232.798565 +3233.003327 +3233.095868 +3233.100363 +3233.198199 +3233.200396 +3233.498265 +3233.501728 +3233.586277 +3233.598365 +3233.600662 +3233.695701 +3233.995767 +3233.998364 +3234.101528 +3234.204192 +3234.286809 +3234.486875 +3234.598297 +3234.695766 +3234.698197 +3234.700428 +3234.787008 +3234.887241 +3239.422235 +3240.314675 +3240.485870 +3240.985204 +3241.109113 +3241.358097 +3241.494261 +3241.543911 +3241.719635 +3241.895792 +3241.908613 +3241.948873 +3241.983538 +3241.997424 +3242.021766 +3242.050271 +3242.129758 +3242.171217 +3242.211243 +3242.382239 +3242.397290 +3242.450670 +3242.464290 +3242.479175 +3242.613108 +3242.618735 +3242.641046 +3242.682072 +3242.747740 +3242.871116 +3242.889364 +3242.899088 +3242.998322 +3243.060993 +3243.153134 +3243.192028 +3243.221365 +3243.294093 +3243.378475 +3243.691828 +3243.832987 +3244.104015 +3244.372846 +3244.647438 +3249.548432 +3251.160851 +3252.714829 +3254.248361 +3254.885223 +3255.886388 +3256.368805 +3256.464542 +3256.886054 +3256.893846 +3256.897642 +3257.886286 +3258.144727 +3258.817054 +3258.885552 +3258.887350 +3259.885884 +3259.896873 +3260.122914 +3260.460409 +3263.079587 +3263.770496 +3264.551747 +3264.985579 +3264.986379 +3264.996502 +3265.097068 +3265.187977 +3265.295469 +3265.297933 +3265.397933 +3265.586844 +3265.595702 +3265.598233 +3265.695136 +3265.699998 +3265.786911 +3265.886644 +3265.895502 +3265.986344 +3265.994902 +3266.086744 +3266.095169 +3266.195635 +3266.198132 +3266.295635 +3266.398365 +3266.486810 +3266.603726 +3266.686743 +3266.688142 +3266.696034 +3266.698398 +3266.795834 +3267.086743 +3267.187076 +3267.286876 +3267.295767 +3267.300762 +3267.303792 +3267.395867 +3267.400595 +3267.495634 +3267.500595 +3267.786709 +3267.886709 +3267.895866 +3267.998497 +3268.095933 +3268.186842 +3268.286808 +3268.386808 +3268.394434 +3268.395766 +3268.498163 +3268.500494 +3268.586741 +3268.597764 +3268.599928 +3268.686775 +3268.786741 +3268.886841 +3268.895899 +3268.986708 +3269.196065 +3269.198596 +3269.296364 +3269.301692 +3269.396231 +3269.398595 +3269.486641 +3269.487107 +3269.498129 +3269.598196 +3269.904322 +3272.529994 +3274.885203 +3274.890065 +3275.361160 +3275.519835 +3275.560427 +3275.563058 +3275.670617 +3275.883970 +3275.996091 +3276.211942 +3276.212242 +3276.250004 +3276.588465 +3276.612841 +3276.793060 +3276.802950 +3276.828625 +3276.960892 +3277.026560 +3277.079840 +3277.131721 +3277.159760 +3277.187299 +3277.213206 +3277.334818 +3277.367185 +3277.403682 +3277.417202 +3277.460992 +3277.528890 +3277.544741 +3277.569117 +3277.585833 +3277.601651 +3277.616070 +3277.630455 +3277.654764 +3277.711974 +3277.799320 +3277.822929 +3277.826859 +3277.854764 +3277.894558 +3277.956329 +3277.971447 +3278.058360 +3278.157827 +3278.172846 +3278.206545 +3278.347371 +3278.388297 +3278.506645 +3278.539079 +3278.565619 +3279.440011 +3279.532651 +3279.633916 +3279.730220 +3286.186491 +3287.804871 +3289.890649 +3290.885953 +3290.897242 +3291.781457 +3293.886217 +3294.886282 +3299.522108 +3299.563900 +3299.885378 +3299.986477 +3299.993603 +3299.996234 +3300.097066 +3300.398032 +3300.595933 +3300.598431 +3300.786876 +3300.795700 +3300.798231 +3300.800229 +3300.995467 +3301.098997 +3301.196366 +3301.294368 +3301.298797 +3301.395833 +3301.398364 +3301.496066 +3301.498530 +3301.686908 +3301.692536 +3301.696265 +3301.698730 +3301.702393 +3301.786808 +3301.795799 +3301.798396 +3301.986475 +3301.998596 +3302.098529 +3302.198563 +3302.202459 +3302.296065 +3302.298562 +3302.300594 +3302.398596 +3302.698862 +3302.796131 +3302.798695 +3302.898795 +3302.996031 +3303.286940 +3303.287606 +3303.298295 +3303.302624 +3303.396530 +3303.403956 +3303.498228 +3303.596064 +3303.686939 +3303.896263 +3304.186972 +3304.286905 +3304.486872 +3304.786439 +3305.437853 +3305.440351 +3307.041715 +3307.045777 +3308.349605 +3309.885268 +3309.885734 +3309.895691 +3309.957496 +3310.395857 +3310.767985 +3310.897322 +3311.354065 +3311.412373 +3311.439046 +3311.527391 +3311.538680 +3311.652399 +3311.789928 +3311.867650 +3311.922496 +3311.945839 +3311.989662 +3312.053931 +3312.092825 +3312.151866 +3312.152032 +3312.162122 +3312.213737 +3312.218466 +3312.220064 +3312.255496 +3312.336581 +3312.350334 +3312.398919 +3312.429355 +3312.443907 +3312.507144 +3312.509108 +3312.593257 +3312.607610 +3312.645039 +3312.673677 +3312.729721 +3312.752731 +3312.759225 +3312.784466 +3312.824892 +3312.829554 +3312.852065 +3312.867749 +3312.879138 +3312.885698 +3312.920097 +3312.949301 +3313.002315 +3313.073410 +3313.129288 +3313.216267 +3313.258591 +3313.289394 +3313.316467 +3313.375441 +3313.421162 +3313.441875 +3313.635115 +3313.693856 +3313.847102 +3313.994455 +3314.090159 +3314.359256 +3314.554561 +3314.597784 +3314.632549 +3314.731484 +3314.763918 +3314.780102 +3315.797883 +3316.405608 +3323.434505 +3324.222417 +3324.742962 +3324.754684 +3324.886186 +3324.898074 +3325.452452 +3325.461543 +3326.191745 +3327.121748 +3327.887348 +3327.892643 +3328.131970 +3329.062006 +3330.907092 +3332.301596 +3334.985976 +3335.098530 +3335.198230 +3335.487007 +3335.498463 +3335.598562 +3335.686208 +3335.686774 +3335.698229 +3335.787107 +3335.798596 +3335.886674 +3335.900360 +3335.998562 +3336.096031 +3336.296031 +3336.298495 +3336.300660 +3336.387106 +3336.487406 +3336.496397 +3336.498861 +3336.587606 +3336.596197 +3336.796363 +3336.887206 +3336.887472 +3336.987073 +3337.196596 +3337.496429 +3337.498927 +3337.587671 +3337.696562 +3337.799193 +3337.900958 +3337.996729 +3338.103921 +3338.196462 +3338.299159 +3338.396295 +3338.496595 +3338.499126 +3338.587004 +3338.587737 +3338.798926 +3339.196528 +3339.487203 +3339.502921 +3339.598425 +3339.687336 +3339.696361 +3339.702987 +3339.896560 +3341.803085 +3344.885733 +3344.902749 +3345.314004 +3345.740743 +3345.855196 +3346.056627 +3346.083500 +3346.122295 +3346.217866 +3346.230820 +3346.486164 +3346.526557 +3346.652398 +3346.678771 +3346.727389 +3346.867882 +3346.890026 +3346.916533 +3347.001248 +3347.183632 +3347.226123 +3347.250366 +3347.322560 +3347.393755 +3347.512770 +3347.588094 +3347.637678 +3347.658058 +3347.789859 +3347.977105 +3348.023026 +3348.051231 +3348.096086 +3348.147368 +3348.329785 +3348.460654 +3348.515766 +3348.751063 +3348.814467 +3348.965549 +3349.009105 +3349.374972 +3349.544036 +3349.609737 +3349.747866 +3356.141998 +3359.115489 +3359.478925 +3359.885984 +3359.886517 +3360.145225 +3360.147922 +3360.798770 +3361.181521 +3362.174027 +3362.177257 +3362.886381 +3362.886814 +3362.897969 +3363.886047 +3363.886446 +3364.211254 +3364.886612 +3365.154577 +3365.650913 +3366.126571 +3367.616346 +3369.885741 +3369.886340 +3369.990902 +3370.499293 +3370.599193 +3370.687738 +3370.688338 +3370.899326 +3370.987671 +3370.988337 +3371.087638 +3371.288270 +3371.299293 +3371.387538 +3371.487771 +3371.687837 +3371.688270 +3371.887770 +3371.899891 +3371.987570 +3372.087837 +3372.088336 +3372.187437 +3372.287670 +3372.387870 +3372.388369 +3372.488502 +3372.704020 +3372.787869 +3373.388335 +3373.487968 +3373.688101 +3373.788135 +3373.988035 +3374.487934 +3374.587668 +3379.886797 +3380.225557 +3380.322194 +3380.695853 +3380.719796 +3380.861887 +3380.954827 +3381.066482 +3381.116932 +3381.326922 +3381.379069 +3381.425723 +3381.481733 +3381.545137 +3381.624457 +3381.663984 +3381.767581 +3381.862153 +3381.977171 +3382.024024 +3382.039142 +3382.111170 +3382.161220 +3382.203211 +3382.225622 +3382.306175 +3382.310371 +3382.335312 +3382.349798 +3382.354393 +3382.362052 +3382.391056 +3382.422225 +3382.438342 +3382.617163 +3382.715398 +3382.782032 +3382.830017 +3382.964749 +3383.006973 +3383.016430 +3383.052827 +3383.067180 +3383.072408 +3383.111802 +3383.126121 +3383.154159 +3383.172607 +3383.198948 +3383.203843 +3383.302844 +3383.349597 +3383.381665 +3383.507306 +3383.555557 +3383.771142 +3384.022956 +3384.239306 +3384.339806 +3384.340172 +3384.382696 +3384.484861 +3384.600445 +3391.106499 +3397.887711 +3398.887377 +3398.887677 +3398.898766 +3399.352212 +3399.887642 +3401.384611 +3404.756069 +3404.887105 +3404.987804 +3404.989202 +3405.087970 +3405.098227 +3405.101856 +3405.198693 +3405.299192 +3405.396661 +3405.601057 +3405.696961 +3405.788935 +3405.799125 +3405.897193 +3406.088202 +3406.097060 +3406.099458 +3406.188169 +3406.199524 +3406.299957 +3406.499590 +3406.596693 +3406.601921 +3406.688168 +3406.796826 +3406.888168 +3406.890000 +3406.988168 +3406.997625 +3407.099823 +3407.188168 +3407.199556 +3407.299456 +3407.388634 +3407.397392 +3407.399823 +3407.488367 +3407.588201 +3407.688201 +3407.697025 +3407.797491 +3407.888101 +3407.988200 +3407.996958 +3408.088134 +3408.088367 +3408.100088 +3408.199622 +3408.288200 +3408.299356 +3408.388133 +3408.388366 +3408.399322 +3408.401720 +3408.588166 +3408.689099 +3408.696958 +3408.801753 +3408.889798 +3408.896891 +3408.899555 +3408.997257 +3409.088432 +3409.097124 +3409.188199 +3409.297423 +3409.399954 +3409.497256 +3409.499821 +3409.588165 +3409.597456 +3409.599920 +3409.688398 +3409.697123 +3409.699621 +3409.896923 +3412.632851 +3414.979735 +3414.988893 +3415.059888 +3415.199948 +3415.531150 +3415.810137 +3416.136910 +3416.320859 +3416.561285 +3416.571209 +3416.624389 +3416.665414 +3416.781798 +3416.794885 +3416.861385 +3416.893420 +3416.895384 +3416.925354 +3416.960885 +3417.015164 +3417.135744 +3417.180466 +3417.234145 +3417.339340 +3417.380166 +3417.393985 +3417.431414 +3417.447765 +3417.461185 +3417.572240 +3417.586426 +3417.614265 +3417.697881 +3417.768410 +3417.843302 +3417.896749 +3417.910635 +3417.928450 +3417.954158 +3417.958587 +3418.025919 +3418.028916 +3418.039173 +3418.055023 +3418.085560 +3418.168876 +3418.226885 +3418.241237 +3418.261650 +3418.300145 +3418.315130 +3418.334444 +3418.358453 +3418.368277 +3418.373305 +3418.416795 +3418.436408 +3418.479598 +3418.562582 +3418.578633 +3418.596981 +3418.667244 +3418.726718 +3418.728816 +3418.769109 +3418.799811 +3418.857520 +3418.917660 +3418.923820 +3419.038439 +3419.104040 +3419.167710 +3419.434975 +3419.492018 +3419.525052 +3419.555755 +3419.865012 +3422.866873 +3428.352582 +3430.224542 +3431.886212 +3431.886778 +3431.898366 +3432.072559 +3432.095203 +3432.886810 +3432.891672 +3433.098631 +3434.066163 +3434.188574 +3434.282680 +3434.886708 +3436.114180 +3438.381477 +3439.885438 +3439.889034 +3439.986770 +3440.086670 +3440.089334 +3440.094595 +3440.101888 +3440.195261 +3440.295860 +3440.298358 +3440.398391 +3440.498657 +3440.604818 +3440.687102 +3440.687468 +3440.698258 +3440.700455 +3440.898590 +3441.088500 +3441.188500 +3441.200488 +3441.287601 +3441.387235 +3441.395793 +3441.405416 +3441.595992 +3441.703918 +3441.796059 +3441.798623 +3441.987101 +3442.095958 +3442.105349 +3442.287100 +3442.298123 +3442.300121 +3442.487067 +3442.487566 +3442.500387 +3442.596424 +3442.598722 +3442.800986 +3442.900486 +3442.998755 +3443.087299 +3443.087766 +3443.096057 +3443.395824 +3443.400553 +3443.498721 +3443.701018 +3443.798621 +3443.994558 +3443.996156 +3443.998554 +3444.002117 +3444.087065 +3444.195690 +3444.200086 +3444.387065 +3444.396156 +3444.503682 +3444.596322 +3444.602882 +3444.686532 +3444.886998 +3447.828820 +3447.986429 +3448.091657 +3448.295519 +3448.456125 +3449.001746 +3449.885195 +3449.897283 +3449.956423 +3450.140905 +3450.427052 +3450.540872 +3450.594451 +3450.791521 +3450.845700 +3450.901677 +3450.913332 +3451.077168 +3451.093519 +3451.153758 +3451.398247 +3451.518593 +3451.566478 +3451.597914 +3451.648796 +3451.670907 +3451.708170 +3451.719059 +3451.757953 +3451.771473 +3451.784593 +3451.835276 +3451.883927 +3451.915662 +3451.924720 +3451.935775 +3452.003841 +3452.019059 +3452.033711 +3452.109901 +3452.123920 +3452.270107 +3452.326018 +3452.331446 +3452.431546 +3452.445499 +3452.494416 +3452.577100 +3452.632411 +3452.644133 +3452.683494 +3452.705638 +3452.745565 +3452.758052 +3452.828482 +3452.878365 +3452.946630 +3453.129381 +3453.139404 +3453.621621 +3453.663879 +3453.867309 +3454.064644 +3454.066110 +3460.993642 +3461.643458 +3461.702998 +; +0.036763 +0.081685 +0.122011 +0.790875 +0.834032 +0.852114 +0.874658 +0.920012 +0.933532 +1.145154 +1.566399 +1.576156 +1.595936 +1.630668 +1.705193 +2.829401 +2.932564 +2.994236 +3.061868 +3.257806 +3.871025 +3.908021 +3.911418 +3.966696 +4.020908 +4.050179 +4.064431 +4.745317 +4.771457 +4.861400 +4.891770 +4.910784 +4.964297 +5.953307 +6.177683 +6.698561 +6.708451 +6.801458 +6.857103 +7.404821 +7.455970 +8.767790 +8.781177 +8.801157 +8.813644 +8.951506 +8.960930 +8.992565 +9.007084 +9.062262 +9.200657 +9.236188 +10.242980 +10.248075 +10.254369 +10.272351 +10.380975 +10.403053 +10.426297 +10.437519 +10.506217 +10.588301 +10.737385 +11.761493 +13.540246 +14.509576 +14.518534 +14.573878 +15.060291 +15.125226 +16.036847 +16.046637 +16.067650 +16.189794 +16.746237 +16.804112 +17.454861 +17.602780 +18.103345 +18.118796 +18.161787 +19.140474 +19.834179 +20.648731 +20.685261 +22.084660 +23.706570 +23.757219 +23.777266 +23.988820 +25.136172 +27.426213 +28.452219 +28.520051 +30.059277 +30.263240 +31.975393 +32.128140 +33.267732 +33.279387 +33.284216 +33.375991 +33.446453 +33.471095 +33.472627 +33.664868 +34.713252 +34.741291 +34.755443 +34.766698 +34.777754 +34.825639 +34.868563 +36.829201 +37.750678 +38.229266 +38.306955 +38.441753 +39.448412 +40.545647 +41.517940 +41.988836 +43.670186 +47.182737 +48.314837 +48.474044 +48.528223 +50.996452 +51.106609 +51.658490 +52.203344 +53.956390 +54.019993 +54.101944 +54.203476 +56.690653 +56.691385 +58.659249 +58.749025 +58.870737 +59.575132 +60.021818 +60.031841 +60.169237 +61.142629 +61.206099 +61.858613 +61.902103 +62.758712 +62.777992 +62.778725 +62.822415 +62.863640 +64.098704 +64.193809 +65.556012 +66.798634 +66.807126 +67.054179 +67.160739 +67.649882 +67.677355 +67.698034 +69.042488 +69.264932 +69.745918 +70.091538 +70.535361 +70.539523 +70.568927 +70.768894 +70.781814 +71.098663 +71.919009 +72.167693 +72.996763 +73.786639 +74.410681 +74.431960 +74.533725 +75.258200 +75.561763 +75.615675 +75.699391 +75.873051 +75.946910 +76.000657 +76.878811 +76.903320 +77.086570 +77.185038 +77.482939 +77.540948 +78.489965 +78.578110 +78.646441 +78.790864 +78.825029 +78.875246 +78.882971 +79.855964 +79.862191 +79.868818 +79.877742 +79.903683 +79.920866 +79.958162 +80.149870 +81.246073 +81.252533 +82.892158 +84.081301 +84.228021 +84.472077 +86.300446 +87.802843 +88.111633 +88.201444 +88.244401 +88.278233 +88.304574 +88.322156 +88.336275 +88.358919 +88.394017 +88.803541 +88.838672 +88.877500 +88.999312 +89.002009 +89.069341 +89.305006 +90.722120 +90.779396 +92.105702 +93.194412 +93.254186 +93.395644 +95.011227 +95.022016 +95.023182 +95.157814 +95.203501 +96.701502 +96.719084 +96.788781 +96.789747 +96.915987 +96.951019 +98.382819 +98.444257 +98.503664 +100.833765 +101.065467 +102.290407 +102.574623 +105.542019 +105.567094 +106.728531 +106.737988 +107.265161 +107.571954 +109.415342 +112.996657 +114.807944 +116.568515 +117.055061 +117.648833 +117.666482 +118.618529 +118.752096 +118.764417 +119.410803 +119.471875 +119.492388 +119.508605 +119.546234 +119.562551 +119.583364 +119.587626 +120.987325 +121.013765 +121.025853 +121.103875 +121.161384 +121.220491 +121.503408 +121.517361 +121.565180 +124.036573 +124.185523 +124.667241 +124.728447 +125.405869 +125.601972 +125.606235 +129.057413 +131.125510 +131.125943 +131.185250 +131.806428 +132.574060 +132.605062 +132.611323 +133.386880 +133.457176 +134.461937 +135.929534 +137.445983 +137.474455 +137.596799 +138.354673 +138.467694 +138.664130 +139.967193 +139.971821 +140.001925 +140.019107 +140.097362 +140.110050 +140.179613 +140.212680 +140.274119 +142.104353 +143.826729 +143.852637 +144.714208 +144.743412 +144.761394 +145.076412 +145.946074 +145.972581 +148.349502 +148.358526 +148.369216 +148.390727 +148.409042 +148.432652 +148.487897 +148.621463 +149.244439 +149.282668 +150.038977 +150.111805 +150.167049 +150.350899 +151.405743 +151.585263 +151.599282 +152.404876 +152.426321 +152.431582 +152.443970 +152.492621 +152.556691 +152.669145 +152.685928 +153.969743 +162.468935 +165.318316 +167.072627 +168.488110 +176.392764 +181.002483 +184.278937 +186.178335 +190.603805 +190.611165 +190.827215 +191.621953 +191.658749 +193.903502 +205.236092 +205.590037 +205.617543 +206.076417 +206.100060 +207.838853 +210.190366 +210.986203 +211.039016 +211.048673 +211.766588 +211.871250 +211.879475 +211.898822 +211.971649 +214.922396 +214.937347 +214.938047 +214.953165 +215.720697 +215.825558 +215.898452 +215.941476 +216.778005 +218.781233 +220.298481 +221.708736 +223.085491 +224.465576 +224.539469 +226.105868 +226.404236 +227.432107 +227.488517 +227.498407 +227.549656 +227.601670 +227.631674 +227.776429 +228.205433 +229.053950 +229.772664 +230.042227 +232.186847 +232.327606 +232.344922 +232.357377 +232.381319 +232.410290 +232.446920 +232.924309 +232.977256 +232.999001 +234.018081 +234.079952 +235.211886 +235.251346 +235.371626 +235.394403 +238.770957 +238.771390 +238.922671 +239.144649 +239.970722 +240.062597 +241.694064 +241.765726 +241.784440 +241.990068 +242.659165 +243.071785 +243.083273 +243.672017 +244.586968 +244.626129 +244.832622 +244.905949 +246.171582 +246.234985 +246.282404 +246.337882 +247.795190 +247.810541 +248.004780 +248.073212 +248.556761 +249.008975 +249.043873 +249.430220 +249.475541 +249.585132 +250.208041 +250.225457 +250.250066 +250.263186 +250.311704 +250.686463 +250.724025 +251.264018 +251.802912 +252.941772 +252.999547 +253.386427 +253.794218 +253.808770 +253.870076 +253.876936 +253.928617 +253.958953 +253.962184 +253.999446 +254.032913 +254.070508 +254.136775 +255.089988 +255.449528 +255.514563 +255.541702 +255.567377 +255.598512 +256.099311 +256.226950 +256.239804 +256.923419 +256.950992 +256.984492 +256.986190 +257.013063 +257.114395 +257.282393 +257.375434 +257.461647 +258.054487 +258.126149 +258.246595 +258.261680 +258.298443 +258.367074 +260.224049 +260.408264 +260.446426 +260.459546 +260.601105 +261.102569 +261.245526 +261.283821 +261.327844 +261.363475 +261.387318 +262.139665 +262.185019 +262.227510 +262.261110 +263.093843 +263.102567 +263.142760 +263.170866 +263.238232 +263.261442 +263.302101 +263.381888 +263.399404 +263.499936 +263.528841 +263.546490 +263.589114 +264.634867 +264.657278 +264.673928 +264.798170 +264.917351 +265.158876 +268.580218 +268.649115 +269.783380 +269.857672 +270.710818 +272.358236 +274.742982 +274.858999 +274.881244 +274.912845 +275.004853 +275.024633 +275.039818 +275.235655 +275.262795 +275.418639 +275.789834 +275.813743 +275.860030 +276.192231 +276.233390 +277.362127 +277.449406 +277.454767 +277.495227 +277.647941 +277.678577 +277.760794 +277.786735 +278.274680 +278.296658 +278.343145 +278.694260 +278.704916 +278.715539 +278.724297 +278.736618 +279.411276 +280.960791 +282.087597 +282.242342 +282.762221 +283.017899 +283.650332 +283.738711 +283.792590 +284.993688 +285.010271 +285.084563 +285.152395 +285.209605 +285.283964 +285.350664 +286.719460 +286.808038 +288.915295 +289.527616 +290.055354 +290.739569 +290.815493 +292.837270 +293.110396 +293.457582 +293.484888 +293.559413 +293.635903 +293.654884 +293.655850 +293.897708 +294.059912 +294.077894 +294.094478 +294.946658 +295.470534 +295.489848 +295.702002 +295.849887 +295.903600 +296.303500 +297.501334 +297.668667 +298.956478 +304.365463 +306.982710 +307.020272 +308.418939 +309.106817 +310.083273 +310.192763 +311.411011 +314.477241 +314.658726 +314.660191 +314.661324 +314.933984 +315.174743 +315.906877 +315.997952 +316.163587 +317.300682 +317.567281 +317.567947 +317.574807 +318.638875 +318.649465 +318.711370 +318.770943 +318.811503 +318.894786 +320.143569 +320.200213 +320.254159 +320.461518 +320.523889 +320.622157 +320.642903 +320.659986 +321.389822 +321.556954 +322.603207 +322.982527 +323.786922 +323.813063 +323.872037 +324.016193 +324.119722 +328.272732 +328.653051 +329.128375 +329.240097 +329.267403 +329.345558 +329.357246 +329.417752 +329.484586 +330.516186 +330.623146 +330.718317 +331.216285 +332.647353 +332.804263 +333.214219 +333.217882 +333.324076 +333.824008 +334.211354 +334.318314 +334.349582 +334.479819 +335.026105 +336.034363 +336.279084 +336.783246 +338.401959 +338.767760 +340.467059 +340.496862 +340.600459 +341.631593 +341.662495 +342.609214 +342.905784 +342.947243 +345.260028 +346.710775 +346.776809 +347.358327 +348.752132 +348.894756 +348.968083 +349.031486 +350.253762 +351.263285 +351.807540 +353.047099 +354.239706 +354.273239 +354.610301 +355.380597 +355.542535 +355.630946 +356.787922 +356.825717 +356.866976 +357.576499 +358.711463 +359.208132 +359.374765 +359.512894 +360.707465 +360.832207 +360.870568 +361.238233 +361.263908 +363.082987 +363.210426 +363.903599 +365.114587 +365.201799 +366.627272 +368.702928 +369.901728 +370.246350 +371.261034 +371.590338 +372.721072 +372.726500 +373.360765 +374.772452 +374.822835 +375.529261 +376.884438 +377.356033 +377.821334 +377.845476 +377.866988 +379.197023 +380.461358 +382.042741 +383.262221 +386.574272 +387.578667 +392.459481 +393.322983 +394.536102 +401.502995 +401.586412 +401.904094 +402.181682 +403.503293 +410.362693 +415.231153 +425.998508 +435.801595 +439.384875 +439.460333 +439.461632 +440.648444 +440.649609 +440.711114 +440.719506 +441.125500 +441.125932 +441.217374 +442.350007 +442.362794 +442.516341 +443.635387 +445.069452 +445.592262 +450.999116 +451.431017 +451.709472 +451.777537 +455.238872 +455.880996 +456.745464 +456.760216 +456.829380 +457.703572 +458.525282 +459.174499 +459.195545 +460.000739 +460.037036 +460.062577 +460.097941 +460.159580 +460.216889 +461.687484 +462.400636 +462.789414 +463.272364 +463.993076 +464.003299 +465.231936 +467.817381 +468.329302 +468.364067 +468.457640 +468.893470 +468.976354 +468.976854 +469.482214 +469.766996 +469.878518 +470.123606 +470.124305 +470.568094 +470.588674 +470.606656 +470.903392 +471.670624 +471.855172 +472.722438 +472.738455 +472.976716 +472.999327 +473.026966 +473.044915 +473.062664 +473.073353 +475.854169 +475.873717 +475.898325 +475.977779 +476.040883 +476.129461 +477.230725 +477.890032 +478.060561 +478.230524 +478.337284 +478.418503 +478.459495 +478.867753 +478.892695 +479.172015 +479.245075 +479.748138 +480.048338 +480.077542 +482.114037 +484.217797 +484.678370 +486.956190 +487.264981 +487.589456 +487.653025 +488.121124 +488.779997 +489.034309 +490.360016 +490.384125 +492.369038 +492.405868 +492.633373 +493.933439 +495.397473 +495.462508 +495.722115 +496.959709 +497.002234 +497.026476 +497.602033 +498.064936 +498.073395 +498.117550 +498.145955 +498.168100 +498.290677 +498.319282 +498.340028 +498.347887 +498.386281 +498.432802 +499.317383 +499.328705 +499.352914 +499.396171 +499.458508 +499.482418 +499.502664 +500.482383 +501.462802 +502.852378 +502.922374 +503.655740 +504.413581 +505.091370 +506.133293 +506.404988 +506.861231 +506.921837 +506.951608 +506.970222 +507.105220 +507.124734 +507.796295 +507.824800 +507.902955 +507.966991 +508.347444 +508.593098 +508.629861 +508.648176 +508.700723 +509.662894 +509.700389 +510.541048 +510.607581 +510.651804 +510.673049 +511.277511 +512.037217 +512.106514 +512.320733 +512.366554 +514.280238 +515.309042 +515.329987 +517.496152 +517.537977 +517.579735 +517.599849 +517.644571 +517.694287 +517.703978 +517.712203 +517.725989 +517.732449 +517.874307 +518.370777 +518.381999 +518.394420 +518.410637 +518.437177 +518.438642 +518.478802 +518.482831 +518.540374 +518.573574 +519.710236 +519.727053 +519.750163 +519.770875 +519.945434 +520.006173 +520.812333 +520.919059 +521.980996 +522.020890 +522.177933 +523.140303 +523.147795 +523.156886 +523.188787 +523.196879 +523.222654 +524.933974 +524.981160 +525.663410 +525.709131 +526.100806 +526.406333 +527.906998 +528.011660 +530.999269 +532.226907 +532.301865 +532.321579 +536.980016 +536.990206 +537.154341 +537.176319 +537.211284 +538.045782 +538.058736 +538.062665 +538.160401 +539.382644 +539.392334 +539.592501 +539.609817 +539.680513 +539.734792 +539.786373 +539.808684 +540.401757 +541.486405 +541.559865 +541.588436 +541.621769 +541.638220 +541.697926 +541.748209 +542.003188 +542.104153 +543.264725 +543.273383 +543.280209 +544.605316 +544.714374 +544.840314 +544.851203 +545.928392 +545.938482 +545.938781 +546.213406 +547.585733 +547.640778 +550.580269 +550.594821 +552.416098 +554.050195 +555.458685 +557.115893 +558.420387 +558.443298 +558.642565 +558.832675 +558.875798 +558.909165 +560.004069 +560.061678 +560.115357 +560.297075 +560.330342 +560.451820 +560.522783 +560.546892 +561.314057 +561.396175 +562.154716 +563.975094 +564.047621 +565.279688 +565.292175 +566.682051 +566.839959 +567.453179 +570.567328 +570.753342 +570.788740 +571.763065 +571.805555 +572.244583 +572.764296 +573.243649 +573.479646 +573.541351 +574.253338 +574.315843 +574.331560 +574.500491 +575.731392 +575.928861 +578.937050 +579.569683 +580.487065 +580.585567 +580.712440 +581.980936 +582.112471 +582.680203 +584.252995 +584.274341 +584.683098 +585.616431 +585.626387 +585.633980 +585.710437 +585.718595 +585.771875 +585.774539 +585.852261 +585.913400 +585.967679 +586.288991 +586.326253 +586.326986 +586.333513 +586.349230 +586.414931 +587.257821 +587.452826 +587.508337 +587.637974 +589.047929 +589.379530 +589.460716 +589.467909 +590.296146 +590.598777 +590.826815 +592.722118 +592.918954 +593.054818 +595.482721 +595.507396 +597.228307 +598.826641 +600.442956 +601.001663 +601.041757 +601.104294 +601.331733 +601.344087 +601.418080 +601.581316 +601.601629 +601.767930 +601.809921 +601.915282 +602.820476 +604.953374 +604.979615 +606.166027 +606.637156 +607.598760 +607.752972 +607.813212 +607.836022 +607.948110 +607.984807 +608.589435 +608.735122 +608.815142 +608.858665 +609.329028 +609.341848 +609.446510 +612.037783 +612.247606 +612.341745 +612.424729 +612.459194 +612.538748 +612.552834 +612.631888 +613.598554 +613.698953 +613.805147 +617.792289 +618.879568 +619.173873 +620.178934 +621.552459 +621.571373 +622.500110 +622.542534 +622.639570 +622.669207 +622.792684 +622.810499 +624.077065 +624.921420 +624.954620 +624.996178 +625.140134 +625.991948 +628.519851 +628.595742 +628.669168 +628.803167 +628.918119 +628.928742 +628.956247 +629.952617 +629.967002 +629.984052 +629.996007 +630.014089 +630.074761 +630.157978 +631.069366 +631.136931 +631.242259 +632.568032 +633.493539 +636.792736 +636.819343 +637.029699 +637.137258 +637.257072 +638.030597 +638.361433 +640.803622 +641.587004 +642.085305 +642.142814 +642.198559 +642.271519 +643.035654 +643.084472 +643.129294 +643.130293 +643.228861 +643.231058 +643.328361 +643.329993 +643.330692 +643.429626 +643.529959 +643.530658 +643.730359 +643.730558 +643.931557 +643.931790 +643.932456 +644.032023 +644.332189 +644.431057 +644.569918 +644.629758 +644.631523 +644.731190 +644.731756 +645.131156 +645.131656 +645.132122 +645.331090 +645.332621 +645.333088 +645.432088 +645.532455 +645.632554 +645.633320 +645.732388 +645.931122 +645.931422 +646.330123 +646.429956 +646.531122 +646.532487 +646.633286 +646.932220 +646.932686 +647.033485 +647.133485 +647.232520 +647.233918 +647.332253 +647.500918 +647.528723 +647.629522 +647.832519 +648.033085 +649.086664 +649.380936 +649.384266 +649.384732 +649.489427 +649.585864 +649.703047 +649.753762 +650.412137 +651.627687 +651.677304 +651.694753 +651.726121 +651.826488 +651.852961 +651.929818 +653.042537 +653.058554 +653.069577 +653.070309 +653.103243 +653.126253 +653.138874 +653.166147 +653.179933 +653.206040 +653.252061 +653.370775 +653.502410 +653.549896 +653.565347 +653.583096 +653.617528 +653.646832 +653.691954 +653.716196 +653.873039 +653.874071 +653.976802 +654.047398 +654.074970 +654.119492 +654.120292 +654.205506 +654.280931 +654.298946 +654.371473 +654.427484 +654.428983 +654.446165 +654.516428 +654.517128 +654.550861 +654.641536 +654.655855 +654.657487 +654.720091 +654.832212 +654.862582 +654.908536 +655.035209 +655.049162 +655.068209 +655.101576 +655.119525 +655.188089 +655.205039 +655.222322 +655.356254 +655.390786 +655.392618 +655.413697 +655.429381 +655.540270 +655.581862 +655.694815 +655.714263 +655.795714 +655.815694 +655.834942 +655.901309 +655.952358 +655.967443 +655.984958 +656.033610 +656.063746 +656.101575 +656.129281 +656.358817 +656.408434 +656.477432 +656.493316 +656.837105 +656.902773 +656.916892 +656.933309 +656.952490 +656.984325 +657.080262 +657.195713 +657.197545 +657.231411 +657.262746 +657.399509 +657.446129 +657.499009 +657.573435 +657.589386 +657.590584 +657.645829 +657.663412 +657.720854 +657.745363 +657.775633 +657.776365 +657.811130 +657.812695 +657.895812 +657.911630 +657.944996 +657.997843 +657.999608 +659.627312 +659.671801 +659.857815 +659.938368 +660.024315 +660.064208 +660.083323 +660.624281 +660.664707 +660.974997 +660.993944 +661.022549 +661.881856 +661.882522 +661.885285 +661.900870 +661.902502 +661.958978 +662.110993 +662.486683 +662.536800 +663.261974 +663.360076 +664.397504 +664.416185 +664.438363 +664.521247 +664.646588 +664.670830 +664.813354 +664.859175 +667.075590 +667.251281 +667.383948 +668.708689 +668.709221 +668.711486 +668.734196 +669.030600 +669.031932 +669.684445 +670.030632 +670.031931 +671.031463 +671.239322 +672.513680 +672.822870 +673.245381 +673.950342 +673.951174 +674.017608 +674.084707 +674.551440 +675.330693 +675.393863 +675.399824 +675.410347 +675.443181 +675.512278 +675.522868 +675.563494 +675.662894 +676.542747 +676.583473 +676.616306 +676.620802 +676.650838 +676.660229 +676.706116 +676.712077 +676.732990 +676.904251 +676.951304 +676.992463 +677.087701 +677.149106 +677.289166 +677.305017 +677.571850 +677.614674 +677.625629 +677.855200 +677.922599 +677.942745 +677.971084 +678.006348 +678.010311 +678.029492 +678.030990 +678.088333 +678.230191 +678.331956 +678.430424 +678.532588 +678.533354 +678.534053 +678.733587 +678.834186 +678.935085 +679.035118 +679.133220 +679.230323 +679.531488 +679.532088 +679.532887 +679.630989 +679.631455 +679.632354 +679.633120 +679.733053 +679.933619 +679.934918 +680.134252 +680.235117 +680.332953 +680.334318 +680.431254 +680.432819 +680.633419 +680.634018 +680.734784 +680.833951 +680.834850 +680.932752 +680.932985 +680.933551 +681.033285 +681.134550 +681.233518 +681.332985 +681.334583 +681.433884 +681.434150 +681.435283 +681.534217 +681.535016 +681.535549 +681.809808 +681.824992 +682.030687 +682.134416 +682.333950 +682.334582 +682.335049 +682.433383 +682.433916 +682.434982 +682.534449 +682.535548 +682.634749 +682.635215 +682.733916 +682.833283 +682.933083 +682.934415 +683.033183 +683.034482 +685.073174 +685.345402 +685.540140 +686.283563 +686.307572 +686.337276 +687.507970 +687.626052 +688.030214 +688.031779 +688.046198 +688.055889 +688.076335 +688.077267 +688.139039 +688.150960 +688.209468 +688.224786 +688.249961 +688.320557 +688.347697 +688.372538 +688.428316 +688.458619 +688.502508 +688.636741 +688.685425 +688.953856 +688.971206 +688.971872 +689.087523 +689.130013 +689.131579 +689.163047 +689.286890 +689.298412 +689.331878 +689.370040 +689.417492 +689.499877 +689.583759 +689.600476 +689.615627 +689.630379 +689.714362 +689.846197 +689.928214 +690.060715 +690.108534 +690.143166 +690.157751 +690.173336 +690.207368 +690.301874 +690.317358 +690.336839 +690.354488 +690.384757 +690.398943 +690.399509 +690.459716 +690.476332 +690.545230 +690.560215 +690.580328 +690.632243 +690.668107 +690.860947 +690.890684 +690.904804 +690.918357 +690.919156 +690.951590 +690.986355 +691.001274 +691.002805 +691.075300 +691.132043 +691.133841 +691.180461 +691.180727 +691.270005 +691.312962 +691.329811 +691.364776 +691.381393 +691.382226 +691.417257 +691.418889 +691.512062 +691.530444 +691.545063 +691.562479 +691.707766 +691.709465 +691.855885 +691.872801 +691.903071 +691.920787 +691.963977 +691.997976 +692.016058 +692.052421 +692.132841 +692.147793 +692.164476 +692.164676 +692.183390 +692.199108 +692.211995 +692.212395 +692.229078 +692.262478 +692.277063 +692.309964 +692.327746 +692.343863 +692.370103 +692.439168 +692.523217 +692.523850 +692.553753 +692.626081 +692.654286 +692.686820 +692.737336 +692.738635 +692.739434 +692.788884 +692.805801 +692.821751 +692.823117 +692.854252 +692.889750 +692.891382 +692.909364 +692.926913 +692.958914 +692.990782 +698.367900 +701.352778 +701.416881 +701.454177 +701.467031 +701.602861 +702.271858 +705.031929 +705.032628 +705.428798 +706.031495 +707.032693 +709.521302 +710.347708 +710.681873 +711.322299 +711.845908 +711.948239 +712.049904 +712.861059 +712.995158 +713.130289 +713.132087 +713.231554 +713.231887 +713.242777 +713.332653 +713.333552 +713.334252 +713.342011 +713.345773 +713.433286 +713.433752 +713.434684 +713.533452 +713.534185 +713.534851 +713.535284 +713.544608 +713.633485 +713.643409 +713.647138 +713.734717 +713.834018 +713.934418 +714.034417 +714.043475 +714.233385 +714.335183 +714.434950 +714.534384 +714.534750 +714.535682 +714.633551 +714.633984 +714.640677 +714.834450 +714.935049 +715.034250 +715.234117 +715.235981 +715.334549 +715.335648 +715.433717 +715.435115 +715.631752 +715.674642 +715.833184 +715.887296 +715.931485 +715.933783 +716.135381 +716.235448 +716.334482 +716.429453 +716.715867 +716.732150 +716.832283 +716.833016 +716.833815 +717.033515 +717.034947 +717.143505 +717.235380 +717.243239 +717.335413 +717.533881 +717.535413 +717.634547 +717.735180 +717.834447 +717.834946 +718.035246 +718.893387 +718.961985 +719.153527 +719.269744 +719.737409 +719.868078 +721.021090 +721.885891 +722.608435 +722.737073 +722.744399 +722.946863 +723.030612 +723.031411 +723.054089 +723.070705 +723.071138 +723.071371 +723.083026 +723.131378 +723.146097 +723.217925 +723.219157 +723.262447 +723.291018 +723.310299 +723.371837 +723.482926 +723.484624 +723.539636 +723.555354 +723.623952 +723.670705 +723.696379 +723.769306 +723.881893 +723.893382 +723.894414 +723.969339 +723.982426 +723.982892 +724.026649 +724.062346 +724.094148 +724.142666 +724.159316 +724.240035 +724.286322 +724.310165 +724.344830 +724.361913 +724.377497 +724.377864 +724.406901 +724.438570 +724.477697 +724.509565 +724.560314 +724.599109 +724.630944 +724.690884 +724.700774 +724.702405 +724.717857 +724.718589 +724.731876 +724.762579 +724.777830 +724.779562 +724.808433 +724.884690 +724.991316 +725.065908 +725.115159 +725.129378 +725.198542 +725.302705 +725.304403 +725.350423 +725.365175 +725.435971 +725.452222 +725.468872 +725.469737 +725.487619 +725.549591 +725.600207 +725.600873 +725.639800 +725.812627 +725.813493 +725.847692 +725.848392 +725.904136 +725.905135 +726.038435 +726.054186 +726.069104 +726.102071 +726.116790 +726.128977 +726.144562 +726.209530 +726.211795 +726.244462 +726.273932 +726.274332 +726.275764 +726.290982 +726.324781 +726.325281 +726.389583 +726.404202 +726.406500 +726.423183 +726.455351 +726.513726 +726.529243 +726.530908 +726.593546 +726.609064 +726.624581 +726.701804 +726.733539 +726.765474 +726.782557 +726.800039 +726.836103 +726.853785 +726.854385 +726.871234 +726.882290 +726.896043 +726.930608 +726.946626 +727.048324 +727.065140 +727.099573 +727.113892 +727.143795 +727.175197 +727.175730 +727.209995 +727.242263 +727.244028 +727.263242 +727.298773 +727.316689 +727.349722 +727.426146 +727.439699 +727.487984 +727.508097 +727.544327 +727.578460 +727.612026 +727.628077 +727.651553 +727.669069 +727.723215 +727.753252 +727.835636 +727.956881 +727.984520 +728.024413 +728.433571 +728.673464 +728.912957 +729.171898 +729.412890 +729.519783 +730.006163 +730.006663 +730.007029 +730.368733 +730.374927 +730.643758 +730.891111 +731.156545 +731.418982 +731.816784 +732.073061 +732.092674 +732.347619 +732.377356 +732.661738 +733.061272 +733.292007 +734.022476 +734.862702 +734.914450 +735.314849 +735.512118 +735.542887 +736.024306 +736.098898 +736.132531 +736.201095 +737.164864 +737.165230 +737.592036 +737.613914 +737.620641 +737.626169 +738.030231 +738.040987 +738.042885 +738.248313 +738.496431 +738.961998 +739.031096 +739.055371 +739.376550 +739.834525 +739.870922 +739.947279 +740.031295 +740.031494 +740.039287 +740.053206 +740.275150 +740.284907 +740.336822 +740.339020 +740.668190 +740.903255 +741.031194 +741.031527 +741.614510 +741.626831 +741.678745 +741.905452 +742.711012 +742.724299 +742.736553 +742.775514 +742.798691 +742.807349 +742.852704 +742.896460 +742.912710 +742.958065 +744.439682 +745.574812 +745.691296 +745.713806 +746.194292 +746.387266 +748.029655 +748.031287 +748.131286 +748.131686 +748.132818 +748.231886 +748.332452 +748.332652 +748.333417 +748.448003 +748.632685 +748.633817 +748.643440 +748.652898 +748.732651 +748.832784 +748.833850 +748.932784 +748.933084 +748.943240 +749.033450 +749.055262 +749.133217 +749.133983 +749.231785 +749.233017 +749.233849 +749.333450 +749.334249 +749.432884 +749.532650 +749.533583 +749.533916 +749.543007 +749.632251 +749.632650 +749.732850 +749.833316 +749.845337 +749.933616 +749.934481 +750.032883 +750.033283 +750.033582 +750.034448 +750.133149 +750.133549 +750.232683 +750.233416 +750.333282 +750.333649 +750.334414 +750.432816 +750.531850 +750.631517 +750.632083 +750.732649 +750.832516 +750.832749 +750.833681 +750.932649 +750.933415 +750.934081 +751.032782 +751.033681 +751.133048 +751.143771 +751.144870 +751.233947 +751.234380 +751.333148 +751.334547 +751.433681 +751.434347 +751.533148 +751.534014 +751.534413 +751.633447 +751.833347 +751.933913 +752.033580 +752.132748 +752.133547 +752.134046 +752.232514 +752.233547 +752.233946 +752.332648 +752.333014 +752.334213 +752.433913 +752.533813 +752.534512 +752.543503 +752.632980 +752.633313 +752.634279 +752.732614 +752.733679 +752.834245 +752.933779 +753.034345 +753.034911 +753.044701 +753.477635 +754.136642 +754.548230 +755.090320 +755.172472 +755.182195 +755.288489 +755.547996 +756.170772 +756.682593 +756.980562 +758.070937 +758.093348 +758.094846 +758.105236 +758.106535 +758.118456 +758.120054 +758.144929 +758.157417 +758.271170 +758.284090 +758.285422 +758.317856 +758.398043 +758.455618 +758.500707 +758.547094 +758.617090 +758.632741 +758.674799 +758.764343 +758.826814 +758.843230 +758.876797 +758.976597 +759.019720 +759.101505 +759.141332 +759.260746 +759.261046 +759.292547 +759.310996 +759.371402 +759.403070 +759.486986 +759.488651 +759.520819 +759.546160 +759.546826 +759.595511 +759.648491 +759.698974 +759.762843 +759.780193 +759.806733 +759.837036 +759.883456 +759.915124 +759.962377 +759.975364 +760.003735 +760.038401 +760.056549 +760.086386 +760.131574 +760.132873 +760.133406 +760.190415 +760.237468 +760.287185 +760.377728 +760.395377 +760.422683 +760.453785 +760.516655 +760.588150 +760.604934 +760.671567 +760.728010 +760.745027 +760.777661 +760.809329 +760.852453 +760.932706 +760.985786 +761.014823 +761.033971 +761.071000 +761.117554 +761.193944 +761.194643 +761.204900 +761.283088 +761.361443 +761.378426 +761.380424 +761.415722 +761.461676 +761.499472 +761.585252 +761.633071 +761.660810 +761.698106 +761.797107 +761.798272 +761.814157 +761.831606 +761.853018 +761.882954 +761.884886 +761.915389 +761.916321 +761.951319 +761.965538 +761.981356 +761.995841 +761.996607 +762.011159 +762.058579 +762.075695 +762.076061 +762.126178 +762.142461 +762.158978 +762.213923 +762.241129 +762.276893 +762.293876 +762.305931 +762.324013 +762.325678 +762.340030 +762.374263 +762.405365 +762.407496 +762.422914 +762.440929 +762.456680 +762.519784 +762.615488 +762.647622 +762.663007 +762.675994 +762.676427 +762.690513 +762.692744 +762.724012 +762.724312 +762.740696 +762.753883 +762.767869 +762.768634 +762.798771 +762.844225 +762.864938 +762.884785 +762.916653 +762.933270 +762.934135 +762.962840 +762.980822 +762.998904 +763.013722 +763.077092 +763.093076 +763.203732 +763.931071 +764.051417 +764.067701 +764.191044 +764.461174 +764.485050 +764.510824 +764.629638 +764.665969 +764.742325 +764.773294 +764.848952 +765.038562 +765.083084 +765.104796 +765.136664 +765.319581 +765.348086 +765.362238 +765.431935 +765.451282 +765.509890 +765.773926 +765.881618 +765.991875 +766.001565 +766.043956 +766.138694 +767.058340 +768.442222 +769.426670 +770.071691 +770.564164 +770.624804 +770.735726 +770.878783 +770.905156 +771.133162 +771.289172 +771.482645 +771.489005 +771.512615 +771.895265 +771.930330 +772.021406 +772.387906 +772.447313 +772.489937 +772.528432 +773.029963 +773.847844 +773.893299 +773.953705 +774.028963 +774.030128 +774.218973 +774.231194 +774.257601 +774.280278 +774.292765 +774.295663 +774.305419 +775.030494 +775.258166 +776.670852 +778.030990 +778.031290 +783.130752 +783.230719 +783.331618 +783.332650 +783.531651 +783.631584 +783.831484 +783.832882 +783.932716 +784.232716 +784.332083 +784.332316 +784.333282 +784.430784 +784.532282 +784.633881 +784.733281 +784.832449 +784.933814 +785.033947 +785.133714 +785.233048 +785.433214 +785.531615 +785.532981 +785.632348 +785.632847 +785.732248 +785.732980 +785.830882 +785.831548 +785.832414 +785.833114 +785.932181 +785.932647 +786.032814 +786.132680 +786.232813 +786.233479 +786.331481 +786.331914 +786.332680 +786.429450 +786.631614 +786.832047 +786.833446 +786.932080 +786.932713 +787.032346 +787.032613 +787.132679 +787.233012 +787.233312 +787.430614 +787.432146 +787.532179 +787.533545 +787.632279 +787.633078 +787.732279 +787.733145 +787.733311 +787.832279 +787.833445 +787.932778 +787.933411 +793.029643 +793.038101 +793.044961 +793.046460 +793.110662 +793.133839 +793.135537 +793.149057 +793.163842 +793.204368 +793.229809 +793.243895 +793.286786 +793.357948 +793.376329 +793.484754 +793.498674 +793.513659 +793.555250 +793.556949 +793.557348 +793.653385 +793.685820 +793.800039 +793.836302 +793.852053 +793.868137 +793.901204 +793.917188 +793.949855 +793.966272 +794.040365 +794.109795 +794.150821 +794.181790 +794.258746 +794.269968 +794.271900 +794.299805 +794.313358 +794.329076 +794.393944 +794.453551 +794.455016 +794.480158 +794.539965 +794.569069 +794.647390 +794.683754 +794.744993 +794.945359 +795.074696 +795.210061 +795.226111 +795.258079 +795.287749 +795.302568 +795.318186 +795.366604 +795.382155 +795.383687 +795.422914 +795.439065 +795.453084 +795.472431 +795.487916 +795.527410 +795.545491 +795.563806 +795.581855 +795.613723 +795.642228 +795.731905 +795.779391 +796.003999 +796.020150 +796.020516 +796.083053 +796.268335 +796.286183 +796.352384 +796.385018 +796.505197 +796.523413 +796.579323 +796.670365 +796.681321 +796.782487 +796.811358 +796.844558 +796.931671 +796.967601 +796.986083 +797.001034 +797.034667 +797.035234 +797.086948 +797.088613 +797.119449 +797.136232 +797.181820 +797.183285 +797.213655 +797.214188 +797.343358 +797.359109 +797.405996 +797.439562 +797.440095 +797.485849 +797.487514 +797.532969 +797.569332 +797.599902 +797.617184 +797.650851 +797.675692 +797.855679 +797.917317 +797.947287 +797.949285 +797.967067 +798.011556 +808.030194 +808.030527 +811.030225 +811.031457 +812.029125 +818.030750 +818.139142 +818.333014 +818.432382 +818.533381 +818.731882 +818.732248 +818.733580 +818.832481 +818.832947 +818.932614 +818.934013 +819.232614 +819.233879 +819.332547 +819.333946 +819.433813 +819.532514 +819.533912 +819.633746 +819.734145 +819.834145 +819.834844 +819.933879 +820.032913 +820.034145 +820.133013 +820.134278 +820.233146 +820.333279 +820.433312 +820.532912 +820.632346 +820.633212 +820.633445 +820.633811 +820.734178 +820.834244 +820.932079 +820.932379 +820.932945 +820.933278 +821.032179 +821.132579 +821.232645 +821.233811 +821.333944 +821.432911 +821.433078 +821.434343 +821.534177 +821.633011 +821.732412 +821.734110 +821.832278 +821.833244 +821.932944 +821.933344 +821.934210 +822.033344 +822.034543 +822.131878 +822.132711 +822.133144 +822.133577 +822.133843 +822.233077 +822.333410 +822.433177 +822.434143 +822.434542 +822.531845 +822.532611 +822.533277 +822.630646 +822.632710 +822.732877 +822.734275 +822.833210 +822.931045 +822.931811 +822.933110 +823.033309 +823.451091 +823.822453 +825.493980 +826.326446 +826.366373 +828.030807 +828.038999 +828.047290 +828.047590 +828.057147 +828.067171 +828.068436 +828.079059 +828.087583 +828.088150 +828.109528 +828.121683 +828.136801 +828.137034 +828.193477 +828.207031 +828.307330 +828.322582 +828.322915 +828.374396 +828.391213 +828.408496 +828.488682 +828.520051 +828.547223 +828.598039 +828.613790 +828.615522 +828.646191 +828.695275 +828.696907 +828.760543 +828.761942 +828.790180 +828.851186 +828.876294 +828.949587 +828.950753 +828.951419 +828.982687 +829.083620 +829.101768 +829.143260 +829.156380 +829.156946 +829.238931 +829.306397 +829.331472 +829.347456 +829.362541 +829.422481 +829.481222 +829.525777 +829.540929 +829.623213 +829.656147 +829.708294 +829.722580 +829.739763 +829.812024 +829.829340 +829.877059 +830.030206 +830.030672 +830.032470 +830.110592 +830.215920 +830.231937 +830.264038 +830.335999 +830.352816 +830.366103 +830.395706 +830.422879 +830.437598 +830.452949 +830.495573 +830.509692 +830.539329 +830.539795 +830.559842 +830.611091 +830.641261 +830.674361 +830.734900 +830.767035 +830.783318 +830.828706 +830.932069 +830.964703 +831.090677 +831.105562 +831.107527 +831.142559 +831.191277 +831.306728 +831.378789 +831.410424 +831.428806 +831.430071 +831.445722 +831.447487 +831.464503 +831.482385 +831.483151 +831.500101 +831.516218 +831.532835 +831.594340 +831.611889 +831.659242 +831.708625 +831.724543 +831.785382 +831.815851 +831.817616 +831.834100 +831.866268 +831.926707 +831.957077 +832.040959 +832.057443 +832.091442 +832.162471 +832.180320 +832.181885 +832.236331 +832.251449 +832.270863 +832.382085 +832.382851 +832.397269 +832.430636 +832.444622 +832.495738 +832.602264 +832.635331 +832.671262 +832.688545 +832.706793 +832.707126 +832.722011 +832.723809 +832.787246 +832.822011 +832.838894 +832.934432 +832.935231 +832.954179 +832.967965 +832.987179 +832.988344 +833.003529 +833.379386 +838.187540 +839.505621 +843.031158 +845.029791 +847.030388 +848.031520 +853.132114 +853.232014 +853.232214 +853.239140 +853.332180 +853.532680 +853.534012 +853.632679 +853.634011 +853.733079 +853.734211 +853.834144 +853.934477 +854.033212 +854.133345 +854.433678 +854.533578 +854.534743 +854.734676 +854.933178 +855.133644 +855.135009 +855.233843 +855.335109 +855.434942 +855.533743 +855.633110 +855.633244 +855.633510 +855.634709 +855.733909 +855.734642 +855.833776 +855.834276 +855.835208 +855.933476 +855.933709 +856.034209 +856.034842 +856.133243 +856.133809 +856.234775 +856.333876 +856.334375 +856.433709 +856.434874 +856.533775 +856.633043 +856.633709 +856.634375 +856.833808 +856.834907 +856.934075 +856.934841 +856.937605 +857.032676 +857.133542 +857.233808 +857.235007 +857.235340 +857.334108 +857.433541 +857.434840 +857.633741 +857.734973 +857.834440 +857.834873 +857.934373 +858.034873 +858.526181 +859.293713 +860.824147 +862.144259 +863.032004 +863.056979 +863.088281 +863.129207 +863.169666 +863.202966 +863.220649 +863.248954 +863.289979 +863.322147 +863.336466 +863.404964 +863.476193 +863.507661 +863.550152 +863.756845 +863.757245 +863.785217 +863.803898 +863.914454 +863.925976 +863.938164 +863.969998 +863.972196 +864.002632 +864.017751 +864.033701 +864.075393 +864.165936 +864.167834 +864.201433 +864.281920 +864.296605 +864.297104 +864.330071 +864.346189 +864.400068 +864.478256 +864.573095 +864.710391 +864.729105 +864.762039 +864.794540 +864.843358 +864.949718 +864.997137 +865.015319 +865.056311 +865.089145 +865.107893 +865.161472 +865.246421 +865.366667 +865.426274 +865.462504 +865.498935 +865.517449 +865.582018 +865.681419 +865.698635 +865.733367 +865.816051 +866.095438 +866.152414 +866.230869 +866.273326 +866.275158 +866.360572 +866.395670 +866.426040 +866.491308 +866.577422 +866.604162 +866.641957 +866.659273 +866.708424 +866.725640 +866.726905 +866.773792 +866.904927 +866.906725 +866.962503 +866.980418 +866.981084 +867.017015 +867.033499 +867.085213 +867.100598 +867.155410 +867.187944 +867.220878 +867.222643 +867.244887 +867.309489 +867.326638 +867.359106 +867.378220 +867.393505 +867.393805 +867.410088 +867.470528 +867.487144 +867.501763 +867.516448 +867.517814 +867.569495 +867.585979 +867.664101 +867.697634 +867.699365 +867.716848 +867.734297 +867.735596 +867.753311 +867.771360 +867.785812 +867.801963 +867.819712 +867.821676 +867.838027 +867.857907 +867.893804 +867.981450 +868.337527 +868.849514 +869.632830 +869.664698 +870.495700 +870.547714 +872.952873 +874.844380 +875.845644 +877.237251 +877.250272 +878.745142 +879.031422 +880.661857 +881.032319 +881.849834 +881.914070 +882.032351 +882.358492 +883.317332 +886.584561 +887.996914 +888.013231 +888.030114 +888.130947 +888.231812 +888.533144 +888.533510 +888.633344 +888.633743 +888.733577 +888.833876 +889.034009 +889.133710 +889.134142 +889.234675 +889.271638 +889.329580 +889.432344 +889.533543 +889.534142 +889.632877 +889.633176 +889.633676 +889.634175 +889.734208 +889.833676 +889.835041 +890.031844 +890.033342 +890.134375 +890.234374 +890.334041 +890.334441 +890.435140 +890.632909 +890.731144 +890.830944 +891.033708 +891.133341 +891.134140 +891.234174 +891.234906 +891.334373 +891.334906 +891.534506 +891.724982 +891.932441 +892.332175 +892.534206 +892.633773 +892.634106 +892.635071 +892.732774 +892.733240 +892.733539 +892.734106 +892.785887 +892.932707 +893.034671 +893.093679 +893.122017 +893.210962 +893.983189 +894.000804 +894.063342 +898.030138 +898.030903 +898.038130 +898.046488 +898.048153 +898.123511 +898.137530 +898.138229 +898.152149 +898.166301 +898.181220 +898.193208 +898.236298 +898.291443 +898.350983 +898.365968 +898.450051 +898.514286 +898.515785 +898.614486 +898.678255 +898.845255 +898.880053 +898.908958 +898.921678 +898.951582 +898.968365 +899.040826 +899.056610 +899.057343 +899.214852 +899.250050 +899.251681 +899.267599 +899.366933 +899.368664 +899.427938 +899.519380 +899.550249 +899.749383 +899.874791 +899.916316 +899.918614 +900.064601 +900.082583 +900.165067 +900.196469 +900.275423 +900.379319 +900.471061 +900.592539 +900.595470 +900.596069 +900.630901 +900.677987 +900.727904 +900.771061 +900.855076 +900.885579 +900.900065 +900.917680 +900.933664 +901.055509 +901.069995 +901.083614 +901.098033 +901.131999 +901.158939 +901.174423 +901.176688 +901.190874 +901.192672 +901.209222 +901.257807 +901.293238 +901.340491 +901.392006 +901.435695 +901.467530 +901.485279 +901.502595 +901.517846 +901.583514 +901.664033 +901.664566 +901.712119 +901.758339 +901.794003 +901.842655 +901.862168 +901.905159 +901.922208 +901.941789 +902.058605 +902.139790 +902.202261 +902.221009 +902.273490 +902.305824 +902.350346 +902.350979 +902.352644 +902.410986 +902.449614 +902.478451 +902.503826 +902.547949 +902.565165 +902.579983 +902.580516 +902.614981 +902.633430 +902.693803 +902.852977 +902.906456 +902.924072 +902.924505 +902.943153 +902.960935 +903.338124 +903.529966 +905.086940 +906.250009 +906.256003 +906.316909 +906.352873 +906.377349 +906.401291 +906.453905 +906.531861 +907.703255 +907.799059 +907.872519 +907.875782 +908.116708 +908.964226 +910.170252 +910.326396 +910.489865 +911.251769 +911.364323 +911.568752 +912.179108 +912.403483 +913.031788 +913.031987 +913.444008 +913.610941 +914.030854 +914.730088 +914.849068 +914.860124 +914.879105 +915.031885 +917.031051 +918.032648 +918.850197 +920.194817 +920.223089 +920.237941 +920.334011 +920.359153 +921.418792 +921.656587 +923.029580 +923.130545 +923.130712 +923.532776 +923.533009 +923.534374 +923.633409 +923.833741 +924.033242 +924.230544 +924.633874 +924.934706 +925.234606 +925.333673 +925.370936 +925.424516 +925.431609 +925.471469 +925.531509 +925.531875 +925.833906 +926.033939 +926.233473 +926.234405 +926.333006 +926.334238 +926.433839 +926.531141 +926.733739 +926.734271 +926.834837 +926.933872 +927.034204 +927.334704 +927.433605 +927.434171 +927.434737 +927.534004 +927.635070 +927.719985 +927.732472 +927.831207 +927.931340 +927.932272 +928.033970 +928.034770 +929.761042 +929.776626 +929.881588 +930.020682 +931.622545 +932.707559 +933.030202 +933.047851 +933.055144 +933.093506 +933.107625 +933.108491 +933.132833 +933.133366 +933.148984 +933.163436 +933.164335 +933.178787 +933.219180 +933.234864 +933.263769 +933.277488 +933.385946 +933.399366 +933.426273 +933.454944 +933.456276 +933.486146 +933.540025 +933.580885 +933.596635 +933.597934 +933.646719 +933.660039 +933.686046 +933.716316 +933.790908 +933.848650 +933.849283 +933.882283 +933.924074 +933.940158 +933.973492 +934.017747 +934.077787 +934.092706 +934.119912 +934.120245 +934.164500 +934.180651 +934.181050 +934.209022 +934.210987 +934.237527 +934.264633 +934.278020 +934.280118 +934.294304 +934.294936 +934.320910 +934.345253 +934.347151 +934.376055 +934.405426 +934.446851 +934.479718 +934.480318 +934.481350 +934.537294 +934.537860 +934.553777 +934.586711 +934.599865 +934.601430 +934.615516 +934.695003 +934.769861 +934.864433 +934.882615 +934.932731 +934.951879 +935.062768 +935.078419 +935.107323 +935.108489 +935.157440 +935.187110 +935.188842 +935.220244 +935.237027 +935.253677 +935.292138 +935.337326 +935.352045 +935.352711 +935.390740 +935.405325 +935.478518 +935.479018 +935.509221 +935.524739 +935.540190 +935.554942 +935.555475 +935.604859 +935.639890 +935.670693 +935.687509 +935.708055 +935.724472 +935.755708 +935.829467 +935.862268 +935.878951 +935.894868 +935.895434 +935.962700 +935.964199 +935.999164 +936.000629 +936.065764 +936.084512 +936.096766 +936.128901 +936.145417 +936.179017 +936.196067 +936.239057 +936.257106 +936.258105 +936.370259 +936.391038 +936.408587 +936.423406 +936.455307 +936.473556 +936.486676 +936.502427 +936.503426 +936.549613 +936.565763 +936.566696 +936.582713 +936.659836 +936.672823 +936.705390 +936.722007 +936.772756 +936.802193 +936.803159 +936.837292 +936.891571 +936.931164 +936.931897 +937.010218 +937.056006 +937.087141 +937.104591 +937.105057 +937.138590 +937.153042 +937.269925 +937.282279 +937.302493 +937.315613 +937.317844 +937.318576 +937.351577 +937.384544 +937.435626 +937.451976 +937.468826 +937.502259 +937.515546 +937.593834 +937.628333 +937.698496 +937.699928 +937.720041 +937.739355 +937.806521 +937.807354 +937.825402 +937.826068 +937.843451 +937.875519 +937.913914 +937.933028 +937.944184 +937.957204 +937.971223 +937.980947 +937.983045 +937.983511 +938.011649 +938.021406 +938.051310 +938.073055 +938.165728 +940.037688 +940.049143 +940.167491 +940.328230 +940.369589 +940.401058 +941.488169 +941.578379 +941.647843 +941.725032 +941.869887 +941.946078 +941.986038 +942.306117 +942.499957 +942.552737 +944.682971 +944.738915 +944.902785 +944.921533 +947.459292 +947.475576 +947.874244 +948.005212 +948.238845 +948.268083 +948.291160 +948.899817 +948.926091 +948.961921 +948.990426 +949.029487 +949.106776 +949.159923 +949.178471 +949.285031 +949.285065 +950.032383 +950.033116 +950.157991 +950.163385 +951.031417 +951.566381 +951.670843 +951.745468 +952.031615 +952.033414 +952.734845 +952.799447 +952.801145 +953.031215 +953.754091 +953.778433 +953.823588 +954.145166 +954.158520 +954.638073 +954.712732 +954.751892 +954.777733 +954.803374 +954.907503 +958.029378 +958.030277 +958.109964 +958.432808 +958.532408 +958.533540 +958.634073 +958.733041 +958.733906 +958.734106 +958.832741 +958.833573 +958.834039 +958.933407 +958.934705 +959.034039 +959.133739 +959.234139 +959.235171 +959.333639 +959.335371 +959.432907 +959.531741 +959.632540 +959.733106 +959.733939 +959.833739 +959.835071 +959.933839 +959.935071 +960.034005 +960.134338 +960.334571 +960.434138 +960.434437 +960.435237 +960.534571 +960.535103 +960.633305 +960.734237 +960.735070 +960.735536 +960.931040 +960.933271 +961.033638 +961.133038 +961.133404 +961.134137 +961.134670 +961.233371 +961.233837 +961.234337 +961.330940 +961.432105 +961.433537 +961.632538 +961.632971 +961.633870 +961.733171 +961.733537 +961.734936 +961.834369 +961.933703 +961.934636 +961.935268 +962.033870 +962.034236 +962.134436 +962.233703 +962.234469 +962.235102 +962.434902 +962.630173 +962.734702 +962.832137 +962.833669 +962.933602 +962.935101 +963.035068 +963.351717 +963.601967 +963.935100 +965.483250 +965.957242 +966.087745 +966.088045 +966.112554 +966.142390 +966.986246 +967.738892 +967.779851 +968.031067 +968.037826 +968.038159 +968.077453 +968.088109 +968.133331 +968.133631 +968.147417 +968.148349 +968.327536 +968.367696 +968.404992 +968.421209 +968.438226 +968.451512 +968.464399 +968.493537 +968.522208 +968.535695 +968.537859 +968.552145 +968.569195 +968.585179 +968.643287 +968.644186 +968.715148 +968.754276 +968.767363 +968.797832 +968.847716 +968.848315 +968.860803 +968.867096 +968.868129 +968.873623 +968.885478 +968.897266 +968.898631 +968.957706 +968.985877 +968.998498 +969.000130 +969.015381 +969.030499 +969.044952 +969.154142 +969.171525 +969.243619 +969.259936 +969.276220 +969.307722 +969.339457 +969.356606 +969.417279 +969.512217 +969.530599 +969.547315 +969.568994 +969.727535 +969.782080 +969.848647 +969.879183 +969.892803 +969.906856 +969.937758 +969.952243 +969.968061 +970.046649 +970.073322 +970.075387 +970.139489 +970.179250 +970.211750 +970.226669 +970.307921 +970.336858 +970.384211 +970.420208 +970.454774 +970.505889 +970.534028 +970.549845 +970.565330 +970.580881 +970.640688 +970.669426 +970.736225 +970.737191 +970.755073 +970.844584 +970.845616 +970.846448 +970.866262 +970.884410 +970.920374 +970.922372 +971.006355 +971.008220 +971.043984 +971.070025 +971.186341 +971.206921 +971.230597 +971.262299 +971.301659 +971.315479 +971.330730 +971.376817 +971.426601 +971.444749 +971.505355 +971.583244 +971.614047 +971.615845 +971.641652 +971.642551 +971.678016 +971.694733 +971.697030 +971.711782 +971.746414 +971.748146 +971.798296 +971.910850 +972.092634 +972.108085 +972.108785 +972.124003 +972.155605 +972.172121 +972.192101 +972.209251 +972.226467 +972.290436 +972.307353 +972.321272 +972.334625 +972.362431 +972.365228 +972.378182 +972.450676 +972.496563 +972.527599 +972.540919 +972.592101 +972.592700 +972.611315 +972.626167 +972.644915 +972.676317 +972.726333 +972.743116 +972.758734 +972.795131 +972.826067 +972.843316 +972.858701 +972.896463 +972.930895 +973.267292 +973.934923 +974.777314 +974.842648 +975.626330 +976.162860 +976.211977 +976.226263 +976.271784 +977.058597 +977.168254 +977.423332 +977.449738 +977.543112 +977.613042 +977.623165 +977.635153 +978.683503 +978.699554 +978.720633 +978.734353 +978.820133 +978.847373 +978.989997 +980.304814 +980.358260 +980.417035 +980.428590 +981.514037 +981.592059 +981.598519 +982.838844 +983.917664 +984.855792 +985.031416 +986.032181 +986.032913 +987.637307 +987.691353 +987.715429 +987.721989 +987.760384 +987.773804 +987.999911 +988.108569 +990.102173 +990.129546 +990.207068 +990.275666 +990.276266 +990.355586 +992.148525 +993.332540 +993.361477 +993.734171 +993.834870 +993.935270 +994.034137 +994.133704 +994.134037 +994.534636 +994.731273 +994.935102 +995.035235 +995.134003 +995.234403 +995.235268 +995.334369 +995.335302 +995.434369 +995.434902 +995.435435 +995.535301 +995.623613 +995.733303 +995.934935 +995.936200 +996.034935 +996.333469 +996.561508 +996.633702 +996.806329 +996.936332 +997.035866 +997.391177 +997.401866 +997.430504 +997.434267 +997.467034 +997.634200 +997.933867 +999.349250 +1000.547018 +1000.720944 +1000.745053 +1001.480584 +1001.881915 +1001.899564 +1002.855940 +1003.032064 +1003.047215 +1003.078817 +1003.099430 +1003.121241 +1003.149013 +1003.163066 +1003.208387 +1003.222240 +1003.260136 +1003.380881 +1003.412949 +1003.431631 +1003.449080 +1003.482879 +1003.583146 +1003.612350 +1003.659502 +1003.701993 +1003.702693 +1003.832629 +1004.025569 +1004.042552 +1004.113048 +1004.168793 +1004.203624 +1004.265463 +1004.294200 +1004.327833 +1004.418276 +1004.432562 +1004.479715 +1004.497097 +1004.548413 +1004.602059 +1004.618509 +1004.698596 +1004.699228 +1004.715812 +1004.732795 +1004.840520 +1004.953374 +1005.008419 +1005.041486 +1005.079381 +1005.080780 +1005.112748 +1005.133427 +1005.215911 +1005.270157 +1005.272155 +1005.274186 +1005.361099 +1005.389504 +1005.391169 +1005.423503 +1005.524369 +1005.526134 +1005.564462 +1005.688072 +1005.704722 +1005.801758 +1005.814778 +1005.828764 +1005.850110 +1005.888172 +1005.888671 +1005.916710 +1005.960199 +1005.985174 +1006.080845 +1006.114878 +1006.144615 +1006.159300 +1006.175884 +1006.189070 +1006.246813 +1006.262530 +1006.275550 +1006.314278 +1006.344814 +1006.372520 +1006.411781 +1006.519739 +1006.569456 +1006.571288 +1006.658800 +1006.695397 +1006.714078 +1006.756802 +1006.846579 +1006.881544 +1006.902256 +1006.932526 +1006.947145 +1006.970455 +1007.013445 +1007.028264 +1007.042216 +1007.088104 +1007.229362 +1007.257101 +1007.258866 +1007.277880 +1007.348510 +1007.382476 +1007.401956 +1007.419572 +1007.454037 +1007.486771 +1007.561263 +1007.562895 +1007.632992 +1007.670721 +1007.785406 +1007.786305 +1007.888136 +1007.889002 +1008.020437 +1008.375881 +1008.524932 +1009.704718 +1011.323031 +1011.599954 +1012.620999 +1012.719367 +1012.728691 +1012.742311 +1012.750769 +1012.783103 +1013.001318 +1013.774744 +1013.813405 +1013.850868 +1014.020564 +1014.303681 +1014.315869 +1014.662888 +1014.729022 +1015.584499 +1015.725724 +1017.235047 +1017.296086 +1017.371077 +1017.390058 +1017.410804 +1018.593653 +1018.594120 +1018.598082 +1018.783097 +1018.847033 +1018.866680 +1019.456956 +1019.503210 +1020.650095 +1021.033511 +1022.032245 +1022.032877 +1023.032710 +1024.049159 +1024.059382 +1024.063944 +1024.075466 +1024.098443 +1024.414726 +1025.174732 +1025.208432 +1025.228945 +1026.471967 +1026.509063 +1028.031573 +1028.031839 +1028.032172 +1028.032572 +1028.132005 +1028.231772 +1028.232771 +1028.332605 +1028.434003 +1028.534070 +1028.534403 +1028.633770 +1028.634103 +1028.834336 +1028.835801 +1028.934436 +1029.034435 +1029.235634 +1029.236100 +1029.335667 +1029.432004 +1029.432504 +1029.432803 +1029.633935 +1029.733236 +1029.733502 +1029.834601 +1029.835234 +1029.934235 +1030.035600 +1030.234368 +1030.235167 +1030.235633 +1030.235933 +1030.334601 +1030.434001 +1030.435200 +1030.534234 +1030.534501 +1030.633901 +1030.634367 +1030.635633 +1030.734101 +1030.734800 +1030.735533 +1030.834833 +1030.835566 +1030.934966 +1031.035099 +1031.135133 +1031.234000 +1031.332069 +1031.432269 +1031.633534 +1031.634699 +1031.634932 +1031.734466 +1031.735565 +1031.833234 +1031.833700 +1031.834632 +1031.834932 +1031.934066 +1031.935365 +1032.034899 +1032.134965 +1032.135731 +1032.136064 +1032.334932 +1032.335731 +1032.535331 +1032.631268 +1032.732900 +1032.933832 +1032.934598 +1033.035197 +1034.002929 +1035.651578 +1035.714649 +1035.793270 +1036.639989 +1037.172223 +1038.037590 +1038.045848 +1038.077050 +1038.087074 +1038.097863 +1038.098196 +1038.109984 +1038.110251 +1038.121506 +1038.122272 +1038.124170 +1038.135858 +1038.136125 +1038.149744 +1038.205988 +1038.220906 +1038.321672 +1038.322172 +1038.354240 +1038.373154 +1038.401692 +1038.402858 +1038.475818 +1038.489771 +1038.536424 +1038.571023 +1038.602092 +1038.628399 +1038.703657 +1038.732594 +1038.734392 +1038.753140 +1038.767459 +1038.842984 +1038.874619 +1038.877050 +1038.904755 +1038.937056 +1038.951209 +1039.015544 +1039.107785 +1039.172854 +1039.188205 +1039.205887 +1039.305887 +1039.313380 +1039.322371 +1039.353939 +1039.369723 +1039.383942 +1039.437256 +1039.449743 +1039.494765 +1039.496263 +1039.512647 +1039.528531 +1039.651375 +1039.669923 +1039.709050 +1039.728964 +1039.763462 +1039.802323 +1039.871920 +1039.889236 +1039.920372 +1040.029729 +1040.045513 +1040.062829 +1040.097128 +1040.176715 +1040.191168 +1040.256569 +1040.285540 +1040.297528 +1040.311813 +1040.344381 +1040.380678 +1040.428896 +1040.445846 +1040.650042 +1040.673751 +1040.697960 +1040.710847 +1040.764061 +1040.778813 +1040.812912 +1040.828530 +1040.864893 +1040.880311 +1040.997094 +1041.162628 +1041.213011 +1041.245978 +1041.264959 +1041.309282 +1041.342848 +1041.414443 +1041.433890 +1041.434623 +1041.467523 +1041.467823 +1041.469455 +1041.502855 +1041.632491 +1041.661529 +1041.681909 +1041.728429 +1041.798758 +1041.866524 +1041.895728 +1041.927862 +1041.943480 +1041.957366 +1042.022534 +1042.038352 +1042.054203 +1042.068955 +1042.118505 +1042.130826 +1042.151039 +1042.209547 +1042.223433 +1042.270886 +1042.316074 +1042.453636 +1042.539450 +1042.574715 +1042.649107 +1042.676313 +1042.692530 +1042.758897 +1042.830492 +1042.862527 +1042.878178 +1042.878844 +1042.950639 +1043.213609 +1046.194591 +1053.031814 +1054.030714 +1056.031045 +1058.031909 +1058.296444 +1061.672631 +1061.700304 +1063.231038 +1063.231970 +1063.331171 +1063.331804 +1063.532270 +1063.533602 +1063.631870 +1063.633135 +1063.633968 +1063.732136 +1063.733102 +1063.733735 +1063.831437 +1063.832736 +1063.932602 +1064.134067 +1064.232469 +1064.233201 +1064.233801 +1064.434267 +1064.532635 +1064.533268 +1064.533501 +1064.533934 +1064.632635 +1064.632868 +1064.733034 +1064.734200 +1064.832435 +1064.934000 +1065.032235 +1065.033833 +1065.034100 +1065.133101 +1065.134466 +1065.233400 +1065.233866 +1065.332734 +1065.334333 +1065.432901 +1065.533633 +1065.933866 +1065.934066 +1066.032967 +1066.132300 +1066.332633 +1066.334165 +1066.432533 +1066.433732 +1066.532899 +1066.533865 +1066.534098 +1066.631800 +1066.733066 +1066.733632 +1066.734098 +1066.832733 +1067.032732 +1067.032899 +1067.033032 +1067.034031 +1067.034431 +1067.234098 +1067.433764 +1067.532765 +1067.633797 +1067.732798 +1067.733997 +1067.832765 +1068.033331 +1068.033564 +1068.034663 +1071.776983 +1073.030562 +1073.046779 +1073.047811 +1073.048244 +1073.056836 +1073.066792 +1073.077981 +1073.099526 +1073.112480 +1073.113113 +1073.113512 +1073.136256 +1073.147711 +1073.184175 +1073.197462 +1073.211914 +1073.225034 +1073.242417 +1073.258034 +1073.259233 +1073.274451 +1073.274684 +1073.300825 +1073.327332 +1073.342017 +1073.382943 +1073.398394 +1073.433592 +1073.461963 +1073.484175 +1073.512446 +1073.512713 +1073.544015 +1073.558567 +1073.588470 +1073.614477 +1073.629895 +1073.630994 +1073.647211 +1073.694064 +1073.696928 +1073.790967 +1073.956435 +1074.044347 +1074.093465 +1074.126598 +1074.155136 +1074.156035 +1074.237121 +1074.290800 +1074.340884 +1074.341616 +1074.386338 +1074.388136 +1074.432359 +1074.472152 +1074.487104 +1074.488802 +1074.519738 +1074.536221 +1074.584407 +1074.618173 +1074.647443 +1074.665559 +1074.727696 +1074.746145 +1074.823967 +1074.838719 +1074.866691 +1074.911546 +1074.943714 +1074.995395 +1075.010813 +1075.025199 +1075.051672 +1075.053271 +1075.109281 +1075.140483 +1075.142881 +1075.171918 +1075.206151 +1075.269088 +1075.313477 +1075.344912 +1075.359830 +1075.402621 +1075.438119 +1075.452504 +1075.465891 +1075.483207 +1075.497293 +1075.585005 +1075.613943 +1075.631225 +1075.645378 +1075.777779 +1075.795794 +1075.809980 +1075.824765 +1075.881142 +1075.914242 +1075.915907 +1075.931958 +1075.961128 +1075.986303 +1076.021768 +1076.055867 +1076.088501 +1076.119403 +1076.121301 +1076.121634 +1076.184904 +1076.186103 +1076.215507 +1076.216206 +1076.257732 +1076.258398 +1076.258731 +1076.275414 +1076.326196 +1076.356599 +1076.372783 +1076.446576 +1076.478344 +1076.480542 +1076.509380 +1076.511011 +1076.527628 +1076.560695 +1076.594961 +1076.596592 +1076.611278 +1076.612843 +1076.649040 +1076.650039 +1076.685570 +1076.698657 +1076.698890 +1076.699156 +1076.717272 +1076.733422 +1076.736019 +1076.784704 +1076.818637 +1076.835586 +1076.869153 +1076.885337 +1076.900721 +1077.065556 +1077.066289 +1077.099189 +1077.128194 +1077.129958 +1077.160794 +1077.177411 +1077.208380 +1077.265190 +1077.296059 +1077.457531 +1077.498623 +1077.548972 +1077.569185 +1077.643311 +1077.658862 +1077.674413 +1077.693128 +1077.693628 +1077.737484 +1077.754000 +1077.855199 +1077.856831 +1077.890297 +1077.908779 +1077.958496 +1080.005080 +1080.717900 +1083.412336 +1084.440940 +1089.029181 +1089.029680 +1090.029280 +1091.029678 +1093.030009 +1094.033971 +1098.028772 +1098.029638 +1098.030470 +1098.231769 +1098.430270 +1098.432002 +1098.530603 +1098.531202 +1098.630803 +1098.631102 +1098.631835 +1098.632201 +1098.731402 +1098.732001 +1098.830736 +1098.832334 +1099.031202 +1099.031735 +1099.131169 +1099.131901 +1099.231635 +1099.332101 +1099.432234 +1099.433033 +1099.531235 +1099.531867 +1099.532567 +1099.631401 +1099.631634 +1099.729803 +1099.731235 +1099.831401 +1099.831967 +1099.833133 +1100.131667 +1100.132799 +1100.231567 +1100.232766 +1100.332300 +1100.333099 +1100.431767 +1100.532433 +1100.631500 +1100.732932 +1100.831566 +1100.832033 +1101.031600 +1101.032099 +1101.131899 +1101.132632 +1101.331399 +1101.332798 +1101.432365 +1101.432931 +1101.628902 +1101.732331 +1102.031132 +1102.031632 +1102.032897 +1102.131998 +1102.132398 +1102.229767 +1102.230333 +1102.266264 +1102.328834 +1102.329767 +1102.330266 +1102.430166 +1102.632131 +1102.633163 +1102.729000 +1102.831731 +1102.832730 +1102.932097 +1103.031731 +1105.223137 +1105.232228 +1106.280679 +1106.378547 +1108.028462 +1108.036321 +1108.036621 +1108.055802 +1108.076015 +1108.098326 +1108.099258 +1108.113044 +1108.133724 +1108.149841 +1108.150207 +1108.162595 +1108.163261 +1108.163893 +1108.177546 +1108.178745 +1108.220770 +1108.336521 +1108.353870 +1108.418239 +1108.444546 +1108.445345 +1108.471619 +1108.472318 +1108.472751 +1108.488702 +1108.503553 +1108.504985 +1108.519571 +1108.547310 +1108.549241 +1108.563860 +1108.578079 +1108.608049 +1108.624932 +1108.651505 +1108.743147 +1108.814742 +1108.846011 +1108.919470 +1108.934156 +1108.952737 +1108.983173 +1109.030792 +1109.047642 +1109.075681 +1109.077279 +1109.093263 +1109.123799 +1109.219104 +1109.236187 +1109.382407 +1109.473483 +1109.522533 +1109.523532 +1109.570785 +1109.706216 +1109.725863 +1109.797458 +1109.798291 +1109.831691 +1109.832790 +1109.920102 +1109.921601 +1109.968354 +1110.075313 +1110.108147 +1110.185969 +1110.186369 +1110.201487 +1110.215173 +1110.215939 +1110.283638 +1110.313642 +1110.442712 +1110.563258 +1110.580708 +1110.613308 +1110.667920 +1110.748873 +1110.793728 +1110.843944 +1110.963624 +1110.981573 +1110.998889 +1111.157397 +1111.188799 +1111.244210 +1111.323764 +1111.363158 +1111.363824 +1111.382671 +1111.394859 +1111.480440 +1111.482072 +1111.543177 +1111.545009 +1111.578043 +1111.639614 +1111.641712 +1111.710044 +1111.755698 +1111.829857 +1111.847073 +1111.893593 +1111.939048 +1111.973647 +1112.008412 +1112.219967 +1112.284102 +1112.349237 +1112.367286 +1112.382637 +1112.396057 +1112.414405 +1112.449603 +1112.481638 +1112.482737 +1112.499687 +1112.516770 +1112.532654 +1112.534285 +1112.566420 +1112.567619 +1112.651368 +1112.685634 +1112.686267 +1112.705314 +1112.722996 +1112.741078 +1112.742976 +1112.778774 +1112.829024 +1112.830023 +1112.901984 +1112.940312 +1112.957029 +1112.957528 +1113.478474 +1113.515903 +1114.610773 +1115.949334 +1123.029480 +1125.029844 +1125.662044 +1126.030576 +1127.029509 +1128.653583 +1129.624012 +1129.908094 +1129.934368 +1130.252383 +1130.699136 +1130.898469 +1131.028373 +1131.879621 +1131.901099 +1133.231434 +1133.232500 +1133.331800 +1133.432566 +1133.433166 +1133.533399 +1133.632266 +1133.633765 +1133.731933 +1133.829702 +1133.903262 +1133.930268 +1134.032233 +1134.133465 +1134.232332 +1134.232732 +1134.233631 +1134.332299 +1134.533065 +1134.632965 +1134.634396 +1134.832032 +1134.932998 +1134.933264 +1135.033064 +1135.231266 +1135.331565 +1135.431265 +1135.494103 +1135.561302 +1135.562667 +1135.627869 +1135.729434 +1135.999463 +1136.333296 +1136.433829 +1136.532996 +1136.631031 +1136.631830 +1136.730465 +1136.730665 +1136.731098 +1137.031264 +1137.131197 +1137.232030 +1137.334094 +1137.528566 +1137.633827 +1137.734327 +1137.833228 +1137.932828 +1138.031063 +1138.031496 +1138.864595 +1140.058800 +1140.131028 +1141.252605 +1142.674881 +1143.030325 +1143.075547 +1143.076546 +1143.137252 +1143.151404 +1143.163858 +1143.177212 +1143.207315 +1143.251604 +1143.299689 +1143.347175 +1143.362227 +1143.375280 +1143.375780 +1143.389566 +1143.422799 +1143.587335 +1143.692030 +1143.720668 +1143.764857 +1143.765490 +1143.797857 +1143.876712 +1143.907847 +1143.938483 +1143.966688 +1143.968686 +1144.007447 +1144.007880 +1144.009179 +1144.051936 +1144.084570 +1144.101487 +1144.119169 +1144.275313 +1144.291596 +1144.461793 +1144.497190 +1144.593261 +1144.608679 +1144.609245 +1144.691363 +1144.692095 +1144.709345 +1144.743344 +1144.786567 +1144.837050 +1144.870816 +1144.918036 +1144.947973 +1144.948539 +1144.949371 +1144.950270 +1145.014506 +1145.080207 +1145.171782 +1145.272181 +1145.288532 +1145.289064 +1145.305781 +1145.352068 +1145.435351 +1145.436817 +1145.471682 +1145.594792 +1145.619567 +1145.621432 +1145.745408 +1145.747872 +1145.829224 +1145.862291 +1145.862890 +1145.933386 +1145.982670 +1145.984701 +1146.057895 +1146.123895 +1146.126027 +1146.160126 +1146.181105 +1146.268251 +1146.297488 +1146.372813 +1146.389729 +1146.423629 +1146.441511 +1146.454798 +1146.468118 +1146.480638 +1146.492893 +1146.494758 +1146.639579 +1146.653698 +1146.704314 +1146.776942 +1146.845740 +1146.876076 +1146.893958 +1146.912073 +1146.926092 +1147.025360 +1147.042709 +1147.079206 +1147.323794 +1147.376442 +1147.378306 +1147.392825 +1147.411973 +1147.461223 +1147.489129 +1147.550634 +1147.720997 +1147.721962 +1147.805912 +1147.839711 +1147.925559 +1147.957260 +1147.972179 +1148.009508 +1148.653297 +1148.758358 +1148.800882 +1148.831818 +1150.087528 +1150.091990 +1150.204944 +1152.390023 +1155.370373 +1155.443733 +1155.926450 +1155.995747 +1156.023086 +1156.281494 +1157.565442 +1157.640168 +1158.031010 +1158.348425 +1162.030673 +1162.239797 +1163.110658 +1163.467235 +1163.523145 +1164.271829 +1165.610656 +1165.671828 +1165.848418 +1165.886946 +1165.906060 +1165.999100 +1166.022710 +1166.859106 +1167.033398 +1167.112586 +1167.397567 +1168.230167 +1168.230733 +1168.330900 +1168.432231 +1168.532231 +1168.532464 +1168.632764 +1168.633230 +1168.731832 +1168.833030 +1169.032231 +1169.032830 +1169.130399 +1169.231431 +1169.331631 +1169.332663 +1169.333063 +1169.432963 +1169.532963 +1169.533263 +1169.634095 +1169.733262 +1169.830632 +1169.832064 +1170.432629 +1170.533894 +1170.632762 +1170.733261 +1170.833428 +1170.834061 +1170.834360 +1171.133627 +1171.134793 +1171.234460 +1171.333993 +1171.334659 +1171.432462 +1171.520007 +1171.730763 +1171.776883 +1171.831729 +1171.832561 +1172.032428 +1172.033460 +1172.134226 +1172.234425 +1172.632860 +1172.633426 +1172.634558 +1172.731961 +1172.732760 +1172.830462 +1172.832660 +1172.931528 +1172.931994 +1172.932460 +1173.032460 +1173.416476 +1173.933192 +1175.358298 +1175.640649 +1176.033556 +1176.756898 +1176.904517 +1176.924231 +1176.951404 +1176.974614 +1177.000355 +1177.091863 +1177.255333 +1177.508779 +1178.046208 +1178.073980 +1178.095325 +1178.097190 +1178.118935 +1178.131556 +1178.145841 +1178.159661 +1178.174713 +1178.206281 +1178.221166 +1178.235185 +1178.249205 +1178.251003 +1178.313673 +1178.331789 +1178.349338 +1178.409644 +1178.411642 +1178.458861 +1178.470150 +1178.505681 +1178.570083 +1178.604316 +1178.616470 +1178.638215 +1178.640346 +1178.688665 +1178.717802 +1178.786500 +1178.802584 +1178.851202 +1178.851568 +1178.901352 +1178.952501 +1178.952734 +1178.981538 +1179.081438 +1179.096157 +1179.235351 +1179.251268 +1179.267785 +1179.343409 +1179.403816 +1179.404182 +1179.453399 +1179.495957 +1179.497622 +1179.548038 +1179.591961 +1179.592493 +1179.609909 +1179.624195 +1179.669683 +1179.699120 +1179.758794 +1179.759892 +1179.775643 +1179.843475 +1179.897288 +1179.944974 +1180.029023 +1180.065420 +1180.101684 +1180.296322 +1180.311407 +1180.343508 +1180.398620 +1180.443908 +1180.534983 +1180.536515 +1180.675143 +1180.706345 +1180.750101 +1180.752066 +1180.796821 +1180.810075 +1180.838912 +1180.854463 +1180.897287 +1180.899152 +1180.939378 +1180.953265 +1181.109242 +1181.155629 +1181.173577 +1181.289794 +1181.318865 +1181.320830 +1181.337513 +1181.338179 +1181.353431 +1181.395422 +1181.412904 +1181.415302 +1181.430953 +1181.492658 +1181.511939 +1181.554196 +1181.632451 +1181.678239 +1181.710007 +1181.728389 +1181.747203 +1181.803713 +1181.818998 +1181.906843 +1181.920696 +1181.922195 +1182.026790 +1182.058059 +1182.120596 +1182.121462 +1182.155195 +1182.223593 +1182.224359 +1182.266916 +1182.298285 +1182.318065 +1182.335581 +1182.381568 +1182.381934 +1182.467316 +1182.483832 +1182.500083 +1182.582634 +1182.585264 +1182.616400 +1182.720729 +1182.739377 +1182.757592 +1182.790192 +1182.854661 +1182.873243 +1182.889093 +1182.889393 +1182.891025 +1183.004977 +1183.005777 +1183.234881 +1183.235247 +1183.376306 +1183.443505 +1183.654594 +1184.307940 +1185.051895 +1185.224755 +1185.709970 +1186.678201 +1187.454057 +1193.029376 +1193.030375 +1194.501336 +1194.636068 +1194.691213 +1194.743594 +1194.777826 +1194.813424 +1194.874896 +1195.251785 +1195.594342 +1195.755314 +1195.763872 +1196.031038 +1196.455813 +1197.113688 +1197.158143 +1197.730537 +1197.999768 +1198.015519 +1198.403497 +1198.418249 +1198.506660 +1198.797003 +1199.135264 +1199.158508 +1199.185780 +1199.225507 +1199.260772 +1199.264668 +1200.747018 +1200.940258 +1201.180184 +1202.149614 +1202.196400 +1203.030166 +1203.031098 +1203.131131 +1203.131631 +1203.332796 +1203.432097 +1203.433262 +1203.529599 +1203.531664 +1203.630664 +1203.831297 +1203.831697 +1203.832529 +1203.932129 +1203.933195 +1204.032262 +1204.132096 +1204.132296 +1204.132329 +1204.132529 +1204.231929 +1204.232562 +1204.334327 +1204.432762 +1204.433161 +1204.532961 +1204.533328 +1204.534027 +1204.632495 +1204.633228 +1204.634227 +1204.733361 +1204.734926 +1204.833094 +1204.932961 +1204.972854 +1205.331462 +1205.332727 +1205.333460 +1205.433626 +1205.533227 +1205.731328 +1205.732394 +1205.832427 +1205.833726 +1205.934125 +1206.032460 +1206.033326 +1206.131428 +1206.419773 +1206.630895 +1206.632093 +1206.732360 +1206.732759 +1206.833758 +1207.033392 +1207.133392 +1207.134391 +1207.232426 +1207.331127 +1207.333025 +1207.530827 +1207.631726 +1207.831959 +1207.833358 +1207.932658 +1208.289901 +1208.322368 +1210.412909 +1211.369984 +1213.054498 +1213.087132 +1213.087565 +1213.110175 +1213.139746 +1213.140079 +1213.153432 +1213.167085 +1213.219699 +1213.220432 +1213.221431 +1213.284867 +1213.345840 +1213.347105 +1213.362057 +1213.435084 +1213.450102 +1213.511707 +1213.570881 +1213.604714 +1213.646039 +1213.679206 +1213.707244 +1213.708810 +1213.801184 +1213.831287 +1213.877374 +1213.954330 +1214.027657 +1214.028290 +1214.058826 +1214.073112 +1214.108110 +1214.123561 +1214.188996 +1214.204980 +1214.234450 +1214.249602 +1214.251067 +1214.358326 +1214.374610 +1214.387663 +1214.419132 +1214.544839 +1214.623128 +1214.677706 +1214.712738 +1214.729521 +1214.744839 +1214.868582 +1214.896221 +1214.896687 +1214.915768 +1214.932585 +1214.960423 +1215.012238 +1215.028322 +1215.095588 +1215.111406 +1215.190926 +1215.218265 +1215.232318 +1215.233150 +1215.251665 +1215.265451 +1215.360756 +1215.361189 +1215.397852 +1215.457825 +1215.502581 +1215.535048 +1215.537146 +1215.550732 +1215.551299 +1215.602381 +1215.621795 +1215.671412 +1215.721528 +1215.749500 +1215.809840 +1215.856793 +1215.906809 +1215.972743 +1216.004079 +1216.005011 +1216.021028 +1216.071445 +1216.231085 +1216.232517 +1216.393456 +1216.409340 +1216.535447 +1216.694055 +1216.709639 +1216.743439 +1216.848367 +1216.865383 +1216.947368 +1217.045470 +1217.155027 +1217.219762 +1217.235912 +1217.311437 +1217.313535 +1217.330418 +1217.365682 +1217.379402 +1217.380934 +1217.398383 +1217.434813 +1217.622325 +1217.623824 +1217.728985 +1217.743904 +1217.773807 +1217.842372 +1217.843537 +1217.894986 +1217.895718 +1218.000047 +1218.249931 +1218.524622 +1219.002411 +1220.062350 +1220.088124 +1220.142070 +1220.171074 +1220.178100 +1220.183528 +1220.187658 +1220.201077 +1220.211933 +1221.682361 +1221.715362 +1221.730646 +1221.744399 +1221.762748 +1222.007836 +1223.381227 +1224.415126 +1224.625249 +1226.016190 +1227.263341 +1228.222981 +1228.303500 +1228.446490 +1228.900336 +1229.030539 +1229.253050 +1229.556379 +1229.631171 +1230.030738 +1230.030971 +1230.224144 +1230.649752 +1232.224509 +1233.005860 +1233.216482 +1233.798500 +1233.819645 +1234.176854 +1234.191773 +1234.667530 +1235.546916 +1235.892437 +1236.175087 +1236.387841 +1236.748247 +1236.949412 +1237.092569 +1237.123538 +1237.345283 +1238.029897 +1238.030197 +1238.031130 +1238.129997 +1238.130896 +1238.131063 +1238.231496 +1238.231929 +1238.232361 +1238.249578 +1238.331928 +1238.332461 +1238.341752 +1238.432328 +1238.532561 +1238.533027 +1238.533793 +1238.632827 +1238.641752 +1238.732161 +1238.733526 +1238.831329 +1238.832228 +1238.932827 +1238.933759 +1239.033060 +1239.042251 +1239.132960 +1239.233359 +1239.332560 +1239.333160 +1239.333493 +1239.432727 +1239.433159 +1239.443682 +1239.446313 +1239.449143 +1239.547445 +1239.633226 +1239.633459 +1239.634724 +1239.733525 +1239.833326 +1239.833559 +1239.934391 +1240.032992 +1240.034091 +1240.034524 +1240.043349 +1240.044814 +1240.133791 +1240.134790 +1240.233592 +1240.233858 +1240.243182 +1240.334724 +1240.433558 +1240.433891 +1240.529928 +1240.531693 +1240.733558 +1240.833391 +1240.833891 +1241.033657 +1241.034556 +1241.049075 +1241.134190 +1241.134556 +1241.150574 +1241.233391 +1241.233924 +1241.234889 +1241.332358 +1241.332891 +1241.333491 +1241.432125 +1241.432991 +1241.532558 +1241.543647 +1241.737253 +1241.824266 +1241.839817 +1241.931991 +1241.932324 +1242.034755 +1242.132824 +1242.169820 +1242.231891 +1242.232357 +1242.233490 +1242.333689 +1242.334222 +1242.634255 +1242.734355 +1242.843046 +1242.932323 +1242.943013 +1243.034987 +1243.348174 +1243.440781 +1243.443112 +1244.772581 +1245.087566 +1245.121465 +1245.167220 +1245.219301 +1245.524262 +1245.620200 +1246.096456 +1246.115637 +1246.586332 +1246.592693 +1246.762223 +1246.929422 +1246.958593 +1247.075942 +1247.975442 +1248.037147 +1248.043108 +1248.045072 +1248.061889 +1248.062322 +1248.083900 +1248.084400 +1248.134649 +1248.172944 +1248.174043 +1248.199618 +1248.229721 +1248.230254 +1248.257992 +1248.331585 +1248.547203 +1248.657493 +1248.670746 +1248.806144 +1248.877472 +1248.966550 +1248.981069 +1249.059257 +1249.134115 +1249.151598 +1249.222027 +1249.239477 +1249.268947 +1249.334981 +1249.336480 +1249.354162 +1249.372677 +1249.373509 +1249.387662 +1249.404079 +1249.486896 +1249.500882 +1249.534248 +1249.561221 +1249.624025 +1249.682134 +1249.714801 +1249.770911 +1249.804311 +1249.816266 +1249.844704 +1249.910105 +1249.924824 +1249.939742 +1249.966316 +1249.975939 +1250.143105 +1250.154561 +1250.248600 +1250.281567 +1250.297751 +1250.399349 +1250.414767 +1250.480734 +1250.494887 +1250.664717 +1250.681200 +1250.713534 +1250.760554 +1250.791823 +1250.833248 +1250.861020 +1250.889891 +1250.901846 +1251.088393 +1251.089358 +1251.103844 +1251.121693 +1251.151096 +1251.152695 +1251.205475 +1251.222991 +1251.259488 +1251.292455 +1251.323024 +1251.391189 +1251.424556 +1251.520760 +1251.612435 +1251.664183 +1251.724989 +1251.726287 +1251.855025 +1251.886893 +1251.902811 +1251.982664 +1251.998082 +1252.015431 +1252.047832 +1252.049464 +1252.113833 +1252.229084 +1252.261785 +1252.294685 +1252.342071 +1252.361218 +1252.392487 +1252.408704 +1252.473406 +1252.552261 +1252.602477 +1252.618394 +1252.754225 +1252.799580 +1252.836143 +1252.870808 +1252.871574 +1252.889989 +1252.934445 +1252.981564 +1253.341903 +1253.566412 +1253.605773 +1253.820658 +1256.683592 +1256.707834 +1256.913828 +1256.951723 +1257.307367 +1259.028178 +1260.031307 +1261.492645 +1261.528675 +1261.664406 +1261.676893 +1261.841062 +1261.956081 +1262.109061 +1262.364472 +1262.982453 +1263.018051 +1263.031138 +1263.196905 +1263.531370 +1263.942292 +1263.997804 +1264.269831 +1264.686547 +1264.976091 +1265.031336 +1265.482118 +1265.514086 +1265.625741 +1265.658142 +1265.918181 +1266.032800 +1266.501031 +1266.700964 +1267.033165 +1267.531167 +1267.538593 +1267.908789 +1268.031333 +1269.155840 +1269.220675 +1269.238990 +1269.259037 +1269.522673 +1269.563033 +1269.589739 +1270.245649 +1270.473288 +1270.481846 +1270.506055 +1270.608952 +1271.300227 +1271.313580 +1271.356071 +1271.357770 +1271.461266 +1272.116710 +1272.132461 +1272.144715 +1272.186007 +1272.188838 +1272.221438 +1272.233959 +1273.031428 +1273.132593 +1273.142217 +1273.232793 +1273.433625 +1273.434890 +1273.534890 +1273.544081 +1273.634158 +1273.652939 +1273.733392 +1273.734091 +1273.734890 +1273.743748 +1273.834590 +1273.935689 +1274.034157 +1274.034990 +1274.134157 +1274.169888 +1274.434390 +1274.534190 +1274.641216 +1274.833857 +1274.834822 +1274.835289 +1274.934955 +1275.035022 +1275.035288 +1275.133157 +1275.134422 +1275.234023 +1275.234256 +1275.235055 +1275.235721 +1275.335421 +1275.344346 +1275.434589 +1275.435388 +1275.534289 +1275.535221 +1275.634089 +1275.635454 +1275.734355 +1275.735121 +1275.834622 +1275.933989 +1275.934522 +1275.934855 +1276.035554 +1276.036286 +1276.134322 +1276.134588 +1276.135221 +1276.135454 +1276.135953 +1276.234555 +1276.235487 +1276.334455 +1276.335387 +1276.434588 +1276.435354 +1276.535453 +1276.634887 +1276.635387 +1276.635886 +1276.636153 +1276.736852 +1276.934487 +1276.934787 +1276.935320 +1277.035586 +1277.049172 +1277.235486 +1277.245842 +1277.249805 +1277.259429 +1277.335120 +1277.335819 +1277.344111 +1277.350704 +1277.434653 +1277.435219 +1277.446042 +1277.535919 +1277.734853 +1278.788232 +1278.873613 +1278.913873 +1278.989863 +1279.955596 +1280.027624 +1280.050268 +1280.085799 +1280.315603 +1280.701017 +1280.724194 +1280.788130 +1280.811406 +1280.832685 +1281.798518 +1282.737079 +1283.040175 +1283.087461 +1283.111904 +1283.112703 +1283.125157 +1283.136779 +1283.175140 +1283.203312 +1283.232783 +1283.233182 +1283.325490 +1283.327022 +1283.392489 +1283.393522 +1283.447434 +1283.507741 +1283.546269 +1283.578104 +1283.750032 +1283.781800 +1283.869812 +1283.888360 +1283.996884 +1284.066914 +1284.094753 +1284.128686 +1284.182499 +1284.198616 +1284.215765 +1284.321226 +1284.335312 +1284.401113 +1284.507873 +1284.522425 +1284.549198 +1284.611702 +1284.612169 +1284.664283 +1284.682698 +1284.773674 +1284.817530 +1284.932348 +1285.055392 +1285.055991 +1285.137543 +1285.179001 +1285.272474 +1285.304709 +1285.320027 +1285.389091 +1285.449264 +1285.524622 +1285.541838 +1285.575238 +1285.576836 +1285.606740 +1285.622923 +1285.673306 +1285.674971 +1285.745035 +1285.746233 +1285.777602 +1285.819726 +1285.869410 +1285.886626 +1285.950529 +1285.967179 +1286.016629 +1286.225986 +1286.241005 +1286.370908 +1286.420958 +1286.562183 +1286.592353 +1286.694418 +1286.695183 +1286.711967 +1286.726319 +1286.727951 +1286.808570 +1286.823555 +1286.906439 +1286.951161 +1286.952526 +1286.985626 +1286.987557 +1287.111800 +1287.130348 +1287.145999 +1287.173538 +1287.207937 +1287.256255 +1287.286492 +1287.301543 +1287.320424 +1287.338706 +1287.382396 +1287.399678 +1287.400278 +1287.435143 +1287.436908 +1287.499112 +1287.530914 +1287.532778 +1287.599245 +1287.616794 +1287.633411 +1287.682961 +1287.715762 +1287.731713 +1287.824653 +1287.843068 +1287.911932 +1287.958752 +1287.959351 +1287.989688 +1288.023853 +1289.220922 +1289.327748 +1290.757850 +1294.524646 +1299.032900 +1302.412817 +1308.031326 +1308.132525 +1308.332991 +1308.433324 +1308.634822 +1308.733523 +1308.934688 +1308.934988 +1309.033922 +1309.134089 +1309.135054 +1309.233922 +1309.234821 +1309.335421 +1309.433922 +1309.435287 +1309.534721 +1309.634088 +1309.834388 +1309.835387 +1309.933788 +1309.934088 +1309.935187 +1309.935520 +1310.035020 +1310.134221 +1310.334088 +1310.433688 +1310.434087 +1310.434321 +1310.435020 +1310.435419 +1310.534387 +1310.535253 +1310.634287 +1310.635253 +1310.635652 +1310.733654 +1310.734453 +1310.735452 +1310.834187 +1310.834520 +1310.835519 +1310.934353 +1310.934720 +1310.935519 +1311.034553 +1311.034819 +1311.035352 +1311.135585 +1311.234253 +1311.234986 +1311.235552 +1311.334087 +1311.335285 +1311.434353 +1311.434553 +1311.435319 +1311.534120 +1311.534419 +1311.634919 +1311.635785 +1311.734386 +1311.834352 +1311.835351 +1311.934319 +1311.935551 +1312.035385 +1312.131955 +1312.233952 +1312.535417 +1312.833985 +1312.835617 +1312.933985 +1313.034018 +1313.034684 +1313.035350 +1314.079172 +1318.040307 +1318.040973 +1318.059188 +1318.084463 +1318.109804 +1318.122625 +1318.135978 +1318.149398 +1318.176437 +1318.190756 +1318.249997 +1318.283031 +1318.285395 +1318.311069 +1318.325588 +1318.350896 +1318.351196 +1318.396750 +1318.397549 +1318.462518 +1318.509204 +1318.536544 +1318.538542 +1318.551995 +1318.597449 +1318.598881 +1318.656290 +1318.683030 +1318.699780 +1318.784062 +1318.797249 +1318.829417 +1318.845468 +1318.909837 +1318.980266 +1318.980899 +1318.996683 +1318.997449 +1319.012234 +1319.037775 +1319.071941 +1319.104875 +1319.248131 +1319.305474 +1319.355324 +1319.381864 +1319.382530 +1319.383995 +1319.416396 +1319.418028 +1319.435410 +1319.452693 +1319.483496 +1319.531281 +1319.547265 +1319.548697 +1319.603276 +1319.667079 +1319.712866 +1319.757788 +1319.759619 +1319.816795 +1319.834211 +1319.852959 +1319.867711 +1319.868976 +1319.897581 +1319.943369 +1319.960318 +1319.976103 +1320.035643 +1320.051294 +1320.051627 +1320.053259 +1320.086092 +1320.117927 +1320.118726 +1320.135010 +1320.181697 +1320.183861 +1320.212899 +1320.260818 +1320.383062 +1320.384227 +1320.419692 +1320.458353 +1320.501210 +1320.534310 +1320.561983 +1320.657154 +1320.766578 +1320.826585 +1320.857221 +1320.858852 +1320.875036 +1320.959718 +1320.977200 +1321.046431 +1321.090753 +1321.140637 +1321.156288 +1321.173471 +1321.174836 +1321.230414 +1321.243834 +1321.259751 +1321.275335 +1321.275835 +1321.368709 +1321.383394 +1321.398112 +1321.427983 +1321.490353 +1321.537240 +1321.574669 +1321.592917 +1321.608402 +1321.695648 +1321.745365 +1321.746797 +1321.762414 +1321.778132 +1321.779897 +1321.862281 +1321.862747 +1321.864312 +1321.881329 +1321.911632 +1321.912631 +1321.930946 +1321.972771 +1321.989654 +1322.008335 +1322.010233 +1322.023320 +1322.037206 +1322.052624 +1322.054522 +1322.098145 +1322.099677 +1322.133077 +1322.134875 +1322.255654 +1322.273902 +1322.320789 +1322.322620 +1322.337439 +1322.338771 +1322.351292 +1322.381761 +1322.425817 +1322.442101 +1322.459550 +1322.558318 +1322.589420 +1322.591651 +1322.645797 +1322.658517 +1322.662513 +1322.679929 +1322.710865 +1322.737938 +1322.738504 +1322.757518 +1322.771471 +1322.772637 +1322.774102 +1322.791085 +1322.792150 +1322.809000 +1322.823586 +1322.840435 +1322.841867 +1322.857318 +1322.893482 +1322.925217 +1322.941201 +1322.976699 +1323.019523 +1324.806834 +1324.817190 +1324.830710 +1324.835638 +1324.953787 +1325.832574 +1325.878494 +1325.908597 +1333.031334 +1333.032000 +1336.031464 +1338.031962 +1343.232823 +1343.333422 +1343.334221 +1343.432323 +1343.432556 +1343.532589 +1343.533655 +1343.534121 +1343.633521 +1343.733555 +1343.734787 +1343.831890 +1343.833088 +1343.834054 +1343.931790 +1344.135119 +1344.234287 +1344.235619 +1344.333887 +1344.334253 +1344.335286 +1344.433454 +1344.433887 +1344.434719 +1344.630757 +1344.631256 +1344.632621 +1344.732255 +1344.732521 +1344.833986 +1344.934219 +1344.934985 +1344.935152 +1345.033387 +1345.034086 +1345.133353 +1345.133653 +1345.134619 +1345.233287 +1345.234585 +1345.333420 +1345.334219 +1345.533653 +1345.534252 +1345.534918 +1345.537249 +1345.632953 +1345.633852 +1345.634119 +1345.733852 +1345.734385 +1345.735084 +1345.834085 +1345.834285 +1345.834918 +1345.835451 +1345.934318 +1345.934884 +1345.935317 +1346.033819 +1346.133919 +1346.135417 +1346.233852 +1346.234085 +1346.434251 +1346.434551 +1346.434984 +1346.535616 +1346.633951 +1346.733985 +1346.735117 +1346.835416 +1346.934351 +1346.935083 +1346.935416 +1347.034450 +1347.135516 +1347.234350 +1347.235682 +1347.334350 +1347.433984 +1347.435416 +1347.533984 +1347.535382 +1347.634050 +1347.634417 +1347.733950 +1347.735149 +1347.832119 +1347.832718 +1347.833717 +1347.933717 +1347.934483 +1348.033717 +1348.035049 +1348.035349 +1349.103946 +1351.765282 +1351.820493 +1353.040006 +1353.068710 +1353.078500 +1353.079033 +1353.080432 +1353.119593 +1353.121324 +1353.258021 +1353.287758 +1353.289356 +1353.344701 +1353.363049 +1353.375503 +1353.485393 +1353.502276 +1353.620658 +1353.634044 +1353.635643 +1353.763714 +1353.779432 +1353.828017 +1353.876801 +1354.029848 +1354.064846 +1354.065446 +1354.082928 +1354.231280 +1354.309035 +1354.309868 +1354.325119 +1354.338939 +1354.367876 +1354.431546 +1354.432079 +1354.451626 +1354.502808 +1354.522388 +1354.605006 +1354.624819 +1354.641003 +1354.690387 +1354.734676 +1354.828249 +1354.829148 +1354.880297 +1354.896714 +1354.929148 +1355.165711 +1355.197779 +1355.228981 +1355.229847 +1355.230613 +1355.262214 +1355.282594 +1355.312897 +1355.331578 +1355.363213 +1355.380330 +1355.380563 +1355.419024 +1355.419357 +1355.436607 +1355.472904 +1355.507103 +1355.541668 +1355.560249 +1355.593383 +1355.609300 +1355.644199 +1355.693516 +1355.726483 +1355.759117 +1355.789154 +1355.802241 +1355.817692 +1355.830446 +1355.847062 +1355.849094 +1355.881794 +1356.044864 +1356.046729 +1356.109267 +1356.211031 +1356.256319 +1356.274501 +1356.368507 +1356.442866 +1356.476765 +1356.547594 +1356.674934 +1356.709133 +1356.709732 +1356.831077 +1356.845663 +1356.897311 +1356.899109 +1356.917258 +1356.963878 +1357.049559 +1357.078163 +1357.094147 +1357.119355 +1357.155386 +1357.173368 +1357.220521 +1357.393081 +1357.414160 +1357.431743 +1357.463078 +1357.465509 +1357.481859 +1357.567074 +1357.567307 +1357.584989 +1357.647327 +1357.666042 +1357.745895 +1357.764177 +1357.764476 +1357.765775 +1357.819721 +1357.836105 +1357.919987 +1357.973001 +1358.023617 +1358.025215 +1358.304802 +1360.153352 +1360.970467 +1365.256111 +1365.970695 +1365.971661 +1365.972294 +1365.973626 +1366.967864 +1366.968397 +1368.966896 +1368.972257 +1369.967028 +1369.972423 +1369.972623 +1370.814813 +1370.966894 +1370.973554 +1375.972683 +1376.168587 +1376.169020 +1376.266855 +1376.470352 +1376.573582 +1376.576912 +1376.668120 +1376.769486 +1376.973748 +1377.067787 +1377.070751 +1377.467887 +1377.870484 +1378.068052 +1378.070417 +1378.368085 +1378.370816 +1378.467719 +1378.467985 +1378.569084 +1378.570050 +1378.570516 +1378.574212 +1378.768018 +1378.968718 +1379.068151 +1379.070582 +1379.271015 +1379.474545 +1379.568184 +1379.670049 +1379.968184 +1380.074444 +1380.174644 +1380.368749 +1380.369049 +1380.374477 +1380.468916 +1380.470747 +1380.578872 +1380.669981 +1380.768816 +1381.935215 +1385.979466 +1385.979766 +1386.006739 +1386.015264 +1386.034911 +1386.076003 +1386.076802 +1386.100912 +1386.159753 +1386.170842 +1386.196483 +1386.244901 +1386.266746 +1386.268078 +1386.341471 +1386.360418 +1386.420891 +1386.456556 +1386.475636 +1386.476469 +1386.518693 +1386.530548 +1386.532380 +1386.553891 +1386.582729 +1386.596083 +1386.610035 +1386.630814 +1386.632246 +1386.643369 +1386.683095 +1386.731980 +1386.742469 +1386.766812 +1386.780565 +1386.782629 +1386.859519 +1386.881797 +1386.883328 +1386.907837 +1386.919525 +1386.972539 +1386.972905 +1386.974237 +1386.996648 +1387.017328 +1387.065979 +1387.090754 +1387.155955 +1387.168843 +1387.182396 +1387.209435 +1387.257554 +1387.267910 +1387.268310 +1387.281929 +1387.295749 +1387.333012 +1387.344533 +1387.354590 +1387.362482 +1387.380830 +1387.393951 +1387.404673 +1387.406072 +1387.432345 +1387.525019 +1387.546997 +1387.560084 +1387.573870 +1387.574803 +1387.589555 +1387.623920 +1387.624353 +1387.637973 +1387.648129 +1387.699445 +1387.758486 +1387.766777 +1387.768775 +1387.808236 +1387.831612 +1387.854023 +1387.984659 +1387.986124 +1387.986990 +1388.049794 +1388.051959 +1388.078665 +1388.080363 +1388.092385 +1388.131645 +1388.133310 +1388.167809 +1388.192152 +1388.206903 +1388.208835 +1388.221356 +1388.223720 +1388.234176 +1388.235675 +1388.236774 +1388.260050 +1388.285691 +1388.300710 +1388.315395 +1388.325118 +1388.348928 +1388.361615 +1388.362215 +1388.364213 +1388.390287 +1388.406237 +1388.473070 +1388.483893 +1388.517393 +1388.531312 +1388.570606 +1388.572304 +1388.609068 +1388.688421 +1388.700742 +1388.701375 +1388.720789 +1388.732744 +1388.757053 +1388.758784 +1388.771205 +1388.785391 +1388.787189 +1388.849593 +1388.852291 +1388.895947 +1388.908401 +1388.975301 +1389.045797 +1389.046563 +1389.076400 +1389.151225 +1389.180529 +1389.196879 +1389.225084 +1389.239203 +1389.256020 +1389.268641 +1389.269606 +1389.284325 +1389.312330 +1389.314029 +1389.384625 +1389.386290 +1389.470139 +1389.471005 +1389.499876 +1389.523918 +1389.566975 +1389.584425 +1389.626582 +1389.637172 +1389.747561 +1389.748227 +1389.809033 +1389.824784 +1389.837704 +1389.869373 +1389.897778 +1389.913395 +1389.929213 +1389.931011 +1389.945297 +1389.958916 +1389.975400 +1389.988753 +1390.002839 +1390.020588 +1390.051424 +1390.066176 +1390.126449 +1390.143065 +1390.173135 +1390.189219 +1390.203072 +1390.219489 +1390.233275 +1390.248626 +1390.269106 +1390.272902 +1390.295080 +1390.297844 +1390.349359 +1390.375932 +1390.390618 +1390.407268 +1390.466775 +1390.510831 +1390.511397 +1390.627081 +1390.674633 +1390.720221 +1390.723484 +1390.767374 +1390.861113 +1390.902838 +1400.973691 +1400.974123 +1401.966930 +1403.973921 +1403.974453 +1404.974186 +1405.966826 +1405.967725 +1411.068019 +1411.068785 +1411.070517 +1411.268119 +1411.274013 +1411.368186 +1411.374080 +1411.468852 +1411.474579 +1411.570183 +1411.774845 +1412.069817 +1412.075245 +1412.371048 +1412.471581 +1412.475277 +1412.575277 +1412.668884 +1412.768917 +1412.868883 +1412.968917 +1413.175377 +1413.375310 +1413.671380 +1413.675343 +1413.869515 +1413.875476 +1414.169149 +1414.170814 +1414.269615 +1414.371013 +1414.569581 +1414.770979 +1414.969281 +1415.069547 +1415.169680 +1415.171612 +1415.269181 +1415.368848 +1415.369580 +1415.370912 +1415.470979 +1415.769447 +1415.969580 +1417.523424 +1418.626187 +1419.200113 +1419.286293 +1420.989455 +1421.000410 +1421.007204 +1421.040703 +1421.064746 +1421.089588 +1421.150693 +1421.187357 +1421.200410 +1421.250527 +1421.271805 +1421.319857 +1421.344033 +1421.357653 +1421.370307 +1421.383127 +1421.428582 +1421.428748 +1421.428948 +1421.441635 +1421.442368 +1421.453923 +1421.466377 +1421.479997 +1421.481729 +1421.495815 +1421.509701 +1421.574169 +1421.636840 +1421.650893 +1421.662448 +1421.664879 +1421.675435 +1421.703240 +1421.713830 +1421.714895 +1421.715828 +1421.729481 +1421.741069 +1421.742534 +1421.768075 +1421.805671 +1421.819224 +1421.862647 +1421.915961 +1421.918092 +1421.994149 +1422.005071 +1422.038638 +1422.065045 +1422.079597 +1422.092983 +1422.133043 +1422.146097 +1422.176200 +1422.197978 +1422.198811 +1422.280596 +1422.282660 +1422.298012 +1422.353190 +1422.386190 +1422.399776 +1422.442767 +1422.471571 +1422.484125 +1422.603306 +1422.605737 +1422.627881 +1422.640336 +1422.653789 +1422.729646 +1422.742167 +1422.753356 +1422.777465 +1422.826316 +1422.838637 +1422.840668 +1422.852956 +1422.865310 +1422.901274 +1422.914961 +1422.942333 +1422.956020 +1422.967508 +1422.979629 +1423.021387 +1423.022287 +1423.046562 +1423.084691 +1423.113362 +1423.127515 +1423.152689 +1423.155154 +1423.156153 +1423.194214 +1423.220721 +1423.221387 +1423.246595 +1423.272336 +1423.336372 +1423.379829 +1423.390951 +1423.392849 +1423.431044 +1423.453322 +1423.465443 +1423.478030 +1423.489652 +1423.541034 +1423.541767 +1423.580395 +1423.590651 +1423.603938 +1423.605037 +1423.619122 +1423.644697 +1423.659382 +1423.672069 +1423.685556 +1423.713828 +1423.723285 +1423.734973 +1423.764011 +1423.807900 +1423.820254 +1423.823018 +1423.916725 +1424.006335 +1424.007067 +1424.016691 +1424.018656 +1424.032675 +1424.073701 +1424.098076 +1424.112462 +1424.139402 +1424.141133 +1424.183791 +1424.185489 +1424.210197 +1424.269405 +1424.282991 +1424.284456 +1424.323651 +1424.362245 +1424.392182 +1424.458382 +1424.491483 +1424.503870 +1424.544163 +1424.560180 +1424.574899 +1424.576597 +1424.588485 +1424.602138 +1424.614326 +1424.734906 +1424.751489 +1424.776764 +1424.820387 +1424.834606 +1424.859847 +1424.889085 +1424.918821 +1424.987186 +1425.001672 +1425.016723 +1425.028245 +1425.040633 +1425.041465 +1425.046960 +1425.056284 +1425.086254 +1425.086787 +1425.088552 +1425.143630 +1425.143896 +1425.213293 +1425.216823 +1425.244762 +1425.271735 +1425.273733 +1425.321585 +1425.322384 +1425.377196 +1425.409231 +1425.423217 +1425.436303 +1425.448824 +1425.451322 +1425.480592 +1425.481958 +1425.495045 +1425.495544 +1425.522883 +1425.538268 +1425.539500 +1425.540000 +1425.567539 +1425.624282 +1425.697742 +1425.698341 +1425.727479 +1425.739034 +1425.741165 +1425.793812 +1425.839134 +1425.920552 +1426.352320 +1426.354884 +1426.361411 +1426.833072 +1428.654982 +1430.075826 +1431.372561 +1433.590275 +1436.334061 +1436.760168 +1436.783745 +1436.784477 +1436.807121 +1436.971157 +1437.976684 +1439.970088 +1440.932725 +1440.968855 +1442.137752 +1442.377212 +1443.593928 +1445.976676 +1446.170881 +1446.470848 +1446.476908 +1446.571181 +1446.671281 +1446.771380 +1446.872712 +1446.971280 +1446.972046 +1447.177940 +1447.270614 +1447.472345 +1447.572046 +1447.771779 +1447.972012 +1447.977806 +1448.072178 +1448.371778 +1448.472145 +1448.670113 +1448.671345 +1448.672178 +1449.071811 +1449.072810 +1449.174009 +1449.871610 +1449.974341 +1450.074507 +1450.171810 +1450.271910 +1450.272542 +1450.371577 +1450.372942 +1450.471576 +1450.472509 +1450.572109 +1450.673741 +1450.872841 +1450.971909 +1450.973974 +1451.730217 +1451.741638 +1451.752161 +1451.799647 +1451.824689 +1451.825621 +1452.440972 +1452.485694 +1453.461750 +1454.324719 +1454.432345 +1455.860149 +1455.968974 +1455.976366 +1455.976699 +1455.983992 +1455.985224 +1455.985524 +1456.021021 +1456.055254 +1456.065743 +1456.090352 +1456.114028 +1456.127482 +1456.138903 +1456.152457 +1456.176666 +1456.201474 +1456.214428 +1456.224318 +1456.244531 +1456.258917 +1456.260515 +1456.283459 +1456.324318 +1456.325883 +1456.337471 +1456.339070 +1456.349926 +1456.372570 +1456.374568 +1456.385956 +1456.386655 +1456.387521 +1456.402273 +1456.439503 +1456.478930 +1456.490385 +1456.529712 +1456.544464 +1456.569506 +1456.583758 +1456.609133 +1456.626182 +1456.639003 +1456.650358 +1456.699309 +1456.713495 +1456.713961 +1456.726415 +1456.739369 +1456.739935 +1456.775866 +1456.800208 +1456.801940 +1456.824217 +1456.857684 +1456.872569 +1456.929212 +1456.983724 +1456.985156 +1456.998410 +1457.024217 +1457.037837 +1457.136638 +1457.137704 +1457.160015 +1457.161380 +1457.202372 +1457.225716 +1457.345396 +1457.384723 +1457.385722 +1457.469205 +1457.543164 +1457.544929 +1457.556651 +1457.557117 +1457.571403 +1457.595013 +1457.705602 +1457.715725 +1457.716158 +1457.730077 +1457.743997 +1457.758449 +1457.783590 +1457.794013 +1457.806334 +1457.881159 +1457.933540 +1457.958915 +1457.959448 +1457.972734 +1457.984456 +1458.014726 +1458.049757 +1458.064343 +1458.086121 +1458.115258 +1458.124915 +1458.137836 +1458.149258 +1458.175198 +1458.204003 +1458.236504 +1458.304902 +1458.329677 +1458.341399 +1458.358149 +1458.455318 +1458.471269 +1458.526580 +1458.539101 +1458.552221 +1458.566873 +1458.568039 +1458.589450 +1458.676097 +1458.684189 +1458.738235 +1458.746460 +1458.747326 +1458.775398 +1458.853852 +1458.869237 +1458.906167 +1458.933007 +1458.947525 +1458.974898 +1458.976663 +1459.039966 +1459.083489 +1459.126246 +1459.139999 +1459.244828 +1459.285853 +1459.312993 +1459.323316 +1459.378228 +1459.390648 +1459.418387 +1459.436170 +1459.447791 +1459.448124 +1459.507398 +1459.563808 +1459.575530 +1459.576596 +1459.657148 +1459.659313 +1459.710562 +1459.748890 +1459.790049 +1459.877528 +1459.899739 +1459.922283 +1459.949656 +1459.963408 +1460.018353 +1460.020651 +1460.075729 +1460.086319 +1460.087118 +1460.101803 +1460.130774 +1460.144827 +1460.159878 +1460.220584 +1460.230075 +1460.231340 +1460.244793 +1460.245393 +1460.283388 +1460.283655 +1460.285686 +1460.296575 +1460.322149 +1460.415023 +1460.492479 +1460.494077 +1460.508296 +1460.509395 +1460.560644 +1460.573564 +1460.588116 +1460.601037 +1460.602435 +1460.634037 +1460.702602 +1460.717953 +1460.742062 +1460.745193 +1460.745958 +1460.789914 +1460.823448 +1460.823847 +1460.839132 +1460.872265 +1460.894243 +1460.942162 +1460.957813 +1461.947889 +1462.685917 +1463.599402 +1465.028871 +1467.797966 +1468.770026 +1470.971456 +1470.978915 +1471.854805 +1471.930663 +1471.972154 +1472.469323 +1473.972086 +1474.199292 +1474.244713 +1474.332425 +1474.435888 +1474.531293 +1474.544013 +1474.972917 +1475.921201 +1475.972284 +1475.978411 +1475.978644 +1476.066456 +1476.141681 +1476.182640 +1476.214275 +1477.494327 +1477.580707 +1477.593694 +1477.601053 +1477.665688 +1477.819534 +1478.841378 +1479.025694 +1479.549136 +1479.683335 +1481.069914 +1481.273710 +1481.378705 +1481.473444 +1481.572145 +1481.572544 +1481.573244 +1481.773310 +1481.873710 +1481.974775 +1481.979670 +1482.173243 +1482.573109 +1482.674042 +1482.674475 +1482.874708 +1483.272976 +1483.273408 +1483.274108 +1483.573375 +1483.573941 +1483.874074 +1483.974140 +1484.473407 +1484.573440 +1484.773507 +1485.075638 +1485.175005 +1485.272807 +1485.372307 +1485.472774 +1486.905872 +1488.508568 +1490.972102 +1490.992082 +1490.992415 +1491.024583 +1491.035971 +1491.054220 +1491.056251 +1491.084656 +1491.085422 +1491.130643 +1491.142931 +1491.153754 +1491.190483 +1491.192348 +1491.202505 +1491.203137 +1491.203803 +1491.228978 +1491.240567 +1491.267073 +1491.306201 +1491.307400 +1491.347060 +1491.382358 +1491.383057 +1491.395578 +1491.407000 +1491.407733 +1491.422118 +1491.435305 +1491.448658 +1491.489651 +1491.490550 +1491.538568 +1491.597742 +1491.609231 +1491.609730 +1491.621119 +1491.622884 +1491.634439 +1491.649724 +1491.673533 +1491.698675 +1491.737036 +1491.738701 +1491.761112 +1491.769038 +1491.794579 +1491.824549 +1491.838934 +1491.850090 +1491.851189 +1491.948025 +1491.996210 +1492.023982 +1492.052920 +1492.054285 +1492.083190 +1492.105468 +1492.117855 +1492.160179 +1492.171501 +1492.173533 +1492.200273 +1492.250822 +1492.251122 +1492.275331 +1492.381391 +1492.391481 +1492.392813 +1492.393479 +1492.437302 +1492.437901 +1492.438867 +1492.452054 +1492.473399 +1492.496509 +1492.523383 +1492.534771 +1492.561711 +1492.586553 +1492.741364 +1492.753685 +1492.763975 +1492.776895 +1492.808064 +1492.863142 +1492.878028 +1492.891081 +1492.905334 +1492.917621 +1492.918420 +1492.930075 +1492.932040 +1492.957781 +1492.971301 +1492.992913 +1492.993645 +1492.995310 +1493.036835 +1493.063109 +1493.065673 +1493.078294 +1493.078827 +1493.105533 +1493.130109 +1493.165873 +1493.204967 +1493.217288 +1493.230175 +1493.243095 +1493.254551 +1493.255650 +1493.267471 +1493.269436 +1493.306299 +1493.402336 +1493.427711 +1493.451187 +1493.463109 +1493.492179 +1493.492679 +1493.493911 +1493.505866 +1493.507930 +1493.554317 +1493.568703 +1493.585419 +1493.596275 +1493.596775 +1493.609029 +1493.647990 +1493.660911 +1493.676828 +1493.678293 +1493.678826 +1493.707764 +1493.736335 +1493.748623 +1493.806731 +1493.853817 +1493.879026 +1493.922549 +1493.936901 +1493.957347 +1493.958846 +1493.972499 +1494.015789 +1494.043428 +1494.056947 +1494.069335 +1494.081589 +1494.090414 +1494.101303 +1494.138699 +1494.140431 +1494.162841 +1494.176295 +1494.187150 +1494.202735 +1494.269868 +1494.283121 +1494.294510 +1494.310327 +1494.323314 +1494.336801 +1494.352885 +1494.393810 +1494.462908 +1494.476194 +1494.491779 +1494.528409 +1494.542461 +1494.570733 +1494.571399 +1494.638399 +1494.739964 +1494.774329 +1494.803167 +1494.803966 +1494.828841 +1494.831272 +1494.855415 +1494.872598 +1494.897573 +1494.916554 +1494.929507 +1494.930107 +1494.972464 +1494.973164 +1494.974662 +1495.000803 +1495.003866 +1495.033503 +1495.046657 +1495.075761 +1495.098904 +1495.101302 +1495.133803 +1495.148355 +1495.158045 +1495.160676 +1495.171998 +1495.182920 +1495.183853 +1495.199304 +1495.230939 +1495.259977 +1495.290213 +1495.316587 +1495.346190 +1495.375960 +1495.388814 +1495.415088 +1495.441695 +1495.506064 +1495.506663 +1495.518817 +1495.547689 +1495.548388 +1495.550819 +1495.563406 +1495.589080 +1495.615854 +1495.665504 +1495.695874 +1495.710259 +1495.725377 +1495.738764 +1495.740329 +1495.782387 +1495.783552 +1495.841461 +1495.897372 +1495.922247 +1495.936233 +1495.952383 +1497.649085 +1500.628536 +1500.643221 +1500.766498 +1503.418909 +1503.463531 +1503.475186 +1504.926600 +1504.947113 +1507.971419 +1508.972783 +1508.973316 +1509.635520 +1509.973348 +1510.971716 +1511.830789 +1511.872148 +1512.044675 +1512.718134 +1515.308242 +1515.657092 +1515.978171 +1516.077904 +1516.078903 +1516.079736 +1516.278237 +1516.474474 +1516.475440 +1516.475839 +1516.673308 +1516.773109 +1516.779569 +1516.873208 +1517.073574 +1517.273741 +1517.372842 +1517.480068 +1517.673307 +1517.772541 +1518.172974 +1518.174273 +1518.375205 +1518.676070 +1518.680200 +1518.773906 +1518.776437 +1518.943869 +1518.972607 +1519.279533 +1519.473972 +1519.474238 +1519.674338 +1519.973239 +1519.974637 +1520.071807 +1520.072639 +1520.073505 +1520.373638 +1520.476335 +1520.973937 +1521.711565 +1521.788921 +1524.476930 +1525.208898 +1525.971801 +1526.019520 +1526.036702 +1526.048357 +1526.058747 +1526.060179 +1526.069869 +1526.092879 +1526.103769 +1526.105067 +1526.117288 +1526.117755 +1526.144095 +1526.144861 +1526.155783 +1526.169103 +1526.169802 +1526.182024 +1526.193412 +1526.203336 +1526.276596 +1526.277961 +1526.290082 +1526.303469 +1526.326745 +1526.340731 +1526.353918 +1526.399006 +1526.425946 +1526.440498 +1526.468071 +1526.468770 +1526.481524 +1526.546625 +1526.547991 +1526.561410 +1526.562143 +1526.639366 +1526.666305 +1526.678094 +1526.703835 +1526.712393 +1526.766172 +1526.828809 +1526.830474 +1526.856748 +1526.885919 +1526.922116 +1526.934304 +1526.957847 +1527.000271 +1527.025346 +1527.087351 +1527.129309 +1527.141563 +1527.151320 +1527.153518 +1527.165206 +1527.165739 +1527.203934 +1527.205299 +1527.267004 +1527.295709 +1527.310361 +1527.320417 +1527.346724 +1527.348356 +1527.360744 +1527.371999 +1527.384953 +1527.398939 +1527.414157 +1527.441596 +1527.466538 +1527.488849 +1527.533471 +1527.543561 +1527.565505 +1527.579625 +1527.630440 +1527.655915 +1527.704633 +1527.719418 +1527.732605 +1527.743760 +1527.758379 +1527.771466 +1527.809228 +1527.852685 +1527.865971 +1527.877193 +1527.889914 +1527.891845 +1527.926178 +1527.967903 +1527.988582 +1528.002102 +1528.029841 +1528.096940 +1528.124479 +1528.152118 +1528.194276 +1528.208062 +1528.280723 +1528.287716 +1528.351352 +1528.351618 +1528.352917 +1528.386517 +1528.401935 +1528.403600 +1528.508695 +1528.508961 +1528.520649 +1528.536400 +1528.607229 +1528.649187 +1528.697572 +1528.728874 +1528.784918 +1528.796606 +1528.798638 +1528.829540 +1528.843859 +1528.854582 +1528.854981 +1528.881255 +1528.882021 +1528.919617 +1528.928341 +1528.971132 +1528.991977 +1529.004132 +1529.017086 +1529.034268 +1529.036433 +1529.086150 +1529.124378 +1529.136633 +1529.137032 +1529.150352 +1529.151018 +1529.163273 +1529.179057 +1529.208427 +1529.244924 +1529.257545 +1529.269799 +1529.272030 +1529.337898 +1529.361907 +1529.387448 +1529.456945 +1529.468900 +1529.484151 +1529.533902 +1529.534301 +1529.564638 +1529.591377 +1529.614088 +1529.617485 +1529.646822 +1529.659210 +1529.662007 +1529.671497 +1529.672230 +1529.687182 +1529.705230 +1529.724977 +1529.736832 +1529.749319 +1529.802699 +1529.816685 +1529.864338 +1529.879156 +1529.879889 +1529.893375 +1529.922546 +1529.923345 +1529.924111 +1529.938330 +1529.940295 +1529.954447 +1529.954714 +1529.969399 +1529.983019 +1529.983285 +1530.012190 +1530.024910 +1530.026275 +1530.041294 +1530.054880 +1530.095306 +1530.130671 +1530.170764 +1530.171963 +1530.173295 +1530.245856 +1530.260541 +1530.290744 +1530.305230 +1530.317784 +1530.374194 +1530.375892 +1530.403631 +1530.460141 +1530.487680 +1530.511190 +1530.541227 +1530.551050 +1530.554447 +1530.568233 +1530.580720 +1530.588979 +1530.591177 +1530.602365 +1530.604064 +1530.619249 +1530.650451 +1530.664803 +1530.724310 +1530.800700 +1530.893507 +1530.905462 +1530.939528 +1530.952348 +1530.968599 +1536.045850 +1536.498031 +1536.764530 +1537.002359 +1538.521039 +1539.716942 +1539.908683 +1540.587237 +1540.617673 +1540.974649 +1540.980011 +1541.265092 +1541.299724 +1541.945544 +1542.973016 +1543.217971 +1543.276112 +1543.503518 +1543.624697 +1544.201553 +1544.399521 +1544.540913 +1544.548206 +1544.605515 +1544.972548 +1545.183736 +1545.972080 +1546.189529 +1547.169781 +1547.181836 +1547.182269 +1550.971809 +1550.972542 +1550.973208 +1551.078602 +1551.178835 +1551.182831 +1551.279801 +1551.283064 +1551.286494 +1551.390157 +1551.475372 +1551.774539 +1551.984162 +1552.173839 +1552.180632 +1552.274139 +1552.474771 +1552.475604 +1552.574338 +1552.674804 +1552.684495 +1552.776469 +1552.780632 +1552.975070 +1553.075170 +1553.180764 +1553.380897 +1553.473738 +1553.474670 +1553.474970 +1553.674071 +1553.679965 +1553.875369 +1553.880531 +1553.884460 +1553.983861 +1554.073671 +1554.076834 +1554.090187 +1554.173671 +1554.274536 +1554.274803 +1554.275935 +1554.284626 +1554.384393 +1554.473604 +1554.475002 +1554.480630 +1554.580297 +1554.584359 +1554.774303 +1554.774769 +1554.775302 +1554.776700 +1554.873736 +1554.979997 +1555.083726 +1555.174735 +1555.175135 +1555.274935 +1555.275901 +1555.380629 +1555.474135 +1555.474868 +1555.475934 +1555.484991 +1555.575034 +1555.575767 +1555.674801 +1555.774268 +1555.880196 +1555.973602 +1555.980262 +1555.984092 +1556.342266 +1557.273967 +1560.978692 +1560.986950 +1561.011093 +1561.072365 +1561.083454 +1561.084952 +1561.107829 +1561.131672 +1561.156414 +1561.157946 +1561.170001 +1561.182455 +1561.222648 +1561.234203 +1561.294809 +1561.296208 +1561.345225 +1561.347356 +1561.375695 +1561.410726 +1561.411492 +1561.439764 +1561.440530 +1561.466204 +1561.466670 +1561.502401 +1561.524712 +1561.549787 +1561.550753 +1561.551552 +1561.564406 +1561.575461 +1561.576960 +1561.590679 +1561.632471 +1561.672331 +1561.698472 +1561.700037 +1561.711658 +1561.737999 +1561.777559 +1561.778292 +1561.779490 +1561.793610 +1561.805698 +1561.839763 +1561.853849 +1561.877193 +1561.909027 +1561.910992 +1561.933203 +1561.956214 +1561.978658 +1561.980090 +1562.017785 +1562.051285 +1562.063306 +1562.076993 +1562.078857 +1562.137432 +1562.151418 +1562.205864 +1562.207229 +1562.221148 +1562.236566 +1562.247788 +1562.258844 +1562.269866 +1562.271198 +1562.284385 +1562.296340 +1562.296873 +1562.348754 +1562.349786 +1562.397505 +1562.428108 +1562.429040 +1562.429740 +1562.440229 +1562.457445 +1562.498204 +1562.527708 +1562.528507 +1562.541528 +1562.542926 +1562.554914 +1562.581654 +1562.619483 +1562.655747 +1562.711957 +1562.725444 +1562.747721 +1562.781154 +1562.782453 +1562.783818 +1562.797238 +1562.809426 +1562.821148 +1562.858810 +1562.892576 +1562.926842 +1562.941794 +1563.053382 +1563.053981 +1563.066735 +1563.078623 +1563.079023 +1563.080721 +1563.119616 +1563.120615 +1563.134401 +1563.147155 +1563.158477 +1563.160208 +1563.252516 +1563.335266 +1563.363005 +1563.397937 +1563.420015 +1563.420514 +1563.460141 +1563.477025 +1563.487714 +1563.499102 +1563.523811 +1563.524710 +1563.564870 +1563.577690 +1563.579888 +1563.637597 +1563.678756 +1563.704264 +1563.719082 +1563.729239 +1563.730438 +1563.754547 +1563.805629 +1563.806695 +1563.808593 +1563.833501 +1563.835299 +1563.860308 +1563.909392 +1563.925409 +1563.984949 +1563.998702 +1564.024177 +1564.072229 +1564.086248 +1564.111656 +1564.125142 +1564.140194 +1564.153780 +1564.154546 +1564.197603 +1564.210857 +1564.227040 +1564.241593 +1564.255379 +1564.298103 +1564.299834 +1564.329538 +1564.354646 +1564.398269 +1564.457876 +1564.514653 +1564.544789 +1564.557077 +1564.580387 +1564.605362 +1564.674925 +1564.675825 +1564.703730 +1564.732268 +1564.735398 +1564.762804 +1564.778921 +1564.800899 +1564.826307 +1564.828472 +1564.856410 +1564.856877 +1564.889611 +1564.916584 +1564.918149 +1564.918848 +1564.932035 +1565.017416 +1565.057043 +1565.106061 +1565.117482 +1565.131069 +1565.147386 +1565.189444 +1565.204262 +1565.205228 +1565.220879 +1565.234532 +1565.281185 +1565.340293 +1565.341258 +1565.362970 +1565.372427 +1565.384748 +1565.386014 +1565.400199 +1565.490909 +1565.540093 +1565.553846 +1565.600566 +1565.693806 +1565.695970 +1565.736763 +1565.739227 +1565.753179 +1565.767365 +1565.768864 +1565.781251 +1565.782950 +1565.814318 +1565.853779 +1565.855910 +1565.910256 +1565.922443 +1565.952580 +1565.967432 +1568.244286 +1568.261535 +1569.197898 +1569.201394 +1569.797431 +1570.199928 +1570.488706 +1570.713081 +1570.842685 +1571.297463 +1571.924602 +1572.009650 +1572.023902 +1572.109084 +1572.178348 +1572.628231 +1573.248244 +1574.371952 +1575.979510 +1576.979742 +1577.971149 +1577.973780 +1577.973980 +1578.980506 +1578.980739 +1579.971913 +1581.836647 +1582.750032 +1583.468846 +1583.481134 +1583.485030 +1583.486129 +1583.546502 +1584.420760 +1584.467047 +1584.639474 +1585.795351 +1585.944068 +1585.972640 +1586.079233 +1586.173705 +1586.182996 +1586.283928 +1586.476535 +1586.479899 +1586.574104 +1586.574604 +1586.579965 +1586.583695 +1586.675336 +1586.780598 +1586.783828 +1586.786292 +1586.880531 +1586.884294 +1586.974071 +1586.974837 +1586.976368 +1586.980664 +1586.984227 +1587.075869 +1587.274703 +1587.274870 +1587.284094 +1587.373870 +1587.480730 +1587.575702 +1587.582462 +1587.676401 +1587.684460 +1587.773937 +1587.873837 +1587.886591 +1587.973970 +1587.980730 +1587.984226 +1588.074902 +1588.174402 +1588.174769 +1588.175102 +1588.176301 +1588.180530 +1588.474802 +1588.475035 +1588.476500 +1588.481062 +1588.573903 +1588.575534 +1588.580896 +1588.584958 +1588.674402 +1588.680596 +1588.873536 +1588.874835 +1588.876233 +1588.884325 +1589.084824 +1589.273869 +1589.275001 +1589.374934 +1589.475034 +1589.476499 +1589.484325 +1589.574568 +1589.575067 +1589.575600 +1589.773835 +1589.780495 +1589.874634 +1589.974168 +1589.974434 +1590.074567 +1590.174933 +1590.184257 +1590.277131 +1590.282759 +1590.380927 +1590.474433 +1590.475133 +1590.484756 +1590.680461 +1590.774433 +1590.774999 +1590.880161 +1590.975166 +1593.492812 +1594.064773 +1594.309894 +1594.531805 +1594.616654 +1594.662907 +1594.852917 +1594.878991 +1595.978424 +1595.985450 +1596.020182 +1596.031271 +1596.032536 +1596.050985 +1596.052317 +1596.063705 +1596.084052 +1596.139663 +1596.160542 +1596.170165 +1596.181021 +1596.193808 +1596.194075 +1596.219383 +1596.259809 +1596.268367 +1596.301534 +1596.316685 +1596.345057 +1596.373595 +1596.410059 +1596.422646 +1596.422946 +1596.448054 +1596.461707 +1596.470931 +1596.480055 +1596.515986 +1596.532936 +1596.563771 +1596.575360 +1596.576192 +1596.576892 +1596.587914 +1596.617484 +1596.617851 +1596.642892 +1596.692476 +1596.727541 +1596.740261 +1596.741860 +1596.753448 +1596.784850 +1596.810191 +1596.822646 +1596.823145 +1596.835666 +1596.873961 +1596.897804 +1596.910857 +1596.931636 +1596.968866 +1596.975259 +1596.994274 +1596.994640 +1597.028073 +1597.036931 +1597.047953 +1597.061340 +1597.085183 +1597.099935 +1597.100501 +1597.112322 +1597.113022 +1597.113987 +1597.126475 +1597.139861 +1597.163438 +1597.164104 +1597.164670 +1597.165802 +1597.178190 +1597.189478 +1597.190111 +1597.203065 +1597.226941 +1597.228140 +1597.238296 +1597.261739 +1597.299202 +1597.371063 +1597.371629 +1597.386082 +1597.400334 +1597.425276 +1597.436131 +1597.447920 +1597.461706 +1597.521180 +1597.523078 +1597.560873 +1597.615652 +1597.618183 +1597.640727 +1597.653514 +1597.664236 +1597.665702 +1597.707760 +1597.718482 +1597.719448 +1597.730470 +1597.732002 +1597.741759 +1597.744323 +1597.755445 +1597.827606 +1597.887113 +1597.897270 +1597.954612 +1597.983517 +1598.016684 +1598.039527 +1598.052181 +1598.082185 +1598.115651 +1598.130070 +1598.141758 +1598.155278 +1598.179720 +1598.191575 +1598.240726 +1598.286680 +1598.326940 +1598.384382 +1598.385181 +1598.426107 +1598.442258 +1598.443223 +1598.456210 +1598.496637 +1598.509823 +1598.511588 +1598.521645 +1598.536597 +1598.547852 +1598.583350 +1598.594971 +1598.628205 +1598.629637 +1598.640892 +1598.670296 +1598.683616 +1598.696370 +1598.762237 +1598.814285 +1598.828171 +1598.853246 +1598.855178 +1598.882051 +1598.926040 +1598.938128 +1598.952813 +1598.963836 +1598.976023 +1598.978221 +1598.978987 +1598.991841 +1599.003796 +1599.017948 +1599.032400 +1599.057575 +1599.072260 +1599.112520 +1599.114218 +1599.123376 +1599.201797 +1599.229603 +1599.230569 +1599.245853 +1599.258141 +1599.299233 +1599.322776 +1599.323242 +1599.324175 +1599.392440 +1599.394371 +1599.407458 +1599.421444 +1599.433765 +1599.449416 +1599.514784 +1599.522809 +1599.538360 +1599.585480 +1599.601231 +1599.629503 +1599.653012 +1599.654511 +1599.666799 +1599.693938 +1599.723175 +1599.739925 +1599.740725 +1599.769163 +1599.769462 +1599.813718 +1599.922842 +1599.934198 +1599.951114 +1599.964168 +1600.008656 +1600.009722 +1600.038826 +1600.056775 +1600.071460 +1600.086112 +1600.088110 +1600.101397 +1600.103528 +1600.116016 +1600.147484 +1600.148017 +1600.149149 +1600.188610 +1600.192073 +1600.205593 +1600.221910 +1600.235263 +1600.237261 +1600.237860 +1600.278719 +1600.279419 +1600.307923 +1600.361070 +1600.377554 +1600.404394 +1600.417480 +1600.441656 +1600.473058 +1600.601663 +1600.617813 +1600.618346 +1600.635262 +1600.677886 +1600.693304 +1600.695036 +1600.795768 +1600.811719 +1600.822808 +1600.823541 +1600.840091 +1600.963834 +1602.453775 +1603.249712 +1603.472456 +1603.551277 +1604.046714 +1605.615877 +1606.546512 +1606.738353 +1607.140651 +1607.225932 +1607.830027 +1607.945312 +1608.053970 +1610.972282 +1610.980307 +1612.972946 +1612.973312 +1613.408876 +1613.972845 +1613.973577 +1615.979969 +1618.774339 +1620.979065 +1620.979465 +1621.073171 +1621.273903 +1621.379264 +1621.479364 +1621.773769 +1621.775335 +1621.973403 +1621.976067 +1622.174202 +1622.179996 +1622.275101 +1622.674168 +1622.974767 +1622.975899 +1623.174234 +1623.174967 +1623.176199 +1623.176865 +1623.280495 +1623.476165 +1623.574267 +1623.580428 +1623.774766 +1624.173467 +1624.375032 +1624.773500 +1624.774732 +1624.873666 +1625.175498 +1625.675497 +1625.780392 +1627.142229 +1627.147890 +1627.802135 +1628.542993 +1630.986214 +1630.994606 +1631.003164 +1631.003530 +1631.004763 +1631.013687 +1631.014886 +1631.094073 +1631.139794 +1631.152182 +1631.200300 +1631.223577 +1631.236431 +1631.247586 +1631.248419 +1631.248951 +1631.303131 +1631.303896 +1631.314652 +1631.327639 +1631.328139 +1631.339894 +1631.379288 +1631.416717 +1631.437496 +1631.459574 +1631.473360 +1631.484549 +1631.497469 +1631.509790 +1631.510323 +1631.524775 +1631.535398 +1631.547985 +1631.571828 +1631.599301 +1631.601199 +1631.612354 +1631.658541 +1631.709823 +1631.754645 +1631.756177 +1631.776956 +1631.791175 +1631.791841 +1631.804762 +1631.818748 +1631.830303 +1631.830702 +1631.832001 +1631.844189 +1631.845654 +1631.858208 +1631.873693 +1631.911155 +1631.924042 +1631.945354 +1631.973526 +1632.040293 +1632.060506 +1632.093573 +1632.108924 +1632.149916 +1632.175591 +1632.257509 +1632.268198 +1632.279420 +1632.293006 +1632.293872 +1632.364735 +1632.403862 +1632.423975 +1632.437961 +1632.438760 +1632.476456 +1632.477588 +1632.503895 +1632.515384 +1632.541724 +1632.553013 +1632.555144 +1632.565867 +1632.575224 +1632.591041 +1632.605427 +1632.607258 +1632.624408 +1632.633965 +1632.648817 +1632.657208 +1632.672693 +1632.685414 +1632.692773 +1632.718747 +1632.731834 +1632.765067 +1632.776189 +1632.859573 +1632.873425 +1632.889076 +1632.916782 +1632.960238 +1632.975024 +1633.004994 +1633.016982 +1633.036729 +1633.047385 +1633.061470 +1633.096502 +1633.124108 +1633.133765 +1633.147318 +1633.157974 +1633.169962 +1633.198533 +1633.221610 +1633.232066 +1633.233565 +1633.246419 +1633.249083 +1633.261171 +1633.289076 +1633.305426 +1633.329902 +1633.396801 +1633.397534 +1633.410821 +1633.411720 +1633.465233 +1633.503561 +1633.504793 +1633.519345 +1633.546818 +1633.547151 +1633.561603 +1633.576721 +1633.612352 +1633.614151 +1633.623475 +1633.624973 +1633.636795 +1633.665366 +1633.680484 +1633.694570 +1633.695070 +1633.722975 +1633.737627 +1633.780517 +1633.828503 +1633.851313 +1633.864999 +1633.866598 +1633.877454 +1633.928436 +1633.940590 +1633.943021 +1633.956208 +1633.984513 +1634.000297 +1634.014550 +1634.042022 +1634.083314 +1634.086145 +1634.098266 +1634.113118 +1634.160370 +1634.171759 +1634.184946 +1634.199731 +1634.216381 +1634.267330 +1634.281249 +1634.306291 +1634.334862 +1634.349714 +1634.364300 +1634.365165 +1634.365865 +1634.376621 +1634.377420 +1634.378086 +1634.392238 +1634.419844 +1634.420677 +1634.422375 +1634.445618 +1634.519211 +1634.540224 +1634.564699 +1634.589907 +1634.591605 +1634.602994 +1634.618279 +1634.619511 +1634.620044 +1634.634496 +1634.635795 +1634.662268 +1634.664000 +1634.675488 +1634.677087 +1634.704859 +1634.713384 +1634.792771 +1634.848382 +1634.905092 +1634.997433 +1635.011885 +1635.038924 +1635.040922 +1635.053610 +1635.079051 +1635.079550 +1635.090340 +1635.091172 +1635.116513 +1635.131498 +1635.146517 +1635.174122 +1635.188208 +1635.202594 +1635.213483 +1635.226403 +1635.227869 +1635.228568 +1635.246616 +1635.280816 +1635.294036 +1635.339956 +1635.340889 +1635.407955 +1635.433496 +1635.445451 +1635.471192 +1635.497998 +1635.529200 +1635.543220 +1635.555374 +1635.569726 +1635.570492 +1635.585078 +1635.586843 +1635.614448 +1635.615481 +1635.616480 +1635.617046 +1635.631365 +1635.677285 +1635.692004 +1635.707322 +1635.722240 +1635.768261 +1635.811118 +1635.882580 +1635.896632 +1635.897265 +1635.912017 +1635.942520 +1635.943219 +1635.957338 +1645.978141 +1645.979273 +1646.971913 +1646.972312 +1646.973178 +1646.978939 +1647.979204 +1648.973376 +1649.973775 +1650.971676 +1655.972004 +1656.077598 +1656.078097 +1656.173735 +1656.277931 +1656.374201 +1656.473701 +1656.574467 +1656.772969 +1656.873435 +1656.873901 +1656.874700 +1656.973102 +1656.973468 +1656.979295 +1657.173135 +1657.373601 +1657.473168 +1657.673167 +1657.772435 +1657.773067 +1657.778928 +1657.973700 +1658.079394 +1658.179094 +1658.278961 +1658.373300 +1658.373633 +1658.474732 +1658.573033 +1658.578894 +1658.874498 +1658.975098 +1658.978761 +1659.273665 +1659.673066 +1659.872466 +1659.973099 +1659.979059 +1660.078926 +1660.373265 +1660.572465 +1660.678792 +1660.878559 +1660.972398 +1665.971494 +1665.977788 +1665.978554 +1665.994937 +1666.022243 +1666.031134 +1666.041491 +1666.043056 +1666.051181 +1666.051747 +1666.052380 +1666.077621 +1666.098733 +1666.109556 +1666.118514 +1666.129369 +1666.130135 +1666.142290 +1666.152380 +1666.183815 +1666.193405 +1666.195370 +1666.203762 +1666.239160 +1666.256709 +1666.270961 +1666.315250 +1666.327271 +1666.349349 +1666.360238 +1666.369929 +1666.415949 +1666.417947 +1666.427771 +1666.429003 +1666.463602 +1666.486079 +1666.495636 +1666.510055 +1666.530168 +1666.542589 +1666.555410 +1666.575456 +1666.576955 +1666.600564 +1666.601230 +1666.602696 +1666.612786 +1666.638726 +1666.669828 +1666.671926 +1666.673392 +1666.700698 +1666.731134 +1666.762303 +1666.763934 +1666.808789 +1666.822076 +1666.834397 +1666.848150 +1666.859772 +1666.901796 +1666.903228 +1666.918713 +1666.940291 +1666.940591 +1666.941923 +1666.942522 +1666.981450 +1667.005226 +1667.040424 +1667.041556 +1667.051546 +1667.057740 +1667.058539 +1667.070294 +1667.146052 +1667.147450 +1667.200730 +1667.213085 +1667.223408 +1667.249015 +1667.261936 +1667.274323 +1667.275622 +1667.289808 +1667.292339 +1667.307923 +1667.321476 +1667.353045 +1667.364866 +1667.375156 +1667.450780 +1667.452279 +1667.463168 +1667.471426 +1667.484713 +1667.496201 +1667.519744 +1667.558206 +1667.609921 +1667.633564 +1667.636494 +1667.717047 +1667.752178 +1667.787243 +1667.800730 +1667.815948 +1667.816581 +1667.850114 +1667.897366 +1667.907123 +1667.931799 +1667.945052 +1667.969794 +1667.980516 +1668.012851 +1668.013783 +1668.037992 +1668.053443 +1668.094136 +1668.095734 +1668.109687 +1668.149248 +1668.164166 +1668.191339 +1668.201961 +1668.203560 +1668.242787 +1668.277219 +1668.292904 +1668.345451 +1668.346084 +1668.357073 +1668.358072 +1668.359337 +1668.386610 +1668.418245 +1668.444519 +1668.456673 +1668.470559 +1668.483380 +1668.484445 +1668.519710 +1668.531498 +1668.564432 +1668.587442 +1668.599630 +1668.623173 +1668.636859 +1668.637559 +1668.638458 +1668.651711 +1668.703493 +1668.705291 +1668.716646 +1668.718478 +1668.760735 +1668.773323 +1668.840089 +1668.893503 +1668.962966 +1669.001361 +1669.015980 +1669.029899 +1669.074488 +1669.190539 +1669.206389 +1669.230765 +1669.246582 +1669.290871 +1669.302859 +1669.356739 +1669.376752 +1669.444651 +1669.459369 +1669.481780 +1669.516912 +1669.518510 +1669.548580 +1669.564997 +1669.605723 +1669.621674 +1669.623339 +1669.649845 +1669.651544 +1669.663332 +1669.677718 +1669.714980 +1669.722539 +1669.766062 +1669.788607 +1669.849246 +1669.863398 +1669.864397 +1669.879316 +1669.891936 +1669.941953 +1669.954940 +1670.001960 +1670.017011 +1670.017944 +1670.031763 +1670.045982 +1670.047481 +1670.061600 +1670.093268 +1670.109186 +1670.120608 +1670.192935 +1670.209419 +1670.236758 +1670.240088 +1670.258636 +1670.288040 +1670.301293 +1670.318077 +1670.332762 +1670.377450 +1670.378882 +1670.391736 +1670.409285 +1670.452176 +1670.467460 +1670.481113 +1670.496731 +1670.541619 +1670.602392 +1670.603291 +1670.614780 +1670.617077 +1670.646381 +1670.648346 +1670.661100 +1670.691136 +1670.692868 +1670.706355 +1670.737890 +1670.752109 +1670.753174 +1670.768059 +1670.768592 +1670.827034 +1670.846747 +1670.860600 +1670.890504 +1670.892302 +1671.944782 +1671.975984 +1672.850475 +1675.616906 +1675.664725 +1678.065088 +1678.542544 +1680.972079 +1680.978372 +1681.979037 +1683.971576 +1683.972642 +1683.973607 +1685.973406 +1688.924185 +1689.755353 +1689.851357 +1690.078663 +1690.979028 +1691.172435 +1691.273700 +1691.378528 +1691.474466 +1691.574099 +1691.574532 +1691.775864 +1691.979394 +1692.073699 +1692.173366 +1692.373666 +1692.376030 +1692.473665 +1692.672966 +1692.673599 +1692.674065 +1692.774231 +1692.875596 +1692.875830 +1692.974631 +1692.975197 +1693.475030 +1693.475463 +1693.574430 +1693.575895 +1693.674264 +1693.674530 +1693.775263 +1693.873930 +1694.074030 +1694.174296 +1694.176561 +1694.574662 +1694.773297 +1694.774129 +1694.874529 +1694.875128 +1694.875861 +1694.973896 +1694.974662 +1695.081855 +1695.174495 +1695.275128 +1695.374029 +1695.374528 +1695.574062 +1695.575361 +1695.676693 +1695.773196 +1695.774428 +1695.873496 +1695.975660 +1699.993638 +1700.162069 +1700.872358 +1700.971326 +1700.992538 +1700.994569 +1701.011253 +1701.057406 +1701.075888 +1701.109488 +1701.120910 +1701.141689 +1701.150280 +1701.161602 +1701.243886 +1701.247150 +1701.285378 +1701.365531 +1701.377353 +1701.445385 +1701.470560 +1701.515648 +1701.552944 +1701.592338 +1701.603993 +1701.633496 +1701.635328 +1701.647849 +1701.660070 +1701.661868 +1701.674256 +1701.674955 +1701.685345 +1701.686976 +1701.687509 +1701.721542 +1701.769727 +1701.858105 +1701.859071 +1701.879384 +1701.891904 +1701.915781 +1701.942121 +1701.954908 +1702.026470 +1702.048648 +1702.069593 +1702.096433 +1702.106623 +1702.119077 +1702.142221 +1702.142587 +1702.189307 +1702.203959 +1702.228801 +1702.270359 +1702.282547 +1702.333363 +1702.413949 +1702.415447 +1702.438191 +1702.471191 +1702.473322 +1702.484977 +1702.485610 +1702.487342 +1702.516046 +1702.529500 +1702.550046 +1702.637491 +1702.717744 +1702.729533 +1702.754075 +1702.755473 +1702.756406 +1702.782480 +1702.817478 +1702.830365 +1702.841953 +1702.852843 +1702.863898 +1702.914148 +1702.938257 +1702.953109 +1702.992037 +1703.006222 +1703.019442 +1703.060768 +1703.139322 +1703.218443 +1703.243818 +1703.257671 +1703.294967 +1703.308953 +1703.337158 +1703.398696 +1703.410884 +1703.511483 +1703.537890 +1703.539489 +1703.552942 +1703.554507 +1703.582346 +1703.683578 +1703.686009 +1703.710684 +1703.723471 +1703.725236 +1703.754107 +1703.779315 +1703.808053 +1703.842618 +1703.854407 +1703.889705 +1703.947347 +1703.963065 +1703.993201 +1704.019408 +1704.044450 +1704.065595 +1704.078682 +1704.093601 +1704.095032 +1704.106921 +1704.135792 +1704.148679 +1704.178449 +1704.193267 +1704.221539 +1704.233794 +1704.262731 +1704.264230 +1704.277183 +1704.336358 +1704.338888 +1704.351143 +1704.381979 +1704.397729 +1704.422704 +1704.424769 +1704.425801 +1704.439687 +1704.463530 +1704.479781 +1704.489304 +1704.562598 +1704.591968 +1704.634726 +1704.636291 +1704.662198 +1704.677216 +1704.690103 +1704.691069 +1704.704789 +1704.720873 +1704.736590 +1704.752208 +1704.764829 +1704.765728 +1704.781012 +1704.782611 +1704.795565 +1704.824103 +1704.848711 +1704.850776 +1704.880713 +1704.894965 +1704.965062 +1705.048611 +1705.062930 +1705.104822 +1705.117509 +1705.164096 +1705.203689 +1705.234459 +1705.261698 +1705.262597 +1705.275517 +1705.276883 +1705.290336 +1705.292634 +1705.315844 +1705.317276 +1705.343449 +1705.384675 +1705.413946 +1705.425334 +1705.442717 +1705.455904 +1705.471488 +1705.499826 +1705.526666 +1705.540752 +1705.541385 +1705.560033 +1705.587705 +1705.597928 +1705.615777 +1705.616643 +1705.617242 +1705.632760 +1705.646280 +1705.683942 +1705.697828 +1705.699426 +1705.714212 +1705.759000 +1705.760832 +1705.787372 +1705.788171 +1705.803056 +1705.819806 +1705.847878 +1705.878780 +1705.939753 +1706.315010 +1707.810147 +1707.816241 +1707.927596 +1709.556932 +1709.563658 +1709.616772 +1710.520834 +1711.556863 +1711.584569 +1712.450968 +1713.924793 +1715.362520 +1715.972710 +1715.974241 +1716.490391 +1717.933047 +1717.948598 +1717.971875 +1717.980500 +1718.271475 +1718.356623 +1718.972307 +1719.167944 +1719.179000 +1719.234311 +1719.407138 +1719.433678 +1720.846331 +1720.857986 +1720.979564 +1724.658149 +1724.692548 +1724.754419 +1724.859281 +1725.238801 +1725.324215 +1725.971734 +1725.972799 +1725.979260 +1726.072400 +1726.173166 +1726.173665 +1726.274964 +1726.575097 +1726.774197 +1726.780191 +1726.973298 +1727.074763 +1727.175262 +1727.476927 +1727.580823 +1727.874363 +1727.875228 +1727.974429 +1728.174262 +1728.180623 +1728.340163 +1728.373330 +1728.675427 +1728.773263 +1728.773596 +1728.975094 +1729.174794 +1729.276959 +1729.674860 +1729.680621 +1729.775893 +1729.973695 +1730.076891 +1730.272795 +1730.273195 +1730.474493 +1730.574626 +1730.677257 +1730.973194 +1730.974593 +1730.975658 +1732.392740 +1733.050648 +1733.087411 +1734.250480 +1734.300164 +1734.315482 +1734.316181 +1734.697732 +1735.471658 +1735.984844 +1735.991338 +1735.991970 +1735.999429 +1736.007754 +1736.009353 +1736.018344 +1736.038024 +1736.063299 +1736.064864 +1736.065130 +1736.074654 +1736.085910 +1736.118510 +1736.142520 +1736.160601 +1736.170625 +1736.171657 +1736.184278 +1736.195233 +1736.219642 +1736.220941 +1736.234627 +1736.259669 +1736.295566 +1736.308054 +1736.371024 +1736.383512 +1736.396798 +1736.398264 +1736.418876 +1736.419209 +1736.420841 +1736.447681 +1736.483578 +1736.506822 +1736.520275 +1736.554840 +1736.555906 +1736.556372 +1736.581613 +1736.596798 +1736.607554 +1736.608320 +1736.642119 +1736.653874 +1736.682812 +1736.730531 +1736.745483 +1736.755406 +1736.757837 +1736.769825 +1736.770757 +1736.781946 +1736.794167 +1736.808686 +1736.821440 +1736.886641 +1736.897830 +1736.909752 +1736.974587 +1737.017044 +1737.055306 +1737.093235 +1737.108919 +1737.118876 +1737.129532 +1737.173488 +1737.187307 +1737.188772 +1737.200927 +1737.202325 +1737.291836 +1737.303924 +1737.318309 +1737.330697 +1737.375852 +1737.377050 +1737.387440 +1737.389138 +1737.402025 +1737.424836 +1737.436558 +1737.445349 +1737.446847 +1737.458036 +1737.460101 +1737.501925 +1737.538222 +1737.673154 +1737.684842 +1737.697996 +1737.706854 +1737.783244 +1737.784210 +1737.797596 +1737.822904 +1737.823770 +1737.850410 +1737.864895 +1737.865795 +1737.879048 +1737.897363 +1737.941985 +1737.953440 +1738.001425 +1738.014412 +1738.066194 +1738.079647 +1738.091136 +1738.103190 +1738.129497 +1738.141519 +1738.155238 +1738.192268 +1738.221272 +1738.236490 +1738.237256 +1738.238055 +1738.264662 +1738.277749 +1738.359001 +1738.398461 +1738.434259 +1738.436323 +1738.518608 +1738.557502 +1738.581278 +1738.582810 +1738.597029 +1738.609950 +1738.635857 +1738.650809 +1738.666526 +1738.679880 +1738.690402 +1738.692134 +1738.744881 +1738.771488 +1738.787372 +1738.788571 +1738.824502 +1738.849343 +1738.901658 +1738.921638 +1738.922437 +1738.971921 +1739.001225 +1739.030728 +1739.044415 +1739.116176 +1739.129396 +1739.144082 +1739.171421 +1739.182310 +1739.222770 +1739.224368 +1739.236356 +1739.255537 +1739.334757 +1739.337421 +1739.349143 +1739.391234 +1739.406419 +1739.474284 +1739.489136 +1739.502556 +1739.504288 +1739.515843 +1739.516542 +1739.530062 +1739.551108 +1739.625866 +1739.667025 +1739.705753 +1739.715077 +1739.728763 +1739.828064 +1739.854437 +1739.881377 +1739.883109 +1739.959465 +1739.985406 +1740.001856 +1740.027830 +1740.028896 +1740.058633 +1740.072419 +1740.084574 +1740.085872 +1740.166059 +1740.178579 +1740.206252 +1740.217707 +1740.218173 +1740.218806 +1740.300258 +1740.347311 +1740.361130 +1740.376415 +1740.411679 +1740.435456 +1740.449908 +1740.479145 +1740.505252 +1740.530760 +1740.542682 +1740.555269 +1740.557067 +1740.572818 +1740.573151 +1740.586171 +1740.589002 +1740.603654 +1740.620271 +1740.695196 +1740.696727 +1740.727830 +1740.775748 +1740.812079 +1740.843181 +1740.844746 +1740.861562 +1740.891333 +1740.938053 +1740.966424 +1741.258965 +1742.516672 +1742.519769 +1742.534188 +1742.614208 +1742.636852 +1742.746709 +1742.756199 +1742.794128 +1746.117035 +1746.134418 +1749.400715 +1749.438244 +1749.450765 +1749.461054 +1749.558523 +1750.911835 +1750.939741 +1750.970177 +1751.972540 +1751.972773 +1751.974039 +1751.974272 +1752.975037 +1753.974436 +1754.973004 +1754.980729 +1755.224618 +1755.731245 +1755.973036 +1758.053620 +1758.073999 +1758.124948 +1758.161345 +1759.000972 +1759.158847 +1759.168970 +1760.380457 +1761.073597 +1761.081289 +1761.173397 +1761.178925 +1761.375162 +1761.580456 +1761.675594 +1761.875161 +1762.074661 +1762.176693 +1762.476592 +1762.574261 +1762.575460 +1762.674727 +1762.675393 +1762.775060 +1763.075193 +1763.474793 +1763.574627 +1763.774360 +1763.775792 +1763.777024 +1763.972695 +1763.973727 +1764.073760 +1764.275392 +1764.374359 +1764.375425 +1764.476024 +1764.577356 +1764.775058 +1764.874925 +1764.875325 +1765.077256 +1765.080952 +1765.175025 +1765.177356 +1765.277156 +1765.376190 +1765.774591 +1765.775290 +1765.976556 +1767.749681 +1769.056406 +1770.478283 +1770.972355 +1770.986974 +1770.987506 +1770.988239 +1771.003757 +1771.013614 +1771.024336 +1771.025468 +1771.025801 +1771.058935 +1771.111083 +1771.121339 +1771.132594 +1771.134126 +1771.141685 +1771.142318 +1771.149611 +1771.172421 +1771.202258 +1771.213414 +1771.226068 +1771.227566 +1771.262331 +1771.262797 +1771.275585 +1771.287473 +1771.297729 +1771.316244 +1771.317010 +1771.361132 +1771.411915 +1771.442584 +1771.467559 +1771.467992 +1771.469357 +1771.495831 +1771.507786 +1771.509384 +1771.556437 +1771.567226 +1771.578581 +1771.593367 +1771.594366 +1771.607452 +1771.620906 +1771.634259 +1771.649644 +1771.694565 +1771.695165 +1771.717942 +1771.876383 +1771.890436 +1771.901325 +1771.917842 +1771.927332 +1771.944149 +1771.955338 +1771.957602 +1772.023636 +1772.028298 +1772.099893 +1772.151741 +1772.152573 +1772.177449 +1772.213845 +1772.251042 +1772.263696 +1772.276616 +1772.291501 +1772.318807 +1772.320306 +1772.349743 +1772.390502 +1772.454438 +1772.470722 +1772.495930 +1772.517941 +1772.519140 +1772.533725 +1772.546413 +1772.548311 +1772.561764 +1772.589370 +1772.602590 +1772.627631 +1772.653605 +1772.666559 +1772.678947 +1772.680012 +1772.708084 +1772.733425 +1772.755603 +1772.782609 +1772.808817 +1772.833891 +1772.862729 +1772.876882 +1772.888370 +1772.889835 +1772.912812 +1772.914711 +1772.925766 +1772.939752 +1772.952073 +1773.013512 +1773.013745 +1773.015510 +1773.029163 +1773.030095 +1773.087571 +1773.088603 +1773.101157 +1773.113678 +1773.128230 +1773.143115 +1773.163062 +1773.163961 +1773.175849 +1773.221870 +1773.223235 +1773.237121 +1773.263162 +1773.277914 +1773.291966 +1773.293132 +1773.303621 +1773.316708 +1773.318440 +1773.399725 +1773.415043 +1773.416009 +1773.441517 +1773.454637 +1773.456135 +1773.492299 +1773.494497 +1773.508017 +1773.521803 +1773.523268 +1773.577847 +1773.589335 +1773.602089 +1773.612179 +1773.635656 +1773.650740 +1773.651373 +1773.665725 +1773.667890 +1773.693598 +1773.720404 +1773.732392 +1773.734090 +1773.761896 +1773.774583 +1773.806285 +1773.807184 +1773.862229 +1773.876048 +1773.931160 +1773.931393 +1773.933025 +1773.959831 +1773.971752 +1773.983374 +1773.995362 +1773.997393 +1774.008616 +1774.021003 +1774.077214 +1774.151373 +1774.206817 +1774.246211 +1774.286104 +1774.294330 +1774.298326 +1774.312678 +1774.313144 +1774.314776 +1774.327896 +1774.328462 +1774.329561 +1774.330294 +1774.343813 +1774.383440 +1774.383740 +1774.384073 +1774.385272 +1774.410047 +1774.438452 +1774.450606 +1774.455035 +1774.467856 +1774.480610 +1774.510580 +1774.511046 +1774.538851 +1774.591399 +1774.592198 +1774.638085 +1774.639651 +1774.705751 +1774.705984 +1774.729261 +1774.744712 +1774.788135 +1774.805218 +1774.832424 +1774.863526 +1774.880609 +1774.893463 +1774.939450 +1774.951572 +1774.966590 +1774.982474 +1774.983406 +1774.996726 +1775.010912 +1775.029460 +1775.043247 +1775.044745 +1775.073816 +1775.100822 +1775.111878 +1775.114941 +1775.176879 +1775.211312 +1775.227828 +1775.300223 +1775.315474 +1775.338451 +1775.382241 +1775.383972 +1775.413176 +1775.429826 +1775.431225 +1775.444312 +1775.447409 +1775.461295 +1775.470286 +1775.492530 +1775.507449 +1775.509014 +1775.521601 +1775.529859 +1775.541115 +1775.548974 +1775.562926 +1775.577412 +1775.590632 +1775.591365 +1775.605684 +1775.619237 +1775.619570 +1775.657232 +1775.788334 +1775.789233 +1775.805250 +1775.820735 +1775.874181 +1775.887135 +1775.887901 +1775.927062 +1775.930159 +1775.958331 +1776.923331 +1781.543273 +1783.122692 +1783.134980 +1783.368946 +1784.222758 +1785.124089 +1785.142138 +1785.185261 +1785.273140 +1785.973339 +1785.974271 +1785.974771 +1786.973538 +1787.439538 +1787.973270 +1787.973736 +1788.973569 +1789.644531 +1790.420354 +1790.433940 +1790.973967 +1790.974466 +1795.040563 +1795.054082 +1795.953515 +1795.958044 +1795.979756 +1796.173229 +1796.280022 +1796.373562 +1796.375893 +1796.379955 +1796.380455 +1796.475526 +1796.480355 +1796.774760 +1796.780821 +1797.274859 +1797.276558 +1797.474826 +1797.480387 +1797.773460 +1797.774992 +1797.775458 +1797.974959 +1798.074958 +1798.075391 +1798.177123 +1798.274925 +1798.277389 +1798.281319 +1798.374692 +1798.573526 +1798.574125 +1798.575591 +1799.047751 +1799.275024 +1799.574224 +1799.574491 +1799.673592 +1799.773758 +1799.975589 +1800.075523 +1800.675755 +1800.875522 +1800.977087 +1800.977586 +1801.633030 +1801.646050 +1802.527801 +1802.594434 +1802.857538 +1804.333161 +1805.152674 +1805.164961 +1805.979246 +1805.986306 +1806.015077 +1806.049143 +1806.059766 +1806.084441 +1806.084907 +1806.085973 +1806.096462 +1806.110881 +1806.164161 +1806.176182 +1806.177648 +1806.189303 +1806.245913 +1806.256569 +1806.267691 +1806.280778 +1806.318706 +1806.332826 +1806.391167 +1806.405253 +1806.405886 +1806.429762 +1806.443182 +1806.457601 +1806.470221 +1806.482443 +1806.483874 +1806.497294 +1806.521936 +1806.531160 +1806.552439 +1806.592965 +1806.607184 +1806.608616 +1806.620038 +1806.646711 +1806.647211 +1806.688636 +1806.716042 +1806.728996 +1806.738952 +1806.779412 +1806.807351 +1806.820537 +1806.832625 +1806.846245 +1806.859898 +1806.861996 +1806.882276 +1806.896262 +1806.919971 +1806.968956 +1806.979845 +1806.981576 +1807.019505 +1807.034656 +1807.068190 +1807.089368 +1807.098859 +1807.124866 +1807.166025 +1807.215542 +1807.218139 +1807.241516 +1807.241849 +1807.251173 +1807.265459 +1807.279278 +1807.320737 +1807.334257 +1807.361796 +1807.412645 +1807.423900 +1807.435056 +1807.436821 +1807.446811 +1807.460963 +1807.489068 +1807.489867 +1807.531959 +1807.558499 +1807.586171 +1807.598159 +1807.599591 +1807.607883 +1807.672185 +1807.736121 +1807.760430 +1807.760896 +1807.786903 +1807.822768 +1807.890100 +1807.939484 +1807.951905 +1807.987070 +1808.012677 +1808.047309 +1808.047876 +1808.097726 +1808.099357 +1808.139118 +1808.163327 +1808.175914 +1808.232624 +1808.247509 +1808.284472 +1808.312244 +1808.340982 +1808.381042 +1808.429960 +1808.441848 +1808.458098 +1808.468088 +1808.482407 +1808.535754 +1808.565358 +1808.576879 +1808.578311 +1808.590666 +1808.602287 +1808.643812 +1808.655534 +1808.668521 +1808.670852 +1808.711977 +1808.740615 +1808.741182 +1808.754502 +1808.768954 +1808.771052 +1808.799590 +1808.851271 +1808.880276 +1808.881874 +1808.895127 +1808.924898 +1808.954302 +1808.985137 +1808.998924 +1808.999490 +1809.024565 +1809.025197 +1809.026762 +1809.041281 +1809.103719 +1809.116339 +1809.157698 +1809.187701 +1809.218104 +1809.231358 +1809.245543 +1809.284971 +1809.348107 +1809.363159 +1809.376246 +1809.378044 +1809.391231 +1809.436719 +1809.455000 +1809.488866 +1809.527161 +1809.537451 +1809.565989 +1809.595093 +1809.612509 +1809.652836 +1809.654234 +1809.693495 +1809.716305 +1809.730691 +1809.742046 +1809.755799 +1809.768420 +1809.811643 +1809.823798 +1809.825263 +1809.838883 +1809.853501 +1809.894860 +1809.923165 +1809.952269 +1809.981174 +1809.982639 +1810.009479 +1810.042512 +1810.057031 +1810.057697 +1810.097091 +1810.098157 +1810.142479 +1810.143311 +1810.172216 +1810.185103 +1810.185336 +1810.226695 +1810.243611 +1810.284603 +1810.298523 +1810.311210 +1810.327227 +1810.341147 +1810.342845 +1810.354467 +1810.355399 +1810.367554 +1810.369019 +1810.384736 +1810.411476 +1810.414606 +1810.427760 +1810.440780 +1810.441679 +1810.443111 +1810.470018 +1810.470550 +1810.482072 +1810.482738 +1810.506714 +1810.532821 +1810.535019 +1810.544876 +1810.545609 +1810.546574 +1810.571849 +1810.591230 +1810.623764 +1810.625329 +1810.683537 +1810.697224 +1810.698789 +1810.712875 +1810.726528 +1810.727260 +1810.728392 +1810.742412 +1810.770450 +1810.788865 +1810.835685 +1810.882971 +1810.884303 +1810.892994 +1810.952968 +1811.256231 +1811.434585 +1814.355062 +1814.435082 +1816.348467 +1818.637109 +1818.713466 +1820.973537 +1821.972404 +1822.798643 +1822.857584 +1823.973168 +1824.201572 +1824.972800 +1825.486852 +1825.488884 +1826.624347 +1826.642029 +1826.667471 +1828.029507 +1828.159877 +1828.218918 +1830.702365 +1830.974759 +1831.072927 +1831.174892 +1831.179487 +1831.274126 +1831.375125 +1831.474292 +1831.574692 +1831.674825 +1831.675424 +1831.680819 +1831.776124 +1831.874259 +1831.916783 +1831.973493 +1831.973959 +1831.974259 +1832.073859 +1832.158641 +1832.175058 +1832.576489 +1832.580585 +1832.674657 +1832.680751 +1832.875823 +1832.981117 +1833.180618 +1833.274757 +1833.275722 +1833.474890 +1833.574290 +1833.611187 +1833.674890 +1833.773358 +1834.674922 +1834.677486 +1834.975488 +1834.976387 +1835.374821 +1835.464531 +1835.508920 +1835.553076 +1835.675587 +1835.680915 +1835.780881 +1835.975320 +1837.081879 +1839.474351 +1839.571420 +1839.585806 +1840.972285 +1840.972884 +1840.986171 +1841.012944 +1841.021935 +1841.031259 +1841.032458 +1841.054436 +1841.065425 +1841.097226 +1841.106983 +1841.118339 +1841.119704 +1841.132924 +1841.146411 +1841.158432 +1841.170187 +1841.180543 +1841.193064 +1841.202987 +1841.243314 +1841.244579 +1841.269787 +1841.306184 +1841.322135 +1841.334622 +1841.336221 +1841.349574 +1841.361762 +1841.403420 +1841.418571 +1841.430892 +1841.474749 +1841.488901 +1841.543147 +1841.555867 +1841.568588 +1841.580143 +1841.607083 +1841.618272 +1841.627929 +1841.633090 +1841.645178 +1841.661428 +1841.684006 +1841.724032 +1841.735987 +1841.737219 +1841.750439 +1841.764891 +1841.805751 +1841.830492 +1841.844212 +1841.857499 +1841.882674 +1841.883406 +1841.883939 +1841.912111 +1841.925664 +1841.969087 +1841.992330 +1842.002487 +1842.015374 +1842.028827 +1842.029959 +1842.044911 +1842.071651 +1842.106383 +1842.130992 +1842.184605 +1842.197791 +1842.198557 +1842.225997 +1842.250572 +1842.264292 +1842.306583 +1842.389500 +1842.405350 +1842.432656 +1842.434987 +1842.462293 +1842.500688 +1842.526263 +1842.558164 +1842.558530 +1842.573349 +1842.586136 +1842.587202 +1842.628360 +1842.666322 +1842.700055 +1842.700954 +1842.723166 +1842.747241 +1842.748474 +1842.771251 +1842.803785 +1842.814707 +1842.848607 +1842.864524 +1842.874414 +1842.886036 +1842.915573 +1842.947175 +1842.959229 +1842.975213 +1843.024963 +1843.039116 +1843.103452 +1843.106049 +1843.141747 +1843.153668 +1843.167321 +1843.182406 +1843.260195 +1843.304950 +1843.358130 +1843.397857 +1843.440980 +1843.467321 +1843.468120 +1843.490264 +1843.490531 +1843.491463 +1843.506415 +1843.533887 +1843.546375 +1843.675346 +1843.687400 +1843.702718 +1843.745342 +1843.780607 +1843.805016 +1843.819834 +1843.835452 +1843.851969 +1843.907280 +1843.923131 +1843.998422 +1844.011942 +1844.025762 +1844.099588 +1844.127959 +1844.157030 +1844.168352 +1844.179241 +1844.249504 +1844.294792 +1844.349171 +1844.384336 +1844.440613 +1844.441013 +1844.456797 +1844.458162 +1844.472281 +1844.486967 +1844.501619 +1844.516937 +1844.518635 +1844.532554 +1844.533820 +1844.561192 +1844.593294 +1844.595625 +1844.607080 +1844.608145 +1844.622931 +1844.654832 +1844.656430 +1844.688032 +1844.699887 +1844.702384 +1844.723996 +1844.745941 +1844.747806 +1844.777043 +1844.778075 +1844.791096 +1844.807612 +1844.820599 +1844.945641 +1845.019167 +1845.019467 +1845.059527 +1845.060093 +1845.118501 +1845.133453 +1845.135151 +1845.149603 +1845.179440 +1845.221631 +1845.236183 +1845.262723 +1845.341212 +1845.342044 +1845.382004 +1845.383636 +1845.422830 +1845.461891 +1845.487032 +1845.500818 +1845.515870 +1845.530988 +1845.555664 +1845.611041 +1845.623329 +1845.625261 +1845.668484 +1845.680072 +1845.711541 +1845.744641 +1845.789296 +1845.882536 +1845.932120 +1845.946772 +1845.961924 +1849.711936 +1852.615630 +1854.514229 +1854.524852 +1855.540136 +1856.546995 +1857.602438 +1857.730343 +1857.973034 +1857.974166 +1858.973332 +1858.973765 +1859.285087 +1859.973764 +1859.974830 +1862.265570 +1862.500702 +1865.972893 +1866.071960 +1866.178387 +1866.273092 +1866.375356 +1866.379419 +1866.774357 +1866.880351 +1867.075123 +1867.174623 +1867.175922 +1867.374556 +1867.675189 +1867.775255 +1867.975455 +1868.074689 +1868.174589 +1868.175754 +1868.274955 +1868.374422 +1868.574555 +1868.674555 +1868.675421 +1868.780549 +1869.074654 +1869.180082 +1869.674620 +1869.676086 +1869.875852 +1869.980980 +1870.375019 +1870.573854 +1870.875452 +1870.876584 +1873.927863 +1875.971950 +1875.980741 +1875.986036 +1875.986369 +1875.987035 +1876.011044 +1876.012177 +1876.058830 +1876.060195 +1876.071784 +1876.085270 +1876.086003 +1876.097358 +1876.110545 +1876.133955 +1876.145343 +1876.147075 +1876.157198 +1876.169952 +1876.171284 +1876.182639 +1876.219602 +1876.221933 +1876.243612 +1876.267654 +1876.268087 +1876.302319 +1876.327228 +1876.339649 +1876.349439 +1876.350371 +1876.351970 +1876.386202 +1876.397191 +1876.398057 +1876.398590 +1876.398923 +1876.422166 +1876.422899 +1876.435519 +1876.448207 +1876.458796 +1876.470984 +1876.485270 +1876.497224 +1876.535253 +1876.549139 +1876.571383 +1876.572749 +1876.573182 +1876.595326 +1876.596292 +1876.609712 +1876.636352 +1876.657264 +1876.714807 +1876.728793 +1876.738583 +1876.751470 +1876.752902 +1876.776345 +1876.777610 +1876.834320 +1876.844377 +1876.867520 +1876.868752 +1876.880674 +1876.910111 +1876.949405 +1876.961693 +1877.050704 +1877.078209 +1877.134686 +1877.148206 +1877.149738 +1877.176744 +1877.208379 +1877.234153 +1877.287600 +1877.289265 +1877.301120 +1877.326461 +1877.348972 +1877.349538 +1877.370550 +1877.372681 +1877.383437 +1877.411609 +1877.412242 +1877.462158 +1877.486701 +1877.499188 +1877.511709 +1877.513207 +1877.525961 +1877.542012 +1877.566188 +1877.640280 +1877.663257 +1877.664056 +1877.787266 +1877.788831 +1877.819767 +1877.820600 +1877.833220 +1877.857696 +1877.860193 +1877.884902 +1877.894792 +1877.909844 +1877.934119 +1877.945674 +1877.970183 +1877.971582 +1877.984569 +1878.006613 +1878.013740 +1878.057130 +1878.124695 +1878.126027 +1878.126826 +1878.127659 +1878.155764 +1878.184735 +1878.197289 +1878.199221 +1878.213140 +1878.229757 +1878.251602 +1878.266487 +1878.276044 +1878.333320 +1878.334852 +1878.368152 +1878.397156 +1878.408511 +1878.410542 +1878.422797 +1878.423330 +1878.454632 +1878.526626 +1878.529057 +1878.563489 +1878.578874 +1878.607212 +1878.621898 +1878.631788 +1878.697688 +1878.710276 +1878.710509 +1878.727159 +1878.813273 +1878.830256 +1878.859593 +1878.889929 +1878.920665 +1878.947805 +1878.961058 +1878.973579 +1879.045041 +1879.046905 +1879.062157 +1879.144774 +1879.145673 +1879.159160 +1879.173912 +1879.236749 +1879.265320 +1879.280971 +1879.322396 +1879.368384 +1879.446306 +1879.458593 +1879.459126 +1879.459459 +1879.474211 +1879.475976 +1879.488697 +1879.490228 +1879.504081 +1879.547338 +1879.575177 +1879.588730 +1879.613705 +1879.664953 +1879.667751 +1879.748170 +1879.762423 +1879.808510 +1879.835449 +1879.836382 +1879.850068 +1879.902949 +1879.903548 +1879.917900 +1879.946605 +1879.961956 +1879.963888 +1880.008476 +1880.039945 +1880.068083 +1880.068949 +1880.081770 +1880.083468 +1880.158792 +1880.159925 +1880.248036 +1880.305845 +1880.333451 +1880.393524 +1880.440610 +1880.469115 +1880.471146 +1880.546604 +1880.574843 +1880.592558 +1880.604679 +1880.638645 +1880.652798 +1880.665885 +1880.667583 +1880.681436 +1880.695722 +1880.710107 +1880.711040 +1880.725325 +1880.739644 +1880.739977 +1880.741642 +1880.756061 +1880.774410 +1880.803081 +1880.817433 +1880.818399 +1880.829321 +1880.847903 +1880.878738 +1880.891626 +1880.907709 +1880.912172 +1880.926890 +1891.972134 +1891.973433 +1891.980259 +1893.980557 +1894.972131 +1895.979689 +1900.972158 +1900.972924 +1901.074522 +1901.178085 +1901.178818 +1901.279118 +1901.575521 +1901.674255 +1901.773889 +1901.779517 +1901.974621 +1901.979550 +1902.080049 +1902.174155 +1902.174255 +1902.280249 +1902.374621 +1902.679882 +1902.779849 +1902.874687 +1902.880015 +1903.074720 +1903.280048 +1903.374753 +1903.475819 +1903.479948 +1903.674720 +1903.774686 +1903.875186 +1903.973554 +1904.175785 +1904.280247 +1904.374353 +1904.376451 +1904.474119 +1904.474752 +1904.480080 +1904.874286 +1904.880513 +1904.976783 +1904.980080 +1905.074585 +1905.279613 +1905.379846 +1905.480146 +1905.574684 +1905.773585 +1905.873485 +1905.874285 +1905.879846 +1910.978176 +1910.978842 +1910.985968 +1910.986334 +1911.001286 +1911.001985 +1911.010477 +1911.011675 +1911.012275 +1911.046640 +1911.053034 +1911.063457 +1911.082904 +1911.099354 +1911.100287 +1911.120666 +1911.121099 +1911.134286 +1911.165022 +1911.175578 +1911.177343 +1911.227959 +1911.238981 +1911.250336 +1911.262391 +1911.272215 +1911.273280 +1911.284669 +1911.286167 +1911.297489 +1911.308278 +1911.308845 +1911.320333 +1911.340280 +1911.351702 +1911.351935 +1911.352667 +1911.363024 +1911.384769 +1911.397889 +1911.399021 +1911.409977 +1911.420999 +1911.427526 +1911.437482 +1911.447805 +1911.459727 +1911.471082 +1911.493293 +1911.506147 +1911.515338 +1911.536750 +1911.545208 +1911.547372 +1911.556863 +1911.570283 +1911.571615 +1911.610243 +1911.639547 +1911.651202 +1911.653566 +1911.688631 +1911.700319 +1911.700652 +1911.712740 +1911.713506 +1911.714838 +1911.727259 +1911.762324 +1911.771681 +1911.783403 +1911.816004 +1911.854032 +1911.855864 +1911.856197 +1911.868218 +1911.881438 +1911.908178 +1911.930456 +1911.944775 +1911.955564 +1911.968118 +1912.005880 +1912.056696 +1912.058128 +1912.083769 +1912.112240 +1912.128324 +1912.164055 +1912.185001 +1912.196756 +1912.222563 +1912.233053 +1912.249936 +1912.281704 +1912.290595 +1912.313306 +1912.322796 +1912.349936 +1912.364122 +1912.364987 +1912.378474 +1912.402084 +1912.470016 +1912.507312 +1912.540745 +1912.591028 +1912.592560 +1912.665886 +1912.707278 +1912.741377 +1912.743575 +1912.755030 +1912.774344 +1912.775177 +1912.805813 +1912.807278 +1912.816635 +1912.817168 +1912.819000 +1912.828990 +1912.830421 +1912.843242 +1912.856495 +1912.858393 +1912.895723 +1912.923062 +1912.923528 +1912.924061 +1912.925626 +1912.952166 +1912.966552 +1912.977474 +1912.989862 +1913.030654 +1913.031620 +1913.069848 +1913.083834 +1913.113272 +1913.153531 +1913.154164 +1913.166818 +1913.203981 +1913.230721 +1913.341243 +1913.354230 +1913.424360 +1913.450534 +1913.451500 +1913.479805 +1913.492425 +1913.533384 +1913.544806 +1913.559758 +1913.561157 +1913.575942 +1913.588363 +1913.601450 +1913.632219 +1913.646438 +1913.659425 +1913.699218 +1913.712705 +1913.723461 +1913.756328 +1913.771280 +1913.827990 +1913.838879 +1913.850600 +1913.852165 +1913.853431 +1913.952964 +1913.967983 +1913.983700 +1913.994922 +1914.025225 +1914.084166 +1914.098652 +1914.138445 +1914.168549 +1914.183367 +1914.226058 +1914.257593 +1914.271978 +1914.285132 +1914.312205 +1914.327889 +1914.329221 +1914.358325 +1914.374909 +1914.430054 +1914.492025 +1914.505178 +1914.505944 +1914.519331 +1914.533983 +1914.534715 +1914.548002 +1914.549501 +1914.575741 +1914.591159 +1914.604745 +1914.606444 +1914.607343 +1914.651765 +1914.652664 +1914.683267 +1914.696287 +1914.724759 +1914.755761 +1914.773177 +1914.799617 +1914.803113 +1914.831319 +1914.854296 +1914.856893 +1914.858092 +1914.872011 +1914.883699 +1914.896553 +1914.910306 +1914.941308 +1914.983599 +1915.042141 +1915.042840 +1915.057026 +1915.072577 +1915.087396 +1915.088261 +1915.116133 +1915.204645 +1915.208374 +1915.209207 +1915.222993 +1915.238578 +1915.283566 +1915.285164 +1915.300016 +1915.326856 +1915.359423 +1915.401581 +1915.403812 +1915.404378 +1915.420362 +1915.493189 +1915.536413 +1915.548634 +1915.561588 +1915.579636 +1915.594987 +1915.622427 +1915.637445 +1915.638411 +1915.652497 +1915.667548 +1915.683399 +1915.785397 +1915.787695 +1915.799116 +1915.812237 +1915.968813 +1927.971931 +1928.979922 +1929.972362 +1929.972795 +1930.972861 +1930.979654 +1931.594206 +1935.978550 +1936.072989 +1936.073655 +1936.077418 +1936.273888 +1936.278517 +1936.279382 +1936.374920 +1936.473488 +1936.579582 +1936.774653 +1936.779349 +1937.073820 +1937.173720 +1937.175186 +1937.274753 +1937.379947 +1937.475052 +1937.774386 +1937.874019 +1938.273120 +1938.275651 +1938.279347 +1938.373120 +1938.480346 +1938.579713 +1938.873919 +1939.067658 +1939.172686 +1939.173352 +1939.775949 +1940.080011 +1940.274350 +1940.375216 +1940.574783 +1940.580211 +1940.676314 +1940.862128 +1940.872884 +1942.352370 +1942.920568 +1944.595391 +1944.643943 +1944.720832 +1944.723263 +1944.748138 +1945.980139 +1945.993392 +1945.999253 +1946.006545 +1946.007445 +1946.015670 +1946.037581 +1946.038547 +1946.093925 +1946.116302 +1946.126858 +1946.158393 +1946.205313 +1946.213072 +1946.249935 +1946.251467 +1946.251933 +1946.272546 +1946.285400 +1946.286465 +1946.298786 +1946.298953 +1946.309642 +1946.311207 +1946.320664 +1946.321031 +1946.358393 +1946.396955 +1946.398586 +1946.410574 +1946.421996 +1946.501317 +1946.512339 +1946.569782 +1946.584001 +1946.685632 +1946.700218 +1946.700751 +1946.714603 +1946.725259 +1946.725959 +1946.736382 +1946.774077 +1946.786898 +1946.799152 +1946.823161 +1946.835183 +1946.866185 +1946.903548 +1946.916801 +1946.929055 +1946.967450 +1947.014869 +1947.039345 +1947.071879 +1947.084333 +1947.085765 +1947.100883 +1947.111706 +1947.150534 +1947.174343 +1947.175675 +1947.241709 +1947.242442 +1947.285399 +1947.321463 +1947.332651 +1947.343807 +1947.354596 +1947.369814 +1947.383134 +1947.383567 +1947.396654 +1947.443740 +1947.459691 +1947.474310 +1947.492958 +1947.504080 +1947.505279 +1947.517000 +1947.547736 +1947.629354 +1947.681535 +1947.706843 +1947.778838 +1947.816667 +1947.830020 +1947.846970 +1947.856893 +1947.879837 +1947.894755 +1947.916201 +1947.932817 +1947.945604 +1947.982801 +1947.997619 +1948.025425 +1948.050932 +1948.052997 +1948.065484 +1948.083633 +1948.096786 +1948.150499 +1948.164186 +1948.192024 +1948.206110 +1948.291192 +1948.291825 +1948.302947 +1948.305278 +1948.328355 +1948.341142 +1948.342674 +1948.353463 +1948.354562 +1948.366317 +1948.367182 +1948.367948 +1948.462953 +1948.482700 +1948.496220 +1948.522860 +1948.535148 +1948.536713 +1948.558624 +1948.582567 +1948.595054 +1948.596619 +1948.647868 +1948.661721 +1948.677305 +1948.704312 +1948.716200 +1948.729253 +1948.740942 +1948.754095 +1948.755061 +1948.794555 +1948.810439 +1948.863552 +1948.873209 +1948.887728 +1948.902214 +1948.963552 +1948.989693 +1949.002180 +1949.017765 +1949.018597 +1949.029886 +1949.042273 +1949.071977 +1949.072776 +1949.127055 +1949.127521 +1949.204944 +1949.231218 +1949.232083 +1949.260788 +1949.288593 +1949.301181 +1949.331184 +1949.361121 +1949.374274 +1949.388194 +1949.445503 +1949.459855 +1949.472443 +1949.472842 +1949.474308 +1949.503179 +1949.517331 +1949.572243 +1949.588460 +1949.601014 +1949.632116 +1949.660588 +1949.662386 +1949.673675 +1949.763252 +1949.792789 +1949.805243 +1949.833182 +1949.872442 +1949.902679 +1949.938676 +1949.963884 +1949.964517 +1949.965116 +1949.966082 +1949.978603 +1950.008306 +1950.009738 +1950.023025 +1950.036212 +1950.050664 +1950.076005 +1950.077371 +1950.091157 +1950.124490 +1950.138443 +1950.166082 +1950.244736 +1950.259855 +1950.308839 +1950.375472 +1950.377204 +1950.415765 +1950.418063 +1950.418962 +1950.446934 +1950.457324 +1950.491489 +1950.522225 +1950.548066 +1950.574606 +1950.577070 +1950.590623 +1950.602278 +1950.643371 +1950.656924 +1950.672408 +1950.821659 +1950.875105 +1950.887360 +1950.917896 +1950.946234 +1950.958189 +1952.205574 +1960.979258 +1962.228407 +1962.246289 +1962.970498 +1962.971131 +1962.979123 +1963.557544 +1963.564437 +1963.634134 +1963.645289 +1963.663737 +1963.678256 +1963.696405 +1963.978123 +1963.978855 +1964.273327 +1964.662138 +1965.972426 +1969.742286 +1970.970490 +1971.373819 +1971.374419 +1971.579380 +1972.173685 +1972.273352 +1972.274385 +1972.278847 +1972.373252 +1972.572453 +1972.772852 +1972.773718 +1973.276215 +1973.376315 +1973.573384 +1973.672951 +1973.673584 +1973.675182 +1973.774250 +1973.873584 +1973.874150 +1974.074383 +1974.373084 +1974.473617 +1974.672684 +1974.773050 +1974.779577 +1974.781142 +1974.874216 +1974.875015 +1975.073050 +1975.076147 +1975.079910 +1975.173749 +1975.375014 +1975.475147 +1975.672550 +1975.673649 +1975.674348 +1975.773515 +1975.981507 +1977.233021 +1977.254733 +1977.353267 +1978.189930 +1978.866919 +1980.239245 +1980.971279 +1980.978439 +1980.994156 +1981.049834 +1981.058925 +1981.083866 +1981.116567 +1981.144905 +1981.155228 +1981.172145 +1981.207476 +1981.219597 +1981.221062 +1981.234449 +1981.246936 +1981.247602 +1981.258059 +1981.269014 +1981.270679 +1981.307576 +1981.319197 +1981.320563 +1981.332484 +1981.359058 +1981.370180 +1981.371845 +1981.385498 +1981.397386 +1981.411705 +1981.461522 +1981.471212 +1981.472644 +1981.473643 +1981.488062 +1981.524392 +1981.545338 +1981.570979 +1981.595854 +1981.608075 +1981.714069 +1981.724026 +1981.738811 +1981.751431 +1981.764785 +1981.778205 +1981.778904 +1981.792524 +1981.820562 +1981.821928 +1981.847768 +1981.886663 +1981.896253 +1981.905277 +1981.917432 +1981.918331 +1981.931451 +1981.985630 +1982.005810 +1982.030053 +1982.042906 +1982.072677 +1982.086729 +1982.087695 +1982.111571 +1982.124292 +1982.137512 +1982.161654 +1982.191191 +1982.192790 +1982.203612 +1982.216732 +1982.230951 +1982.231817 +1982.270279 +1982.270945 +1982.331451 +1982.362819 +1982.380768 +1982.382300 +1982.392556 +1982.394355 +1982.405876 +1982.407441 +1982.417465 +1982.427521 +1982.462320 +1982.477804 +1982.490458 +1982.504644 +1982.584098 +1982.598284 +1982.628121 +1982.628820 +1982.642639 +1982.670578 +1982.695453 +1982.710538 +1982.736013 +1982.786329 +1982.809572 +1982.811470 +1982.862886 +1982.900515 +1982.901247 +1982.916265 +1982.928553 +1982.978437 +1982.991723 +1983.034680 +1983.132749 +1983.134514 +1983.146968 +1983.162153 +1983.174907 +1983.199582 +1983.201114 +1983.224324 +1983.225889 +1983.245503 +1983.246069 +1983.248533 +1983.248899 +1983.262219 +1983.286761 +1983.287594 +1983.301147 +1983.302612 +1983.338376 +1983.361686 +1983.428120 +1983.431183 +1983.440208 +1983.453861 +1983.465083 +1983.475273 +1983.487261 +1983.490258 +1983.549931 +1983.550697 +1983.574207 +1983.587327 +1983.598016 +1983.640274 +1983.650364 +1983.653194 +1983.695086 +1983.695818 +1983.708972 +1983.734513 +1983.734779 +1983.736145 +1983.750164 +1983.763750 +1983.778236 +1983.793121 +1983.805575 +1983.820061 +1983.848965 +1983.850797 +1983.861120 +1983.891989 +1983.984130 +1984.012468 +1984.064416 +1984.136877 +1984.151795 +1984.183730 +1984.185195 +1984.198549 +1984.239308 +1984.273041 +1984.298049 +1984.316164 +1984.317396 +1984.318395 +1984.336344 +1984.348365 +1984.350130 +1984.360720 +1984.362351 +1984.371342 +1984.375172 +1984.387759 +1984.389324 +1984.402877 +1984.416031 +1984.417796 +1984.454359 +1984.468545 +1984.470443 +1984.493753 +1984.495285 +1984.509437 +1984.521858 +1984.538475 +1984.564982 +1984.590523 +1984.603810 +1984.651162 +1984.662517 +1984.692221 +1984.704043 +1984.718928 +1984.733913 +1984.734612 +1984.747432 +1984.758988 +1984.772208 +1984.773773 +1984.799747 +1984.812601 +1984.835611 +1984.920459 +1984.921758 +1984.933979 +1984.966680 +1984.968378 +1984.981798 +1984.983330 +1985.013832 +1985.024488 +1985.052627 +1985.089856 +1985.114398 +1985.156057 +1985.183962 +1985.186826 +1985.212434 +1985.213732 +1985.228218 +1985.285893 +1985.326753 +1985.327652 +1985.364248 +1985.391055 +1985.406506 +1985.406972 +1985.408537 +1985.424455 +1985.424821 +1985.437475 +1985.439673 +1985.504974 +1985.520159 +1985.547332 +1985.558487 +1985.582197 +1985.586160 +1985.603742 +1985.648464 +1985.661917 +1985.675603 +1985.712367 +1985.713232 +1985.725920 +1985.738507 +1985.766279 +1985.768044 +1985.780532 +1985.793752 +1985.821857 +1985.879932 +1985.942902 +1985.958121 +1988.609034 +1991.052521 +1991.086720 +1991.405335 +1991.700506 +1992.389549 +1992.906998 +1994.304666 +1994.405931 +1996.973194 +1998.665500 +1998.973159 +1999.484447 +1999.532200 +1999.574191 +1999.650914 +2000.457507 +2000.645119 +2000.652878 +2000.657573 +2000.712818 +2000.848948 +2000.858505 +2000.893437 +2000.910320 +2000.972724 +2001.729966 +2002.676852 +2002.715513 +2003.738123 +2004.706087 +2004.716344 +2004.735658 +2004.860033 +2005.979146 +2006.178713 +2006.182709 +2006.183042 +2006.474317 +2006.490035 +2006.573718 +2006.575016 +2006.673884 +2006.686272 +2006.779179 +2006.874650 +2006.979711 +2007.075882 +2007.274250 +2007.275548 +2007.276081 +2007.474050 +2007.576148 +2007.675715 +2007.676747 +2007.774149 +2007.774949 +2007.876847 +2007.976480 +2008.375614 +2008.775414 +2008.848840 +2008.873316 +2008.972816 +2008.979243 +2009.072883 +2009.074115 +2009.274281 +2009.381840 +2009.580674 +2009.774480 +2009.875013 +2009.875879 +2010.087700 +2010.175845 +2010.274014 +2010.274979 +2010.275712 +2010.580440 +2010.674513 +2010.775279 +2010.980240 +2011.264289 +2011.762291 +2012.807211 +2013.745738 +2013.988162 +2014.076541 +2015.116366 +2015.986595 +2015.995420 +2016.013935 +2016.015067 +2016.023891 +2016.024557 +2016.025690 +2016.026289 +2016.055227 +2016.056292 +2016.105010 +2016.127954 +2016.128720 +2016.151530 +2016.161720 +2016.162419 +2016.174507 +2016.187128 +2016.208074 +2016.218064 +2016.228853 +2016.240741 +2016.256159 +2016.268646 +2016.291990 +2016.305476 +2016.315499 +2016.327687 +2016.339875 +2016.340807 +2016.399316 +2016.425789 +2016.427254 +2016.439076 +2016.439708 +2016.453428 +2016.455293 +2016.476838 +2016.487794 +2016.500048 +2016.512902 +2016.529086 +2016.549598 +2016.574906 +2016.590458 +2016.639608 +2016.651796 +2016.653528 +2016.665283 +2016.677737 +2016.678403 +2016.689991 +2016.712802 +2016.722925 +2016.733914 +2016.735479 +2016.748799 +2016.760687 +2016.776771 +2016.788859 +2016.789658 +2016.833914 +2016.889125 +2016.924257 +2016.935812 +2016.946668 +2016.960487 +2016.961986 +2016.999448 +2017.036611 +2017.048865 +2017.062685 +2017.076038 +2017.099282 +2017.127753 +2017.139841 +2017.183664 +2017.206175 +2017.216464 +2017.228918 +2017.243837 +2017.266281 +2017.277703 +2017.291756 +2017.293454 +2017.293920 +2017.305908 +2017.307606 +2017.323357 +2017.371309 +2017.417030 +2017.468479 +2017.479135 +2017.501978 +2017.504742 +2017.518029 +2017.531382 +2017.588126 +2017.624689 +2017.625455 +2017.626187 +2017.649264 +2017.663150 +2017.678502 +2017.782731 +2017.851628 +2017.875505 +2017.900679 +2017.914865 +2017.942837 +2017.971475 +2018.014599 +2018.040673 +2018.041672 +2018.117096 +2018.128684 +2018.142537 +2018.170243 +2018.199613 +2018.291322 +2018.317196 +2018.342104 +2018.356956 +2018.368311 +2018.379600 +2018.421158 +2018.451495 +2018.452161 +2018.453359 +2018.465081 +2018.476736 +2018.526986 +2018.573006 +2018.655058 +2018.665547 +2018.693452 +2018.721791 +2018.779999 +2018.791255 +2018.806506 +2018.891321 +2018.906506 +2018.921657 +2018.934877 +2018.935910 +2018.950495 +2018.963016 +2018.976403 +2019.016229 +2019.026785 +2019.120392 +2019.120991 +2019.146899 +2019.161584 +2019.213665 +2019.253392 +2019.254025 +2019.268743 +2019.310302 +2019.325153 +2019.325586 +2019.351194 +2019.377934 +2019.378567 +2019.380098 +2019.420358 +2019.421723 +2019.461484 +2019.492852 +2019.520991 +2019.552726 +2019.596182 +2019.598447 +2019.643801 +2019.687424 +2019.717061 +2019.761650 +2019.775636 +2019.797614 +2019.811800 +2019.836908 +2019.863148 +2019.875369 +2019.901676 +2019.967277 +2019.979332 +2020.006105 +2020.053391 +2020.096548 +2020.109668 +2020.168876 +2020.184393 +2020.199278 +2020.223488 +2020.233045 +2020.261450 +2020.263314 +2020.278399 +2020.309168 +2020.366711 +2020.367443 +2020.440204 +2020.453724 +2020.466245 +2020.482462 +2020.495948 +2020.523720 +2020.525319 +2020.534909 +2020.575335 +2020.600777 +2020.616727 +2020.643567 +2020.659451 +2020.694050 +2020.704539 +2020.718126 +2020.747630 +2020.749261 +2020.860650 +2020.861749 +2020.873603 +2020.914396 +2020.926351 +2020.940803 +2020.953956 +2021.308701 +2021.838804 +2023.166209 +2024.787352 +2024.816124 +2024.850656 +2025.337568 +2026.932772 +2026.955782 +2027.227976 +2027.262941 +2029.586682 +2029.647154 +2029.771064 +2030.447187 +2030.973260 +2031.974791 +2032.878520 +2032.906958 +2032.974490 +2033.365732 +2033.889208 +2033.912352 +2033.973024 +2033.980217 +2034.208156 +2034.853043 +2034.973723 +2035.973722 +2036.185510 +2036.199962 +2039.067325 +2039.708283 +2040.980610 +2041.079244 +2041.475314 +2041.480742 +2041.674582 +2041.675514 +2041.677179 +2041.977445 +2041.980675 +2042.074481 +2042.075147 +2042.174848 +2042.275447 +2042.280908 +2042.375713 +2042.677045 +2042.874714 +2042.875979 +2042.877145 +2042.877977 +2042.976012 +2043.374846 +2043.377743 +2043.475013 +2043.582072 +2043.981006 +2044.177976 +2044.575911 +2044.576810 +2044.675278 +2044.676177 +2044.780140 +2044.880606 +2045.276676 +2045.289064 +2045.375577 +2045.581005 +2045.675910 +2046.122263 +2046.129489 +2046.170781 +2046.291560 +2046.565652 +2046.597754 +2048.721827 +2050.973707 +2050.974339 +2050.980333 +2050.987027 +2050.994985 +2051.012101 +2051.012335 +2051.013433 +2051.019494 +2051.019827 +2051.036277 +2051.037076 +2051.037476 +2051.073007 +2051.082897 +2051.103177 +2051.110103 +2051.120693 +2051.133180 +2051.155957 +2051.156490 +2051.178368 +2051.179301 +2051.190623 +2051.205441 +2051.235778 +2051.237076 +2051.247233 +2051.248032 +2051.248565 +2051.283030 +2051.294319 +2051.306940 +2051.317795 +2051.342005 +2051.357223 +2051.381698 +2051.383530 +2051.396150 +2051.417396 +2051.432914 +2051.450396 +2051.451062 +2051.511002 +2051.521958 +2051.522657 +2051.536843 +2051.548132 +2051.549663 +2051.575537 +2051.617529 +2051.651461 +2051.663683 +2051.686859 +2051.736476 +2051.746366 +2051.767079 +2051.830982 +2051.831648 +2051.833413 +2051.916430 +2051.929483 +2051.955024 +2051.969743 +2051.995617 +2052.019193 +2052.020092 +2052.030815 +2052.088690 +2052.112666 +2052.114864 +2052.124788 +2052.151894 +2052.164115 +2052.165647 +2052.179100 +2052.192986 +2052.218061 +2052.219393 +2052.220159 +2052.277202 +2052.278267 +2052.278700 +2052.343402 +2052.375570 +2052.407405 +2052.420192 +2052.436409 +2052.508071 +2052.521923 +2052.538307 +2052.565713 +2052.568111 +2052.581297 +2052.595783 +2052.629949 +2052.643335 +2052.668344 +2052.691654 +2052.704840 +2052.734211 +2052.791420 +2052.862915 +2052.892719 +2052.917328 +2052.928050 +2052.954091 +2052.967644 +2052.993551 +2053.006372 +2053.007937 +2053.020025 +2053.047764 +2053.102109 +2053.146765 +2053.200411 +2053.227284 +2053.228882 +2053.240338 +2053.254690 +2053.294150 +2053.307604 +2053.319858 +2053.321590 +2053.388889 +2053.416528 +2053.460351 +2053.564546 +2053.577866 +2053.607603 +2053.617460 +2053.630048 +2053.698879 +2053.724786 +2053.754223 +2053.769508 +2053.782928 +2053.864246 +2053.866078 +2053.880464 +2053.881829 +2053.932445 +2053.959851 +2053.961050 +2054.001842 +2054.015262 +2054.043301 +2054.070940 +2054.097879 +2054.110866 +2054.112864 +2054.153390 +2054.164413 +2054.207103 +2054.236441 +2054.250793 +2054.305738 +2054.307503 +2054.346031 +2054.374636 +2054.388955 +2054.400643 +2054.431046 +2054.483060 +2054.500143 +2054.511898 +2054.571172 +2054.572870 +2054.601275 +2054.612664 +2054.684459 +2054.697712 +2054.712098 +2054.727582 +2054.741701 +2054.752957 +2054.753223 +2054.787023 +2054.804039 +2054.828881 +2054.888122 +2054.901109 +2054.913230 +2054.914562 +2054.914728 +2054.916393 +2054.941768 +2054.955088 +2054.994682 +2054.995447 +2055.021888 +2055.073902 +2055.099643 +2055.136873 +2055.146896 +2055.162647 +2055.188321 +2055.204938 +2055.269506 +2055.282960 +2055.296513 +2055.312031 +2055.343333 +2055.359450 +2055.388854 +2055.412164 +2055.443099 +2055.527348 +2055.541334 +2055.567408 +2055.579896 +2055.605104 +2055.631677 +2055.645930 +2055.708767 +2055.722120 +2055.722886 +2055.734041 +2055.737105 +2055.748460 +2055.748993 +2055.793182 +2055.820954 +2055.831344 +2055.848394 +2055.861414 +2055.905437 +2055.918224 +2055.945530 +2060.519618 +2060.600903 +2060.617586 +2060.664872 +2060.680557 +2062.057079 +2062.103965 +2062.107562 +2063.400101 +2063.637796 +2064.470863 +2064.598868 +2065.005194 +2065.980884 +2066.534097 +2066.974490 +2067.239158 +2067.265066 +2067.974455 +2068.973788 +2068.974454 +2069.974420 +2070.981612 +2072.726832 +2073.564193 +2074.878744 +2074.994095 +2074.995161 +2075.077246 +2075.494461 +2075.972816 +2075.973082 +2075.973815 +2076.047175 +2076.074581 +2076.174114 +2076.179109 +2076.183072 +2076.282206 +2076.375213 +2076.393195 +2076.775079 +2076.781240 +2076.975912 +2076.981573 +2077.175146 +2077.181040 +2077.280840 +2077.303251 +2077.306814 +2077.311676 +2077.316537 +2077.332788 +2077.370250 +2077.374613 +2077.375811 +2077.429125 +2077.475045 +2077.538449 +2077.574046 +2077.675012 +2077.874346 +2078.074745 +2078.075977 +2078.174479 +2078.281804 +2078.381871 +2078.474711 +2078.481405 +2078.577941 +2078.776210 +2078.785800 +2078.876043 +2079.275610 +2079.375243 +2079.381404 +2080.075409 +2080.075942 +2080.081803 +2080.475342 +2080.476175 +2080.574210 +2080.681036 +2080.775375 +2080.781802 +2080.876041 +2080.976041 +2084.597549 +2084.706507 +2085.997015 +2086.004774 +2086.057887 +2086.069342 +2086.070308 +2086.080864 +2086.094051 +2086.104907 +2086.116096 +2086.153225 +2086.179532 +2086.201610 +2086.202909 +2086.228483 +2086.252093 +2086.253558 +2086.266678 +2086.288723 +2086.347830 +2086.358486 +2086.372039 +2086.373738 +2086.385326 +2086.385692 +2086.396948 +2086.424820 +2086.487957 +2086.499712 +2086.512799 +2086.526751 +2086.539472 +2086.554424 +2086.605672 +2086.625985 +2086.676168 +2086.695582 +2086.724753 +2086.734010 +2086.793851 +2086.808136 +2086.843334 +2086.854790 +2086.870241 +2086.897813 +2086.977567 +2087.006071 +2087.006338 +2087.036641 +2087.050027 +2087.081463 +2087.082029 +2087.082795 +2087.083494 +2087.135875 +2087.148496 +2087.158153 +2087.160650 +2087.171806 +2087.179465 +2087.180430 +2087.192651 +2087.247996 +2087.249594 +2087.259118 +2087.272971 +2087.292019 +2087.292818 +2087.302808 +2087.360650 +2087.381429 +2087.383693 +2087.471439 +2087.525518 +2087.542867 +2087.627116 +2087.667110 +2087.686524 +2087.712364 +2087.713397 +2087.714795 +2087.745265 +2087.752757 +2087.753390 +2087.794183 +2087.806204 +2087.807136 +2087.807702 +2087.881062 +2087.892551 +2087.923686 +2087.934742 +2087.935608 +2087.948162 +2087.962214 +2087.964013 +2087.976700 +2087.989221 +2088.015561 +2088.016960 +2088.028948 +2088.062114 +2088.081195 +2088.092983 +2088.107436 +2088.161348 +2088.163579 +2088.193882 +2088.195348 +2088.220123 +2088.242334 +2088.290286 +2088.358717 +2088.359250 +2088.384925 +2088.385357 +2088.386923 +2088.428747 +2088.441068 +2088.442667 +2088.455521 +2088.457019 +2088.470406 +2088.512896 +2088.523819 +2088.537505 +2088.539270 +2088.551824 +2088.552290 +2088.553889 +2088.645997 +2088.646896 +2088.657085 +2088.672570 +2088.683426 +2088.685124 +2088.697612 +2088.737072 +2088.779796 +2088.791984 +2088.849526 +2088.865277 +2088.903073 +2088.914028 +2088.923119 +2088.937605 +2088.948161 +2089.001174 +2089.002939 +2089.073968 +2089.100442 +2089.102007 +2089.129746 +2089.142966 +2089.143632 +2089.158817 +2089.159283 +2089.190019 +2089.215626 +2089.217058 +2089.229945 +2089.241068 +2089.241500 +2089.242666 +2089.254221 +2089.254721 +2089.269173 +2089.325317 +2089.351690 +2089.378963 +2089.392383 +2089.443065 +2089.445430 +2089.459416 +2089.473535 +2089.520388 +2089.522153 +2089.568540 +2089.580561 +2089.581394 +2089.595180 +2089.596978 +2089.613461 +2089.637138 +2089.655320 +2089.668140 +2089.669705 +2089.680894 +2089.723818 +2089.724883 +2089.839635 +2089.850757 +2089.851323 +2089.879229 +2089.879728 +2089.880894 +2089.909532 +2089.923551 +2089.925216 +2089.939668 +2089.953022 +2089.979562 +2089.999109 +2090.038270 +2090.053088 +2090.067640 +2090.069205 +2090.083491 +2090.097544 +2090.111929 +2090.123917 +2090.124550 +2090.162645 +2090.177497 +2090.178429 +2090.193414 +2090.205402 +2090.219122 +2090.243597 +2090.244230 +2090.261479 +2090.333308 +2090.362612 +2090.386987 +2090.408366 +2090.494846 +2090.525315 +2090.526481 +2090.588652 +2090.601073 +2090.630510 +2090.632009 +2090.645828 +2090.676364 +2090.700673 +2090.713161 +2090.755618 +2090.770936 +2090.799974 +2090.815025 +2090.831476 +2090.845695 +2090.875531 +2090.907400 +2090.908199 +2090.923950 +2090.938868 +2090.940433 +2090.941332 +2090.954486 +2090.967073 +2090.969537 +2093.185552 +2094.112025 +2095.539729 +2095.609892 +2095.703565 +2095.894940 +2097.065602 +2097.101133 +2097.150184 +2098.147785 +2100.211120 +2101.980982 +2102.974920 +2102.980548 +2102.981080 +2103.356238 +2103.973387 +2104.973686 +2104.976350 +2109.083672 +2109.180208 +2109.240282 +2110.366987 +2110.979840 +2110.980540 +2111.072248 +2111.174745 +2111.275444 +2111.280506 +2111.374146 +2111.576443 +2111.674012 +2111.674811 +2111.876010 +2111.975311 +2112.076143 +2112.174711 +2112.176975 +2112.375277 +2112.580605 +2112.774710 +2112.774977 +2113.074577 +2113.077640 +2113.175609 +2113.176708 +2113.375342 +2113.381103 +2113.476874 +2113.575142 +2113.576541 +2113.676041 +2113.676608 +2113.875076 +2113.875941 +2113.876041 +2113.877340 +2113.975142 +2113.975575 +2113.975741 +2113.976274 +2114.276707 +2114.375375 +2114.376607 +2114.677173 +2114.774675 +2114.775108 +2114.875541 +2115.075441 +2115.075840 +2115.175940 +2115.475041 +2115.475440 +2115.675307 +2115.775240 +2115.777238 +2115.777871 +2115.876006 +2115.880868 +2115.975073 +2117.854292 +2117.936976 +2120.830513 +2120.972638 +2120.979897 +2120.987190 +2120.987423 +2120.995282 +2120.996081 +2121.015428 +2121.024586 +2121.026317 +2121.036041 +2121.072138 +2121.083360 +2121.084026 +2121.106603 +2121.117293 +2121.128182 +2121.148728 +2121.216727 +2121.229181 +2121.288521 +2121.302141 +2121.316427 +2121.350792 +2121.385025 +2121.425751 +2121.438571 +2121.491285 +2121.505704 +2121.518125 +2121.519590 +2121.571971 +2121.614362 +2121.615194 +2121.631844 +2121.643499 +2121.644965 +2121.674135 +2121.686689 +2121.752857 +2121.790252 +2121.827815 +2121.885557 +2121.910932 +2121.925351 +2121.938804 +2121.949726 +2121.961781 +2121.974202 +2121.984325 +2121.985857 +2121.998744 +2122.014228 +2122.083692 +2122.097012 +2122.097378 +2122.141401 +2122.226316 +2122.376532 +2122.413628 +2122.428014 +2122.455720 +2122.497478 +2122.586089 +2122.601907 +2122.624284 +2122.664144 +2122.676132 +2122.730145 +2122.750358 +2122.764377 +2122.777031 +2122.778530 +2122.791750 +2122.821553 +2122.851457 +2122.851690 +2122.925216 +2122.938670 +2122.992715 +2123.005369 +2123.019922 +2123.030045 +2123.122319 +2123.134940 +2123.148226 +2123.162645 +2123.174434 +2123.254254 +2123.265775 +2123.280328 +2123.308799 +2123.349225 +2123.364410 +2123.377264 +2123.407767 +2123.421986 +2123.431310 +2123.442565 +2123.455219 +2123.456551 +2123.495779 +2123.511363 +2123.532442 +2123.534373 +2123.549891 +2123.595046 +2123.618789 +2123.634873 +2123.648426 +2123.660947 +2123.701473 +2123.725315 +2123.738502 +2123.797243 +2123.798376 +2123.799208 +2123.811829 +2123.886154 +2123.899341 +2123.925215 +2123.957350 +2123.971069 +2124.015125 +2124.055585 +2124.070037 +2124.072202 +2124.087253 +2124.087952 +2124.111928 +2124.133340 +2124.134206 +2124.147393 +2124.178096 +2124.178762 +2124.189717 +2124.203537 +2124.217123 +2124.233473 +2124.311795 +2124.324183 +2124.340766 +2124.354019 +2124.366873 +2124.384589 +2124.400839 +2124.468172 +2124.501838 +2124.502105 +2124.530376 +2124.544795 +2124.558282 +2124.575664 +2124.587186 +2124.602504 +2124.617522 +2124.617722 +2124.619387 +2124.632807 +2124.647459 +2124.648058 +2124.678361 +2124.693013 +2124.706234 +2124.770869 +2124.801571 +2124.814958 +2124.817156 +2124.857882 +2124.868804 +2124.871002 +2124.885354 +2124.928544 +2124.984955 +2124.986653 +2125.042930 +2125.056316 +2125.091148 +2125.122284 +2125.165207 +2125.180492 +2125.210462 +2125.254352 +2125.257016 +2125.299473 +2125.300539 +2125.301171 +2125.302736 +2125.341598 +2125.358314 +2125.358847 +2125.372999 +2125.385787 +2125.401205 +2125.401937 +2125.416889 +2125.461544 +2125.475097 +2125.516223 +2125.517188 +2125.527145 +2125.539566 +2125.553719 +2125.603036 +2125.675663 +2125.702237 +2125.753818 +2125.778061 +2125.780492 +2125.842263 +2125.854784 +2125.883722 +2125.929176 +2134.985877 +2138.972886 +2140.171952 +2140.973417 +2142.392729 +2142.406815 +2143.680174 +2144.744775 +2145.912340 +2145.979339 +2146.173478 +2146.178673 +2146.273878 +2146.278540 +2146.573111 +2146.573711 +2146.574577 +2146.575109 +2146.575775 +2146.579105 +2146.673944 +2146.675276 +2146.679338 +2146.775442 +2146.879804 +2146.979438 +2147.075475 +2147.273377 +2147.274110 +2147.374509 +2147.474076 +2147.474509 +2147.675075 +2147.780270 +2147.974142 +2148.075607 +2148.180070 +2148.373376 +2148.373942 +2148.675574 +2148.676806 +2148.774541 +2148.780036 +2148.874774 +2148.975607 +2149.073975 +2149.174075 +2149.274108 +2149.374707 +2149.473009 +2149.473808 +2149.674241 +2149.780334 +2149.875539 +2149.980134 +2150.274107 +2150.275505 +2150.276404 +2150.374240 +2150.374506 +2150.574872 +2150.975338 +2155.978164 +2155.980195 +2155.984990 +2155.985923 +2155.993382 +2155.995113 +2156.009899 +2156.012329 +2156.013895 +2156.021920 +2156.032909 +2156.034174 +2156.045030 +2156.077764 +2156.108800 +2156.109166 +2156.121287 +2156.145130 +2156.145729 +2156.156885 +2156.208899 +2156.219356 +2156.220621 +2156.244630 +2156.276798 +2156.279262 +2156.290118 +2156.313794 +2156.315459 +2156.326482 +2156.327581 +2156.350025 +2156.384191 +2156.425782 +2156.438370 +2156.449958 +2156.463678 +2156.587587 +2156.588419 +2156.600507 +2156.617857 +2156.674100 +2156.686321 +2156.696045 +2156.729145 +2156.740301 +2156.765176 +2156.777197 +2156.791783 +2156.805202 +2156.819288 +2156.829978 +2156.853854 +2156.888686 +2156.889152 +2156.920554 +2156.931909 +2156.957850 +2156.959348 +2156.972868 +2156.985655 +2156.998176 +2157.009165 +2157.023950 +2157.062145 +2157.085688 +2157.100940 +2157.135172 +2157.136704 +2157.183391 +2157.193081 +2157.194779 +2157.206467 +2157.232342 +2157.243364 +2157.245828 +2157.256584 +2157.257017 +2157.281492 +2157.337370 +2157.381759 +2157.393214 +2157.404836 +2157.417856 +2157.472002 +2157.496610 +2157.536271 +2157.602238 +2157.611362 +2157.624216 +2157.662478 +2157.664342 +2157.687852 +2157.792181 +2157.805967 +2157.816490 +2157.828745 +2157.830410 +2157.892914 +2157.902737 +2157.928778 +2157.942697 +2157.965541 +2157.976563 +2157.987253 +2158.024748 +2158.038668 +2158.061878 +2158.117322 +2158.131508 +2158.146227 +2158.180060 +2158.181858 +2158.204535 +2158.205234 +2158.206000 +2158.217422 +2158.229776 +2158.245694 +2158.259180 +2158.273300 +2158.367339 +2158.396243 +2158.397076 +2158.398241 +2158.398574 +2158.412460 +2158.426013 +2158.460978 +2158.469037 +2158.495644 +2158.522117 +2158.534172 +2158.544794 +2158.545694 +2158.580492 +2158.606266 +2158.617522 +2158.619287 +2158.632207 +2158.633672 +2158.646060 +2158.646459 +2158.668904 +2158.680359 +2158.694212 +2158.708797 +2158.721218 +2158.733073 +2158.742097 +2158.744661 +2158.823116 +2158.847991 +2158.901571 +2158.902403 +2158.938201 +2158.960212 +2158.992147 +2158.992879 +2159.006299 +2159.006799 +2159.071101 +2159.112526 +2159.122716 +2159.152020 +2159.166872 +2159.193778 +2159.209562 +2159.232739 +2159.235070 +2159.314757 +2159.338367 +2159.354118 +2159.379326 +2159.379992 +2159.393345 +2159.404501 +2159.418520 +2159.420018 +2159.432006 +2159.443228 +2159.443695 +2159.466971 +2159.468403 +2159.508430 +2159.590747 +2159.592679 +2159.616289 +2159.618053 +2159.645593 +2159.646092 +2159.647990 +2159.659312 +2159.662009 +2159.705666 +2159.721417 +2159.789049 +2159.806731 +2159.821750 +2159.851153 +2159.861809 +2159.864673 +2159.876928 +2159.905466 +2159.919818 +2159.945026 +2159.959112 +2159.972166 +2159.985985 +2159.987284 +2159.988150 +2160.011759 +2160.048656 +2160.064840 +2160.123381 +2160.135003 +2160.137134 +2160.139298 +2160.181589 +2160.197074 +2160.226411 +2160.267270 +2160.329242 +2160.357313 +2160.368536 +2160.369468 +2160.382788 +2160.383720 +2160.407896 +2160.439831 +2160.465971 +2160.521882 +2160.522648 +2160.534669 +2160.535635 +2160.536368 +2160.547923 +2160.562841 +2160.564106 +2160.605831 +2160.637633 +2160.654150 +2160.668668 +2160.760177 +2160.760810 +2160.808895 +2160.869134 +2160.882388 +2160.896574 +2160.897439 +2160.910793 +2160.911226 +2160.928675 +2160.954649 +2170.970823 +2170.979414 +2171.971088 +2172.970754 +2172.979379 +2173.970953 +2174.803852 +2174.972217 +2175.979176 +2179.681437 +2180.970713 +2180.977872 +2181.073210 +2181.172910 +2181.372844 +2181.378138 +2181.378571 +2182.074241 +2182.174774 +2182.573475 +2182.579136 +2182.674208 +2182.872942 +2183.073175 +2183.275506 +2183.469012 +2183.470577 +2183.472275 +2183.472908 +2183.473674 +2183.773074 +2183.973474 +2184.072375 +2184.072674 +2184.372308 +2184.372841 +2184.375105 +2184.473373 +2184.475571 +2184.671308 +2184.674405 +2184.773773 +2184.872241 +2184.972407 +2185.172906 +2185.173839 +2185.273073 +2185.373173 +2185.572973 +2185.672972 +2185.673072 +2185.780298 +2186.274570 +2186.743068 +2186.820291 +2190.979427 +2190.986354 +2191.003803 +2191.023650 +2191.046394 +2191.067839 +2191.081925 +2191.143696 +2191.177862 +2191.179394 +2191.239733 +2191.242397 +2191.242797 +2191.282258 +2191.295245 +2191.323083 +2191.385454 +2191.397908 +2191.398974 +2191.423383 +2191.434372 +2191.461412 +2191.502704 +2191.514658 +2191.526047 +2191.526946 +2191.566273 +2191.587985 +2191.590116 +2191.616556 +2191.618321 +2191.642330 +2191.703869 +2191.718021 +2191.731541 +2191.798241 +2191.822450 +2191.887652 +2191.920619 +2191.931374 +2191.932773 +2191.945860 +2191.957115 +2191.985953 +2192.026779 +2192.040632 +2192.084355 +2192.106266 +2192.142496 +2192.178127 +2192.191847 +2192.193146 +2192.237668 +2192.279826 +2192.296043 +2192.367205 +2192.420951 +2192.446192 +2192.457148 +2192.503735 +2192.573232 +2192.585353 +2192.587251 +2192.624914 +2192.626212 +2192.690381 +2192.717654 +2192.729376 +2192.757314 +2192.793412 +2192.795509 +2192.829842 +2192.841264 +2192.856282 +2192.856615 +2192.928643 +2192.959345 +2192.971167 +2192.993545 +2193.007730 +2193.031107 +2193.033971 +2193.049788 +2193.105433 +2193.106065 +2193.117853 +2193.181656 +2193.196075 +2193.236968 +2193.252952 +2193.279392 +2193.361942 +2193.385452 +2193.397307 +2193.398206 +2193.400038 +2193.438233 +2193.469402 +2193.481822 +2193.496075 +2193.509661 +2193.511626 +2193.555582 +2193.557347 +2193.571766 +2193.573664 +2193.596175 +2193.633371 +2193.661476 +2193.662641 +2193.674296 +2193.746824 +2193.761343 +2193.762408 +2193.763008 +2193.774763 +2193.791579 +2193.815522 +2193.842761 +2193.843161 +2193.870533 +2193.913224 +2193.939498 +2193.963107 +2193.963673 +2194.030440 +2194.062275 +2194.073963 +2194.085385 +2194.096341 +2194.108562 +2194.124479 +2194.135468 +2194.168535 +2194.305365 +2194.320550 +2194.362141 +2194.362641 +2194.392444 +2194.406397 +2194.419018 +2194.420516 +2194.450453 +2194.463340 +2194.493843 +2194.494575 +2194.522614 +2194.567502 +2194.568135 +2194.569034 +2194.596706 +2194.609327 +2194.652151 +2194.652750 +2194.714988 +2194.729174 +2194.788914 +2194.803499 +2194.843226 +2194.844192 +2194.868701 +2194.895641 +2194.926077 +2194.939197 +2194.967502 +2194.993110 +2194.994009 +2195.008827 +2195.078557 +2195.119916 +2195.132071 +2195.150219 +2195.178624 +2195.193442 +2195.204764 +2195.233469 +2195.247455 +2195.275261 +2195.275793 +2195.291811 +2195.305364 +2195.343159 +2195.389180 +2195.431438 +2195.433735 +2195.435234 +2195.463139 +2195.464571 +2195.477258 +2195.479423 +2195.503499 +2195.505264 +2195.507495 +2195.533435 +2195.533902 +2195.535234 +2195.570632 +2195.583885 +2195.623312 +2195.623878 +2195.653948 +2195.668201 +2195.686216 +2195.730638 +2195.760775 +2195.762440 +2195.773795 +2195.785750 +2195.787947 +2195.829672 +2195.841460 +2195.844857 +2195.859442 +2195.872996 +2195.887781 +2195.888114 +2195.906029 +2195.947255 +2195.949586 +2195.963172 +2197.928871 +2197.968698 +2201.007622 +2201.779317 +2202.987141 +2202.994633 +2203.211283 +2204.951641 +2206.187038 +2206.265093 +2207.520503 +2207.525065 +2207.541182 +2207.611379 +2207.700656 +2207.705584 +2207.706350 +2207.706650 +2207.707216 +2207.811811 +2207.871485 +2207.952604 +2208.705617 +2208.706116 +2208.706616 +2208.986003 +2210.706847 +2210.707080 +2210.707346 +2210.902085 +2211.706513 +2211.893093 +2212.185100 +2216.005343 +2216.295652 +2216.404743 +2216.699914 +2216.800880 +2216.803278 +2216.806108 +2216.811070 +2217.113900 +2217.203477 +2217.511702 +2217.608172 +2217.704342 +2217.708505 +2217.711735 +2218.611568 +2219.204441 +2219.212166 +2219.612466 +2219.802109 +2219.803208 +2220.003308 +2220.102808 +2220.402308 +2220.412598 +2220.802508 +2221.004605 +2222.297445 +2222.679529 +2226.701270 +2226.705332 +2226.711892 +2226.733438 +2226.734137 +2226.735402 +2226.760710 +2226.762076 +2226.778859 +2226.779658 +2226.790514 +2226.819451 +2226.829142 +2226.836734 +2226.859112 +2226.859578 +2226.877860 +2226.905499 +2226.916754 +2226.931373 +2226.952585 +2226.963774 +2226.984919 +2226.992678 +2227.001103 +2227.009861 +2227.012725 +2227.025445 +2227.037200 +2227.047024 +2227.068669 +2227.069435 +2227.153883 +2227.176860 +2227.190613 +2227.205032 +2227.227443 +2227.248988 +2227.258678 +2227.284519 +2227.285285 +2227.332771 +2227.345325 +2227.391179 +2227.404566 +2227.405631 +2227.442661 +2227.445292 +2227.457446 +2227.474895 +2227.493876 +2227.528342 +2227.555315 +2227.567503 +2227.576993 +2227.599271 +2227.600370 +2227.619484 +2227.643793 +2227.658611 +2227.684785 +2227.721782 +2227.741762 +2227.753217 +2227.761841 +2227.771332 +2227.772431 +2227.804332 +2227.836234 +2227.847955 +2227.860143 +2227.883953 +2227.894509 +2227.895241 +2227.969700 +2227.990812 +2227.991079 +2227.992677 +2228.012357 +2228.036966 +2228.049587 +2228.077192 +2228.088415 +2228.124445 +2228.126876 +2228.159610 +2228.160809 +2228.195774 +2228.221681 +2228.245058 +2228.246623 +2228.270699 +2228.284185 +2228.310159 +2228.319150 +2228.344059 +2228.369000 +2228.371498 +2228.381887 +2228.382320 +2228.419849 +2228.420915 +2228.433103 +2228.473829 +2228.474395 +2228.513289 +2228.547022 +2228.558810 +2228.586283 +2228.598038 +2228.618850 +2228.620415 +2228.645224 +2228.646156 +2228.655514 +2228.657345 +2228.665504 +2228.679656 +2228.681421 +2228.695074 +2228.758544 +2228.759676 +2228.788214 +2228.813389 +2228.827142 +2228.853149 +2228.853715 +2228.880155 +2228.880988 +2228.891777 +2228.893276 +2228.920149 +2228.931637 +2228.944258 +2228.972097 +2229.056013 +2229.098337 +2229.110125 +2229.140495 +2229.142593 +2229.169266 +2229.183585 +2229.210125 +2229.222779 +2229.280155 +2229.280821 +2229.307861 +2229.356645 +2229.370631 +2229.370997 +2229.383951 +2229.398004 +2229.408060 +2229.410158 +2229.424910 +2229.439662 +2229.491876 +2229.492576 +2229.504630 +2229.528939 +2229.550251 +2229.564903 +2229.566801 +2229.624077 +2229.651916 +2229.653515 +2229.678090 +2229.695273 +2229.724144 +2229.724543 +2229.736465 +2229.746821 +2229.843824 +2229.895905 +2229.954846 +2229.968200 +2229.996338 +2230.010391 +2230.038962 +2230.063704 +2230.069565 +2230.111989 +2230.196205 +2230.223810 +2230.224876 +2230.238596 +2230.239361 +2230.270863 +2230.286714 +2230.315352 +2230.379887 +2230.383084 +2230.395339 +2230.410290 +2230.426308 +2230.434366 +2230.455046 +2230.468132 +2230.469864 +2230.513087 +2230.530337 +2230.589378 +2230.590244 +2230.648951 +2230.694206 +2230.709091 +2230.723310 +2230.736630 +2230.753480 +2230.769830 +2230.801299 +2230.877989 +2230.906294 +2230.969764 +2231.015318 +2231.015818 +2231.089810 +2231.454212 +2231.637728 +2231.638594 +2232.983881 +2233.000398 +2233.029901 +2233.033465 +2234.006257 +2234.020576 +2234.023773 +2234.034030 +2234.199131 +2236.728133 +2237.421139 +2239.280178 +2240.387004 +2241.337785 +2241.701288 +2241.702320 +2241.703619 +2241.707782 +2242.124731 +2242.701986 +2244.702584 +2244.708844 +2244.709377 +2244.949670 +2245.042210 +2245.701983 +2245.709143 +2246.660690 +2247.013038 +2248.461454 +2248.573043 +2250.055625 +2250.078802 +2250.177803 +2250.197750 +2250.947699 +2251.000679 +2251.027752 +2251.036976 +2251.105042 +2251.163283 +2251.288258 +2251.504475 +2251.558554 +2251.574938 +2251.680732 +2251.703176 +2251.809270 +2251.810169 +2251.903076 +2251.903376 +2251.904208 +2251.914631 +2252.004008 +2252.004907 +2252.105074 +2252.109503 +2252.209802 +2252.213099 +2252.213765 +2252.303742 +2252.304108 +2252.304807 +2252.413265 +2252.504840 +2252.513432 +2252.604807 +2252.613465 +2252.903841 +2252.913398 +2253.005073 +2253.013864 +2253.110434 +2253.113498 +2253.113797 +2253.118693 +2253.210601 +2253.213964 +2253.317926 +2253.405872 +2253.505672 +2253.507037 +2253.514097 +2253.514563 +2253.610234 +2253.613764 +2253.704706 +2253.710334 +2253.814230 +2253.814762 +2253.910000 +2254.012664 +2254.013364 +2254.104239 +2254.113896 +2254.203540 +2254.604905 +2254.610366 +2254.613962 +2254.706004 +2255.104705 +2255.113795 +2255.210365 +2255.310199 +2255.412929 +2255.504604 +2255.510332 +2255.805303 +2255.810098 +2255.813895 +2255.904870 +2255.913928 +2256.104903 +2256.204803 +2256.205103 +2256.413761 +2256.710264 +2258.755417 +2261.716053 +2261.729307 +2261.747522 +2261.747921 +2261.755747 +2261.775427 +2261.776726 +2261.796772 +2261.827142 +2261.840162 +2261.858744 +2261.877292 +2261.878957 +2261.889946 +2261.919117 +2261.951185 +2261.988481 +2262.032570 +2262.124811 +2262.126109 +2262.146556 +2262.194907 +2262.204897 +2262.205397 +2262.218783 +2262.229006 +2262.230472 +2262.241028 +2262.242326 +2262.263539 +2262.265237 +2262.302866 +2262.314854 +2262.326509 +2262.362140 +2262.384651 +2262.406962 +2262.434701 +2262.438430 +2262.449952 +2262.480821 +2262.493642 +2262.495040 +2262.505829 +2262.534501 +2262.583618 +2262.605097 +2262.664138 +2262.703332 +2262.770864 +2262.782686 +2262.794274 +2262.817917 +2262.818416 +2262.878523 +2262.889645 +2262.900501 +2262.901333 +2262.928440 +2262.959342 +2262.960474 +2262.972829 +2263.037730 +2263.039162 +2263.066302 +2263.086948 +2263.107327 +2263.118749 +2263.152415 +2263.162972 +2263.172795 +2263.175026 +2263.230204 +2263.238829 +2263.240128 +2263.251716 +2263.261506 +2263.261839 +2263.299468 +2263.315619 +2263.316085 +2263.353714 +2263.355146 +2263.382052 +2263.393208 +2263.394573 +2263.405296 +2263.426741 +2263.472428 +2263.497803 +2263.536331 +2263.572562 +2263.582851 +2263.628805 +2263.631036 +2263.646521 +2263.647720 +2263.657010 +2263.657743 +2263.699002 +2263.709658 +2263.724576 +2263.751050 +2263.776358 +2263.777656 +2263.790776 +2263.791309 +2263.813720 +2263.854746 +2263.882085 +2263.894206 +2263.920380 +2263.961705 +2263.972961 +2263.987346 +2264.010457 +2264.025941 +2264.036830 +2264.108891 +2264.124109 +2264.125475 +2264.178455 +2264.204662 +2264.221645 +2264.246820 +2264.284948 +2264.286480 +2264.315818 +2264.357376 +2264.384815 +2264.385581 +2264.395471 +2264.398435 +2264.439327 +2264.493739 +2264.509191 +2264.522011 +2264.552081 +2264.565568 +2264.578621 +2264.619081 +2264.633167 +2264.634798 +2264.648751 +2264.677322 +2264.689244 +2264.689943 +2264.699800 +2264.714785 +2264.726307 +2264.728804 +2264.730769 +2264.744988 +2264.754512 +2264.757675 +2264.771728 +2264.796570 +2264.813719 +2264.838561 +2264.838894 +2264.870496 +2264.880552 +2264.893906 +2264.896969 +2264.897835 +2264.911188 +2264.926140 +2264.939527 +2264.949883 +2264.967865 +2264.997169 +2265.024275 +2265.024808 +2265.055111 +2265.080585 +2265.092473 +2265.124575 +2265.167498 +2265.168031 +2265.211687 +2265.225540 +2265.252513 +2265.310788 +2265.312220 +2265.313252 +2265.340192 +2265.340792 +2265.397934 +2265.412420 +2265.454378 +2265.455011 +2265.464035 +2265.557008 +2265.571394 +2265.598700 +2265.614851 +2265.640125 +2265.666366 +2265.683848 +2265.710588 +2265.715417 +2265.730268 +2265.768896 +2265.827438 +2265.850781 +2265.855543 +2265.869096 +2265.889775 +2265.907524 +2265.908656 +2265.922876 +2265.935330 +2265.954511 +2265.985746 +2266.139159 +2266.195136 +2266.339925 +2266.365932 +2266.405060 +2266.438759 +2266.510820 +2276.704150 +2277.709211 +2277.710410 +2277.711575 +2278.703782 +2279.703748 +2279.704547 +2279.710474 +2280.710640 +2281.705544 +2286.336342 +2286.710434 +2286.711067 +2286.805139 +2286.809968 +2286.810267 +2286.911100 +2287.010434 +2287.014163 +2287.014363 +2287.106770 +2287.211066 +2287.411033 +2287.415029 +2287.514695 +2287.805671 +2287.911232 +2287.914995 +2288.706502 +2288.714561 +2288.715160 +2288.814994 +2288.911064 +2288.915060 +2289.007201 +2289.015027 +2289.211197 +2289.305103 +2289.414960 +2289.615726 +2289.911363 +2289.911829 +2290.011196 +2290.015192 +2290.114859 +2290.215059 +2290.311229 +2290.511529 +2290.611462 +2290.907166 +2290.915458 +2291.007066 +2291.105368 +2291.105801 +2291.206500 +2291.211095 +2291.315191 +2291.411262 +2291.611894 +2291.705734 +2291.711095 +2291.714924 +2296.708459 +2296.710657 +2296.760574 +2296.777690 +2296.778422 +2296.779821 +2296.790843 +2296.810690 +2296.811090 +2296.881053 +2296.900966 +2296.926208 +2296.939761 +2296.940560 +2296.962305 +2296.993141 +2297.009691 +2297.047120 +2297.072295 +2297.081086 +2297.092375 +2297.093773 +2297.102232 +2297.111922 +2297.154180 +2297.174160 +2297.174892 +2297.193873 +2297.195871 +2297.207959 +2297.208392 +2297.220047 +2297.220513 +2297.249251 +2297.282185 +2297.319281 +2297.345322 +2297.357077 +2297.370430 +2297.379421 +2297.380653 +2297.396937 +2297.407493 +2297.421046 +2297.433400 +2297.462937 +2297.482285 +2297.482817 +2297.495971 +2297.521845 +2297.544622 +2297.573160 +2297.584316 +2297.604795 +2297.638395 +2297.639760 +2297.651249 +2297.665201 +2297.689577 +2297.699334 +2297.711122 +2297.723443 +2297.734665 +2297.750749 +2297.772794 +2297.774326 +2297.786080 +2297.821811 +2297.836197 +2297.859340 +2297.870063 +2297.881452 +2297.884016 +2297.892774 +2297.893107 +2297.901332 +2297.910389 +2297.920912 +2297.922511 +2297.932700 +2297.934532 +2297.935165 +2297.959607 +2297.971661 +2297.972194 +2297.982584 +2298.046819 +2298.048218 +2298.073126 +2298.097635 +2298.111188 +2298.121911 +2298.123709 +2298.173326 +2298.185447 +2298.197469 +2298.222410 +2298.236063 +2298.248185 +2298.282950 +2298.284149 +2298.286346 +2298.350049 +2298.352380 +2298.397768 +2298.421911 +2298.446786 +2298.447285 +2298.459873 +2298.523109 +2298.533366 +2298.536230 +2298.550182 +2298.563136 +2298.573892 +2298.585147 +2298.603695 +2298.636096 +2298.639060 +2298.673792 +2298.689410 +2298.703262 +2298.717215 +2298.772593 +2298.772993 +2298.807591 +2298.810255 +2298.821677 +2298.823442 +2298.834498 +2298.854411 +2298.875290 +2298.898733 +2298.908557 +2298.919746 +2298.922809 +2298.936096 +2298.968697 +2298.983116 +2298.992906 +2299.004727 +2299.017981 +2299.031634 +2299.051514 +2299.061437 +2299.070595 +2299.101664 +2299.113352 +2299.168630 +2299.181251 +2299.201297 +2299.226539 +2299.239692 +2299.265266 +2299.277587 +2299.287611 +2299.297967 +2299.301497 +2299.313918 +2299.349382 +2299.350781 +2299.408723 +2299.433332 +2299.434763 +2299.462602 +2299.489875 +2299.544487 +2299.578053 +2299.625872 +2299.663401 +2299.664367 +2299.677887 +2299.678386 +2299.691873 +2299.733032 +2299.773091 +2299.826938 +2299.839958 +2299.868196 +2299.882815 +2299.892305 +2299.895036 +2299.906991 +2299.933031 +2299.982116 +2299.984380 +2299.998100 +2299.999365 +2300.039225 +2300.051513 +2300.074956 +2300.101396 +2300.116581 +2300.129768 +2300.154177 +2300.203860 +2300.217014 +2300.229801 +2300.254043 +2300.268795 +2300.331699 +2300.337227 +2300.351146 +2300.371792 +2300.415382 +2300.426271 +2300.454909 +2300.469361 +2300.478086 +2300.483414 +2300.506224 +2300.524573 +2300.538792 +2300.552411 +2300.590773 +2300.616181 +2300.619078 +2300.662834 +2300.717479 +2300.732365 +2300.760203 +2300.774689 +2300.788908 +2300.826204 +2300.830533 +2300.868029 +2300.930100 +2300.993803 +2311.704315 +2311.711807 +2312.704614 +2312.711773 +2313.705279 +2313.711306 +2313.712405 +2313.926524 +2314.712137 +2315.706209 +2315.710904 +2315.711104 +2315.712703 +2316.705509 +2316.705675 +2316.710271 +2316.711902 +2318.861084 +2321.710399 +2321.711931 +2321.810965 +2321.906769 +2322.006669 +2322.105836 +2322.407002 +2322.511663 +2322.612163 +2322.911663 +2323.405968 +2323.415958 +2323.512195 +2323.711895 +2324.206434 +2324.211762 +2324.215558 +2324.406533 +2324.515824 +2324.605501 +2324.711595 +2324.712261 +2324.815124 +2324.915357 +2325.118887 +2325.607664 +2325.706499 +2325.715157 +2326.011460 +2326.212226 +2326.315789 +2326.605799 +2327.706530 +2327.718685 +2331.039827 +2331.704894 +2331.715550 +2331.739460 +2331.776922 +2331.793972 +2331.794471 +2331.814751 +2331.815417 +2331.826173 +2331.846453 +2331.856476 +2331.869130 +2331.869829 +2331.879420 +2331.897402 +2331.940958 +2331.972626 +2332.040425 +2332.051214 +2332.085080 +2332.086812 +2332.109056 +2332.142023 +2332.166865 +2332.192639 +2332.205926 +2332.218014 +2332.219712 +2332.228870 +2332.285447 +2332.314884 +2332.339093 +2332.374457 +2332.375623 +2332.399532 +2332.433398 +2332.458274 +2332.482916 +2332.505793 +2332.556708 +2332.566898 +2332.586046 +2332.594903 +2332.595270 +2332.635396 +2332.695569 +2332.750081 +2332.814117 +2332.825639 +2332.862635 +2332.900298 +2332.902862 +2332.926305 +2332.936528 +2332.965832 +2332.966398 +2332.978553 +2332.992605 +2332.993271 +2333.030068 +2333.043355 +2333.052046 +2333.069728 +2333.128270 +2333.129701 +2333.141456 +2333.152379 +2333.154443 +2333.155076 +2333.167763 +2333.177653 +2333.188776 +2333.191540 +2333.201230 +2333.209655 +2333.211853 +2333.218712 +2333.231167 +2333.233498 +2333.251180 +2333.262702 +2333.274190 +2333.298532 +2333.299099 +2333.310487 +2333.312185 +2333.352245 +2333.361936 +2333.364700 +2333.398033 +2333.421210 +2333.421976 +2333.423041 +2333.433597 +2333.444553 +2333.444919 +2333.446251 +2333.468196 +2333.480450 +2333.481849 +2333.531932 +2333.545785 +2333.569428 +2333.582482 +2333.605525 +2333.648682 +2333.661070 +2333.699098 +2333.738925 +2333.739225 +2333.740257 +2333.763933 +2333.789608 +2333.817080 +2333.841722 +2333.843520 +2333.855242 +2333.856674 +2333.857473 +2333.895502 +2333.909121 +2333.910919 +2333.960703 +2333.987043 +2333.987809 +2333.989075 +2334.014649 +2334.015215 +2334.025705 +2334.037759 +2334.047749 +2334.130267 +2334.195202 +2334.218811 +2334.246217 +2334.247649 +2334.249247 +2334.261002 +2334.262834 +2334.276853 +2334.318145 +2334.329334 +2334.331432 +2334.357206 +2334.358005 +2334.358771 +2334.407855 +2334.421775 +2334.456240 +2334.469394 +2334.509753 +2334.545185 +2334.546217 +2334.559404 +2334.639956 +2334.651312 +2334.689707 +2334.690539 +2334.691305 +2334.701928 +2334.714249 +2334.716946 +2334.726903 +2334.739423 +2334.753776 +2334.755907 +2334.765564 +2334.767762 +2334.792370 +2334.833230 +2334.871258 +2334.882181 +2334.892803 +2334.903892 +2334.915014 +2334.927901 +2334.968561 +2334.997265 +2335.040122 +2335.154475 +2335.168993 +2335.197865 +2335.224471 +2335.226070 +2335.226336 +2335.255307 +2335.268960 +2335.335593 +2335.369093 +2335.396765 +2335.397598 +2335.407122 +2335.438157 +2335.438757 +2335.463965 +2335.468827 +2335.483312 +2335.551677 +2335.554341 +2335.608953 +2335.613315 +2335.668627 +2335.684078 +2335.698896 +2335.729532 +2335.743452 +2335.760168 +2335.819009 +2335.819675 +2335.848047 +2335.862299 +2335.877251 +2335.907521 +2335.937158 +2335.947081 +2335.948946 +2335.951510 +2335.995300 +2336.036225 +2336.094767 +2336.113881 +2336.172855 +2336.174154 +2336.220175 +2336.250944 +2336.292902 +2336.295399 +2336.349945 +2336.562732 +2336.584943 +2336.698962 +2341.192764 +2342.117371 +2344.035285 +2344.617036 +2345.891527 +2346.931719 +2347.705278 +2348.705610 +2348.712670 +2349.323392 +2349.374141 +2349.705642 +2349.711570 +2349.712835 +2350.372208 +2350.393554 +2350.422258 +2350.704909 +2350.705675 +2351.704908 +2351.705274 +2351.710735 +2353.976001 +2354.005172 +2354.068908 +2354.183626 +2354.453856 +2355.314628 +2356.226715 +2356.704237 +2356.706401 +2356.905502 +2356.911196 +2357.007333 +2357.007733 +2357.011163 +2357.105668 +2357.111462 +2357.306467 +2357.312161 +2357.506867 +2357.712061 +2358.407032 +2358.506899 +2358.607631 +2358.712227 +2358.808464 +2359.012093 +2359.112293 +2359.312126 +2359.612725 +2359.812492 +2360.106664 +2360.107763 +2360.111826 +2360.112525 +2360.208795 +2360.312025 +2360.408695 +2360.512358 +2360.512924 +2360.612458 +2360.816454 +2360.912324 +2361.106164 +2361.108728 +2361.207829 +2361.212524 +2361.312457 +2361.408861 +2361.512457 +2361.606862 +2361.708694 +2363.030371 +2365.425340 +2365.450149 +2365.482982 +2366.705126 +2366.705525 +2366.709788 +2366.711120 +2366.715182 +2366.721842 +2366.732232 +2366.747150 +2366.747716 +2366.766031 +2366.797234 +2366.808023 +2366.838392 +2366.874689 +2366.894902 +2366.896168 +2366.907523 +2366.929901 +2366.944386 +2366.964333 +2366.986477 +2367.018379 +2367.040057 +2367.052145 +2367.063634 +2367.065865 +2367.075622 +2367.087776 +2367.124772 +2367.133730 +2367.134163 +2367.134596 +2367.145052 +2367.156707 +2367.189241 +2367.199398 +2367.211552 +2367.222475 +2367.233697 +2367.245851 +2367.278618 +2367.279651 +2367.280050 +2367.290473 +2367.291439 +2367.292238 +2367.313783 +2367.325571 +2367.385844 +2367.416347 +2367.431465 +2367.443587 +2367.444286 +2367.478085 +2367.490007 +2367.502827 +2367.515082 +2367.545351 +2367.577386 +2367.590340 +2367.626204 +2367.628235 +2367.648881 +2367.732098 +2367.743653 +2367.743886 +2367.744752 +2367.756307 +2367.828701 +2367.843420 +2367.856373 +2367.908055 +2367.919410 +2367.930000 +2367.942421 +2367.962900 +2368.024205 +2368.025637 +2368.042887 +2368.056140 +2368.104725 +2368.106290 +2368.141055 +2368.165930 +2368.167229 +2368.178651 +2368.190972 +2368.216579 +2368.228401 +2368.229034 +2368.229766 +2368.243353 +2368.268394 +2368.269493 +2368.283179 +2368.292270 +2368.333829 +2368.356106 +2368.369327 +2368.379616 +2368.389140 +2368.434894 +2368.459903 +2368.460569 +2368.461268 +2368.496366 +2368.536093 +2368.551045 +2368.552077 +2368.643619 +2368.669859 +2368.680915 +2368.719110 +2368.809952 +2368.835360 +2368.863299 +2368.878517 +2368.887641 +2368.914214 +2368.954041 +2368.955706 +2368.969093 +2368.979316 +2368.990571 +2368.991404 +2369.035926 +2369.048447 +2369.075187 +2369.098796 +2369.139256 +2369.150878 +2369.165629 +2369.220708 +2369.232363 +2369.232729 +2369.234061 +2369.262799 +2369.288606 +2369.290438 +2369.327134 +2369.355007 +2369.368826 +2369.380514 +2369.381014 +2369.382079 +2369.395533 +2369.408520 +2369.432795 +2369.549845 +2369.564630 +2369.576119 +2369.592635 +2369.617710 +2369.633728 +2369.648613 +2369.662565 +2369.677584 +2369.699595 +2369.727134 +2369.753707 +2369.808952 +2369.825835 +2369.851310 +2369.907753 +2369.974320 +2370.001526 +2370.042985 +2370.044583 +2370.058436 +2370.068959 +2370.116511 +2370.129265 +2370.129997 +2370.159701 +2370.172688 +2370.173587 +2370.202425 +2370.217377 +2370.228366 +2370.231796 +2370.233194 +2370.320473 +2370.334493 +2370.364829 +2370.380014 +2370.423604 +2370.454672 +2370.469091 +2370.482112 +2370.498062 +2370.511882 +2370.512248 +2370.526367 +2370.540487 +2370.555505 +2370.565961 +2370.570756 +2370.625801 +2370.628698 +2370.628965 +2370.640387 +2370.655105 +2370.659201 +2370.702957 +2370.780213 +2370.796097 +2370.824203 +2370.884009 +2370.897463 +2370.938455 +2370.957436 +2370.986607 +2371.017609 +2371.042917 +2371.055371 +2371.061232 +2371.194365 +2371.194598 +2371.195631 +2371.241618 +2371.315411 +2371.331595 +2371.345514 +2371.347812 +2371.421938 +2371.436423 +2371.446979 +2371.530795 +2371.674152 +2371.691235 +2373.291133 +2373.355902 +2373.470354 +2374.723399 +2374.965457 +2377.113574 +2377.176444 +2377.260959 +2378.734751 +2380.137680 +2381.275641 +2381.483699 +2381.706709 +2381.711837 +2382.711304 +2382.711870 +2382.865216 +2382.981600 +2383.655825 +2383.705475 +2383.711469 +2383.712068 +2384.705774 +2384.706540 +2384.711701 +2385.705906 +2385.713332 +2388.238204 +2388.507835 +2389.645429 +2390.567773 +2390.604070 +2391.706200 +2391.805900 +2391.807865 +2391.906000 +2391.911827 +2392.006499 +2392.011927 +2392.025147 +2392.112227 +2392.208763 +2392.317088 +2392.413192 +2392.606132 +2392.607031 +2392.607664 +2392.608530 +2393.107231 +2393.107564 +2393.109362 +2393.109994 +2393.213258 +2393.507230 +2393.612758 +2393.613457 +2393.807763 +2393.813191 +2393.908928 +2393.913190 +2394.013457 +2394.309560 +2394.513290 +2394.607063 +2395.306829 +2395.413056 +2395.509459 +2395.513955 +2395.609592 +2395.613389 +2395.813355 +2395.813721 +2395.817318 +2396.013122 +2396.112622 +2396.208360 +2396.309592 +2396.512955 +2396.606827 +2396.706727 +2396.707560 +2396.716684 +2398.794105 +2401.716446 +2401.732796 +2401.740622 +2401.749746 +2401.750046 +2401.751444 +2401.779217 +2401.788574 +2401.799796 +2401.831697 +2401.853908 +2401.864564 +2401.887442 +2401.906256 +2401.940888 +2401.942087 +2401.952776 +2401.974155 +2401.984211 +2402.020608 +2402.064165 +2402.098131 +2402.098630 +2402.110651 +2402.123072 +2402.158137 +2402.182113 +2402.214381 +2402.236759 +2402.280981 +2402.326868 +2402.328167 +2402.339056 +2402.349579 +2402.359802 +2402.372423 +2402.384544 +2402.396599 +2402.421940 +2402.458969 +2402.469992 +2402.500794 +2402.502359 +2402.542519 +2402.564730 +2402.565430 +2402.589406 +2402.590371 +2402.689505 +2402.704257 +2402.714047 +2402.728167 +2402.779415 +2402.828500 +2402.870524 +2402.871523 +2402.883811 +2402.896032 +2402.927167 +2402.928000 +2402.958203 +2402.958436 +2402.985742 +2402.987873 +2403.001027 +2403.014780 +2403.028433 +2403.039355 +2403.040920 +2403.068260 +2403.080847 +2403.132562 +2403.232195 +2403.242552 +2403.278083 +2403.307320 +2403.309618 +2403.319375 +2403.358203 +2403.385109 +2403.397796 +2403.413314 +2403.425002 +2403.438389 +2403.450410 +2403.479315 +2403.557503 +2403.570523 +2403.605522 +2403.657736 +2403.680413 +2403.691103 +2403.692135 +2403.702158 +2403.703024 +2403.725402 +2403.764096 +2403.765761 +2403.777283 +2403.778082 +2403.792202 +2403.803923 +2403.816078 +2403.831629 +2403.957969 +2403.986107 +2404.010117 +2404.024436 +2404.050043 +2404.076184 +2404.126467 +2404.127299 +2404.193833 +2404.210283 +2404.223969 +2404.238388 +2404.240087 +2404.265395 +2404.267226 +2404.279580 +2404.294266 +2404.294732 +2404.310716 +2404.323703 +2404.404489 +2404.433859 +2404.447479 +2404.461265 +2404.462164 +2404.501658 +2404.503123 +2404.515644 +2404.558235 +2404.558668 +2404.571788 +2404.587705 +2404.588438 +2404.602124 +2404.662131 +2404.675284 +2404.703956 +2404.718041 +2404.718541 +2404.732793 +2404.747545 +2404.749110 +2404.761431 +2404.762330 +2404.776683 +2404.819540 +2404.833526 +2404.845514 +2404.847778 +2404.862763 +2404.875983 +2404.891168 +2404.933659 +2404.944481 +2404.962896 +2404.963629 +2404.976216 +2405.033259 +2405.046479 +2405.048511 +2405.074551 +2405.075284 +2405.089370 +2405.103223 +2405.126566 +2405.139253 +2405.205520 +2405.215543 +2405.232693 +2405.246646 +2405.260465 +2405.306253 +2405.320638 +2405.333559 +2405.378713 +2405.421238 +2405.423402 +2405.424368 +2405.439153 +2405.483608 +2405.498327 +2405.511081 +2405.526033 +2405.570954 +2405.585473 +2405.600059 +2405.614877 +2405.629762 +2405.673685 +2405.674451 +2405.718107 +2405.718806 +2405.748443 +2405.823002 +2405.852772 +2405.884441 +2405.929729 +2405.959732 +2406.019705 +2406.021470 +2406.067424 +2406.083341 +2406.129862 +2406.144280 +2406.144613 +2406.232426 +2406.278912 +2406.308949 +2406.387570 +2406.481410 +2406.570321 +2406.587770 +2406.664593 +2406.682508 +2406.697460 +2408.266956 +2409.528260 +2416.705342 +2417.705841 +2417.707439 +2419.706771 +2419.711033 +2419.711500 +2419.711899 +2419.712066 +2420.359018 +2420.401476 +2420.705671 +2420.705738 +2421.190752 +2421.200309 +2421.218658 +2421.282394 +2421.337172 +2421.574102 +2421.585357 +2421.608334 +2421.707002 +2421.711131 +2421.712064 +2421.712230 +2421.712730 +2422.104471 +2422.112629 +2426.705565 +2426.706431 +2426.710627 +2426.805432 +2426.813158 +2426.906164 +2427.007996 +2427.011925 +2427.116720 +2427.306897 +2427.612358 +2427.612957 +2427.708062 +2427.806763 +2427.906730 +2428.212757 +2428.306762 +2428.406862 +2428.407761 +2428.412623 +2428.512290 +2428.612556 +2428.712756 +2428.807095 +2428.908926 +2429.006362 +2429.312356 +2429.512689 +2429.607094 +2429.812755 +2430.108825 +2430.212455 +2430.312555 +2430.412821 +2430.512255 +2430.512887 +2430.612621 +2430.712188 +2430.716584 +2431.007026 +2431.007992 +2431.108924 +2431.116317 +2431.506726 +2431.607026 +2431.617049 +2431.617415 +2435.076553 +2436.705222 +2436.706321 +2436.710117 +2436.716045 +2436.722638 +2436.738223 +2436.756704 +2436.782878 +2436.804490 +2436.811982 +2436.822139 +2436.864696 +2436.875685 +2436.875951 +2436.897630 +2436.899128 +2436.932994 +2436.943917 +2436.976750 +2437.037923 +2437.060733 +2437.071955 +2437.080946 +2437.102658 +2437.126700 +2437.137523 +2437.241818 +2437.252874 +2437.289671 +2437.291768 +2437.298695 +2437.298995 +2437.312315 +2437.312981 +2437.336590 +2437.388372 +2437.436823 +2437.447679 +2437.457203 +2437.481745 +2437.491968 +2437.502125 +2437.503323 +2437.567026 +2437.567326 +2437.589837 +2437.601791 +2437.603257 +2437.637089 +2437.649144 +2437.711415 +2437.721505 +2437.721838 +2437.764295 +2437.776949 +2437.826267 +2437.827699 +2437.837755 +2437.851508 +2437.862530 +2437.880646 +2437.894232 +2437.923070 +2437.944881 +2437.945381 +2437.957968 +2437.981245 +2438.002624 +2438.013113 +2438.023603 +2438.032927 +2438.033359 +2438.054572 +2438.056636 +2438.057169 +2438.068258 +2438.068757 +2438.080146 +2438.081878 +2438.093533 +2438.106253 +2438.170356 +2438.182543 +2438.195697 +2438.209050 +2438.220872 +2438.235790 +2438.249909 +2438.251275 +2438.287905 +2438.299193 +2438.356270 +2438.366293 +2438.378814 +2438.379180 +2438.390702 +2438.431394 +2438.432260 +2438.443349 +2438.455803 +2438.470722 +2438.519673 +2438.540119 +2438.541118 +2438.548977 +2438.612280 +2438.623569 +2438.636556 +2438.660632 +2438.672686 +2438.707052 +2438.740785 +2438.743882 +2438.784841 +2438.785540 +2438.809849 +2438.823302 +2438.858001 +2438.881677 +2438.901490 +2438.923535 +2438.935490 +2438.972419 +2438.974118 +2438.985573 +2438.996728 +2439.009815 +2439.011847 +2439.076082 +2439.076682 +2439.088636 +2439.143149 +2439.193631 +2439.205553 +2439.206918 +2439.246245 +2439.260964 +2439.272586 +2439.328796 +2439.330361 +2439.342516 +2439.381876 +2439.383475 +2439.384074 +2439.436655 +2439.478013 +2439.480045 +2439.505353 +2439.506185 +2439.518639 +2439.546079 +2439.546745 +2439.557833 +2439.599458 +2439.601223 +2439.629895 +2439.658732 +2439.671786 +2439.700557 +2439.701689 +2439.713844 +2439.741217 +2439.754037 +2439.823168 +2439.839285 +2439.882841 +2439.911313 +2439.938919 +2439.956101 +2439.969655 +2440.041616 +2440.041882 +2440.054769 +2440.055002 +2440.068556 +2440.082575 +2440.084173 +2440.112212 +2440.114043 +2440.122968 +2440.127596 +2440.170986 +2440.185971 +2440.201223 +2440.202355 +2440.215675 +2440.259997 +2440.273983 +2440.305452 +2440.320470 +2440.335155 +2440.393330 +2440.395661 +2440.408682 +2440.408915 +2440.451106 +2440.484140 +2440.558032 +2440.558299 +2440.573783 +2440.663593 +2440.690899 +2440.719937 +2440.754669 +2440.893163 +2440.907982 +2440.908415 +2440.937852 +2441.031292 +2441.047642 +2441.048008 +2441.093663 +2441.123466 +2441.139583 +2441.182540 +2441.271019 +2441.272817 +2441.329260 +2441.334155 +2441.381042 +2441.398091 +2441.491498 +2441.504518 +2441.523199 +2441.615907 +2441.667289 +2441.676346 +2451.310236 +2451.392121 +2451.429883 +2451.432214 +2451.439174 +2451.481098 +2451.593719 +2451.705041 +2451.705307 +2451.709769 +2453.509002 +2453.705771 +2453.711266 +2454.254589 +2454.414062 +2456.539834 +2456.711596 +2456.712195 +2459.429109 +2459.467804 +2459.647424 +2459.776228 +2460.911325 +2461.018951 +2461.038098 +2461.401801 +2461.705164 +2461.708461 +2461.709360 +2461.709893 +2461.809759 +2461.907395 +2461.915220 +2462.005830 +2462.011124 +2462.107395 +2462.207994 +2462.506628 +2462.611390 +2463.306528 +2463.308626 +2463.416884 +2463.507993 +2463.606827 +2463.712388 +2463.912521 +2464.111988 +2464.206360 +2464.211788 +2464.305894 +2464.615784 +2464.808557 +2464.813286 +2465.212020 +2465.308224 +2465.606925 +2465.612386 +2465.808723 +2465.812253 +2466.116648 +2466.206392 +2466.206791 +2466.211853 +2466.214583 +2466.307024 +2466.411986 +2466.415882 +2466.612285 +2466.715648 +2466.716281 +2469.405822 +2469.414647 +2470.496797 +2470.795764 +2470.902191 +2471.706486 +2471.746313 +2471.784941 +2471.793399 +2471.803089 +2471.814711 +2471.835757 +2471.836156 +2471.847578 +2471.848810 +2471.859000 +2471.869489 +2471.881111 +2471.892000 +2471.948843 +2471.967891 +2471.985806 +2471.986539 +2471.987771 +2471.997028 +2472.022303 +2472.060831 +2472.082476 +2472.108184 +2472.119539 +2472.129629 +2472.131794 +2472.179246 +2472.179712 +2472.200025 +2472.200725 +2472.234557 +2472.243881 +2472.286705 +2472.298060 +2472.321104 +2472.324068 +2472.384674 +2472.387238 +2472.421304 +2472.434557 +2472.481577 +2472.482143 +2472.493731 +2472.509449 +2472.546112 +2472.597860 +2472.639119 +2472.641417 +2472.652506 +2472.732792 +2472.746245 +2472.779578 +2472.837787 +2472.848343 +2472.863927 +2472.883974 +2472.933091 +2472.942748 +2472.966658 +2473.016208 +2473.052339 +2473.068289 +2473.079345 +2473.091433 +2473.118140 +2473.119904 +2473.145945 +2473.159165 +2473.169422 +2473.170787 +2473.172185 +2473.203887 +2473.213844 +2473.214543 +2473.240384 +2473.251340 +2473.252838 +2473.320037 +2473.341116 +2473.358865 +2473.360364 +2473.373018 +2473.374716 +2473.387836 +2473.399758 +2473.400956 +2473.402089 +2473.439917 +2473.440883 +2473.463727 +2473.490434 +2473.526164 +2473.537986 +2473.550207 +2473.551739 +2473.578512 +2473.614376 +2473.627463 +2473.628995 +2473.654536 +2473.667923 +2473.669554 +2473.680876 +2473.705818 +2473.720969 +2473.733524 +2473.784073 +2473.785638 +2473.847376 +2473.883307 +2473.886004 +2473.895794 +2473.907616 +2473.924000 +2473.937320 +2473.951139 +2473.951938 +2473.978512 +2473.993030 +2473.994795 +2474.008115 +2474.022401 +2474.053004 +2474.080310 +2474.146377 +2474.172817 +2474.186304 +2474.201788 +2474.230459 +2474.245278 +2474.258764 +2474.259997 +2474.260496 +2474.287136 +2474.327995 +2474.355734 +2474.412277 +2474.424931 +2474.437885 +2474.439284 +2474.454335 +2474.495827 +2474.496593 +2474.509380 +2474.552970 +2474.567122 +2474.568155 +2474.638884 +2474.652637 +2474.682740 +2474.693896 +2474.723366 +2474.737752 +2474.751205 +2474.794395 +2474.805750 +2474.808714 +2474.868454 +2474.883106 +2474.896593 +2474.941981 +2474.943646 +2474.971884 +2474.987169 +2475.015440 +2475.015940 +2475.017405 +2475.031091 +2475.058930 +2475.089833 +2475.091631 +2475.104418 +2475.130825 +2475.135187 +2475.149773 +2475.150339 +2475.179509 +2475.204851 +2475.209180 +2475.218837 +2475.219136 +2475.222866 +2475.234388 +2475.297724 +2475.328360 +2475.329160 +2475.339383 +2475.341114 +2475.343246 +2475.358597 +2475.387235 +2475.402886 +2475.404318 +2475.428094 +2475.432756 +2475.443945 +2475.447874 +2475.463126 +2475.463525 +2475.479909 +2475.490365 +2475.494494 +2475.507348 +2475.525030 +2475.540348 +2475.585703 +2475.597757 +2475.677844 +2475.688367 +2475.708180 +2475.731757 +2475.766389 +2475.795659 +2475.810245 +2475.851237 +2475.916971 +2475.921966 +2475.936485 +2475.965722 +2475.994227 +2476.040281 +2476.144910 +2476.178343 +2476.267554 +2476.277377 +2476.323564 +2476.323831 +2476.324164 +2476.398622 +2476.472981 +2476.489398 +2476.521832 +2476.593494 +2476.633054 +2476.696324 +2477.376011 +2477.388332 +2477.401385 +2478.464688 +2478.687232 +2481.075940 +2483.970743 +2485.503975 +2485.531381 +2486.705805 +2486.711133 +2487.151592 +2488.712896 +2489.705136 +2489.705203 +2489.705835 +2489.711463 +2489.712062 +2491.712826 +2496.705162 +2496.705862 +2496.707027 +2496.710857 +2496.711123 +2496.711456 +2497.111988 +2497.308525 +2497.412454 +2497.512621 +2497.607359 +2497.712487 +2497.807026 +2498.412986 +2498.517282 +2498.612986 +2498.712786 +2499.812518 +2499.907423 +2500.116348 +2500.116847 +2500.412684 +2500.507390 +2500.512751 +2500.516480 +2500.608655 +2500.716946 +2500.912617 +2500.916880 +2501.006989 +2501.108554 +2501.112684 +2501.117179 +2501.208588 +2501.212717 +2501.313183 +2501.414448 +2501.512650 +2501.516579 +2501.607455 +2501.608621 +2501.612716 +2501.706323 +2501.707355 +2501.709187 +2506.710980 +2506.716841 +2506.722435 +2506.723567 +2506.730127 +2506.731359 +2506.746511 +2506.769355 +2506.771086 +2506.772551 +2506.780277 +2506.781509 +2506.790200 +2506.799991 +2506.813311 +2506.832392 +2506.833657 +2506.864559 +2506.866424 +2506.875382 +2506.896427 +2506.907583 +2506.923201 +2506.934423 +2506.958698 +2506.968422 +2506.983973 +2507.005219 +2507.023633 +2507.034722 +2507.061329 +2507.062894 +2507.072518 +2507.072818 +2507.074316 +2507.086171 +2507.099524 +2507.101089 +2507.131692 +2507.142548 +2507.154103 +2507.168455 +2507.178712 +2507.180177 +2507.188269 +2507.189035 +2507.234422 +2507.245911 +2507.275282 +2507.276047 +2507.295095 +2507.305418 +2507.316474 +2507.352504 +2507.377446 +2507.397726 +2507.403453 +2507.412344 +2507.413710 +2507.457466 +2507.458132 +2507.469221 +2507.470619 +2507.483906 +2507.507383 +2507.519537 +2507.545944 +2507.547076 +2507.606883 +2507.617739 +2507.670786 +2507.672417 +2507.672884 +2507.709547 +2507.730592 +2507.752537 +2507.764692 +2507.775181 +2507.809114 +2507.819503 +2507.821302 +2507.831025 +2507.845344 +2507.856999 +2507.857465 +2507.879976 +2507.926496 +2507.947475 +2507.963826 +2508.000089 +2508.027695 +2508.038451 +2508.039117 +2508.051804 +2508.088135 +2508.113043 +2508.153436 +2508.176146 +2508.178211 +2508.227795 +2508.251771 +2508.253802 +2508.264958 +2508.291431 +2508.316672 +2508.317671 +2508.329360 +2508.330825 +2508.342480 +2508.353369 +2508.356766 +2508.403552 +2508.442813 +2508.481274 +2508.482740 +2508.520202 +2508.533056 +2508.545377 +2508.583106 +2508.612043 +2508.638184 +2508.651038 +2508.666123 +2508.678177 +2508.679676 +2508.705883 +2508.743545 +2508.755966 +2508.781374 +2508.794927 +2508.818603 +2508.819969 +2508.821467 +2508.831224 +2508.903818 +2508.935420 +2508.945676 +2508.947341 +2508.948107 +2508.960062 +2509.027794 +2509.041613 +2509.066722 +2509.077611 +2509.103685 +2509.105982 +2509.118070 +2509.144610 +2509.186535 +2509.187967 +2509.200188 +2509.211177 +2509.266422 +2509.267987 +2509.281140 +2509.345543 +2509.365989 +2509.367421 +2509.369419 +2509.392762 +2509.417304 +2509.431590 +2509.458163 +2509.459329 +2509.471883 +2509.501120 +2509.524130 +2509.525895 +2509.527361 +2509.554500 +2509.569885 +2509.571650 +2509.624597 +2509.626728 +2509.653201 +2509.653767 +2509.695492 +2509.721266 +2509.735619 +2509.746008 +2509.749305 +2509.778709 +2509.786967 +2509.790664 +2509.803484 +2509.833920 +2509.859961 +2509.875179 +2509.928026 +2509.938849 +2509.966754 +2509.980007 +2510.003451 +2510.017303 +2510.033021 +2510.033953 +2510.073148 +2510.086135 +2510.088066 +2510.111576 +2510.130290 +2510.144043 +2510.184103 +2510.207347 +2510.211442 +2510.221799 +2510.249338 +2510.254533 +2510.264323 +2510.268985 +2510.306847 +2510.311409 +2510.323996 +2510.335851 +2510.344243 +2510.360527 +2510.374346 +2510.386967 +2510.388532 +2510.432088 +2510.446574 +2510.461159 +2510.476544 +2510.491396 +2510.506647 +2510.521765 +2510.550936 +2510.629857 +2510.631888 +2510.659794 +2510.670017 +2510.710210 +2510.713840 +2510.742877 +2510.828791 +2510.843809 +2510.853666 +2510.872447 +2510.933053 +2510.946207 +2510.963889 +2510.974112 +2511.068451 +2511.140512 +2511.155564 +2511.262524 +2511.275377 +2511.381138 +2511.439813 +2511.577242 +2511.629623 +2520.037207 +2520.781262 +2520.832311 +2521.705637 +2521.706669 +2521.707069 +2521.710665 +2521.710931 +2521.966176 +2522.705436 +2522.705802 +2522.706735 +2522.712096 +2523.706900 +2524.712960 +2526.705698 +2526.706764 +2526.711592 +2526.712358 +2526.912591 +2531.705593 +2531.710489 +2531.911354 +2532.014784 +2532.106492 +2532.111587 +2532.212220 +2532.315416 +2532.315616 +2532.412120 +2532.508390 +2532.516016 +2532.612286 +2532.715849 +2532.812585 +2532.912352 +2533.015149 +2533.015516 +2533.016048 +2533.112252 +2533.115715 +2533.312418 +2533.415715 +2533.606557 +2533.606990 +2533.814882 +2533.908522 +2533.915481 +2533.915914 +2534.012185 +2534.013050 +2534.112251 +2534.215847 +2534.308521 +2534.316047 +2534.416080 +2534.607056 +2534.612151 +2534.712117 +2534.908554 +2534.912250 +2534.915913 +2535.006523 +2535.007089 +2535.108354 +2535.118244 +2535.315646 +2535.406522 +2535.412483 +2535.419409 +2535.507022 +2535.512183 +2535.512882 +2535.709319 +2535.712150 +2535.812316 +2535.812682 +2535.912149 +2535.916045 +2536.015779 +2536.219075 +2536.306455 +2536.315645 +2536.506654 +2536.612582 +2540.628628 +2541.715973 +2541.729027 +2541.735886 +2541.737085 +2541.744778 +2541.745344 +2541.746076 +2541.758164 +2541.767388 +2541.772949 +2541.775680 +2541.782440 +2541.783039 +2541.799989 +2541.810046 +2541.819270 +2541.830026 +2541.863625 +2541.863992 +2541.898857 +2541.908980 +2541.910279 +2541.910545 +2541.918504 +2541.919270 +2541.920602 +2541.930092 +2541.964158 +2541.975713 +2541.976679 +2541.986602 +2541.988367 +2542.033788 +2542.034987 +2542.044511 +2542.056632 +2542.068853 +2542.115473 +2542.131490 +2542.161827 +2542.174547 +2542.185270 +2542.197691 +2542.211877 +2542.222799 +2542.283305 +2542.285403 +2542.295726 +2542.296525 +2542.296892 +2542.308580 +2542.321134 +2542.331790 +2542.332989 +2542.344544 +2542.356898 +2542.381440 +2542.393828 +2542.420068 +2542.420601 +2542.421467 +2542.471150 +2542.481740 +2542.483372 +2542.507081 +2542.521001 +2542.545243 +2542.558263 +2542.567188 +2542.581740 +2542.602219 +2542.615473 +2542.626129 +2542.627228 +2542.647208 +2542.661227 +2542.672216 +2542.701886 +2542.709012 +2542.719002 +2542.729825 +2542.730591 +2542.731923 +2542.742845 +2542.761959 +2542.781573 +2542.792995 +2542.804583 +2542.819402 +2542.842612 +2542.866055 +2542.899155 +2542.926361 +2542.939249 +2542.951903 +2542.952702 +2542.964157 +2543.001986 +2543.027227 +2543.052502 +2543.053934 +2543.104616 +2543.129758 +2543.142845 +2543.189731 +2543.191396 +2543.202052 +2543.214340 +2543.225995 +2543.238815 +2543.239581 +2543.266787 +2543.277710 +2543.279242 +2543.353933 +2543.366454 +2543.392262 +2543.419102 +2543.470883 +2543.509844 +2543.523231 +2543.524063 +2543.546807 +2543.549038 +2543.560726 +2543.586301 +2543.588499 +2543.625895 +2543.638915 +2543.649637 +2543.678209 +2543.704150 +2543.717803 +2543.757030 +2543.757896 +2543.785202 +2543.797123 +2543.835518 +2543.848372 +2543.863790 +2543.901785 +2543.963989 +2543.965588 +2543.978641 +2543.991895 +2544.004882 +2544.017136 +2544.017802 +2544.028358 +2544.069617 +2544.084103 +2544.096091 +2544.097589 +2544.110276 +2544.133919 +2544.169517 +2544.172381 +2544.200553 +2544.235285 +2544.247372 +2544.249004 +2544.249337 +2544.270682 +2544.272248 +2544.318568 +2544.329657 +2544.331988 +2544.356563 +2544.412374 +2544.413939 +2544.425594 +2544.438181 +2544.451834 +2544.453633 +2544.515737 +2544.538148 +2544.549337 +2544.607812 +2544.672314 +2544.683269 +2544.707245 +2544.739280 +2544.747705 +2544.751501 +2544.764288 +2544.764655 +2544.788997 +2544.806579 +2544.817502 +2544.829590 +2544.858527 +2544.867585 +2544.881371 +2544.897089 +2544.924828 +2544.934651 +2544.935450 +2544.947838 +2544.949869 +2544.972946 +2544.974778 +2544.975144 +2545.000785 +2545.014838 +2545.055630 +2545.057828 +2545.069083 +2545.079839 +2545.082570 +2545.091228 +2545.106080 +2545.118534 +2545.120265 +2545.145707 +2545.159792 +2545.160359 +2545.173146 +2545.203016 +2545.266652 +2545.281571 +2545.318633 +2545.343142 +2545.382536 +2545.383235 +2545.407145 +2545.501051 +2545.515503 +2545.542376 +2545.591627 +2545.596156 +2545.611074 +2545.624527 +2545.632886 +2545.653099 +2545.661657 +2545.724161 +2545.725559 +2545.819366 +2545.892026 +2545.892293 +2545.911507 +2545.926558 +2545.927258 +2545.998320 +2546.037481 +2546.040011 +2546.054896 +2546.097454 +2546.124760 +2546.209375 +2546.218599 +2546.261923 +2546.276841 +2546.307510 +2546.583034 +2556.705768 +2557.705501 +2557.705501 +2557.709930 +2557.711262 +2558.706499 +2559.705166 +2559.707097 +2560.706397 +2561.706696 +2561.713123 +2565.017914 +2565.036895 +2565.124175 +2566.806391 +2566.814882 +2566.907456 +2567.014483 +2567.108022 +2567.208189 +2567.216181 +2567.308755 +2567.516380 +2567.716080 +2567.812550 +2567.912184 +2568.112250 +2568.312916 +2568.412317 +2568.706689 +2568.715979 +2569.007155 +2569.106655 +2569.208553 +2569.216612 +2569.312749 +2569.712482 +2569.908586 +2569.912681 +2570.016311 +2570.108352 +2570.116744 +2570.712448 +2570.716111 +2570.908218 +2570.912214 +2570.916477 +2571.009051 +2571.015944 +2571.111948 +2571.212281 +2571.216543 +2571.308751 +2571.512280 +2571.512980 +2571.612447 +2571.712447 +2573.951339 +2575.341181 +2576.004683 +2576.705082 +2576.709078 +2576.715072 +2576.717203 +2576.735951 +2576.742378 +2576.765189 +2576.765655 +2576.766188 +2576.775745 +2576.786268 +2576.798056 +2576.798722 +2576.799554 +2576.809844 +2576.811010 +2576.821133 +2576.822598 +2576.823131 +2576.844343 +2576.844709 +2576.856497 +2576.857063 +2576.858129 +2576.868352 +2576.892062 +2576.892628 +2576.893960 +2576.901985 +2576.915538 +2576.932355 +2576.932954 +2576.941912 +2576.952967 +2576.965988 +2576.988532 +2576.989098 +2577.010676 +2577.049438 +2577.082138 +2577.091529 +2577.092594 +2577.100553 +2577.103250 +2577.115738 +2577.126028 +2577.138215 +2577.138948 +2577.149104 +2577.150037 +2577.162791 +2577.186800 +2577.222697 +2577.231489 +2577.232321 +2577.233620 +2577.267553 +2577.304715 +2577.306214 +2577.315604 +2577.326993 +2577.328825 +2577.337516 +2577.358428 +2577.366620 +2577.376177 +2577.376543 +2577.377476 +2577.402318 +2577.419167 +2577.460360 +2577.496024 +2577.559294 +2577.571482 +2577.599121 +2577.619933 +2577.643376 +2577.646207 +2577.670183 +2577.703117 +2577.703516 +2577.778075 +2577.811408 +2577.821665 +2577.859027 +2577.882071 +2577.918001 +2577.929357 +2577.930689 +2578.009144 +2578.010908 +2578.023929 +2578.062091 +2578.075610 +2578.086766 +2578.148271 +2578.173512 +2578.174112 +2578.211574 +2578.213206 +2578.224461 +2578.225860 +2578.263489 +2578.284634 +2578.315037 +2578.338347 +2578.381204 +2578.391161 +2578.418201 +2578.427891 +2578.441411 +2578.442976 +2578.455630 +2578.468650 +2578.513805 +2578.516069 +2578.528923 +2578.550169 +2578.574011 +2578.575144 +2578.588197 +2578.597788 +2578.616769 +2578.626659 +2578.706945 +2578.761757 +2578.801983 +2578.814071 +2578.815670 +2578.836915 +2578.857061 +2578.867085 +2578.894491 +2578.905979 +2578.907611 +2578.932852 +2578.948137 +2578.959992 +2578.986299 +2578.996588 +2578.997887 +2578.999386 +2579.012806 +2579.023062 +2579.059858 +2579.061057 +2579.071880 +2579.111673 +2579.123495 +2579.123761 +2579.125326 +2579.136715 +2579.176708 +2579.205013 +2579.215436 +2579.233218 +2579.244640 +2579.272346 +2579.272745 +2579.300318 +2579.301883 +2579.314237 +2579.343874 +2579.397853 +2579.425226 +2579.436648 +2579.438346 +2579.450234 +2579.484300 +2579.507477 +2579.507910 +2579.522695 +2579.548536 +2579.550634 +2579.589328 +2579.615635 +2579.659125 +2579.683068 +2579.707077 +2579.708676 +2579.710341 +2579.754097 +2579.766551 +2579.794490 +2579.806911 +2579.844939 +2579.860324 +2579.886864 +2579.912638 +2579.956461 +2579.968682 +2580.008009 +2580.024360 +2580.052132 +2580.093890 +2580.122295 +2580.165485 +2580.191925 +2580.236614 +2580.237613 +2580.264952 +2580.293623 +2580.350367 +2580.351565 +2580.379371 +2580.394156 +2580.394756 +2580.406244 +2580.438778 +2580.497186 +2580.497486 +2580.512504 +2580.541708 +2580.555628 +2580.571112 +2580.610639 +2580.656693 +2580.657459 +2580.685631 +2580.686330 +2580.700516 +2580.739477 +2580.743906 +2580.772810 +2580.773243 +2580.787363 +2580.845837 +2580.861355 +2580.873343 +2580.890393 +2580.934515 +2580.944439 +2580.981302 +2581.025058 +2581.085031 +2581.129687 +2581.310639 +2581.409873 +2581.570878 +2581.624092 +2581.686463 +2583.356824 +2583.413567 +2583.429817 +2583.457057 +2584.041538 +2584.100979 +2584.366180 +2584.397249 +2587.103607 +2587.693516 +2588.787121 +2592.045094 +2592.444827 +2592.710960 +2593.706264 +2593.711459 +2594.711624 +2595.706362 +2595.711690 +2595.712156 +2596.705462 +2596.710590 +2597.650383 +2598.912353 +2598.982682 +2601.712883 +2601.810485 +2601.811251 +2601.914115 +2602.007754 +2602.011617 +2602.206422 +2602.211517 +2602.512915 +2602.612615 +2602.712682 +2602.716611 +2602.813248 +2603.212615 +2603.217477 +2603.307487 +2603.712781 +2603.812914 +2604.217376 +2604.412714 +2604.507552 +2604.517109 +2604.608684 +2604.913312 +2605.608816 +2605.612646 +2605.815609 +2605.906718 +2605.909149 +2605.909382 +2606.007118 +2606.008783 +2606.009415 +2606.012945 +2606.116841 +2606.208516 +2606.212978 +2606.408782 +2606.507517 +2606.508049 +2606.508982 +2606.512612 +2606.513477 +2606.608582 +2606.609248 +2606.615275 +2610.568618 +2610.640180 +2611.712973 +2611.716702 +2611.748504 +2611.766752 +2611.767085 +2611.779573 +2611.789862 +2611.801517 +2611.802150 +2611.810941 +2611.812073 +2611.813405 +2611.823162 +2611.824528 +2611.833752 +2611.849036 +2611.858660 +2611.860025 +2611.870582 +2611.880771 +2611.882070 +2611.891028 +2611.901717 +2611.908943 +2611.937914 +2611.938813 +2611.960558 +2611.973279 +2611.973878 +2611.984068 +2611.985333 +2611.996722 +2611.997688 +2612.017668 +2612.026192 +2612.028024 +2612.048037 +2612.048437 +2612.062456 +2612.072679 +2612.073412 +2612.074344 +2612.086965 +2612.096855 +2612.098120 +2612.109676 +2612.121664 +2612.133385 +2612.171081 +2612.183302 +2612.195623 +2612.209076 +2612.232253 +2612.249236 +2612.257927 +2612.259958 +2612.269416 +2612.282602 +2612.307944 +2612.309675 +2612.318866 +2612.319332 +2612.320198 +2612.331820 +2612.345340 +2612.355696 +2612.368317 +2612.380171 +2612.390861 +2612.392159 +2612.441976 +2612.500518 +2612.536149 +2612.549169 +2612.598486 +2612.613371 +2612.639312 +2612.653065 +2612.678406 +2612.711440 +2612.724294 +2612.733817 +2612.775476 +2612.788230 +2612.801550 +2612.811640 +2612.824493 +2612.861956 +2612.906012 +2612.913970 +2612.950700 +2612.959591 +2612.960024 +2612.971313 +2612.972678 +2613.010973 +2613.037547 +2613.063021 +2613.088862 +2613.099618 +2613.133118 +2613.159158 +2613.194423 +2613.207177 +2613.231985 +2613.245672 +2613.258492 +2613.286664 +2613.300916 +2613.312571 +2613.313271 +2613.326391 +2613.365019 +2613.365818 +2613.379671 +2613.402481 +2613.404047 +2613.426557 +2613.437247 +2613.438212 +2613.483634 +2613.541942 +2613.544972 +2613.552565 +2613.567849 +2613.579837 +2613.580836 +2613.582168 +2613.618499 +2613.686464 +2613.698086 +2613.722428 +2613.724060 +2613.787663 +2613.842008 +2613.843207 +2613.867849 +2613.880769 +2613.890593 +2613.897586 +2613.906943 +2613.907876 +2613.934282 +2614.013770 +2614.051765 +2614.092757 +2614.104679 +2614.106277 +2614.119630 +2614.133883 +2614.145604 +2614.147469 +2614.161055 +2614.201348 +2614.295587 +2614.297252 +2614.323027 +2614.335115 +2614.345138 +2614.348068 +2614.360256 +2614.402081 +2614.436446 +2614.450033 +2614.461188 +2614.488228 +2614.504245 +2614.513170 +2614.526423 +2614.554162 +2614.591025 +2614.645004 +2614.657492 +2614.714102 +2614.715767 +2614.745371 +2614.758724 +2614.760555 +2614.771744 +2614.786096 +2614.827455 +2614.897918 +2614.898218 +2614.925490 +2614.953396 +2614.955161 +2614.981900 +2614.983898 +2614.996419 +2614.997152 +2615.010006 +2615.010805 +2615.039842 +2615.040675 +2615.053462 +2615.066349 +2615.146869 +2615.158057 +2615.159689 +2615.183832 +2615.194421 +2615.263086 +2615.265517 +2615.280135 +2615.289293 +2615.289526 +2615.292157 +2615.293788 +2615.319829 +2615.321361 +2615.350498 +2615.363585 +2615.376439 +2615.390158 +2615.416599 +2615.416832 +2615.418463 +2615.431217 +2615.445869 +2615.461054 +2615.474341 +2615.489925 +2615.503811 +2615.504444 +2615.639009 +2615.682100 +2615.712236 +2615.712669 +2615.725223 +2615.726788 +2615.740741 +2615.764550 +2615.790624 +2615.832283 +2615.859988 +2615.862919 +2615.948333 +2615.962918 +2615.988726 +2615.989958 +2616.058756 +2616.059422 +2616.083731 +2616.191856 +2616.206142 +2616.236212 +2616.249598 +2616.249964 +2616.274806 +2616.278569 +2616.337777 +2616.351929 +2616.380734 +2616.473641 +2616.487693 +2616.517197 +2616.548399 +2616.562352 +2616.610603 +2621.093050 +2621.127515 +2622.752322 +2624.986419 +2626.471866 +2626.705399 +2626.713357 +2627.706530 +2627.713656 +2627.825910 +2627.854149 +2627.998937 +2628.062973 +2628.707861 +2629.284017 +2629.707860 +2629.711989 +2630.588245 +2630.713586 +2631.707325 +2633.398532 +2633.783547 +2634.999330 +2635.003659 +2635.065364 +2635.503725 +2635.595033 +2636.710850 +2636.711016 +2636.807053 +2636.811416 +2637.008851 +2637.012148 +2637.012881 +2637.107353 +2637.209484 +2637.307552 +2637.312248 +2637.407353 +2637.507819 +2637.717009 +2637.817042 +2638.107319 +2638.208018 +2638.317308 +2638.413212 +2638.607818 +2638.613046 +2638.613911 +2638.707718 +2638.708950 +2638.807418 +2638.807784 +2638.812313 +2639.007717 +2639.210015 +2639.213045 +2639.313278 +2639.413311 +2639.417307 +2639.507683 +2639.508449 +2639.512978 +2639.513511 +2639.610048 +2639.713311 +2639.817473 +2639.913377 +2640.013311 +2640.016707 +2640.207783 +2640.409214 +2640.513044 +2640.517106 +2640.610080 +2640.613210 +2640.709314 +2640.810146 +2640.817506 +2640.913843 +2641.107082 +2641.107748 +2641.307782 +2641.312976 +2641.407049 +2641.509480 +2641.516439 +2641.613742 +2642.615606 +2643.569151 +2643.569684 +2643.578309 +2643.604283 +2643.662391 +2643.688399 +2643.887632 +2644.800319 +2644.836982 +2644.845474 +2644.881238 +2645.694524 +2646.710074 +2646.716467 +2646.739278 +2646.746504 +2646.748036 +2646.774076 +2646.775908 +2646.802115 +2646.803014 +2646.804946 +2646.813504 +2646.830220 +2646.832185 +2646.843207 +2646.855195 +2646.877773 +2646.887063 +2646.913071 +2646.914669 +2646.915235 +2646.926824 +2646.936081 +2646.948202 +2646.959924 +2647.006810 +2647.019830 +2647.044439 +2647.067083 +2647.078538 +2647.112071 +2647.113537 +2647.124226 +2647.155262 +2647.156460 +2647.201349 +2647.213770 +2647.255495 +2647.255894 +2647.257259 +2647.266417 +2647.266750 +2647.268315 +2647.290892 +2647.307776 +2647.316966 +2647.317732 +2647.328488 +2647.329387 +2647.330220 +2647.368382 +2647.388262 +2647.405578 +2647.426090 +2647.467482 +2647.489827 +2647.490459 +2647.491358 +2647.503546 +2647.543639 +2647.588994 +2647.589260 +2647.591458 +2647.592124 +2647.635048 +2647.662654 +2647.690459 +2647.700882 +2647.714768 +2647.730186 +2647.740942 +2647.741908 +2647.743573 +2647.793523 +2647.804378 +2647.885231 +2647.923892 +2647.954162 +2647.956360 +2647.964285 +2647.964884 +2647.976440 +2648.001148 +2648.014102 +2648.025524 +2648.027255 +2648.038344 +2648.089893 +2648.091558 +2648.102980 +2648.103712 +2648.129753 +2648.151797 +2648.182300 +2648.217698 +2648.230452 +2648.320961 +2648.333948 +2648.356959 +2648.368247 +2648.368714 +2648.396086 +2648.417165 +2648.431251 +2648.466083 +2648.491757 +2648.503612 +2648.529353 +2648.559256 +2648.560089 +2648.584631 +2648.597018 +2648.682300 +2648.738510 +2648.740009 +2648.752862 +2648.754427 +2648.791757 +2648.845103 +2648.846602 +2648.860854 +2648.861487 +2648.885496 +2648.897018 +2648.938643 +2648.974108 +2648.981467 +2649.017731 +2649.070811 +2649.072975 +2649.112303 +2649.122526 +2649.136345 +2649.150364 +2649.178237 +2649.178769 +2649.180468 +2649.180734 +2649.206009 +2649.223192 +2649.235846 +2649.265349 +2649.278370 +2649.305209 +2649.346501 +2649.347734 +2649.407773 +2649.409838 +2649.457990 +2649.468280 +2649.540141 +2649.562219 +2649.587560 +2649.630351 +2649.692488 +2649.693754 +2649.778702 +2649.824223 +2649.838076 +2649.852528 +2649.853194 +2649.866148 +2649.878968 +2649.892988 +2649.893687 +2649.894653 +2649.907340 +2649.908372 +2649.948932 +2649.962518 +2649.964283 +2649.976837 +2650.003943 +2650.004276 +2650.018462 +2650.019428 +2650.030317 +2650.033014 +2650.063484 +2650.077170 +2650.112401 +2650.150230 +2650.164050 +2650.181133 +2650.233647 +2650.294819 +2650.363617 +2650.451096 +2650.467046 +2650.480566 +2650.510470 +2650.525321 +2650.565581 +2650.632015 +2650.659587 +2650.698049 +2650.698515 +2650.709104 +2650.710303 +2650.782797 +2650.825488 +2650.825987 +2650.840806 +2650.841272 +2650.852894 +2650.872008 +2650.932381 +2650.975371 +2651.066347 +2651.097249 +2651.140905 +2651.156190 +2651.235577 +2651.290722 +2651.363316 +2651.377801 +2651.390189 +2651.450928 +2651.659320 +2651.702177 +2653.931345 +2654.482893 +2654.701941 +2658.403169 +2658.413692 +2658.418620 +2658.426446 +2659.315423 +2659.916687 +2661.568634 +2661.713056 +2661.864105 +2661.888680 +2662.341993 +2662.707594 +2662.711490 +2662.714154 +2663.430970 +2663.451949 +2663.708425 +2663.711256 +2663.713853 +2664.707192 +2664.711055 +2664.712587 +2665.712552 +2665.853578 +2666.707290 +2666.714316 +2667.101262 +2668.112084 +2668.123672 +2668.133396 +2668.161468 +2668.244018 +2668.653775 +2668.723538 +2668.898497 +2669.065762 +2669.066695 +2670.470889 +2671.197862 +2671.705254 +2671.706153 +2671.711381 +2671.805986 +2671.811014 +2671.811680 +2671.912480 +2672.008150 +2672.012346 +2672.116042 +2672.120072 +2672.312979 +2672.316142 +2672.416475 +2672.507917 +2672.612679 +2672.618440 +2672.707883 +2672.712978 +2672.713811 +2672.716475 +2672.816541 +2673.007816 +2673.013577 +2673.016907 +2673.113144 +2673.320537 +2673.516774 +2673.617273 +2673.715974 +2673.815808 +2673.916240 +2674.016840 +2674.213143 +2674.216840 +2674.313443 +2674.410079 +2674.417239 +2674.507748 +2674.517405 +2674.617072 +2674.617572 +2674.707482 +2675.013276 +2675.413009 +2675.416206 +2675.517005 +2675.613042 +2675.809612 +2676.013341 +2676.016538 +2676.016971 +2676.107847 +2676.116505 +2676.220467 +2676.507880 +2676.516771 +2676.612974 +2676.717237 +2680.638312 +2680.765884 +2680.796520 +2680.803546 +2680.827289 +2680.845637 +2680.893656 +2681.131018 +2681.706476 +2681.721927 +2681.722493 +2681.746136 +2681.774374 +2681.775240 +2681.786296 +2681.795686 +2681.797052 +2681.805910 +2681.838643 +2681.873442 +2681.883399 +2681.884964 +2681.905576 +2681.929386 +2681.942673 +2681.953828 +2681.955060 +2681.955660 +2681.981867 +2681.991457 +2681.999882 +2682.028187 +2682.089193 +2682.118763 +2682.119396 +2682.120761 +2682.131117 +2682.133082 +2682.142606 +2682.153095 +2682.170778 +2682.180801 +2682.201114 +2682.244337 +2682.253295 +2682.262319 +2682.270311 +2682.283731 +2682.294953 +2682.317497 +2682.345503 +2682.364517 +2682.401513 +2682.402612 +2682.403645 +2682.411936 +2682.422392 +2682.434114 +2682.451030 +2682.473408 +2682.500414 +2682.523425 +2682.549965 +2682.550764 +2682.564817 +2682.596551 +2682.620194 +2682.621060 +2682.632649 +2682.633914 +2682.645636 +2682.670111 +2682.672309 +2682.697950 +2682.700081 +2682.712069 +2682.758756 +2682.790324 +2682.801546 +2682.813368 +2682.827121 +2682.828153 +2682.852995 +2682.880401 +2682.881899 +2682.882465 +2682.932415 +2682.976138 +2682.987027 +2682.997483 +2683.034047 +2683.059621 +2683.071110 +2683.071643 +2683.072475 +2683.084263 +2683.086428 +2683.111736 +2683.122858 +2683.189791 +2683.216098 +2683.226787 +2683.265881 +2683.305475 +2683.306308 +2683.319594 +2683.320360 +2683.331216 +2683.341672 +2683.355159 +2683.368279 +2683.369211 +2683.381266 +2683.381699 +2683.411036 +2683.436178 +2683.451329 +2683.463883 +2683.487460 +2683.514000 +2683.514766 +2683.515532 +2683.526820 +2683.528319 +2683.540207 +2683.541605 +2683.566114 +2683.567679 +2683.578935 +2683.591089 +2683.602145 +2683.614999 +2683.624656 +2683.625588 +2683.639607 +2683.663850 +2683.678135 +2683.679800 +2683.691256 +2683.718828 +2683.730716 +2683.732315 +2683.742837 +2683.769011 +2683.780766 +2683.791256 +2683.805641 +2683.845301 +2683.857955 +2683.874372 +2683.886893 +2683.924988 +2683.937443 +2683.950363 +2683.990090 +2684.001412 +2684.002111 +2684.013566 +2684.015298 +2684.027819 +2684.041938 +2684.052294 +2684.065947 +2684.066347 +2684.092954 +2684.119594 +2684.131482 +2684.157356 +2684.159054 +2684.167712 +2684.168478 +2684.183430 +2684.209803 +2684.223656 +2684.236310 +2684.251262 +2684.280233 +2684.308238 +2684.332614 +2684.347832 +2684.362850 +2684.378867 +2684.405907 +2684.419693 +2684.435877 +2684.449030 +2684.464815 +2684.546666 +2684.547499 +2684.574405 +2684.585161 +2684.616763 +2684.628884 +2684.682863 +2684.684528 +2684.736643 +2684.750529 +2684.773739 +2684.784128 +2684.787525 +2684.797015 +2684.830349 +2684.832080 +2684.858287 +2684.858687 +2684.872207 +2684.883862 +2684.885394 +2684.897182 +2684.899380 +2684.923589 +2684.939906 +2684.955257 +2684.956889 +2684.957322 +2685.013366 +2685.039040 +2685.042070 +2685.056556 +2685.057521 +2685.084461 +2685.113132 +2685.113465 +2685.126253 +2685.157155 +2685.213066 +2685.282529 +2685.283395 +2685.296016 +2685.297548 +2685.307771 +2685.311267 +2685.324421 +2685.338307 +2685.352992 +2685.367644 +2685.380631 +2685.382596 +2685.411134 +2685.426252 +2685.452459 +2685.455057 +2685.482896 +2685.496948 +2685.540838 +2685.584527 +2685.598014 +2685.609469 +2685.612433 +2685.613065 +2685.627384 +2685.642669 +2685.643268 +2685.656755 +2685.670608 +2685.672472 +2685.782496 +2685.793085 +2685.822556 +2685.865013 +2685.879232 +2685.894017 +2685.950794 +2685.993618 +2686.094317 +2686.098379 +2686.129049 +2686.142402 +2686.171073 +2686.175536 +2686.206072 +2686.221889 +2686.266211 +2686.298313 +2686.313031 +2686.456854 +2686.671639 +2687.139904 +2687.142434 +2687.261848 +2687.274635 +2687.326284 +2687.351925 +2687.400176 +2687.465111 +2687.804005 +2687.815427 +2687.836207 +2687.873170 +2687.972836 +2687.988088 +2687.991218 +2688.004671 +2688.067242 +2689.103671 +2689.153255 +2689.185056 +2689.229545 +2689.289752 +2691.392846 +2691.463609 +2691.478660 +2691.525314 +2696.713887 +2697.706593 +2698.663602 +2698.705993 +2698.707558 +2698.713951 +2698.714351 +2699.345020 +2699.594303 +2699.711786 +2699.713384 +2700.146018 +2700.147716 +2700.706623 +2700.712284 +2700.962367 +2701.221874 +2701.266030 +2702.808386 +2704.582843 +2704.808251 +2704.943848 +2705.377015 +2706.707150 +2706.711979 +2706.816774 +2706.910313 +2707.013443 +2707.115741 +2707.217273 +2707.307815 +2707.313576 +2707.509114 +2707.517106 +2707.614242 +2707.617505 +2707.813842 +2707.816806 +2707.817239 +2707.817472 +2707.908348 +2707.917006 +2707.917505 +2708.017205 +2708.113942 +2708.117372 +2708.209713 +2708.316905 +2708.509246 +2708.517471 +2708.613875 +2708.616672 +2708.713708 +2708.717504 +2709.013974 +2709.018137 +2709.217271 +2709.217704 +2709.313874 +2709.416438 +2709.613741 +2709.813640 +2709.813940 +2709.917237 +2710.109511 +2710.114073 +2710.409444 +2710.418035 +2710.509677 +2710.513973 +2711.013539 +2711.113506 +2711.208977 +2711.313706 +2711.408344 +2711.409610 +2711.617302 +2711.710309 +2711.713639 +2713.546504 +2713.618465 +2713.653530 +2715.099383 +2716.575139 +2716.717230 +2716.723257 +2716.730950 +2716.739241 +2716.748399 +2716.757889 +2716.759854 +2716.777903 +2716.778069 +2716.779368 +2716.787460 +2716.811835 +2716.831316 +2716.852361 +2716.853194 +2716.862917 +2716.875705 +2716.917529 +2716.937010 +2716.947599 +2716.960486 +2716.960986 +2716.973540 +2716.993320 +2717.002378 +2717.037076 +2717.047732 +2717.048698 +2717.059354 +2717.080000 +2717.080699 +2717.092021 +2717.093453 +2717.118994 +2717.155924 +2717.166047 +2717.196284 +2717.250163 +2717.291888 +2717.301745 +2717.322557 +2717.418095 +2717.465514 +2717.486760 +2717.496783 +2717.584961 +2717.599214 +2717.623390 +2717.635777 +2717.646666 +2717.670109 +2717.683030 +2717.695850 +2717.708338 +2717.709803 +2717.782364 +2717.797648 +2717.797981 +2717.822424 +2717.834745 +2717.869909 +2717.871741 +2717.881231 +2717.905041 +2717.928717 +2717.950928 +2717.989690 +2717.990356 +2718.004908 +2718.030449 +2718.059120 +2718.071841 +2718.084961 +2718.095584 +2718.097049 +2718.117129 +2718.138973 +2718.139273 +2718.140705 +2718.153326 +2718.190688 +2718.201744 +2718.236309 +2718.259986 +2718.270941 +2718.280732 +2718.303842 +2718.345500 +2718.396849 +2718.408337 +2718.440505 +2718.443435 +2718.462316 +2718.501344 +2718.543369 +2718.556622 +2718.566878 +2718.582763 +2718.594118 +2718.619759 +2718.631747 +2718.686126 +2718.696316 +2718.730315 +2718.768876 +2718.770375 +2718.781730 +2718.782796 +2718.794251 +2718.794650 +2718.836309 +2718.848963 +2718.862183 +2718.876302 +2718.887358 +2718.967810 +2719.030315 +2719.052725 +2719.059985 +2719.072705 +2719.081930 +2719.131913 +2719.180930 +2719.182163 +2719.195383 +2719.221257 +2719.222056 +2719.249096 +2719.261783 +2719.275403 +2719.286325 +2719.299379 +2719.326585 +2719.354490 +2719.382695 +2719.384826 +2719.396948 +2719.438339 +2719.451393 +2719.452192 +2719.453824 +2719.480397 +2719.494483 +2719.507104 +2719.577733 +2719.580031 +2719.617960 +2719.619059 +2719.653591 +2719.658885 +2719.669009 +2719.723820 +2719.739138 +2719.750693 +2719.753657 +2719.765412 +2719.767010 +2719.793850 +2719.794683 +2719.796281 +2719.808369 +2719.821489 +2719.822522 +2719.822954 +2719.837773 +2719.851259 +2719.876867 +2719.878632 +2719.893451 +2719.917260 +2719.919191 +2719.933211 +2719.945632 +2719.975402 +2720.004772 +2720.033044 +2720.098878 +2720.111765 +2720.123853 +2720.137273 +2720.148728 +2720.160383 +2720.301808 +2720.314795 +2720.328915 +2720.387256 +2720.460083 +2720.473270 +2720.518225 +2720.519024 +2720.564246 +2720.622587 +2720.622920 +2720.682727 +2720.683426 +2720.744132 +2720.744499 +2720.760749 +2720.814529 +2720.827216 +2720.855121 +2720.855887 +2720.870040 +2720.954289 +2720.956919 +2720.970006 +2721.036939 +2721.062647 +2721.103106 +2721.134342 +2721.193183 +2721.221754 +2721.250759 +2721.279064 +2721.425983 +2721.460182 +2721.532410 +2721.549593 +2721.615427 +2721.618490 +2721.631477 +2721.694947 +2727.300403 +2727.522547 +2729.722212 +2730.532101 +2730.766433 +2730.815784 +2731.708690 +2731.711154 +2732.267131 +2732.336495 +2732.337228 +2732.372259 +2732.386212 +2732.706958 +2733.707156 +2734.707089 +2734.707721 +2734.711418 +2734.875287 +2734.884911 +2735.142486 +2735.713315 +2736.707153 +2736.712681 +2736.713347 +2736.928732 +2737.075585 +2737.293466 +2737.677915 +2737.767559 +2738.212646 +2738.284108 +2738.512912 +2738.843049 +2739.894629 +2741.712010 +2741.812210 +2741.908547 +2741.912543 +2742.112909 +2742.116905 +2742.208746 +2742.213175 +2742.216805 +2742.409512 +2742.616771 +2742.716838 +2742.913641 +2742.917437 +2743.007580 +2743.013541 +2743.017137 +2743.113507 +2743.117204 +2743.408978 +2743.608645 +2743.613507 +2743.713240 +2743.807013 +2743.807313 +2744.013340 +2744.017069 +2744.207545 +2744.216070 +2744.317569 +2744.510309 +2744.513939 +2744.807878 +2744.813572 +2744.913572 +2745.013172 +2745.113039 +2745.213106 +2745.407145 +2745.408443 +2745.413272 +2745.817168 +2745.908909 +2745.917134 +2746.012838 +2746.513138 +2746.516834 +2746.616867 +2751.705873 +2751.716429 +2751.760718 +2751.770941 +2751.789722 +2751.805673 +2751.816695 +2751.827318 +2751.846765 +2751.881231 +2751.892586 +2751.894051 +2751.922356 +2751.934544 +2751.947398 +2751.956822 +2751.982529 +2751.983595 +2752.005573 +2752.006805 +2752.016029 +2752.027751 +2752.080798 +2752.093385 +2752.141504 +2752.151860 +2752.153325 +2752.186958 +2752.187657 +2752.189789 +2752.197547 +2752.213332 +2752.238806 +2752.239172 +2752.262249 +2752.274770 +2752.359385 +2752.360151 +2752.372805 +2752.386092 +2752.437973 +2752.476468 +2752.477600 +2752.515196 +2752.524254 +2752.525453 +2752.538673 +2752.581563 +2752.619592 +2752.626418 +2752.646531 +2752.648163 +2752.658253 +2752.658852 +2752.673704 +2752.684826 +2752.696515 +2752.697680 +2752.709568 +2752.732112 +2752.749062 +2752.770807 +2752.772638 +2752.780963 +2752.781530 +2752.793018 +2752.806305 +2752.807204 +2752.820191 +2752.820657 +2752.843934 +2752.856854 +2752.868243 +2752.869308 +2752.882096 +2752.908835 +2752.910267 +2752.933011 +2752.946265 +2752.980730 +2753.009068 +2753.010600 +2753.045932 +2753.072472 +2753.099278 +2753.125285 +2753.140171 +2753.150993 +2753.153024 +2753.173504 +2753.192252 +2753.205938 +2753.207437 +2753.219491 +2753.232278 +2753.234010 +2753.244733 +2753.246065 +2753.280097 +2753.307503 +2753.333311 +2753.358219 +2753.388289 +2753.398046 +2753.401176 +2753.448362 +2753.458285 +2753.494982 +2753.495715 +2753.507536 +2753.508469 +2753.548495 +2753.559884 +2753.587023 +2753.588122 +2753.601142 +2753.626417 +2753.640570 +2753.655521 +2753.668075 +2753.692751 +2753.695481 +2753.775801 +2753.777299 +2753.789221 +2753.790753 +2753.801975 +2753.803640 +2753.816061 +2753.831012 +2753.882661 +2753.884525 +2753.923387 +2753.925052 +2753.949194 +2753.950459 +2753.962114 +2753.990952 +2754.043833 +2754.056054 +2754.067409 +2754.069507 +2754.092817 +2754.118957 +2754.157985 +2754.198411 +2754.211698 +2754.212331 +2754.213097 +2754.225484 +2754.281761 +2754.309234 +2754.322121 +2754.335308 +2754.336140 +2754.336573 +2754.350026 +2754.363746 +2754.407036 +2754.407702 +2754.435074 +2754.474402 +2754.487822 +2754.501907 +2754.503939 +2754.513329 +2754.544831 +2754.561315 +2754.587821 +2754.600409 +2754.603839 +2754.615294 +2754.644232 +2754.672770 +2754.673236 +2754.674501 +2754.688920 +2754.701075 +2754.743233 +2754.756020 +2754.769939 +2754.771837 +2754.798710 +2754.829613 +2754.829879 +2754.871504 +2754.900009 +2754.913762 +2754.942100 +2754.956819 +2755.001174 +2755.029479 +2755.030079 +2755.060815 +2755.075966 +2755.089419 +2755.090418 +2755.100308 +2755.102873 +2755.105770 +2755.148860 +2755.150691 +2755.194015 +2755.268973 +2755.298810 +2755.327115 +2755.355553 +2755.410831 +2755.471603 +2755.518090 +2755.520022 +2755.579729 +2755.593681 +2755.595380 +2755.609332 +2755.624417 +2755.655419 +2755.669006 +2755.669405 +2755.685190 +2755.699808 +2755.729379 +2755.745230 +2755.776532 +2755.807933 +2755.821154 +2755.823651 +2755.853554 +2755.868206 +2755.912329 +2755.913095 +2755.928613 +2755.943797 +2756.004137 +2756.019422 +2756.019788 +2756.020987 +2756.035672 +2756.096411 +2756.112395 +2756.124150 +2756.126814 +2756.257750 +2756.316691 +2756.358682 +2756.420320 +2756.507367 +2756.594812 +2756.620154 +2756.622685 +2766.711519 +2767.705824 +2767.706656 +2768.705456 +2768.705756 +2768.705889 +2768.706056 +2768.712449 +2769.711749 +2770.705721 +2770.927965 +2771.705187 +2771.705653 +2771.712213 +2771.713046 +2776.806181 +2776.810177 +2776.905448 +2777.006747 +2777.211442 +2777.315837 +2777.414572 +2777.506546 +2777.606413 +2777.712174 +2777.806713 +2777.909177 +2777.912174 +2778.309110 +2778.312207 +2778.507478 +2778.515770 +2778.615670 +2778.715836 +2778.911940 +2778.912739 +2779.106378 +2779.112139 +2779.506211 +2779.606777 +2779.715802 +2779.815835 +2780.106078 +2780.109874 +2780.215635 +2780.216068 +2780.406943 +2780.412171 +2780.412737 +2780.416034 +2780.512138 +2780.515534 +2780.515834 +2780.612104 +2780.812537 +2780.815734 +2780.912137 +2781.012071 +2781.114934 +2781.115467 +2781.516266 +2781.606476 +2781.611937 +2784.512300 +2786.704140 +2786.705039 +2786.737473 +2786.800044 +2786.810700 +2786.811266 +2786.832644 +2786.844899 +2786.905838 +2786.928881 +2786.929114 +2786.930180 +2786.939338 +2786.950793 +2786.961282 +2786.980963 +2786.991419 +2787.001575 +2787.013630 +2787.023853 +2787.035541 +2787.062747 +2787.072438 +2787.082894 +2787.144033 +2787.216660 +2787.227283 +2787.253690 +2787.255688 +2787.312331 +2787.325384 +2787.335541 +2787.373470 +2787.392650 +2787.429480 +2787.430712 +2787.439537 +2787.491085 +2787.502074 +2787.513663 +2787.523753 +2787.534908 +2787.546097 +2787.556187 +2787.575934 +2787.601908 +2787.639736 +2787.653956 +2787.681262 +2787.692117 +2787.693616 +2787.704139 +2787.705804 +2787.740802 +2787.741202 +2787.766976 +2787.780429 +2787.790719 +2787.802906 +2787.804139 +2787.829879 +2787.866942 +2787.884025 +2787.894182 +2787.895114 +2787.905038 +2787.906236 +2787.907668 +2787.921821 +2787.932277 +2787.944032 +2787.944698 +2787.946230 +2787.967642 +2787.980196 +2787.992084 +2787.993582 +2788.001308 +2788.012597 +2788.029746 +2788.065677 +2788.086989 +2788.109333 +2788.131677 +2788.142899 +2788.152057 +2788.152290 +2788.185990 +2788.195747 +2788.217158 +2788.253988 +2788.267308 +2788.269073 +2788.293682 +2788.294315 +2788.330045 +2788.341168 +2788.381128 +2788.394281 +2788.395680 +2788.407934 +2788.433009 +2788.434641 +2788.447495 +2788.448027 +2788.500808 +2788.512563 +2788.513329 +2788.513861 +2788.524384 +2788.526982 +2788.538970 +2788.575999 +2788.578763 +2788.591517 +2788.617591 +2788.630278 +2788.644397 +2788.668207 +2788.707201 +2788.721753 +2788.746961 +2788.761414 +2788.772103 +2788.774401 +2788.785823 +2788.849292 +2788.850824 +2788.862246 +2788.917358 +2788.927348 +2788.943898 +2788.956851 +2788.958350 +2789.062346 +2789.100374 +2789.113361 +2789.114127 +2789.115826 +2789.222186 +2789.233541 +2789.245596 +2789.246561 +2789.312595 +2789.313428 +2789.315026 +2789.326315 +2789.327813 +2789.328546 +2789.350757 +2789.366375 +2789.408932 +2789.434340 +2789.448959 +2789.476964 +2789.558149 +2789.560014 +2789.586388 +2789.588386 +2789.613627 +2789.629844 +2789.656318 +2789.657317 +2789.682125 +2789.684257 +2789.685955 +2789.697610 +2789.699408 +2789.754819 +2789.756051 +2789.768672 +2789.812295 +2789.824150 +2789.838202 +2789.866474 +2789.879927 +2789.880860 +2789.893980 +2789.894613 +2789.907533 +2789.920420 +2789.951289 +2790.020054 +2790.020620 +2790.034839 +2790.133573 +2790.134439 +2790.162445 +2790.191149 +2790.192415 +2790.202271 +2790.220420 +2790.234373 +2790.251056 +2790.293980 +2790.322651 +2790.323750 +2790.338602 +2790.368072 +2790.383956 +2790.397842 +2790.398608 +2790.427279 +2790.427912 +2790.437802 +2790.457083 +2790.484955 +2790.499774 +2790.529177 +2790.588418 +2790.617689 +2790.661445 +2790.661778 +2790.689084 +2790.703270 +2790.703769 +2790.718055 +2790.734872 +2790.749623 +2790.777629 +2790.816523 +2790.846693 +2790.870269 +2790.884655 +2790.912594 +2790.927812 +2790.941998 +2790.955018 +2790.956450 +2791.037302 +2791.110362 +2791.110629 +2791.136003 +2791.141564 +2791.186553 +2791.201105 +2791.246792 +2791.381558 +2791.425247 +2791.435337 +2791.437835 +2791.504601 +2791.648590 +2793.715721 +2795.140395 +2801.705190 +2801.712450 +2802.710084 +2803.710916 +2804.706053 +2804.706286 +2806.710946 +2811.706712 +2811.711274 +2811.712373 +2811.911507 +2812.014837 +2812.106046 +2812.115703 +2812.206179 +2812.215769 +2812.508343 +2812.515835 +2812.612805 +2812.715269 +2812.816068 +2812.912239 +2813.012538 +2813.015968 +2813.106877 +2813.416334 +2813.516301 +2813.607343 +2813.908541 +2813.912571 +2814.009041 +2814.012537 +2814.406909 +2814.416167 +2814.516400 +2814.608674 +2814.616200 +2814.712836 +2814.716533 +2814.915100 +2815.006243 +2815.308507 +2815.312303 +2815.512536 +2815.516099 +2815.712436 +2816.006475 +2816.006741 +2816.306874 +2816.312402 +2816.316364 +2816.316731 +2816.408672 +2821.706702 +2821.709799 +2821.711730 +2821.722819 +2821.737138 +2821.766809 +2821.767341 +2821.819056 +2821.830545 +2821.895247 +2821.896279 +2821.905337 +2821.934774 +2821.946995 +2821.958550 +2821.977864 +2822.008966 +2822.040335 +2822.042433 +2822.074600 +2822.083425 +2822.129113 +2822.139036 +2822.155286 +2822.178829 +2822.202373 +2822.246495 +2822.247194 +2822.247927 +2822.259915 +2822.293415 +2822.379429 +2822.400108 +2822.411197 +2822.426415 +2822.451090 +2822.479828 +2822.489019 +2822.502972 +2822.536372 +2822.546262 +2822.556685 +2822.587387 +2822.599508 +2822.634673 +2822.683891 +2822.706168 +2822.707434 +2822.719954 +2822.730744 +2822.763045 +2822.764377 +2822.777963 +2822.789618 +2822.810797 +2822.832608 +2822.844963 +2822.857983 +2822.868306 +2822.882092 +2822.893481 +2822.906235 +2822.940667 +2822.953521 +2822.983724 +2822.994546 +2823.015725 +2823.029145 +2823.043331 +2823.067673 +2823.068239 +2823.140400 +2823.169371 +2823.179994 +2823.192315 +2823.239401 +2823.302871 +2823.303937 +2823.305135 +2823.342698 +2823.382458 +2823.384056 +2823.410263 +2823.421053 +2823.423317 +2823.435139 +2823.436670 +2823.486088 +2823.498608 +2823.500107 +2823.511362 +2823.511762 +2823.513160 +2823.536837 +2823.561046 +2823.584922 +2823.594546 +2823.596510 +2823.617323 +2823.656450 +2823.669571 +2823.716524 +2823.742264 +2823.805734 +2823.807499 +2823.869704 +2823.881425 +2823.917223 +2823.919254 +2823.984822 +2824.033606 +2824.089717 +2824.090283 +2824.117189 +2824.131675 +2824.143163 +2824.166307 +2824.179993 +2824.205068 +2824.206866 +2824.217655 +2824.218355 +2824.244528 +2824.258981 +2824.296476 +2824.322450 +2824.324249 +2824.370269 +2824.382524 +2824.415524 +2824.439533 +2824.447026 +2824.449856 +2824.479826 +2824.481524 +2824.534971 +2824.548724 +2824.575430 +2824.602237 +2824.615024 +2824.642696 +2824.644262 +2824.693779 +2824.708764 +2824.722816 +2824.748491 +2824.749523 +2824.750255 +2824.788917 +2824.816822 +2824.831840 +2824.844295 +2824.886286 +2824.914558 +2824.916256 +2824.943529 +2824.958680 +2824.973132 +2824.986419 +2824.987018 +2825.057614 +2825.058447 +2825.072000 +2825.086119 +2825.114857 +2825.116555 +2825.129676 +2825.145227 +2825.211793 +2825.214957 +2825.242563 +2825.268736 +2825.326778 +2825.352053 +2825.352386 +2825.368770 +2825.381557 +2825.395809 +2825.396642 +2825.411693 +2825.469103 +2825.495809 +2825.508530 +2825.521650 +2825.547391 +2825.559812 +2825.615156 +2825.616089 +2825.629142 +2825.629575 +2825.654550 +2825.671533 +2825.687251 +2825.774930 +2825.776595 +2825.790581 +2825.791147 +2825.805266 +2825.835236 +2825.924214 +2825.937167 +2826.022515 +2826.037134 +2826.225146 +2826.267903 +2826.276727 +2826.297607 +2826.381756 +2826.400237 +2826.470234 +2826.583687 +2826.583987 +2826.689714 +2829.503731 +2830.682684 +2831.937228 +2833.451246 +2833.676920 +2833.693303 +2833.729401 +2834.835094 +2834.884777 +2835.261267 +2835.295067 +2835.441653 +2836.080913 +2836.235525 +2836.885441 +2837.077283 +2837.200759 +2837.209484 +2837.220406 +2837.242018 +2837.471288 +2837.494132 +2837.884774 +2837.885674 +2837.885840 +2838.558467 +2838.755370 +2838.880844 +2838.885406 +2839.884772 +2842.123099 +2842.204817 +2842.918336 +2842.919401 +2842.944277 +2843.923796 +2844.831154 +2844.879706 +2844.881371 +2844.981670 +2845.281803 +2845.282403 +2845.390162 +2845.483568 +2845.491394 +2845.581936 +2845.780970 +2845.981836 +2845.987464 +2845.991360 +2846.089828 +2846.391093 +2846.487696 +2846.491393 +2846.689994 +2846.891026 +2846.991459 +2847.089760 +2847.090260 +2847.787562 +2847.991091 +2848.087695 +2848.587561 +2848.590991 +2848.887727 +2848.987494 +2849.683431 +2849.694020 +2854.881427 +2854.890918 +2854.897112 +2854.930878 +2854.939769 +2854.973036 +2855.018557 +2855.019989 +2855.030545 +2855.053289 +2855.054854 +2855.063978 +2855.106003 +2855.117691 +2855.128946 +2855.140368 +2855.141867 +2855.152290 +2855.175833 +2855.177398 +2855.200175 +2855.213362 +2855.233841 +2855.247761 +2855.291051 +2855.302206 +2855.326848 +2855.337171 +2855.337571 +2855.348194 +2855.349659 +2855.385490 +2855.430078 +2855.467041 +2855.510698 +2855.512096 +2855.522752 +2855.546395 +2855.556785 +2855.568806 +2855.570671 +2855.582759 +2855.602173 +2855.651890 +2855.663744 +2855.672536 +2855.682426 +2855.726914 +2855.749925 +2855.759315 +2855.768972 +2855.792982 +2855.795379 +2855.804370 +2855.817524 +2855.868839 +2855.929279 +2855.940934 +2855.941200 +2855.961580 +2855.990684 +2856.052189 +2856.052788 +2856.063311 +2856.082925 +2856.102971 +2856.111729 +2856.113727 +2856.125882 +2856.138636 +2856.206101 +2856.233108 +2856.292915 +2856.343697 +2856.356617 +2856.384290 +2856.409231 +2856.432308 +2856.456950 +2856.464743 +2856.466874 +2856.520387 +2856.531076 +2856.556651 +2856.582724 +2856.584256 +2856.606834 +2856.608066 +2856.623350 +2856.648259 +2856.649158 +2856.649791 +2856.766441 +2856.780227 +2856.806367 +2856.832308 +2856.844163 +2856.879494 +2856.880993 +2856.890816 +2856.911762 +2856.954719 +2856.987319 +2857.044729 +2857.072468 +2857.073200 +2857.097542 +2857.152288 +2857.180393 +2857.193580 +2857.204902 +2857.242830 +2857.283490 +2857.283889 +2857.297009 +2857.323483 +2857.337003 +2857.348058 +2857.349590 +2857.451521 +2857.452187 +2857.506633 +2857.507798 +2857.533872 +2857.562311 +2857.590915 +2857.649124 +2857.660679 +2857.673399 +2857.676030 +2857.690116 +2857.704668 +2857.717655 +2857.718654 +2857.780592 +2857.784188 +2857.837435 +2857.851654 +2857.864475 +2857.930875 +2858.012127 +2858.012959 +2858.039699 +2858.091314 +2858.154551 +2858.156716 +2858.168104 +2858.288584 +2858.362110 +2858.491381 +2858.547258 +2858.684587 +2858.784421 +2858.872765 +2858.908430 +2858.923381 +2858.980424 +2859.009362 +2859.228409 +2859.329408 +2859.440231 +2859.512525 +2859.585585 +2861.072464 +2861.335067 +2861.513922 +2862.643058 +2862.703231 +2865.531267 +2869.880813 +2869.881646 +2869.886507 +2869.887107 +2869.887340 +2869.887839 +2870.881278 +2871.094665 +2871.111448 +2871.881977 +2871.887338 +2871.887504 +2872.090335 +2872.258200 +2872.265160 +2872.354171 +2872.886238 +2872.886771 +2873.136987 +2873.881175 +2874.167589 +2875.193029 +2876.248939 +2877.597222 +2877.618035 +2877.858494 +2878.550768 +2879.802481 +2879.850633 +2879.982701 +2880.083167 +2880.088595 +2880.092791 +2880.095188 +2880.183467 +2880.192458 +2880.285065 +2880.383333 +2880.383733 +2880.384799 +2880.389494 +2880.489993 +2880.494222 +2880.594256 +2880.595421 +2880.789860 +2880.894289 +2880.989660 +2880.993456 +2881.083932 +2881.090126 +2881.189859 +2881.193689 +2881.194088 +2881.194388 +2881.389826 +2881.489992 +2881.493455 +2881.593322 +2881.594021 +2881.793389 +2881.889959 +2881.985962 +2881.994487 +2882.093488 +2882.384364 +2882.390158 +2882.493854 +2882.693421 +2882.793654 +2882.994120 +2883.090324 +2883.284429 +2883.293087 +2883.590023 +2883.593553 +2883.790356 +2883.994186 +2884.093819 +2884.190389 +2884.193519 +2884.290123 +2884.686493 +2884.693585 +2884.794052 +2884.794551 +2884.894151 +2889.888419 +2889.888885 +2889.894246 +2889.894979 +2889.924150 +2889.933707 +2889.942864 +2889.952654 +2889.960746 +2889.961113 +2889.978862 +2889.988785 +2889.998475 +2890.028179 +2890.039234 +2890.052455 +2890.065242 +2890.098908 +2890.136171 +2890.171136 +2890.173334 +2890.219321 +2890.232807 +2890.255918 +2890.274399 +2890.301139 +2890.301505 +2890.301905 +2890.312428 +2890.314459 +2890.324482 +2890.347060 +2890.349024 +2890.374799 +2890.386720 +2890.386953 +2890.388019 +2890.422584 +2890.432274 +2890.444962 +2890.475398 +2890.485654 +2890.496310 +2890.498075 +2890.519420 +2890.520020 +2890.558881 +2890.583490 +2890.613326 +2890.654818 +2890.678228 +2890.679061 +2890.691881 +2890.738468 +2890.759980 +2890.786020 +2890.834205 +2890.845494 +2890.854618 +2890.866007 +2890.867905 +2890.891481 +2890.932640 +2890.943296 +2890.964209 +2890.987452 +2890.998241 +2891.006533 +2891.033406 +2891.057382 +2891.069603 +2891.072533 +2891.222683 +2891.236636 +2891.334904 +2891.346726 +2891.373166 +2891.407099 +2891.408797 +2891.430442 +2891.432107 +2891.433805 +2891.472566 +2891.473132 +2891.484421 +2891.486253 +2891.486885 +2891.509496 +2891.543229 +2891.556582 +2891.557215 +2891.568970 +2891.583355 +2891.594511 +2891.595010 +2891.595910 +2891.619719 +2891.642829 +2891.644128 +2891.681224 +2891.681657 +2891.693878 +2891.696509 +2891.731973 +2891.732606 +2891.756682 +2891.769802 +2891.783988 +2891.785553 +2891.797708 +2891.798640 +2891.799572 +2891.811161 +2891.865007 +2891.890881 +2891.892912 +2891.919053 +2891.955483 +2891.967171 +2891.979093 +2892.027145 +2892.027944 +2892.069635 +2892.081757 +2892.083455 +2892.160611 +2892.162542 +2892.177561 +2892.187251 +2892.202269 +2892.210994 +2892.239998 +2892.303035 +2892.305566 +2892.306132 +2892.307297 +2892.320418 +2892.377860 +2892.415256 +2892.427544 +2892.453917 +2892.454217 +2892.467504 +2892.495176 +2892.530308 +2892.532172 +2892.543694 +2892.544893 +2892.545392 +2892.558113 +2892.569935 +2892.580557 +2892.581923 +2892.582888 +2892.592545 +2892.633737 +2892.645692 +2892.680690 +2892.719485 +2892.745492 +2892.756381 +2892.781256 +2892.798606 +2892.799005 +2892.812625 +2892.840264 +2892.870434 +2892.911759 +2892.964340 +2892.978859 +2892.981689 +2893.037700 +2893.048256 +2893.090314 +2893.147290 +2893.161276 +2893.162941 +2893.176627 +2893.251752 +2893.260676 +2893.304166 +2893.330174 +2893.358745 +2893.400170 +2893.411625 +2893.438199 +2893.593710 +2893.658112 +2893.685851 +2893.687816 +2893.770233 +2893.828408 +2893.856214 +2893.931505 +2893.948155 +2893.989880 +2894.127609 +2894.318851 +2897.009324 +2898.799832 +2900.631831 +2901.194368 +2903.502957 +2903.551708 +2903.655271 +2903.708352 +2904.885840 +2904.886206 +2904.892133 +2905.886571 +2906.886171 +2906.886637 +2907.140549 +2907.887968 +2907.892497 +2909.481939 +2909.535585 +2909.887233 +2911.757994 +2912.400984 +2912.989495 +2913.015136 +2913.076974 +2913.082335 +2913.139744 +2913.563553 +2914.891291 +2914.992490 +2915.097285 +2915.192856 +2915.397251 +2915.401647 +2915.489392 +2915.593654 +2915.597517 +2915.697151 +2915.787694 +2915.797550 +2915.888559 +2915.996951 +2916.097783 +2916.197383 +2916.296984 +2916.297550 +2916.389458 +2916.487460 +2916.488326 +2916.488592 +2916.497150 +2916.589458 +2916.593520 +2916.596650 +2916.598249 +2916.889591 +2916.996850 +2917.097083 +2917.194119 +2917.390289 +2917.497082 +2917.593419 +2917.796283 +2918.000612 +2918.197481 +2918.487857 +2918.587291 +2918.693518 +2918.893252 +2918.989555 +2919.093318 +2919.396581 +2919.499545 +2923.642731 +2924.130942 +2924.776596 +2924.896709 +2924.931307 +2924.952553 +2924.980159 +2924.988517 +2924.999173 +2925.009995 +2925.010795 +2925.021051 +2925.021684 +2925.059712 +2925.060112 +2925.083422 +2925.084487 +2925.106632 +2925.117055 +2925.127877 +2925.149056 +2925.179892 +2925.180158 +2925.181024 +2925.190282 +2925.202103 +2925.202836 +2925.213092 +2925.213358 +2925.235037 +2925.236535 +2925.246525 +2925.259279 +2925.268936 +2925.311094 +2925.332572 +2925.334504 +2925.355749 +2925.364973 +2925.394277 +2925.453818 +2925.517288 +2925.534803 +2925.535603 +2925.564940 +2925.581024 +2925.581756 +2925.582422 +2925.613092 +2925.622382 +2925.688683 +2925.688949 +2925.723548 +2925.781956 +2925.811193 +2925.848156 +2925.888083 +2925.897740 +2925.925113 +2925.936967 +2925.951220 +2925.961809 +2925.963841 +2925.974164 +2925.974430 +2926.033138 +2926.072265 +2926.107164 +2926.109328 +2926.110793 +2926.134270 +2926.135669 +2926.158579 +2926.159345 +2926.159978 +2926.172965 +2926.173697 +2926.197773 +2926.230607 +2926.255249 +2926.267204 +2926.299604 +2926.327909 +2926.329275 +2926.338299 +2926.348722 +2926.367303 +2926.389015 +2926.439032 +2926.503967 +2926.539664 +2926.540563 +2926.604965 +2926.616587 +2926.641229 +2926.667037 +2926.691545 +2926.722215 +2926.736301 +2926.786917 +2926.824546 +2926.825478 +2926.849054 +2926.850520 +2926.852185 +2926.863107 +2926.876360 +2926.953650 +2926.992311 +2926.992611 +2927.007229 +2927.047889 +2927.072398 +2927.072797 +2927.073829 +2927.087616 +2927.098971 +2927.125245 +2927.139031 +2927.150519 +2927.151985 +2927.164705 +2927.178192 +2927.245624 +2927.273929 +2927.326909 +2927.353117 +2927.366370 +2927.381222 +2927.394908 +2927.419617 +2927.447056 +2927.471165 +2927.472164 +2927.473563 +2927.500502 +2927.510592 +2927.560809 +2927.605264 +2927.616952 +2927.618617 +2927.631172 +2927.639363 +2927.683319 +2927.697205 +2927.697905 +2927.711558 +2927.725744 +2927.747488 +2927.762207 +2927.792277 +2927.805797 +2927.820149 +2927.862107 +2927.874861 +2927.887748 +2927.888381 +2927.915054 +2927.988780 +2928.017984 +2928.018317 +2928.056779 +2928.070165 +2928.098171 +2928.121847 +2928.124145 +2928.124944 +2928.137665 +2928.137931 +2928.177958 +2928.238197 +2928.249852 +2928.292010 +2928.306695 +2928.334434 +2928.336632 +2928.361241 +2928.375793 +2928.432203 +2928.432603 +2928.440428 +2928.446555 +2928.469199 +2928.499103 +2928.521547 +2928.526209 +2928.539263 +2928.641993 +2928.702566 +2928.721414 +2928.732403 +2928.928639 +2929.182585 +2929.246488 +2929.581886 +2929.642258 +2933.608888 +2934.801328 +2939.892298 +2940.886470 +2940.891931 +2941.887501 +2942.887567 +2942.893594 +2943.887532 +2943.892594 +2944.886566 +2944.892959 +2949.885961 +2949.990989 +2950.087260 +2950.092887 +2950.393353 +2950.487626 +2950.496716 +2950.500246 +2950.688125 +2950.697316 +2950.896883 +2950.996982 +2951.189656 +2951.193552 +2951.196816 +2951.393552 +2951.396915 +2951.489756 +2951.493519 +2951.593519 +2951.687558 +2951.697082 +2951.987757 +2951.989789 +2951.993551 +2952.093585 +2952.189788 +2952.289755 +2952.293518 +2952.389655 +2952.396914 +2952.493518 +2952.496914 +2952.589721 +2952.689688 +2952.693484 +2952.696481 +2952.893650 +2952.993584 +2952.996847 +2953.088089 +2953.089754 +2953.093484 +2953.197013 +2953.289621 +2953.295914 +2953.388056 +2953.393617 +2953.396580 +2953.489787 +2953.589587 +2953.593450 +2953.893450 +2953.989687 +2953.993616 +2953.994582 +2954.089820 +2954.097212 +2954.293316 +2954.496979 +2954.893116 +2959.890746 +2959.891213 +2959.964872 +2959.974929 +2959.999637 +2960.001169 +2960.031439 +2960.041595 +2960.054283 +2960.055082 +2960.102901 +2960.110660 +2960.139031 +2960.155981 +2960.157413 +2960.186617 +2960.241862 +2960.242161 +2960.253949 +2960.263740 +2960.273830 +2960.294675 +2960.296474 +2960.323147 +2960.323613 +2960.374162 +2960.376127 +2960.385052 +2960.385884 +2960.424579 +2960.436467 +2960.447622 +2960.466403 +2960.478758 +2960.501035 +2960.522980 +2960.581255 +2960.581954 +2960.628808 +2960.701069 +2960.702500 +2960.723479 +2960.793409 +2960.794075 +2960.830839 +2960.842227 +2960.843160 +2960.843260 +2960.854948 +2960.855547 +2960.880422 +2960.906330 +2960.906929 +2960.929507 +2960.943792 +2960.954548 +2960.988581 +2960.997339 +2961.006196 +2961.018817 +2961.041295 +2961.043992 +2961.089113 +2961.136133 +2961.158944 +2961.179490 +2961.192710 +2961.215320 +2961.339263 +2961.340096 +2961.363406 +2961.415187 +2961.438031 +2961.450618 +2961.461807 +2961.483019 +2961.500335 +2961.521547 +2961.543625 +2961.569299 +2961.570731 +2961.581554 +2961.584784 +2961.607428 +2961.608893 +2961.610691 +2961.633602 +2961.645790 +2961.713422 +2961.722846 +2961.723612 +2961.742926 +2961.743825 +2961.769000 +2961.805430 +2961.831037 +2961.832636 +2961.833468 +2961.843192 +2961.857278 +2961.865736 +2961.869233 +2961.877657 +2961.888214 +2961.888846 +2961.890478 +2961.945190 +2961.969133 +2961.981254 +2961.992476 +2961.995240 +2962.019249 +2962.030804 +2962.077790 +2962.087381 +2962.088879 +2962.090478 +2962.099935 +2962.101600 +2962.139062 +2962.199668 +2962.258876 +2962.270431 +2962.271963 +2962.283052 +2962.291243 +2962.341227 +2962.354880 +2962.365436 +2962.405363 +2962.458043 +2962.468266 +2962.513521 +2962.524010 +2962.536265 +2962.537897 +2962.548419 +2962.569565 +2962.580587 +2962.634167 +2962.687147 +2962.710490 +2962.724843 +2962.726341 +2962.751316 +2962.764603 +2962.765402 +2962.774426 +2962.778489 +2962.791942 +2962.813654 +2962.817517 +2962.831603 +2962.878056 +2962.881919 +2962.944456 +2962.956944 +2962.982019 +2963.004829 +2963.030570 +2963.045056 +2963.100100 +2963.120946 +2963.186048 +2963.189211 +2963.189744 +2963.202565 +2963.215285 +2963.216018 +2963.251216 +2963.264369 +2963.275192 +2963.299534 +2963.308126 +2963.339494 +2963.353547 +2963.404196 +2963.423543 +2963.445655 +2963.447619 +2963.513686 +2963.526940 +2963.584749 +2963.595005 +2963.599800 +2963.669364 +2963.723809 +2963.737629 +2963.766633 +2963.767832 +2974.885603 +2974.886436 +2975.162759 +2975.885735 +2975.892062 +2977.886666 +2978.886665 +2978.892059 +2979.885565 +2984.985859 +2985.086892 +2985.092186 +2985.295916 +2985.395949 +2985.396515 +2985.495682 +2985.688756 +2985.787091 +2985.895882 +2985.988855 +2985.992485 +2985.995915 +2985.996181 +2986.088855 +2986.288888 +2986.295415 +2986.296148 +2986.392618 +2986.395915 +2986.492585 +2986.787256 +2986.788855 +2987.095981 +2987.287222 +2987.288788 +2987.296047 +2987.388854 +2987.488787 +2987.492817 +2987.587222 +2987.589586 +2987.688721 +2987.796013 +2987.895247 +2988.095946 +2988.187255 +2988.188787 +2988.288853 +2988.296246 +2988.387255 +2988.388720 +2988.392583 +2988.488753 +2988.688187 +2988.688819 +2988.689685 +2988.692616 +2988.695713 +2988.696145 +2988.788886 +2988.796012 +2988.892749 +2988.896745 +2988.996178 +2989.188886 +2989.288919 +2989.296278 +2989.392582 +2989.488852 +2989.588685 +2989.688852 +2989.788885 +2989.792515 +2992.414423 +2992.979658 +2993.652617 +2993.857679 +2993.908162 +2994.886915 +2994.888547 +2994.890079 +2994.902000 +2994.908860 +2994.915953 +2994.940828 +2994.979722 +2994.989113 +2994.998903 +2995.018916 +2995.019149 +2995.019416 +2995.029606 +2995.039795 +2995.040528 +2995.041227 +2995.051484 +2995.060441 +2995.061973 +2995.071264 +2995.081853 +2995.105796 +2995.119049 +2995.129073 +2995.130438 +2995.165436 +2995.187115 +2995.198570 +2995.212123 +2995.220548 +2995.220981 +2995.222513 +2995.242326 +2995.242826 +2995.260042 +2995.296305 +2995.306162 +2995.306728 +2995.316152 +2995.328074 +2995.347421 +2995.376026 +2995.385916 +2995.431637 +2995.453881 +2995.468033 +2995.488513 +2995.514986 +2995.527008 +2995.552116 +2995.565469 +2995.612322 +2995.625043 +2995.635632 +2995.675126 +2995.684384 +2995.684850 +2995.686481 +2995.694940 +2995.703598 +2995.747920 +2995.767334 +2995.768666 +2995.781353 +2995.794040 +2995.805063 +2995.818416 +2995.831969 +2995.862705 +2995.888213 +2995.891576 +2995.913754 +2995.923411 +2995.924843 +2995.933501 +2995.993341 +2996.006028 +2996.017916 +2996.019615 +2996.052448 +2996.063437 +2996.087247 +2996.088146 +2996.101566 +2996.125076 +2996.137630 +2996.164103 +2996.175159 +2996.189811 +2996.202065 +2996.213554 +2996.221679 +2996.223178 +2996.241592 +2996.243357 +2996.253214 +2996.286514 +2996.309624 +2996.319581 +2996.331403 +2996.373927 +2996.374726 +2996.385249 +2996.399801 +2996.411855 +2996.435998 +2996.448585 +2996.450117 +2996.460873 +2996.461206 +2996.473494 +2996.474026 +2996.551449 +2996.562638 +2996.563703 +2996.600067 +2996.601599 +2996.612921 +2996.638395 +2996.664636 +2996.677223 +2996.701532 +2996.714086 +2996.751882 +2996.764036 +2996.765801 +2996.775791 +2996.778855 +2996.803097 +2996.822378 +2996.837230 +2996.870463 +2996.907193 +2996.909657 +2996.920080 +2996.931835 +2996.942191 +2996.953680 +2996.999101 +2996.999800 +2997.022078 +2997.029104 +2997.051981 +2997.053480 +2997.067166 +2997.079287 +2997.090809 +2997.116983 +2997.150949 +2997.152248 +2997.154878 +2997.179853 +2997.217549 +2997.229603 +2997.288611 +2997.312221 +2997.323410 +2997.344289 +2997.346453 +2997.366167 +2997.380719 +2997.392640 +2997.403896 +2997.405094 +2997.447452 +2997.473726 +2997.512787 +2997.516516 +2997.542623 +2997.553679 +2997.566200 +2997.566866 +2997.580819 +2997.592573 +2997.593972 +2997.621078 +2997.632234 +2997.633532 +2997.634398 +2997.687978 +2997.688477 +2997.709556 +2997.713752 +2997.726306 +2997.737895 +2997.753612 +2997.809923 +2997.851115 +2997.892340 +2997.929037 +2997.946486 +2998.039726 +2998.084248 +2998.085147 +2998.112553 +2998.176789 +2998.235363 +2998.260605 +2998.275090 +2998.369762 +2998.396802 +2998.424274 +2998.513219 +2998.568663 +2998.583548 +2998.611121 +2998.624441 +2998.625706 +2998.652612 +2998.710121 +2998.922809 +2998.948316 +2998.966132 +2999.134630 +2999.256341 +3001.909053 +3001.979515 +3001.985609 +3001.998263 +3002.013781 +3002.699828 +3003.611848 +3003.686673 +3005.365826 +3005.791733 +3005.802389 +3008.891230 +3009.884969 +3009.885502 +3009.890097 +3010.324662 +3010.890429 +3011.886832 +3011.890861 +3012.885166 +3013.891525 +3014.890825 +3019.886524 +3019.891119 +3019.985725 +3019.990953 +3019.995049 +3020.091052 +3020.092951 +3020.093716 +3020.186890 +3020.286956 +3020.291818 +3020.391818 +3020.488055 +3020.492750 +3020.539337 +3020.539770 +3020.585990 +3020.587023 +3020.787355 +3020.795980 +3020.886456 +3020.886856 +3020.988055 +3021.088454 +3021.588753 +3021.596845 +3021.895846 +3021.986355 +3021.988287 +3021.992183 +3021.992582 +3022.087920 +3022.488519 +3022.492349 +3022.588386 +3022.596311 +3022.686654 +3022.688586 +3022.888452 +3022.996011 +3023.092814 +3023.188385 +3023.192315 +3023.388552 +3023.488552 +3023.492514 +3023.588585 +3023.592581 +3023.688551 +3023.788651 +3023.796510 +3023.888451 +3023.892347 +3024.096543 +3024.187385 +3024.292447 +3024.295943 +3024.388517 +3024.487352 +3024.495144 +3024.587019 +3024.588484 +3024.688584 +3024.787951 +3024.888151 +3024.888650 +3027.543726 +3027.563306 +3029.890443 +3029.896237 +3029.917949 +3029.927040 +3029.927706 +3029.973727 +3029.993007 +3030.011655 +3030.051615 +3030.063037 +3030.083883 +3030.104862 +3030.115684 +3030.125408 +3030.144256 +3030.144755 +3030.155178 +3030.214585 +3030.226906 +3030.227273 +3030.237429 +3030.239227 +3030.250183 +3030.250549 +3030.250916 +3030.259540 +3030.261772 +3030.271961 +3030.281019 +3030.289744 +3030.301532 +3030.323277 +3030.338062 +3030.347885 +3030.360539 +3030.397203 +3030.409424 +3030.431002 +3030.433533 +3030.462104 +3030.469497 +3030.478555 +3030.479853 +3030.489910 +3030.502031 +3030.503463 +3030.514652 +3030.562004 +3030.562804 +3030.600932 +3030.633799 +3030.634265 +3030.635065 +3030.645854 +3030.657109 +3030.714418 +3030.728305 +3030.750449 +3030.750949 +3030.763070 +3030.764535 +3030.812121 +3030.817948 +3030.829170 +3030.830569 +3030.854445 +3030.886746 +3030.995237 +3031.020046 +3031.043156 +3031.044155 +3031.119513 +3031.121045 +3031.130668 +3031.132567 +3031.142923 +3031.144421 +3031.155377 +3031.155943 +3031.170662 +3031.193672 +3031.202996 +3031.214418 +3031.284814 +3031.309956 +3031.322243 +3031.349416 +3031.371960 +3031.374058 +3031.397934 +3031.434031 +3031.446219 +3031.472027 +3031.473425 +3031.485613 +3031.499166 +3031.552147 +3031.564101 +3031.572027 +3031.586013 +3031.599666 +3031.600265 +3031.633532 +3031.646719 +3031.647085 +3031.647551 +3031.698200 +3031.711554 +3031.735596 +3031.737295 +3031.749516 +3031.763402 +3031.787578 +3031.813751 +3031.824441 +3031.881750 +3031.905759 +3031.918447 +3031.919679 +3031.985180 +3031.997967 +3031.998899 +3032.034064 +3032.057174 +3032.058307 +3032.069928 +3032.173025 +3032.185080 +3032.236295 +3032.289675 +3032.290940 +3032.301896 +3032.302962 +3032.408523 +3032.410654 +3032.477054 +3032.489908 +3032.490407 +3032.559205 +3032.586711 +3032.611320 +3032.627637 +3032.639591 +3032.695102 +3032.749714 +3032.762735 +3032.777653 +3032.778719 +3032.818712 +3032.897400 +3032.992971 +3032.993670 +3033.008222 +3033.036094 +3033.037060 +3033.051412 +3033.092272 +3033.107823 +3033.122075 +3033.150813 +3033.165731 +3033.206058 +3033.252078 +3033.281149 +3033.295701 +3033.339158 +3033.364233 +3033.368795 +3033.382947 +3033.412418 +3033.454809 +3033.498032 +3033.538492 +3033.542954 +3033.778085 +3033.819444 +3033.866763 +3033.874755 +3033.941222 +3034.057972 +3034.073190 +3038.768356 +3040.653103 +3041.452836 +3041.565157 +3041.565423 +3042.205083 +3042.215473 +3042.400088 +3042.430957 +3043.951335 +3044.140379 +3045.131420 +3045.891226 +3046.870047 +3047.886130 +3047.888128 +3048.887161 +3051.604674 +3052.813730 +3054.333875 +3054.986023 +3054.986322 +3055.086722 +3055.091783 +3055.186955 +3055.187488 +3055.192016 +3055.286722 +3055.388719 +3055.396678 +3055.496778 +3055.993114 +3056.097776 +3056.197177 +3056.289251 +3056.489284 +3056.597210 +3056.696743 +3056.793180 +3056.889417 +3056.897043 +3056.987186 +3056.987686 +3056.997209 +3057.089350 +3057.189417 +3057.193213 +3057.389383 +3057.397542 +3057.489050 +3057.689183 +3057.693079 +3057.887618 +3057.889283 +3057.993445 +3058.093612 +3058.096942 +3058.188017 +3058.296808 +3058.489416 +3058.493012 +3058.496575 +3058.497075 +3058.589282 +3058.789216 +3058.989182 +3059.093045 +3059.189348 +3059.396441 +3059.587550 +3059.687317 +3063.825208 +3064.890442 +3064.897301 +3064.903728 +3064.909922 +3064.910621 +3064.917981 +3064.926239 +3064.955476 +3064.965034 +3064.974657 +3064.975423 +3064.984414 +3064.986812 +3064.995403 +3064.996868 +3065.005893 +3065.026539 +3065.046718 +3065.047151 +3065.048716 +3065.059239 +3065.060105 +3065.069862 +3065.081883 +3065.094704 +3065.104327 +3065.137394 +3065.147817 +3065.167831 +3065.208390 +3065.252179 +3065.253012 +3065.263368 +3065.264867 +3065.311087 +3065.311387 +3065.313152 +3065.322642 +3065.323475 +3065.336728 +3065.348416 +3065.349016 +3065.349382 +3065.369296 +3065.412386 +3065.424873 +3065.425573 +3065.426538 +3065.438360 +3065.439892 +3065.451946 +3065.518047 +3065.518713 +3065.539891 +3065.562702 +3065.574091 +3065.586611 +3065.599498 +3065.624240 +3065.661869 +3065.689508 +3065.691706 +3065.713351 +3065.738559 +3065.748150 +3065.749648 +3065.771726 +3065.773724 +3065.796868 +3065.810987 +3065.834030 +3065.835629 +3065.847117 +3065.861203 +3065.869661 +3065.871160 +3065.893071 +3065.894303 +3065.905126 +3065.919511 +3065.946784 +3065.971559 +3065.995435 +3066.006791 +3066.007623 +3066.020644 +3066.046384 +3066.047350 +3066.066764 +3066.077753 +3066.091273 +3066.104460 +3066.120144 +3066.130767 +3066.166864 +3066.177986 +3066.178752 +3066.191306 +3066.204193 +3066.233597 +3066.257440 +3066.275855 +3066.311020 +3066.377053 +3066.421542 +3066.493470 +3066.505891 +3066.532897 +3066.561502 +3066.572658 +3066.586610 +3066.600630 +3066.627303 +3066.666264 +3066.667130 +3066.681249 +3066.693903 +3066.722075 +3066.734196 +3066.734462 +3066.735128 +3066.763633 +3066.764133 +3066.776054 +3066.788475 +3066.789374 +3066.790972 +3066.803227 +3066.840789 +3066.843020 +3066.845152 +3066.855541 +3066.867529 +3066.868894 +3066.882148 +3066.892804 +3066.896700 +3066.908388 +3066.919311 +3066.934495 +3066.960136 +3066.973556 +3067.024872 +3067.035461 +3067.049047 +3067.085744 +3067.109254 +3067.146283 +3067.185145 +3067.212850 +3067.227202 +3067.241455 +3067.269094 +3067.283979 +3067.297998 +3067.313116 +3067.323007 +3067.325271 +3067.339523 +3067.353576 +3067.382114 +3067.407922 +3067.514848 +3067.539756 +3067.542853 +3067.555174 +3067.557472 +3067.579283 +3067.637225 +3067.638025 +3067.638957 +3067.650778 +3067.666296 +3067.693935 +3067.694934 +3067.736226 +3067.739323 +3067.739756 +3067.753309 +3067.753975 +3067.767795 +3067.780782 +3067.781015 +3067.807888 +3067.820608 +3067.834128 +3067.834894 +3067.886742 +3067.930931 +3067.968893 +3067.971890 +3068.001394 +3068.086709 +3068.087874 +3068.100528 +3068.113981 +3068.142087 +3068.170092 +3068.199596 +3068.213782 +3068.243052 +3068.256139 +3068.348380 +3068.376452 +3068.420075 +3068.421440 +3068.450511 +3068.464264 +3068.578516 +3068.612749 +3068.672456 +3068.686542 +3068.687008 +3068.757804 +3068.929632 +3068.977950 +3069.037490 +3069.056471 +3069.056704 +3069.106321 +3069.120141 +3069.215912 +3069.230397 +3069.261433 +3069.276951 +3069.403124 +3070.505721 +3073.949507 +3075.834686 +3078.514903 +3078.516036 +3078.595223 +3078.792159 +3078.792792 +3079.886697 +3080.891824 +3081.885996 +3081.887494 +3082.887660 +3082.891223 +3082.892988 +3083.888291 +3084.533412 +3084.887058 +3084.891487 +3086.285525 +3086.328682 +3086.401642 +3086.659084 +3089.987120 +3089.988552 +3089.989884 +3090.093114 +3090.192348 +3090.193347 +3090.287652 +3090.292547 +3090.389350 +3090.392947 +3090.397975 +3090.399773 +3090.493213 +3090.600939 +3090.793180 +3090.797009 +3090.896942 +3091.098108 +3091.197675 +3091.293312 +3091.393279 +3091.493445 +3091.687851 +3091.793778 +3091.988217 +3092.089382 +3092.093345 +3092.096808 +3092.287783 +3092.289349 +3092.386851 +3092.689348 +3092.696807 +3092.989448 +3093.189448 +3093.193277 +3093.196940 +3093.286917 +3093.387216 +3093.488149 +3093.493210 +3093.497040 +3093.589247 +3093.688248 +3093.789880 +3093.987848 +3094.089380 +3094.187782 +3094.189513 +3094.287781 +3094.289513 +3094.486982 +3094.596739 +3094.688680 +3094.801267 +3094.887481 +3094.889479 +3096.061373 +3096.349951 +3097.771061 +3099.886144 +3099.927569 +3099.944652 +3099.964799 +3099.975122 +3099.976554 +3099.984546 +3099.986477 +3100.003260 +3100.003527 +3100.013084 +3100.024439 +3100.036061 +3100.087010 +3100.167196 +3100.188375 +3100.199930 +3100.245018 +3100.256906 +3100.276420 +3100.276986 +3100.278718 +3100.291172 +3100.326070 +3100.349114 +3100.362401 +3100.433596 +3100.452511 +3100.477685 +3100.486243 +3100.520076 +3100.537759 +3100.549314 +3100.584878 +3100.585244 +3100.610852 +3100.611685 +3100.635427 +3100.636260 +3100.648947 +3100.685244 +3100.696699 +3100.706057 +3100.717212 +3100.727202 +3100.768461 +3100.780549 +3100.792837 +3100.807455 +3100.854408 +3100.867662 +3100.933030 +3101.037592 +3101.038957 +3101.089340 +3101.125870 +3101.136126 +3101.148547 +3101.150745 +3101.174155 +3101.213749 +3101.227668 +3101.240821 +3101.267195 +3101.279849 +3101.291837 +3101.303326 +3101.318011 +3101.329832 +3101.355806 +3101.357671 +3101.380049 +3101.381214 +3101.418544 +3101.419376 +3101.431297 +3101.470591 +3101.482713 +3101.484944 +3101.495433 +3101.530265 +3101.530731 +3101.558703 +3101.568360 +3101.595466 +3101.607355 +3101.608087 +3101.620641 +3101.622306 +3101.634061 +3101.647714 +3101.648580 +3101.698197 +3101.714447 +3101.753875 +3101.781047 +3101.807421 +3101.820108 +3101.822073 +3101.833062 +3101.858703 +3101.873322 +3101.883678 +3101.913282 +3101.924004 +3101.936725 +3101.937724 +3101.963731 +3101.977551 +3102.005956 +3102.019475 +3102.046049 +3102.059502 +3102.073754 +3102.088140 +3102.127234 +3102.152875 +3102.155972 +3102.209086 +3102.209585 +3102.239222 +3102.251077 +3102.251743 +3102.276851 +3102.278516 +3102.290937 +3102.319109 +3102.320474 +3102.334094 +3102.348413 +3102.387773 +3102.402991 +3102.414147 +3102.416944 +3102.443384 +3102.458602 +3102.482712 +3102.487107 +3102.501193 +3102.514213 +3102.525735 +3102.543018 +3102.554806 +3102.556538 +3102.569858 +3102.584976 +3102.599628 +3102.614113 +3102.656937 +3102.671223 +3102.742785 +3102.806155 +3102.833128 +3102.833927 +3102.847846 +3102.848046 +3102.848312 +3102.874886 +3102.876384 +3102.876884 +3102.891636 +3102.904390 +3102.919907 +3102.933793 +3102.935059 +3102.949111 +3103.007386 +3103.022238 +3103.065328 +3103.096031 +3103.186807 +3103.215578 +3103.305255 +3103.363763 +3103.395132 +3103.480579 +3103.484875 +3103.511016 +3103.531329 +3103.545015 +3103.576384 +3103.607652 +3103.637556 +3103.729930 +3103.804422 +3103.893000 +3103.940319 +3103.953673 +3104.072986 +3104.198294 +3104.274984 +3104.336190 +3104.463862 +3104.524435 +3105.688003 +3105.754370 +3105.859132 +3107.366223 +3114.886495 +3114.887195 +3115.891356 +3116.886061 +3116.892754 +3116.892987 +3117.893053 +3118.887291 +3118.892852 +3120.655554 +3120.668674 +3120.688987 +3120.764845 +3123.609464 +3123.672867 +3123.844628 +3124.991314 +3124.996475 +3125.198573 +3125.198839 +3125.389182 +3125.392779 +3125.696941 +3125.887683 +3125.893045 +3126.289448 +3126.389381 +3126.597140 +3126.689414 +3126.693310 +3126.996540 +3126.996940 +3127.093177 +3127.196906 +3127.292977 +3127.493176 +3127.697172 +3127.697705 +3127.789313 +3127.793109 +3127.797105 +3127.896872 +3128.196805 +3128.489246 +3128.496638 +3128.596638 +3128.689112 +3128.796238 +3128.896638 +3128.996871 +3129.293108 +3129.296638 +3129.396371 +3129.693041 +3129.793107 +3129.897336 +3132.411952 +3132.461869 +3134.898297 +3134.912583 +3134.919010 +3134.929033 +3134.929832 +3134.937291 +3134.955340 +3134.964697 +3134.965563 +3134.975520 +3134.977085 +3134.995400 +3134.995833 +3135.007021 +3135.036792 +3135.037225 +3135.038523 +3135.058870 +3135.059436 +3135.071923 +3135.081713 +3135.102892 +3135.124071 +3135.124804 +3135.160568 +3135.162433 +3135.173588 +3135.186542 +3135.232429 +3135.232862 +3135.244783 +3135.256672 +3135.257770 +3135.280814 +3135.290205 +3135.314913 +3135.330198 +3135.353974 +3135.363831 +3135.407953 +3135.409951 +3135.421174 +3135.443218 +3135.477717 +3135.479116 +3135.491803 +3135.500194 +3135.543817 +3135.577717 +3135.607787 +3135.608719 +3135.620341 +3135.644450 +3135.672089 +3135.681813 +3135.683211 +3135.702725 +3135.732961 +3135.733528 +3135.753674 +3135.763697 +3135.782945 +3135.802792 +3135.850011 +3135.850943 +3135.851776 +3135.860134 +3135.862998 +3135.899228 +3135.900793 +3135.935525 +3135.957403 +3135.958303 +3135.980780 +3135.991469 +3135.993301 +3136.004356 +3136.017910 +3136.019008 +3136.020074 +3136.029598 +3136.031096 +3136.041419 +3136.064629 +3136.066894 +3136.091536 +3136.127666 +3136.152575 +3136.177683 +3136.189138 +3136.211416 +3136.212282 +3136.236724 +3136.251143 +3136.264030 +3136.265562 +3136.277017 +3136.289871 +3136.302758 +3136.315878 +3136.329031 +3136.368126 +3136.380880 +3136.404256 +3136.416610 +3136.416910 +3136.417476 +3136.444582 +3136.457636 +3136.490470 +3136.503790 +3136.571356 +3136.598728 +3136.612181 +3136.624536 +3136.625302 +3136.626034 +3136.680280 +3136.694965 +3136.747679 +3136.774752 +3136.798129 +3136.815012 +3136.827100 +3136.864928 +3136.879081 +3136.890869 +3136.917676 +3136.931995 +3136.959600 +3136.986207 +3137.026300 +3137.077749 +3137.116810 +3137.142584 +3137.167592 +3137.196030 +3137.223170 +3137.263596 +3137.303256 +3137.317375 +3137.387638 +3137.389237 +3137.433626 +3137.473353 +3137.475018 +3137.485307 +3137.488671 +3137.502157 +3137.528264 +3137.560033 +3137.573852 +3137.602090 +3137.603023 +3137.615610 +3137.629963 +3137.643949 +3137.727898 +3137.767425 +3137.769589 +3137.784941 +3137.798427 +3137.812546 +3137.867924 +3137.869723 +3137.940352 +3137.940985 +3137.969489 +3137.969989 +3137.985240 +3138.014644 +3138.027964 +3138.043615 +3138.071754 +3138.099726 +3138.100658 +3138.114977 +3138.115477 +3138.129962 +3138.144681 +3138.187271 +3138.189003 +3138.198094 +3138.258700 +3138.263695 +3138.277981 +3138.292133 +3138.322636 +3138.397960 +3138.412846 +3138.517141 +3138.532060 +3138.533591 +3138.548776 +3138.699692 +3138.729129 +3138.729995 +3138.790967 +3138.834657 +3138.864094 +3138.926864 +3139.061863 +3139.096062 +3139.170487 +3139.184107 +3139.199092 +3139.262995 +3139.310780 +3139.407117 +3148.988160 +3149.885228 +3149.886161 +3149.888192 +3150.887325 +3151.556755 +3151.573838 +3151.886891 +3151.893718 +3152.320757 +3152.326318 +3152.740004 +3152.886724 +3152.892152 +3153.886157 +3153.886456 +3159.689015 +3159.738865 +3159.886450 +3159.886783 +3159.991179 +3159.991512 +3159.995408 +3160.091678 +3160.188848 +3160.195674 +3160.199004 +3160.296240 +3160.389081 +3160.493443 +3160.496240 +3160.596906 +3160.597272 +3160.989646 +3160.997139 +3161.286815 +3161.292943 +3161.396639 +3161.596639 +3161.789046 +3161.793009 +3161.889046 +3162.296671 +3162.297104 +3162.393474 +3162.396704 +3162.496971 +3162.889211 +3163.093274 +3163.293040 +3163.389044 +3163.396603 +3163.489111 +3163.493040 +3163.497269 +3163.696603 +3163.988045 +3163.997036 +3164.089210 +3164.093073 +3164.187645 +3164.192573 +3164.289210 +3164.293173 +3164.487079 +3164.589143 +3164.696203 +3164.789176 +3164.793072 +3164.796369 +3164.889209 +3164.892706 +3166.987642 +3167.028934 +3169.885874 +3169.889804 +3169.890603 +3169.903623 +3169.929031 +3169.929664 +3169.980313 +3169.998195 +3170.007852 +3170.049644 +3170.049943 +3170.106320 +3170.113979 +3170.150942 +3170.177116 +3170.198928 +3170.209717 +3170.222671 +3170.234958 +3170.282511 +3170.289570 +3170.290236 +3170.301825 +3170.302724 +3170.314745 +3170.315378 +3170.326600 +3170.374752 +3170.397895 +3170.399161 +3170.422038 +3170.481711 +3170.551541 +3170.564129 +3170.574785 +3170.584775 +3170.642517 +3170.654871 +3170.713279 +3170.713979 +3170.727532 +3170.736323 +3170.738521 +3170.748844 +3170.750276 +3170.761831 +3170.774418 +3170.774951 +3170.788904 +3170.799560 +3170.801524 +3170.875051 +3170.900026 +3170.911581 +3170.938254 +3170.974385 +3170.988004 +3170.989669 +3171.014678 +3171.052640 +3171.065360 +3171.065660 +3171.131095 +3171.156902 +3171.169456 +3171.183242 +3171.195164 +3171.207951 +3171.233559 +3171.286372 +3171.332260 +3171.368390 +3171.370189 +3171.394231 +3171.402823 +3171.425800 +3171.439120 +3171.465027 +3171.505153 +3171.515576 +3171.517208 +3171.530461 +3171.544114 +3171.596962 +3171.623368 +3171.624001 +3171.637221 +3171.648577 +3171.660032 +3171.674384 +3171.686772 +3171.699093 +3171.711181 +3171.763495 +3171.776615 +3171.777314 +3171.791500 +3171.844081 +3171.872286 +3171.899625 +3171.913944 +3171.952539 +3171.954370 +3171.979545 +3172.039352 +3172.073485 +3172.073917 +3172.087038 +3172.089469 +3172.122369 +3172.142649 +3172.145013 +3172.193564 +3172.217507 +3172.247677 +3172.311346 +3172.323168 +3172.334890 +3172.345712 +3172.359265 +3172.359964 +3172.370720 +3172.374117 +3172.398859 +3172.414110 +3172.440517 +3172.442215 +3172.455202 +3172.457234 +3172.471220 +3172.526498 +3172.539218 +3172.551706 +3172.566491 +3172.647810 +3172.648076 +3172.689634 +3172.702055 +3172.737453 +3172.774849 +3172.845945 +3172.871586 +3172.885438 +3172.897826 +3172.909514 +3172.934856 +3172.935622 +3172.949474 +3172.964393 +3172.977913 +3172.979111 +3173.037320 +3173.053570 +3173.112611 +3173.126963 +3173.171652 +3173.215774 +3173.230460 +3173.245678 +3173.261329 +3173.289367 +3173.303686 +3173.305485 +3173.334056 +3173.350340 +3173.363726 +3173.380643 +3173.381176 +3173.437752 +3173.455568 +3173.515275 +3173.586170 +3173.617905 +3173.619304 +3173.663293 +3173.678411 +3173.751705 +3173.766556 +3173.777812 +3173.796793 +3173.811412 +3173.854868 +3173.913509 +3173.914309 +3173.985970 +3174.179277 +3174.272483 +3174.288967 +3174.333889 +3174.363759 +3174.420668 +3174.519969 +3177.574811 +3178.118001 +3178.120998 +3178.154731 +3179.420797 +3179.508642 +3179.538013 +3179.545705 +3179.685465 +3181.884197 +3182.554460 +3184.775070 +3184.800045 +3184.891454 +3185.891453 +3186.886324 +3187.887022 +3187.891351 +3187.892383 +3188.887321 +3188.891150 +3189.886987 +3191.355050 +3192.949121 +3194.885050 +3194.886782 +3194.891144 +3194.986082 +3194.991144 +3195.187015 +3195.492575 +3195.495939 +3195.496172 +3195.597271 +3195.692708 +3195.788979 +3195.793607 +3195.796638 +3195.892808 +3195.896804 +3195.986681 +3196.192641 +3196.287346 +3196.592941 +3196.696603 +3196.796537 +3196.887346 +3197.092774 +3197.188944 +3197.287046 +3197.296303 +3197.496103 +3197.588877 +3197.595903 +3197.687312 +3197.887245 +3197.888943 +3197.896402 +3197.995936 +3198.087045 +3198.089343 +3198.092872 +3198.195270 +3198.288976 +3198.292772 +3198.296702 +3198.496002 +3198.496502 +3198.587244 +3198.592839 +3198.688976 +3198.889075 +3198.895935 +3198.987077 +3199.196168 +3199.292871 +3199.487377 +3199.492804 +3199.588808 +3199.888808 +3199.895335 +3204.886505 +3204.891434 +3204.896062 +3204.919672 +3204.948310 +3204.967258 +3205.006752 +3205.026166 +3205.049176 +3205.084008 +3205.096062 +3205.108117 +3205.129462 +3205.141816 +3205.162196 +3205.196861 +3205.220138 +3205.282376 +3205.307484 +3205.318806 +3205.328063 +3205.384707 +3205.409981 +3205.451007 +3205.468756 +3205.493331 +3205.506152 +3205.517907 +3205.540051 +3205.552372 +3205.553171 +3205.577747 +3205.578579 +3205.590667 +3205.629928 +3205.630561 +3205.642981 +3205.677780 +3205.701556 +3205.748842 +3205.787137 +3205.787936 +3205.789468 +3205.857300 +3205.883407 +3205.935555 +3205.999824 +3206.012045 +3206.035089 +3206.085205 +3206.110147 +3206.147909 +3206.149375 +3206.161729 +3206.174017 +3206.208349 +3206.210114 +3206.211213 +3206.281509 +3206.292997 +3206.320270 +3206.340983 +3206.367523 +3206.380310 +3206.382042 +3206.429061 +3206.441749 +3206.466724 +3206.480210 +3206.490566 +3206.545411 +3206.556800 +3206.569054 +3206.570220 +3206.581509 +3206.594329 +3206.619138 +3206.621302 +3206.647676 +3206.649840 +3206.661329 +3206.661961 +3206.676247 +3206.676780 +3206.702221 +3206.702920 +3206.703753 +3206.715641 +3206.728761 +3206.769421 +3206.779144 +3206.804419 +3206.829494 +3206.841781 +3206.855701 +3206.880576 +3206.904585 +3206.916340 +3206.938684 +3206.971851 +3206.973616 +3206.989067 +3207.014076 +3207.041648 +3207.069520 +3207.070619 +3207.106616 +3207.130226 +3207.139850 +3207.141948 +3207.154369 +3207.263026 +3207.284805 +3207.299557 +3207.328894 +3207.350406 +3207.350905 +3207.365058 +3207.415407 +3207.449373 +3207.463859 +3207.474581 +3207.484671 +3207.535853 +3207.577045 +3207.587668 +3207.613243 +3207.625863 +3207.639316 +3207.652636 +3207.666289 +3207.675547 +3207.680342 +3207.706283 +3207.732723 +3207.746243 +3207.773482 +3207.809746 +3207.818470 +3207.821667 +3207.832057 +3207.832656 +3207.834887 +3207.860828 +3207.861261 +3207.874315 +3207.923632 +3207.927528 +3207.940182 +3207.940748 +3207.955134 +3207.967888 +3207.976779 +3208.008014 +3208.035986 +3208.062127 +3208.115873 +3208.116073 +3208.129393 +3208.142846 +3208.156199 +3208.169619 +3208.196525 +3208.197025 +3208.208014 +3208.209879 +3208.246908 +3208.263025 +3208.265123 +3208.279076 +3208.334121 +3208.348040 +3208.417737 +3208.431657 +3208.446508 +3208.461061 +3208.475047 +3208.489099 +3208.490464 +3208.599688 +3208.629259 +3208.695060 +3208.720534 +3208.721999 +3208.722232 +3209.043677 +3209.053667 +3209.251569 +3219.885991 +3219.891785 +3220.886156 +3221.885389 +3221.890917 +3223.888618 +3223.891115 +3224.890615 +3224.890814 +3229.886047 +3229.890210 +3229.890676 +3229.991309 +3229.992474 +3230.095072 +3230.195105 +3230.388445 +3230.395837 +3230.586979 +3230.588511 +3230.595571 +3230.686946 +3230.695870 +3230.795570 +3230.895737 +3230.988610 +3230.995104 +3230.995803 +3231.192573 +3231.195703 +3231.288577 +3231.292440 +3231.295670 +3231.588577 +3231.592473 +3231.688676 +3231.788543 +3231.792506 +3231.895702 +3231.992639 +3232.092106 +3232.096202 +3232.186944 +3232.188576 +3232.196635 +3232.295569 +3232.488343 +3232.588742 +3232.592472 +3232.595802 +3232.689341 +3232.792372 +3232.895568 +3233.092171 +3233.386677 +3233.387076 +3233.487010 +3233.588508 +3233.592537 +3233.595901 +3233.688241 +3233.692138 +3233.786976 +3233.788641 +3233.792437 +3233.986243 +3234.187009 +3234.188641 +3234.392403 +3234.688673 +3234.698797 +3234.788607 +3234.888573 +3239.886703 +3239.916540 +3239.991965 +3240.013110 +3240.014076 +3240.034988 +3240.043247 +3240.053703 +3240.062194 +3240.105718 +3240.135588 +3240.159863 +3240.173983 +3240.182141 +3240.183040 +3240.183939 +3240.184605 +3240.232124 +3240.255235 +3240.301588 +3240.303420 +3240.388501 +3240.399523 +3240.461062 +3240.471085 +3240.509946 +3240.521868 +3240.531791 +3240.601888 +3240.645011 +3240.665091 +3240.676746 +3240.710179 +3240.738384 +3240.748741 +3240.761428 +3240.773149 +3240.773549 +3240.786536 +3240.833256 +3240.887002 +3240.888534 +3240.897691 +3240.899456 +3240.936153 +3240.948807 +3240.961394 +3241.046143 +3241.055034 +3241.078977 +3241.091464 +3241.092863 +3241.105017 +3241.106649 +3241.117871 +3241.120169 +3241.168920 +3241.192996 +3241.226596 +3241.257831 +3241.320868 +3241.322433 +3241.333289 +3241.367321 +3241.381740 +3241.383439 +3241.396126 +3241.396692 +3241.421034 +3241.422733 +3241.458730 +3241.485303 +3241.522100 +3241.534954 +3241.544477 +3241.546076 +3241.557697 +3241.572116 +3241.585803 +3241.609579 +3241.610878 +3241.621234 +3241.656332 +3241.697025 +3241.708247 +3241.708780 +3241.722166 +3241.735186 +3241.744977 +3241.795160 +3241.806815 +3241.818636 +3241.826728 +3241.838516 +3241.852769 +3241.922998 +3241.960960 +3241.962725 +3241.974680 +3241.975712 +3242.000987 +3242.051137 +3242.055000 +3242.082672 +3242.107947 +3242.121000 +3242.122232 +3242.122732 +3242.159795 +3242.200820 +3242.227261 +3242.227660 +3242.240181 +3242.241446 +3242.254633 +3242.256498 +3242.294094 +3242.295825 +3242.305516 +3242.309179 +3242.321033 +3242.336152 +3242.399455 +3242.427960 +3242.465056 +3242.494526 +3242.535552 +3242.549272 +3242.576211 +3242.578409 +3242.589132 +3242.617204 +3242.644643 +3242.644909 +3242.672581 +3242.699421 +3242.723564 +3242.737250 +3242.778875 +3242.817969 +3242.848672 +3242.862192 +3242.876944 +3242.890630 +3242.900054 +3242.917669 +3242.928958 +3242.946141 +3242.974180 +3243.091029 +3243.118402 +3243.120067 +3243.128425 +3243.132887 +3243.173147 +3243.256564 +3243.285834 +3243.314372 +3243.397822 +3243.444575 +3243.487632 +3243.512407 +3243.515538 +3243.529590 +3243.597855 +3243.611475 +3243.681505 +3243.752167 +3243.876343 +3244.102117 +3244.275777 +3244.507112 +3244.690195 +3248.414833 +3250.337742 +3250.342903 +3250.360153 +3251.137974 +3251.153392 +3251.177268 +3251.914464 +3251.971440 +3252.893317 +3252.933410 +3253.570939 +3254.884924 +3255.038703 +3256.386454 +3256.886220 +3257.408531 +3257.886253 +3257.887551 +3257.890848 +3258.133805 +3258.174464 +3258.886518 +3259.195475 +3259.885884 +3259.891978 +3264.889975 +3264.986046 +3265.186711 +3265.292173 +3265.488543 +3265.588543 +3265.688609 +3265.692372 +3265.792505 +3265.896801 +3266.092471 +3266.187010 +3266.188442 +3266.492404 +3266.494969 +3266.588508 +3266.695801 +3266.792437 +3267.092371 +3267.188608 +3267.296100 +3267.488507 +3267.489140 +3267.595767 +3267.692403 +3267.696133 +3267.792403 +3267.886775 +3267.888540 +3267.997165 +3268.088707 +3268.192503 +3268.288640 +3268.388640 +3268.492536 +3268.592136 +3268.595666 +3268.690870 +3268.692436 +3268.788606 +3268.792369 +3268.896065 +3269.088672 +3269.096198 +3269.192535 +3269.286974 +3269.292568 +3269.386641 +3269.388505 +3269.392335 +3269.492002 +3269.498662 +3269.692368 +3269.795931 +3270.442084 +3272.590833 +3274.889499 +3274.889765 +3274.895493 +3274.911277 +3274.921101 +3274.929392 +3274.930192 +3274.939449 +3274.948440 +3274.959795 +3274.996325 +3275.016971 +3275.028094 +3275.030691 +3275.062859 +3275.074547 +3275.083305 +3275.085969 +3275.097724 +3275.117904 +3275.139948 +3275.141247 +3275.159495 +3275.179209 +3275.180874 +3275.181607 +3275.192296 +3275.201254 +3275.202186 +3275.223265 +3275.224830 +3275.235786 +3275.236318 +3275.306748 +3275.325030 +3275.326462 +3275.327893 +3275.336385 +3275.348306 +3275.370318 +3275.380374 +3275.381207 +3275.394260 +3275.395892 +3275.457464 +3275.469751 +3275.482838 +3275.497357 +3275.507114 +3275.508579 +3275.560894 +3275.561593 +3275.593960 +3275.608080 +3275.608746 +3275.619268 +3275.620667 +3275.632056 +3275.634087 +3275.646208 +3275.659328 +3275.684070 +3275.736817 +3275.750038 +3275.761759 +3275.772582 +3275.807647 +3275.820967 +3275.860560 +3275.862025 +3275.875012 +3275.898889 +3275.900653 +3275.910976 +3275.911409 +3275.923231 +3275.924829 +3275.946041 +3275.956564 +3275.957996 +3275.995325 +3275.996824 +3276.042844 +3276.075978 +3276.124496 +3276.164856 +3276.187233 +3276.212175 +3276.224463 +3276.236784 +3276.248938 +3276.249737 +3276.260393 +3276.274712 +3276.372981 +3276.407013 +3276.425761 +3276.427293 +3276.449404 +3276.486201 +3276.535818 +3276.550237 +3276.562624 +3276.589364 +3276.589963 +3276.629857 +3276.666520 +3276.700453 +3276.702984 +3276.728791 +3276.766087 +3276.780506 +3276.806114 +3276.807745 +3276.820066 +3276.846473 +3276.859027 +3276.885135 +3276.896723 +3276.907612 +3276.921598 +3276.961225 +3276.974878 +3276.989031 +3277.029823 +3277.138448 +3277.162723 +3277.256030 +3277.282837 +3277.297389 +3277.311541 +3277.339447 +3277.353532 +3277.363989 +3277.381971 +3277.393492 +3277.407645 +3277.475244 +3277.477575 +3277.505181 +3277.520132 +3277.574511 +3277.647105 +3277.719266 +3277.802516 +3277.842110 +3277.843808 +3277.884901 +3277.885800 +3277.928956 +3277.939746 +3277.943675 +3277.956928 +3278.002516 +3278.046006 +3278.075576 +3278.090794 +3278.121763 +3278.150501 +3278.161723 +3278.164454 +3278.179339 +3278.190928 +3278.193758 +3278.207811 +3278.261657 +3278.263522 +3278.277841 +3278.291560 +3278.349169 +3278.436115 +3278.450601 +3278.465752 +3278.478140 +3278.479639 +3278.508743 +3278.524161 +3278.524494 +3278.539812 +3278.567650 +3278.569415 +3278.599252 +3278.836381 +3278.836714 +3278.917101 +3279.177107 +3279.188196 +3279.193258 +3279.791992 +3282.290923 +3283.840306 +3284.120092 +3285.578466 +3286.180763 +3286.384159 +3286.607336 +3287.836273 +3288.672569 +3288.681926 +3288.690351 +3288.725882 +3289.886687 +3289.887186 +3290.394745 +3290.886952 +3291.117255 +3292.890680 +3293.891878 +3294.885683 +3297.376856 +3299.986777 +3299.990406 +3300.086244 +3300.392437 +3300.487109 +3300.588607 +3300.600629 +3300.686576 +3300.692170 +3300.695034 +3300.786476 +3300.788507 +3300.789640 +3300.895966 +3300.987908 +3300.992203 +3301.188707 +3301.288873 +3301.392636 +3301.495966 +3301.496632 +3301.587208 +3301.592602 +3301.596499 +3301.688473 +3302.196431 +3302.288706 +3302.296231 +3302.388772 +3302.493101 +3302.496165 +3302.587040 +3302.592668 +3302.688772 +3302.788772 +3302.792601 +3302.887073 +3302.987539 +3303.095998 +3303.188538 +3303.392934 +3303.486873 +3303.688571 +3304.494997 +3304.596429 +3304.697461 +3304.788503 +3305.397294 +3305.402622 +3306.824765 +3306.849440 +3306.912111 +3306.987502 +3307.035354 +3307.075181 +3307.111711 +3307.296593 +3309.895824 +3309.902551 +3309.910010 +3309.918268 +3309.927293 +3309.928658 +3309.944043 +3309.989297 +3309.999920 +3310.053933 +3310.065088 +3310.076011 +3310.087366 +3310.099587 +3310.136517 +3310.136683 +3310.136950 +3310.138681 +3310.145208 +3310.146473 +3310.169084 +3310.178108 +3310.179507 +3310.201618 +3310.229324 +3310.253833 +3310.275344 +3310.283236 +3310.284069 +3310.293226 +3310.324695 +3310.347306 +3310.370116 +3310.383703 +3310.463922 +3310.489863 +3310.491928 +3310.502650 +3310.503216 +3310.554631 +3310.555198 +3310.629956 +3310.694791 +3310.695091 +3310.716236 +3310.716469 +3310.795524 +3310.797089 +3310.809943 +3310.848571 +3310.859926 +3310.860126 +3310.860359 +3310.861391 +3310.872247 +3310.911541 +3310.913372 +3310.924128 +3310.925693 +3310.931721 +3310.936150 +3310.949503 +3310.959526 +3310.961391 +3310.969416 +3310.970815 +3311.007578 +3311.018167 +3311.019866 +3311.030655 +3311.031288 +3311.071514 +3311.156429 +3311.156895 +3311.182669 +3311.194791 +3311.195224 +3311.206446 +3311.219166 +3311.232253 +3311.281271 +3311.308577 +3311.329955 +3311.364121 +3311.364787 +3311.376875 +3311.415703 +3311.451434 +3311.489163 +3311.502250 +3311.513905 +3311.538979 +3311.554031 +3311.566385 +3311.602216 +3311.615336 +3311.616968 +3311.641843 +3311.671780 +3311.683535 +3311.698620 +3311.711074 +3311.722229 +3311.738347 +3311.763088 +3311.818333 +3311.829888 +3311.868916 +3311.986465 +3311.988729 +3311.990461 +3312.030587 +3312.031486 +3312.110108 +3312.125792 +3312.206778 +3312.258959 +3312.272612 +3312.288529 +3312.327124 +3312.341809 +3312.342409 +3312.418266 +3312.437080 +3312.458626 +3312.468616 +3312.480337 +3312.483301 +3312.496354 +3312.509641 +3312.523594 +3312.537613 +3312.538712 +3312.564786 +3312.633284 +3312.651333 +3312.756694 +3312.802381 +3312.815468 +3312.873510 +3312.923693 +3312.936514 +3312.952065 +3313.035814 +3313.076074 +3313.091792 +3313.102947 +3313.162821 +3313.192025 +3313.208242 +3313.220796 +3313.236280 +3313.251232 +3313.279404 +3313.280936 +3313.384465 +3313.385231 +3313.473576 +3313.518298 +3313.548068 +3313.559524 +3313.577572 +3313.638012 +3313.728954 +3313.741774 +3313.742507 +3313.789194 +3313.861888 +3313.878038 +3314.045038 +3314.134348 +3314.208574 +3314.833715 +3314.849399 +3318.584560 +3318.684394 +3318.715329 +3318.886391 +3318.925685 +3319.720123 +3320.308102 +3320.318325 +3321.013862 +3321.335307 +3324.886152 +3324.886652 +3324.891247 +3325.887483 +3325.891046 +3326.195408 +3326.198638 +3326.886117 +3327.886615 +3328.185550 +3328.886415 +3328.887114 +3328.892608 +3330.538994 +3330.600232 +3331.728703 +3331.896102 +3334.885876 +3334.890338 +3334.892403 +3335.086975 +3335.091736 +3335.098130 +3335.186941 +3335.192136 +3335.194867 +3335.392735 +3335.600627 +3335.603524 +3335.687873 +3335.892502 +3335.995498 +3336.296231 +3336.392934 +3336.488905 +3336.496597 +3336.595997 +3336.687506 +3336.796197 +3336.888005 +3336.892800 +3336.989004 +3337.288937 +3337.296130 +3337.396330 +3337.589037 +3337.793032 +3337.795430 +3337.988903 +3338.086938 +3338.196529 +3338.289069 +3338.492865 +3338.587104 +3338.696095 +3338.895196 +3339.101323 +3339.192931 +3339.495828 +3339.792764 +3339.886970 +3339.889001 +3341.833321 +3342.028226 +3342.222465 +3343.540945 +3343.626959 +3343.856929 +3344.647904 +3344.885133 +3344.902083 +3344.902283 +3344.918899 +3344.919432 +3344.926925 +3344.935849 +3344.943442 +3344.952133 +3344.953531 +3344.960591 +3344.981071 +3344.982669 +3345.001384 +3345.001683 +3345.013505 +3345.022496 +3345.044507 +3345.052099 +3345.064420 +3345.084967 +3345.086199 +3345.095156 +3345.097121 +3345.105879 +3345.106112 +3345.107078 +3345.118466 +3345.126558 +3345.146239 +3345.155596 +3345.167417 +3345.178739 +3345.189096 +3345.190794 +3345.222063 +3345.243475 +3345.245539 +3345.266385 +3345.266718 +3345.267217 +3345.301816 +3345.341110 +3345.351466 +3345.389195 +3345.389695 +3345.402216 +3345.422728 +3345.432552 +3345.442309 +3345.454230 +3345.467284 +3345.479771 +3345.503381 +3345.526158 +3345.550068 +3345.561023 +3345.570447 +3345.572046 +3345.605179 +3345.605812 +3345.630387 +3345.641743 +3345.643907 +3345.665652 +3345.688329 +3345.689828 +3345.698686 +3345.708209 +3345.740011 +3345.753031 +3345.761789 +3345.763521 +3345.788562 +3345.789295 +3345.800484 +3345.801949 +3345.802482 +3345.840111 +3345.878938 +3345.891493 +3345.923660 +3345.925192 +3345.933550 +3345.948935 +3345.959891 +3345.996454 +3345.997153 +3346.019897 +3346.021529 +3346.032618 +3346.045172 +3346.046671 +3346.098186 +3346.145838 +3346.146737 +3346.157693 +3346.183001 +3346.184799 +3346.206377 +3346.206810 +3346.218765 +3346.231386 +3346.233084 +3346.243707 +3346.257127 +3346.258059 +3346.269348 +3346.282368 +3346.328588 +3346.338745 +3346.339378 +3346.352398 +3346.377739 +3346.401848 +3346.415102 +3346.425092 +3346.426590 +3346.502148 +3346.503580 +3346.552298 +3346.591592 +3346.602448 +3346.643273 +3346.692790 +3346.695821 +3346.708874 +3346.720330 +3346.748635 +3346.775907 +3346.787529 +3346.801115 +3346.803180 +3346.813803 +3346.825391 +3346.828122 +3346.828488 +3346.893589 +3346.919330 +3346.943806 +3346.971212 +3346.983533 +3346.996786 +3347.010239 +3347.036113 +3347.037279 +3347.144405 +3347.145637 +3347.160156 +3347.161455 +3347.175474 +3347.199017 +3347.199883 +3347.251931 +3347.255760 +3347.267215 +3347.268115 +3347.268647 +3347.269813 +3347.295887 +3347.308940 +3347.309540 +3347.322793 +3347.338144 +3347.349600 +3347.351864 +3347.367881 +3347.381468 +3347.391957 +3347.393289 +3347.405510 +3347.422460 +3347.476606 +3347.477139 +3347.488894 +3347.539243 +3347.551564 +3347.565384 +3347.627921 +3347.657292 +3347.714434 +3347.783599 +3347.851897 +3347.865816 +3347.894754 +3347.907674 +3347.964118 +3347.992323 +3348.006475 +3348.030551 +3348.031184 +3348.041307 +3348.044571 +3348.097618 +3348.176372 +3348.220927 +3348.234714 +3348.246702 +3348.289559 +3348.303844 +3348.332216 +3348.346901 +3348.427154 +3348.503245 +3348.653861 +3349.042006 +3349.856324 +3352.192985 +3352.253890 +3356.715757 +3358.372599 +3358.374697 +3358.388450 +3358.529375 +3358.558213 +3359.828009 +3359.885351 +3359.885551 +3359.891945 +3359.893576 +3360.759310 +3360.891211 +3361.887680 +3362.237197 +3362.886747 +3363.577389 +3363.626540 +3365.757540 +3366.127203 +3367.150446 +3367.582280 +3369.478082 +3369.885508 +3369.891235 +3369.891635 +3369.892135 +3369.992134 +3370.296363 +3370.387672 +3370.487838 +3370.493866 +3370.587838 +3370.600759 +3370.606919 +3370.901657 +3370.988337 +3371.293565 +3371.300958 +3371.396662 +3371.397361 +3371.399792 +3371.597694 +3371.693631 +3371.987470 +3371.988536 +3372.000890 +3372.293264 +3372.388602 +3372.687903 +3372.701189 +3373.587902 +3373.700889 +3373.789700 +3373.799756 +3373.888734 +3374.289866 +3374.588733 +3374.689099 +3375.191064 +3375.553967 +3375.618103 +3375.690331 +3377.938147 +3378.970147 +3379.061989 +3379.238878 +3379.764552 +3379.874109 +3379.918565 +3379.926757 +3379.936147 +3379.942774 +3379.951998 +3379.953496 +3379.962154 +3379.971545 +3379.991492 +3380.004079 +3380.078738 +3380.079304 +3380.099151 +3380.100549 +3380.101182 +3380.131052 +3380.141042 +3380.142940 +3380.174442 +3380.176606 +3380.184998 +3380.185964 +3380.235747 +3380.247535 +3380.248967 +3380.259257 +3380.279836 +3380.281302 +3380.301148 +3380.323027 +3380.324159 +3380.346636 +3380.372377 +3380.472177 +3380.498251 +3380.516200 +3380.527255 +3380.528321 +3380.571245 +3380.580835 +3380.590592 +3380.591524 +3380.600216 +3380.649533 +3380.649933 +3380.660855 +3380.673909 +3380.675940 +3380.698684 +3380.709073 +3380.758324 +3380.770645 +3380.829786 +3380.830119 +3380.850632 +3380.901980 +3380.913269 +3380.915034 +3380.927388 +3380.928321 +3380.940042 +3381.000981 +3381.023492 +3381.033582 +3381.043905 +3381.082133 +3381.094421 +3381.109106 +3381.140109 +3381.149599 +3381.156859 +3381.167614 +3381.169945 +3381.181401 +3381.196519 +3381.220795 +3381.245570 +3381.268014 +3381.293189 +3381.293522 +3381.328753 +3381.351730 +3381.402013 +3381.451897 +3381.481966 +3381.534014 +3381.535047 +3381.545270 +3381.546535 +3381.586229 +3381.600847 +3381.612103 +3381.612902 +3381.704977 +3381.717164 +3381.742439 +3381.754194 +3381.769279 +3381.769945 +3381.796951 +3381.809505 +3381.822492 +3381.861886 +3381.911636 +3381.915033 +3381.992722 +3382.017364 +3382.063851 +3382.148266 +3382.148965 +3382.244936 +3382.259422 +3382.297483 +3382.325322 +3382.340174 +3382.398083 +3382.410404 +3382.411336 +3382.452562 +3382.494686 +3382.535745 +3382.564882 +3382.622491 +3382.636744 +3382.662185 +3382.678069 +3382.679534 +3382.693187 +3382.693687 +3382.695452 +3382.772874 +3382.842271 +3382.844736 +3382.868212 +3382.952661 +3382.964183 +3382.966081 +3382.966714 +3382.967679 +3382.980566 +3383.008339 +3383.021026 +3383.021858 +3383.033913 +3383.074439 +3383.099614 +3383.130916 +3383.220293 +3383.275238 +3383.293420 +3383.336210 +3383.454459 +3383.469843 +3383.479400 +3383.480766 +3383.513033 +3383.514499 +3383.525987 +3383.556756 +3383.669843 +3383.748598 +3383.762983 +3383.791022 +3383.821058 +3383.866013 +3383.892154 +3383.912267 +3383.928151 +3383.938574 +3384.034411 +3384.062916 +3384.080565 +3384.196316 +3384.340305 +3384.355490 +3384.372007 +3384.487291 +3384.619226 +3384.810768 +3386.321589 +3387.043932 +3387.310332 +3392.302036 +3392.640863 +3393.907695 +3394.886782 +3394.892209 +3395.136498 +3395.249585 +3395.351350 +3395.892541 +3396.853946 +3396.887412 +3396.894372 +3397.887611 +3398.387844 +3399.316181 +3401.978116 +3405.092266 +3405.187937 +3405.193165 +3405.488136 +3405.490334 +3405.697427 +3405.993797 +3405.997027 +3406.197293 +3406.197693 +3406.393796 +3406.597992 +3406.697626 +3406.787835 +3406.788368 +3406.789800 +3406.790499 +3406.887735 +3406.897192 +3407.389766 +3407.397358 +3407.490465 +3407.587834 +3407.590598 +3407.596526 +3407.599090 +3407.689866 +3407.693828 +3407.697292 +3407.698057 +3407.789932 +3407.793828 +3407.887768 +3407.890265 +3407.989765 +3408.087801 +3408.190465 +3408.196991 +3408.298323 +3408.389865 +3408.487734 +3408.493528 +3408.494560 +3408.589798 +3408.787800 +3408.794393 +3408.897457 +3408.989798 +3409.193694 +3409.288465 +3409.290497 +3409.294027 +3409.393660 +3409.493660 +3409.588232 +3409.697290 +3414.886562 +3414.891690 +3414.896918 +3414.904644 +3414.940341 +3414.948034 +3414.957025 +3414.978237 +3414.979569 +3414.999915 +3415.000914 +3415.001647 +3415.017830 +3415.019795 +3415.042572 +3415.051197 +3415.060321 +3415.081433 +3415.102745 +3415.104211 +3415.113601 +3415.114966 +3415.136811 +3415.147201 +3415.156591 +3415.200847 +3415.201280 +3415.212669 +3415.246768 +3415.340241 +3415.348832 +3415.359388 +3415.381766 +3415.431050 +3415.456858 +3415.468945 +3415.487560 +3415.498749 +3415.529385 +3415.567014 +3415.568512 +3415.580267 +3415.590357 +3415.648099 +3415.651163 +3415.661353 +3415.662352 +3415.674406 +3415.695319 +3415.722658 +3415.758089 +3415.759488 +3415.771776 +3415.785196 +3415.796085 +3415.823124 +3415.824057 +3415.824856 +3415.870310 +3415.871609 +3415.873008 +3415.883297 +3415.918629 +3415.931815 +3415.954926 +3415.967147 +3415.987560 +3415.997883 +3416.006707 +3416.035978 +3416.060686 +3416.149930 +3416.150530 +3416.162951 +3416.174506 +3416.175938 +3416.187559 +3416.250197 +3416.262018 +3416.272708 +3416.318062 +3416.369244 +3416.413567 +3416.462651 +3416.509138 +3416.520393 +3416.561352 +3416.573273 +3416.584995 +3416.598814 +3416.612567 +3416.613500 +3416.653093 +3416.678235 +3416.693353 +3416.705508 +3416.721059 +3416.734212 +3416.758521 +3416.760153 +3416.782730 +3416.799247 +3416.811835 +3416.823989 +3416.825554 +3416.849364 +3416.894951 +3416.976470 +3416.989856 +3417.004442 +3417.015331 +3417.016030 +3417.062817 +3417.075004 +3417.168611 +3417.194984 +3417.207439 +3417.209037 +3417.220392 +3417.221358 +3417.244235 +3417.244901 +3417.255224 +3417.266479 +3417.275637 +3417.289357 +3417.342304 +3417.369776 +3417.383129 +3417.410335 +3417.412134 +3417.465380 +3417.467345 +3417.492820 +3417.521424 +3417.576403 +3417.576902 +3417.603276 +3417.604741 +3417.616895 +3417.675570 +3417.676303 +3417.687891 +3417.772873 +3417.787092 +3417.788923 +3417.801777 +3417.828417 +3417.830415 +3417.842003 +3417.872739 +3417.873072 +3417.874238 +3417.886326 +3417.912400 +3417.914864 +3417.957921 +3418.015763 +3418.030182 +3418.057687 +3418.072539 +3418.087857 +3418.088124 +3418.175569 +3418.189988 +3418.233511 +3418.234411 +3418.245200 +3418.248463 +3418.291753 +3418.321423 +3418.336808 +3418.351926 +3418.394750 +3418.433311 +3418.435676 +3418.436775 +3418.465413 +3418.541437 +3418.614064 +3418.628616 +3418.639971 +3418.673338 +3418.718626 +3418.748329 +3418.816961 +3418.820857 +3418.836241 +3418.836841 +3418.860484 +3419.000510 +3419.016894 +3419.030847 +3419.058919 +3419.106571 +3419.133111 +3419.212099 +3419.283527 +3419.302708 +3419.439071 +3419.818958 +3419.875468 +3425.230141 +3429.892141 +3431.886145 +3431.886611 +3431.887477 +3432.122575 +3432.887210 +3434.887141 +3434.891836 +3439.890266 +3439.890666 +3439.986037 +3439.991199 +3440.091532 +3440.097825 +3440.191798 +3440.192197 +3440.192530 +3440.292497 +3440.388801 +3440.395760 +3440.396826 +3440.488734 +3440.496526 +3440.497259 +3440.592463 +3440.596027 +3440.687169 +3440.688934 +3440.788767 +3440.889599 +3440.992863 +3440.996059 +3441.096226 +3441.196725 +3441.496625 +3441.592962 +3441.596325 +3441.686801 +3441.696059 +3441.795759 +3441.888866 +3441.892795 +3441.992728 +3442.088999 +3442.292795 +3442.487400 +3442.492728 +3442.495126 +3442.592628 +3442.792561 +3442.888831 +3442.896091 +3443.086733 +3443.088798 +3443.092794 +3443.095858 +3443.287000 +3443.292627 +3443.488864 +3443.492627 +3443.588797 +3443.592694 +3443.688897 +3443.786699 +3443.787199 +3443.789430 +3443.795024 +3443.795957 +3443.895724 +3443.896123 +3443.987299 +3444.188730 +3444.192660 +3444.286899 +3444.295523 +3444.388697 +3444.392593 +3444.487198 +3444.588630 +3444.687165 +3449.895451 +3449.895718 +3449.910003 +3449.945035 +3449.956324 +3449.970010 +3449.988724 +3449.989124 +3450.019560 +3450.020859 +3450.040173 +3450.051861 +3450.059853 +3450.060353 +3450.076437 +3450.086360 +3450.086793 +3450.109504 +3450.110103 +3450.121625 +3450.131482 +3450.151162 +3450.160919 +3450.171475 +3450.183430 +3450.195251 +3450.217995 +3450.238541 +3450.238741 +3450.239773 +3450.250629 +3450.251295 +3450.259220 +3450.306340 +3450.316696 +3450.317162 +3450.353892 +3450.354125 +3450.390822 +3450.414898 +3450.415497 +3450.426952 +3450.452494 +3450.464382 +3450.472174 +3450.495684 +3450.519493 +3450.530682 +3450.541538 +3450.553226 +3450.563416 +3450.565414 +3450.574771 +3450.595384 +3450.604608 +3450.674405 +3450.684628 +3450.736276 +3450.782097 +3450.792387 +3450.819426 +3450.843302 +3450.843669 +3450.844401 +3450.879067 +3450.915896 +3450.927451 +3450.952793 +3450.979100 +3450.989123 +3450.989922 +3450.990622 +3451.045300 +3451.055923 +3451.067278 +3451.094018 +3451.116429 +3451.116962 +3451.119559 +3451.129982 +3451.131381 +3451.156123 +3451.166179 +3451.178001 +3451.178733 +3451.188357 +3451.189489 +3451.235210 +3451.249163 +3451.260751 +3451.274637 +3451.287624 +3451.296815 +3451.387191 +3451.387691 +3451.422856 +3451.423322 +3451.424487 +3451.434311 +3451.448363 +3451.460185 +3451.471274 +3451.509669 +3451.538606 +3451.545499 +3451.554790 +3451.587657 +3451.588190 +3451.614331 +3451.637041 +3451.720724 +3451.759252 +3451.771507 +3451.773604 +3451.784827 +3451.796948 +3451.797447 +3451.810567 +3451.824820 +3451.836808 +3451.883195 +3451.897847 +3451.898779 +3451.934677 +3451.945566 +3451.947530 +3451.958020 +3451.958353 +3451.981163 +3451.990621 +3452.013764 +3452.026651 +3452.028283 +3452.048896 +3452.074137 +3452.075735 +3452.114030 +3452.141436 +3452.153125 +3452.163181 +3452.230514 +3452.231746 +3452.244466 +3452.268576 +3452.269208 +3452.282062 +3452.295748 +3452.306871 +3452.350860 +3452.351160 +3452.352358 +3452.417560 +3452.420524 +3452.470906 +3452.482095 +3452.484226 +3452.518192 +3452.521389 +3452.529215 +3452.553324 +3452.564380 +3452.568808 +3452.580430 +3452.605305 +3452.617726 +3452.618326 +3452.658219 +3452.667976 +3452.671372 +3452.695648 +3452.720656 +3452.737806 +3452.772371 +3452.775968 +3452.776201 +3452.790420 +3452.802808 +3452.817127 +3452.855188 +3452.868375 +3452.881662 +3452.907802 +3452.916793 +3452.921156 +3452.921555 +3452.947696 +3452.956487 +3452.959417 +3452.974569 +3452.975501 +3452.984392 +3453.001209 +3453.010699 +3453.015994 +3453.081495 +3453.131612 +3453.155621 +3453.167776 +3453.200376 +3453.254256 +3453.280030 +3453.293883 +3453.294748 +3453.308401 +3453.349094 +3453.403306 +3453.429847 +3453.430679 +3453.443333 +3453.516593 +3453.653356 +3453.692950 +3453.758418 +3453.810998 +3453.823686 +3453.824485 +3454.035174 +; +95.022349 +225.040667 +235.227837 +235.237594 +272.317177 +272.329398 +272.378815 +274.793032 +356.042168 +463.644058 +475.545478 +478.291463 +490.455187 +515.528655 +573.223003 +587.969109 +587.981097 +588.216361 +589.039704 +589.155122 +589.169707 +612.409378 +619.848098 +643.831391 +644.132223 +644.528027 +645.027027 +645.427093 +645.532754 +645.732754 +653.049663 +653.103210 +653.209070 +653.283130 +653.459786 +653.840305 +653.909236 +653.991421 +654.002077 +654.061917 +654.154824 +654.766078 +654.796748 +654.830547 +654.907404 +654.987257 +655.047896 +655.084327 +655.205605 +655.239005 +655.391386 +655.506504 +656.064912 +656.194848 +656.328181 +656.358684 +656.475700 +656.505670 +656.755787 +656.900975 +657.309599 +657.458916 +657.659449 +657.691816 +657.735806 +657.776032 +657.861547 +657.879928 +657.945496 +657.990384 +682.732051 +688.103608 +688.128616 +688.235009 +688.306238 +688.384793 +688.530380 +688.717893 +688.936674 +689.002474 +689.254222 +689.363846 +689.481362 +689.709700 +689.785224 +689.926783 +690.043099 +690.235141 +690.354688 +690.725583 +690.831544 +690.962812 +691.021687 +691.149892 +691.249259 +691.360148 +691.492415 +691.960447 +692.016724 +692.070170 +692.196777 +692.210164 +692.275864 +692.342231 +692.501539 +692.541265 +692.605934 +692.651189 +692.687353 +692.770802 +692.822118 +692.852254 +714.533052 +715.664153 +715.677872 +715.729720 +716.431218 +716.932150 +717.133549 +717.733781 +723.082227 +723.118324 +723.184458 +723.237039 +723.291984 +723.483526 +724.208467 +724.378630 +724.462179 +724.537304 +724.678096 +724.791849 +724.856085 +724.899475 +724.959182 +725.034673 +725.079994 +725.128579 +725.301639 +725.332175 +725.379328 +725.433873 +725.565275 +725.638635 +725.697609 +725.827080 +725.967839 +726.008864 +726.086087 +726.357216 +726.499906 +726.561445 +726.637235 +726.912260 +727.082257 +727.155916 +727.225780 +727.279259 +727.454750 +727.545093 +727.597641 +727.721683 +727.903035 +728.388882 +750.833049 +758.071303 +758.104570 +758.157317 +758.228512 +758.259981 +758.515325 +758.707100 +758.763111 +758.811029 +758.875232 +759.084655 +759.100373 +759.158948 +759.217922 +759.311395 +759.410862 +759.518921 +759.546060 +759.723316 +760.236869 +760.300638 +760.329476 +760.515923 +760.669735 +760.729176 +760.744461 +760.837168 +760.961377 +761.069668 +761.117088 +761.193811 +761.343694 +761.450154 +761.660211 +761.807197 +761.846224 +761.898206 +762.143094 +762.292877 +762.405831 +762.470899 +762.531572 +762.596440 +762.706164 +762.753649 +762.864738 +762.911525 +762.916953 +770.911217 +793.054651 +793.086087 +793.130908 +793.204302 +793.272533 +793.398874 +793.498074 +793.899872 +793.983289 +794.040232 +794.227677 +794.328576 +794.523481 +795.072665 +795.241596 +795.318119 +795.790646 +795.883153 +796.268568 +796.317186 +796.403799 +796.589979 +796.966136 +797.035333 +797.181487 +797.299969 +797.486881 +797.903464 +798.011023 +828.067504 +828.207463 +828.280224 +828.436967 +828.614156 +828.823613 +828.877027 +829.066270 +829.115288 +829.224612 +829.288082 +829.346157 +829.525977 +829.638697 +829.702467 +829.722580 +829.780123 +829.810792 +829.929939 +830.281487 +830.350285 +830.361008 +830.393742 +830.407228 +830.446855 +830.538963 +830.607295 +830.945556 +831.057777 +831.105596 +831.121147 +831.168266 +831.209692 +831.255646 +831.672229 +831.689678 +831.732868 +831.832735 +832.026341 +832.442158 +832.511688 +832.603097 +832.687745 +832.787679 +853.433379 +854.133711 +855.032745 +863.088248 +863.115454 +863.169899 +863.233269 +863.307761 +863.370832 +863.447488 +863.565537 +863.739096 +863.838064 +863.938430 +863.956112 +864.091777 +864.417584 +864.694007 +864.776191 +865.056444 +865.108559 +865.245888 +865.331935 +865.551482 +865.667399 +865.984149 +866.093606 +866.245354 +866.259007 +866.345221 +866.373759 +866.394538 +866.624242 +867.366898 +867.391207 +867.500331 +867.528337 +867.567930 +867.664600 +867.772559 +867.801896 +867.836428 +867.910288 +867.927803 +880.672712 +880.677907 +885.191722 +888.533843 +888.634110 +898.054746 +898.087580 +898.111356 +898.166168 +898.234933 +898.421546 +898.660340 +899.227039 +899.300932 +899.318182 +899.381452 +899.428504 +899.535830 +899.900399 +899.925773 +900.249050 +900.338560 +900.362203 +900.398500 +900.425506 +900.477721 +900.492373 +900.560838 +901.002329 +901.083381 +901.113551 +901.172825 +901.240124 +901.291906 +901.340890 +901.501429 +901.534530 +901.563134 +901.958239 +902.004592 +902.194103 +902.852577 +923.128114 +933.029903 +933.073892 +933.193572 +933.280785 +933.454911 +933.523908 +933.628670 +933.880818 +934.033198 +934.314417 +934.374257 +934.596202 +934.641323 +934.695036 +934.949614 +935.187277 +935.316780 +935.431932 +935.478585 +935.570593 +935.596367 +935.602594 +935.622707 +935.669694 +935.740922 +935.826870 +935.859737 +936.083546 +936.196500 +936.276320 +936.531897 +936.598031 +936.704458 +936.874954 +936.992503 +937.036625 +937.069925 +937.153375 +937.368327 +937.753841 +937.842718 +937.981746 +958.028779 +958.126581 +958.332009 +958.732674 +961.133604 +961.432905 +961.630906 +968.037993 +968.086245 +968.161636 +968.279052 +968.390640 +968.463167 +968.581516 +968.685545 +968.766730 +968.836194 +969.006790 +969.014216 +969.357206 +969.633030 +969.833695 +969.875787 +970.057971 +970.138657 +970.191138 +970.260368 +970.303359 +970.453941 +970.579849 +970.883212 +971.230264 +971.329531 +971.376851 +971.443417 +971.459435 +971.537656 +971.612715 +971.695665 +971.774852 +971.908352 +972.132561 +972.742917 +972.893466 +972.929397 +996.330572 +1002.932996 +1003.275520 +1003.911916 +1003.990305 +1004.715712 +1005.080014 +1005.389404 +1005.581379 +1005.688738 +1005.811981 +1005.838654 +1005.888671 +1005.961265 +1006.079147 +1006.115411 +1006.158035 +1006.227432 +1006.238821 +1006.272520 +1006.300692 +1006.569856 +1006.959000 +1006.990968 +1007.005620 +1007.025666 +1007.071354 +1007.146912 +1038.037190 +1038.085176 +1038.162298 +1038.175352 +1038.250876 +1038.337789 +1038.381246 +1039.271921 +1039.354305 +1039.463429 +1039.505887 +1039.538254 +1039.972720 +1040.027931 +1040.255403 +1040.284208 +1040.585473 +1040.721770 +1040.736455 +1040.896162 +1041.360797 +1041.881209 +1041.971485 +1042.029061 +1042.077613 +1042.164126 +1042.254103 +1042.330126 +1042.438485 +1042.555900 +1042.869020 +1063.732936 +1073.099893 +1073.159466 +1073.183143 +1073.270988 +1073.370655 +1073.484541 +1073.661897 +1073.758700 +1073.789635 +1073.893898 +1073.943415 +1074.216808 +1074.276948 +1074.341916 +1074.418040 +1074.551906 +1074.599591 +1074.694929 +1074.774416 +1074.835555 +1074.926231 +1074.975648 +1075.035821 +1075.141682 +1075.222301 +1075.268122 +1075.329194 +1075.480942 +1075.521036 +1075.629760 +1075.706250 +1075.776214 +1075.825231 +1075.896094 +1075.983706 +1076.018971 +1076.201421 +1076.275780 +1076.324631 +1076.478444 +1076.527195 +1076.595793 +1076.650006 +1076.715074 +1076.815174 +1076.885803 +1076.943512 +1077.033355 +1077.126062 +1077.280941 +1077.312609 +1077.367321 +1077.436052 +1077.531956 +1077.597124 +1077.671183 +1077.708679 +1077.787534 +1077.907647 +1078.009678 +1098.631635 +1098.831702 +1099.032101 +1099.729203 +1100.332166 +1108.087437 +1108.134123 +1108.177780 +1108.221070 +1108.277047 +1108.472018 +1108.561162 +1108.782874 +1108.812910 +1108.860396 +1109.201222 +1109.324299 +1109.782740 +1109.869420 +1109.955633 +1110.103785 +1110.215740 +1110.474680 +1110.591397 +1110.683571 +1110.796225 +1110.945942 +1111.030591 +1111.119835 +1111.207913 +1111.324163 +1111.613807 +1111.893394 +1112.234818 +1112.430156 +1112.464089 +1112.532487 +1112.583902 +1112.685534 +1112.812274 +1113.016336 +1127.029276 +1138.029831 +1143.064458 +1143.177578 +1143.265923 +1143.570019 +1143.612709 +1143.657631 +1143.719569 +1143.783039 +1144.514573 +1144.574913 +1144.627960 +1144.707613 +1144.753767 +1144.832455 +1144.858662 +1144.947873 +1144.997123 +1145.765954 +1145.950402 +1145.995790 +1146.008711 +1146.038548 +1146.090229 +1146.124462 +1146.910308 +1146.990694 +1147.042376 +1147.096722 +1147.353032 +1147.428456 +1147.478073 +1147.550767 +1147.677074 +1168.730932 +1179.004282 +1179.592760 +1179.697721 +1179.775976 +1179.806945 +1180.296722 +1180.431054 +1180.655796 +1180.749535 +1180.853598 +1180.980904 +1181.123860 +1181.210607 +1181.338013 +1181.396354 +1181.443141 +1181.728955 +1181.819464 +1181.920729 +1182.024725 +1182.154129 +1182.267349 +1182.516933 +1182.582933 +1197.029605 +1203.628600 +1203.676618 +1203.728267 +1205.129031 +1213.248703 +1213.387964 +1213.510575 +1213.570515 +1214.074344 +1214.473378 +1214.773843 +1214.836647 +1214.956694 +1215.027956 +1215.059224 +1215.140710 +1215.188895 +1215.265318 +1215.356560 +1215.423826 +1215.500649 +1215.639277 +1215.762287 +1215.823260 +1216.136679 +1216.197352 +1216.490059 +1216.544038 +1216.630918 +1216.755526 +1216.860688 +1217.044570 +1217.152129 +1217.247301 +1217.364550 +1217.394720 +1217.432382 +1217.486128 +1217.620894 +1217.744503 +1238.433160 +1239.133559 +1239.332527 +1240.630960 +1248.315368 +1248.462854 +1248.474309 +1248.557493 +1248.671878 +1248.776407 +1249.074109 +1249.372011 +1249.435281 +1249.499150 +1249.547468 +1249.589593 +1249.814135 +1249.843972 +1249.889226 +1250.078404 +1250.203545 +1250.233149 +1250.360221 +1250.584164 +1250.680401 +1250.760954 +1251.222991 +1251.258223 +1251.471542 +1251.533480 +1251.608672 +1251.645701 +1251.694120 +1251.774006 +1251.852794 +1252.091788 +1252.243403 +1252.275671 +1252.375604 +1252.505308 +1252.601611 +1252.633479 +1266.031634 +1279.033153 +1283.392756 +1283.708074 +1284.532215 +1285.119028 +1285.449164 +1285.523523 +1285.671175 +1286.158720 +1286.308604 +1286.419393 +1286.626619 +1286.759452 +1286.823122 +1286.951260 +1287.190255 +1287.285692 +1287.665379 +1308.534456 +1318.148332 +1318.190890 +1318.298515 +1318.336777 +1318.395485 +1318.477902 +1318.566380 +1318.728185 +1318.873873 +1318.953193 +1319.036909 +1319.105907 +1319.165714 +1319.304042 +1319.399513 +1319.434045 +1319.483929 +1319.649796 +1319.698048 +1319.772506 +1319.852127 +1319.938374 +1320.011634 +1320.148130 +1320.195749 +1320.261783 +1320.341437 +1320.472606 +1320.534444 +1320.596082 +1320.638706 +1320.718193 +1320.764813 +1320.825652 +1320.926018 +1321.062415 +1321.186691 +1321.216261 +1321.275901 +1321.368675 +1321.459318 +1321.573470 +1321.677400 +1321.763047 +1321.894948 +1321.971605 +1322.223719 +1322.304305 +1322.435907 +1322.660649 +1322.739137 +1322.771704 +1322.822587 +1322.872570 +1322.923852 +1322.974301 +1323.254521 +1324.841965 +1343.333022 +1343.633854 +1344.034487 +1344.629524 +1345.633087 +1353.066646 +1353.117661 +1353.162316 +1353.516595 +1353.730115 +1354.479165 +1354.670940 +1354.689588 +1355.161049 +1355.174902 +1355.229747 +1355.296613 +1355.487256 +1355.745997 +1355.863446 +1355.879963 +1355.997412 +1356.013396 +1356.106236 +1356.765043 +1356.813395 +1356.863845 +1357.249658 +1357.332209 +1357.564810 +1357.700274 +1357.780860 +1358.024683 +1377.967586 +1378.868451 +1379.068551 +1379.968483 +1380.468550 +1385.994751 +1386.023056 +1386.034778 +1386.054092 +1386.074771 +1386.108238 +1386.123123 +1386.146000 +1386.186060 +1386.207238 +1386.265946 +1386.280399 +1386.349729 +1386.372173 +1386.428584 +1386.444235 +1386.475570 +1386.517694 +1386.529982 +1386.567544 +1386.596249 +1386.618727 +1386.641470 +1386.654924 +1386.716795 +1386.801910 +1386.817061 +1386.882096 +1386.916562 +1386.947331 +1386.973072 +1387.005040 +1387.037474 +1387.120091 +1387.142569 +1387.177700 +1387.207271 +1387.231746 +1387.278100 +1387.309835 +1387.330314 +1387.362915 +1387.401676 +1387.425952 +1387.497547 +1387.532745 +1387.586291 +1387.600810 +1387.622389 +1387.645465 +1387.656022 +1387.671839 +1387.705405 +1387.738439 +1387.767443 +1387.778233 +1387.807170 +1387.839738 +1387.892751 +1387.909867 +1387.924553 +1387.950260 +1387.971805 +1387.996181 +1388.023520 +1388.049228 +1388.063780 +1388.140470 +1388.179131 +1388.204406 +1388.221156 +1388.247962 +1388.259318 +1388.282927 +1388.299810 +1388.314030 +1388.345032 +1388.361915 +1388.377233 +1388.390686 +1388.417992 +1388.440503 +1388.454489 +1388.479963 +1388.512331 +1388.520190 +1388.540969 +1388.554888 +1388.594815 +1388.606170 +1388.622854 +1388.647829 +1388.670806 +1388.685724 +1388.705305 +1388.720123 +1388.741468 +1388.770972 +1388.807669 +1388.822521 +1388.850060 +1388.878198 +1388.894648 +1388.929946 +1388.945497 +1388.971904 +1388.987722 +1389.015028 +1389.030346 +1389.059517 +1389.075367 +1389.092051 +1389.118591 +1389.164611 +1389.181095 +1389.205371 +1389.238571 +1389.281494 +1389.298378 +1389.384824 +1389.457152 +1389.527748 +1389.597245 +1389.619489 +1389.657218 +1389.732743 +1389.746063 +1389.760082 +1389.775567 +1389.808067 +1389.837172 +1389.866076 +1389.896579 +1389.926782 +1389.956152 +1389.985523 +1390.001307 +1390.078696 +1390.092949 +1390.109699 +1390.200708 +1390.231876 +1390.246462 +1390.294880 +1390.308100 +1390.328813 +1390.344930 +1390.361613 +1390.373168 +1390.386888 +1390.402739 +1390.477797 +1390.639535 +1390.656218 +1390.689685 +1390.721253 +1390.779095 +1390.826881 +1390.887620 +1390.947593 +1404.967260 +1405.967259 +1405.974152 +1410.966821 +1410.967054 +1410.973780 +1411.167953 +1411.468419 +1411.868651 +1412.369050 +1412.769183 +1412.969083 +1413.269249 +1413.568983 +1413.869349 +1414.969348 +1415.269514 +1415.769447 +1415.868747 +1420.974370 +1421.024586 +1421.051359 +1421.088056 +1421.100410 +1421.136441 +1421.186291 +1421.224020 +1421.248595 +1421.272804 +1421.297413 +1421.356454 +1421.402341 +1421.429481 +1421.448862 +1421.520956 +1421.560417 +1421.585691 +1421.598279 +1421.622355 +1421.686257 +1421.715062 +1421.752291 +1421.831146 +1421.903140 +1421.964479 +1421.992717 +1422.025218 +1422.050792 +1422.116527 +1422.160949 +1422.195747 +1422.219190 +1422.247495 +1422.278564 +1422.294715 +1422.333210 +1422.362514 +1422.386856 +1422.443200 +1422.457452 +1422.495048 +1422.509833 +1422.540169 +1422.574501 +1422.638604 +1422.662680 +1422.741934 +1422.763479 +1422.790285 +1422.839203 +1422.875567 +1422.893249 +1422.926682 +1422.957218 +1423.034574 +1423.140135 +1423.178197 +1423.217991 +1423.253788 +1423.293249 +1423.323652 +1423.346562 +1423.364644 +1423.390085 +1423.428114 +1423.450791 +1423.466409 +1423.498477 +1423.566009 +1423.589119 +1423.616725 +1423.635007 +1423.668240 +1423.685556 +1423.711663 +1423.820787 +1423.835173 +1423.885689 +1423.909931 +1423.928513 +1423.986055 +1424.014893 +1424.032042 +1424.058050 +1424.134973 +1424.152722 +1424.206568 +1424.224483 +1424.253687 +1424.277497 +1424.307100 +1424.404370 +1424.429045 +1424.447127 +1424.474799 +1424.489917 +1424.515059 +1424.529411 +1424.544729 +1424.574499 +1424.639767 +1424.668239 +1424.730477 +1424.748925 +1424.775132 +1424.784789 +1424.853454 +1424.914792 +1424.930876 +1424.947093 +1424.972434 +1424.985421 +1425.024216 +1425.140633 +1425.211728 +1425.320619 +1425.405501 +1425.430809 +1425.495311 +1425.653020 +1425.737968 +1425.807632 +1425.824548 +1425.892014 +1437.967626 +1438.967692 +1439.969689 +1447.071214 +1447.171513 +1447.270880 +1447.572279 +1447.672179 +1447.871979 +1448.172178 +1448.670912 +1448.771778 +1448.772144 +1448.872211 +1449.571677 +1449.972176 +1450.872409 +1450.972408 +1455.969839 +1455.983259 +1455.991651 +1456.010832 +1456.038238 +1456.065677 +1456.088321 +1456.113995 +1456.150558 +1456.196279 +1456.245164 +1456.259216 +1456.311298 +1456.336972 +1456.351591 +1456.399676 +1456.437538 +1456.465343 +1456.502007 +1456.529113 +1456.556685 +1456.583292 +1456.610665 +1456.636539 +1456.711397 +1456.751390 +1456.786422 +1456.823618 +1456.843798 +1456.870538 +1456.970238 +1457.009832 +1457.123085 +1457.160281 +1457.174400 +1457.210298 +1457.238103 +1457.284057 +1457.317723 +1457.331676 +1457.382892 +1457.419422 +1457.431942 +1457.542565 +1457.595945 +1457.672135 +1457.691716 +1457.715658 +1457.757084 +1457.771836 +1457.842398 +1457.864976 +1457.902305 +1457.932042 +1457.956484 +1458.012928 +1458.037936 +1458.074899 +1458.121918 +1458.188419 +1458.226314 +1458.246560 +1458.276597 +1458.303770 +1458.365341 +1458.388019 +1458.427646 +1458.469604 +1458.501838 +1458.549823 +1458.577929 +1458.590283 +1458.618255 +1458.660180 +1458.711262 +1458.738035 +1458.770436 +1458.877029 +1458.915191 +1458.945361 +1458.960512 +1458.998308 +1459.014325 +1459.051721 +1459.082057 +1459.124482 +1459.153486 +1459.190649 +1459.226080 +1459.245727 +1459.271668 +1459.331441 +1459.348491 +1459.387685 +1459.434471 +1459.447924 +1459.477029 +1459.558947 +1459.574964 +1459.653985 +1459.693512 +1459.746226 +1459.759279 +1459.789549 +1459.808497 +1459.830575 +1459.922116 +1459.963209 +1459.976762 +1460.007364 +1460.029742 +1460.073998 +1460.129276 +1460.173598 +1460.188783 +1460.215256 +1460.230308 +1460.244694 +1460.284321 +1460.295742 +1460.360344 +1460.375629 +1460.411993 +1460.435902 +1460.450687 +1460.476861 +1460.489548 +1460.502835 +1460.514623 +1460.521683 +1460.586352 +1460.615755 +1460.641363 +1460.658746 +1460.687750 +1460.702702 +1460.729308 +1460.744393 +1460.761243 +1460.807963 +1460.836168 +1460.868036 +1460.950620 +1472.971887 +1482.372011 +1483.273042 +1483.473308 +1484.172342 +1484.273407 +1484.774073 +1484.973973 +1485.273673 +1485.372541 +1485.572207 +1485.673106 +1485.772973 +1488.586523 +1490.971902 +1490.985056 +1491.011496 +1491.033574 +1491.063877 +1491.106334 +1491.119421 +1491.154952 +1491.190650 +1491.240866 +1491.279594 +1491.317789 +1491.358582 +1491.382158 +1491.446794 +1491.489584 +1491.523650 +1491.550290 +1491.598242 +1491.622118 +1491.669904 +1491.710363 +1491.794579 +1491.825148 +1491.861745 +1491.898375 +1491.926247 +1491.994079 +1492.038634 +1492.081358 +1492.157515 +1492.174099 +1492.226313 +1492.263143 +1492.311062 +1492.342597 +1492.376962 +1492.403103 +1492.438001 +1492.463409 +1492.483855 +1492.509796 +1492.549390 +1492.574065 +1492.601338 +1492.614758 +1492.659380 +1492.695943 +1492.777961 +1492.789982 +1492.916955 +1492.980325 +1493.004568 +1493.023515 +1493.076196 +1493.103835 +1493.127245 +1493.174298 +1493.188583 +1493.201337 +1493.228377 +1493.254850 +1493.280192 +1493.305766 +1493.350088 +1493.400638 +1493.436602 +1493.449888 +1493.566572 +1493.594344 +1493.631507 +1493.661577 +1493.676528 +1493.716355 +1493.763008 +1493.790414 +1493.818186 +1493.852685 +1493.890647 +1493.905832 +1493.921283 +1494.015123 +1494.040264 +1494.067637 +1494.088915 +1494.122848 +1494.162708 +1494.176228 +1494.200970 +1494.235036 +1494.252085 +1494.280823 +1494.309028 +1494.389714 +1494.420350 +1494.459944 +1494.499937 +1494.540097 +1494.556081 +1494.586118 +1494.624113 +1494.662242 +1494.712358 +1494.737266 +1494.758978 +1494.787649 +1494.841928 +1494.855481 +1494.891412 +1494.915488 +1494.972664 +1495.033570 +1495.059311 +1495.084153 +1495.098372 +1495.143427 +1495.171032 +1495.184552 +1495.221815 +1495.262341 +1495.300569 +1495.317019 +1495.339697 +1495.357379 +1495.397705 +1495.415454 +1495.453849 +1495.502933 +1495.532770 +1495.548022 +1495.575827 +1495.602833 +1495.663772 +1495.679523 +1495.694342 +1495.753649 +1495.770133 +1495.910725 +1495.920116 +1495.953283 +1516.773442 +1516.973441 +1517.171576 +1517.373607 +1517.772908 +1517.872475 +1517.972408 +1518.574239 +1518.873939 +1519.073506 +1519.874171 +1519.972606 +1520.273904 +1520.674204 +1520.974270 +1524.476198 +1525.985087 +1526.008431 +1526.027412 +1526.036569 +1526.058447 +1526.093279 +1526.117555 +1526.156183 +1526.179659 +1526.225347 +1526.276096 +1526.314191 +1526.352886 +1526.425913 +1526.464940 +1526.506632 +1526.529309 +1526.561377 +1526.614924 +1526.627011 +1526.652319 +1526.679259 +1526.724714 +1526.764707 +1526.789515 +1526.816455 +1526.841264 +1526.884254 +1526.911027 +1526.941730 +1526.957880 +1526.998207 +1527.025912 +1527.062642 +1527.084487 +1527.128077 +1527.152785 +1527.199971 +1527.233538 +1527.265073 +1527.295909 +1527.332638 +1527.384553 +1527.426844 +1527.441097 +1527.488249 +1527.504666 +1527.533471 +1527.590214 +1527.615755 +1527.632572 +1527.654050 +1527.676461 +1527.718585 +1527.731106 +1527.768802 +1527.793677 +1527.809028 +1527.829741 +1527.862641 +1527.875928 +1527.901069 +1527.966204 +1527.987616 +1528.001402 +1528.043793 +1528.060643 +1528.093543 +1528.152151 +1528.175728 +1528.207729 +1528.230540 +1528.254516 +1528.287050 +1528.324845 +1528.359311 +1528.387150 +1528.423147 +1528.450420 +1528.466836 +1528.495508 +1528.519051 +1528.551751 +1528.592178 +1528.605298 +1528.646590 +1528.681988 +1528.711159 +1528.728175 +1528.753250 +1528.783553 +1528.810226 +1528.853216 +1528.880323 +1528.901268 +1528.925011 +1528.969900 +1529.017152 +1529.075960 +1529.095674 +1529.150785 +1529.172663 +1529.191811 +1529.206729 +1529.229573 +1529.266170 +1529.314388 +1529.339197 +1529.371964 +1529.396972 +1529.426642 +1529.440329 +1529.469200 +1529.493842 +1529.600935 +1529.647854 +1529.679489 +1529.719316 +1529.733036 +1529.759276 +1529.789746 +1529.802932 +1529.852216 +1529.879522 +1529.923612 +1529.953848 +1529.968533 +1529.980654 +1530.025909 +1530.049086 +1530.081054 +1530.122213 +1530.157144 +1530.171297 +1530.228207 +1530.313288 +1530.331237 +1530.361207 +1530.382885 +1530.403198 +1530.430304 +1530.509558 +1530.526009 +1530.564703 +1530.588413 +1530.618882 +1530.636198 +1530.721013 +1530.754979 +1530.877923 +1530.965002 +1541.972484 +1551.773873 +1551.874272 +1552.574638 +1553.074504 +1553.474704 +1553.874637 +1554.374736 +1554.574802 +1554.974635 +1555.374735 +1555.474602 +1555.774701 +1560.994110 +1561.010094 +1561.027477 +1561.047157 +1561.071100 +1561.105532 +1561.131206 +1561.179957 +1561.220716 +1561.266604 +1561.280823 +1561.293643 +1561.344759 +1561.384453 +1561.398305 +1561.424313 +1561.451985 +1561.503200 +1561.536600 +1561.551186 +1561.573996 +1561.602767 +1561.670033 +1561.694276 +1561.722980 +1561.750386 +1561.776826 +1561.803633 +1561.838098 +1561.873829 +1561.896007 +1561.930339 +1561.955281 +1562.014655 +1562.063773 +1562.087083 +1562.110159 +1562.137732 +1562.176959 +1562.190313 +1562.216087 +1562.242660 +1562.259144 +1562.309460 +1562.337032 +1562.369866 +1562.380456 +1562.404831 +1562.427375 +1562.456313 +1562.473396 +1562.506096 +1562.541561 +1562.551684 +1562.594108 +1562.616286 +1562.626809 +1562.668367 +1562.721681 +1562.739196 +1562.780222 +1562.821048 +1562.832703 +1562.889712 +1562.953648 +1563.052516 +1563.068500 +1563.106862 +1563.133269 +1563.166569 +1563.181753 +1563.207528 +1563.265103 +1563.280388 +1563.304231 +1563.334001 +1563.360608 +1563.388447 +1563.407261 +1563.455446 +1563.496305 +1563.511224 +1563.559042 +1563.578490 +1563.646888 +1563.689245 +1563.714354 +1563.741693 +1563.751317 +1563.779289 +1563.820547 +1563.843524 +1563.869831 +1563.894973 +1563.923344 +1563.951017 +1563.972795 +1563.994340 +1564.031836 +1564.057210 +1564.133434 +1564.180953 +1564.206328 +1564.256111 +1564.281153 +1564.339661 +1564.365169 +1564.383817 +1564.423777 +1564.495405 +1564.511089 +1564.557643 +1564.578755 +1564.627873 +1564.666667 +1564.688911 +1564.701499 +1564.745788 +1564.776624 +1564.912787 +1564.930903 +1564.956743 +1564.980586 +1565.002131 +1565.030103 +1565.116617 +1565.130736 +1565.186180 +1565.264902 +1565.444588 +1565.506027 +1565.528271 +1565.812920 +1565.853579 +1565.867731 +1565.920212 +1565.950948 +1586.072740 +1586.674437 +1588.174669 +1589.374834 +1589.674801 +1589.974933 +1590.274966 +1590.474800 +1590.774000 +1590.874866 +1595.977425 +1595.992943 +1596.000968 +1596.020116 +1596.042227 +1596.061874 +1596.083785 +1596.128873 +1596.180955 +1596.207561 +1596.246755 +1596.288613 +1596.302333 +1596.342793 +1596.371997 +1596.407661 +1596.447388 +1596.543625 +1596.588080 +1596.628007 +1596.654447 +1596.763405 +1596.844157 +1596.883052 +1596.906895 +1596.946821 +1596.983218 +1597.005829 +1597.045556 +1597.074394 +1597.111590 +1597.138296 +1597.174393 +1597.202599 +1597.236798 +1597.248386 +1597.285482 +1597.332602 +1597.369332 +1597.422745 +1597.460207 +1597.481952 +1597.520314 +1597.545988 +1597.560007 +1597.593940 +1597.615951 +1597.650817 +1597.678522 +1597.737430 +1597.753913 +1597.778722 +1597.803164 +1597.836964 +1597.919714 +1597.932002 +1597.991709 +1598.051915 +1598.103430 +1598.127839 +1598.163670 +1598.187812 +1598.215118 +1598.258075 +1598.285781 +1598.315018 +1598.340926 +1598.412820 +1598.440293 +1598.470762 +1598.510090 +1598.533733 +1598.565334 +1598.616916 +1598.628371 +1598.667565 +1598.770862 +1598.785348 +1598.838161 +1598.862637 +1598.893173 +1598.950815 +1598.987379 +1599.015251 +1599.069963 +1599.084082 +1599.122177 +1599.145454 +1599.199033 +1599.223942 +1599.243189 +1599.280385 +1599.318947 +1599.375956 +1599.404927 +1599.432267 +1599.489143 +1599.510522 +1599.555976 +1599.584781 +1599.650848 +1599.665267 +1599.699799 +1599.739126 +1599.768197 +1599.797801 +1599.861071 +1599.866998 +1599.880185 +1599.917614 +1599.970261 +1599.993838 +1600.066965 +1600.084181 +1600.109089 +1600.160571 +1600.188876 +1600.221310 +1600.236528 +1600.262169 +1600.301929 +1600.319845 +1600.358040 +1600.402928 +1600.427837 +1600.452878 +1600.514783 +1600.536528 +1600.567630 +1600.595369 +1600.616115 +1600.647350 +1600.693038 +1600.724173 +1600.779152 +1600.820710 +1600.948982 +1600.964433 +1611.973147 +1621.072971 +1621.373237 +1622.374635 +1622.973668 +1623.074701 +1623.174734 +1623.374833 +1623.474700 +1623.674767 +1623.874866 +1623.972868 +1624.174766 +1625.074832 +1625.274765 +1625.472534 +1625.974731 +1630.972295 +1630.993873 +1631.004629 +1631.034599 +1631.076624 +1631.102498 +1631.125542 +1631.159141 +1631.188645 +1631.233867 +1631.301799 +1631.326141 +1631.363437 +1631.413287 +1631.447453 +1631.491076 +1631.523910 +1631.568398 +1631.599301 +1631.636230 +1631.694639 +1631.731369 +1631.766167 +1631.789144 +1631.803297 +1631.830503 +1631.856643 +1631.885581 +1631.932967 +1631.957809 +1632.014585 +1632.070762 +1632.107226 +1632.138361 +1632.161538 +1632.188344 +1632.205128 +1632.252147 +1632.276656 +1632.306959 +1632.331035 +1632.352846 +1632.400499 +1632.423209 +1632.461371 +1632.487345 +1632.515317 +1632.539393 +1632.605893 +1632.668664 +1632.701764 +1632.727272 +1632.749949 +1632.796036 +1632.820745 +1632.848284 +1632.899632 +1632.958440 +1632.987644 +1633.013951 +1633.043788 +1633.074025 +1633.094271 +1633.122876 +1633.146186 +1633.183415 +1633.233498 +1633.261404 +1633.287644 +1633.315649 +1633.355576 +1633.380251 +1633.408057 +1633.446618 +1633.472992 +1633.518047 +1633.546385 +1633.574990 +1633.589309 +1633.620977 +1633.648083 +1633.690507 +1633.719878 +1633.802629 +1633.826005 +1633.850514 +1633.873957 +1633.900930 +1633.928403 +1633.955009 +1633.967597 +1634.024473 +1634.039292 +1634.070294 +1634.127870 +1634.169894 +1634.196634 +1634.215116 +1634.249881 +1634.266764 +1634.319145 +1634.363667 +1634.377753 +1634.456308 +1634.486644 +1634.502095 +1634.562235 +1634.587043 +1634.602361 +1634.616048 +1634.643653 +1634.674423 +1634.701396 +1634.723906 +1634.749148 +1634.761602 +1634.816547 +1634.890373 +1634.904958 +1634.948715 +1634.965298 +1634.986310 +1635.024605 +1635.050146 +1635.076354 +1635.100330 +1635.116913 +1635.172724 +1635.186410 +1635.213550 +1635.226503 +1635.260769 +1635.276886 +1635.305824 +1635.323906 +1635.378751 +1635.420209 +1635.440556 +1635.456373 +1635.497099 +1635.524572 +1635.536127 +1635.567529 +1635.583879 +1635.610985 +1635.629933 +1635.644418 +1635.670525 +1635.690339 +1635.736160 +1635.751544 +1635.825204 +1635.840089 +1635.935061 +1635.956473 +1646.971879 +1647.972012 +1648.971977 +1657.473367 +1658.173400 +1658.873466 +1659.273399 +1659.673432 +1659.773498 +1659.973531 +1660.673398 +1660.973464 +1665.971128 +1665.977954 +1665.985647 +1666.012054 +1666.051447 +1666.085813 +1666.129136 +1666.162103 +1666.193206 +1666.215550 +1666.254478 +1666.281451 +1666.301863 +1666.346619 +1666.393205 +1666.425739 +1666.461703 +1666.495703 +1666.517048 +1666.541490 +1666.554078 +1666.598333 +1666.668996 +1666.690375 +1666.738460 +1666.762136 +1666.786245 +1666.808956 +1666.834297 +1666.846984 +1666.877354 +1666.902163 +1666.928803 +1666.951680 +1666.990707 +1667.069895 +1667.102495 +1667.125239 +1667.158006 +1667.194403 +1667.224040 +1667.272259 +1667.298133 +1667.328636 +1667.352745 +1667.388176 +1667.398599 +1667.451446 +1667.483014 +1667.496401 +1667.519878 +1667.556208 +1667.573224 +1667.621542 +1667.670194 +1667.700930 +1667.724473 +1667.748549 +1667.782581 +1667.814549 +1667.859737 +1667.894836 +1667.931599 +1667.961269 +1667.978652 +1667.999697 +1668.013650 +1668.051212 +1668.060303 +1668.093570 +1668.120043 +1668.145718 +1668.165898 +1668.199664 +1668.215914 +1668.264765 +1668.290373 +1668.318578 +1668.342354 +1668.366330 +1668.371958 +1668.403926 +1668.428868 +1668.441788 +1668.456840 +1668.484479 +1668.504692 +1668.541089 +1668.561801 +1668.590473 +1668.624272 +1668.649280 +1668.715914 +1668.744818 +1668.757272 +1668.785344 +1668.808654 +1668.867628 +1668.894535 +1668.919909 +1668.934062 +1668.948348 +1668.976087 +1669.016380 +1669.043752 +1669.113682 +1669.174222 +1669.190772 +1669.217578 +1669.246349 +1669.273622 +1669.286742 +1669.314914 +1669.337991 +1669.350911 +1669.366696 +1669.385210 +1669.412450 +1669.451611 +1669.502893 +1669.530731 +1669.596832 +1669.678117 +1669.696266 +1669.714681 +1669.735726 +1669.774920 +1669.804824 +1669.831530 +1669.907621 +1669.924471 +1669.938723 +1669.955673 +1669.970591 +1670.000827 +1670.028899 +1670.069958 +1670.115779 +1670.129332 +1670.145649 +1670.159768 +1670.189872 +1670.208187 +1670.238323 +1670.283678 +1670.313248 +1670.327700 +1670.374587 +1670.401260 +1670.419875 +1670.462465 +1670.481113 +1670.510750 +1670.527467 +1670.583411 +1670.599428 +1670.629065 +1670.644516 +1670.661300 +1670.751110 +1670.809318 +1670.827766 +1670.857503 +1670.873654 +1670.903357 +1670.918575 +1670.943051 +1670.957470 +1682.972176 +1691.473200 +1691.673600 +1692.473965 +1692.573532 +1692.671767 +1692.674564 +1692.772500 +1693.074064 +1693.172499 +1693.273065 +1693.373864 +1693.573798 +1694.673230 +1694.772598 +1694.873596 +1695.074229 +1695.273296 +1700.985179 +1701.010587 +1701.021143 +1701.044619 +1701.084679 +1701.107190 +1701.149747 +1701.183980 +1701.207689 +1701.244852 +1701.270227 +1701.305758 +1701.340856 +1701.388908 +1701.426204 +1701.468928 +1701.482414 +1701.499764 +1701.538358 +1701.564232 +1701.611485 +1701.633963 +1701.660603 +1701.685644 +1701.718145 +1701.732897 +1701.756607 +1701.782647 +1701.829900 +1701.889940 +1701.914482 +1701.939424 +1701.990606 +1702.022707 +1702.052577 +1702.080016 +1702.096167 +1702.139690 +1702.187409 +1702.216346 +1702.253509 +1702.279983 +1702.304725 +1702.332031 +1702.387109 +1702.457305 +1702.528134 +1702.585144 +1702.602893 +1702.638557 +1702.690305 +1702.737658 +1702.768960 +1702.812783 +1702.840655 +1702.899562 +1702.963199 +1703.017977 +1703.056339 +1703.085143 +1703.112016 +1703.137824 +1703.162965 +1703.199595 +1703.241187 +1703.265330 +1703.292702 +1703.320408 +1703.360701 +1703.380281 +1703.419842 +1703.470258 +1703.497830 +1703.519142 +1703.566462 +1703.603691 +1703.619542 +1703.657604 +1703.684077 +1703.709019 +1703.766295 +1703.821007 +1703.854140 +1703.876318 +1703.888572 +1703.913115 +1703.935326 +1703.961666 +1704.032562 +1704.092435 +1704.162831 +1704.177750 +1704.261865 +1704.276651 +1704.293467 +1704.321772 +1704.420706 +1704.441253 +1704.460067 +1704.486940 +1704.543184 +1704.573520 +1704.599827 +1704.621206 +1704.660034 +1704.685242 +1704.716011 +1704.736890 +1704.763264 +1704.781212 +1704.807652 +1704.848944 +1704.866260 +1704.890902 +1704.921272 +1704.938854 +1704.952507 +1704.993233 +1705.007186 +1705.046946 +1705.062098 +1705.091335 +1705.125135 +1705.185607 +1705.199294 +1705.230696 +1705.274219 +1705.291302 +1705.341252 +1705.364895 +1705.390969 +1705.414312 +1705.425934 +1705.437722 +1705.455870 +1705.486173 +1705.523436 +1705.569823 +1705.593632 +1705.616443 +1705.631794 +1705.679047 +1705.723935 +1705.743016 +1705.769789 +1705.803056 +1705.839719 +1705.848677 +1705.878381 +1705.900425 +1705.918774 +1705.936356 +1705.952906 +1709.902686 +1717.978668 +1719.973072 +1725.978460 +1726.073166 +1727.574729 +1728.973596 +1729.275027 +1729.474827 +1735.979716 +1735.991504 +1736.007688 +1736.040522 +1736.076086 +1736.106089 +1736.139090 +1736.160801 +1736.256872 +1736.270491 +1736.368826 +1736.433828 +1736.481480 +1736.505856 +1736.554740 +1736.569226 +1736.616745 +1736.641154 +1736.683511 +1736.698430 +1736.754374 +1736.791703 +1736.809152 +1736.922039 +1736.957770 +1736.976385 +1736.993201 +1737.028300 +1737.069192 +1737.102958 +1737.136325 +1737.160267 +1737.187440 +1737.200594 +1737.247214 +1737.276385 +1737.312582 +1737.342751 +1737.365395 +1737.400827 +1737.470457 +1737.487440 +1737.514613 +1737.549744 +1737.564629 +1737.633494 +1737.666927 +1737.681945 +1737.716411 +1737.744716 +1737.768692 +1737.795931 +1737.806121 +1737.850810 +1737.889138 +1737.914246 +1737.987306 +1738.023237 +1738.092434 +1738.115744 +1738.153373 +1738.178149 +1738.221039 +1738.275251 +1738.299993 +1738.330096 +1738.356770 +1738.420140 +1738.445314 +1738.466993 +1738.505188 +1738.542750 +1738.567159 +1738.592967 +1738.605954 +1738.619140 +1738.675051 +1738.704955 +1738.731528 +1738.744149 +1738.771521 +1738.783776 +1738.811548 +1738.847212 +1738.886206 +1738.907285 +1738.929563 +1738.951241 +1738.988304 +1739.017175 +1739.041618 +1739.064262 +1739.114944 +1739.159133 +1739.182377 +1739.220705 +1739.252640 +1739.277615 +1739.348943 +1739.377748 +1739.415676 +1739.448310 +1739.473585 +1739.495596 +1739.513978 +1739.549143 +1739.579146 +1739.608983 +1739.621470 +1739.654637 +1739.668090 +1739.681410 +1739.703888 +1739.742116 +1739.767891 +1739.786405 +1739.811514 +1739.829129 +1739.851673 +1739.880811 +1739.971187 +1739.986072 +1740.023401 +1740.042216 +1740.054770 +1740.096062 +1740.120604 +1740.132526 +1740.164260 +1740.186405 +1740.217973 +1740.248909 +1740.315509 +1740.345745 +1740.372785 +1740.407317 +1740.448842 +1740.518073 +1740.540717 +1740.569322 +1740.586238 +1740.616674 +1740.665625 +1740.708915 +1740.738186 +1740.764992 +1740.797360 +1740.812312 +1740.873650 +1740.898059 +1740.919671 +1740.947443 +1749.605110 +1750.972042 +1751.973306 +1754.972604 +1755.229713 +1761.473363 +1761.573596 +1761.774562 +1762.574261 +1762.773395 +1763.074494 +1763.174594 +1763.475093 +1763.575126 +1763.875059 +1764.074893 +1764.374326 +1764.775258 +1765.374159 +1770.495099 +1770.978982 +1770.986541 +1771.035192 +1771.058868 +1771.080180 +1771.109817 +1771.130929 +1771.182911 +1771.212481 +1771.274719 +1771.304989 +1771.360500 +1771.410783 +1771.429764 +1771.456204 +1771.489637 +1771.520007 +1771.564729 +1771.576950 +1771.604855 +1771.646480 +1771.657935 +1771.693000 +1771.732694 +1771.771954 +1771.799360 +1771.814878 +1771.835724 +1771.849277 +1771.875284 +1771.898028 +1771.911049 +1771.942084 +1771.983809 +1772.010749 +1772.024735 +1772.050009 +1772.075351 +1772.098861 +1772.128364 +1772.175384 +1772.226300 +1772.261331 +1772.288704 +1772.314545 +1772.346513 +1772.388004 +1772.422237 +1772.454937 +1772.490002 +1772.516942 +1772.545214 +1772.611880 +1772.627132 +1772.652806 +1772.679080 +1772.706985 +1772.768224 +1772.832293 +1772.861930 +1772.887005 +1772.949276 +1772.986772 +1773.011214 +1773.039952 +1773.077980 +1773.088803 +1773.159998 +1773.198726 +1773.271387 +1773.291733 +1773.327864 +1773.351706 +1773.395263 +1773.427897 +1773.454637 +1773.493132 +1773.548276 +1773.600757 +1773.624034 +1773.680977 +1773.692665 +1773.730427 +1773.755003 +1773.790534 +1773.818572 +1773.860197 +1773.926265 +1773.990733 +1774.007417 +1774.047343 +1774.076081 +1774.133790 +1774.177080 +1774.203953 +1774.233657 +1774.258199 +1774.283640 +1774.297060 +1774.340783 +1774.432158 +1774.449741 +1774.477846 +1774.546011 +1774.633290 +1774.665225 +1774.690466 +1774.724466 +1774.742548 +1774.773450 +1774.815308 +1774.852904 +1774.894129 +1774.922834 +1774.980742 +1775.040116 +1775.055601 +1775.085005 +1775.099257 +1775.137985 +1775.174249 +1775.196427 +1775.211578 +1775.295427 +1775.322034 +1775.346676 +1775.396393 +1775.427162 +1775.472850 +1775.493363 +1775.507748 +1775.552404 +1775.617672 +1775.653935 +1775.684038 +1775.712477 +1775.726563 +1775.756799 +1775.773715 +1775.789067 +1775.803885 +1775.818570 +1775.940282 +1786.979532 +1789.972969 +1797.874659 +1798.974991 +1799.474724 +1799.774690 +1806.003822 +1806.035989 +1806.068490 +1806.096296 +1806.148244 +1806.163595 +1806.209050 +1806.230062 +1806.267957 +1806.305120 +1806.331460 +1806.365127 +1806.403988 +1806.442582 +1806.455803 +1806.482276 +1806.528829 +1806.564194 +1806.593232 +1806.689668 +1806.802522 +1806.831427 +1806.860797 +1806.890567 +1806.929129 +1806.939618 +1806.979045 +1806.992932 +1807.053438 +1807.096594 +1807.134756 +1807.163960 +1807.192165 +1807.230460 +1807.263094 +1807.277780 +1807.319005 +1807.346911 +1807.369654 +1807.399558 +1807.424300 +1807.456135 +1807.488169 +1807.516474 +1807.531093 +1807.570420 +1807.604486 +1807.631259 +1807.668422 +1807.770387 +1807.847976 +1807.871818 +1807.886570 +1807.925332 +1807.949974 +1808.012311 +1808.026597 +1808.068555 +1808.093530 +1808.121868 +1808.162428 +1808.196493 +1808.230393 +1808.249008 +1808.271552 +1808.308248 +1808.355001 +1808.378045 +1808.405684 +1808.427928 +1808.456167 +1808.494528 +1808.533822 +1808.548774 +1808.576080 +1808.610412 +1808.632424 +1808.695827 +1808.721768 +1808.751172 +1808.784105 +1808.809979 +1808.826396 +1808.847508 +1808.879310 +1808.892463 +1808.918171 +1809.040815 +1809.054834 +1809.067954 +1809.096792 +1809.124564 +1809.143812 +1809.173349 +1809.252736 +1809.283872 +1809.308181 +1809.328460 +1809.390232 +1809.466555 +1809.504051 +1809.524231 +1809.563558 +1809.608480 +1809.634387 +1809.652003 +1809.691897 +1809.703718 +1809.724531 +1809.752303 +1809.783538 +1809.820401 +1809.846575 +1809.875280 +1809.895193 +1809.946142 +1809.979575 +1810.009978 +1810.038416 +1810.056765 +1810.080008 +1810.110078 +1810.170884 +1810.209911 +1810.242512 +1810.265689 +1810.292096 +1810.323265 +1810.349305 +1810.409079 +1810.490264 +1810.505882 +1810.542778 +1810.560793 +1810.579275 +1810.623131 +1810.653834 +1810.678842 +1810.707147 +1810.725895 +1810.740946 +1810.794693 +1810.816970 +1810.840846 +1810.885568 +1810.904616 +1810.937250 +1810.963857 +1814.379404 +1824.973000 +1828.171199 +1828.174396 +1831.674192 +1831.774858 +1831.874825 +1831.974325 +1832.275757 +1832.474924 +1833.575323 +1835.175321 +1840.972218 +1840.993064 +1841.029095 +1841.043347 +1841.054136 +1841.084539 +1841.117107 +1841.143813 +1841.202155 +1841.268488 +1841.293597 +1841.347909 +1841.386570 +1841.417672 +1841.462494 +1841.509847 +1841.540782 +1841.580443 +1841.604419 +1841.642614 +1841.660429 +1841.694229 +1841.709014 +1841.735488 +1841.772883 +1841.804618 +1841.838484 +1841.890999 +1841.920835 +1841.944945 +1841.976879 +1842.000056 +1842.041315 +1842.069986 +1842.080675 +1842.155334 +1842.184338 +1842.206350 +1842.307715 +1842.349673 +1842.375813 +1842.401987 +1842.447342 +1842.462060 +1842.510412 +1842.535853 +1842.569952 +1842.600688 +1842.673648 +1842.700488 +1842.756332 +1842.770851 +1842.811710 +1842.845077 +1842.861860 +1842.916139 +1842.958197 +1843.021001 +1843.038250 +1843.069019 +1843.114474 +1843.153202 +1843.193328 +1843.289532 +1843.340248 +1843.369752 +1843.397191 +1843.435120 +1843.489199 +1843.513541 +1843.555732 +1843.587767 +1843.610078 +1843.651237 +1843.673248 +1843.688200 +1843.780108 +1843.802718 +1843.834853 +1843.907447 +1843.938649 +1843.967620 +1843.994360 +1844.097556 +1844.124962 +1844.150404 +1844.191962 +1844.206015 +1844.264489 +1844.279241 +1844.300953 +1844.334619 +1844.351336 +1844.363890 +1844.411076 +1844.427426 +1844.453234 +1844.472281 +1844.500720 +1844.529158 +1844.546940 +1844.577776 +1844.607812 +1844.632521 +1844.651535 +1844.700353 +1844.721732 +1844.755931 +1844.776377 +1844.826926 +1844.844076 +1844.878408 +1844.943643 +1844.968451 +1845.031089 +1845.059527 +1845.081671 +1845.110576 +1845.132754 +1845.160825 +1845.178807 +1845.222797 +1845.260193 +1845.286500 +1845.300885 +1845.327858 +1845.379706 +1845.417136 +1845.447239 +1845.514571 +1845.552800 +1845.578241 +1845.625693 +1845.675510 +1845.722996 +1845.742676 +1845.772746 +1845.803182 +1845.826626 +1845.850901 +1845.880572 +1845.905280 +1845.928390 +1845.960658 +1858.971934 +1865.972859 +1867.274789 +1867.674656 +1867.773956 +1868.174822 +1868.474988 +1869.273455 +1869.773888 +1869.874287 +1870.175020 +1870.374919 +1870.974985 +1875.972716 +1875.979543 +1875.986935 +1876.011111 +1876.026962 +1876.043745 +1876.070585 +1876.095260 +1876.132589 +1876.169452 +1876.194328 +1876.231757 +1876.256032 +1876.325263 +1876.350238 +1876.395460 +1876.480974 +1876.507647 +1876.529825 +1876.569918 +1876.594261 +1876.620701 +1876.645809 +1876.687900 +1876.714707 +1876.737217 +1876.763991 +1876.788100 +1876.842645 +1876.875879 +1876.907713 +1876.919835 +1876.942212 +1876.960327 +1876.984969 +1877.022265 +1877.046308 +1877.103218 +1877.135019 +1877.205748 +1877.220767 +1877.245708 +1877.259162 +1877.295858 +1877.336784 +1877.369917 +1877.398189 +1877.412109 +1877.448406 +1877.483271 +1877.550170 +1877.577077 +1877.596158 +1877.637949 +1877.678042 +1877.705049 +1877.744409 +1877.786234 +1877.815638 +1877.854066 +1877.871882 +1877.895058 +1877.942877 +1877.970849 +1878.020666 +1878.026127 +1878.058528 +1878.089464 +1878.111808 +1878.148072 +1878.171415 +1878.212907 +1878.239680 +1878.261858 +1878.285035 +1878.324395 +1878.343942 +1878.377609 +1878.421731 +1878.454432 +1878.469117 +1878.487732 +1878.527059 +1878.559194 +1878.578441 +1878.591595 +1878.607545 +1878.651768 +1878.695624 +1878.781405 +1878.813273 +1878.829323 +1878.857662 +1878.899653 +1878.931854 +1878.958627 +1878.988630 +1879.014604 +1879.074345 +1879.128823 +1879.187032 +1879.215836 +1879.262823 +1879.292293 +1879.352566 +1879.369083 +1879.458027 +1879.486465 +1879.517101 +1879.529156 +1879.558027 +1879.586266 +1879.631420 +1879.702516 +1879.728024 +1879.790561 +1879.819798 +1879.849102 +1879.872712 +1879.891660 +1879.931953 +1879.946605 +1879.992226 +1880.050667 +1880.067517 +1880.096954 +1880.158859 +1880.175642 +1880.201450 +1880.224360 +1880.245905 +1880.304214 +1880.317867 +1880.345938 +1880.364020 +1880.379738 +1880.408476 +1880.435216 +1880.454163 +1880.486131 +1880.516135 +1880.540677 +1880.588629 +1880.605579 +1880.656927 +1880.691759 +1880.709508 +1880.736048 +1880.755029 +1880.801982 +1880.830920 +1880.873610 +1880.893890 +1880.909008 +1880.932585 +1894.972764 +1901.073024 +1901.974155 +1902.674554 +1904.674286 +1904.674519 +1910.978708 +1910.992994 +1911.009344 +1911.038548 +1911.061259 +1911.074179 +1911.098855 +1911.107746 +1911.143510 +1911.161792 +1911.205814 +1911.239214 +1911.261958 +1911.284968 +1911.307979 +1911.350037 +1911.372314 +1911.385734 +1911.419634 +1911.436150 +1911.459427 +1911.491861 +1911.570649 +1911.607645 +1911.622331 +1911.652401 +1911.685867 +1911.699853 +1911.777376 +1911.795924 +1911.816736 +1911.853799 +1911.917968 +1911.953066 +1911.977642 +1912.005181 +1912.024661 +1912.044741 +1912.070449 +1912.097222 +1912.120166 +1912.137382 +1912.174744 +1912.185800 +1912.219866 +1912.236849 +1912.290395 +1912.309376 +1912.335217 +1912.349503 +1912.377941 +1912.413106 +1912.439380 +1912.484368 +1912.497488 +1912.526592 +1912.541377 +1912.563922 +1912.589429 +1912.618134 +1912.641777 +1912.663022 +1912.692826 +1912.740611 +1912.763355 +1912.787165 +1912.842143 +1912.888796 +1912.909442 +1912.963022 +1912.988064 +1913.029289 +1913.070015 +1913.094590 +1913.124261 +1913.136515 +1913.188896 +1913.230188 +1913.245439 +1913.271480 +1913.298320 +1913.339578 +1913.368816 +1913.382469 +1913.406478 +1913.422296 +1913.446938 +1913.462988 +1913.489528 +1913.531153 +1913.572112 +1913.585266 +1913.601283 +1913.616335 +1913.628856 +1913.656195 +1913.671380 +1913.710540 +1913.732285 +1913.769215 +1913.785898 +1913.800584 +1913.851466 +1913.875942 +1913.905079 +1913.933484 +1913.950034 +1913.965852 +1913.988063 +1914.008809 +1914.021496 +1914.049201 +1914.063787 +1914.113071 +1914.123860 +1914.167450 +1914.180070 +1914.208209 +1914.224126 +1914.256827 +1914.298285 +1914.325758 +1914.342974 +1914.370846 +1914.388595 +1914.428222 +1914.444905 +1914.487929 +1914.500983 +1914.519497 +1914.546370 +1914.560856 +1914.574009 +1914.591392 +1914.621395 +1914.679770 +1914.696487 +1914.722960 +1914.739510 +1914.756194 +1914.770946 +1914.786563 +1914.840110 +1914.852531 +1914.868415 +1914.882201 +1914.907742 +1914.925691 +1914.939344 +1914.954162 +1914.969480 +1914.995854 +1915.011405 +1915.025191 +1915.056859 +1915.072444 +1915.087695 +1915.102680 +1915.116267 +1915.130852 +1915.145371 +1915.159923 +1915.191391 +1915.208608 +1915.235547 +1915.252364 +1915.266649 +1915.282034 +1915.297485 +1915.313802 +1915.328687 +1915.344638 +1915.359523 +1915.374874 +1915.413169 +1915.448800 +1915.505144 +1915.521628 +1915.547668 +1915.563386 +1915.579403 +1915.617698 +1915.636313 +1915.682367 +1915.725357 +1915.793489 +1915.808807 +1915.824791 +1915.853928 +1915.868314 +1915.899449 +1915.914701 +1915.928320 +1915.941740 +1928.971831 +1931.584715 +1933.213551 +1935.971890 +1936.072423 +1937.173920 +1937.373654 +1937.874186 +1938.372154 +1938.874185 +1939.474451 +1939.774184 +1944.670383 +1944.680839 +1944.708545 +1945.978340 +1945.991527 +1946.005247 +1946.024328 +1946.058960 +1946.081504 +1946.125660 +1946.194990 +1946.248570 +1946.282969 +1946.319332 +1946.346439 +1946.370714 +1946.395956 +1946.421364 +1946.465053 +1946.486632 +1946.509342 +1946.527624 +1946.543108 +1946.583501 +1946.622695 +1946.649469 +1946.687131 +1946.733884 +1946.794490 +1946.834317 +1946.863987 +1946.887863 +1946.984000 +1947.013204 +1947.051400 +1947.084799 +1947.123461 +1947.146737 +1947.173577 +1947.200484 +1947.280936 +1947.296721 +1947.355429 +1947.368249 +1947.383700 +1947.444073 +1947.473577 +1947.503947 +1947.525558 +1947.547669 +1947.576141 +1947.601682 +1947.622528 +1947.655528 +1947.668948 +1947.705212 +1947.727623 +1947.837146 +1947.891592 +1947.915501 +1947.931818 +1947.958725 +1947.983500 +1948.024093 +1948.036480 +1948.096920 +1948.120929 +1948.149400 +1948.164552 +1948.188495 +1948.214435 +1948.230386 +1948.288095 +1948.352131 +1948.366217 +1948.393156 +1948.419364 +1948.462221 +1948.483999 +1948.507142 +1948.532750 +1948.565551 +1948.580236 +1948.606609 +1948.634015 +1948.648834 +1948.676673 +1948.691758 +1948.715034 +1948.730219 +1948.753562 +1948.768914 +1948.793789 +1948.821461 +1948.846969 +1948.881501 +1948.923659 +1948.962353 +1948.998650 +1949.015500 +1949.068913 +1949.100881 +1949.153029 +1949.192023 +1949.245803 +1949.273375 +1949.287761 +1949.329319 +1949.359722 +1949.388660 +1949.411304 +1949.430418 +1949.452396 +1949.467414 +1949.481567 +1949.527055 +1949.546435 +1949.571910 +1949.587394 +1949.601514 +1949.629785 +1949.661553 +1949.701180 +1949.719129 +1949.772343 +1949.791190 +1949.816931 +1949.830285 +1949.855759 +1949.909472 +1949.964517 +1949.989292 +1950.019029 +1950.046735 +1950.061919 +1950.120194 +1950.136411 +1950.160687 +1950.195419 +1950.220927 +1950.240907 +1950.255892 +1950.318329 +1950.359755 +1950.379368 +1950.399082 +1950.414233 +1950.431949 +1950.463051 +1950.504177 +1950.542771 +1950.558755 +1950.574739 +1950.595818 +1950.609072 +1950.624889 +1950.641239 +1950.667447 +1950.683131 +1950.694852 +1950.714766 +1950.757723 +1950.799648 +1950.818395 +1950.848898 +1950.886294 +1961.977592 +1964.976989 +1972.873618 +1975.774081 +1980.991692 +1981.152897 +1981.193756 +1981.282301 +1981.435581 +1981.570146 +1981.596387 +1981.677406 +1981.712271 +1981.733916 +1981.750000 +1981.758991 +1981.805844 +1981.845271 +1981.887196 +1981.916300 +1981.957525 +1981.984598 +1982.014701 +1982.028820 +1982.121295 +1982.159656 +1982.190525 +1982.225790 +1982.269746 +1982.291191 +1982.318764 +1982.379170 +1982.406509 +1982.531750 +1982.566649 +1982.583399 +1982.614035 +1982.629120 +1982.677238 +1982.709373 +1982.734514 +1982.759855 +1982.785496 +1982.848267 +1982.885197 +1982.916132 +1982.939143 +1982.963418 +1982.978703 +1983.005776 +1983.034947 +1983.069479 +1983.110538 +1983.170844 +1983.259422 +1983.310371 +1983.338842 +1983.412036 +1983.440907 +1983.463751 +1983.487061 +1983.574174 +1983.596618 +1983.639641 +1983.660787 +1983.688992 +1983.706841 +1983.760387 +1983.776971 +1983.804110 +1983.832948 +1983.873074 +1983.902112 +1983.945169 +1983.980234 +1983.998682 +1984.058589 +1984.083097 +1984.109604 +1984.124090 +1984.136677 +1984.182798 +1984.198782 +1984.223923 +1984.239574 +1984.289824 +1984.333946 +1984.440739 +1984.466247 +1984.521259 +1984.545734 +1984.572441 +1984.597582 +1984.634878 +1984.649963 +1984.676503 +1984.719327 +1984.746234 +1984.812168 +1984.842604 +1984.870876 +1984.894319 +1984.905408 +1984.932514 +1984.964648 +1985.011901 +1985.036410 +1985.075537 +1985.096949 +1985.114465 +1985.185327 +1985.210935 +1985.228051 +1985.252960 +1985.292387 +1985.324288 +1985.356689 +1985.420625 +1985.437442 +1985.460619 +1985.491188 +1985.541338 +1985.559686 +1985.578634 +1985.602377 +1985.629250 +1985.646566 +1985.673239 +1985.732846 +1985.748930 +1985.779433 +1985.793319 +1985.807072 +1985.834744 +1985.863315 +1985.886459 +1985.899746 +1985.913832 +1985.927251 +1996.971896 +1998.972493 +2000.855508 +2000.899364 +2001.746783 +2002.644884 +2006.071487 +2007.474483 +2008.174815 +2008.572117 +2010.374813 +2015.205011 +2016.012836 +2016.024624 +2016.046635 +2016.079902 +2016.103678 +2016.129552 +2016.161986 +2016.186029 +2016.218563 +2016.290058 +2016.316332 +2016.413302 +2016.438843 +2016.464617 +2016.495786 +2016.512602 +2016.549732 +2016.583331 +2016.624590 +2016.661620 +2016.700015 +2016.733115 +2016.787261 +2016.813834 +2016.831883 +2016.909172 +2016.919262 +2016.946235 +2016.984297 +2017.043837 +2017.125422 +2017.154293 +2017.226055 +2017.239808 +2017.266281 +2017.278136 +2017.306075 +2017.348565 +2017.371775 +2017.478702 +2017.517896 +2017.542305 +2017.582997 +2017.649431 +2017.688359 +2017.729651 +2017.791822 +2017.808771 +2017.874206 +2017.897150 +2017.957589 +2018.027186 +2018.054725 +2018.079534 +2018.110702 +2018.166014 +2018.220659 +2018.239773 +2018.300479 +2018.340306 +2018.390689 +2018.419593 +2018.449630 +2018.465947 +2018.513499 +2018.538241 +2018.549963 +2018.611534 +2018.652860 +2018.719526 +2018.734911 +2018.788724 +2018.803942 +2018.831781 +2018.847332 +2018.860752 +2018.885427 +2018.916496 +2018.945367 +2018.975970 +2019.002676 +2019.026985 +2019.052560 +2019.069609 +2019.106506 +2019.130415 +2019.157222 +2019.197814 +2019.214431 +2019.228650 +2019.282829 +2019.338007 +2019.360285 +2019.386592 +2019.417428 +2019.459819 +2019.520158 +2019.550628 +2019.580764 +2019.633978 +2019.671140 +2019.716129 +2019.745866 +2019.772739 +2019.784993 +2019.871074 +2019.896182 +2019.914863 +2019.943435 +2019.964480 +2019.980364 +2020.004207 +2020.049229 +2020.079598 +2020.106671 +2020.125685 +2020.153424 +2020.195582 +2020.228649 +2020.245765 +2020.374303 +2020.408835 +2020.424953 +2020.439371 +2020.454789 +2020.479498 +2020.493251 +2020.524020 +2020.569441 +2020.628582 +2020.681396 +2020.702441 +2020.728815 +2020.746597 +2020.772904 +2020.795115 +2020.817926 +2020.858951 +2020.884326 +2031.972993 +2032.972626 +2033.980417 +2042.774747 +2042.974347 +2043.875745 +2044.275745 +2044.675877 +2050.979268 +2051.011003 +2051.027553 +2051.055658 +2051.070410 +2051.109171 +2051.144003 +2051.157356 +2051.190456 +2051.237409 +2051.282065 +2051.305541 +2051.318095 +2051.339607 +2051.356157 +2051.405807 +2051.446034 +2051.484862 +2051.521025 +2051.546633 +2051.574472 +2051.615198 +2051.650030 +2051.687292 +2051.725188 +2051.758021 +2051.801212 +2051.831714 +2051.859853 +2051.894119 +2051.914864 +2051.941072 +2051.953526 +2052.016996 +2052.050495 +2052.072440 +2052.149396 +2052.212433 +2052.263749 +2052.276403 +2052.329583 +2052.354291 +2052.392087 +2052.420325 +2052.516928 +2052.521091 +2052.565347 +2052.595050 +2052.614031 +2052.651494 +2052.688990 +2052.703975 +2052.760518 +2052.788856 +2052.806838 +2052.915563 +2052.938906 +2052.978267 +2053.027651 +2053.059452 +2053.084927 +2053.102476 +2053.155922 +2053.184061 +2053.209069 +2053.280797 +2053.307137 +2053.320091 +2053.332812 +2053.402775 +2053.437740 +2053.458319 +2053.483328 +2053.539139 +2053.572772 +2053.614363 +2053.642369 +2053.672505 +2053.696648 +2053.751260 +2053.776135 +2053.806904 +2053.872738 +2053.905305 +2053.930014 +2053.957287 +2053.986857 +2054.011532 +2054.043334 +2054.098479 +2054.135575 +2054.165478 +2054.179165 +2054.221755 +2054.259184 +2054.305838 +2054.373970 +2054.396647 +2054.427416 +2054.452791 +2054.512098 +2054.553656 +2054.584659 +2054.627616 +2054.660017 +2054.682661 +2054.741568 +2054.777266 +2054.800975 +2054.846696 +2054.882227 +2054.912530 +2054.950093 +2054.977932 +2055.007868 +2055.019024 +2055.049627 +2055.082061 +2055.134641 +2055.148694 +2055.213196 +2055.239337 +2055.257685 +2055.280429 +2055.296779 +2055.340269 +2055.365077 +2055.381727 +2055.411897 +2055.454055 +2055.509932 +2055.552024 +2055.583059 +2055.613495 +2055.653622 +2055.678464 +2055.705104 +2055.734075 +2055.760681 +2055.804071 +2055.826582 +2055.864045 +2055.873402 +2055.906735 +2055.942166 +2055.956852 +2062.201900 +2076.072483 +2076.875446 +2079.575809 +2079.675842 +2080.975874 +2086.359652 +2086.410068 +2086.488023 +2086.512932 +2086.539705 +2086.579099 +2086.603508 +2086.612166 +2086.638972 +2086.649295 +2086.704074 +2086.731946 +2086.767277 +2086.789488 +2086.817993 +2086.851426 +2086.869042 +2086.897813 +2086.949228 +2086.976767 +2087.004107 +2087.048496 +2087.080097 +2087.109568 +2087.135309 +2087.169508 +2087.193051 +2087.219358 +2087.268742 +2087.289854 +2087.313863 +2087.357187 +2087.380796 +2087.421089 +2087.451326 +2087.536940 +2087.570839 +2087.594549 +2087.611765 +2087.625551 +2087.654256 +2087.731912 +2087.803840 +2087.846197 +2087.890353 +2087.922221 +2087.948528 +2088.001142 +2088.031279 +2088.059284 +2088.091618 +2088.148228 +2088.177366 +2088.206503 +2088.227715 +2088.269307 +2088.318857 +2088.333143 +2088.345531 +2088.372037 +2088.383859 +2088.412730 +2088.453389 +2088.525184 +2088.549859 +2088.577965 +2088.604938 +2088.666376 +2088.694814 +2088.732943 +2088.776899 +2088.787588 +2088.828381 +2088.850092 +2088.865910 +2088.911997 +2088.935041 +2088.955820 +2088.980528 +2088.999742 +2089.021687 +2089.051291 +2089.085490 +2089.114627 +2089.142500 +2089.158384 +2089.252223 +2089.284358 +2089.309466 +2089.348660 +2089.366675 +2089.402173 +2089.428547 +2089.455619 +2089.465343 +2089.494514 +2089.519589 +2089.559649 +2089.568740 +2089.611730 +2089.641034 +2089.681127 +2089.731044 +2089.807267 +2089.823618 +2089.848992 +2089.863511 +2089.936338 +2089.964310 +2089.987753 +2090.012529 +2090.081526 +2090.119688 +2090.135472 +2090.162645 +2090.198809 +2090.224616 +2090.239901 +2090.257150 +2090.270737 +2090.329245 +2090.342698 +2090.362545 +2090.393281 +2090.417523 +2090.447726 +2090.492182 +2090.524716 +2090.596244 +2090.611163 +2090.661579 +2090.781925 +2090.799175 +2090.869138 +2090.914326 +2090.952121 +2110.973447 +2110.973680 +2111.073913 +2112.079573 +2112.673478 +2112.975110 +2113.475809 +2113.873744 +2114.275874 +2114.475774 +2114.674875 +2114.974741 +2115.275873 +2115.374641 +2115.473842 +2115.675740 +2115.974607 +2120.980263 +2121.025551 +2121.044932 +2121.081995 +2121.106936 +2121.170706 +2121.239437 +2121.313563 +2121.349660 +2121.372437 +2121.411598 +2121.452058 +2121.490552 +2121.517126 +2121.585857 +2121.614062 +2121.655354 +2121.672770 +2121.712763 +2121.751558 +2121.812730 +2121.826416 +2121.871671 +2121.909167 +2121.948960 +2121.981028 +2122.022886 +2122.096146 +2122.182227 +2122.211031 +2122.249759 +2122.279696 +2122.307468 +2122.376632 +2122.439869 +2122.469539 +2122.496612 +2122.568207 +2122.599442 +2122.637671 +2122.671903 +2122.689685 +2122.729612 +2122.762879 +2122.801107 +2122.949858 +2122.977331 +2123.013994 +2123.037271 +2123.078863 +2123.093981 +2123.120887 +2123.135273 +2123.206102 +2123.244697 +2123.307600 +2123.330611 +2123.429745 +2123.509099 +2123.529745 +2123.578163 +2123.606901 +2123.633474 +2123.673301 +2123.696811 +2123.766408 +2123.793114 +2123.826048 +2123.884856 +2123.914027 +2123.941832 +2123.981759 +2124.012328 +2124.025182 +2124.095944 +2124.112095 +2124.145595 +2124.230010 +2124.262544 +2124.287952 +2124.310130 +2124.337136 +2124.353986 +2124.383590 +2124.425215 +2124.491215 +2124.558282 +2124.598175 +2124.618122 +2124.646060 +2124.674332 +2124.706766 +2124.740100 +2124.756716 +2124.799041 +2124.842664 +2124.877063 +2124.910129 +2124.944262 +2124.971435 +2125.012727 +2125.087319 +2125.122384 +2125.144795 +2125.191981 +2125.225114 +2125.240998 +2125.280459 +2125.310695 +2125.341165 +2125.368371 +2125.401205 +2125.415024 +2125.444162 +2125.474498 +2125.510895 +2125.562110 +2125.583189 +2125.600638 +2125.659912 +2125.685087 +2125.729443 +2125.750888 +2125.776662 +2125.804834 +2125.911627 +2136.973088 +2147.173977 +2147.573976 +2147.874109 +2147.974475 +2148.373709 +2148.472577 +2149.174308 +2149.373841 +2149.471210 +2149.574274 +2149.674574 +2149.974540 +2150.074407 +2150.174506 +2150.774439 +2155.985190 +2155.999842 +2156.012463 +2156.053488 +2156.076732 +2156.109998 +2156.144930 +2156.188020 +2156.217724 +2156.267008 +2156.301407 +2156.314360 +2156.391716 +2156.435872 +2156.450125 +2156.487720 +2156.531476 +2156.587620 +2156.702572 +2156.740967 +2156.762845 +2156.815126 +2156.842365 +2156.887320 +2156.930677 +2156.944763 +2156.980727 +2157.007700 +2157.023551 +2157.046394 +2157.119754 +2157.135638 +2157.192648 +2157.220753 +2157.244762 +2157.278862 +2157.306800 +2157.322285 +2157.334006 +2157.378862 +2157.414126 +2157.441466 +2157.456817 +2157.495944 +2157.556550 +2157.591515 +2157.611695 +2157.634506 +2157.649990 +2157.674499 +2157.711062 +2157.726847 +2157.748858 +2157.776364 +2157.804369 +2157.826014 +2157.870203 +2157.914326 +2157.940466 +2157.974599 +2158.027013 +2158.060912 +2158.075231 +2158.103669 +2158.128345 +2158.170769 +2158.217655 +2158.243363 +2158.257415 +2158.283689 +2158.353786 +2158.380859 +2158.396576 +2158.435437 +2158.456516 +2158.470735 +2158.494079 +2158.578094 +2158.600139 +2158.631275 +2158.657082 +2158.677129 +2158.692746 +2158.718354 +2158.741831 +2158.760512 +2158.784288 +2158.807964 +2158.872999 +2158.901704 +2158.925780 +2158.944461 +2158.959446 +2158.982523 +2159.043762 +2159.096276 +2159.119686 +2159.189616 +2159.223182 +2159.244727 +2159.269702 +2159.285220 +2159.309995 +2159.334537 +2159.351187 +2159.425513 +2159.443661 +2159.463075 +2159.478360 +2159.494344 +2159.533605 +2159.547058 +2159.576262 +2159.614757 +2159.627677 +2159.659545 +2159.703568 +2159.718952 +2159.749888 +2159.770701 +2159.789582 +2159.847624 +2159.870834 +2159.888549 +2159.903468 +2159.929841 +2159.957747 +2160.001103 +2160.019885 +2160.062608 +2160.078626 +2160.107996 +2160.145026 +2160.192578 +2160.206964 +2160.268036 +2160.291679 +2160.327110 +2160.340830 +2160.389048 +2160.402801 +2160.419485 +2160.439331 +2160.452418 +2160.475662 +2160.493810 +2160.522182 +2160.541762 +2160.576827 +2160.620084 +2160.650420 +2160.668136 +2160.681023 +2160.696541 +2160.713357 +2160.729441 +2160.758678 +2160.848622 +2160.874929 +2160.890846 +2160.910493 +2170.971256 +2174.971784 +2180.970846 +2183.072742 +2183.572708 +2183.773341 +2183.972275 +2184.072874 +2184.871908 +2185.673405 +2185.972539 +2190.978095 +2190.992548 +2191.003270 +2191.054785 +2191.067273 +2191.080493 +2191.140366 +2191.165341 +2191.205934 +2191.251355 +2191.293546 +2191.320952 +2191.357382 +2191.383789 +2191.407532 +2191.446260 +2191.474332 +2191.538035 +2191.564542 +2191.587086 +2191.640566 +2191.666273 +2191.689217 +2191.704402 +2191.731042 +2191.769670 +2191.796443 +2191.834538 +2191.908497 +2191.930209 +2191.958680 +2191.985953 +2192.068038 +2192.108963 +2192.140465 +2192.163642 +2192.192080 +2192.206532 +2192.236969 +2192.293345 +2192.334637 +2192.359579 +2192.391314 +2192.421384 +2192.453851 +2192.491580 +2192.570068 +2192.597441 +2192.649822 +2192.677361 +2192.699539 +2192.728443 +2192.754550 +2192.789182 +2192.813092 +2192.840531 +2192.856482 +2192.881090 +2192.916388 +2192.929942 +2192.977494 +2193.004134 +2193.027377 +2193.057547 +2193.090181 +2193.117820 +2193.142495 +2193.167837 +2193.196608 +2193.251886 +2193.290514 +2193.316654 +2193.361310 +2193.385785 +2193.412092 +2193.438199 +2193.468369 +2193.506098 +2193.596907 +2193.618486 +2193.631240 +2193.687716 +2193.738332 +2193.787550 +2193.822182 +2193.842961 +2193.870733 +2193.893477 +2193.920950 +2193.938199 +2193.975528 +2193.992811 +2194.025312 +2194.059577 +2194.093410 +2194.122481 +2194.145392 +2194.167769 +2194.227409 +2194.250253 +2194.274995 +2194.290013 +2194.319784 +2194.334635 +2194.360177 +2194.400836 +2194.419018 +2194.434402 +2194.510260 +2194.537099 +2194.566537 +2194.582221 +2194.607895 +2194.652884 +2194.713023 +2194.730972 +2194.756480 +2194.788514 +2194.801435 +2194.823579 +2194.843126 +2194.866969 +2194.916353 +2194.938598 +2194.976793 +2194.993676 +2195.017385 +2195.043259 +2195.103566 +2195.126676 +2195.159210 +2195.199903 +2195.227275 +2195.343759 +2195.384984 +2195.402367 +2195.519150 +2195.534501 +2195.682187 +2195.728440 +2195.796206 +2195.840461 +2206.704953 +2211.705414 +2214.445804 +2216.806308 +2217.407872 +2217.602478 +2217.702478 +2217.802477 +2217.902211 +2218.002277 +2218.302577 +2218.502543 +2218.902643 +2219.302642 +2219.702709 +2219.902675 +2220.102642 +2220.302741 +2220.402775 +2220.409068 +2220.502808 +2221.002807 +2221.202641 +2221.402807 +2221.502740 +2221.602707 +2221.702707 +2226.067271 +2226.082389 +2226.091114 +2226.098007 +2226.101170 +2226.705499 +2226.711393 +2226.718353 +2226.724879 +2226.733870 +2226.742029 +2226.751386 +2226.768636 +2226.818153 +2226.835269 +2226.848089 +2226.858812 +2226.905865 +2226.936901 +2226.951852 +2226.962242 +2226.982422 +2227.010860 +2227.020783 +2227.044959 +2227.066970 +2227.079991 +2227.112758 +2227.141795 +2227.162408 +2227.175995 +2227.185618 +2227.205765 +2227.246457 +2227.268502 +2227.296241 +2227.318752 +2227.333603 +2227.343727 +2227.365971 +2227.387749 +2227.431172 +2227.455615 +2227.481489 +2227.494309 +2227.506897 +2227.534702 +2227.576527 +2227.587449 +2227.598172 +2227.617086 +2227.628641 +2227.656680 +2227.718185 +2227.740030 +2227.760143 +2227.780390 +2227.804599 +2227.834202 +2227.857113 +2227.870599 +2227.891878 +2227.928175 +2227.948788 +2227.960010 +2227.999071 +2228.045324 +2228.060642 +2228.074062 +2228.085884 +2228.099204 +2228.120516 +2228.133536 +2228.160509 +2228.183186 +2228.218118 +2228.231405 +2228.244991 +2228.284318 +2228.306829 +2228.316453 +2228.327941 +2228.341561 +2228.355281 +2228.377592 +2228.392444 +2228.406296 +2228.420416 +2228.444325 +2228.459943 +2228.519983 +2228.532836 +2228.544791 +2228.556280 +2228.568068 +2228.596839 +2228.617185 +2228.627275 +2228.652916 +2228.664704 +2228.678624 +2228.707129 +2228.760475 +2228.771264 +2228.785983 +2228.797471 +2228.811391 +2228.840129 +2228.853282 +2228.864604 +2228.879290 +2228.904231 +2228.944291 +2228.986049 +2228.998071 +2229.014787 +2229.027508 +2229.040495 +2229.081720 +2229.096739 +2229.127941 +2229.166169 +2229.224311 +2229.278190 +2229.305496 +2229.318217 +2229.342692 +2229.355713 +2229.381986 +2229.396672 +2229.408993 +2229.422746 +2229.453282 +2229.477091 +2229.488646 +2229.502133 +2229.536565 +2229.547720 +2229.563305 +2229.576758 +2229.623611 +2229.649652 +2229.664603 +2229.721380 +2229.732669 +2229.747221 +2229.766735 +2229.778390 +2229.803531 +2229.842026 +2229.857011 +2229.893075 +2229.938063 +2229.954313 +2230.009292 +2230.020814 +2230.049052 +2230.163204 +2230.206461 +2230.283650 +2230.340061 +2230.353847 +2230.420480 +2230.675425 +2230.690510 +2230.809124 +2231.011822 +2231.044456 +2231.091309 +2231.253147 +2231.449084 +2243.707813 +2246.708043 +2252.204008 +2252.604208 +2252.704241 +2252.804341 +2253.004307 +2255.204438 +2255.304471 +2255.404504 +2255.504471 +2255.704471 +2256.204504 +2256.304404 +2256.504470 +2256.604503 +2256.704536 +2261.707229 +2261.728707 +2261.745790 +2261.775227 +2261.793076 +2261.838864 +2261.876293 +2261.906130 +2261.929107 +2262.008560 +2262.020349 +2262.090012 +2262.116486 +2262.133202 +2262.155080 +2262.193276 +2262.217052 +2262.241561 +2262.251917 +2262.301634 +2262.345956 +2262.367901 +2262.403931 +2262.433835 +2262.447754 +2262.470098 +2262.492909 +2262.519416 +2262.566602 +2262.582153 +2262.604198 +2262.643258 +2262.681487 +2262.712189 +2262.736598 +2262.757711 +2262.781687 +2262.848919 +2262.889579 +2262.984450 +2263.006861 +2263.024177 +2263.048753 +2263.073827 +2263.094207 +2263.105363 +2263.125809 +2263.139229 +2263.160308 +2263.220747 +2263.248686 +2263.300168 +2263.340694 +2263.351649 +2263.367800 +2263.392508 +2263.405962 +2263.416884 +2263.437796 +2263.497403 +2263.522478 +2263.561273 +2263.574460 +2263.604763 +2263.629172 +2263.645056 +2263.667333 +2263.698169 +2263.711090 +2263.749784 +2263.788579 +2263.810856 +2263.865202 +2263.877490 +2263.918315 +2263.948685 +2263.985215 +2264.024476 +2264.043956 +2264.108359 +2264.164402 +2264.299001 +2264.327173 +2264.410190 +2264.591175 +2264.617615 +2264.660173 +2264.713153 +2264.728072 +2264.784482 +2264.894838 +2264.938561 +2265.050249 +2265.064168 +2265.078487 +2265.093472 +2265.206126 +2265.253346 +2265.283282 +2265.307525 +2265.378287 +2265.408291 +2265.639060 +2266.023541 +2276.703551 +2277.703883 +2278.704115 +2279.704114 +2279.709475 +2280.704146 +2280.709607 +2286.904606 +2287.705638 +2287.805371 +2289.505436 +2290.205402 +2291.005268 +2291.105268 +2291.205468 +2296.703930 +2296.714320 +2296.721546 +2296.730204 +2296.761040 +2296.768832 +2296.778755 +2296.797836 +2296.824809 +2296.842092 +2296.890610 +2296.907660 +2296.938496 +2296.980886 +2297.000234 +2297.019581 +2297.046288 +2297.056777 +2297.079887 +2297.120680 +2297.130370 +2297.163237 +2297.193973 +2297.207326 +2297.218149 +2297.239694 +2297.248752 +2297.267699 +2297.289844 +2297.326707 +2297.363437 +2297.387213 +2297.403930 +2297.419114 +2297.443523 +2297.460207 +2297.482684 +2297.519581 +2297.530403 +2297.580187 +2297.599567 +2297.637063 +2297.660773 +2297.698568 +2297.734099 +2297.748218 +2297.760639 +2297.793939 +2297.847086 +2297.877855 +2297.907292 +2297.942857 +2297.957942 +2297.971661 +2298.017182 +2298.032567 +2298.047419 +2298.069563 +2298.158608 +2298.183250 +2298.208324 +2298.219680 +2298.244355 +2298.254778 +2298.275024 +2298.293639 +2298.307991 +2298.320212 +2298.340825 +2298.351847 +2298.381185 +2298.408491 +2298.420745 +2298.433566 +2298.457908 +2298.472094 +2298.492140 +2298.510589 +2298.521944 +2298.536096 +2298.548950 +2298.561704 +2298.589510 +2298.603396 +2298.617115 +2298.648384 +2298.671328 +2298.748650 +2298.780652 +2298.792706 +2298.808124 +2298.822210 +2298.841158 +2298.851680 +2298.862137 +2298.884914 +2298.895736 +2298.907258 +2298.959073 +2298.970095 +2298.981617 +2299.003995 +2299.025873 +2299.039093 +2299.050981 +2299.091740 +2299.107924 +2299.122010 +2299.134564 +2299.158840 +2299.181584 +2299.199299 +2299.248550 +2299.260771 +2299.309755 +2299.360338 +2299.396069 +2299.407824 +2299.421344 +2299.446618 +2299.461337 +2299.484680 +2299.500664 +2299.513851 +2299.527204 +2299.579285 +2299.588376 +2299.598566 +2299.646418 +2299.686878 +2299.712652 +2299.740324 +2299.755309 +2299.782982 +2299.808889 +2299.822242 +2299.953577 +2300.021010 +2300.034496 +2300.059838 +2300.125339 +2300.264033 +2315.711137 +2319.404574 +2321.804738 +2322.105570 +2322.205670 +2322.405703 +2325.905932 +2326.105766 +2331.710056 +2331.715584 +2331.721178 +2331.729836 +2331.749017 +2331.777422 +2331.802930 +2331.825673 +2331.845221 +2331.867731 +2331.905294 +2331.920778 +2331.950748 +2331.969829 +2331.984881 +2332.040592 +2332.051248 +2332.083649 +2332.150082 +2332.167198 +2332.204128 +2332.218181 +2332.239726 +2332.261870 +2332.284514 +2332.313285 +2332.326106 +2332.371793 +2332.398667 +2332.419479 +2332.443721 +2332.489309 +2332.529469 +2332.556975 +2332.592739 +2332.621710 +2332.633998 +2332.645952 +2332.669229 +2332.694171 +2332.735163 +2332.746185 +2332.766998 +2332.789109 +2332.801130 +2332.820145 +2332.860804 +2332.885279 +2332.901430 +2332.924074 +2332.934896 +2333.019412 +2333.040624 +2333.059505 +2333.087111 +2333.115882 +2333.152246 +2333.166997 +2333.199665 +2333.213051 +2333.231100 +2333.250680 +2333.308289 +2333.325439 +2333.350214 +2333.363168 +2333.397300 +2333.416514 +2333.432398 +2333.452212 +2333.465698 +2333.501929 +2333.530201 +2333.555242 +2333.568529 +2333.607590 +2333.620244 +2333.645185 +2333.658206 +2333.684479 +2333.698665 +2333.723341 +2333.749947 +2333.788708 +2333.800763 +2333.826604 +2333.840357 +2333.856474 +2333.869061 +2333.881316 +2333.896168 +2333.919178 +2333.946850 +2333.960536 +2334.011652 +2334.046417 +2334.073923 +2334.088209 +2334.140123 +2334.180017 +2334.193137 +2334.206657 +2334.248049 +2334.287409 +2334.315614 +2334.355941 +2334.367895 +2334.381948 +2334.442088 +2334.466996 +2334.479883 +2334.510220 +2334.533896 +2334.555940 +2334.568628 +2334.591205 +2334.610652 +2334.638158 +2334.651312 +2334.664132 +2334.686843 +2334.714748 +2334.748448 +2334.777985 +2334.803193 +2334.841754 +2334.901095 +2334.925271 +2334.934728 +2334.978950 +2335.023539 +2335.079583 +2335.136293 +2335.167029 +2335.182214 +2335.195134 +2335.265863 +2335.335860 +2335.479283 +2335.494301 +2335.508287 +2335.523072 +2335.679582 +2335.695034 +2335.737891 +2335.828400 +2336.108620 +2336.185942 +2336.394234 +2336.593368 +2346.704680 +2347.705111 +2348.710838 +2349.710870 +2351.705207 +2351.711068 +2356.704603 +2356.709265 +2356.805369 +2356.910763 +2357.106168 +2357.606367 +2366.716414 +2366.721909 +2366.736694 +2366.755042 +2366.770860 +2366.796268 +2366.817880 +2366.849648 +2366.926338 +2366.941922 +2366.964067 +2366.993104 +2367.015149 +2367.028003 +2367.064233 +2367.120110 +2367.134363 +2367.200463 +2367.231532 +2367.264199 +2367.289041 +2367.337027 +2367.349880 +2367.371492 +2367.394402 +2367.441222 +2367.488808 +2367.556440 +2367.565931 +2367.603327 +2367.626370 +2367.648415 +2367.675188 +2367.715148 +2367.741189 +2367.784246 +2367.817912 +2367.842887 +2367.893470 +2367.916480 +2367.938258 +2367.972990 +2368.009187 +2368.039890 +2368.054941 +2368.068095 +2368.089673 +2368.128334 +2368.153243 +2368.166197 +2368.201828 +2368.217146 +2368.242787 +2368.267595 +2368.281215 +2368.302960 +2368.319343 +2368.334461 +2368.367861 +2368.398264 +2368.466396 +2368.483745 +2368.495400 +2368.590905 +2368.605490 +2368.620076 +2368.654375 +2368.687808 +2368.716412 +2368.745883 +2368.758504 +2368.819543 +2368.846849 +2368.874554 +2368.887641 +2368.900428 +2368.913748 +2368.925736 +2368.950079 +2368.966162 +2369.017678 +2369.034527 +2369.085443 +2369.097598 +2369.111017 +2369.135460 +2369.161467 +2369.200594 +2369.244917 +2369.260301 +2369.273188 +2369.299063 +2369.313581 +2369.349778 +2369.380315 +2369.394434 +2369.418809 +2369.441254 +2369.452775 +2369.468560 +2369.479549 +2369.514946 +2369.534094 +2369.547048 +2369.561566 +2369.576785 +2369.591037 +2369.605489 +2369.617744 +2369.633328 +2369.686075 +2369.723971 +2369.767893 +2369.788806 +2369.824237 +2369.876584 +2369.889605 +2369.915479 +2369.930897 +2369.959069 +2370.056205 +2370.214713 +2370.406554 +2370.510483 +2370.613314 +2370.715944 +2370.837289 +2370.866194 +2370.911215 +2370.925301 +2371.253406 +2371.374518 +2371.577049 +2371.687738 +2373.357433 +2383.711236 +2385.705806 +2386.706005 +2392.006666 +2392.507231 +2392.606399 +2392.807431 +2392.907397 +2393.907097 +2396.407327 +2396.507360 +2396.707393 +2401.710419 +2401.749113 +2401.759969 +2401.809153 +2401.839623 +2401.863033 +2401.905657 +2401.948147 +2401.972157 +2401.983412 +2401.995300 +2402.018377 +2402.096932 +2402.110618 +2402.143585 +2402.168394 +2402.191371 +2402.234694 +2402.254707 +2402.288740 +2402.324770 +2402.347414 +2402.371390 +2402.416046 +2402.433861 +2402.467061 +2402.487141 +2402.501127 +2402.550411 +2402.598896 +2402.616945 +2402.639755 +2402.665030 +2402.688806 +2402.724304 +2402.739156 +2402.772889 +2402.788673 +2402.825869 +2402.838057 +2402.881213 +2402.903991 +2402.926135 +2402.944117 +2402.986342 +2402.999861 +2403.012149 +2403.051976 +2403.074353 +2403.088140 +2403.110917 +2403.128932 +2403.145149 +2403.171157 +2403.201426 +2403.229898 +2403.239588 +2403.264030 +2403.276618 +2403.298729 +2403.318343 +2403.332062 +2403.356704 +2403.372155 +2403.385109 +2403.408586 +2403.436125 +2403.450777 +2403.476185 +2403.489704 +2403.503624 +2403.527400 +2403.539821 +2403.567460 +2403.590337 +2403.604789 +2403.654872 +2403.669225 +2403.690104 +2403.702025 +2403.748146 +2403.777683 +2403.800993 +2403.816677 +2403.840720 +2403.863364 +2403.882211 +2403.895099 +2403.919241 +2403.933360 +2403.968791 +2403.984542 +2404.007619 +2404.036390 +2404.071988 +2404.096497 +2404.112414 +2404.124302 +2404.153074 +2404.207319 +2404.223237 +2404.237123 +2404.264895 +2404.278715 +2404.305754 +2404.336890 +2404.376084 +2404.415078 +2404.432028 +2404.455504 +2404.487406 +2404.513979 +2404.529064 +2404.585374 +2404.600726 +2404.616743 +2404.643350 +2404.658434 +2404.673186 +2404.688504 +2404.729197 +2404.744781 +2404.760399 +2404.774651 +2404.798894 +2404.817608 +2404.876316 +2404.904155 +2404.918807 +2404.945913 +2404.961964 +2404.990102 +2405.020372 +2405.033159 +2405.086406 +2405.102390 +2405.151075 +2405.162663 +2405.178481 +2405.202357 +2405.230861 +2405.243182 +2405.259100 +2405.282510 +2405.293699 +2405.318074 +2405.330229 +2405.363229 +2405.377914 +2405.393698 +2405.434957 +2405.482010 +2405.495863 +2405.508250 +2405.522037 +2405.538121 +2405.566825 +2405.626332 +2405.656202 +2405.730994 +2405.775383 +2405.790768 +2405.803855 +2405.866026 +2405.943148 +2405.973951 +2406.019539 +2406.079878 +2406.095096 +2406.111047 +2406.168123 +2406.335722 +2406.369721 +2406.448543 +2406.478180 +2406.495529 +2406.629928 +2406.694530 +2417.705674 +2418.710901 +2419.705672 +2421.711098 +2426.805732 +2426.906065 +2427.306664 +2427.806796 +2428.106896 +2430.507060 +2431.306759 +2431.606759 +2431.706759 +2436.708985 +2436.716045 +2436.728033 +2436.737157 +2436.745549 +2436.764430 +2436.781612 +2436.800860 +2436.821572 +2436.853274 +2436.864896 +2436.886541 +2436.907253 +2436.954739 +2436.975352 +2437.007886 +2437.034260 +2437.045981 +2437.080380 +2437.115512 +2437.136757 +2437.182844 +2437.216610 +2437.262032 +2437.278948 +2437.308418 +2437.319740 +2437.347146 +2437.353174 +2437.363930 +2437.434792 +2437.447612 +2437.466494 +2437.514845 +2437.552408 +2437.566360 +2437.601658 +2437.615111 +2437.658834 +2437.684375 +2437.708585 +2437.730962 +2437.744315 +2437.772953 +2437.784775 +2437.838854 +2437.901824 +2437.920006 +2437.932760 +2437.956736 +2437.976516 +2437.990536 +2438.011515 +2438.031761 +2438.075884 +2438.087838 +2438.115810 +2438.167492 +2438.182011 +2438.227399 +2438.287072 +2438.317875 +2438.353739 +2438.377382 +2438.393765 +2438.428031 +2438.452673 +2438.465860 +2438.517675 +2438.527931 +2438.548510 +2438.571088 +2438.598227 +2438.622436 +2438.646279 +2438.693399 +2438.728397 +2438.748710 +2438.769989 +2438.783009 +2438.835057 +2438.866825 +2438.878680 +2438.887038 +2438.897161 +2438.931194 +2438.980212 +2439.043082 +2439.086139 +2439.100591 +2439.141617 +2439.155270 +2439.194197 +2439.229262 +2439.243448 +2439.272852 +2439.287005 +2439.298526 +2439.382043 +2439.450907 +2439.475249 +2439.491933 +2439.503854 +2439.600025 +2439.641383 +2439.669855 +2439.685306 +2439.726265 +2439.764227 +2439.780377 +2439.795462 +2439.820637 +2439.836554 +2439.850740 +2439.954270 +2440.004087 +2440.097926 +2440.168056 +2440.304186 +2440.420803 +2440.541682 +2440.692031 +2441.409946 +2441.568920 +2452.705206 +2455.704271 +2455.705170 +2455.711064 +2456.710697 +2462.906328 +2463.006028 +2463.206494 +2464.306260 +2465.306392 +2466.106525 +2466.206092 +2471.704854 +2471.729230 +2471.743449 +2471.782743 +2471.826632 +2471.848011 +2471.867292 +2471.900026 +2471.910515 +2471.946379 +2471.966159 +2471.978114 +2471.997295 +2472.059766 +2472.083309 +2472.091534 +2472.118573 +2472.150308 +2472.177048 +2472.222802 +2472.245047 +2472.268390 +2472.307917 +2472.322569 +2472.397261 +2472.442016 +2472.456702 +2472.478613 +2472.529162 +2472.545846 +2472.557834 +2472.578413 +2472.639086 +2472.695962 +2472.715909 +2472.741450 +2472.758067 +2472.778746 +2472.824400 +2472.849009 +2472.869022 +2472.884407 +2472.904620 +2472.920271 +2472.932459 +2472.962529 +2472.976615 +2473.002822 +2473.013977 +2473.027763 +2473.048343 +2473.078180 +2473.092365 +2473.118672 +2473.143115 +2473.164660 +2473.200990 +2473.222868 +2473.248875 +2473.271786 +2473.289135 +2473.317373 +2473.339651 +2473.348509 +2473.373617 +2473.394063 +2473.426564 +2473.447810 +2473.461796 +2473.475382 +2473.489035 +2473.511546 +2473.526664 +2473.538652 +2473.563294 +2473.576114 +2473.599524 +2473.614376 +2473.636188 +2473.665858 +2473.680710 +2473.702854 +2473.719205 +2473.730194 +2473.782841 +2473.796560 +2473.820070 +2473.858831 +2473.906450 +2473.932158 +2473.947376 +2473.963493 +2474.019238 +2474.062694 +2474.078578 +2474.105551 +2474.131692 +2474.155435 +2474.169953 +2474.187769 +2474.228561 +2474.270086 +2474.326264 +2474.339817 +2474.380942 +2474.410513 +2474.437885 +2474.466756 +2474.505717 +2474.521402 +2474.580343 +2474.595228 +2474.607882 +2474.624798 +2474.777812 +2474.792930 +2474.895793 +2474.985970 +2475.001354 +2475.042480 +2475.100555 +2475.146309 +2475.178111 +2475.265690 +2475.280142 +2475.298390 +2475.312743 +2475.477245 +2475.508380 +2475.538717 +2475.706882 +2475.833521 +2475.889965 +2476.068453 +2476.535752 +2486.705339 +2486.711200 +2487.705504 +2487.710699 +2488.705603 +2488.712230 +2489.705203 +2489.710730 +2496.705229 +2496.711056 +2496.906228 +2497.106727 +2497.206860 +2497.507026 +2497.606960 +2498.007059 +2498.207059 +2498.407059 +2499.407124 +2501.107023 +2501.306989 +2501.706756 +2506.715009 +2506.721602 +2506.730027 +2506.743181 +2506.746311 +2506.779178 +2506.799158 +2506.818739 +2506.842748 +2506.874350 +2506.886937 +2506.921636 +2506.933024 +2506.961829 +2506.982575 +2507.001256 +2507.019704 +2507.042182 +2507.059631 +2507.084972 +2507.098891 +2507.139884 +2507.160097 +2507.189501 +2507.221336 +2507.233623 +2507.262594 +2507.275481 +2507.302754 +2507.313310 +2507.333956 +2507.352438 +2507.364059 +2507.373417 +2507.395794 +2507.413077 +2507.432657 +2507.446677 +2507.481642 +2507.505251 +2507.519770 +2507.542980 +2507.567289 +2507.590832 +2507.606716 +2507.628961 +2507.645245 +2507.659131 +2507.671918 +2507.706650 +2507.728561 +2507.751205 +2507.762727 +2507.782341 +2507.805817 +2507.868521 +2507.884205 +2507.894928 +2507.905750 +2507.916240 +2507.960829 +2507.973849 +2507.986370 +2508.097259 +2508.112344 +2508.136553 +2508.237818 +2508.274981 +2508.365290 +2508.401954 +2508.429493 +2508.441248 +2508.454534 +2508.494328 +2508.531591 +2508.552736 +2508.572050 +2508.592330 +2508.609479 +2508.623565 +2508.637551 +2508.651171 +2508.664391 +2508.677811 +2508.717072 +2508.741580 +2508.754701 +2508.768920 +2508.793062 +2508.817638 +2508.830625 +2508.840581 +2508.854601 +2508.888800 +2508.902919 +2509.027428 +2509.065523 +2509.078477 +2509.091563 +2509.186435 +2509.199189 +2509.265822 +2509.341214 +2509.353135 +2509.392928 +2509.414873 +2509.483538 +2509.498556 +2509.717703 +2509.733321 +2509.775279 +2509.787134 +2509.816338 +2509.898589 +2509.949904 +2510.111975 +2510.169118 +2510.252102 +2510.531855 +2510.562225 +2511.215737 +2521.705370 +2521.711198 +2522.705736 +2524.705600 +2524.710562 +2531.810955 +2532.106459 +2532.206592 +2532.706825 +2532.806824 +2532.906791 +2533.006858 +2533.506824 +2536.106788 +2536.606821 +2541.704884 +2541.714375 +2541.722034 +2541.735154 +2541.757665 +2541.780209 +2541.800089 +2541.891364 +2541.942913 +2541.965190 +2541.985803 +2541.996892 +2542.044644 +2542.055933 +2542.066755 +2542.092896 +2542.113708 +2542.127861 +2542.152003 +2542.172017 +2542.199156 +2542.223498 +2542.245410 +2542.342446 +2542.370751 +2542.381407 +2542.406182 +2542.440914 +2542.462426 +2542.479209 +2542.494660 +2542.507747 +2542.526595 +2542.543978 +2542.557064 +2542.579109 +2542.590897 +2542.612276 +2542.636552 +2542.669452 +2542.699888 +2542.710444 +2542.758796 +2542.779275 +2542.814607 +2542.830657 +2542.865056 +2542.877743 +2542.888699 +2542.911876 +2542.924763 +2542.936285 +2542.951969 +2542.973814 +2542.986535 +2543.013108 +2543.028626 +2543.039415 +2543.065389 +2543.088566 +2543.127460 +2543.141146 +2543.154999 +2543.175046 +2543.196957 +2543.211909 +2543.226894 +2543.276811 +2543.289731 +2543.308645 +2543.333620 +2543.351036 +2543.429957 +2543.443710 +2543.496224 +2543.522398 +2543.545375 +2543.586634 +2543.620567 +2543.649904 +2543.664289 +2543.691496 +2543.716004 +2543.729990 +2543.744010 +2543.807246 +2543.873047 +2543.886534 +2543.948538 +2543.960593 +2544.002018 +2544.012374 +2544.055631 +2544.068119 +2544.121465 +2544.134286 +2544.198188 +2544.282937 +2544.317802 +2544.385900 +2544.411941 +2544.461325 +2544.486833 +2544.524861 +2544.535351 +2544.548071 +2544.748704 +2544.854531 +2544.881638 +2544.919866 +2545.185633 +2545.405313 +2545.523828 +2557.710562 +2558.705067 +2559.705466 +2560.704099 +2560.711858 +2561.710725 +2565.080185 +2565.105460 +2565.133299 +2565.363002 +2566.705059 +2566.905891 +2566.916447 +2567.306590 +2567.506657 +2567.606723 +2569.006688 +2569.606821 +2570.206787 +2571.006720 +2571.106653 +2571.206686 +2571.306719 +2576.585968 +2576.704982 +2576.715805 +2576.734087 +2576.736817 +2576.755931 +2576.776244 +2576.787400 +2576.809678 +2576.821432 +2576.843943 +2576.867386 +2576.901053 +2576.914040 +2576.939481 +2576.962924 +2576.999188 +2577.019334 +2577.046307 +2577.069651 +2577.091362 +2577.114805 +2577.148006 +2577.162791 +2577.183270 +2577.205748 +2577.222464 +2577.240979 +2577.286567 +2577.315937 +2577.347040 +2577.396091 +2577.409377 +2577.457296 +2577.472148 +2577.491662 +2577.543809 +2577.553566 +2577.570716 +2577.596523 +2577.620666 +2577.640746 +2577.690562 +2577.702784 +2577.756130 +2577.786933 +2577.799187 +2577.858095 +2577.888764 +2577.927692 +2577.943509 +2577.963656 +2577.977242 +2578.000086 +2578.050602 +2578.061624 +2578.083169 +2578.108045 +2578.119533 +2578.131321 +2578.146473 +2578.159893 +2578.194358 +2578.211341 +2578.236050 +2578.256762 +2578.282870 +2578.300019 +2578.313472 +2578.335983 +2578.346306 +2578.359293 +2578.368384 +2578.380672 +2578.402117 +2578.426592 +2578.450602 +2578.464488 +2578.490795 +2578.510875 +2578.523296 +2578.573545 +2578.595157 +2578.622729 +2578.665253 +2578.707145 +2578.747005 +2578.773845 +2578.786599 +2578.843841 +2578.902016 +2578.919865 +2578.931554 +2578.996089 +2579.024860 +2579.070048 +2579.083701 +2579.134317 +2579.147671 +2579.190061 +2579.204247 +2579.217667 +2579.231320 +2579.245872 +2579.257327 +2579.272745 +2579.295123 +2579.312772 +2579.356129 +2579.480271 +2579.494190 +2579.507477 +2579.530987 +2579.546305 +2579.598453 +2579.623861 +2579.644773 +2579.672345 +2579.691959 +2579.749768 +2579.763820 +2579.872745 +2579.887597 +2579.893757 +2579.911906 +2579.955762 +2579.976474 +2580.005179 +2580.032618 +2580.091359 +2580.162921 +2580.178505 +2580.234649 +2580.290293 +2580.305545 +2580.319398 +2580.361722 +2580.406510 +2580.465518 +2580.494323 +2580.509074 +2580.522561 +2580.538678 +2580.554063 +2580.582568 +2580.627023 +2580.639277 +2580.668049 +2580.738678 +2580.857959 +2580.917066 +2580.930453 +2580.977905 +2581.139577 +2581.230486 +2581.391025 +2581.491291 +2581.551897 +2581.582666 +2581.622993 +2582.409505 +2591.710362 +2593.710060 +2595.710824 +2596.705728 +2596.710856 +2602.205223 +2605.606985 +2606.207251 +2606.306951 +2611.710076 +2611.716969 +2611.728957 +2611.766785 +2611.789729 +2611.811974 +2611.843209 +2611.858227 +2611.870715 +2611.896156 +2611.906279 +2611.915037 +2611.935283 +2611.995756 +2612.025293 +2612.037348 +2612.068117 +2612.085733 +2612.126392 +2612.145473 +2612.169349 +2612.190128 +2612.217801 +2612.231720 +2612.345107 +2612.364987 +2612.389396 +2612.404114 +2612.474777 +2612.497854 +2612.512073 +2612.534584 +2612.585832 +2612.611740 +2612.627990 +2612.698120 +2612.711740 +2612.732652 +2612.762289 +2612.782868 +2612.799785 +2612.830820 +2612.845539 +2612.860457 +2612.893258 +2612.924027 +2612.938912 +2612.960257 +2612.979738 +2612.996987 +2613.011440 +2613.034616 +2613.050700 +2613.074643 +2613.129921 +2613.180637 +2613.194456 +2613.215569 +2613.231985 +2613.274310 +2613.283734 +2613.309441 +2613.325292 +2613.338812 +2613.361090 +2613.377806 +2613.401149 +2613.425725 +2613.456061 +2613.470647 +2613.508542 +2613.551133 +2613.562321 +2613.576541 +2613.618299 +2613.665618 +2613.685531 +2613.699284 +2613.706078 +2613.721329 +2613.731852 +2613.776407 +2613.797852 +2613.814536 +2613.831252 +2613.853963 +2613.888528 +2613.907742 +2613.919397 +2613.944439 +2613.959557 +2613.999484 +2614.049301 +2614.076440 +2614.143040 +2614.157226 +2614.172211 +2614.197752 +2614.223360 +2614.239810 +2614.291725 +2614.306810 +2614.334182 +2614.345537 +2614.373676 +2614.398351 +2614.421561 +2614.435547 +2614.448201 +2614.461721 +2614.538511 +2614.565051 +2614.602980 +2614.628488 +2614.813169 +2614.824958 +2614.897385 +2614.922127 +2615.009373 +2615.025157 +2615.081434 +2615.107708 +2615.221860 +2615.320195 +2615.362886 +2615.568946 +2615.582333 +2615.903278 +2616.189592 +2616.349665 +2616.362518 +2616.500347 +2616.574939 +2616.592522 +2616.637943 +2616.653028 +2616.663650 +2626.711925 +2628.706029 +2629.706095 +2630.705927 +2631.706226 +2631.711754 +2635.118377 +2636.593034 +2636.704756 +2636.709851 +2637.107220 +2637.306753 +2638.607584 +2638.805886 +2639.307484 +2639.807550 +2640.307283 +2640.407549 +2643.836650 +2646.720963 +2646.735948 +2646.745705 +2646.755595 +2646.765552 +2646.802115 +2646.820463 +2646.841009 +2646.868715 +2646.900417 +2646.924659 +2646.957693 +2646.985298 +2647.005911 +2647.019231 +2647.042674 +2647.087829 +2647.144006 +2647.162721 +2647.186197 +2647.201482 +2647.240909 +2647.265618 +2647.315967 +2647.342041 +2647.366883 +2647.388794 +2647.403879 +2647.425458 +2647.446370 +2647.465484 +2647.517799 +2647.554662 +2647.587129 +2647.599284 +2647.674941 +2647.721362 +2647.750233 +2647.768148 +2647.824092 +2647.859090 +2647.884265 +2647.922260 +2647.934681 +2647.971611 +2648.019963 +2648.033249 +2648.074242 +2648.090226 +2648.102946 +2648.116499 +2648.141241 +2648.163119 +2648.187395 +2648.200282 +2648.224358 +2648.240575 +2648.265750 +2648.277738 +2648.299849 +2648.315833 +2648.343106 +2648.364917 +2648.381667 +2648.392323 +2648.414668 +2648.451730 +2648.473409 +2648.490492 +2648.516499 +2648.527821 +2648.559056 +2648.578037 +2648.593955 +2648.615300 +2648.657991 +2648.670678 +2648.701048 +2648.721594 +2648.749399 +2648.801980 +2648.819029 +2648.858257 +2648.884031 +2648.924624 +2648.945769 +2648.982732 +2649.003545 +2649.015566 +2649.058357 +2649.069312 +2649.082965 +2649.108673 +2649.122526 +2649.147367 +2649.164683 +2649.178303 +2649.206575 +2649.220827 +2649.234780 +2649.248000 +2649.275239 +2649.287860 +2649.345336 +2649.367114 +2649.406342 +2649.418063 +2649.454826 +2649.493188 +2649.524823 +2649.549099 +2649.599182 +2649.746268 +2649.763817 +2649.779302 +2649.794719 +2649.823224 +2649.850231 +2649.865449 +2649.879734 +2649.933381 +2649.975239 +2650.003877 +2650.090024 +2650.134712 +2650.147966 +2650.161952 +2650.194686 +2650.249398 +2650.277336 +2650.292455 +2650.374939 +2650.449697 +2650.463850 +2650.508105 +2650.563783 +2650.643603 +2650.681565 +2650.719560 +2650.735777 +2650.794852 +2650.914166 +2650.959953 +2651.094185 +2651.109070 +2651.155058 +2651.315730 +2651.330482 +2651.615697 +2651.656889 +2661.705097 +2661.710592 +2664.711355 +2665.711320 +2671.705687 +2671.712014 +2671.911547 +2672.207185 +2672.307284 +2672.407384 +2672.507384 +2673.107483 +2673.307516 +2673.407516 +2673.807483 +2674.107516 +2674.307582 +2674.507515 +2674.907415 +2675.007315 +2675.307215 +2675.406982 +2675.507448 +2675.607348 +2675.706981 +2675.907414 +2676.006981 +2676.407380 +2676.607247 +2676.707347 +2677.238382 +2678.074012 +2678.083303 +2680.967948 +2681.711005 +2681.729486 +2681.745570 +2681.803512 +2681.836213 +2681.847002 +2681.894388 +2681.916432 +2682.000115 +2682.063019 +2682.079136 +2682.096485 +2682.164284 +2682.190525 +2682.231550 +2682.252496 +2682.279535 +2682.303878 +2682.317830 +2682.343438 +2682.374274 +2682.409872 +2682.422559 +2682.450231 +2682.510371 +2682.548833 +2682.570877 +2682.619995 +2682.633481 +2682.658756 +2682.671377 +2682.694986 +2682.720128 +2682.745935 +2682.774274 +2682.787327 +2682.840208 +2682.868180 +2682.930717 +2682.974407 +2683.035013 +2683.058056 +2683.096618 +2683.118762 +2683.141006 +2683.159188 +2683.175705 +2683.211203 +2683.226721 +2683.240673 +2683.264749 +2683.277670 +2683.331949 +2683.378735 +2683.420726 +2683.445502 +2683.461086 +2683.484596 +2683.498915 +2683.511103 +2683.525322 +2683.577836 +2683.589724 +2683.611202 +2683.635312 +2683.664915 +2683.717096 +2683.777336 +2683.792521 +2683.805908 +2683.829684 +2683.844702 +2683.857922 +2683.884063 +2683.898248 +2683.935178 +2683.960653 +2683.973307 +2683.999147 +2684.091089 +2684.129650 +2684.144735 +2684.165614 +2684.191621 +2684.233912 +2684.263250 +2684.277535 +2684.305940 +2684.316130 +2684.333646 +2684.362617 +2684.420692 +2684.432580 +2684.476536 +2684.491821 +2684.506540 +2684.560918 +2684.615664 +2684.653226 +2684.695650 +2684.707938 +2684.749396 +2684.970275 +2684.983995 +2685.083862 +2685.098980 +2685.140905 +2685.212899 +2685.254458 +2685.269476 +2685.308770 +2685.323955 +2685.423055 +2685.508736 +2685.640871 +2685.656056 +2685.919359 +2685.932612 +2685.946498 +2686.096148 +2686.112166 +2686.231946 +2686.307836 +2686.341869 +2686.355422 +2686.482129 +2686.501776 +2686.536574 +2686.656621 +2686.670873 +2689.308666 +2696.705895 +2697.706293 +2699.707090 +2706.907117 +2707.207349 +2707.306417 +2707.407649 +2707.708081 +2708.007915 +2708.107881 +2708.307914 +2708.407648 +2708.807914 +2708.907914 +2709.107980 +2709.907913 +2710.007946 +2710.108012 +2710.207912 +2710.408112 +2711.307645 +2713.984665 +2716.716531 +2716.747633 +2716.758122 +2716.874672 +2716.946434 +2717.045468 +2717.067180 +2717.164183 +2717.175205 +2717.222624 +2717.263217 +2717.301778 +2717.322857 +2717.345867 +2717.367845 +2717.392754 +2717.418395 +2717.442071 +2717.453426 +2717.476936 +2717.508838 +2717.523323 +2717.539074 +2717.559354 +2717.583296 +2717.607805 +2717.635777 +2717.646600 +2717.665614 +2717.719627 +2717.741338 +2717.768178 +2717.808338 +2717.832980 +2717.846133 +2717.869943 +2717.889090 +2717.916862 +2717.935943 +2717.979200 +2717.999347 +2718.014998 +2718.043169 +2718.102077 +2718.116063 +2718.137175 +2718.202177 +2718.244068 +2718.258387 +2718.290988 +2718.316995 +2718.331780 +2718.381298 +2718.402809 +2718.416396 +2718.430681 +2718.448597 +2718.499346 +2718.527185 +2718.541637 +2718.581564 +2718.605939 +2718.618760 +2718.671141 +2718.684661 +2718.708836 +2718.725719 +2718.792186 +2718.819226 +2718.835543 +2718.858220 +2718.874604 +2718.898047 +2718.920458 +2718.965313 +2718.978233 +2719.016262 +2719.040338 +2719.051760 +2719.093485 +2719.180597 +2719.193917 +2719.272972 +2719.299012 +2719.323554 +2719.364613 +2719.382229 +2719.407237 +2719.436075 +2719.450561 +2719.465812 +2719.491453 +2719.543301 +2719.577533 +2719.590887 +2719.615462 +2719.632312 +2719.679332 +2719.696248 +2719.710900 +2719.739471 +2719.762115 +2719.808269 +2719.862348 +2719.956654 +2720.058019 +2720.072272 +2720.111865 +2720.122022 +2720.187256 +2720.225651 +2720.250493 +2720.297313 +2720.311266 +2720.398445 +2720.444166 +2720.483793 +2720.547962 +2720.606170 +2720.621189 +2720.682694 +2720.727549 +2720.812564 +2720.825051 +2720.854022 +2720.940469 +2721.021255 +2721.130046 +2721.175867 +2721.246529 +2721.318424 +2721.509366 +2732.706258 +2732.710421 +2736.711915 +2741.706049 +2741.711710 +2742.807680 +2743.007647 +2743.207846 +2743.507679 +2743.607779 +2743.907746 +2744.007712 +2744.307512 +2744.507712 +2744.607678 +2744.807645 +2745.007645 +2745.707444 +2745.707710 +2746.607476 +2751.709936 +2751.722789 +2751.778067 +2751.922789 +2751.944800 +2751.979899 +2751.993252 +2752.026718 +2752.067677 +2752.092186 +2752.125386 +2752.140105 +2752.163748 +2752.237108 +2752.293984 +2752.320757 +2752.358686 +2752.399445 +2752.424986 +2752.450827 +2752.496082 +2752.514097 +2752.545166 +2752.568010 +2752.599945 +2752.616628 +2752.666045 +2752.696381 +2752.718026 +2752.738573 +2752.757953 +2752.780264 +2752.793484 +2752.842868 +2752.866445 +2752.908802 +2752.957354 +2752.981696 +2753.004540 +2753.018392 +2753.043534 +2753.071106 +2753.085392 +2753.146531 +2753.158885 +2753.180963 +2753.205339 +2753.252958 +2753.277367 +2753.292951 +2753.307603 +2753.331879 +2753.399578 +2753.432744 +2753.456487 +2753.469108 +2753.491552 +2753.506870 +2753.545365 +2753.585525 +2753.640070 +2753.660816 +2753.677899 +2753.727916 +2753.742035 +2753.775535 +2753.814396 +2753.839970 +2753.855654 +2753.868175 +2753.894083 +2753.921555 +2753.937672 +2753.968009 +2753.981229 +2754.001275 +2754.030313 +2754.042301 +2754.063013 +2754.099244 +2754.115594 +2754.130513 +2754.185724 +2754.211898 +2754.240236 +2754.279796 +2754.296213 +2754.308101 +2754.346896 +2754.377698 +2754.447162 +2754.513329 +2754.529380 +2754.571771 +2754.615594 +2754.656086 +2754.670106 +2754.685857 +2754.701408 +2754.716160 +2754.740102 +2754.755986 +2754.825484 +2754.854854 +2754.866576 +2754.884491 +2754.913862 +2754.971104 +2755.043465 +2755.177598 +2755.251091 +2755.282060 +2755.296279 +2755.364344 +2755.439369 +2755.455420 +2755.471837 +2755.484657 +2755.500907 +2755.579063 +2755.604570 +2755.620854 +2755.758550 +2755.804936 +2755.866408 +2755.924916 +2755.956418 +2756.004137 +2756.032875 +2756.048093 +2756.095046 +2756.121853 +2756.176265 +2756.255785 +2756.400807 +2766.705092 +2768.710918 +2770.710116 +2776.704916 +2776.905748 +2777.106181 +2777.506413 +2777.706513 +2777.806480 +2778.906379 +2780.006178 +2781.306243 +2786.721755 +2786.776634 +2786.807503 +2786.821156 +2786.843467 +2786.868309 +2786.889554 +2786.912564 +2786.948795 +2786.968075 +2786.987922 +2787.010233 +2787.024519 +2787.048328 +2787.091152 +2787.103207 +2787.122288 +2787.140836 +2787.161848 +2787.178831 +2787.188188 +2787.223187 +2787.243600 +2787.253923 +2787.282627 +2787.302874 +2787.324086 +2787.354755 +2787.373736 +2787.390086 +2787.450459 +2787.472804 +2787.521921 +2787.543466 +2787.562547 +2787.588355 +2787.679963 +2787.704205 +2787.725517 +2787.754921 +2787.764745 +2787.778997 +2787.801408 +2787.815361 +2787.838737 +2787.866842 +2787.890152 +2787.930745 +2787.943166 +2787.955054 +2787.977032 +2788.037738 +2788.050325 +2788.073569 +2788.149959 +2788.162480 +2788.185124 +2788.195780 +2788.254854 +2788.299276 +2788.315260 +2788.327714 +2788.364877 +2788.393981 +2788.407901 +2788.432276 +2788.455453 +2788.495247 +2788.524517 +2788.537837 +2788.561414 +2788.576932 +2788.588087 +2788.604837 +2788.628613 +2788.654054 +2788.692882 +2788.705503 +2788.731011 +2788.758150 +2788.770638 +2788.783392 +2788.832709 +2788.901007 +2788.913528 +2788.955952 +2788.993182 +2789.016325 +2789.046195 +2789.111463 +2789.127847 +2789.197810 +2789.210231 +2789.231277 +2789.243964 +2789.270171 +2789.299142 +2789.312895 +2789.404537 +2789.417357 +2789.555386 +2789.600107 +2789.627913 +2789.667207 +2789.680027 +2789.709764 +2789.739601 +2789.754353 +2789.793680 +2789.835938 +2789.864776 +2789.905835 +2789.920687 +2789.961246 +2790.018222 +2790.033374 +2790.088152 +2790.103504 +2790.174499 +2790.187786 +2790.246827 +2790.277996 +2790.292448 +2790.306567 +2790.319387 +2790.335904 +2790.351056 +2790.365508 +2790.408099 +2790.424982 +2790.438002 +2790.494545 +2790.510263 +2790.554386 +2790.598708 +2790.628445 +2790.673167 +2790.686320 +2790.868205 +2790.995344 +2791.121584 +2791.137169 +2791.183489 +2813.106711 +2813.506744 +2814.806875 +2815.806874 +2821.709399 +2821.729313 +2821.738004 +2821.758051 +2821.807568 +2821.827281 +2821.850392 +2821.876932 +2821.914960 +2821.943199 +2821.966142 +2821.989286 +2821.997378 +2822.009299 +2822.041600 +2822.073601 +2822.091151 +2822.115093 +2822.142133 +2822.152689 +2822.177897 +2822.200907 +2822.211430 +2822.222652 +2822.234507 +2822.282659 +2822.294247 +2822.318290 +2822.355319 +2822.374933 +2822.389385 +2822.465676 +2822.486555 +2822.512429 +2822.538736 +2822.553954 +2822.572802 +2822.609632 +2822.651689 +2822.662312 +2822.704670 +2822.741699 +2822.776265 +2822.805202 +2822.840034 +2822.856085 +2822.868706 +2822.905968 +2822.950790 +2822.970204 +2823.000707 +2823.015026 +2823.029012 +2823.086521 +2823.096744 +2823.166774 +2823.179295 +2823.201139 +2823.229678 +2823.247027 +2823.259215 +2823.270470 +2823.302704 +2823.316690 +2823.340333 +2823.353121 +2823.367606 +2823.391316 +2823.404569 +2823.422351 +2823.444163 +2823.457450 +2823.473700 +2823.497743 +2823.508532 +2823.521152 +2823.549258 +2823.570237 +2823.589517 +2823.613593 +2823.628512 +2823.641232 +2823.662944 +2823.701838 +2823.713160 +2823.726314 +2823.740766 +2823.766340 +2823.789217 +2823.813959 +2823.849490 +2823.866274 +2823.879993 +2823.904003 +2823.918954 +2823.931542 +2823.946360 +2823.970902 +2823.994046 +2824.007466 +2824.074265 +2824.087918 +2824.113160 +2824.129577 +2824.163343 +2824.176596 +2824.230409 +2824.284821 +2824.294612 +2824.309530 +2824.330176 +2824.371335 +2824.390682 +2824.399873 +2824.423682 +2824.444661 +2824.458847 +2824.492846 +2824.507099 +2824.519786 +2824.533006 +2824.601005 +2824.614591 +2824.628810 +2824.669903 +2824.787785 +2824.830841 +2824.858281 +2824.970102 +2825.039866 +2825.080591 +2825.113958 +2825.127445 +2825.142063 +2825.155550 +2825.172433 +2825.213891 +2825.226612 +2825.280691 +2825.320252 +2825.336702 +2825.365773 +2825.466139 +2825.668769 +2825.712026 +2825.933205 +2825.977560 +2826.075729 +2826.624946 +2833.641189 +2833.765265 +2834.883179 +2835.884677 +2844.002617 +2844.006047 +2844.884068 +2845.083702 +2845.384134 +2845.881803 +2845.981803 +2845.984666 +2846.087464 +2846.381869 +2846.481869 +2846.581902 +2846.784399 +2846.881802 +2846.884632 +2846.981935 +2847.081802 +2847.181801 +2847.184499 +2847.381934 +2847.581934 +2847.584398 +2847.681834 +2847.684432 +2847.781901 +2847.881867 +2847.884631 +2848.084398 +2848.281934 +2848.381933 +2848.487361 +2849.081966 +2849.181933 +2849.384463 +2849.481999 +2849.884496 +2854.880761 +2854.884058 +2854.890751 +2854.904071 +2854.919556 +2854.928414 +2854.959183 +2854.978197 +2854.989386 +2855.016992 +2855.027481 +2855.038370 +2855.062912 +2855.082992 +2855.126749 +2855.152390 +2855.164444 +2855.186489 +2855.197478 +2855.211630 +2855.230511 +2855.244730 +2855.258350 +2855.288786 +2855.301640 +2855.337704 +2855.359083 +2855.416425 +2855.428380 +2855.442100 +2855.462279 +2855.486788 +2855.510531 +2855.521920 +2855.542566 +2855.567074 +2855.622119 +2855.650824 +2855.673301 +2855.689685 +2855.704470 +2855.726182 +2855.738336 +2855.766109 +2855.801340 +2855.816358 +2855.865942 +2855.879528 +2855.914693 +2855.930511 +2855.938436 +2855.968206 +2855.987154 +2856.000374 +2856.027514 +2856.049958 +2856.088186 +2856.101073 +2856.126148 +2856.145329 +2856.151689 +2856.165942 +2856.189218 +2856.204403 +2856.215758 +2856.227480 +2856.250557 +2856.266907 +2856.289718 +2856.316657 +2856.328579 +2856.356751 +2856.370837 +2856.391216 +2856.421919 +2856.432475 +2856.474866 +2856.517057 +2856.530044 +2856.542498 +2856.568372 +2856.582791 +2856.608199 +2856.618655 +2856.672868 +2856.695112 +2856.710397 +2856.750523 +2856.763943 +2856.779261 +2856.804502 +2856.831742 +2856.845328 +2856.877962 +2856.890883 +2856.901206 +2856.918555 +2856.933174 +2856.975898 +2856.987286 +2857.006767 +2857.070536 +2857.095811 +2857.108765 +2857.121052 +2857.151222 +2857.202437 +2857.230409 +2857.242198 +2857.254985 +2857.281658 +2857.293913 +2857.321718 +2857.332707 +2857.356850 +2857.373566 +2857.388751 +2857.406800 +2857.447992 +2857.476929 +2857.504369 +2857.531641 +2857.601205 +2857.644395 +2857.700506 +2857.714492 +2857.743862 +2857.756083 +2857.767505 +2857.778694 +2857.804135 +2857.858181 +2857.913892 +2857.926546 +2857.939733 +2857.952753 +2857.994811 +2858.034138 +2858.216889 +2858.243629 +2858.287185 +2858.300805 +2858.429443 +2858.443595 +2858.458314 +2858.472699 +2858.487917 +2858.531440 +2859.155815 +2859.186618 +2869.886074 +2873.886470 +2874.881940 +2874.886502 +2879.982568 +2880.083400 +2880.189427 +2881.890192 +2882.489259 +2889.883723 +2889.889018 +2889.900873 +2889.908765 +2889.941932 +2889.951889 +2889.978762 +2889.986387 +2889.998975 +2890.035904 +2890.051622 +2890.075032 +2890.122251 +2890.146527 +2890.159514 +2890.205135 +2890.217689 +2890.243330 +2890.263010 +2890.294579 +2890.312394 +2890.321552 +2890.356350 +2890.373100 +2890.397509 +2890.432041 +2890.441698 +2890.464209 +2890.492980 +2890.544129 +2890.627079 +2890.643696 +2890.662610 +2890.678295 +2890.700106 +2890.722584 +2890.736803 +2890.781758 +2890.821385 +2890.843096 +2890.853053 +2890.874898 +2890.933406 +2890.962610 +2890.984422 +2891.006400 +2891.029510 +2891.070136 +2891.082890 +2891.102204 +2891.135137 +2891.172700 +2891.193113 +2891.220485 +2891.266373 +2891.279593 +2891.290549 +2891.300672 +2891.319986 +2891.335803 +2891.356816 +2891.371434 +2891.390848 +2891.406532 +2891.429476 +2891.458780 +2891.473199 +2891.485387 +2891.508197 +2891.542230 +2891.555184 +2891.580125 +2891.591847 +2891.607465 +2891.681524 +2891.695743 +2891.721950 +2891.768770 +2891.850821 +2891.915889 +2892.027344 +2892.067671 +2892.135969 +2892.185886 +2892.225479 +2892.330807 +2892.345526 +2892.365606 +2892.413624 +2892.439798 +2892.506365 +2892.519152 +2892.542828 +2892.557281 +2892.812026 +2892.952052 +2892.964573 +2892.979358 +2893.185385 +2893.875694 +2905.891466 +2907.891198 +2915.187261 +2915.287361 +2915.787560 +2918.187758 +2919.587823 +2924.886186 +2924.890482 +2924.904501 +2924.910861 +2924.919719 +2924.939932 +2924.951287 +2924.960545 +2924.988484 +2924.999939 +2925.029909 +2925.039299 +2925.059113 +2925.071933 +2925.105566 +2925.126179 +2925.137867 +2925.158880 +2925.179959 +2925.196808 +2925.213758 +2925.244927 +2925.259113 +2925.279792 +2925.289815 +2925.309629 +2925.332506 +2925.363708 +2925.392879 +2925.411893 +2925.468303 +2925.488550 +2925.509429 +2925.532006 +2925.555116 +2925.571000 +2925.592412 +2925.675662 +2925.688117 +2925.709096 +2925.735835 +2925.749422 +2925.768569 +2925.790714 +2925.803801 +2925.825446 +2925.836401 +2925.882489 +2925.905932 +2925.923514 +2925.975029 +2926.031173 +2926.046758 +2926.060144 +2926.083687 +2926.094343 +2926.133704 +2926.146158 +2926.195542 +2926.205865 +2926.217753 +2926.239498 +2926.255116 +2926.276927 +2926.296574 +2926.317420 +2926.338366 +2926.359778 +2926.401036 +2926.412858 +2926.438898 +2926.487849 +2926.512258 +2926.551352 +2926.564073 +2926.591013 +2926.628675 +2926.639764 +2926.653950 +2926.667736 +2926.688582 +2926.699937 +2926.722681 +2926.756947 +2926.772431 +2926.798971 +2926.821715 +2926.873264 +2926.887483 +2926.901369 +2926.965604 +2927.029607 +2927.110726 +2927.150053 +2927.190379 +2927.231638 +2927.283686 +2927.377925 +2927.391012 +2927.418484 +2927.471332 +2927.616686 +2927.762440 +2927.790778 +2927.912590 +2927.989080 +2928.133602 +2928.305297 +2928.317917 +2928.566202 +2928.832069 +2929.042725 +2939.886870 +2939.891998 +2940.886903 +2942.892362 +2949.990190 +2950.588025 +2951.887924 +2951.988024 +2954.893482 +2959.886118 +2959.890047 +2959.895708 +2959.908961 +2959.919085 +2959.927942 +2959.945458 +2959.963973 +2959.982455 +2959.996973 +2960.019884 +2960.031605 +2960.053950 +2960.073064 +2960.082854 +2960.096041 +2960.127709 +2960.139564 +2960.153217 +2960.182288 +2960.206330 +2960.221515 +2960.239131 +2960.251852 +2960.271166 +2960.291012 +2960.304599 +2960.320949 +2960.352917 +2960.373197 +2960.402168 +2960.414156 +2960.442794 +2960.488215 +2960.498971 +2960.521582 +2960.544359 +2960.579790 +2960.641162 +2960.654182 +2960.666803 +2960.757512 +2960.776993 +2960.800536 +2960.817252 +2960.829840 +2960.843559 +2960.855148 +2960.878558 +2960.892743 +2960.904032 +2960.926776 +2960.963839 +2960.996739 +2961.017319 +2961.040495 +2961.061608 +2961.087548 +2961.107062 +2961.142893 +2961.156013 +2961.175927 +2961.201434 +2961.215687 +2961.227009 +2961.240196 +2961.253116 +2961.277225 +2961.288647 +2961.314688 +2961.347288 +2961.361907 +2961.387748 +2961.401068 +2961.462473 +2961.543226 +2961.557145 +2961.568500 +2961.592010 +2961.646689 +2961.680921 +2961.720715 +2961.743925 +2961.887448 +2961.944590 +2961.992609 +2962.016086 +2962.028573 +2962.040062 +2962.051583 +2962.065603 +2962.101933 +2962.150817 +2962.207894 +2962.255979 +2962.313122 +2962.325509 +2962.339229 +2962.363638 +2962.428972 +2962.441593 +2962.787047 +2962.929038 +2963.000900 +2963.040294 +2963.068565 +2963.322012 +2975.890697 +2985.289955 +2985.889888 +2987.193183 +2987.389687 +2987.489820 +2988.192616 +2988.293182 +2989.189685 +2989.587020 +2989.887087 +2994.885450 +2994.888613 +2994.895573 +2994.901301 +2994.909592 +2994.916419 +2994.930904 +2994.949319 +2994.996938 +2995.018717 +2995.038630 +2995.059109 +2995.080488 +2995.104497 +2995.115986 +2995.127907 +2995.159043 +2995.193908 +2995.218883 +2995.237498 +2995.250984 +2995.270265 +2995.303765 +2995.315653 +2995.326442 +2995.347188 +2995.406961 +2995.417850 +2995.430504 +2995.445423 +2995.463471 +2995.476092 +2995.501400 +2995.532968 +2995.550451 +2995.571097 +2995.593608 +2995.609891 +2995.623644 +2995.635233 +2995.657011 +2995.671297 +2995.692609 +2995.710724 +2995.740827 +2995.753181 +2995.766868 +2995.805129 +2995.815919 +2995.840461 +2995.862605 +2995.871330 +2995.888346 +2995.908792 +2995.923910 +2995.947154 +2995.969365 +2995.981020 +2995.993874 +2996.006428 +2996.037230 +2996.049485 +2996.063870 +2996.074426 +2996.096737 +2996.123644 +2996.137863 +2996.159608 +2996.175159 +2996.218982 +2996.229072 +2996.239594 +2996.252282 +2996.264536 +2996.284416 +2996.309558 +2996.373427 +2996.386048 +2996.397536 +2996.421013 +2996.448452 +2996.498002 +2996.531835 +2996.548552 +2996.625175 +2996.638229 +2996.688445 +2996.699667 +2996.724875 +2996.749018 +2996.761239 +2996.787346 +2996.813487 +2996.832867 +2996.858075 +2996.894272 +2996.917649 +2996.929570 +2996.963903 +2996.974625 +2996.987080 +2996.998901 +2997.076290 +2997.165135 +2997.177189 +2997.227272 +2997.297769 +2997.510955 +2997.536929 +2997.564135 +2997.589044 +2997.657708 +2997.672960 +2997.859873 +2998.011621 +2998.026206 +2998.508190 +3002.291303 +3002.303891 +3002.703557 +3010.890695 +3011.885866 +3012.891293 +3019.885325 +3019.889787 +3019.985958 +3020.086291 +3020.186557 +3020.286690 +3020.585957 +3020.786623 +3020.786823 +3021.186289 +3022.186821 +3022.886654 +3023.992281 +3024.186786 +3024.189550 +3024.286719 +3024.889016 +3029.885382 +3029.909458 +3029.925308 +3029.936897 +3029.947286 +3029.971529 +3029.991009 +3030.021545 +3030.051948 +3030.072694 +3030.093973 +3030.105528 +3030.142491 +3030.176124 +3030.196004 +3030.214819 +3030.288012 +3030.300699 +3030.321512 +3030.335298 +3030.347952 +3030.384948 +3030.396037 +3030.408258 +3030.429304 +3030.442857 +3030.462171 +3030.478521 +3030.488245 +3030.498901 +3030.509124 +3030.538728 +3030.557609 +3030.587079 +3030.641758 +3030.665467 +3030.675924 +3030.712487 +3030.748651 +3030.801465 +3030.816949 +3030.828438 +3030.874725 +3030.886446 +3030.907658 +3030.943156 +3030.958008 +3030.978954 +3030.991375 +3031.028338 +3031.050316 +3031.068364 +3031.140292 +3031.179386 +3031.191541 +3031.210988 +3031.238361 +3031.250049 +3031.284181 +3031.329336 +3031.346919 +3031.358707 +3031.385247 +3031.410488 +3031.444887 +3031.469329 +3031.482783 +3031.495437 +3031.551381 +3031.571028 +3031.582749 +3031.597002 +3031.611054 +3031.646985 +3031.668863 +3031.684314 +3031.732633 +3031.746785 +3031.771660 +3031.786179 +3031.822276 +3031.841290 +3031.855876 +3031.867731 +3031.879119 +3031.930002 +3032.006125 +3032.017847 +3032.029535 +3032.081483 +3032.143721 +3032.172592 +3032.235529 +3032.248583 +3032.314883 +3032.381416 +3032.434397 +3032.448882 +3032.474323 +3032.610620 +3032.635695 +3032.666431 +3032.706524 +3032.734563 +3032.747150 +3032.789741 +3032.803228 +3032.894403 +3032.919611 +3032.975255 +3033.018512 +3033.089907 +3033.104493 +3033.190873 +3033.235029 +3033.319677 +3033.336094 +3033.379351 +3033.393670 +3033.481848 +3033.509154 +3033.539657 +3033.553377 +3033.968062 +3044.885966 +3045.886065 +3045.890594 +3047.886296 +3048.891157 +3049.886327 +3049.892954 +3054.885823 +3054.890984 +3055.187188 +3055.387421 +3055.490351 +3055.787520 +3056.287486 +3056.587386 +3056.787486 +3056.887486 +3057.587452 +3057.687518 +3057.787518 +3057.987485 +3058.587584 +3058.687551 +3058.887517 +3058.987484 +3059.187450 +3059.387483 +3059.487550 +3059.587483 +3059.687450 +3059.787450 +3059.887516 +3064.885979 +3064.903096 +3064.910721 +3064.924274 +3064.935929 +3064.953645 +3064.972693 +3064.985047 +3064.995370 +3065.024108 +3065.045187 +3065.069462 +3065.092306 +3065.145320 +3065.186479 +3065.197234 +3065.225773 +3065.282849 +3065.308823 +3065.374690 +3065.386778 +3065.423941 +3065.449415 +3065.484613 +3065.506059 +3065.538360 +3065.561403 +3065.586112 +3065.623708 +3065.659205 +3065.680218 +3065.690074 +3065.716481 +3065.757007 +3065.785579 +3065.829502 +3065.867597 +3065.931166 +3065.945319 +3065.958572 +3065.971093 +3065.991473 +3066.016581 +3066.033730 +3066.066631 +3066.078819 +3066.101862 +3066.114050 +3066.128436 +3066.152778 +3066.321409 +3066.419411 +3066.666497 +3066.679417 +3066.841555 +3067.095268 +3067.240955 +3067.267162 +3067.282447 +3067.297399 +3067.379783 +3067.392870 +3067.420209 +3067.620875 +3067.983679 +3068.058637 +3068.097498 +3068.401727 +3068.624903 +3068.698663 +3069.506721 +3081.891623 +3082.891722 +3090.187353 +3090.387685 +3091.087718 +3091.387751 +3091.887684 +3092.087617 +3092.287617 +3092.487650 +3092.587583 +3092.787616 +3093.087683 +3093.392644 +3093.487483 +3093.987682 +3094.087648 +3094.487415 +3094.787947 +3099.886044 +3099.917047 +3099.927103 +3099.943453 +3099.995002 +3100.024672 +3100.053910 +3100.085478 +3100.097433 +3100.119544 +3100.177286 +3100.198831 +3100.241755 +3100.276453 +3100.288908 +3100.312451 +3100.338425 +3100.360170 +3100.371725 +3100.407422 +3100.432397 +3100.464532 +3100.499230 +3100.550113 +3100.572890 +3100.593603 +3100.609653 +3100.634828 +3100.673956 +3100.693070 +3100.723073 +3100.738391 +3100.767096 +3100.780982 +3100.804658 +3100.850046 +3100.864598 +3100.892104 +3100.919943 +3100.932364 +3100.953609 +3100.975720 +3101.061601 +3101.074854 +3101.089040 +3101.113948 +3101.134794 +3101.262833 +3101.327834 +3101.412949 +3101.468727 +3101.541720 +3101.661867 +3101.871324 +3102.016445 +3102.112715 +3102.126102 +3102.235659 +3102.275419 +3102.317177 +3102.332562 +3102.726235 +3103.093234 +3103.301659 +3103.331629 +3103.376617 +3103.391102 +3103.604755 +3103.634625 +3103.771388 +3103.833326 +3104.491268 +3114.890991 +3115.886561 +3115.891689 +3117.886060 +3124.890481 +3124.986585 +3125.086951 +3125.187351 +3125.287484 +3125.387551 +3125.587650 +3125.687617 +3126.887682 +3128.287548 +3128.787614 +3129.090511 +3132.418546 +3134.885876 +3134.889739 +3134.897065 +3134.917544 +3134.945483 +3134.955373 +3134.975520 +3134.985843 +3135.025936 +3135.047847 +3135.059635 +3135.080714 +3135.101993 +3135.111850 +3135.171690 +3135.184244 +3135.195433 +3135.208586 +3135.221940 +3135.243651 +3135.265096 +3135.290171 +3135.311084 +3135.326335 +3135.339256 +3135.363132 +3135.385476 +3135.396432 +3135.420108 +3135.451310 +3135.465862 +3135.517510 +3135.564297 +3135.588306 +3135.605955 +3135.617544 +3135.631763 +3135.656904 +3135.679648 +3135.721007 +3135.733461 +3135.752975 +3135.800860 +3135.822772 +3135.860567 +3135.893035 +3135.907054 +3135.918509 +3135.931130 +3135.956538 +3135.990670 +3136.003924 +3136.025868 +3136.063797 +3136.174753 +3136.263863 +3136.275685 +3136.327167 +3136.341586 +3136.444116 +3136.468891 +3136.731928 +3136.825768 +3137.062597 +3137.169823 +3137.347112 +3137.470722 +3137.557735 +3137.585307 +3137.600392 +3137.782343 +3137.926899 +3137.967724 +3138.125899 +3138.289835 +3138.303955 +3138.486505 +3138.650841 +3138.666791 +3138.742183 +3152.886291 +3153.886390 +3154.886455 +3154.891450 +3159.890213 +3159.986217 +3160.089547 +3160.189714 +3160.587515 +3160.987515 +3161.187282 +3161.287148 +3161.290079 +3161.387614 +3161.587481 +3161.786948 +3161.886981 +3162.087447 +3162.587413 +3163.290476 +3164.387412 +3164.487511 +3164.587411 +3164.687478 +3164.787478 +3164.887411 +3169.885774 +3169.890570 +3169.901958 +3169.927300 +3169.939321 +3169.959367 +3169.987606 +3170.005888 +3170.018408 +3170.049710 +3170.073054 +3170.092234 +3170.119041 +3170.140320 +3170.155671 +3170.177349 +3170.187572 +3170.209018 +3170.222504 +3170.240486 +3170.261398 +3170.279580 +3170.300359 +3170.315178 +3170.372354 +3170.396164 +3170.431861 +3170.452008 +3170.460466 +3170.481878 +3170.498628 +3170.573986 +3170.629996 +3170.652141 +3170.671421 +3170.698528 +3170.725600 +3170.744315 +3170.785008 +3170.799593 +3170.811181 +3170.839187 +3170.862530 +3170.882477 +3170.910815 +3170.925600 +3170.945347 +3170.957701 +3170.971887 +3170.988637 +3171.065926 +3171.090935 +3171.114511 +3171.129030 +3171.151641 +3171.192633 +3171.257302 +3171.272053 +3171.295863 +3171.327531 +3171.343216 +3171.366126 +3171.381943 +3171.393798 +3171.423702 +3171.436922 +3171.449776 +3171.465893 +3171.487704 +3171.501324 +3171.583975 +3171.608117 +3171.633059 +3171.645679 +3171.672619 +3171.684740 +3171.709516 +3171.722602 +3171.752306 +3171.777348 +3171.791500 +3171.805020 +3171.829762 +3171.842249 +3171.899559 +3171.923401 +3171.936122 +3171.950275 +3171.961463 +3171.976348 +3172.025366 +3172.086738 +3172.153038 +3172.177780 +3172.190834 +3172.216974 +3172.229995 +3172.260198 +3172.273285 +3172.320071 +3172.343348 +3172.356801 +3172.372052 +3172.386371 +3172.409415 +3172.452572 +3172.467424 +3172.485006 +3172.511146 +3172.551872 +3172.565259 +3172.579944 +3172.672552 +3172.686371 +3172.699558 +3172.714177 +3172.735022 +3172.817873 +3172.831326 +3172.961362 +3173.018905 +3173.049441 +3173.079178 +3173.109448 +3173.124466 +3173.182308 +3173.227330 +3173.332025 +3173.614142 +3173.688734 +3176.208146 +3176.212242 +3176.218169 +3184.890688 +3185.885592 +3186.886224 +3187.886223 +3187.890951 +3188.886155 +3189.886121 +3194.890045 +3194.991011 +3195.587047 +3196.487180 +3197.287146 +3197.487179 +3197.987212 +3198.087245 +3198.287145 +3198.387145 +3198.887144 +3199.087177 +3199.487177 +3199.687110 +3199.787176 +3199.887143 +3204.901890 +3204.919606 +3204.927464 +3204.976615 +3204.986838 +3204.997661 +3205.033192 +3205.044281 +3205.070355 +3205.094664 +3205.127497 +3205.137687 +3205.161197 +3205.171853 +3205.195496 +3205.230095 +3205.258400 +3205.271387 +3205.302156 +3205.326298 +3205.346079 +3205.355736 +3205.369255 +3205.394497 +3205.406352 +3205.427764 +3205.451074 +3205.466858 +3205.552339 +3205.615143 +3205.655635 +3205.667324 +3205.697860 +3205.737054 +3205.787004 +3205.798925 +3205.813111 +3205.831493 +3205.854103 +3205.883008 +3205.893730 +3205.932858 +3205.957067 +3205.967523 +3206.020703 +3206.097526 +3206.181276 +3206.207783 +3206.219105 +3206.238718 +3206.252438 +3206.289334 +3206.327863 +3206.351139 +3206.392831 +3206.404486 +3206.490966 +3206.516540 +3206.530193 +3206.646710 +3206.688435 +3206.740316 +3206.753303 +3206.767556 +3206.789700 +3206.804286 +3206.839917 +3206.924965 +3207.193762 +3207.233589 +3207.274648 +3207.325730 +3207.376779 +3207.399423 +3207.445910 +3207.496826 +3207.610412 +3207.716140 +3207.757864 +3208.177777 +3208.263125 +3208.610677 +3219.890520 +3229.989277 +3230.286680 +3230.386713 +3230.486746 +3230.586779 +3231.086845 +3231.286845 +3232.789708 +3233.186644 +3233.192105 +3233.686377 +3233.986410 +3234.286809 +3234.386776 +3234.486642 +3234.586842 +3234.686742 +3234.786808 +3234.886808 +3239.908482 +3239.923666 +3239.933656 +3239.952970 +3240.002554 +3240.022301 +3240.052604 +3240.069853 +3240.090566 +3240.100656 +3240.135987 +3240.170220 +3240.182041 +3240.202421 +3240.218871 +3240.241681 +3240.261395 +3240.287536 +3240.290433 +3240.314642 +3240.339017 +3240.373316 +3240.388201 +3240.421934 +3240.449973 +3240.471918 +3240.484438 +3240.507449 +3240.519803 +3240.538218 +3240.552437 +3240.592464 +3240.611878 +3240.624665 +3240.682840 +3240.735787 +3240.749806 +3240.768887 +3240.782973 +3240.798757 +3240.811544 +3240.824265 +3240.859430 +3240.879909 +3240.896526 +3240.910412 +3240.936020 +3240.948008 +3240.985603 +3241.008514 +3241.018171 +3241.031291 +3241.043845 +3241.065956 +3241.078910 +3241.101454 +3241.116139 +3241.141181 +3241.154901 +3241.165457 +3241.177645 +3241.211411 +3241.244644 +3241.295094 +3241.307315 +3241.331790 +3241.366689 +3241.380874 +3241.395094 +3241.484038 +3241.519369 +3241.569486 +3241.583805 +3241.596259 +3241.609013 +3241.644211 +3241.674913 +3241.686535 +3241.696325 +3241.707281 +3241.717438 +3241.729592 +3241.755533 +3241.768220 +3241.790731 +3241.833821 +3241.849039 +3241.942978 +3241.960328 +3241.969818 +3241.984071 +3241.998623 +3242.036951 +3242.146441 +3242.160627 +3242.186868 +3242.212542 +3242.225163 +3242.238716 +3242.252835 +3242.280307 +3242.291263 +3242.345509 +3242.371982 +3242.410843 +3242.437683 +3242.545942 +3242.698689 +3242.720900 +3242.732022 +3242.747473 +3242.805016 +3242.857996 +3242.886367 +3243.340380 +3243.367719 +3254.889586 +3256.885821 +3259.885818 +3259.890580 +3264.885346 +3264.888910 +3264.985979 +3264.990608 +3265.186545 +3265.286745 +3265.886811 +3266.086877 +3266.186877 +3266.286877 +3266.486877 +3266.686810 +3266.786843 +3267.186909 +3267.586842 +3267.886875 +3267.986875 +3268.186875 +3268.386875 +3268.586775 +3268.686908 +3268.886908 +3269.086841 +3269.486740 +3269.886840 +3274.928760 +3274.939849 +3274.950072 +3274.971117 +3274.985902 +3275.006682 +3275.028193 +3275.051637 +3275.091796 +3275.128393 +3275.148873 +3275.188566 +3275.211776 +3275.244910 +3275.298723 +3275.314240 +3275.355732 +3275.394127 +3275.423498 +3275.442212 +3275.468486 +3275.479575 +3275.494227 +3275.517870 +3275.569518 +3275.594060 +3275.617537 +3275.658163 +3275.696425 +3275.718136 +3275.745775 +3275.758895 +3275.791529 +3275.807680 +3275.827627 +3275.839148 +3275.860027 +3275.873614 +3275.887500 +3275.909644 +3275.922865 +3275.935219 +3275.955332 +3275.969851 +3276.008812 +3276.039748 +3276.064623 +3276.087533 +3276.110577 +3276.139448 +3276.150770 +3276.173181 +3276.210144 +3276.224130 +3276.234386 +3276.259727 +3276.271782 +3276.312541 +3276.323031 +3276.344176 +3276.358262 +3276.366953 +3276.380506 +3276.415072 +3276.426727 +3276.445608 +3276.470849 +3276.494559 +3276.532188 +3276.546074 +3276.559794 +3276.588332 +3276.615305 +3276.627792 +3276.639847 +3276.652801 +3276.675678 +3276.698355 +3276.713407 +3276.738681 +3276.751768 +3276.776643 +3276.803350 +3276.843376 +3276.879740 +3276.891994 +3276.905281 +3276.920533 +3276.934352 +3276.947139 +3276.959294 +3276.972414 +3276.987166 +3277.001418 +3277.014372 +3277.026926 +3277.040845 +3277.067952 +3277.120399 +3277.146173 +3277.161092 +3277.175211 +3277.213240 +3277.255730 +3277.268518 +3277.309710 +3277.352101 +3277.364954 +3277.391361 +3277.416936 +3277.449603 +3277.475477 +3277.488830 +3277.504981 +3277.527925 +3277.542676 +3277.600352 +3277.615703 +3277.686832 +3277.759992 +3277.842043 +3277.970382 +3277.999419 +3278.258693 +3278.275376 +3278.417834 +3278.447437 +3278.534750 +3290.885820 +3290.890782 +3291.837101 +3293.885917 +3293.890312 +3294.885916 +3299.885445 +3299.988741 +3300.186676 +3300.286843 +3300.386843 +3300.486943 +3300.586942 +3300.686976 +3300.986975 +3301.087042 +3301.487008 +3301.586975 +3301.686941 +3301.886841 +3303.386973 +3303.686906 +3303.986939 +3304.686672 +3304.789469 +3304.886305 +3305.485039 +3306.898158 +3306.901322 +3309.885435 +3309.895758 +3309.907246 +3309.910510 +3309.925328 +3309.942244 +3309.967885 +3309.979241 +3309.997955 +3310.019634 +3310.037149 +3310.047805 +3310.073180 +3310.087000 +3310.117802 +3310.135085 +3310.153866 +3310.167153 +3310.190063 +3310.210543 +3310.229057 +3310.240579 +3310.260592 +3310.273513 +3310.302550 +3310.312341 +3310.322664 +3310.344975 +3310.368118 +3310.394292 +3310.424562 +3310.450536 +3310.462590 +3310.475544 +3310.488797 +3310.552567 +3310.561858 +3310.602617 +3310.616969 +3310.677375 +3310.697622 +3310.727458 +3310.746573 +3310.782503 +3310.822363 +3310.847372 +3310.867951 +3310.886366 +3310.909576 +3310.919067 +3310.944075 +3310.977142 +3311.006246 +3311.051301 +3311.061724 +3311.079040 +3311.107345 +3311.144374 +3311.156596 +3311.169316 +3311.192193 +3311.230688 +3311.242709 +3311.263189 +3311.326559 +3311.338114 +3311.351667 +3311.363855 +3311.389263 +3311.440078 +3311.462256 +3311.476276 +3311.499053 +3311.512306 +3311.525326 +3311.554064 +3311.610508 +3311.638180 +3311.655330 +3311.734317 +3311.750335 +3311.773744 +3311.789695 +3311.841144 +3311.865086 +3311.932086 +3311.974244 +3312.001317 +3312.028689 +3312.054397 +3312.068316 +3312.136814 +3312.149968 +3312.189895 +3312.242941 +3312.257527 +3312.297021 +3312.352399 +3312.367384 +3312.381569 +3312.493024 +3312.508476 +3312.521696 +3312.534683 +3312.634183 +3312.674609 +3312.705079 +3313.189461 +3313.350433 +3313.514136 +3313.545038 +3313.575308 +3313.589693 +3313.739976 +3313.875740 +3313.950366 +3314.088128 +3318.602809 +3318.682595 +3320.274735 +3324.885153 +3325.886085 +3326.886084 +3326.890945 +3328.886182 +3328.891243 +3334.885743 +3334.890671 +3335.387174 +3335.587174 +3335.686641 +3335.787207 +3335.887074 +3335.987273 +3336.087173 +3336.187240 +3336.387273 +3336.887206 +3337.187239 +3337.287272 +3337.387272 +3337.487305 +3337.587305 +3337.787272 +3337.887271 +3338.387304 +3338.587271 +3338.687304 +3338.787271 +3338.887237 +3339.087337 +3339.487270 +3339.687236 +3344.890162 +3344.895756 +3344.902749 +3344.913638 +3344.924893 +3344.942476 +3344.959326 +3344.980171 +3344.999918 +3345.021364 +3345.032186 +3345.061756 +3345.085899 +3345.104214 +3345.117467 +3345.134917 +3345.156129 +3345.167517 +3345.187331 +3345.197421 +3345.211906 +3345.231786 +3345.254230 +3345.289162 +3345.310341 +3345.327157 +3345.350268 +3345.376941 +3345.388230 +3345.410974 +3345.429488 +3345.478706 +3345.486864 +3345.523927 +3345.538113 +3345.559258 +3345.605212 +3345.726957 +3345.762455 +3345.777074 +3345.800217 +3345.812938 +3345.826291 +3345.849401 +3345.866484 +3345.902248 +3346.029421 +3346.083967 +3346.122761 +3346.158159 +3346.193357 +3346.229887 +3346.312837 +3346.539277 +3346.591625 +3346.774176 +3346.841075 +3346.880669 +3346.891591 +3346.930719 +3347.006077 +3347.103546 +3347.118398 +3347.173343 +3347.474475 +3347.516499 +3347.654528 +3347.698783 +3347.750965 +3347.781168 +3347.794721 +3347.850598 +3347.878037 +3347.904644 +3347.932017 +3347.945203 +3347.975706 +3348.001514 +3348.030784 +3348.041374 +3348.067115 +3348.079769 +3348.148833 +3348.285729 +3348.315100 +3348.486928 +3348.594553 +3348.623092 +3348.677470 +3348.710737 +3348.798250 +3348.875306 +3358.361244 +3358.372133 +3358.374997 +3361.886681 +3362.885515 +3362.891842 +3364.891807 +3369.989437 +3370.087372 +3370.187639 +3370.387705 +3370.487838 +3370.687938 +3370.787938 +3370.987904 +3371.287904 +3371.387837 +3371.487937 +3371.587737 +3371.687804 +3371.787937 +3371.887970 +3371.987903 +3372.087970 +3372.187936 +3372.287936 +3372.387936 +3372.487936 +3372.687903 +3372.787903 +3372.887969 +3372.988002 +3373.087936 +3373.187935 +3373.287935 +3373.387969 +3373.487902 +3373.587968 +3373.687968 +3373.788001 +3373.887835 +3373.987968 +3374.087901 +3374.287934 +3374.387834 +3374.487701 +3374.587734 +3374.687867 +3374.692962 +3374.888000 +3379.359691 +3379.885598 +3379.891092 +3379.896320 +3379.911472 +3379.918964 +3379.926956 +3379.942874 +3379.952364 +3379.970646 +3379.990792 +3380.002681 +3380.022894 +3380.046137 +3380.066583 +3380.087462 +3380.111605 +3380.127988 +3380.143606 +3380.163986 +3380.257292 +3380.268281 +3380.278771 +3380.306643 +3380.323260 +3380.357625 +3380.370313 +3380.394821 +3380.421395 +3380.439610 +3380.461388 +3380.474375 +3380.496952 +3380.513336 +3380.536912 +3380.546436 +3380.613369 +3380.626057 +3380.649899 +3380.660089 +3380.683965 +3380.704645 +3380.726989 +3380.753962 +3380.768680 +3380.807342 +3380.828221 +3380.841374 +3380.879769 +3380.913336 +3380.936313 +3380.971844 +3381.011138 +3381.021361 +3381.041674 +3381.068647 +3381.106009 +3381.120562 +3381.138444 +3381.165816 +3381.205077 +3381.219229 +3381.241940 +3381.289093 +3381.301813 +3381.314567 +3381.328720 +3381.348100 +3381.363452 +3381.378337 +3381.402679 +3381.414700 +3381.436845 +3381.480335 +3381.505843 +3381.545336 +3381.558357 +3381.571144 +3381.585663 +3381.650298 +3381.663618 +3381.691190 +3381.729219 +3381.741340 +3381.845503 +3381.860987 +3381.873308 +3381.934047 +3381.977137 +3382.026555 +3382.096351 +3382.147800 +3382.161187 +3382.173807 +3382.189924 +3382.269911 +3382.294586 +3382.310604 +3382.339541 +3382.368745 +3382.451130 +3382.464283 +3382.548998 +3382.589258 +3382.604410 +3382.805009 +3382.921992 +3383.113300 +3383.129884 +3383.143803 +3383.189357 +3383.335811 +3383.956323 +3394.891577 +3395.890011 +3396.892141 +3398.887277 +3399.887243 +3399.892005 +3404.886772 +3405.087704 +3405.187970 +3405.288136 +3405.388170 +3405.588269 +3405.688236 +3405.888269 +3405.988302 +3406.088236 +3406.188269 +3406.588202 +3406.688302 +3406.788268 +3406.888268 +3406.988335 +3407.088301 +3407.388234 +3407.488234 +3407.788267 +3407.888234 +3408.088300 +3408.288200 +3408.388300 +3408.588233 +3408.688233 +3408.788200 +3409.088233 +3409.188232 +3409.288266 +3409.488199 +3409.588199 +3409.788199 +3414.886528 +3414.896352 +3414.914301 +3414.922359 +3414.937910 +3414.955226 +3414.976239 +3414.988493 +3415.009306 +3415.019795 +3415.030451 +3415.059322 +3415.078969 +3415.098883 +3415.120594 +3415.144504 +3415.183764 +3415.220095 +3415.235845 +3415.246834 +3415.269845 +3415.282865 +3415.305442 +3415.318130 +3415.339275 +3415.366714 +3415.381033 +3415.464916 +3415.487327 +3415.508140 +3415.539142 +3415.553594 +3415.561819 +3415.587227 +3415.601613 +3415.659954 +3415.694053 +3415.708039 +3415.731383 +3415.745102 +3415.757690 +3415.779601 +3415.796085 +3415.817630 +3415.858489 +3415.879102 +3415.893254 +3415.916697 +3415.966714 +3415.997916 +3416.025588 +3416.035978 +3416.058056 +3416.073540 +3416.098981 +3416.122425 +3416.147100 +3416.172774 +3416.185661 +3416.199414 +3416.213933 +3416.259621 +3416.271409 +3416.316630 +3416.328252 +3416.367613 +3416.422225 +3416.431915 +3416.462118 +3416.475172 +3416.493054 +3416.518228 +3416.584162 +3416.598914 +3416.609737 +3416.625621 +3416.649164 +3416.661985 +3416.677669 +3416.701578 +3416.717063 +3416.732148 +3416.746034 +3416.758954 +3416.793386 +3416.821159 +3416.837076 +3416.849863 +3416.860919 +3416.881631 +3416.933679 +3416.985794 +3417.003509 +3417.036676 +3417.088391 +3417.109770 +3417.177169 +3417.255324 +3417.296782 +3417.315530 +3417.368311 +3417.394252 +3417.408471 +3417.422457 +3417.435011 +3417.448764 +3417.632247 +3417.757654 +3417.771740 +3417.900578 +3417.969576 +3418.115463 +3418.144667 +3418.231347 +3418.289455 +3418.304574 +3418.376169 +3418.406372 +3418.802975 +3430.886479 +3431.886545 +3439.885738 +3440.186836 +3440.287003 +3440.387136 +3440.487136 +3441.587201 +3441.687201 +3441.787234 +3441.987101 +3442.087167 +3442.187134 +3442.287134 +3442.487167 +3442.587133 +3442.687200 +3442.787133 +3443.087166 +3443.187133 +3443.387099 +3443.487066 +3443.687099 +3443.787066 +3443.887066 +3444.186999 +3444.386998 +3444.486998 +3444.586998 +3444.787031 +3449.885195 +3449.889490 +3449.895518 +3449.908471 +3449.923123 +3449.929684 +3449.943736 +3449.956090 +3449.968378 +3449.996816 +3450.019560 +3450.038608 +3450.059354 +3450.096616 +3450.118461 +3450.130516 +3450.141139 +3450.159886 +3450.183196 +3450.217629 +3450.250396 +3450.267412 +3450.279833 +3450.314865 +3450.341505 +3450.364315 +3450.385061 +3450.402077 +3450.417029 +3450.435411 +3450.450529 +3450.471142 +3450.505507 +3450.517262 +3450.528085 +3450.551028 +3450.563682 +3450.592187 +3450.637675 +3450.652194 +3450.680832 +3450.690988 +3450.707938 +3450.723988 +3450.780765 +3450.817095 +3450.829183 +3450.885427 +3450.896982 +3450.914098 +3450.950662 +3450.965946 +3450.976769 +3451.001244 +3451.020292 +3451.065513 +3451.078234 +3451.091287 +3451.104408 +3451.117128 +3451.130681 +3451.152826 +3451.175969 +3451.196948 +3451.209736 +3451.246432 +3451.283329 +3451.294917 +3451.308736 +3451.321990 +3451.334144 +3451.349029 +3451.361417 +3451.384594 +3451.410035 +3451.447331 +3451.503541 +3451.543435 +3451.564580 +3451.599346 +3451.623388 +3451.644767 +3451.671340 +3451.730681 +3451.758853 +3451.784827 +3451.808669 +3451.834610 +3451.882729 +3452.013731 +3452.097713 +3452.123021 +3452.175402 +3452.215828 +3452.242135 +3452.351126 +3452.465112 +3452.577200 +3452.614596 +3452.707836 +3452.799378 +3452.877166 +3452.929581 +; +2.941089 +4.017645 +4.090772 +5.005889 +5.010851 +6.317010 +6.816477 +10.268355 +12.481140 +12.540147 +14.890095 +15.060025 +15.065886 +15.080138 +15.141510 +16.798418 +16.802814 +16.820196 +16.880203 +16.903879 +16.914735 +17.531218 +17.536779 +18.120728 +18.127055 +18.137844 +18.152829 +19.270777 +19.274839 +19.281566 +19.297117 +19.351829 +19.853760 +19.904975 +23.079364 +23.083760 +23.090553 +23.110267 +23.136773 +23.362114 +23.968374 +26.204869 +26.226847 +26.239601 +26.263011 +26.284689 +26.296111 +27.466906 +27.670335 +27.701138 +31.835533 +31.839262 +31.844357 +31.872595 +36.150913 +37.748147 +40.480312 +40.485041 +40.500093 +42.903653 +42.908482 +42.959897 +43.007849 +44.766955 +44.773681 +45.085969 +45.911043 +45.915106 +45.921000 +47.116070 +47.123563 +48.387064 +50.434415 +50.972210 +51.038344 +51.718630 +51.726921 +52.738276 +52.744070 +54.111967 +54.124088 +55.542968 +56.565012 +56.621322 +56.625518 +58.131677 +58.136439 +58.153055 +58.172070 +58.214694 +59.643730 +59.668239 +60.015458 +60.022184 +60.047359 +60.106766 +60.150989 +61.164308 +61.178094 +61.193512 +61.202836 +61.239532 +61.252420 +61.311893 +61.354384 +62.685285 +63.863939 +64.068268 +68.316115 +68.325173 +68.335929 +69.053844 +69.061436 +69.078352 +69.099431 +72.019342 +73.851475 +73.855804 +73.863296 +73.950076 +76.988201 +76.999324 +79.949104 +79.954499 +80.037649 +81.489496 +82.711839 +86.068978 +86.104609 +87.519460 +87.524288 +87.535843 +87.576203 +88.138573 +88.176335 +90.022321 +90.028948 +90.046164 +97.383919 +99.435798 +99.644289 +105.272256 +106.987272 +107.003256 +107.048111 +108.327031 +108.332959 +108.348310 +109.536720 +111.484804 +111.490897 +112.878775 +115.541743 +115.715002 +116.447203 +116.454229 +116.479570 +116.521695 +116.600183 +118.354261 +118.863118 +118.873940 +118.896684 +121.012333 +122.709634 +122.714463 +122.725452 +123.422254 +123.445597 +124.018957 +124.027015 +125.714260 +125.723784 +127.994644 +130.047056 +130.051485 +130.864504 +130.913589 +130.963738 +131.286382 +133.448751 +134.249982 +134.263602 +136.939124 +136.943919 +140.280712 +142.141150 +142.145412 +142.165093 +143.657665 +143.662460 +143.673682 +144.037285 +144.726129 +144.731524 +144.748806 +145.814706 +145.819135 +145.824962 +145.833454 +145.854266 +145.868752 +145.881639 +145.890164 +146.919700 +146.924428 +146.934818 +147.417169 +148.392226 +148.397121 +148.430454 +148.467684 +149.023394 +150.049833 +150.053596 +150.059157 +150.089960 +151.453428 +151.458057 +151.465117 +151.524291 +152.163551 +152.172109 +153.397882 +153.402377 +153.414166 +155.023821 +155.916894 +155.927317 +155.957087 +156.001809 +156.007237 +174.692333 +182.285132 +184.301081 +184.346769 +185.632948 +185.644869 +185.665549 +187.154625 +188.328383 +189.727283 +189.737073 +190.329513 +190.339403 +190.389353 +190.643765 +191.522719 +191.532409 +191.605469 +197.490445 +198.106895 +200.105527 +200.875490 +201.152180 +201.226705 +201.246718 +201.870794 +205.323171 +206.141752 +206.150310 +206.181279 +206.991701 +206.997562 +207.011481 +207.026333 +207.035357 +207.049743 +207.096196 +207.646046 +208.330627 +208.335156 +208.343781 +208.394963 +208.972019 +208.976381 +208.983807 +208.998925 +209.019038 +209.050873 +209.086970 +209.745944 +209.754069 +209.794462 +209.826863 +210.605484 +210.621468 +213.329390 +213.333353 +213.341278 +213.386899 +213.403916 +215.014803 +215.025493 +215.036415 +215.067118 +215.102016 +216.859190 +216.911738 +218.019995 +218.041407 +223.170772 +225.016192 +225.021820 +225.040168 +226.527013 +227.617754 +229.884352 +229.890413 +229.909261 +232.287047 +232.292242 +232.302898 +232.358908 +234.174824 +234.180052 +234.189543 +234.207958 +235.018912 +235.023608 +235.046019 +235.074424 +235.140591 +235.450780 +236.072524 +241.754970 +241.762962 +246.197789 +246.211342 +247.238647 +247.249769 +248.584700 +249.523460 +252.976304 +252.982664 +252.995152 +253.004509 +253.060420 +253.829217 +254.227451 +255.285459 +255.292985 +256.113530 +256.118891 +257.063479 +257.068741 +257.084691 +260.270702 +260.276030 +261.151287 +262.002968 +264.782286 +266.056610 +267.706592 +267.711587 +267.724241 +267.779452 +268.589608 +268.594337 +268.600397 +268.628103 +269.748015 +269.754242 +269.761535 +270.770026 +271.636525 +272.338855 +277.290099 +277.320402 +280.997788 +282.095589 +288.251393 +289.041436 +289.048396 +292.321020 +293.622750 +293.681691 +293.705201 +295.055016 +297.727641 +302.300064 +305.576051 +305.589205 +305.596231 +305.681579 +305.771289 +305.797996 +305.805588 +305.812881 +309.136820 +312.619601 +317.593156 +320.252793 +320.258388 +320.531381 +322.302275 +322.523154 +325.851456 +326.551655 +326.556350 +326.573100 +329.205199 +330.722779 +330.820115 +333.668797 +340.156103 +340.165427 +340.210416 +340.336789 +340.491434 +341.590701 +342.789334 +360.004635 +368.535895 +368.543754 +371.336625 +371.342219 +371.354474 +371.381180 +371.647480 +386.007040 +386.022391 +390.708733 +396.255648 +402.230833 +402.915847 +406.809084 +409.901688 +409.910979 +412.961026 +418.298017 +421.550960 +422.903074 +423.598378 +423.611298 +423.631511 +425.570836 +427.285820 +429.431705 +430.295640 +431.964303 +440.572919 +440.581045 +441.189136 +441.202189 +441.410248 +441.484906 +442.441482 +446.103450 +454.209469 +454.215463 +454.229949 +456.018492 +456.028215 +456.859250 +456.864944 +456.875267 +456.897545 +458.392848 +458.400108 +459.338202 +459.350323 +459.375964 +460.091981 +460.098574 +460.115890 +460.145494 +460.171901 +463.671098 +463.676659 +463.692410 +463.762840 +465.763970 +465.770796 +465.793407 +466.091342 +466.583250 +466.588444 +466.600899 +467.854877 +467.859073 +467.870428 +467.907691 +468.346951 +468.446018 +468.451180 +468.459705 +468.481683 +468.499198 +468.511786 +469.817379 +469.829633 +470.662167 +470.676519 +470.701394 +471.829465 +471.846681 +474.220471 +474.225167 +474.233259 +474.280811 +475.596128 +475.839418 +477.941047 +477.949339 +477.987501 +480.076010 +480.081771 +480.089696 +482.152698 +484.245903 +487.003775 +487.017328 +488.944499 +488.949295 +488.958119 +488.977466 +489.124453 +492.366208 +492.406201 +494.561710 +495.396974 +496.226577 +496.233536 +496.985750 +496.992543 +498.117118 +498.224110 +498.327840 +500.510655 +500.514784 +500.520811 +500.748683 +502.215182 +505.105655 +505.110850 +505.122705 +506.126101 +506.135791 +506.914878 +507.241917 +507.881210 +507.901224 +509.675314 +509.680776 +509.696993 +511.281040 +511.293528 +512.278176 +512.754965 +513.912973 +513.916869 +513.921930 +513.931920 +513.956662 +513.992127 +515.055895 +515.060890 +515.075143 +516.650432 +516.712803 +516.767215 +520.848430 +522.006238 +522.131013 +523.254089 +523.260449 +524.050425 +524.056652 +524.068906 +524.358383 +524.879295 +524.884324 +524.898643 +524.925815 +526.246593 +526.256916 +527.054684 +529.467602 +529.476394 +530.777791 +530.914920 +530.920215 +530.928107 +532.379488 +533.610355 +533.663902 +533.669030 +533.675390 +535.022642 +535.026904 +535.038160 +535.110920 +536.519776 +538.314547 +538.322372 +539.396863 +539.940919 +540.717641 +540.747944 +541.529162 +541.535656 +541.578479 +543.146476 +543.154069 +544.641214 +544.650804 +545.668585 +545.677043 +546.219301 +546.419367 +547.773611 +549.165784 +549.185065 +550.047602 +550.053396 +550.545437 +552.477270 +552.493021 +552.529351 +552.552794 +552.590856 +553.297482 +553.318827 +553.331315 +553.363116 +553.403143 +554.135110 +554.143235 +555.344799 +557.088920 +557.093649 +557.102873 +561.177927 +561.182922 +561.190648 +561.216355 +562.434003 +562.447523 +562.487350 +563.446057 +563.450885 +563.459377 +563.488481 +564.111457 +564.117618 +564.143359 +564.766202 +565.271829 +570.873855 +574.207751 +574.213212 +574.220838 +574.318540 +574.495496 +575.814609 +575.820403 +577.218404 +577.232190 +580.458161 +580.611874 +581.867217 +581.871579 +581.880970 +581.897820 +584.121127 +584.129852 +584.825889 +585.595452 +585.875438 +587.450395 +589.111199 +589.184492 +589.209234 +590.485990 +592.727945 +592.734039 +592.744196 +594.071201 +594.323748 +594.329276 +594.342396 +594.392446 +594.445693 +595.603434 +595.607996 +595.614056 +595.627543 +595.669001 +595.699571 +596.134402 +597.005031 +597.009626 +597.016819 +598.646621 +598.651150 +598.658509 +598.679554 +598.747287 +601.228137 +601.238693 +601.264966 +601.752445 +602.956240 +602.972091 +606.260200 +606.286373 +611.757996 +611.763691 +611.776211 +621.595649 +621.989554 +631.094341 +632.490177 +632.503363 +632.564136 +633.043023 +633.054578 +634.036729 +634.646452 +634.666198 +635.041057 +635.775155 +635.781082 +635.792971 +635.819044 +635.890207 +635.930833 +635.999863 +637.034528 +638.036725 +638.040721 +638.047680 +639.889270 +639.894332 +639.903356 +639.922071 +639.943516 +639.960199 +640.022170 +642.053504 +643.037719 +643.044312 +643.132590 +643.333156 +643.434388 +643.534421 +643.634455 +643.734188 +643.835587 +643.935786 +644.036053 +644.235420 +644.337318 +644.434953 +644.734720 +644.836152 +644.936451 +645.035386 +645.235818 +645.335086 +645.434286 +645.537183 +645.640946 +646.033653 +646.236350 +646.534785 +646.637116 +646.836250 +646.936716 +647.038514 +647.136449 +647.236249 +647.336815 +647.436049 +647.489063 +647.535749 +647.633518 +647.734717 +647.836215 +647.936149 +648.035516 +653.039140 +653.044069 +653.052361 +653.062450 +653.072873 +653.083396 +653.094352 +653.105241 +653.244601 +653.256157 +653.271108 +653.307605 +653.391521 +653.404908 +653.448231 +653.495117 +653.508238 +653.551994 +653.568644 +653.619526 +653.648064 +653.967944 +653.981031 +654.009036 +654.021790 +654.142702 +654.160218 +654.191354 +654.375636 +654.483295 +654.520225 +654.573405 +654.614896 +654.755189 +654.819458 +654.976201 +655.021323 +655.053424 +655.072139 +655.156921 +655.210300 +655.434609 +655.452791 +655.466944 +655.514030 +655.527749 +655.584925 +655.601875 +655.619191 +655.801509 +655.820923 +656.007203 +656.121788 +656.133843 +656.181428 +656.214062 +656.395348 +656.413929 +656.432277 +656.446496 +656.513263 +656.592284 +656.808567 +656.826183 +659.959447 +659.966173 +660.594211 +661.379159 +661.977726 +661.985652 +666.181119 +668.036295 +668.043088 +668.722675 +668.735828 +670.039190 +671.038223 +671.044817 +672.036224 +672.041619 +672.926700 +676.723133 +677.114907 +677.147042 +677.317305 +677.347641 +678.234786 +678.334054 +678.434520 +678.536451 +678.636584 +678.736651 +678.837017 +679.037949 +679.138082 +679.160759 +679.236384 +679.538182 +679.637815 +679.940179 +680.139779 +680.239080 +680.336782 +680.436283 +680.637648 +680.737148 +681.038480 +681.138113 +681.238579 +681.445506 +681.539378 +682.239078 +682.337713 +682.437779 +682.537379 +682.639877 +683.037945 +687.473105 +687.480331 +688.036242 +688.045033 +688.050894 +688.059185 +688.069275 +688.087624 +688.112166 +688.156455 +688.227117 +688.405039 +688.432145 +688.534443 +688.625618 +688.641269 +689.006604 +689.079830 +689.120057 +689.167543 +689.212664 +689.243899 +689.333776 +689.353323 +689.587322 +689.633476 +689.772670 +689.805371 +689.867242 +689.918125 +690.020888 +690.036273 +690.049293 +690.064611 +690.092850 +690.113029 +690.130978 +690.179696 +690.212830 +690.240036 +690.342999 +690.690551 +690.922819 +690.939569 +690.954654 +690.974567 +690.990584 +691.025050 +691.044131 +691.517024 +691.552422 +702.359238 +702.365132 +703.041621 +704.038124 +704.042986 +704.631829 +704.636558 +704.645416 +704.665129 +705.045449 +706.037489 +706.044182 +706.420173 +707.041584 +708.039985 +708.044580 +708.052738 +708.161396 +708.220970 +711.823930 +713.038381 +713.135384 +713.236017 +713.244508 +713.338048 +713.436782 +713.538381 +713.638014 +713.737914 +713.840578 +713.937881 +714.241743 +714.338513 +714.438913 +714.538813 +714.637081 +714.738280 +714.840178 +714.938413 +715.038979 +715.139112 +715.239311 +715.437646 +715.538112 +716.140010 +716.240243 +716.338211 +716.636879 +716.738011 +716.838344 +716.937445 +717.039110 +717.138444 +717.238344 +717.338510 +717.439942 +717.538909 +717.740974 +717.838077 +717.937910 +719.022458 +719.030450 +719.047932 +720.320458 +723.065710 +723.075234 +723.098744 +723.135041 +724.366941 +724.543098 +724.566042 +724.605003 +724.651157 +724.723285 +724.767673 +724.785023 +724.796711 +724.828180 +724.874333 +724.906934 +724.922385 +725.040134 +725.102671 +725.570270 +725.587486 +725.600773 +725.631709 +725.644429 +725.662111 +725.926480 +726.013826 +726.027279 +726.043163 +726.077629 +726.091482 +726.118388 +726.133739 +726.150922 +726.247459 +726.311894 +726.532773 +726.597309 +726.631674 +726.804002 +726.933872 +726.992113 +727.215889 +727.548989 +727.711926 +727.777427 +727.824147 +727.867837 +728.015389 +738.036791 +738.044383 +739.036690 +739.531328 +740.046379 +741.041750 +741.050374 +742.040583 +743.034222 +743.039250 +747.423895 +748.042642 +748.136082 +748.336847 +748.436048 +748.536947 +748.636714 +748.837180 +749.637179 +749.838777 +750.137978 +750.146836 +750.238877 +751.037211 +751.537743 +752.037343 +752.137643 +752.238442 +752.437243 +752.737043 +752.937009 +752.955358 +753.039207 +753.048797 +758.040534 +758.047893 +758.063511 +758.073534 +758.097777 +758.107966 +758.121919 +758.134140 +758.147727 +758.160980 +758.205902 +758.288552 +758.503071 +758.755085 +758.817256 +758.880027 +758.949058 +759.010263 +759.025415 +759.071935 +759.091549 +759.131542 +759.148858 +759.177696 +759.219720 +759.249424 +759.266973 +759.282324 +759.435671 +759.552554 +759.566107 +759.583123 +759.601738 +759.613226 +759.843662 +759.858115 +759.874432 +759.937935 +760.256582 +760.288817 +760.320885 +760.457381 +760.488783 +760.503635 +760.520984 +760.675097 +760.703302 +760.749256 +760.767304 +760.798174 +761.038933 +761.129309 +761.167171 +761.199572 +761.251586 +761.333971 +761.349255 +761.364740 +761.383388 +761.403201 +761.574663 +761.591313 +761.620450 +765.418116 +765.424876 +768.322908 +774.034524 +774.041417 +775.039951 +775.045212 +775.057300 +776.041082 +776.047642 +777.040648 +777.048640 +777.411777 +778.041679 +778.046774 +778.921532 +781.601782 +781.659958 +783.035314 +783.043573 +783.235480 +783.335181 +783.434947 +783.535114 +783.635380 +783.735114 +783.834880 +783.939775 +784.036712 +784.135813 +784.236145 +784.336545 +784.437577 +784.641440 +784.737111 +784.837610 +784.936578 +785.136211 +785.235645 +785.536777 +785.636244 +785.836077 +786.137542 +786.335877 +786.635577 +787.436242 +787.536142 +787.636542 +787.737507 +787.836275 +788.039572 +788.965411 +788.973437 +789.778165 +790.975266 +793.034705 +793.039400 +793.048125 +793.057216 +793.066739 +793.079293 +793.088884 +793.100938 +793.114225 +793.125580 +793.137968 +793.153419 +793.181291 +793.192713 +793.261211 +793.301205 +793.489483 +793.544661 +793.673698 +793.691614 +793.716988 +793.734704 +793.888417 +793.970834 +794.235003 +794.275296 +794.292646 +794.303268 +794.334937 +794.347357 +794.379425 +794.442063 +794.499006 +794.573198 +794.750720 +794.766305 +794.950254 +795.123281 +795.214323 +795.246158 +795.325079 +795.340763 +795.371932 +795.386817 +795.456680 +795.549288 +795.720050 +795.734236 +795.783387 +795.827776 +795.844359 +795.860809 +795.994342 +796.027675 +796.145824 +796.179723 +796.208927 +796.226676 +796.273563 +796.291678 +796.340096 +796.355780 +796.372630 +796.410625 +796.428574 +796.442926 +796.540862 +796.848454 +797.219316 +797.376758 +803.272623 +803.669759 +808.041649 +810.033889 +810.947208 +812.036118 +812.257929 +813.034385 +817.978736 +818.021393 +818.033015 +818.134180 +818.234513 +818.334480 +818.434713 +818.535212 +818.636278 +818.735878 +818.835611 +818.936244 +819.035944 +819.136310 +819.236610 +819.336643 +819.535577 +819.736410 +819.836743 +819.936310 +820.036842 +820.238241 +820.336376 +820.437708 +820.535676 +820.537175 +820.636642 +820.737175 +821.136408 +821.236242 +821.536907 +821.736508 +821.937540 +822.037873 +822.136607 +822.236640 +822.436707 +822.537173 +822.736540 +822.837872 +822.935674 +823.036739 +824.356651 +824.362945 +824.910031 +824.936571 +826.459580 +828.071500 +828.090947 +828.112958 +828.868369 +829.323513 +829.349653 +829.365404 +829.384818 +829.441761 +829.515854 +829.546223 +829.644392 +829.677991 +829.712157 +829.729873 +829.744392 +829.788581 +829.815121 +829.852717 +829.919849 +829.934135 +830.003799 +830.019816 +830.180455 +830.268001 +830.289246 +830.353648 +830.361407 +830.387914 +830.398903 +830.544557 +830.578157 +830.616718 +830.646022 +830.666335 +830.709026 +830.724244 +830.803898 +830.987381 +831.111756 +831.147187 +831.163638 +831.243491 +831.417817 +831.436231 +831.488213 +831.520114 +831.821612 +832.077456 +832.358009 +832.422611 +832.448518 +832.563004 +832.604429 +832.742491 +832.826839 +843.035787 +845.247273 +846.034219 +847.032653 +848.037247 +852.904009 +853.135311 +853.235510 +853.335910 +853.436010 +853.535843 +853.636076 +853.735843 +853.836109 +853.937108 +854.037241 +854.236642 +854.338573 +854.437108 +854.538140 +854.636941 +854.737207 +854.837473 +854.937140 +855.037074 +855.137407 +855.238106 +855.337540 +855.437406 +855.637240 +855.738105 +855.837739 +856.037106 +856.136906 +856.436906 +856.738038 +856.838171 +856.938171 +857.438004 +857.537071 +857.737537 +857.838869 +857.937437 +858.038503 +859.568671 +860.586419 +863.036067 +863.040096 +863.057112 +863.068601 +863.079956 +863.090712 +863.102467 +863.145790 +863.174162 +863.207095 +863.224145 +863.252050 +863.281188 +863.323879 +863.379123 +863.392377 +863.423246 +863.451418 +863.464971 +863.495140 +863.512057 +863.568334 +863.645656 +863.660175 +863.687981 +863.714221 +863.731837 +863.747055 +863.759076 +863.860142 +863.945223 +863.989612 +864.005596 +864.079522 +864.097504 +864.171230 +864.286049 +864.388413 +864.421613 +864.466168 +864.514953 +864.605196 +864.682186 +864.698436 +864.716718 +864.831802 +864.848552 +864.985282 +865.003297 +865.033068 +865.094073 +865.217683 +865.229471 +865.252015 +865.337097 +865.414852 +865.484249 +865.518315 +865.539094 +865.561239 +865.586247 +865.603963 +865.638495 +865.672061 +865.703330 +865.737995 +865.756011 +865.820213 +865.838162 +865.899434 +865.917049 +866.138028 +866.155777 +866.174026 +866.195304 +866.305494 +866.321844 +866.465634 +866.495870 +866.584381 +866.698567 +867.268597 +867.505126 +867.522609 +867.573025 +867.790574 +867.824640 +867.843055 +870.526535 +870.531331 +870.540521 +870.557971 +870.805190 +871.766461 +872.989969 +872.995131 +873.011048 +875.925731 +877.284071 +877.289099 +878.035685 +878.040347 +878.114573 +878.989730 +879.006181 +879.034619 +880.033286 +880.040245 +881.051200 +881.695156 +881.700683 +881.712238 +882.036514 +883.038378 +883.043306 +885.070710 +885.076038 +885.088825 +885.166214 +886.370376 +886.377202 +887.162982 +888.034377 +888.039139 +888.081130 +888.133944 +888.235342 +888.335742 +888.436174 +888.536874 +888.637107 +888.937872 +889.038005 +889.138505 +889.236706 +889.537905 +889.637505 +889.737638 +889.838571 +889.936373 +890.036905 +890.139370 +890.238670 +890.438337 +890.636872 +890.653954 +890.736106 +890.937804 +891.040801 +891.141300 +891.338602 +891.438236 +891.737004 +891.937436 +892.443363 +892.538002 +892.737769 +892.936803 +893.036969 +893.995976 +895.970466 +897.656512 +898.034833 +898.040361 +898.049851 +898.058609 +898.067600 +898.078556 +898.102099 +898.114453 +898.129338 +898.141060 +898.155945 +898.210424 +898.238895 +898.268432 +898.297337 +898.383118 +898.425275 +898.455079 +898.468998 +898.485582 +898.502198 +898.544356 +898.648485 +898.955844 +899.004129 +899.046986 +899.060173 +899.077023 +899.107892 +899.157309 +899.204862 +899.216517 +899.254845 +899.272028 +899.306760 +899.326640 +899.375424 +899.400832 +899.416516 +899.508424 +899.526839 +899.555477 +899.603596 +899.662737 +899.933599 +899.962969 +900.020712 +900.036862 +900.068031 +900.088610 +900.345620 +900.365800 +900.385147 +900.395703 +900.410055 +900.428637 +900.446219 +900.462536 +900.473592 +900.503495 +900.523708 +900.565033 +900.581350 +900.599632 +900.617548 +900.664334 +900.679585 +900.697201 +900.890841 +900.903228 +900.960504 +900.977654 +900.993405 +901.033398 +901.050248 +901.061470 +901.163002 +901.182249 +901.195702 +901.298399 +901.926371 +903.718510 +904.975519 +907.866292 +909.486936 +909.494329 +909.529993 +913.036383 +913.041611 +914.036182 +914.041543 +914.801716 +914.813071 +915.035082 +916.040343 +916.047769 +917.034581 +917.042140 +918.035878 +918.933580 +923.034974 +923.039869 +923.434108 +923.537971 +923.636339 +923.737205 +923.837471 +923.937771 +924.038670 +924.137637 +924.437171 +924.638935 +924.738369 +924.938136 +925.039002 +925.338602 +925.582624 +925.736637 +925.938868 +926.038934 +926.137868 +926.237069 +926.337568 +926.436370 +926.537202 +926.839466 +926.937801 +927.038500 +927.236169 +927.337934 +927.538267 +927.638633 +927.936501 +928.038999 +933.033865 +933.059074 +933.152913 +933.330136 +933.585114 +934.081783 +934.111120 +934.138993 +934.197967 +934.213185 +934.227637 +934.257607 +934.296968 +934.381317 +934.397001 +934.410721 +934.436728 +934.485679 +934.606092 +934.651213 +934.957340 +935.050014 +935.113783 +935.149048 +935.299065 +935.312751 +935.499497 +935.514349 +935.529900 +935.542954 +935.560503 +935.590706 +935.968361 +935.987309 +936.003360 +936.072757 +936.280516 +936.491205 +936.521141 +936.538124 +936.679483 +936.792836 +936.936326 +937.488240 +940.428597 +941.785738 +941.885572 +941.937253 +944.796391 +947.459958 +947.563588 +947.571813 +948.034183 +949.036180 +949.046071 +950.037645 +950.041907 +950.051231 +950.254627 +951.037144 +951.043504 +952.045069 +953.769609 +954.102043 +958.038070 +958.043664 +958.335971 +958.436204 +958.536604 +958.637969 +958.937303 +959.037369 +959.338002 +960.036736 +960.137701 +960.737334 +961.137400 +961.238033 +961.538566 +961.738266 +961.937966 +962.139164 +962.238798 +962.738032 +962.937765 +963.037732 +963.624677 +964.002199 +966.038028 +968.033464 +968.059671 +968.137060 +968.665298 +969.033130 +969.081349 +969.422341 +969.552743 +969.654508 +969.869826 +969.898297 +969.913782 +969.941687 +969.989340 +970.005057 +970.035926 +970.062067 +970.111417 +970.216046 +970.263965 +970.341920 +970.570791 +970.584677 +970.600761 +970.621274 +970.646149 +970.673322 +970.692269 +970.758570 +970.799795 +970.890904 +970.955339 +971.124204 +971.150477 +971.223371 +971.239388 +971.248479 +971.335126 +971.349711 +971.380480 +971.412049 +971.459734 +971.472522 +971.701126 +971.717909 +971.772088 +971.846780 +972.128765 +972.146847 +972.160933 +972.177349 +972.193067 +972.213846 +972.276184 +972.294399 +972.325834 +972.339254 +972.385008 +972.426800 +972.500726 +972.530762 +972.544415 +972.595864 +972.614878 +972.848777 +972.899393 +980.496589 +980.594091 +981.677973 +981.704979 +982.962787 +983.035014 +983.053696 +984.035546 +984.042239 +984.806574 +985.042138 +986.042004 +986.140572 +987.037874 +987.043036 +989.139437 +992.343563 +992.353253 +993.042796 +993.050023 +993.136403 +993.237035 +993.335670 +993.537202 +993.636202 +993.736868 +993.838000 +993.937767 +994.037601 +994.138233 +994.238899 +994.338799 +994.440231 +994.538699 +994.638433 +994.737267 +994.838799 +995.138132 +995.237766 +995.339830 +995.438532 +995.539231 +995.636567 +995.837965 +995.939164 +996.038531 +996.139663 +996.238531 +996.536766 +996.636899 +996.737598 +996.939662 +997.040195 +997.142892 +997.239595 +997.437131 +997.638296 +997.737464 +997.838429 +998.035366 +998.037697 +1003.035627 +1003.048747 +1003.059636 +1003.090372 +1003.102393 +1003.123139 +1003.136493 +1003.152676 +1003.166762 +1003.180715 +1003.196499 +1003.280315 +1003.308820 +1003.470192 +1003.538790 +1003.572756 +1003.632729 +1003.690005 +1003.723105 +1003.773155 +1003.791004 +1003.820741 +1003.872722 +1003.917478 +1003.934860 +1003.993768 +1004.013148 +1004.078716 +1004.097497 +1004.119076 +1004.210051 +1004.270824 +1004.332862 +1004.377251 +1004.389139 +1004.451976 +1004.467327 +1004.484810 +1004.501959 +1004.580414 +1004.622638 +1004.655039 +1004.686708 +1004.764596 +1004.794933 +1004.811449 +1004.847946 +1005.394799 +1005.472887 +1005.493300 +1005.512980 +1005.549344 +1005.584942 +1005.602824 +1005.708585 +1005.725401 +1005.740453 +1005.756137 +1005.806853 +1005.905887 +1005.921904 +1005.951575 +1006.031728 +1006.998926 +1009.757165 +1010.153502 +1014.807210 +1017.380734 +1018.036844 +1018.043537 +1019.040872 +1019.901511 +1020.037009 +1020.044268 +1021.036874 +1021.047097 +1022.036074 +1022.043833 +1023.036706 +1023.043233 +1028.042562 +1028.134903 +1028.236468 +1028.336134 +1028.437566 +1028.537733 +1028.637999 +1028.738498 +1028.838865 +1028.938964 +1029.138698 +1029.241928 +1029.338464 +1029.839330 +1029.939130 +1030.338930 +1030.537664 +1030.638330 +1031.838096 +1032.039128 +1032.238728 +1032.340027 +1032.440526 +1032.539227 +1032.941425 +1033.038694 +1038.041220 +1038.058835 +1038.070457 +1038.089971 +1038.102425 +1038.115579 +1038.126734 +1038.341519 +1038.736857 +1038.849011 +1039.032061 +1039.063530 +1039.112647 +1039.175185 +1039.191968 +1039.279147 +1039.294332 +1039.358434 +1039.387539 +1039.400725 +1039.412947 +1039.427832 +1039.468591 +1039.520073 +1039.557535 +1039.592767 +1039.610416 +1039.875417 +1039.894631 +1039.994265 +1040.049310 +1040.067058 +1040.100991 +1040.140019 +1040.212147 +1040.275983 +1040.288237 +1040.465826 +1040.538919 +1040.557967 +1040.576682 +1040.727864 +1040.742649 +1040.767857 +1040.821070 +1040.850341 +1040.867491 +1040.885273 +1040.916575 +1040.935955 +1040.985439 +1041.217807 +1041.393964 +1041.422602 +1041.439818 +1041.456068 +1041.470587 +1041.490800 +1041.510980 +1041.551706 +1041.616174 +1041.786138 +1041.824965 +1041.834955 +1041.916274 +1041.963993 +1042.046344 +1042.127230 +1042.136454 +1042.201555 +1042.213710 +1042.226297 +1042.260430 +1042.278012 +1042.338352 +1042.560562 +1042.743812 +1042.864492 +1043.440149 +1045.783836 +1045.788964 +1045.797322 +1050.208840 +1052.788757 +1053.037875 +1054.035809 +1055.034876 +1056.034675 +1057.580228 +1057.594314 +1058.819953 +1058.835238 +1063.134501 +1063.335500 +1063.435999 +1063.535134 +1063.636066 +1063.735633 +1063.936532 +1064.036798 +1064.137331 +1064.236032 +1064.336631 +1064.436698 +1064.636964 +1064.736265 +1064.836664 +1065.037363 +1065.136664 +1065.237330 +1065.336264 +1065.536630 +1065.636197 +1065.737496 +1065.837296 +1065.937096 +1066.036863 +1066.236463 +1066.336696 +1066.436929 +1066.536562 +1066.836895 +1066.936629 +1067.137261 +1067.237194 +1067.336861 +1067.437261 +1067.537028 +1067.636029 +1067.736761 +1067.836395 +1067.936528 +1068.036461 +1073.033293 +1073.041684 +1073.080878 +1073.094132 +1073.104521 +1073.116076 +1073.187072 +1073.228197 +1073.278347 +1073.437987 +1073.454304 +1073.503688 +1073.516642 +1073.546446 +1073.620105 +1073.731227 +1073.745913 +1073.850475 +1073.865226 +1073.962296 +1073.979279 +1074.079312 +1074.189235 +1074.203455 +1074.222469 +1074.239086 +1074.255636 +1074.294097 +1074.345879 +1074.362429 +1074.390800 +1074.408416 +1074.558965 +1074.731226 +1074.795828 +1074.813710 +1074.870454 +1074.902288 +1074.917573 +1074.946278 +1075.014310 +1075.037053 +1075.056900 +1075.070520 +1075.408315 +1075.439717 +1075.469221 +1075.500190 +1075.526031 +1075.679277 +1075.860862 +1075.873083 +1075.885404 +1075.903819 +1075.963926 +1076.157332 +1076.171884 +1076.343379 +1076.448907 +1076.672550 +1076.707515 +1076.721101 +1076.757898 +1076.773149 +1076.827295 +1076.842246 +1076.904384 +1076.949672 +1077.087634 +1077.163858 +1077.255166 +1077.317571 +1077.390764 +1077.442812 +1077.555399 +1077.630258 +1077.649305 +1077.760028 +1077.792395 +1077.813208 +1077.981872 +1082.695954 +1082.736180 +1089.032910 +1090.032809 +1092.032907 +1093.031941 +1098.032368 +1098.133800 +1098.233401 +1098.434000 +1098.534832 +1098.735232 +1098.834399 +1098.934599 +1099.035464 +1099.135930 +1099.235830 +1099.334798 +1099.535764 +1099.634898 +1099.733799 +1099.835863 +1099.935663 +1100.034697 +1100.135230 +1100.235263 +1100.336196 +1100.436196 +1100.535929 +1100.635429 +1100.836695 +1100.935929 +1101.035263 +1101.135196 +1101.236528 +1101.335462 +1101.936860 +1102.136161 +1102.434562 +1102.534762 +1102.635827 +1102.835727 +1102.935960 +1103.035261 +1106.328797 +1108.033024 +1108.038519 +1108.057100 +1108.079012 +1108.091299 +1108.225698 +1108.475914 +1108.508016 +1108.536554 +1108.566457 +1108.641415 +1108.670253 +1108.687802 +1108.746677 +1108.788601 +1108.864126 +1108.939750 +1109.018938 +1109.080476 +1109.239384 +1109.373616 +1109.403453 +1109.463759 +1109.479110 +1109.495660 +1109.513209 +1109.525764 +1109.591564 +1109.627428 +1109.642147 +1109.684771 +1109.801188 +1109.818504 +1109.856233 +1109.878311 +1109.910945 +1109.923732 +1109.972683 +1110.017072 +1110.064691 +1110.081241 +1110.097824 +1110.223698 +1110.238117 +1110.318903 +1110.364557 +1110.384138 +1110.429392 +1110.445010 +1110.460761 +1110.530924 +1110.584870 +1110.704484 +1110.735086 +1110.754500 +1110.787301 +1110.818769 +1110.848340 +1110.866022 +1110.884936 +1110.950304 +1111.105516 +1111.125329 +1111.178010 +1111.212242 +1111.327726 +1111.348872 +1111.366421 +1111.423364 +1111.452934 +1111.468652 +1111.569085 +1111.584236 +1111.817403 +1112.175778 +1112.189930 +1112.204349 +1112.237915 +1112.254998 +1112.270150 +1112.287199 +1112.320899 +1112.355431 +1112.388598 +1112.405348 +1112.486866 +1112.504948 +1112.554831 +1112.571115 +1112.621964 +1112.640079 +1112.657662 +1112.691928 +1112.710875 +1112.730988 +1112.747605 +1112.768118 +1112.819833 +1112.905347 +1112.981804 +1123.036173 +1123.049160 +1124.036272 +1124.041200 +1125.035472 +1125.042631 +1125.841831 +1126.033639 +1126.040899 +1127.036369 +1127.045526 +1128.035802 +1128.040497 +1128.076428 +1129.988980 +1130.262706 +1131.076558 +1131.714453 +1131.901665 +1131.939228 +1133.032067 +1133.037362 +1133.067199 +1133.132966 +1133.235330 +1133.335030 +1133.436029 +1133.535763 +1133.636362 +1133.936295 +1134.136195 +1134.236561 +1134.336728 +1134.440557 +1134.537693 +1134.639691 +1134.736061 +1134.835528 +1134.936960 +1135.037693 +1135.137659 +1135.236427 +1135.737259 +1135.934628 +1136.137459 +1136.240622 +1136.338291 +1136.439823 +1136.538923 +1136.837957 +1136.937191 +1137.035659 +1137.237591 +1137.337491 +1137.737290 +1137.837257 +1137.937257 +1140.153272 +1142.747775 +1143.036353 +1143.040582 +1143.048907 +1143.058963 +1143.068421 +1143.080009 +1143.104784 +1143.126096 +1143.140215 +1143.166656 +1143.182939 +1143.226462 +1143.378144 +1143.394994 +1143.443412 +1143.560894 +1143.710644 +1143.771184 +1143.832955 +1143.864058 +1144.012875 +1144.056731 +1144.087068 +1144.105782 +1144.122332 +1144.138816 +1144.154234 +1144.186368 +1144.234420 +1144.296058 +1144.374114 +1144.416505 +1144.433754 +1144.614806 +1144.648306 +1144.655232 +1144.679375 +1144.696957 +1144.740913 +1144.762525 +1144.775379 +1144.791562 +1144.908978 +1144.953933 +1145.114572 +1145.340946 +1145.386267 +1145.518202 +1145.533486 +1145.563024 +1145.629823 +1145.642577 +1145.660093 +1145.687932 +1145.718634 +1145.750070 +1145.770649 +1145.953633 +1145.971481 +1146.004448 +1146.019134 +1146.035817 +1146.128724 +1146.320599 +1146.408078 +1146.499420 +1146.513239 +1146.527292 +1146.542876 +1146.558760 +1146.605746 +1146.641544 +1146.675443 +1146.706546 +1146.945773 +1147.014038 +1147.049169 +1147.068683 +1147.082369 +1147.102083 +1147.119532 +1147.135416 +1147.205313 +1147.291227 +1147.329988 +1147.523761 +1147.556461 +1147.621763 +1147.636981 +1147.692725 +1147.725492 +1147.743175 +1147.758992 +1147.810640 +1147.880004 +1147.927324 +1148.012605 +1148.339111 +1148.580736 +1149.134349 +1151.136345 +1151.140840 +1151.152495 +1154.872738 +1154.882695 +1154.898246 +1155.314762 +1155.538471 +1155.992384 +1155.997678 +1157.623451 +1158.034839 +1158.041632 +1158.272901 +1158.387786 +1159.484788 +1159.491348 +1159.515823 +1160.039200 +1161.036801 +1161.043394 +1162.036567 +1162.044992 +1163.034668 +1163.040362 +1164.297537 +1164.303564 +1164.320248 +1164.405595 +1165.660106 +1165.680186 +1167.328103 +1167.337860 +1168.041589 +1168.133131 +1168.234896 +1168.335062 +1168.435828 +1168.535595 +1168.635861 +1168.735628 +1168.836427 +1168.935727 +1169.437658 +1169.636926 +1169.736559 +1169.836193 +1170.135760 +1170.336159 +1170.436525 +1170.536225 +1170.636758 +1170.837957 +1171.038356 +1171.137790 +1171.237790 +1171.338289 +1171.837123 +1172.035525 +1172.138521 +1172.240020 +1172.338055 +1172.538621 +1172.636989 +1172.736290 +1172.936290 +1173.037189 +1173.471121 +1173.476582 +1176.984204 +1178.033021 +1178.038249 +1178.043943 +1178.058129 +1178.066354 +1178.077377 +1178.086734 +1178.121599 +1178.134952 +1178.149871 +1178.163790 +1178.177809 +1178.208112 +1178.484636 +1178.497623 +1178.519834 +1178.543776 +1178.572315 +1178.608245 +1178.622065 +1178.658595 +1178.745308 +1178.774812 +1178.792128 +1178.805514 +1179.179007 +1179.269783 +1179.377042 +1179.408944 +1179.473546 +1179.516037 +1179.534318 +1179.549869 +1179.568318 +1179.614871 +1179.632087 +1179.720465 +1179.766552 +1179.833685 +1179.848937 +1179.862090 +1179.902150 +1179.916536 +1179.995989 +1180.014038 +1180.265420 +1180.577241 +1180.622496 +1180.641810 +1180.677041 +1180.693824 +1180.756262 +1180.771380 +1180.811939 +1180.935116 +1180.944373 +1180.955163 +1181.012772 +1181.063754 +1181.081037 +1181.097787 +1181.145439 +1181.325958 +1181.420031 +1181.659025 +1181.734016 +1181.749867 +1182.062421 +1182.124292 +1182.144705 +1182.159157 +1182.194322 +1182.243606 +1182.268048 +1182.288595 +1182.340642 +1182.387429 +1182.452197 +1182.468681 +1182.490459 +1182.507675 +1182.587362 +1182.665118 +1182.707442 +1182.745804 +1182.876639 +1182.893989 +1182.960988 +1183.027888 +1189.615560 +1193.036003 +1193.055750 +1194.035536 +1194.401636 +1196.032936 +1196.788081 +1197.038596 +1200.691939 +1200.837094 +1200.845186 +1203.030299 +1203.134628 +1203.234894 +1203.335593 +1203.835027 +1203.936592 +1204.437357 +1204.537257 +1204.637257 +1204.737790 +1204.840487 +1204.937057 +1205.236524 +1205.337722 +1205.437090 +1205.537189 +1205.736357 +1205.837589 +1205.937355 +1206.038987 +1206.136456 +1206.436256 +1206.841184 +1206.936089 +1207.038420 +1207.137521 +1207.337121 +1207.736255 +1207.839585 +1207.936521 +1208.037487 +1213.048471 +1213.057695 +1213.067651 +1213.089929 +1213.101018 +1213.141944 +1213.158061 +1213.172047 +1213.224661 +1213.297788 +1213.321331 +1213.336849 +1213.424261 +1213.517068 +1213.652233 +1213.668517 +1213.693092 +1213.711540 +1213.725293 +1213.742043 +1213.773178 +1213.836648 +1213.895456 +1213.912073 +1213.927591 +1214.034017 +1214.081070 +1214.128623 +1214.287530 +1214.348869 +1214.391626 +1214.409142 +1214.765185 +1214.902948 +1214.984566 +1215.000450 +1215.032485 +1215.130853 +1215.148602 +1215.286430 +1215.722927 +1215.798052 +1215.813503 +1215.828388 +1215.860056 +1215.878238 +1215.912870 +1216.007808 +1216.025457 +1216.042274 +1216.075041 +1216.091158 +1216.125257 +1216.142573 +1216.156826 +1216.220495 +1216.237245 +1216.353096 +1216.381401 +1216.410672 +1216.447635 +1216.465017 +1216.590858 +1216.666915 +1216.687561 +1216.699383 +1216.951397 +1217.015366 +1217.033548 +1217.049765 +1217.070178 +1217.162586 +1217.197218 +1217.353361 +1217.629951 +1217.657524 +1217.671976 +1217.685329 +1217.761852 +1217.795419 +1217.834613 +1217.899881 +1217.981832 +1217.995918 +1221.153091 +1221.163181 +1223.815526 +1225.233973 +1228.036634 +1228.046125 +1229.033536 +1229.039797 +1230.035899 +1230.041194 +1231.036431 +1234.205426 +1235.320276 +1235.993736 +1238.235159 +1238.245182 +1238.436024 +1238.645315 +1238.937589 +1239.337522 +1239.843748 +1240.736655 +1241.845345 +1242.037952 +1242.337952 +1242.345777 +1242.437652 +1242.538318 +1242.636952 +1242.839350 +1243.039816 +1243.436918 +1245.213706 +1247.116402 +1248.055329 +1248.065818 +1248.076541 +1248.088962 +1248.110873 +1248.136947 +1248.153530 +1248.205012 +1248.237546 +1248.408841 +1248.489427 +1248.503813 +1248.537379 +1248.551399 +1248.781002 +1248.810972 +1248.929420 +1249.000582 +1249.030086 +1249.108541 +1249.123260 +1249.139277 +1249.290759 +1249.322260 +1249.611138 +1249.628587 +1249.689060 +1249.776073 +1249.836013 +1249.848800 +1249.944737 +1249.991957 +1250.018097 +1250.031750 +1250.047368 +1250.059389 +1250.072643 +1250.131684 +1250.174807 +1250.266615 +1250.285063 +1250.434913 +1250.451164 +1250.521926 +1250.537211 +1250.700414 +1250.811403 +1250.936012 +1251.041440 +1251.074606 +1251.097284 +1251.156125 +1251.246667 +1251.747832 +1251.793853 +1251.859421 +1251.888625 +1251.923323 +1251.971808 +1252.001379 +1252.038808 +1252.052294 +1252.084729 +1252.266913 +1252.763283 +1252.785694 +1252.819959 +1252.895584 +1252.956556 +1253.494517 +1256.770838 +1256.775933 +1256.784391 +1263.034768 +1264.044623 +1265.039527 +1266.044521 +1267.038826 +1271.694499 +1271.704756 +1273.038221 +1273.043715 +1273.136656 +1273.237588 +1273.245680 +1273.340418 +1273.443415 +1273.546912 +1273.742016 +1273.839952 +1273.941650 +1274.442582 +1275.039617 +1275.440250 +1275.539284 +1276.043612 +1276.139883 +1276.445011 +1276.839682 +1276.938650 +1277.040681 +1277.248972 +1277.339449 +1277.347707 +1277.439715 +1277.540048 +1277.742945 +1277.841313 +1277.939148 +1278.872914 +1278.990329 +1281.663121 +1281.707776 +1283.037445 +1283.041940 +1283.081634 +1283.090658 +1283.105210 +1283.206775 +1283.249899 +1283.283565 +1283.511937 +1283.666548 +1283.696086 +1283.786229 +1283.804577 +1283.933881 +1283.963052 +1284.015133 +1284.033315 +1284.287760 +1284.354593 +1284.734812 +1284.763550 +1284.776770 +1284.807373 +1284.823923 +1284.839441 +1285.075671 +1285.140906 +1285.228552 +1285.259687 +1285.276670 +1285.324888 +1285.438541 +1285.467712 +1285.546300 +1285.613699 +1285.628285 +1285.767945 +1285.780499 +1285.844002 +1285.875138 +1285.889890 +1285.907372 +1285.955257 +1286.022091 +1286.035610 +1286.145667 +1286.194651 +1286.359753 +1286.375737 +1286.404941 +1286.439106 +1286.472173 +1286.648963 +1286.665047 +1286.699179 +1286.732013 +1286.834344 +1286.848730 +1286.862982 +1286.896715 +1287.106239 +1287.228883 +1287.245799 +1287.276901 +1287.290821 +1287.424620 +1287.567677 +1287.587290 +1287.606638 +1287.656321 +1287.668343 +1287.703974 +1287.830547 +1287.917127 +1288.427816 +1294.402169 +1298.036031 +1298.041126 +1298.057377 +1299.036596 +1299.047152 +1300.036495 +1300.047618 +1302.039624 +1308.136088 +1308.335854 +1308.436387 +1308.536787 +1308.637219 +1308.837319 +1308.937519 +1309.037485 +1309.137652 +1309.237685 +1309.337752 +1309.538251 +1309.637618 +1309.737418 +1309.937951 +1310.037684 +1310.337451 +1310.438017 +1310.537650 +1310.638017 +1310.738250 +1310.838416 +1310.937550 +1311.038050 +1311.137916 +1311.237816 +1311.638215 +1311.738615 +1311.839048 +1311.938482 +1312.037982 +1312.238348 +1312.338548 +1312.538015 +1312.638448 +1312.738414 +1312.938181 +1313.037981 +1313.475976 +1318.034912 +1318.052961 +1318.071076 +1318.086561 +1318.099747 +1318.113867 +1318.126554 +1318.151396 +1318.181033 +1318.223024 +1318.322358 +1318.339208 +1318.371575 +1318.453826 +1318.480500 +1318.497083 +1318.511668 +1318.527786 +1318.554625 +1318.584662 +1318.601445 +1318.616797 +1318.632281 +1318.717529 +1318.748398 +1318.772108 +1318.805674 +1318.850529 +1318.882297 +1318.895817 +1318.958255 +1318.999580 +1319.016263 +1319.042071 +1319.056723 +1319.148398 +1319.175737 +1319.203443 +1319.218727 +1319.235277 +1319.250729 +1319.309503 +1319.388457 +1319.405274 +1319.422557 +1319.492320 +1319.505474 +1319.622490 +1319.668577 +1319.687392 +1319.822989 +1319.839040 +1320.001311 +1320.040571 +1320.057554 +1320.169875 +1320.251727 +1320.265646 +1320.358853 +1320.385160 +1320.403175 +1320.438939 +1320.520990 +1320.585060 +1320.614264 +1320.689955 +1320.705772 +1320.723155 +1320.756888 +1320.830647 +1320.879898 +1320.897480 +1320.916295 +1320.930514 +1320.945599 +1321.068676 +1321.095549 +1321.127217 +1321.246997 +1321.280896 +1321.341203 +1321.402641 +1321.450194 +1321.493717 +1321.542768 +1321.558585 +1321.577999 +1321.670040 +1321.751592 +1321.769374 +1321.799977 +1321.835708 +1321.884159 +1321.995714 +1322.123287 +1322.138105 +1322.263646 +1322.279164 +1322.343533 +1322.371039 +1322.400942 +1333.035064 +1334.035729 +1335.034729 +1336.035960 +1343.034421 +1343.135587 +1343.235753 +1343.336119 +1343.436052 +1343.536618 +1343.632789 +1343.637284 +1343.737717 +1343.936551 +1344.037617 +1344.138016 +1344.238083 +1344.338016 +1344.737150 +1344.938615 +1345.236750 +1345.337183 +1345.437849 +1345.638415 +1345.737316 +1347.038347 +1347.138813 +1347.338679 +1347.438712 +1347.638413 +1347.738113 +1353.036276 +1353.042237 +1353.060185 +1353.092553 +1353.111168 +1353.123522 +1353.137941 +1353.276902 +1353.348896 +1353.397315 +1353.489822 +1353.521157 +1353.566712 +1353.609902 +1353.639972 +1353.812166 +1353.834377 +1353.898713 +1353.933744 +1353.979865 +1353.999811 +1354.017294 +1354.052359 +1354.069908 +1354.159685 +1354.233544 +1354.389821 +1354.421489 +1354.434576 +1354.508502 +1354.542668 +1354.576001 +1354.676934 +1354.736974 +1354.755555 +1354.819857 +1354.850560 +1354.882528 +1354.915961 +1355.186357 +1355.218492 +1355.234309 +1355.250759 +1355.265944 +1355.335308 +1355.370473 +1355.384958 +1355.423087 +1355.478398 +1355.494981 +1355.528148 +1355.549427 +1355.681661 +1355.779963 +1355.793649 +1355.834142 +1355.868108 +1355.887156 +1355.916460 +1355.933409 +1355.983959 +1356.002074 +1356.029446 +1356.064245 +1356.113029 +1356.132377 +1356.372370 +1356.390485 +1356.406269 +1356.424984 +1356.461081 +1356.509133 +1356.522220 +1356.599609 +1356.618523 +1356.657385 +1356.819622 +1356.850924 +1356.869739 +1356.901107 +1356.920788 +1357.003172 +1357.052822 +1357.274900 +1357.418523 +1357.605569 +1365.970129 +1365.975024 +1366.969662 +1366.973625 +1367.970127 +1367.975355 +1368.970559 +1368.975820 +1369.970158 +1369.974954 +1370.970391 +1370.976185 +1375.970186 +1376.170452 +1376.176279 +1376.270785 +1376.370751 +1376.471151 +1376.571917 +1376.672116 +1376.771450 +1376.871517 +1376.971483 +1377.171750 +1377.271683 +1377.371683 +1377.471649 +1377.571949 +1377.672049 +1377.771782 +1377.871682 +1377.971882 +1378.071782 +1378.172248 +1378.271848 +1378.471648 +1378.571648 +1378.672214 +1378.872014 +1378.972114 +1379.071914 +1379.172081 +1379.272047 +1379.372547 +1379.472114 +1379.571781 +1379.772013 +1379.872346 +1379.972180 +1380.072313 +1380.272013 +1380.371946 +1380.471913 +1380.572246 +1380.672346 +1380.872146 +1380.877340 +1380.972112 +1382.887761 +1382.891824 +1382.898950 +1385.232547 +1385.245934 +1385.970908 +1385.984928 +1386.348264 +1386.375670 +1386.386559 +1386.402243 +1386.439106 +1386.771640 +1386.951593 +1387.160617 +1387.200045 +1387.398046 +1387.529914 +1387.899112 +1387.934310 +1387.963514 +1388.277133 +1388.491818 +1389.080596 +1389.404172 +1389.815460 +1389.845363 +1389.917225 +1389.980062 +1389.994780 +1390.332143 +1390.676232 +1390.682092 +1390.711663 +1390.848026 +1390.879495 +1390.909165 +1401.971392 +1402.971224 +1404.970390 +1405.970888 +1410.969951 +1410.977876 +1411.071016 +1411.171216 +1411.271649 +1411.372381 +1411.472548 +1411.572115 +1411.672414 +1411.772548 +1411.872281 +1411.972481 +1412.172481 +1412.372847 +1412.472747 +1412.572613 +1412.672647 +1412.772846 +1412.872613 +1412.972413 +1413.072646 +1413.172713 +1413.272646 +1413.372779 +1413.472646 +1413.772945 +1413.873178 +1413.972745 +1414.172812 +1414.272645 +1414.373044 +1414.472778 +1414.572978 +1414.672978 +1414.772378 +1414.872711 +1414.972844 +1415.072611 +1415.173144 +1415.272711 +1415.372444 +1415.472377 +1415.573043 +1415.673443 +1415.772976 +1415.872377 +1415.972643 +1417.529918 +1417.538676 +1420.970507 +1420.974769 +1420.979598 +1420.984826 +1420.994117 +1421.010800 +1421.043401 +1421.068176 +1421.093251 +1421.105405 +1421.140537 +1421.155422 +1421.177999 +1421.191786 +1421.253391 +1421.287390 +1421.300910 +1421.326318 +1421.347463 +1421.432678 +1421.458186 +1421.470007 +1421.511932 +1421.550693 +1421.692451 +1421.719357 +1421.735508 +1421.745232 +1421.810633 +1421.984725 +1422.489620 +1422.502607 +1422.700142 +1422.782926 +1422.946063 +1422.986522 +1423.001474 +1423.013329 +1423.026582 +1423.065010 +1423.158883 +1423.183425 +1423.518024 +1423.546029 +1423.691916 +1423.754387 +1423.767307 +1423.795945 +1423.841233 +1423.934407 +1424.289285 +1424.952221 +1424.964143 +1425.034306 +1435.972557 +1435.976519 +1435.986110 +1436.979582 +1437.972555 +1437.977350 +1438.972221 +1438.977382 +1439.973319 +1439.977847 +1440.978945 +1445.972980 +1445.978374 +1446.173845 +1446.274611 +1446.374511 +1446.574910 +1446.675077 +1446.875077 +1447.073545 +1447.174810 +1447.274610 +1447.279905 +1447.375376 +1447.475176 +1447.575209 +1447.775542 +1447.874676 +1447.974576 +1448.075142 +1448.181302 +1448.275242 +1448.280337 +1448.375375 +1448.479337 +1448.575341 +1448.674842 +1448.775374 +1448.780569 +1448.875807 +1448.880336 +1448.975674 +1448.980569 +1449.075973 +1449.175973 +1449.282267 +1449.375973 +1449.475274 +1449.574441 +1449.674841 +1449.875340 +1449.975307 +1450.075440 +1450.081367 +1450.175906 +1450.275806 +1450.474474 +1450.575706 +1450.675439 +1450.680401 +1450.775772 +1450.875739 +1450.880667 +1450.975805 +1451.005708 +1452.485327 +1452.490822 +1452.504208 +1453.494650 +1453.500378 +1453.517095 +1454.428615 +1455.875867 +1455.882427 +1455.972204 +1455.986323 +1456.005171 +1456.104804 +1456.153289 +1456.169107 +1456.194148 +1456.204371 +1456.290785 +1456.301241 +1456.316093 +1456.341534 +1456.365244 +1456.389153 +1456.404338 +1456.443199 +1456.455986 +1456.481560 +1456.505570 +1456.534940 +1457.564576 +1457.598176 +1457.613694 +1457.638536 +1457.735738 +1457.749391 +1457.823817 +1457.909265 +1458.286687 +1458.309031 +1458.623050 +1458.667872 +1458.692048 +1458.751588 +1458.797775 +1458.809730 +1458.819587 +1458.941598 +1458.947858 +1459.006600 +1459.061644 +1459.076530 +1459.157215 +1459.197508 +1459.238601 +1459.291215 +1459.483689 +1459.556549 +1459.796742 +1460.020618 +1463.607494 +1463.613222 +1463.621713 +1465.060873 +1465.071462 +1467.714150 +1468.790606 +1468.811119 +1470.974819 +1470.980813 +1471.980080 +1472.988637 +1473.975682 +1473.980344 +1474.975581 +1474.981442 +1475.974548 +1475.979610 +1475.985903 +1479.892260 +1480.973444 +1480.974077 +1480.994723 +1481.175209 +1481.276074 +1481.376507 +1481.476474 +1481.575408 +1481.676607 +1481.876873 +1481.977173 +1482.077406 +1482.177006 +1482.276773 +1482.476706 +1482.576639 +1482.676506 +1482.877338 +1482.977138 +1483.076872 +1483.172942 +1483.176872 +1483.276905 +1483.376971 +1483.576971 +1483.677171 +1483.777104 +1483.877337 +1483.977237 +1484.086395 +1484.177004 +1484.277070 +1484.376804 +1484.476937 +1484.577270 +1484.582764 +1484.777403 +1484.877802 +1485.077336 +1485.177469 +1485.281165 +1485.376137 +1485.476836 +1485.576769 +1485.677202 +1485.683829 +1485.773073 +1485.777169 +1485.783130 +1485.982130 +1488.590619 +1488.596613 +1488.648395 +1489.907335 +1489.914427 +1490.978496 +1490.982758 +1490.989185 +1491.011463 +1491.027413 +1491.059182 +1491.080294 +1491.089884 +1491.101140 +1491.123883 +1491.146860 +1491.170537 +1491.181159 +1491.194113 +1491.207233 +1491.219621 +1491.232275 +1491.245062 +1491.258116 +1491.271136 +1491.298908 +1491.311329 +1491.351389 +1491.398475 +1491.413194 +1491.679128 +1491.701772 +1491.816190 +1492.178561 +1492.514591 +1492.539333 +1492.606100 +1492.810695 +1493.199439 +1493.221817 +1493.248457 +1493.260611 +1493.273365 +1493.299805 +1493.310428 +1493.340798 +1493.356882 +1493.409962 +1493.430308 +1493.456449 +1493.483821 +1493.512626 +1493.573798 +1494.073031 +1494.328675 +1494.563074 +1494.610593 +1494.623147 +1494.629408 +1494.721749 +1498.784482 +1498.793839 +1498.892274 +1500.825073 +1501.356541 +1501.972624 +1505.981245 +1506.975050 +1506.979545 +1507.978512 +1507.984606 +1508.976613 +1508.980675 +1509.976212 +1509.982173 +1510.976078 +1510.979708 +1510.987966 +1511.849504 +1511.860393 +1514.380104 +1514.399085 +1515.435781 +1515.934714 +1515.974708 +1516.075307 +1516.175473 +1516.276106 +1516.376839 +1516.476972 +1516.483465 +1516.483765 +1516.576505 +1516.583299 +1516.585596 +1516.676472 +1516.687627 +1516.777105 +1516.977238 +1517.077237 +1517.177271 +1517.277337 +1517.377603 +1517.477370 +1517.775738 +1517.876404 +1517.976471 +1518.077003 +1518.083064 +1518.177037 +1518.277636 +1518.377336 +1518.477935 +1518.577336 +1518.777569 +1518.877236 +1518.976237 +1519.076270 +1519.176436 +1519.276836 +1519.377535 +1519.477601 +1519.577302 +1519.677335 +1519.690022 +1519.777435 +1519.976535 +1519.980864 +1520.076202 +1520.177301 +1520.276901 +1520.376035 +1520.477401 +1520.677467 +1520.682096 +1520.777733 +1520.877533 +1520.882495 +1520.977600 +1520.988955 +1524.601139 +1524.606700 +1525.436770 +1525.979992 +1525.987318 +1525.998640 +1526.075197 +1526.108597 +1526.122750 +1526.145993 +1526.253952 +1526.295943 +1526.343196 +1526.419286 +1526.473232 +1526.538267 +1528.355648 +1528.627342 +1528.643659 +1540.975515 +1540.980810 +1541.979510 +1541.989201 +1542.976179 +1542.980109 +1543.007182 +1543.975845 +1543.982539 +1544.395026 +1544.980406 +1545.975910 +1545.979906 +1545.987964 +1548.399517 +1550.975206 +1550.981033 +1551.075772 +1551.177004 +1551.181166 +1551.276904 +1551.377170 +1551.477736 +1551.578368 +1551.677602 +1551.777569 +1551.877969 +1551.977968 +1552.077868 +1552.178035 +1552.277502 +1552.378101 +1552.477901 +1552.577835 +1552.773805 +1552.777934 +1552.877801 +1552.883229 +1552.978201 +1553.278167 +1553.378167 +1553.477967 +1553.578100 +1553.677667 +1553.777500 +1553.877467 +1553.977733 +1553.983727 +1553.987157 +1554.078133 +1554.178666 +1554.278266 +1554.378199 +1554.478099 +1554.577899 +1554.678598 +1554.773970 +1554.778498 +1554.878398 +1554.978065 +1555.077799 +1555.083094 +1555.178065 +1555.278498 +1555.477998 +1555.574069 +1555.578098 +1555.677698 +1555.778098 +1555.783426 +1555.977598 +1557.305635 +1557.309532 +1557.316158 +1557.338136 +1559.255251 +1560.980357 +1560.988882 +1561.040730 +1561.064573 +1561.122448 +1561.159444 +1561.225378 +1561.273430 +1561.286051 +1561.299571 +1561.415988 +1561.483687 +1561.542228 +1563.124411 +1563.228507 +1563.591510 +1564.090211 +1564.190011 +1564.233234 +1564.264336 +1564.449851 +1567.723873 +1567.731599 +1570.823005 +1572.082810 +1572.101924 +1575.975946 +1575.980242 +1575.988267 +1576.975812 +1576.980374 +1577.976677 +1577.982271 +1578.980772 +1579.009377 +1579.976242 +1579.981237 +1580.976841 +1580.982002 +1584.533780 +1585.976602 +1585.981997 +1586.075836 +1586.176502 +1586.377401 +1586.477901 +1586.577901 +1586.777967 +1586.786658 +1586.978333 +1587.078100 +1587.178233 +1587.278200 +1587.478333 +1587.578532 +1587.583993 +1587.677933 +1587.777999 +1587.878132 +1587.883294 +1587.978798 +1588.085691 +1588.178132 +1588.278232 +1588.378398 +1588.478098 +1588.578265 +1588.678298 +1588.878265 +1588.978564 +1589.074168 +1589.078231 +1589.178697 +1589.278131 +1589.377964 +1589.578464 +1589.678397 +1589.684524 +1589.778031 +1589.782892 +1589.878030 +1589.983325 +1590.174201 +1590.278363 +1590.283924 +1590.378496 +1590.478330 +1590.578529 +1590.678163 +1590.682792 +1590.783591 +1590.878396 +1590.978496 +1595.972164 +1595.982087 +1596.272463 +1596.388647 +1597.144024 +1598.289810 +1599.331001 +1599.485846 +1610.976378 +1610.981439 +1611.984568 +1612.976476 +1612.983036 +1613.976408 +1613.980704 +1613.995489 +1614.975808 +1620.975968 +1620.981096 +1621.076101 +1621.177167 +1621.276700 +1621.577533 +1621.677932 +1621.777432 +1621.877532 +1621.977732 +1622.077898 +1622.178298 +1622.277865 +1622.377698 +1622.477765 +1622.577465 +1622.677698 +1622.683858 +1622.777998 +1622.877764 +1623.177731 +1623.278330 +1623.478363 +1623.682825 +1623.777830 +1623.878130 +1623.976831 +1624.077497 +1624.178096 +1624.278063 +1624.282758 +1624.377630 +1624.577929 +1624.590184 +1624.683657 +1624.776763 +1624.877429 +1624.977796 +1625.178128 +1625.185221 +1625.278261 +1625.378195 +1625.477096 +1625.483423 +1625.677828 +1625.682757 +1625.777695 +1625.877895 +1625.882656 +1625.977928 +1627.167770 +1627.173931 +1628.661675 +1628.666636 +1628.673962 +1629.212157 +1629.218018 +1629.237598 +1630.975026 +1630.989911 +1631.008725 +1631.017616 +1631.030071 +1631.096870 +1631.121412 +1631.131336 +1631.143357 +1631.167400 +1631.205828 +1631.215618 +1631.227140 +1631.266401 +1631.293440 +1631.331769 +1631.342991 +1631.394439 +1631.577456 +1632.995004 +1633.021544 +1633.295137 +1633.362103 +1633.411920 +1633.427637 +1633.494870 +1633.566398 +1633.713185 +1634.149448 +1634.356707 +1635.314815 +1641.059365 +1643.991663 +1647.974909 +1647.981535 +1648.975074 +1648.982101 +1649.974740 +1650.975272 +1653.628882 +1655.974401 +1656.075300 +1656.175500 +1656.275766 +1656.376266 +1656.476166 +1656.576232 +1656.676565 +1656.776498 +1656.876365 +1656.976498 +1657.076698 +1657.176698 +1657.181460 +1657.276631 +1657.376764 +1657.382225 +1657.476697 +1657.576564 +1657.676830 +1657.776597 +1657.876531 +1657.976930 +1658.176663 +1658.276963 +1658.381159 +1658.476896 +1658.481891 +1658.576696 +1658.581425 +1658.676963 +1658.876896 +1658.977029 +1658.983289 +1659.076529 +1659.082257 +1659.177195 +1659.277062 +1659.376829 +1659.476929 +1659.483156 +1659.576662 +1659.676795 +1659.681524 +1659.876828 +1659.885087 +1660.076695 +1660.176861 +1660.276861 +1660.376994 +1660.476561 +1660.576761 +1660.677294 +1660.776761 +1660.781456 +1660.876761 +1660.981522 +1662.779889 +1665.023643 +1665.049251 +1665.084016 +1665.095837 +1665.974225 +1665.988011 +1666.015883 +1666.055443 +1666.144787 +1666.196003 +1666.261237 +1666.490908 +1666.527504 +1666.718247 +1667.937726 +1667.950913 +1667.965531 +1668.044153 +1668.193703 +1668.365764 +1668.378185 +1668.568927 +1668.583480 +1668.693103 +1668.747016 +1668.829467 +1668.996966 +1669.097032 +1669.193635 +1669.253609 +1669.300562 +1670.023505 +1670.321340 +1672.855137 +1672.859366 +1672.866226 +1672.883642 +1672.923002 +1676.250238 +1677.559528 +1678.141312 +1680.980270 +1681.975574 +1681.981102 +1682.975873 +1682.980801 +1683.005809 +1683.980567 +1683.994153 +1684.975971 +1684.981498 +1685.975503 +1685.980299 +1690.016492 +1690.975265 +1690.990816 +1691.074999 +1691.176364 +1691.276431 +1691.377030 +1691.477596 +1691.577329 +1691.677562 +1691.777662 +1691.877462 +1691.976829 +1692.077129 +1692.177628 +1692.277395 +1692.477661 +1692.576562 +1692.677362 +1692.777295 +1692.877561 +1692.977494 +1693.077694 +1693.177661 +1693.277294 +1693.377261 +1693.477694 +1693.577394 +1693.678060 +1693.777627 +1693.877760 +1693.883787 +1693.977993 +1694.077926 +1694.177593 +1694.277393 +1694.377793 +1694.477759 +1694.577693 +1694.677126 +1694.777260 +1694.877792 +1694.977992 +1695.077725 +1695.177759 +1695.277592 +1695.477359 +1695.577692 +1695.677858 +1695.777658 +1695.791344 +1695.877025 +1695.977192 +1699.771261 +1699.998999 +1700.032199 +1700.975189 +1700.981915 +1701.015315 +1701.100463 +1701.212351 +1701.224839 +1701.506657 +1701.702294 +1701.761568 +1702.072357 +1702.099430 +1702.911451 +1702.943019 +1702.958670 +1702.968893 +1702.983279 +1702.995433 +1703.223272 +1703.328600 +1703.340754 +1703.355972 +1703.521740 +1703.528866 +1703.572089 +1703.615313 +1704.183511 +1704.224769 +1704.239155 +1704.268659 +1704.281912 +1704.740520 +1705.125168 +1705.173286 +1705.211115 +1705.225534 +1706.306985 +1706.312713 +1706.322503 +1707.830726 +1707.834989 +1707.845445 +1708.978910 +1708.984005 +1708.992597 +1709.589865 +1709.596093 +1709.611510 +1709.634454 +1710.522465 +1710.527194 +1710.535819 +1711.641578 +1715.976273 +1715.981867 +1716.976105 +1716.980601 +1716.991490 +1717.975838 +1717.980566 +1718.980565 +1718.986659 +1719.976702 +1719.981064 +1720.000977 +1720.974936 +1720.983028 +1724.596444 +1725.975430 +1725.988351 +1726.076029 +1726.176795 +1726.276695 +1726.376495 +1726.476895 +1726.576995 +1726.676861 +1726.777927 +1726.877694 +1726.887317 +1726.977694 +1726.983055 +1727.078093 +1727.178126 +1727.277360 +1727.377926 +1727.383254 +1727.477893 +1727.482455 +1727.577793 +1727.677793 +1727.778026 +1727.883420 +1727.978159 +1727.982921 +1728.078325 +1728.177259 +1728.277592 +1728.377326 +1728.478158 +1728.577892 +1728.678091 +1728.777658 +1728.878091 +1728.977825 +1728.983286 +1729.077925 +1729.177991 +1729.182786 +1729.278224 +1729.377891 +1729.478224 +1729.578390 +1729.678057 +1729.778490 +1729.877791 +1729.977924 +1730.077690 +1730.178190 +1730.277524 +1730.377157 +1730.477857 +1730.578189 +1730.778156 +1730.783817 +1730.877457 +1730.977923 +1733.823940 +1733.831366 +1734.375921 +1735.989007 +1735.995300 +1736.001494 +1736.021674 +1736.033562 +1736.109453 +1736.122506 +1736.250678 +1736.278017 +1736.290238 +1736.300628 +1736.335327 +1736.386908 +1736.400128 +1736.444118 +1736.522706 +1737.066228 +1738.538388 +1738.573220 +1738.670722 +1738.695031 +1739.508916 +1739.644381 +1740.015942 +1740.296928 +1740.354537 +1740.777880 +1748.188295 +1748.196720 +1748.207842 +1749.613235 +1750.964316 +1750.980334 +1751.976536 +1751.987159 +1752.980465 +1752.986392 +1753.976634 +1754.976600 +1755.976599 +1755.981461 +1756.011364 +1756.624317 +1756.910031 +1756.916625 +1756.934940 +1756.958716 +1758.492048 +1759.204934 +1760.980124 +1760.984320 +1761.076128 +1761.082088 +1761.177093 +1761.277526 +1761.377526 +1761.477626 +1761.577992 +1761.677492 +1761.778624 +1761.878391 +1761.978358 +1762.078558 +1762.178125 +1762.277725 +1762.378024 +1762.478357 +1762.578324 +1762.778457 +1762.878490 +1762.978557 +1763.078157 +1763.178556 +1763.378423 +1763.478423 +1763.578390 +1763.678389 +1763.778056 +1763.977490 +1764.078256 +1764.178322 +1764.278689 +1764.378289 +1764.384183 +1764.478422 +1764.578988 +1764.678522 +1764.778588 +1764.878055 +1764.978421 +1765.078455 +1765.178521 +1765.278255 +1765.378521 +1765.578487 +1765.678654 +1765.777988 +1765.978654 +1770.976617 +1770.986907 +1770.999694 +1771.008319 +1771.018542 +1771.029631 +1771.041119 +1771.064296 +1771.114579 +1771.163996 +1771.217210 +1771.254772 +1771.320340 +1771.334193 +1771.365228 +1771.393000 +1771.486474 +1771.499261 +1771.571855 +1771.584842 +1771.597263 +1773.810880 +1774.319737 +1774.544213 +1777.992261 +1777.996257 +1778.007446 +1779.455363 +1779.460458 +1779.467884 +1781.273244 +1781.279104 +1784.230450 +1785.207439 +1785.660019 +1785.749996 +1785.976569 +1785.981397 +1785.989722 +1786.980331 +1786.992286 +1787.977200 +1787.980896 +1787.986757 +1788.977032 +1788.983725 +1789.016359 +1789.976598 +1789.982959 +1790.977430 +1790.981725 +1790.994280 +1795.976026 +1795.980988 +1796.176958 +1796.277658 +1796.377891 +1796.382253 +1796.477957 +1796.578190 +1796.678390 +1796.778323 +1796.878423 +1796.978090 +1797.077990 +1797.178489 +1797.278456 +1797.285415 +1797.378589 +1797.478855 +1797.578422 +1797.677623 +1797.778455 +1797.878355 +1797.883883 +1797.978322 +1797.983483 +1798.078688 +1798.178954 +1798.278655 +1798.378288 +1798.478621 +1798.577822 +1798.678588 +1798.779187 +1798.878321 +1798.978421 +1799.078221 +1799.177988 +1799.278787 +1799.284814 +1799.378620 +1799.478154 +1799.487445 +1799.577521 +1799.678320 +1799.778020 +1799.884480 +1799.978786 +1799.984214 +1800.078686 +1800.085346 +1800.178353 +1800.278419 +1800.378752 +1800.386178 +1800.478752 +1800.678053 +1800.683647 +1800.778619 +1800.784979 +1800.878752 +1802.759869 +1805.976183 +1805.980079 +1805.984674 +1805.989869 +1805.998727 +1806.008417 +1806.018773 +1806.029130 +1806.040818 +1806.052173 +1806.087471 +1806.100525 +1806.194797 +1806.234824 +1806.284208 +1806.323235 +1806.382110 +1806.435856 +1806.461297 +1806.572519 +1806.720238 +1806.812279 +1807.815874 +1807.895162 +1807.919204 +1808.374682 +1808.488301 +1808.501388 +1808.522667 +1808.569054 +1808.623066 +1808.636620 +1809.221767 +1811.318768 +1811.323563 +1813.410841 +1813.415203 +1813.420697 +1813.430354 +1813.449302 +1813.463355 +1814.380503 +1814.384965 +1814.394423 +1816.353994 +1816.359722 +1816.369113 +1816.387727 +1818.550296 +1819.410069 +1820.143435 +1820.148996 +1820.173571 +1820.980230 +1820.989854 +1821.701641 +1821.976466 +1822.818357 +1822.976998 +1822.981460 +1823.036838 +1823.981160 +1824.976696 +1824.980926 +1825.622450 +1825.717189 +1825.976995 +1825.982123 +1828.282920 +1828.348355 +1829.719915 +1829.764271 +1830.662505 +1830.976690 +1830.982518 +1831.076757 +1831.177456 +1831.277656 +1831.578288 +1831.678222 +1831.684981 +1831.877788 +1831.977056 +1832.177455 +1832.277855 +1832.378487 +1832.477888 +1832.578387 +1832.678454 +1832.778487 +1832.878553 +1832.978886 +1833.078586 +1833.178553 +1833.378653 +1833.384813 +1833.577287 +1833.677520 +1833.777354 +1833.877553 +1834.178319 +1834.183847 +1834.278585 +1834.378852 +1834.478552 +1834.578219 +1834.678818 +1834.778818 +1834.789574 +1834.878751 +1834.978618 +1835.079184 +1835.178984 +1835.187675 +1835.278518 +1835.377485 +1835.477485 +1835.577452 +1835.583346 +1835.678351 +1835.684578 +1835.778517 +1835.878917 +1835.978783 +1836.898330 +1837.106022 +1837.112116 +1838.149710 +1838.155105 +1839.668157 +1840.975815 +1840.983174 +1841.196061 +1841.219504 +1841.249141 +1841.365058 +1841.505584 +1843.075912 +1843.350504 +1843.960061 +1844.150637 +1844.477476 +1852.478101 +1852.484861 +1852.525653 +1852.563815 +1852.599613 +1853.369042 +1853.374803 +1853.385792 +1855.450592 +1855.981993 +1856.976931 +1856.982126 +1857.631243 +1857.976797 +1858.963243 +1858.975231 +1858.982323 +1859.250122 +1859.976994 +1859.981956 +1860.924879 +1860.975229 +1862.303499 +1862.308727 +1864.921245 +1865.976223 +1866.075823 +1866.176555 +1866.477721 +1866.577954 +1866.678153 +1866.877753 +1866.977887 +1867.077220 +1867.178286 +1867.278119 +1867.378419 +1867.478319 +1867.577919 +1867.677986 +1867.777886 +1867.877553 +1867.882148 +1867.978352 +1868.078751 +1868.178352 +1868.277552 +1868.378085 +1868.478251 +1868.485244 +1868.678384 +1868.778384 +1868.878850 +1869.078584 +1869.178284 +1869.277784 +1869.378217 +1869.478517 +1869.578483 +1869.678250 +1869.777984 +1869.783745 +1869.878217 +1870.078250 +1870.083245 +1870.178516 +1870.478349 +1870.578283 +1870.678516 +1870.778349 +1870.878316 +1870.978349 +1875.990132 +1876.051537 +1876.064524 +1876.074914 +1876.100588 +1876.113109 +1876.138517 +1876.160761 +1876.176212 +1876.269486 +1876.284937 +1876.306282 +1876.353901 +1876.403818 +1876.513541 +1879.462290 +1887.480896 +1891.976097 +1892.975696 +1892.986419 +1893.976128 +1894.975494 +1895.975893 +1901.075921 +1901.176720 +1901.477386 +1901.577586 +1901.582914 +1901.677419 +1901.777585 +1901.877519 +1902.077718 +1902.184145 +1902.278218 +1902.378217 +1902.478051 +1902.577751 +1902.777884 +1902.977617 +1903.077984 +1903.177850 +1903.277983 +1903.378350 +1903.477917 +1903.578516 +1903.677783 +1903.978316 +1904.078016 +1904.277849 +1904.377949 +1904.477816 +1904.483011 +1904.577749 +1904.678082 +1904.685641 +1904.878048 +1904.977849 +1905.077815 +1905.178281 +1905.277882 +1905.282444 +1905.378547 +1905.477781 +1905.677881 +1905.682177 +1905.778214 +1905.878514 +1905.982976 +1910.975378 +1911.126028 +1911.265954 +1911.324595 +1911.391528 +1911.403250 +1911.507612 +1911.519167 +1911.886433 +1912.010143 +1912.039347 +1912.061957 +1912.077708 +1912.103782 +1912.192593 +1912.350269 +1912.354964 +1912.368650 +1912.648270 +1912.684534 +1913.047604 +1913.072679 +1913.077241 +1913.238913 +1913.375642 +1913.466751 +1913.470681 +1913.482802 +1913.524360 +1913.635715 +1913.777007 +1913.822528 +1914.526790 +1925.975497 +1925.975896 +1926.975862 +1927.006365 +1927.975594 +1927.982088 +1928.009327 +1928.976193 +1929.003699 +1929.975526 +1929.983385 +1930.976424 +1930.983117 +1935.974920 +1936.075653 +1936.176419 +1936.276752 +1936.376818 +1936.477484 +1936.577584 +1936.677883 +1936.778017 +1936.877284 +1936.977517 +1937.077750 +1937.177617 +1937.277716 +1937.377650 +1937.477749 +1937.577749 +1937.677483 +1937.777649 +1937.877583 +1937.882245 +1937.977749 +1938.077216 +1938.176350 +1938.277715 +1938.377449 +1938.477615 +1938.578115 +1938.777881 +1938.877681 +1938.977848 +1939.076915 +1939.277748 +1939.477814 +1939.577548 +1939.677781 +1939.877980 +1940.078113 +1940.177713 +1940.183341 +1940.277480 +1940.283008 +1940.477613 +1940.482775 +1940.577979 +1940.677347 +1940.681209 +1940.876514 +1940.978479 +1941.520636 +1941.524832 +1941.531025 +1942.343878 +1945.975510 +1945.987265 +1946.100784 +1946.151201 +1946.325393 +1946.338613 +1946.402083 +1946.705879 +1946.924327 +1946.980903 +1947.004147 +1947.699950 +1947.795555 +1948.029754 +1948.045538 +1948.224325 +1948.683865 +1948.816799 +1949.226389 +1949.279469 +1949.293089 +1949.363685 +1949.465783 +1949.551064 +1954.012265 +1954.016960 +1954.025918 +1954.042768 +1954.052392 +1958.855683 +1958.869936 +1960.980490 +1960.991113 +1961.279824 +1961.974861 +1961.979656 +1962.974627 +1962.979422 +1962.993009 +1963.763437 +1963.975558 +1963.981020 +1964.795338 +1964.802264 +1964.974891 +1965.987145 +1967.551213 +1967.555608 +1967.563600 +1970.974985 +1970.980347 +1971.074319 +1971.175618 +1971.276517 +1971.376750 +1971.477116 +1971.577016 +1971.677349 +1971.777582 +1971.877315 +1971.977082 +1972.177815 +1972.276216 +1972.280578 +1972.376616 +1972.477215 +1972.577015 +1972.677315 +1972.777348 +1972.877481 +1972.977281 +1973.177381 +1973.181843 +1973.277347 +1973.377414 +1973.383408 +1973.477114 +1973.576614 +1973.677014 +1973.782275 +1973.877480 +1973.977313 +1973.996494 +1974.177580 +1974.277579 +1974.288435 +1974.376947 +1974.477446 +1974.676613 +1974.777046 +1974.877312 +1974.883040 +1974.977512 +1975.081608 +1975.177645 +1975.277978 +1975.378144 +1975.477778 +1975.577179 +1975.598291 +1975.676013 +1975.777445 +1975.783439 +1975.877545 +1975.977478 +1975.985670 +1978.810908 +1978.815637 +1978.824195 +1979.666419 +1980.975841 +1980.984166 +1980.990493 +1981.000616 +1981.016500 +1981.075342 +1981.100883 +1981.111139 +1981.186330 +1981.211772 +1981.224625 +1981.249134 +1981.261555 +1981.286397 +1981.375708 +1981.402214 +1981.490193 +1981.552497 +1981.634715 +1981.841175 +1982.881966 +1982.907241 +1983.294720 +1983.618862 +1983.725455 +1983.791356 +1983.824923 +1983.853794 +1983.925755 +1983.939708 +1983.961486 +1984.725787 +1984.738808 +1984.790956 +1985.006473 +1985.053326 +1985.279666 +1994.294243 +1994.302901 +1994.475661 +1995.977824 +1996.969565 +1996.974360 +1996.982652 +1997.496670 +1997.501932 +1997.519148 +1997.984449 +1998.983116 +1999.543488 +1999.975989 +1999.980051 +1999.987777 +2000.713084 +2000.975921 +2001.738225 +2002.704358 +2003.449145 +2003.455273 +2003.466894 +2005.148045 +2005.685773 +2005.986539 +2006.076149 +2006.176815 +2006.277248 +2006.386039 +2006.577181 +2006.676781 +2006.776948 +2006.777181 +2006.977580 +2007.083740 +2007.177913 +2007.277946 +2007.378013 +2007.577280 +2007.677879 +2007.777812 +2007.784572 +2007.878245 +2007.977746 +2008.078012 +2008.082874 +2008.177945 +2008.278411 +2008.284505 +2008.378245 +2008.478211 +2008.578045 +2008.677845 +2008.777711 +2008.783339 +2008.877079 +2008.976779 +2009.001421 +2009.077212 +2009.177411 +2009.278210 +2009.377744 +2009.478010 +2009.578077 +2009.778243 +2009.784037 +2009.878410 +2009.978176 +2010.077477 +2010.082339 +2010.278509 +2010.378143 +2010.382405 +2010.578642 +2010.586334 +2010.606547 +2010.678642 +2010.777676 +2010.878542 +2010.984070 +2015.976372 +2016.222493 +2016.506142 +2016.518197 +2016.568779 +2016.642772 +2018.726320 +2018.797415 +2018.839839 +2019.304441 +2019.524387 +2019.558320 +2019.572606 +2019.586292 +2024.827379 +2024.834539 +2024.849490 +2026.182989 +2028.024745 +2029.752216 +2030.976923 +2030.980287 +2030.985215 +2031.977056 +2031.981518 +2032.976289 +2032.983182 +2033.876754 +2033.882581 +2033.895535 +2033.977320 +2034.982081 +2035.811950 +2035.976452 +2038.518574 +2040.975448 +2040.975881 +2040.981043 +2041.076547 +2041.177846 +2041.278145 +2041.378478 +2041.478711 +2041.578578 +2041.583972 +2041.679110 +2041.879044 +2042.077945 +2042.178744 +2042.278910 +2042.379010 +2042.384138 +2042.479143 +2042.579043 +2042.878909 +2042.978643 +2043.079475 +2043.178743 +2043.277544 +2043.378942 +2043.579042 +2043.785535 +2043.879008 +2044.087400 +2044.179008 +2044.379607 +2044.479441 +2044.579108 +2044.679574 +2044.777775 +2044.878008 +2044.978208 +2045.178974 +2045.285734 +2045.378441 +2045.479240 +2045.579173 +2045.584501 +2045.679473 +2045.779306 +2045.878274 +2047.881602 +2047.892424 +2050.976204 +2050.989924 +2051.124589 +2051.322491 +2051.436810 +2051.593786 +2053.324420 +2053.966078 +2054.004606 +2054.424819 +2054.718025 +2054.842367 +2054.866144 +2055.018591 +2055.042767 +2055.058751 +2055.116393 +2058.266074 +2058.270436 +2058.278794 +2058.292547 +2059.407398 +2059.414457 +2060.655282 +2063.444557 +2063.449751 +2066.533465 +2066.977387 +2066.981283 +2066.987543 +2067.977686 +2067.981748 +2067.990007 +2068.981181 +2069.977550 +2069.981180 +2069.988073 +2070.977283 +2070.980746 +2070.986807 +2072.757434 +2072.763562 +2073.374650 +2073.378746 +2073.386838 +2073.399592 +2073.448110 +2074.836753 +2074.847975 +2074.952071 +2075.976146 +2076.176778 +2076.278044 +2076.378876 +2076.478643 +2076.578676 +2076.679142 +2076.779042 +2076.784803 +2076.879009 +2076.979575 +2077.078942 +2077.178542 +2077.278775 +2077.379508 +2077.477609 +2077.577776 +2077.678508 +2077.778475 +2077.878175 +2077.979307 +2078.079107 +2078.178275 +2078.279307 +2078.379240 +2078.479273 +2078.579007 +2078.584668 +2078.679273 +2078.779273 +2078.786066 +2078.879340 +2078.884501 +2078.979240 +2079.079439 +2079.179439 +2079.279373 +2079.379506 +2079.579505 +2079.679106 +2079.683968 +2079.785632 +2079.879172 +2079.883967 +2079.978906 +2080.079172 +2080.084833 +2080.178839 +2080.183767 +2080.279438 +2080.379505 +2080.579105 +2080.678805 +2080.779105 +2080.786764 +2080.878938 +2080.979437 +2082.965416 +2083.296651 +2083.304843 +2083.507340 +2085.975670 +2085.980332 +2085.989422 +2086.119825 +2086.144867 +2086.218293 +2086.243735 +2086.312666 +2086.328183 +2086.338873 +2086.353292 +2086.390521 +2086.402342 +2086.416062 +2086.466412 +2086.599079 +2087.996413 +2088.973868 +2089.164411 +2089.196346 +2089.275500 +2095.629273 +2095.634368 +2097.984449 +2097.988711 +2097.994206 +2098.008658 +2100.977186 +2100.981049 +2100.987443 +2101.976619 +2101.981448 +2101.995301 +2102.886675 +2102.977151 +2102.983411 +2103.977683 +2103.981346 +2103.989504 +2104.171888 +2104.977948 +2104.981645 +2104.988238 +2105.977714 +2105.981577 +2105.988936 +2107.938651 +2110.977176 +2110.982171 +2111.076677 +2111.277875 +2111.378142 +2111.478475 +2111.578774 +2111.678341 +2111.778940 +2111.878974 +2111.978641 +2112.078707 +2112.179273 +2112.279106 +2112.379306 +2112.479106 +2112.578240 +2112.582969 +2112.682436 +2112.778740 +2112.878973 +2112.978839 +2113.078939 +2113.179039 +2113.278573 +2113.479172 +2113.578739 +2113.679138 +2113.779471 +2113.878672 +2113.978172 +2114.078539 +2114.278938 +2114.378572 +2114.383000 +2114.478805 +2114.579404 +2114.777972 +2114.878871 +2114.978671 +2115.178970 +2115.279170 +2115.379003 +2115.479103 +2115.579203 +2115.679336 +2115.774907 +2115.779003 +2115.879070 +2115.979136 +2117.880466 +2118.162451 +2118.685227 +2120.975268 +2121.244832 +2121.291518 +2121.329980 +2121.345731 +2121.388854 +2121.427948 +2121.442467 +2121.470006 +2121.496979 +2121.511099 +2121.537172 +2121.591551 +2121.704671 +2124.536637 +2124.564342 +2134.833396 +2135.479117 +2135.976552 +2135.981647 +2136.976285 +2136.981113 +2137.976483 +2137.991635 +2138.976183 +2138.982243 +2139.976215 +2139.980278 +2139.990634 +2140.980943 +2140.988768 +2145.975277 +2146.076442 +2146.176508 +2146.377274 +2146.477441 +2146.577474 +2146.677374 +2146.777906 +2146.877673 +2146.883567 +2146.977640 +2147.077939 +2147.178006 +2147.277806 +2147.377972 +2147.477739 +2147.483101 +2147.577906 +2147.677939 +2147.778105 +2147.877872 +2147.882767 +2147.977972 +2148.077905 +2148.178271 +2148.282634 +2148.377772 +2148.477605 +2148.578204 +2148.778004 +2148.877838 +2148.978903 +2149.078071 +2149.084065 +2149.178071 +2149.277571 +2149.278070 +2149.378337 +2149.477637 +2149.577970 +2149.583098 +2149.678037 +2149.778603 +2149.977703 +2150.182465 +2150.278069 +2150.378436 +2150.577836 +2150.678435 +2150.777736 +2150.783530 +2150.884096 +2150.977569 +2150.983530 +2156.025583 +2156.037671 +2156.059782 +2156.112329 +2156.135972 +2156.172702 +2156.236039 +2156.271437 +2156.295513 +2156.318923 +2156.467207 +2156.493781 +2156.564510 +2156.605536 +2158.866739 +2159.172466 +2159.651986 +2160.025579 +2165.125241 +2169.520741 +2169.529399 +2169.548446 +2170.564563 +2170.571489 +2170.587673 +2170.644549 +2170.974586 +2170.981112 +2171.975051 +2171.980046 +2172.975383 +2172.980744 +2173.975115 +2173.981209 +2174.975181 +2174.980842 +2175.974347 +2175.980541 +2176.767420 +2176.771849 +2176.779308 +2176.793860 +2176.815206 +2176.868053 +2176.898356 +2180.973876 +2180.979804 +2181.074942 +2181.175541 +2181.275807 +2181.376273 +2181.577072 +2181.776406 +2181.975873 +2182.076473 +2182.181534 +2182.276905 +2182.376605 +2182.476905 +2182.577005 +2182.676838 +2182.777038 +2182.877104 +2182.976438 +2183.075972 +2183.176272 +2183.277171 +2183.576471 +2183.676804 +2183.876804 +2183.976537 +2184.076404 +2184.176004 +2184.277003 +2184.376770 +2184.476836 +2184.576537 +2184.675704 +2184.776237 +2184.876436 +2184.883330 +2184.976570 +2185.076436 +2185.081664 +2185.177036 +2185.277002 +2185.376836 +2185.382896 +2185.476835 +2185.576802 +2185.676869 +2185.683096 +2185.776469 +2185.875936 +2185.981430 +2190.974566 +2191.032574 +2191.060546 +2191.071036 +2191.085721 +2191.095678 +2191.147359 +2191.213127 +2191.237136 +2191.248058 +2191.257682 +2191.271735 +2191.298774 +2191.326813 +2191.375564 +2191.388351 +2191.412627 +2191.466373 +2191.479127 +2191.608265 +2191.815757 +2191.852420 +2191.880425 +2192.003935 +2192.538001 +2192.617121 +2192.774630 +2193.514656 +2193.998439 +2194.049554 +2194.366770 +2194.384219 +2194.439098 +2194.454482 +2194.483720 +2194.498272 +2194.529507 +2194.559211 +2194.574762 +2194.613090 +2194.658478 +2194.674295 +2194.689047 +2195.281754 +2195.364271 +2195.373762 +2195.394741 +2197.919647 +2197.998135 +2198.002664 +2198.013420 +2198.053646 +2200.257540 +2206.705053 +2206.708816 +2207.560163 +2208.705717 +2208.709613 +2209.143345 +2209.495093 +2209.703584 +2210.632155 +2210.637749 +2210.645542 +2210.671549 +2210.703284 +2210.713307 +2211.705314 +2211.709710 +2212.273312 +2216.511869 +2216.681366 +2216.704876 +2216.805009 +2216.813334 +2216.905975 +2216.917663 +2217.213700 +2217.406873 +2217.707173 +2217.713966 +2217.807306 +2217.906806 +2217.913600 +2217.916397 +2217.918262 +2218.006040 +2218.106506 +2218.206939 +2218.311834 +2218.412833 +2218.506473 +2218.606806 +2218.806772 +2218.812566 +2219.006472 +2219.107005 +2219.206772 +2219.407005 +2219.507204 +2219.606805 +2219.617361 +2219.706571 +2219.715662 +2219.806405 +2219.906471 +2220.006538 +2220.207670 +2220.507237 +2221.106237 +2221.206537 +2221.306503 +2221.407003 +2221.606636 +2222.427048 +2222.431078 +2222.437072 +2222.455187 +2222.485323 +2224.890149 +2224.895011 +2224.901172 +2224.917555 +2224.944528 +2224.967672 +2226.705232 +2239.407118 +2239.419339 +2239.439286 +2241.705451 +2242.705749 +2242.710378 +2243.706481 +2243.712342 +2244.705647 +2244.711841 +2245.706812 +2245.713705 +2246.706278 +2246.711440 +2251.705940 +2251.711035 +2251.806706 +2251.907505 +2252.108071 +2252.207771 +2252.307771 +2252.407837 +2252.415430 +2252.508004 +2252.707837 +2252.808303 +2252.908336 +2253.008403 +2253.108070 +2253.108370 +2253.207970 +2253.307936 +2253.313564 +2253.407970 +2253.508569 +2253.608369 +2253.808102 +2253.815961 +2253.908535 +2254.008002 +2254.012764 +2254.108169 +2254.207869 +2254.308169 +2254.508468 +2254.608301 +2254.616560 +2254.707935 +2254.807935 +2254.908235 +2255.208068 +2255.308567 +2255.408367 +2255.508500 +2255.608400 +2255.612863 +2255.708467 +2255.808667 +2255.813662 +2256.008134 +2256.108067 +2256.208466 +2256.308533 +2256.318823 +2256.408266 +2256.608299 +2256.708299 +2258.789483 +2258.793912 +2258.808097 +2261.706929 +2261.711158 +2261.718850 +2264.952081 +2276.707347 +2276.712575 +2277.707612 +2277.712707 +2278.707611 +2278.712839 +2279.707677 +2279.712539 +2280.707643 +2280.713970 +2281.708774 +2283.163784 +2284.322524 +2286.807936 +2287.109101 +2287.208902 +2287.309068 +2287.409001 +2287.509234 +2287.609301 +2287.709134 +2287.809267 +2287.815095 +2287.909334 +2288.008901 +2288.109334 +2288.209333 +2288.214861 +2288.309600 +2288.409267 +2288.615494 +2288.709067 +2288.714994 +2288.809333 +2288.909233 +2288.914161 +2289.009333 +2289.109499 +2289.115793 +2289.209432 +2289.214627 +2289.309332 +2289.314061 +2289.509266 +2289.609399 +2289.616891 +2289.709399 +2289.709732 +2289.714260 +2289.809665 +2289.909365 +2289.913727 +2290.109665 +2290.209798 +2290.309431 +2290.409398 +2290.414659 +2290.509531 +2290.709431 +2290.909464 +2291.009431 +2291.109430 +2291.209430 +2291.309497 +2291.314459 +2291.509630 +2291.609563 +2296.707394 +2297.932634 +2299.494937 +2299.537894 +2299.641457 +2299.664833 +2299.744487 +2300.675455 +2311.707412 +2311.714405 +2312.708110 +2312.715103 +2313.708409 +2314.708141 +2314.714102 +2315.708240 +2315.715067 +2315.897018 +2316.708339 +2316.938742 +2319.397381 +2320.430513 +2321.543599 +2321.551858 +2321.570938 +2321.620589 +2321.637805 +2321.658684 +2321.690286 +2321.706469 +2321.808301 +2321.816593 +2321.908900 +2321.915294 +2322.009133 +2322.109599 +2322.209466 +2322.309532 +2322.409466 +2322.409899 +2322.509998 +2322.609765 +2322.610165 +2322.909865 +2323.009632 +2323.109665 +2323.115526 +2323.309465 +2323.314560 +2323.409565 +2323.514426 +2323.709764 +2323.809831 +2323.814826 +2323.909864 +2324.009864 +2324.109997 +2324.209830 +2324.309863 +2324.314159 +2324.409497 +2324.414392 +2324.418555 +2324.509297 +2324.513526 +2324.609430 +2324.614925 +2324.709796 +2324.714359 +2324.809863 +2324.815124 +2324.910129 +2325.009863 +2325.110362 +2325.209696 +2325.309729 +2325.409663 +2325.410029 +2325.609429 +2325.613858 +2325.909862 +2325.915523 +2326.009828 +2326.109595 +2326.113791 +2326.209995 +2326.309795 +2326.314324 +2326.409895 +2326.410427 +2326.414057 +2326.509761 +2326.514224 +2326.609894 +2326.709994 +2328.832703 +2328.837098 +2328.843126 +2328.856579 +2329.719915 +2329.731004 +2331.034832 +2331.040726 +2331.707958 +2331.711854 +2331.718314 +2336.029532 +2336.218609 +2336.223971 +2336.576351 +2336.592868 +2337.826000 +2337.831362 +2339.092499 +2339.100724 +2341.220935 +2346.708276 +2346.712638 +2347.712737 +2347.720396 +2348.708807 +2348.713902 +2349.709006 +2349.714866 +2350.708771 +2350.713800 +2351.709070 +2351.713499 +2355.325683 +2356.229645 +2356.234607 +2356.241000 +2356.260647 +2356.713028 +2356.808865 +2356.909398 +2356.915658 +2357.009897 +2357.110264 +2357.210164 +2357.310263 +2357.409531 +2357.515358 +2357.610230 +2357.710063 +2357.714925 +2357.810063 +2357.910096 +2358.010030 +2358.110163 +2358.114259 +2358.210196 +2358.310129 +2358.315257 +2358.410662 +2358.510196 +2358.610229 +2358.710495 +2358.810195 +2359.009995 +2359.110428 +2359.210361 +2359.214790 +2359.216788 +2359.310095 +2359.409795 +2359.414524 +2359.510361 +2359.516655 +2359.610361 +2359.611060 +2359.710294 +2359.810660 +2359.814956 +2359.910194 +2359.914923 +2360.010460 +2360.109961 +2360.115688 +2360.210494 +2360.310360 +2360.314723 +2360.410127 +2360.610327 +2360.615655 +2360.710693 +2360.810393 +2360.914855 +2361.015987 +2361.110726 +2361.215488 +2361.310626 +2361.410859 +2361.415621 +2361.510392 +2361.610192 +2361.710059 +2363.091110 +2363.096638 +2366.708589 +2366.716681 +2366.725505 +2366.934596 +2373.306684 +2373.310547 +2373.316907 +2374.754935 +2374.761062 +2374.959463 +2374.969753 +2375.890431 +2375.896425 +2378.735017 +2378.740645 +2380.207843 +2380.213970 +2380.226890 +2380.236214 +2381.709373 +2382.709605 +2382.713135 +2382.719096 +2383.709205 +2383.714033 +2384.713633 +2384.720792 +2385.709203 +2385.715130 +2386.709801 +2386.713331 +2386.720057 +2388.416926 +2388.423086 +2391.709396 +2391.713359 +2391.809896 +2391.910195 +2392.010029 +2392.110528 +2392.210761 +2392.310828 +2392.410894 +2392.510994 +2392.609962 +2392.811227 +2392.911094 +2393.011160 +2393.111260 +2393.211127 +2393.310394 +2393.315622 +2393.410893 +2393.610826 +2393.711226 +2393.911226 +2394.011059 +2394.111092 +2394.211259 +2394.311259 +2394.411225 +2394.611025 +2394.710459 +2394.810859 +2394.910992 +2394.915754 +2395.011091 +2395.111391 +2395.211025 +2395.311191 +2395.416719 +2395.511291 +2395.711057 +2395.815719 +2395.911324 +2396.010957 +2396.016019 +2396.116185 +2396.211057 +2396.316385 +2396.416285 +2396.511390 +2396.611156 +2396.711689 +2396.716151 +2398.817548 +2398.824940 +2400.395002 +2401.718211 +2401.726902 +2407.649341 +2407.653969 +2407.661828 +2409.587600 +2414.219963 +2416.708439 +2416.713134 +2417.709470 +2417.712967 +2417.718694 +2418.709669 +2418.713832 +2419.466512 +2419.709435 +2419.714363 +2419.742735 +2420.362581 +2420.710033 +2420.714695 +2421.713429 +2426.708962 +2426.712492 +2426.717120 +2426.809062 +2426.915588 +2427.010194 +2427.110260 +2427.210427 +2427.410626 +2427.416054 +2427.510460 +2427.610393 +2427.710493 +2427.910559 +2427.915454 +2428.010326 +2428.110526 +2428.115354 +2428.210525 +2428.310758 +2428.410425 +2428.415554 +2428.510558 +2428.610492 +2428.615620 +2428.710558 +2428.910791 +2429.110691 +2429.210391 +2429.310624 +2429.316518 +2429.410657 +2429.510557 +2429.514787 +2429.610924 +2429.710524 +2429.810557 +2429.915585 +2430.014453 +2430.110557 +2430.115119 +2430.210757 +2430.310623 +2430.510690 +2430.710689 +2430.715618 +2430.815584 +2430.910556 +2430.915651 +2431.010389 +2431.015518 +2431.110323 +2431.115251 +2431.210489 +2431.310556 +2431.410689 +2431.510822 +2431.610722 +2431.710522 +2436.328433 +2436.686408 +2436.703557 +2436.707553 +2436.712115 +2436.719908 +2436.913580 +2443.401985 +2443.405948 +2443.411110 +2443.421033 +2443.436284 +2444.766353 +2444.770915 +2444.779507 +2446.360491 +2446.365452 +2446.375576 +2447.691492 +2447.697452 +2448.936745 +2448.942473 +2451.708304 +2451.715264 +2452.708869 +2452.713032 +2453.374736 +2453.379664 +2453.396747 +2454.709300 +2454.722487 +2455.706902 +2455.713395 +2456.708566 +2457.798741 +2457.803037 +2457.809297 +2457.825681 +2457.869237 +2459.420751 +2459.446625 +2459.452752 +2460.945358 +2460.950286 +2461.708660 +2461.713689 +2461.808960 +2461.909626 +2462.009859 +2462.110125 +2462.210591 +2462.310092 +2462.509525 +2462.810091 +2462.910124 +2463.009891 +2463.109958 +2463.114953 +2463.210224 +2463.410257 +2463.510757 +2463.710390 +2463.810457 +2463.909890 +2463.913986 +2464.009457 +2464.109724 +2464.209790 +2464.310290 +2464.410323 +2464.510423 +2464.610189 +2464.614652 +2464.710456 +2464.810322 +2464.910389 +2465.009889 +2465.114351 +2465.209989 +2465.214218 +2465.309956 +2465.415650 +2465.610388 +2465.614817 +2465.710421 +2465.810455 +2466.010721 +2466.110221 +2466.209755 +2466.310021 +2466.410487 +2466.510387 +2466.610454 +2466.710687 +2469.237990 +2471.707918 +2471.708351 +2471.718807 +2477.414372 +2477.425095 +2478.336483 +2478.341677 +2479.694623 +2479.702116 +2481.772510 +2481.777805 +2481.784731 +2481.801614 +2481.827488 +2481.845370 +2481.858157 +2482.162053 +2485.447964 +2486.709002 +2486.712865 +2486.718725 +2487.709400 +2487.709700 +2487.714395 +2488.709200 +2489.708666 +2490.713460 +2490.722218 +2491.709996 +2491.714525 +2492.879758 +2492.924047 +2492.929775 +2496.708892 +2496.809291 +2496.909924 +2497.010224 +2497.210590 +2497.310623 +2497.410723 +2497.510656 +2497.610722 +2497.710722 +2497.810822 +2497.816084 +2497.910722 +2498.010689 +2498.115917 +2498.210822 +2498.216017 +2498.310955 +2498.410755 +2498.510522 +2498.611121 +2498.811154 +2498.911287 +2499.010888 +2499.110921 +2499.210588 +2499.311054 +2499.410821 +2499.510820 +2499.711020 +2499.810987 +2499.910920 +2500.111186 +2500.115948 +2500.210986 +2500.311253 +2500.410786 +2500.416714 +2500.511053 +2500.515948 +2500.810852 +2500.911119 +2500.916513 +2501.010886 +2501.110952 +2501.210985 +2501.311152 +2501.410918 +2501.511151 +2501.610885 +2501.710685 +2505.684174 +2505.690801 +2506.708649 +2506.714510 +2506.720703 +2510.552601 +2516.798449 +2516.811103 +2520.813630 +2521.709000 +2521.713029 +2522.709199 +2522.714127 +2523.709331 +2523.713693 +2523.723017 +2524.709064 +2524.714825 +2525.681357 +2525.708863 +2526.708928 +2527.917319 +2530.337130 +2530.347486 +2530.734965 +2531.708457 +2531.809090 +2532.010122 +2532.015317 +2532.110355 +2532.210421 +2532.310654 +2532.410188 +2532.510554 +2532.610554 +2532.710388 +2532.718646 +2532.810621 +2533.010720 +2533.110820 +2533.210487 +2533.310887 +2533.410553 +2533.510687 +2533.518279 +2533.810486 +2533.910953 +2534.010686 +2534.110753 +2534.210519 +2534.215548 +2534.310619 +2534.410686 +2534.415747 +2534.510819 +2534.610619 +2534.715347 +2534.810918 +2534.910652 +2535.010718 +2535.110685 +2535.210652 +2535.310685 +2535.410551 +2535.610518 +2535.710784 +2535.810418 +2535.910651 +2536.010784 +2536.017977 +2536.110717 +2536.118077 +2536.210584 +2536.215479 +2536.310684 +2536.410650 +2536.510783 +2536.610650 +2536.710650 +2541.708048 +2541.708381 +2555.180528 +2556.708865 +2556.715026 +2557.714159 +2557.914791 +2558.707997 +2558.725613 +2559.709062 +2559.713224 +2559.713791 +2559.719252 +2560.708894 +2560.714156 +2560.734036 +2561.037033 +2561.709160 +2561.713789 +2566.708622 +2566.713451 +2566.809022 +2566.909454 +2567.010120 +2567.110120 +2567.210719 +2567.310286 +2567.510220 +2567.610419 +2567.910586 +2567.915414 +2568.110352 +2568.210519 +2568.310552 +2568.410652 +2568.510585 +2568.610152 +2568.710551 +2568.810651 +2568.910618 +2568.914947 +2569.010518 +2569.110584 +2569.117844 +2569.210384 +2569.310950 +2569.410418 +2569.510850 +2569.610850 +2569.710584 +2569.714913 +2569.810484 +2569.816045 +2569.910683 +2570.110650 +2570.210583 +2570.216944 +2570.310716 +2570.410550 +2570.610416 +2570.615212 +2570.710749 +2570.805488 +2570.910782 +2571.011115 +2571.110516 +2571.210649 +2571.310649 +2571.410515 +2571.510782 +2571.710615 +2571.715677 +2576.708013 +2576.708346 +2576.714040 +2581.503179 +2586.744633 +2586.751726 +2586.766944 +2587.785391 +2588.778197 +2588.782493 +2588.789952 +2588.816292 +2591.031075 +2591.708597 +2591.712327 +2591.718620 +2592.709429 +2592.715423 +2593.709095 +2593.713357 +2593.721216 +2594.713989 +2595.715453 +2596.709258 +2601.709020 +2601.718277 +2601.809519 +2601.910019 +2602.010252 +2602.110751 +2602.309519 +2602.410451 +2602.510851 +2602.610817 +2602.710651 +2602.715812 +2602.811183 +2602.911050 +2603.011150 +2603.115412 +2603.210883 +2603.311016 +2603.316977 +2603.410850 +2603.510450 +2603.515345 +2603.522172 +2603.610650 +2603.810716 +2603.816244 +2604.010949 +2604.019674 +2604.115245 +2604.210982 +2604.311115 +2604.315378 +2604.411148 +2604.511148 +2604.611481 +2604.711381 +2604.810682 +2605.010881 +2605.015543 +2605.019440 +2605.111214 +2605.211181 +2605.216376 +2605.311014 +2605.316975 +2605.411014 +2605.417841 +2605.511081 +2605.610848 +2605.711214 +2605.811114 +2605.815976 +2605.911413 +2606.011080 +2606.016242 +2606.111347 +2606.210947 +2606.215609 +2606.216142 +2606.224966 +2606.310680 +2606.510947 +2606.711313 +2608.098657 +2608.103586 +2608.118970 +2611.713639 +2611.719633 +2611.736616 +2621.288221 +2626.709228 +2626.714822 +2627.713789 +2627.720283 +2628.710158 +2628.713788 +2628.721114 +2629.714387 +2629.723411 +2630.709324 +2630.713287 +2631.709989 +2631.713519 +2631.719613 +2632.088610 +2633.420077 +2635.014914 +2635.078384 +2635.836358 +2636.709118 +2636.809817 +2637.211515 +2637.315944 +2637.410849 +2637.510816 +2637.511249 +2637.611015 +2637.616277 +2637.620905 +2637.710782 +2637.711115 +2637.811215 +2638.011514 +2638.111181 +2638.210482 +2638.311115 +2638.411281 +2638.511481 +2638.611347 +2638.711647 +2638.810282 +2638.814844 +2638.910515 +2639.111047 +2639.211014 +2639.311380 +2639.411380 +2639.511280 +2639.611613 +2639.616241 +2639.711446 +2639.811513 +2639.911379 +2640.011246 +2640.210913 +2640.310613 +2640.315575 +2640.511012 +2640.611379 +2640.711379 +2640.712078 +2640.811445 +2640.816107 +2640.911478 +2641.011378 +2641.111212 +2641.115840 +2641.211478 +2641.311611 +2641.411411 +2641.416906 +2641.511378 +2641.516739 +2641.611511 +2641.711577 +2646.712871 +2646.718399 +2646.727223 +2648.900814 +2655.550891 +2655.570704 +2656.914526 +2656.918988 +2656.926414 +2660.939464 +2660.944725 +2660.958411 +2661.708893 +2661.716419 +2662.710124 +2662.714054 +2662.722146 +2663.710024 +2663.716550 +2664.053546 +2664.709590 +2664.714751 +2665.710321 +2665.714384 +2666.710154 +2666.714649 +2669.782711 +2670.204456 +2671.809682 +2671.813645 +2671.910415 +2671.916642 +2672.011081 +2672.111247 +2672.210981 +2672.419439 +2672.511180 +2672.610547 +2672.710947 +2672.811180 +2672.911147 +2673.011679 +2673.211413 +2673.220204 +2673.311446 +2673.411379 +2673.511512 +2673.611479 +2673.615941 +2673.711146 +2673.811678 +2673.911245 +2673.916207 +2674.011379 +2674.018405 +2674.111778 +2674.211445 +2674.311578 +2674.411744 +2674.511378 +2674.611911 +2674.711911 +2674.911278 +2674.916606 +2675.011211 +2675.111644 +2675.211311 +2675.311744 +2675.411211 +2675.511477 +2675.611510 +2675.618836 +2675.711244 +2676.011710 +2676.111410 +2676.211676 +2676.311509 +2676.411543 +2676.511509 +2676.611343 +2676.711542 +2681.708940 +2687.169074 +2687.172871 +2687.177899 +2687.197113 +2687.838438 +2695.262972 +2695.273395 +2696.709191 +2696.714353 +2696.974093 +2697.710755 +2697.715617 +2698.710122 +2698.717015 +2700.711285 +2700.715714 +2701.710718 +2701.715547 +2704.736822 +2706.709548 +2706.810480 +2706.910979 +2707.011312 +2707.017872 +2707.111412 +2707.211046 +2707.411678 +2707.417339 +2707.511745 +2707.612111 +2707.712077 +2707.811844 +2707.911678 +2708.011877 +2708.111711 +2708.116739 +2708.211378 +2708.215041 +2708.311644 +2708.411777 +2708.512143 +2708.612077 +2708.711910 +2708.812243 +2708.912043 +2708.916838 +2709.012143 +2709.111943 +2709.117171 +2709.212143 +2709.312309 +2709.317637 +2709.512109 +2709.612009 +2709.616504 +2709.712275 +2709.911709 +2710.011809 +2710.112042 +2710.211875 +2710.311742 +2710.412041 +2710.512008 +2710.516570 +2710.519867 +2710.611875 +2710.911841 +2711.011741 +2711.017102 +2711.211841 +2711.311807 +2711.411841 +2711.512040 +2711.612273 +2711.712207 +2713.789427 +2713.794522 +2713.815634 +2715.120595 +2715.125024 +2715.132550 +2715.147601 +2716.709305 +2716.719428 +2724.153187 +2724.157282 +2724.162577 +2727.020350 +2727.035135 +2727.059011 +2727.086317 +2727.100436 +2727.106797 +2727.129707 +2727.140030 +2727.539996 +2730.487146 +2731.709656 +2731.715217 +2732.709622 +2732.717447 +2733.710253 +2733.714549 +2734.714082 +2734.720575 +2735.715646 +2736.709984 +2741.709246 +2741.810012 +2741.910978 +2742.011177 +2742.111510 +2742.211310 +2742.311543 +2742.411776 +2742.511443 +2742.611077 +2742.711243 +2742.811443 +2742.911376 +2743.011210 +2743.111443 +2743.311309 +2743.511509 +2743.516737 +2743.611542 +2743.711342 +2743.811209 +2743.911342 +2744.011542 +2744.111475 +2744.115904 +2744.211308 +2744.311342 +2744.511574 +2744.611841 +2744.711474 +2744.812273 +2744.911607 +2745.011374 +2745.015603 +2745.211074 +2745.311640 +2745.411307 +2745.511407 +2745.611473 +2745.711340 +2745.811507 +2745.911939 +2745.918067 +2746.016568 +2746.111373 +2746.116102 +2746.211506 +2746.311406 +2746.411406 +2746.511040 +2746.611273 +2746.616201 +2746.711273 +2751.709070 +2751.713832 +2751.719526 +2751.961684 +2754.817192 +2766.713917 +2766.972491 +2767.708954 +2767.713682 +2768.709119 +2768.713382 +2768.722140 +2769.270691 +2769.288872 +2769.709418 +2769.714446 +2770.708918 +2770.715711 +2771.708917 +2771.727365 +2776.708612 +2776.714939 +2776.808845 +2776.909344 +2777.009477 +2777.110010 +2777.210043 +2777.409943 +2777.510309 +2777.610209 +2777.710009 +2777.810242 +2777.910076 +2778.015370 +2778.110509 +2778.210242 +2778.210975 +2778.309942 +2778.314604 +2778.318800 +2778.410175 +2778.510208 +2778.517901 +2778.610375 +2778.710142 +2778.713905 +2778.810341 +2778.910141 +2778.915403 +2779.018466 +2779.110241 +2779.210474 +2779.310241 +2779.314370 +2779.510074 +2779.610640 +2779.710574 +2779.810540 +2779.910473 +2780.010373 +2780.014669 +2780.110773 +2780.210473 +2780.218099 +2780.310340 +2780.510340 +2780.515501 +2780.610373 +2780.618298 +2780.710539 +2780.810306 +2780.816034 +2780.910406 +2781.010306 +2781.110206 +2781.115301 +2781.210306 +2781.310206 +2781.410339 +2781.510172 +2781.610339 +2781.615533 +2781.710205 +2781.715167 +2785.563581 +2785.580398 +2786.707836 +2786.713464 +2788.328014 +2794.696573 +2794.701568 +2794.715887 +2794.733203 +2801.707954 +2802.708752 +2803.709184 +2804.708650 +2810.042445 +2811.708577 +2811.714304 +2811.809076 +2811.817468 +2811.909642 +2812.009742 +2812.110175 +2812.118433 +2812.210541 +2812.310341 +2812.310707 +2812.510408 +2812.610707 +2812.710607 +2812.715103 +2812.910607 +2813.010574 +2813.110474 +2813.210707 +2813.310607 +2813.410906 +2813.510773 +2813.610440 +2813.710406 +2813.714302 +2813.910872 +2814.010906 +2814.110806 +2814.210872 +2814.310372 +2814.410739 +2814.711071 +2814.810738 +2814.815234 +2814.910905 +2814.915633 +2815.010871 +2815.110538 +2815.210904 +2815.310538 +2815.410604 +2815.510771 +2815.710804 +2815.810970 +2815.815566 +2815.911103 +2816.010437 +2816.210837 +2816.410670 +2816.510936 +2816.611069 +2816.616164 +2816.710603 +2821.708767 +2821.725916 +2821.995013 +2823.839900 +2825.660844 +2825.676994 +2826.059145 +2826.098073 +2829.512988 +2829.518516 +2834.114981 +2834.265064 +2834.885477 +2834.896033 +2835.884344 +2836.884809 +2838.511947 +2838.886205 +2839.885039 +2839.889468 +2844.985600 +2845.285999 +2845.292826 +2845.386066 +2845.687297 +2845.786099 +2845.886332 +2845.985998 +2846.085599 +2846.094024 +2846.186431 +2846.285998 +2846.294023 +2846.385998 +2846.485931 +2846.585898 +2846.591859 +2846.686131 +2846.785964 +2846.885998 +2846.992424 +2847.086097 +2847.185964 +2847.285764 +2847.294189 +2847.385831 +2847.493723 +2847.595288 +2847.685997 +2847.785764 +2847.886196 +2847.985797 +2848.086363 +2848.186229 +2848.286263 +2848.385796 +2848.485963 +2848.491257 +2848.586629 +2848.986428 +2849.086395 +2849.186262 +2849.386328 +2849.486062 +2849.686428 +2849.791955 +2849.886461 +2852.073005 +2869.885075 +2869.889538 +2870.884741 +2871.885706 +2871.890435 +2872.885072 +2873.885904 +2873.892397 +2874.885770 +2879.769781 +2879.777407 +2879.885365 +2879.986597 +2879.990027 +2880.187330 +2880.195388 +2880.287629 +2880.388195 +2880.394156 +2880.487929 +2880.495887 +2880.587995 +2880.590892 +2880.688328 +2880.788128 +2880.888128 +2880.988061 +2881.088028 +2881.188161 +2881.288294 +2881.388094 +2881.488094 +2881.588094 +2881.788560 +2881.888094 +2881.988460 +2882.088360 +2882.093322 +2882.288293 +2882.294121 +2882.388326 +2882.488226 +2882.588193 +2882.688426 +2882.788426 +2882.888659 +2882.988659 +2883.088592 +2883.188359 +2883.288725 +2883.488492 +2883.588658 +2883.592887 +2883.688825 +2883.788591 +2883.895684 +2883.988791 +2884.188957 +2884.288757 +2884.294185 +2884.298847 +2884.388591 +2884.396483 +2884.488691 +2884.588724 +2884.888957 +2889.193648 +2889.891849 +2898.161238 +2898.165900 +2898.174524 +2898.219546 +2904.889702 +2905.894563 +2906.893630 +2906.903087 +2907.414042 +2907.890532 +2907.894228 +2907.902953 +2908.889132 +2908.895559 +2909.895525 +2912.347670 +2914.990591 +2915.090758 +2915.098350 +2915.190958 +2915.291723 +2915.391257 +2915.491623 +2915.591457 +2915.691490 +2915.791590 +2915.800547 +2915.891423 +2915.991290 +2916.091623 +2916.191856 +2916.291456 +2916.298449 +2916.391489 +2916.491456 +2916.591256 +2916.691755 +2916.791422 +2916.891722 +2916.991588 +2917.091755 +2917.096983 +2917.191821 +2917.291655 +2917.396050 +2917.400512 +2917.491854 +2917.591721 +2917.691788 +2918.091554 +2918.099479 +2918.291854 +2918.391787 +2918.491654 +2918.591687 +2918.596782 +2918.692053 +2918.991786 +2918.998346 +2919.091819 +2919.191886 +2919.291453 +2919.391486 +2919.491619 +2919.591686 +2924.894611 +2939.895362 +2940.890266 +2940.890632 +2941.891197 +2941.900055 +2942.891030 +2942.895392 +2943.895491 +2944.084968 +2944.894724 +2948.294055 +2948.304378 +2949.890257 +2949.990823 +2950.091023 +2950.291455 +2950.391555 +2950.499947 +2950.592088 +2950.691655 +2950.791655 +2950.891788 +2950.991721 +2951.091787 +2951.191887 +2951.292154 +2951.391854 +2951.396782 +2951.491820 +2951.591754 +2951.691587 +2951.696615 +2951.791820 +2951.892120 +2951.991820 +2952.091820 +2952.096582 +2952.191820 +2952.196548 +2952.291753 +2952.392019 +2952.497047 +2952.791886 +2952.891719 +2952.991652 +2952.996048 +2953.091819 +2953.099245 +2953.191885 +2953.291785 +2953.391818 +2953.491785 +2953.495814 +2953.598878 +2953.691818 +2953.791918 +2953.892118 +2953.903473 +2953.991785 +2954.191951 +2954.291851 +2954.591717 +2954.791850 +2954.797078 +2957.834205 +2958.528377 +2958.534637 +2958.550355 +2959.889314 +2959.900636 +2960.027310 +2974.014275 +2974.889166 +2975.889731 +2976.889963 +2977.890096 +2978.889562 +2981.058990 +2981.077705 +2984.361484 +2984.737708 +2984.990322 +2985.090222 +2985.190455 +2985.290455 +2985.295716 +2985.390721 +2985.490754 +2985.590887 +2985.690754 +2985.790854 +2985.890654 +2985.990887 +2985.995582 +2986.191020 +2986.290720 +2986.390853 +2986.490820 +2986.591086 +2986.690853 +2986.791052 +2986.890886 +2986.990852 +2987.090886 +2987.191285 +2987.390852 +2987.398111 +2987.591052 +2987.695247 +2987.790852 +2987.795380 +2987.891018 +2987.990918 +2988.091018 +2988.190885 +2988.195580 +2988.290918 +2988.390884 +2988.490818 +2988.591051 +2988.690784 +2988.695080 +2988.791450 +2988.990651 +2989.090984 +2989.290917 +2989.490883 +2989.591016 +2989.690717 +2989.791083 +2989.891049 +2994.888813 +2994.894408 +3002.799694 +3003.657070 +3005.406985 +3005.413744 +3008.903818 +3008.908346 +3009.893260 +3010.889963 +3010.894392 +3011.889629 +3011.893258 +3011.900418 +3012.888962 +3012.892691 +3013.889327 +3013.895821 +3014.893089 +3014.924258 +3019.889088 +3019.892718 +3020.090353 +3020.095681 +3020.096047 +3020.190786 +3020.300043 +3020.307269 +3020.390186 +3020.490153 +3020.589420 +3020.690519 +3020.790519 +3020.890685 +3020.990619 +3021.090519 +3021.190119 +3021.290851 +3021.395114 +3021.490651 +3021.590685 +3021.690818 +3021.695413 +3021.790818 +3021.795546 +3021.890651 +3021.896845 +3021.990451 +3022.090817 +3022.190817 +3022.195879 +3022.290751 +3022.295746 +3022.298609 +3022.390651 +3022.490917 +3022.495712 +3022.590983 +3022.691050 +3022.790617 +3022.890683 +3022.990816 +3023.090517 +3023.190716 +3023.290750 +3023.298175 +3023.390650 +3023.490716 +3023.495611 +3023.591016 +3023.691082 +3023.791015 +3023.890882 +3023.990849 +3023.999107 +3024.090616 +3024.094711 +3024.190715 +3024.290882 +3024.390815 +3024.490682 +3024.590815 +3024.595710 +3024.690881 +3024.796909 +3024.890548 +3025.893244 +3025.907930 +3025.947157 +3028.291610 +3029.553381 +3029.888745 +3029.893107 +3029.900700 +3038.692033 +3038.700191 +3041.441447 +3041.448707 +3042.753900 +3044.056796 +3044.889929 +3044.893891 +3044.901118 +3045.890128 +3045.901649 +3046.889760 +3046.895821 +3047.890192 +3047.893988 +3047.902546 +3048.895519 +3049.771309 +3049.776537 +3049.784396 +3054.889719 +3054.894181 +3054.990052 +3054.994514 +3055.090851 +3055.190884 +3055.391217 +3055.491383 +3055.591483 +3055.691483 +3055.791450 +3055.891083 +3055.991350 +3056.091383 +3056.191316 +3056.291283 +3056.295445 +3056.391283 +3056.395778 +3056.491449 +3056.591549 +3056.691382 +3056.791349 +3056.797409 +3056.891515 +3056.991548 +3057.091582 +3057.191515 +3057.291648 +3057.391548 +3057.491415 +3057.591548 +3057.691281 +3057.891614 +3057.991780 +3058.091514 +3058.191680 +3058.291614 +3058.391647 +3058.591513 +3058.595576 +3058.691780 +3058.791580 +3059.096375 +3059.291679 +3059.391579 +3059.492179 +3059.591546 +3059.691612 +3059.791512 +3059.797440 +3064.889576 +3064.901397 +3073.797592 +3075.581440 +3075.587401 +3075.605616 +3077.476077 +3077.483669 +3079.889361 +3080.890159 +3081.888893 +3081.898383 +3082.889924 +3082.894087 +3083.890456 +3083.894419 +3083.900779 +3084.890588 +3086.606437 +3086.613463 +3089.889584 +3089.893547 +3089.909431 +3089.990317 +3090.091049 +3090.291249 +3090.391615 +3090.498275 +3090.501771 +3090.596210 +3090.691515 +3090.791215 +3090.891481 +3090.991648 +3091.091647 +3091.191547 +3091.195577 +3091.291481 +3091.491680 +3091.591714 +3091.599772 +3091.691514 +3091.791747 +3091.891513 +3092.091480 +3092.096542 +3092.191513 +3092.291513 +3092.491513 +3092.591513 +3092.692012 +3092.791513 +3092.795708 +3092.891945 +3092.992012 +3093.091645 +3093.191679 +3093.390580 +3093.591179 +3093.691678 +3093.791578 +3093.800802 +3093.891745 +3094.091711 +3094.291877 +3094.391644 +3094.491045 +3094.691411 +3094.792110 +3094.799269 +3094.799569 +3094.891510 +3097.497668 +3097.502031 +3097.508258 +3099.755109 +3099.889541 +3105.856734 +3107.427129 +3107.433489 +3114.889359 +3114.893688 +3115.894486 +3117.889989 +3117.900112 +3118.889722 +3118.895949 +3119.890753 +3119.894882 +3120.079997 +3120.807735 +3123.816989 +3124.893811 +3124.906998 +3124.990115 +3125.091214 +3125.291347 +3125.391646 +3125.591446 +3125.791380 +3125.891413 +3125.991712 +3126.091513 +3126.191512 +3126.291412 +3126.391579 +3126.491812 +3126.591679 +3126.691445 +3126.791545 +3126.891379 +3126.991578 +3127.091378 +3127.100203 +3127.191545 +3127.491778 +3127.498904 +3127.591811 +3127.691877 +3127.891777 +3127.991611 +3128.098737 +3128.191677 +3128.291477 +3128.391743 +3128.491643 +3128.498004 +3128.591643 +3128.691443 +3128.695939 +3128.991776 +3129.091676 +3129.191743 +3129.291709 +3129.391409 +3129.591742 +3129.691742 +3129.699434 +3129.791409 +3129.796004 +3129.799234 +3134.889439 +3134.893235 +3134.899629 +3137.458268 +3149.889025 +3149.893687 +3149.900180 +3150.487858 +3150.494252 +3150.895217 +3151.890221 +3151.894617 +3152.890520 +3153.890286 +3153.894648 +3153.903040 +3154.890518 +3154.893948 +3154.900408 +3157.438534 +3157.518421 +3157.527445 +3157.552154 +3159.889281 +3159.894176 +3159.989780 +3159.995941 +3159.998472 +3160.090546 +3160.198405 +3160.291279 +3160.491212 +3160.591178 +3160.691112 +3160.699703 +3160.791311 +3160.891111 +3161.091278 +3161.191144 +3161.291244 +3161.391311 +3161.396272 +3161.491311 +3161.496406 +3161.591444 +3161.791144 +3161.797005 +3161.891210 +3161.991510 +3162.091477 +3162.191443 +3162.291343 +3162.297037 +3162.391343 +3162.395306 +3162.491376 +3162.591043 +3162.691243 +3162.696837 +3162.791609 +3162.891576 +3162.895905 +3162.991309 +3163.091276 +3163.095805 +3163.191242 +3163.291642 +3163.391209 +3163.397136 +3163.491375 +3163.591542 +3163.691508 +3163.791442 +3163.891675 +3163.991341 +3163.995670 +3164.198967 +3164.291408 +3164.391274 +3164.396602 +3164.491507 +3164.492007 +3164.499866 +3164.591474 +3164.597834 +3164.691241 +3164.699399 +3164.791474 +3164.891341 +3168.334527 +3169.889404 +3169.893733 +3169.899894 +3179.518199 +3179.524826 +3184.017995 +3184.889389 +3185.889155 +3185.895748 +3186.890186 +3187.889786 +3188.889851 +3188.894447 +3189.889484 +3189.894246 +3191.535703 +3191.549656 +3192.349488 +3194.803099 +3194.813955 +3195.190511 +3195.390844 +3195.490744 +3195.590844 +3195.791143 +3195.891010 +3195.996071 +3196.091110 +3196.190976 +3196.291043 +3196.296870 +3196.390876 +3196.396204 +3196.490976 +3196.499701 +3196.591009 +3196.596537 +3196.791042 +3196.890809 +3196.990942 +3197.091109 +3197.191375 +3197.290875 +3197.391108 +3197.495937 +3197.591175 +3197.791141 +3198.091374 +3198.297601 +3198.390974 +3198.591373 +3198.691074 +3198.791207 +3198.891073 +3198.991207 +3199.195435 +3199.391106 +3199.491040 +3199.590906 +3199.601329 +3199.691173 +3199.697500 +3199.791306 +3199.797166 +3199.891139 +3219.888921 +3219.896181 +3220.889053 +3221.889585 +3221.896945 +3222.889085 +3223.888318 +3223.894578 +3224.889349 +3228.854380 +3229.888811 +3229.989344 +3230.190443 +3230.290642 +3230.390776 +3230.490442 +3230.496869 +3230.590642 +3230.690742 +3230.790442 +3230.890509 +3230.990575 +3231.090508 +3231.190775 +3231.290808 +3231.390808 +3231.490808 +3231.590608 +3231.690574 +3231.698300 +3231.790708 +3231.890774 +3231.990674 +3232.090707 +3232.094670 +3232.190674 +3232.291073 +3232.390973 +3232.490773 +3232.590773 +3232.690773 +3232.790740 +3232.990606 +3232.997500 +3233.090407 +3233.190839 +3233.290906 +3233.390872 +3233.690439 +3233.790805 +3233.891205 +3233.990705 +3234.290705 +3234.298064 +3234.390838 +3234.399263 +3234.490838 +3234.596366 +3234.790671 +3237.050909 +3237.055271 +3237.061032 +3237.074152 +3237.096230 +3238.336855 +3238.342183 +3238.353238 +3239.892931 +3239.899890 +3251.212699 +3251.218427 +3252.958752 +3254.889086 +3254.892682 +3254.899076 +3255.889951 +3255.894247 +3256.890716 +3256.905568 +3257.889716 +3257.896009 +3258.098473 +3258.889115 +3258.899405 +3259.889614 +3259.894109 +3261.996538 +3262.004330 +3264.888843 +3264.889076 +3264.893305 +3264.989276 +3265.090208 +3265.290408 +3265.390807 +3265.490774 +3265.690940 +3265.790674 +3265.890207 +3265.989574 +3265.994669 +3266.090540 +3266.190407 +3266.290540 +3266.294902 +3266.390740 +3266.490673 +3266.495302 +3266.590540 +3266.690539 +3266.790839 +3266.895135 +3266.898664 +3266.990972 +3267.090572 +3267.190572 +3267.196200 +3267.290905 +3267.390905 +3267.395401 +3267.490838 +3267.590505 +3267.690605 +3267.790505 +3267.891071 +3267.990838 +3268.091071 +3268.291104 +3268.390971 +3268.490971 +3268.590637 +3268.696198 +3268.790704 +3268.890604 +3269.190803 +3269.291036 +3269.390703 +3269.490703 +3269.590903 +3269.790636 +3269.891102 +3274.888633 +3274.892862 +3274.899456 +3283.857156 +3283.861418 +3283.875870 +3283.891088 +3285.386658 +3285.391520 +3285.400810 +3286.288089 +3287.829213 +3287.835307 +3289.889184 +3289.892847 +3289.901805 +3290.889649 +3290.893546 +3291.889049 +3291.893644 +3292.889914 +3292.893643 +3292.899105 +3293.889946 +3293.894242 +3293.916153 +3294.889745 +3294.893841 +3294.900202 +3298.381150 +3299.889008 +3299.892737 +3299.989307 +3300.090206 +3300.190406 +3300.290772 +3300.490606 +3300.590605 +3300.690705 +3300.695767 +3300.790639 +3300.890638 +3300.896366 +3300.990405 +3301.090805 +3301.190838 +3301.290838 +3301.390738 +3301.395666 +3301.490638 +3301.495133 +3301.590571 +3301.790604 +3301.991503 +3302.091004 +3302.191003 +3302.291303 +3302.390837 +3302.691003 +3302.790936 +3302.891003 +3302.899627 +3302.990770 +3303.090736 +3303.190869 +3303.291235 +3303.490769 +3303.590902 +3303.691002 +3303.790935 +3303.891035 +3303.991201 +3304.091368 +3304.191001 +3304.290901 +3304.391035 +3304.491168 +3304.591068 +3304.690535 +3304.790901 +3304.890868 +3307.244079 +3309.888898 +3309.893393 +3309.899221 +3318.448197 +3318.452559 +3318.777134 +3321.201374 +3324.888949 +3324.893578 +3325.889814 +3325.894909 +3326.889680 +3326.894542 +3327.893808 +3327.904431 +3328.890477 +3328.894573 +3328.909492 +3329.890143 +3329.894106 +3329.902930 +3334.893801 +3334.989772 +3334.990072 +3335.090371 +3335.190704 +3335.290837 +3335.491003 +3335.591137 +3335.690537 +3335.791270 +3335.891070 +3335.991203 +3335.998962 +3336.091269 +3336.191136 +3336.291269 +3336.396231 +3336.491069 +3336.591102 +3336.691235 +3336.791102 +3336.890935 +3336.991069 +3337.091302 +3337.191035 +3337.291035 +3337.391301 +3337.491268 +3337.590968 +3337.698594 +3337.791268 +3337.991467 +3338.091267 +3338.291300 +3338.391567 +3338.491234 +3338.591200 +3338.691067 +3338.791333 +3338.891466 +3338.991133 +3339.191333 +3339.196294 +3339.291632 +3339.491399 +3339.691166 +3339.699324 +3339.791232 +3339.891199 +3339.896427 +3342.201087 +3344.888863 +3344.899885 +3359.536667 +3359.889481 +3359.895708 +3360.889779 +3360.894408 +3361.890544 +3361.895972 +3362.890443 +3363.899333 +3364.890341 +3369.513980 +3369.885375 +3369.885741 +3369.990802 +3370.091035 +3370.191435 +3370.291568 +3370.391435 +3370.396763 +3370.495963 +3370.498960 +3370.591867 +3370.600093 +3370.691734 +3370.792000 +3370.891767 +3370.898294 +3370.991834 +3371.091867 +3371.191967 +3371.197461 +3371.291734 +3371.391800 +3371.491833 +3371.500092 +3371.591200 +3371.691733 +3371.791866 +3371.796595 +3371.799259 +3371.803754 +3371.892133 +3371.991966 +3372.091733 +3372.192166 +3372.291466 +3372.391899 +3372.591932 +3372.692165 +3372.792032 +3372.991998 +3373.091932 +3373.192597 +3373.292031 +3373.392264 +3373.491998 +3373.692197 +3373.792297 +3373.891997 +3373.992397 +3374.192263 +3374.292064 +3374.391964 +3374.491864 +3374.592097 +3374.792130 +3374.892096 +3379.889361 +3379.889727 +3379.894289 +3386.328948 +3386.335675 +3386.346430 +3388.142533 +3388.155353 +3392.028909 +3394.894174 +3394.899103 +3395.890910 +3395.895106 +3396.895471 +3396.910489 +3397.890874 +3397.902962 +3398.891173 +3398.894670 +3398.900730 +3399.891439 +3404.893998 +3405.091467 +3405.291833 +3405.392099 +3405.491833 +3405.592132 +3405.691899 +3405.791965 +3405.797360 +3405.892099 +3405.992165 +3406.091998 +3406.191998 +3406.291965 +3406.491965 +3406.592098 +3406.691998 +3406.792031 +3406.797326 +3406.891898 +3406.892530 +3406.897925 +3406.992031 +3406.992564 +3407.092297 +3407.192031 +3407.291931 +3407.292663 +3407.491831 +3407.496459 +3407.591964 +3407.692496 +3407.701088 +3407.792296 +3407.797525 +3407.892030 +3407.892629 +3407.992096 +3408.092529 +3408.191896 +3408.200355 +3408.291996 +3408.396891 +3408.492096 +3408.592096 +3408.592762 +3408.597490 +3408.600587 +3408.696358 +3408.792162 +3408.992329 +3409.092095 +3409.192195 +3409.197490 +3409.292095 +3409.392162 +3409.492361 +3409.592528 +3409.692028 +3409.792128 +3409.892228 +3414.161954 +3414.890191 +3414.894088 +3414.900681 +3418.628116 +3422.970769 +3422.976797 +3422.987486 +3424.019786 +3424.024448 +3424.032806 +3428.396272 +3429.889977 +3429.894872 +3430.890109 +3430.895137 +3431.894170 +3431.902928 +3432.102295 +3432.894236 +3434.889838 +3434.905556 +3439.893263 +3440.090399 +3440.190499 +3440.290732 +3440.390932 +3440.490932 +3440.690932 +3440.790832 +3440.890898 +3440.895627 +3440.990731 +3441.090931 +3441.096426 +3441.190898 +3441.196392 +3441.290998 +3441.390864 +3441.490964 +3441.690964 +3441.695193 +3441.791064 +3441.890930 +3441.895293 +3441.990930 +3441.996225 +3442.191063 +3442.290897 +3442.390797 +3442.490896 +3442.591030 +3442.595325 +3442.691129 +3442.891262 +3442.995724 +3443.090996 +3443.191195 +3443.391062 +3443.490995 +3443.590895 +3443.991028 +3444.191194 +3444.290995 +3444.390961 +3444.395090 +3444.398354 +3444.491161 +3444.590994 +3444.690894 +3444.791161 +3444.890961 +3449.321293 +3449.888392 +3449.888658 +; +15.201850 +16.405844 +16.804745 +16.903879 +19.404176 +20.005308 +24.467475 +25.023318 +25.035872 +25.048593 +25.062113 +25.089552 +25.120588 +25.136338 +25.140634 +25.170105 +25.197344 +25.231277 +25.255586 +25.324717 +25.337837 +25.437071 +25.479062 +25.558216 +25.625848 +25.734640 +25.926714 +26.007100 +26.196144 +26.344129 +26.487519 +26.583656 +26.649257 +26.674765 +26.771901 +26.866373 +26.965274 +27.002870 +27.667438 +27.854318 +28.294078 +28.687184 +29.081756 +29.173431 +29.822714 +43.693496 +52.902378 +53.005342 +60.019387 +60.033340 +60.045894 +60.058881 +60.072634 +60.086653 +60.118888 +60.133173 +60.191482 +60.224515 +60.322817 +60.400672 +60.567772 +60.714292 +60.822750 +60.977695 +61.081990 +61.148923 +61.202003 +61.239100 +61.252120 +61.267205 +61.357714 +61.457980 +61.620151 +61.761810 +61.818686 +61.841596 +61.879592 +62.117986 +62.458179 +62.518585 +62.690613 +62.719451 +62.827576 +62.876960 +62.903866 +63.178558 +63.652917 +63.752883 +63.793576 +63.802867 +63.811824 +63.818484 +63.867702 +64.237365 +64.628773 +64.658477 +64.824044 +64.904231 +86.101113 +86.202544 +87.499946 +87.603609 +88.104541 +88.203575 +88.402009 +88.503641 +89.002142 +89.507736 +89.804805 +95.007564 +95.023914 +95.036002 +95.048989 +95.071933 +95.086585 +95.101070 +95.116089 +95.128909 +95.136735 +95.144194 +95.159412 +95.174430 +95.186119 +95.204700 +95.222749 +95.238033 +95.266172 +95.289548 +95.302835 +95.339731 +95.392945 +95.485153 +95.535835 +95.579258 +95.641629 +95.807130 +95.844060 +95.949721 +96.060743 +96.119384 +96.169201 +96.203034 +96.332338 +96.376760 +96.509394 +96.850453 +96.909793 +96.916953 +97.035001 +97.054815 +97.126510 +97.159610 +97.201634 +97.229506 +97.342726 +97.381721 +97.412856 +97.452816 +97.589613 +97.752716 +97.833602 +97.884318 +97.978423 +98.304664 +98.382752 +98.411390 +98.558543 +98.717217 +98.760441 +98.831170 +99.050317 +99.354180 +99.458808 +99.621778 +99.667732 +99.712854 +99.859274 +99.946453 +100.807558 +116.473477 +120.916263 +121.522722 +123.499677 +123.906603 +124.003506 +124.705769 +124.809665 +125.006368 +130.012391 +130.024712 +130.042161 +130.075061 +130.093510 +130.105098 +130.138864 +130.161175 +130.206796 +130.263639 +130.318118 +130.355680 +130.396306 +130.454282 +130.644591 +130.716453 +130.845457 +130.941661 +130.960209 +130.979856 +131.061374 +131.102566 +131.140528 +131.147221 +131.169433 +131.188280 +131.258310 +131.306895 +131.321281 +131.398703 +131.436166 +131.591910 +131.916185 +132.267567 +132.312755 +132.472029 +133.020047 +133.181219 +133.516383 +133.759207 +134.191474 +134.220712 +134.570628 +134.686612 +134.857674 +134.949182 +138.815512 +155.405173 +156.005905 +156.804272 +156.905837 +157.606769 +158.509998 +159.006501 +159.510463 +161.362243 +162.737200 +163.133836 +163.481288 +164.140295 +164.354414 +164.726808 +164.782453 +165.002998 +165.025443 +165.042759 +165.059275 +165.075426 +165.100135 +165.117317 +165.138529 +165.187947 +165.206095 +165.236165 +165.257444 +165.318483 +165.355546 +165.398935 +165.403531 +165.436531 +165.455945 +165.484250 +165.519748 +165.555013 +165.592209 +165.645256 +165.683417 +165.713854 +165.745688 +165.780420 +165.822278 +165.885282 +165.921479 +165.943957 +165.978888 +166.029071 +166.056078 +166.091109 +166.140726 +166.161705 +166.221445 +166.258508 +166.295172 +166.335365 +166.352847 +166.369231 +166.389044 +166.426673 +166.460206 +166.485215 +166.510922 +166.546354 +166.565434 +166.589410 +166.633766 +166.692541 +166.730236 +166.770429 +166.800732 +166.840426 +166.899766 +166.946553 +167.032400 +167.070995 +167.116516 +167.164968 +167.192573 +167.223043 +167.271761 +167.303829 +167.387045 +167.495903 +167.531501 +167.576855 +167.611820 +167.654844 +167.736529 +167.776922 +167.828836 +167.864867 +167.907857 +167.987511 +168.031101 +168.113252 +168.169995 +168.235296 +168.276522 +168.306492 +168.354877 +168.444687 +168.564134 +168.635862 +168.653611 +168.712186 +168.787510 +168.828003 +168.873557 +168.920644 +168.996368 +169.054310 +169.146684 +169.175355 +169.219111 +169.282848 +169.344453 +169.520843 +169.605758 +169.664233 +169.689074 +169.792271 +169.895168 +169.949980 +173.294665 +174.686505 +177.355867 +177.393063 +180.002451 +181.002849 +183.005578 +186.882430 +187.285893 +190.106370 +190.207336 +190.305238 +190.404838 +190.507602 +190.605037 +190.704138 +190.804837 +190.904071 +191.006103 +191.603072 +191.905569 +192.306135 +192.405702 +192.607366 +192.707300 +193.107999 +193.311628 +193.504835 +193.606566 +193.905167 +194.006632 +194.105800 +194.204967 +194.306466 +194.406332 +194.604834 +194.809828 +194.904800 +196.670965 +196.736034 +197.020016 +197.474761 +197.617618 +197.878157 +197.988347 +198.057045 +198.109858 +198.403165 +198.521247 +198.701333 +198.731336 +198.955379 +199.069931 +199.118416 +199.308525 +199.544289 +199.659208 +199.893273 +200.002231 +200.020313 +200.029104 +200.040426 +200.054079 +200.074558 +200.088778 +200.117815 +200.136030 +200.153213 +200.168464 +200.180985 +200.197835 +200.212987 +200.264835 +200.287246 +200.298801 +200.315684 +200.349217 +200.384781 +200.404994 +200.418681 +200.448484 +200.453945 +200.472693 +200.492440 +200.513353 +200.533266 +200.570096 +200.598234 +200.624641 +200.654378 +200.683316 +200.703429 +200.749882 +200.772660 +200.814484 +200.826872 +200.867831 +200.872959 +200.905627 +200.938460 +200.958474 +200.966499 +200.987045 +200.998234 +201.017947 +201.041324 +201.060871 +201.092872 +201.129236 +201.168330 +201.188610 +201.205893 +201.239992 +201.257175 +201.281517 +201.300032 +201.325240 +201.337261 +201.373558 +201.394804 +201.433265 +201.454144 +201.509056 +201.543088 +201.568063 +201.605426 +201.638826 +201.663002 +201.674956 +201.712918 +201.751247 +201.787078 +201.796268 +201.814816 +201.836095 +201.853478 +201.892772 +201.909322 +201.947584 +201.986778 +202.009621 +202.029368 +202.066498 +202.092738 +202.126238 +202.165665 +202.187976 +202.222775 +202.269528 +202.296501 +202.331533 +202.373091 +202.400730 +202.421110 +202.455841 +202.477353 +202.514616 +202.531233 +202.552944 +202.611119 +202.658405 +202.684879 +202.734463 +202.757206 +202.778419 +202.799231 +202.837393 +202.875854 +202.913317 +202.940923 +202.979650 +203.025638 +203.045351 +203.087576 +203.145151 +203.178618 +203.234695 +203.257372 +203.299131 +203.338325 +203.359737 +203.398331 +203.420143 +203.453643 +203.496466 +203.548015 +203.580216 +203.602727 +203.621808 +203.665930 +203.721208 +203.753443 +203.778351 +203.802427 +203.854974 +203.897165 +203.964365 +204.005024 +204.032330 +204.063699 +204.119443 +204.189606 +204.207621 +204.234694 +204.289739 +204.319443 +204.358404 +204.401960 +204.441121 +204.473389 +204.500695 +204.542586 +204.568693 +204.635959 +204.675320 +204.717511 +204.761367 +204.806322 +204.836159 +204.895033 +204.929665 +204.970358 +204.995799 +207.656236 +216.003780 +217.002980 +217.999715 +219.001379 +224.762179 +225.000874 +225.057850 +225.074067 +225.101606 +225.105303 +225.206734 +225.406634 +225.801572 +225.900973 +226.002538 +226.106334 +226.405468 +226.502271 +227.505900 +227.603535 +227.905433 +228.305399 +228.404800 +229.404000 +229.823247 +229.861508 +229.902700 +235.003894 +235.012486 +235.021976 +235.031766 +235.041423 +235.043721 +235.056275 +235.070294 +235.081550 +235.098832 +235.111553 +235.127570 +235.137993 +235.154543 +235.173857 +235.203561 +235.214883 +235.229968 +235.245619 +235.259338 +235.275223 +235.292139 +235.318679 +235.338126 +235.358006 +235.372891 +235.410654 +235.427936 +235.445818 +235.460637 +235.478919 +235.495669 +235.614616 +235.762834 +235.804126 +235.949414 +235.970993 +235.998798 +236.055475 +236.081482 +236.099830 +236.142954 +236.166197 +236.183813 +236.205824 +236.259670 +236.379118 +236.460503 +236.500063 +236.538325 +236.583346 +236.598565 +236.908354 +236.963366 +237.076653 +237.108654 +237.146816 +237.188774 +237.212850 +237.219843 +237.232796 +237.292070 +237.352710 +237.441654 +237.612017 +237.699796 +237.867628 +237.893968 +237.954640 +237.975753 +238.112449 +238.284011 +238.424037 +238.509918 +238.574820 +238.926301 +238.979515 +239.063031 +239.194433 +239.624502 +239.692634 +239.729131 +239.795864 +239.873520 +239.945181 +239.995597 +244.695093 +246.168718 +246.396091 +253.003843 +260.603169 +260.706965 +263.303699 +263.406929 +267.871893 +270.011685 +270.023606 +270.036293 +270.039424 +270.050746 +270.063266 +270.072424 +270.083812 +270.102560 +270.121175 +270.141188 +270.166163 +270.190639 +270.209087 +270.242853 +270.299197 +270.333263 +270.373822 +270.411118 +270.455141 +270.521707 +270.576686 +270.656439 +270.698997 +270.722473 +270.753442 +270.805124 +270.810585 +270.843752 +270.877385 +270.914015 +270.944851 +270.979982 +271.002959 +271.033628 +271.065563 +271.151710 +271.192736 +271.324337 +271.381580 +271.418177 +271.456372 +271.479349 +271.514980 +271.578516 +271.636758 +271.686342 +271.717344 +271.750045 +271.840954 +271.887607 +271.940787 +272.098995 +272.181912 +272.271756 +272.311549 +272.348113 +272.381179 +272.427067 +272.458802 +272.497230 +272.510950 +272.532561 +272.569891 +272.598129 +272.652608 +272.688339 +272.698462 +272.733826 +272.846047 +272.877649 +272.923903 +272.983077 +273.128798 +273.398461 +273.591634 +273.636623 +273.694565 +273.727632 +273.771188 +273.805420 +273.823036 +273.852540 +273.899260 +273.936156 +273.992067 +274.011281 +274.029163 +274.086639 +274.127198 +274.538620 +274.612513 +274.698027 +274.770621 +274.803288 +274.829495 +295.009995 +295.208096 +295.804300 +295.905698 +297.606762 +297.804397 +299.303430 +299.405128 +299.706760 +302.212385 +302.253244 +302.932264 +302.966164 +304.629699 +305.012982 +305.023504 +305.027867 +305.048579 +305.051476 +305.070091 +305.078982 +305.106455 +305.124337 +305.156505 +305.191203 +305.227633 +305.255839 +305.303524 +305.326634 +305.368359 +305.399828 +305.432761 +305.481180 +305.521872 +305.591536 +305.638955 +305.656438 +305.707753 +305.744616 +305.772122 +305.848146 +305.874586 +305.910883 +305.962897 +305.998528 +306.029098 +306.068692 +306.107786 +306.163030 +306.183976 +306.217276 +306.258968 +306.292201 +306.312514 +306.345881 +306.384775 +306.423603 +306.496796 +306.599294 +306.645448 +306.750309 +306.795031 +306.837622 +306.949743 +306.984708 +307.014478 +307.048910 +307.081211 +307.140452 +307.162130 +307.181944 +307.223302 +307.287472 +307.318074 +307.350442 +307.393232 +307.438953 +307.462430 +307.507551 +307.553072 +307.608017 +307.685839 +307.754970 +307.855070 +307.910182 +307.929396 +307.975716 +308.082709 +308.129262 +308.218806 +308.273951 +308.325965 +308.397927 +308.436188 +308.453171 +308.536555 +308.578279 +308.619172 +308.690167 +308.734490 +308.786538 +308.840550 +308.887670 +308.959964 +308.970953 +309.075948 +309.108515 +309.158266 +309.227163 +309.263127 +309.279078 +309.332425 +309.383673 +309.418139 +309.454636 +309.506850 +309.530227 +309.601122 +309.667822 +309.704785 +309.746577 +309.945011 +322.005672 +326.053154 +328.333638 +328.431107 +329.601335 +329.683620 +329.755681 +329.905797 +330.006397 +330.204498 +330.304531 +330.517318 +330.706030 +330.718450 +330.815520 +330.921314 +331.017185 +331.118084 +331.316685 +331.408227 +331.801200 +332.105162 +332.202398 +332.505928 +333.003230 +333.107825 +333.115484 +333.208192 +333.216184 +333.320446 +333.404562 +333.624608 +334.013485 +334.132899 +334.307158 +334.318713 +334.520778 +334.614983 +334.707591 +334.819645 +335.026804 +337.064931 +337.759869 +338.058436 +338.385276 +339.672121 +340.003256 +340.027765 +340.041218 +340.051774 +340.066959 +340.102657 +340.118141 +340.133792 +340.150009 +340.166326 +340.179780 +340.184075 +340.218274 +340.235058 +340.253339 +340.270322 +340.287205 +340.302657 +340.371421 +340.397595 +340.471321 +340.632926 +340.726266 +340.803222 +340.835090 +340.888936 +340.923602 +341.061930 +341.113945 +341.168590 +341.225266 +341.249342 +341.285107 +341.309182 +341.384041 +341.402522 +341.742915 +341.748676 +341.818206 +341.843248 +341.947876 +341.980144 +342.033191 +342.284040 +342.367257 +342.486437 +342.494463 +342.590067 +342.675814 +343.044246 +343.155568 +343.264026 +343.348308 +343.521435 +343.571684 +343.628727 +343.716872 +343.759496 +343.784072 +343.824098 +343.921068 +343.992064 +344.076446 +344.203052 +344.335586 +344.411477 +344.463891 +344.512309 +344.605783 +344.723931 +344.752902 +344.772183 +344.781473 +344.841946 +344.867953 +344.919369 +344.981373 +345.713107 +345.718469 +345.854699 +346.100520 +346.407213 +346.680939 +346.878008 +347.056463 +347.157495 +347.423062 +347.542609 +347.698786 +350.339743 +350.892989 +352.327653 +352.692188 +353.269444 +353.289257 +353.387758 +353.627419 +353.806539 +354.368843 +354.616262 +354.786925 +354.909335 +356.650825 +357.003406 +359.025215 +361.641030 +361.932505 +362.726410 +362.852218 +362.867736 +363.981687 +364.106129 +364.122346 +364.244524 +364.388080 +364.623511 +365.220880 +365.503297 +366.712054 +366.801631 +366.908524 +368.103028 +369.004959 +369.903160 +370.006456 +374.935423 +375.015742 +375.025899 +375.039385 +375.061763 +375.081343 +375.102189 +375.106551 +375.126331 +375.141250 +375.174550 +375.194663 +375.219971 +375.239352 +375.263527 +375.282209 +375.313611 +375.353770 +375.375948 +375.411779 +375.442515 +375.456001 +375.490500 +375.518106 +375.554403 +375.573317 +375.620237 +375.658132 +375.699857 +375.806684 +375.831958 +375.873217 +375.946277 +376.011945 +376.040716 +376.096127 +376.133423 +376.173050 +376.194795 +376.230593 +376.274982 +376.338418 +376.413376 +376.454302 +376.489400 +376.549906 +376.634955 +376.862360 +376.897891 +376.938751 +376.965257 +376.986769 +376.997625 +377.041181 +377.099590 +377.143279 +377.243346 +377.299190 +377.353702 +377.422633 +377.506149 +377.619036 +377.726262 +377.842546 +377.927927 +377.983638 +378.038250 +378.077744 +378.115839 +378.152469 +378.256964 +378.299855 +378.686168 +378.795858 +378.843910 +379.113540 +379.237250 +379.284769 +379.354666 +379.404549 +379.501918 +379.537616 +379.746040 +379.829257 +388.007204 +388.938639 +389.857153 +390.000642 +390.402373 +390.428714 +390.697012 +390.734108 +390.977464 +391.001507 +391.501606 +391.563811 +392.001273 +392.561212 +392.943064 +393.001638 +393.578194 +393.646326 +394.501504 +394.521217 +395.000471 +395.351020 +397.301134 +398.886781 +399.659907 +399.895071 +399.922510 +400.002897 +400.105527 +400.304728 +400.404461 +400.605027 +400.704827 +401.004860 +401.205526 +401.406991 +401.504926 +401.604460 +401.706225 +402.104893 +402.202728 +402.810786 +402.905025 +403.005824 +403.105724 +403.403859 +403.705990 +403.803526 +403.904225 +404.102426 +404.404291 +404.506489 +404.704990 +404.802059 +405.492735 +405.536624 +405.689704 +405.923337 +406.055038 +408.271220 +408.532292 +408.992132 +409.593596 +410.009647 +410.020669 +410.027662 +410.038185 +410.053436 +410.071618 +410.075581 +410.090799 +410.112077 +410.129993 +410.147675 +410.151971 +410.175880 +410.184571 +410.197325 +410.220103 +410.238284 +410.264158 +410.309613 +410.328727 +410.364724 +410.402553 +410.437885 +410.471351 +410.492030 +410.544811 +410.576746 +410.597691 +410.644078 +410.657631 +410.694661 +410.739816 +410.775746 +410.833022 +410.860695 +410.896925 +410.931324 +410.973981 +411.012742 +411.031124 +411.079209 +411.102120 +411.124930 +411.163258 +411.174913 +411.237551 +411.258297 +411.287867 +411.293328 +411.368020 +411.407214 +411.425163 +411.485403 +411.521533 +411.573215 +411.614207 +411.655932 +411.690131 +411.734420 +411.771283 +411.825862 +411.862126 +411.903651 +411.943677 +411.979774 +412.018536 +412.040614 +412.065755 +412.106980 +412.145675 +412.218036 +412.304017 +412.343510 +412.365455 +412.417936 +412.453434 +412.508212 +412.571782 +412.589364 +412.647173 +412.691728 +412.736717 +412.795891 +412.830623 +412.869550 +412.907313 +412.970483 +413.005981 +413.048871 +413.065521 +413.086933 +413.188798 +413.248671 +413.302450 +413.356563 +413.438681 +413.481738 +413.525860 +413.578141 +413.674911 +413.727625 +413.757628 +413.781271 +413.819067 +413.859826 +413.938447 +413.963222 +414.014404 +414.040678 +414.105880 +414.233052 +414.390561 +414.431887 +414.543075 +414.621896 +414.656662 +414.780471 +414.853431 +414.909009 +414.930587 +415.204114 +415.332885 +417.914001 +418.278436 +418.358190 +418.438709 +418.912135 +419.849430 +420.143536 +420.579400 +420.866545 +421.058753 +422.611798 +422.919391 +422.946364 +423.438038 +424.012130 +424.105004 +424.414694 +424.919355 +424.978696 +425.002106 +425.472601 +425.742465 +426.002071 +426.547559 +426.999873 +428.002136 +428.297707 +428.365739 +428.476794 +429.000903 +429.437466 +430.000502 +430.790212 +431.262406 +431.494740 +431.536132 +431.767966 +432.034533 +432.455445 +432.757809 +432.920246 +434.292373 +434.396102 +435.000997 +435.204293 +435.404027 +435.505558 +435.605825 +435.804359 +435.904159 +436.007123 +436.106191 +436.304992 +436.405591 +436.506357 +436.719510 +437.007289 +437.206822 +437.405723 +437.604457 +437.703758 +438.007454 +438.302725 +438.406854 +438.804223 +439.006387 +439.106620 +439.503190 +439.602957 +439.806320 +440.587138 +440.614045 +442.337586 +442.358432 +442.463926 +445.010178 +445.024030 +445.035885 +445.049905 +445.064090 +445.070684 +445.085069 +445.104217 +445.127394 +445.144943 +445.164723 +445.217803 +445.254966 +445.295026 +445.327127 +445.358629 +445.401752 +445.432322 +445.455798 +445.489564 +445.509278 +445.524896 +445.576178 +445.595458 +445.638549 +445.695958 +445.701685 +445.751302 +445.787133 +445.804449 +445.822365 +445.834885 +445.853900 +445.872648 +445.914506 +445.955165 +445.970683 +446.013174 +446.068318 +446.090829 +446.139414 +446.174812 +446.231355 +446.303583 +446.341645 +446.376177 +446.410676 +446.445241 +446.479240 +446.513739 +446.555098 +446.595990 +446.661758 +446.699886 +446.745640 +446.841045 +446.881704 +446.917635 +446.939613 +447.061757 +447.088630 +447.153266 +447.196323 +447.235483 +447.294658 +447.330921 +447.370015 +447.433119 +447.468051 +447.587897 +447.636182 +447.715903 +447.761657 +447.845639 +447.911440 +447.932219 +447.947504 +448.060891 +448.177474 +448.193791 +448.214370 +448.270614 +448.312106 +448.350934 +448.396754 +448.461523 +448.589961 +448.657127 +448.685266 +448.704113 +448.764786 +448.784266 +448.857393 +448.892125 +448.924326 +448.983534 +449.021296 +449.054396 +449.097553 +449.163587 +449.207643 +449.272711 +449.317666 +449.409707 +449.469181 +449.485698 +449.565917 +449.601049 +449.822161 +449.865850 +449.989893 +456.849560 +457.794647 +460.091881 +461.001770 +461.246125 +461.844626 +461.865639 +461.886018 +461.895009 +462.001036 +463.355947 +464.002899 +465.453714 +466.631401 +468.521709 +470.001628 +470.103459 +470.119543 +470.306722 +470.505024 +470.704358 +470.803392 +471.804956 +472.904888 +474.306852 +474.501324 +474.602922 +474.702922 +480.014771 +480.025094 +480.036050 +480.048271 +480.065687 +480.077908 +480.088564 +480.105148 +480.118068 +480.129357 +480.142410 +480.161691 +480.191428 +480.206479 +480.227825 +480.255264 +480.295157 +480.370216 +480.387998 +480.421997 +480.472646 +480.525693 +480.590362 +480.672280 +480.770815 +480.836482 +480.871614 +480.888364 +481.027491 +481.140078 +481.218333 +481.297687 +481.394057 +481.437381 +481.507977 +481.589029 +481.705579 +481.760757 +481.891693 +481.956228 +482.057493 +482.095089 +482.108442 +482.141209 +482.184966 +482.218366 +482.244906 +482.278605 +482.326857 +482.384399 +482.403613 +482.441409 +482.473244 +482.553364 +482.663020 +482.720330 +482.771179 +482.803413 +482.825824 +482.872411 +482.935348 +483.001315 +483.287162 +483.418797 +483.579969 +483.629786 +483.659123 +483.679336 +483.727355 +483.744305 +483.783399 +483.801914 +483.874175 +483.927854 +484.188860 +484.198284 +484.222626 +484.244238 +484.287727 +484.338577 +484.384564 +484.456392 +484.635513 +484.650098 +484.684430 +484.767947 +484.906575 +502.786943 +505.300360 +505.403324 +506.103623 +506.302158 +507.103722 +507.806485 +507.904221 +508.003088 +508.703254 +508.804453 +509.702054 +509.902554 +509.999956 +515.011273 +515.023894 +515.035582 +515.050800 +515.065785 +515.088629 +515.113171 +515.133351 +515.150001 +515.181336 +515.212505 +515.225459 +515.242575 +515.273311 +515.309008 +515.360923 +515.418898 +515.435016 +515.441409 +515.472445 +515.522661 +515.537247 +515.553297 +515.567916 +515.596587 +515.623061 +515.660357 +515.678472 +515.733417 +515.791159 +515.867416 +515.908475 +516.053563 +516.122095 +516.204912 +516.294422 +516.412437 +516.488095 +516.539177 +516.583233 +516.616699 +516.680469 +516.712037 +516.744904 +516.779603 +516.823825 +516.840975 +516.924358 +516.964052 +517.014668 +517.061188 +517.148201 +517.307042 +517.368480 +517.413369 +517.899482 +517.990158 +518.134913 +518.342638 +518.363950 +518.614033 +518.831283 +518.859621 +518.932481 +518.971975 +519.227919 +519.347433 +519.535611 +519.588791 +519.628218 +519.654492 +519.743236 +519.961485 +532.538728 +539.203723 +540.204188 +540.305254 +540.403822 +540.603056 +541.700923 +541.814843 +542.003953 +545.005449 +550.012004 +550.022227 +550.034182 +550.054395 +550.071311 +550.085397 +550.101148 +550.127988 +550.146669 +550.163586 +550.199250 +550.234481 +550.278071 +550.316333 +550.336379 +550.383066 +550.418630 +550.434481 +550.466149 +550.496652 +550.526789 +550.687761 +550.752230 +550.802013 +550.838144 +550.897984 +551.098983 +551.241140 +551.280867 +551.364750 +551.410771 +551.518230 +551.587027 +551.653261 +551.693521 +551.804143 +551.845369 +551.910504 +551.970610 +552.086694 +552.224623 +552.261253 +552.323324 +552.392621 +552.465948 +552.528785 +552.565714 +552.584063 +552.731582 +552.812534 +552.846267 +552.979800 +553.019560 +553.063050 +553.148231 +553.190189 +553.269876 +553.294385 +553.328617 +553.368478 +553.408371 +553.455923 +553.506373 +553.589989 +553.718128 +553.782596 +553.834511 +553.872706 +553.942103 +553.980332 +554.049895 +554.095383 +554.266046 +554.397281 +554.420025 +554.475336 +554.501144 +554.594950 +554.839971 +554.998013 +564.024244 +564.658243 +564.675692 +564.697504 +564.714820 +564.740727 +567.000598 +570.006190 +572.001493 +575.891832 +575.920736 +576.205551 +577.705083 +578.199988 +578.206215 +579.403983 +579.705914 +585.015266 +585.025822 +585.041573 +585.050697 +585.061686 +585.077170 +585.108572 +585.143904 +585.184729 +585.203910 +585.238076 +585.255226 +585.313567 +585.371975 +585.427420 +585.536810 +585.557157 +585.597017 +585.853427 +586.153793 +586.627485 +586.752960 +586.808104 +586.873639 +586.936043 +587.070042 +587.388557 +587.587857 +587.661617 +587.714730 +587.864514 +587.901010 +587.930781 +587.952659 +587.983994 +588.024420 +588.127251 +588.208469 +588.252825 +588.346698 +588.482761 +588.579032 +588.675935 +588.822888 +588.886191 +588.904273 +588.930680 +588.975601 +589.115894 +589.281395 +589.322021 +589.371006 +589.395181 +589.441269 +589.465544 +589.518358 +589.553556 +589.580596 +589.625085 +589.683093 +589.761115 +589.823186 +589.996813 +590.830178 +592.534772 +592.682624 +592.948791 +600.509656 +604.002460 +610.304551 +610.605883 +611.704417 +612.003084 +612.904549 +613.299287 +613.304548 +613.513106 +613.604914 +613.704548 +613.803915 +613.904814 +613.915670 +613.922563 +614.006545 +614.508476 +615.743973 +615.845371 +616.946269 +620.000279 +620.010702 +620.017429 +620.028584 +620.045334 +620.064515 +620.081198 +620.092487 +620.122390 +620.125420 +620.139373 +620.163083 +620.179966 +620.193586 +620.201411 +620.227085 +620.254458 +620.272107 +620.297881 +620.330249 +620.362750 +620.399446 +620.416529 +620.449862 +620.475070 +620.503076 +620.552293 +620.599413 +620.740305 +620.798580 +620.838706 +620.869209 +621.018526 +621.116362 +621.212432 +621.254823 +621.298480 +621.341903 +621.426451 +621.451460 +621.504373 +621.532246 +621.562282 +621.581363 +621.601676 +621.665645 +621.713431 +621.746831 +621.770740 +621.798479 +621.840204 +621.882229 +621.989788 +622.021456 +622.028249 +622.156521 +622.316427 +622.357486 +622.469108 +622.526251 +622.580729 +622.695847 +622.729780 +622.774535 +622.808435 +622.863047 +622.905637 +622.923053 +622.968741 +623.118691 +623.333942 +623.375134 +623.451857 +623.500942 +623.572104 +623.640768 +623.743099 +623.848527 +623.960981 +624.005570 +624.059482 +624.110998 +624.141201 +624.192549 +624.221720 +624.280028 +624.376232 +624.420055 +624.509232 +624.555919 +624.592882 +624.641700 +624.707500 +624.762312 +624.786488 +624.825183 +624.884390 +624.897544 +624.923384 +626.341298 +630.073629 +633.029903 +633.032234 +633.036863 +634.029569 +634.034398 +634.036262 +634.041557 +635.030434 +635.035196 +635.040923 +635.524872 +636.028701 +636.030533 +636.035994 +637.029400 +637.035061 +637.037025 +638.030497 +638.036891 +638.041553 +638.252009 +641.148643 +641.726764 +643.029394 +643.034655 +643.036353 +643.041248 +643.129294 +643.130925 +643.137419 +643.230292 +643.232157 +643.242280 +643.329027 +643.330592 +643.430825 +643.432923 +643.530625 +643.532257 +643.631424 +643.638417 +643.733122 +643.831857 +643.833655 +643.846509 +643.931990 +643.933722 +643.941247 +644.032156 +644.033955 +644.132256 +644.133988 +644.142280 +644.232489 +644.234387 +644.332323 +644.334154 +644.342845 +644.431357 +644.433188 +644.531090 +644.630657 +644.632589 +644.731923 +644.733821 +644.832222 +644.834287 +644.931556 +644.933188 +644.940381 +645.030823 +645.032788 +645.132122 +645.133987 +645.232455 +645.234619 +645.332122 +645.333687 +645.341879 +645.431622 +645.433487 +645.532721 +645.534386 +645.632521 +645.634386 +645.643044 +645.732688 +645.734486 +645.832488 +645.834286 +645.933720 +646.031089 +646.131955 +646.134419 +646.232221 +646.233986 +646.330656 +646.333386 +646.430356 +646.432454 +646.531788 +646.533852 +646.632687 +646.634818 +646.732653 +646.734784 +646.832686 +646.834485 +646.932820 +646.934518 +646.943775 +647.032819 +647.034351 +647.039579 +647.132919 +647.134884 +647.232753 +647.234851 +647.332852 +647.334850 +647.432320 +647.434284 +647.529889 +647.630554 +647.733152 +647.832685 +647.834484 +647.932252 +647.933951 +648.032186 +648.033917 +648.041476 +648.865418 +648.912838 +653.029583 +653.035311 +653.080699 +653.092021 +653.093919 +653.103742 +653.139473 +653.141338 +653.166779 +653.180566 +653.193519 +653.217129 +653.226952 +653.240572 +653.268211 +653.283396 +653.296316 +653.304974 +653.319027 +653.331082 +653.359320 +653.371375 +653.373839 +653.401178 +653.416862 +653.431648 +653.459653 +653.474505 +653.489390 +653.519926 +653.549330 +653.567312 +653.586126 +653.599147 +653.602277 +653.616529 +653.618960 +653.633479 +653.646000 +653.677002 +653.691754 +653.748430 +653.764281 +653.780532 +653.794917 +653.807838 +653.823555 +653.826419 +653.858354 +653.892220 +653.909070 +653.925786 +653.939972 +653.955190 +653.962916 +653.992020 +654.017861 +654.020392 +654.032979 +654.046499 +654.064281 +654.074637 +654.077568 +654.091187 +654.093585 +654.107238 +654.120458 +654.137408 +654.155290 +654.173305 +654.187724 +654.218460 +654.221790 +654.236109 +654.247198 +654.263415 +654.279998 +654.282063 +654.312266 +654.337807 +654.355356 +654.372040 +654.393185 +654.396781 +654.409669 +654.430448 +654.446731 +654.461517 +654.465213 +654.478833 +654.491686 +654.502309 +654.516362 +654.535509 +654.550694 +654.553358 +654.568410 +654.572073 +654.584860 +654.597181 +654.600344 +654.611200 +654.613964 +654.627217 +654.645000 +654.656555 +654.671273 +654.673771 +654.702675 +654.719825 +654.736042 +654.768576 +654.773205 +654.783994 +654.787091 +654.814264 +654.832012 +654.845765 +654.909268 +654.925918 +654.956221 +654.972039 +654.987690 +655.035376 +655.048995 +655.098845 +655.103874 +655.119092 +655.121756 +655.138705 +655.151992 +655.154590 +655.204839 +655.221389 +655.238972 +655.255122 +655.271406 +655.274869 +655.291186 +655.307803 +655.326484 +655.340404 +655.356254 +655.393184 +655.429115 +655.446531 +655.479165 +655.492918 +655.540969 +655.568242 +655.582994 +655.614762 +655.630713 +655.650959 +655.694915 +655.713297 +655.728349 +655.744999 +655.773104 +655.815262 +655.833676 +655.850326 +655.881728 +655.900942 +655.920223 +655.938139 +655.951658 +655.985591 +656.002174 +656.018358 +656.033776 +656.037073 +656.049094 +656.083160 +656.102441 +656.114162 +656.160682 +656.177133 +656.194648 +656.210266 +656.224052 +656.257719 +656.275468 +656.278598 +656.311898 +656.331645 +656.344765 +656.359284 +656.375368 +656.409067 +656.412863 +656.425517 +656.496813 +656.528581 +656.569873 +656.587422 +656.605337 +656.646030 +656.665843 +656.675001 +656.708234 +656.725417 +656.741135 +656.755420 +656.825550 +656.854621 +656.857685 +656.889520 +656.901841 +656.904604 +656.918058 +656.933209 +656.935906 +656.950925 +656.953289 +656.969073 +656.972670 +656.984824 +656.987288 +657.003006 +657.016925 +657.020222 +657.036472 +657.047695 +657.062113 +657.064644 +657.080329 +657.082826 +657.097345 +657.100775 +657.114428 +657.128614 +657.133675 +657.146196 +657.148494 +657.166276 +657.181527 +657.185523 +657.197445 +657.199809 +657.215327 +657.217957 +657.231511 +657.234441 +657.250425 +657.263645 +657.266143 +657.280628 +657.283692 +657.296912 +657.309799 +657.312163 +657.325250 +657.335440 +657.337738 +657.351357 +657.355586 +657.365809 +657.376465 +657.380029 +657.391018 +657.400009 +657.416592 +657.419556 +657.432143 +657.434507 +657.446695 +657.449859 +657.462379 +657.464611 +657.481927 +657.485356 +657.499476 +657.501873 +657.514727 +657.520055 +657.530977 +657.535373 +657.547294 +657.549958 +657.563045 +657.574933 +657.577697 +657.591883 +657.596212 +657.609699 +657.611963 +657.626948 +657.629279 +657.644031 +657.646762 +657.661647 +657.664677 +657.678064 +657.685489 +657.693981 +657.706002 +657.713162 +657.721453 +657.723718 +657.727914 +657.737537 +657.747194 +657.761846 +657.776965 +657.779262 +657.796112 +657.811463 +657.814427 +657.829012 +657.832043 +657.846661 +657.849492 +657.863311 +657.866475 +657.880461 +657.883991 +657.895746 +657.911896 +657.914760 +657.928979 +657.946228 +657.948593 +657.965043 +657.967973 +657.981859 +657.998443 +658.001773 +658.012063 +658.015459 +658.029645 +668.030934 +668.037960 +668.045519 +669.030933 +669.032398 +669.037826 +670.030798 +670.032730 +670.037558 +671.031463 +671.033395 +671.039023 +672.031696 +672.035592 +672.049111 +673.035724 +673.044448 +678.030158 +678.037550 +678.130524 +678.138516 +678.230557 +678.232156 +678.331423 +678.333154 +678.431822 +678.433554 +678.438149 +678.532855 +678.534553 +678.538549 +678.545742 +678.634653 +678.639614 +678.733420 +678.735252 +678.741879 +678.833520 +678.841812 +678.933853 +678.939814 +679.033820 +679.036018 +679.043943 +679.133620 +679.135551 +679.142178 +679.231855 +679.331855 +679.432054 +679.532421 +679.632088 +679.634285 +679.834185 +679.840512 +679.934285 +679.936316 +680.034318 +680.036216 +680.053366 +680.134285 +680.136349 +680.146339 +680.233819 +680.235450 +680.240379 +680.333619 +680.340112 +680.432087 +680.434684 +680.532353 +680.534151 +680.633185 +680.634884 +680.641744 +680.733918 +680.736016 +680.833918 +680.835849 +680.841111 +680.933884 +680.935583 +680.941310 +681.034284 +681.036682 +681.042509 +681.134151 +681.136015 +681.144174 +681.234117 +681.236448 +681.334250 +681.336082 +681.344107 +681.434383 +681.436348 +681.534350 +681.536848 +681.633251 +681.732252 +681.831120 +681.932452 +682.032185 +682.134183 +682.144906 +682.234116 +682.236680 +682.334116 +682.335981 +682.433950 +682.436081 +682.534316 +682.536547 +682.634182 +682.636347 +682.670013 +682.732784 +682.734748 +682.833017 +682.835514 +682.933783 +682.935614 +683.034149 +683.036047 +685.215965 +686.312467 +688.031147 +688.033444 +688.038306 +688.045999 +688.055556 +688.057354 +688.065912 +688.067777 +688.077367 +688.079498 +688.088290 +688.098213 +688.128849 +688.152059 +688.166744 +688.168776 +688.181763 +688.194850 +688.197247 +688.210367 +688.223787 +688.237973 +688.250227 +688.261216 +688.276967 +688.287357 +688.300111 +688.309268 +688.321756 +688.334443 +688.348030 +688.372172 +688.385392 +688.399411 +688.402741 +688.413797 +688.428749 +688.458752 +688.472438 +688.474869 +688.489155 +688.502009 +688.504673 +688.517460 +688.530780 +688.547630 +688.563514 +688.577267 +688.591120 +688.605405 +688.621622 +688.636641 +688.639238 +688.653957 +688.668775 +688.685725 +688.689055 +688.703640 +688.718226 +688.720690 +688.735209 +688.747430 +688.759951 +688.776467 +688.790920 +688.807237 +688.810267 +688.823420 +688.838971 +688.841469 +688.858519 +688.861782 +688.873603 +688.904439 +688.919757 +688.922255 +688.937673 +688.952691 +688.956021 +688.973437 +688.986957 +688.989621 +689.002741 +689.022554 +689.035774 +689.051958 +689.060983 +689.075668 +689.088222 +689.103007 +689.118192 +689.132511 +689.148328 +689.165178 +689.178731 +689.193750 +689.209800 +689.224319 +689.227582 +689.239537 +689.241768 +689.254722 +689.269307 +689.271638 +689.285724 +689.300343 +689.302907 +689.331379 +689.349261 +689.367176 +689.370739 +689.387855 +689.403073 +689.416860 +689.430013 +689.442734 +689.446030 +689.459017 +689.470706 +689.480696 +689.484292 +689.497945 +689.500709 +689.513030 +689.524552 +689.526916 +689.539537 +689.553057 +689.566743 +689.569274 +689.583460 +689.601042 +689.616127 +689.647296 +689.662880 +689.667176 +689.679530 +689.737838 +689.770039 +689.785957 +689.801741 +689.817159 +689.819490 +689.834342 +689.846563 +689.862181 +689.897245 +689.956153 +690.032144 +690.061215 +690.091651 +690.109433 +690.126116 +690.142567 +690.145464 +690.157485 +690.190252 +690.192816 +690.207069 +690.252357 +690.268441 +690.285457 +690.288987 +690.301441 +690.317192 +690.336472 +690.339303 +690.355487 +690.368440 +690.372769 +690.383758 +690.419023 +690.430678 +690.459016 +690.476233 +690.495646 +690.515127 +690.528181 +690.546129 +690.562779 +690.615859 +690.650658 +690.684657 +690.714794 +690.759183 +690.791550 +690.807268 +690.824517 +690.833408 +690.847994 +690.851557 +690.861347 +690.878164 +690.892449 +690.905203 +690.920754 +690.952056 +690.969539 +690.985889 +691.003804 +691.038736 +691.086721 +691.101840 +691.165143 +691.169172 +691.210298 +691.220687 +691.237304 +691.271137 +691.284657 +691.312262 +691.365143 +691.382026 +691.417757 +691.447261 +691.459981 +691.510497 +691.529944 +691.532642 +691.550357 +691.561879 +691.579362 +691.607400 +691.660114 +691.675665 +691.690450 +691.743764 +691.759848 +691.772135 +691.805635 +691.821419 +691.836171 +691.839135 +691.856318 +691.871236 +691.874932 +691.887387 +691.891083 +691.903138 +691.906534 +691.920820 +691.923251 +691.939235 +691.951822 +691.964643 +691.968339 +691.980493 +691.983823 +691.997210 +691.999441 +692.015625 +692.018056 +692.034739 +692.050523 +692.053154 +692.069504 +692.084323 +692.087553 +692.101572 +692.104403 +692.119588 +692.131742 +692.134639 +692.147959 +692.149957 +692.166008 +692.168638 +692.183257 +692.187420 +692.199508 +692.201938 +692.213360 +692.215392 +692.229844 +692.232441 +692.247393 +692.250490 +692.262378 +692.264809 +692.277430 +692.280127 +692.294213 +692.296044 +692.310896 +692.313094 +692.328212 +692.331242 +692.344263 +692.357083 +692.361745 +692.370103 +692.372568 +692.388818 +692.404236 +692.420053 +692.422551 +692.438701 +692.455651 +692.457982 +692.475165 +692.478595 +692.492914 +692.495644 +692.507399 +692.510396 +692.524049 +692.528278 +692.540033 +692.543763 +692.554585 +692.556850 +692.572801 +692.575798 +692.590416 +692.592880 +692.610030 +692.625181 +692.638901 +692.641432 +692.654918 +692.669837 +692.672168 +692.687253 +692.690017 +692.705668 +692.721918 +692.724515 +692.739867 +692.742298 +692.756084 +692.758981 +692.772501 +692.774998 +692.789117 +692.793746 +692.805701 +692.808531 +692.821818 +692.824515 +692.838202 +692.853087 +692.855284 +692.872900 +692.876563 +692.890150 +692.893013 +692.910562 +692.926713 +692.929943 +692.943263 +692.958415 +692.960512 +692.975897 +692.978794 +692.990349 +692.992813 +693.006666 +693.024349 +693.027046 +703.032530 +703.034395 +703.038691 +703.044352 +704.032729 +704.037391 +704.042286 +705.032828 +705.036691 +705.042785 +706.032494 +706.034392 +706.039853 +707.031494 +707.041817 +708.032825 +708.037920 +708.450440 +708.535855 +709.466190 +710.330359 +711.236951 +711.406315 +711.483138 +711.490664 +711.497524 +711.504117 +711.573714 +712.278675 +713.031621 +713.039380 +713.132054 +713.136683 +713.142144 +713.232387 +713.233952 +713.238947 +713.242477 +713.333253 +713.334851 +713.339680 +713.343010 +713.433785 +713.435550 +713.441211 +713.534052 +713.535883 +713.540778 +713.634318 +713.636183 +713.734451 +713.736549 +713.742110 +713.834617 +713.836649 +713.934684 +713.936582 +713.942143 +714.034750 +714.036549 +714.042176 +714.131720 +714.135783 +714.233918 +714.235882 +714.244940 +714.334417 +714.336615 +714.434517 +714.436049 +714.534084 +714.536715 +714.541576 +714.634217 +714.636215 +714.640977 +714.734483 +714.736448 +714.741410 +714.837014 +714.845605 +714.934916 +714.936748 +715.034916 +715.036781 +715.042575 +715.137380 +715.234982 +715.237114 +715.334916 +715.337413 +715.434316 +715.436447 +715.534816 +715.536680 +715.633084 +715.732451 +715.833850 +715.839044 +715.932751 +716.034915 +716.041375 +716.135015 +716.137079 +716.234815 +716.236913 +716.334548 +716.336480 +716.433016 +716.533316 +716.539610 +716.633549 +716.641974 +716.733649 +716.746436 +716.833815 +716.836046 +716.934215 +716.936945 +716.942540 +717.034281 +717.036512 +717.134647 +717.136779 +717.142440 +717.234781 +717.240009 +717.334880 +717.337544 +717.435013 +717.437078 +717.444537 +717.534680 +717.536911 +717.544404 +717.634947 +717.636778 +717.734913 +717.736978 +717.745569 +717.835180 +717.837078 +717.934314 +717.941340 +717.945935 +718.034880 +718.041307 +719.252794 +720.939372 +721.179499 +722.091053 +722.974835 +723.031212 +723.033210 +723.040935 +723.047728 +723.055387 +723.062047 +723.064545 +723.072137 +723.083160 +723.084858 +723.096213 +723.107635 +723.119656 +723.133076 +723.147628 +723.161048 +723.174035 +723.188954 +723.191418 +723.204571 +723.220156 +723.231644 +723.241435 +723.253156 +723.263979 +723.276633 +723.279030 +723.291851 +723.310932 +723.325883 +723.337305 +723.353789 +723.357085 +723.371604 +723.374235 +723.386789 +723.401874 +723.404571 +723.422387 +723.425517 +723.439470 +723.455320 +723.468840 +723.483492 +723.485590 +723.500842 +723.514594 +723.526616 +723.538903 +723.555154 +723.567974 +723.582693 +723.598011 +723.609766 +723.612630 +723.625217 +723.640435 +723.642899 +723.657352 +723.670239 +723.684358 +723.697278 +723.699343 +723.712996 +723.715127 +723.729479 +723.743832 +723.756885 +723.769672 +723.772103 +723.786322 +723.801774 +723.804438 +723.819656 +723.823119 +723.838936 +723.851557 +723.853855 +723.866742 +723.882226 +723.894248 +723.910298 +723.925050 +723.927881 +723.941334 +723.957318 +723.970505 +723.981460 +723.995313 +724.011197 +724.026748 +724.030112 +724.045996 +724.060648 +724.063378 +724.076798 +724.079362 +724.093648 +724.096246 +724.110531 +724.113828 +724.128547 +724.143298 +724.158483 +724.161847 +724.175100 +724.177431 +724.192649 +724.209232 +724.225383 +724.227514 +724.240268 +724.242699 +724.259715 +724.270604 +724.285057 +724.289186 +724.299642 +724.312696 +724.315326 +724.327880 +724.342566 +724.345762 +724.361480 +724.364877 +724.378929 +724.392416 +724.406435 +724.408699 +724.422852 +724.438503 +724.454554 +724.462146 +724.466009 +724.477464 +724.491983 +724.494980 +724.508666 +724.511363 +724.525816 +724.538303 +724.560414 +724.574633 +724.577764 +724.599908 +724.602472 +724.615393 +724.629345 +724.645263 +724.662945 +724.677797 +724.702339 +724.718889 +724.747227 +724.750724 +724.765376 +724.781593 +724.793248 +724.808732 +724.811230 +724.825516 +724.828479 +724.841666 +724.856551 +724.859815 +724.871569 +724.901539 +724.903737 +724.919255 +724.933807 +724.945729 +724.961346 +724.975099 +724.990084 +725.006002 +725.021586 +725.035705 +725.038303 +725.051056 +725.064177 +725.080827 +725.084157 +725.097743 +725.101173 +725.114260 +725.128845 +725.144296 +725.156751 +725.183391 +725.185988 +725.198709 +725.217190 +725.233640 +725.237370 +725.250990 +725.263344 +725.275032 +725.303937 +725.319022 +725.321952 +725.334806 +725.350124 +725.353554 +725.365508 +725.368838 +725.399041 +725.409831 +725.436038 +725.452122 +725.454353 +725.469171 +725.487020 +725.501539 +725.505368 +725.517323 +725.549990 +725.567373 +725.583790 +725.586187 +725.599641 +725.602238 +725.616724 +725.623450 +725.629477 +725.658515 +725.672934 +725.690017 +725.702005 +725.717223 +725.733773 +725.760913 +725.778562 +725.796177 +725.798908 +725.813260 +725.815991 +725.831708 +725.848958 +725.878362 +725.891782 +725.904868 +725.922484 +725.938368 +725.941598 +725.955451 +725.968305 +725.983390 +726.008998 +726.011362 +726.025181 +726.040100 +726.054086 +726.069470 +726.086920 +726.101505 +726.115158 +726.117755 +726.129577 +726.145195 +726.162244 +726.178661 +726.194146 +726.210163 +726.228245 +726.243729 +726.246260 +726.260313 +726.274665 +726.277029 +726.295644 +726.308764 +726.325381 +726.328078 +726.341398 +726.357415 +726.374831 +726.389017 +726.404935 +726.422350 +726.426247 +726.436969 +726.440266 +726.454119 +726.472467 +726.476829 +726.486753 +726.500872 +726.514691 +726.517655 +726.529410 +726.546726 +726.563676 +726.579160 +726.593279 +726.609097 +726.624548 +726.641797 +726.659147 +726.672600 +726.689816 +726.702503 +726.717322 +726.734005 +726.750855 +726.753652 +726.765041 +726.767838 +726.783023 +726.785387 +726.799972 +726.802004 +726.818554 +726.833938 +726.836702 +726.852020 +726.854917 +726.872367 +726.883156 +726.896709 +726.912260 +726.914458 +726.929776 +726.932007 +726.947658 +726.961744 +726.969336 +726.975663 +726.987019 +726.989549 +727.002037 +727.004534 +727.017188 +727.020618 +727.033006 +727.035703 +727.049456 +727.051887 +727.066839 +727.069369 +727.083555 +727.087351 +727.098807 +727.101604 +727.114324 +727.117388 +727.131940 +727.135969 +727.145993 +727.159779 +727.162343 +727.175929 +727.178260 +727.192446 +727.195010 +727.209463 +727.212093 +727.226645 +727.230109 +727.242862 +727.245227 +727.262276 +727.265440 +727.279459 +727.283788 +727.297674 +727.299872 +727.315690 +727.318487 +727.333971 +727.337335 +727.349955 +727.353252 +727.364141 +727.376762 +727.379226 +727.392346 +727.394710 +727.408996 +727.411527 +727.425280 +727.428410 +727.439665 +727.442063 +727.455583 +727.458247 +727.472233 +727.488783 +727.491980 +727.507731 +727.510428 +727.525579 +727.527677 +727.545260 +727.547691 +727.561310 +727.579126 +727.582090 +727.596076 +727.610994 +727.613858 +727.627777 +727.630275 +727.643828 +727.648756 +727.654417 +727.669336 +727.674031 +727.684387 +727.687617 +727.703135 +727.706065 +727.721883 +727.724813 +727.739499 +727.742662 +727.754917 +727.757347 +727.771167 +727.774097 +727.788616 +727.791447 +727.804001 +727.818486 +727.821084 +727.834737 +727.837834 +727.851620 +727.854750 +727.865806 +727.878593 +727.880757 +727.894510 +727.897407 +727.906964 +727.919452 +727.923847 +727.934237 +727.943494 +727.957447 +727.961210 +727.972033 +727.984720 +727.987184 +727.999305 +728.009662 +728.012625 +728.023881 +728.026478 +728.745558 +731.769331 +732.838528 +735.683080 +735.712484 +736.518644 +737.159636 +737.261534 +737.311517 +737.324804 +738.031263 +738.039355 +738.341220 +738.614213 +738.716744 +739.031162 +739.032761 +739.042451 +740.031028 +741.031360 +741.243781 +741.989335 +742.030127 +742.031859 +742.039185 +742.242881 +743.030892 +743.285337 +743.467355 +743.475980 +744.002086 +744.088000 +744.167987 +744.781806 +744.948572 +745.828358 +746.654265 +746.715837 +746.847605 +747.849435 +748.030021 +748.031719 +748.038613 +748.131553 +748.133218 +748.139079 +748.232285 +748.233917 +748.239778 +748.332585 +748.334350 +748.340211 +748.346171 +748.432785 +748.434649 +748.441309 +748.533151 +748.535149 +748.541676 +748.632918 +748.634882 +748.641842 +748.733084 +748.734816 +748.742375 +748.833317 +748.835415 +748.842708 +748.933517 +748.935648 +748.941842 +748.943673 +749.033816 +749.040643 +749.043573 +749.044506 +749.051232 +749.133750 +749.140343 +749.233583 +749.235947 +749.333849 +749.341242 +749.433550 +749.441708 +749.533416 +749.535614 +749.543473 +749.633316 +749.635581 +749.737778 +749.743306 +749.833849 +749.842707 +749.934015 +749.935947 +749.943106 +750.033815 +750.036313 +750.044038 +750.133615 +750.135780 +750.143239 +750.233749 +750.237079 +750.243339 +750.245703 +750.334115 +750.340209 +750.343639 +750.433549 +750.435680 +750.443505 +750.533082 +750.538111 +750.543505 +750.632982 +750.733615 +750.739909 +750.833282 +750.835180 +750.840974 +750.933548 +750.936245 +750.942905 +751.033481 +751.038277 +751.043105 +751.133748 +751.137844 +751.143638 +751.147367 +751.233681 +751.238376 +751.243571 +751.333747 +751.340574 +751.433348 +751.435379 +751.441806 +751.533647 +751.535679 +751.544004 +751.633814 +751.641073 +751.733947 +751.736544 +751.833614 +751.835778 +751.933714 +751.936677 +752.033713 +752.133280 +752.140473 +752.144203 +752.233280 +752.235578 +752.242504 +752.333480 +752.335478 +752.343004 +752.433280 +752.435078 +752.442904 +752.533879 +752.535744 +752.544336 +752.633979 +752.641072 +752.733346 +752.736210 +752.743436 +752.833480 +752.836410 +752.933746 +752.941838 +753.033646 +753.035777 +753.043936 +757.146928 +757.306169 +757.508067 +758.030078 +758.036871 +758.038603 +758.045629 +758.047594 +758.061213 +758.063578 +758.071203 +758.073068 +758.084323 +758.094214 +758.105835 +758.118523 +758.120754 +758.132142 +758.145262 +758.158050 +758.171137 +758.185922 +758.201739 +758.214793 +758.228779 +758.244197 +758.260014 +758.271336 +758.285888 +758.287820 +758.302971 +758.317856 +758.334406 +758.348059 +758.358249 +758.371270 +758.374000 +758.398809 +758.412928 +758.415325 +758.428945 +758.441466 +758.455252 +758.457417 +758.472368 +758.485555 +758.499308 +758.515792 +758.530743 +758.561013 +758.563843 +758.575432 +758.589151 +758.600673 +758.617223 +758.631975 +758.634273 +758.646927 +758.650523 +758.661546 +758.675265 +758.691715 +758.707699 +758.724216 +758.735938 +758.752222 +758.764543 +758.767406 +758.779461 +758.794246 +758.797376 +758.810630 +758.824782 +758.828745 +758.843830 +758.859847 +758.875298 +758.891083 +758.894912 +758.907366 +758.917290 +758.928245 +758.934472 +758.944229 +758.946960 +758.960513 +758.976331 +758.978895 +758.994013 +759.004536 +759.020786 +759.022984 +759.037669 +759.052854 +759.069004 +759.084522 +759.086887 +759.100806 +759.104203 +759.116290 +759.126280 +759.129910 +759.142298 +759.144795 +759.159181 +759.173533 +759.190050 +759.205335 +759.218954 +759.221951 +759.233207 +759.244962 +759.247359 +759.261445 +759.263776 +759.277562 +759.280293 +759.295211 +759.310996 +759.313260 +759.328578 +759.341765 +759.354352 +759.356583 +759.370769 +759.385388 +759.387452 +759.402238 +759.406367 +759.417189 +759.421219 +759.431608 +759.434439 +759.447326 +759.460313 +759.473233 +759.488152 +759.505234 +759.519720 +759.534439 +759.546660 +759.562943 +759.577895 +759.595378 +759.611595 +759.626546 +759.637469 +759.649057 +759.679693 +759.698108 +759.702204 +759.728777 +759.746160 +759.761378 +759.764075 +759.778294 +759.792613 +759.795044 +759.807565 +759.819520 +759.837502 +759.853253 +759.867805 +759.883955 +759.898974 +759.930242 +759.932973 +759.948890 +759.961378 +759.965107 +760.021917 +760.024681 +760.038134 +760.041131 +760.055484 +760.058181 +760.070835 +760.086586 +760.101404 +760.105467 +760.116223 +760.120019 +760.134538 +760.149922 +760.165007 +760.169203 +760.179027 +760.191348 +760.206299 +760.209163 +760.223083 +760.254684 +760.269469 +760.286253 +760.301005 +760.304002 +760.331974 +760.344228 +760.361477 +760.377461 +760.393512 +760.407698 +760.422982 +760.438167 +760.500272 +760.516256 +760.533305 +760.544194 +760.560578 +760.576562 +760.589249 +760.604434 +760.618120 +760.628244 +760.638567 +760.648856 +760.658147 +760.670102 +760.685453 +760.700538 +760.713825 +760.729842 +760.744128 +760.761377 +760.777994 +760.793678 +760.797241 +760.809562 +760.813858 +760.837567 +760.840564 +760.868470 +760.884321 +760.895842 +760.906965 +760.917521 +760.933272 +760.947524 +760.961110 +760.968470 +760.973998 +760.984920 +761.000438 +761.014990 +761.033238 +761.035969 +761.051254 +761.066472 +761.071633 +761.091380 +761.106265 +761.120784 +761.132439 +761.146159 +761.164207 +761.178559 +761.195276 +761.206531 +761.219785 +761.232838 +761.266072 +761.283121 +761.286751 +761.298373 +761.302935 +761.314024 +761.345159 +761.362042 +761.364340 +761.379558 +761.397107 +761.401137 +761.414423 +761.418153 +761.429109 +761.442828 +761.449655 +761.452985 +761.462875 +761.489615 +761.498639 +761.501336 +761.514290 +761.525279 +761.538932 +761.570867 +761.585186 +761.602402 +761.617886 +761.633537 +761.647324 +761.649888 +761.662508 +761.664773 +761.681090 +761.683820 +761.698805 +761.713524 +761.715988 +761.732039 +761.741563 +761.744293 +761.759478 +761.761776 +761.777693 +761.780723 +761.797806 +761.811359 +761.817553 +761.828376 +761.835802 +761.839564 +761.852218 +761.854916 +761.869301 +761.884020 +761.886651 +761.898938 +761.901769 +761.916154 +761.918252 +761.933803 +761.936068 +761.951020 +761.953950 +761.964906 +761.967004 +761.981389 +761.984619 +761.997307 +761.999704 +762.012025 +762.014856 +762.025645 +762.028042 +762.042894 +762.045725 +762.059344 +762.062308 +762.076727 +762.078792 +762.093743 +762.111625 +762.126244 +762.128875 +762.142894 +762.157646 +762.160077 +762.177160 +762.190213 +762.201436 +762.206730 +762.214056 +762.227043 +762.229907 +762.242761 +762.245059 +762.259844 +762.262974 +762.276460 +762.278658 +762.293876 +762.298039 +762.308362 +762.310993 +762.325145 +762.327509 +762.341629 +762.344392 +762.356947 +762.358945 +762.375195 +762.377726 +762.391545 +762.395275 +762.407196 +762.409527 +762.423813 +762.426843 +762.441129 +762.444126 +762.457379 +762.471665 +762.474229 +762.489014 +762.502268 +762.505098 +762.517852 +762.519950 +762.533237 +762.535534 +762.548721 +762.551585 +762.567336 +762.582154 +762.585118 +762.599504 +762.601901 +762.615355 +762.630806 +762.634269 +762.646357 +762.649753 +762.662840 +762.667502 +762.676793 +762.679224 +762.691711 +762.693743 +762.708262 +762.711192 +762.724878 +762.727809 +762.740729 +762.743560 +762.754382 +762.757479 +762.768967 +762.770999 +762.785917 +762.798971 +762.801934 +762.812890 +762.815787 +762.830239 +762.832837 +762.848654 +762.864072 +762.867202 +762.884918 +762.887382 +762.902967 +762.916686 +762.919217 +762.934702 +762.945457 +762.948088 +762.963373 +762.965671 +762.981255 +762.984851 +762.999237 +763.003266 +763.014388 +763.017119 +764.402732 +767.347251 +767.422210 +771.988972 +772.006354 +773.030695 +773.036290 +773.046446 +773.348644 +773.370389 +774.030062 +774.038753 +774.044114 +775.030327 +775.038253 +776.031192 +776.036587 +777.029959 +778.030957 +778.033354 +783.030319 +783.034948 +783.130652 +783.132484 +783.139277 +783.231018 +783.232650 +783.238344 +783.331551 +783.333283 +783.431784 +783.433382 +783.439643 +783.531984 +783.544704 +783.634215 +783.731817 +783.733415 +783.932483 +783.934947 +784.034581 +784.134947 +784.232549 +784.234647 +784.332749 +784.335413 +784.432382 +784.434414 +784.534880 +784.632882 +784.635179 +784.732882 +784.735046 +784.833015 +784.835978 +784.932848 +784.937610 +785.035745 +785.132981 +785.135245 +785.232581 +785.234546 +785.331416 +785.334446 +785.432548 +785.532481 +785.540207 +785.631982 +785.732581 +785.738042 +785.832581 +785.834412 +785.932880 +785.935178 +786.033013 +786.034978 +786.133080 +786.135877 +786.233113 +786.332647 +786.334945 +786.431082 +786.531947 +786.534112 +786.632680 +786.634478 +786.732946 +786.740206 +786.832846 +786.932846 +787.033112 +787.037508 +787.132946 +787.135410 +787.233012 +787.235476 +787.331414 +787.432046 +787.433811 +787.532812 +787.534810 +787.632879 +787.635043 +787.732779 +787.734544 +787.832945 +787.836675 +787.932978 +787.936342 +788.033045 +788.034910 +788.757619 +791.177397 +793.030309 +793.037469 +793.039067 +793.053619 +793.064308 +793.075531 +793.077762 +793.088318 +793.099740 +793.110496 +793.123116 +793.134105 +793.149223 +793.217555 +793.243562 +793.258747 +793.273632 +793.286519 +793.312227 +793.326746 +793.360012 +793.386819 +793.399873 +793.416223 +793.422650 +793.426146 +793.437435 +793.454451 +793.484288 +793.499073 +793.513326 +793.525347 +793.527511 +793.556383 +793.572766 +793.586519 +793.590715 +793.601304 +793.614458 +793.624714 +793.638101 +793.654384 +793.657082 +793.671434 +793.685786 +793.688484 +793.699739 +793.713525 +793.746392 +793.761377 +793.773732 +793.776129 +793.790315 +793.800005 +793.835636 +793.850954 +793.853618 +793.872000 +793.899772 +793.916922 +793.933971 +793.949189 +793.966539 +793.984088 +793.998740 +794.012992 +794.026545 +794.063808 +794.087617 +794.111760 +794.124680 +794.137135 +794.152353 +794.171167 +794.182289 +794.197574 +794.212126 +794.244927 +794.259246 +794.285719 +794.329109 +794.344327 +794.359845 +794.394444 +794.412759 +794.426745 +794.439032 +794.453818 +794.479891 +794.482522 +794.496308 +794.512825 +794.527111 +794.556315 +794.569668 +794.585985 +794.589182 +794.603401 +794.621716 +794.632439 +794.647324 +794.662475 +794.684453 +794.700304 +794.717021 +794.729841 +794.733171 +794.746025 +794.761443 +794.778060 +794.793344 +794.806631 +794.809595 +794.822615 +794.846425 +794.849322 +794.872099 +794.888749 +794.907697 +794.916255 +794.930207 +794.945159 +794.947823 +794.961576 +794.975562 +794.979425 +794.992112 +795.021949 +795.038399 +795.040930 +795.055249 +795.058346 +795.074863 +795.106431 +795.119951 +795.122581 +795.136201 +795.154549 +795.169368 +795.183754 +795.195342 +795.243361 +795.258645 +795.272498 +795.275895 +795.287816 +795.290580 +795.303267 +795.318752 +795.335035 +795.352485 +795.366337 +795.382421 +795.400636 +795.408196 +795.414789 +795.425312 +795.437566 +795.453217 +795.472598 +795.485651 +795.498871 +795.510360 +795.527609 +795.545958 +795.563307 +795.566437 +795.597306 +795.600570 +795.612591 +795.615088 +795.627609 +795.642594 +795.660376 +795.665038 +795.673363 +795.686117 +795.699937 +795.702568 +795.716787 +795.729541 +795.749121 +795.763540 +795.767303 +795.779557 +795.793909 +795.808428 +795.840629 +795.857179 +795.872864 +795.891578 +795.909660 +795.918352 +795.929807 +795.947522 +795.952118 +795.961775 +795.973163 +795.976194 +795.990113 +796.004432 +796.021249 +796.024312 +796.036800 +796.052551 +796.067036 +796.070299 +796.082820 +796.102501 +796.123480 +796.140562 +796.173896 +796.189913 +796.203300 +796.222381 +796.239430 +796.243060 +796.255181 +796.269200 +796.286483 +796.321481 +796.336000 +796.351618 +796.368901 +796.385184 +796.387715 +796.421381 +796.471897 +796.504931 +796.536599 +796.550818 +796.563672 +796.566336 +796.578524 +796.593909 +796.606996 +796.609693 +796.621281 +796.636866 +796.639430 +796.653815 +796.658078 +796.668367 +796.684185 +796.700902 +796.703233 +796.717984 +796.720882 +796.736033 +796.739929 +796.751351 +796.755747 +796.765004 +796.782087 +796.784551 +796.797605 +796.811258 +796.813955 +796.827808 +796.830139 +796.845690 +796.849253 +796.862240 +796.865603 +796.876459 +796.891211 +796.893609 +796.906895 +796.919350 +796.932137 +796.950152 +796.952783 +796.966369 +796.968367 +796.986749 +797.000069 +797.002433 +797.017884 +797.020648 +797.035500 +797.037598 +797.054881 +797.070065 +797.088214 +797.091444 +797.105130 +797.119383 +797.135533 +797.137931 +797.152716 +797.155713 +797.167035 +797.170432 +797.183452 +797.186049 +797.200501 +797.214388 +797.216585 +797.231004 +797.233302 +797.249985 +797.253315 +797.267168 +797.273928 +797.284617 +797.288080 +797.300468 +797.303132 +797.317451 +797.320148 +797.329772 +797.333302 +797.343325 +797.345789 +797.358976 +797.361407 +797.373362 +797.375926 +797.390345 +797.393308 +797.406262 +797.408760 +797.424544 +797.427508 +797.439795 +797.442626 +797.458110 +797.472296 +797.475393 +797.487015 +797.489279 +797.505962 +797.516718 +797.520681 +797.533601 +797.535966 +797.551950 +797.553948 +797.569299 +797.573395 +797.586415 +797.599369 +797.601500 +797.617950 +797.632469 +797.635166 +797.648686 +797.662672 +797.665503 +797.677591 +797.692842 +797.695473 +797.710824 +797.713588 +797.726908 +797.729072 +797.744790 +797.748220 +797.760541 +797.773095 +797.787181 +797.789678 +797.804530 +797.807394 +797.821247 +797.823944 +797.835000 +797.837730 +797.843058 +797.855080 +797.858643 +797.869965 +797.886481 +797.889012 +797.902532 +797.915785 +797.919016 +797.929705 +797.932369 +797.947454 +797.949652 +797.966335 +797.968599 +797.980587 +797.983917 +797.996172 +797.998669 +798.011856 +798.014587 +804.721073 +805.456071 +807.746112 +808.030261 +808.038786 +808.177913 +808.811512 +809.030260 +809.032491 +809.689500 +809.839983 +810.030692 +810.032390 +810.177245 +810.240249 +811.030491 +811.905815 +812.030523 +812.388298 +812.543876 +812.665554 +812.851701 +812.893759 +813.030489 +813.032087 +813.178274 +814.308210 +814.595156 +814.954063 +815.000184 +815.179738 +815.235382 +815.596587 +815.811439 +815.844605 +816.142740 +816.183766 +816.296020 +816.461055 +817.005710 +818.030218 +818.037743 +818.131283 +818.133048 +818.138842 +818.233214 +818.237843 +818.332049 +818.333581 +818.337710 +818.432215 +818.433880 +818.437310 +818.454093 +818.532348 +818.534013 +818.537843 +818.632714 +818.634280 +818.641306 +818.732681 +818.734379 +818.743703 +818.832847 +818.834646 +818.933014 +818.934745 +818.938808 +818.946567 +819.033047 +819.044869 +819.133247 +819.135145 +819.233047 +819.234812 +819.248831 +819.333113 +819.334945 +819.432980 +819.435278 +819.533246 +819.535045 +819.633213 +819.733246 +819.734911 +819.833413 +819.835777 +819.933346 +819.935244 +820.033446 +820.035111 +820.133379 +820.233412 +820.333612 +820.335443 +820.433445 +820.435044 +820.533445 +820.535177 +820.633212 +820.635077 +820.733312 +820.735276 +820.833578 +820.835643 +820.932879 +820.934377 +820.953058 +821.033045 +821.034643 +821.040005 +821.133012 +821.134710 +821.142502 +821.233211 +821.235076 +821.433244 +821.434976 +821.533577 +821.535742 +821.633278 +821.635142 +821.647397 +821.735409 +821.833544 +821.835309 +821.933544 +821.935175 +821.948029 +822.033410 +822.035109 +822.133344 +822.135708 +822.233344 +822.235208 +822.333610 +822.335475 +822.435408 +822.533077 +822.535175 +822.632244 +822.632977 +822.634342 +822.733576 +822.735341 +822.751425 +822.833410 +822.835208 +822.932877 +822.934808 +823.033709 +823.035973 +824.901972 +824.939068 +825.330210 +826.449390 +827.207531 +827.328110 +827.467937 +828.030740 +828.032572 +828.038433 +828.040164 +828.047524 +828.049588 +828.057713 +828.059545 +828.068802 +828.078626 +828.087650 +828.089515 +828.098606 +828.110161 +828.122682 +828.124580 +828.137733 +828.139964 +828.152718 +828.166005 +828.179891 +828.193677 +828.208096 +828.223681 +828.237533 +828.252219 +828.265206 +828.267736 +828.280057 +828.282089 +828.295176 +828.308163 +828.323281 +828.337933 +828.350820 +828.367070 +828.376028 +828.391013 +828.408129 +828.423148 +828.425845 +828.437866 +828.449987 +828.463441 +828.475695 +828.488749 +828.503467 +828.520417 +828.534802 +828.547756 +828.550287 +828.564040 +828.579258 +828.593377 +828.599971 +828.614156 +828.616221 +828.631572 +828.645558 +828.647590 +828.663074 +828.678126 +828.681489 +828.695475 +828.697839 +828.712291 +828.715588 +828.728542 +828.731905 +828.744426 +828.746923 +828.760077 +828.775095 +828.790480 +828.793111 +828.807696 +828.810760 +828.823447 +828.826144 +828.838598 +828.852651 +828.864040 +828.877926 +828.880257 +828.894076 +828.907230 +828.909594 +828.923447 +828.936733 +828.950120 +828.952218 +828.967469 +828.983420 +828.986517 +828.999604 +829.012191 +829.015022 +829.028608 +829.042028 +829.050786 +829.066703 +829.068968 +829.083853 +829.085951 +829.100769 +829.115554 +829.118252 +829.131372 +829.141595 +829.156314 +829.175095 +829.178491 +829.189114 +829.191911 +829.205864 +829.208461 +829.219883 +829.225844 +829.238864 +829.241628 +829.254649 +829.257179 +829.271765 +829.288548 +829.290912 +829.305831 +829.319251 +829.334269 +829.347356 +829.361308 +829.378458 +829.395641 +829.408195 +829.422314 +829.425411 +829.450952 +829.453949 +829.479990 +829.498538 +829.516087 +829.528708 +829.540429 +829.557778 +829.574162 +829.588015 +829.606130 +829.639130 +829.655814 +829.658078 +829.673130 +829.690412 +829.709926 +829.722613 +829.738697 +829.756346 +829.771431 +829.784218 +829.797006 +829.812923 +829.829140 +829.878824 +829.890645 +829.894342 +829.900968 +829.930872 +829.948354 +829.951185 +829.964305 +829.980722 +830.016852 +830.050618 +830.054648 +830.065703 +830.081587 +830.095240 +830.110392 +830.127142 +830.142560 +830.158677 +830.161341 +830.174395 +830.189313 +830.216219 +830.249619 +830.300169 +830.324444 +830.339296 +830.351784 +830.367535 +830.369965 +830.409093 +830.411824 +830.438264 +830.453449 +830.468533 +830.482786 +830.485683 +830.525710 +830.540162 +830.559143 +830.571530 +830.574727 +830.599636 +830.610125 +830.612856 +830.626442 +830.641993 +830.644291 +830.658543 +830.673628 +830.704031 +830.706595 +830.719416 +830.737498 +830.749652 +830.766435 +830.799735 +830.814787 +830.827907 +830.844291 +830.848054 +830.872396 +830.889712 +830.903764 +830.908826 +830.931603 +830.934301 +830.946688 +830.950018 +830.964570 +830.982386 +830.998170 +831.014320 +831.027874 +831.062572 +831.092143 +831.106628 +831.123378 +831.141260 +831.159708 +831.174893 +831.207061 +831.239795 +831.288712 +831.306395 +831.324876 +831.358842 +831.361373 +831.381053 +831.395472 +831.410624 +831.429505 +831.480687 +831.483151 +831.486847 +831.499735 +831.502165 +831.515985 +831.518183 +831.530937 +831.534400 +831.545788 +831.548785 +831.559908 +831.562405 +831.577157 +831.580254 +831.594473 +831.596804 +831.615718 +831.628506 +831.641826 +831.644223 +831.659475 +831.662605 +831.675359 +831.677623 +831.691143 +831.693774 +831.707227 +831.710557 +831.723144 +831.726308 +831.734833 +831.741493 +831.747820 +831.759808 +831.770330 +831.773694 +831.785482 +831.787979 +831.801632 +831.804396 +831.817417 +831.820314 +831.834266 +831.836830 +831.849684 +831.852282 +831.866834 +831.883950 +831.896437 +831.898602 +831.912688 +831.925741 +831.940926 +831.943590 +831.957476 +831.960174 +831.976591 +831.981186 +831.992375 +831.994573 +832.010790 +832.012888 +832.025974 +832.028938 +832.040926 +832.043357 +832.056544 +832.073360 +832.075691 +832.091309 +832.093507 +832.108225 +832.110756 +832.125142 +832.127739 +832.141592 +832.143890 +832.161339 +832.163637 +832.180287 +832.182784 +832.198835 +832.211089 +832.213553 +832.226440 +832.234466 +832.236730 +832.252181 +832.254412 +832.270696 +832.284815 +832.287280 +832.301599 +832.303996 +832.318282 +832.320979 +832.332468 +832.334865 +832.339993 +832.350583 +832.353214 +832.365868 +832.369198 +832.383250 +832.385714 +832.397203 +832.400067 +832.413919 +832.416284 +832.430336 +832.443124 +832.445588 +832.461538 +832.464336 +832.477855 +832.480653 +832.492840 +832.495771 +832.507492 +832.513253 +832.526140 +832.529970 +832.541492 +832.544755 +832.556976 +832.570363 +832.573560 +832.585981 +832.590110 +832.600599 +832.602997 +832.618748 +832.621145 +832.635265 +832.647419 +832.650383 +832.664102 +832.672561 +832.689111 +832.691375 +832.705461 +832.708924 +832.722344 +832.725008 +832.739194 +832.741392 +832.756177 +832.769697 +832.772760 +832.787645 +832.790043 +832.804162 +832.806993 +832.819980 +832.822644 +832.838494 +832.856243 +832.872194 +832.887112 +832.889677 +832.904162 +832.907725 +832.919347 +832.921978 +832.934731 +832.936563 +832.951914 +832.954312 +832.968897 +832.971062 +832.987179 +833.003096 +833.005561 +833.018814 +833.021178 +840.380145 +842.619004 +843.030792 +843.032424 +843.169853 +843.712942 +844.031290 +844.033588 +844.175113 +844.188899 +844.638682 +845.031223 +845.173114 +845.881905 +846.033020 +846.786865 +846.833186 +847.033052 +847.625093 +847.814603 +848.031386 +848.033418 +848.482701 +848.618832 +848.756760 +849.220896 +849.536746 +849.580036 +849.948001 +850.127921 +850.283399 +850.383865 +850.443538 +850.469346 +850.761853 +850.858357 +851.153528 +851.316698 +851.477304 +851.706974 +851.735712 +853.030482 +853.032014 +853.132047 +853.133612 +853.139407 +853.232480 +853.233979 +853.237275 +853.242204 +853.332713 +853.334445 +853.338441 +853.434811 +853.440572 +853.534977 +853.633445 +853.634977 +853.733445 +853.735510 +853.933745 +854.033745 +854.035410 +854.047065 +854.133778 +854.139472 +854.233611 +854.235576 +854.333744 +854.343102 +854.434011 +854.534044 +854.535975 +854.633711 +854.635576 +854.733877 +854.743734 +854.834110 +854.835908 +854.933744 +855.134077 +855.136174 +855.234110 +855.235775 +855.250194 +855.334243 +855.340870 +855.434209 +855.435941 +855.533776 +855.535708 +855.635408 +855.734176 +855.736174 +855.834242 +855.835974 +855.845198 +855.933909 +855.935674 +856.033776 +856.049294 +856.133709 +856.135574 +856.233809 +856.235574 +856.333543 +856.335341 +856.434075 +856.436206 +856.534208 +856.535940 +856.633609 +856.635474 +856.734008 +856.735707 +856.834008 +856.835906 +856.934208 +856.935973 +857.033475 +857.035340 +857.133508 +857.135307 +857.234108 +857.334341 +857.335939 +857.348959 +857.434074 +857.435706 +857.533475 +857.535206 +857.634440 +857.734107 +857.735839 +857.746295 +857.834274 +857.835972 +857.933907 +857.935639 +858.034040 +858.035639 +858.492481 +860.729076 +860.963508 +862.236967 +862.362408 +863.036699 +863.039130 +863.046423 +863.047955 +863.055580 +863.076693 +863.088581 +863.091145 +863.100402 +863.102900 +863.121082 +863.143126 +863.156613 +863.170732 +863.186982 +863.203033 +863.205797 +863.234568 +863.236866 +863.290745 +863.307362 +863.320549 +863.323446 +863.336299 +863.350086 +863.363406 +863.374828 +863.377558 +863.388847 +863.390911 +863.405164 +863.419916 +863.433202 +863.448021 +863.462007 +863.476592 +863.478890 +863.492110 +863.522646 +863.535467 +863.578257 +863.580255 +863.594075 +863.607761 +863.623612 +863.638097 +863.640295 +863.655979 +863.669632 +863.673029 +863.684318 +863.697971 +863.711191 +863.713522 +863.741560 +863.754314 +863.772163 +863.786049 +863.803698 +863.817085 +863.830938 +863.837198 +863.855446 +863.857644 +863.886549 +863.889745 +863.901001 +863.913089 +863.927574 +863.940262 +863.956179 +863.958710 +863.970598 +863.986349 +864.002899 +864.016918 +864.033934 +864.047587 +864.076658 +864.109792 +864.112689 +864.124810 +864.139629 +864.151850 +864.154780 +864.167101 +864.184018 +864.186515 +864.200101 +864.231603 +864.239795 +864.281254 +864.311823 +864.329672 +864.363238 +864.381853 +864.400168 +864.403198 +864.435832 +864.450284 +864.462406 +864.493941 +864.511723 +864.587647 +864.616651 +864.634600 +864.650018 +864.678389 +864.681120 +864.694973 +864.710757 +864.728706 +864.776591 +864.792175 +864.825076 +864.875359 +864.965902 +864.969365 +864.982785 +864.997503 +865.028739 +865.044989 +865.056944 +865.074060 +865.089378 +865.123177 +865.132135 +865.145122 +865.162072 +865.164303 +865.208292 +865.225808 +865.299168 +865.332035 +865.364536 +865.380553 +865.480486 +865.499268 +865.515751 +865.551982 +865.568265 +865.599334 +865.616883 +865.634799 +865.649218 +865.652281 +865.666867 +865.681918 +865.698002 +865.700200 +865.734066 +865.771429 +865.784848 +865.788511 +865.800300 +865.815817 +865.834532 +865.849018 +865.851981 +865.863137 +865.881219 +865.912820 +865.930736 +865.949883 +865.967266 +865.970796 +865.984415 +866.000000 +866.019946 +866.052814 +866.073659 +866.093406 +866.191042 +866.245221 +866.330269 +866.345920 +866.394538 +866.397036 +866.412187 +866.426706 +866.429203 +866.443622 +866.446253 +866.460938 +866.463669 +866.478521 +866.491175 +866.494005 +866.509823 +866.512254 +866.526473 +866.529303 +866.542723 +866.545454 +866.559473 +866.561937 +866.576756 +866.579553 +866.590775 +866.604561 +866.606593 +866.623709 +866.626273 +866.641724 +866.658940 +866.661704 +866.676190 +866.679120 +866.691208 +866.693472 +866.708624 +866.711454 +866.726239 +866.743123 +866.755244 +866.758374 +866.772626 +866.774957 +866.790875 +866.806559 +866.824474 +866.838028 +866.843089 +866.854211 +866.856875 +866.870528 +866.873592 +866.886213 +866.888477 +866.905593 +866.908390 +866.924374 +866.927238 +866.941657 +866.944255 +866.960738 +866.963169 +866.979319 +866.981884 +866.999399 +867.002197 +867.017814 +867.021211 +867.034364 +867.036895 +867.051214 +867.053445 +867.069429 +867.072659 +867.083782 +867.087245 +867.100432 +867.116216 +867.119279 +867.137228 +867.140092 +867.156176 +867.158274 +867.173359 +867.176455 +867.187012 +867.189243 +867.204927 +867.207358 +867.221577 +867.244154 +867.247151 +867.261770 +867.263768 +867.279053 +867.291407 +867.293838 +867.310821 +867.326072 +867.328337 +867.345120 +867.348350 +867.360305 +867.362569 +867.376988 +867.379352 +867.393838 +867.396269 +867.410355 +867.412819 +867.425539 +867.428037 +867.441457 +867.454744 +867.457108 +867.471893 +867.474257 +867.486911 +867.501130 +867.503695 +867.517814 +867.521244 +867.533498 +867.536695 +867.551047 +867.554277 +867.568729 +867.571760 +867.585812 +867.588343 +867.603095 +867.612086 +867.618380 +867.621910 +867.633565 +867.648550 +867.651114 +867.664234 +867.667564 +867.678619 +867.681050 +867.698033 +867.700498 +867.715416 +867.718846 +867.733331 +867.736561 +867.753578 +867.755942 +867.771560 +867.774290 +867.786378 +867.788842 +867.802595 +867.805126 +867.819578 +867.822009 +867.838926 +867.841290 +867.858373 +867.875023 +867.877787 +867.892006 +867.894437 +867.911453 +867.914250 +867.927737 +867.930334 +867.945819 +867.948583 +867.964533 +867.967663 +867.981250 +867.984513 +867.998799 +868.001929 +868.015349 +868.017280 +868.021510 +878.031756 +878.036485 +878.042945 +879.032055 +879.033986 +879.043310 +879.308378 +880.030588 +880.032686 +881.032352 +881.034117 +881.040544 +882.032052 +882.033950 +883.032317 +883.037645 +888.030680 +888.036907 +888.039705 +888.130647 +888.132645 +888.232079 +888.233744 +888.239005 +888.332445 +888.334243 +888.432911 +888.434443 +888.445465 +888.533477 +888.535242 +888.633677 +888.635342 +888.642368 +888.734110 +888.736407 +888.834109 +888.836074 +888.934076 +888.935808 +888.942101 +889.034276 +889.036340 +889.134276 +889.136107 +889.233909 +889.236906 +889.331911 +889.431778 +889.534042 +889.536107 +889.633509 +889.635474 +889.734308 +889.737205 +889.834275 +889.836140 +889.932010 +889.934108 +890.032410 +890.034142 +890.134408 +890.136739 +890.234441 +890.236506 +890.334541 +890.336439 +890.434474 +890.436406 +890.449326 +890.534574 +890.537005 +890.633475 +890.635473 +890.732343 +890.831776 +890.932409 +890.934307 +891.033674 +891.035739 +891.133974 +891.135905 +891.234440 +891.236205 +891.248393 +891.334473 +891.336271 +891.434573 +891.436438 +891.534406 +891.536138 +891.634506 +891.636238 +891.650057 +891.732775 +891.831276 +891.834007 +891.933241 +891.935205 +892.031975 +892.132541 +892.134939 +892.232041 +892.332408 +892.434472 +892.436537 +892.534439 +892.536537 +892.634339 +892.636170 +892.735537 +892.832607 +892.835238 +892.933473 +892.936237 +893.033672 +893.035371 +898.030371 +898.032269 +898.037763 +898.046288 +898.048053 +898.055013 +898.056611 +898.064237 +898.075825 +898.077523 +898.088313 +898.098969 +898.111956 +898.124510 +898.126907 +898.138163 +898.140227 +898.152648 +898.154513 +898.166668 +898.193474 +898.206295 +898.221846 +898.236564 +898.250450 +898.264103 +898.292209 +898.322079 +898.335732 +898.349884 +898.353081 +898.365535 +898.379754 +898.393207 +898.405495 +898.407893 +898.421712 +898.423810 +898.438029 +898.450517 +898.453081 +898.466434 +898.481686 +898.500034 +898.513987 +898.528239 +898.540993 +898.543257 +898.559308 +898.572894 +898.584483 +898.598802 +898.614486 +898.617583 +898.631502 +898.645122 +898.660840 +898.663337 +898.678355 +898.694473 +898.711655 +898.714153 +898.729338 +898.743457 +898.746088 +898.758975 +898.771662 +898.786447 +898.789078 +898.803397 +898.816484 +898.831935 +898.846154 +898.864902 +898.880686 +898.895272 +898.907260 +898.909957 +898.922811 +898.937563 +898.939927 +898.952847 +898.968432 +898.983383 +898.999068 +899.001299 +899.015851 +899.041891 +899.057110 +899.059341 +899.073859 +899.088278 +899.090909 +899.105195 +899.120180 +899.122677 +899.136796 +899.167599 +899.197569 +899.200599 +899.302098 +899.317649 +899.351282 +899.366600 +899.369064 +899.382118 +899.397702 +899.428205 +899.443390 +899.458042 +899.474159 +899.488245 +899.502697 +899.505161 +899.519880 +899.522510 +899.549483 +899.552880 +899.565634 +899.581618 +899.584881 +899.611255 +899.640625 +899.657142 +899.673093 +899.676689 +899.688611 +899.702264 +899.717116 +899.732334 +899.749150 +899.766300 +899.779353 +899.781884 +899.795770 +899.798867 +899.811121 +899.825674 +899.828904 +899.856443 +899.873825 +899.902863 +899.916716 +899.929636 +899.997868 +900.014218 +900.031434 +900.047385 +900.064301 +900.081118 +900.083349 +900.099333 +900.113952 +900.165367 +900.211920 +900.248251 +900.295969 +900.308424 +900.325640 +900.338593 +900.340625 +900.379586 +900.394504 +900.425673 +900.441757 +900.457874 +900.486013 +900.496735 +900.514184 +900.531867 +900.547584 +900.561770 +900.578986 +900.613685 +900.645486 +900.677654 +900.692539 +900.695103 +900.711687 +900.726738 +900.729702 +900.745353 +900.759239 +900.763668 +900.772326 +900.776455 +900.807924 +900.822209 +900.854877 +900.899732 +900.917814 +900.921110 +900.972326 +900.988010 +901.003195 +901.041889 +901.074590 +901.084081 +901.114983 +901.134996 +901.147783 +901.160038 +901.175789 +901.257973 +901.275189 +901.313984 +901.324873 +901.340724 +901.342988 +901.357041 +901.359405 +901.375256 +901.378286 +901.392139 +901.406258 +901.409555 +901.421243 +901.424873 +901.435695 +901.437993 +901.452778 +901.469395 +901.485346 +901.487810 +901.502162 +901.505359 +901.516847 +901.519578 +901.534197 +901.536794 +901.550547 +901.553411 +901.565332 +901.567630 +901.582215 +901.584546 +901.600697 +901.616847 +901.622042 +901.634130 +901.637959 +901.648649 +901.663001 +901.665665 +901.679385 +901.681982 +901.694836 +901.697367 +901.711586 +901.713883 +901.730500 +901.744020 +901.757240 +901.759405 +901.776421 +901.779984 +901.793171 +901.795668 +901.813384 +901.816980 +901.826737 +901.842288 +901.844519 +901.861236 +901.863767 +901.877953 +901.886677 +901.891173 +901.894036 +901.906924 +901.922641 +901.925039 +901.941056 +901.944686 +901.956640 +901.959571 +901.973623 +901.976421 +901.988542 +901.990873 +902.005825 +902.008355 +902.022608 +902.025372 +902.039824 +902.042788 +902.058905 +902.073956 +902.077852 +902.088542 +902.103693 +902.105958 +902.122741 +902.125172 +902.140323 +902.143720 +902.156440 +902.159005 +902.173923 +902.176687 +902.189074 +902.193637 +902.203593 +902.207722 +902.221742 +902.224073 +902.239924 +902.244019 +902.255275 +902.257639 +902.273157 +902.276187 +902.292105 +902.304526 +902.307090 +902.322141 +902.334695 +902.337259 +902.351845 +902.353810 +902.369461 +902.382947 +902.385678 +902.398032 +902.406124 +902.410786 +902.423506 +902.435361 +902.438325 +902.448215 +902.464066 +902.466730 +902.478019 +902.493503 +902.497000 +902.504692 +902.507422 +902.519477 +902.522208 +902.534429 +902.547349 +902.549414 +902.565065 +902.567695 +902.581249 +902.583613 +902.598831 +902.601362 +902.614715 +902.617046 +902.632730 +902.636327 +902.650446 +902.659670 +902.675321 +902.677719 +902.694002 +902.696167 +902.711152 +902.713916 +902.729933 +902.733230 +902.746849 +902.759304 +902.776020 +902.789540 +902.791938 +902.804725 +902.820542 +902.822807 +902.836593 +902.839257 +902.852777 +902.856040 +902.870326 +902.872890 +902.887875 +902.890639 +902.905357 +902.907555 +902.924139 +902.926803 +902.941022 +902.943886 +902.958604 +902.963166 +902.971491 +902.979750 +902.992603 +903.006789 +903.010252 +903.015347 +903.027668 +903.031098 +903.271724 +913.031621 +913.033719 +913.039313 +913.054864 +914.031920 +914.033851 +914.040211 +915.031619 +915.038046 +916.032118 +916.035115 +916.041941 +917.031018 +917.032849 +917.055094 +918.031716 +918.033980 +918.716963 +923.030579 +923.037605 +923.130346 +923.230412 +923.237805 +923.330745 +923.333742 +923.338304 +923.430745 +923.432643 +923.533242 +923.534874 +923.547694 +923.633342 +923.733575 +923.735706 +923.833675 +923.836006 +923.845763 +923.933675 +923.935340 +923.943432 +924.033775 +924.035739 +924.133641 +924.232009 +924.332276 +924.433275 +924.634240 +924.734340 +924.742265 +924.834073 +924.836005 +924.849758 +924.934173 +924.935971 +924.950157 +925.034173 +925.036105 +925.134240 +925.136104 +925.234140 +925.236004 +925.334006 +925.336404 +925.431109 +925.531209 +925.631941 +925.732208 +925.834172 +925.836437 +925.934139 +925.936603 +926.034272 +926.036403 +926.134272 +926.136004 +926.234005 +926.236137 +926.333672 +926.335471 +926.348990 +926.433206 +926.435304 +926.532274 +926.632340 +926.635037 +926.733505 +926.735104 +926.834038 +926.846426 +926.934105 +926.935903 +927.034138 +927.035936 +927.054584 +927.134171 +927.135969 +927.233239 +927.235370 +927.334104 +927.336568 +927.434171 +927.435902 +927.534370 +927.538899 +927.634004 +927.635935 +927.732705 +927.832006 +927.932139 +927.933970 +928.037334 +933.038194 +933.039959 +933.046919 +933.048850 +933.055744 +933.065001 +933.067032 +933.074625 +933.083616 +933.095204 +933.097036 +933.108124 +933.120412 +933.133632 +933.135697 +933.148950 +933.151248 +933.163869 +933.166433 +933.178487 +933.180952 +933.193805 +933.195870 +933.209523 +933.221411 +933.235597 +933.249716 +933.262403 +933.273592 +933.282949 +933.296536 +933.299067 +933.312919 +933.326839 +933.342623 +933.356209 +933.368963 +933.371028 +933.386646 +933.399566 +933.414085 +933.426373 +933.428704 +933.443189 +933.455277 +933.457575 +933.473059 +933.486446 +933.503196 +933.512819 +933.524974 +933.528204 +933.539659 +933.552513 +933.563868 +933.565933 +933.581584 +933.598300 +933.612719 +933.628504 +933.630835 +933.645287 +933.660105 +933.672659 +933.686945 +933.703362 +933.716282 +933.719712 +933.733066 +933.751114 +933.772060 +933.789909 +933.792273 +933.817781 +933.833432 +933.836362 +933.850215 +933.852712 +933.866798 +933.880918 +933.899765 +933.909722 +933.924907 +933.939625 +933.942056 +933.958040 +933.973525 +933.975856 +933.989809 +934.002829 +934.017614 +934.019845 +934.033332 +934.035896 +934.050281 +934.062935 +934.078886 +934.107524 +934.151613 +934.251613 +934.279219 +934.294603 +934.296868 +934.309222 +934.335063 +934.346252 +934.375822 +934.391573 +934.432599 +934.447217 +934.463301 +934.538692 +934.555509 +934.586078 +934.588809 +934.600131 +934.615715 +934.631133 +934.645652 +934.662136 +934.665133 +934.678686 +934.724407 +934.751213 +934.769362 +934.803194 +934.816348 +934.832132 +934.849948 +934.880317 +934.896401 +934.913750 +934.935295 +935.032631 +935.078352 +935.124772 +935.141955 +935.188176 +935.206690 +935.256208 +935.308555 +935.326038 +935.338225 +935.367396 +935.378685 +935.391772 +935.406058 +935.466097 +935.539957 +935.556574 +935.571059 +935.587243 +935.589407 +935.605125 +935.607656 +935.639590 +935.643154 +935.655008 +935.687676 +935.727369 +935.741755 +935.756940 +935.775022 +935.792104 +935.828035 +935.831498 +935.845185 +935.864698 +935.878518 +935.895301 +935.913316 +935.931698 +935.945717 +935.963733 +935.982381 +936.031631 +936.048881 +936.081481 +936.095967 +936.113150 +936.129300 +936.145684 +936.163366 +936.178684 +936.197465 +936.210685 +936.229866 +936.240889 +936.257805 +936.260369 +936.277219 +936.280116 +936.295334 +936.299130 +936.311018 +936.315547 +936.326703 +936.340722 +936.354941 +936.358438 +936.371125 +936.373855 +936.389173 +936.391438 +936.408254 +936.421874 +936.424272 +936.439190 +936.455440 +936.458704 +936.472990 +936.486509 +936.489340 +936.502160 +936.516846 +936.519077 +936.533562 +936.535993 +936.549180 +936.551977 +936.565963 +936.568361 +936.583046 +936.585577 +936.600029 +936.616279 +936.618610 +936.633262 +936.635693 +936.647348 +936.658204 +936.674122 +936.676486 +936.691904 +936.705690 +936.708121 +936.722773 +936.738690 +936.740921 +936.755374 +936.757971 +936.772290 +936.786909 +936.801994 +936.804358 +936.820608 +936.824604 +936.837991 +936.841221 +936.857105 +936.874621 +936.892803 +936.895999 +936.912283 +936.915180 +936.931264 +936.933728 +936.950778 +936.961900 +936.964864 +936.979283 +936.997265 +937.009552 +937.013981 +937.025936 +937.039656 +937.053775 +937.070658 +937.073422 +937.087608 +937.090005 +937.105323 +937.109486 +937.122573 +937.137391 +937.140255 +937.154141 +937.156505 +937.173355 +937.188573 +937.191437 +937.208953 +937.221107 +937.224337 +937.237657 +937.252476 +937.255506 +937.269725 +937.283845 +937.286242 +937.302126 +937.316445 +937.319043 +937.336092 +937.350911 +937.353575 +937.369126 +937.373022 +937.385243 +937.387840 +937.402992 +937.417711 +937.421174 +937.435626 +937.453475 +937.467661 +937.483911 +937.486442 +937.502326 +937.515879 +937.520508 +937.534194 +937.549445 +937.564364 +937.567427 +937.579515 +937.582246 +937.595133 +937.611450 +937.628233 +937.630531 +937.647747 +937.650045 +937.664863 +937.680381 +937.683278 +937.699295 +937.702026 +937.721706 +937.733328 +937.740421 +937.754573 +937.759635 +937.773088 +937.776851 +937.790537 +937.807054 +937.809485 +937.825669 +937.828333 +937.843251 +937.845849 +937.860434 +937.869858 +937.875219 +937.888573 +937.892102 +937.900827 +937.914380 +937.918876 +937.925968 +937.932928 +937.945149 +937.957770 +937.969858 +937.983211 +937.993201 +938.002825 +938.012149 +938.023038 +948.030853 +949.030886 +950.032217 +950.037378 +951.032216 +951.034180 +951.044836 +952.032148 +952.033880 +953.030882 +953.039407 +958.038669 +958.130610 +958.230677 +958.232375 +958.332308 +958.333873 +958.338735 +958.432308 +958.433873 +958.439501 +958.533340 +958.535072 +958.633573 +958.635105 +958.733540 +958.735238 +958.742564 +958.834039 +958.836071 +958.847959 +958.934139 +958.936104 +959.036437 +959.041765 +959.134505 +959.136370 +959.234339 +959.236170 +959.241698 +959.334339 +959.336237 +959.432873 +959.532807 +959.633872 +959.636803 +959.647925 +959.733905 +959.735870 +959.834305 +959.836203 +959.934138 +959.935903 +959.951254 +960.035936 +960.134171 +960.135970 +960.334804 +960.336635 +960.434671 +960.436735 +960.534604 +960.536502 +960.634537 +960.636335 +960.734570 +960.736768 +960.832606 +960.932439 +960.940464 +961.036402 +961.134070 +961.135735 +961.234237 +961.236168 +961.335103 +961.433437 +961.435602 +961.534536 +961.536667 +961.633471 +961.635136 +961.734170 +961.735835 +961.834070 +961.836234 +961.934536 +961.936700 +962.034669 +962.036600 +962.134669 +962.136700 +962.234669 +962.236700 +962.246723 +962.334835 +962.337333 +962.434635 +962.436567 +962.532737 +962.632004 +962.733769 +962.735434 +962.833303 +962.835534 +962.936033 +963.034235 +963.036067 +968.031999 +968.038093 +968.046651 +968.048149 +968.056308 +968.057906 +968.066964 +968.069728 +968.078020 +968.088010 +968.091073 +968.098765 +968.108556 +968.110654 +968.121076 +968.133997 +968.148316 +968.162935 +968.177753 +968.190607 +968.204859 +968.219478 +968.226371 +968.240157 +968.242455 +968.256108 +968.266364 +968.280417 +968.295835 +968.311752 +968.327403 +968.330633 +968.342921 +968.354609 +968.369062 +968.381283 +968.394403 +968.405758 +968.421542 +968.424040 +968.437426 +968.450580 +968.464200 +968.478585 +968.493637 +968.496334 +968.509388 +968.522541 +968.537859 +968.552844 +968.568728 +968.584413 +968.599797 +968.613983 +968.628169 +968.643587 +968.646484 +968.661868 +968.676654 +968.689341 +968.692405 +968.701962 +968.704459 +968.715448 +968.728235 +968.741855 +968.754942 +968.768162 +968.783147 +968.785744 +968.798099 +968.808955 +968.821675 +968.824206 +968.835728 +968.849248 +968.857972 +968.863833 +968.874556 +968.885611 +968.888175 +968.899730 +968.925438 +968.934096 +968.937126 +968.947249 +968.959437 +968.971725 +968.985778 +969.000896 +969.014848 +969.029401 +969.045118 +969.061535 +969.076021 +969.091006 +969.102927 +969.121209 +969.136960 +969.153343 +969.172124 +969.199197 +969.202561 +969.214882 +969.242887 +969.275754 +969.289307 +969.292071 +969.339590 +969.356973 +969.372857 +969.385045 +969.387376 +969.401595 +969.416180 +969.447415 +969.463300 +969.477952 +969.493736 +969.508454 +969.513882 +969.529966 +969.546949 +969.568428 +969.585444 +969.602893 +969.632996 +969.636360 +969.653909 +969.697665 +969.700162 +969.730732 +969.744019 +969.758271 +969.783812 +969.796732 +969.812816 +969.837691 +969.853975 +969.878451 +969.893968 +969.909952 +969.922407 +969.953043 +969.968993 +970.001894 +970.016080 +970.033595 +970.059270 +970.076785 +970.124371 +970.142453 +970.154208 +970.168294 +970.180582 +970.195966 +970.199063 +970.212516 +970.227634 +970.242952 +970.295733 +970.309619 +970.321374 +970.337758 +970.356306 +970.405756 +970.437025 +970.454474 +970.471024 +970.488640 +970.503991 +970.533628 +970.549779 +970.564830 +970.599962 +970.627234 +970.641354 +970.644584 +970.705856 +970.710484 +970.720974 +970.736425 +970.754973 +970.775919 +970.779649 +970.793468 +970.829898 +970.937291 +970.972988 +970.992302 +970.996631 +971.026701 +971.030098 +971.056804 +971.087407 +971.120041 +971.133794 +971.197630 +971.209252 +971.219608 +971.231962 +971.246215 +971.261533 +971.263897 +971.288739 +971.331163 +971.346714 +971.362265 +971.377150 +971.393168 +971.409685 +971.445149 +971.456804 +971.487207 +971.504789 +971.519575 +971.533161 +971.565728 +971.582545 +971.600227 +971.615578 +971.618975 +971.629465 +971.641552 +971.659235 +971.695598 +971.712914 +971.730563 +971.746747 +971.749644 +971.765562 +971.780247 +971.785142 +971.798695 +971.809484 +971.823071 +971.861632 +971.895598 +971.909717 +971.932028 +971.946048 +971.962331 +972.015844 +972.033027 +972.036524 +972.051209 +972.063397 +972.076217 +972.142218 +972.157503 +972.172787 +972.190103 +972.228365 +972.258335 +972.262464 +972.274552 +972.290003 +972.334326 +972.349577 +972.363730 +972.367859 +972.393933 +972.420040 +972.464629 +972.481778 +972.496963 +972.513346 +972.526433 +972.541785 +972.557935 +972.575051 +972.592967 +972.626866 +972.644282 +972.658901 +972.661232 +972.678281 +972.692034 +972.747146 +972.777382 +972.792500 +972.811315 +972.859733 +972.877748 +972.894865 +972.913546 +972.949377 +972.967059 +972.985008 +973.026333 +983.031185 +983.033116 +984.031550 +984.840340 +985.032182 +985.036744 +986.032447 +986.034046 +986.042903 +987.032613 +987.034444 +987.041970 +988.031679 +988.280996 +993.032307 +993.045061 +993.133039 +993.134605 +993.139267 +993.233439 +993.235137 +993.238800 +993.240865 +993.332773 +993.334471 +993.339067 +993.431774 +993.433838 +993.532040 +993.533705 +993.538733 +993.633738 +993.635370 +993.640265 +993.649689 +993.733838 +993.735903 +993.746958 +993.834404 +993.836369 +993.934670 +993.936735 +994.034837 +994.037201 +994.134937 +994.141530 +994.235003 +994.236668 +994.245959 +994.335103 +994.336934 +994.343561 +994.435103 +994.436868 +994.535103 +994.536801 +994.548756 +994.634670 +994.636534 +994.732938 +994.833471 +994.933870 +994.935735 +995.034536 +995.037133 +995.134569 +995.136934 +995.234736 +995.236534 +995.334769 +995.337067 +995.434702 +995.436400 +995.534769 +995.536534 +995.546757 +995.632571 +995.633004 +995.635335 +995.733603 +995.735368 +995.833836 +995.835634 +995.935201 +995.937432 +996.035201 +996.043992 +996.135134 +996.137465 +996.234701 +996.236433 +996.332637 +996.433103 +996.632303 +996.634335 +996.733635 +996.735500 +996.833835 +996.835600 +996.935067 +996.937431 +997.035233 +997.037231 +997.135333 +997.137464 +997.235400 +997.237664 +997.433834 +997.532835 +997.633768 +997.635899 +997.734100 +997.735832 +997.834333 +997.836032 +997.933534 +997.935799 +998.033234 +1001.541456 +1003.031298 +1003.038491 +1003.040555 +1003.046449 +1003.048114 +1003.056040 +1003.058038 +1003.066663 +1003.068328 +1003.078484 +1003.088574 +1003.091105 +1003.100296 +1003.121741 +1003.134328 +1003.149313 +1003.163632 +1003.178051 +1003.192703 +1003.207888 +1003.220808 +1003.223572 +1003.238291 +1003.249446 +1003.261334 +1003.275820 +1003.291537 +1003.305657 +1003.319976 +1003.332796 +1003.366662 +1003.381514 +1003.383845 +1003.397398 +1003.411884 +1003.414281 +1003.430831 +1003.448147 +1003.450378 +1003.464931 +1003.482979 +1003.485477 +1003.501061 +1003.516978 +1003.533129 +1003.535959 +1003.550545 +1003.567395 +1003.582879 +1003.585710 +1003.598397 +1003.612783 +1003.628134 +1003.630798 +1003.648180 +1003.658570 +1003.672956 +1003.686142 +1003.688540 +1003.702992 +1003.705656 +1003.720541 +1003.734594 +1003.737058 +1003.754674 +1003.770758 +1003.773322 +1003.787241 +1003.802526 +1003.817411 +1003.820142 +1003.833129 +1003.846382 +1003.859769 +1003.896798 +1003.961334 +1003.966162 +1003.974554 +1003.977651 +1003.990038 +1004.006222 +1004.009685 +1004.025236 +1004.043918 +1004.064797 +1004.077251 +1004.094034 +1004.113148 +1004.127734 +1004.169758 +1004.187108 +1004.220075 +1004.235992 +1004.249545 +1004.312482 +1004.345882 +1004.357970 +1004.386342 +1004.389805 +1004.417777 +1004.432995 +1004.448846 +1004.480347 +1004.496598 +1004.512149 +1004.529565 +1004.546648 +1004.593135 +1004.603524 +1004.637390 +1004.651709 +1004.670091 +1004.682945 +1004.698729 +1004.716178 +1004.731163 +1004.761899 +1004.776218 +1004.791036 +1004.826235 +1004.841120 +1004.861466 +1004.871656 +1004.888772 +1004.907520 +1004.971855 +1004.987340 +1005.008053 +1005.012282 +1005.022405 +1005.024836 +1005.060700 +1005.098329 +1005.135225 +1005.153074 +1005.166461 +1005.180513 +1005.196630 +1005.215711 +1005.247313 +1005.259434 +1005.292734 +1005.308485 +1005.326967 +1005.330363 +1005.359101 +1005.374119 +1005.377083 +1005.437856 +1005.470856 +1005.491635 +1005.510982 +1005.545182 +1005.585907 +1005.598162 +1005.621605 +1005.704788 +1005.721139 +1005.752407 +1005.763863 +1005.830363 +1005.841119 +1005.861465 +1005.903523 +1005.949044 +1005.974818 +1005.999860 +1006.014012 +1006.027232 +1006.040386 +1006.055537 +1006.070622 +1006.084109 +1006.094099 +1006.103489 +1006.115977 +1006.118707 +1006.131228 +1006.146280 +1006.160066 +1006.174851 +1006.189204 +1006.192667 +1006.204255 +1006.213812 +1006.216676 +1006.229097 +1006.239953 +1006.250975 +1006.261465 +1006.264129 +1006.277016 +1006.287871 +1006.301524 +1006.314312 +1006.316443 +1006.331428 +1006.345281 +1006.347645 +1006.360399 +1006.363529 +1006.373785 +1006.385207 +1006.390369 +1006.398261 +1006.412180 +1006.416876 +1006.426066 +1006.439886 +1006.450675 +1006.454471 +1006.468124 +1006.483043 +1006.498094 +1006.506553 +1006.520971 +1006.523869 +1006.539619 +1006.542184 +1006.556403 +1006.569989 +1006.572120 +1006.589603 +1006.603888 +1006.607185 +1006.622936 +1006.625700 +1006.641451 +1006.644748 +1006.660132 +1006.663296 +1006.678514 +1006.693632 +1006.696862 +1006.714611 +1006.734524 +1006.736955 +1006.758400 +1006.770222 +1006.773619 +1006.789036 +1006.795164 +1006.802889 +1006.811514 +1006.815710 +1006.831594 +1006.846546 +1006.848677 +1006.864161 +1006.880412 +1006.882743 +1006.901291 +1006.914644 +1006.917541 +1006.931161 +1006.933292 +1006.947611 +1006.960132 +1006.963329 +1006.971787 +1006.984541 +1006.996162 +1007.007285 +1007.021071 +1007.030794 +1007.043448 +1007.059632 +1007.073951 +1007.088703 +1007.104621 +1007.118640 +1007.132593 +1007.147677 +1007.150874 +1007.163595 +1007.165859 +1007.182143 +1007.198194 +1007.201923 +1007.213678 +1007.217041 +1007.229163 +1007.240951 +1007.244014 +1007.258233 +1007.260398 +1007.277015 +1007.280511 +1007.291300 +1007.305220 +1007.316175 +1007.318606 +1007.333358 +1007.348443 +1007.362629 +1007.365126 +1007.381910 +1007.399392 +1007.401890 +1007.419306 +1007.421736 +1007.436888 +1007.440251 +1007.454637 +1007.470321 +1007.484507 +1007.487238 +1007.501590 +1007.509515 +1007.526898 +1007.529928 +1007.544580 +1007.547178 +1007.561430 +1007.563828 +1007.580544 +1007.596795 +1007.599658 +1007.615942 +1007.618939 +1007.634424 +1007.652339 +1007.669921 +1007.672952 +1007.689402 +1007.692565 +1007.708017 +1007.711613 +1007.723634 +1007.740318 +1007.743814 +1007.757733 +1007.760331 +1007.772818 +1007.785905 +1007.788503 +1007.804753 +1007.819838 +1007.821936 +1007.837787 +1007.840151 +1007.856668 +1007.858965 +1007.873484 +1007.877147 +1007.889102 +1007.891766 +1007.907650 +1007.921137 +1007.923867 +1007.938885 +1007.941583 +1007.956734 +1007.972518 +1007.974849 +1007.990467 +1008.005119 +1008.021603 +1008.024067 +1018.032615 +1018.034746 +1019.033113 +1019.037476 +1020.032946 +1020.038074 +1021.032712 +1021.036242 +1022.037573 +1022.572637 +1023.032477 +1023.034242 +1023.040369 +1023.047295 +1026.826312 +1028.032405 +1028.038599 +1028.049721 +1028.131872 +1028.133637 +1028.232172 +1028.233704 +1028.332671 +1028.334236 +1028.433937 +1028.435635 +1028.439697 +1028.534070 +1028.535701 +1028.542195 +1028.634403 +1028.636367 +1028.734569 +1028.736867 +1028.834769 +1028.836400 +1028.934968 +1028.936866 +1028.944592 +1029.034902 +1029.036667 +1029.135035 +1029.137432 +1029.235135 +1029.236966 +1029.242960 +1029.336966 +1029.348221 +1029.433503 +1029.532970 +1029.633602 +1029.636366 +1029.734102 +1029.834301 +1029.836033 +1029.934834 +1029.936865 +1030.034901 +1030.036832 +1030.134901 +1030.136699 +1030.234934 +1030.236832 +1030.335034 +1030.337131 +1030.434734 +1030.436332 +1030.534900 +1030.536898 +1030.634734 +1030.636698 +1030.735166 +1030.737298 +1030.835100 +1030.837031 +1030.847421 +1030.935166 +1030.936864 +1031.035333 +1031.042026 +1031.135399 +1031.137763 +1031.234733 +1031.236631 +1031.332935 +1031.433634 +1031.533367 +1031.535399 +1031.634366 +1031.636131 +1031.734899 +1031.736664 +1031.844756 +1031.934566 +1032.035065 +1032.036930 +1032.049351 +1032.135065 +1032.137263 +1032.235298 +1032.237263 +1032.335431 +1032.337462 +1032.435265 +1032.437029 +1032.449184 +1032.535331 +1032.537096 +1032.547419 +1032.633633 +1032.733133 +1032.833533 +1032.836563 +1032.934365 +1032.939560 +1033.034831 +1033.036796 +1035.580549 +1038.031130 +1038.037990 +1038.039688 +1038.047713 +1038.055639 +1038.066028 +1038.077583 +1038.087007 +1038.089605 +1038.098762 +1038.100627 +1038.123138 +1038.125036 +1038.136724 +1038.138955 +1038.150111 +1038.152608 +1038.164063 +1038.179182 +1038.193267 +1038.206088 +1038.208785 +1038.221106 +1038.235825 +1038.237989 +1038.251709 +1038.265229 +1038.278349 +1038.291702 +1038.308152 +1038.322039 +1038.338356 +1038.352974 +1038.373420 +1038.386740 +1038.402525 +1038.419574 +1038.432828 +1038.460234 +1038.462565 +1038.477383 +1038.491502 +1038.506787 +1038.521206 +1038.538022 +1038.556204 +1038.559301 +1038.571555 +1038.585009 +1038.588006 +1038.601792 +1038.614679 +1038.628399 +1038.630496 +1038.644982 +1038.658335 +1038.674119 +1038.689404 +1038.705022 +1038.720540 +1038.735158 +1038.751842 +1038.767026 +1038.781678 +1038.861898 +1038.891235 +1038.904655 +1038.922071 +1038.951608 +1038.967193 +1038.980346 +1039.014112 +1039.028931 +1039.060033 +1039.092101 +1039.124036 +1039.126999 +1039.155171 +1039.171655 +1039.188604 +1039.205587 +1039.260732 +1039.273619 +1039.276350 +1039.284975 +1039.296297 +1039.312880 +1039.323836 +1039.343583 +1039.369557 +1039.397029 +1039.451641 +1039.454338 +1039.479813 +1039.482510 +1039.495564 +1039.512314 +1039.527798 +1039.557502 +1039.574119 +1039.577881 +1039.590802 +1039.604854 +1039.607885 +1039.620505 +1039.634392 +1039.669357 +1039.682144 +1039.698527 +1039.710948 +1039.714312 +1039.746812 +1039.762297 +1039.776250 +1039.788937 +1039.802656 +1039.817875 +1039.834991 +1039.853306 +1039.871221 +1039.888804 +1039.920938 +1039.937888 +1039.975450 +1039.993132 +1040.008717 +1040.031061 +1040.045813 +1040.095996 +1040.098427 +1040.135357 +1040.177082 +1040.191634 +1040.194997 +1040.242716 +1040.246246 +1040.260132 +1040.312879 +1040.328863 +1040.345413 +1040.363695 +1040.379013 +1040.397361 +1040.447011 +1040.461930 +1040.483775 +1040.493232 +1040.507351 +1040.536089 +1040.549975 +1040.603821 +1040.638586 +1040.650541 +1040.663561 +1040.675749 +1040.709415 +1040.723501 +1040.736955 +1040.814277 +1040.846045 +1040.863062 +1040.880544 +1040.913311 +1040.931127 +1040.950408 +1040.965859 +1040.998160 +1041.029029 +1041.044147 +1041.047943 +1041.069522 +1041.083741 +1041.116908 +1041.133491 +1041.146411 +1041.161563 +1041.181077 +1041.197127 +1041.212379 +1041.246445 +1041.250207 +1041.264427 +1041.275649 +1041.293298 +1041.309848 +1041.312878 +1041.326165 +1041.377413 +1041.389401 +1041.433524 +1041.468256 +1041.503587 +1041.522268 +1041.531992 +1041.565858 +1041.594663 +1041.612578 +1041.631226 +1041.680810 +1041.701123 +1041.704752 +1041.718239 +1041.729661 +1041.745911 +1041.848375 +1041.867223 +1041.895994 +1041.945178 +1041.959264 +1041.974716 +1041.990167 +1042.006850 +1042.023700 +1042.054502 +1042.069820 +1042.097559 +1042.107283 +1042.117972 +1042.122734 +1042.144845 +1042.179744 +1042.195794 +1042.209114 +1042.240050 +1042.286703 +1042.314808 +1042.331492 +1042.366057 +1042.379211 +1042.398192 +1042.437452 +1042.454369 +1042.468754 +1042.477046 +1042.492963 +1042.521302 +1042.538784 +1042.556000 +1042.590632 +1042.631258 +1042.664292 +1042.676546 +1042.691431 +1042.708614 +1042.722967 +1042.758131 +1042.772117 +1042.788634 +1042.791898 +1042.846343 +1042.914208 +1042.934788 +1042.949706 +1042.963093 +1042.973749 +1042.976679 +1043.018804 +1043.027162 +1052.097782 +1052.737176 +1052.866579 +1053.031048 +1053.032813 +1053.188491 +1053.262350 +1053.344701 +1054.031580 +1054.045966 +1055.033444 +1055.187356 +1055.390287 +1055.782394 +1056.031245 +1056.176366 +1056.429913 +1057.032676 +1057.242932 +1058.030843 +1058.032608 +1058.953686 +1059.432574 +1059.626946 +1062.362641 +1062.397439 +1063.030938 +1063.033036 +1063.133003 +1063.230672 +1063.232104 +1063.239330 +1063.332303 +1063.340428 +1063.432570 +1063.434235 +1063.438797 +1063.532803 +1063.534434 +1063.541427 +1063.633135 +1063.634734 +1063.640961 +1063.733002 +1063.734734 +1063.744591 +1063.834001 +1063.933069 +1063.934967 +1064.033335 +1064.035100 +1064.040761 +1064.133301 +1064.135033 +1064.235199 +1064.333301 +1064.334001 +1064.335299 +1064.433401 +1064.435233 +1064.533334 +1064.534966 +1064.633501 +1064.635399 +1064.644623 +1064.733467 +1064.735399 +1064.744590 +1064.833201 +1064.834866 +1064.933301 +1064.935465 +1065.033367 +1065.035199 +1065.043590 +1065.133400 +1065.135065 +1065.233334 +1065.235265 +1065.253647 +1065.333467 +1065.335065 +1065.433400 +1065.435265 +1065.533333 +1065.535298 +1065.633367 +1065.634998 +1065.733333 +1065.735031 +1065.744922 +1065.833433 +1065.835264 +1065.933400 +1065.935497 +1066.033266 +1066.034798 +1066.133366 +1066.135098 +1066.233333 +1066.234898 +1066.240259 +1066.333133 +1066.334898 +1066.344088 +1066.433233 +1066.434997 +1066.533332 +1066.534931 +1066.544288 +1066.632000 +1066.633998 +1066.733432 +1066.735297 +1066.833299 +1066.835197 +1066.933265 +1066.934964 +1067.033299 +1067.035030 +1067.133232 +1067.135097 +1067.146519 +1067.233298 +1067.234997 +1067.333165 +1067.334863 +1067.343788 +1067.433498 +1067.435096 +1067.533365 +1067.535196 +1067.633231 +1067.634730 +1067.733231 +1067.734830 +1067.833231 +1067.834929 +1067.933131 +1067.934796 +1068.033064 +1068.034796 +1068.039391 +1069.007323 +1069.433962 +1069.706423 +1069.918544 +1070.146516 +1070.223106 +1070.361900 +1070.733994 +1070.748047 +1070.854407 +1071.204357 +1071.362931 +1071.630697 +1071.685775 +1071.936590 +1071.994333 +1072.379414 +1072.544415 +1073.031228 +1073.037988 +1073.039819 +1073.047478 +1073.056769 +1073.066992 +1073.078048 +1073.088970 +1073.101191 +1073.114145 +1073.126699 +1073.138254 +1073.149609 +1073.160698 +1073.172520 +1073.183775 +1073.185840 +1073.198094 +1073.211980 +1073.225933 +1073.227665 +1073.243282 +1073.258367 +1073.274984 +1073.289236 +1073.302190 +1073.314678 +1073.327465 +1073.330828 +1073.342583 +1073.356769 +1073.370721 +1073.383542 +1073.386139 +1073.399659 +1073.413179 +1073.422270 +1073.434358 +1073.436822 +1073.449642 +1073.478414 +1073.484508 +1073.487604 +1073.499160 +1073.512746 +1073.527165 +1073.529762 +1073.542416 +1073.544681 +1073.559399 +1073.573086 +1073.576116 +1073.587937 +1073.601890 +1073.615343 +1073.618207 +1073.629562 +1073.631660 +1073.647178 +1073.662130 +1073.665160 +1073.678980 +1073.682110 +1073.695729 +1073.699226 +1073.712546 +1073.727364 +1073.742682 +1073.760132 +1073.774850 +1073.778047 +1073.790368 +1073.806785 +1073.818906 +1073.833591 +1073.845746 +1073.848310 +1073.861197 +1073.878879 +1073.893065 +1073.896462 +1073.910215 +1073.923268 +1073.934524 +1073.946145 +1073.975150 +1073.990801 +1074.004953 +1074.007750 +1074.023235 +1074.029762 +1074.032559 +1074.060531 +1074.078480 +1074.107584 +1074.113411 +1074.125333 +1074.140551 +1074.143681 +1074.156069 +1074.170055 +1074.183508 +1074.186172 +1074.199758 +1074.235722 +1074.252872 +1074.266758 +1074.277414 +1074.291700 +1074.294364 +1074.307184 +1074.320005 +1074.330394 +1074.342748 +1074.359065 +1074.387071 +1074.389535 +1074.403454 +1074.418639 +1074.431793 +1074.444813 +1074.459631 +1074.488170 +1074.503987 +1074.520138 +1074.538952 +1074.569222 +1074.572618 +1074.601256 +1074.604553 +1074.616674 +1074.631659 +1074.647377 +1074.663494 +1074.679478 +1074.693864 +1074.696861 +1074.711846 +1074.727230 +1074.746411 +1074.758932 +1074.774916 +1074.789967 +1074.807883 +1074.824633 +1074.838286 +1074.840650 +1074.855602 +1074.866557 +1074.881742 +1074.911579 +1074.942814 +1074.945279 +1074.959431 +1074.974683 +1074.994030 +1074.997693 +1075.011013 +1075.014443 +1075.026631 +1075.036954 +1075.051939 +1075.053937 +1075.068555 +1075.083673 +1075.096860 +1075.108981 +1075.125232 +1075.141316 +1075.174083 +1075.189601 +1075.205119 +1075.221602 +1075.224532 +1075.236554 +1075.239151 +1075.253836 +1075.269820 +1075.302854 +1075.314109 +1075.329494 +1075.359397 +1075.374915 +1075.390167 +1075.403720 +1075.420436 +1075.436154 +1075.451339 +1075.468122 +1075.482874 +1075.499091 +1075.511945 +1075.535921 +1075.549607 +1075.585338 +1075.614709 +1075.647176 +1075.660396 +1075.677079 +1075.688701 +1075.704985 +1075.720969 +1075.724732 +1075.737952 +1075.753803 +1075.757099 +1075.781275 +1075.794961 +1075.810679 +1075.841149 +1075.869687 +1075.881808 +1075.914142 +1075.916540 +1075.931891 +1075.944379 +1075.960363 +1075.964725 +1075.972717 +1076.002254 +1076.036153 +1076.051538 +1076.103886 +1076.152437 +1076.168687 +1076.183806 +1076.201288 +1076.215940 +1076.231857 +1076.259363 +1076.276047 +1076.311245 +1076.324465 +1076.338617 +1076.356799 +1076.371651 +1076.387635 +1076.404018 +1076.407548 +1076.418071 +1076.432357 +1076.444844 +1076.463359 +1076.478810 +1076.527228 +1076.544378 +1076.547508 +1076.560828 +1076.578644 +1076.630359 +1076.650838 +1076.667788 +1076.686003 +1076.716839 +1076.734321 +1076.769220 +1076.786869 +1076.802087 +1076.818870 +1076.836352 +1076.869053 +1076.915973 +1076.924264 +1076.944477 +1076.988034 +1076.990764 +1077.005450 +1077.018170 +1077.034221 +1077.081474 +1077.084238 +1077.146475 +1077.150604 +1077.161061 +1077.178510 +1077.209079 +1077.234953 +1077.251737 +1077.295926 +1077.331057 +1077.347474 +1077.419269 +1077.436685 +1077.454467 +1077.498490 +1077.517071 +1077.534220 +1077.550238 +1077.568020 +1077.583371 +1077.597124 +1077.614140 +1077.626528 +1077.643411 +1077.663591 +1077.675046 +1077.693394 +1077.708613 +1077.726528 +1077.739082 +1077.787400 +1077.806015 +1077.808646 +1077.839149 +1077.944809 +1077.959661 +1077.994293 +1077.997490 +1079.069817 +1088.029848 +1088.176867 +1088.236374 +1089.029847 +1089.031578 +1089.180929 +1090.029579 +1090.031377 +1090.440268 +1091.029612 +1091.031543 +1091.181593 +1092.021519 +1092.031109 +1092.175997 +1092.434072 +1093.029476 +1093.031175 +1093.183322 +1093.643761 +1094.203668 +1094.230641 +1094.541996 +1094.601003 +1094.828309 +1094.987583 +1095.106098 +1095.409228 +1095.673563 +1095.821948 +1095.859011 +1096.109560 +1096.169666 +1096.235234 +1096.596905 +1096.638564 +1096.707728 +1096.737531 +1096.818950 +1097.135799 +1097.363605 +1097.438030 +1097.484983 +1097.521447 +1097.588979 +1098.029505 +1098.031170 +1098.130270 +1098.135499 +1098.232102 +1098.236131 +1098.242292 +1098.330970 +1098.432634 +1098.438196 +1098.531369 +1098.533001 +1098.541858 +1098.633500 +1098.731768 +1098.831735 +1098.833200 +1098.843790 +1098.931901 +1098.933466 +1098.942191 +1099.031935 +1099.033533 +1099.132101 +1099.133766 +1099.232001 +1099.233699 +1099.246553 +1099.331734 +1099.333300 +1099.432234 +1099.433766 +1099.532134 +1099.533999 +1099.548151 +1099.633832 +1099.732866 +1099.832267 +1099.834098 +1099.932233 +1099.933832 +1100.033299 +1100.132133 +1100.133665 +1100.232133 +1100.233865 +1100.332100 +1100.333898 +1100.432166 +1100.441890 +1100.633764 +1100.732299 +1100.733931 +1100.832266 +1100.833964 +1100.931899 +1100.933498 +1101.031733 +1101.042289 +1101.132066 +1101.134064 +1101.232199 +1101.233897 +1101.332065 +1101.333897 +1101.432132 +1101.433797 +1101.530134 +1101.532065 +1101.630300 +1101.732331 +1101.733930 +1101.832564 +1101.834596 +1101.932265 +1101.933863 +1102.032198 +1102.034096 +1102.131865 +1102.133563 +1102.230599 +1102.329967 +1102.332298 +1102.430999 +1102.432730 +1102.532064 +1102.534062 +1102.632430 +1102.634162 +1102.730299 +1102.732231 +1102.831931 +1102.833729 +1102.932364 +1102.934029 +1103.031131 +1103.032796 +1103.731297 +1104.859201 +1105.336157 +1105.743150 +1106.128864 +1106.196230 +1107.094198 +1108.029095 +1108.030793 +1108.036754 +1108.038586 +1108.045146 +1108.046877 +1108.054503 +1108.056068 +1108.064959 +1108.066891 +1108.076348 +1108.078379 +1108.088103 +1108.099691 +1108.112645 +1108.122968 +1108.135955 +1108.137986 +1108.151373 +1108.163794 +1108.166091 +1108.177813 +1108.193197 +1108.207483 +1108.221469 +1108.223634 +1108.237686 +1108.249708 +1108.263227 +1108.277546 +1108.280244 +1108.292598 +1108.305285 +1108.320403 +1108.336054 +1108.352771 +1108.366890 +1108.388269 +1108.391732 +1108.404286 +1108.406917 +1108.418872 +1108.422235 +1108.435688 +1108.445112 +1108.458865 +1108.472684 +1108.489734 +1108.504120 +1108.519504 +1108.533124 +1108.547876 +1108.550506 +1108.563360 +1108.565791 +1108.578478 +1108.581209 +1108.593763 +1108.608981 +1108.623633 +1108.638052 +1108.650973 +1108.653570 +1108.665924 +1108.668089 +1108.716407 +1108.731825 +1108.763227 +1108.770187 +1108.784572 +1108.801422 +1108.816507 +1108.830826 +1108.845977 +1108.860363 +1108.862727 +1108.876314 +1108.892930 +1108.908415 +1108.937219 +1108.967422 +1108.983640 +1108.999790 +1109.014708 +1109.046210 +1109.061895 +1109.092864 +1109.108115 +1109.123766 +1109.127329 +1109.139550 +1109.142181 +1109.155667 +1109.172284 +1109.184905 +1109.187369 +1109.204918 +1109.219603 +1109.234355 +1109.249806 +1109.279210 +1109.283007 +1109.307082 +1109.324532 +1109.341948 +1109.355401 +1109.367822 +1109.373050 +1109.383006 +1109.399557 +1109.414308 +1109.431291 +1109.444478 +1109.459963 +1109.474981 +1109.491265 +1109.509780 +1109.522533 +1109.555534 +1109.557798 +1109.571085 +1109.588334 +1109.603386 +1109.606150 +1109.637685 +1109.663559 +1109.679809 +1109.694361 +1109.707848 +1109.725497 +1109.752004 +1109.754301 +1109.768154 +1109.783705 +1109.798491 +1109.831524 +1109.833955 +1109.872849 +1109.888700 +1109.939250 +1109.968087 +1109.983738 +1109.997558 +1110.014241 +1110.030525 +1110.033522 +1110.045610 +1110.092463 +1110.124897 +1110.128260 +1110.139716 +1110.159229 +1110.177278 +1110.201221 +1110.215573 +1110.233921 +1110.250738 +1110.266622 +1110.282906 +1110.299023 +1110.302053 +1110.316972 +1110.331690 +1110.347974 +1110.361227 +1110.363259 +1110.394760 +1110.412010 +1110.424764 +1110.440348 +1110.456166 +1110.475313 +1110.505283 +1110.511743 +1110.546009 +1110.594627 +1110.597890 +1110.613808 +1110.627427 +1110.654534 +1110.668420 +1110.684537 +1110.748473 +1110.781540 +1110.796725 +1110.829625 +1110.833221 +1110.880041 +1110.884104 +1110.896658 +1110.930591 +1110.946441 +1110.963424 +1110.998756 +1111.060894 +1111.101453 +1111.120001 +1111.136917 +1111.208246 +1111.226195 +1111.243677 +1111.260294 +1111.279774 +1111.305748 +1111.324330 +1111.343777 +1111.394493 +1111.416471 +1111.465755 +1111.498922 +1111.527060 +1111.543710 +1111.560960 +1111.656064 +1111.692994 +1111.708246 +1111.740080 +1111.775745 +1111.795358 +1111.813107 +1111.863890 +1111.876677 +1111.891562 +1111.894859 +1111.908279 +1111.913374 +1111.933820 +1112.084103 +1112.115038 +1112.132787 +1112.150503 +1112.167819 +1112.185701 +1112.251235 +1112.284635 +1112.300286 +1112.414605 +1112.463756 +1112.532554 +1112.584602 +1112.615404 +1112.724229 +1112.727625 +1112.760725 +1112.779040 +1112.811808 +1112.815004 +1112.829323 +1112.847172 +1112.992427 +1113.003116 +1113.019067 +1113.023229 +1123.029413 +1124.030877 +1124.032609 +1124.039868 +1125.029944 +1125.032375 +1126.037835 +1127.030008 +1128.030940 +1128.032938 +1128.045059 +1129.905530 +1131.850949 +1133.029470 +1133.037595 +1133.129969 +1133.131634 +1133.231534 +1133.233465 +1133.244388 +1133.332033 +1133.333798 +1133.342356 +1133.432366 +1133.433998 +1133.443389 +1133.532566 +1133.534364 +1133.632699 +1133.634464 +1133.640391 +1133.732366 +1133.734198 +1133.830967 +1133.931500 +1133.934131 +1134.032965 +1134.035529 +1134.133132 +1134.134763 +1134.233198 +1134.246718 +1134.333065 +1134.334730 +1134.433264 +1134.435063 +1134.537960 +1134.633198 +1134.634963 +1134.732831 +1134.734563 +1134.832731 +1134.834463 +1134.933264 +1134.935062 +1135.033330 +1135.035328 +1135.133064 +1135.133830 +1135.134862 +1135.231632 +1135.332498 +1135.334662 +1135.431765 +1135.530966 +1135.629967 +1135.632631 +1135.731798 +1135.831398 +1135.931864 +1136.031698 +1136.034462 +1136.133229 +1136.138091 +1136.233629 +1136.236126 +1136.333695 +1136.335893 +1136.433496 +1136.435560 +1136.533362 +1136.535327 +1136.632063 +1136.652243 +1136.731897 +1136.735060 +1136.833662 +1136.836259 +1136.932663 +1136.945117 +1137.032629 +1137.034594 +1137.132063 +1137.145849 +1137.232429 +1137.333328 +1137.342719 +1137.433195 +1137.435093 +1137.447980 +1137.531929 +1137.633494 +1137.636025 +1137.733561 +1137.736491 +1137.833494 +1137.835925 +1137.932329 +1137.934093 +1138.030497 +1138.033294 +1143.030192 +1143.031990 +1143.038018 +1143.046609 +1143.048441 +1143.055500 +1143.057465 +1143.065124 +1143.066856 +1143.076945 +1143.078810 +1143.089266 +1143.102553 +1143.112477 +1143.122833 +1143.135620 +1143.137651 +1143.151371 +1143.163892 +1143.178877 +1143.193862 +1143.208314 +1143.222566 +1143.237518 +1143.253202 +1143.267621 +1143.270618 +1143.284305 +1143.300622 +1143.314641 +1143.330292 +1143.332823 +1143.346609 +1143.360961 +1143.374514 +1143.377778 +1143.390298 +1143.410179 +1143.423532 +1143.438350 +1143.454234 +1143.469153 +1143.484870 +1143.499522 +1143.513575 +1143.528527 +1143.542513 +1143.555200 +1143.570352 +1143.586968 +1143.599855 +1143.617338 +1143.630791 +1143.644644 +1143.659862 +1143.691863 +1143.707481 +1143.721933 +1143.738883 +1143.751637 +1143.766389 +1143.784404 +1143.797890 +1143.829958 +1143.844843 +1143.860761 +1143.863125 +1143.877844 +1143.891097 +1143.923298 +1143.939715 +1143.954367 +1143.967521 +1143.970085 +1143.983338 +1143.994893 +1144.039282 +1144.052203 +1144.069019 +1144.072216 +1144.086768 +1144.101453 +1144.104983 +1144.118137 +1144.150138 +1144.199788 +1144.214940 +1144.231357 +1144.250770 +1144.276112 +1144.279042 +1144.291396 +1144.308446 +1144.324663 +1144.327860 +1144.341946 +1144.355399 +1144.369951 +1144.409478 +1144.428060 +1144.431090 +1144.446941 +1144.461959 +1144.464590 +1144.479641 +1144.497424 +1144.534919 +1144.547873 +1144.578576 +1144.595359 +1144.628859 +1144.645242 +1144.675312 +1144.691529 +1144.710310 +1144.726494 +1144.742079 +1144.773747 +1144.788033 +1144.804183 +1144.807280 +1144.852202 +1144.854733 +1144.868952 +1144.903284 +1144.917769 +1144.933953 +1144.936584 +1144.949038 +1144.951236 +1144.967386 +1144.982005 +1145.030224 +1145.046707 +1145.065721 +1145.079774 +1145.093627 +1145.108678 +1145.127892 +1145.140114 +1145.172181 +1145.188465 +1145.204616 +1145.209011 +1145.227792 +1145.236584 +1145.254432 +1145.306014 +1145.323363 +1145.337449 +1145.352501 +1145.368352 +1145.382970 +1145.386633 +1145.399953 +1145.419567 +1145.430689 +1145.448338 +1145.464555 +1145.499221 +1145.508944 +1145.515604 +1145.530190 +1145.558628 +1145.577942 +1145.609710 +1145.620333 +1145.622497 +1145.670216 +1145.683769 +1145.700419 +1145.714971 +1145.747406 +1145.766653 +1145.782004 +1145.798521 +1145.814705 +1145.847705 +1145.861991 +1145.864655 +1145.881571 +1145.896423 +1145.899354 +1145.914405 +1145.932420 +1145.949304 +1145.952234 +1145.982903 +1145.999054 +1146.014205 +1146.016636 +1146.045541 +1146.058761 +1146.076643 +1146.091994 +1146.109010 +1146.124495 +1146.143309 +1146.147372 +1146.160525 +1146.178641 +1146.181904 +1146.199120 +1146.218934 +1146.236283 +1146.268850 +1146.272114 +1146.334585 +1146.346839 +1146.360325 +1146.366319 +1146.372413 +1146.389430 +1146.404781 +1146.423362 +1146.426093 +1146.440945 +1146.467585 +1146.470415 +1146.480905 +1146.494358 +1146.524861 +1146.555796 +1146.588763 +1146.603915 +1146.622796 +1146.638680 +1146.657262 +1146.670082 +1146.702483 +1146.720831 +1146.741311 +1146.752566 +1146.758593 +1146.781171 +1146.795690 +1146.809076 +1146.845473 +1146.859259 +1146.876942 +1146.893192 +1146.910974 +1146.925793 +1146.942409 +1146.959759 +1146.978040 +1146.993925 +1147.026126 +1147.029289 +1147.043109 +1147.061723 +1147.077974 +1147.115736 +1147.133318 +1147.137115 +1147.148004 +1147.165686 +1147.185633 +1147.222629 +1147.225593 +1147.239512 +1147.252899 +1147.267884 +1147.287031 +1147.303148 +1147.322862 +1147.325926 +1147.340011 +1147.359625 +1147.377940 +1147.395789 +1147.410641 +1147.413371 +1147.445872 +1147.460058 +1147.463854 +1147.477074 +1147.490128 +1147.502649 +1147.518666 +1147.532918 +1147.537014 +1147.550601 +1147.570314 +1147.573378 +1147.585832 +1147.603448 +1147.634550 +1147.637181 +1147.647537 +1147.650134 +1147.659558 +1147.671879 +1147.684300 +1147.697354 +1147.771246 +1147.788629 +1147.840277 +1147.858193 +1147.875709 +1147.892392 +1147.907044 +1147.909774 +1147.924526 +1147.926991 +1147.940144 +1147.944506 +1147.955229 +1147.957926 +1147.972112 +1147.974343 +1147.990227 +1147.993224 +1148.008709 +1148.011473 +1148.028389 +1154.909135 +1158.030976 +1158.035239 +1159.031275 +1159.033373 +1159.042131 +1160.031141 +1160.033106 +1160.907031 +1160.997607 +1161.032305 +1161.040697 +1162.029341 +1162.031272 +1162.096440 +1162.145758 +1162.198838 +1162.245258 +1163.030805 +1163.032969 +1168.036761 +1168.045319 +1168.130633 +1168.132132 +1168.230300 +1168.232298 +1168.236994 +1168.330999 +1168.332931 +1168.431332 +1168.534229 +1168.632664 +1168.634829 +1168.640223 +1168.732298 +1168.734063 +1168.739357 +1168.832697 +1168.834296 +1168.932697 +1168.934262 +1168.945484 +1169.032031 +1169.033863 +1169.045451 +1169.131432 +1169.231698 +1169.233563 +1169.332297 +1169.334628 +1169.436460 +1169.533629 +1169.535394 +1169.633662 +1169.635927 +1169.732929 +1169.734694 +1169.831631 +1169.833495 +1169.931131 +1170.030731 +1170.130931 +1170.133195 +1170.232529 +1170.234760 +1170.332063 +1170.334094 +1170.432596 +1170.434794 +1170.535160 +1170.633128 +1170.635226 +1170.733428 +1170.735992 +1170.833661 +1170.835959 +1170.933861 +1170.935825 +1171.033627 +1171.036491 +1171.133694 +1171.135858 +1171.233627 +1171.235359 +1171.333760 +1171.335991 +1171.432095 +1171.530796 +1171.631496 +1171.731429 +1171.734526 +1171.831928 +1171.834459 +1171.931662 +1172.032727 +1172.042817 +1172.133393 +1172.135225 +1172.233626 +1172.235591 +1172.333526 +1172.335291 +1172.352108 +1172.433759 +1172.533626 +1172.633559 +1172.635724 +1172.732727 +1172.831827 +1172.932393 +1172.934292 +1173.032527 +1173.034391 +1173.498194 +1174.034257 +1175.908648 +1178.030224 +1178.032022 +1178.037816 +1178.039748 +1178.045775 +1178.047840 +1178.054466 +1178.056364 +1178.063491 +1178.065655 +1178.073847 +1178.084103 +1178.085702 +1178.096091 +1178.108179 +1178.118935 +1178.120866 +1178.131589 +1178.133587 +1178.146241 +1178.148572 +1178.160460 +1178.174280 +1178.176311 +1178.190763 +1178.205215 +1178.219534 +1178.234519 +1178.249071 +1178.251669 +1178.264623 +1178.275978 +1178.297823 +1178.313673 +1178.315705 +1178.333121 +1178.349704 +1178.365855 +1178.380473 +1178.394826 +1178.410443 +1178.413607 +1178.426494 +1178.429924 +1178.442311 +1178.457230 +1178.461359 +1178.469917 +1178.482371 +1178.494426 +1178.506181 +1178.518735 +1178.533187 +1178.546907 +1178.570050 +1178.582371 +1178.595025 +1178.606747 +1178.617270 +1178.630157 +1178.654399 +1178.688998 +1178.716537 +1178.743010 +1178.758661 +1178.819101 +1178.835484 +1178.851135 +1178.867219 +1178.883536 +1178.901751 +1178.919933 +1178.924595 +1178.935584 +1178.952567 +1178.968884 +1178.982271 +1178.985001 +1179.019900 +1179.036783 +1179.052168 +1179.066853 +1179.081571 +1179.096423 +1179.114971 +1179.125827 +1179.139613 +1179.156463 +1179.189896 +1179.220199 +1179.235084 +1179.251102 +1179.253599 +1179.266686 +1179.296956 +1179.312773 +1179.316037 +1179.342877 +1179.345640 +1179.374079 +1179.388764 +1179.402916 +1179.420765 +1179.436150 +1179.453233 +1179.455863 +1179.483669 +1179.496123 +1179.512440 +1179.516569 +1179.531121 +1179.551401 +1179.564055 +1179.579606 +1179.592393 +1179.610009 +1179.625693 +1179.643076 +1179.655897 +1179.669816 +1179.672547 +1179.685500 +1179.698587 +1179.730722 +1179.748604 +1179.760159 +1179.762856 +1179.775210 +1179.791661 +1179.804348 +1179.814971 +1179.831221 +1179.843875 +1179.858361 +1179.871547 +1179.897421 +1179.900985 +1179.913539 +1179.932287 +1179.945706 +1179.960192 +1179.974944 +1179.977341 +1179.992959 +1180.008344 +1180.026592 +1180.042310 +1180.054498 +1180.064288 +1180.067118 +1180.083169 +1180.101151 +1180.116602 +1180.147837 +1180.164421 +1180.182869 +1180.196289 +1180.212273 +1180.228324 +1180.231720 +1180.261324 +1180.264454 +1180.281037 +1180.293392 +1180.299552 +1180.312040 +1180.326559 +1180.328923 +1180.343675 +1180.361324 +1180.382935 +1180.398953 +1180.416136 +1180.432419 +1180.443974 +1180.446838 +1180.460524 +1180.477241 +1180.493658 +1180.521097 +1180.535882 +1180.558493 +1180.589495 +1180.603481 +1180.607311 +1180.634650 +1180.659625 +1180.663188 +1180.674410 +1180.690494 +1180.751467 +1180.781170 +1180.783934 +1180.796655 +1180.810308 +1180.826858 +1180.871247 +1180.884167 +1180.898353 +1180.915336 +1180.926391 +1180.940011 +1180.969915 +1180.980337 +1180.993125 +1181.012272 +1181.041942 +1181.058559 +1181.075975 +1181.093025 +1181.124260 +1181.140344 +1181.155595 +1181.172578 +1181.190094 +1181.193457 +1181.211273 +1181.230287 +1181.257527 +1181.289395 +1181.293457 +1181.305212 +1181.337880 +1181.353264 +1181.380270 +1181.389195 +1181.415002 +1181.431852 +1181.445838 +1181.493590 +1181.524659 +1181.527723 +1181.540277 +1181.572711 +1181.575975 +1181.610407 +1181.621163 +1181.633817 +1181.651632 +1181.695588 +1181.710573 +1181.728655 +1181.765119 +1181.769181 +1181.783667 +1181.803813 +1181.818299 +1181.833617 +1181.849667 +1181.862221 +1181.875608 +1181.891425 +1181.940876 +1181.945505 +1181.959058 +1181.966517 +1181.981569 +1182.026257 +1182.044406 +1182.077273 +1182.092724 +1182.140876 +1182.154229 +1182.156793 +1182.186830 +1182.204978 +1182.238478 +1182.251065 +1182.254462 +1182.267782 +1182.299217 +1182.318032 +1182.338744 +1182.366383 +1182.399550 +1182.416367 +1182.432417 +1182.447968 +1182.466350 +1182.483733 +1182.487329 +1182.500216 +1182.517732 +1182.549467 +1182.551998 +1182.584032 +1182.601648 +1182.616899 +1182.635447 +1182.638544 +1182.669347 +1182.703146 +1182.739377 +1182.773343 +1182.788661 +1182.804944 +1182.818231 +1182.835780 +1182.838477 +1182.854095 +1182.872976 +1182.876106 +1182.890059 +1182.907808 +1182.924125 +1182.926989 +1182.942207 +1182.945803 +1182.957691 +1182.960322 +1182.974575 +1182.977272 +1182.990325 +1183.005877 +1183.008174 +1183.024092 +1183.026856 +1184.232615 +1191.161479 +1191.888585 +1192.012994 +1192.186387 +1192.192048 +1193.036436 +1193.263109 +1194.031074 +1194.032672 +1194.041830 +1194.797440 +1195.023847 +1195.030107 +1195.044026 +1196.030472 +1197.030271 +1198.030004 +1203.030832 +1203.038790 +1203.131431 +1203.133162 +1203.143785 +1203.231864 +1203.233562 +1203.238790 +1203.332230 +1203.334028 +1203.338490 +1203.432363 +1203.434095 +1203.531297 +1203.533195 +1203.630798 +1203.731097 +1203.831930 +1203.834327 +1203.932662 +1203.934793 +1204.032762 +1204.035126 +1204.133128 +1204.135726 +1204.233095 +1204.235059 +1204.333228 +1204.334893 +1204.343418 +1204.433594 +1204.443318 +1204.533461 +1204.535259 +1204.633627 +1204.635658 +1204.733560 +1204.735958 +1204.833694 +1204.835825 +1204.932961 +1204.934792 +1204.948579 +1205.031529 +1205.131063 +1205.232628 +1205.333194 +1205.336424 +1205.433160 +1205.435891 +1205.533493 +1205.535291 +1205.633260 +1205.635258 +1205.833260 +1205.841618 +1205.933326 +1205.935790 +1206.032960 +1206.131461 +1206.231428 +1206.331761 +1206.532227 +1206.534424 +1206.631794 +1206.732593 +1206.734557 +1206.833125 +1206.845313 +1206.933192 +1206.935456 +1207.033625 +1207.035756 +1207.133658 +1207.135956 +1207.233192 +1207.235123 +1207.332159 +1207.432192 +1207.435056 +1207.531726 +1207.631659 +1207.732758 +1207.735988 +1207.832891 +1207.834856 +1207.932825 +1207.938685 +1208.033257 +1208.035522 +1209.841114 +1210.163592 +1210.171650 +1210.291297 +1211.912141 +1212.006314 +1212.084169 +1212.177875 +1212.183303 +1212.199487 +1212.207945 +1212.315671 +1212.365554 +1212.420000 +1212.581405 +1212.698987 +1213.029856 +1213.031687 +1213.038081 +1213.040046 +1213.045773 +1213.048071 +1213.056229 +1213.064521 +1213.066053 +1213.076243 +1213.078307 +1213.087598 +1213.098287 +1213.100119 +1213.110775 +1213.113006 +1213.124028 +1213.125926 +1213.138680 +1213.153299 +1213.167585 +1213.182570 +1213.193792 +1213.207212 +1213.220798 +1213.222929 +1213.237148 +1213.249836 +1213.261890 +1213.273812 +1213.276409 +1213.285833 +1213.296456 +1213.306046 +1213.319133 +1213.331554 +1213.346472 +1213.362656 +1213.378540 +1213.391028 +1213.405280 +1213.407478 +1213.435350 +1213.437748 +1213.451634 +1213.465486 +1213.481537 +1213.497188 +1213.511307 +1213.513505 +1213.527891 +1213.556795 +1213.570914 +1213.573412 +1213.587598 +1213.604780 +1213.618567 +1213.647338 +1213.662456 +1213.665120 +1213.693325 +1213.707877 +1213.722829 +1213.738680 +1213.741011 +1213.756462 +1213.769782 +1213.772612 +1213.785999 +1213.800951 +1213.817301 +1213.831420 +1213.849502 +1213.863821 +1213.877108 +1213.891826 +1213.894923 +1213.907910 +1213.922096 +1213.924294 +1213.938979 +1213.953864 +1213.956495 +1213.970614 +1213.985766 +1214.000284 +1214.014803 +1214.028290 +1214.044007 +1214.059126 +1214.075875 +1214.078340 +1214.092992 +1214.124460 +1214.128290 +1214.141077 +1214.156695 +1214.159458 +1214.173678 +1214.189329 +1214.204746 +1214.220930 +1214.234750 +1214.237347 +1214.250800 +1214.268016 +1214.282002 +1214.285799 +1214.298319 +1214.311773 +1214.314836 +1214.326991 +1214.343241 +1214.357993 +1214.373344 +1214.387197 +1214.389595 +1214.404280 +1214.437081 +1214.451832 +1214.456994 +1214.472945 +1214.488129 +1214.504113 +1214.506811 +1214.520897 +1214.532718 +1214.545039 +1214.547770 +1214.560390 +1214.576108 +1214.590061 +1214.592558 +1214.606111 +1214.622328 +1214.624626 +1214.639878 +1214.652998 +1214.665385 +1214.679271 +1214.713171 +1214.729621 +1214.745738 +1214.760290 +1214.776840 +1214.792858 +1214.825458 +1214.828888 +1214.841209 +1214.856194 +1214.860890 +1214.870280 +1214.883634 +1214.897719 +1214.900317 +1214.915502 +1214.931253 +1214.947170 +1214.961622 +1214.978439 +1214.994756 +1214.997753 +1215.011605 +1215.014103 +1215.028755 +1215.046404 +1215.060523 +1215.075908 +1215.078372 +1215.095455 +1215.110740 +1215.125991 +1215.129021 +1215.144173 +1215.161023 +1215.163786 +1215.176307 +1215.189361 +1215.206877 +1215.219198 +1215.265851 +1215.282667 +1215.300816 +1215.313603 +1215.329920 +1215.346570 +1215.361855 +1215.364719 +1215.381768 +1215.397253 +1215.399750 +1215.413270 +1215.417233 +1215.428521 +1215.441142 +1215.458192 +1215.473377 +1215.486796 +1215.503280 +1215.520629 +1215.536047 +1215.551898 +1215.584499 +1215.586896 +1215.603180 +1215.622128 +1215.637079 +1215.640742 +1215.655661 +1215.672610 +1215.688861 +1215.705378 +1215.723426 +1215.735448 +1215.750133 +1215.764419 +1215.776407 +1215.778771 +1215.794322 +1215.810406 +1215.825158 +1215.842374 +1215.855760 +1215.873276 +1215.890459 +1215.907575 +1215.923359 +1215.927422 +1215.940709 +1215.973975 +1215.991491 +1216.007209 +1216.022793 +1216.039010 +1216.042174 +1216.055227 +1216.071078 +1216.104112 +1216.107309 +1216.121561 +1216.154395 +1216.168714 +1216.184298 +1216.189526 +1216.200182 +1216.215201 +1216.218664 +1216.231551 +1216.234282 +1216.248401 +1216.267382 +1216.281901 +1216.284431 +1216.308474 +1216.311338 +1216.344571 +1216.360355 +1216.364052 +1216.377172 +1216.380469 +1216.392856 +1216.408607 +1216.412004 +1216.427422 +1216.443938 +1216.446769 +1216.463752 +1216.479936 +1216.505976 +1216.520262 +1216.523925 +1216.536379 +1216.553462 +1216.570145 +1216.584431 +1216.606009 +1216.632516 +1216.646169 +1216.662053 +1216.665050 +1216.677771 +1216.680835 +1216.694155 +1216.710072 +1216.727887 +1216.745070 +1216.760455 +1216.792489 +1216.805310 +1216.815799 +1216.832782 +1216.849133 +1216.881667 +1216.897318 +1216.900348 +1216.917364 +1216.932816 +1216.947468 +1216.950165 +1216.966049 +1216.983332 +1216.998949 +1217.011504 +1217.013934 +1217.029552 +1217.045203 +1217.047900 +1217.066049 +1217.081001 +1217.096885 +1217.110604 +1217.122326 +1217.139709 +1217.155027 +1217.158556 +1217.173075 +1217.204910 +1217.220494 +1217.223691 +1217.235613 +1217.250564 +1217.264750 +1217.267514 +1217.284464 +1217.296285 +1217.313401 +1217.317431 +1217.330784 +1217.347068 +1217.366082 +1217.381134 +1217.397018 +1217.413568 +1217.433082 +1217.436478 +1217.477004 +1217.486128 +1217.501313 +1217.515466 +1217.518463 +1217.532549 +1217.577037 +1217.590424 +1217.604876 +1217.622892 +1217.625389 +1217.641073 +1217.651796 +1217.667480 +1217.717330 +1217.728686 +1217.744936 +1217.758189 +1217.761320 +1217.775006 +1217.791156 +1217.804576 +1217.808506 +1217.818596 +1217.830650 +1217.843970 +1217.861519 +1217.863884 +1217.880267 +1217.895585 +1217.898582 +1217.912635 +1217.914833 +1217.928119 +1217.943071 +1217.960320 +1217.962685 +1217.978203 +1217.990524 +1217.993820 +1218.004776 +1218.007174 +1218.021259 +1218.024456 +1224.978728 +1225.266574 +1226.312027 +1226.395843 +1226.408564 +1226.438534 +1226.451621 +1226.468970 +1226.593678 +1226.715823 +1227.456315 +1227.467071 +1227.473464 +1227.572932 +1227.680291 +1228.031040 +1228.036934 +1228.053750 +1228.234236 +1228.681289 +1228.693144 +1229.030739 +1229.040363 +1230.030571 +1230.042992 +1231.030770 +1231.032469 +1232.027639 +1232.030836 +1236.161568 +1236.566662 +1236.653409 +1237.274554 +1237.527867 +1237.573787 +1237.662332 +1238.039122 +1238.044216 +1238.131696 +1238.133460 +1238.138855 +1238.141952 +1238.232328 +1238.233893 +1238.240320 +1238.332694 +1238.334925 +1238.341219 +1238.345015 +1238.433094 +1238.434992 +1238.441219 +1238.533327 +1238.535192 +1238.540919 +1238.633194 +1238.639321 +1238.733027 +1238.736057 +1238.741685 +1238.832194 +1238.839087 +1238.933693 +1238.942351 +1239.033892 +1239.036024 +1239.042883 +1239.133926 +1239.140452 +1239.233759 +1239.235990 +1239.243416 +1239.244115 +1239.333626 +1239.339353 +1239.343183 +1239.433592 +1239.435557 +1239.443649 +1239.534225 +1239.541518 +1239.634025 +1239.734058 +1239.739486 +1239.834191 +1239.836256 +1239.933758 +1239.936023 +1240.033525 +1240.035490 +1240.043715 +1240.134224 +1240.141051 +1240.234224 +1240.247245 +1240.334357 +1240.341916 +1240.433858 +1240.532293 +1240.544514 +1240.631993 +1240.641117 +1240.733158 +1240.735189 +1240.742515 +1240.834357 +1240.837121 +1240.842748 +1240.934157 +1240.936022 +1240.944313 +1241.034024 +1241.043048 +1241.134623 +1241.234157 +1241.242448 +1241.333857 +1241.340184 +1241.432791 +1241.434756 +1241.443281 +1241.533224 +1241.535555 +1241.634589 +1241.642215 +1241.733124 +1241.745212 +1241.832957 +1241.932225 +1241.940117 +1242.033756 +1242.132457 +1242.233090 +1242.241948 +1242.333556 +1242.335654 +1242.433956 +1242.436586 +1242.443446 +1242.534189 +1242.536753 +1242.543779 +1242.633889 +1242.641215 +1242.734355 +1242.736420 +1242.833955 +1242.836220 +1242.933988 +1242.936686 +1243.034355 +1243.041248 +1243.044977 +1246.750335 +1247.423195 +1247.581470 +1248.030553 +1248.037713 +1248.045072 +1248.053098 +1248.062422 +1248.064186 +1248.073510 +1248.084899 +1248.096188 +1248.107576 +1248.109874 +1248.120197 +1248.132884 +1248.146870 +1248.149401 +1248.160690 +1248.173244 +1248.187197 +1248.200583 +1248.203081 +1248.215668 +1248.230620 +1248.245072 +1248.258792 +1248.271412 +1248.284399 +1248.287163 +1248.301516 +1248.315435 +1248.331186 +1248.345771 +1248.359291 +1248.362554 +1248.374476 +1248.403913 +1248.420696 +1248.433150 +1248.435648 +1248.450666 +1248.463120 +1248.474542 +1248.500716 +1248.517033 +1248.533017 +1248.562987 +1248.578538 +1248.593423 +1248.609008 +1248.624226 +1248.638745 +1248.655195 +1248.670813 +1248.683467 +1248.686797 +1248.699584 +1248.717233 +1248.731086 +1248.747169 +1248.760556 +1248.763686 +1248.776940 +1248.806976 +1248.823560 +1248.837779 +1248.849667 +1248.878405 +1248.908774 +1248.923526 +1248.939011 +1248.951865 +1248.954562 +1248.966916 +1248.981035 +1249.028455 +1249.043373 +1249.058924 +1249.061588 +1249.104279 +1249.119397 +1249.151298 +1249.166383 +1249.180636 +1249.194655 +1249.207475 +1249.222394 +1249.224925 +1249.254928 +1249.269247 +1249.271977 +1249.286330 +1249.290126 +1249.303279 +1249.317332 +1249.354295 +1249.357991 +1249.372810 +1249.389260 +1249.404079 +1249.407009 +1249.420329 +1249.433549 +1249.444538 +1249.459024 +1249.474108 +1249.486030 +1249.534481 +1249.548867 +1249.561088 +1249.563652 +1249.576006 +1249.590492 +1249.593023 +1249.608307 +1249.624158 +1249.640742 +1249.655494 +1249.670012 +1249.682333 +1249.684764 +1249.700682 +1249.714201 +1249.732017 +1249.744871 +1249.757225 +1249.788527 +1249.805077 +1249.816432 +1249.820295 +1249.829852 +1249.832849 +1249.845503 +1249.859389 +1249.876639 +1249.893755 +1249.925257 +1249.927488 +1249.940242 +1249.968147 +1249.976905 +1249.987328 +1249.999383 +1250.012137 +1250.026356 +1250.042573 +1250.055227 +1250.057857 +1250.080701 +1250.095453 +1250.130951 +1250.145037 +1250.156359 +1250.170511 +1250.188160 +1250.203245 +1250.205809 +1250.221727 +1250.234048 +1250.247534 +1250.265050 +1250.298150 +1250.314134 +1250.330018 +1250.345336 +1250.360821 +1250.376072 +1250.388726 +1250.399216 +1250.403045 +1250.415699 +1250.430851 +1250.433049 +1250.447934 +1250.464584 +1250.467814 +1250.481633 +1250.495386 +1250.505842 +1250.516332 +1250.533581 +1250.536445 +1250.552163 +1250.566748 +1250.569412 +1250.581567 +1250.592689 +1250.595752 +1250.608639 +1250.625722 +1250.637211 +1250.639875 +1250.652862 +1250.665449 +1250.681233 +1250.684164 +1250.696918 +1250.699349 +1250.714167 +1250.728386 +1250.730950 +1250.745403 +1250.760887 +1250.779169 +1250.791956 +1250.794320 +1250.807773 +1250.820527 +1250.834147 +1250.847467 +1250.861420 +1250.875406 +1250.889625 +1250.892788 +1250.903844 +1250.916365 +1250.950664 +1250.965782 +1250.975073 +1250.984730 +1250.993854 +1250.996518 +1251.009372 +1251.022392 +1251.036311 +1251.053361 +1251.055825 +1251.070377 +1251.089059 +1251.103744 +1251.121526 +1251.135346 +1251.137776 +1251.151063 +1251.153261 +1251.169345 +1251.192888 +1251.204843 +1251.207440 +1251.223058 +1251.242805 +1251.245069 +1251.260687 +1251.274240 +1251.291722 +1251.294819 +1251.309904 +1251.324423 +1251.341073 +1251.357623 +1251.360420 +1251.373840 +1251.407873 +1251.410537 +1251.423890 +1251.441539 +1251.455791 +1251.458922 +1251.488259 +1251.492055 +1251.506474 +1251.520627 +1251.534646 +1251.538775 +1251.551496 +1251.568678 +1251.594319 +1251.598382 +1251.611802 +1251.614832 +1251.630450 +1251.645801 +1251.648998 +1251.664150 +1251.678735 +1251.710936 +1251.724889 +1251.743037 +1251.745635 +1251.762518 +1251.774905 +1251.811136 +1251.823090 +1251.853893 +1251.856457 +1251.871742 +1251.874672 +1251.886727 +1251.890856 +1251.902378 +1251.920560 +1251.936910 +1251.951062 +1251.953493 +1251.967146 +1251.982631 +1251.997749 +1252.000013 +1252.015032 +1252.031449 +1252.048198 +1252.050563 +1252.067279 +1252.080366 +1252.097349 +1252.100479 +1252.114399 +1252.117329 +1252.132547 +1252.135345 +1252.149730 +1252.180499 +1252.184562 +1252.194485 +1252.197382 +1252.211735 +1252.214465 +1252.228718 +1252.247765 +1252.261518 +1252.264382 +1252.277902 +1252.280999 +1252.294752 +1252.309570 +1252.312134 +1252.327352 +1252.342637 +1252.361585 +1252.391089 +1252.408904 +1252.426586 +1252.430083 +1252.442271 +1252.444735 +1252.461618 +1252.465714 +1252.474905 +1252.477968 +1252.491888 +1252.513799 +1252.525154 +1252.528917 +1252.552927 +1252.568245 +1252.588558 +1252.602777 +1252.633479 +1252.635977 +1252.649963 +1252.661418 +1252.666113 +1252.676336 +1252.689257 +1252.692687 +1252.707106 +1252.724555 +1252.729183 +1252.738641 +1252.741671 +1252.754125 +1252.757022 +1252.770709 +1252.774272 +1252.784761 +1252.799480 +1252.816230 +1252.818960 +1252.836876 +1252.839739 +1252.854991 +1252.857955 +1252.871374 +1252.873506 +1252.890755 +1252.906906 +1252.919393 +1252.922357 +1252.935410 +1252.938108 +1252.952493 +1252.965946 +1252.981831 +1252.985027 +1253.001311 +1253.014431 +1253.030981 +1253.598214 +1253.846498 +1253.855489 +1254.578732 +1257.982525 +1259.149124 +1259.632507 +1260.192846 +1262.259177 +1263.031504 +1264.031736 +1264.297603 +1265.032035 +1265.038129 +1266.032167 +1266.043622 +1267.032899 +1267.035130 +1267.045619 +1268.032065 +1268.254443 +1268.368229 +1268.490440 +1270.260801 +1270.356339 +1273.032060 +1273.039653 +1273.132926 +1273.135024 +1273.142816 +1273.233425 +1273.235224 +1273.241251 +1273.334125 +1273.336256 +1273.342716 +1273.442083 +1273.534557 +1273.540451 +1273.634357 +1273.636122 +1273.734490 +1273.737354 +1273.835056 +1273.837521 +1273.935023 +1273.941017 +1273.944181 +1274.034557 +1274.036788 +1274.043581 +1274.133924 +1274.144913 +1274.234423 +1274.241050 +1274.334124 +1274.341150 +1274.435122 +1274.441683 +1274.534490 +1274.543880 +1274.635322 +1274.638053 +1274.735355 +1274.741982 +1274.835155 +1274.843281 +1274.934689 +1275.034722 +1275.040849 +1275.048309 +1275.134722 +1275.144113 +1275.235155 +1275.247776 +1275.335255 +1275.341648 +1275.435421 +1275.437952 +1275.445611 +1275.535255 +1275.537319 +1275.545111 +1275.635521 +1275.644712 +1275.735254 +1275.740949 +1275.835321 +1275.837319 +1275.935421 +1275.941848 +1276.035554 +1276.045211 +1276.135554 +1276.144878 +1276.235520 +1276.237518 +1276.247308 +1276.335653 +1276.341081 +1276.435587 +1276.441048 +1276.535587 +1276.635753 +1276.644111 +1276.735753 +1276.742812 +1276.835220 +1276.934920 +1276.942313 +1277.034887 +1277.037451 +1277.044577 +1277.135286 +1277.137817 +1277.235353 +1277.242978 +1277.251670 +1277.335286 +1277.337584 +1277.346741 +1277.435286 +1277.437584 +1277.535286 +1277.545342 +1277.635519 +1277.643244 +1277.735519 +1277.742412 +1277.835685 +1277.842012 +1277.935652 +1277.939115 +1278.035518 +1278.037783 +1282.954994 +1283.032150 +1283.033915 +1283.040042 +1283.041807 +1283.047934 +1283.049633 +1283.058124 +1283.066749 +1283.068714 +1283.077005 +1283.078803 +1283.087861 +1283.089526 +1283.100149 +1283.102446 +1283.112503 +1283.114401 +1283.125923 +1283.138410 +1283.149466 +1283.151264 +1283.165816 +1283.177405 +1283.189260 +1283.204078 +1283.218763 +1283.233415 +1283.246735 +1283.280901 +1283.296419 +1283.311704 +1283.326322 +1283.352296 +1283.365317 +1283.380635 +1283.419995 +1283.433615 +1283.446535 +1283.448633 +1283.463352 +1283.478537 +1283.492956 +1283.507608 +1283.510338 +1283.525423 +1283.537511 +1283.548000 +1283.560954 +1283.578204 +1283.593855 +1283.596785 +1283.609239 +1283.623025 +1283.642972 +1283.660621 +1283.677271 +1283.722592 +1283.735713 +1283.767248 +1283.783565 +1283.799782 +1283.815732 +1283.818130 +1283.855826 +1283.871177 +1283.886195 +1283.899815 +1283.903411 +1283.915599 +1283.930384 +1283.944903 +1283.975905 +1283.987161 +1283.998849 +1284.013035 +1284.029985 +1284.046102 +1284.070144 +1284.083331 +1284.096185 +1284.128519 +1284.162019 +1284.172742 +1284.181600 +1284.197117 +1284.199315 +1284.249199 +1284.268812 +1284.298682 +1284.321826 +1284.335945 +1284.351030 +1284.381599 +1284.401213 +1284.404643 +1284.415599 +1284.428819 +1284.459888 +1284.474406 +1284.507340 +1284.550064 +1284.567813 +1284.582798 +1284.596717 +1284.627986 +1284.640740 +1284.652828 +1284.665349 +1284.682565 +1284.700880 +1284.714033 +1284.729085 +1284.745269 +1284.758855 +1284.774073 +1284.789957 +1284.818662 +1284.821093 +1284.835778 +1284.869411 +1284.900480 +1284.903910 +1284.931116 +1284.948265 +1284.989091 +1285.004209 +1285.006540 +1285.021492 +1285.056291 +1285.071742 +1285.088425 +1285.104442 +1285.118961 +1285.121492 +1285.136810 +1285.163217 +1285.179367 +1285.197250 +1285.241305 +1285.256324 +1285.271708 +1285.288924 +1285.304209 +1285.319893 +1285.337909 +1285.354659 +1285.388891 +1285.419827 +1285.434212 +1285.450196 +1285.454492 +1285.466946 +1285.484595 +1285.498881 +1285.542537 +1285.559187 +1285.575804 +1285.592421 +1285.606473 +1285.623989 +1285.640539 +1285.644102 +1285.675271 +1285.688724 +1285.705075 +1285.721392 +1285.729683 +1285.746833 +1285.749663 +1285.764016 +1285.792787 +1285.797316 +1285.808904 +1285.855291 +1285.869210 +1285.886826 +1285.902610 +1285.917662 +1285.950296 +1285.967978 +1286.001611 +1286.016529 +1286.031581 +1286.049796 +1286.062983 +1286.093752 +1286.109903 +1286.124455 +1286.142437 +1286.159420 +1286.161984 +1286.174738 +1286.190555 +1286.208670 +1286.225287 +1286.256323 +1286.276403 +1286.309003 +1286.325454 +1286.340472 +1286.353792 +1286.371874 +1286.386526 +1286.434877 +1286.456556 +1286.486992 +1286.517428 +1286.520325 +1286.549796 +1286.562516 +1286.593352 +1286.612067 +1286.615696 +1286.627451 +1286.644801 +1286.678900 +1286.694817 +1286.727385 +1286.746699 +1286.759985 +1286.777701 +1286.789056 +1286.807638 +1286.823355 +1286.841803 +1286.858187 +1286.861584 +1286.875370 +1286.891587 +1286.907671 +1286.925353 +1286.936542 +1286.955423 +1286.969043 +1286.986026 +1287.005573 +1287.019892 +1287.037108 +1287.065047 +1287.083095 +1287.096981 +1287.113465 +1287.145932 +1287.208836 +1287.225419 +1287.240304 +1287.256788 +1287.270874 +1287.287191 +1287.337940 +1287.367477 +1287.401210 +1287.436142 +1287.466212 +1287.484760 +1287.499545 +1287.502309 +1287.515296 +1287.550228 +1287.564746 +1287.584194 +1287.600178 +1287.602742 +1287.616694 +1287.632778 +1287.634943 +1287.650394 +1287.666112 +1287.669508 +1287.682728 +1287.698746 +1287.715729 +1287.733977 +1287.747896 +1287.759718 +1287.777100 +1287.779265 +1287.797513 +1287.809934 +1287.813697 +1287.825286 +1287.827383 +1287.844566 +1287.858852 +1287.861882 +1287.876401 +1287.892352 +1287.894683 +1287.911466 +1287.928782 +1287.933311 +1287.945365 +1287.959518 +1287.961816 +1287.975835 +1287.990620 +1287.992785 +1288.009601 +1288.023554 +1288.026717 +1296.433735 +1298.038162 +1298.044256 +1299.032634 +1299.367232 +1299.392740 +1299.802763 +1300.029136 +1300.032633 +1300.034930 +1300.407191 +1300.627804 +1301.031832 +1301.034163 +1301.836627 +1302.032164 +1302.033963 +1302.180250 +1303.032363 +1303.626369 +1304.252608 +1304.641453 +1304.656038 +1305.214446 +1305.246181 +1305.481578 +1305.502724 +1305.798394 +1306.375617 +1306.628963 +1307.470054 +1307.639152 +1307.663761 +1308.031592 +1308.033391 +1308.132891 +1308.134822 +1308.234756 +1308.246311 +1308.333523 +1308.335022 +1308.339251 +1308.435388 +1308.533956 +1308.535455 +1308.547043 +1308.634089 +1308.635788 +1308.734322 +1308.735954 +1308.834322 +1308.836154 +1308.934289 +1308.936154 +1309.034455 +1309.035987 +1309.134622 +1309.136386 +1309.234621 +1309.236353 +1309.334655 +1309.336320 +1309.434655 +1309.436553 +1309.534621 +1309.536286 +1309.636286 +1309.734688 +1309.736186 +1309.744444 +1309.834687 +1309.836552 +1309.934554 +1309.936219 +1310.034687 +1310.134654 +1310.136152 +1310.234620 +1310.236519 +1310.334654 +1310.336319 +1310.434720 +1310.436485 +1310.534687 +1310.536318 +1310.634787 +1310.734753 +1310.736651 +1310.834753 +1310.836418 +1310.934586 +1310.936251 +1311.034620 +1311.036285 +1311.134586 +1311.136318 +1311.146674 +1311.234919 +1311.237017 +1311.334719 +1311.336418 +1311.434752 +1311.436484 +1311.534886 +1311.536817 +1311.634852 +1311.636517 +1311.734719 +1311.736317 +1311.834752 +1311.836484 +1311.934852 +1311.936650 +1312.034685 +1312.036350 +1312.133320 +1312.135451 +1312.234219 +1312.236217 +1312.334685 +1312.336383 +1312.434885 +1312.436849 +1312.534718 +1312.536316 +1312.634785 +1312.636649 +1312.734585 +1312.736283 +1312.834618 +1312.836250 +1312.934684 +1312.936283 +1313.034618 +1313.036549 +1313.645839 +1314.165419 +1314.710041 +1315.085398 +1315.413436 +1315.680669 +1315.748434 +1316.261587 +1316.728354 +1316.773642 +1316.894820 +1317.181433 +1317.344537 +1317.558090 +1317.693854 +1318.031582 +1318.033480 +1318.039941 +1318.041872 +1318.048699 +1318.057723 +1318.060553 +1318.067580 +1318.076271 +1318.084529 +1318.086494 +1318.096750 +1318.098415 +1318.110770 +1318.123091 +1318.125122 +1318.136611 +1318.148998 +1318.151263 +1318.162784 +1318.205808 +1318.219794 +1318.234180 +1318.249864 +1318.262684 +1318.299115 +1318.311369 +1318.326154 +1318.337343 +1318.352128 +1318.367080 +1318.381166 +1318.383663 +1318.400113 +1318.410403 +1318.419860 +1318.433846 +1318.436377 +1318.448432 +1318.462884 +1318.478368 +1318.492987 +1318.508871 +1318.512501 +1318.523490 +1318.537842 +1318.552594 +1318.566314 +1318.582098 +1318.584928 +1318.598082 +1318.613400 +1318.628185 +1318.641538 +1318.656091 +1318.699813 +1318.728685 +1318.731881 +1318.743736 +1318.753360 +1318.767079 +1318.799047 +1318.813566 +1318.831482 +1318.845101 +1318.861485 +1318.874472 +1318.892287 +1318.921458 +1318.952161 +1318.967679 +1318.996383 +1319.011268 +1319.025454 +1319.029150 +1319.038974 +1319.056923 +1319.071808 +1319.074339 +1319.087659 +1319.091255 +1319.114365 +1319.118028 +1319.130915 +1319.133579 +1319.168911 +1319.171508 +1319.199080 +1319.214798 +1319.232347 +1319.245867 +1319.261718 +1319.265381 +1319.276569 +1319.289124 +1319.305207 +1319.325088 +1319.337941 +1319.353659 +1319.355890 +1319.369410 +1319.399946 +1319.416496 +1319.436942 +1319.452627 +1319.469610 +1319.482830 +1319.500412 +1319.516729 +1319.532480 +1319.535710 +1319.550029 +1319.564481 +1319.577535 +1319.603575 +1319.618527 +1319.635344 +1319.649829 +1319.652626 +1319.665380 +1319.696682 +1319.711701 +1319.713998 +1319.727585 +1319.741704 +1319.757988 +1319.773738 +1319.788390 +1319.799513 +1319.816596 +1319.833945 +1319.851294 +1319.868277 +1319.884161 +1319.887791 +1319.898280 +1319.910535 +1319.934777 +1319.943768 +1319.946599 +1319.962749 +1319.976935 +1319.978966 +1319.994684 +1320.007471 +1320.012333 +1320.021058 +1320.036542 +1320.070075 +1320.073205 +1320.088523 +1320.102043 +1320.118127 +1320.134577 +1320.149795 +1320.165679 +1320.182729 +1320.198247 +1320.201610 +1320.213532 +1320.246399 +1320.261583 +1320.282796 +1320.293485 +1320.314098 +1320.341936 +1320.369609 +1320.374137 +1320.383595 +1320.386625 +1320.398913 +1320.417461 +1320.433911 +1320.437208 +1320.459252 +1320.490354 +1320.500378 +1320.517261 +1320.533844 +1320.550028 +1320.561650 +1320.579598 +1320.594217 +1320.611134 +1320.627950 +1320.631813 +1320.669242 +1320.685126 +1320.703408 +1320.718093 +1320.720824 +1320.733578 +1320.765646 +1320.783228 +1320.799145 +1320.812465 +1320.826718 +1320.843001 +1320.845566 +1320.857520 +1320.873538 +1320.891719 +1320.909735 +1320.926118 +1320.941703 +1320.975302 +1320.993284 +1321.007603 +1321.010167 +1321.024320 +1321.046598 +1321.049628 +1321.061749 +1321.077866 +1321.105672 +1321.123421 +1321.140104 +1321.157387 +1321.172139 +1321.187656 +1321.201609 +1321.204040 +1321.216128 +1321.231646 +1321.244400 +1321.276268 +1321.293184 +1321.300177 +1321.309634 +1321.319491 +1321.335109 +1321.337773 +1321.368109 +1321.382861 +1321.395582 +1321.397746 +1321.414563 +1321.430147 +1321.442868 +1321.458519 +1321.471739 +1321.488788 +1321.508102 +1321.521988 +1321.573304 +1321.592085 +1321.609168 +1321.625285 +1321.643800 +1321.649194 +1321.658052 +1321.674136 +1321.712398 +1321.729048 +1321.744666 +1321.778332 +1321.816394 +1321.829114 +1321.831412 +1321.846330 +1321.863280 +1321.880030 +1321.895748 +1321.912165 +1321.931512 +1321.950160 +1321.962747 +1321.973137 +1322.007835 +1322.023486 +1322.035807 +1322.053257 +1322.070972 +1322.100043 +1322.117626 +1322.132611 +1322.166843 +1322.211598 +1322.226350 +1322.239803 +1322.256154 +1322.273503 +1322.303539 +1322.337938 +1322.351791 +1322.367009 +1322.381095 +1322.396646 +1322.411864 +1322.426483 +1322.442634 +1322.458951 +1322.469740 +1322.484758 +1322.499510 +1322.510832 +1322.516560 +1322.524885 +1322.526949 +1322.542367 +1322.544498 +1322.557785 +1322.561315 +1322.572437 +1322.590386 +1322.593416 +1322.604805 +1322.607768 +1322.620722 +1322.631012 +1322.636040 +1322.646430 +1322.649593 +1322.660982 +1322.662980 +1322.668108 +1322.678398 +1322.680529 +1322.696213 +1322.699976 +1322.711365 +1322.713829 +1322.724751 +1322.727315 +1322.738804 +1322.740768 +1322.757751 +1322.772204 +1322.774368 +1322.791651 +1322.794282 +1322.808967 +1322.812430 +1322.823253 +1322.841301 +1322.856786 +1322.858884 +1322.875267 +1322.877665 +1322.892583 +1322.895247 +1322.909500 +1322.912363 +1322.924085 +1322.926183 +1322.940435 +1322.943166 +1322.957418 +1322.959649 +1322.974634 +1322.977099 +1322.992450 +1322.995547 +1323.006103 +1323.011131 +1323.015993 +1323.021854 +1323.030778 +1329.600136 +1330.467734 +1330.756445 +1330.778056 +1331.224410 +1331.604429 +1331.730270 +1331.903929 +1331.936064 +1332.011988 +1332.039427 +1332.325574 +1332.357509 +1332.618514 +1332.864701 +1333.033699 +1333.183449 +1334.008023 +1334.033897 +1334.187910 +1334.575722 +1334.814183 +1335.031898 +1335.033530 +1335.516946 +1336.032031 +1336.033962 +1336.183079 +1336.785476 +1337.032163 +1337.033961 +1337.195732 +1337.717110 +1338.031995 +1338.033560 +1338.179015 +1338.911215 +1339.234059 +1339.413912 +1339.640718 +1340.103921 +1340.131360 +1340.529395 +1341.345046 +1341.497893 +1341.537853 +1341.926896 +1342.281275 +1342.751404 +1342.849506 +1343.031391 +1343.032923 +1343.132623 +1343.134155 +1343.233122 +1343.234721 +1343.244344 +1343.333455 +1343.335420 +1343.433055 +1343.434454 +1343.438983 +1343.443079 +1343.533455 +1343.535087 +1343.634054 +1343.635819 +1343.734221 +1343.735986 +1343.833521 +1343.835053 +1343.933288 +1343.934853 +1344.034387 +1344.036418 +1344.134420 +1344.136118 +1344.234586 +1344.236851 +1344.334553 +1344.336518 +1344.436151 +1344.532122 +1344.534253 +1344.631822 +1344.634120 +1344.733554 +1344.735219 +1344.834519 +1344.836251 +1344.934752 +1344.936550 +1345.034619 +1345.036384 +1345.135984 +1345.234053 +1345.235684 +1345.334086 +1345.335618 +1345.434619 +1345.436317 +1345.534419 +1345.536250 +1345.634119 +1345.635950 +1345.734418 +1345.735884 +1345.834585 +1345.836550 +1345.934551 +1345.936483 +1346.034518 +1346.036017 +1346.134551 +1346.136349 +1346.234485 +1346.236349 +1346.332986 +1346.434684 +1346.436682 +1346.534651 +1346.536449 +1346.634617 +1346.636649 +1346.734484 +1346.736049 +1346.834551 +1346.836282 +1346.934850 +1346.936548 +1347.034817 +1347.036482 +1347.134683 +1347.136348 +1347.234883 +1347.236648 +1347.334950 +1347.337214 +1347.434583 +1347.454097 +1347.534583 +1347.536281 +1347.634716 +1347.636415 +1347.734383 +1347.735948 +1347.745439 +1347.832885 +1347.834483 +1347.934783 +1347.936714 +1348.034649 +1348.036447 +1350.304411 +1350.325290 +1351.806041 +1352.551195 +1352.616996 +1353.032014 +1353.033878 +1353.048031 +1353.049596 +1353.079633 +1353.081830 +1353.091954 +1353.101810 +1353.110335 +1353.120458 +1353.134544 +1353.150262 +1353.162716 +1353.187858 +1353.206639 +1353.209436 +1353.220159 +1353.243402 +1353.257255 +1353.272939 +1353.288457 +1353.315763 +1353.331014 +1353.345466 +1353.361783 +1353.376136 +1353.392020 +1353.406872 +1353.419226 +1353.431780 +1353.457021 +1353.485726 +1353.506505 +1353.548197 +1353.562949 +1353.578467 +1353.592353 +1353.634510 +1353.652726 +1353.667211 +1353.683461 +1353.691953 +1353.724087 +1353.749096 +1353.779565 +1353.793018 +1353.843868 +1353.879265 +1353.893551 +1353.912832 +1353.948663 +1353.962915 +1353.979498 +1354.031014 +1354.048130 +1354.102942 +1354.120724 +1354.137374 +1354.141303 +1354.154257 +1354.171606 +1354.214430 +1354.229581 +1354.247330 +1354.279798 +1354.294283 +1354.309901 +1354.353324 +1354.368809 +1354.388855 +1354.400810 +1354.451859 +1354.466777 +1354.488689 +1354.492651 +1354.522688 +1354.537873 +1354.589688 +1354.605772 +1354.637806 +1354.674203 +1354.706204 +1354.722322 +1354.734543 +1354.799011 +1354.802974 +1354.816561 +1354.864479 +1354.879098 +1354.896880 +1354.911432 +1354.932544 +1354.945332 +1354.960017 +1354.976101 +1354.989021 +1355.006337 +1355.042568 +1355.086590 +1355.100210 +1355.116660 +1355.133477 +1355.150426 +1355.198145 +1355.213663 +1355.230413 +1355.251592 +1355.262614 +1355.280663 +1355.297646 +1355.313230 +1355.332611 +1355.347729 +1355.362281 +1355.416660 +1355.436473 +1355.454256 +1355.489853 +1355.492218 +1355.508202 +1355.525817 +1355.528614 +1355.543799 +1355.547562 +1355.559850 +1355.575734 +1355.625684 +1355.628714 +1355.643300 +1355.660649 +1355.675767 +1355.678131 +1355.693516 +1355.696813 +1355.727515 +1355.760149 +1355.762880 +1355.817892 +1355.852723 +1355.863846 +1355.882294 +1355.897678 +1355.931611 +1355.946363 +1355.962047 +1355.978997 +1355.996479 +1356.059283 +1356.076200 +1356.078564 +1356.096113 +1356.109366 +1356.111398 +1356.127015 +1356.145996 +1356.158717 +1356.200142 +1356.209300 +1356.225484 +1356.241967 +1356.256852 +1356.272370 +1356.291551 +1356.314961 +1356.334807 +1356.351591 +1356.386456 +1356.423019 +1356.458950 +1356.461680 +1356.490552 +1356.500308 +1356.518390 +1356.534774 +1356.564145 +1356.581261 +1356.598710 +1356.614927 +1356.617425 +1356.634674 +1356.709199 +1356.711830 +1356.727714 +1356.743898 +1356.830378 +1356.833275 +1356.845763 +1356.863711 +1356.897944 +1356.930711 +1356.945962 +1356.963711 +1356.981527 +1356.998177 +1357.001107 +1357.014727 +1357.017158 +1357.032243 +1357.065709 +1357.078396 +1357.102372 +1357.120155 +1357.136438 +1357.155053 +1357.173135 +1357.203405 +1357.303138 +1357.321720 +1357.340667 +1357.358383 +1357.413028 +1357.430644 +1357.433641 +1357.445829 +1357.448093 +1357.463245 +1357.466108 +1357.482592 +1357.485289 +1357.501306 +1357.504936 +1357.516591 +1357.519189 +1357.535472 +1357.538536 +1357.553288 +1357.567307 +1357.569838 +1357.585056 +1357.588985 +1357.600707 +1357.602871 +1357.618689 +1357.632375 +1357.635206 +1357.648492 +1357.650857 +1357.667041 +1357.669305 +1357.684856 +1357.687021 +1357.701106 +1357.703104 +1357.717024 +1357.719788 +1357.732242 +1357.734673 +1357.747427 +1357.750257 +1357.764976 +1357.782958 +1357.785022 +1357.799175 +1357.801672 +1357.818456 +1357.820953 +1357.836071 +1357.839168 +1357.853720 +1357.858649 +1357.870537 +1357.873201 +1357.888619 +1357.891782 +1357.906268 +1357.918089 +1357.922119 +1357.932775 +1357.936537 +1357.946128 +1357.948858 +1357.958349 +1357.971336 +1357.976231 +1357.988985 +1357.991249 +1358.008099 +1358.010630 +1358.024782 +1358.027480 +1363.480754 +1365.966932 +1365.971594 +1365.973126 +1366.301198 +1366.310755 +1366.384381 +1366.528837 +1366.968863 +1366.972526 +1366.974091 +1367.967230 +1367.972392 +1367.973957 +1368.133264 +1368.272025 +1368.967362 +1368.968827 +1368.972291 +1368.973956 +1369.967528 +1369.972323 +1369.973888 +1370.974420 +1372.458001 +1372.498794 +1373.352506 +1373.462163 +1373.553039 +1373.736655 +1374.065126 +1374.150474 +1374.338652 +1374.802888 +1374.838685 +1374.852838 +1375.085072 +1375.967122 +1375.968854 +1375.974348 +1376.067555 +1376.068854 +1376.074515 +1376.168054 +1376.169386 +1376.172816 +1376.175280 +1376.268454 +1376.269819 +1376.273282 +1376.275147 +1376.368620 +1376.370085 +1376.373082 +1376.375447 +1376.468787 +1376.470185 +1376.473149 +1376.568787 +1376.570285 +1376.573548 +1376.668687 +1376.670085 +1376.673282 +1376.677877 +1376.768886 +1376.770351 +1376.773582 +1376.869019 +1376.870518 +1376.873482 +1376.969053 +1376.970518 +1376.975013 +1377.069086 +1377.070651 +1377.169186 +1377.170651 +1377.173881 +1377.269185 +1377.270584 +1377.368819 +1377.370251 +1377.373315 +1377.469019 +1377.470484 +1377.473647 +1377.570717 +1377.669252 +1377.670684 +1377.674113 +1377.769218 +1377.770750 +1377.773980 +1377.870550 +1377.873247 +1377.969118 +1378.069285 +1378.070583 +1378.074280 +1378.169318 +1378.170550 +1378.174113 +1378.269351 +1378.270750 +1378.273680 +1378.370716 +1378.374146 +1378.473846 +1378.570583 +1378.669317 +1378.670849 +1378.673446 +1378.769350 +1378.770682 +1378.873147 +1378.969317 +1378.970815 +1378.974312 +1379.069383 +1379.070782 +1379.073313 +1379.169417 +1379.170749 +1379.269383 +1379.270848 +1379.369317 +1379.370748 +1379.373812 +1379.469383 +1379.470748 +1379.473279 +1379.569383 +1379.570748 +1379.573412 +1379.669416 +1379.670815 +1379.673512 +1379.769449 +1379.770848 +1379.774111 +1379.870715 +1379.873079 +1379.969449 +1379.973978 +1380.069316 +1380.070648 +1380.169416 +1380.170814 +1380.173978 +1380.269482 +1380.370714 +1380.373312 +1380.469315 +1380.470747 +1380.474710 +1380.569515 +1380.570880 +1380.573511 +1380.669515 +1380.670914 +1380.674577 +1380.769448 +1380.869482 +1380.870847 +1380.969515 +1380.974143 +1385.972540 +1385.988857 +1385.997082 +1386.006439 +1386.015464 +1386.025354 +1386.027152 +1386.048531 +1386.055723 +1386.069343 +1386.077668 +1386.088224 +1386.089956 +1386.099313 +1386.111734 +1386.113832 +1386.123655 +1386.125587 +1386.146133 +1386.148431 +1386.157755 +1386.160086 +1386.180299 +1386.195883 +1386.198148 +1386.207372 +1386.209137 +1386.219759 +1386.232813 +1386.244068 +1386.245800 +1386.257155 +1386.267245 +1386.280898 +1386.282929 +1386.292087 +1386.305640 +1386.314231 +1386.327651 +1386.339872 +1386.350295 +1386.362616 +1386.372073 +1386.381730 +1386.395950 +1386.407738 +1386.420658 +1386.432580 +1386.444368 +1386.455090 +1386.457388 +1386.466579 +1386.476869 +1386.490522 +1386.505273 +1386.516862 +1386.529682 +1386.542370 +1386.554491 +1386.558620 +1386.570641 +1386.581797 +1386.596282 +1386.610168 +1386.612633 +1386.619726 +1386.643801 +1386.646965 +1386.655756 +1386.658021 +1386.669942 +1386.682096 +1386.707937 +1386.711800 +1386.719193 +1386.721390 +1386.731081 +1386.734144 +1386.741770 +1386.753059 +1386.766978 +1386.792852 +1386.805007 +1386.817394 +1386.829416 +1386.832446 +1386.840238 +1386.849296 +1386.872006 +1386.875137 +1386.882529 +1386.884427 +1386.894883 +1386.897181 +1386.906871 +1386.919226 +1386.946865 +1386.959319 +1386.963415 +1386.973105 +1386.985892 +1386.996748 +1387.006472 +1387.016395 +1387.038406 +1387.052359 +1387.055523 +1387.065879 +1387.067977 +1387.078766 +1387.081397 +1387.089722 +1387.108769 +1387.120757 +1387.134377 +1387.144534 +1387.156422 +1387.171140 +1387.182429 +1387.197381 +1387.210967 +1387.228017 +1387.234011 +1387.270341 +1387.272872 +1387.280664 +1387.296715 +1387.308469 +1387.321190 +1387.332279 +1387.344001 +1387.364647 +1387.393118 +1387.404673 +1387.431979 +1387.442835 +1387.457187 +1387.471606 +1387.485159 +1387.509368 +1387.535642 +1387.538040 +1387.561017 +1387.574603 +1387.588822 +1387.591220 +1387.600843 +1387.649362 +1387.654123 +1387.659451 +1387.709401 +1387.719158 +1387.729215 +1387.759684 +1387.770174 +1387.781296 +1387.793950 +1387.829914 +1387.853724 +1387.882628 +1387.910500 +1387.923953 +1387.938605 +1387.972305 +1387.984992 +1387.987756 +1387.991652 +1387.998679 +1388.003474 +1388.014996 +1388.026917 +1388.029414 +1388.034276 +1388.038639 +1388.045898 +1388.050660 +1388.059285 +1388.065578 +1388.078066 +1388.080530 +1388.083327 +1388.093683 +1388.105205 +1388.107969 +1388.111366 +1388.118925 +1388.121356 +1388.125785 +1388.133410 +1388.137440 +1388.142634 +1388.145332 +1388.154756 +1388.157187 +1388.165845 +1388.168042 +1388.172471 +1388.177266 +1388.182095 +1388.186224 +1388.192851 +1388.200277 +1388.207137 +1388.209634 +1388.217193 +1388.221789 +1388.224186 +1388.228249 +1388.235175 +1388.237473 +1388.240603 +1388.246031 +1388.248928 +1388.252092 +1388.257053 +1388.273370 +1388.276267 +1388.285824 +1388.291752 +1388.300843 +1388.306637 +1388.311099 +1388.315861 +1388.323487 +1388.341269 +1388.351359 +1388.392185 +1388.405105 +1388.412764 +1388.418758 +1388.421822 +1388.426217 +1388.433110 +1388.436107 +1388.443733 +1388.446430 +1388.449094 +1388.453390 +1388.457686 +1388.463646 +1388.473703 +1388.483560 +1388.488988 +1388.498478 +1388.500809 +1388.504372 +1388.514995 +1388.518991 +1388.521955 +1388.530113 +1388.542068 +1388.544166 +1388.547196 +1388.555821 +1388.570673 +1388.572870 +1388.576966 +1388.598711 +1388.608768 +1388.611232 +1388.616227 +1388.621455 +1388.626950 +1388.654056 +1388.665178 +1388.668774 +1388.673503 +1388.676367 +1388.688088 +1388.703007 +1388.710666 +1388.713297 +1388.722621 +1388.731545 +1388.743966 +1388.757352 +1388.771005 +1388.773336 +1388.786257 +1388.798245 +1388.800876 +1388.811199 +1388.826783 +1388.853789 +1388.867009 +1388.881795 +1388.884292 +1388.895547 +1388.898611 +1388.918524 +1388.924618 +1388.930679 +1388.956287 +1388.963679 +1388.975434 +1388.978165 +1388.989387 +1388.992184 +1389.022487 +1389.033409 +1389.035840 +1389.048961 +1389.062281 +1389.064978 +1389.067975 +1389.076933 +1389.079430 +1389.081994 +1389.093916 +1389.097345 +1389.106736 +1389.121721 +1389.132310 +1389.151991 +1389.157352 +1389.181361 +1389.195414 +1389.213995 +1389.256486 +1389.259283 +1389.301208 +1389.306170 +1389.314328 +1389.317658 +1389.327848 +1389.330279 +1389.356619 +1389.359383 +1389.369606 +1389.378298 +1389.386756 +1389.389453 +1389.414062 +1389.428447 +1389.443233 +1389.457951 +1389.487122 +1389.490752 +1389.506802 +1389.520222 +1389.531811 +1389.543965 +1389.554721 +1389.569506 +1389.572237 +1389.583659 +1389.588620 +1389.593449 +1389.599909 +1389.603272 +1389.613529 +1389.626915 +1389.632310 +1389.649559 +1389.653922 +1389.664211 +1389.666809 +1389.705670 +1389.719223 +1389.734241 +1389.749160 +1389.763978 +1389.779596 +1389.794747 +1389.798177 +1389.810298 +1389.813995 +1389.824351 +1389.839236 +1389.844298 +1389.854721 +1389.858084 +1389.869572 +1389.883858 +1389.900075 +1389.915560 +1389.930511 +1389.950059 +1389.975733 +1389.992449 +1389.996512 +1390.006402 +1390.021920 +1390.037138 +1390.053222 +1390.068773 +1390.082892 +1390.097411 +1390.112995 +1390.128580 +1390.131777 +1390.145863 +1390.159382 +1390.175866 +1390.180062 +1390.190984 +1390.205236 +1390.209965 +1390.220055 +1390.237105 +1390.251956 +1390.262013 +1390.268140 +1390.275533 +1390.288853 +1390.299709 +1390.304237 +1390.313128 +1390.330345 +1390.352789 +1390.377964 +1390.392715 +1390.397211 +1390.424151 +1390.429312 +1390.437937 +1390.453754 +1390.458483 +1390.468440 +1390.472935 +1390.483092 +1390.488520 +1390.500341 +1390.513428 +1390.529112 +1390.534374 +1390.544630 +1390.559016 +1390.564477 +1390.575233 +1390.600174 +1390.613961 +1390.620421 +1390.632775 +1390.646828 +1390.662346 +1390.667507 +1390.694047 +1390.697144 +1390.711729 +1390.724450 +1390.727780 +1390.756651 +1390.768706 +1390.772269 +1390.787354 +1390.800940 +1390.804836 +1390.820387 +1390.830810 +1390.846927 +1390.851956 +1390.863178 +1390.893314 +1390.917990 +1390.939002 +1390.954420 +1390.965442 +1400.974756 +1400.977021 +1401.969760 +1401.975188 +1402.132198 +1402.968361 +1402.968993 +1402.969693 +1402.972989 +1402.975587 +1403.969825 +1403.975386 +1404.969624 +1404.975551 +1405.974718 +1405.976250 +1408.225232 +1409.842746 +1410.968885 +1410.972682 +1410.976045 +1411.068552 +1411.069818 +1411.072115 +1411.076011 +1411.168985 +1411.170384 +1411.173547 +1411.269251 +1411.273547 +1411.369451 +1411.373880 +1411.469684 +1411.471016 +1411.473713 +1411.571149 +1411.573747 +1411.669784 +1411.671182 +1411.674213 +1411.769917 +1411.773513 +1411.779141 +1411.871315 +1411.874479 +1411.969917 +1411.974013 +1412.069983 +1412.071348 +1412.073813 +1412.270016 +1412.271382 +1412.371381 +1412.374312 +1412.378574 +1412.470016 +1412.471415 +1412.474079 +1412.571448 +1412.574079 +1412.669983 +1412.671448 +1412.674078 +1412.771381 +1412.773412 +1412.871414 +1412.874211 +1412.971414 +1412.973645 +1413.071347 +1413.074011 +1413.170049 +1413.171481 +1413.173945 +1413.273911 +1413.374078 +1413.471380 +1413.473711 +1413.573944 +1413.671513 +1413.674377 +1413.770148 +1413.771480 +1413.774177 +1413.871580 +1413.874111 +1413.971446 +1413.973877 +1414.069915 +1414.073611 +1414.171380 +1414.173677 +1414.273810 +1414.373577 +1414.473844 +1414.570147 +1414.574143 +1414.671446 +1414.673677 +1414.679238 +1414.770080 +1414.771446 +1414.774143 +1414.870147 +1414.874409 +1414.973710 +1414.982634 +1415.073876 +1415.173576 +1415.178805 +1415.273776 +1415.278538 +1415.371378 +1415.374042 +1415.474242 +1415.574209 +1415.582434 +1415.671578 +1415.673909 +1415.770213 +1415.774009 +1415.870113 +1415.873809 +1415.970046 +1415.973875 +1415.978271 +1420.968109 +1420.972072 +1420.998612 +1421.000510 +1421.017593 +1421.027983 +1421.030547 +1421.041303 +1421.052991 +1421.065179 +1421.077034 +1421.088456 +1421.090554 +1421.111766 +1421.124453 +1421.136741 +1421.149261 +1421.161849 +1421.174236 +1421.189388 +1421.201076 +1421.211799 +1421.249028 +1421.260916 +1421.272671 +1421.297113 +1421.309301 +1421.311965 +1421.332378 +1421.356621 +1421.372505 +1421.385525 +1421.394916 +1421.397247 +1421.404806 +1421.416860 +1421.429414 +1421.445398 +1421.493717 +1421.521456 +1421.548462 +1421.559784 +1421.566078 +1421.574036 +1421.588155 +1421.598612 +1421.611665 +1421.624153 +1421.636407 +1421.649527 +1421.662681 +1421.664879 +1421.676367 +1421.753723 +1421.778964 +1421.792684 +1421.794682 +1421.805571 +1421.832444 +1421.863114 +1421.877632 +1421.890852 +1421.903007 +1421.916693 +1421.928748 +1421.964712 +1421.978798 +1422.003573 +1422.051159 +1422.065145 +1422.146596 +1422.162081 +1422.189820 +1422.215028 +1422.234608 +1422.247828 +1422.282760 +1422.296413 +1422.309234 +1422.312231 +1422.324885 +1422.351724 +1422.365244 +1422.367242 +1422.387455 +1422.400276 +1422.417159 +1422.456853 +1422.469973 +1422.483259 +1422.524352 +1422.538771 +1422.565377 +1422.589986 +1422.629779 +1422.654688 +1422.680262 +1422.794881 +1422.826716 +1422.913063 +1422.915327 +1422.942067 +1422.956353 +1422.967342 +1422.979896 +1422.982027 +1422.994847 +1422.997012 +1423.003006 +1423.008400 +1423.010831 +1423.023452 +1423.033675 +1423.039236 +1423.046962 +1423.060015 +1423.071371 +1423.097012 +1423.128280 +1423.141068 +1423.153422 +1423.155753 +1423.180195 +1423.182360 +1423.210765 +1423.251224 +1423.282559 +1423.295846 +1423.307335 +1423.318024 +1423.324318 +1423.330811 +1423.337671 +1423.366975 +1423.379029 +1423.390651 +1423.404571 +1423.406469 +1423.417091 +1423.429113 +1423.441201 +1423.501307 +1423.527614 +1423.556518 +1423.590651 +1423.592616 +1423.645729 +1423.671603 +1423.699842 +1423.724917 +1423.737038 +1423.780328 +1423.821187 +1423.823618 +1423.845662 +1423.849558 +1423.864210 +1423.901040 +1423.929212 +1423.944563 +1423.954520 +1424.045163 +1424.098110 +1424.140001 +1424.184390 +1424.200507 +1424.325116 +1424.407800 +1424.453321 +1424.474766 +1424.601839 +1424.627113 +1424.698875 +1424.854319 +1424.861446 +1424.878195 +1425.057649 +1425.075764 +1425.087985 +1425.094146 +1425.104169 +1425.117689 +1425.124849 +1425.132175 +1425.144429 +1425.159048 +1425.173333 +1425.179727 +1425.183323 +1425.195211 +1425.200007 +1425.214192 +1425.223317 +1425.229810 +1425.233007 +1425.245728 +1425.260746 +1425.277562 +1425.286054 +1425.293480 +1425.307732 +1425.310729 +1425.324182 +1425.328045 +1425.338202 +1425.350256 +1425.365374 +1425.379061 +1425.388984 +1425.395344 +1425.398541 +1425.410329 +1425.425448 +1425.437036 +1425.450190 +1425.456084 +1425.466706 +1425.470036 +1425.482291 +1425.496310 +1425.499440 +1425.511295 +1425.526879 +1425.531775 +1425.540999 +1425.544628 +1425.577063 +1425.583023 +1425.586486 +1425.600006 +1425.604369 +1425.613693 +1425.616357 +1425.630676 +1425.635437 +1425.642930 +1425.646726 +1425.659480 +1425.663809 +1425.669004 +1425.679627 +1425.688285 +1425.695044 +1425.702370 +1425.706899 +1425.715091 +1425.717822 +1425.733339 +1425.741065 +1425.756050 +1425.765874 +1425.771035 +1425.782590 +1425.786187 +1425.796410 +1425.799373 +1425.804801 +1425.817022 +1425.826180 +1425.830342 +1425.843496 +1425.863476 +1425.875098 +1425.881491 +1425.889849 +1425.896443 +1425.910329 +1425.935604 +1425.950788 +1425.956782 +1425.965740 +1426.358647 +1435.970925 +1435.972890 +1435.976020 +1435.977918 +1436.970091 +1436.971490 +1436.974753 +1436.977584 +1437.969824 +1437.971256 +1437.971456 +1437.973953 +1437.977550 +1438.968991 +1438.970755 +1438.976516 +1439.969656 +1439.970421 +1439.971853 +1439.976216 +1440.970021 +1440.971386 +1440.976448 +1440.978512 +1445.969883 +1445.974645 +1445.976942 +1445.978807 +1446.070981 +1446.072247 +1446.074744 +1446.175277 +1446.273179 +1446.275210 +1446.371880 +1446.376176 +1446.472080 +1446.473479 +1446.476376 +1446.573612 +1446.576575 +1446.672379 +1446.673811 +1446.676742 +1446.772479 +1446.773911 +1446.776342 +1446.873878 +1446.876409 +1446.971380 +1446.972812 +1447.071313 +1447.171680 +1447.271979 +1447.273345 +1447.276841 +1447.372512 +1447.374010 +1447.377507 +1447.472578 +1447.473977 +1447.476907 +1447.572712 +1447.574110 +1447.576907 +1447.674177 +1447.676608 +1447.776474 +1447.872345 +1447.873777 +1447.972178 +1447.973477 +1447.976641 +1448.072644 +1448.074010 +1448.076874 +1448.174043 +1448.176873 +1448.274109 +1448.277007 +1448.372711 +1448.374176 +1448.377772 +1448.472577 +1448.474009 +1448.476840 +1448.571645 +1448.573310 +1448.673277 +1448.676207 +1448.774176 +1448.777006 +1448.876706 +1448.974175 +1448.977139 +1449.076873 +1449.174375 +1449.177106 +1449.274342 +1449.276906 +1449.374242 +1449.377139 +1449.386529 +1449.474075 +1449.476839 +1449.572110 +1449.573509 +1449.576672 +1449.672510 +1449.676639 +1449.774041 +1449.776406 +1449.874008 +1449.876439 +1449.880235 +1449.972709 +1449.977338 +1450.072842 +1450.076572 +1450.172842 +1450.176838 +1450.276871 +1450.284863 +1450.374007 +1450.376805 +1450.472209 +1450.473608 +1450.477471 +1450.572842 +1450.574274 +1450.577071 +1450.672775 +1450.674174 +1450.676605 +1450.774240 +1450.777237 +1450.874440 +1450.877204 +1450.974473 +1450.976804 +1455.970339 +1455.976666 +1455.992950 +1456.001374 +1456.003439 +1456.011198 +1456.013462 +1456.019989 +1456.031378 +1456.041334 +1456.048827 +1456.056120 +1456.057818 +1456.069007 +1456.078864 +1456.081261 +1456.089753 +1456.101441 +1456.114361 +1456.127149 +1456.138937 +1456.151025 +1456.175767 +1456.187988 +1456.200242 +1456.213196 +1456.224584 +1456.237238 +1456.246429 +1456.259549 +1456.272004 +1456.283858 +1456.311730 +1456.324484 +1456.337871 +1456.349792 +1456.386522 +1456.400708 +1456.415926 +1456.425850 +1456.442200 +1456.465643 +1456.468074 +1456.477431 +1456.489985 +1456.529845 +1456.543831 +1456.546462 +1456.556352 +1456.569772 +1456.585157 +1456.607767 +1456.612330 +1456.625250 +1456.638204 +1456.640335 +1456.650991 +1456.663512 +1456.672969 +1456.685689 +1456.688653 +1456.698676 +1456.716192 +1456.727015 +1456.752989 +1456.764011 +1456.777331 +1456.788786 +1456.799908 +1456.802706 +1456.813828 +1456.824251 +1456.835440 +1456.844830 +1456.857551 +1456.860048 +1456.896012 +1456.907035 +1456.919755 +1456.957884 +1456.970305 +1456.996911 +1457.040434 +1457.048759 +1457.051656 +1457.074767 +1457.100574 +1457.103838 +1457.110731 +1457.124284 +1457.176598 +1457.188320 +1457.201573 +1457.212928 +1457.249225 +1457.272469 +1457.299209 +1457.302938 +1457.311097 +1457.320221 +1457.346262 +1457.358949 +1457.362012 +1457.372102 +1457.384656 +1457.398043 +1457.410064 +1457.420521 +1457.422718 +1457.444064 +1457.469805 +1457.530577 +1457.544097 +1457.570071 +1457.583091 +1457.608799 +1457.620987 +1457.633774 +1457.646361 +1457.658882 +1457.671669 +1457.683024 +1457.692648 +1457.703870 +1457.716524 +1457.759681 +1457.762412 +1457.771902 +1457.784123 +1457.804370 +1457.819355 +1457.822585 +1457.831909 +1457.846761 +1457.854619 +1457.866041 +1457.879894 +1457.892481 +1457.921353 +1457.933674 +1457.944696 +1457.957616 +1457.959914 +1457.971835 +1457.973900 +1457.984889 +1457.998708 +1458.014692 +1458.026814 +1458.039368 +1458.042098 +1458.053753 +1458.066174 +1458.077197 +1458.113660 +1458.150656 +1458.176064 +1458.190084 +1458.225082 +1458.237303 +1458.250523 +1458.265042 +1458.366907 +1458.377929 +1458.401272 +1458.413993 +1458.440932 +1458.473467 +1458.493480 +1458.515558 +1458.527313 +1458.566740 +1458.578794 +1458.633506 +1458.683823 +1458.698075 +1458.714858 +1458.788851 +1458.800972 +1458.828178 +1458.931475 +1459.015091 +1459.084189 +1459.100272 +1459.182657 +1459.313559 +1459.523582 +1459.963375 +1460.005133 +1460.009596 +1460.018320 +1460.020418 +1460.023981 +1460.032006 +1460.034571 +1460.037767 +1460.045693 +1460.048457 +1460.073332 +1460.076895 +1460.080225 +1460.091181 +1460.101970 +1460.113192 +1460.116522 +1460.119885 +1460.129809 +1460.132339 +1460.144827 +1460.160311 +1460.171234 +1460.190415 +1460.206399 +1460.210361 +1460.219918 +1460.228776 +1460.232606 +1460.235203 +1460.247857 +1460.260611 +1460.275629 +1460.282755 +1460.296175 +1460.298573 +1460.307364 +1460.320984 +1460.329575 +1460.335603 +1460.348656 +1460.354750 +1460.367737 +1460.376628 +1460.390548 +1460.405200 +1460.410661 +1460.419019 +1460.427144 +1460.454916 +1460.493078 +1460.495642 +1460.526212 +1460.535136 +1460.549255 +1460.563774 +1460.570701 +1460.574297 +1460.588150 +1460.635569 +1460.649855 +1460.653851 +1460.663141 +1460.706931 +1460.717920 +1460.732339 +1460.735902 +1460.749055 +1460.773098 +1460.777960 +1460.792945 +1460.809695 +1460.824746 +1460.840963 +1460.853018 +1460.856281 +1460.872598 +1460.876694 +1460.887017 +1460.899671 +1460.903301 +1460.914290 +1460.927610 +1460.945226 +1470.971223 +1470.973288 +1470.975519 +1470.978915 +1471.971655 +1471.979181 +1472.972486 +1472.973818 +1472.977148 +1472.980079 +1473.972619 +1473.974117 +1473.977047 +1473.981010 +1474.972618 +1474.974049 +1474.976947 +1474.980510 +1475.971917 +1475.973283 +1475.979043 +1475.981108 +1480.973078 +1480.978306 +1480.979971 +1481.073344 +1481.076175 +1481.174443 +1481.177173 +1481.278239 +1481.373943 +1481.375342 +1481.378605 +1481.473943 +1481.475342 +1481.573410 +1481.574875 +1481.578105 +1481.674009 +1481.675508 +1481.678272 +1481.773443 +1481.777972 +1481.875708 +1481.978505 +1482.074375 +1482.075707 +1482.080669 +1482.178604 +1482.275740 +1482.373243 +1482.374641 +1482.474208 +1482.478870 +1482.575341 +1482.579137 +1482.675374 +1482.678670 +1482.775840 +1482.778737 +1482.875940 +1482.879136 +1482.975940 +1483.075706 +1483.078270 +1483.174374 +1483.175706 +1483.178337 +1483.275773 +1483.278736 +1483.375939 +1483.379402 +1483.479302 +1483.575906 +1483.578470 +1483.675839 +1483.678703 +1483.775872 +1483.778669 +1483.875872 +1483.878603 +1483.975972 +1483.978702 +1484.074407 +1484.075805 +1484.078669 +1484.175406 +1484.178502 +1484.278802 +1484.375772 +1484.378469 +1484.476071 +1484.478835 +1484.575905 +1484.578802 +1484.774439 +1484.775904 +1484.778302 +1484.785395 +1484.875871 +1484.879001 +1484.975938 +1484.978901 +1485.075937 +1485.078668 +1485.175871 +1485.179700 +1485.274106 +1485.275504 +1485.278335 +1485.373972 +1485.375371 +1485.378801 +1485.474239 +1485.478335 +1485.575537 +1485.579400 +1485.678601 +1485.774438 +1485.779233 +1485.875870 +1485.878401 +1485.978734 +1485.987825 +1490.972269 +1490.976131 +1491.001306 +1491.023784 +1491.035139 +1491.066241 +1491.068372 +1491.109598 +1491.121419 +1491.131043 +1491.143297 +1491.166308 +1491.203737 +1491.215791 +1491.229211 +1491.231775 +1491.241932 +1491.244096 +1491.254586 +1491.256684 +1491.293614 +1491.306401 +1491.319055 +1491.334406 +1491.358981 +1491.370703 +1491.394013 +1491.407833 +1491.421819 +1491.446960 +1491.449458 +1491.458848 +1491.479827 +1491.514193 +1491.527080 +1491.539834 +1491.550090 +1491.563876 +1491.579328 +1491.647626 +1491.659547 +1491.685555 +1491.709864 +1491.736603 +1491.749491 +1491.762777 +1491.768904 +1491.780793 +1491.811295 +1491.838168 +1491.851022 +1491.853387 +1491.863210 +1491.875564 +1491.888818 +1491.914159 +1491.917522 +1491.928378 +1491.938435 +1491.948591 +1491.958748 +1492.010063 +1492.012727 +1492.038568 +1492.053353 +1492.068804 +1492.081558 +1492.096110 +1492.098808 +1492.159247 +1492.173899 +1492.187952 +1492.201272 +1492.203703 +1492.214026 +1492.216623 +1492.241864 +1492.251222 +1492.275997 +1492.287885 +1492.301838 +1492.313359 +1492.328045 +1492.342763 +1492.356483 +1492.368904 +1492.371701 +1492.380093 +1492.414658 +1492.451954 +1492.455617 +1492.464342 +1492.477362 +1492.484988 +1492.497209 +1492.510129 +1492.534738 +1492.549556 +1492.574232 +1492.589183 +1492.601071 +1492.614658 +1492.639733 +1492.652786 +1492.675963 +1492.686619 +1492.699573 +1492.712527 +1492.729843 +1492.740565 +1492.742796 +1492.752753 +1492.755417 +1492.765107 +1492.767272 +1492.777828 +1492.793679 +1492.806732 +1492.809163 +1492.820052 +1492.822616 +1492.834371 +1492.839300 +1492.848923 +1492.862643 +1492.876629 +1492.878893 +1492.882889 +1492.889816 +1492.892713 +1492.903735 +1492.906233 +1492.909063 +1492.917388 +1492.919819 +1492.923049 +1492.930708 +1492.936136 +1492.943196 +1492.945094 +1492.957048 +1492.969769 +1492.993312 +1492.996675 +1493.004534 +1493.007198 +1493.016922 +1493.036436 +1493.038567 +1493.050288 +1493.052486 +1493.064574 +1493.067105 +1493.077728 +1493.092446 +1493.094478 +1493.109163 +1493.118121 +1493.121384 +1493.128777 +1493.140132 +1493.155816 +1493.160079 +1493.177894 +1493.190781 +1493.193445 +1493.203801 +1493.205966 +1493.216888 +1493.229109 +1493.234870 +1493.241830 +1493.255716 +1493.257881 +1493.265706 +1493.268270 +1493.283888 +1493.295510 +1493.305300 +1493.307864 +1493.311927 +1493.322749 +1493.333738 +1493.337434 +1493.346692 +1493.352652 +1493.365972 +1493.377494 +1493.388650 +1493.390914 +1493.401537 +1493.403601 +1493.414257 +1493.416822 +1493.438134 +1493.452219 +1493.464108 +1493.465972 +1493.480491 +1493.487018 +1493.492779 +1493.495110 +1493.506099 +1493.508896 +1493.518553 +1493.520917 +1493.531973 +1493.538566 +1493.544127 +1493.550854 +1493.555649 +1493.558313 +1493.568769 +1493.571001 +1493.584054 +1493.597641 +1493.600471 +1493.608563 +1493.620917 +1493.634004 +1493.636269 +1493.647058 +1493.649222 +1493.663142 +1493.678160 +1493.681290 +1493.690714 +1493.693511 +1493.700471 +1493.709262 +1493.722382 +1493.735636 +1493.750654 +1493.753518 +1493.760511 +1493.764407 +1493.768003 +1493.780424 +1493.793045 +1493.806398 +1493.816555 +1493.820717 +1493.823814 +1493.831240 +1493.841197 +1493.847191 +1493.867737 +1493.872865 +1493.881923 +1493.884553 +1493.893345 +1493.895775 +1493.907297 +1493.909329 +1493.919985 +1493.922249 +1493.937134 +1493.946958 +1493.971366 +1493.973398 +1493.988982 +1493.994876 +1494.004999 +1494.009895 +1494.016555 +1494.024946 +1494.029875 +1494.032239 +1494.043161 +1494.057414 +1494.068536 +1494.083754 +1494.091713 +1494.104566 +1494.114790 +1494.117154 +1494.126245 +1494.138333 +1494.141596 +1494.152652 +1494.165306 +1494.168935 +1494.187617 +1494.202169 +1494.204300 +1494.217653 +1494.222049 +1494.238932 +1494.251419 +1494.262408 +1494.270634 +1494.302935 +1494.310594 +1494.312958 +1494.322082 +1494.338099 +1494.339997 +1494.352951 +1494.382988 +1494.394276 +1494.400171 +1494.408329 +1494.413291 +1494.427343 +1494.436567 +1494.463108 +1494.475395 +1494.480490 +1494.493011 +1494.504932 +1494.515355 +1494.529175 +1494.542561 +1494.557580 +1494.559911 +1494.571099 +1494.585185 +1494.601103 +1494.611226 +1494.639065 +1494.651319 +1494.670633 +1494.703833 +1494.717286 +1494.740297 +1494.789947 +1494.792811 +1494.818951 +1494.822048 +1494.830640 +1494.844559 +1494.856514 +1494.868269 +1494.886151 +1494.895375 +1494.917919 +1494.920550 +1494.930506 +1494.933337 +1494.942528 +1494.957379 +1494.959710 +1494.974063 +1494.992311 +1495.005465 +1495.008029 +1495.015987 +1495.021182 +1495.028242 +1495.034835 +1495.042894 +1495.048122 +1495.051019 +1495.063074 +1495.066470 +1495.076360 +1495.080823 +1495.088715 +1495.099670 +1495.108661 +1495.113157 +1495.121116 +1495.123413 +1495.137166 +1495.148222 +1495.159877 +1495.162840 +1495.172897 +1495.175594 +1495.185285 +1495.187616 +1495.200436 +1495.202967 +1495.214922 +1495.217386 +1495.223513 +1495.230140 +1495.233836 +1495.241162 +1495.245191 +1495.249620 +1495.263440 +1495.265771 +1495.269600 +1495.292144 +1495.302001 +1495.317852 +1495.333203 +1495.350319 +1495.360942 +1495.377259 +1495.384918 +1495.391445 +1495.394808 +1495.399936 +1495.416054 +1495.431372 +1495.435567 +1495.444026 +1495.455181 +1495.458112 +1495.467569 +1495.478358 +1495.481521 +1495.493010 +1495.495840 +1495.507795 +1495.510559 +1495.521182 +1495.535534 +1495.539064 +1495.549487 +1495.566337 +1495.577625 +1495.595141 +1495.605264 +1495.619184 +1495.626876 +1495.629906 +1495.644092 +1495.647022 +1495.668767 +1495.671298 +1495.681488 +1495.684318 +1495.697938 +1495.712224 +1495.714588 +1495.725011 +1495.742827 +1495.755214 +1495.758278 +1495.771098 +1495.774162 +1495.785217 +1495.788414 +1495.792177 +1495.800769 +1495.807628 +1495.816253 +1495.820848 +1495.833303 +1495.839263 +1495.854481 +1495.872763 +1495.884052 +1495.886782 +1495.891478 +1495.903432 +1495.912124 +1495.924645 +1495.930072 +1495.954448 +1495.969633 +1495.973929 +1497.572795 +1505.972520 +1505.979879 +1506.972685 +1506.980378 +1507.977147 +1508.973016 +1508.974382 +1508.977012 +1508.980009 +1508.986769 +1509.972982 +1509.974381 +1509.978044 +1509.982173 +1510.973048 +1510.974346 +1510.977643 +1510.981273 +1515.970912 +1515.971777 +1515.973209 +1515.978471 +1515.980036 +1516.073109 +1516.074441 +1516.077272 +1516.172343 +1516.173709 +1516.177505 +1516.378071 +1516.474308 +1516.478803 +1516.483498 +1516.574074 +1516.674108 +1516.678503 +1516.774341 +1516.775706 +1516.778969 +1516.874540 +1516.876039 +1516.879169 +1516.976239 +1517.075839 +1517.079036 +1517.174407 +1517.175905 +1517.179036 +1517.278869 +1517.374706 +1517.376172 +1517.379002 +1517.474773 +1517.476305 +1517.479501 +1517.575838 +1517.579268 +1517.673740 +1517.675072 +1517.678669 +1517.773241 +1517.781999 +1517.875239 +1517.878768 +1517.975139 +1517.978535 +1518.076004 +1518.079434 +1518.174606 +1518.178901 +1518.276237 +1518.279134 +1518.379600 +1518.476270 +1518.479068 +1518.574838 +1518.576270 +1518.579700 +1518.674838 +1518.676204 +1518.679400 +1518.688491 +1518.774772 +1518.776104 +1518.779134 +1518.875837 +1518.878668 +1518.973439 +1518.975004 +1519.075404 +1519.078567 +1519.174172 +1519.175537 +1519.179433 +1519.274305 +1519.275670 +1519.376236 +1519.379333 +1519.476169 +1519.478800 +1519.574471 +1519.575870 +1519.578567 +1519.679166 +1519.776169 +1519.779166 +1519.874737 +1519.876236 +1519.878933 +1519.974038 +1519.975470 +1519.978966 +1520.073039 +1520.174637 +1520.176135 +1520.178933 +1520.274204 +1520.373738 +1520.375136 +1520.476168 +1520.479032 +1520.578999 +1520.678466 +1520.685859 +1520.776235 +1520.779265 +1520.790054 +1520.876201 +1520.879132 +1520.976268 +1520.979198 +1524.698076 +1524.840566 +1524.875898 +1525.978261 +1525.979826 +1525.985687 +1525.987152 +1525.993745 +1525.995910 +1526.002137 +1526.010196 +1526.020951 +1526.028810 +1526.038001 +1526.039666 +1526.048557 +1526.050588 +1526.059346 +1526.061744 +1526.070269 +1526.072367 +1526.083422 +1526.094877 +1526.104601 +1526.106399 +1526.117788 +1526.120152 +1526.130342 +1526.132340 +1526.143196 +1526.155650 +1526.157481 +1526.168171 +1526.170169 +1526.180891 +1526.183189 +1526.192946 +1526.203768 +1526.205733 +1526.216389 +1526.227278 +1526.239066 +1526.241331 +1526.251654 +1526.263009 +1526.264974 +1526.277062 +1526.279126 +1526.290315 +1526.292979 +1526.302936 +1526.314657 +1526.326312 +1526.328477 +1526.340032 +1526.354218 +1526.365407 +1526.367871 +1526.377628 +1526.379626 +1526.388450 +1526.400005 +1526.402003 +1526.414258 +1526.440931 +1526.443162 +1526.454351 +1526.457082 +1526.467804 +1526.469835 +1526.482956 +1526.499239 +1526.509995 +1526.521917 +1526.533705 +1526.535769 +1526.547158 +1526.549189 +1526.561344 +1526.572100 +1526.584054 +1526.586885 +1526.596908 +1526.599273 +1526.609096 +1526.616888 +1526.628144 +1526.639998 +1526.642896 +1526.652186 +1526.654284 +1526.665639 +1526.668070 +1526.678327 +1526.681091 +1526.691680 +1526.703235 +1526.713059 +1526.715456 +1526.725213 +1526.727211 +1526.739499 +1526.742562 +1526.752885 +1526.755183 +1526.765839 +1526.767937 +1526.778493 +1526.780991 +1526.791680 +1526.794411 +1526.804467 +1526.806931 +1526.818020 +1526.830708 +1526.842163 +1526.844094 +1526.858979 +1526.864041 +1526.872000 +1526.874597 +1526.884321 +1526.886652 +1526.898173 +1526.901370 +1526.910594 +1526.913558 +1526.922949 +1526.926245 +1526.933904 +1526.945926 +1526.961144 +1526.972632 +1526.975263 +1526.985819 +1526.988316 +1526.999305 +1527.001603 +1527.012659 +1527.025146 +1527.028110 +1527.038899 +1527.051520 +1527.063075 +1527.072099 +1527.074630 +1527.086185 +1527.088583 +1527.100338 +1527.102535 +1527.116388 +1527.119518 +1527.130341 +1527.141496 +1527.152685 +1527.155083 +1527.165706 +1527.168203 +1527.178892 +1527.181257 +1527.193012 +1527.204866 +1527.207131 +1527.218919 +1527.221683 +1527.231739 +1527.234304 +1527.255416 +1527.267370 +1527.270034 +1527.279891 +1527.284853 +1527.296541 +1527.299538 +1527.309928 +1527.312892 +1527.322815 +1527.333071 +1527.335502 +1527.347290 +1527.349755 +1527.372132 +1527.375529 +1527.384586 +1527.386917 +1527.399139 +1527.401203 +1527.406065 +1527.414157 +1527.416355 +1527.426778 +1527.429375 +1527.440231 +1527.444227 +1527.454450 +1527.466205 +1527.468935 +1527.477260 +1527.479891 +1527.489615 +1527.492212 +1527.504700 +1527.507197 +1527.519485 +1527.521849 +1527.534137 +1527.544793 +1527.553850 +1527.568536 +1527.580057 +1527.582222 +1527.594343 +1527.597340 +1527.607130 +1527.609195 +1527.620284 +1527.622548 +1527.632405 +1527.635202 +1527.656614 +1527.659578 +1527.667270 +1527.679425 +1527.690347 +1527.704766 +1527.717953 +1527.720550 +1527.732139 +1527.734569 +1527.745126 +1527.748056 +1527.757247 +1527.760277 +1527.784486 +1527.786884 +1527.797606 +1527.809761 +1527.820717 +1527.832804 +1527.842095 +1527.852185 +1527.855282 +1527.866637 +1527.869934 +1527.877493 +1527.879757 +1527.890380 +1527.892811 +1527.903833 +1527.907729 +1527.915488 +1527.918519 +1527.928775 +1527.940863 +1527.945325 +1527.951919 +1527.966804 +1527.970600 +1527.978592 +1527.982688 +1527.991412 +1528.001402 +1528.003600 +1528.014489 +1528.030706 +1528.033004 +1528.044992 +1528.054616 +1528.061376 +1528.075228 +1528.085718 +1528.088881 +1528.097173 +1528.099371 +1528.114156 +1528.117153 +1528.126744 +1528.129541 +1528.140463 +1528.153117 +1528.155382 +1528.167070 +1528.169967 +1528.181589 +1528.184219 +1528.193677 +1528.208428 +1528.211892 +1528.220017 +1528.231572 +1528.233670 +1528.256447 +1528.258745 +1528.282687 +1528.287882 +1528.303600 +1528.314123 +1528.316520 +1528.325411 +1528.328209 +1528.340896 +1528.352018 +1528.354649 +1528.364406 +1528.367203 +1528.376227 +1528.380090 +1528.391578 +1528.402434 +1528.404632 +1528.414589 +1528.425211 +1528.427642 +1528.434402 +1528.440163 +1528.452717 +1528.455181 +1528.465971 +1528.469034 +1528.480956 +1528.483387 +1528.486583 +1528.497472 +1528.500336 +1528.509194 +1528.521582 +1528.524545 +1528.535701 +1528.538098 +1528.547755 +1528.553416 +1528.555981 +1528.566370 +1528.568701 +1528.581155 +1528.583919 +1528.595241 +1528.608694 +1528.611492 +1528.622647 +1528.636533 +1528.648455 +1528.651718 +1528.660942 +1528.663040 +1528.672131 +1528.674595 +1528.684918 +1528.698871 +1528.701435 +1528.710326 +1528.713723 +1528.717186 +1528.730206 +1528.741462 +1528.746223 +1528.756646 +1528.758778 +1528.770499 +1528.772863 +1528.778591 +1528.786217 +1528.801968 +1528.810426 +1528.813456 +1528.821182 +1528.842494 +1528.844692 +1528.855514 +1528.858012 +1528.868368 +1528.871032 +1528.881788 +1528.885151 +1528.893976 +1528.896873 +1528.905064 +1528.918285 +1528.921615 +1528.932271 +1528.935367 +1528.956913 +1528.960442 +1528.969400 +1528.972330 +1528.980223 +1528.989746 +1528.992144 +1529.004298 +1529.017652 +1529.034835 +1529.037598 +1529.050685 +1529.055081 +1529.063639 +1529.079756 +1529.085617 +1529.097672 +1529.102134 +1529.110359 +1529.112590 +1529.123279 +1529.125610 +1529.131072 +1529.146589 +1529.150952 +1529.162940 +1529.169666 +1529.177858 +1529.183386 +1529.193842 +1529.196739 +1529.207262 +1529.209526 +1529.218651 +1529.221648 +1529.232170 +1529.237831 +1529.243392 +1529.245723 +1529.257279 +1529.259843 +1529.270332 +1529.272963 +1529.286116 +1529.288214 +1529.292110 +1529.301434 +1529.303499 +1529.306662 +1529.317252 +1529.319649 +1529.326376 +1529.329573 +1529.333569 +1529.342027 +1529.349853 +1529.354748 +1529.362007 +1529.364438 +1529.374495 +1529.376992 +1529.389147 +1529.391677 +1529.400036 +1529.412723 +1529.415354 +1529.419183 +1529.429639 +1529.440628 +1529.442926 +1529.455913 +1529.458444 +1529.485950 +1529.497904 +1529.501268 +1529.503532 +1529.517751 +1529.520382 +1529.532869 +1529.534801 +1529.538197 +1529.548687 +1529.551218 +1529.567035 +1529.571064 +1529.579323 +1529.582120 +1529.592376 +1529.596106 +1529.605930 +1529.611424 +1529.618350 +1529.630971 +1529.637598 +1529.659842 +1529.670565 +1529.673862 +1529.686982 +1529.689379 +1529.694041 +1529.697238 +1529.705663 +1529.709892 +1529.723412 +1529.737165 +1529.748620 +1529.751051 +1529.762206 +1529.765203 +1529.775227 +1529.793342 +1529.804298 +1529.814188 +1529.817851 +1529.831337 +1529.840528 +1529.842926 +1529.851517 +1529.854447 +1529.856878 +1529.873662 +1529.880322 +1529.882519 +1529.886449 +1529.894541 +1529.901301 +1529.910158 +1529.918550 +1529.924511 +1529.927041 +1529.939895 +1529.942426 +1529.954714 +1529.956845 +1529.970997 +1529.973595 +1529.978890 +1529.984218 +1529.986482 +1529.998736 +1530.001167 +1530.007827 +1530.014021 +1530.017185 +1530.036465 +1530.042160 +1530.050018 +1530.053581 +1530.056745 +1530.068100 +1530.071330 +1530.075160 +1530.085083 +1530.108293 +1530.111856 +1530.117950 +1530.131037 +1530.134600 +1530.143758 +1530.157477 +1530.159642 +1530.171996 +1530.174394 +1530.187880 +1530.190744 +1530.205529 +1530.212089 +1530.219216 +1530.221613 +1530.225842 +1530.233202 +1530.235732 +1530.247621 +1530.252582 +1530.263172 +1530.266568 +1530.276259 +1530.292642 +1530.296438 +1530.306428 +1530.316785 +1530.319615 +1530.330837 +1530.333535 +1530.338430 +1530.343358 +1530.350851 +1530.361906 +1530.364703 +1530.374227 +1530.377957 +1530.390011 +1530.393042 +1530.404430 +1530.406761 +1530.424144 +1530.433901 +1530.436232 +1530.440527 +1530.450085 +1530.453415 +1530.462406 +1530.466135 +1530.475892 +1530.482286 +1530.489678 +1530.502798 +1530.511823 +1530.526874 +1530.530071 +1530.542326 +1530.547720 +1530.557244 +1530.560740 +1530.569698 +1530.579289 +1530.590311 +1530.594973 +1530.604663 +1530.607161 +1530.619815 +1530.624144 +1530.639595 +1530.648553 +1530.655146 +1530.670064 +1530.681320 +1530.683684 +1530.687214 +1530.696538 +1530.699502 +1530.703697 +1530.711423 +1530.714919 +1530.720447 +1530.726241 +1530.732935 +1530.741426 +1530.743657 +1530.759308 +1530.762705 +1530.785848 +1530.788679 +1530.801999 +1530.820048 +1530.823844 +1530.835332 +1530.840594 +1530.852815 +1530.856478 +1530.866468 +1530.874759 +1530.882652 +1530.887613 +1530.896038 +1530.903331 +1530.907860 +1530.916218 +1530.924476 +1530.927673 +1530.939162 +1530.954313 +1530.970131 +1530.976591 +1540.972851 +1540.977147 +1540.980044 +1541.973916 +1541.974182 +1541.976547 +1541.980176 +1542.973382 +1542.974747 +1542.977445 +1542.980974 +1543.980274 +1544.972914 +1544.974346 +1544.979874 +1545.974778 +1545.978874 +1545.981238 +1546.254431 +1547.433551 +1548.152065 +1550.346235 +1550.972408 +1550.977070 +1550.979535 +1551.073540 +1551.074872 +1551.077936 +1551.080467 +1551.174073 +1551.175405 +1551.178136 +1551.185395 +1551.275838 +1551.374772 +1551.376171 +1551.379701 +1551.474905 +1551.476404 +1551.479667 +1551.575038 +1551.576537 +1551.579934 +1551.676504 +1551.679933 +1551.775005 +1551.779534 +1551.876637 +1551.879967 +1551.976670 +1551.979600 +1552.080000 +1552.175138 +1552.176536 +1552.181598 +1552.276536 +1552.280166 +1552.376569 +1552.379833 +1552.475104 +1552.476503 +1552.479100 +1552.575204 +1552.579833 +1552.676736 +1552.779366 +1552.783329 +1552.976702 +1552.979666 +1553.076635 +1553.079632 +1553.276735 +1553.376668 +1553.379832 +1553.479332 +1553.484893 +1553.575236 +1553.576568 +1553.579399 +1553.674970 +1553.676335 +1553.679532 +1553.683628 +1553.775103 +1553.780031 +1553.783761 +1553.876501 +1553.976668 +1553.979931 +1554.079898 +1554.083561 +1554.175302 +1554.179931 +1554.192618 +1554.279931 +1554.376701 +1554.379331 +1554.384826 +1554.475235 +1554.479931 +1554.576767 +1554.579631 +1554.676834 +1554.679764 +1554.686990 +1554.776734 +1554.779830 +1554.879497 +1554.979730 +1555.075068 +1555.076633 +1555.079564 +1555.082328 +1555.176667 +1555.179564 +1555.181761 +1555.276800 +1555.279897 +1555.376700 +1555.379430 +1555.476633 +1555.479563 +1555.579863 +1555.676533 +1555.679363 +1555.775234 +1555.776599 +1555.779097 +1555.782993 +1555.876533 +1555.879297 +1555.884158 +1555.975134 +1555.979330 +1560.972798 +1560.978459 +1560.985752 +1560.994077 +1561.003634 +1561.011459 +1561.020151 +1561.027576 +1561.030141 +1561.037433 +1561.048555 +1561.060244 +1561.083820 +1561.095642 +1561.108529 +1561.118419 +1561.144926 +1561.156381 +1561.158579 +1561.181123 +1561.193910 +1561.209494 +1561.235835 +1561.247090 +1561.259311 +1561.295875 +1561.309861 +1561.312458 +1561.321316 +1561.325245 +1561.333637 +1561.336434 +1561.347290 +1561.356747 +1561.366204 +1561.376327 +1561.379424 +1561.387350 +1561.398705 +1561.411292 +1561.413723 +1561.424679 +1561.439231 +1561.441495 +1561.452385 +1561.454782 +1561.466271 +1561.478758 +1561.527776 +1561.550553 +1561.563007 +1561.576127 +1561.610893 +1561.621715 +1561.631405 +1561.645025 +1561.647123 +1561.659011 +1561.675761 +1561.686850 +1561.699371 +1561.713157 +1561.725844 +1561.728175 +1561.739131 +1561.750220 +1561.753050 +1561.763906 +1561.768069 +1561.778791 +1561.792611 +1561.807895 +1561.817652 +1561.841728 +1561.845424 +1561.852817 +1561.864539 +1561.866870 +1561.877626 +1561.889847 +1561.898138 +1561.910026 +1561.921848 +1561.932437 +1561.945191 +1561.955714 +1561.958411 +1561.966636 +1561.978891 +1561.981089 +1561.994509 +1562.008495 +1562.017086 +1562.027775 +1562.030706 +1562.039230 +1562.054981 +1562.064305 +1562.080656 +1562.090646 +1562.102134 +1562.113290 +1562.125111 +1562.138265 +1562.179623 +1562.191978 +1562.206363 +1562.235767 +1562.242027 +1562.248887 +1562.258644 +1562.270466 +1562.287715 +1562.296673 +1562.311525 +1562.329074 +1562.337432 +1562.349154 +1562.361208 +1562.383086 +1562.386117 +1562.396806 +1562.423546 +1562.428607 +1562.441028 +1562.472330 +1562.486183 +1562.497905 +1562.511991 +1562.522014 +1562.528274 +1562.542593 +1562.569067 +1562.571298 +1562.583119 +1562.585883 +1562.594841 +1562.598937 +1562.606563 +1562.608827 +1562.618817 +1562.621115 +1562.632770 +1562.641627 +1562.644458 +1562.656413 +1562.659243 +1562.670898 +1562.674095 +1562.683752 +1562.695940 +1562.710692 +1562.725677 +1562.727641 +1562.740195 +1562.748620 +1562.751118 +1562.759842 +1562.762173 +1562.771264 +1562.782620 +1562.784718 +1562.796006 +1562.809859 +1562.821447 +1562.835001 +1562.839696 +1562.860575 +1562.869832 +1562.872463 +1562.880155 +1562.883186 +1562.891477 +1562.906196 +1562.916319 +1562.920548 +1562.928241 +1562.930905 +1562.943159 +1562.954015 +1562.969965 +1562.972197 +1562.982320 +1562.984984 +1562.995273 +1562.999503 +1563.006895 +1563.018217 +1563.029439 +1563.040462 +1563.043492 +1563.053881 +1563.056079 +1563.068633 +1563.081454 +1563.093742 +1563.096006 +1563.108826 +1563.123345 +1563.134301 +1563.136432 +1563.148287 +1563.159409 +1563.162872 +1563.171930 +1563.175127 +1563.182619 +1563.194341 +1563.196605 +1563.208893 +1563.223545 +1563.235866 +1563.254148 +1563.266269 +1563.268600 +1563.281653 +1563.285083 +1563.294174 +1563.297038 +1563.307960 +1563.316119 +1563.323911 +1563.335733 +1563.350951 +1563.365103 +1563.376425 +1563.379156 +1563.388280 +1563.394807 +1563.399535 +1563.411324 +1563.419349 +1563.421480 +1563.435033 +1563.448353 +1563.450884 +1563.460375 +1563.464104 +1563.467401 +1563.476625 +1563.488180 +1563.491377 +1563.498736 +1563.501100 +1563.511823 +1563.513854 +1563.525276 +1563.530371 +1563.536365 +1563.538929 +1563.548386 +1563.550684 +1563.564537 +1563.578590 +1563.592675 +1563.595872 +1563.606761 +1563.610657 +1563.619915 +1563.628873 +1563.638629 +1563.641393 +1563.651783 +1563.654780 +1563.664936 +1563.670498 +1563.679588 +1563.682652 +1563.706195 +1563.718250 +1563.732935 +1563.737031 +1563.754713 +1563.757244 +1563.767933 +1563.779255 +1563.781686 +1563.795373 +1563.804064 +1563.821546 +1563.823478 +1563.831836 +1563.835732 +1563.840161 +1563.847753 +1563.863171 +1563.872962 +1563.875459 +1563.885382 +1563.888546 +1563.898603 +1563.910924 +1563.924910 +1563.939129 +1563.941593 +1563.951683 +1563.954613 +1563.964503 +1563.976025 +1563.985282 +1563.998902 +1564.001400 +1564.012455 +1564.015585 +1564.029205 +1564.047121 +1564.050784 +1564.059741 +1564.074127 +1564.076425 +1564.088945 +1564.095439 +1564.101300 +1564.113521 +1564.121313 +1564.125109 +1564.138995 +1564.140993 +1564.144024 +1564.154113 +1564.171596 +1564.181253 +1564.187580 +1564.198669 +1564.201366 +1564.209258 +1564.227673 +1564.242325 +1564.245022 +1564.272528 +1564.287646 +1564.297437 +1564.303164 +1564.312954 +1564.328539 +1564.331036 +1564.340793 +1564.354080 +1564.369098 +1564.371263 +1564.384483 +1564.387513 +1564.397570 +1564.418848 +1564.427640 +1564.429837 +1564.433267 +1564.443823 +1564.458775 +1564.472595 +1564.478689 +1564.486947 +1564.497004 +1564.504529 +1564.515152 +1564.528772 +1564.544223 +1564.549251 +1564.559841 +1564.563237 +1564.569265 +1564.574326 +1564.589578 +1564.592275 +1564.603530 +1564.607260 +1564.616750 +1564.629171 +1564.638495 +1564.644223 +1564.651682 +1564.659974 +1564.662738 +1564.678289 +1564.688945 +1564.691875 +1564.704229 +1564.707093 +1564.712721 +1564.718815 +1564.723144 +1564.729970 +1564.734066 +1564.737796 +1564.758175 +1564.764103 +1564.766334 +1564.778921 +1564.781752 +1564.787513 +1564.793607 +1564.801732 +1564.804462 +1564.813953 +1564.818682 +1564.827906 +1564.830170 +1564.842624 +1564.848385 +1564.859241 +1564.862305 +1564.873826 +1564.876624 +1564.888145 +1564.891575 +1564.906294 +1564.915485 +1564.918149 +1564.922344 +1564.933034 +1564.936131 +1564.941459 +1564.949917 +1564.957876 +1564.960673 +1564.972528 +1564.975291 +1564.986913 +1564.991975 +1564.995105 +1565.005495 +1565.017882 +1565.020979 +1565.031169 +1565.046420 +1565.054512 +1565.060806 +1565.069331 +1565.072328 +1565.084116 +1565.094905 +1565.097769 +1565.105461 +1565.108325 +1565.118715 +1565.121046 +1565.133999 +1565.148418 +1565.151415 +1565.162204 +1565.164669 +1565.174925 +1565.178188 +1565.190576 +1565.193073 +1565.205328 +1565.208858 +1565.213087 +1565.220446 +1565.235797 +1565.238262 +1565.251282 +1565.254079 +1565.259440 +1565.265967 +1565.268831 +1565.273726 +1565.281552 +1565.285348 +1565.297869 +1565.301265 +1565.312587 +1565.326407 +1565.333533 +1565.343456 +1565.350516 +1565.362471 +1565.373060 +1565.375391 +1565.381618 +1565.389111 +1565.398934 +1565.402031 +1565.409723 +1565.430536 +1565.434132 +1565.437895 +1565.446353 +1565.461205 +1565.468698 +1565.482018 +1565.492940 +1565.496203 +1565.508624 +1565.512487 +1565.529736 +1565.541824 +1565.546486 +1565.556943 +1565.559607 +1565.572061 +1565.575857 +1565.586746 +1565.602564 +1565.605594 +1565.609557 +1565.618414 +1565.622743 +1565.632933 +1565.639760 +1565.649517 +1565.660006 +1565.665034 +1565.673426 +1565.679553 +1565.683616 +1565.697136 +1565.699666 +1565.709956 +1565.723376 +1565.728138 +1565.739793 +1565.742590 +1565.753746 +1565.768997 +1565.771794 +1565.783516 +1565.800366 +1565.814019 +1565.816616 +1565.821578 +1565.830036 +1565.834465 +1565.844655 +1565.853779 +1565.857442 +1565.871528 +1565.884248 +1565.888977 +1565.900732 +1565.905227 +1565.913352 +1565.923942 +1565.929803 +1565.937861 +1565.953579 +1565.957808 +1565.969330 +1565.973059 +1565.977189 +1572.332993 +1575.743779 +1575.750605 +1575.972916 +1575.977112 +1575.980109 +1576.974647 +1576.977910 +1576.980841 +1577.974612 +1577.978875 +1577.981705 +1578.973646 +1578.975044 +1578.978641 +1578.981205 +1578.985667 +1579.305713 +1579.973312 +1579.974710 +1579.980038 +1580.973677 +1580.975042 +1580.979371 +1580.981636 +1583.073009 +1583.870677 +1584.902045 +1585.001778 +1585.052494 +1585.146034 +1585.761118 +1585.972740 +1585.978168 +1585.979899 +1586.074971 +1586.077901 +1586.080898 +1586.174238 +1586.175570 +1586.178667 +1586.274737 +1586.276136 +1586.279399 +1586.282330 +1586.375104 +1586.376469 +1586.379466 +1586.476635 +1586.480065 +1586.575270 +1586.576802 +1586.580465 +1586.675336 +1586.676901 +1586.775336 +1586.776668 +1586.875303 +1586.876701 +1586.880331 +1586.977034 +1586.980198 +1587.076901 +1587.080331 +1587.175436 +1587.180098 +1587.275436 +1587.276868 +1587.280331 +1587.376901 +1587.380264 +1587.475469 +1587.476901 +1587.480564 +1587.575402 +1587.576834 +1587.580297 +1587.584859 +1587.676834 +1587.679897 +1587.776734 +1587.780097 +1587.876900 +1587.882794 +1587.976867 +1587.980763 +1588.076734 +1588.079731 +1588.175335 +1588.176767 +1588.180130 +1588.184626 +1588.275535 +1588.277033 +1588.375468 +1588.377033 +1588.387090 +1588.476966 +1588.576900 +1588.580163 +1588.676800 +1588.680229 +1588.779796 +1588.880063 +1588.976999 +1589.080162 +1589.176633 +1589.180329 +1589.276832 +1589.280262 +1589.376899 +1589.380395 +1589.476865 +1589.480029 +1589.576832 +1589.579596 +1589.679496 +1589.775367 +1589.780195 +1589.879629 +1589.882726 +1589.975333 +1589.976698 +1589.979795 +1590.076931 +1590.079995 +1590.084124 +1590.176898 +1590.179895 +1590.279995 +1590.286921 +1590.376898 +1590.379828 +1590.382958 +1590.479628 +1590.576997 +1590.580228 +1590.680227 +1590.776698 +1590.779328 +1590.879661 +1590.884956 +1590.975465 +1590.976897 +1590.979894 +1595.973995 +1595.978923 +1595.986483 +1595.993642 +1595.995807 +1596.002833 +1596.011924 +1596.022147 +1596.032370 +1596.042859 +1596.052450 +1596.062373 +1596.064305 +1596.073995 +1596.085950 +1596.099569 +1596.109293 +1596.111591 +1596.124278 +1596.130372 +1596.140029 +1596.150452 +1596.160808 +1596.170465 +1596.172297 +1596.182653 +1596.194907 +1596.197105 +1596.208460 +1596.220781 +1596.222679 +1596.234501 +1596.246456 +1596.249353 +1596.258810 +1596.268367 +1596.279389 +1596.290512 +1596.302400 +1596.304498 +1596.316652 +1596.331504 +1596.333968 +1596.346988 +1596.358777 +1596.373928 +1596.384984 +1596.387881 +1596.397971 +1596.409026 +1596.411091 +1596.423845 +1596.434967 +1596.449353 +1596.463938 +1596.470831 +1596.480921 +1596.493508 +1596.504930 +1596.507528 +1596.516952 +1596.518617 +1596.531903 +1596.543525 +1596.553182 +1596.563771 +1596.576259 +1596.588646 +1596.590445 +1596.603698 +1596.606229 +1596.615919 +1596.618983 +1596.628973 +1596.631104 +1596.641960 +1596.644424 +1596.655147 +1596.657045 +1596.667867 +1596.669965 +1596.680754 +1596.692176 +1596.696172 +1596.702899 +1596.712889 +1596.715186 +1596.726009 +1596.728173 +1596.740861 +1596.743725 +1596.753148 +1596.764537 +1596.773928 +1596.784584 +1596.787081 +1596.796805 +1596.799236 +1596.811890 +1596.822079 +1596.824244 +1596.835499 +1596.838796 +1596.847154 +1596.849485 +1596.861274 +1596.863538 +1596.873128 +1596.875326 +1596.885716 +1596.887647 +1596.899169 +1596.909725 +1596.922845 +1596.934833 +1596.946954 +1596.956944 +1596.969299 +1596.978223 +1596.984750 +1596.995572 +1596.997504 +1597.007827 +1597.016418 +1597.028273 +1597.038396 +1597.049385 +1597.052449 +1597.061973 +1597.064437 +1597.074993 +1597.085749 +1597.088080 +1597.099135 +1597.101000 +1597.113155 +1597.115652 +1597.126708 +1597.139495 +1597.141726 +1597.151483 +1597.153981 +1597.165169 +1597.168266 +1597.177557 +1597.189678 +1597.192176 +1597.203165 +1597.205695 +1597.214920 +1597.218449 +1597.227574 +1597.232469 +1597.239062 +1597.248819 +1597.251083 +1597.262539 +1597.265302 +1597.274127 +1597.286381 +1597.297137 +1597.300101 +1597.310957 +1597.323411 +1597.325442 +1597.336331 +1597.338729 +1597.348786 +1597.360640 +1597.363937 +1597.372828 +1597.375093 +1597.385649 +1597.387913 +1597.399435 +1597.402132 +1597.412755 +1597.424243 +1597.427473 +1597.436864 +1597.438995 +1597.448652 +1597.451183 +1597.460407 +1597.462738 +1597.472395 +1597.474893 +1597.484283 +1597.486414 +1597.497170 +1597.500201 +1597.510957 +1597.513487 +1597.522245 +1597.524876 +1597.535132 +1597.547287 +1597.550151 +1597.560840 +1597.563471 +1597.574060 +1597.577024 +1597.586381 +1597.595605 +1597.598735 +1597.606661 +1597.616950 +1597.628539 +1597.632235 +1597.639594 +1597.646188 +1597.652182 +1597.654446 +1597.665002 +1597.667233 +1597.680054 +1597.682452 +1597.692175 +1597.694972 +1597.709425 +1597.720680 +1597.731802 +1597.743124 +1597.745488 +1597.755445 +1597.758575 +1597.768998 +1597.778522 +1597.780453 +1597.792874 +1597.804363 +1597.819481 +1597.828206 +1597.832501 +1597.840160 +1597.847686 +1597.860174 +1597.862871 +1597.873660 +1597.886747 +1597.898169 +1597.900800 +1597.910723 +1597.914586 +1597.922545 +1597.924975 +1597.933500 +1597.941492 +1597.953980 +1597.971629 +1597.985815 +1597.997236 +1598.008192 +1598.018315 +1598.027673 +1598.033700 +1598.040227 +1598.055478 +1598.066700 +1598.069198 +1598.079621 +1598.083850 +1598.092574 +1598.104696 +1598.106827 +1598.117416 +1598.129804 +1598.132235 +1598.144056 +1598.155744 +1598.158708 +1598.166467 +1598.168565 +1598.178488 +1598.181485 +1598.191775 +1598.194273 +1598.205628 +1598.222211 +1598.231002 +1598.242657 +1598.252281 +1598.262704 +1598.273493 +1598.301732 +1598.304096 +1598.314386 +1598.317982 +1598.327006 +1598.330569 +1598.341225 +1598.343790 +1598.356477 +1598.359074 +1598.371129 +1598.374692 +1598.384049 +1598.386480 +1598.394739 +1598.397436 +1598.413087 +1598.415951 +1598.427306 +1598.434932 +1598.443357 +1598.456543 +1598.460306 +1598.471595 +1598.474159 +1598.484649 +1598.488678 +1598.497702 +1598.510889 +1598.513386 +1598.523809 +1598.526340 +1598.535731 +1598.538994 +1598.548951 +1598.557409 +1598.568132 +1598.570396 +1598.585914 +1598.595704 +1598.599067 +1598.610323 +1598.617083 +1598.621578 +1598.630203 +1598.641924 +1598.654678 +1598.656943 +1598.669197 +1598.671695 +1598.683616 +1598.685814 +1598.698268 +1598.712121 +1598.722477 +1598.726973 +1598.736397 +1598.738927 +1598.744821 +1598.751781 +1598.756743 +1598.773226 +1598.775824 +1598.787745 +1598.790109 +1598.801132 +1598.803263 +1598.818847 +1598.827439 +1598.831734 +1598.841458 +1598.844189 +1598.856843 +1598.867499 +1598.869730 +1598.883016 +1598.895737 +1598.898168 +1598.910422 +1598.913120 +1598.926440 +1598.928937 +1598.939626 +1598.949883 +1598.964435 +1598.967066 +1598.972993 +1598.978521 +1598.994139 +1599.003796 +1599.016117 +1599.021445 +1599.030968 +1599.050982 +1599.058408 +1599.060938 +1599.071861 +1599.074791 +1599.089410 +1599.098734 +1599.101398 +1599.112920 +1599.115917 +1599.121811 +1599.125341 +1599.129903 +1599.136729 +1599.150882 +1599.163269 +1599.174125 +1599.176256 +1599.202097 +1599.205594 +1599.217015 +1599.229137 +1599.231368 +1599.245287 +1599.259773 +1599.262836 +1599.270695 +1599.273659 +1599.283382 +1599.285547 +1599.297934 +1599.300199 +1599.312886 +1599.317315 +1599.323542 +1599.325673 +1599.338927 +1599.353579 +1599.356809 +1599.362004 +1599.369063 +1599.380985 +1599.392407 +1599.394671 +1599.408590 +1599.411354 +1599.422010 +1599.433499 +1599.439226 +1599.448117 +1599.450249 +1599.463935 +1599.466299 +1599.471760 +1599.479053 +1599.491907 +1599.500965 +1599.504195 +1599.512953 +1599.525240 +1599.544454 +1599.558873 +1599.562803 +1599.573026 +1599.586079 +1599.588344 +1599.601031 +1599.615250 +1599.617581 +1599.633099 +1599.644021 +1599.653945 +1599.657641 +1599.667598 +1599.684980 +1599.692739 +1599.697401 +1599.707425 +1599.710455 +1599.717281 +1599.726339 +1599.740558 +1599.742889 +1599.754378 +1599.759406 +1599.771127 +1599.773492 +1599.784914 +1599.787211 +1599.799466 +1599.803961 +1599.815117 +1599.823175 +1599.829802 +1599.832633 +1599.844854 +1599.853378 +1599.867231 +1599.870361 +1599.880984 +1599.883415 +1599.893938 +1599.896369 +1599.902196 +1599.909056 +1599.912652 +1599.920944 +1599.923974 +1599.937561 +1599.949682 +1599.951813 +1599.956475 +1599.965400 +1599.969329 +1599.979652 +1599.982649 +1599.989509 +1599.994570 +1599.996768 +1600.002096 +1600.010754 +1600.014317 +1600.024807 +1600.027904 +1600.040092 +1600.042622 +1600.046052 +1600.056575 +1600.059039 +1600.064833 +1600.072060 +1600.085679 +1600.088210 +1600.091573 +1600.103695 +1600.108357 +1600.117414 +1600.120178 +1600.126305 +1600.132632 +1600.134763 +1600.138293 +1600.148450 +1600.155809 +1600.165300 +1600.167997 +1600.179319 +1600.182149 +1600.191840 +1600.195070 +1600.206592 +1600.209056 +1600.214117 +1600.223208 +1600.225872 +1600.238493 +1600.241723 +1600.253112 +1600.262269 +1600.266232 +1600.278653 +1600.281483 +1600.294670 +1600.304660 +1600.307890 +1600.320411 +1600.323541 +1600.332998 +1600.341257 +1600.348783 +1600.353511 +1600.363002 +1600.365599 +1600.379219 +1600.382083 +1600.394903 +1600.399865 +1600.407357 +1600.417214 +1600.431666 +1600.434863 +1600.443754 +1600.457773 +1600.460504 +1600.466864 +1600.474024 +1600.476688 +1600.489109 +1600.492172 +1600.495536 +1600.506791 +1600.509555 +1600.516681 +1600.523907 +1600.526371 +1600.535629 +1600.540158 +1600.544487 +1600.554610 +1600.557540 +1600.569761 +1600.572758 +1600.586311 +1600.590973 +1600.603761 +1600.606358 +1600.619678 +1600.623075 +1600.635329 +1600.638459 +1600.649515 +1600.655176 +1600.666298 +1600.671460 +1600.679119 +1600.685412 +1600.693904 +1600.696867 +1600.712352 +1600.717147 +1600.726871 +1600.729768 +1600.735196 +1600.744087 +1600.750081 +1600.771360 +1600.783381 +1600.798133 +1600.806924 +1600.812751 +1600.824673 +1600.828369 +1600.840590 +1600.850947 +1600.855442 +1600.866198 +1600.869028 +1600.880184 +1600.894370 +1600.897167 +1600.903361 +1600.909854 +1600.912452 +1600.920477 +1600.925672 +1600.928436 +1600.940923 +1600.951646 +1600.955042 +1600.966764 +1610.977576 +1610.980840 +1610.987566 +1611.977143 +1611.980539 +1611.987665 +1612.963588 +1612.973046 +1612.977541 +1612.980338 +1613.318134 +1613.975242 +1613.977973 +1613.981037 +1613.990494 +1614.973010 +1614.974442 +1614.979138 +1614.981369 +1615.975107 +1615.978637 +1615.980968 +1620.974370 +1620.977267 +1620.979664 +1620.986158 +1620.994250 +1621.073704 +1621.075036 +1621.077466 +1621.082561 +1621.091253 +1621.174136 +1621.178565 +1621.275868 +1621.279031 +1621.374569 +1621.375901 +1621.378798 +1621.476434 +1621.479264 +1621.575102 +1621.576567 +1621.579630 +1621.589088 +1621.676434 +1621.679331 +1621.776667 +1621.779730 +1621.876500 +1621.879164 +1621.975201 +1621.976666 +1621.979630 +1622.076533 +1622.079364 +1622.176699 +1622.179996 +1622.280163 +1622.376766 +1622.379630 +1622.476599 +1622.480395 +1622.576699 +1622.579463 +1622.679862 +1622.776666 +1622.779496 +1622.880262 +1622.974667 +1622.975999 +1622.979596 +1622.986156 +1623.076565 +1623.079562 +1623.176665 +1623.179662 +1623.291783 +1623.376632 +1623.379262 +1623.476665 +1623.479962 +1623.576631 +1623.579895 +1623.676798 +1623.680061 +1623.776665 +1623.779595 +1623.876598 +1623.879994 +1623.975632 +1624.076298 +1624.080061 +1624.175232 +1624.176664 +1624.179694 +1624.276631 +1624.279661 +1624.380427 +1624.476597 +1624.479628 +1624.576730 +1624.579827 +1624.676664 +1624.679761 +1624.774166 +1624.775565 +1624.785788 +1624.874932 +1624.876231 +1624.880460 +1624.979760 +1625.076630 +1625.179294 +1625.276830 +1625.280326 +1625.376530 +1625.473799 +1625.479360 +1625.575164 +1625.579660 +1625.584588 +1625.679959 +1625.780059 +1625.875164 +1625.876496 +1625.879593 +1625.976496 +1625.978993 +1630.975991 +1630.986214 +1630.995172 +1631.004563 +1631.006161 +1631.028239 +1631.035498 +1631.043324 +1631.048286 +1631.057277 +1631.067267 +1631.077856 +1631.093607 +1631.104696 +1631.127540 +1631.140260 +1631.152148 +1631.176757 +1631.178788 +1631.200766 +1631.223677 +1631.235199 +1631.247520 +1631.260939 +1631.274060 +1631.295871 +1631.304163 +1631.307593 +1631.315518 +1631.328239 +1631.341925 +1631.352881 +1631.364702 +1631.377789 +1631.390776 +1631.404995 +1631.415418 +1631.417516 +1631.427206 +1631.448818 +1631.451049 +1631.460939 +1631.463703 +1631.474193 +1631.485215 +1631.497170 +1631.508958 +1631.523843 +1631.526407 +1631.534133 +1631.535997 +1631.546920 +1631.548984 +1631.558908 +1631.600000 +1631.612454 +1631.625341 +1631.635664 +1631.647286 +1631.649550 +1631.658974 +1631.669697 +1631.682418 +1631.684216 +1631.695271 +1631.710689 +1631.721112 +1631.733733 +1631.743523 +1631.754812 +1631.757409 +1631.766766 +1631.817382 +1631.830303 +1631.832401 +1631.844156 +1631.846320 +1631.856577 +1631.872461 +1631.874625 +1631.886680 +1631.888644 +1631.898601 +1631.900766 +1631.911655 +1631.924209 +1631.935198 +1631.946287 +1631.972694 +1631.974858 +1632.014951 +1632.026839 +1632.029603 +1632.039660 +1632.052314 +1632.083616 +1632.096536 +1632.099800 +1632.121012 +1632.131901 +1632.140293 +1632.163702 +1632.176290 +1632.190576 +1632.205261 +1632.219979 +1632.226806 +1632.245554 +1632.248251 +1632.256843 +1632.269696 +1632.273592 +1632.279653 +1632.293206 +1632.295637 +1632.307991 +1632.332300 +1632.334864 +1632.344788 +1632.347252 +1632.365167 +1632.378154 +1632.393106 +1632.403862 +1632.406260 +1632.414751 +1632.424009 +1632.426273 +1632.437895 +1632.439826 +1632.452480 +1632.456643 +1632.463169 +1632.465434 +1632.476889 +1632.479153 +1632.489909 +1632.492174 +1632.505194 +1632.515883 +1632.517848 +1632.529503 +1632.532533 +1632.541458 +1632.544521 +1632.553213 +1632.555344 +1632.564934 +1632.567032 +1632.576622 +1632.578854 +1632.592440 +1632.601165 +1632.606959 +1632.610122 +1632.619546 +1632.623376 +1632.633732 +1632.635663 +1632.647052 +1632.650315 +1632.658241 +1632.660039 +1632.672027 +1632.675823 +1632.681717 +1632.685180 +1632.692506 +1632.694704 +1632.704095 +1632.706259 +1632.719579 +1632.722277 +1632.730069 +1632.733798 +1632.742190 +1632.751681 +1632.753712 +1632.768097 +1632.777088 +1632.779786 +1632.788111 +1632.791407 +1632.800698 +1632.803129 +1632.812420 +1632.816149 +1632.822576 +1632.825340 +1632.833998 +1632.848051 +1632.850548 +1632.860572 +1632.862636 +1632.874025 +1632.876256 +1632.887345 +1632.891208 +1632.902030 +1632.904794 +1632.916449 +1632.918680 +1632.923775 +1632.931900 +1632.934664 +1632.960871 +1632.963002 +1632.967931 +1632.975690 +1632.978287 +1632.990208 +1632.997534 +1633.004494 +1633.006625 +1633.016715 +1633.018880 +1633.024108 +1633.032166 +1633.035929 +1633.048450 +1633.056509 +1633.060904 +1633.063002 +1633.068930 +1633.074025 +1633.076322 +1633.086412 +1633.088943 +1633.095969 +1633.098600 +1633.110388 +1633.112453 +1633.123542 +1633.130268 +1633.134031 +1633.147218 +1633.152846 +1633.159539 +1633.171460 +1633.173658 +1633.185280 +1633.187811 +1633.196835 +1633.198999 +1633.209023 +1633.218014 +1633.222043 +1633.224407 +1633.233665 +1633.235962 +1633.239426 +1633.246652 +1633.249449 +1633.252712 +1633.260937 +1633.263169 +1633.275889 +1633.278154 +1633.289176 +1633.291207 +1633.303728 +1633.305992 +1633.316182 +1633.318213 +1633.321077 +1633.325839 +1633.331134 +1633.333665 +1633.338593 +1633.344987 +1633.349848 +1633.357341 +1633.359206 +1633.362070 +1633.371527 +1633.373958 +1633.383148 +1633.385380 +1633.388044 +1633.396968 +1633.399066 +1633.404161 +1633.410355 +1633.423941 +1633.425972 +1633.429902 +1633.438227 +1633.440691 +1633.444221 +1633.449182 +1633.451946 +1633.454843 +1633.463668 +1633.466032 +1633.475822 +1633.477987 +1633.489609 +1633.491806 +1633.499066 +1633.504927 +1633.506891 +1633.509156 +1633.518846 +1633.520844 +1633.523841 +1633.531966 +1633.536761 +1633.542123 +1633.547151 +1633.549216 +1633.559805 +1633.561969 +1633.564101 +1633.575722 +1633.577987 +1633.584181 +1633.590008 +1633.598866 +1633.601030 +1633.611187 +1633.613251 +1633.617314 +1633.623808 +1633.629136 +1633.637893 +1633.648483 +1633.650647 +1633.652712 +1633.659605 +1633.673691 +1633.679752 +1633.681916 +1633.685579 +1633.693871 +1633.695802 +1633.698466 +1633.710687 +1633.713085 +1633.722808 +1633.725006 +1633.733764 +1633.737560 +1633.739791 +1633.751680 +1633.753644 +1633.756441 +1633.763701 +1633.767464 +1633.769595 +1633.778086 +1633.780417 +1633.783048 +1633.793171 +1633.796335 +1633.803827 +1633.806691 +1633.815549 +1633.821510 +1633.827670 +1633.829868 +1633.842522 +1633.851313 +1633.866398 +1633.876688 +1633.879418 +1633.889875 +1633.901563 +1633.903494 +1633.917280 +1633.919645 +1633.928935 +1633.931466 +1633.935629 +1633.940890 +1633.972792 +1633.976022 +1633.984946 +1633.987077 +1634.000264 +1634.002429 +1634.005226 +1634.015416 +1634.023940 +1634.027803 +1634.032565 +1634.041889 +1634.043887 +1634.058006 +1634.064034 +1634.070927 +1634.080217 +1634.085845 +1634.104127 +1634.108323 +1634.113251 +1634.115316 +1634.128003 +1634.130067 +1634.138526 +1634.143221 +1634.145186 +1634.147883 +1634.151613 +1634.157906 +1634.163234 +1634.170161 +1634.175589 +1634.185645 +1634.199465 +1634.201796 +1634.215715 +1634.229568 +1634.232598 +1634.242921 +1634.245785 +1634.254276 +1634.256807 +1634.267663 +1634.270194 +1634.281150 +1634.283847 +1634.289441 +1634.294836 +1634.297800 +1634.309554 +1634.312918 +1634.322541 +1634.336095 +1634.338093 +1634.347017 +1634.350314 +1634.365665 +1634.368063 +1634.392205 +1634.406957 +1634.412851 +1634.423307 +1634.427203 +1634.435062 +1634.438026 +1634.445685 +1634.455342 +1634.467230 +1634.488975 +1634.492771 +1634.495468 +1634.507290 +1634.518712 +1634.520976 +1634.531499 +1634.534263 +1634.541356 +1634.543887 +1634.549681 +1634.552545 +1634.564433 +1634.576720 +1634.590074 +1634.592371 +1634.603494 +1634.634696 +1634.637260 +1634.650247 +1634.655375 +1634.663001 +1634.665232 +1634.668395 +1634.677653 +1634.687043 +1634.692571 +1634.699264 +1634.704759 +1634.715049 +1634.717779 +1634.726537 +1634.729834 +1634.738991 +1634.741322 +1634.747183 +1634.754842 +1634.760070 +1634.764732 +1634.766797 +1634.779750 +1634.782081 +1634.794136 +1634.803693 +1634.809654 +1634.814782 +1634.819977 +1634.823007 +1634.837160 +1634.850580 +1634.853210 +1634.864599 +1634.867629 +1634.873490 +1634.877752 +1634.880849 +1634.894036 +1634.909221 +1634.914782 +1634.921309 +1634.923673 +1634.935828 +1634.941722 +1634.945851 +1634.951312 +1634.953410 +1634.966264 +1634.968495 +1634.977985 +1634.982081 +1634.988242 +1634.992171 +1634.999564 +1635.011785 +1635.017146 +1635.026537 +1635.039224 +1635.041555 +1635.052744 +1635.055741 +1635.060303 +1635.070792 +1635.077919 +1635.085311 +1635.090140 +1635.092504 +1635.103493 +1635.117146 +1635.119644 +1635.147449 +1635.150246 +1635.176120 +1635.188275 +1635.190573 +1635.201162 +1635.218511 +1635.224239 +1635.231698 +1635.252677 +1635.260836 +1635.263633 +1635.272257 +1635.279484 +1635.282048 +1635.294935 +1635.297499 +1635.308721 +1635.324638 +1635.327336 +1635.339224 +1635.341422 +1635.355274 +1635.358138 +1635.370093 +1635.407522 +1635.421708 +1635.430366 +1635.435394 +1635.446183 +1635.462201 +1635.473356 +1635.485044 +1635.487642 +1635.500496 +1635.502760 +1635.515314 +1635.521841 +1635.529700 +1635.532464 +1635.544152 +1635.558271 +1635.569493 +1635.575354 +1635.586443 +1635.601461 +1635.603992 +1635.617312 +1635.620309 +1635.630865 +1635.633529 +1635.646616 +1635.661368 +1635.677718 +1635.680216 +1635.692004 +1635.708987 +1635.718111 +1635.723373 +1635.739323 +1635.753509 +1635.769893 +1635.785910 +1635.789773 +1635.799963 +1635.807322 +1635.813316 +1635.819610 +1635.828734 +1635.843053 +1635.849613 +1635.855207 +1635.859470 +1635.872124 +1635.883146 +1635.885877 +1635.898264 +1635.913149 +1635.928567 +1635.932430 +1635.943918 +1635.947149 +1635.959303 +1645.976276 +1645.979706 +1646.115304 +1646.122463 +1646.972579 +1646.973977 +1646.976775 +1646.980304 +1647.972644 +1647.974010 +1647.977639 +1648.121895 +1648.972643 +1648.976673 +1648.979237 +1649.125057 +1649.971610 +1649.973675 +1649.979935 +1650.129885 +1650.811536 +1650.972641 +1650.977203 +1650.979601 +1651.366614 +1651.923623 +1651.960719 +1652.585294 +1652.710702 +1653.018693 +1653.323355 +1653.368710 +1653.394051 +1654.163581 +1654.235608 +1654.509368 +1654.528349 +1654.544965 +1654.806737 +1655.099111 +1655.407768 +1655.429047 +1655.875700 +1655.910166 +1655.952923 +1655.978564 +1655.980628 +1656.072736 +1656.074101 +1656.076765 +1656.080995 +1656.173102 +1656.174534 +1656.177298 +1656.273469 +1656.274900 +1656.277664 +1656.373668 +1656.375167 +1656.378031 +1656.473801 +1656.475233 +1656.478030 +1656.573968 +1656.575333 +1656.577997 +1656.581427 +1656.673934 +1656.678030 +1656.682159 +1656.774101 +1656.775599 +1656.778630 +1656.874134 +1656.875533 +1656.878230 +1656.882859 +1656.975532 +1657.074100 +1657.075466 +1657.077897 +1657.174067 +1657.175499 +1657.177930 +1657.182325 +1657.274167 +1657.275632 +1657.278329 +1657.374133 +1657.375699 +1657.474100 +1657.475465 +1657.478296 +1657.575632 +1657.674266 +1657.675732 +1657.678562 +1657.774266 +1657.775731 +1657.874233 +1657.875631 +1657.878595 +1657.974133 +1657.975498 +1658.174233 +1658.177829 +1658.275631 +1658.278928 +1658.375598 +1658.377995 +1658.474099 +1658.477929 +1658.482224 +1658.575531 +1658.577762 +1658.675664 +1658.775564 +1658.778661 +1658.875564 +1658.877862 +1658.881858 +1658.975630 +1658.978561 +1659.074198 +1659.075564 +1659.078061 +1659.175763 +1659.178061 +1659.182656 +1659.278128 +1659.283422 +1659.374198 +1659.375630 +1659.475563 +1659.477761 +1659.482257 +1659.574231 +1659.578460 +1659.674198 +1659.677894 +1659.681524 +1659.774164 +1659.775596 +1659.875596 +1659.878027 +1659.975596 +1659.977994 +1660.075663 +1660.077927 +1660.175529 +1660.180857 +1660.275662 +1660.278027 +1660.282123 +1660.375562 +1660.377993 +1660.381590 +1660.474230 +1660.475662 +1660.574230 +1660.575629 +1660.581523 +1660.675629 +1660.678193 +1660.774130 +1660.775529 +1660.777860 +1660.782422 +1660.874163 +1660.875695 +1660.878459 +1660.975528 +1660.981622 +1663.093408 +1663.427907 +1664.107926 +1664.678155 +1664.770763 +1664.799567 +1664.927006 +1665.170130 +1665.975290 +1665.978853 +1665.985547 +1665.994105 +1665.996403 +1666.003229 +1666.012620 +1666.023309 +1666.032267 +1666.034065 +1666.043788 +1666.051780 +1666.053445 +1666.065433 +1666.076656 +1666.079153 +1666.088777 +1666.090741 +1666.099200 +1666.108390 +1666.110488 +1666.119113 +1666.129836 +1666.131800 +1666.140958 +1666.143056 +1666.153912 +1666.163535 +1666.173792 +1666.182982 +1666.184914 +1666.193705 +1666.195503 +1666.204095 +1666.206193 +1666.215883 +1666.217681 +1666.228703 +1666.231234 +1666.240458 +1666.246452 +1666.255676 +1666.259939 +1666.269995 +1666.271927 +1666.282383 +1666.292473 +1666.294537 +1666.303029 +1666.316282 +1666.326372 +1666.328270 +1666.339126 +1666.341624 +1666.349016 +1666.359273 +1666.361137 +1666.370894 +1666.372859 +1666.385047 +1666.387711 +1666.396569 +1666.398933 +1666.407091 +1666.416249 +1666.418513 +1666.428570 +1666.430568 +1666.438793 +1666.441024 +1666.450681 +1666.452446 +1666.463035 +1666.465067 +1666.475190 +1666.486745 +1666.488976 +1666.497235 +1666.509322 +1666.511687 +1666.522276 +1666.525073 +1666.533232 +1666.543888 +1666.547085 +1666.554810 +1666.565033 +1666.567264 +1666.575589 +1666.577787 +1666.588144 +1666.591607 +1666.600897 +1666.615649 +1666.617914 +1666.628703 +1666.638560 +1666.640624 +1666.650748 +1666.652812 +1666.661603 +1666.671693 +1666.673958 +1666.681717 +1666.689742 +1666.692006 +1666.701397 +1666.712785 +1666.715017 +1666.717747 +1666.727238 +1666.730468 +1666.732765 +1666.740524 +1666.742822 +1666.751780 +1666.753911 +1666.762769 +1666.764733 +1666.775190 +1666.777254 +1666.787011 +1666.788909 +1666.800198 +1666.802695 +1666.810554 +1666.813285 +1666.821310 +1666.833465 +1666.838992 +1666.846851 +1666.849282 +1666.858107 +1666.860704 +1666.869762 +1666.872526 +1666.879852 +1666.889642 +1666.891906 +1666.902229 +1666.916914 +1666.919345 +1666.932166 +1666.941590 +1666.943688 +1666.953378 +1666.955542 +1666.966232 +1666.968196 +1666.979285 +1666.982149 +1666.991740 +1666.995369 +1667.007091 +1667.009921 +1667.017614 +1667.020378 +1667.031000 +1667.033298 +1667.042722 +1667.045253 +1667.052978 +1667.059239 +1667.069761 +1667.071726 +1667.082948 +1667.084946 +1667.094770 +1667.097733 +1667.104627 +1667.106991 +1667.114716 +1667.117147 +1667.126005 +1667.128569 +1667.136528 +1667.141190 +1667.146851 +1667.148949 +1667.159239 +1667.173158 +1667.179785 +1667.186578 +1667.188942 +1667.199698 +1667.202529 +1667.210720 +1667.213151 +1667.224074 +1667.225938 +1667.237627 +1667.239858 +1667.249781 +1667.251879 +1667.262269 +1667.264533 +1667.274490 +1667.276821 +1667.289408 +1667.292538 +1667.299864 +1667.307324 +1667.309921 +1667.319811 +1667.333198 +1667.335429 +1667.346218 +1667.349415 +1667.352345 +1667.355176 +1667.363767 +1667.365865 +1667.376022 +1667.378353 +1667.384580 +1667.387843 +1667.390440 +1667.399165 +1667.401230 +1667.411686 +1667.413684 +1667.425572 +1667.431233 +1667.439924 +1667.442089 +1667.452645 +1667.455342 +1667.461669 +1667.467097 +1667.474323 +1667.477020 +1667.482915 +1667.491073 +1667.496401 +1667.498732 +1667.502129 +1667.508622 +1667.510853 +1667.520477 +1667.522408 +1667.526071 +1667.533198 +1667.535096 +1667.538859 +1667.547117 +1667.554243 +1667.558173 +1667.560270 +1667.565199 +1667.573557 +1667.575755 +1667.581016 +1667.589275 +1667.598066 +1667.600597 +1667.610287 +1667.612851 +1667.623008 +1667.625439 +1667.633231 +1667.640324 +1667.646184 +1667.648416 +1667.660970 +1667.664200 +1667.671293 +1667.673923 +1667.683281 +1667.689375 +1667.702295 +1667.704160 +1667.716348 +1667.718445 +1667.732431 +1667.740790 +1667.744719 +1667.750813 +1667.753644 +1667.762601 +1667.765831 +1667.773857 +1667.775721 +1667.786344 +1667.791739 +1667.800930 +1667.803127 +1667.816381 +1667.818212 +1667.832931 +1667.839891 +1667.846284 +1667.849781 +1667.852278 +1667.860137 +1667.862002 +1667.881083 +1667.887576 +1667.890174 +1667.896933 +1667.899098 +1667.907789 +1667.910753 +1667.921376 +1667.946284 +1667.948249 +1667.952445 +1667.960570 +1667.963200 +1667.968262 +1667.979151 +1667.981915 +1667.990340 +1667.992471 +1668.001828 +1668.004526 +1668.022907 +1668.026837 +1668.029134 +1668.038425 +1668.040523 +1668.052511 +1668.054542 +1668.057739 +1668.066597 +1668.069794 +1668.078718 +1668.084313 +1668.094169 +1668.096034 +1668.110153 +1668.112684 +1668.121509 +1668.124905 +1668.130133 +1668.134163 +1668.136227 +1668.147882 +1668.149914 +1668.152977 +1668.163500 +1668.165764 +1668.178252 +1668.182348 +1668.189141 +1668.201662 +1668.203926 +1668.216414 +1668.218512 +1668.229600 +1668.231765 +1668.242521 +1668.252744 +1668.255708 +1668.260203 +1668.271558 +1668.277819 +1668.279784 +1668.291938 +1668.294003 +1668.304326 +1668.307622 +1668.310153 +1668.320143 +1668.346217 +1668.359704 +1668.361801 +1668.370293 +1668.384346 +1668.401528 +1668.420176 +1668.424072 +1668.431165 +1668.442754 +1668.444552 +1668.447083 +1668.458671 +1668.471225 +1668.473223 +1668.483613 +1668.495967 +1668.498798 +1668.506723 +1668.519810 +1668.522008 +1668.524572 +1668.528501 +1668.539057 +1668.551778 +1668.554875 +1668.566430 +1668.577419 +1668.579550 +1668.592271 +1668.594835 +1668.612217 +1668.623273 +1668.637559 +1668.643120 +1668.651112 +1668.653077 +1668.658005 +1668.665198 +1668.691305 +1668.703992 +1668.706157 +1668.717712 +1668.733463 +1668.736093 +1668.745018 +1668.749713 +1668.759237 +1668.768195 +1668.774222 +1668.788275 +1668.798431 +1668.809886 +1668.825904 +1668.838957 +1668.860402 +1668.867129 +1668.872091 +1668.883646 +1668.887342 +1668.897066 +1668.902294 +1668.924072 +1668.948947 +1668.963000 +1668.983979 +1668.987375 +1668.999330 +1669.016280 +1669.031298 +1669.044485 +1669.049813 +1669.058604 +1669.075054 +1669.087408 +1669.132330 +1669.146583 +1669.191271 +1669.197298 +1669.231797 +1669.234028 +1669.246915 +1669.262000 +1669.326869 +1669.345051 +1669.353109 +1669.355607 +1669.417212 +1669.432263 +1669.459902 +1669.520109 +1669.522273 +1669.534128 +1669.540455 +1669.548514 +1669.564498 +1669.567861 +1669.576585 +1669.582446 +1669.590205 +1669.606789 +1669.609453 +1669.614281 +1669.622140 +1669.624571 +1669.635593 +1669.637558 +1669.650445 +1669.664264 +1669.666529 +1669.694867 +1669.701261 +1669.721973 +1669.726003 +1669.736792 +1669.739089 +1669.751777 +1669.763698 +1669.765929 +1669.790638 +1669.796099 +1669.813548 +1669.820974 +1669.837824 +1669.844617 +1669.855773 +1669.879416 +1669.896199 +1669.910818 +1669.926535 +1669.944351 +1669.956805 +1669.971523 +1670.005589 +1670.017211 +1670.022672 +1670.033661 +1670.040121 +1670.048113 +1670.053608 +1670.067161 +1670.080881 +1670.094500 +1670.096998 +1670.133361 +1670.135826 +1670.148546 +1670.159069 +1670.179482 +1670.205589 +1670.211017 +1670.214647 +1670.241387 +1670.244051 +1670.257371 +1670.273321 +1670.287607 +1670.302592 +1670.306555 +1670.321373 +1670.332962 +1670.348779 +1670.368526 +1670.378483 +1670.394400 +1670.398629 +1670.409452 +1670.439189 +1670.442852 +1670.453474 +1670.457104 +1670.484577 +1670.488406 +1670.496764 +1670.523671 +1670.543518 +1670.573421 +1670.587707 +1670.590804 +1670.602192 +1670.619475 +1670.634460 +1670.649711 +1670.662965 +1670.680813 +1670.692302 +1670.708552 +1670.724170 +1670.739421 +1670.754573 +1670.769092 +1670.785575 +1670.800660 +1670.816145 +1670.831563 +1670.846980 +1670.850976 +1670.862165 +1670.867027 +1670.877084 +1670.892801 +1670.907886 +1670.915046 +1670.923304 +1670.938189 +1670.949678 +1676.251637 +1680.976308 +1680.979105 +1681.130287 +1681.972777 +1681.974175 +1681.977106 +1681.979903 +1682.972942 +1682.974308 +1682.976772 +1682.980035 +1683.972975 +1683.974407 +1683.977071 +1683.979901 +1684.972974 +1684.974339 +1684.978102 +1684.981032 +1685.972939 +1685.974338 +1685.978101 +1685.980365 +1690.972435 +1690.973800 +1690.977097 +1690.978995 +1690.980826 +1691.077396 +1691.175065 +1691.178096 +1691.273800 +1691.275232 +1691.278096 +1691.374299 +1691.375798 +1691.378162 +1691.475864 +1691.478861 +1691.574665 +1691.578828 +1691.676064 +1691.678894 +1691.779227 +1691.876230 +1691.878894 +1691.974532 +1691.975897 +1691.978628 +1691.993646 +1692.076130 +1692.079294 +1692.176263 +1692.179260 +1692.276463 +1692.278960 +1692.379759 +1692.476396 +1692.479060 +1692.575896 +1692.578927 +1692.674431 +1692.675996 +1692.776096 +1692.780092 +1692.876362 +1692.879426 +1692.976329 +1692.978826 +1693.076096 +1693.079293 +1693.174697 +1693.176129 +1693.179825 +1693.278626 +1693.374863 +1693.378859 +1693.386219 +1693.474797 +1693.476262 +1693.576295 +1693.579225 +1693.776395 +1693.779292 +1693.876328 +1693.878992 +1693.979425 +1694.076428 +1694.079691 +1694.180290 +1694.279225 +1694.376561 +1694.379391 +1694.479824 +1694.574895 +1694.579025 +1694.674629 +1694.676061 +1694.680956 +1694.774496 +1694.785951 +1694.874962 +1694.876394 +1694.879124 +1694.976627 +1694.979424 +1695.076493 +1695.078824 +1695.176327 +1695.178858 +1695.274662 +1695.276060 +1695.279290 +1695.378924 +1695.476393 +1695.576426 +1695.579556 +1695.676493 +1695.678957 +1695.776359 +1695.779390 +1695.874794 +1695.876160 +1695.879157 +1695.976126 +1695.978657 +1700.901463 +1700.978885 +1700.980350 +1700.985512 +1700.987310 +1700.993937 +1701.002961 +1701.004693 +1701.011719 +1701.014116 +1701.022575 +1701.036228 +1701.046018 +1701.056774 +1701.059005 +1701.086611 +1701.096867 +1701.098765 +1701.108955 +1701.110720 +1701.121076 +1701.123973 +1701.133497 +1701.149980 +1701.152545 +1701.162468 +1701.164932 +1701.173990 +1701.185445 +1701.187210 +1701.196933 +1701.208289 +1701.209987 +1701.221309 +1701.234096 +1701.245718 +1701.247583 +1701.258871 +1701.261302 +1701.270626 +1701.272724 +1701.284179 +1701.295102 +1701.297100 +1701.307290 +1701.317713 +1701.319677 +1701.330067 +1701.343720 +1701.354442 +1701.364832 +1701.366930 +1701.377253 +1701.390307 +1701.404925 +1701.407323 +1701.417579 +1701.419611 +1701.430833 +1701.432797 +1701.444119 +1701.446084 +1701.457473 +1701.459804 +1701.470893 +1701.473323 +1701.483580 +1701.491938 +1701.501462 +1701.503393 +1701.514282 +1701.516414 +1701.527902 +1701.529867 +1701.540157 +1701.552244 +1701.554376 +1701.565864 +1701.568362 +1701.579251 +1701.583480 +1701.592404 +1701.595135 +1701.605225 +1701.615781 +1701.622974 +1701.634429 +1701.648481 +1701.661135 +1701.663067 +1701.673756 +1701.676087 +1701.685911 +1701.688208 +1701.697832 +1701.699797 +1701.709587 +1701.711818 +1701.725138 +1701.734429 +1701.736593 +1701.746383 +1701.757606 +1701.759637 +1701.770559 +1701.772724 +1701.783380 +1701.785677 +1701.795734 +1701.799630 +1701.808421 +1701.819943 +1701.831199 +1701.833763 +1701.844818 +1701.847083 +1701.858038 +1701.861169 +1701.872424 +1701.879916 +1701.891405 +1701.893470 +1701.905058 +1701.907456 +1701.916080 +1701.930033 +1701.932431 +1701.941422 +1701.943653 +1701.955008 +1701.957039 +1701.967429 +1701.970159 +1701.982747 +1701.992271 +1702.001029 +1702.012983 +1702.015048 +1702.025737 +1702.027768 +1702.038991 +1702.042087 +1702.049047 +1702.054875 +1702.056773 +1702.067962 +1702.070059 +1702.082147 +1702.084245 +1702.094701 +1702.097032 +1702.107755 +1702.118611 +1702.121341 +1702.129700 +1702.141088 +1702.155774 +1702.167628 +1702.170426 +1702.178651 +1702.189440 +1702.191771 +1702.201628 +1702.203925 +1702.217212 +1702.229333 +1702.243652 +1702.256240 +1702.258704 +1702.270259 +1702.282347 +1702.295234 +1702.297765 +1702.308021 +1702.321441 +1702.333729 +1702.348114 +1702.350512 +1702.361601 +1702.376386 +1702.414914 +1702.417478 +1702.440355 +1702.446150 +1702.453809 +1702.460702 +1702.471524 +1702.484911 +1702.499263 +1702.530066 +1702.545350 +1702.550079 +1702.561368 +1702.575320 +1702.577884 +1702.587242 +1702.591771 +1702.639822 +1702.642753 +1702.654608 +1702.658737 +1702.667428 +1702.669693 +1702.695533 +1702.706556 +1702.717878 +1702.754508 +1702.781614 +1702.793469 +1702.817844 +1702.827535 +1702.831730 +1702.847248 +1702.854541 +1702.857704 +1702.865530 +1702.877018 +1702.926769 +1702.951277 +1702.965397 +1702.978350 +1703.005656 +1703.059203 +1703.071057 +1703.084710 +1703.112583 +1703.140188 +1703.150944 +1703.175853 +1703.188174 +1703.216812 +1703.232696 +1703.234960 +1703.258736 +1703.285043 +1703.307787 +1703.322739 +1703.336026 +1703.338257 +1703.352309 +1703.381014 +1703.398230 +1703.443118 +1703.469825 +1703.523871 +1703.568593 +1703.596099 +1703.598696 +1703.609618 +1703.644483 +1703.670624 +1703.781080 +1703.798329 +1703.824537 +1703.842685 +1703.876917 +1703.935958 +1704.065595 +1704.093201 +1704.133394 +1704.207320 +1704.233927 +1704.278282 +1704.423204 +1704.425402 +1704.432195 +1704.440320 +1704.442784 +1704.446481 +1704.450776 +1704.453141 +1704.463464 +1704.465828 +1704.468725 +1704.477416 +1704.480480 +1704.489338 +1704.491236 +1704.494166 +1704.503091 +1704.505788 +1704.518975 +1704.521006 +1704.524303 +1704.534659 +1704.537490 +1704.545815 +1704.556038 +1704.561898 +1704.564496 +1704.576151 +1704.580913 +1704.585242 +1704.593067 +1704.595332 +1704.607386 +1704.609584 +1704.612181 +1704.623703 +1704.626101 +1704.634692 +1704.651009 +1704.653840 +1704.663197 +1704.665794 +1704.676917 +1704.678748 +1704.688672 +1704.702658 +1704.705555 +1704.722338 +1704.736457 +1704.747379 +1704.751842 +1704.765262 +1704.767626 +1704.775252 +1704.781812 +1704.786873 +1704.797396 +1704.799627 +1704.810017 +1704.812514 +1704.825035 +1704.827100 +1704.829830 +1704.837556 +1704.843350 +1704.850976 +1704.868325 +1704.881778 +1704.894998 +1704.909750 +1704.911848 +1704.923803 +1704.928765 +1704.938821 +1704.941319 +1704.953173 +1704.955937 +1704.966627 +1704.993000 +1705.008851 +1705.011082 +1705.022171 +1705.024702 +1705.035924 +1705.042251 +1705.049577 +1705.052241 +1705.064229 +1705.069324 +1705.080280 +1705.082611 +1705.093366 +1705.095764 +1705.103323 +1705.106553 +1705.118208 +1705.123703 +1705.132261 +1705.148445 +1705.161765 +1705.168758 +1705.177516 +1705.179613 +1705.194965 +1705.206720 +1705.220939 +1705.223403 +1705.234758 +1705.237356 +1705.244249 +1705.250676 +1705.261531 +1705.272221 +1705.277682 +1705.280179 +1705.292867 +1705.317742 +1705.319773 +1705.332127 +1705.335424 +1705.342151 +1705.345015 +1705.348977 +1705.355038 +1705.357635 +1705.361332 +1705.370556 +1705.377815 +1705.385374 +1705.390636 +1705.400193 +1705.416976 +1705.426833 +1705.429597 +1705.434159 +1705.441951 +1705.444681 +1705.449377 +1705.459333 +1705.470655 +1705.479713 +1705.487039 +1705.502157 +1705.505487 +1705.516443 +1705.519973 +1705.528264 +1705.541485 +1705.547312 +1705.557568 +1705.563962 +1705.573419 +1705.580645 +1705.591102 +1705.601658 +1705.616809 +1705.618741 +1705.625301 +1705.632860 +1705.635424 +1705.640985 +1705.646546 +1705.657868 +1705.673686 +1705.676649 +1705.684308 +1705.691701 +1705.699959 +1705.707119 +1705.715743 +1705.730795 +1705.735357 +1705.745314 +1705.748044 +1705.760499 +1705.763962 +1705.775317 +1705.778214 +1705.785107 +1705.790302 +1705.794931 +1705.819406 +1705.835424 +1705.839586 +1705.851674 +1705.866259 +1705.869356 +1705.877049 +1705.885340 +1705.902057 +1705.909017 +1705.924768 +1705.928597 +1705.934291 +1705.938221 +1705.940985 +1705.969956 +1705.973485 +1715.973209 +1715.977205 +1715.980102 +1716.973574 +1716.974940 +1716.977604 +1716.980501 +1717.974539 +1717.980533 +1718.270310 +1718.973706 +1718.975137 +1718.978134 +1719.973571 +1719.974937 +1719.977534 +1719.981463 +1720.973870 +1720.979997 +1725.972799 +1725.978694 +1725.980225 +1726.073698 +1726.075097 +1726.077794 +1726.089349 +1726.175663 +1726.178327 +1726.275730 +1726.280791 +1726.374397 +1726.375696 +1726.378393 +1726.474730 +1726.476162 +1726.478959 +1726.574730 +1726.576162 +1726.579059 +1726.673931 +1726.675230 +1726.775096 +1726.776495 +1726.779226 +1726.874996 +1726.876362 +1726.879991 +1726.976561 +1726.979692 +1727.079558 +1727.175196 +1727.176661 +1727.180291 +1727.274996 +1727.276361 +1727.279325 +1727.376628 +1727.379525 +1727.475395 +1727.476794 +1727.479624 +1727.575329 +1727.576827 +1727.580024 +1727.675062 +1727.676427 +1727.679458 +1727.776794 +1727.779558 +1727.875395 +1727.879791 +1727.976927 +1727.980290 +1728.075328 +1728.076860 +1728.080356 +1728.175095 +1728.176427 +1728.178924 +1728.273696 +1728.376260 +1728.476760 +1728.480323 +1728.579424 +1728.675228 +1728.676660 +1728.679723 +1728.774961 +1728.776426 +1728.779224 +1728.879823 +1728.975194 +1728.976559 +1728.979756 +1729.076759 +1729.079523 +1729.176626 +1729.179157 +1729.276859 +1729.279589 +1729.375060 +1729.380588 +1729.479423 +1729.490145 +1729.576725 +1729.579123 +1729.778823 +1729.795673 +1729.875460 +1729.876858 +1729.880455 +1729.976525 +1729.979922 +1729.992709 +1730.075193 +1730.079189 +1730.176791 +1730.179522 +1730.374294 +1730.477024 +1730.482419 +1730.576891 +1730.579488 +1730.591509 +1730.676891 +1730.679488 +1730.689911 +1730.775425 +1730.776824 +1730.779455 +1730.980587 +1732.586979 +1735.973089 +1735.974421 +1735.977019 +1735.979449 +1735.981314 +1735.985310 +1735.986742 +1735.992703 +1735.994168 +1736.001461 +1736.018311 +1736.029166 +1736.031664 +1736.038823 +1736.054608 +1736.065597 +1736.080049 +1736.086542 +1736.095267 +1736.107055 +1736.108986 +1736.120941 +1736.130465 +1736.141321 +1736.143752 +1736.154607 +1736.162599 +1736.172057 +1736.185310 +1736.195700 +1736.207022 +1736.220208 +1736.233295 +1736.249013 +1736.258437 +1736.261001 +1736.270858 +1736.273122 +1736.286709 +1736.296266 +1736.307388 +1736.309919 +1736.319709 +1736.331530 +1736.333362 +1736.344318 +1736.346415 +1736.356306 +1736.359136 +1736.370092 +1736.383312 +1736.385443 +1736.396898 +1736.399929 +1736.408087 +1736.410518 +1736.419709 +1736.421474 +1736.433728 +1736.437291 +1736.445683 +1736.458470 +1736.469725 +1736.471723 +1736.482812 +1736.485077 +1736.494834 +1736.506688 +1736.508586 +1736.530997 +1736.532862 +1736.555972 +1736.569692 +1736.582013 +1736.595366 +1736.598230 +1736.608986 +1736.617777 +1736.628633 +1736.641753 +1736.654207 +1736.656538 +1736.674487 +1736.685476 +1736.699362 +1736.702692 +1736.713848 +1736.719942 +1736.730598 +1736.732529 +1736.743684 +1736.745816 +1736.757904 +1736.760434 +1736.770191 +1736.781846 +1736.794134 +1736.796165 +1736.809485 +1736.822006 +1736.835726 +1736.837890 +1736.849345 +1736.851443 +1736.861866 +1736.864164 +1736.874087 +1736.887174 +1736.897131 +1736.900095 +1736.909652 +1736.911683 +1736.923504 +1736.926002 +1736.935959 +1736.938256 +1736.948413 +1736.961034 +1736.963531 +1736.973787 +1736.984743 +1736.987807 +1736.993867 +1737.004523 +1737.006921 +1737.017311 +1737.019442 +1737.030631 +1737.041187 +1737.046448 +1737.058436 +1737.071889 +1737.074453 +1737.083378 +1737.094500 +1737.096931 +1737.119242 +1737.128832 +1737.140254 +1737.161533 +1737.173821 +1737.187906 +1737.190071 +1737.200794 +1737.202925 +1737.215479 +1737.218176 +1737.239521 +1737.251310 +1737.264663 +1737.277950 +1737.289605 +1737.331030 +1737.333760 +1737.342718 +1737.359601 +1737.375685 +1737.388472 +1737.401226 +1737.414413 +1737.426767 +1737.445216 +1737.488306 +1737.491269 +1737.501160 +1737.525768 +1737.550244 +1737.552475 +1737.563863 +1737.567027 +1737.607720 +1737.610450 +1737.623004 +1737.635425 +1737.672655 +1737.684276 +1737.703124 +1737.718076 +1737.730430 +1737.797063 +1737.810050 +1737.823404 +1737.838255 +1737.851276 +1737.864596 +1737.877083 +1737.888572 +1737.899161 +1737.914080 +1737.925834 +1737.940986 +1737.943250 +1737.953473 +1737.965295 +1738.002857 +1738.014379 +1738.026733 +1738.043150 +1738.074186 +1738.081445 +1738.115744 +1738.142351 +1738.155438 +1738.209184 +1738.222238 +1738.236623 +1738.250609 +1738.263829 +1738.276617 +1738.302591 +1738.345914 +1738.383976 +1738.396597 +1738.411681 +1738.423436 +1738.447579 +1738.457602 +1738.479813 +1738.517509 +1738.568558 +1738.581412 +1738.589603 +1738.595364 +1738.629763 +1738.689537 +1738.705454 +1738.774052 +1738.812847 +1738.950609 +1738.962330 +1739.045680 +1739.093965 +1739.101091 +1739.115677 +1739.129363 +1739.144981 +1739.159633 +1739.170422 +1739.198028 +1739.213179 +1739.254138 +1739.267791 +1739.335823 +1739.351108 +1739.353139 +1739.365527 +1739.368257 +1739.372053 +1739.378114 +1739.380612 +1739.384275 +1739.392866 +1739.395630 +1739.399193 +1739.405920 +1739.409083 +1739.418640 +1739.420938 +1739.433425 +1739.438986 +1739.448877 +1739.450941 +1739.455936 +1739.460731 +1739.464028 +1739.469822 +1739.474384 +1739.476849 +1739.487305 +1739.492566 +1739.496396 +1739.503489 +1739.505986 +1739.515610 +1739.518041 +1739.526066 +1739.531494 +1739.538287 +1739.544847 +1739.551174 +1739.553472 +1739.557035 +1739.564361 +1739.569689 +1739.582143 +1739.584075 +1739.594531 +1739.597328 +1739.609915 +1739.612180 +1739.624334 +1739.630362 +1739.639919 +1739.647111 +1739.653905 +1739.659099 +1739.665893 +1739.668224 +1739.670888 +1739.679879 +1739.684507 +1739.691700 +1739.707185 +1739.710581 +1739.715243 +1739.721570 +1739.730461 +1739.732626 +1739.744114 +1739.746146 +1739.753172 +1739.759399 +1739.762063 +1739.773951 +1739.776549 +1739.786139 +1739.788803 +1739.801590 +1739.803954 +1739.817041 +1739.819406 +1739.833325 +1739.844281 +1739.847411 +1739.853771 +1739.857068 +1739.866392 +1739.868856 +1739.872186 +1739.880678 +1739.886305 +1739.894564 +1739.897594 +1739.907251 +1739.909549 +1739.922236 +1739.924201 +1739.944014 +1739.946678 +1739.950375 +1739.958133 +1739.960764 +1739.971553 +1739.973718 +1739.984341 +1739.989169 +1739.999925 +1740.002356 +1740.012879 +1740.015176 +1740.018739 +1740.028763 +1740.036788 +1740.044780 +1740.058233 +1740.060498 +1740.064261 +1740.074051 +1740.076415 +1740.080011 +1740.084141 +1740.090501 +1740.099192 +1740.101457 +1740.105952 +1740.111680 +1740.125066 +1740.138053 +1740.140451 +1740.166625 +1740.178147 +1740.189868 +1740.195995 +1740.210880 +1740.221969 +1740.233125 +1740.235689 +1740.245279 +1740.248942 +1740.251506 +1740.277780 +1740.290667 +1740.302722 +1740.314743 +1740.317607 +1740.334657 +1740.337287 +1740.342782 +1740.361696 +1740.388802 +1740.393997 +1740.424567 +1740.427064 +1740.440218 +1740.450640 +1740.452805 +1740.455469 +1740.465592 +1740.468123 +1740.474217 +1740.480144 +1740.482975 +1740.494730 +1740.497593 +1740.505685 +1740.511713 +1740.520171 +1740.530927 +1740.557633 +1740.563860 +1740.572951 +1740.575582 +1740.577980 +1740.593531 +1740.603920 +1740.618539 +1740.620970 +1740.625366 +1740.636521 +1740.643314 +1740.656268 +1740.659531 +1740.668323 +1740.682309 +1740.684739 +1740.697360 +1740.699924 +1740.712945 +1740.727397 +1740.743314 +1740.775249 +1740.784273 +1740.787303 +1740.815242 +1740.818306 +1740.829594 +1740.843347 +1740.862994 +1740.876148 +1740.888402 +1740.891532 +1740.905452 +1740.923167 +1740.925931 +1740.929994 +1740.938086 +1740.940717 +1740.945945 +1740.960996 +1740.968922 +1740.973450 +1750.979501 +1750.981166 +1751.973806 +1751.978002 +1751.980899 +1751.988524 +1752.230282 +1752.973938 +1752.978100 +1752.981231 +1753.975169 +1753.978832 +1753.981463 +1754.975002 +1754.979597 +1754.981628 +1755.973935 +1755.978231 +1755.981394 +1760.973430 +1760.974829 +1760.977826 +1760.980124 +1760.982721 +1760.993444 +1761.074030 +1761.075328 +1761.077726 +1761.083287 +1761.174496 +1761.175928 +1761.178825 +1761.278592 +1761.375095 +1761.379191 +1761.476593 +1761.479590 +1761.575361 +1761.576727 +1761.579191 +1761.675128 +1761.676593 +1761.679790 +1761.775627 +1761.777093 +1761.779457 +1761.875627 +1761.877059 +1761.879790 +1761.977192 +1761.979956 +1762.077159 +1762.080023 +1762.179923 +1762.276559 +1762.280256 +1762.376992 +1762.380156 +1762.475627 +1762.476959 +1762.479523 +1762.580222 +1762.675593 +1762.676992 +1762.679822 +1762.776925 +1762.779523 +1762.875626 +1762.877125 +1762.880322 +1762.977258 +1763.075693 +1763.080222 +1763.177125 +1763.179589 +1763.187581 +1763.277124 +1763.279822 +1763.377124 +1763.379722 +1763.383418 +1763.477124 +1763.479655 +1763.577024 +1763.579821 +1763.677124 +1763.680021 +1763.776691 +1763.778889 +1763.975892 +1764.076358 +1764.080953 +1764.180021 +1764.184516 +1764.275725 +1764.277190 +1764.280021 +1764.379521 +1764.475725 +1764.480054 +1764.580420 +1764.677190 +1764.679954 +1764.691342 +1764.777190 +1764.780253 +1764.875524 +1764.876990 +1764.879987 +1764.893606 +1764.976823 +1764.979587 +1765.077156 +1765.079787 +1765.175691 +1765.179620 +1765.277056 +1765.280552 +1765.377022 +1765.380186 +1765.475624 +1765.480719 +1765.577056 +1765.580286 +1765.677155 +1765.680585 +1765.775590 +1765.779486 +1765.880019 +1765.977255 +1765.979819 +1765.988277 +1770.977383 +1770.979881 +1770.981479 +1770.986441 +1770.994899 +1770.996664 +1771.005488 +1771.016744 +1771.025135 +1771.027699 +1771.035825 +1771.037756 +1771.045149 +1771.050443 +1771.060000 +1771.070557 +1771.080547 +1771.090936 +1771.093234 +1771.101326 +1771.112315 +1771.122738 +1771.132861 +1771.143051 +1771.150477 +1771.160034 +1771.172854 +1771.184576 +1771.194166 +1771.202425 +1771.204522 +1771.213180 +1771.215045 +1771.226367 +1771.228598 +1771.238755 +1771.241086 +1771.249910 +1771.251709 +1771.263530 +1771.275352 +1771.277216 +1771.288105 +1771.298395 +1771.307186 +1771.317210 +1771.318808 +1771.330763 +1771.333294 +1771.342917 +1771.353973 +1771.361932 +1771.364462 +1771.374253 +1771.376350 +1771.387672 +1771.389670 +1771.402458 +1771.411582 +1771.421638 +1771.443517 +1771.445581 +1771.457203 +1771.469357 +1771.471822 +1771.482444 +1771.484742 +1771.495198 +1771.497263 +1771.508452 +1771.510882 +1771.521372 +1771.532028 +1771.535191 +1771.544416 +1771.556137 +1771.567393 +1771.569624 +1771.579747 +1771.582011 +1771.592634 +1771.594565 +1771.607086 +1771.609684 +1771.620206 +1771.622437 +1771.635191 +1771.637622 +1771.649011 +1771.651608 +1771.661598 +1771.673187 +1771.675484 +1771.684609 +1771.694532 +1771.706720 +1771.718142 +1771.719840 +1771.733293 +1771.736257 +1771.745881 +1771.748578 +1771.760866 +1771.774252 +1771.776350 +1771.787839 +1771.789936 +1771.804622 +1771.817043 +1771.819440 +1771.830263 +1771.841518 +1771.853739 +1771.864628 +1771.875751 +1771.877482 +1771.889270 +1771.891302 +1771.901791 +1771.903922 +1771.917775 +1771.930163 +1771.932361 +1771.946580 +1771.956270 +1771.958634 +1771.971521 +1771.973852 +1771.985707 +1771.997429 +1772.001058 +1772.013213 +1772.016410 +1772.027665 +1772.030962 +1772.041351 +1772.043982 +1772.055104 +1772.064595 +1772.076117 +1772.078414 +1772.088105 +1772.099959 +1772.115544 +1772.118041 +1772.128398 +1772.130995 +1772.152906 +1772.155371 +1772.178048 +1772.203189 +1772.228264 +1772.230662 +1772.240419 +1772.252840 +1772.264961 +1772.291668 +1772.306886 +1772.319073 +1772.321671 +1772.333559 +1772.348377 +1772.362896 +1772.369889 +1772.378514 +1772.389603 +1772.403189 +1772.405953 +1772.413912 +1772.440152 +1772.483742 +1772.495264 +1772.505653 +1772.518274 +1772.561098 +1772.575150 +1772.577382 +1772.590069 +1772.600725 +1772.615543 +1772.627265 +1772.645746 +1772.653306 +1772.665527 +1772.679546 +1772.694997 +1772.706952 +1772.731894 +1772.743882 +1772.755004 +1772.771221 +1772.799193 +1772.802723 +1772.810581 +1772.823069 +1772.833625 +1772.848210 +1772.863329 +1772.889469 +1772.901657 +1772.913545 +1772.925466 +1772.954238 +1772.966892 +1772.978547 +1772.989003 +1773.055836 +1773.068756 +1773.079279 +1773.089302 +1773.101623 +1773.142749 +1773.177647 +1773.188803 +1773.192299 +1773.201923 +1773.209682 +1773.236089 +1773.264094 +1773.276182 +1773.283242 +1773.292333 +1773.304953 +1773.307784 +1773.328896 +1773.331793 +1773.369056 +1773.380611 +1773.400125 +1773.414643 +1773.439485 +1773.485473 +1773.494064 +1773.507917 +1773.537554 +1773.562129 +1773.590767 +1773.602222 +1773.612279 +1773.624367 +1773.651606 +1773.696728 +1773.707584 +1773.732026 +1773.775649 +1773.791333 +1773.819971 +1773.833624 +1773.860997 +1773.903288 +1773.919638 +1774.008749 +1774.019938 +1774.062828 +1774.106284 +1774.122302 +1774.145612 +1774.234489 +1774.250107 +1774.259698 +1774.261895 +1774.274150 +1774.276348 +1774.286504 +1774.289734 +1774.298359 +1774.300290 +1774.311479 +1774.314143 +1774.316507 +1774.330527 +1774.334223 +1774.343247 +1774.345412 +1774.357500 +1774.359997 +1774.364260 +1774.372218 +1774.375448 +1774.384506 +1774.386770 +1774.398026 +1774.401356 +1774.410813 +1774.414243 +1774.424166 +1774.438186 +1774.440783 +1774.453237 +1774.455735 +1774.466590 +1774.469421 +1774.480343 +1774.483174 +1774.493164 +1774.495262 +1774.498592 +1774.509547 +1774.511712 +1774.518439 +1774.524000 +1774.539351 +1774.541416 +1774.552971 +1774.555402 +1774.564959 +1774.567456 +1774.578945 +1774.581742 +1774.589967 +1774.593164 +1774.599391 +1774.605784 +1774.608415 +1774.612977 +1774.624432 +1774.627596 +1774.637619 +1774.640650 +1774.651639 +1774.657066 +1774.661762 +1774.667789 +1774.670620 +1774.681642 +1774.685038 +1774.689101 +1774.694762 +1774.699690 +1774.706484 +1774.709148 +1774.721002 +1774.729960 +1774.732058 +1774.736953 +1774.745245 +1774.747110 +1774.750273 +1774.761029 +1774.763127 +1774.776380 +1774.779344 +1774.784406 +1774.789634 +1774.791832 +1774.795395 +1774.802821 +1774.805351 +1774.808515 +1774.817739 +1774.820003 +1774.824599 +1774.832491 +1774.835022 +1774.838019 +1774.848475 +1774.850872 +1774.864659 +1774.867023 +1774.876513 +1774.879377 +1774.881508 +1774.885604 +1774.899657 +1774.909314 +1774.911578 +1774.924965 +1774.927662 +1774.937852 +1774.940583 +1774.944612 +1774.953803 +1774.955867 +1774.959197 +1774.967556 +1774.969787 +1774.973350 +1774.983506 +1774.985871 +1774.998225 +1775.012078 +1775.014309 +1775.017372 +1775.028495 +1775.030626 +1775.033856 +1775.044212 +1775.046177 +1775.049540 +1775.053503 +1775.060196 +1775.062894 +1775.075248 +1775.077912 +1775.086570 +1775.088934 +1775.099590 +1775.101788 +1775.105418 +1775.114142 +1775.116440 +1775.125098 +1775.139184 +1775.141282 +1775.144778 +1775.151705 +1775.154102 +1775.157565 +1775.165091 +1775.168421 +1775.177645 +1775.179910 +1775.191198 +1775.198425 +1775.212744 +1775.214708 +1775.228128 +1775.230459 +1775.246277 +1775.254735 +1775.256833 +1775.259663 +1775.271152 +1775.287369 +1775.289933 +1775.297592 +1775.301455 +1775.304385 +1775.314375 +1775.317272 +1775.326463 +1775.328794 +1775.340183 +1775.344312 +1775.352437 +1775.354602 +1775.362860 +1775.366756 +1775.369287 +1775.382707 +1775.385138 +1775.387469 +1775.391598 +1775.399623 +1775.401987 +1775.407915 +1775.414175 +1775.416440 +1775.419370 +1775.423033 +1775.430692 +1775.433389 +1775.436886 +1775.445011 +1775.447608 +1775.460462 +1775.463759 +1775.469553 +1775.473316 +1775.479676 +1775.492963 +1775.495993 +1775.508781 +1775.511311 +1775.517439 +1775.524232 +1775.531758 +1775.539683 +1775.551072 +1775.553736 +1775.564991 +1775.567988 +1775.576146 +1775.578744 +1775.589766 +1775.592064 +1775.595127 +1775.605517 +1775.608414 +1775.622234 +1775.633223 +1775.636353 +1775.647242 +1775.657532 +1775.661761 +1775.672383 +1775.675480 +1775.684538 +1775.687269 +1775.698957 +1775.714441 +1775.717638 +1775.728327 +1775.731258 +1775.745377 +1775.748940 +1775.759996 +1775.763259 +1775.767855 +1775.772683 +1775.775880 +1775.790931 +1775.796592 +1775.806649 +1775.809646 +1775.820868 +1775.823299 +1775.830558 +1775.836619 +1775.846542 +1775.853069 +1775.860495 +1775.863359 +1775.867821 +1775.878044 +1775.887302 +1775.893629 +1775.902387 +1775.904584 +1775.911178 +1775.923765 +1775.935453 +1775.944345 +1775.957198 +1775.961061 +1775.969353 +1775.972516 +1785.973738 +1785.975070 +1785.977635 +1785.981164 +1786.973238 +1786.974603 +1786.979898 +1786.981663 +1787.974203 +1787.977999 +1787.981329 +1788.974035 +1788.978797 +1788.982427 +1789.978063 +1789.981493 +1790.974233 +1790.978762 +1790.982092 +1795.974394 +1795.978357 +1795.980122 +1796.174694 +1796.176026 +1796.178723 +1796.275093 +1796.276492 +1796.279256 +1796.375360 +1796.376758 +1796.379722 +1796.475559 +1796.479789 +1796.575626 +1796.577025 +1796.675759 +1796.677124 +1796.679988 +1796.775726 +1796.777191 +1796.780088 +1796.792309 +1796.875792 +1796.877224 +1796.879921 +1796.976525 +1797.075492 +1797.076991 +1797.080854 +1797.175858 +1797.177357 +1797.181153 +1797.277423 +1797.280287 +1797.377290 +1797.380121 +1797.398569 +1797.475858 +1797.477223 +1797.480187 +1797.577123 +1797.592308 +1797.592342 +1797.674826 +1797.685149 +1797.775691 +1797.777123 +1797.877190 +1797.880387 +1797.977323 +1797.979920 +1798.077323 +1798.079887 +1798.177489 +1798.180653 +1798.275791 +1798.279354 +1798.285747 +1798.307459 +1798.375624 +1798.377089 +1798.379953 +1798.475791 +1798.477256 +1798.479886 +1798.574725 +1798.576123 +1798.588777 +1798.677056 +1798.679820 +1798.775857 +1798.777322 +1798.780352 +1798.875257 +1798.876789 +1798.883383 +1798.975723 +1798.977155 +1798.981118 +1799.075124 +1799.082517 +1799.175757 +1799.177255 +1799.180185 +1799.275956 +1799.277322 +1799.280485 +1799.377421 +1799.379952 +1799.475323 +1799.476789 +1799.485780 +1799.574824 +1799.576289 +1799.674024 +1799.675523 +1799.774824 +1799.776122 +1799.877354 +1799.880584 +1799.977387 +1799.980551 +1800.079618 +1800.180351 +1800.275822 +1800.277254 +1800.279951 +1800.291207 +1800.377087 +1800.380184 +1800.477254 +1800.479818 +1800.490307 +1800.581283 +1800.675622 +1800.676954 +1800.680350 +1800.775921 +1800.777387 +1800.780417 +1800.875855 +1800.877320 +1800.880150 +1800.975855 +1800.977320 +1800.980583 +1801.001129 +1805.981044 +1805.986173 +1805.994031 +1805.995930 +1806.004354 +1806.005786 +1806.015010 +1806.016709 +1806.034358 +1806.038054 +1806.040052 +1806.048610 +1806.050408 +1806.060665 +1806.070821 +1806.073319 +1806.085473 +1806.098494 +1806.109449 +1806.112246 +1806.140651 +1806.150808 +1806.164328 +1806.167025 +1806.177048 +1806.179013 +1806.189403 +1806.200824 +1806.210981 +1806.220172 +1806.244980 +1806.257035 +1806.259399 +1806.268390 +1806.270322 +1806.281244 +1806.294597 +1806.305919 +1806.318640 +1806.331527 +1806.334024 +1806.344314 +1806.355103 +1806.357834 +1806.366792 +1806.378147 +1806.380245 +1806.391234 +1806.404454 +1806.407418 +1806.417841 +1806.420438 +1806.443515 +1806.445779 +1806.456202 +1806.470488 +1806.473651 +1806.482409 +1806.495763 +1806.498560 +1806.508550 +1806.522502 +1806.530894 +1806.534923 +1806.541916 +1806.553105 +1806.555037 +1806.566259 +1806.594197 +1806.607451 +1806.611314 +1806.620604 +1806.623002 +1806.632925 +1806.648077 +1806.658400 +1806.666592 +1806.676815 +1806.679079 +1806.689702 +1806.702422 +1806.715243 +1806.729562 +1806.742149 +1806.750641 +1806.768190 +1806.780478 +1806.821170 +1806.824866 +1806.833591 +1806.836089 +1806.848909 +1806.860364 +1806.863161 +1806.872352 +1806.894663 +1806.907950 +1806.910880 +1806.920005 +1806.931626 +1806.934923 +1806.943548 +1806.946245 +1806.967490 +1806.980511 +1806.994963 +1807.007217 +1807.019505 +1807.027330 +1807.041283 +1807.053038 +1807.056035 +1807.081410 +1807.092898 +1807.099092 +1807.124200 +1807.137620 +1807.153371 +1807.164526 +1807.178046 +1807.180777 +1807.191932 +1807.194996 +1807.204287 +1807.217473 +1807.233890 +1807.241449 +1807.267690 +1807.278313 +1807.293497 +1807.319871 +1807.322335 +1807.333291 +1807.355269 +1807.373451 +1807.375915 +1807.387936 +1807.402089 +1807.414476 +1807.425698 +1807.437520 +1807.459398 +1807.474283 +1807.489068 +1807.516674 +1807.531492 +1807.544313 +1807.559098 +1807.575149 +1807.585605 +1807.600190 +1807.619038 +1807.633657 +1807.660030 +1807.672451 +1807.684739 +1807.688136 +1807.696594 +1807.709414 +1807.747709 +1807.750740 +1807.760896 +1807.773350 +1807.797260 +1807.810280 +1807.823500 +1807.836354 +1807.851172 +1807.888102 +1807.915641 +1807.928129 +1807.930759 +1807.941216 +1807.945145 +1807.952804 +1807.956234 +1807.998658 +1808.012811 +1808.014975 +1808.028428 +1808.061262 +1808.085771 +1808.098358 +1808.113110 +1808.138052 +1808.140216 +1808.165125 +1808.186104 +1808.198358 +1808.224565 +1808.272051 +1808.285638 +1808.301189 +1808.303919 +1808.313277 +1808.326663 +1808.355801 +1808.380909 +1808.394462 +1808.442580 +1808.444845 +1808.482907 +1808.497825 +1808.510046 +1808.525164 +1808.542347 +1808.602154 +1808.617605 +1808.633123 +1808.643979 +1808.683439 +1808.769420 +1808.826396 +1808.837419 +1808.850905 +1808.863892 +1808.880742 +1808.939616 +1808.999923 +1809.025830 +1809.040848 +1809.119203 +1809.130192 +1809.173416 +1809.175447 +1809.180808 +1809.188700 +1809.190931 +1809.198357 +1809.203852 +1809.205916 +1809.217971 +1809.220135 +1809.224265 +1809.233289 +1809.236086 +1809.244544 +1809.247475 +1809.256832 +1809.259030 +1809.262060 +1809.272650 +1809.275480 +1809.286969 +1809.292130 +1809.299256 +1809.303785 +1809.313942 +1809.316805 +1809.321900 +1809.330325 +1809.332456 +1809.346309 +1809.348907 +1809.360428 +1809.363392 +1809.366755 +1809.376978 +1809.392996 +1809.395293 +1809.404384 +1809.412643 +1809.416672 +1809.426029 +1809.439649 +1809.441814 +1809.446376 +1809.456466 +1809.458464 +1809.465556 +1809.472583 +1809.475447 +1809.487901 +1809.489832 +1809.503518 +1809.505883 +1809.510145 +1809.516938 +1809.527195 +1809.533289 +1809.537684 +1809.540215 +1809.551604 +1809.553735 +1809.557664 +1809.567188 +1809.569119 +1809.571950 +1809.576412 +1809.583139 +1809.585836 +1809.597558 +1809.611111 +1809.613408 +1809.626329 +1809.629293 +1809.638084 +1809.653335 +1809.655200 +1809.660861 +1809.668254 +1809.670485 +1809.676179 +1809.681340 +1809.694527 +1809.697291 +1809.706748 +1809.715540 +1809.717871 +1809.728460 +1809.731390 +1809.740681 +1809.743978 +1809.755000 +1809.757065 +1809.760694 +1809.769918 +1809.772283 +1809.783571 +1809.786036 +1809.789832 +1809.799356 +1809.802619 +1809.810445 +1809.813541 +1809.824331 +1809.838783 +1809.841480 +1809.852902 +1809.856032 +1809.864191 +1809.866555 +1809.870917 +1809.879642 +1809.881473 +1809.895593 +1809.898323 +1809.908913 +1809.912775 +1809.923598 +1809.925696 +1809.940015 +1809.943844 +1809.952902 +1809.955366 +1809.958829 +1809.967887 +1809.970018 +1809.973515 +1809.981773 +1809.987634 +1809.996392 +1809.998656 +1810.003984 +1810.011410 +1810.013475 +1810.016905 +1810.025829 +1810.028493 +1810.042179 +1810.044510 +1810.047208 +1810.058263 +1810.060528 +1810.065389 +1810.073281 +1810.075746 +1810.085036 +1810.087967 +1810.091730 +1810.099522 +1810.105749 +1810.115772 +1810.125995 +1810.128926 +1810.132489 +1810.142013 +1810.144410 +1810.160594 +1810.163225 +1810.173115 +1810.180607 +1810.186435 +1810.188666 +1810.199322 +1810.202019 +1810.209478 +1810.212875 +1810.226794 +1810.228959 +1810.231956 +1810.242945 +1810.245542 +1810.257897 +1810.267753 +1810.270551 +1810.275412 +1810.284270 +1810.287301 +1810.299155 +1810.301486 +1810.312542 +1810.314906 +1810.319102 +1810.328426 +1810.331023 +1810.334653 +1810.343378 +1810.346108 +1810.355566 +1810.357897 +1810.361160 +1810.369851 +1810.371883 +1810.389831 +1810.401486 +1810.412342 +1810.414973 +1810.428859 +1810.431356 +1810.435252 +1810.442812 +1810.445376 +1810.448772 +1810.458463 +1810.460927 +1810.465689 +1810.471749 +1810.474313 +1810.482039 +1810.487067 +1810.495525 +1810.498289 +1810.508779 +1810.520534 +1810.523864 +1810.533721 +1810.541679 +1810.546574 +1810.549838 +1810.554133 +1810.563724 +1810.579075 +1810.585535 +1810.595692 +1810.609012 +1810.611276 +1810.615439 +1810.624829 +1810.627260 +1810.632921 +1810.641779 +1810.644843 +1810.648639 +1810.655898 +1810.662025 +1810.666488 +1810.675179 +1810.681206 +1810.684470 +1810.687633 +1810.698722 +1810.708679 +1810.727560 +1810.736051 +1810.742578 +1810.758662 +1810.767054 +1810.773547 +1810.781972 +1810.790563 +1810.793560 +1810.804083 +1810.809711 +1810.820667 +1810.835785 +1810.838915 +1810.850137 +1810.861126 +1810.877343 +1810.884403 +1810.891929 +1810.894226 +1810.907347 +1810.910044 +1810.916471 +1810.924529 +1810.931822 +1810.940147 +1810.954133 +1810.963257 +1820.889022 +1820.975069 +1820.977566 +1820.980763 +1821.973669 +1821.975068 +1821.978165 +1821.981295 +1822.973835 +1822.978064 +1822.981460 +1823.974033 +1823.979195 +1823.981826 +1824.974132 +1824.978661 +1824.981725 +1825.974165 +1825.975530 +1825.979026 +1825.982390 +1830.973627 +1830.974992 +1830.978022 +1830.980753 +1831.074226 +1831.075525 +1831.077689 +1831.080919 +1831.174726 +1831.176091 +1831.179188 +1831.275058 +1831.276424 +1831.375258 +1831.379620 +1831.475491 +1831.476990 +1831.479853 +1831.579820 +1831.675624 +1831.677023 +1831.680053 +1831.775824 +1831.777322 +1831.875324 +1831.876690 +1831.879920 +1831.974192 +1832.074392 +1832.076057 +1832.174392 +1832.176256 +1832.275157 +1832.276556 +1832.280319 +1832.375690 +1832.380352 +1832.475357 +1832.476722 +1832.479686 +1832.575590 +1832.576989 +1832.580418 +1832.675623 +1832.677055 +1832.679919 +1832.775756 +1832.780252 +1832.791707 +1832.875723 +1832.880252 +1832.975856 +1832.977354 +1832.981317 +1833.077288 +1833.080285 +1833.190774 +1833.280351 +1833.375822 +1833.377221 +1833.380318 +1833.475789 +1833.477221 +1833.480151 +1833.490741 +1833.574390 +1833.576122 +1833.674290 +1833.676188 +1833.774423 +1833.775922 +1833.875422 +1833.876854 +1833.879984 +1833.975589 +1833.977054 +1833.980117 +1834.075655 +1834.077054 +1834.080250 +1834.177120 +1834.275755 +1834.277087 +1834.280150 +1834.375788 +1834.377320 +1834.380550 +1834.477286 +1834.480084 +1834.577120 +1834.580050 +1834.680050 +1834.775854 +1834.777319 +1834.780416 +1834.877319 +1834.880516 +1834.979917 +1834.989973 +1835.075920 +1835.077352 +1835.080249 +1835.179450 +1835.185511 +1835.275587 +1835.276986 +1835.279950 +1835.374721 +1835.473656 +1835.475154 +1835.574788 +1835.576220 +1835.579749 +1835.675620 +1835.677019 +1835.679683 +1835.775620 +1835.780182 +1835.875720 +1835.877085 +1835.879583 +1835.884345 +1835.975653 +1835.977152 +1835.980082 +1840.977580 +1840.986404 +1840.988269 +1840.994396 +1840.996261 +1841.002621 +1841.004985 +1841.014043 +1841.022601 +1841.031958 +1841.044979 +1841.056734 +1841.066624 +1841.078279 +1841.086271 +1841.097293 +1841.107949 +1841.119271 +1841.121169 +1841.132658 +1841.134756 +1841.144845 +1841.147976 +1841.158199 +1841.168821 +1841.172185 +1841.192331 +1841.204353 +1841.215675 +1841.217473 +1841.228795 +1841.230660 +1841.243746 +1841.245878 +1841.256134 +1841.258199 +1841.268888 +1841.271219 +1841.282141 +1841.293463 +1841.312378 +1841.322601 +1841.324566 +1841.335255 +1841.337120 +1841.348408 +1841.361762 +1841.364126 +1841.377113 +1841.388302 +1841.392731 +1841.399491 +1841.406417 +1841.418904 +1841.421136 +1841.431558 +1841.434123 +1841.444212 +1841.455934 +1841.465558 +1841.477712 +1841.488302 +1841.501155 +1841.503253 +1841.516207 +1841.519104 +1841.530126 +1841.542747 +1841.545578 +1841.557832 +1841.568888 +1841.571452 +1841.582208 +1841.593163 +1841.605817 +1841.608082 +1841.618971 +1841.621402 +1841.633590 +1841.648142 +1841.660829 +1841.663193 +1841.673883 +1841.684305 +1841.695627 +1841.698092 +1841.708748 +1841.710846 +1841.723500 +1841.726397 +1841.736586 +1841.738551 +1841.752937 +1841.765358 +1841.777545 +1841.788768 +1841.797592 +1841.807382 +1841.810046 +1841.819970 +1841.830959 +1841.833390 +1841.842947 +1841.844911 +1841.857199 +1841.870086 +1841.872384 +1841.883573 +1841.885537 +1841.899856 +1841.913010 +1841.923466 +1841.935454 +1841.947142 +1841.959597 +1841.968155 +1841.979144 +1841.990865 +1842.015374 +1842.030526 +1842.043746 +1842.058664 +1842.070652 +1842.081741 +1842.093562 +1842.096393 +1842.106183 +1842.131291 +1842.144445 +1842.147009 +1842.156866 +1842.170685 +1842.185071 +1842.187402 +1842.199223 +1842.211678 +1842.213842 +1842.226762 +1842.239716 +1842.253003 +1842.264458 +1842.278211 +1842.288934 +1842.295527 +1842.308614 +1842.321068 +1842.336719 +1842.349739 +1842.352537 +1842.362959 +1842.377478 +1842.390698 +1842.393063 +1842.404451 +1842.418537 +1842.433356 +1842.447442 +1842.462726 +1842.474381 +1842.476879 +1842.486669 +1842.489566 +1842.499090 +1842.512643 +1842.514974 +1842.525397 +1842.538850 +1842.550305 +1842.558730 +1842.561827 +1842.572416 +1842.586069 +1842.615806 +1842.628127 +1842.635720 +1842.645277 +1842.659263 +1842.674614 +1842.677611 +1842.687035 +1842.690898 +1842.700222 +1842.712876 +1842.724498 +1842.734554 +1842.747308 +1842.760628 +1842.771251 +1842.785903 +1842.801787 +1842.826695 +1842.836086 +1842.849339 +1842.862759 +1842.874780 +1842.902586 +1842.919103 +1842.959196 +1842.975846 +1842.989432 +1843.002419 +1843.039349 +1843.069852 +1843.083105 +1843.095793 +1843.106782 +1843.116572 +1843.119702 +1843.130092 +1843.141513 +1843.152136 +1843.155400 +1843.181607 +1843.194793 +1843.221433 +1843.236418 +1843.247541 +1843.260628 +1843.262759 +1843.285336 +1843.305349 +1843.309678 +1843.317071 +1843.329825 +1843.331956 +1843.358330 +1843.370518 +1843.383305 +1843.396958 +1843.412076 +1843.425662 +1843.427760 +1843.453468 +1843.466688 +1843.469518 +1843.479409 +1843.491064 +1843.496691 +1843.506448 +1843.519435 +1843.547008 +1843.575346 +1843.612276 +1843.627594 +1843.644676 +1843.654034 +1843.663924 +1843.702319 +1843.719368 +1843.743278 +1843.758063 +1843.762825 +1843.771183 +1843.779974 +1843.834486 +1843.850903 +1843.858895 +1843.864523 +1843.877943 +1843.883071 +1843.894460 +1843.908146 +1843.910544 +1843.923830 +1843.957696 +1843.976245 +1843.997090 +1844.037683 +1844.086401 +1844.097656 +1844.100121 +1844.113074 +1844.115305 +1844.121199 +1844.127027 +1844.129524 +1844.140081 +1844.142545 +1844.154633 +1844.157030 +1844.168419 +1844.171016 +1844.181006 +1844.183504 +1844.192794 +1844.194992 +1844.206980 +1844.209178 +1844.222964 +1844.225861 +1844.234120 +1844.236084 +1844.250570 +1844.256464 +1844.265755 +1844.268086 +1844.271382 +1844.281872 +1844.284403 +1844.294326 +1844.296557 +1844.308345 +1844.310776 +1844.317536 +1844.323763 +1844.326061 +1844.336251 +1844.338482 +1844.342012 +1844.354366 +1844.357130 +1844.367753 +1844.369917 +1844.372947 +1844.382638 +1844.384969 +1844.388066 +1844.399121 +1844.401852 +1844.410177 +1844.413041 +1844.421266 +1844.427693 +1844.430290 +1844.440746 +1844.443044 +1844.446207 +1844.457430 +1844.459594 +1844.462425 +1844.472614 +1844.475178 +1844.478442 +1844.487100 +1844.489131 +1844.492295 +1844.501619 +1844.503750 +1844.517936 +1844.520333 +1844.523463 +1844.532721 +1844.535152 +1844.538815 +1844.543277 +1844.548505 +1844.550670 +1844.560793 +1844.564556 +1844.570849 +1844.577609 +1844.581539 +1844.584769 +1844.595125 +1844.597290 +1844.607646 +1844.610443 +1844.614039 +1844.622631 +1844.624762 +1844.627193 +1844.633553 +1844.638915 +1844.642511 +1844.646007 +1844.655731 +1844.661958 +1844.671249 +1844.673480 +1844.683537 +1844.687533 +1844.697989 +1844.701152 +1844.712674 +1844.723530 +1844.726460 +1844.736717 +1844.739514 +1844.747806 +1844.751369 +1844.760326 +1844.762724 +1844.776876 +1844.791928 +1844.794192 +1844.798621 +1844.807479 +1844.810676 +1844.819267 +1844.822564 +1844.833453 +1844.845075 +1844.848438 +1844.856563 +1844.860126 +1844.871781 +1844.882770 +1844.885135 +1844.898921 +1844.901918 +1844.914705 +1844.918601 +1844.930722 +1844.945474 +1844.949837 +1844.957329 +1844.959960 +1844.970183 +1844.974379 +1844.984202 +1844.987932 +1844.997322 +1845.005814 +1845.008478 +1845.019201 +1845.022031 +1845.033286 +1845.035484 +1845.039047 +1845.047772 +1845.050969 +1845.060259 +1845.062524 +1845.075511 +1845.079407 +1845.085767 +1845.088298 +1845.093127 +1845.105647 +1845.112241 +1845.119933 +1845.125028 +1845.134951 +1845.138847 +1845.150536 +1845.155131 +1845.162391 +1845.168684 +1845.178708 +1845.181305 +1845.194225 +1845.196490 +1845.200253 +1845.208977 +1845.212207 +1845.222597 +1845.224861 +1845.230889 +1845.237848 +1845.240379 +1845.253200 +1845.262524 +1845.274978 +1845.287832 +1845.302151 +1845.305847 +1845.309810 +1845.318334 +1845.324828 +1845.329890 +1845.333053 +1845.342211 +1845.345041 +1845.354565 +1845.358461 +1845.367785 +1845.370582 +1845.382004 +1845.384635 +1845.395824 +1845.398254 +1845.403416 +1845.411241 +1845.415104 +1845.424961 +1845.428591 +1845.441012 +1845.451634 +1845.464488 +1845.475311 +1845.480539 +1845.486866 +1845.491395 +1845.502450 +1845.506013 +1845.516370 +1845.518667 +1845.528524 +1845.531887 +1845.537049 +1845.545341 +1845.548637 +1845.556962 +1845.567585 +1845.571747 +1845.581338 +1845.583935 +1845.587731 +1845.598088 +1845.601351 +1845.609543 +1845.613572 +1845.617169 +1845.625427 +1845.629257 +1845.641111 +1845.644208 +1845.656363 +1845.658827 +1845.672280 +1845.680672 +1845.683169 +1845.689796 +1845.696989 +1845.699919 +1845.707778 +1845.714005 +1845.719833 +1845.731920 +1845.742410 +1845.745274 +1845.760092 +1845.775344 +1845.784967 +1845.790029 +1845.798754 +1845.804082 +1845.817002 +1845.832553 +1845.842610 +1845.853432 +1845.863422 +1845.868184 +1845.884967 +1845.888264 +1845.900285 +1845.905680 +1845.918733 +1845.935250 +1845.940811 +1845.948903 +1845.963788 +1845.966852 +1845.970948 +1855.973535 +1855.974901 +1855.977298 +1855.980761 +1856.977897 +1856.981060 +1856.992249 +1857.973999 +1857.975331 +1857.978861 +1857.981958 +1858.973399 +1858.980892 +1859.973931 +1859.975429 +1859.978227 +1859.981357 +1859.992812 +1860.980523 +1865.031801 +1865.977555 +1865.980119 +1865.982017 +1865.989110 +1866.073192 +1866.074491 +1866.078820 +1866.092673 +1866.174258 +1866.178953 +1866.274757 +1866.276256 +1866.279153 +1866.374990 +1866.376422 +1866.379486 +1866.475223 +1866.476788 +1866.479485 +1866.576855 +1866.579818 +1866.675456 +1866.676855 +1866.679452 +1866.775456 +1866.779818 +1866.789908 +1866.875223 +1866.876621 +1866.879618 +1866.975123 +1866.976455 +1866.984513 +1867.074956 +1867.076321 +1867.080151 +1867.177120 +1867.180284 +1867.276887 +1867.279385 +1867.375588 +1867.377154 +1867.379718 +1867.385778 +1867.475655 +1867.477120 +1867.479817 +1867.579618 +1867.675488 +1867.676987 +1867.680217 +1867.775255 +1867.780117 +1867.874922 +1867.876221 +1867.881948 +1867.980183 +1868.075654 +1868.077219 +1868.079917 +1868.176886 +1868.179617 +1868.274755 +1868.276220 +1868.279750 +1868.379317 +1868.385677 +1868.476986 +1868.479750 +1868.579683 +1868.675620 +1868.677086 +1868.694402 +1868.776986 +1868.779550 +1868.875654 +1868.877052 +1868.880282 +1868.977019 +1868.986509 +1869.079416 +1869.089673 +1869.176719 +1869.179350 +1869.275020 +1869.276486 +1869.280049 +1869.375653 +1869.377218 +1869.380115 +1869.477052 +1869.479849 +1869.575520 +1869.576918 +1869.579815 +1869.675619 +1869.680448 +1869.776618 +1869.779715 +1869.875586 +1869.879682 +1869.976918 +1869.980548 +1870.075586 +1870.077051 +1870.080348 +1870.176884 +1870.179615 +1870.276984 +1870.375585 +1870.377017 +1870.380214 +1870.475519 +1870.476884 +1870.479481 +1870.576884 +1870.579681 +1870.588439 +1870.676851 +1870.691036 +1870.779681 +1870.784176 +1870.877283 +1870.976917 +1870.979781 +1874.273350 +1875.825830 +1875.977012 +1875.979942 +1875.981740 +1875.986869 +1875.995060 +1875.996825 +1876.003618 +1876.006782 +1876.013908 +1876.022167 +1876.028560 +1876.030691 +1876.037118 +1876.048107 +1876.050438 +1876.059329 +1876.071317 +1876.073215 +1876.085836 +1876.097125 +1876.099456 +1876.110079 +1876.112276 +1876.133888 +1876.145277 +1876.156832 +1876.158763 +1876.170984 +1876.183705 +1876.185703 +1876.196059 +1876.198457 +1876.208913 +1876.220968 +1876.232722 +1876.244278 +1876.255400 +1876.257797 +1876.266922 +1876.268753 +1876.280308 +1876.282939 +1876.292196 +1876.294527 +1876.315839 +1876.318337 +1876.327328 +1876.329292 +1876.339183 +1876.350438 +1876.352103 +1876.364457 +1876.375746 +1876.386835 +1876.398024 +1876.400122 +1876.411344 +1876.421400 +1876.423398 +1876.435986 +1876.439083 +1876.447641 +1876.450038 +1876.459529 +1876.462026 +1876.472416 +1876.484171 +1876.485902 +1876.497457 +1876.509146 +1876.511310 +1876.522000 +1876.524231 +1876.538083 +1876.549272 +1876.560861 +1876.571517 +1876.573748 +1876.584570 +1876.595493 +1876.597391 +1876.608946 +1876.611310 +1876.620534 +1876.622466 +1876.635886 +1876.645576 +1876.657630 +1876.667154 +1876.677943 +1876.679941 +1876.691730 +1876.694227 +1876.706149 +1876.709112 +1876.715439 +1876.718603 +1876.727560 +1876.739582 +1876.741979 +1876.751903 +1876.753867 +1876.759562 +1876.766854 +1876.769352 +1876.776944 +1876.788300 +1876.801353 +1876.810511 +1876.835020 +1876.845076 +1876.847341 +1876.858196 +1876.868786 +1876.871650 +1876.881073 +1876.882905 +1876.894194 +1876.896292 +1876.909179 +1876.911343 +1876.922399 +1876.925129 +1876.934720 +1876.948539 +1876.960261 +1876.962592 +1876.973115 +1876.975312 +1876.987167 +1876.996957 +1876.998955 +1877.011043 +1877.013175 +1877.024230 +1877.026628 +1877.037517 +1877.039748 +1877.053068 +1877.065289 +1877.076778 +1877.079109 +1877.092495 +1877.095226 +1877.103950 +1877.115739 +1877.125362 +1877.148772 +1877.163457 +1877.165655 +1877.178076 +1877.189898 +1877.192029 +1877.206981 +1877.209445 +1877.221066 +1877.223098 +1877.234220 +1877.236851 +1877.247307 +1877.249505 +1877.261093 +1877.263757 +1877.273947 +1877.276378 +1877.288233 +1877.301652 +1877.303817 +1877.314773 +1877.316871 +1877.326494 +1877.329758 +1877.339248 +1877.351070 +1877.360227 +1877.371449 +1877.373614 +1877.384236 +1877.386501 +1877.399421 +1877.401353 +1877.413607 +1877.416071 +1877.427127 +1877.429724 +1877.439048 +1877.451669 +1877.463091 +1877.465821 +1877.474280 +1877.477210 +1877.486501 +1877.499221 +1877.512441 +1877.527160 +1877.540846 +1877.552268 +1877.565688 +1877.568252 +1877.579108 +1877.581206 +1877.590130 +1877.600886 +1877.603084 +1877.614073 +1877.616138 +1877.629524 +1877.631955 +1877.640014 +1877.651702 +1877.654000 +1877.664656 +1877.667020 +1877.678775 +1877.681572 +1877.691895 +1877.705482 +1877.711742 +1877.721532 +1877.723563 +1877.735918 +1877.739847 +1877.748139 +1877.751436 +1877.762058 +1877.764256 +1877.775745 +1877.777976 +1877.789597 +1877.791762 +1877.796957 +1877.804882 +1877.807413 +1877.817236 +1877.819967 +1877.823064 +1877.833453 +1877.835685 +1877.848339 +1877.859594 +1877.864089 +1877.873680 +1877.876544 +1877.885635 +1877.895192 +1877.897489 +1877.908911 +1877.911142 +1877.925062 +1877.935218 +1877.945908 +1877.957496 +1877.959927 +1877.971549 +1877.973913 +1877.986434 +1877.997423 +1878.013440 +1878.015804 +1878.027393 +1878.029690 +1878.043144 +1878.057762 +1878.060826 +1878.071282 +1878.080306 +1878.090629 +1878.093127 +1878.102751 +1878.105514 +1878.114639 +1878.125961 +1878.128258 +1878.140013 +1878.142477 +1878.152301 +1878.155564 +1878.162757 +1878.172015 +1878.185002 +1878.198854 +1878.201052 +1878.213506 +1878.215971 +1878.225994 +1878.229690 +1878.240712 +1878.243776 +1878.251935 +1878.254698 +1878.263856 +1878.266154 +1878.280473 +1878.288898 +1878.290729 +1878.304349 +1878.306946 +1878.315438 +1878.319800 +1878.326993 +1878.334019 +1878.345774 +1878.358228 +1878.362524 +1878.369617 +1878.380739 +1878.389896 +1878.397522 +1878.409577 +1878.423396 +1878.438181 +1878.440779 +1878.454965 +1878.457229 +1878.470582 +1878.478674 +1878.490363 +1878.501318 +1878.503549 +1878.515970 +1878.529690 +1878.542444 +1878.545407 +1878.553866 +1878.562823 +1878.565720 +1878.581038 +1878.587732 +1878.593026 +1878.607212 +1878.609676 +1878.620233 +1878.624495 +1878.631088 +1878.635451 +1878.641711 +1878.652534 +1878.654565 +1878.666786 +1878.682803 +1878.685434 +1878.696823 +1878.698920 +1878.710742 +1878.713040 +1878.716436 +1878.726193 +1878.728424 +1878.740878 +1878.743343 +1878.747239 +1878.755730 +1878.757961 +1878.762324 +1878.770016 +1878.773179 +1878.783502 +1878.789829 +1878.799054 +1878.801218 +1878.804448 +1878.814338 +1878.829956 +1878.832187 +1878.843942 +1878.846340 +1878.858427 +1878.860725 +1878.873412 +1878.875544 +1878.888531 +1878.891161 +1878.896856 +1878.903849 +1878.905680 +1878.908910 +1878.919433 +1878.922463 +1878.932553 +1878.937748 +1878.948704 +1878.951268 +1878.959293 +1878.962224 +1878.974478 +1878.976876 +1878.980439 +1878.989796 +1878.991894 +1878.995057 +1879.005747 +1879.016969 +1879.019433 +1879.021997 +1879.032120 +1879.034618 +1879.046373 +1879.048371 +1879.060725 +1879.062889 +1879.066486 +1879.076476 +1879.078574 +1879.090295 +1879.105813 +1879.117901 +1879.120565 +1879.127525 +1879.133152 +1879.135717 +1879.146073 +1879.148504 +1879.160791 +1879.174345 +1879.179606 +1879.183968 +1879.188830 +1879.191361 +1879.204747 +1879.206879 +1879.220299 +1879.222330 +1879.235383 +1879.237681 +1879.242210 +1879.249702 +1879.252067 +1879.256662 +1879.265120 +1879.267351 +1879.271647 +1879.280638 +1879.283002 +1879.287431 +1879.295357 +1879.297555 +1879.309409 +1879.323662 +1879.325826 +1879.338613 +1879.340978 +1879.353532 +1879.355830 +1879.358926 +1879.368617 +1879.371048 +1879.383668 +1879.385866 +1879.399619 +1879.401850 +1879.405680 +1879.414771 +1879.416968 +1879.420099 +1879.430055 +1879.445939 +1879.448537 +1879.459892 +1879.462156 +1879.465287 +1879.473578 +1879.476242 +1879.479539 +1879.489729 +1879.496089 +1879.504514 +1879.507178 +1879.510408 +1879.519199 +1879.521863 +1879.530322 +1879.546239 +1879.560092 +1879.562489 +1879.566252 +1879.574977 +1879.577741 +1879.585300 +1879.587697 +1879.590794 +1879.601584 +1879.604647 +1879.613072 +1879.618300 +1879.622762 +1879.634717 +1879.637381 +1879.639945 +1879.651534 +1879.659159 +1879.666219 +1879.668450 +1879.677041 +1879.679972 +1879.691460 +1879.694058 +1879.696988 +1879.704814 +1879.707711 +1879.716402 +1879.718566 +1879.732020 +1879.734184 +1879.737448 +1879.747704 +1879.750768 +1879.762323 +1879.764254 +1879.777907 +1879.792792 +1879.795423 +1879.800718 +1879.806179 +1879.809542 +1879.814404 +1879.821597 +1879.823761 +1879.836049 +1879.838513 +1879.841776 +1879.851500 +1879.864087 +1879.867051 +1879.878640 +1879.881070 +1879.885899 +1879.892792 +1879.895656 +1879.903948 +1879.906512 +1879.912239 +1879.918933 +1879.921663 +1879.934783 +1879.947504 +1879.962689 +1879.964853 +1879.971680 +1879.980404 +1879.983401 +1879.994590 +1879.997154 +1880.009608 +1880.022296 +1880.025592 +1880.039012 +1880.041210 +1880.054364 +1880.057560 +1880.070048 +1880.082336 +1880.085000 +1880.098087 +1880.102416 +1880.107977 +1880.111773 +1880.115669 +1880.136282 +1880.145506 +1880.151600 +1880.159758 +1880.162822 +1880.176575 +1880.179372 +1880.190527 +1880.192825 +1880.203381 +1880.205779 +1880.212072 +1880.217900 +1880.221163 +1880.231653 +1880.247171 +1880.257427 +1880.263521 +1880.276541 +1880.279272 +1880.284966 +1880.292392 +1880.296222 +1880.307111 +1880.316035 +1880.320597 +1880.323727 +1880.326624 +1880.335416 +1880.350201 +1880.352798 +1880.358559 +1880.366451 +1880.373644 +1880.380670 +1880.387996 +1880.396221 +1880.406112 +1880.411373 +1880.414503 +1880.417733 +1880.426691 +1880.429555 +1880.441443 +1880.458093 +1880.472578 +1880.475342 +1880.488729 +1880.496987 +1880.504913 +1880.508542 +1880.513904 +1880.519931 +1880.534616 +1880.544273 +1880.559525 +1880.562222 +1880.576341 +1880.584999 +1880.591726 +1880.606444 +1880.622062 +1880.624893 +1880.638479 +1880.654463 +1880.667350 +1880.683600 +1880.696920 +1880.700783 +1880.710307 +1880.725658 +1880.741343 +1880.745072 +1880.757060 +1880.759591 +1880.773943 +1880.788396 +1880.796221 +1880.804346 +1880.819331 +1880.833617 +1880.844140 +1880.849501 +1880.858892 +1880.880537 +1880.894523 +1880.897620 +1880.901482 +1880.911772 +1880.915235 +1880.919098 +1880.928589 +1880.944872 +1880.949867 +1880.959491 +1890.389951 +1890.974333 +1890.977130 +1890.980460 +1891.120986 +1891.973566 +1891.974898 +1891.978927 +1891.982457 +1892.122916 +1892.973498 +1892.974864 +1892.981224 +1893.128943 +1893.926344 +1893.973431 +1893.977793 +1893.982155 +1894.770999 +1894.977592 +1894.981355 +1895.875427 +1895.980322 +1897.179788 +1897.217683 +1897.694173 +1897.847519 +1897.943856 +1898.205927 +1898.532933 +1898.869863 +1898.924042 +1899.093073 +1899.260871 +1899.504927 +1899.638194 +1899.937694 +1899.954077 +1900.123408 +1900.230134 +1900.491872 +1900.725272 +1900.823307 +1900.979784 +1900.981549 +1901.077919 +1901.174256 +1901.175621 +1901.178452 +1901.274489 +1901.275821 +1901.278352 +1901.281615 +1901.374689 +1901.376054 +1901.378884 +1901.383047 +1901.474888 +1901.476287 +1901.483247 +1901.574988 +1901.576420 +1901.675055 +1901.676620 +1901.679583 +1901.775055 +1901.776453 +1901.779284 +1901.875221 +1901.876686 +1901.879317 +1901.975254 +1901.976619 +1901.979816 +1902.075221 +1902.079550 +1902.176653 +1902.179550 +1902.276752 +1902.279516 +1902.375220 +1902.379816 +1902.475254 +1902.476686 +1902.479449 +1902.575220 +1902.576652 +1902.579316 +1902.675187 +1902.676619 +1902.679249 +1902.776619 +1902.779349 +1902.875220 +1902.876652 +1902.976652 +1903.076718 +1903.079449 +1903.176652 +1903.179982 +1903.183112 +1903.275286 +1903.276718 +1903.376718 +1903.380314 +1903.383778 +1903.475319 +1903.479415 +1903.579448 +1903.676684 +1903.679715 +1903.776784 +1903.976717 +1903.979182 +1903.984043 +1904.075285 +1904.076617 +1904.079281 +1904.175285 +1904.179648 +1904.276717 +1904.283344 +1904.376750 +1904.379081 +1904.476584 +1904.479348 +1904.576650 +1904.679114 +1904.778814 +1904.878814 +1904.976650 +1904.979114 +1904.984475 +1905.076516 +1905.078714 +1905.175251 +1905.176849 +1905.179580 +1905.276683 +1905.278980 +1905.282577 +1905.376683 +1905.379613 +1905.475251 +1905.476616 +1905.478714 +1905.575284 +1905.576749 +1905.579180 +1905.676682 +1905.678814 +1905.683842 +1905.775317 +1905.779146 +1905.876616 +1905.975250 +1905.976649 +1905.979446 +1905.982609 +1908.692264 +1909.203385 +1909.338217 +1909.665423 +1909.773548 +1910.025429 +1910.160261 +1910.257464 +1910.385136 +1910.414207 +1910.567187 +1910.614406 +1910.706814 +1910.882505 +1910.977909 +1910.987799 +1911.003017 +1911.011376 +1911.013673 +1911.020067 +1911.022265 +1911.030723 +1911.040280 +1911.044576 +1911.052901 +1911.054799 +1911.062991 +1911.064989 +1911.075112 +1911.083737 +1911.091695 +1911.099787 +1911.109977 +1911.112308 +1911.123164 +1911.134386 +1911.143677 +1911.145974 +1911.154666 +1911.157063 +1911.165821 +1911.175378 +1911.178309 +1911.187699 +1911.197589 +1911.206880 +1911.217303 +1911.220866 +1911.228492 +1911.231555 +1911.239514 +1911.241678 +1911.251236 +1911.261325 +1911.263557 +1911.273547 +1911.275578 +1911.284869 +1911.287100 +1911.296623 +1911.299620 +1911.308711 +1911.310809 +1911.320699 +1911.322531 +1911.331555 +1911.333553 +1911.342244 +1911.352135 +1911.354432 +1911.362491 +1911.373413 +1911.377276 +1911.387433 +1911.397689 +1911.399487 +1911.409144 +1911.411409 +1911.420999 +1911.427559 +1911.437482 +1911.439780 +1911.448405 +1911.450603 +1911.459727 +1911.461558 +1911.473513 +1911.476144 +1911.484336 +1911.493426 +1911.504682 +1911.514938 +1911.516870 +1911.522331 +1911.531655 +1911.536816 +1911.539047 +1911.546940 +1911.557196 +1911.559027 +1911.570749 +1911.572714 +1911.584702 +1911.588198 +1911.595458 +1911.600686 +1911.610343 +1911.612307 +1911.623063 +1911.625528 +1911.634685 +1911.640313 +1911.642178 +1911.645841 +1911.652734 +1911.654698 +1911.665221 +1911.667452 +1911.677009 +1911.679607 +1911.687932 +1911.690096 +1911.700552 +1911.714205 +1911.716137 +1911.727226 +1911.729357 +1911.743310 +1911.750469 +1911.761358 +1911.771015 +1911.783669 +1911.796823 +1911.798821 +1911.807645 +1911.817402 +1911.819334 +1911.828391 +1911.842244 +1911.844275 +1911.854731 +1911.856796 +1911.868451 +1911.870449 +1911.882304 +1911.884901 +1911.891361 +1911.894558 +1911.901951 +1911.907345 +1911.920432 +1911.929989 +1911.932720 +1911.936550 +1911.944142 +1911.946573 +1911.954498 +1911.956696 +1911.958894 +1911.966952 +1911.969483 +1911.972247 +1911.979540 +1911.988897 +1911.992627 +1911.994625 +1912.005980 +1912.008045 +1912.016636 +1912.019933 +1912.029523 +1912.035784 +1912.039213 +1912.045873 +1912.057062 +1912.059160 +1912.070149 +1912.072347 +1912.077475 +1912.084568 +1912.098854 +1912.108544 +1912.113606 +1912.116436 +1912.122364 +1912.129490 +1912.132487 +1912.139480 +1912.141544 +1912.152700 +1912.154898 +1912.166819 +1912.178341 +1912.186100 +1912.198088 +1912.211541 +1912.224961 +1912.237182 +1912.239480 +1912.248637 +1912.251101 +1912.258061 +1912.265587 +1912.271581 +1912.278807 +1912.286166 +1912.291694 +1912.295590 +1912.300985 +1912.302983 +1912.312840 +1912.316070 +1912.325194 +1912.336849 +1912.350036 +1912.352034 +1912.355497 +1912.364488 +1912.366386 +1912.372080 +1912.378607 +1912.380505 +1912.392027 +1912.395357 +1912.400185 +1912.406479 +1912.415370 +1912.417501 +1912.428157 +1912.429989 +1912.442010 +1912.444275 +1912.450002 +1912.458627 +1912.461824 +1912.468384 +1912.476909 +1912.481171 +1912.485900 +1912.499686 +1912.510009 +1912.520765 +1912.524228 +1912.530022 +1912.532420 +1912.554764 +1912.557062 +1912.566053 +1912.568284 +1912.578474 +1912.591294 +1912.593192 +1912.604781 +1912.611840 +1912.618966 +1912.621031 +1912.631620 +1912.642077 +1912.644374 +1912.647971 +1912.654364 +1912.656829 +1912.672113 +1912.679806 +1912.681937 +1912.686632 +1912.692593 +1912.708011 +1912.714637 +1912.716868 +1912.729756 +1912.735783 +1912.740445 +1912.747937 +1912.754398 +1912.763722 +1912.766252 +1912.774111 +1912.780338 +1912.787631 +1912.793392 +1912.798953 +1912.805913 +1912.808077 +1912.817035 +1912.825460 +1912.829722 +1912.856962 +1912.862556 +1912.868916 +1912.883502 +1912.896189 +1912.909642 +1912.919332 +1912.929289 +1912.933385 +1912.952632 +1912.966086 +1912.976808 +1912.979139 +1912.982203 +1912.991960 +1913.004647 +1913.011074 +1913.016968 +1913.019066 +1913.030788 +1913.043109 +1913.057361 +1913.071114 +1913.075809 +1913.080504 +1913.093691 +1913.097820 +1913.111940 +1913.117401 +1913.126225 +1913.138913 +1913.144041 +1913.152299 +1913.165153 +1913.177041 +1913.191393 +1913.204314 +1913.221097 +1913.223994 +1913.232486 +1913.246771 +1913.252699 +1913.271547 +1913.276808 +1913.285766 +1913.288030 +1913.294457 +1913.299052 +1913.301117 +1913.326591 +1913.337347 +1913.340444 +1913.359359 +1913.409375 +1913.411606 +1913.432419 +1913.449335 +1913.451799 +1913.464620 +1913.484833 +1913.492625 +1913.524294 +1913.530887 +1913.559658 +1913.588296 +1913.602216 +1913.616901 +1913.619132 +1913.647936 +1913.673444 +1913.685266 +1913.690427 +1913.718333 +1913.722928 +1913.748736 +1913.803248 +1913.817100 +1913.831986 +1913.856661 +1913.908809 +1913.946871 +1913.962189 +1913.977473 +1914.001316 +1914.009974 +1914.024959 +1914.068349 +1914.083234 +1914.097853 +1914.100284 +1914.137380 +1914.155528 +1914.169548 +1914.178505 +1914.183101 +1914.199551 +1914.212205 +1914.242108 +1914.244972 +1914.248069 +1914.257060 +1914.270979 +1914.287263 +1914.301116 +1914.316168 +1914.319031 +1914.343573 +1914.358991 +1914.388295 +1914.391426 +1914.403380 +1914.406411 +1914.415501 +1914.446004 +1914.451932 +1914.475841 +1914.490926 +1914.505078 +1914.507643 +1914.520030 +1914.563753 +1914.567449 +1914.576607 +1914.590726 +1914.600450 +1914.622261 +1914.636847 +1914.667150 +1914.670579 +1914.681901 +1914.684366 +1914.696920 +1914.727289 +1914.744272 +1914.761155 +1914.773010 +1914.778372 +1914.787729 +1914.802847 +1914.805811 +1914.818098 +1914.832284 +1914.843506 +1914.857359 +1914.860656 +1914.872477 +1914.895854 +1914.898185 +1914.919730 +1914.926656 +1914.940509 +1914.954495 +1914.970779 +1914.983699 +1914.998718 +1915.014269 +1915.017332 +1915.028788 +1915.037346 +1915.043939 +1915.058758 +1915.062121 +1915.073842 +1915.076407 +1915.103979 +1915.117832 +1915.121062 +1915.131318 +1915.146769 +1915.162820 +1915.165284 +1915.178704 +1915.193656 +1915.212604 +1915.224392 +1915.236879 +1915.240609 +1915.255028 +1915.271811 +1915.290259 +1915.301648 +1915.345437 +1915.348767 +1915.360489 +1915.376739 +1915.380436 +1915.391991 +1915.405677 +1915.412037 +1915.421428 +1915.426556 +1915.435880 +1915.452064 +1915.464019 +1915.480069 +1915.494621 +1915.509773 +1915.524724 +1915.537012 +1915.551631 +1915.567015 +1915.581235 +1915.584798 +1915.595986 +1915.609906 +1915.624491 +1915.639476 +1915.643106 +1915.655527 +1915.670279 +1915.675207 +1915.686296 +1915.700682 +1915.705510 +1915.715234 +1915.721794 +1915.729719 +1915.746269 +1915.750831 +1915.761654 +1915.777305 +1915.802813 +1915.814867 +1915.828920 +1915.832450 +1915.842340 +1915.847202 +1915.858224 +1915.872410 +1915.888927 +1915.903412 +1915.907741 +1915.918597 +1915.933082 +1915.944604 +1915.959656 +1925.972999 +1925.977095 +1925.980092 +1926.135903 +1926.977327 +1926.981623 +1927.974595 +1927.977326 +1927.980922 +1928.974694 +1928.978124 +1928.980788 +1929.973261 +1929.974560 +1929.977624 +1929.981087 +1930.973394 +1930.974826 +1930.978489 +1930.980620 +1935.973422 +1935.978916 +1935.980382 +1936.073455 +1936.074687 +1936.077518 +1936.173888 +1936.177684 +1936.274154 +1936.275386 +1936.278050 +1936.280082 +1936.374387 +1936.375819 +1936.378217 +1936.474654 +1936.476019 +1936.478683 +1936.574687 +1936.576152 +1936.674820 +1936.679282 +1936.774853 +1936.776285 +1936.779382 +1936.876285 +1936.878916 +1936.974853 +1936.976218 +1937.076251 +1937.079348 +1937.174919 +1937.176384 +1937.178915 +1937.274952 +1937.276218 +1937.278682 +1937.374886 +1937.376418 +1937.379415 +1937.474952 +1937.476451 +1937.479448 +1937.576451 +1937.579115 +1937.676384 +1937.679115 +1937.682744 +1937.774885 +1937.776284 +1937.778981 +1937.874919 +1937.876517 +1937.879447 +1937.976350 +1937.979481 +1938.078981 +1938.173187 +1938.276050 +1938.279114 +1938.476283 +1938.479247 +1938.576283 +1938.579047 +1938.676250 +1938.679213 +1938.776283 +1938.879380 +1938.976416 +1938.979413 +1939.073286 +1939.074984 +1939.173286 +1939.175050 +1939.276282 +1939.279379 +1939.374085 +1939.379579 +1939.474784 +1939.476182 +1939.479446 +1939.489336 +1939.574917 +1939.576315 +1939.579346 +1939.674883 +1939.676182 +1939.679246 +1939.779112 +1939.876282 +1939.879079 +1939.886472 +1939.976448 +1939.979379 +1940.076148 +1940.078846 +1940.179079 +1940.278379 +1940.374916 +1940.379212 +1940.479212 +1940.489168 +1940.579045 +1940.674849 +1940.676281 +1940.678745 +1940.773384 +1940.775082 +1940.873350 +1940.979045 +1945.869949 +1945.972546 +1945.973945 +1945.977608 +1945.979706 +1945.985134 +1945.987265 +1945.992193 +1945.994857 +1946.007811 +1946.015803 +1946.017634 +1946.025793 +1946.038414 +1946.048370 +1946.050035 +1946.059592 +1946.061157 +1946.071714 +1946.082270 +1946.094457 +1946.096089 +1946.106679 +1946.108710 +1946.119000 +1946.127924 +1946.136282 +1946.147138 +1946.149336 +1946.159059 +1946.160658 +1946.172779 +1946.175676 +1946.183901 +1946.194091 +1946.206012 +1946.213072 +1946.215170 +1946.224860 +1946.226658 +1946.238080 +1946.240245 +1946.250335 +1946.252200 +1946.263022 +1946.273845 +1946.285400 +1946.287564 +1946.298287 +1946.300385 +1946.310208 +1946.320997 +1946.322962 +1946.333818 +1946.335649 +1946.346505 +1946.348869 +1946.358793 +1946.376109 +1946.386199 +1946.389262 +1946.397587 +1946.399485 +1946.411007 +1946.422629 +1946.424594 +1946.435916 +1946.445573 +1946.457827 +1946.467784 +1946.477274 +1946.480005 +1946.490295 +1946.501383 +1946.513172 +1946.528323 +1946.530321 +1946.543641 +1946.556695 +1946.559592 +1946.570081 +1946.572079 +1946.584101 +1946.585899 +1946.598120 +1946.600617 +1946.611074 +1946.623495 +1946.631720 +1946.640344 +1946.650168 +1946.652399 +1946.675376 +1946.688030 +1946.700884 +1946.727058 +1946.749169 +1946.761923 +1946.786631 +1946.798386 +1946.812339 +1946.823927 +1946.846538 +1946.857960 +1946.868916 +1946.877507 +1946.889495 +1946.902382 +1946.917367 +1946.929655 +1946.943707 +1946.955296 +1946.967983 +1946.978439 +1946.983900 +1947.001783 +1947.030387 +1947.039012 +1947.058859 +1947.100184 +1947.125925 +1947.137247 +1947.149435 +1947.163221 +1947.174277 +1947.201383 +1947.213637 +1947.227790 +1947.240743 +1947.249035 +1947.256861 +1947.280370 +1947.286431 +1947.321895 +1947.332884 +1947.370014 +1947.384166 +1947.396554 +1947.410607 +1947.429022 +1947.444106 +1947.461855 +1947.473211 +1947.486431 +1947.503813 +1947.517200 +1947.536248 +1947.541742 +1947.549001 +1947.561855 +1947.576341 +1947.589694 +1947.602648 +1947.615668 +1947.628322 +1947.682634 +1947.695188 +1947.725258 +1947.730520 +1947.732951 +1947.743440 +1947.792757 +1947.804679 +1947.807043 +1947.840909 +1947.855262 +1947.880736 +1947.883100 +1947.892957 +1947.904079 +1947.931752 +1947.946737 +1947.959457 +1948.026657 +1948.038778 +1948.050832 +1948.053696 +1948.080969 +1948.087163 +1948.124359 +1948.139144 +1948.151598 +1948.177805 +1948.198951 +1948.232850 +1948.245771 +1948.261855 +1948.290592 +1948.304712 +1948.316200 +1948.339976 +1948.366183 +1948.395388 +1948.422960 +1948.449367 +1948.507708 +1948.521561 +1948.548901 +1948.581734 +1948.595554 +1948.725657 +1948.729753 +1948.741541 +1948.813602 +1948.825790 +1948.849866 +1948.852330 +1948.855494 +1948.862487 +1948.866949 +1948.873076 +1948.875274 +1948.878504 +1948.890425 +1948.900815 +1948.903113 +1948.915667 +1948.919763 +1948.925224 +1948.928021 +1948.935514 +1948.947701 +1948.963386 +1948.965517 +1948.978437 +1948.981101 +1948.991491 +1948.994221 +1949.003412 +1949.005510 +1949.016333 +1949.018530 +1949.030185 +1949.032816 +1949.042007 +1949.044271 +1949.046702 +1949.058324 +1949.060355 +1949.071810 +1949.087395 +1949.089859 +1949.101015 +1949.103679 +1949.114701 +1949.128054 +1949.130219 +1949.135347 +1949.142273 +1949.144371 +1949.154727 +1949.157891 +1949.165983 +1949.168680 +1949.179170 +1949.181268 +1949.191591 +1949.194255 +1949.204977 +1949.207674 +1949.217232 +1949.219263 +1949.222560 +1949.231684 +1949.233915 +1949.238344 +1949.247202 +1949.249466 +1949.260655 +1949.273442 +1949.276006 +1949.288860 +1949.291024 +1949.301114 +1949.316432 +1949.324291 +1949.330685 +1949.333049 +1949.336512 +1949.343172 +1949.345503 +1949.347967 +1949.359889 +1949.364784 +1949.376039 +1949.378404 +1949.382899 +1949.387861 +1949.390358 +1949.398617 +1949.403212 +1949.405643 +1949.432116 +1949.434647 +1949.439109 +1949.446136 +1949.448167 +1949.456359 +1949.460122 +1949.468647 +1949.473442 +1949.475739 +1949.478703 +1949.486862 +1949.488793 +1949.491457 +1949.502912 +1949.505043 +1949.516665 +1949.519163 +1949.530018 +1949.532250 +1949.547068 +1949.549665 +1949.558790 +1949.561221 +1949.565183 +1949.573175 +1949.575007 +1949.586695 +1949.592856 +1949.602346 +1949.604244 +1949.617564 +1949.619595 +1949.623025 +1949.630884 +1949.645836 +1949.660621 +1949.663019 +1949.674274 +1949.676505 +1949.679569 +1949.689525 +1949.691923 +1949.699249 +1949.703145 +1949.705443 +1949.708773 +1949.719495 +1949.721394 +1949.734414 +1949.736512 +1949.752529 +1949.762353 +1949.776705 +1949.778736 +1949.781500 +1949.795486 +1949.800681 +1949.805010 +1949.808506 +1949.817864 +1949.820461 +1949.831050 +1949.833448 +1949.845369 +1949.847934 +1949.858157 +1949.860255 +1949.872542 +1949.887827 +1949.889925 +1949.892922 +1949.901380 +1949.903545 +1949.906875 +1949.915266 +1949.918263 +1949.927987 +1949.931450 +1949.937277 +1949.940341 +1949.951130 +1949.959888 +1949.971210 +1949.979269 +1949.981600 +1949.994387 +1949.996685 +1950.008240 +1950.022292 +1950.024424 +1950.036978 +1950.041506 +1950.052096 +1950.063085 +1950.065449 +1950.077770 +1950.091856 +1950.094620 +1950.108772 +1950.111869 +1950.123791 +1950.126122 +1950.140008 +1950.143704 +1950.152928 +1950.156125 +1950.165915 +1950.182898 +1950.185362 +1950.196751 +1950.199049 +1950.212302 +1950.215432 +1950.223191 +1950.230584 +1950.244204 +1950.246401 +1950.251996 +1950.259655 +1950.274773 +1950.288093 +1950.291057 +1950.298915 +1950.319928 +1950.333747 +1950.335978 +1950.348899 +1950.351296 +1950.364317 +1950.366814 +1950.379335 +1950.390391 +1950.402612 +1950.408439 +1950.419029 +1950.434280 +1950.437110 +1950.448765 +1950.451829 +1950.464550 +1950.479934 +1950.493121 +1950.506341 +1950.508705 +1950.521359 +1950.523990 +1950.537144 +1950.548799 +1950.552961 +1950.576771 +1950.589291 +1950.592988 +1950.602745 +1950.605675 +1950.614833 +1950.629584 +1950.632282 +1950.638975 +1950.659088 +1950.673607 +1950.689191 +1950.691989 +1950.705109 +1950.711902 +1950.720061 +1950.723224 +1950.740906 +1950.763550 +1950.769877 +1950.777903 +1950.787093 +1950.793853 +1950.811003 +1950.814466 +1950.823590 +1950.836744 +1950.839674 +1950.843204 +1950.852694 +1950.861119 +1950.876537 +1950.879901 +1950.889391 +1950.905209 +1950.908106 +1950.920160 +1950.923690 +1950.933847 +1950.947966 +1950.962251 +1950.970943 +1960.976028 +1960.978658 +1960.980856 +1960.996074 +1961.971997 +1961.979323 +1961.981321 +1962.979356 +1963.972961 +1963.974293 +1963.977357 +1964.972161 +1964.979021 +1965.972826 +1965.974191 +1965.977022 +1965.980252 +1970.973154 +1970.977150 +1970.978915 +1970.992568 +1971.072454 +1971.073687 +1971.076184 +1971.173420 +1971.174719 +1971.177649 +1971.273786 +1971.275085 +1971.277882 +1971.373986 +1971.375451 +1971.378215 +1971.474319 +1971.475717 +1971.478581 +1971.574385 +1971.575817 +1971.579447 +1971.674419 +1971.675817 +1971.678448 +1971.681445 +1971.774552 +1971.775950 +1971.778714 +1971.874651 +1971.875983 +1971.878881 +1971.887139 +1971.974651 +1971.976017 +1971.979014 +1971.991967 +1972.076083 +1972.078780 +1972.174618 +1972.175983 +1972.187172 +1972.275517 +1972.279013 +1972.375450 +1972.378880 +1972.474451 +1972.475850 +1972.478547 +1972.579080 +1972.674617 +1972.675983 +1972.679113 +1972.690635 +1972.774651 +1972.779079 +1972.874551 +1972.875849 +1972.878646 +1972.974517 +1972.975849 +1972.978280 +1972.988370 +1973.074584 +1973.078613 +1973.174617 +1973.176082 +1973.178813 +1973.274617 +1973.278779 +1973.374650 +1973.376049 +1973.378946 +1973.475882 +1973.478979 +1973.573651 +1973.574983 +1973.578146 +1973.674317 +1973.675715 +1973.681143 +1973.775848 +1973.778679 +1973.876048 +1973.879245 +1973.975948 +1973.979012 +1974.076015 +1974.078878 +1974.178912 +1974.274582 +1974.275948 +1974.278911 +1974.376014 +1974.378578 +1974.479344 +1974.574582 +1974.575914 +1974.673783 +1974.675181 +1974.678278 +1974.774449 +1974.775881 +1974.779244 +1974.874549 +1974.875881 +1974.878644 +1974.975947 +1974.979144 +1975.074648 +1975.078844 +1975.178544 +1975.276013 +1975.278677 +1975.375980 +1975.479210 +1975.575913 +1975.579010 +1975.587835 +1975.673316 +1975.674681 +1975.774481 +1975.778843 +1975.874514 +1975.875946 +1975.878643 +1975.975979 +1975.978643 +1980.085333 +1980.442542 +1980.972445 +1980.973777 +1980.976174 +1980.980670 +1980.985099 +1980.986764 +1980.992658 +1980.994423 +1981.002215 +1981.005878 +1981.015168 +1981.017366 +1981.023960 +1981.032351 +1981.038811 +1981.040676 +1981.059657 +1981.070680 +1981.079338 +1981.085198 +1981.096454 +1981.107742 +1981.118032 +1981.128455 +1981.136214 +1981.145938 +1981.155894 +1981.165351 +1981.172677 +1981.182834 +1981.184799 +1981.195288 +1981.197086 +1981.207709 +1981.209840 +1981.220163 +1981.222328 +1981.232884 +1981.234982 +1981.246370 +1981.257792 +1981.260256 +1981.269614 +1981.271612 +1981.282401 +1981.284665 +1981.295221 +1981.298185 +1981.307409 +1981.309640 +1981.319331 +1981.330952 +1981.342174 +1981.352264 +1981.359124 +1981.370912 +1981.372777 +1981.384965 +1981.387329 +1981.397452 +1981.399450 +1981.411672 +1981.413936 +1981.424692 +1981.436480 +1981.439477 +1981.448202 +1981.450000 +1981.461455 +1981.463686 +1981.473310 +1981.475241 +1981.486530 +1981.488495 +1981.499417 +1981.501681 +1981.513070 +1981.517566 +1981.524692 +1981.535148 +1981.537446 +1981.547536 +1981.549534 +1981.560123 +1981.584865 +1981.587595 +1981.596886 +1981.631618 +1981.644272 +1981.668415 +1981.671312 +1981.680736 +1981.692790 +1981.716733 +1981.737778 +1981.778937 +1981.792490 +1981.806610 +1981.821461 +1981.848235 +1981.860256 +1981.875108 +1981.886863 +1981.897652 +1981.905777 +1981.908141 +1981.931917 +1981.946503 +1981.958624 +1981.985431 +1981.996186 +1982.005744 +1982.028654 +1982.045537 +1982.073176 +1982.086629 +1982.111038 +1982.123792 +1982.126389 +1982.136546 +1982.151631 +1982.162320 +1982.183199 +1982.203945 +1982.216533 +1982.245037 +1982.258890 +1982.274142 +1982.282733 +1982.293789 +1982.307841 +1982.310172 +1982.319729 +1982.324758 +1982.333948 +1982.342007 +1982.352630 +1982.356892 +1982.364285 +1982.370945 +1982.380502 +1982.392789 +1982.419429 +1982.427322 +1982.438011 +1982.452663 +1982.476639 +1982.491091 +1982.505343 +1982.508207 +1982.531684 +1982.545570 +1982.557591 +1982.569779 +1982.583798 +1982.612070 +1982.619030 +1982.630851 +1982.656525 +1982.682766 +1982.696519 +1982.711504 +1982.722659 +1982.736179 +1982.749566 +1982.761687 +1982.774974 +1982.786395 +1982.798150 +1982.876139 +1982.891757 +1982.901580 +1982.939675 +1982.950664 +1982.966782 +1982.979169 +1982.992855 +1983.005376 +1983.021593 +1983.047667 +1983.071876 +1983.085696 +1983.122459 +1983.148100 +1983.161686 +1983.189359 +1983.192322 +1983.212635 +1983.224290 +1983.275073 +1983.333148 +1983.387127 +1983.394820 +1983.402079 +1983.415732 +1983.442805 +1983.465749 +1983.514833 +1983.517763 +1983.525389 +1983.563950 +1983.587460 +1983.589591 +1983.594786 +1983.599015 +1983.612502 +1983.626688 +1983.642106 +1983.707107 +1983.719894 +1983.752362 +1983.763817 +1983.766115 +1983.769445 +1983.779235 +1983.781866 +1983.790990 +1983.793354 +1983.806208 +1983.808539 +1983.812968 +1983.820693 +1983.822825 +1983.834346 +1983.836777 +1983.841539 +1983.850231 +1983.853028 +1983.862452 +1983.865282 +1983.875572 +1983.878136 +1983.881233 +1983.890823 +1983.893054 +1983.905142 +1983.907373 +1983.909971 +1983.920827 +1983.923124 +1983.933614 +1983.936045 +1983.938875 +1983.948532 +1983.951829 +1983.960121 +1983.962884 +1983.970876 +1983.973540 +1983.984796 +1983.987060 +1983.999315 +1984.001346 +1984.012168 +1984.017796 +1984.026887 +1984.028985 +1984.042705 +1984.047333 +1984.053094 +1984.057423 +1984.065249 +1984.068445 +1984.077137 +1984.085795 +1984.088226 +1984.098049 +1984.100480 +1984.111835 +1984.113800 +1984.124123 +1984.126754 +1984.136944 +1984.139075 +1984.149897 +1984.152062 +1984.156690 +1984.166148 +1984.169045 +1984.177603 +1984.183996 +1984.186527 +1984.198815 +1984.212035 +1984.215199 +1984.226354 +1984.228752 +1984.239674 +1984.243104 +1984.250763 +1984.260620 +1984.263017 +1984.273573 +1984.275538 +1984.281466 +1984.288925 +1984.291422 +1984.302778 +1984.306441 +1984.309771 +1984.316397 +1984.319028 +1984.329617 +1984.336644 +1984.347633 +1984.350463 +1984.360919 +1984.373507 +1984.376437 +1984.390523 +1984.402311 +1984.404576 +1984.409171 +1984.415798 +1984.418362 +1984.421192 +1984.433846 +1984.442504 +1984.454359 +1984.456657 +1984.467246 +1984.470543 +1984.481465 +1984.494286 +1984.496450 +1984.510470 +1984.514233 +1984.522957 +1984.528751 +1984.538075 +1984.540473 +1984.551029 +1984.553393 +1984.561419 +1984.564782 +1984.575971 +1984.578135 +1984.589357 +1984.591688 +1984.594486 +1984.603943 +1984.606573 +1984.614898 +1984.618462 +1984.625688 +1984.636011 +1984.638541 +1984.641239 +1984.652261 +1984.655857 +1984.663650 +1984.666180 +1984.679267 +1984.682198 +1984.692121 +1984.696617 +1984.704575 +1984.706806 +1984.719494 +1984.721725 +1984.733047 +1984.735211 +1984.749064 +1984.752527 +1984.759021 +1984.761452 +1984.773040 +1984.775205 +1984.785061 +1984.787759 +1984.800146 +1984.802710 +1984.813267 +1984.815897 +1984.824855 +1984.827352 +1984.836710 +1984.847899 +1984.850063 +1984.863283 +1984.865847 +1984.875438 +1984.878268 +1984.888025 +1984.890090 +1984.897083 +1984.901412 +1984.908205 +1984.910569 +1984.914166 +1984.922590 +1984.925521 +1984.934812 +1984.948065 +1984.952061 +1984.955591 +1984.961119 +1984.967978 +1984.970243 +1984.985228 +1984.989790 +1984.999580 +1985.001711 +1985.013266 +1985.015830 +1985.026187 +1985.029250 +1985.038141 +1985.040739 +1985.047266 +1985.052927 +1985.055757 +1985.066147 +1985.077968 +1985.080299 +1985.091754 +1985.100712 +1985.103276 +1985.115397 +1985.117429 +1985.129850 +1985.132281 +1985.141471 +1985.155391 +1985.157289 +1985.171341 +1985.173739 +1985.200412 +1985.202777 +1985.206606 +1985.213799 +1985.219227 +1985.229350 +1985.236276 +1985.243736 +1985.245867 +1985.248764 +1985.258488 +1985.269044 +1985.271974 +1985.275304 +1985.284961 +1985.287592 +1985.292387 +1985.301078 +1985.303076 +1985.316196 +1985.327285 +1985.329816 +1985.333912 +1985.341138 +1985.356423 +1985.361951 +1985.365381 +1985.368078 +1985.377535 +1985.380099 +1985.383662 +1985.392487 +1985.398148 +1985.408204 +1985.410336 +1985.423089 +1985.425387 +1985.429350 +1985.437608 +1985.439973 +1985.453792 +1985.456523 +1985.466479 +1985.468744 +1985.473805 +1985.480898 +1985.484162 +1985.494252 +1985.497981 +1985.506839 +1985.512733 +1985.521957 +1985.526453 +1985.534345 +1985.545600 +1985.547931 +1985.560152 +1985.563049 +1985.569876 +1985.574105 +1985.582830 +1985.593819 +1985.604941 +1985.608637 +1985.617695 +1985.619659 +1985.623156 +1985.632979 +1985.634977 +1985.647765 +1985.650429 +1985.655390 +1985.662716 +1985.664681 +1985.676769 +1985.679566 +1985.689689 +1985.692586 +1985.702776 +1985.704874 +1985.718227 +1985.727352 +1985.731514 +1985.739506 +1985.742103 +1985.752493 +1985.755024 +1985.758187 +1985.767511 +1985.779033 +1985.782163 +1985.794951 +1985.797648 +1985.801411 +1985.811900 +1985.822090 +1985.828317 +1985.836276 +1985.839106 +1985.850728 +1985.853892 +1985.858187 +1985.867245 +1985.870175 +1985.878767 +1985.888324 +1985.891254 +1985.901777 +1985.926019 +1985.931414 +1985.943935 +1985.947831 +1985.957155 +1985.959752 +1995.972330 +1995.973595 +1995.976192 +1995.979556 +1996.979089 +1996.981386 +1997.974625 +1997.977589 +1998.974358 +1998.977388 +1998.980485 +1999.973225 +1999.979385 +1999.982349 +2000.972258 +2000.980283 +2003.956837 +2005.977082 +2005.979912 +2006.077148 +2006.178247 +2006.274517 +2006.275849 +2006.278280 +2006.374850 +2006.376149 +2006.379146 +2006.383475 +2006.474850 +2006.479412 +2006.575949 +2006.679811 +2006.774284 +2006.874050 +2006.875815 +2006.975083 +2006.976514 +2006.980078 +2007.079778 +2007.179944 +2007.275215 +2007.276714 +2007.279345 +2007.284107 +2007.379877 +2007.476214 +2007.479578 +2007.576281 +2007.580776 +2007.675215 +2007.676647 +2007.679577 +2007.775248 +2007.776580 +2007.779211 +2007.781575 +2007.876680 +2007.879444 +2007.976247 +2008.075381 +2008.076846 +2008.079610 +2008.175248 +2008.176580 +2008.179976 +2008.279444 +2008.375348 +2008.376713 +2008.379643 +2008.475248 +2008.476546 +2008.479343 +2008.483073 +2008.575281 +2008.576613 +2008.579676 +2008.675381 +2008.676679 +2008.679643 +2008.775181 +2008.776513 +2008.779476 +2008.875447 +2008.974315 +2008.979876 +2009.076113 +2009.079643 +2009.174248 +2009.175646 +2009.275380 +2009.276645 +2009.279576 +2009.374947 +2009.379576 +2009.475147 +2009.476545 +2009.480242 +2009.576845 +2009.579376 +2009.676911 +2009.679875 +2009.779642 +2009.875513 +2009.879975 +2009.975346 +2009.976745 +2009.979975 +2009.992695 +2010.074980 +2010.076378 +2010.079475 +2010.176878 +2010.180074 +2010.184636 +2010.275379 +2010.276744 +2010.279541 +2010.283870 +2010.480507 +2010.577010 +2010.676810 +2010.679674 +2010.774679 +2010.779208 +2010.876777 +2010.879841 +2010.976877 +2010.979607 +2015.973309 +2015.974541 +2015.977438 +2015.980168 +2015.982133 +2015.987694 +2015.994221 +2015.996186 +2016.005476 +2016.014434 +2016.015933 +2016.025290 +2016.027088 +2016.036445 +2016.038443 +2016.047135 +2016.057125 +2016.067847 +2016.081800 +2016.093855 +2016.105310 +2016.107208 +2016.118164 +2016.120428 +2016.129685 +2016.131717 +2016.141607 +2016.152363 +2016.162286 +2016.164118 +2016.174840 +2016.177438 +2016.187761 +2016.197484 +2016.208107 +2016.219163 +2016.230018 +2016.241407 +2016.243105 +2016.255260 +2016.257224 +2016.268680 +2016.279535 +2016.291157 +2016.293055 +2016.304111 +2016.306109 +2016.316765 +2016.318996 +2016.328620 +2016.340508 +2016.342306 +2016.353295 +2016.357191 +2016.363551 +2016.374041 +2016.376372 +2016.386462 +2016.388027 +2016.400714 +2016.402646 +2016.414134 +2016.416332 +2016.426322 +2016.428153 +2016.439375 +2016.441307 +2016.453395 +2016.464783 +2016.477204 +2016.479735 +2016.488393 +2016.513068 +2016.528220 +2016.539608 +2016.550831 +2016.553395 +2016.575173 +2016.588559 +2016.602412 +2016.615333 +2016.627254 +2016.639242 +2016.652329 +2016.663851 +2016.678603 +2016.701014 +2016.712868 +2016.723391 +2016.747700 +2016.760654 +2016.776538 +2016.789292 +2016.814433 +2016.822792 +2016.846768 +2016.860920 +2016.874606 +2016.887760 +2016.900314 +2016.911736 +2016.923058 +2016.934247 +2016.947434 +2016.961020 +2016.964050 +2016.973241 +2016.985029 +2016.998216 +2017.001413 +2017.011336 +2017.048965 +2017.063351 +2017.075439 +2017.078502 +2017.089691 +2017.111336 +2017.154360 +2017.183864 +2017.196284 +2017.207706 +2017.217363 +2017.242505 +2017.245369 +2017.256125 +2017.266681 +2017.294053 +2017.306840 +2017.321492 +2017.335445 +2017.338142 +2017.348732 +2017.358788 +2017.360920 +2017.371975 +2017.386394 +2017.399614 +2017.404476 +2017.431316 +2017.454559 +2017.466780 +2017.469311 +2017.479701 +2017.489724 +2017.519128 +2017.531482 +2017.543537 +2017.556957 +2017.570110 +2017.589058 +2017.615099 +2017.625022 +2017.642005 +2017.649764 +2017.663983 +2017.694253 +2017.743237 +2017.745401 +2017.756457 +2017.780200 +2017.783830 +2017.801312 +2017.823323 +2017.825621 +2017.878835 +2017.914499 +2017.920460 +2017.929084 +2017.931582 +2017.957822 +2017.972940 +2017.981432 +2018.001911 +2018.015498 +2018.066846 +2018.069577 +2018.143470 +2018.200413 +2018.211735 +2018.225687 +2018.253060 +2018.266413 +2018.275504 +2018.283629 +2018.302777 +2018.344235 +2018.356157 +2018.393286 +2018.395584 +2018.408671 +2018.421691 +2018.438408 +2018.441405 +2018.451928 +2018.466047 +2018.504708 +2018.553393 +2018.564282 +2018.573106 +2018.626020 +2018.637608 +2018.668810 +2018.680865 +2018.685893 +2018.693053 +2018.695417 +2018.707239 +2018.709303 +2018.721158 +2018.723556 +2018.736143 +2018.738274 +2018.752327 +2018.764515 +2018.767279 +2018.779966 +2018.782430 +2018.791987 +2018.794485 +2018.806639 +2018.809070 +2018.820825 +2018.822856 +2018.833945 +2018.836476 +2018.848730 +2018.850928 +2018.864248 +2018.866646 +2018.879300 +2018.882030 +2018.891654 +2018.894085 +2018.906839 +2018.909436 +2018.919992 +2018.922623 +2018.935677 +2018.939340 +2018.948863 +2018.951194 +2018.965880 +2018.974638 +2018.977768 +2018.980532 +2018.991854 +2019.004008 +2019.006306 +2019.017328 +2019.021158 +2019.027185 +2019.029716 +2019.040905 +2019.044235 +2019.052926 +2019.055257 +2019.069609 +2019.071774 +2019.083995 +2019.087058 +2019.096882 +2019.099946 +2019.109436 +2019.113332 +2019.120791 +2019.122989 +2019.132813 +2019.135077 +2019.147431 +2019.149662 +2019.160452 +2019.163182 +2019.175170 +2019.177501 +2019.191054 +2019.194451 +2019.200611 +2019.203775 +2019.217195 +2019.228384 +2019.230615 +2019.238940 +2019.242270 +2019.254458 +2019.256389 +2019.261084 +2019.269409 +2019.271441 +2019.275004 +2019.285726 +2019.288390 +2019.295650 +2019.300079 +2019.302842 +2019.313532 +2019.324587 +2019.327285 +2019.339206 +2019.341371 +2019.351793 +2019.354391 +2019.364547 +2019.366845 +2019.379666 +2019.381830 +2019.394051 +2019.396116 +2019.409203 +2019.412033 +2019.422090 +2019.424454 +2019.434977 +2019.438007 +2019.447864 +2019.450561 +2019.460085 +2019.462616 +2019.474238 +2019.476702 +2019.480032 +2019.492319 +2019.494251 +2019.497980 +2019.507671 +2019.509968 +2019.524021 +2019.536608 +2019.540238 +2019.551727 +2019.553958 +2019.559319 +2019.567544 +2019.569875 +2019.577934 +2019.583795 +2019.586658 +2019.597015 +2019.599146 +2019.612766 +2019.614930 +2019.626419 +2019.642336 +2019.646931 +2019.655956 +2019.658453 +2019.673571 +2019.675802 +2019.686159 +2019.688823 +2019.701843 +2019.708103 +2019.717827 +2019.719825 +2019.727184 +2019.733611 +2019.742369 +2019.748996 +2019.751294 +2019.755090 +2019.763048 +2019.774870 +2019.777534 +2019.787191 +2019.798080 +2019.800844 +2019.810834 +2019.814264 +2019.822156 +2019.824087 +2019.829282 +2019.838173 +2019.847730 +2019.850028 +2019.861850 +2019.864380 +2019.874337 +2019.876868 +2019.888956 +2019.891420 +2019.902342 +2019.904374 +2019.915962 +2019.918060 +2019.930448 +2019.932579 +2019.937241 +2019.944800 +2019.947730 +2019.956555 +2019.959452 +2019.968343 +2019.970874 +2019.981297 +2019.983728 +2019.995849 +2020.005639 +2020.007737 +2020.017694 +2020.021490 +2020.032179 +2020.040737 +2020.043235 +2020.054090 +2020.059352 +2020.070174 +2020.072639 +2020.082462 +2020.084793 +2020.094816 +2020.097047 +2020.100178 +2020.111133 +2020.125286 +2020.127384 +2020.133411 +2020.134110 +2020.141436 +2020.143534 +2020.155356 +2020.157687 +2020.163248 +2020.171073 +2020.176002 +2020.187757 +2020.198046 +2020.215429 +2020.217960 +2020.232012 +2020.234077 +2020.236907 +2020.247197 +2020.249428 +2020.262016 +2020.264280 +2020.269208 +2020.278932 +2020.281263 +2020.293651 +2020.296248 +2020.300644 +2020.309102 +2020.311966 +2020.317826 +2020.324986 +2020.327284 +2020.338373 +2020.340770 +2020.353324 +2020.355555 +2020.366611 +2020.368942 +2020.380231 +2020.383827 +2020.399545 +2020.403274 +2020.416195 +2020.419625 +2020.428349 +2020.431646 +2020.441170 +2020.443667 +2020.455722 +2020.458219 +2020.469308 +2020.471706 +2020.480730 +2020.484160 +2020.488256 +2020.495315 +2020.497580 +2020.513064 +2020.524320 +2020.527650 +2020.538272 +2020.540703 +2020.546631 +2020.552725 +2020.563714 +2020.566644 +2020.576567 +2020.578865 +2020.590520 +2020.601709 +2020.615728 +2020.618159 +2020.630613 +2020.632745 +2020.636607 +2020.645365 +2020.660816 +2020.667077 +2020.677333 +2020.694782 +2020.698146 +2020.706038 +2020.709068 +2020.733577 +2020.748395 +2020.754922 +2020.780530 +2020.795981 +2020.798945 +2020.810234 +2020.823487 +2020.826118 +2020.838106 +2020.848662 +2020.853390 +2020.863047 +2020.869008 +2020.876567 +2020.890453 +2020.901942 +2020.904539 +2020.918359 +2020.927450 +2020.930180 +2020.942068 +2020.945931 +2020.950626 +2030.974093 +2030.975425 +2030.977856 +2030.980853 +2030.996937 +2031.974358 +2031.978221 +2031.981351 +2031.992107 +2032.973758 +2032.975057 +2032.981184 +2033.973391 +2033.974789 +2033.980983 +2033.982881 +2034.975321 +2034.981581 +2035.974154 +2035.975553 +2035.980948 +2036.423272 +2038.285008 +2040.973550 +2040.977946 +2040.980710 +2041.075814 +2041.078312 +2041.175115 +2041.179044 +2041.275415 +2041.279810 +2041.377146 +2041.379743 +2041.384905 +2041.386870 +2041.475980 +2041.477446 +2041.480409 +2041.577412 +2041.676080 +2041.677545 +2041.680842 +2041.776113 +2041.780409 +2041.785238 +2041.880276 +2041.975913 +2041.977145 +2042.075047 +2042.076446 +2042.080309 +2042.176013 +2042.276113 +2042.277445 +2042.280375 +2042.376213 +2042.377645 +2042.380175 +2042.385803 +2042.477711 +2042.480275 +2042.577711 +2042.580741 +2042.777711 +2042.780375 +2042.877611 +2042.880541 +2042.976279 +2042.977711 +2042.980741 +2043.077844 +2043.080541 +2043.090564 +2043.176112 +2043.177577 +2043.180774 +2043.275013 +2043.281706 +2043.375945 +2043.377311 +2043.380374 +2043.476112 +2043.477544 +2043.481107 +2043.576211 +2043.580407 +2043.676278 +2043.677710 +2043.687800 +2043.775745 +2043.777077 +2043.780607 +2043.876178 +2043.877676 +2043.880840 +2043.976211 +2043.977610 +2043.980240 +2044.077743 +2044.080607 +2044.176311 +2044.177709 +2044.180840 +2044.276311 +2044.277743 +2044.280906 +2044.377909 +2044.380673 +2044.477742 +2044.480073 +2044.485535 +2044.576477 +2044.577875 +2044.580573 +2044.676277 +2044.677642 +2044.680772 +2044.686167 +2044.775344 +2044.776743 +2044.780306 +2044.875311 +2044.880439 +2044.974878 +2044.976410 +2045.075844 +2045.077142 +2045.080139 +2045.176143 +2045.180805 +2045.276143 +2045.277475 +2045.280239 +2045.375577 +2045.376976 +2045.380705 +2045.476309 +2045.477641 +2045.479972 +2045.577641 +2045.676243 +2045.677675 +2045.680472 +2045.777508 +2045.780305 +2045.875576 +2045.879306 +2045.975843 +2045.985133 +2050.975105 +2050.979734 +2050.981299 +2050.987293 +2050.988958 +2050.995551 +2050.997183 +2051.004576 +2051.012335 +2051.020127 +2051.027986 +2051.037110 +2051.038775 +2051.048532 +2051.060087 +2051.062784 +2051.072841 +2051.083663 +2051.095884 +2051.104609 +2051.112035 +2051.120992 +2051.122791 +2051.134113 +2051.136577 +2051.146101 +2051.157190 +2051.158855 +2051.168578 +2051.179367 +2051.181166 +2051.191255 +2051.204975 +2051.215032 +2051.220293 +2051.229151 +2051.237576 +2051.240007 +2051.249963 +2051.261019 +2051.271875 +2051.283230 +2051.294352 +2051.305674 +2051.307639 +2051.318295 +2051.325088 +2051.333413 +2051.343803 +2051.346034 +2051.356557 +2051.358421 +2051.369810 +2051.371875 +2051.382231 +2051.385061 +2051.396716 +2051.418062 +2051.420093 +2051.431648 +2051.449397 +2051.452494 +2051.464182 +2051.474472 +2051.512567 +2051.523090 +2051.537009 +2051.589757 +2051.617495 +2051.620659 +2051.641205 +2051.651528 +2051.662750 +2051.665381 +2051.687326 +2051.713000 +2051.724788 +2051.728085 +2051.736643 +2051.747365 +2051.767812 +2051.778667 +2051.822191 +2051.873872 +2051.887192 +2051.894884 +2051.906539 +2051.928684 +2051.942237 +2051.969410 +2051.971674 +2051.983063 +2051.994751 +2052.007605 +2052.010868 +2052.020625 +2052.055057 +2052.067079 +2052.078401 +2052.089490 +2052.101744 +2052.113599 +2052.125953 +2052.137408 +2052.151727 +2052.154458 +2052.191021 +2052.207771 +2052.218227 +2052.220891 +2052.267345 +2052.278534 +2052.292287 +2052.306040 +2052.332213 +2052.336409 +2052.357022 +2052.363582 +2052.405607 +2052.408537 +2052.428450 +2052.437075 +2052.447831 +2052.461950 +2052.472306 +2052.481431 +2052.493585 +2052.508936 +2052.524454 +2052.552559 +2052.555623 +2052.582063 +2052.606905 +2052.630715 +2052.644434 +2052.657521 +2052.681597 +2052.704341 +2052.719026 +2052.778000 +2052.791787 +2052.795649 +2052.803875 +2052.813065 +2052.826186 +2052.834810 +2052.850661 +2052.878167 +2052.904341 +2052.940438 +2052.968044 +2052.980731 +2052.983328 +2053.020491 +2053.035543 +2053.077334 +2053.087890 +2053.102742 +2053.117860 +2053.129315 +2053.139206 +2053.173172 +2053.186525 +2053.198646 +2053.201477 +2053.212366 +2053.227917 +2053.254091 +2053.265712 +2053.282396 +2053.295516 +2053.319692 +2053.351993 +2053.369375 +2053.417261 +2053.440637 +2053.469841 +2053.483927 +2053.497880 +2053.540071 +2053.567477 +2053.578965 +2053.581130 +2053.606704 +2053.610101 +2053.618259 +2053.621656 +2053.630913 +2053.633278 +2053.644233 +2053.646564 +2053.658186 +2053.673671 +2053.675935 +2053.688356 +2053.696681 +2053.700311 +2053.712498 +2053.724653 +2053.726851 +2053.739938 +2053.742135 +2053.746764 +2053.755056 +2053.757953 +2053.768409 +2053.770707 +2053.782695 +2053.785226 +2053.797913 +2053.800444 +2053.809868 +2053.812865 +2053.822555 +2053.824653 +2053.836541 +2053.838705 +2053.851925 +2053.854689 +2053.864480 +2053.866711 +2053.881263 +2053.883494 +2053.895582 +2053.906304 +2053.909135 +2053.919391 +2053.922089 +2053.932445 +2053.944200 +2053.946298 +2053.952192 +2053.976401 +2053.986557 +2053.989355 +2054.000543 +2054.015095 +2054.029048 +2054.030946 +2054.040270 +2054.046664 +2054.058885 +2054.062748 +2054.068675 +2054.071106 +2054.083993 +2054.086357 +2054.099045 +2054.101442 +2054.108668 +2054.112764 +2054.117893 +2054.123487 +2054.125851 +2054.128748 +2054.139105 +2054.141169 +2054.152758 +2054.155422 +2054.166644 +2054.169008 +2054.180363 +2054.182728 +2054.193850 +2054.195914 +2054.207236 +2054.209634 +2054.222421 +2054.225085 +2054.237639 +2054.240203 +2054.249527 +2054.251858 +2054.262015 +2054.264413 +2054.276334 +2054.278898 +2054.291219 +2054.293417 +2054.300943 +2054.306737 +2054.309134 +2054.319691 +2054.322255 +2054.329281 +2054.333377 +2054.335774 +2054.347196 +2054.349361 +2054.354656 +2054.361815 +2054.364179 +2054.376201 +2054.378299 +2054.384326 +2054.390753 +2054.392851 +2054.401375 +2054.404905 +2054.407702 +2054.416993 +2054.419324 +2054.429780 +2054.432045 +2054.443800 +2054.446131 +2054.457253 +2054.459684 +2054.469341 +2054.471938 +2054.483527 +2054.485724 +2054.498145 +2054.500543 +2054.504506 +2054.511931 +2054.514662 +2054.526417 +2054.528948 +2054.541702 +2054.544133 +2054.548428 +2054.557519 +2054.573869 +2054.587456 +2054.590686 +2054.602241 +2054.605604 +2054.613829 +2054.618591 +2054.631911 +2054.634142 +2054.646996 +2054.662547 +2054.671339 +2054.674102 +2054.685491 +2054.687822 +2054.698911 +2054.701175 +2054.713163 +2054.715295 +2054.723453 +2054.728415 +2054.731245 +2054.741835 +2054.744798 +2054.754589 +2054.762081 +2054.769873 +2054.772271 +2054.784192 +2054.786890 +2054.789420 +2054.803073 +2054.806037 +2054.818192 +2054.826783 +2054.835408 +2054.849593 +2054.852257 +2054.857352 +2054.863147 +2054.879097 +2054.886756 +2054.889087 +2054.902441 +2054.905771 +2054.915261 +2054.917392 +2054.931312 +2054.933842 +2054.941668 +2054.945264 +2054.955454 +2054.957685 +2054.970639 +2054.973769 +2054.982527 +2054.997013 +2055.000209 +2055.009633 +2055.012430 +2055.022187 +2055.024652 +2055.035874 +2055.038271 +2055.041801 +2055.051158 +2055.060682 +2055.063579 +2055.075601 +2055.085890 +2055.088521 +2055.100276 +2055.104771 +2055.112430 +2055.114828 +2055.118058 +2055.126150 +2055.128581 +2055.138138 +2055.149826 +2055.153156 +2055.162247 +2055.164611 +2055.175600 +2055.178731 +2055.189420 +2055.204671 +2055.206736 +2055.215461 +2055.219390 +2055.228980 +2055.231378 +2055.243899 +2055.257452 +2055.260116 +2055.271405 +2055.275401 +2055.281927 +2055.297212 +2055.312463 +2055.314628 +2055.322553 +2055.328747 +2055.331311 +2055.335574 +2055.342433 +2055.344764 +2055.347728 +2055.358517 +2055.361181 +2055.372370 +2055.381661 +2055.388820 +2055.391085 +2055.404638 +2055.407568 +2055.410832 +2055.419090 +2055.422187 +2055.432776 +2055.436106 +2055.445564 +2055.448660 +2055.457984 +2055.461048 +2055.470672 +2055.473069 +2055.485390 +2055.487688 +2055.497278 +2055.502906 +2055.515027 +2055.518590 +2055.529713 +2055.543366 +2055.556020 +2055.565510 +2055.568740 +2055.579996 +2055.585157 +2055.590385 +2055.605337 +2055.617158 +2055.619689 +2055.631644 +2055.634674 +2055.645430 +2055.649260 +2055.658417 +2055.671171 +2055.674002 +2055.682726 +2055.686089 +2055.695413 +2055.707302 +2055.709566 +2055.713096 +2055.723552 +2055.732177 +2055.737072 +2055.747961 +2055.751524 +2055.764511 +2055.767275 +2055.777598 +2055.793615 +2055.796912 +2055.806802 +2055.809965 +2055.847495 +2055.850159 +2055.864744 +2055.871504 +2055.876799 +2055.884557 +2055.888687 +2055.896945 +2055.907468 +2055.910165 +2055.929113 +2055.932609 +2055.942699 +2055.946695 +2055.959782 +2059.410694 +2065.975390 +2065.980651 +2066.974756 +2066.976022 +2066.978519 +2066.982282 +2067.974788 +2067.976154 +2067.979184 +2067.982281 +2068.305524 +2068.973955 +2068.980648 +2069.974620 +2069.975985 +2069.979582 +2069.981913 +2069.987907 +2070.974686 +2070.975984 +2070.979181 +2070.981945 +2070.990769 +2075.974880 +2075.980208 +2075.981807 +2076.077844 +2076.175713 +2076.178843 +2076.183372 +2076.275546 +2076.276911 +2076.375946 +2076.377311 +2076.380208 +2076.480574 +2076.576212 +2076.577577 +2076.580141 +2076.676278 +2076.677810 +2076.680774 +2076.776345 +2076.777743 +2076.780374 +2076.876411 +2076.877810 +2076.880407 +2076.976378 +2076.977876 +2077.076344 +2077.077843 +2077.081240 +2077.176178 +2077.177510 +2077.181006 +2077.277543 +2077.280340 +2077.374646 +2077.376444 +2077.474812 +2077.476511 +2077.574945 +2077.576344 +2077.675378 +2077.676977 +2077.777376 +2077.876843 +2077.976044 +2077.980340 +2078.075178 +2078.175244 +2078.176676 +2078.276377 +2078.277775 +2078.281105 +2078.377842 +2078.381272 +2078.476276 +2078.477675 +2078.480672 +2078.576410 +2078.577875 +2078.581105 +2078.676409 +2078.677808 +2078.680938 +2078.776309 +2078.777741 +2078.781171 +2078.785467 +2078.876542 +2078.877908 +2078.881304 +2078.976509 +2078.977908 +2078.980905 +2079.076342 +2079.077841 +2079.081604 +2079.176409 +2079.177708 +2079.180671 +2079.185467 +2079.277874 +2079.281171 +2079.376276 +2079.377641 +2079.380871 +2079.476375 +2079.477807 +2079.481104 +2079.576442 +2079.577907 +2079.580971 +2079.583801 +2079.677874 +2079.681137 +2079.776408 +2079.781204 +2079.877740 +2079.880604 +2079.977607 +2079.980537 +2080.076308 +2080.176341 +2080.177707 +2080.180138 +2080.276408 +2080.280637 +2080.376474 +2080.377940 +2080.380803 +2080.384866 +2080.477773 +2080.480737 +2080.577340 +2080.581269 +2080.676374 +2080.677773 +2080.680970 +2080.781203 +2080.875941 +2080.877340 +2080.880836 +2080.976174 +2080.977473 +2080.980703 +2083.193088 +2085.514531 +2085.973538 +2085.975037 +2085.980165 +2085.981697 +2085.987924 +2085.989522 +2085.996515 +2085.998314 +2086.005673 +2086.014264 +2086.023755 +2086.032080 +2086.038373 +2086.047298 +2086.059919 +2086.069476 +2086.081464 +2086.083262 +2086.093718 +2086.104441 +2086.106605 +2086.116162 +2086.118493 +2086.128583 +2086.130848 +2086.140138 +2086.153791 +2086.156322 +2086.166179 +2086.178600 +2086.190388 +2086.201610 +2086.203541 +2086.214530 +2086.217361 +2086.227384 +2086.230581 +2086.239872 +2086.242802 +2086.253125 +2086.255423 +2086.264714 +2086.276702 +2086.279465 +2086.289522 +2086.300012 +2086.322223 +2086.334644 +2086.347564 +2086.360584 +2086.372639 +2086.385326 +2086.397747 +2086.411300 +2086.413365 +2086.439439 +2086.449096 +2086.462582 +2086.474104 +2086.489289 +2086.500178 +2086.525919 +2086.527883 +2086.539405 +2086.569442 +2086.580897 +2086.584027 +2086.594350 +2086.605972 +2086.615363 +2086.618260 +2086.627084 +2086.639105 +2086.652059 +2086.654190 +2086.666012 +2086.678766 +2086.683461 +2086.696481 +2086.707537 +2086.724453 +2086.735476 +2086.747364 +2086.759318 +2086.782662 +2086.794383 +2086.808869 +2086.821390 +2086.832312 +2086.843301 +2086.855056 +2086.869841 +2086.896981 +2086.911832 +2086.949362 +2086.966478 +2086.977966 +2086.991819 +2087.005472 +2087.023021 +2087.034543 +2087.049262 +2087.056321 +2087.061649 +2087.069841 +2087.082961 +2087.097813 +2087.109501 +2087.111799 +2087.122288 +2087.135542 +2087.148396 +2087.159551 +2087.170740 +2087.193084 +2087.207104 +2087.220424 +2087.226917 +2087.249228 +2087.260450 +2087.263314 +2087.273337 +2087.292318 +2087.303773 +2087.316594 +2087.340537 +2087.350094 +2087.359717 +2087.370840 +2087.383327 +2087.398012 +2087.411466 +2087.424053 +2087.438439 +2087.451792 +2087.462148 +2087.475835 +2087.482927 +2087.485658 +2087.512132 +2087.526251 +2087.540770 +2087.553990 +2087.562781 +2087.573737 +2087.587256 +2087.612797 +2087.626217 +2087.639904 +2087.643433 +2087.670173 +2087.683993 +2087.687090 +2087.700610 +2087.731212 +2087.746164 +2087.766477 +2087.768408 +2087.780729 +2087.794083 +2087.806837 +2087.820090 +2087.848728 +2087.859217 +2087.866177 +2087.875035 +2087.883526 +2087.935308 +2087.989420 +2088.015861 +2088.048095 +2088.063480 +2088.073103 +2088.081761 +2088.093083 +2088.108301 +2088.121954 +2088.127682 +2088.137872 +2088.140469 +2088.150093 +2088.162347 +2088.164945 +2088.177199 +2088.185424 +2088.194182 +2088.196546 +2088.219823 +2088.230413 +2088.264512 +2088.274835 +2088.290552 +2088.312064 +2088.322787 +2088.332044 +2088.371638 +2088.386356 +2088.388388 +2088.399244 +2088.428481 +2088.431278 +2088.441301 +2088.443666 +2088.456153 +2088.470406 +2088.485890 +2088.498378 +2088.502374 +2088.512896 +2088.515061 +2088.525484 +2088.540269 +2088.552523 +2088.554655 +2088.568641 +2088.573602 +2088.581494 +2088.584658 +2088.594049 +2088.604838 +2088.615694 +2088.618224 +2088.630679 +2088.632910 +2088.640735 +2088.646629 +2088.650092 +2088.659683 +2088.662846 +2088.671171 +2088.673935 +2088.685124 +2088.688854 +2088.697945 +2088.700309 +2088.712830 +2088.715327 +2088.725817 +2088.728481 +2088.738038 +2088.740335 +2088.749027 +2088.753056 +2088.756220 +2088.763745 +2088.768307 +2088.778864 +2088.781228 +2088.791351 +2088.803705 +2088.810265 +2088.821254 +2088.824385 +2088.830745 +2088.841234 +2088.856885 +2088.866709 +2088.868774 +2088.878863 +2088.881794 +2088.892183 +2088.894514 +2088.904538 +2088.915593 +2088.924351 +2088.937605 +2088.947528 +2088.958783 +2088.968707 +2088.972037 +2088.980861 +2088.984125 +2088.992550 +2088.995447 +2089.002873 +2089.005703 +2089.016093 +2089.026049 +2089.029879 +2089.041700 +2089.054721 +2089.065277 +2089.068873 +2089.075666 +2089.078830 +2089.087954 +2089.089919 +2089.101474 +2089.103605 +2089.115493 +2089.129612 +2089.131810 +2089.144165 +2089.146995 +2089.159449 +2089.162180 +2089.175899 +2089.178264 +2089.190984 +2089.194781 +2089.204637 +2089.214994 +2089.217658 +2089.222420 +2089.231044 +2089.235806 +2089.242033 +2089.245064 +2089.254521 +2089.257151 +2089.269772 +2089.272070 +2089.285523 +2089.288587 +2089.300042 +2089.302772 +2089.311497 +2089.314361 +2089.323818 +2089.339336 +2089.342333 +2089.351690 +2089.355919 +2089.368174 +2089.379163 +2089.381927 +2089.388054 +2089.394647 +2089.406469 +2089.419922 +2089.425083 +2089.432343 +2089.445163 +2089.448460 +2089.459649 +2089.462579 +2089.472170 +2089.477764 +2089.484557 +2089.486788 +2089.497145 +2089.507434 +2089.509932 +2089.520954 +2089.523518 +2089.536205 +2089.538703 +2089.551424 +2089.556985 +2089.561014 +2089.569339 +2089.573335 +2089.581826 +2089.584157 +2089.588586 +2089.596445 +2089.600141 +2089.612862 +2089.615426 +2089.625449 +2089.628080 +2089.637338 +2089.644930 +2089.654654 +2089.656951 +2089.670105 +2089.683558 +2089.696412 +2089.698843 +2089.712562 +2089.723252 +2089.726249 +2089.738237 +2089.748060 +2089.753521 +2089.756085 +2089.769305 +2089.784157 +2089.786888 +2089.799875 +2089.810597 +2089.814627 +2089.823917 +2089.826282 +2089.838303 +2089.841533 +2089.851656 +2089.854387 +2089.866275 +2089.868972 +2089.881094 +2089.883491 +2089.889885 +2089.897744 +2089.902439 +2089.909865 +2089.912429 +2089.924750 +2089.927147 +2089.939302 +2089.942199 +2089.953221 +2089.955919 +2089.965909 +2089.968739 +2089.977664 +2089.981160 +2089.986088 +2089.991883 +2089.999508 +2090.001839 +2090.016025 +2090.026082 +2090.029378 +2090.039035 +2090.053321 +2090.055985 +2090.069172 +2090.072269 +2090.077663 +2090.083657 +2090.086255 +2090.099009 +2090.109165 +2090.113195 +2090.120920 +2090.126015 +2090.139069 +2090.142166 +2090.150990 +2090.154853 +2090.163644 +2090.166308 +2090.178429 +2090.182225 +2090.192848 +2090.195945 +2090.205769 +2090.209398 +2090.218756 +2090.221420 +2090.232742 +2090.235705 +2090.244230 +2090.246894 +2090.260780 +2090.263111 +2090.269838 +2090.275998 +2090.278929 +2090.291116 +2090.293248 +2090.306801 +2090.310430 +2090.317756 +2090.323384 +2090.333208 +2090.336604 +2090.347094 +2090.349758 +2090.363877 +2090.367107 +2090.371369 +2090.379561 +2090.389518 +2090.396145 +2090.410763 +2090.415292 +2090.426181 +2090.437936 +2090.452788 +2090.466341 +2090.469505 +2090.479095 +2090.481692 +2090.495146 +2090.497876 +2090.510430 +2090.513061 +2090.526747 +2090.539102 +2090.542032 +2090.547893 +2090.557183 +2090.565908 +2090.573933 +2090.588419 +2090.591716 +2090.601872 +2090.607233 +2090.615625 +2090.624250 +2090.633041 +2090.636338 +2090.648192 +2090.651189 +2090.663877 +2090.667040 +2090.680693 +2090.687486 +2090.691849 +2090.702105 +2090.711795 +2090.715525 +2090.725115 +2090.741399 +2090.744030 +2090.756717 +2090.760380 +2090.764443 +2090.772967 +2090.777496 +2090.785588 +2090.794646 +2090.801039 +2090.810563 +2090.831775 +2090.834506 +2090.839201 +2090.846660 +2090.849391 +2090.853886 +2090.863510 +2090.867073 +2090.876364 +2090.879494 +2090.894546 +2090.900873 +2090.910097 +2090.913460 +2090.924316 +2090.927080 +2090.940700 +2090.943630 +2090.956850 +2090.961812 +2090.970636 +2090.977862 +2100.974356 +2100.975721 +2100.977819 +2100.981449 +2100.988875 +2101.978284 +2101.981981 +2102.974021 +2102.981080 +2102.983312 +2103.974752 +2103.976151 +2103.979348 +2103.984509 +2104.974685 +2104.976117 +2104.979413 +2104.983443 +2105.974651 +2105.976016 +2105.980078 +2110.978375 +2110.980773 +2110.988798 +2110.997789 +2111.074379 +2111.075611 +2111.078308 +2111.087333 +2111.175245 +2111.176577 +2111.275544 +2111.277010 +2111.279707 +2111.375777 +2111.380006 +2111.475877 +2111.477276 +2111.480006 +2111.576044 +2111.577409 +2111.580539 +2111.675877 +2111.677342 +2111.680805 +2111.693026 +2111.776077 +2111.777475 +2111.780272 +2111.789929 +2111.876176 +2111.877409 +2111.880772 +2111.890862 +2111.977675 +2111.981038 +2112.077641 +2112.080439 +2112.176409 +2112.177874 +2112.182070 +2112.277808 +2112.280705 +2112.376409 +2112.380805 +2112.476342 +2112.477774 +2112.480638 +2112.577408 +2112.580838 +2112.675343 +2112.776142 +2112.777508 +2112.781004 +2112.877574 +2112.880937 +2112.976109 +2112.977441 +2112.979938 +2113.076209 +2113.077574 +2113.080471 +2113.177574 +2113.180637 +2113.276142 +2113.277540 +2113.280304 +2113.376275 +2113.377574 +2113.379971 +2113.386465 +2113.476275 +2113.477740 +2113.576208 +2113.577607 +2113.580537 +2113.589328 +2113.677607 +2113.680304 +2113.690993 +2113.776308 +2113.777673 +2113.781503 +2113.875908 +2113.877407 +2113.880903 +2113.975675 +2113.977140 +2114.077340 +2114.080570 +2114.176207 +2114.177606 +2114.180536 +2114.276207 +2114.277639 +2114.280536 +2114.376174 +2114.377672 +2114.380803 +2114.477639 +2114.480936 +2114.576374 +2114.581002 +2114.677306 +2114.679837 +2114.775474 +2114.785897 +2114.877739 +2114.975940 +2114.979836 +2114.986729 +2115.076007 +2115.082334 +2115.176007 +2115.177538 +2115.192856 +2115.277905 +2115.281335 +2115.376106 +2115.380569 +2115.475873 +2115.580635 +2115.588294 +2115.677605 +2115.681134 +2115.777704 +2115.780435 +2115.879869 +2115.976139 +2115.977571 +2115.980768 +2120.977666 +2120.980763 +2120.982628 +2120.987856 +2120.989321 +2120.996547 +2120.998179 +2121.006604 +2121.015794 +2121.017526 +2121.025551 +2121.027183 +2121.035941 +2121.037439 +2121.046830 +2121.056787 +2121.064246 +2121.072504 +2121.074103 +2121.084292 +2121.086257 +2121.096813 +2121.107170 +2121.117892 +2121.136640 +2121.139038 +2121.149161 +2121.151092 +2121.161382 +2121.170739 +2121.182960 +2121.185391 +2121.193483 +2121.204472 +2121.216394 +2121.218358 +2121.229247 +2121.231478 +2121.240669 +2121.252924 +2121.263979 +2121.266443 +2121.275501 +2121.288721 +2121.302574 +2121.314928 +2121.327216 +2121.340103 +2121.351958 +2121.372404 +2121.374868 +2121.398178 +2121.411265 +2121.424785 +2121.438305 +2121.453756 +2121.466077 +2121.478698 +2121.505970 +2121.518391 +2121.531911 +2121.534009 +2121.546064 +2121.548628 +2121.558085 +2121.571638 +2121.599144 +2121.604039 +2121.613996 +2121.625218 +2121.644099 +2121.658551 +2121.673136 +2121.685491 +2121.687422 +2121.713563 +2121.741135 +2121.753822 +2121.776733 +2121.789253 +2121.802840 +2121.813995 +2121.817392 +2121.826849 +2121.829646 +2121.838904 +2121.850126 +2121.853323 +2121.861881 +2121.872337 +2121.886223 +2121.901308 +2121.913063 +2121.926183 +2121.949426 +2121.962413 +2121.975067 +2121.986090 +2122.013795 +2122.016493 +2122.029047 +2122.054321 +2122.067741 +2122.070805 +2122.096979 +2122.111098 +2122.121954 +2122.131611 +2122.155820 +2122.158284 +2122.169007 +2122.184857 +2122.195180 +2122.225483 +2122.240235 +2122.243266 +2122.256785 +2122.267841 +2122.283459 +2122.295214 +2122.309000 +2122.311331 +2122.321920 +2122.324717 +2122.336472 +2122.361947 +2122.378564 +2122.393315 +2122.403539 +2122.414794 +2122.416925 +2122.431277 +2122.441501 +2122.470272 +2122.497478 +2122.500575 +2122.511930 +2122.514661 +2122.526615 +2122.540934 +2122.557751 +2122.571704 +2122.613828 +2122.624917 +2122.652889 +2122.664511 +2122.705470 +2122.749825 +2122.753222 +2122.763745 +2122.792349 +2122.803571 +2122.810564 +2122.851790 +2122.867774 +2122.880927 +2122.893282 +2122.910564 +2122.951224 +2122.954387 +2122.965709 +2122.977797 +2123.021120 +2123.031110 +2123.052655 +2123.094514 +2123.122386 +2123.148593 +2123.175199 +2123.197877 +2123.210164 +2123.222019 +2123.224583 +2123.239735 +2123.249225 +2123.255186 +2123.283358 +2123.299741 +2123.309965 +2123.312662 +2123.341033 +2123.350524 +2123.363877 +2123.386455 +2123.392315 +2123.408366 +2123.420387 +2123.431010 +2123.434440 +2123.442798 +2123.444929 +2123.455719 +2123.457850 +2123.468306 +2123.470637 +2123.483624 +2123.486621 +2123.497577 +2123.500441 +2123.512029 +2123.516391 +2123.522885 +2123.533241 +2123.540167 +2123.549824 +2123.552455 +2123.563311 +2123.565742 +2123.578529 +2123.580527 +2123.593681 +2123.595878 +2123.607200 +2123.611596 +2123.619754 +2123.621919 +2123.634173 +2123.636404 +2123.649558 +2123.661146 +2123.663544 +2123.676031 +2123.679162 +2123.688985 +2123.693181 +2123.702838 +2123.706834 +2123.713827 +2123.716824 +2123.724550 +2123.726681 +2123.733973 +2123.740001 +2123.742099 +2123.753287 +2123.755485 +2123.769305 +2123.771769 +2123.782858 +2123.785655 +2123.797909 +2123.800673 +2123.812129 +2123.827780 +2123.830344 +2123.840700 +2123.842931 +2123.857650 +2123.861046 +2123.871835 +2123.874100 +2123.886388 +2123.889218 +2123.899308 +2123.901772 +2123.915991 +2123.920853 +2123.928512 +2123.931775 +2123.941199 +2123.943497 +2123.956517 +2123.971869 +2123.974799 +2123.984090 +2123.986221 +2123.992115 +2123.999707 +2124.014226 +2124.016624 +2124.027779 +2124.030210 +2124.042265 +2124.045928 +2124.054153 +2124.056650 +2124.059914 +2124.070770 +2124.087153 +2124.090283 +2124.099907 +2124.111129 +2124.113860 +2124.123550 +2124.126314 +2124.135904 +2124.139068 +2124.148792 +2124.152321 +2124.161845 +2124.169238 +2124.178229 +2124.180693 +2124.190283 +2124.193647 +2124.203570 +2124.205868 +2124.217589 +2124.219820 +2124.230943 +2124.234040 +2124.243930 +2124.253687 +2124.264109 +2124.266507 +2124.279627 +2124.290550 +2124.293980 +2124.312927 +2124.324083 +2124.326647 +2124.333140 +2124.340600 +2124.343030 +2124.355684 +2124.358715 +2124.368438 +2124.372035 +2124.380793 +2124.386787 +2124.400007 +2124.403204 +2124.413760 +2124.427646 +2124.430376 +2124.441632 +2124.444862 +2124.455684 +2124.461046 +2124.469237 +2124.480892 +2124.492015 +2124.499241 +2124.501971 +2124.506633 +2124.514659 +2124.530443 +2124.545861 +2124.548425 +2124.559048 +2124.561212 +2124.574565 +2124.577163 +2124.587452 +2124.589850 +2124.592947 +2124.603237 +2124.605668 +2124.614592 +2124.618888 +2124.621951 +2124.633939 +2124.648125 +2124.650190 +2124.654619 +2124.663976 +2124.666673 +2124.672834 +2124.680926 +2124.693546 +2124.695944 +2124.706966 +2124.710363 +2124.719587 +2124.722551 +2124.733773 +2124.743330 +2124.745927 +2124.759713 +2124.768904 +2124.771801 +2124.784855 +2124.787319 +2124.800739 +2124.803236 +2124.816257 +2124.818954 +2124.829410 +2124.832108 +2124.842930 +2124.845328 +2124.858881 +2124.869970 +2124.872900 +2124.884155 +2124.888418 +2124.898341 +2124.900606 +2124.913493 +2124.915591 +2124.929410 +2124.931641 +2124.945594 +2124.947892 +2124.953353 +2124.957216 +2124.965474 +2124.974099 +2124.976297 +2124.985421 +2124.988618 +2124.991781 +2125.002837 +2125.004835 +2125.008564 +2125.017688 +2125.019786 +2125.034338 +2125.037102 +2125.044562 +2125.049989 +2125.055484 +2125.058481 +2125.068205 +2125.078994 +2125.092247 +2125.096410 +2125.103203 +2125.105667 +2125.114392 +2125.126113 +2125.136070 +2125.147592 +2125.150456 +2125.164641 +2125.179560 +2125.186253 +2125.196343 +2125.199140 +2125.211561 +2125.216589 +2125.225114 +2125.228078 +2125.241997 +2125.243962 +2125.249756 +2125.256283 +2125.260112 +2125.271335 +2125.277628 +2125.281857 +2125.284255 +2125.295377 +2125.301105 +2125.303169 +2125.316123 +2125.319053 +2125.331275 +2125.333672 +2125.339566 +2125.349889 +2125.355950 +2125.364042 +2125.370902 +2125.373199 +2125.376429 +2125.387285 +2125.389616 +2125.393679 +2125.402936 +2125.405933 +2125.415790 +2125.431874 +2125.434205 +2125.447625 +2125.461111 +2125.463276 +2125.477062 +2125.483988 +2125.493013 +2125.495910 +2125.501537 +2125.508664 +2125.514758 +2125.521184 +2125.527212 +2125.540931 +2125.556316 +2125.559912 +2125.565573 +2125.572600 +2125.580891 +2125.586919 +2125.589516 +2125.602070 +2125.620751 +2125.632040 +2125.637768 +2125.643828 +2125.660811 +2125.677794 +2125.689916 +2125.692580 +2125.703435 +2125.717455 +2125.720685 +2125.731274 +2125.744461 +2125.754118 +2125.757215 +2125.767738 +2125.779659 +2125.794910 +2125.808330 +2125.811660 +2125.833905 +2125.844128 +2125.848490 +2125.855483 +2125.869502 +2125.886219 +2125.889216 +2125.899805 +2125.902636 +2125.906166 +2125.915024 +2125.930075 +2125.945060 +2125.950288 +2125.957181 +2125.967071 +2125.970135 +2132.308157 +2132.730435 +2134.388708 +2134.597732 +2135.046683 +2135.086776 +2135.674521 +2135.973488 +2135.974720 +2135.974887 +2135.977051 +2135.980948 +2135.992603 +2136.121940 +2136.126835 +2136.189306 +2136.973754 +2136.975152 +2136.979748 +2136.986041 +2137.125435 +2137.973886 +2137.975218 +2137.977782 +2137.981045 +2137.987939 +2138.973652 +2138.974984 +2138.978047 +2139.973251 +2139.977780 +2139.981277 +2140.973716 +2140.975182 +2140.977746 +2140.981009 +2140.993497 +2142.747374 +2142.759496 +2142.793095 +2142.867654 +2142.900688 +2142.921367 +2143.274547 +2143.566654 +2145.972912 +2145.974211 +2145.977008 +2145.979905 +2145.981670 +2146.073645 +2146.075010 +2146.078007 +2146.085766 +2146.174011 +2146.175310 +2146.186199 +2146.274410 +2146.275809 +2146.278373 +2146.374643 +2146.375975 +2146.378773 +2146.474710 +2146.476109 +2146.478773 +2146.576175 +2146.676208 +2146.678972 +2146.775009 +2146.776408 +2146.779039 +2146.784300 +2146.876441 +2146.879372 +2146.892325 +2146.974976 +2146.976374 +2146.979205 +2147.079704 +2147.095588 +2147.175109 +2147.176541 +2147.179571 +2147.276641 +2147.376407 +2147.379071 +2147.391958 +2147.476307 +2147.478871 +2147.483933 +2147.575042 +2147.578638 +2147.676607 +2147.775208 +2147.776740 +2147.779471 +2147.875075 +2147.876440 +2147.879237 +2147.979670 +2148.076540 +2148.079770 +2148.175108 +2148.176473 +2148.179071 +2148.185664 +2148.276273 +2148.278504 +2148.293456 +2148.379170 +2148.389760 +2148.474775 +2148.478804 +2148.576539 +2148.579570 +2148.591025 +2148.678937 +2148.776473 +2148.779669 +2148.876439 +2148.879569 +2148.976472 +2149.076506 +2149.176505 +2149.179702 +2149.275007 +2149.276372 +2149.289492 +2149.374740 +2149.379036 +2149.474474 +2149.475839 +2149.575106 +2149.579569 +2149.584430 +2149.676638 +2149.776538 +2149.780101 +2149.875073 +2149.876405 +2149.878936 +2149.976272 +2149.979202 +2150.076271 +2150.078469 +2150.175039 +2150.178969 +2150.279268 +2150.379468 +2150.476371 +2150.479568 +2150.576471 +2150.579501 +2150.676437 +2150.679301 +2150.776404 +2150.778802 +2150.876470 +2150.879534 +2150.979168 +2155.148827 +2155.973269 +2155.976499 +2155.978930 +2155.980728 +2155.985956 +2155.987454 +2155.993748 +2155.995846 +2156.002839 +2156.010964 +2156.014561 +2156.022752 +2156.024184 +2156.033608 +2156.045030 +2156.046961 +2156.055986 +2156.058184 +2156.066975 +2156.077431 +2156.079695 +2156.089119 +2156.099809 +2156.109432 +2156.111497 +2156.121254 +2156.132842 +2156.134707 +2156.145962 +2156.182992 +2156.189719 +2156.199742 +2156.219722 +2156.234174 +2156.243398 +2156.245496 +2156.257850 +2156.267674 +2156.269972 +2156.279196 +2156.290218 +2156.301207 +2156.314427 +2156.316958 +2156.327014 +2156.338936 +2156.349858 +2156.352988 +2156.361580 +2156.363911 +2156.383192 +2156.396645 +2156.414593 +2156.425216 +2156.437770 +2156.439802 +2156.452555 +2156.465742 +2156.477930 +2156.489851 +2156.500741 +2156.522352 +2156.533508 +2156.535339 +2156.546828 +2156.548926 +2156.560248 +2156.574367 +2156.576998 +2156.588286 +2156.590417 +2156.617723 +2156.620920 +2156.629179 +2156.639435 +2156.649092 +2156.660680 +2156.685123 +2156.689385 +2156.696644 +2156.707467 +2156.719122 +2156.741799 +2156.753388 +2156.764110 +2156.766175 +2156.777663 +2156.792682 +2156.803904 +2156.817990 +2156.829545 +2156.832342 +2156.842532 +2156.854020 +2156.862578 +2156.874633 +2156.877164 +2156.887953 +2156.900107 +2156.902438 +2156.923251 +2156.945229 +2156.958416 +2156.973001 +2156.984490 +2156.986987 +2156.997943 +2157.023850 +2157.036338 +2157.052388 +2157.060680 +2157.084989 +2157.100240 +2157.111929 +2157.122252 +2157.124250 +2157.135638 +2157.138036 +2157.149824 +2157.160347 +2157.169238 +2157.171869 +2157.182258 +2157.194713 +2157.205968 +2157.220487 +2157.231676 +2157.234473 +2157.244263 +2157.256950 +2157.271136 +2157.280993 +2157.294712 +2157.296677 +2157.308965 +2157.311562 +2157.327813 +2157.341033 +2157.350357 +2157.368206 +2157.379594 +2157.393047 +2157.405002 +2157.416590 +2157.429844 +2157.443197 +2157.458482 +2157.483890 +2157.511762 +2157.524316 +2157.527380 +2157.535671 +2157.546660 +2157.557982 +2157.567506 +2157.580593 +2157.591748 +2157.604902 +2157.611062 +2157.614459 +2157.622684 +2157.635871 +2157.650257 +2157.652654 +2157.663144 +2157.667006 +2157.675365 +2157.688618 +2157.701305 +2157.715225 +2157.727279 +2157.739334 +2157.753187 +2157.764875 +2157.777130 +2157.779361 +2157.790516 +2157.804935 +2157.816324 +2157.828445 +2157.830942 +2157.841898 +2157.844296 +2157.848458 +2157.856583 +2157.882291 +2157.894545 +2157.904136 +2157.929211 +2157.931442 +2157.943363 +2157.955584 +2157.966673 +2157.977396 +2158.013759 +2158.026880 +2158.038468 +2158.050456 +2158.064076 +2158.075031 +2158.103936 +2158.117589 +2158.131841 +2158.134006 +2158.146526 +2158.161245 +2158.172700 +2158.179360 +2158.182291 +2158.218355 +2158.221551 +2158.229976 +2158.286087 +2158.302504 +2158.315191 +2158.328078 +2158.355784 +2158.358015 +2158.366573 +2158.370103 +2158.384055 +2158.386486 +2158.397375 +2158.399606 +2158.412294 +2158.414258 +2158.421718 +2158.426846 +2158.428910 +2158.437802 +2158.440865 +2158.448125 +2158.450689 +2158.457848 +2158.460845 +2158.472533 +2158.474964 +2158.486686 +2158.494811 +2158.497042 +2158.508597 +2158.510828 +2158.520952 +2158.523383 +2158.528777 +2158.534605 +2158.538834 +2158.546226 +2158.548258 +2158.554385 +2158.558947 +2158.561178 +2158.565407 +2158.572966 +2158.581091 +2158.583356 +2158.593046 +2158.595810 +2158.603436 +2158.605567 +2158.609097 +2158.618221 +2158.620186 +2158.632307 +2158.634338 +2158.637635 +2158.647991 +2158.650555 +2158.657348 +2158.660978 +2158.669037 +2158.671734 +2158.679493 +2158.681358 +2158.693479 +2158.695444 +2158.707332 +2158.709596 +2158.719919 +2158.722983 +2158.731741 +2158.733872 +2158.738134 +2158.745227 +2158.747425 +2158.760678 +2158.763143 +2158.769070 +2158.773965 +2158.776063 +2158.783522 +2158.787352 +2158.796276 +2158.798640 +2158.810295 +2158.812660 +2158.822783 +2158.825347 +2158.835637 +2158.837701 +2158.839166 +2158.843762 +2158.850488 +2158.852886 +2158.856349 +2158.863908 +2158.873432 +2158.881524 +2158.890448 +2158.892680 +2158.895643 +2158.902869 +2158.905234 +2158.909896 +2158.918354 +2158.921417 +2158.927045 +2158.930675 +2158.937235 +2158.941331 +2158.946326 +2158.948823 +2158.952187 +2158.960279 +2158.965274 +2158.974764 +2158.977128 +2158.983822 +2158.992580 +2159.005833 +2159.007731 +2159.010828 +2159.020918 +2159.025813 +2159.034071 +2159.042729 +2159.046825 +2159.049190 +2159.062376 +2159.065307 +2159.072633 +2159.078260 +2159.080991 +2159.090815 +2159.094411 +2159.101138 +2159.104001 +2159.111061 +2159.113192 +2159.123548 +2159.128777 +2159.139299 +2159.143395 +2159.152320 +2159.166872 +2159.168936 +2159.181424 +2159.183755 +2159.186519 +2159.196975 +2159.200804 +2159.208097 +2159.210062 +2159.215357 +2159.222882 +2159.225813 +2159.233372 +2159.236169 +2159.241264 +2159.247891 +2159.249889 +2159.258080 +2159.261710 +2159.264774 +2159.272033 +2159.276862 +2159.286219 +2159.288950 +2159.300771 +2159.303968 +2159.312826 +2159.315689 +2159.324880 +2159.327245 +2159.337701 +2159.339965 +2159.343195 +2159.355383 +2159.366971 +2159.369003 +2159.374930 +2159.380891 +2159.383122 +2159.391680 +2159.394644 +2159.404168 +2159.406132 +2159.418387 +2159.420418 +2159.425113 +2159.432040 +2159.439832 +2159.445127 +2159.447757 +2159.452985 +2159.456249 +2159.459912 +2159.467005 +2159.469469 +2159.482622 +2159.484520 +2159.489349 +2159.494078 +2159.497208 +2159.508563 +2159.520618 +2159.530941 +2159.535603 +2159.543095 +2159.550388 +2159.555749 +2159.562076 +2159.564973 +2159.567770 +2159.574997 +2159.578160 +2159.580358 +2159.584787 +2159.589482 +2159.592412 +2159.595476 +2159.605333 +2159.609162 +2159.616888 +2159.631940 +2159.634237 +2159.648723 +2159.651587 +2159.660944 +2159.675463 +2159.677461 +2159.690314 +2159.696042 +2159.705333 +2159.710627 +2159.721017 +2159.723015 +2159.729275 +2159.737101 +2159.750887 +2159.753451 +2159.757114 +2159.764940 +2159.777427 +2159.779692 +2159.794843 +2159.807930 +2159.823215 +2159.829808 +2159.838133 +2159.840664 +2159.846591 +2159.851120 +2159.853951 +2159.860278 +2159.862808 +2159.876695 +2159.891513 +2159.903967 +2159.906964 +2159.919019 +2159.921949 +2159.931473 +2159.933571 +2159.945559 +2159.960377 +2159.974230 +2159.976595 +2159.982555 +2159.988283 +2159.990814 +2159.997174 +2160.003368 +2160.007530 +2160.020351 +2160.033937 +2160.036068 +2160.049621 +2160.052685 +2160.064873 +2160.077827 +2160.094144 +2160.109495 +2160.116521 +2160.125312 +2160.139265 +2160.149788 +2160.166738 +2160.172732 +2160.176827 +2160.182355 +2160.197007 +2160.202468 +2160.211693 +2160.227410 +2160.241296 +2160.258745 +2160.263674 +2160.267970 +2160.282122 +2160.286951 +2160.294043 +2160.300903 +2160.308829 +2160.331273 +2160.333704 +2160.344493 +2160.347024 +2160.358246 +2160.360643 +2160.372765 +2160.379391 +2160.385385 +2160.397240 +2160.400970 +2160.408629 +2160.412125 +2160.420151 +2160.424946 +2160.443194 +2160.459578 +2160.466504 +2160.482355 +2160.484786 +2160.495742 +2160.509694 +2160.523214 +2160.526344 +2160.536867 +2160.543161 +2160.550021 +2160.562575 +2160.564806 +2160.592611 +2160.594809 +2160.609894 +2160.623081 +2160.638998 +2160.653450 +2160.656181 +2160.669901 +2160.698872 +2160.706597 +2160.730473 +2160.734969 +2160.747390 +2160.761875 +2160.764473 +2160.777360 +2160.793510 +2160.808895 +2160.824179 +2160.838798 +2160.854083 +2160.857080 +2160.869701 +2160.883453 +2160.898239 +2160.913623 +2160.922348 +2160.929174 +2160.934769 +2160.959577 +2168.400429 +2170.971988 +2170.973287 +2170.975385 +2170.978781 +2171.122105 +2171.972420 +2171.973685 +2171.976116 +2171.978847 +2171.989803 +2172.973751 +2172.976881 +2172.980844 +2173.972285 +2173.973550 +2173.976947 +2173.980077 +2174.972417 +2174.973849 +2174.978211 +2174.981941 +2175.964091 +2175.971717 +2175.972916 +2175.979309 +2180.971312 +2180.972611 +2180.978239 +2180.980237 +2181.072411 +2181.073710 +2181.076240 +2181.089527 +2181.172810 +2181.174176 +2181.176407 +2181.178538 +2181.273210 +2181.274642 +2181.277539 +2181.373443 +2181.374908 +2181.377539 +2181.473676 +2181.475108 +2181.573809 +2181.575241 +2181.578504 +2181.673909 +2181.675307 +2181.678271 +2181.773842 +2181.775174 +2181.778637 +2181.785464 +2181.873542 +2181.874808 +2181.878104 +2181.973476 +2181.974841 +2181.978471 +2182.073842 +2182.075174 +2182.078570 +2182.173875 +2182.175307 +2182.178204 +2182.275174 +2182.277505 +2182.280602 +2182.375240 +2182.377971 +2182.473642 +2182.477837 +2182.573941 +2182.578337 +2182.675440 +2182.678370 +2182.779169 +2182.875439 +2182.878170 +2182.887361 +2182.978270 +2182.986428 +2183.073408 +2183.074740 +2183.077604 +2183.175106 +2183.177704 +2183.275439 +2183.278303 +2183.472975 +2183.474473 +2183.573874 +2183.575306 +2183.580567 +2183.675472 +2183.678602 +2183.875339 +2183.878768 +2183.891422 +2183.973474 +2183.974906 +2183.986927 +2184.074539 +2184.081998 +2184.172941 +2184.174472 +2184.275505 +2184.278568 +2184.373973 +2184.375338 +2184.378568 +2184.475338 +2184.478202 +2184.573873 +2184.575238 +2184.578002 +2184.672374 +2184.673873 +2184.874705 +2184.879134 +2184.973806 +2184.978268 +2185.075271 +2185.078268 +2185.173972 +2185.175271 +2185.177901 +2185.188025 +2185.275437 +2185.277835 +2185.377668 +2185.385294 +2185.475270 +2185.477801 +2185.578434 +2185.675437 +2185.678600 +2185.773805 +2185.778167 +2185.872573 +2185.874005 +2185.878134 +2185.973638 +2185.975137 +2185.978333 +2190.972867 +2190.975531 +2190.978362 +2190.979993 +2190.985055 +2190.993513 +2190.995212 +2191.002804 +2191.004635 +2191.010363 +2191.014925 +2191.022984 +2191.025015 +2191.034073 +2191.046161 +2191.056850 +2191.068372 +2191.081059 +2191.092281 +2191.105102 +2191.116690 +2191.129377 +2191.153753 +2191.156517 +2191.165541 +2191.178461 +2191.180559 +2191.194346 +2191.200073 +2191.208065 +2191.210263 +2191.220120 +2191.232607 +2191.242131 +2191.254918 +2191.267839 +2191.283223 +2191.295511 +2191.334072 +2191.357915 +2191.371102 +2191.384389 +2191.422118 +2191.424449 +2191.434971 +2191.447525 +2191.474465 +2191.503436 +2191.514259 +2191.527112 +2191.540033 +2191.555251 +2191.565274 +2191.577296 +2191.603136 +2191.630109 +2191.643762 +2191.655218 +2191.692081 +2191.718454 +2191.731774 +2191.749656 +2191.760346 +2191.772467 +2191.774698 +2191.812061 +2191.826479 +2191.848524 +2191.860978 +2191.887818 +2191.900039 +2191.912127 +2191.919786 +2191.932473 +2191.975397 +2191.986453 +2192.002670 +2192.025247 +2192.039666 +2192.053885 +2192.056316 +2192.083689 +2192.095111 +2192.111661 +2192.122150 +2192.132673 +2192.141764 +2192.151754 +2192.164275 +2192.176529 +2192.179826 +2192.207498 +2192.220751 +2192.245726 +2192.266073 +2192.268237 +2192.280225 +2192.295577 +2192.307798 +2192.318121 +2192.351787 +2192.392480 +2192.394544 +2192.406199 +2192.438966 +2192.446958 +2192.456815 +2192.468037 +2192.480358 +2192.491447 +2192.505433 +2192.517954 +2192.558480 +2192.560978 +2192.572166 +2192.585520 +2192.599472 +2192.611494 +2192.625346 +2192.638034 +2192.650521 +2192.665773 +2192.677028 +2192.679625 +2192.689749 +2192.693978 +2192.731940 +2192.756016 +2192.769336 +2192.795110 +2192.815423 +2192.857148 +2192.871533 +2192.884387 +2192.897041 +2192.899805 +2192.908863 +2192.921916 +2192.931040 +2192.944294 +2192.970934 +2192.980158 +2192.994111 +2193.007897 +2193.033205 +2193.049056 +2193.062875 +2193.130807 +2193.154950 +2193.168569 +2193.181523 +2193.196408 +2193.225512 +2193.264906 +2193.291280 +2193.293511 +2193.305899 +2193.308329 +2193.320451 +2193.331972 +2193.333970 +2193.347490 +2193.360877 +2193.363508 +2193.375429 +2193.379458 +2193.388616 +2193.398273 +2193.400504 +2193.411193 +2193.413491 +2193.426045 +2193.438666 +2193.440630 +2193.452119 +2193.469601 +2193.472299 +2193.481822 +2193.495842 +2193.498173 +2193.510061 +2193.512525 +2193.525445 +2193.537533 +2193.544893 +2193.558079 +2193.560244 +2193.572865 +2193.575129 +2193.585918 +2193.588482 +2193.599072 +2193.620750 +2193.633071 +2193.635335 +2193.646458 +2193.648755 +2193.661809 +2193.664107 +2193.674929 +2193.677460 +2193.687716 +2193.701636 +2193.704533 +2193.715355 +2193.738232 +2193.747190 +2193.760810 +2193.776061 +2193.790180 +2193.804533 +2193.816887 +2193.827710 +2193.830507 +2193.871099 +2193.873331 +2193.899138 +2193.927576 +2193.939797 +2193.951419 +2193.963374 +2193.978692 +2193.981089 +2193.993976 +2194.005465 +2194.018385 +2194.038199 +2194.060943 +2194.072997 +2194.076993 +2194.087949 +2194.109228 +2194.124446 +2194.127976 +2194.142528 +2194.157946 +2194.160809 +2194.170233 +2194.184819 +2194.187516 +2194.200237 +2194.212325 +2194.230739 +2194.240297 +2194.252784 +2194.266237 +2194.282887 +2194.292245 +2194.294642 +2194.311525 +2194.320350 +2194.346290 +2194.348755 +2194.362774 +2194.378591 +2194.393776 +2194.396740 +2194.405664 +2194.419317 +2194.435102 +2194.450852 +2194.464306 +2194.494276 +2194.524312 +2194.545391 +2194.553583 +2194.555847 +2194.582454 +2194.596140 +2194.610260 +2194.624845 +2194.638465 +2194.653117 +2194.684785 +2194.687116 +2194.698338 +2194.714622 +2194.716820 +2194.729607 +2194.744592 +2194.772331 +2194.774961 +2194.777992 +2194.788881 +2194.816486 +2194.870199 +2194.897072 +2194.899403 +2194.916353 +2194.920149 +2194.928241 +2194.939530 +2194.955148 +2194.992943 +2195.009293 +2195.036233 +2195.038997 +2195.047822 +2195.061708 +2195.077958 +2195.092244 +2195.094541 +2195.107595 +2195.132870 +2195.148587 +2195.154282 +2195.163406 +2195.205097 +2195.219983 +2195.234901 +2195.249586 +2195.262040 +2195.275827 +2195.291711 +2195.319649 +2195.330705 +2195.346123 +2195.360975 +2195.404564 +2195.419216 +2195.450285 +2195.457545 +2195.464105 +2195.467168 +2195.474894 +2195.477991 +2195.480522 +2195.485583 +2195.494341 +2195.497971 +2195.505097 +2195.508294 +2195.518217 +2195.523412 +2195.533702 +2195.539163 +2195.550585 +2195.560642 +2195.565204 +2195.573229 +2195.576293 +2195.584751 +2195.587182 +2195.598437 +2195.602000 +2195.612490 +2195.615553 +2195.624344 +2195.636799 +2195.639030 +2195.653382 +2195.656013 +2195.670032 +2195.685983 +2195.688280 +2195.693275 +2195.699836 +2195.710791 +2195.715886 +2195.718484 +2195.731570 +2195.733768 +2195.746289 +2195.748820 +2195.757578 +2195.761540 +2195.775327 +2195.777957 +2195.789646 +2195.792143 +2195.804331 +2195.806828 +2195.817518 +2195.819782 +2195.823845 +2195.832236 +2195.844491 +2195.846389 +2195.858310 +2195.860974 +2195.870964 +2195.888613 +2195.891610 +2195.899136 +2195.905996 +2195.919516 +2195.922313 +2195.933302 +2195.935600 +2195.949985 +2195.964471 +2195.967035 +2202.356073 +2203.506554 +2206.701823 +2206.703221 +2206.705852 +2206.707484 +2206.934190 +2207.010380 +2207.109847 +2207.703054 +2207.707083 +2208.702353 +2208.703952 +2208.706516 +2208.708181 +2209.701853 +2209.703385 +2209.707414 +2209.709911 +2210.701885 +2210.703350 +2211.702217 +2211.703749 +2211.707046 +2211.708744 +2212.135683 +2214.922793 +2215.545370 +2216.701713 +2216.703078 +2216.802612 +2216.804443 +2216.807240 +2216.903111 +2216.904610 +2217.003444 +2217.004709 +2217.007373 +2217.009172 +2217.103444 +2217.104809 +2217.109837 +2217.111336 +2217.203677 +2217.205142 +2217.210204 +2217.308039 +2217.403710 +2217.505175 +2217.509338 +2217.608372 +2217.611369 +2217.708405 +2217.809970 +2217.908305 +2218.003643 +2218.103709 +2218.109370 +2218.210669 +2218.303809 +2218.308105 +2218.311135 +2218.403842 +2218.607871 +2218.703875 +2218.709470 +2218.803842 +2218.908737 +2219.109502 +2219.208237 +2219.603941 +2219.808270 +2219.810634 +2219.903774 +2220.103840 +2220.308236 +2220.508302 +2220.511999 +2220.603973 +2220.704006 +2220.708802 +2220.808269 +2220.914063 +2221.103806 +2221.107902 +2221.303839 +2221.308135 +2221.403872 +2221.407968 +2221.511098 +2221.703839 +2221.705204 +2221.711198 +2221.712963 +2221.714661 +2224.223850 +2226.084454 +2226.701969 +2226.703234 +2226.706198 +2226.707763 +2226.712425 +2226.714157 +2226.719984 +2226.727610 +2226.735802 +2226.744427 +2226.771899 +2226.781589 +2226.790381 +2226.819385 +2226.829608 +2226.837966 +2226.848456 +2226.859611 +2226.869468 +2226.879025 +2226.888116 +2226.898039 +2226.906997 +2226.916854 +2226.918552 +2226.930973 +2226.941596 +2226.952352 +2226.963041 +2226.965072 +2226.977427 +2226.984986 +2226.995009 +2227.002402 +2227.012092 +2227.014523 +2227.023847 +2227.025845 +2227.037433 +2227.049621 +2227.058845 +2227.068935 +2227.081989 +2227.091446 +2227.093477 +2227.106031 +2227.116154 +2227.129874 +2227.132338 +2227.154017 +2227.164706 +2227.167603 +2227.177327 +2227.191479 +2227.207163 +2227.214722 +2227.227110 +2227.240830 +2227.250720 +2227.273663 +2227.276094 +2227.285818 +2227.288315 +2227.298006 +2227.301336 +2227.308529 +2227.321216 +2227.332971 +2227.336301 +2227.344759 +2227.346923 +2227.356847 +2227.359711 +2227.369434 +2227.371565 +2227.380656 +2227.405232 +2227.411093 +2227.433836 +2227.440563 +2227.444792 +2227.447323 +2227.452584 +2227.458079 +2227.466903 +2227.477559 +2227.484519 +2227.494542 +2227.497206 +2227.508029 +2227.516887 +2227.528275 +2227.540696 +2227.554416 +2227.577193 +2227.580956 +2227.588415 +2227.591745 +2227.600536 +2227.609361 +2227.631838 +2227.644459 +2227.646590 +2227.658512 +2227.661875 +2227.670300 +2227.672831 +2227.683653 +2227.687616 +2227.710593 +2227.721249 +2227.732038 +2227.742494 +2227.753550 +2227.762408 +2227.772764 +2227.783919 +2227.790546 +2227.797373 +2227.806130 +2227.814289 +2227.825444 +2227.836733 +2227.848188 +2227.872864 +2227.884752 +2227.890579 +2227.904832 +2227.928974 +2227.931771 +2227.942794 +2227.948388 +2227.961508 +2227.971631 +2227.981954 +2227.991745 +2228.002367 +2228.012990 +2228.026243 +2228.038331 +2228.050253 +2228.055481 +2228.064472 +2228.076460 +2228.079590 +2228.088714 +2228.091112 +2228.101668 +2228.113323 +2228.116087 +2228.127176 +2228.135934 +2228.140229 +2228.152983 +2228.161275 +2228.167968 +2228.172331 +2228.175827 +2228.183819 +2228.190179 +2228.196340 +2228.209094 +2228.215487 +2228.221848 +2228.225044 +2228.233569 +2228.246723 +2228.250652 +2228.259543 +2228.262673 +2228.272530 +2228.274861 +2228.285184 +2228.288548 +2228.297905 +2228.301335 +2228.308794 +2228.314755 +2228.319616 +2228.322780 +2228.332204 +2228.337265 +2228.344492 +2228.347655 +2228.357612 +2228.360609 +2228.370432 +2228.374095 +2228.383552 +2228.386483 +2228.395873 +2228.399237 +2228.408361 +2228.411724 +2228.421614 +2228.434568 +2228.437632 +2228.442327 +2228.448221 +2228.461874 +2228.465071 +2228.469466 +2228.475028 +2228.478291 +2228.482920 +2228.489113 +2228.493010 +2228.502100 +2228.506163 +2228.514954 +2228.519250 +2228.527242 +2228.530838 +2228.538031 +2228.545524 +2228.548188 +2228.554115 +2228.560242 +2228.562806 +2228.573129 +2228.586816 +2228.590079 +2228.599936 +2228.613422 +2228.620249 +2228.624478 +2228.633502 +2228.638297 +2228.645857 +2228.650019 +2228.656579 +2228.660808 +2228.669699 +2228.673329 +2228.682287 +2228.685850 +2228.690379 +2228.697405 +2228.700402 +2228.709193 +2228.722946 +2228.727708 +2228.737065 +2228.741028 +2228.749586 +2228.762074 +2228.765503 +2228.774761 +2228.777824 +2228.787481 +2228.791711 +2228.800901 +2228.804664 +2228.809593 +2228.814454 +2228.818517 +2228.827108 +2228.830239 +2228.835900 +2228.843559 +2228.846256 +2228.855347 +2228.858277 +2228.863572 +2228.870398 +2228.874927 +2228.880422 +2228.884018 +2228.894108 +2228.908427 +2228.911324 +2228.915920 +2228.921680 +2228.924245 +2228.934001 +2228.937098 +2228.945124 +2228.948454 +2228.961074 +2228.963605 +2228.972896 +2228.976426 +2228.981387 +2228.988247 +2228.992310 +2229.001933 +2229.017152 +2229.021214 +2229.029273 +2229.032936 +2229.043792 +2229.047088 +2229.057478 +2229.065503 +2229.072763 +2229.085417 +2229.089912 +2229.099436 +2229.104065 +2229.113821 +2229.117817 +2229.123046 +2229.130438 +2229.133335 +2229.142393 +2229.156579 +2229.160308 +2229.170265 +2229.174594 +2229.184684 +2229.198037 +2229.202599 +2229.212756 +2229.217018 +2229.225909 +2229.230205 +2229.241394 +2229.247055 +2229.253681 +2229.257977 +2229.267667 +2229.281787 +2229.286016 +2229.293408 +2229.299569 +2229.307894 +2229.311557 +2229.321780 +2229.326775 +2229.334267 +2229.339396 +2229.349386 +2229.358610 +2229.363904 +2229.374194 +2229.384584 +2229.388979 +2229.399336 +2229.403565 +2229.411923 +2229.416885 +2229.426841 +2229.430804 +2229.440628 +2229.456245 +2229.467434 +2229.473262 +2229.482053 +2229.493741 +2229.501833 +2229.518117 +2229.531170 +2229.540694 +2229.554547 +2229.572196 +2229.579389 +2229.585882 +2229.597171 +2229.601000 +2229.610990 +2229.614853 +2229.626675 +2229.630571 +2229.640328 +2229.645023 +2229.655379 +2229.660075 +2229.669365 +2229.674161 +2229.685449 +2229.689978 +2229.713088 +2229.726175 +2229.744590 +2229.770664 +2229.782952 +2229.811257 +2229.837564 +2229.847687 +2229.860008 +2229.872462 +2229.886881 +2229.898936 +2229.915452 +2229.927973 +2229.931836 +2229.942958 +2229.957610 +2229.974926 +2229.989545 +2229.998836 +2230.012389 +2230.018716 +2230.027474 +2230.041759 +2230.055745 +2230.070530 +2230.085749 +2230.100034 +2230.120447 +2230.132868 +2230.171063 +2230.188779 +2230.202365 +2230.217783 +2230.242725 +2230.247520 +2230.260241 +2230.274593 +2230.291343 +2230.305429 +2230.318516 +2230.335332 +2230.349085 +2230.416817 +2230.429038 +2230.445422 +2230.460440 +2230.474027 +2230.491576 +2230.506194 +2230.521146 +2230.536031 +2230.549817 +2230.566367 +2230.580453 +2230.597536 +2230.612355 +2230.625608 +2230.640693 +2230.665568 +2230.671362 +2230.684183 +2230.698635 +2230.714386 +2230.728805 +2230.744423 +2230.761006 +2230.775392 +2230.789378 +2230.804762 +2230.820413 +2230.851082 +2230.882917 +2230.897902 +2230.915351 +2230.929604 +2230.944189 +2230.958075 +2230.973560 +2230.989977 +2231.005128 +2231.020080 +2231.035764 +2231.083650 +2231.099933 +2231.114885 +2231.144689 +2231.160906 +2231.174292 +2231.190609 +2231.204129 +2231.220546 +2231.233766 +2231.277988 +2231.293706 +2231.321045 +2231.350882 +2231.365867 +2231.381318 +2231.398701 +2231.411921 +2231.428671 +2231.441392 +2231.456976 +2231.473559 +2231.489210 +2231.504895 +2231.521578 +2231.537462 +2231.552980 +2231.567432 +2231.582650 +2231.599866 +2231.630136 +2231.646120 +2231.660406 +2231.676456 +2231.692374 +2233.032266 +2241.704119 +2241.707782 +2241.709480 +2242.708080 +2242.709912 +2243.703184 +2243.704450 +2243.707713 +2243.709711 +2244.702950 +2244.704282 +2244.707279 +2244.709910 +2245.128324 +2245.703948 +2245.704647 +2245.709642 +2246.703381 +2246.704646 +2246.709475 +2246.711206 +2247.109874 +2248.130586 +2249.177504 +2250.622957 +2251.703309 +2251.704608 +2251.708371 +2251.804275 +2251.805474 +2251.808604 +2251.905907 +2251.908837 +2252.004874 +2252.006173 +2252.009336 +2252.105041 +2252.106306 +2252.109370 +2252.206439 +2252.209503 +2252.305240 +2252.306572 +2252.309303 +2252.311967 +2252.405273 +2252.409502 +2252.509702 +2252.512832 +2252.606738 +2252.610634 +2252.705373 +2252.706738 +2252.709935 +2252.805306 +2252.806672 +2252.809835 +2252.905373 +2252.906705 +2252.909835 +2252.912099 +2252.913531 +2252.914497 +2253.006738 +2253.009635 +2253.105373 +2253.109935 +2253.113531 +2253.205339 +2253.211866 +2253.305339 +2253.306638 +2253.309668 +2253.311766 +2253.312765 +2253.316328 +2253.406704 +2253.409468 +2253.412665 +2253.505439 +2253.506837 +2253.510234 +2253.605405 +2253.608935 +2253.611732 +2253.705538 +2253.706837 +2253.713331 +2253.805572 +2253.807004 +2253.809901 +2253.905438 +2253.906804 +2253.909268 +2253.912864 +2254.009368 +2254.012331 +2254.106637 +2254.109601 +2254.112231 +2254.209234 +2254.212364 +2254.305438 +2254.309600 +2254.312264 +2254.406803 +2254.409234 +2254.413397 +2254.510000 +2254.606936 +2254.609400 +2254.613130 +2254.706803 +2254.710000 +2254.713596 +2254.806803 +2254.809533 +2254.812430 +2254.906903 +2254.909833 +2254.913563 +2255.005570 +2255.006902 +2255.009899 +2255.109866 +2255.113129 +2255.209633 +2255.212430 +2255.305504 +2255.306935 +2255.312830 +2255.405503 +2255.409466 +2255.505637 +2255.507002 +2255.509599 +2255.512163 +2255.605603 +2255.606902 +2255.611397 +2255.705636 +2255.707035 +2255.709965 +2255.712829 +2255.805570 +2255.806902 +2255.809666 +2255.813462 +2255.814527 +2255.905503 +2255.906868 +2255.912529 +2256.005503 +2256.012629 +2256.016758 +2256.105469 +2256.109865 +2256.113262 +2256.205603 +2256.209898 +2256.214194 +2256.305536 +2256.306934 +2256.309365 +2256.405702 +2256.407068 +2256.412729 +2256.507067 +2256.510264 +2256.516258 +2256.605635 +2261.708494 +2261.722314 +2261.724545 +2261.730172 +2261.731804 +2261.739064 +2261.756313 +2261.766703 +2261.777225 +2261.795207 +2261.805464 +2261.820049 +2261.828441 +2261.839829 +2261.849553 +2261.858144 +2261.860042 +2261.869133 +2261.877791 +2261.889013 +2261.891211 +2261.900469 +2261.908827 +2261.919450 +2261.921414 +2261.930605 +2261.954215 +2261.961574 +2261.970399 +2261.973096 +2261.979723 +2261.988314 +2261.990345 +2261.999236 +2262.011058 +2262.013089 +2262.033069 +2262.042726 +2262.050319 +2262.060508 +2262.071065 +2262.082420 +2262.091444 +2262.104131 +2262.106562 +2262.125344 +2262.135733 +2262.146422 +2262.148787 +2262.157478 +2262.159343 +2262.169233 +2262.172030 +2262.193975 +2262.206096 +2262.218783 +2262.229006 +2262.232003 +2262.241894 +2262.255813 +2262.265204 +2262.267335 +2262.278124 +2262.289013 +2262.301967 +2262.314421 +2262.325277 +2262.327208 +2262.340362 +2262.349619 +2262.361507 +2262.374294 +2262.383851 +2262.386382 +2262.395673 +2262.406129 +2262.418583 +2262.429406 +2262.436898 +2262.439929 +2262.448687 +2262.459343 +2262.461873 +2262.472463 +2262.480621 +2262.483052 +2262.494274 +2262.496938 +2262.507161 +2262.520415 +2262.532902 +2262.546189 +2262.549486 +2262.562906 +2262.572596 +2262.594541 +2262.604997 +2262.614121 +2262.623245 +2262.638164 +2262.648953 +2262.656678 +2262.675826 +2262.684484 +2262.687015 +2262.697204 +2262.706262 +2262.714720 +2262.719182 +2262.726542 +2262.736132 +2262.752283 +2262.759842 +2262.771463 +2262.783618 +2262.800834 +2262.808693 +2262.812223 +2262.819515 +2262.823445 +2262.830404 +2262.833834 +2262.842692 +2262.853781 +2262.856512 +2262.881820 +2262.900235 +2262.903098 +2262.913788 +2262.928406 +2262.941293 +2262.946522 +2262.950751 +2262.961040 +2262.972662 +2262.975326 +2262.978456 +2262.986348 +2262.988879 +2263.001233 +2263.034134 +2263.040028 +2263.053714 +2263.066335 +2263.076392 +2263.087347 +2263.107594 +2263.117617 +2263.127540 +2263.130038 +2263.140261 +2263.142858 +2263.153348 +2263.162838 +2263.165602 +2263.176192 +2263.186381 +2263.189345 +2263.199602 +2263.202465 +2263.212988 +2263.221147 +2263.232269 +2263.239961 +2263.244956 +2263.250784 +2263.255945 +2263.263071 +2263.271796 +2263.278756 +2263.288846 +2263.298536 +2263.302066 +2263.306561 +2263.314353 +2263.316618 +2263.321579 +2263.328672 +2263.332235 +2263.341326 +2263.354480 +2263.357677 +2263.367866 +2263.375892 +2263.384583 +2263.394340 +2263.398702 +2263.406461 +2263.411556 +2263.419282 +2263.424876 +2263.428239 +2263.438629 +2263.441126 +2263.452249 +2263.463238 +2263.466934 +2263.473760 +2263.485149 +2263.488079 +2263.498402 +2263.500900 +2263.505595 +2263.512222 +2263.523611 +2263.526508 +2263.532135 +2263.537097 +2263.540594 +2263.544423 +2263.549385 +2263.553780 +2263.563038 +2263.567367 +2263.574726 +2263.583051 +2263.586614 +2263.595206 +2263.598402 +2263.606761 +2263.609325 +2263.619947 +2263.623044 +2263.631736 +2263.648819 +2263.652182 +2263.658942 +2263.661905 +2263.669165 +2263.672628 +2263.675891 +2263.689178 +2263.699268 +2263.702432 +2263.706727 +2263.712222 +2263.714786 +2263.725608 +2263.728505 +2263.739927 +2263.743024 +2263.750084 +2263.752715 +2263.765402 +2263.768599 +2263.779355 +2263.783117 +2263.787446 +2263.792308 +2263.795905 +2263.805129 +2263.809358 +2263.819781 +2263.823244 +2263.830570 +2263.833034 +2263.843723 +2263.856377 +2263.861173 +2263.866800 +2263.869431 +2263.876890 +2263.881452 +2263.884016 +2263.896104 +2263.898702 +2263.903264 +2263.909757 +2263.913021 +2263.918249 +2263.923410 +2263.926241 +2263.930969 +2263.936231 +2263.939627 +2263.944056 +2263.951316 +2263.963837 +2263.967300 +2263.977556 +2263.986647 +2263.991342 +2264.001599 +2264.004762 +2264.013820 +2264.016950 +2264.027107 +2264.030736 +2264.039394 +2264.044023 +2264.051882 +2264.062804 +2264.073160 +2264.076091 +2264.086514 +2264.089810 +2264.099634 +2264.112155 +2264.116251 +2264.125908 +2264.141492 +2264.145621 +2264.153280 +2264.160906 +2264.167366 +2264.174193 +2264.180520 +2264.193940 +2264.207626 +2264.212221 +2264.221645 +2264.235698 +2264.248085 +2264.251082 +2264.254612 +2264.263104 +2264.267599 +2264.277056 +2264.280952 +2264.289277 +2264.293040 +2264.302964 +2264.307759 +2264.317549 +2264.331102 +2264.334632 +2264.345122 +2264.349850 +2264.359307 +2264.363503 +2264.372827 +2264.376856 +2264.387413 +2264.400033 +2264.406094 +2264.412887 +2264.418082 +2264.427772 +2264.431036 +2264.441891 +2264.445155 +2264.454112 +2264.458808 +2264.468365 +2264.471928 +2264.482517 +2264.486114 +2264.495238 +2264.498568 +2264.510956 +2264.515151 +2264.524775 +2264.538361 +2264.542491 +2264.551615 +2264.557609 +2264.565934 +2264.570130 +2264.580686 +2264.584415 +2264.599367 +2264.608858 +2264.622544 +2264.627173 +2264.636630 +2264.640759 +2264.653846 +2264.664602 +2264.670696 +2264.677789 +2264.681585 +2264.692207 +2264.704329 +2264.709357 +2264.720446 +2264.731834 +2264.735697 +2264.747785 +2264.760905 +2264.765701 +2264.776656 +2264.787712 +2264.791441 +2264.801864 +2264.807392 +2264.816383 +2264.820546 +2264.830402 +2264.835131 +2264.848551 +2264.863203 +2264.874558 +2264.886313 +2264.890709 +2264.899999 +2264.914951 +2264.929770 +2264.941558 +2264.960439 +2264.970629 +2264.984049 +2264.988211 +2264.999899 +2265.012454 +2265.016816 +2265.028937 +2265.045021 +2265.060372 +2265.072860 +2265.087046 +2265.101464 +2265.116516 +2265.127905 +2265.143822 +2265.172860 +2265.185514 +2265.217182 +2265.243456 +2265.259473 +2265.290042 +2265.302730 +2265.316249 +2265.331234 +2265.346752 +2265.361970 +2265.376756 +2265.390342 +2265.402630 +2265.415483 +2265.432200 +2265.460505 +2265.504394 +2265.516149 +2265.531900 +2265.543888 +2265.559306 +2265.591507 +2265.605060 +2265.621277 +2265.687844 +2265.720245 +2265.735863 +2265.751081 +2265.781217 +2265.898400 +2265.912619 +2265.929003 +2265.943821 +2265.961171 +2265.976289 +2265.992173 +2266.007324 +2266.033565 +2266.082050 +2266.097234 +2266.112652 +2266.127870 +2266.173591 +2266.187078 +2266.229469 +2266.266931 +2266.299166 +2266.331100 +2266.346884 +2266.444054 +2266.488876 +2266.516781 +2266.585978 +2266.624240 +2266.665832 +2266.697001 +2276.704583 +2276.705882 +2276.708113 +2276.710710 +2276.712342 +2277.704982 +2277.706247 +2277.709544 +2277.711808 +2278.705014 +2278.709243 +2278.711607 +2279.706478 +2279.710774 +2279.712805 +2280.705045 +2280.706311 +2280.710573 +2280.712205 +2281.706376 +2281.710439 +2281.712204 +2285.133479 +2286.392918 +2286.433311 +2286.704573 +2286.705905 +2286.710334 +2286.712565 +2286.805572 +2286.806737 +2286.811932 +2286.906005 +2286.907237 +2286.911732 +2287.006204 +2287.007503 +2287.010001 +2287.012198 +2287.106404 +2287.107636 +2287.110300 +2287.112498 +2287.206537 +2287.210766 +2287.214196 +2287.306537 +2287.307803 +2287.313330 +2287.406604 +2287.407969 +2287.410600 +2287.414462 +2287.506604 +2287.507902 +2287.513297 +2287.606603 +2287.607935 +2287.610733 +2287.614129 +2287.706670 +2287.708002 +2287.710899 +2287.806637 +2287.807935 +2287.810799 +2287.906670 +2287.908002 +2288.006670 +2288.008035 +2288.014429 +2288.106736 +2288.108135 +2288.110899 +2288.114928 +2288.206703 +2288.208001 +2288.210299 +2288.213662 +2288.306669 +2288.308101 +2288.311032 +2288.406736 +2288.408068 +2288.410532 +2288.413196 +2288.506669 +2288.507968 +2288.510632 +2288.514028 +2288.606669 +2288.608068 +2288.610399 +2288.613895 +2288.708034 +2288.711098 +2288.806769 +2288.808067 +2288.810532 +2288.814361 +2288.906735 +2288.908101 +2288.910765 +2288.913928 +2289.006702 +2289.008067 +2289.013895 +2289.106735 +2289.108100 +2289.111097 +2289.206735 +2289.208100 +2289.210498 +2289.213661 +2289.306768 +2289.308034 +2289.314194 +2289.406768 +2289.408167 +2289.414161 +2289.506768 +2289.508133 +2289.510797 +2289.514560 +2289.606768 +2289.610431 +2289.614993 +2289.706768 +2289.710797 +2289.806734 +2289.810364 +2289.813161 +2289.906734 +2289.908066 +2290.006701 +2290.010397 +2290.013328 +2290.106767 +2290.108133 +2290.110597 +2290.113661 +2290.206701 +2290.208066 +2290.213527 +2290.306801 +2290.308166 +2290.406767 +2290.410863 +2290.506767 +2290.508166 +2290.514459 +2290.606767 +2290.608199 +2290.610996 +2290.614293 +2290.706800 +2290.711029 +2290.713826 +2290.806767 +2290.813393 +2290.906800 +2290.908099 +2290.910396 +2291.006700 +2291.008032 +2291.010230 +2291.013593 +2291.106700 +2291.108065 +2291.110396 +2291.112927 +2291.206766 +2291.208098 +2291.213793 +2291.306866 +2291.310562 +2291.406866 +2291.408231 +2291.410895 +2291.413759 +2291.508165 +2291.510862 +2291.513559 +2291.606799 +2291.610529 +2291.613826 +2291.706799 +2291.708164 +2291.710828 +2291.714758 +2295.910058 +2296.132902 +2296.323211 +2296.711523 +2296.717950 +2296.723977 +2296.725542 +2296.731802 +2296.739561 +2296.741293 +2296.748219 +2296.756511 +2296.762771 +2296.769931 +2296.779155 +2296.789811 +2296.799568 +2296.801433 +2296.811989 +2296.826308 +2296.834400 +2296.844090 +2296.862671 +2296.864636 +2296.872628 +2296.874693 +2296.891443 +2296.901632 +2296.909125 +2296.918183 +2296.927040 +2296.930703 +2296.939794 +2296.941692 +2296.949518 +2296.963504 +2296.973794 +2296.983451 +2296.992808 +2296.994773 +2297.002132 +2297.011256 +2297.012988 +2297.022045 +2297.023843 +2297.035299 +2297.047953 +2297.050017 +2297.061106 +2297.066301 +2297.071762 +2297.074326 +2297.081952 +2297.083950 +2297.092774 +2297.095272 +2297.103930 +2297.113420 +2297.123311 +2297.125775 +2297.133134 +2297.146720 +2297.155312 +2297.157410 +2297.175392 +2297.184083 +2297.195538 +2297.197669 +2297.209791 +2297.218282 +2297.221745 +2297.230070 +2297.240160 +2297.251216 +2297.261139 +2297.267500 +2297.273727 +2297.281319 +2297.283817 +2297.293240 +2297.297869 +2297.308026 +2297.310223 +2297.318449 +2297.320713 +2297.329338 +2297.333334 +2297.343390 +2297.345555 +2297.350983 +2297.356943 +2297.359008 +2297.368798 +2297.371296 +2297.379521 +2297.381785 +2297.390743 +2297.396737 +2297.398668 +2297.407559 +2297.414219 +2297.420413 +2297.422611 +2297.432534 +2297.434599 +2297.437696 +2297.444755 +2297.452981 +2297.455445 +2297.462871 +2297.472428 +2297.485282 +2297.488745 +2297.495305 +2297.497270 +2297.501965 +2297.510490 +2297.521712 +2297.524642 +2297.532168 +2297.534732 +2297.543423 +2297.545721 +2297.555411 +2297.562637 +2297.565401 +2297.573327 +2297.583150 +2297.585281 +2297.594938 +2297.605128 +2297.614252 +2297.626141 +2297.628605 +2297.638362 +2297.640360 +2297.642857 +2297.651082 +2297.656111 +2297.665468 +2297.668798 +2297.676790 +2297.678721 +2297.681785 +2297.689411 +2297.692374 +2297.700999 +2297.704795 +2297.711988 +2297.715584 +2297.724043 +2297.726507 +2297.735797 +2297.738328 +2297.745721 +2297.749983 +2297.753813 +2297.763370 +2297.775458 +2297.786447 +2297.788844 +2297.791375 +2297.798701 +2297.801099 +2297.803463 +2297.810389 +2297.812587 +2297.823576 +2297.828804 +2297.838628 +2297.843290 +2297.848718 +2297.857942 +2297.865368 +2297.872161 +2297.878288 +2297.882817 +2297.885614 +2297.892840 +2297.894971 +2297.900666 +2297.905461 +2297.910656 +2297.921345 +2297.923376 +2297.927239 +2297.932301 +2297.934765 +2297.945854 +2297.948751 +2297.952847 +2297.959041 +2297.961538 +2297.971295 +2297.977722 +2297.984315 +2297.987013 +2297.998934 +2298.001798 +2298.009823 +2298.020179 +2298.025208 +2298.028138 +2298.033300 +2298.036430 +2298.048052 +2298.050083 +2298.061005 +2298.072427 +2298.079853 +2298.084748 +2298.087079 +2298.098335 +2298.100599 +2298.103429 +2298.111355 +2298.113486 +2298.123543 +2298.125607 +2298.133300 +2298.136996 +2298.140226 +2298.146187 +2298.149650 +2298.157009 +2298.161272 +2298.163836 +2298.166699 +2298.170329 +2298.173759 +2298.175790 +2298.182384 +2298.186180 +2298.188444 +2298.191175 +2298.198068 +2298.203196 +2298.209623 +2298.212420 +2298.215717 +2298.222177 +2298.224641 +2298.227539 +2298.234831 +2298.237395 +2298.247585 +2298.250649 +2298.257608 +2298.261937 +2298.266033 +2298.271228 +2298.276456 +2298.279187 +2298.283616 +2298.297002 +2298.302730 +2298.308724 +2298.310922 +2298.314119 +2298.321178 +2298.323409 +2298.326440 +2298.329969 +2298.334099 +2298.337562 +2298.345054 +2298.352680 +2298.355744 +2298.360739 +2298.363403 +2298.367032 +2298.376156 +2298.383716 +2298.398001 +2298.400366 +2298.403529 +2298.411488 +2298.424575 +2298.427239 +2298.431867 +2298.435397 +2298.437761 +2298.440792 +2298.447385 +2298.450116 +2298.452547 +2298.456776 +2298.460605 +2298.463136 +2298.472460 +2298.475757 +2298.478421 +2298.483316 +2298.487878 +2298.492507 +2298.495104 +2298.502996 +2298.505494 +2298.512020 +2298.514751 +2298.518014 +2298.523709 +2298.525807 +2298.529237 +2298.533899 +2298.536862 +2298.539293 +2298.542423 +2298.549683 +2298.555877 +2298.562170 +2298.564768 +2298.569030 +2298.573459 +2298.576289 +2298.583416 +2298.586812 +2298.593039 +2298.595737 +2298.605094 +2298.607258 +2298.626506 +2298.637495 +2298.640026 +2298.650648 +2298.652979 +2298.656509 +2298.663236 +2298.665500 +2298.669230 +2298.675890 +2298.678354 +2298.681617 +2298.689942 +2298.692373 +2298.703296 +2298.705560 +2298.708923 +2298.716549 +2298.719746 +2298.723209 +2298.727039 +2298.729736 +2298.737928 +2298.740791 +2298.744621 +2298.750049 +2298.752746 +2298.756542 +2298.762303 +2298.765134 +2298.774158 +2298.777055 +2298.781151 +2298.785280 +2298.797135 +2298.799399 +2298.810622 +2298.812919 +2298.816183 +2298.822809 +2298.829836 +2298.835097 +2298.838793 +2298.845520 +2298.849816 +2298.855610 +2298.863502 +2298.866033 +2298.887178 +2298.898367 +2298.901031 +2298.912386 +2298.918280 +2298.922643 +2298.924940 +2298.928670 +2298.935397 +2298.937761 +2298.940625 +2298.950715 +2298.954844 +2298.960738 +2298.966632 +2298.970861 +2298.973925 +2298.982350 +2298.985014 +2298.991008 +2298.998400 +2299.006525 +2299.008956 +2299.018447 +2299.020611 +2299.025939 +2299.031401 +2299.033831 +2299.044954 +2299.052879 +2299.059872 +2299.064667 +2299.072826 +2299.076156 +2299.085846 +2299.094637 +2299.115183 +2299.125939 +2299.129702 +2299.139293 +2299.150581 +2299.161537 +2299.170961 +2299.184114 +2299.194071 +2299.203895 +2299.215050 +2299.219612 +2299.227637 +2299.230135 +2299.240358 +2299.250714 +2299.264834 +2299.268663 +2299.276822 +2299.288843 +2299.292173 +2299.301996 +2299.312786 +2299.315450 +2299.326538 +2299.338327 +2299.341324 +2299.351613 +2299.362336 +2299.366099 +2299.375556 +2299.388277 +2299.401796 +2299.411553 +2299.423708 +2299.436095 +2299.438726 +2299.449715 +2299.452679 +2299.464301 +2299.466965 +2299.476921 +2299.490807 +2299.494271 +2299.497834 +2299.504727 +2299.509222 +2299.518513 +2299.523275 +2299.531800 +2299.535596 +2299.544653 +2299.557041 +2299.569995 +2299.582582 +2299.591473 +2299.605559 +2299.613917 +2299.617747 +2299.627271 +2299.640291 +2299.652545 +2299.656841 +2299.665266 +2299.667897 +2299.678852 +2299.682882 +2299.692705 +2299.706292 +2299.722043 +2299.733964 +2299.739292 +2299.748250 +2299.760504 +2299.763434 +2299.774956 +2299.777654 +2299.788876 +2299.801996 +2299.815815 +2299.828869 +2299.842555 +2299.856841 +2299.869528 +2299.875356 +2299.885013 +2299.896468 +2299.909688 +2299.923241 +2299.934963 +2299.948383 +2299.959305 +2299.972858 +2299.985379 +2299.988709 +2299.999931 +2300.004460 +2300.013751 +2300.016914 +2300.028935 +2300.041090 +2300.053577 +2300.077354 +2300.089974 +2300.103527 +2300.106924 +2300.118146 +2300.132365 +2300.157407 +2300.170427 +2300.183780 +2300.221176 +2300.242089 +2300.255342 +2300.259638 +2300.270161 +2300.285678 +2300.300397 +2300.312485 +2300.326904 +2300.343487 +2300.354310 +2300.367197 +2300.393337 +2300.418046 +2300.430467 +2300.443221 +2300.472025 +2300.488009 +2300.501029 +2300.512518 +2300.528702 +2300.541622 +2300.554742 +2300.570593 +2300.595735 +2300.613017 +2300.641888 +2300.682048 +2300.764999 +2300.780383 +2300.822674 +2300.835195 +2300.920976 +2300.946017 +2300.999797 +2301.044585 +2301.132664 +2301.146650 +2301.213283 +2301.242620 +2301.275721 +2301.287242 +2301.390073 +2301.405424 +2301.446983 +2301.548581 +2301.565031 +2301.594968 +2311.705147 +2311.706346 +2311.708644 +2311.710808 +2311.712440 +2312.705546 +2312.709509 +2312.711906 +2312.713904 +2313.705612 +2313.706877 +2313.709907 +2313.712172 +2314.705611 +2314.706843 +2314.709507 +2314.712237 +2315.705643 +2315.706875 +2315.711104 +2315.712969 +2316.705575 +2316.706874 +2316.709338 +2316.712369 +2321.597911 +2321.706303 +2321.708967 +2321.806003 +2321.807202 +2321.809566 +2321.906403 +2321.907535 +2321.909899 +2322.006636 +2322.007901 +2322.009932 +2322.106969 +2322.108201 +2322.110765 +2322.112929 +2322.206902 +2322.208234 +2322.210465 +2322.212962 +2322.307102 +2322.308334 +2322.311131 +2322.314894 +2322.407035 +2322.408367 +2322.411231 +2322.414994 +2322.507068 +2322.511164 +2322.607068 +2322.608333 +2322.610931 +2322.707101 +2322.708400 +2322.713128 +2322.807068 +2322.808366 +2322.810997 +2322.814094 +2322.907134 +2322.908466 +2322.911097 +2323.007201 +2323.011530 +2323.014260 +2323.107101 +2323.108366 +2323.111130 +2323.115326 +2323.207167 +2323.208466 +2323.210797 +2323.215093 +2323.307067 +2323.308399 +2323.310564 +2323.313095 +2323.407100 +2323.408432 +2323.410364 +2323.507134 +2323.508399 +2323.510530 +2323.607200 +2323.608499 +2323.611696 +2323.708499 +2323.710930 +2323.714826 +2323.807167 +2323.815325 +2323.907167 +2323.908499 +2323.910763 +2324.007200 +2324.008565 +2324.011729 +2324.015192 +2324.107133 +2324.108465 +2324.111162 +2324.115225 +2324.207200 +2324.208532 +2324.211362 +2324.308498 +2324.408498 +2324.410962 +2324.414192 +2324.418821 +2324.507066 +2324.511062 +2324.513593 +2324.514692 +2324.607133 +2324.608465 +2324.610862 +2324.613926 +2324.618588 +2324.707132 +2324.708498 +2324.710862 +2324.714991 +2324.807199 +2324.811295 +2324.815291 +2324.907166 +2324.908564 +2324.910928 +2324.915091 +2325.007199 +2325.011361 +2325.015224 +2325.018254 +2325.107199 +2325.110762 +2325.113992 +2325.210462 +2325.213526 +2325.307198 +2325.308597 +2325.310728 +2325.407098 +2325.408464 +2325.414258 +2325.508430 +2325.510595 +2325.513825 +2325.607065 +2325.608397 +2325.614191 +2325.707198 +2325.711127 +2325.713825 +2325.807198 +2325.811261 +2325.814224 +2325.907165 +2325.910961 +2325.915223 +2326.007164 +2326.008430 +2326.010994 +2326.015456 +2326.018220 +2326.107098 +2326.108496 +2326.110827 +2326.114490 +2326.207231 +2326.208663 +2326.211227 +2326.307231 +2326.308496 +2326.310894 +2326.313724 +2326.415156 +2326.507164 +2326.508496 +2326.510727 +2326.607131 +2326.610794 +2326.707130 +2326.710893 +2326.714756 +2326.718153 +2331.705227 +2331.706459 +2331.715850 +2331.722443 +2331.729536 +2331.731401 +2331.739293 +2331.749050 +2331.759007 +2331.777688 +2331.787012 +2331.789410 +2331.795370 +2331.818514 +2331.838327 +2331.857608 +2331.859706 +2331.869030 +2331.881085 +2331.889010 +2331.897835 +2331.899500 +2331.912020 +2331.921145 +2331.922976 +2331.932034 +2331.962703 +2331.972859 +2331.995370 +2331.998500 +2332.006426 +2332.016815 +2332.029902 +2332.040525 +2332.051947 +2332.054378 +2332.063269 +2332.074225 +2332.076289 +2332.085247 +2332.087978 +2332.096602 +2332.119180 +2332.122177 +2332.131001 +2332.142856 +2332.156975 +2332.167864 +2332.170162 +2332.179886 +2332.191907 +2332.195004 +2332.206958 +2332.218280 +2332.229136 +2332.253379 +2332.264234 +2332.276755 +2332.285846 +2332.316016 +2332.327005 +2332.337961 +2332.361437 +2332.374291 +2332.376955 +2332.385280 +2332.399266 +2332.409622 +2332.412153 +2332.421410 +2332.423808 +2332.434964 +2332.438127 +2332.446052 +2332.459306 +2332.473225 +2332.485313 +2332.507258 +2332.517681 +2332.530967 +2332.533165 +2332.545087 +2332.558939 +2332.568730 +2332.579985 +2332.585646 +2332.596036 +2332.609023 +2332.622209 +2332.634197 +2332.646352 +2332.658540 +2332.661437 +2332.669795 +2332.681783 +2332.694104 +2332.705992 +2332.716482 +2332.750514 +2332.761437 +2332.768729 +2332.782749 +2332.791307 +2332.801197 +2332.837627 +2332.840657 +2332.851813 +2332.854377 +2332.875156 +2332.889242 +2332.902695 +2332.928037 +2332.937161 +2332.948216 +2332.956375 +2332.966032 +2332.968529 +2332.978719 +2332.993471 +2332.995802 +2333.007657 +2333.010221 +2333.020977 +2333.025040 +2333.031267 +2333.035063 +2333.042888 +2333.051979 +2333.061903 +2333.067630 +2333.070128 +2333.078752 +2333.081916 +2333.091540 +2333.094670 +2333.103594 +2333.107124 +2333.117680 +2333.128969 +2333.130934 +2333.142289 +2333.144786 +2333.155609 +2333.157773 +2333.162835 +2333.168329 +2333.170860 +2333.179252 +2333.182049 +2333.190174 +2333.192539 +2333.202329 +2333.209888 +2333.214383 +2333.224440 +2333.233531 +2333.237960 +2333.251713 +2333.254177 +2333.262568 +2333.264733 +2333.274889 +2333.286678 +2333.288809 +2333.292505 +2333.299631 +2333.302229 +2333.313218 +2333.316015 +2333.326005 +2333.328602 +2333.338060 +2333.350480 +2333.353444 +2333.356774 +2333.363534 +2333.366032 +2333.376255 +2333.378253 +2333.382715 +2333.388742 +2333.391673 +2333.396568 +2333.399898 +2333.410387 +2333.413517 +2333.422109 +2333.424573 +2333.433964 +2333.445186 +2333.448682 +2333.455808 +2333.470893 +2333.474157 +2333.480417 +2333.482515 +2333.494170 +2333.496901 +2333.506025 +2333.510021 +2333.518479 +2333.520777 +2333.523774 +2333.531766 +2333.534396 +2333.537493 +2333.545319 +2333.548749 +2333.554410 +2333.557906 +2333.562835 +2333.570394 +2333.572924 +2333.575622 +2333.583014 +2333.585445 +2333.594436 +2333.596834 +2333.599331 +2333.602528 +2333.608422 +2333.611719 +2333.620643 +2333.623274 +2333.634729 +2333.647150 +2333.649481 +2333.652611 +2333.663634 +2333.667030 +2333.671026 +2333.674489 +2333.677220 +2333.682948 +2333.687077 +2333.689508 +2333.692005 +2333.695735 +2333.702994 +2333.705525 +2333.708489 +2333.713684 +2333.716647 +2333.719644 +2333.723074 +2333.727270 +2333.733997 +2333.739691 +2333.742122 +2333.744653 +2333.750314 +2333.753011 +2333.764799 +2333.766930 +2333.769428 +2333.773457 +2333.777253 +2333.779784 +2333.785978 +2333.790640 +2333.793470 +2333.798465 +2333.803893 +2333.806391 +2333.816281 +2333.825372 +2333.829967 +2333.833064 +2333.842355 +2333.844886 +2333.857473 +2333.860703 +2333.865865 +2333.869428 +2333.874023 +2333.879185 +2333.882648 +2333.896434 +2333.900164 +2333.907090 +2333.911019 +2333.913317 +2333.917613 +2333.922142 +2333.925005 +2333.929634 +2333.934496 +2333.936461 +2333.942987 +2333.951013 +2333.956774 +2333.961735 +2333.964333 +2333.974656 +2333.978718 +2333.988442 +2333.991772 +2334.002128 +2334.004992 +2334.014849 +2334.017313 +2334.020776 +2334.027270 +2334.035994 +2334.039691 +2334.043087 +2334.048815 +2334.051346 +2334.064366 +2334.088242 +2334.090640 +2334.093870 +2334.102661 +2334.106224 +2334.114349 +2334.117080 +2334.119644 +2334.125105 +2334.129168 +2334.132231 +2334.141822 +2334.145351 +2334.152245 +2334.155874 +2334.168695 +2334.181549 +2334.196733 +2334.200696 +2334.208355 +2334.212185 +2334.220676 +2334.225105 +2334.231798 +2334.236527 +2334.240323 +2334.249580 +2334.253610 +2334.263100 +2334.276520 +2334.289607 +2334.292171 +2334.295701 +2334.304259 +2334.306956 +2334.312717 +2334.317812 +2334.320876 +2334.331165 +2334.333896 +2334.343886 +2334.346550 +2334.358838 +2334.372025 +2334.375621 +2334.380316 +2334.387143 +2334.400263 +2334.411052 +2334.421075 +2334.424372 +2334.432797 +2334.438258 +2334.443153 +2334.447782 +2334.456940 +2334.460303 +2334.470493 +2334.475454 +2334.483346 +2334.486044 +2334.496733 +2334.500496 +2334.510186 +2334.514149 +2334.516880 +2334.524472 +2334.531298 +2334.536094 +2334.545384 +2334.549247 +2334.560935 +2334.571891 +2334.584046 +2334.588308 +2334.596966 +2334.605691 +2334.616114 +2334.627535 +2334.641188 +2334.651345 +2334.654209 +2334.664598 +2334.668594 +2334.677519 +2334.680083 +2334.691505 +2334.702161 +2334.706257 +2334.715747 +2334.720975 +2334.729600 +2334.733163 +2334.744851 +2334.749347 +2334.756640 +2334.763599 +2334.768761 +2334.776087 +2334.782047 +2334.794035 +2334.798931 +2334.820143 +2334.828967 +2334.833563 +2334.847415 +2334.861168 +2334.867495 +2334.882014 +2334.892637 +2334.905590 +2334.917146 +2334.920775 +2334.930699 +2334.941821 +2334.955640 +2334.960769 +2334.969959 +2334.972623 +2334.984978 +2334.998897 +2335.002893 +2335.014082 +2335.017079 +2335.027302 +2335.041055 +2335.057039 +2335.070725 +2335.076086 +2335.084878 +2335.099030 +2335.117778 +2335.128434 +2335.131664 +2335.142420 +2335.146050 +2335.156106 +2335.160802 +2335.170725 +2335.175021 +2335.184644 +2335.202860 +2335.214947 +2335.227868 +2335.242120 +2335.246349 +2335.258038 +2335.271291 +2335.276153 +2335.286376 +2335.291471 +2335.300928 +2335.313482 +2335.328034 +2335.342653 +2335.356339 +2335.370392 +2335.385510 +2335.398997 +2335.416712 +2335.427668 +2335.440755 +2335.455373 +2335.470025 +2335.473755 +2335.485743 +2335.501161 +2335.513715 +2335.516978 +2335.529632 +2335.543818 +2335.546882 +2335.560768 +2335.575986 +2335.589572 +2335.601627 +2335.614714 +2335.631764 +2335.644051 +2335.658237 +2335.686009 +2335.701227 +2335.704657 +2335.718011 +2335.732363 +2335.746848 +2335.761667 +2335.765963 +2335.777218 +2335.781747 +2335.791237 +2335.795100 +2335.807454 +2335.835726 +2335.850245 +2335.864564 +2335.869892 +2335.893701 +2335.909885 +2335.926002 +2335.944084 +2335.955673 +2335.969392 +2335.984277 +2335.998863 +2336.002259 +2336.013981 +2336.030731 +2336.044084 +2336.048014 +2336.061667 +2336.073122 +2336.078217 +2336.087474 +2336.103092 +2336.116445 +2336.135026 +2336.148080 +2336.163165 +2336.166528 +2336.178649 +2336.195233 +2336.210817 +2336.225136 +2336.241387 +2336.253208 +2336.269192 +2336.283711 +2336.298896 +2336.327700 +2336.344384 +2336.360701 +2336.374786 +2336.388972 +2336.405955 +2336.436058 +2336.447880 +2336.464230 +2336.496132 +2336.524370 +2336.541187 +2336.554973 +2336.569825 +2336.586907 +2336.603824 +2336.633361 +2336.649112 +2336.665229 +2336.691802 +2336.710417 +2346.705679 +2346.707011 +2346.709142 +2346.711739 +2347.706077 +2347.707343 +2347.709574 +2347.711905 +2347.713803 +2348.705344 +2348.706109 +2348.707475 +2348.710039 +2348.737445 +2349.706175 +2349.710504 +2349.713002 +2350.710137 +2350.712867 +2351.706140 +2351.707438 +2351.710169 +2351.712467 +2351.720326 +2356.707067 +2356.711363 +2356.806634 +2356.807800 +2356.810197 +2356.907100 +2356.908332 +2357.007300 +2357.008599 +2357.010463 +2357.012794 +2357.107466 +2357.108765 +2357.111263 +2357.207500 +2357.208798 +2357.211496 +2357.307533 +2357.308798 +2357.310963 +2357.313860 +2357.407399 +2357.408665 +2357.411395 +2357.507566 +2357.508898 +2357.511628 +2357.513959 +2357.607466 +2357.608765 +2357.611162 +2357.707566 +2357.708864 +2357.710929 +2357.807532 +2357.808831 +2357.811029 +2357.813493 +2357.907532 +2357.908864 +2357.911062 +2357.914059 +2358.007532 +2358.008797 +2358.010895 +2358.108864 +2358.111761 +2358.207598 +2358.208930 +2358.211661 +2358.215790 +2358.307632 +2358.308997 +2358.407731 +2358.409063 +2358.411594 +2358.507565 +2358.511195 +2358.515657 +2358.607631 +2358.608963 +2358.611261 +2358.614291 +2358.707731 +2358.709030 +2358.711294 +2358.807698 +2358.808963 +2358.811860 +2358.814491 +2358.907465 +2358.908797 +2359.007598 +2359.008896 +2359.011394 +2359.015223 +2359.107731 +2359.109029 +2359.111294 +2359.114191 +2359.207697 +2359.211893 +2359.307697 +2359.308996 +2359.311194 +2359.407264 +2359.410994 +2359.507697 +2359.511227 +2359.515023 +2359.607630 +2359.609029 +2359.611293 +2359.708929 +2359.711560 +2359.714523 +2359.807763 +2359.809095 +2359.811859 +2359.911559 +2360.007663 +2360.008962 +2360.011593 +2360.014357 +2360.107264 +2360.108596 +2360.110727 +2360.115022 +2360.209062 +2360.211992 +2360.309095 +2360.311992 +2360.407696 +2360.410960 +2360.414922 +2360.509061 +2360.511426 +2360.514622 +2360.607763 +2360.611292 +2360.615521 +2360.707796 +2360.709128 +2360.712358 +2360.807696 +2360.809028 +2360.811392 +2360.815388 +2360.907729 +2360.909128 +2361.009161 +2361.011625 +2361.015521 +2361.109161 +2361.207762 +2361.211492 +2361.215321 +2361.307762 +2361.311591 +2361.407795 +2361.411391 +2361.415920 +2361.507762 +2361.511192 +2361.513989 +2361.607695 +2361.609027 +2361.611491 +2361.615787 +2361.709027 +2366.716215 +2366.731266 +2366.738026 +2366.746951 +2366.756541 +2366.773657 +2366.780617 +2366.787943 +2366.789808 +2366.798266 +2366.808655 +2366.819411 +2366.821343 +2366.829934 +2366.849914 +2366.884180 +2366.895002 +2366.906824 +2366.930567 +2366.932465 +2366.943021 +2366.945252 +2366.956408 +2366.965265 +2366.976388 +2366.986211 +2366.996501 +2367.029468 +2367.040590 +2367.052878 +2367.074656 +2367.076787 +2367.098965 +2367.110620 +2367.134829 +2367.146317 +2367.157739 +2367.178552 +2367.188375 +2367.191372 +2367.212385 +2367.223673 +2367.234829 +2367.246084 +2367.268562 +2367.292238 +2367.306557 +2367.315315 +2367.327037 +2367.340024 +2367.343354 +2367.350180 +2367.359704 +2367.372391 +2367.384279 +2367.396600 +2367.442687 +2367.445385 +2367.466131 +2367.478452 +2367.491039 +2367.502095 +2367.513450 +2367.524306 +2367.535495 +2367.546350 +2367.566464 +2367.569461 +2367.579051 +2367.603360 +2367.615514 +2367.629301 +2367.641688 +2367.663933 +2367.694902 +2367.697499 +2367.707589 +2367.718445 +2367.721175 +2367.736493 +2367.755974 +2367.767129 +2367.777619 +2367.787076 +2367.796100 +2367.807556 +2367.829434 +2367.855341 +2367.858538 +2367.869127 +2367.881548 +2367.884279 +2367.894302 +2367.907789 +2367.910153 +2367.919177 +2367.929500 +2367.933296 +2367.943220 +2367.954109 +2367.956873 +2367.965231 +2367.974921 +2367.987209 +2367.990472 +2368.000762 +2368.003926 +2368.015048 +2368.024339 +2368.026703 +2368.035727 +2368.043220 +2368.046450 +2368.055774 +2368.058071 +2368.068295 +2368.070892 +2368.082147 +2368.092737 +2368.096833 +2368.100829 +2368.106889 +2368.114648 +2368.117279 +2368.120276 +2368.128501 +2368.131631 +2368.140389 +2368.144685 +2368.155041 +2368.158404 +2368.167096 +2368.169060 +2368.179550 +2368.183113 +2368.191271 +2368.193869 +2368.202027 +2368.207089 +2368.212916 +2368.218644 +2368.229766 +2368.231997 +2368.235893 +2368.243386 +2368.245750 +2368.256972 +2368.269893 +2368.282813 +2368.285277 +2368.294468 +2368.296866 +2368.308354 +2368.316213 +2368.320875 +2368.323905 +2368.334728 +2368.337558 +2368.347548 +2368.353409 +2368.358171 +2368.367928 +2368.380515 +2368.389640 +2368.394668 +2368.400429 +2368.407921 +2368.411051 +2368.421841 +2368.426702 +2368.439956 +2368.448048 +2368.451211 +2368.460369 +2368.462999 +2368.472124 +2368.476319 +2368.485410 +2368.488208 +2368.498564 +2368.501627 +2368.505857 +2368.511418 +2368.521175 +2368.526869 +2368.531364 +2368.538557 +2368.541221 +2368.545484 +2368.551910 +2368.554774 +2368.565597 +2368.568760 +2368.572323 +2368.579283 +2368.581947 +2368.590871 +2368.594401 +2368.599496 +2368.608221 +2368.612084 +2368.620076 +2368.623039 +2368.627168 +2368.632996 +2368.635727 +2368.640821 +2368.644551 +2368.647948 +2368.651011 +2368.657438 +2368.660635 +2368.671224 +2368.674821 +2368.680282 +2368.683579 +2368.689073 +2368.696566 +2368.701061 +2368.706089 +2368.710185 +2368.720408 +2368.722839 +2368.726236 +2368.733762 +2368.740255 +2368.747348 +2368.750245 +2368.754075 +2368.757538 +2368.760468 +2368.763832 +2368.767162 +2368.773555 +2368.777351 +2368.781980 +2368.784444 +2368.787641 +2368.796998 +2368.810685 +2368.813648 +2368.816679 +2368.823905 +2368.829066 +2368.836892 +2368.839289 +2368.843152 +2368.851344 +2368.854341 +2368.857505 +2368.864664 +2368.867428 +2368.870924 +2368.874754 +2368.878250 +2368.882147 +2368.887774 +2368.890838 +2368.893768 +2368.902360 +2368.904591 +2368.907621 +2368.914914 +2368.917411 +2368.920175 +2368.927235 +2368.930198 +2368.941820 +2368.948314 +2368.955473 +2368.957871 +2368.962100 +2368.969126 +2368.972489 +2368.981214 +2368.988740 +2368.994334 +2368.997731 +2369.002193 +2369.008320 +2369.011917 +2369.022173 +2369.025869 +2369.035160 +2369.038457 +2369.043618 +2369.049412 +2369.062166 +2369.065363 +2369.075753 +2369.079449 +2369.087541 +2369.090904 +2369.100162 +2369.103625 +2369.109685 +2369.116212 +2369.125869 +2369.138490 +2369.141387 +2369.151144 +2369.154374 +2369.164630 +2369.169958 +2369.173921 +2369.178616 +2369.183745 +2369.187408 +2369.193568 +2369.196332 +2369.206289 +2369.208953 +2369.211916 +2369.216645 +2369.220574 +2369.223904 +2369.228600 +2369.233661 +2369.236259 +2369.239123 +2369.248347 +2369.257571 +2369.266462 +2369.275952 +2369.278849 +2369.285143 +2369.290738 +2369.302726 +2369.306455 +2369.311983 +2369.316179 +2369.320341 +2369.325336 +2369.329366 +2369.332562 +2369.345816 +2369.352309 +2369.355772 +2369.366695 +2369.369359 +2369.373421 +2369.382013 +2369.396598 +2369.400561 +2369.409419 +2369.413981 +2369.425636 +2369.433062 +2369.444850 +2369.458003 +2369.462665 +2369.471557 +2369.474653 +2369.484277 +2369.495433 +2369.499961 +2369.510051 +2369.515646 +2369.521939 +2369.530165 +2369.536924 +2369.539955 +2369.543085 +2369.550644 +2369.553641 +2369.563764 +2369.568959 +2369.578450 +2369.583045 +2369.592935 +2369.596132 +2369.606022 +2369.608786 +2369.617211 +2369.620774 +2369.635326 +2369.639289 +2369.648313 +2369.652742 +2369.661733 +2369.664430 +2369.677850 +2369.681080 +2369.690304 +2369.702825 +2369.707420 +2369.716378 +2369.719442 +2369.727600 +2369.730431 +2369.741120 +2369.743684 +2369.755206 +2369.760334 +2369.769025 +2369.773454 +2369.780614 +2369.789971 +2369.794333 +2369.802126 +2369.811883 +2369.815845 +2369.824936 +2369.827767 +2369.839222 +2369.851143 +2369.854074 +2369.865595 +2369.869325 +2369.878083 +2369.881013 +2369.885009 +2369.893234 +2369.907787 +2369.911516 +2369.920740 +2369.926201 +2369.933527 +2369.936458 +2369.948612 +2369.952642 +2369.965629 +2369.975386 +2369.979148 +2369.988872 +2369.993301 +2370.002958 +2370.007620 +2370.016811 +2370.046048 +2370.050910 +2370.060400 +2370.064863 +2370.074819 +2370.087573 +2370.094366 +2370.101759 +2370.105988 +2370.117177 +2370.122072 +2370.131829 +2370.135192 +2370.146481 +2370.160567 +2370.174486 +2370.179281 +2370.189638 +2370.194400 +2370.204423 +2370.208452 +2370.219341 +2370.233094 +2370.236957 +2370.251010 +2370.254206 +2370.263963 +2370.268725 +2370.279814 +2370.292701 +2370.297996 +2370.309018 +2370.323171 +2370.326800 +2370.337456 +2370.341919 +2370.351043 +2370.355239 +2370.367227 +2370.371356 +2370.381546 +2370.395598 +2370.410517 +2370.425535 +2370.429764 +2370.441119 +2370.444949 +2370.457303 +2370.471589 +2370.474553 +2370.485575 +2370.499461 +2370.515179 +2370.530497 +2370.542951 +2370.546647 +2370.556970 +2370.560766 +2370.572221 +2370.575185 +2370.587340 +2370.590470 +2370.605521 +2370.617842 +2370.621039 +2370.633260 +2370.648279 +2370.660733 +2370.664562 +2370.676018 +2370.679847 +2370.691868 +2370.706221 +2370.710017 +2370.723537 +2370.751575 +2370.754639 +2370.767459 +2370.770656 +2370.783377 +2370.797896 +2370.801858 +2370.814446 +2370.826800 +2370.841485 +2370.844715 +2370.857935 +2370.873154 +2370.886573 +2370.890170 +2370.903656 +2370.917476 +2370.933094 +2370.946580 +2370.950243 +2370.961998 +2370.978715 +2370.991036 +2371.006154 +2371.023103 +2371.041085 +2371.066893 +2371.092934 +2371.184475 +2371.198195 +2371.212814 +2371.217376 +2371.229863 +2371.244282 +2371.262397 +2371.303356 +2371.307719 +2371.319840 +2371.333093 +2371.336323 +2371.351508 +2371.365361 +2371.368258 +2371.382077 +2371.396097 +2371.399527 +2371.425201 +2371.441485 +2371.456003 +2371.472121 +2371.485074 +2371.489204 +2371.520139 +2371.535191 +2371.537921 +2371.569323 +2371.584841 +2371.600326 +2371.617242 +2371.632727 +2371.648011 +2371.663363 +2371.679413 +2371.693965 +2372.102290 +2381.706576 +2381.707841 +2381.710039 +2381.712470 +2382.706841 +2382.708207 +2382.710371 +2382.713035 +2382.717564 +2384.707072 +2384.711135 +2385.706139 +2385.706505 +2385.707771 +2385.711933 +2385.714864 +2386.707070 +2386.708402 +2386.711699 +2386.713897 +2386.720823 +2391.706599 +2391.707798 +2391.709996 +2391.712160 +2391.724881 +2391.807432 +2391.808697 +2391.909030 +2391.911527 +2392.007898 +2392.011194 +2392.011727 +2392.108131 +2392.109396 +2392.113958 +2392.208297 +2392.209629 +2392.212260 +2392.214524 +2392.309696 +2392.312459 +2392.314957 +2392.408363 +2392.409729 +2392.414690 +2392.508497 +2392.509795 +2392.512892 +2392.621550 +2392.708463 +2392.709762 +2392.808430 +2392.809728 +2392.812059 +2392.814623 +2392.908563 +2392.909961 +2392.912792 +2393.008529 +2393.009861 +2393.012326 +2393.014956 +2393.108496 +2393.109895 +2393.111926 +2393.114723 +2393.209761 +2393.212192 +2393.215189 +2393.308329 +2393.312658 +2393.316221 +2393.408462 +2393.409761 +2393.412325 +2393.508296 +2393.509528 +2393.512425 +2393.608396 +2393.612092 +2393.614689 +2393.708495 +2393.709827 +2393.712225 +2393.715855 +2393.808462 +2393.809861 +2393.812791 +2393.908429 +2393.909761 +2393.911858 +2393.914522 +2394.008495 +2394.012258 +2394.015954 +2394.108495 +2394.109894 +2394.112291 +2394.208462 +2394.209860 +2394.212491 +2394.215255 +2394.308561 +2394.312790 +2394.408528 +2394.409927 +2394.412158 +2394.415721 +2394.508528 +2394.512124 +2394.516553 +2394.609960 +2394.612624 +2394.616253 +2394.708228 +2394.709493 +2394.712424 +2394.808428 +2394.809793 +2394.812623 +2394.908394 +2394.909726 +2394.913056 +2395.009859 +2395.108494 +2395.109826 +2395.112290 +2395.208494 +2395.209859 +2395.212124 +2395.215687 +2395.308460 +2395.309892 +2395.312523 +2395.319449 +2395.409926 +2395.412356 +2395.416586 +2395.508527 +2395.509892 +2395.512589 +2395.608493 +2395.611990 +2395.615020 +2395.708593 +2395.712156 +2395.716452 +2395.808493 +2395.812789 +2395.816352 +2395.908526 +2395.909858 +2395.912423 +2395.915519 +2396.008460 +2396.009825 +2396.012223 +2396.108293 +2396.109625 +2396.112023 +2396.116285 +2396.208360 +2396.209758 +2396.212222 +2396.214753 +2396.308393 +2396.309791 +2396.311989 +2396.316385 +2396.408426 +2396.409825 +2396.416052 +2396.508459 +2396.509825 +2396.512255 +2396.515918 +2396.608526 +2396.609891 +2396.612122 +2396.708459 +2396.709858 +2396.712155 +2396.716018 +2401.710219 +2401.712250 +2401.723939 +2401.725470 +2401.731165 +2401.733029 +2401.741288 +2401.750745 +2401.752776 +2401.760469 +2401.779550 +2401.789340 +2401.791604 +2401.800329 +2401.810652 +2401.822507 +2401.842154 +2401.853209 +2401.875753 +2401.886076 +2401.896133 +2401.906689 +2401.917611 +2401.929266 +2401.931198 +2401.941088 +2401.943019 +2401.963632 +2401.966596 +2401.974121 +2401.976353 +2401.984911 +2401.995300 +2401.997198 +2402.022973 +2402.043352 +2402.054308 +2402.065064 +2402.067694 +2402.075720 +2402.088074 +2402.110984 +2402.123305 +2402.146682 +2402.159902 +2402.171158 +2402.172989 +2402.208054 +2402.216279 +2402.227335 +2402.237824 +2402.257937 +2402.268427 +2402.270558 +2402.292802 +2402.304091 +2402.319010 +2402.327601 +2402.340255 +2402.350012 +2402.360401 +2402.362966 +2402.371757 +2402.384611 +2402.396865 +2402.421174 +2402.423438 +2402.434960 +2402.437558 +2402.447881 +2402.459802 +2402.470558 +2402.481613 +2402.490471 +2402.492702 +2402.514214 +2402.517178 +2402.528666 +2402.530964 +2402.542153 +2402.545083 +2402.553442 +2402.577184 +2402.579149 +2402.590171 +2402.600794 +2402.612183 +2402.619742 +2402.629366 +2402.632363 +2402.641620 +2402.643718 +2402.654840 +2402.665230 +2402.667727 +2402.678017 +2402.690305 +2402.692502 +2402.707188 +2402.714880 +2402.717377 +2402.741120 +2402.751277 +2402.763898 +2402.778916 +2402.782279 +2402.791170 +2402.793401 +2402.804290 +2402.816944 +2402.828533 +2402.840388 +2402.842719 +2402.852043 +2402.862299 +2402.871024 +2402.885343 +2402.895766 +2402.900561 +2402.906555 +2402.915546 +2402.918509 +2402.928233 +2402.940654 +2402.948579 +2402.956738 +2402.959568 +2402.965063 +2402.971556 +2402.980214 +2402.987474 +2402.989705 +2403.000527 +2403.004124 +2403.013914 +2403.027567 +2403.030864 +2403.040221 +2403.042552 +2403.053508 +2403.056338 +2403.060134 +2403.068093 +2403.073754 +2403.081013 +2403.090038 +2403.094134 +2403.102658 +2403.105889 +2403.113481 +2403.120174 +2403.131530 +2403.133727 +2403.145282 +2403.147747 +2403.158636 +2403.163664 +2403.171756 +2403.174020 +2403.182479 +2403.185309 +2403.194766 +2403.202725 +2403.216411 +2403.224037 +2403.231496 +2403.233960 +2403.244117 +2403.255739 +2403.267160 +2403.269924 +2403.278149 +2403.281013 +2403.293068 +2403.301892 +2403.309718 +2403.320640 +2403.335126 +2403.346581 +2403.350311 +2403.361566 +2403.365229 +2403.372622 +2403.375885 +2403.385442 +2403.387740 +2403.399128 +2403.401759 +2403.406854 +2403.412715 +2403.415579 +2403.425569 +2403.428965 +2403.438356 +2403.441220 +2403.444150 +2403.452042 +2403.456404 +2403.462665 +2403.468825 +2403.471822 +2403.479448 +2403.485975 +2403.491969 +2403.494633 +2403.500027 +2403.507953 +2403.511682 +2403.518276 +2403.520740 +2403.523138 +2403.530330 +2403.532894 +2403.537556 +2403.547213 +2403.556571 +2403.558968 +2403.564929 +2403.569891 +2403.572555 +2403.581346 +2403.585209 +2403.593334 +2403.595965 +2403.605389 +2403.607653 +2403.610317 +2403.613913 +2403.631562 +2403.634160 +2403.636824 +2403.644216 +2403.647014 +2403.650677 +2403.658868 +2403.662332 +2403.666228 +2403.670257 +2403.674120 +2403.677583 +2403.681279 +2403.684776 +2403.693700 +2403.698762 +2403.704722 +2403.714946 +2403.725868 +2403.728299 +2403.731329 +2403.738455 +2403.740986 +2403.747180 +2403.752908 +2403.764496 +2403.766694 +2403.769857 +2403.778748 +2403.781812 +2403.792568 +2403.794799 +2403.804622 +2403.806920 +2403.809351 +2403.813580 +2403.818675 +2403.821506 +2403.823970 +2403.827666 +2403.833161 +2403.836024 +2403.840919 +2403.851542 +2403.855938 +2403.859168 +2403.863164 +2403.868359 +2403.876317 +2403.885808 +2403.891702 +2403.898129 +2403.901659 +2403.908685 +2403.911282 +2403.917110 +2403.923603 +2403.926267 +2403.931995 +2403.935292 +2403.939521 +2403.945215 +2403.950077 +2403.955605 +2403.959234 +2403.961932 +2403.972787 +2403.985708 +2403.989671 +2404.002091 +2404.011349 +2404.015112 +2404.019308 +2404.024769 +2404.028798 +2404.033693 +2404.038622 +2404.043184 +2404.048012 +2404.051842 +2404.054506 +2404.065461 +2404.076284 +2404.079680 +2404.088005 +2404.091335 +2404.101692 +2404.109817 +2404.115411 +2404.119174 +2404.130496 +2404.134692 +2404.141519 +2404.145381 +2404.155138 +2404.157336 +2404.169158 +2404.172521 +2404.183277 +2404.191535 +2404.197063 +2404.210949 +2404.213646 +2404.219141 +2404.226200 +2404.229630 +2404.239154 +2404.244782 +2404.253040 +2404.256970 +2404.265827 +2404.268392 +2404.271522 +2404.276850 +2404.281345 +2404.289704 +2404.295964 +2404.303956 +2404.311315 +2404.328665 +2404.338688 +2404.347146 +2404.352641 +2404.355737 +2404.370090 +2404.379380 +2404.382278 +2404.388005 +2404.394365 +2404.405721 +2404.408218 +2404.411648 +2404.421072 +2404.438954 +2404.449710 +2404.454339 +2404.462897 +2404.466593 +2404.476916 +2404.481445 +2404.489137 +2404.492367 +2404.503490 +2404.507519 +2404.517575 +2404.521039 +2404.531162 +2404.534625 +2404.545681 +2404.549810 +2404.558967 +2404.562031 +2404.574252 +2404.589237 +2404.604022 +2404.609317 +2404.618674 +2404.632893 +2404.636989 +2404.650909 +2404.661764 +2404.678315 +2404.681145 +2404.691035 +2404.695364 +2404.707319 +2404.724202 +2404.733493 +2404.736623 +2404.739520 +2404.749010 +2404.752907 +2404.757602 +2404.762297 +2404.764628 +2404.777549 +2404.781644 +2404.792700 +2404.795963 +2404.806853 +2404.810216 +2404.819040 +2404.822437 +2404.826000 +2404.834758 +2404.849044 +2404.852906 +2404.863662 +2404.877648 +2404.881478 +2404.892866 +2404.905953 +2404.920372 +2404.924368 +2404.934858 +2404.955137 +2404.964295 +2404.968757 +2404.992600 +2405.004455 +2405.014744 +2405.022670 +2405.025800 +2405.035957 +2405.048777 +2405.052873 +2405.063329 +2405.077149 +2405.092034 +2405.106652 +2405.110981 +2405.120405 +2405.131960 +2405.166659 +2405.181145 +2405.193499 +2405.206086 +2405.210815 +2405.221304 +2405.233392 +2405.236855 +2405.249010 +2405.252973 +2405.262829 +2405.286739 +2405.321338 +2405.326532 +2405.335257 +2405.340818 +2405.351774 +2405.355637 +2405.367125 +2405.370388 +2405.384008 +2405.396163 +2405.400225 +2405.412813 +2405.426632 +2405.441517 +2405.444881 +2405.458101 +2405.471887 +2405.488004 +2405.515243 +2405.527864 +2405.543482 +2405.560598 +2405.574451 +2405.588370 +2405.602689 +2405.605853 +2405.618107 +2405.632859 +2405.647378 +2405.650475 +2405.664561 +2405.678247 +2405.692133 +2405.721537 +2405.736455 +2405.751007 +2405.754371 +2405.765127 +2405.767857 +2405.781044 +2405.784441 +2405.794897 +2405.812513 +2405.826732 +2405.841916 +2405.855936 +2405.859166 +2405.871886 +2405.875649 +2405.888703 +2405.903222 +2405.919439 +2405.932559 +2405.936122 +2405.949908 +2405.963195 +2405.966392 +2405.980544 +2405.998260 +2406.012446 +2406.041417 +2406.054404 +2406.057168 +2406.071786 +2406.101856 +2406.149975 +2406.161230 +2406.179479 +2406.192898 +2406.208549 +2406.223401 +2406.239552 +2406.254370 +2406.268789 +2406.279911 +2406.284673 +2406.296395 +2406.327930 +2406.345379 +2406.377480 +2406.391733 +2406.408649 +2406.422535 +2406.439718 +2406.456634 +2406.470487 +2406.488136 +2406.503954 +2406.519005 +2406.531926 +2406.563927 +2406.579545 +2406.594896 +2406.607850 +2406.611246 +2406.629761 +2406.669555 +2406.686571 +2406.699525 +2416.706075 +2416.707340 +2416.712202 +2417.706773 +2417.708105 +2417.710036 +2417.713067 +2417.715464 +2418.706772 +2418.708071 +2418.711268 +2418.713365 +2418.728251 +2419.708136 +2419.712465 +2419.714397 +2420.706803 +2420.708135 +2420.711266 +2420.713530 +2421.706736 +2421.711165 +2421.713362 +2426.706098 +2426.707430 +2426.709561 +2426.711926 +2426.723847 +2426.806897 +2426.808063 +2426.907297 +2426.908662 +2426.910893 +2427.008862 +2427.013157 +2427.107763 +2427.109128 +2427.111492 +2427.113524 +2427.207896 +2427.209261 +2427.211692 +2427.213823 +2427.307962 +2427.309261 +2427.311958 +2427.407929 +2427.409261 +2427.411658 +2427.507895 +2427.509261 +2427.512025 +2427.607895 +2427.609194 +2427.611458 +2427.616220 +2427.708028 +2427.709327 +2427.711358 +2427.714555 +2427.807962 +2427.809260 +2427.811458 +2427.816487 +2427.909327 +2427.912058 +2428.007928 +2428.009260 +2428.011625 +2428.016353 +2428.107995 +2428.109293 +2428.112091 +2428.207995 +2428.209427 +2428.211991 +2428.309327 +2428.311924 +2428.314555 +2428.407928 +2428.409227 +2428.411990 +2428.415254 +2428.507894 +2428.509293 +2428.511857 +2428.608028 +2428.609459 +2428.611890 +2428.615120 +2428.707928 +2428.709293 +2428.712157 +2428.807994 +2428.809326 +2428.812157 +2428.816852 +2428.907927 +2428.909359 +2428.911923 +2428.915886 +2429.008027 +2429.009326 +2429.011790 +2429.108060 +2429.112123 +2429.207927 +2429.209292 +2429.211424 +2429.214787 +2429.309192 +2429.412489 +2429.428240 +2429.507927 +2429.514254 +2429.612189 +2429.707993 +2429.709292 +2429.716152 +2429.809325 +2429.812422 +2429.907893 +2429.911822 +2430.007960 +2430.009358 +2430.011623 +2430.015119 +2430.108026 +2430.111856 +2430.114619 +2430.209291 +2430.211622 +2430.215319 +2430.307959 +2430.309258 +2430.311622 +2430.316451 +2430.408059 +2430.409391 +2430.507992 +2430.511655 +2430.515185 +2430.607959 +2430.612321 +2430.615984 +2430.707892 +2430.709191 +2430.711455 +2430.714153 +2430.807892 +2430.811588 +2430.814252 +2430.907859 +2430.909124 +2430.912321 +2431.007992 +2431.012321 +2431.107892 +2431.116017 +2431.207892 +2431.215517 +2431.307892 +2431.312321 +2431.407991 +2431.409357 +2431.411555 +2431.414485 +2431.507925 +2431.509257 +2431.511854 +2431.514718 +2431.609290 +2431.612054 +2431.615550 +2431.711887 +2431.716483 +2436.706554 +2436.712848 +2436.717044 +2436.723770 +2436.730897 +2436.739155 +2436.747713 +2436.756771 +2436.760001 +2436.767227 +2436.774586 +2436.783178 +2436.803357 +2436.813547 +2436.824736 +2436.834626 +2436.854773 +2436.866894 +2436.876850 +2436.878915 +2436.887373 +2436.889438 +2436.898129 +2436.900527 +2436.909418 +2436.911482 +2436.923970 +2436.933427 +2436.944649 +2436.955638 +2436.958169 +2436.967093 +2436.978049 +2436.987706 +2436.989904 +2436.999794 +2437.009884 +2437.016211 +2437.025935 +2437.028365 +2437.037090 +2437.038988 +2437.049378 +2437.059901 +2437.062465 +2437.071889 +2437.081446 +2437.091769 +2437.093767 +2437.103524 +2437.127100 +2437.137922 +2437.140487 +2437.149244 +2437.160267 +2437.174786 +2437.185841 +2437.197163 +2437.208785 +2437.218975 +2437.230530 +2437.233693 +2437.241885 +2437.243783 +2437.253673 +2437.257070 +2437.264729 +2437.280480 +2437.290103 +2437.300593 +2437.310516 +2437.312947 +2437.324336 +2437.337656 +2437.357869 +2437.366460 +2437.377483 +2437.380979 +2437.390037 +2437.401026 +2437.405987 +2437.419208 +2437.428532 +2437.438222 +2437.448378 +2437.450709 +2437.458735 +2437.468958 +2437.472687 +2437.482411 +2437.492501 +2437.503090 +2437.515112 +2437.518275 +2437.534659 +2437.541752 +2437.544482 +2437.553706 +2437.566460 +2437.569124 +2437.578415 +2437.581079 +2437.591668 +2437.603323 +2437.605654 +2437.626300 +2437.636623 +2437.639587 +2437.650143 +2437.660333 +2437.673819 +2437.687006 +2437.694732 +2437.699927 +2437.711115 +2437.722304 +2437.725534 +2437.734259 +2437.737422 +2437.746880 +2437.757569 +2437.766626 +2437.777016 +2437.787239 +2437.796297 +2437.805787 +2437.814945 +2437.817908 +2437.827466 +2437.838754 +2437.861198 +2437.871488 +2437.882510 +2437.887938 +2437.906653 +2437.916809 +2437.924502 +2437.933193 +2437.935491 +2437.946014 +2437.958967 +2437.969690 +2437.980845 +2437.992334 +2438.003656 +2438.007619 +2438.014212 +2438.018474 +2438.024768 +2438.034325 +2438.038821 +2438.047146 +2438.056037 +2438.058734 +2438.069590 +2438.072820 +2438.081478 +2438.084209 +2438.094698 +2438.099527 +2438.105854 +2438.119240 +2438.132727 +2438.135557 +2438.146846 +2438.157901 +2438.160599 +2438.171954 +2438.183076 +2438.185840 +2438.193632 +2438.198661 +2438.209250 +2438.212314 +2438.221871 +2438.225600 +2438.235124 +2438.237555 +2438.250709 +2438.253306 +2438.256003 +2438.263862 +2438.266726 +2438.275717 +2438.278547 +2438.286839 +2438.289636 +2438.292700 +2438.300825 +2438.304222 +2438.312913 +2438.317608 +2438.322304 +2438.325334 +2438.332493 +2438.335590 +2438.345380 +2438.347612 +2438.352340 +2438.357435 +2438.359833 +2438.367558 +2438.370655 +2438.381311 +2438.384508 +2438.396862 +2438.406220 +2438.409450 +2438.419306 +2438.431627 +2438.434558 +2438.444148 +2438.446879 +2438.456869 +2438.459133 +2438.469889 +2438.473219 +2438.486040 +2438.489603 +2438.496296 +2438.499293 +2438.504321 +2438.507918 +2438.512447 +2438.520305 +2438.532526 +2438.541617 +2438.548144 +2438.551641 +2438.554438 +2438.562230 +2438.565926 +2438.573985 +2438.576383 +2438.587971 +2438.591301 +2438.599959 +2438.602490 +2438.613112 +2438.616476 +2438.622037 +2438.626366 +2438.631727 +2438.638221 +2438.646346 +2438.649210 +2438.653405 +2438.659233 +2438.661631 +2438.664628 +2438.673785 +2438.676116 +2438.684774 +2438.687571 +2438.695930 +2438.699726 +2438.707451 +2438.710515 +2438.715244 +2438.720838 +2438.723835 +2438.735923 +2438.740285 +2438.743748 +2438.746612 +2438.751807 +2438.757934 +2438.762030 +2438.765626 +2438.772986 +2438.775616 +2438.778780 +2438.785107 +2438.788637 +2438.793998 +2438.797961 +2438.802423 +2438.811014 +2438.813512 +2438.820771 +2438.824601 +2438.828563 +2438.832726 +2438.837821 +2438.841384 +2438.849576 +2438.853871 +2438.860798 +2438.869822 +2438.873185 +2438.878114 +2438.880944 +2438.891634 +2438.901590 +2438.904920 +2438.909616 +2438.914111 +2438.918407 +2438.925899 +2438.936755 +2438.948843 +2438.951207 +2438.954737 +2438.962396 +2438.965127 +2438.973985 +2438.976882 +2438.984940 +2438.987904 +2438.997794 +2439.000758 +2439.004621 +2439.011547 +2439.020538 +2439.024434 +2439.027098 +2439.032593 +2439.038520 +2439.041950 +2439.047411 +2439.051607 +2439.055103 +2439.062896 +2439.065293 +2439.076715 +2439.079679 +2439.090002 +2439.092366 +2439.100192 +2439.103621 +2439.106785 +2439.116342 +2439.118806 +2439.125100 +2439.132592 +2439.135456 +2439.143581 +2439.146712 +2439.151507 +2439.157967 +2439.163295 +2439.167890 +2439.176149 +2439.184474 +2439.188337 +2439.195296 +2439.200857 +2439.211081 +2439.215743 +2439.222203 +2439.225733 +2439.233525 +2439.236022 +2439.238686 +2439.242083 +2439.250141 +2439.252739 +2439.256402 +2439.263328 +2439.275017 +2439.279013 +2439.288670 +2439.292166 +2439.303055 +2439.316442 +2439.320305 +2439.330594 +2439.334757 +2439.344747 +2439.348776 +2439.357367 +2439.360198 +2439.371220 +2439.386205 +2439.390934 +2439.396295 +2439.398893 +2439.402556 +2439.411280 +2439.415776 +2439.425666 +2439.430028 +2439.438087 +2439.452306 +2439.454670 +2439.457734 +2439.467557 +2439.471320 +2439.479479 +2439.482509 +2439.493931 +2439.497560 +2439.507051 +2439.510847 +2439.519905 +2439.525766 +2439.534290 +2439.546611 +2439.551706 +2439.561330 +2439.565093 +2439.574483 +2439.578047 +2439.589901 +2439.592932 +2439.602755 +2439.605619 +2439.616708 +2439.630028 +2439.633857 +2439.658466 +2439.662629 +2439.671353 +2439.674983 +2439.686138 +2439.688603 +2439.691633 +2439.701823 +2439.714876 +2439.718473 +2439.728496 +2439.731626 +2439.742482 +2439.745512 +2439.756035 +2439.769122 +2439.783674 +2439.792332 +2439.797660 +2439.800824 +2439.810547 +2439.815442 +2439.824600 +2439.829462 +2439.839851 +2439.843747 +2439.853904 +2439.858399 +2439.871986 +2439.881776 +2439.885472 +2439.896561 +2439.899758 +2439.906018 +2439.913344 +2439.917074 +2439.926964 +2439.930460 +2439.941949 +2439.945745 +2439.956135 +2439.960397 +2439.970187 +2439.974550 +2439.984273 +2439.997227 +2440.001256 +2440.032658 +2440.043780 +2440.048409 +2440.055802 +2440.060330 +2440.070420 +2440.085938 +2440.091366 +2440.099924 +2440.103521 +2440.113744 +2440.117973 +2440.128629 +2440.132325 +2440.142149 +2440.145279 +2440.157766 +2440.162162 +2440.173184 +2440.177846 +2440.188402 +2440.191865 +2440.203687 +2440.217640 +2440.221203 +2440.231492 +2440.237853 +2440.247343 +2440.250806 +2440.263127 +2440.267157 +2440.275648 +2440.279811 +2440.291299 +2440.296594 +2440.307183 +2440.310080 +2440.324100 +2440.327030 +2440.351406 +2440.355668 +2440.367723 +2440.386504 +2440.396228 +2440.399957 +2440.411812 +2440.415542 +2440.427396 +2440.430460 +2440.446011 +2440.455468 +2440.469021 +2440.485705 +2440.490067 +2440.501322 +2440.505385 +2440.517306 +2440.532591 +2440.546610 +2440.561129 +2440.578245 +2440.591865 +2440.604686 +2440.609381 +2440.622601 +2440.626364 +2440.636953 +2440.653537 +2440.666857 +2440.671818 +2440.683373 +2440.695595 +2440.727296 +2440.730127 +2440.742215 +2440.745578 +2440.772917 +2440.788768 +2440.805518 +2440.819770 +2440.833190 +2440.850506 +2440.865391 +2440.882607 +2440.895128 +2440.898924 +2440.910746 +2440.928728 +2440.942647 +2440.956933 +2440.960463 +2440.974582 +2440.990300 +2441.005951 +2441.020436 +2441.051605 +2441.067156 +2441.082474 +2441.097292 +2441.114608 +2441.127595 +2441.143813 +2441.159497 +2441.172584 +2441.186869 +2441.213210 +2441.217805 +2441.247675 +2441.260229 +2441.275947 +2441.291132 +2441.306683 +2441.324132 +2441.339383 +2441.351738 +2441.384072 +2441.400922 +2441.416207 +2441.419636 +2441.433190 +2441.449207 +2441.461927 +2441.477545 +2441.481275 +2441.494029 +2441.512377 +2441.527562 +2441.544312 +2441.558897 +2441.576613 +2441.591431 +2441.608447 +2441.622600 +2441.639217 +2441.654601 +2441.671851 +2441.686669 +2451.705807 +2451.707239 +2451.709570 +2451.712167 +2452.706205 +2452.707537 +2452.709569 +2452.712299 +2452.714164 +2452.722422 +2453.710666 +2454.706336 +2454.707735 +2454.710599 +2454.713196 +2455.705703 +2455.707001 +2455.712463 +2455.714660 +2456.706135 +2456.707400 +2456.710264 +2461.706962 +2461.710059 +2461.806463 +2461.807695 +2461.814821 +2461.906995 +2461.908194 +2461.910725 +2461.913389 +2461.916985 +2462.007262 +2462.008594 +2462.013122 +2462.107428 +2462.108760 +2462.111391 +2462.208793 +2462.211590 +2462.307561 +2462.308860 +2462.311823 +2462.313988 +2462.408860 +2462.411890 +2462.510991 +2462.511124 +2462.607361 +2462.608759 +2462.611390 +2462.708659 +2462.711523 +2462.807527 +2462.808859 +2462.811656 +2462.814187 +2462.907594 +2462.908892 +2462.911490 +2463.011423 +2463.108925 +2463.111989 +2463.207660 +2463.208892 +2463.211123 +2463.214087 +2463.308992 +2463.311523 +2463.407626 +2463.408958 +2463.411256 +2463.507660 +2463.509025 +2463.511556 +2463.515918 +2463.611889 +2463.707693 +2463.711356 +2463.809025 +2463.811955 +2463.907659 +2463.909058 +2463.911555 +2464.006727 +2464.011056 +2464.014885 +2464.107359 +2464.108625 +2464.111156 +2464.113820 +2464.207459 +2464.208725 +2464.211622 +2464.215584 +2464.307559 +2464.311455 +2464.314718 +2464.409124 +2464.412221 +2464.507692 +2464.512187 +2464.607659 +2464.609057 +2464.611655 +2464.614352 +2464.707692 +2464.709190 +2464.712287 +2464.807692 +2464.808990 +2464.811488 +2464.815950 +2464.907692 +2464.909057 +2464.911488 +2465.007358 +2465.008657 +2465.011521 +2465.015850 +2465.107392 +2465.108790 +2465.111587 +2465.207625 +2465.208990 +2465.211987 +2465.307591 +2465.311487 +2465.407691 +2465.415017 +2465.507758 +2465.509156 +2465.512120 +2465.515583 +2465.607724 +2465.609089 +2465.611454 +2465.615783 +2465.707791 +2465.709123 +2465.712553 +2465.807757 +2465.809123 +2465.907757 +2465.911354 +2465.913185 +2465.914783 +2466.007790 +2466.009189 +2466.011786 +2466.014650 +2466.107690 +2466.109022 +2466.111420 +2466.114184 +2466.207490 +2466.208856 +2466.211486 +2466.307624 +2466.308989 +2466.311187 +2466.407790 +2466.409089 +2466.414949 +2466.507757 +2466.514816 +2466.607756 +2466.609155 +2466.611653 +2466.614749 +2466.707690 +2466.709088 +2466.711286 +2466.714516 +2470.472621 +2471.705653 +2471.706886 +2471.709183 +2471.716309 +2471.717741 +2471.723236 +2471.725001 +2471.730628 +2471.738587 +2471.746446 +2471.748178 +2471.756436 +2471.764661 +2471.776316 +2471.784475 +2471.793732 +2471.804055 +2471.806086 +2471.815277 +2471.826766 +2471.836389 +2471.838487 +2471.848377 +2471.859233 +2471.862097 +2471.870555 +2471.880012 +2471.881910 +2471.892566 +2471.902257 +2471.912813 +2471.915044 +2471.924301 +2471.927032 +2471.936489 +2471.947411 +2471.958034 +2471.968590 +2471.971188 +2471.980412 +2471.988537 +2471.998660 +2472.009916 +2472.012713 +2472.021038 +2472.031827 +2472.042250 +2472.053439 +2472.061131 +2472.072053 +2472.083309 +2472.085440 +2472.095430 +2472.097461 +2472.107651 +2472.110149 +2472.120571 +2472.131494 +2472.142783 +2472.145979 +2472.153605 +2472.163695 +2472.179179 +2472.181144 +2472.191101 +2472.202323 +2472.212646 +2472.223735 +2472.226465 +2472.235157 +2472.245946 +2472.257867 +2472.269189 +2472.277348 +2472.287138 +2472.299326 +2472.311713 +2472.323035 +2472.325866 +2472.336855 +2472.348177 +2472.358000 +2472.364461 +2472.375117 +2472.377847 +2472.387937 +2472.399592 +2472.412646 +2472.422836 +2472.434724 +2472.437587 +2472.448144 +2472.458933 +2472.470421 +2472.481976 +2472.494297 +2472.507584 +2472.516142 +2472.531660 +2472.545013 +2472.547944 +2472.559166 +2472.570121 +2472.572819 +2472.586771 +2472.591933 +2472.612745 +2472.627930 +2472.634857 +2472.640951 +2472.653904 +2472.667324 +2472.678280 +2472.689169 +2472.699159 +2472.708183 +2472.719971 +2472.722769 +2472.734324 +2472.740784 +2472.747144 +2472.759066 +2472.761663 +2472.771786 +2472.781443 +2472.802888 +2472.813145 +2472.817341 +2472.826531 +2472.836621 +2472.841650 +2472.849542 +2472.870188 +2472.875516 +2472.885672 +2472.889402 +2472.897127 +2472.900624 +2472.910114 +2472.920404 +2472.923035 +2472.932825 +2472.935422 +2472.944613 +2472.955735 +2472.966125 +2472.970621 +2472.983374 +2472.995496 +2473.004953 +2473.017107 +2473.021103 +2473.030261 +2473.033990 +2473.043081 +2473.053238 +2473.056401 +2473.066425 +2473.070221 +2473.079978 +2473.084107 +2473.093864 +2473.107284 +2473.119871 +2473.131726 +2473.134556 +2473.145679 +2473.149375 +2473.158466 +2473.161130 +2473.171320 +2473.183541 +2473.193731 +2473.203920 +2473.207717 +2473.214143 +2473.217540 +2473.229661 +2473.239318 +2473.242615 +2473.252305 +2473.255569 +2473.263028 +2473.273917 +2473.284440 +2473.294230 +2473.306151 +2473.309082 +2473.314943 +2473.320970 +2473.331226 +2473.334756 +2473.340783 +2473.345512 +2473.354536 +2473.361762 +2473.373884 +2473.376314 +2473.382575 +2473.388036 +2473.392132 +2473.401589 +2473.406118 +2473.414909 +2473.417540 +2473.427263 +2473.429828 +2473.438286 +2473.441649 +2473.446444 +2473.451173 +2473.453570 +2473.464027 +2473.466291 +2473.469987 +2473.478279 +2473.480910 +2473.484273 +2473.490966 +2473.493730 +2473.502222 +2473.505419 +2473.514443 +2473.526864 +2473.529628 +2473.539151 +2473.542348 +2473.548509 +2473.551772 +2473.554703 +2473.565192 +2473.568089 +2473.572551 +2473.578112 +2473.580976 +2473.586338 +2473.590433 +2473.594130 +2473.602921 +2473.606018 +2473.614210 +2473.616740 +2473.620104 +2473.628762 +2473.631193 +2473.644413 +2473.647243 +2473.655235 +2473.658232 +2473.662028 +2473.669354 +2473.672318 +2473.677213 +2473.682774 +2473.685971 +2473.692098 +2473.695695 +2473.707450 +2473.710380 +2473.721136 +2473.724033 +2473.732192 +2473.734556 +2473.742714 +2473.747576 +2473.751073 +2473.758465 +2473.761029 +2473.763893 +2473.772984 +2473.775948 +2473.780510 +2473.786204 +2473.789101 +2473.798292 +2473.811212 +2473.815541 +2473.820770 +2473.824599 +2473.828395 +2473.835188 +2473.837786 +2473.842181 +2473.850673 +2473.860763 +2473.863327 +2473.873184 +2473.876281 +2473.881575 +2473.885438 +2473.888202 +2473.893364 +2473.897326 +2473.904919 +2473.910047 +2473.912611 +2473.917972 +2473.924366 +2473.934023 +2473.939018 +2473.941882 +2473.946444 +2473.952937 +2473.956334 +2473.960829 +2473.966157 +2473.969454 +2473.974449 +2473.980676 +2473.984206 +2473.998425 +2474.004119 +2474.009447 +2474.012544 +2474.016940 +2474.024532 +2474.027796 +2474.032724 +2474.038152 +2474.052438 +2474.056334 +2474.065691 +2474.069054 +2474.073683 +2474.079943 +2474.083040 +2474.092231 +2474.095628 +2474.106317 +2474.108881 +2474.111645 +2474.119604 +2474.127463 +2474.134655 +2474.138318 +2474.146477 +2474.152537 +2474.160363 +2474.163060 +2474.167056 +2474.173683 +2474.182940 +2474.188668 +2474.192331 +2474.203087 +2474.221069 +2474.231425 +2474.234356 +2474.238318 +2474.246310 +2474.254236 +2474.259597 +2474.264092 +2474.271252 +2474.274682 +2474.278445 +2474.288035 +2474.291798 +2474.297692 +2474.302654 +2474.305884 +2474.324665 +2474.330692 +2474.342048 +2474.356600 +2474.360329 +2474.368288 +2474.371252 +2474.375115 +2474.384672 +2474.389201 +2474.399091 +2474.403586 +2474.413776 +2474.417372 +2474.427595 +2474.440749 +2474.455767 +2474.458631 +2474.463859 +2474.469487 +2474.473250 +2474.483473 +2474.487269 +2474.497226 +2474.503286 +2474.510146 +2474.513143 +2474.516873 +2474.524432 +2474.528062 +2474.532657 +2474.539483 +2474.543979 +2474.549174 +2474.554435 +2474.568854 +2474.573350 +2474.586337 +2474.598857 +2474.602620 +2474.611278 +2474.614142 +2474.626530 +2474.640582 +2474.654435 +2474.668721 +2474.682174 +2474.695461 +2474.708481 +2474.711578 +2474.715307 +2474.724565 +2474.728994 +2474.738584 +2474.742980 +2474.752903 +2474.757132 +2474.768055 +2474.771751 +2474.780809 +2474.784738 +2474.795794 +2474.800156 +2474.810545 +2474.814442 +2474.825264 +2474.829227 +2474.841082 +2474.844178 +2474.854635 +2474.859230 +2474.870152 +2474.884771 +2474.898524 +2474.914009 +2474.917572 +2474.928228 +2474.944012 +2474.947642 +2474.958564 +2474.962027 +2474.974881 +2474.978044 +2474.988234 +2474.991897 +2475.003286 +2475.007482 +2475.016706 +2475.020369 +2475.032490 +2475.036686 +2475.047375 +2475.051338 +2475.061994 +2475.065290 +2475.077978 +2475.081108 +2475.095194 +2475.106449 +2475.110512 +2475.123932 +2475.137052 +2475.140415 +2475.153369 +2475.166756 +2475.169952 +2475.182440 +2475.196326 +2475.200222 +2475.211644 +2475.215407 +2475.225463 +2475.228893 +2475.244378 +2475.256133 +2475.270319 +2475.274148 +2475.285304 +2475.289399 +2475.300855 +2475.304151 +2475.318470 +2475.332989 +2475.346376 +2475.350605 +2475.377944 +2475.389133 +2475.393695 +2475.406016 +2475.419636 +2475.435786 +2475.438750 +2475.452836 +2475.467921 +2475.484171 +2475.496958 +2475.500288 +2475.514574 +2475.527894 +2475.530625 +2475.545476 +2475.557698 +2475.562360 +2475.576945 +2475.591364 +2475.602952 +2475.607215 +2475.620235 +2475.636119 +2475.652403 +2475.682972 +2475.693895 +2475.700155 +2475.710578 +2475.729126 +2475.742646 +2475.757664 +2475.772150 +2475.784304 +2475.797791 +2475.815939 +2475.831190 +2475.896858 +2475.913242 +2475.925962 +2475.953601 +2475.969019 +2475.980574 +2475.983305 +2475.997224 +2476.029159 +2476.043145 +2476.060394 +2476.091763 +2476.122699 +2476.137417 +2476.154900 +2476.169285 +2476.183338 +2476.199122 +2476.213608 +2476.228726 +2476.241680 +2476.256165 +2476.271583 +2476.286335 +2476.301853 +2476.314174 +2476.329059 +2476.343578 +2476.357364 +2476.372149 +2476.402519 +2476.418403 +2476.434187 +2476.448572 +2476.464190 +2476.480074 +2476.495226 +2476.510610 +2476.542478 +2476.636951 +2476.673647 +2476.685902 +2476.701886 +2486.706238 +2486.707503 +2486.709435 +2486.711732 +2486.713730 +2486.719824 +2487.707869 +2487.710732 +2487.713163 +2487.721322 +2488.706635 +2488.707901 +2488.710931 +2488.713695 +2488.724751 +2489.706468 +2489.707767 +2489.711263 +2489.713761 +2490.706733 +2490.708032 +2490.710430 +2490.713327 +2490.721552 +2491.706732 +2491.708064 +2491.711294 +2491.713825 +2496.706361 +2496.707626 +2496.710557 +2496.712488 +2496.714853 +2496.726208 +2496.807027 +2496.808259 +2496.810390 +2496.818848 +2496.907526 +2496.911089 +2497.007793 +2497.009158 +2497.011422 +2497.107959 +2497.114086 +2497.208059 +2497.209324 +2497.213720 +2497.308125 +2497.309524 +2497.315451 +2497.408125 +2497.409424 +2497.411555 +2497.413753 +2497.508092 +2497.509424 +2497.511722 +2497.514119 +2497.608092 +2497.609457 +2497.614685 +2497.708225 +2497.712054 +2497.808291 +2497.809657 +2497.815584 +2497.908125 +2497.909590 +2497.912387 +2498.008158 +2498.009490 +2498.011821 +2498.015151 +2498.108158 +2498.109523 +2498.111854 +2498.115750 +2498.208158 +2498.209490 +2498.216683 +2498.308191 +2498.309656 +2498.408224 +2498.409589 +2498.415950 +2498.508257 +2498.509656 +2498.512620 +2498.608257 +2498.609656 +2498.612420 +2498.708257 +2498.709622 +2498.712120 +2498.714651 +2498.808190 +2498.812087 +2498.816549 +2498.908257 +2498.909656 +2498.912453 +2498.915783 +2499.008157 +2499.009489 +2499.011986 +2499.109522 +2499.112819 +2499.208157 +2499.209489 +2499.211886 +2499.216016 +2499.308123 +2499.312253 +2499.315383 +2499.408157 +2499.409522 +2499.411886 +2499.415816 +2499.508156 +2499.509522 +2499.515682 +2499.608223 +2499.609588 +2499.612286 +2499.615616 +2499.708190 +2499.709455 +2499.712352 +2499.808156 +2499.809588 +2499.812219 +2499.816181 +2499.908156 +2499.909521 +2499.911952 +2499.915482 +2500.008256 +2500.011886 +2500.012318 +2500.015882 +2500.108222 +2500.109554 +2500.115948 +2500.208222 +2500.209621 +2500.215448 +2500.308189 +2500.311885 +2500.315681 +2500.408189 +2500.409587 +2500.412218 +2500.415581 +2500.508255 +2500.512651 +2500.608189 +2500.609554 +2500.612051 +2500.708155 +2500.711685 +2500.715781 +2500.808188 +2500.809554 +2500.814915 +2500.909554 +2501.008188 +2501.009653 +2501.011885 +2501.015414 +2501.108288 +2501.109620 +2501.112251 +2501.115115 +2501.208221 +2501.209553 +2501.211918 +2501.214682 +2501.308255 +2501.312251 +2501.315181 +2501.408288 +2501.409620 +2501.412650 +2501.416147 +2501.508188 +2501.509586 +2501.516446 +2501.608188 +2501.611817 +2501.614248 +2501.708154 +2501.709520 +2501.712283 +2506.707417 +2506.710280 +2506.716774 +2506.718439 +2506.723334 +2506.724833 +2506.739052 +2506.746910 +2506.748675 +2506.761862 +2506.771286 +2506.773883 +2506.782775 +2506.789235 +2506.791066 +2506.801789 +2506.814210 +2506.821636 +2506.823534 +2506.834390 +2506.843547 +2506.845845 +2506.853038 +2506.854802 +2506.866391 +2506.876214 +2506.878479 +2506.887536 +2506.896927 +2506.907117 +2506.913644 +2506.916041 +2506.923500 +2506.925099 +2506.935055 +2506.936787 +2506.949008 +2506.952538 +2506.969288 +2506.978379 +2506.984006 +2506.993996 +2507.004153 +2507.012977 +2507.015375 +2507.024999 +2507.033257 +2507.036854 +2507.044579 +2507.063494 +2507.073517 +2507.075648 +2507.086138 +2507.088835 +2507.099890 +2507.110280 +2507.112112 +2507.124932 +2507.131525 +2507.141915 +2507.144246 +2507.154869 +2507.160430 +2507.169188 +2507.180610 +2507.189934 +2507.192331 +2507.201555 +2507.207350 +2507.215042 +2507.224033 +2507.226664 +2507.236454 +2507.239950 +2507.246410 +2507.257533 +2507.264992 +2507.276114 +2507.278445 +2507.287236 +2507.296027 +2507.299258 +2507.306217 +2507.315874 +2507.318272 +2507.327662 +2507.337619 +2507.363959 +2507.366490 +2507.376847 +2507.388368 +2507.396227 +2507.400190 +2507.408082 +2507.413943 +2507.422634 +2507.424898 +2507.436753 +2507.447909 +2507.457965 +2507.460430 +2507.469720 +2507.495827 +2507.508348 +2507.510779 +2507.519970 +2507.522834 +2507.530792 +2507.533357 +2507.545877 +2507.549873 +2507.559364 +2507.564925 +2507.571751 +2507.574482 +2507.584006 +2507.594862 +2507.597226 +2507.602754 +2507.607849 +2507.611378 +2507.620603 +2507.625831 +2507.634122 +2507.636653 +2507.640250 +2507.647875 +2507.654002 +2507.664226 +2507.672983 +2507.676613 +2507.685671 +2507.690666 +2507.698358 +2507.701755 +2507.710513 +2507.714076 +2507.721135 +2507.725098 +2507.731292 +2507.734289 +2507.738251 +2507.744412 +2507.753003 +2507.756067 +2507.770819 +2507.777446 +2507.780243 +2507.785204 +2507.788002 +2507.796993 +2507.799324 +2507.809347 +2507.816074 +2507.820636 +2507.823633 +2507.831958 +2507.834155 +2507.845111 +2507.850672 +2507.858265 +2507.860562 +2507.865824 +2507.871485 +2507.881208 +2507.886769 +2507.895827 +2507.898158 +2507.908381 +2507.913842 +2507.919770 +2507.928295 +2507.936087 +2507.941648 +2507.947842 +2507.954035 +2507.962161 +2507.974948 +2507.977012 +2507.981308 +2507.988235 +2507.992131 +2507.996526 +2508.001888 +2508.006949 +2508.013543 +2508.015940 +2508.027062 +2508.029593 +2508.032890 +2508.039949 +2508.042081 +2508.052837 +2508.056000 +2508.067222 +2508.071318 +2508.079377 +2508.083273 +2508.091964 +2508.095927 +2508.101155 +2508.103752 +2508.109080 +2508.114142 +2508.116606 +2508.120669 +2508.128061 +2508.132091 +2508.140848 +2508.143346 +2508.153269 +2508.155800 +2508.165424 +2508.167688 +2508.171751 +2508.177412 +2508.179643 +2508.183239 +2508.191598 +2508.200788 +2508.203785 +2508.208414 +2508.215341 +2508.217405 +2508.228427 +2508.232324 +2508.240915 +2508.243479 +2508.252703 +2508.255567 +2508.265091 +2508.267422 +2508.270286 +2508.278611 +2508.281075 +2508.285604 +2508.292930 +2508.295960 +2508.299323 +2508.305683 +2508.314841 +2508.318937 +2508.324032 +2508.330692 +2508.332690 +2508.343279 +2508.347175 +2508.352370 +2508.356732 +2508.361960 +2508.368121 +2508.370752 +2508.373482 +2508.380542 +2508.384105 +2508.390898 +2508.395127 +2508.405051 +2508.412810 +2508.417771 +2508.425264 +2508.430625 +2508.435287 +2508.441148 +2508.443446 +2508.449939 +2508.455600 +2508.458098 +2508.462826 +2508.469519 +2508.472283 +2508.482340 +2508.485437 +2508.490532 +2508.495960 +2508.499889 +2508.508181 +2508.511411 +2508.520468 +2508.524331 +2508.537252 +2508.547142 +2508.552536 +2508.556666 +2508.564424 +2508.570452 +2508.575147 +2508.585537 +2508.594694 +2508.599922 +2508.605317 +2508.613642 +2508.617505 +2508.634821 +2508.639283 +2508.642580 +2508.647575 +2508.652037 +2508.655900 +2508.664857 +2508.668054 +2508.674647 +2508.678976 +2508.691531 +2508.693862 +2508.697092 +2508.705383 +2508.708514 +2508.719236 +2508.729992 +2508.733722 +2508.736619 +2508.744278 +2508.748707 +2508.756066 +2508.758963 +2508.770085 +2508.772949 +2508.782673 +2508.786402 +2508.796226 +2508.800588 +2508.806882 +2508.811144 +2508.819902 +2508.826662 +2508.831923 +2508.838483 +2508.843046 +2508.846942 +2508.856965 +2508.860095 +2508.866722 +2508.880908 +2508.885436 +2508.892196 +2508.895693 +2508.906282 +2508.913941 +2508.917871 +2508.921700 +2508.927394 +2508.934354 +2508.938350 +2508.948806 +2508.960361 +2508.963192 +2508.972816 +2508.982639 +2508.990298 +2508.995093 +2509.002553 +2509.006782 +2509.014407 +2509.016938 +2509.027794 +2509.031191 +2509.034221 +2509.041280 +2509.044377 +2509.054900 +2509.059629 +2509.067854 +2509.071117 +2509.079575 +2509.082606 +2509.087268 +2509.093561 +2509.096325 +2509.107015 +2509.111011 +2509.120468 +2509.123631 +2509.133888 +2509.137817 +2509.148140 +2509.152169 +2509.161327 +2509.173981 +2509.178776 +2509.187634 +2509.191031 +2509.197591 +2509.201187 +2509.204484 +2509.213641 +2509.218303 +2509.224997 +2509.228127 +2509.233222 +2509.241214 +2509.244710 +2509.253668 +2509.256598 +2509.267920 +2509.272849 +2509.281307 +2509.293528 +2509.299322 +2509.305583 +2509.309345 +2509.314840 +2509.329126 +2509.336518 +2509.346641 +2509.357264 +2509.368320 +2509.374514 +2509.393461 +2509.403651 +2509.406448 +2509.418902 +2509.423598 +2509.431490 +2509.436418 +2509.445343 +2509.448806 +2509.457930 +2509.461360 +2509.471883 +2509.474447 +2509.477111 +2509.486735 +2509.500787 +2509.504916 +2509.513574 +2509.516105 +2509.520534 +2509.528493 +2509.531923 +2509.543145 +2509.557297 +2509.561093 +2509.571183 +2509.584903 +2509.588599 +2509.598656 +2509.603018 +2509.611943 +2509.616305 +2509.626028 +2509.629225 +2509.640447 +2509.645875 +2509.654433 +2509.657897 +2509.668985 +2509.673614 +2509.681972 +2509.686235 +2509.696092 +2509.709845 +2509.721966 +2509.729358 +2509.736551 +2509.742512 +2509.750804 +2509.755699 +2509.764756 +2509.771017 +2509.778942 +2509.782472 +2509.792695 +2509.805682 +2509.819235 +2509.824496 +2509.834220 +2509.839148 +2509.848073 +2509.852402 +2509.862225 +2509.878276 +2509.902818 +2509.913940 +2509.917470 +2509.928725 +2509.942212 +2509.953767 +2509.968752 +2509.982671 +2509.996424 +2510.009644 +2510.023930 +2510.034886 +2510.048239 +2510.061626 +2510.075545 +2510.090364 +2510.093594 +2510.105981 +2510.117636 +2510.121499 +2510.133620 +2510.146741 +2510.149671 +2510.161293 +2510.176877 +2510.188199 +2510.201286 +2510.213474 +2510.227660 +2510.231023 +2510.242744 +2510.257763 +2510.271382 +2510.302818 +2510.313107 +2510.325961 +2510.350570 +2510.353467 +2510.364523 +2510.377510 +2510.392927 +2510.407646 +2510.421699 +2510.435718 +2510.450104 +2510.463890 +2510.479141 +2510.493394 +2510.497489 +2510.510576 +2510.524229 +2510.538948 +2510.543210 +2510.552135 +2510.557063 +2510.572215 +2510.583903 +2510.641612 +2510.660160 +2510.688032 +2510.702118 +2510.717170 +2510.731122 +2510.744775 +2510.759860 +2510.763590 +2510.776477 +2510.792428 +2510.803716 +2510.820433 +2510.834386 +2510.847639 +2510.861292 +2510.874046 +2510.879940 +2510.892727 +2510.906180 +2510.920566 +2510.923197 +2510.936683 +2510.950303 +2510.953966 +2510.967652 +2510.983203 +2510.997955 +2511.013540 +2511.027892 +2511.056730 +2511.072547 +2511.086333 +2511.099220 +2511.116237 +2511.130789 +2511.146107 +2511.161758 +2511.193493 +2511.208411 +2511.222264 +2511.238315 +2511.254165 +2511.267585 +2511.283270 +2511.297389 +2511.312307 +2511.328225 +2511.338914 +2511.357562 +2511.388498 +2511.404315 +2511.419633 +2511.433686 +2511.449836 +2511.538747 +2511.580072 +2511.609510 +2511.688564 +2521.707701 +2521.710166 +2521.712596 +2521.719856 +2522.707967 +2522.710498 +2522.713028 +2523.706734 +2523.708032 +2523.710763 +2523.713260 +2524.706799 +2524.708098 +2524.711261 +2524.713393 +2525.706565 +2525.707564 +2525.707864 +2525.710794 +2526.711659 +2529.760907 +2530.473860 +2530.648385 +2530.684682 +2530.705561 +2531.099300 +2531.344355 +2531.682616 +2531.705993 +2531.710222 +2531.712154 +2531.806992 +2531.813452 +2531.911121 +2531.913019 +2531.917714 +2532.008956 +2532.011387 +2532.013419 +2532.107791 +2532.109023 +2532.114917 +2532.207791 +2532.209156 +2532.211487 +2532.213585 +2532.307957 +2532.311820 +2532.314551 +2532.409322 +2532.411986 +2532.414584 +2532.414883 +2532.507924 +2532.509256 +2532.512020 +2532.514617 +2532.515250 +2532.607957 +2532.611820 +2532.614917 +2532.707923 +2532.709322 +2532.711520 +2532.714051 +2532.808023 +2532.815316 +2532.907990 +2532.909289 +2532.911586 +2532.914050 +2533.008056 +2533.009388 +2533.012152 +2533.014883 +2533.107956 +2533.109355 +2533.113984 +2533.114583 +2533.209388 +2533.212052 +2533.214716 +2533.307989 +2533.309321 +2533.311719 +2533.314316 +2533.407989 +2533.411919 +2533.414183 +2533.415782 +2533.507989 +2533.509288 +2533.514949 +2533.608022 +2533.611919 +2533.715149 +2533.807989 +2533.812418 +2533.815914 +2533.819078 +2533.907989 +2533.911952 +2533.914949 +2534.008022 +2534.009387 +2534.108022 +2534.109354 +2534.111918 +2534.114782 +2534.208022 +2534.209321 +2534.215414 +2534.219011 +2534.307988 +2534.309387 +2534.311885 +2534.314682 +2534.407955 +2534.409387 +2534.411884 +2534.414748 +2534.508088 +2534.509453 +2534.512084 +2534.515514 +2534.607988 +2534.609387 +2534.611984 +2534.614915 +2534.707955 +2534.807988 +2534.809353 +2534.811551 +2534.814115 +2534.908021 +2534.909386 +2534.911984 +2534.914748 +2535.008021 +2535.009353 +2535.014448 +2535.108021 +2535.111584 +2535.208021 +2535.307987 +2535.311983 +2535.314814 +2535.408054 +2535.409386 +2535.414581 +2535.507921 +2535.514048 +2535.607987 +2535.609386 +2535.612216 +2535.614481 +2535.707954 +2535.709219 +2535.807987 +2535.809386 +2535.811850 +2535.814547 +2535.908020 +2535.914480 +2536.007920 +2536.009319 +2536.012049 +2536.015180 +2536.016445 +2536.018276 +2536.107987 +2536.112016 +2536.207987 +2536.209385 +2536.212082 +2536.218842 +2536.307986 +2536.309318 +2536.312116 +2536.314746 +2536.318609 +2536.407953 +2536.411683 +2536.507953 +2536.509285 +2536.512016 +2536.514746 +2536.607986 +2536.709385 +2536.714546 +2540.487270 +2541.706849 +2541.709080 +2541.711511 +2541.716772 +2541.719103 +2541.722999 +2541.727661 +2541.731058 +2541.737385 +2541.739483 +2541.746143 +2541.751271 +2541.759929 +2541.766289 +2541.774381 +2541.776746 +2541.782673 +2541.784405 +2541.794794 +2541.802054 +2541.810945 +2541.819636 +2541.821534 +2541.843279 +2541.853102 +2541.855533 +2541.864624 +2541.866456 +2541.875746 +2541.882240 +2541.887734 +2541.898890 +2541.910145 +2541.912177 +2541.919902 +2541.922466 +2541.930991 +2541.932723 +2541.937551 +2541.952436 +2541.956166 +2541.965557 +2541.967654 +2541.976312 +2541.978444 +2541.987435 +2541.997291 +2541.999689 +2542.012343 +2542.019369 +2542.028127 +2542.036153 +2542.045010 +2542.047142 +2542.056965 +2542.067721 +2542.069586 +2542.075380 +2542.082140 +2542.086735 +2542.094761 +2542.097325 +2542.106682 +2542.120901 +2542.123299 +2542.132190 +2542.135220 +2542.143079 +2542.145343 +2542.154134 +2542.156565 +2542.164691 +2542.173448 +2542.175380 +2542.185969 +2542.188167 +2542.199156 +2542.201687 +2542.207281 +2542.212576 +2542.218270 +2542.224830 +2542.230591 +2542.237618 +2542.246309 +2542.256632 +2542.261993 +2542.267854 +2542.273615 +2542.283871 +2542.285836 +2542.297091 +2542.299156 +2542.301887 +2542.308813 +2542.312010 +2542.320501 +2542.332922 +2542.334987 +2542.338450 +2542.345876 +2542.350438 +2542.354667 +2542.357897 +2542.366888 +2542.374880 +2542.382040 +2542.384371 +2542.389765 +2542.395060 +2542.398756 +2542.407880 +2542.411177 +2542.420701 +2542.424997 +2542.433255 +2542.437085 +2542.443079 +2542.447308 +2542.454068 +2542.456432 +2542.464357 +2542.469985 +2542.473182 +2542.482273 +2542.484204 +2542.486935 +2542.495493 +2542.497591 +2542.507647 +2542.512176 +2542.520101 +2542.523431 +2542.532622 +2542.534953 +2542.541580 +2542.546642 +2542.550238 +2542.557497 +2542.562026 +2542.570085 +2542.573348 +2542.578676 +2542.582106 +2542.591563 +2542.594460 +2542.602319 +2542.604683 +2542.615506 +2542.619735 +2542.625862 +2542.629625 +2542.636718 +2542.638916 +2542.649239 +2542.654367 +2542.661194 +2542.671184 +2542.674580 +2542.684437 +2542.688999 +2542.692862 +2542.701720 +2542.711044 +2542.714007 +2542.722099 +2542.732123 +2542.738117 +2542.744210 +2542.753035 +2542.763724 +2542.769019 +2542.772449 +2542.780840 +2542.784104 +2542.790198 +2542.793028 +2542.795825 +2542.805449 +2542.807514 +2542.812076 +2542.818836 +2542.821600 +2542.825496 +2542.831590 +2542.835219 +2542.840148 +2542.843777 +2542.847973 +2542.855299 +2542.857830 +2542.866521 +2542.870384 +2542.878343 +2542.889698 +2542.892062 +2542.902718 +2542.905116 +2542.915006 +2542.917970 +2542.921833 +2542.927660 +2542.931257 +2542.940081 +2542.948140 +2542.952868 +2542.956431 +2542.962991 +2542.965755 +2542.968985 +2542.972282 +2542.977277 +2542.980008 +2542.983238 +2542.990164 +2542.992995 +2542.999488 +2543.002985 +2543.007014 +2543.015705 +2543.019368 +2543.028759 +2543.031723 +2543.035452 +2543.041946 +2543.045076 +2543.053334 +2543.061393 +2543.066721 +2543.070118 +2543.074646 +2543.079508 +2543.082106 +2543.095692 +2543.107314 +2543.110677 +2543.118070 +2543.124596 +2543.130324 +2543.133587 +2543.139814 +2543.143977 +2543.146375 +2543.155232 +2543.157563 +2543.160694 +2543.169685 +2543.178642 +2543.181906 +2543.184969 +2543.190897 +2543.193194 +2543.203218 +2543.206115 +2543.211043 +2543.215572 +2543.218402 +2543.226927 +2543.229225 +2543.231989 +2543.236118 +2543.240680 +2543.244277 +2543.251236 +2543.253667 +2543.265855 +2543.278642 +2543.287433 +2543.292129 +2543.296657 +2543.303218 +2543.308079 +2543.313973 +2543.320034 +2543.323297 +2543.326927 +2543.334020 +2543.336418 +2543.346208 +2543.349338 +2543.355632 +2543.359528 +2543.367686 +2543.371383 +2543.381572 +2543.385602 +2543.392861 +2543.395059 +2543.402918 +2543.407180 +2543.409844 +2543.419701 +2543.423497 +2543.428059 +2543.432355 +2543.435152 +2543.440580 +2543.445309 +2543.458329 +2543.461526 +2543.465189 +2543.470816 +2543.476244 +2543.484902 +2543.488099 +2543.494759 +2543.499155 +2543.503550 +2543.511209 +2543.514140 +2543.517636 +2543.523830 +2543.527127 +2543.535352 +2543.538582 +2543.542678 +2543.549538 +2543.552801 +2543.559161 +2543.562192 +2543.575678 +2543.578642 +2543.582471 +2543.588299 +2543.591096 +2543.594826 +2543.601919 +2543.607913 +2543.613274 +2543.616704 +2543.620000 +2543.625728 +2543.637350 +2543.640014 +2543.645042 +2543.651103 +2543.654399 +2543.661326 +2543.665555 +2543.669185 +2543.674679 +2543.680007 +2543.685435 +2543.694592 +2543.699321 +2543.705848 +2543.709944 +2543.718069 +2543.720766 +2543.731689 +2543.733886 +2543.737450 +2543.744343 +2543.746940 +2543.754233 +2543.757896 +2543.769517 +2543.774379 +2543.777276 +2543.784702 +2543.787866 +2543.796724 +2543.799221 +2543.802751 +2543.809944 +2543.828092 +2543.832821 +2543.836817 +2543.841279 +2543.850004 +2543.853134 +2543.862957 +2543.865388 +2543.875078 +2543.877742 +2543.888798 +2543.891962 +2543.903783 +2543.907846 +2543.915338 +2543.918335 +2543.923397 +2543.928925 +2543.936783 +2543.940613 +2543.952934 +2543.955398 +2543.965455 +2543.967919 +2543.977909 +2543.980240 +2543.984302 +2543.992095 +2543.995458 +2544.007013 +2544.018435 +2544.022664 +2544.029091 +2544.031955 +2544.047806 +2544.051802 +2544.058428 +2544.071382 +2544.076177 +2544.083437 +2544.086800 +2544.097622 +2544.100986 +2544.110643 +2544.115471 +2544.123496 +2544.125894 +2544.130323 +2544.137516 +2544.148638 +2544.152634 +2544.160792 +2544.172814 +2544.188598 +2544.199920 +2544.202850 +2544.213873 +2544.217469 +2544.226194 +2544.234319 +2544.238348 +2544.249770 +2544.258361 +2544.261592 +2544.273113 +2544.276377 +2544.285201 +2544.298255 +2544.308578 +2544.319966 +2544.324762 +2544.333986 +2544.347605 +2544.359993 +2544.365954 +2544.374146 +2544.379007 +2544.390229 +2544.406014 +2544.414672 +2544.426360 +2544.428991 +2544.439780 +2544.453966 +2544.465587 +2544.477142 +2544.481305 +2544.489963 +2544.493027 +2544.504349 +2544.508777 +2544.516203 +2544.526526 +2544.540812 +2544.553533 +2544.561591 +2544.571315 +2544.582803 +2544.586433 +2544.595357 +2544.599820 +2544.609277 +2544.622763 +2544.633586 +2544.645341 +2544.658461 +2544.672913 +2544.685567 +2544.698155 +2544.701185 +2544.711641 +2544.725494 +2544.739813 +2544.752900 +2544.757795 +2544.768351 +2544.786400 +2544.798221 +2544.808211 +2544.819600 +2544.833086 +2544.846240 +2544.859693 +2544.873479 +2544.900619 +2544.912940 +2544.926026 +2544.940345 +2544.950469 +2544.965887 +2544.976143 +2544.990429 +2545.003549 +2545.019067 +2545.057994 +2545.071747 +2545.085101 +2545.109876 +2545.133619 +2545.147072 +2545.161291 +2545.164621 +2545.177675 +2545.191328 +2545.205780 +2545.210841 +2545.223728 +2545.234285 +2545.297022 +2545.333119 +2545.345606 +2545.356962 +2545.371447 +2545.385100 +2545.411008 +2545.458993 +2545.473645 +2545.487631 +2545.502683 +2545.517701 +2545.532553 +2545.547771 +2545.559592 +2545.571514 +2545.585333 +2545.599186 +2545.611807 +2545.626658 +2545.645140 +2545.654830 +2545.669183 +2545.702016 +2545.715403 +2545.728124 +2545.743608 +2545.757727 +2545.822296 +2545.862456 +2545.870614 +2545.885466 +2545.899818 +2545.916835 +2545.929389 +2545.947271 +2545.957894 +2545.974544 +2546.000884 +2546.045606 +2546.056861 +2546.100684 +2546.114570 +2546.118733 +2546.131453 +2546.199185 +2546.225526 +2546.257560 +2546.327457 +2546.345173 +2546.407444 +2546.419365 +2546.437280 +2546.515835 +2546.543407 +2546.556561 +2546.572678 +2546.587563 +2546.617200 +2546.632185 +2546.649168 +2546.663554 +2546.678572 +2546.694356 +2546.709142 +2556.707433 +2556.709498 +2556.711862 +2556.717989 +2557.707565 +2557.709663 +2557.717356 +2558.707531 +2558.712726 +2559.706498 +2559.707797 +2559.710660 +2559.712925 +2559.728110 +2560.706131 +2560.712624 +2561.706562 +2561.707861 +2561.711824 +2561.713622 +2564.685347 +2565.282516 +2566.705958 +2566.707323 +2566.709588 +2566.712152 +2566.807956 +2566.810120 +2566.812551 +2566.907123 +2566.908389 +2566.910753 +2566.912651 +2567.007423 +2567.008722 +2567.012984 +2567.107623 +2567.108921 +2567.111152 +2567.207822 +2567.209188 +2567.211652 +2567.213483 +2567.216214 +2567.307756 +2567.309221 +2567.312051 +2567.407789 +2567.409187 +2567.411785 +2567.507822 +2567.509121 +2567.607922 +2567.609221 +2567.611585 +2567.613749 +2567.707855 +2567.709187 +2567.713849 +2567.807855 +2567.809254 +2567.811651 +2567.814781 +2567.907855 +2567.909287 +2567.911984 +2567.914415 +2568.007855 +2568.009220 +2568.011784 +2568.015048 +2568.107821 +2568.109187 +2568.111951 +2568.114748 +2568.207888 +2568.209220 +2568.211951 +2568.307921 +2568.309353 +2568.311984 +2568.314748 +2568.407888 +2568.411617 +2568.414648 +2568.507888 +2568.511617 +2568.515746 +2568.607888 +2568.609319 +2568.612217 +2568.707921 +2568.709219 +2568.711484 +2568.714214 +2568.807987 +2568.809253 +2568.811950 +2568.815080 +2568.907921 +2568.912083 +2569.007854 +2569.011983 +2569.015180 +2569.107920 +2569.111483 +2569.115080 +2569.207887 +2569.211850 +2569.215546 +2569.307920 +2569.309285 +2569.311883 +2569.314880 +2569.407920 +2569.409319 +2569.415213 +2569.509285 +2569.511983 +2569.515279 +2569.607953 +2569.611683 +2569.707953 +2569.709285 +2569.711649 +2569.807953 +2569.814913 +2569.907920 +2569.911583 +2569.914879 +2570.007853 +2570.009285 +2570.011483 +2570.014446 +2570.107919 +2570.109185 +2570.112148 +2570.115012 +2570.207919 +2570.209285 +2570.214779 +2570.307986 +2570.309351 +2570.311882 +2570.314812 +2570.407952 +2570.411715 +2570.415478 +2570.507919 +2570.511948 +2570.514879 +2570.607886 +2570.609351 +2570.611815 +2570.615178 +2570.707885 +2570.709217 +2570.711748 +2570.714712 +2570.907952 +2570.911781 +2570.915511 +2571.007952 +2571.009350 +2571.011581 +2571.014379 +2571.107852 +2571.109184 +2571.111581 +2571.114811 +2571.207952 +2571.209350 +2571.211914 +2571.214811 +2571.307918 +2571.314944 +2571.407918 +2571.409317 +2571.411514 +2571.414045 +2571.507951 +2571.509250 +2571.514078 +2571.607984 +2571.611548 +2571.614611 +2571.708018 +2571.709383 +2571.712114 +2571.715077 +2575.549206 +2576.705815 +2576.711676 +2576.716338 +2576.717869 +2576.723098 +2576.724729 +2576.736984 +2576.749704 +2576.766787 +2576.769085 +2576.777476 +2576.779608 +2576.788532 +2576.799388 +2576.810477 +2576.812375 +2576.822032 +2576.823963 +2576.834220 +2576.845908 +2576.857130 +2576.859295 +2576.868652 +2576.870650 +2576.882238 +2576.893294 +2576.895691 +2576.904916 +2576.906914 +2576.916238 +2576.924829 +2576.933887 +2576.942811 +2576.945342 +2576.953767 +2576.955532 +2576.964789 +2576.967153 +2576.978209 +2576.989031 +2576.990996 +2577.000487 +2577.002718 +2577.012075 +2577.021898 +2577.032088 +2577.048638 +2577.060193 +2577.062358 +2577.072248 +2577.083004 +2577.085834 +2577.093493 +2577.103051 +2577.104882 +2577.113740 +2577.116637 +2577.127126 +2577.138848 +2577.150403 +2577.152701 +2577.162824 +2577.165322 +2577.175212 +2577.177076 +2577.186767 +2577.189997 +2577.198289 +2577.208179 +2577.221266 +2577.223830 +2577.233487 +2577.241312 +2577.243610 +2577.255831 +2577.267553 +2577.270117 +2577.279707 +2577.281971 +2577.293360 +2577.305148 +2577.307579 +2577.316870 +2577.338581 +2577.343443 +2577.350403 +2577.362224 +2577.366620 +2577.378042 +2577.387532 +2577.400353 +2577.403916 +2577.412474 +2577.427293 +2577.438615 +2577.441279 +2577.450669 +2577.460593 +2577.472214 +2577.474379 +2577.484302 +2577.486933 +2577.498455 +2577.511309 +2577.521565 +2577.525428 +2577.535351 +2577.546207 +2577.548471 +2577.559427 +2577.562557 +2577.572181 +2577.583303 +2577.587566 +2577.601518 +2577.611142 +2577.620965 +2577.632054 +2577.634252 +2577.643942 +2577.648038 +2577.660493 +2577.671149 +2577.683936 +2577.692860 +2577.695824 +2577.703183 +2577.705581 +2577.715105 +2577.724295 +2577.736716 +2577.739513 +2577.746640 +2577.757396 +2577.767752 +2577.771348 +2577.779473 +2577.788631 +2577.792194 +2577.800186 +2577.811042 +2577.813473 +2577.821864 +2577.824495 +2577.832287 +2577.834552 +2577.845874 +2577.861458 +2577.871248 +2577.873846 +2577.882570 +2577.893226 +2577.905547 +2577.908245 +2577.918135 +2577.921065 +2577.930223 +2577.933719 +2577.943742 +2577.947072 +2577.956763 +2577.959660 +2577.968851 +2577.977675 +2577.980206 +2577.991095 +2577.998121 +2578.002184 +2578.012141 +2578.015038 +2578.035018 +2578.044109 +2578.052667 +2578.062990 +2578.067851 +2578.076210 +2578.082803 +2578.087831 +2578.091228 +2578.101684 +2578.106479 +2578.113872 +2578.120299 +2578.125061 +2578.127925 +2578.136916 +2578.139380 +2578.148637 +2578.150935 +2578.154731 +2578.161058 +2578.163256 +2578.168251 +2578.174678 +2578.179473 +2578.187965 +2578.196656 +2578.200219 +2578.213273 +2578.217235 +2578.225893 +2578.230688 +2578.238847 +2578.242610 +2578.252200 +2578.254298 +2578.264321 +2578.266453 +2578.270549 +2578.277941 +2578.282170 +2578.288464 +2578.292793 +2578.300086 +2578.302716 +2578.313472 +2578.316070 +2578.321131 +2578.327059 +2578.329956 +2578.339579 +2578.341977 +2578.347139 +2578.351801 +2578.361924 +2578.370315 +2578.373346 +2578.381238 +2578.383702 +2578.391328 +2578.402983 +2578.407944 +2578.411741 +2578.419466 +2578.423229 +2578.429989 +2578.442443 +2578.445440 +2578.450635 +2578.455796 +2578.468417 +2578.470948 +2578.474444 +2578.481238 +2578.484101 +2578.487098 +2578.494358 +2578.497222 +2578.502117 +2578.506812 +2578.514138 +2578.517868 +2578.530089 +2578.536915 +2578.539846 +2578.549270 +2578.551967 +2578.561790 +2578.564554 +2578.574877 +2578.577475 +2578.581171 +2578.590328 +2578.595523 +2578.599020 +2578.607811 +2578.612406 +2578.621064 +2578.624494 +2578.628024 +2578.632853 +2578.642177 +2578.645273 +2578.653132 +2578.655397 +2578.666952 +2578.670715 +2578.678740 +2578.680805 +2578.684101 +2578.692693 +2578.696222 +2578.699419 +2578.709942 +2578.722097 +2578.725060 +2578.735550 +2578.738081 +2578.743542 +2578.750202 +2578.753032 +2578.756895 +2578.763255 +2578.766452 +2578.770781 +2578.776942 +2578.781071 +2578.788830 +2578.792326 +2578.796555 +2578.802017 +2578.808443 +2578.814371 +2578.820798 +2578.826992 +2578.834950 +2578.838780 +2578.849902 +2578.858493 +2578.861757 +2578.869482 +2578.872146 +2578.881104 +2578.883402 +2578.890262 +2578.893458 +2578.896888 +2578.902283 +2578.907311 +2578.910108 +2578.914204 +2578.924627 +2578.932886 +2578.935583 +2578.940778 +2578.947704 +2578.959326 +2578.961990 +2578.964854 +2578.972213 +2578.974777 +2578.978706 +2578.985033 +2578.987498 +2579.015037 +2579.025360 +2579.029056 +2579.038946 +2579.041710 +2579.045972 +2579.050568 +2579.058427 +2579.060991 +2579.071946 +2579.074577 +2579.077408 +2579.086232 +2579.089695 +2579.099319 +2579.102050 +2579.111374 +2579.114604 +2579.118799 +2579.125926 +2579.128723 +2579.136582 +2579.142909 +2579.153498 +2579.165286 +2579.167517 +2579.171180 +2579.178073 +2579.180404 +2579.192526 +2579.195190 +2579.209742 +2579.218233 +2579.220697 +2579.223928 +2579.232486 +2579.234783 +2579.237780 +2579.246305 +2579.250268 +2579.256928 +2579.259725 +2579.272412 +2579.274843 +2579.277907 +2579.287431 +2579.290528 +2579.301417 +2579.304380 +2579.314370 +2579.317168 +2579.328456 +2579.330721 +2579.333385 +2579.338313 +2579.343741 +2579.346904 +2579.351800 +2579.356761 +2579.361057 +2579.370015 +2579.373245 +2579.383201 +2579.385166 +2579.392392 +2579.397887 +2579.411573 +2579.415103 +2579.425026 +2579.428623 +2579.438246 +2579.441943 +2579.452699 +2579.457094 +2579.464287 +2579.473644 +2579.497987 +2579.508742 +2579.522928 +2579.527091 +2579.538413 +2579.549468 +2579.553364 +2579.562855 +2579.565685 +2579.576641 +2579.579505 +2579.582635 +2579.591493 +2579.595922 +2579.604047 +2579.617300 +2579.623095 +2579.630987 +2579.634117 +2579.643108 +2579.649735 +2579.659725 +2579.665552 +2579.674044 +2579.685266 +2579.691793 +2579.696688 +2579.710507 +2579.724427 +2579.732851 +2579.742508 +2579.747137 +2579.754929 +2579.758626 +2579.767317 +2579.770480 +2579.780204 +2579.783567 +2579.794290 +2579.797986 +2579.808742 +2579.825259 +2579.831253 +2579.837846 +2579.848502 +2579.861589 +2579.866218 +2579.873477 +2579.876807 +2579.888362 +2579.894789 +2579.904513 +2579.912338 +2579.931752 +2579.940111 +2579.947703 +2579.961289 +2579.970247 +2579.982268 +2579.996254 +2579.999851 +2580.010141 +2580.012605 +2580.014869 +2580.025026 +2580.028589 +2580.038512 +2580.042675 +2580.053164 +2580.057993 +2580.067417 +2580.071646 +2580.081003 +2580.087896 +2580.095389 +2580.109641 +2580.124892 +2580.138412 +2580.141809 +2580.153763 +2580.157526 +2580.167650 +2580.171912 +2580.181969 +2580.185998 +2580.195655 +2580.209341 +2580.214569 +2580.224792 +2580.229687 +2580.238545 +2580.243407 +2580.252664 +2580.256860 +2580.269947 +2580.280870 +2580.285132 +2580.296620 +2580.310606 +2580.314503 +2580.327057 +2580.338778 +2580.353031 +2580.356893 +2580.381302 +2580.396154 +2580.400683 +2580.411272 +2580.415834 +2580.426257 +2580.441575 +2580.455328 +2580.460357 +2580.470014 +2580.474143 +2580.483433 +2580.488528 +2580.499717 +2580.513903 +2580.517066 +2580.529787 +2580.532884 +2580.543640 +2580.557892 +2580.572877 +2580.576840 +2580.588928 +2580.602614 +2580.615568 +2580.619830 +2580.630586 +2580.635148 +2580.645238 +2580.659357 +2580.688195 +2580.695022 +2580.701981 +2580.705778 +2580.717333 +2580.732484 +2580.747303 +2580.762021 +2580.777539 +2580.789793 +2580.804013 +2580.816633 +2580.820663 +2580.832018 +2580.836047 +2580.848401 +2580.851465 +2580.864352 +2580.893856 +2580.897486 +2580.911705 +2580.924825 +2580.936413 +2580.940676 +2580.952864 +2580.955994 +2580.982734 +2580.987296 +2580.998251 +2581.014402 +2581.028954 +2581.040443 +2581.045637 +2581.056660 +2581.061089 +2581.072777 +2581.086863 +2581.101415 +2581.118398 +2581.133383 +2581.149234 +2581.161988 +2581.179603 +2581.191258 +2581.208741 +2581.225457 +2581.237146 +2581.253929 +2581.269913 +2581.282400 +2581.297319 +2581.311971 +2581.331118 +2581.341208 +2581.358824 +2581.383366 +2581.397885 +2581.402180 +2581.441241 +2581.457492 +2581.487395 +2581.513236 +2581.529320 +2581.543639 +2581.561887 +2581.575274 +2581.620695 +2581.646669 +2581.661388 +2581.678770 +2584.106540 +2591.707598 +2591.712094 +2591.718587 +2592.706731 +2592.711260 +2592.713558 +2593.706764 +2594.706796 +2595.706828 +2595.708060 +2595.711523 +2595.713621 +2596.706694 +2596.707926 +2596.710790 +2596.714020 +2601.706323 +2601.707655 +2601.709886 +2601.712250 +2601.714348 +2601.807122 +2601.808287 +2601.810185 +2601.812716 +2601.907588 +2601.908853 +2601.911251 +2601.913549 +2602.007821 +2602.009153 +2602.011650 +2602.014015 +2602.108054 +2602.111950 +2602.114015 +2602.207088 +2602.211417 +2602.307121 +2602.313149 +2602.409319 +2602.411617 +2602.413748 +2602.509519 +2602.512549 +2602.608120 +2602.609452 +2602.611783 +2602.708153 +2602.709518 +2602.711916 +2602.714513 +2602.808220 +2602.809552 +2602.812415 +2602.908319 +2602.914580 +2603.008219 +2603.009585 +2603.012215 +2603.015579 +2603.109551 +2603.111982 +2603.208253 +2603.209618 +2603.216178 +2603.308252 +2603.309584 +2603.311982 +2603.314513 +2603.408219 +2603.412548 +2603.414679 +2603.508152 +2603.511949 +2603.608119 +2603.615512 +2603.708185 +2603.709517 +2603.712681 +2603.808319 +2603.809584 +2603.811982 +2603.816843 +2603.908219 +2603.909551 +2603.912015 +2603.915245 +2604.008285 +2604.009717 +2604.012148 +2604.108252 +2604.109650 +2604.114445 +2604.208252 +2604.212914 +2604.216910 +2604.308318 +2604.312214 +2604.315910 +2604.408385 +2604.409683 +2604.412181 +2604.508384 +2604.509650 +2604.512047 +2604.515044 +2604.608318 +2604.609683 +2604.611947 +2604.615610 +2604.708251 +2604.709583 +2604.714312 +2604.809516 +2604.812447 +2604.908218 +2604.909583 +2604.912047 +2605.008251 +2605.009516 +2605.012347 +2605.015444 +2605.109583 +2605.112380 +2605.115976 +2605.208317 +2605.209682 +2605.212047 +2605.215177 +2605.308284 +2605.311980 +2605.408250 +2605.411680 +2605.414544 +2605.508284 +2605.509582 +2605.512013 +2605.515643 +2605.608283 +2605.609582 +2605.611780 +2605.614943 +2605.708350 +2605.712546 +2605.715210 +2605.808317 +2605.809748 +2605.812246 +2605.816475 +2605.908350 +2605.909682 +2605.912679 +2605.915543 +2606.008283 +2606.009648 +2606.011946 +2606.016541 +2606.108383 +2606.109815 +2606.111946 +2606.115609 +2606.208316 +2606.212079 +2606.215875 +2606.308216 +2606.309581 +2606.312412 +2606.315076 +2606.408249 +2606.409581 +2606.411779 +2606.414410 +2606.509648 +2606.512145 +2606.515276 +2606.608316 +2606.609714 +2606.611846 +2606.614443 +2606.709648 +2606.711979 +2606.714643 +2611.707545 +2611.709576 +2611.711441 +2611.717102 +2611.718634 +2611.723795 +2611.725560 +2611.731288 +2611.739280 +2611.741477 +2611.748604 +2611.750102 +2611.758261 +2611.760026 +2611.767884 +2611.769649 +2611.780605 +2611.789230 +2611.792060 +2611.803748 +2611.812906 +2611.814904 +2611.823895 +2611.825693 +2611.835650 +2611.845673 +2611.849636 +2611.858960 +2611.860691 +2611.870848 +2611.872746 +2611.884568 +2611.891993 +2611.901451 +2611.909876 +2611.918966 +2611.927891 +2611.938047 +2611.939846 +2611.949836 +2611.952133 +2611.961158 +2611.963322 +2611.972813 +2611.974844 +2611.984667 +2611.986632 +2611.997554 +2612.008077 +2612.018034 +2612.027158 +2612.029289 +2612.037981 +2612.048836 +2612.050768 +2612.062789 +2612.065420 +2612.073945 +2612.076542 +2612.087131 +2612.109376 +2612.122063 +2612.134018 +2612.136282 +2612.146039 +2612.147837 +2612.158460 +2612.161024 +2612.171414 +2612.183468 +2612.185633 +2612.195656 +2612.197921 +2612.209442 +2612.211773 +2612.221597 +2612.224561 +2612.232886 +2612.249569 +2612.258194 +2612.269416 +2612.272213 +2612.281970 +2612.284301 +2612.298387 +2612.310241 +2612.332253 +2612.335117 +2612.345406 +2612.356528 +2612.368417 +2612.370981 +2612.380804 +2612.392093 +2612.394391 +2612.404880 +2612.416135 +2612.427857 +2612.441011 +2612.443375 +2612.466685 +2612.478073 +2612.480404 +2612.490295 +2612.499585 +2612.509808 +2612.514803 +2612.536781 +2612.548403 +2612.550934 +2612.566418 +2612.575842 +2612.579838 +2612.586898 +2612.588863 +2612.599618 +2612.612739 +2612.623095 +2612.629921 +2612.639578 +2612.642742 +2612.652232 +2612.654730 +2612.664420 +2612.667118 +2612.671546 +2612.679672 +2612.682003 +2612.691660 +2612.694157 +2612.706844 +2612.713105 +2612.724127 +2612.735016 +2612.746005 +2612.755129 +2612.757627 +2612.766918 +2612.776608 +2612.779905 +2612.789595 +2612.792059 +2612.801050 +2612.805146 +2612.812905 +2612.824660 +2612.835083 +2612.848369 +2612.851600 +2612.861190 +2612.863654 +2612.875409 +2612.878273 +2612.889029 +2612.896122 +2612.906145 +2612.917633 +2612.926858 +2612.929755 +2612.940511 +2612.950767 +2612.960957 +2612.971713 +2612.974377 +2612.984367 +2613.000983 +2613.004780 +2613.011806 +2613.014104 +2613.019864 +2613.025525 +2613.038213 +2613.040977 +2613.050833 +2613.053597 +2613.064120 +2613.067450 +2613.071213 +2613.078106 +2613.086598 +2613.089595 +2613.100084 +2613.102448 +2613.111539 +2613.121962 +2613.125392 +2613.133717 +2613.137014 +2613.146138 +2613.149068 +2613.158859 +2613.161623 +2613.172711 +2613.176341 +2613.185232 +2613.197920 +2613.206411 +2613.209508 +2613.219931 +2613.223494 +2613.232285 +2613.234783 +2613.241043 +2613.251000 +2613.259192 +2613.263321 +2613.270946 +2613.275409 +2613.278272 +2613.287596 +2613.290161 +2613.300617 +2613.302914 +2613.313171 +2613.315702 +2613.321163 +2613.339278 +2613.341709 +2613.344606 +2613.352465 +2613.354629 +2613.357593 +2613.369714 +2613.378073 +2613.380703 +2613.390960 +2613.405712 +2613.416068 +2613.424226 +2613.432118 +2613.438212 +2613.445905 +2613.450200 +2613.457926 +2613.460557 +2613.470547 +2613.473410 +2613.485698 +2613.489561 +2613.495022 +2613.499751 +2613.506411 +2613.521063 +2613.524026 +2613.533117 +2613.538212 +2613.544439 +2613.550733 +2613.560423 +2613.565651 +2613.571679 +2613.581269 +2613.583600 +2613.594389 +2613.598385 +2613.607843 +2613.620064 +2613.622461 +2613.632618 +2613.634716 +2613.646870 +2613.649135 +2613.652698 +2613.657926 +2613.661489 +2613.668182 +2613.678139 +2613.687663 +2613.691359 +2613.700783 +2613.703747 +2613.713204 +2613.719131 +2613.727223 +2613.736014 +2613.738745 +2613.743707 +2613.750466 +2613.753197 +2613.758692 +2613.763487 +2613.765618 +2613.769114 +2613.776407 +2613.778738 +2613.782068 +2613.784932 +2613.791659 +2613.799184 +2613.804379 +2613.806677 +2613.809840 +2613.816933 +2613.819664 +2613.822827 +2613.826490 +2613.831752 +2613.835048 +2613.839944 +2613.843940 +2613.846670 +2613.856960 +2613.860023 +2613.869314 +2613.872877 +2613.878105 +2613.882001 +2613.887729 +2613.893656 +2613.900716 +2613.909541 +2613.922960 +2613.926623 +2613.935614 +2613.939544 +2613.944872 +2613.953497 +2613.962754 +2613.967016 +2613.971146 +2613.974942 +2613.979304 +2613.987030 +2613.989694 +2613.993290 +2613.999917 +2614.002814 +2614.005311 +2614.017100 +2614.022494 +2614.026557 +2614.039577 +2614.042041 +2614.047602 +2614.052631 +2614.055395 +2614.061322 +2614.066384 +2614.080270 +2614.089327 +2614.092457 +2614.095654 +2614.105877 +2614.107975 +2614.111006 +2614.120962 +2614.123660 +2614.133716 +2614.138112 +2614.142441 +2614.148235 +2614.151465 +2614.163786 +2614.169380 +2614.174575 +2614.186763 +2614.199783 +2614.202114 +2614.205145 +2614.214735 +2614.217166 +2614.225458 +2614.229454 +2614.233117 +2614.242874 +2614.247902 +2614.255561 +2614.270346 +2614.273609 +2614.283766 +2614.287496 +2614.291658 +2614.296653 +2614.304745 +2614.310306 +2614.313470 +2614.323093 +2614.326090 +2614.334881 +2614.348601 +2614.360955 +2614.363153 +2614.366117 +2614.375774 +2614.378771 +2614.388661 +2614.397219 +2614.401049 +2614.404212 +2614.407376 +2614.413802 +2614.416533 +2614.427455 +2614.438944 +2614.441874 +2614.449766 +2614.462787 +2614.477605 +2614.481102 +2614.489560 +2614.492191 +2614.503280 +2614.515501 +2614.520163 +2614.528588 +2614.532750 +2614.540675 +2614.543539 +2614.546669 +2614.553696 +2614.556027 +2614.565817 +2614.568847 +2614.579437 +2614.582534 +2614.591957 +2614.595820 +2614.606843 +2614.610805 +2614.618764 +2614.632850 +2614.636080 +2614.646070 +2614.654561 +2614.660089 +2614.673709 +2614.688494 +2614.692723 +2614.703446 +2614.708374 +2614.717232 +2614.720662 +2614.731684 +2614.746869 +2614.750898 +2614.759390 +2614.762553 +2614.767382 +2614.774774 +2614.777538 +2614.791325 +2614.802080 +2614.806376 +2614.816932 +2614.819430 +2614.828954 +2614.832816 +2614.842307 +2614.845071 +2614.856593 +2614.859290 +2614.871178 +2614.874175 +2614.886030 +2614.890525 +2614.903146 +2614.913169 +2614.916766 +2614.927055 +2614.940608 +2614.945936 +2614.955727 +2614.959490 +2614.969679 +2614.974042 +2614.983266 +2614.989027 +2614.997951 +2615.001747 +2615.001914 +2615.012736 +2615.016499 +2615.026855 +2615.030951 +2615.040742 +2615.046036 +2615.055560 +2615.059656 +2615.068314 +2615.073908 +2615.099782 +2615.110405 +2615.121994 +2615.128554 +2615.135547 +2615.142107 +2615.150099 +2615.162919 +2615.167581 +2615.175973 +2615.186029 +2615.197651 +2615.212303 +2615.217931 +2615.226422 +2615.240275 +2615.244970 +2615.254794 +2615.258923 +2615.268447 +2615.282366 +2615.295853 +2615.300581 +2615.308340 +2615.312503 +2615.324524 +2615.338610 +2615.352663 +2615.365683 +2615.369845 +2615.378803 +2615.392090 +2615.405476 +2615.408740 +2615.419229 +2615.434214 +2615.436978 +2615.492556 +2615.506142 +2615.509705 +2615.523958 +2615.549432 +2615.552796 +2615.577604 +2615.599782 +2615.613268 +2615.627654 +2615.641041 +2615.645470 +2615.657824 +2615.672043 +2615.685263 +2615.688693 +2615.699482 +2615.703445 +2615.717731 +2615.728220 +2615.732815 +2615.748200 +2615.798350 +2615.809505 +2615.820827 +2615.824424 +2615.837377 +2615.850165 +2615.853628 +2615.865782 +2615.882599 +2615.911603 +2615.924091 +2615.936012 +2615.951330 +2615.968047 +2616.032782 +2616.062952 +2616.078569 +2616.092955 +2616.165149 +2616.179768 +2616.196085 +2616.210937 +2616.223424 +2616.241240 +2616.253494 +2616.269745 +2616.284097 +2616.300847 +2616.313667 +2616.325855 +2616.341140 +2616.355825 +2616.371909 +2616.389958 +2616.420227 +2616.431749 +2616.447234 +2616.476638 +2616.536245 +2616.554426 +2616.569445 +2616.584863 +2616.598149 +2616.613467 +2616.616697 +2616.631116 +2616.645335 +2616.661353 +2616.677603 +2616.690657 +2617.305208 +2626.706631 +2626.710027 +2626.712558 +2626.714822 +2626.725478 +2627.707096 +2627.708328 +2627.710426 +2627.713156 +2627.715454 +2627.730139 +2628.707228 +2628.708560 +2628.711224 +2628.713921 +2629.707160 +2629.708492 +2629.711356 +2629.713920 +2629.724077 +2630.708158 +2630.711155 +2630.713453 +2631.708557 +2631.710855 +2631.713885 +2634.466829 +2635.082213 +2636.707686 +2636.712182 +2636.808718 +2636.909218 +2636.913480 +2637.009617 +2637.011982 +2637.013880 +2637.108418 +2637.109717 +2637.112181 +2637.208518 +2637.209917 +2637.212581 +2637.309417 +2637.408485 +2637.409783 +2637.411848 +2637.508418 +2637.509817 +2637.512447 +2637.514579 +2637.608518 +2637.609850 +2637.612580 +2637.615744 +2637.708484 +2637.709850 +2637.712714 +2637.808451 +2637.809750 +2637.812514 +2637.910016 +2637.915710 +2638.008584 +2638.009949 +2638.012314 +2638.108517 +2638.109883 +2638.112147 +2638.114478 +2638.208218 +2638.209516 +2638.212280 +2638.309816 +2638.312946 +2638.315910 +2638.408617 +2638.410016 +2638.412480 +2638.416442 +2638.508717 +2638.510149 +2638.513146 +2638.608717 +2638.612579 +2638.615976 +2638.708650 +2638.807684 +2638.808983 +2638.811713 +2638.908117 +2638.909416 +2638.911680 +2639.008283 +2639.009549 +2639.017441 +2639.109815 +2639.112213 +2639.115243 +2639.135489 +2639.208583 +2639.212412 +2639.215276 +2639.308583 +2639.309948 +2639.312479 +2639.408583 +2639.409915 +2639.412046 +2639.508682 +2639.510048 +2639.512345 +2639.516375 +2639.608749 +2639.610081 +2639.612645 +2639.615709 +2639.708682 +2639.710048 +2639.712512 +2639.716974 +2639.808682 +2639.809948 +2639.812512 +2639.908682 +2639.912645 +2639.915775 +2640.008682 +2640.010014 +2640.015675 +2640.108582 +2640.109881 +2640.112645 +2640.116208 +2640.208382 +2640.212012 +2640.308249 +2640.309481 +2640.311845 +2640.314243 +2640.408515 +2640.409847 +2640.412478 +2640.415175 +2640.508648 +2640.509980 +2640.512711 +2640.516141 +2640.608681 +2640.610047 +2640.612478 +2640.615608 +2640.708681 +2640.710013 +2640.712344 +2640.715708 +2640.810080 +2640.812777 +2640.816174 +2640.910013 +2640.912444 +2640.915441 +2641.008614 +2641.009980 +2641.016473 +2641.108648 +2641.109980 +2641.112810 +2641.210046 +2641.215940 +2641.309879 +2641.410046 +2641.412543 +2641.414974 +2641.508614 +2641.512410 +2641.610046 +2641.613242 +2641.708680 +2641.710046 +2641.712377 +2641.715240 +2646.706544 +2646.710074 +2646.723694 +2646.725558 +2646.730220 +2646.738579 +2646.747370 +2646.749068 +2646.756894 +2646.759025 +2646.766251 +2646.774942 +2646.776674 +2646.785432 +2646.794523 +2646.803713 +2646.806311 +2646.813703 +2646.822062 +2646.832152 +2646.834183 +2646.843574 +2646.845305 +2646.854796 +2646.857593 +2646.869414 +2646.879005 +2646.887696 +2646.893823 +2646.903647 +2646.905312 +2646.916700 +2646.926257 +2646.936913 +2646.939777 +2646.947703 +2646.958792 +2646.967982 +2646.978605 +2646.986830 +2646.996121 +2646.998219 +2647.006877 +2647.008675 +2647.019697 +2647.030753 +2647.043007 +2647.055095 +2647.056893 +2647.069081 +2647.090093 +2647.092025 +2647.102148 +2647.112404 +2647.114669 +2647.123760 +2647.134749 +2647.145138 +2647.155761 +2647.166450 +2647.177706 +2647.191359 +2647.201648 +2647.225624 +2647.236547 +2647.245738 +2647.256427 +2647.267682 +2647.270346 +2647.280070 +2647.295321 +2647.308175 +2647.318232 +2647.330220 +2647.332817 +2647.344006 +2647.354629 +2647.356993 +2647.367815 +2647.379271 +2647.383034 +2647.417832 +2647.427489 +2647.438145 +2647.448135 +2647.460956 +2647.468481 +2647.477472 +2647.491259 +2647.504412 +2647.510173 +2647.519164 +2647.531518 +2647.543606 +2647.546770 +2647.557026 +2647.564985 +2647.591558 +2647.604079 +2647.625691 +2647.637379 +2647.648168 +2647.653763 +2647.663453 +2647.675408 +2647.689460 +2647.702547 +2647.715800 +2647.722161 +2647.730452 +2647.741974 +2647.744705 +2647.756626 +2647.764918 +2647.770412 +2647.782101 +2647.784598 +2647.793889 +2647.804245 +2647.815734 +2647.826789 +2647.837678 +2647.846969 +2647.859890 +2647.874875 +2647.880735 +2647.886396 +2647.895820 +2647.906576 +2647.913236 +2647.923759 +2647.935647 +2647.946603 +2647.954861 +2647.965617 +2647.976573 +2647.979237 +2647.989526 +2647.993223 +2648.001847 +2648.006343 +2648.013536 +2648.017765 +2648.027555 +2648.034115 +2648.039476 +2648.049933 +2648.059024 +2648.066583 +2648.091125 +2648.095387 +2648.104645 +2648.109173 +2648.116699 +2648.122027 +2648.130119 +2648.133616 +2648.142906 +2648.149333 +2648.154028 +2648.158690 +2648.167149 +2648.171544 +2648.182400 +2648.192590 +2648.204844 +2648.208074 +2648.217931 +2648.223292 +2648.231817 +2648.235480 +2648.244505 +2648.257292 +2648.260289 +2648.269846 +2648.280369 +2648.284265 +2648.290925 +2648.302846 +2648.310505 +2648.321627 +2648.330419 +2648.333915 +2648.344904 +2648.347768 +2648.356759 +2648.359323 +2648.363619 +2648.369779 +2648.375307 +2648.383366 +2648.386396 +2648.395853 +2648.403279 +2648.409140 +2648.415533 +2648.420928 +2648.429619 +2648.433415 +2648.440708 +2648.452230 +2648.455893 +2648.465284 +2648.468547 +2648.478437 +2648.481334 +2648.487262 +2648.492257 +2648.495520 +2648.503545 +2648.505776 +2648.509273 +2648.517898 +2648.520795 +2648.530718 +2648.533349 +2648.537878 +2648.544970 +2648.549899 +2648.560355 +2648.563385 +2648.572676 +2648.576739 +2648.585130 +2648.590225 +2648.596752 +2648.599183 +2648.611237 +2648.617398 +2648.638310 +2648.641241 +2648.650698 +2648.657991 +2648.664950 +2648.672842 +2648.682200 +2648.692623 +2648.704178 +2648.710105 +2648.715067 +2648.721560 +2648.727188 +2648.732150 +2648.744138 +2648.752696 +2648.755393 +2648.760122 +2648.767881 +2648.772409 +2648.780435 +2648.787295 +2648.794787 +2648.797751 +2648.807308 +2648.812236 +2648.819995 +2648.823958 +2648.828254 +2648.833981 +2648.837011 +2648.840808 +2648.847534 +2648.850331 +2648.854860 +2648.861287 +2648.864284 +2648.868480 +2648.874874 +2648.877937 +2648.882233 +2648.887461 +2648.890858 +2648.898483 +2648.900947 +2648.904178 +2648.912736 +2648.919529 +2648.926955 +2648.929918 +2648.939342 +2648.942506 +2648.951230 +2648.955759 +2648.963718 +2648.966682 +2648.975440 +2648.983731 +2648.988560 +2648.995186 +2649.003278 +2649.008007 +2649.020694 +2649.031750 +2649.045203 +2649.047667 +2649.053228 +2649.058889 +2649.063352 +2649.072742 +2649.075439 +2649.080534 +2649.086195 +2649.093488 +2649.098350 +2649.105343 +2649.112103 +2649.114767 +2649.124424 +2649.127354 +2649.137910 +2649.143771 +2649.151497 +2649.158157 +2649.165716 +2649.169712 +2649.174041 +2649.179868 +2649.184131 +2649.188060 +2649.195053 +2649.202113 +2649.208906 +2649.216032 +2649.223525 +2649.227887 +2649.236911 +2649.240441 +2649.245436 +2649.251563 +2649.254327 +2649.264350 +2649.279302 +2649.283198 +2649.292955 +2649.296152 +2649.306342 +2649.310870 +2649.320095 +2649.324124 +2649.334214 +2649.338210 +2649.347567 +2649.351596 +2649.362352 +2649.367014 +2649.380934 +2649.388792 +2649.399848 +2649.408273 +2649.413235 +2649.423824 +2649.431183 +2649.434880 +2649.443771 +2649.448599 +2649.457723 +2649.462985 +2649.474407 +2649.482832 +2649.486794 +2649.496884 +2649.501147 +2649.508073 +2649.519495 +2649.529951 +2649.551996 +2649.562852 +2649.575539 +2649.588359 +2649.594820 +2649.603411 +2649.612435 +2649.622525 +2649.629119 +2649.641872 +2649.656391 +2649.661120 +2649.667813 +2649.671010 +2649.681433 +2649.685662 +2649.699049 +2649.707507 +2649.713168 +2649.722525 +2649.726488 +2649.736411 +2649.751829 +2649.766315 +2649.780867 +2649.784563 +2649.796085 +2649.800214 +2649.810404 +2649.814733 +2649.826021 +2649.839874 +2649.843337 +2649.852861 +2649.860920 +2649.866681 +2649.870943 +2649.881000 +2649.894520 +2649.898183 +2649.908972 +2649.912801 +2649.922258 +2649.925056 +2649.931083 +2649.937210 +2649.941140 +2649.951529 +2649.963750 +2649.967846 +2649.977803 +2649.981932 +2649.991389 +2649.997117 +2650.005409 +2650.009005 +2650.019295 +2650.022491 +2650.034579 +2650.048732 +2650.063217 +2650.067713 +2650.076471 +2650.082398 +2650.090956 +2650.097516 +2650.112268 +2650.128052 +2650.137277 +2650.141772 +2650.152162 +2650.166014 +2650.170810 +2650.181166 +2650.185562 +2650.195885 +2650.202145 +2650.213434 +2650.228752 +2650.237809 +2650.242172 +2650.255059 +2650.268245 +2650.280999 +2650.286327 +2650.298282 +2650.310869 +2650.315165 +2650.325555 +2650.330283 +2650.340773 +2650.345135 +2650.367646 +2650.381699 +2650.395418 +2650.409737 +2650.425155 +2650.438442 +2650.441705 +2650.453593 +2650.457956 +2650.470876 +2650.483597 +2650.497383 +2650.500113 +2650.512734 +2650.526021 +2650.530483 +2650.544269 +2650.558655 +2650.572208 +2650.586593 +2650.598315 +2650.621725 +2650.635445 +2650.648864 +2650.676304 +2650.701245 +2650.712601 +2650.726354 +2650.730183 +2650.759054 +2650.770343 +2650.773806 +2650.787659 +2650.799614 +2650.815964 +2650.827619 +2650.831781 +2650.843803 +2650.859820 +2650.873173 +2650.877436 +2650.891655 +2650.906939 +2650.923623 +2650.954026 +2650.968445 +2650.982331 +2650.998082 +2651.070942 +2651.083663 +2651.088558 +2651.102011 +2651.115031 +2651.130682 +2651.146400 +2651.158954 +2651.173106 +2651.189623 +2651.203143 +2651.266480 +2651.280665 +2651.294019 +2651.307971 +2651.320692 +2651.337242 +2651.368344 +2651.382197 +2651.397981 +2651.410502 +2651.427918 +2651.441737 +2651.458887 +2651.471907 +2651.486359 +2651.499113 +2651.516130 +2651.560419 +2651.596682 +2651.611401 +2651.635710 +2651.649996 +2651.664215 +2651.695317 +2654.017426 +2661.706263 +2661.707695 +2661.712257 +2662.707194 +2662.708526 +2662.711423 +2663.707260 +2663.708525 +2663.712921 +2664.707159 +2664.708557 +2664.712553 +2664.714685 +2664.722810 +2665.707191 +2665.708490 +2665.711387 +2665.714184 +2666.707190 +2666.708589 +2666.711586 +2666.714050 +2671.706686 +2671.707918 +2671.711414 +2671.713079 +2671.807451 +2671.808717 +2671.811281 +2671.813112 +2671.814145 +2671.907951 +2671.909283 +2672.008284 +2672.009549 +2672.012146 +2672.014011 +2672.018640 +2672.020571 +2672.108417 +2672.109815 +2672.112546 +2672.115443 +2672.208450 +2672.209815 +2672.212679 +2672.214644 +2672.308583 +2672.309948 +2672.313045 +2672.315609 +2672.408616 +2672.410081 +2672.412812 +2672.416408 +2672.508516 +2672.512845 +2672.514743 +2672.608450 +2672.609848 +2672.612779 +2672.708516 +2672.709915 +2672.712712 +2672.808616 +2672.809948 +2672.813078 +2672.815675 +2672.908616 +2672.909881 +2672.912878 +2672.915209 +2673.008649 +2673.013311 +2673.015709 +2673.108682 +2673.110014 +2673.112945 +2673.115542 +2673.208682 +2673.210047 +2673.213178 +2673.216441 +2673.308649 +2673.310014 +2673.312844 +2673.316507 +2673.408649 +2673.410014 +2673.413044 +2673.416740 +2673.508648 +2673.509914 +2673.512911 +2673.516441 +2673.608582 +2673.609947 +2673.612445 +2673.615641 +2673.708648 +2673.709947 +2673.713144 +2673.808715 +2673.812977 +2673.815674 +2673.817573 +2673.910080 +2673.913144 +2673.916773 +2674.008615 +2674.010013 +2674.013143 +2674.016440 +2674.108681 +2674.110080 +2674.116473 +2674.208681 +2674.210046 +2674.308681 +2674.310080 +2674.312977 +2674.315174 +2674.315607 +2674.321568 +2674.408681 +2674.410079 +2674.415541 +2674.508747 +2674.510146 +2674.512710 +2674.515307 +2674.612976 +2674.616406 +2674.708714 +2674.710146 +2674.713243 +2674.716206 +2674.808647 +2674.809979 +2674.818038 +2674.908680 +2674.910012 +2674.913043 +2675.008714 +2675.010012 +2675.012776 +2675.108580 +2675.110012 +2675.112776 +2675.114907 +2675.208647 +2675.212809 +2675.217971 +2675.312343 +2675.315407 +2675.408547 +2675.409879 +2675.415706 +2675.508713 +2675.510145 +2675.513375 +2675.516039 +2675.608746 +2675.610211 +2675.613308 +2675.708646 +2675.710012 +2675.712909 +2675.714540 +2675.808679 +2675.812276 +2675.908646 +2675.910045 +2675.916005 +2676.008646 +2676.009978 +2676.012309 +2676.015040 +2676.019435 +2676.108579 +2676.109945 +2676.112742 +2676.115439 +2676.208646 +2676.210011 +2676.212442 +2676.308612 +2676.310078 +2676.312975 +2676.316038 +2676.408646 +2676.412275 +2676.414839 +2676.417936 +2676.508745 +2676.510211 +2676.513074 +2676.519135 +2676.608745 +2676.610077 +2676.615305 +2676.708645 +2676.710011 +2676.712575 +2676.715205 +2679.444806 +2680.108542 +2680.258891 +2680.323127 +2681.706509 +2681.707808 +2681.711437 +2681.717831 +2681.723459 +2681.725057 +2681.732283 +2681.739443 +2681.747302 +2681.755893 +2681.763286 +2681.776206 +2681.787262 +2681.796352 +2681.806309 +2681.816965 +2681.827821 +2681.837245 +2681.839509 +2681.849333 +2681.851164 +2681.861820 +2681.874574 +2681.884631 +2681.895853 +2681.906409 +2681.918730 +2681.928986 +2681.931883 +2681.944371 +2681.954361 +2681.956359 +2681.966782 +2681.969246 +2681.980668 +2681.983365 +2681.991191 +2682.000748 +2682.009406 +2682.019596 +2682.029752 +2682.041141 +2682.052429 +2682.054760 +2682.058590 +2682.067681 +2682.081134 +2682.090225 +2682.100548 +2682.120195 +2682.132016 +2682.142240 +2682.153595 +2682.168979 +2682.179702 +2682.188860 +2682.192256 +2682.201913 +2682.212436 +2682.222459 +2682.233049 +2682.235413 +2682.246202 +2682.254827 +2682.264018 +2682.273042 +2682.282599 +2682.285163 +2682.295753 +2682.305709 +2682.318363 +2682.325223 +2682.331650 +2682.344704 +2682.353861 +2682.366149 +2682.378103 +2682.392389 +2682.403944 +2682.412203 +2682.424624 +2682.436212 +2682.444737 +2682.451463 +2682.462552 +2682.473774 +2682.476105 +2682.486761 +2682.488959 +2682.499782 +2682.505043 +2682.511303 +2682.523758 +2682.537844 +2682.543271 +2682.551330 +2682.564017 +2682.575406 +2682.586861 +2682.597051 +2682.608906 +2682.620461 +2682.622692 +2682.626488 +2682.634014 +2682.637544 +2682.646968 +2682.655592 +2682.660721 +2682.671443 +2682.685629 +2682.689026 +2682.699848 +2682.712768 +2682.726288 +2682.733614 +2682.739575 +2682.752262 +2682.760088 +2682.770744 +2682.777204 +2682.789425 +2682.792422 +2682.801746 +2682.814034 +2682.817164 +2682.828220 +2682.840640 +2682.844503 +2682.854760 +2682.861486 +2682.869045 +2682.873441 +2682.881533 +2682.895252 +2682.906841 +2682.919462 +2682.921959 +2682.933647 +2682.938842 +2682.946335 +2682.959455 +2682.976205 +2682.987760 +2683.000414 +2683.005642 +2683.010271 +2683.023058 +2683.025822 +2683.038542 +2683.049232 +2683.052428 +2683.060420 +2683.073108 +2683.075539 +2683.086195 +2683.099215 +2683.111603 +2683.124257 +2683.133381 +2683.145535 +2683.157323 +2683.164117 +2683.171376 +2683.177670 +2683.191323 +2683.198582 +2683.203377 +2683.209072 +2683.214433 +2683.218529 +2683.223324 +2683.227820 +2683.231483 +2683.241306 +2683.245668 +2683.253061 +2683.255991 +2683.258456 +2683.266914 +2683.270077 +2683.280367 +2683.284130 +2683.292888 +2683.297849 +2683.306874 +2683.310071 +2683.320094 +2683.324922 +2683.331716 +2683.343437 +2683.346834 +2683.355991 +2683.366647 +2683.370377 +2683.382065 +2683.395452 +2683.410537 +2683.413733 +2683.424489 +2683.428619 +2683.437010 +2683.439774 +2683.443537 +2683.451096 +2683.454593 +2683.463850 +2683.466714 +2683.476604 +2683.491955 +2683.501546 +2683.505875 +2683.515265 +2683.519228 +2683.524289 +2683.529118 +2683.532748 +2683.544669 +2683.554026 +2683.557623 +2683.568179 +2683.571476 +2683.579667 +2683.584196 +2683.595218 +2683.603643 +2683.608938 +2683.615964 +2683.618628 +2683.627986 +2683.634046 +2683.639541 +2683.644769 +2683.653460 +2683.658622 +2683.666014 +2683.669178 +2683.674739 +2683.680400 +2683.684196 +2683.692355 +2683.695052 +2683.699015 +2683.705974 +2683.709271 +2683.714199 +2683.719461 +2683.722325 +2683.726654 +2683.732514 +2683.736244 +2683.743736 +2683.747233 +2683.753726 +2683.757090 +2683.762484 +2683.769677 +2683.778269 +2683.781266 +2683.785395 +2683.794019 +2683.798015 +2683.807306 +2683.810403 +2683.814665 +2683.820027 +2683.824089 +2683.831981 +2683.839074 +2683.846567 +2683.850030 +2683.853726 +2683.858988 +2683.862318 +2683.866447 +2683.873373 +2683.876370 +2683.886260 +2683.889257 +2683.894386 +2683.899647 +2683.903144 +2683.913034 +2683.916630 +2683.922125 +2683.926687 +2683.930050 +2683.939041 +2683.942671 +2683.951495 +2683.954759 +2683.964316 +2683.967013 +2683.977269 +2683.979867 +2683.991189 +2683.994252 +2684.002078 +2684.007572 +2684.015664 +2684.028784 +2684.032780 +2684.041039 +2684.043969 +2684.046433 +2684.054026 +2684.057289 +2684.067579 +2684.080566 +2684.084129 +2684.096850 +2684.102011 +2684.108605 +2684.111602 +2684.116097 +2684.121159 +2684.125921 +2684.133346 +2684.139007 +2684.147133 +2684.150496 +2684.158355 +2684.169044 +2684.172008 +2684.182897 +2684.186194 +2684.190722 +2684.198348 +2684.202644 +2684.209703 +2684.212567 +2684.223157 +2684.237242 +2684.240672 +2684.244402 +2684.252627 +2684.255224 +2684.266014 +2684.270243 +2684.274738 +2684.280000 +2684.283030 +2684.287525 +2684.294752 +2684.297982 +2684.308504 +2684.322524 +2684.325987 +2684.335244 +2684.350296 +2684.353992 +2684.365914 +2684.377502 +2684.382331 +2684.393120 +2684.397016 +2684.407705 +2684.422690 +2684.429350 +2684.435810 +2684.440039 +2684.449663 +2684.453426 +2684.465281 +2684.468777 +2684.478368 +2684.481065 +2684.493220 +2684.497249 +2684.508205 +2684.511701 +2684.516363 +2684.521724 +2684.534845 +2684.549164 +2684.552127 +2684.562084 +2684.566013 +2684.575337 +2684.579134 +2684.590322 +2684.593819 +2684.604109 +2684.618128 +2684.622190 +2684.631514 +2684.635577 +2684.643902 +2684.647998 +2684.657322 +2684.661851 +2684.670409 +2684.677102 +2684.684661 +2684.689690 +2684.698314 +2684.702210 +2684.711601 +2684.726020 +2684.729550 +2684.738874 +2684.745301 +2684.753193 +2684.775837 +2684.789390 +2684.801544 +2684.810136 +2684.818860 +2684.831980 +2684.836476 +2684.845933 +2684.863849 +2684.874505 +2684.887625 +2684.891721 +2684.901111 +2684.914498 +2684.919060 +2684.929117 +2684.942403 +2684.946166 +2684.961051 +2684.972407 +2684.976103 +2684.987525 +2684.991487 +2685.002543 +2685.019060 +2685.028617 +2685.033013 +2685.043835 +2685.048497 +2685.057888 +2685.062550 +2685.072340 +2685.076103 +2685.087958 +2685.100811 +2685.104208 +2685.115996 +2685.119193 +2685.130781 +2685.134344 +2685.146066 +2685.160651 +2685.174871 +2685.189123 +2685.193019 +2685.215164 +2685.229716 +2685.243136 +2685.258920 +2685.271674 +2685.276369 +2685.299779 +2685.314364 +2685.317628 +2685.329815 +2685.340971 +2685.356855 +2685.368710 +2685.372273 +2685.386425 +2685.400545 +2685.416362 +2685.429849 +2685.445966 +2685.472573 +2685.485959 +2685.503075 +2685.514464 +2685.518094 +2685.529016 +2685.543035 +2685.546798 +2685.574371 +2685.589755 +2685.599912 +2685.604241 +2685.615063 +2685.630015 +2685.633711 +2685.647597 +2685.676102 +2685.692552 +2685.721557 +2685.748396 +2685.764181 +2685.777134 +2685.839872 +2685.854191 +2685.871340 +2685.886258 +2685.899745 +2685.913132 +2685.926318 +2685.940471 +2685.955489 +2685.972339 +2685.986358 +2686.002509 +2686.062216 +2686.086824 +2686.102475 +2686.133444 +2686.150627 +2686.162815 +2686.227151 +2686.256388 +2686.272372 +2686.287990 +2686.302841 +2686.318159 +2686.331646 +2686.346398 +2686.364413 +2686.378299 +2686.396048 +2686.439605 +2686.464513 +2686.495415 +2686.555322 +2686.569708 +2686.584559 +2686.600344 +2686.617094 +2686.632611 +2686.648629 +2686.664513 +2686.680896 +2686.696348 +2687.149427 +2696.707093 +2696.708392 +2696.710657 +2696.720280 +2697.707625 +2697.708824 +2697.711655 +2697.714052 +2698.707424 +2698.708790 +2698.711420 +2698.714251 +2699.707057 +2699.708389 +2700.708954 +2700.711918 +2700.715181 +2701.707588 +2701.708920 +2701.712083 +2701.714248 +2702.263398 +2704.902257 +2706.711313 +2706.714110 +2706.808049 +2706.809381 +2706.812245 +2706.814409 +2706.908449 +2706.909714 +2706.914176 +2706.917040 +2707.008648 +2707.009980 +2707.012644 +2707.014576 +2707.108748 +2707.110013 +2707.112344 +2707.208815 +2707.212977 +2707.215341 +2707.308848 +2707.310146 +2707.312711 +2707.315008 +2707.409147 +2707.410479 +2707.413310 +2707.415241 +2707.509181 +2707.513243 +2707.610646 +2707.709147 +2707.710446 +2707.713210 +2707.809047 +2707.810446 +2707.813309 +2707.816040 +2707.908880 +2707.910179 +2707.915873 +2708.009113 +2708.010545 +2708.013376 +2708.016806 +2708.109147 +2708.110445 +2708.113509 +2708.118171 +2708.209147 +2708.210545 +2708.213675 +2708.216839 +2708.309047 +2708.310512 +2708.313242 +2708.316073 +2708.320502 +2708.410545 +2708.413475 +2708.509146 +2708.516139 +2708.609080 +2708.613275 +2708.616572 +2708.709179 +2708.710578 +2708.713608 +2708.810445 +2708.813109 +2708.815573 +2708.909113 +2708.910445 +2708.917537 +2709.009146 +2709.010511 +2709.013208 +2709.017371 +2709.110411 +2709.115639 +2709.209212 +2709.210644 +2709.216472 +2709.309179 +2709.312942 +2709.315472 +2709.409245 +2709.413574 +2709.417637 +2709.509145 +2709.512775 +2709.609178 +2709.610577 +2709.613574 +2709.617137 +2709.627860 +2709.709212 +2709.710477 +2709.712975 +2709.715738 +2709.808945 +2709.810177 +2709.815838 +2709.909112 +2709.910377 +2709.913141 +2709.916870 +2710.009178 +2710.010543 +2710.013241 +2710.016038 +2710.109111 +2710.110443 +2710.112674 +2710.115971 +2710.210510 +2710.216570 +2710.309178 +2710.312774 +2710.409211 +2710.410543 +2710.413174 +2710.509178 +2710.513373 +2710.609277 +2710.616437 +2710.709277 +2710.710576 +2710.716670 +2710.809244 +2710.810642 +2710.813107 +2710.910409 +2710.913240 +2711.009210 +2711.010576 +2711.013406 +2711.109177 +2711.110542 +2711.117002 +2711.209144 +2711.210476 +2711.213140 +2711.216303 +2711.309143 +2711.312940 +2711.315470 +2711.409177 +2711.410542 +2711.413339 +2711.415903 +2711.509143 +2711.512806 +2711.516869 +2711.609276 +2711.613006 +2711.616136 +2711.709310 +2711.710642 +2711.713539 +2711.716869 +2716.706641 +2716.707973 +2716.713101 +2716.718129 +2716.724190 +2716.731382 +2716.739807 +2716.741639 +2716.749398 +2716.759654 +2716.769344 +2716.779301 +2716.790224 +2716.800347 +2716.810836 +2716.822192 +2716.831582 +2716.833447 +2716.843104 +2716.853127 +2716.863484 +2716.865415 +2716.875638 +2716.885861 +2716.897483 +2716.908139 +2716.917929 +2716.928352 +2716.937443 +2716.947799 +2716.949830 +2716.960420 +2716.962418 +2716.972108 +2716.992388 +2716.994386 +2717.004343 +2717.014000 +2717.048465 +2717.058555 +2717.069444 +2717.071975 +2717.081332 +2717.092987 +2717.104675 +2717.117396 +2717.128585 +2717.131016 +2717.140706 +2717.143137 +2717.155458 +2717.179201 +2717.196417 +2717.214932 +2717.226154 +2717.240473 +2717.253926 +2717.264282 +2717.275338 +2717.291655 +2717.302844 +2717.314699 +2717.324256 +2717.334845 +2717.347299 +2717.353027 +2717.371508 +2717.375371 +2717.383896 +2717.395251 +2717.398781 +2717.407372 +2717.418128 +2717.420459 +2717.432447 +2717.444202 +2717.455091 +2717.465747 +2717.477436 +2717.487659 +2717.514665 +2717.525254 +2717.540073 +2717.551262 +2717.562184 +2717.581898 +2717.587159 +2717.593320 +2717.600213 +2717.611102 +2717.613699 +2717.623390 +2717.638141 +2717.647932 +2717.669743 +2717.672773 +2717.680999 +2717.683363 +2717.695651 +2717.698914 +2717.709137 +2717.720759 +2717.731881 +2717.744135 +2717.758488 +2717.770642 +2717.782830 +2717.789823 +2717.797116 +2717.809736 +2717.821225 +2717.824455 +2717.833679 +2717.844635 +2717.847499 +2717.859020 +2717.861385 +2717.871475 +2717.882930 +2717.891821 +2717.903309 +2717.905640 +2717.911834 +2717.919160 +2717.929750 +2717.941305 +2717.952061 +2717.966047 +2717.979300 +2717.992021 +2718.005540 +2718.020592 +2718.031015 +2718.035377 +2718.044868 +2718.058687 +2718.071075 +2718.073972 +2718.083629 +2718.095750 +2718.105107 +2718.111834 +2718.116929 +2718.128884 +2718.139340 +2718.141338 +2718.155124 +2718.168011 +2718.173139 +2718.180399 +2718.193153 +2718.213399 +2718.225587 +2718.236609 +2718.246399 +2718.250928 +2718.259386 +2718.264082 +2718.291820 +2718.299313 +2718.322323 +2718.332713 +2718.335810 +2718.345234 +2718.350628 +2718.358254 +2718.370908 +2718.374371 +2718.384028 +2718.386626 +2718.397748 +2718.401311 +2718.409769 +2718.431547 +2718.454025 +2718.457321 +2718.464348 +2718.474005 +2718.476402 +2718.489456 +2718.502443 +2718.529549 +2718.542803 +2718.556056 +2718.569143 +2718.573705 +2718.584261 +2718.590588 +2718.595383 +2718.609835 +2718.620558 +2718.645600 +2718.650428 +2718.656156 +2718.662449 +2718.673239 +2718.676502 +2718.686126 +2718.688490 +2718.697215 +2718.700112 +2718.707971 +2718.713998 +2718.718460 +2718.729049 +2718.733512 +2718.742170 +2718.745699 +2718.756888 +2718.764780 +2718.770042 +2718.787591 +2718.795749 +2718.810168 +2718.817894 +2718.832080 +2718.837607 +2718.840505 +2718.849928 +2718.875103 +2718.878400 +2718.887857 +2718.890688 +2718.898580 +2718.901610 +2718.913898 +2718.934311 +2718.954157 +2718.959352 +2718.968077 +2718.971806 +2718.993851 +2719.002775 +2719.010934 +2719.019958 +2719.031713 +2719.042669 +2719.052459 +2719.062882 +2719.071607 +2719.076402 +2719.085992 +2719.098247 +2719.110135 +2719.120624 +2719.131846 +2719.138406 +2719.147697 +2719.154324 +2719.159852 +2719.167244 +2719.185193 +2719.217461 +2719.224220 +2719.236142 +2719.249728 +2719.253291 +2719.261916 +2719.267344 +2719.275169 +2719.280398 +2719.287890 +2719.292053 +2719.301143 +2719.304640 +2719.314530 +2719.317727 +2719.321723 +2719.329082 +2719.333478 +2719.341869 +2719.346032 +2719.349995 +2719.357221 +2719.360984 +2719.369875 +2719.373371 +2719.385059 +2719.389155 +2719.397480 +2719.401576 +2719.411400 +2719.416461 +2719.425286 +2719.433811 +2719.439838 +2719.445099 +2719.453824 +2719.456954 +2719.468809 +2719.472905 +2719.481896 +2719.486591 +2719.495849 +2719.499811 +2719.510467 +2719.514696 +2719.518925 +2719.537340 +2719.546664 +2719.557287 +2719.567011 +2719.578532 +2719.581996 +2719.594217 +2719.599145 +2719.610933 +2719.620157 +2719.624453 +2719.635808 +2719.646598 +2719.656221 +2719.662948 +2719.670307 +2719.674969 +2719.684726 +2719.689921 +2719.698812 +2719.711433 +2719.716961 +2719.726118 +2719.731579 +2719.742102 +2719.758685 +2719.768942 +2719.772638 +2719.782628 +2719.786058 +2719.796714 +2719.800577 +2719.811200 +2719.814896 +2719.825019 +2719.828915 +2719.838805 +2719.852092 +2719.866711 +2719.871739 +2719.880297 +2719.884460 +2719.895349 +2719.899744 +2719.910533 +2719.920790 +2719.933111 +2719.947230 +2719.950926 +2719.963314 +2719.981662 +2719.992019 +2719.996248 +2720.007403 +2720.010933 +2720.022122 +2720.034376 +2720.038439 +2720.050094 +2720.058186 +2720.062948 +2720.075835 +2720.079431 +2720.090520 +2720.103640 +2720.114729 +2720.125751 +2720.138539 +2720.153257 +2720.162581 +2720.166178 +2720.177100 +2720.181595 +2720.190020 +2720.193850 +2720.207669 +2720.216960 +2720.232578 +2720.244033 +2720.274669 +2720.278199 +2720.290986 +2720.302341 +2720.316394 +2720.331046 +2720.334576 +2720.348995 +2720.359384 +2720.363746 +2720.376067 +2720.380796 +2720.389754 +2720.397213 +2720.404439 +2720.420057 +2720.447529 +2720.450893 +2720.462514 +2720.476633 +2720.490187 +2720.505704 +2720.511299 +2720.521355 +2720.525052 +2720.538538 +2720.552025 +2720.555388 +2720.569474 +2720.582428 +2720.597313 +2720.611165 +2720.625984 +2720.629447 +2720.640536 +2720.658818 +2720.674635 +2720.685558 +2720.704072 +2720.717226 +2720.720589 +2720.734675 +2720.746463 +2720.749927 +2720.766077 +2720.777699 +2720.781295 +2720.818225 +2720.829813 +2720.844532 +2720.859317 +2720.888788 +2720.901908 +2720.914029 +2720.917492 +2720.932943 +2720.964545 +2721.026550 +2721.040769 +2721.054022 +2721.069274 +2721.081928 +2721.109633 +2721.138238 +2721.155254 +2721.167509 +2721.183259 +2721.197545 +2721.211698 +2721.226549 +2721.268940 +2721.281927 +2721.298544 +2721.374401 +2721.409566 +2721.432443 +2721.452723 +2721.464944 +2721.489520 +2721.504571 +2721.623386 +2721.635540 +2731.707092 +2731.708424 +2731.712053 +2731.731434 +2732.707624 +2732.708956 +2732.712652 +2733.709054 +2733.712251 +2733.714682 +2733.990673 +2734.089474 +2734.707655 +2734.708854 +2734.712350 +2734.714948 +2735.707720 +2735.709152 +2735.712915 +2735.715080 +2736.707453 +2736.712315 +2740.351106 +2741.706882 +2741.708114 +2741.711044 +2741.713076 +2741.727728 +2741.807648 +2741.808946 +2741.811577 +2741.813442 +2741.908147 +2741.909379 +2741.912043 +2741.914008 +2742.008480 +2742.009812 +2742.012543 +2742.014541 +2742.109978 +2742.112776 +2742.212709 +2742.214640 +2742.308680 +2742.310078 +2742.312576 +2742.316172 +2742.408813 +2742.410145 +2742.413008 +2742.415439 +2742.510045 +2742.608513 +2742.609778 +2742.614740 +2742.708712 +2742.712742 +2742.714840 +2742.808779 +2742.810078 +2742.813241 +2742.816638 +2742.908779 +2742.910111 +2742.912808 +2743.008745 +2743.010077 +2743.012908 +2743.108745 +2743.110144 +2743.113274 +2743.208779 +2743.210177 +2743.312841 +2743.408845 +2743.410177 +2743.412941 +2743.510077 +2743.512508 +2743.515272 +2743.608845 +2743.612974 +2743.712841 +2743.808611 +2743.809844 +2743.812907 +2743.908711 +2743.909977 +2743.912641 +2744.008778 +2744.010110 +2744.015604 +2744.108744 +2744.110176 +2744.112907 +2744.208711 +2744.210143 +2744.213173 +2744.310076 +2744.312640 +2744.408777 +2744.410076 +2744.413140 +2744.416903 +2744.508811 +2744.510109 +2744.513006 +2744.608844 +2744.610176 +2744.613206 +2744.617002 +2744.712573 +2744.808777 +2744.812440 +2744.815803 +2744.908843 +2744.912939 +2744.915037 +2745.008644 +2745.010009 +2745.012440 +2745.015104 +2745.108544 +2745.109876 +2745.112939 +2745.208577 +2745.209909 +2745.212173 +2745.215670 +2745.310108 +2745.313072 +2745.408776 +2745.410075 +2745.412339 +2745.416469 +2745.508743 +2745.513272 +2745.516102 +2745.608743 +2745.610075 +2745.612872 +2745.616901 +2745.708743 +2745.808743 +2745.810175 +2745.812439 +2745.816335 +2745.908743 +2745.910008 +2745.916268 +2746.008676 +2746.010041 +2746.012272 +2746.015236 +2746.108809 +2746.110141 +2746.113071 +2746.208809 +2746.210074 +2746.308742 +2746.310074 +2746.315003 +2746.408675 +2746.410041 +2746.412671 +2746.416634 +2746.508509 +2746.509941 +2746.512238 +2746.515602 +2746.608609 +2746.609941 +2746.612804 +2746.616800 +2746.619365 +2746.708675 +2746.709974 +2746.713137 +2746.716201 +2751.706406 +2751.707671 +2751.709902 +2751.716496 +2751.717894 +2751.723622 +2751.725087 +2751.732346 +2751.740905 +2751.742436 +2751.750528 +2751.760185 +2751.761750 +2751.771541 +2751.779799 +2751.789856 +2751.800378 +2751.806006 +2751.815164 +2751.817095 +2751.826852 +2751.837808 +2751.849263 +2751.851061 +2751.860318 +2751.870175 +2751.872040 +2751.881664 +2751.884095 +2751.893518 +2751.903076 +2751.912799 +2751.922956 +2751.924587 +2751.934744 +2751.937042 +2751.946132 +2751.957554 +2751.959486 +2751.971374 +2751.982496 +2751.995317 +2752.006672 +2752.008936 +2752.017927 +2752.028716 +2752.043002 +2752.045400 +2752.054624 +2752.067811 +2752.080165 +2752.082163 +2752.093252 +2752.104707 +2752.118527 +2752.128949 +2752.143468 +2752.153425 +2752.166312 +2752.177068 +2752.188190 +2752.199745 +2752.214297 +2752.226618 +2752.229682 +2752.239572 +2752.242003 +2752.252093 +2752.264813 +2752.275869 +2752.287824 +2752.299346 +2752.312233 +2752.335876 +2752.350195 +2752.361850 +2752.372905 +2752.377434 +2752.386891 +2752.399945 +2752.413232 +2752.425120 +2752.444001 +2752.465013 +2752.477068 +2752.479499 +2752.489888 +2752.500777 +2752.503907 +2752.515895 +2752.526052 +2752.537640 +2752.548463 +2752.559618 +2752.570574 +2752.584227 +2752.591387 +2752.600477 +2752.609369 +2752.617727 +2752.627917 +2752.648330 +2752.659285 +2752.661749 +2752.674670 +2752.684427 +2752.687524 +2752.697014 +2752.709801 +2752.721090 +2752.732812 +2752.760151 +2752.771773 +2752.781363 +2752.785093 +2752.794283 +2752.796814 +2752.832312 +2752.835009 +2752.844467 +2752.847164 +2752.857553 +2752.868409 +2752.870607 +2752.874903 +2752.882695 +2752.886158 +2752.896781 +2752.904040 +2752.909934 +2752.921689 +2752.931446 +2752.934976 +2752.946165 +2752.950893 +2752.959718 +2752.969841 +2752.972938 +2752.983028 +2752.993850 +2753.022255 +2753.033944 +2753.044799 +2753.047363 +2753.057986 +2753.060550 +2753.072039 +2753.074237 +2753.085159 +2753.087989 +2753.092885 +2753.098645 +2753.100943 +2753.111033 +2753.113064 +2753.115828 +2753.124886 +2753.129115 +2753.131846 +2753.140104 +2753.142801 +2753.146198 +2753.152325 +2753.161816 +2753.165212 +2753.173670 +2753.176634 +2753.186324 +2753.193284 +2753.206937 +2753.219824 +2753.233544 +2753.239138 +2753.248695 +2753.258552 +2753.280630 +2753.283194 +2753.294183 +2753.297813 +2753.307836 +2753.310200 +2753.324153 +2753.334143 +2753.336840 +2753.347130 +2753.350660 +2753.359917 +2753.363647 +2753.373137 +2753.387523 +2753.391985 +2753.400876 +2753.405305 +2753.414130 +2753.425352 +2753.430380 +2753.437573 +2753.447296 +2753.458918 +2753.461649 +2753.471805 +2753.474536 +2753.485791 +2753.495515 +2753.498612 +2753.521555 +2753.530713 +2753.540603 +2753.548728 +2753.552458 +2753.561249 +2753.564746 +2753.568708 +2753.574835 +2753.577366 +2753.587723 +2753.591053 +2753.600576 +2753.603407 +2753.612764 +2753.615128 +2753.627050 +2753.629481 +2753.634442 +2753.641902 +2753.644732 +2753.648828 +2753.654356 +2753.657519 +2753.666410 +2753.668775 +2753.671738 +2753.680530 +2753.683560 +2753.686857 +2753.694449 +2753.697180 +2753.707336 +2753.713264 +2753.720590 +2753.723487 +2753.733410 +2753.744932 +2753.754356 +2753.766477 +2753.777266 +2753.781196 +2753.789953 +2753.795348 +2753.802707 +2753.806104 +2753.816560 +2753.819257 +2753.830579 +2753.835042 +2753.843733 +2753.846430 +2753.856154 +2753.858918 +2753.870107 +2753.873370 +2753.876966 +2753.883926 +2753.887389 +2753.892384 +2753.898345 +2753.901675 +2753.911265 +2753.915128 +2753.924352 +2753.927749 +2753.934875 +2753.944499 +2753.949893 +2753.953157 +2753.962614 +2753.972704 +2753.981961 +2753.991452 +2754.007802 +2754.017659 +2754.021255 +2754.032144 +2754.035508 +2754.045198 +2754.048595 +2754.057186 +2754.060416 +2754.071438 +2754.079430 +2754.083959 +2754.094016 +2754.099144 +2754.105671 +2754.114295 +2754.120856 +2754.132311 +2754.140836 +2754.145631 +2754.149094 +2754.157286 +2754.159717 +2754.172038 +2754.187522 +2754.191052 +2754.199777 +2754.213330 +2754.226450 +2754.229713 +2754.232977 +2754.241435 +2754.244498 +2754.254222 +2754.258085 +2754.267642 +2754.270472 +2754.273469 +2754.282294 +2754.285191 +2754.287955 +2754.304239 +2754.311431 +2754.314728 +2754.323453 +2754.325984 +2754.337139 +2754.350959 +2754.354755 +2754.366210 +2754.370572 +2754.378198 +2754.380929 +2754.385890 +2754.392783 +2754.396813 +2754.406869 +2754.420622 +2754.424052 +2754.434242 +2754.437672 +2754.448328 +2754.451724 +2754.461714 +2754.465677 +2754.475434 +2754.489487 +2754.503672 +2754.508201 +2754.517592 +2754.520855 +2754.531345 +2754.534808 +2754.546529 +2754.551458 +2754.560416 +2754.575034 +2754.588587 +2754.592250 +2754.601807 +2754.607901 +2754.617259 +2754.620855 +2754.632011 +2754.635940 +2754.645231 +2754.649293 +2754.659983 +2754.674734 +2754.679163 +2754.688421 +2754.703439 +2754.716459 +2754.719390 +2754.722520 +2754.730345 +2754.733309 +2754.744798 +2754.748527 +2754.757651 +2754.761215 +2754.772470 +2754.776433 +2754.785490 +2754.790552 +2754.800675 +2754.804105 +2754.815227 +2754.818724 +2754.829280 +2754.844231 +2754.848294 +2754.857718 +2754.862313 +2754.871704 +2754.875567 +2754.886756 +2754.890385 +2754.901241 +2754.905703 +2754.914894 +2754.920522 +2754.930678 +2754.933975 +2754.945064 +2754.948527 +2754.958584 +2754.962979 +2754.973435 +2754.977665 +2754.988920 +2754.993049 +2755.003139 +2755.016959 +2755.031611 +2755.045696 +2755.061248 +2755.065676 +2755.075900 +2755.080328 +2755.090485 +2755.094581 +2755.104504 +2755.110132 +2755.120222 +2755.137438 +2755.140502 +2755.151890 +2755.157784 +2755.166342 +2755.170338 +2755.181028 +2755.184291 +2755.196845 +2755.210698 +2755.214461 +2755.225650 +2755.229512 +2755.239169 +2755.254288 +2755.258450 +2755.269706 +2755.273801 +2755.284591 +2755.289086 +2755.300342 +2755.304338 +2755.314328 +2755.317458 +2755.329313 +2755.333475 +2755.346629 +2755.358883 +2755.372103 +2755.383358 +2755.388020 +2755.398943 +2755.402539 +2755.413828 +2755.417191 +2755.428380 +2755.432742 +2755.444131 +2755.448460 +2755.459349 +2755.473402 +2755.490152 +2755.505003 +2755.508800 +2755.520987 +2755.523918 +2755.536538 +2755.543931 +2755.551890 +2755.556518 +2755.567041 +2755.581094 +2755.584624 +2755.596112 +2755.599575 +2755.612529 +2755.628913 +2755.641200 +2755.644597 +2755.657118 +2755.660148 +2755.672569 +2755.675133 +2755.687421 +2755.702173 +2755.705103 +2755.718390 +2755.721387 +2755.734673 +2755.747794 +2755.750957 +2755.765143 +2755.778097 +2755.781127 +2755.796145 +2755.810331 +2755.813295 +2755.827547 +2755.840667 +2755.873534 +2755.887920 +2755.903405 +2755.915526 +2755.919122 +2755.931776 +2755.947161 +2755.961813 +2755.965076 +2755.979295 +2755.995512 +2756.008999 +2756.026615 +2756.039069 +2756.056252 +2756.070970 +2756.085988 +2756.099275 +2756.102372 +2756.117124 +2756.132542 +2756.219255 +2756.231709 +2756.246461 +2756.261013 +2756.275965 +2756.291683 +2756.304403 +2756.308333 +2756.322185 +2756.337337 +2756.353587 +2756.367773 +2756.380993 +2756.398476 +2756.454653 +2756.469305 +2756.472402 +2756.488153 +2756.499408 +2756.513061 +2756.561479 +2756.589618 +2756.612561 +2756.629245 +2756.642065 +2756.705235 +2766.707390 +2766.709488 +2766.712052 +2766.716514 +2767.706456 +2767.707688 +2767.710486 +2767.713716 +2768.707687 +2768.710351 +2768.713715 +2769.706421 +2769.707820 +2770.706320 +2770.710416 +2771.706119 +2771.710348 +2773.124500 +2773.726863 +2773.767856 +2775.005916 +2775.143179 +2775.277444 +2775.767321 +2776.705715 +2776.707013 +2776.709844 +2776.711642 +2776.807713 +2776.907013 +2776.908279 +2776.912474 +2777.007280 +2777.008578 +2777.010943 +2777.012841 +2777.107379 +2777.108645 +2777.111375 +2777.113307 +2777.207446 +2777.208745 +2777.214406 +2777.307579 +2777.308878 +2777.311408 +2777.313973 +2777.407546 +2777.408878 +2777.411342 +2777.413939 +2777.507579 +2777.509144 +2777.511708 +2777.607612 +2777.609044 +2777.611275 +2777.613573 +2777.707579 +2777.708911 +2777.713839 +2777.807645 +2777.808944 +2777.811441 +2777.814338 +2777.907578 +2777.908977 +2777.911474 +2777.914971 +2778.007645 +2778.011441 +2778.014005 +2778.107645 +2778.108977 +2778.111741 +2778.114471 +2778.207645 +2778.209043 +2778.212040 +2778.307645 +2778.311907 +2778.314971 +2778.408943 +2778.411274 +2778.414038 +2778.507611 +2778.509043 +2778.511907 +2778.515736 +2778.607644 +2778.608910 +2778.611574 +2778.707644 +2778.708976 +2778.711307 +2778.714171 +2778.809009 +2778.811274 +2778.815137 +2778.907611 +2778.911440 +2778.914371 +2779.007611 +2779.009076 +2779.011607 +2779.014570 +2779.108976 +2779.111773 +2779.115503 +2779.207644 +2779.215469 +2779.307610 +2779.311706 +2779.314736 +2779.407643 +2779.409009 +2779.415369 +2779.507643 +2779.509009 +2779.511306 +2779.514270 +2779.611739 +2779.614603 +2779.707610 +2779.714303 +2779.807643 +2779.811439 +2779.907676 +2779.909042 +2779.911839 +2779.914736 +2780.007709 +2780.009008 +2780.014736 +2780.109108 +2780.111739 +2780.114536 +2780.209108 +2780.211805 +2780.214436 +2780.407709 +2780.412038 +2780.414769 +2780.507676 +2780.511905 +2780.514968 +2780.607709 +2780.609074 +2780.611738 +2780.615235 +2780.707642 +2780.711405 +2780.807642 +2780.814235 +2780.907675 +2780.909074 +2780.911438 +2780.914768 +2781.007742 +2781.011172 +2781.014635 +2781.107708 +2781.109074 +2781.111771 +2781.207708 +2781.209074 +2781.211804 +2781.307608 +2781.407608 +2781.408940 +2781.411937 +2781.415567 +2781.507641 +2781.508940 +2781.511271 +2781.514002 +2781.607708 +2781.611737 +2781.615533 +2781.707674 +2781.709006 +2781.711304 +2786.705572 +2786.706870 +2786.709967 +2786.712265 +2786.718259 +2786.723087 +2786.725185 +2786.729814 +2786.737273 +2786.746930 +2786.752891 +2786.759451 +2786.761815 +2786.767776 +2786.777100 +2786.778931 +2786.787556 +2786.789388 +2786.801043 +2786.810433 +2786.812465 +2786.821555 +2786.832877 +2786.835575 +2786.845498 +2786.854489 +2786.862514 +2786.870540 +2786.872371 +2786.882661 +2786.893450 +2786.895481 +2786.904373 +2786.906470 +2786.929980 +2786.932045 +2786.940436 +2786.951725 +2786.954323 +2786.962947 +2786.970839 +2786.973204 +2786.980896 +2786.989754 +2786.991718 +2787.002574 +2787.005538 +2787.012498 +2787.014529 +2787.024685 +2787.026850 +2787.061482 +2787.072970 +2787.075601 +2787.083527 +2787.093850 +2787.104039 +2787.115961 +2787.125784 +2787.135508 +2787.143333 +2787.153889 +2787.174169 +2787.180629 +2787.190886 +2787.193417 +2787.204439 +2787.206836 +2787.228382 +2787.236973 +2787.245365 +2787.256387 +2787.267143 +2787.277133 +2787.284459 +2787.293550 +2787.313896 +2787.316294 +2787.325018 +2787.335774 +2787.338571 +2787.349027 +2787.356853 +2787.363779 +2787.372171 +2787.383859 +2787.392551 +2787.396480 +2787.405238 +2787.410533 +2787.420556 +2787.430546 +2787.448761 +2787.453190 +2787.455488 +2787.476333 +2787.488122 +2787.491751 +2787.501475 +2787.503440 +2787.523320 +2787.535274 +2787.545464 +2787.549094 +2787.556387 +2787.565977 +2787.583093 +2787.592950 +2787.602041 +2787.611831 +2787.615561 +2787.627249 +2787.629746 +2787.634875 +2787.641734 +2787.659683 +2787.667009 +2787.669207 +2787.680362 +2787.682993 +2787.692717 +2787.697246 +2787.704905 +2787.708534 +2787.718291 +2787.730679 +2787.747262 +2787.756353 +2787.759616 +2787.767442 +2787.771471 +2787.791085 +2787.802807 +2787.804971 +2787.815960 +2787.818458 +2787.828914 +2787.842034 +2787.844365 +2787.855321 +2787.867975 +2787.876633 +2787.883526 +2787.893915 +2787.897412 +2787.906936 +2787.908934 +2787.920422 +2787.923086 +2787.932743 +2787.935640 +2787.938371 +2787.945164 +2787.949526 +2787.956320 +2787.959317 +2787.968041 +2787.970938 +2787.979696 +2787.981961 +2787.992617 +2788.001408 +2788.012896 +2788.019723 +2788.022853 +2788.029813 +2788.033842 +2788.040735 +2788.043299 +2788.053722 +2788.056919 +2788.066709 +2788.073136 +2788.077065 +2788.087322 +2788.089986 +2788.099576 +2788.102806 +2788.111031 +2788.134608 +2788.146396 +2788.155121 +2788.162913 +2788.165277 +2788.175067 +2788.177498 +2788.184824 +2788.197412 +2788.207368 +2788.220588 +2788.229413 +2788.231711 +2788.237605 +2788.242999 +2788.249360 +2788.256053 +2788.260848 +2788.268074 +2788.271904 +2788.299509 +2788.303505 +2788.306802 +2788.311564 +2788.318157 +2788.320488 +2788.325750 +2788.330612 +2788.334141 +2788.354654 +2788.356985 +2788.359150 +2788.367908 +2788.382060 +2788.384458 +2788.388287 +2788.394048 +2788.396912 +2788.399876 +2788.404771 +2788.408201 +2788.410931 +2788.421454 +2788.424851 +2788.434807 +2788.447162 +2788.450492 +2788.459150 +2788.461514 +2788.473136 +2788.475333 +2788.485989 +2788.492683 +2788.499942 +2788.502639 +2788.525949 +2788.531377 +2788.534940 +2788.539802 +2788.552723 +2788.555187 +2788.558284 +2788.561647 +2788.564910 +2788.567275 +2788.592449 +2788.594780 +2788.605670 +2788.618057 +2788.620288 +2788.631777 +2788.635140 +2788.647295 +2788.657817 +2788.661281 +2788.668740 +2788.681460 +2788.694514 +2788.697145 +2788.700341 +2788.709932 +2788.714594 +2788.723352 +2788.729546 +2788.734274 +2788.747528 +2788.750591 +2788.760415 +2788.762746 +2788.773635 +2788.782293 +2788.789219 +2788.812729 +2788.822519 +2788.844730 +2788.850291 +2788.854254 +2788.863278 +2788.865942 +2788.868773 +2788.876831 +2788.883358 +2788.890318 +2788.903738 +2788.931044 +2788.935539 +2788.938936 +2788.945230 +2788.958117 +2788.961114 +2788.968240 +2788.974933 +2788.983924 +2789.001240 +2789.005203 +2789.010664 +2789.016092 +2789.022919 +2789.034207 +2789.039469 +2789.050524 +2789.054154 +2789.063212 +2789.077031 +2789.081127 +2789.089052 +2789.091916 +2789.101540 +2789.104037 +2789.107434 +2789.114827 +2789.118256 +2789.127514 +2789.130544 +2789.135206 +2789.141999 +2789.145829 +2789.154420 +2789.156718 +2789.167274 +2789.182426 +2789.187054 +2789.199375 +2789.202805 +2789.211430 +2789.213827 +2789.224017 +2789.227247 +2789.236871 +2789.247261 +2789.261380 +2789.265276 +2789.272768 +2789.275033 +2789.277897 +2789.287087 +2789.290417 +2789.300840 +2789.303305 +2789.306668 +2789.313827 +2789.316258 +2789.327347 +2789.341100 +2789.353987 +2789.356918 +2789.359715 +2789.367707 +2789.370737 +2789.380128 +2789.382892 +2789.386455 +2789.394913 +2789.397477 +2789.403038 +2789.409065 +2789.412961 +2789.421553 +2789.424317 +2789.427380 +2789.435506 +2789.443531 +2789.454886 +2789.462978 +2789.467707 +2789.475965 +2789.478862 +2789.482325 +2789.490351 +2789.492682 +2789.495978 +2789.504603 +2789.507034 +2789.509831 +2789.518855 +2789.526048 +2789.531543 +2789.534407 +2789.537337 +2789.544996 +2789.547793 +2789.551190 +2789.559848 +2789.564976 +2789.573368 +2789.577630 +2789.588253 +2789.592182 +2789.601340 +2789.604869 +2789.611230 +2789.615692 +2789.619888 +2789.629345 +2789.632209 +2789.642865 +2789.645629 +2789.657450 +2789.670570 +2789.673201 +2789.676431 +2789.685156 +2789.688153 +2789.691116 +2789.699142 +2789.702372 +2789.713527 +2789.718056 +2789.727313 +2789.730677 +2789.740267 +2789.742765 +2789.745828 +2789.755086 +2789.757949 +2789.769505 +2789.783124 +2789.786454 +2789.797177 +2789.799774 +2789.811862 +2789.814759 +2789.825981 +2789.829644 +2789.840001 +2789.844396 +2789.853620 +2789.858016 +2789.867540 +2789.869804 +2789.873301 +2789.882392 +2789.885821 +2789.895878 +2789.909265 +2789.912628 +2789.922851 +2789.935139 +2789.952222 +2789.966507 +2789.972002 +2789.980760 +2789.984889 +2789.994280 +2789.998409 +2790.007799 +2790.013394 +2790.023217 +2790.028912 +2790.036804 +2790.040766 +2790.050690 +2790.057383 +2790.063743 +2790.078362 +2790.092781 +2790.097809 +2790.107533 +2790.121719 +2790.135238 +2790.139201 +2790.151089 +2790.164343 +2790.167406 +2790.179128 +2790.182325 +2790.193513 +2790.198775 +2790.207433 +2790.211495 +2790.221885 +2790.226181 +2790.236837 +2790.240367 +2790.252987 +2790.266141 +2790.269005 +2790.281126 +2790.284789 +2790.295778 +2790.299208 +2790.310263 +2790.313560 +2790.326181 +2790.330243 +2790.340833 +2790.343763 +2790.356617 +2790.360446 +2790.370503 +2790.374832 +2790.385854 +2790.390350 +2790.400440 +2790.403703 +2790.415192 +2790.418455 +2790.430476 +2790.434272 +2790.444196 +2790.456916 +2790.460779 +2790.473034 +2790.487453 +2790.491215 +2790.502038 +2790.505768 +2790.516856 +2790.520186 +2790.532474 +2790.545927 +2790.550623 +2790.562144 +2790.574432 +2790.578461 +2790.591515 +2790.604835 +2790.609264 +2790.619987 +2790.623483 +2790.634272 +2790.637569 +2790.649690 +2790.654852 +2790.663709 +2790.668804 +2790.679527 +2790.692614 +2790.709297 +2790.720586 +2790.723949 +2790.736204 +2790.739700 +2790.751488 +2790.755418 +2790.767539 +2790.770536 +2790.781025 +2790.795145 +2790.813693 +2790.829510 +2790.849324 +2790.873100 +2790.886420 +2790.900306 +2790.904135 +2790.915591 +2790.929543 +2790.933206 +2790.948558 +2790.958015 +2790.971668 +2790.984588 +2790.999840 +2791.015324 +2791.070935 +2791.098175 +2791.112893 +2791.129676 +2791.144062 +2791.147225 +2791.159613 +2791.175997 +2791.188984 +2791.203835 +2791.208031 +2791.220119 +2791.233772 +2791.237602 +2791.252620 +2791.264142 +2791.278161 +2791.357515 +2791.370635 +2791.384155 +2791.402636 +2791.413492 +2791.442397 +2791.454884 +2791.471567 +2791.485787 +2791.501771 +2791.524881 +2791.539233 +2791.553053 +2791.585453 +2791.598707 +2791.612893 +2791.629543 +2791.671234 +2791.697008 +2801.705923 +2801.707222 +2801.709386 +2801.711850 +2802.706255 +2802.707554 +2802.709885 +2802.712449 +2803.707619 +2803.710050 +2803.712514 +2804.706286 +2804.707485 +2804.709949 +2804.712080 +2805.706318 +2805.709915 +2805.712879 +2805.949675 +2806.706384 +2806.710247 +2806.712445 +2808.459163 +2808.501187 +2808.518603 +2808.907980 +2809.143211 +2810.025195 +2810.253234 +2811.705946 +2811.707145 +2811.709642 +2811.713472 +2811.808111 +2811.810508 +2811.812706 +2811.907311 +2811.911041 +2811.912906 +2812.007611 +2812.008910 +2812.011174 +2812.107777 +2812.109043 +2812.111607 +2812.113738 +2812.207877 +2812.209176 +2812.211573 +2812.213738 +2812.309176 +2812.311706 +2812.313971 +2812.407877 +2812.409275 +2812.411939 +2812.415136 +2812.507977 +2812.509209 +2812.512073 +2812.607943 +2812.615935 +2812.707943 +2812.709308 +2812.714170 +2812.807976 +2812.809308 +2812.815735 +2812.907943 +2812.909275 +2812.914237 +2813.008043 +2813.009375 +2813.012338 +2813.015402 +2813.107976 +2813.109408 +2813.112238 +2813.207943 +2813.209308 +2813.215269 +2813.308009 +2813.309308 +2813.311872 +2813.315035 +2813.408009 +2813.409274 +2813.412038 +2813.415901 +2813.507976 +2813.509308 +2813.607809 +2813.609108 +2813.611505 +2813.707842 +2813.711505 +2813.714735 +2813.808109 +2813.809441 +2813.812071 +2813.908042 +2813.909341 +2813.911638 +2813.915534 +2814.008075 +2814.009374 +2814.015767 +2814.108042 +2814.109440 +2814.111838 +2814.115434 +2814.208075 +2814.209440 +2814.211871 +2814.215701 +2814.309240 +2814.311238 +2814.315068 +2814.407975 +2814.409307 +2814.412037 +2814.508041 +2814.509473 +2814.511804 +2814.608074 +2814.609473 +2814.611971 +2814.615234 +2814.708074 +2814.709373 +2814.714934 +2814.808108 +2814.809406 +2814.812070 +2814.815067 +2814.908074 +2814.909473 +2814.911770 +2815.007908 +2815.009206 +2815.012237 +2815.108007 +2815.114434 +2815.208074 +2815.219129 +2815.308174 +2815.309506 +2815.311604 +2815.314034 +2815.408174 +2815.409472 +2815.411770 +2815.414767 +2815.508074 +2815.509472 +2815.511836 +2815.516432 +2815.608140 +2815.609539 +2815.614833 +2815.708107 +2815.712269 +2815.715666 +2815.808140 +2815.814600 +2815.815199 +2815.908073 +2815.911536 +2815.915166 +2816.007873 +2816.011703 +2816.015899 +2816.208139 +2816.209438 +2816.211636 +2816.214200 +2816.308006 +2816.311836 +2816.314999 +2816.408106 +2816.409405 +2816.411636 +2816.414766 +2816.508139 +2816.509504 +2816.511802 +2816.515332 +2816.608206 +2816.609571 +2816.611669 +2816.614799 +2816.707906 +2816.709371 +2816.711835 +2816.714299 +2820.497046 +2820.764978 +2821.706169 +2821.707435 +2821.709699 +2821.723585 +2821.725483 +2821.731610 +2821.739036 +2821.743665 +2821.751058 +2821.759183 +2821.767708 +2821.769173 +2821.788087 +2821.790119 +2821.800109 +2821.808633 +2821.818590 +2821.820555 +2821.829413 +2821.831644 +2821.840368 +2821.842433 +2821.850658 +2821.859982 +2821.862979 +2821.870938 +2821.878996 +2821.887421 +2821.896179 +2821.898443 +2821.908700 +2821.916725 +2821.926882 +2821.935973 +2821.938470 +2821.945863 +2821.948060 +2821.957518 +2821.959582 +2821.968274 +2821.978763 +2821.980661 +2821.990351 +2822.000575 +2822.010565 +2822.012596 +2822.022553 +2822.029712 +2822.031544 +2822.041833 +2822.054587 +2822.057185 +2822.064577 +2822.076166 +2822.084324 +2822.091817 +2822.093815 +2822.103072 +2822.105037 +2822.115859 +2822.118656 +2822.129945 +2822.144331 +2822.154454 +2822.156385 +2822.166642 +2822.168806 +2822.180062 +2822.190351 +2822.201473 +2822.211763 +2822.213894 +2822.222452 +2822.238370 +2822.246895 +2822.249326 +2822.260181 +2822.262479 +2822.272536 +2822.275333 +2822.284291 +2822.294947 +2822.303305 +2822.320388 +2822.331177 +2822.333375 +2822.343598 +2822.346795 +2822.357317 +2822.366575 +2822.389885 +2822.392749 +2822.403238 +2822.412362 +2822.425949 +2822.439002 +2822.449159 +2822.461047 +2822.468539 +2822.471070 +2822.478862 +2822.488753 +2822.502306 +2822.508233 +2822.515925 +2822.518156 +2822.528280 +2822.538802 +2822.549225 +2822.555719 +2822.570571 +2822.576831 +2822.579961 +2822.588120 +2822.599941 +2822.602838 +2822.612995 +2822.617390 +2822.625216 +2822.635106 +2822.637470 +2822.645829 +2822.654853 +2822.663777 +2822.674400 +2822.676764 +2822.685223 +2822.687820 +2822.696045 +2822.699209 +2822.707234 +2822.709931 +2822.719455 +2822.733075 +2822.743364 +2822.747860 +2822.753721 +2822.763811 +2822.765842 +2822.777297 +2822.779894 +2822.789352 +2822.801406 +2822.810231 +2822.813794 +2822.821753 +2822.833008 +2822.835672 +2822.845396 +2822.848825 +2822.857517 +2822.859748 +2822.868939 +2822.871370 +2822.885755 +2822.893914 +2822.896478 +2822.906401 +2822.908632 +2822.917790 +2822.929445 +2822.932275 +2822.940667 +2822.944263 +2822.952388 +2822.955286 +2822.971336 +2822.983457 +2822.986954 +2822.995146 +2822.999908 +2823.005069 +2823.016291 +2823.020021 +2823.029112 +2823.031509 +2823.042532 +2823.045295 +2823.049258 +2823.066474 +2823.069704 +2823.077929 +2823.082125 +2823.089751 +2823.101273 +2823.109398 +2823.117090 +2823.133907 +2823.141133 +2823.144196 +2823.151356 +2823.160314 +2823.169238 +2823.181159 +2823.183091 +2823.193147 +2823.202238 +2823.207333 +2823.210463 +2823.219654 +2823.225948 +2823.231609 +2823.241033 +2823.251089 +2823.259881 +2823.263044 +2823.270870 +2823.277896 +2823.281259 +2823.291682 +2823.294113 +2823.304636 +2823.318422 +2823.322451 +2823.331176 +2823.333507 +2823.343863 +2823.346261 +2823.349058 +2823.357982 +2823.360780 +2823.363810 +2823.370770 +2823.373567 +2823.376597 +2823.383557 +2823.385954 +2823.391016 +2823.396244 +2823.398275 +2823.401472 +2823.404436 +2823.409398 +2823.411695 +2823.417756 +2823.422851 +2823.424882 +2823.427779 +2823.435938 +2823.438335 +2823.446860 +2823.449324 +2823.460447 +2823.462478 +2823.465075 +2823.468439 +2823.473900 +2823.478462 +2823.481359 +2823.486587 +2823.493180 +2823.499341 +2823.501372 +2823.504469 +2823.514093 +2823.517723 +2823.524549 +2823.527446 +2823.537769 +2823.541099 +2823.546261 +2823.549691 +2823.552221 +2823.555818 +2823.561246 +2823.564276 +2823.573300 +2823.576597 +2823.594945 +2823.597676 +2823.605068 +2823.608032 +2823.616624 +2823.618721 +2823.632408 +2823.637669 +2823.643297 +2823.655118 +2823.657483 +2823.665974 +2823.670370 +2823.675764 +2823.681892 +2823.684489 +2823.688618 +2823.694013 +2823.696544 +2823.707866 +2823.713160 +2823.718522 +2823.725248 +2823.729144 +2823.731808 +2823.741565 +2823.750290 +2823.753886 +2823.769004 +2823.772468 +2823.782125 +2823.786420 +2823.794446 +2823.796943 +2823.808032 +2823.820386 +2823.830343 +2823.838501 +2823.842364 +2823.854119 +2823.870469 +2823.873733 +2823.881758 +2823.886154 +2823.892714 +2823.895012 +2823.903270 +2823.906367 +2823.908565 +2823.918621 +2823.921319 +2823.924549 +2823.933473 +2823.935704 +2823.938568 +2823.946560 +2823.951955 +2823.964708 +2823.971435 +2823.973799 +2823.977329 +2823.985288 +2823.987985 +2823.997209 +2824.000106 +2824.004469 +2824.009364 +2824.011628 +2824.015391 +2824.021818 +2824.033440 +2824.040799 +2824.046360 +2824.054119 +2824.056716 +2824.069137 +2824.073833 +2824.079360 +2824.082790 +2824.091082 +2824.093380 +2824.104702 +2824.117988 +2824.120219 +2824.125547 +2824.131275 +2824.143430 +2824.145927 +2824.149757 +2824.156783 +2824.159280 +2824.167805 +2824.170303 +2824.181258 +2824.192980 +2824.198708 +2824.205667 +2824.208265 +2824.219420 +2824.233173 +2824.244828 +2824.247659 +2824.258614 +2824.261411 +2824.264875 +2824.274232 +2824.277196 +2824.299107 +2824.301871 +2824.310296 +2824.312827 +2824.323716 +2824.327845 +2824.337735 +2824.346893 +2824.351055 +2824.357349 +2824.372933 +2824.378727 +2824.384488 +2824.394745 +2824.415557 +2824.419886 +2824.426813 +2824.438767 +2824.450056 +2824.453952 +2824.461778 +2824.470036 +2824.481491 +2824.487019 +2824.494578 +2824.497275 +2824.509263 +2824.511861 +2824.522683 +2824.525780 +2824.535537 +2824.538234 +2824.544162 +2824.549823 +2824.553652 +2824.563143 +2824.567472 +2824.576796 +2824.579127 +2824.590415 +2824.593213 +2824.604768 +2824.610129 +2824.618054 +2824.621651 +2824.631208 +2824.635237 +2824.644195 +2824.648890 +2824.657515 +2824.660845 +2824.671235 +2824.684921 +2824.689050 +2824.696742 +2824.699839 +2824.708497 +2824.711228 +2824.723083 +2824.726180 +2824.736769 +2824.740032 +2824.750156 +2824.753186 +2824.763709 +2824.766939 +2824.777328 +2824.780725 +2824.790915 +2824.794511 +2824.804235 +2824.808064 +2824.820152 +2824.832040 +2824.836469 +2824.845693 +2824.851987 +2824.859946 +2824.862077 +2824.865607 +2824.874631 +2824.878394 +2824.888750 +2824.893745 +2824.901904 +2824.904201 +2824.915923 +2824.918687 +2824.931940 +2824.935503 +2824.946559 +2824.959013 +2824.962443 +2824.973732 +2824.977095 +2824.983922 +2824.988750 +2824.993345 +2825.001837 +2825.006932 +2825.016289 +2825.021351 +2825.030575 +2825.036136 +2825.044328 +2825.048091 +2825.058280 +2825.061710 +2825.074331 +2825.077828 +2825.087818 +2825.092413 +2825.102636 +2825.106133 +2825.116289 +2825.119852 +2825.123548 +2825.131807 +2825.135170 +2825.145293 +2825.148990 +2825.159945 +2825.164141 +2825.174398 +2825.179925 +2825.200738 +2825.217022 +2825.223848 +2825.230541 +2825.236036 +2825.244028 +2825.249822 +2825.257514 +2825.262476 +2825.271534 +2825.284854 +2825.298373 +2825.311460 +2825.316322 +2825.325879 +2825.340565 +2825.344827 +2825.354717 +2825.368803 +2825.372066 +2825.383055 +2825.387151 +2825.398040 +2825.412892 +2825.427444 +2825.441297 +2825.447890 +2825.457514 +2825.470102 +2825.475030 +2825.482955 +2825.501204 +2825.509928 +2825.516022 +2825.538666 +2825.551021 +2825.562609 +2825.567937 +2825.576329 +2825.581523 +2825.590781 +2825.608696 +2825.617288 +2825.631673 +2825.644760 +2825.658813 +2825.672532 +2825.676328 +2825.688883 +2825.692745 +2825.704334 +2825.708030 +2825.721017 +2825.733238 +2825.736601 +2825.748823 +2825.752319 +2825.763574 +2825.777627 +2825.782289 +2825.793278 +2825.796941 +2825.807098 +2825.810894 +2825.826178 +2825.838733 +2825.853085 +2825.869868 +2825.881556 +2825.896575 +2825.911360 +2825.915589 +2825.929175 +2825.939865 +2825.956048 +2825.974430 +2826.014290 +2826.025279 +2826.041263 +2826.052752 +2826.067137 +2826.081523 +2826.095442 +2826.109661 +2826.125545 +2826.140164 +2826.157880 +2826.170867 +2826.183887 +2826.199438 +2826.214024 +2826.228109 +2826.244227 +2826.258013 +2826.270400 +2826.284953 +2826.299105 +2826.313657 +2826.329674 +2826.390913 +2826.402568 +2826.431373 +2826.445925 +2826.481056 +2826.495076 +2826.523347 +2826.559311 +2826.587783 +2826.600070 +2826.615522 +2826.618918 +2826.634136 +2826.647290 +2826.650020 +2826.666304 +2826.679058 +2826.696474 +2835.881347 +2835.882845 +2835.885609 +2836.881279 +2836.886107 +2837.881511 +2837.883109 +2837.885973 +2838.284275 +2838.881743 +2838.887437 +2839.881442 +2839.882941 +2843.104783 +2844.003583 +2844.084735 +2844.881171 +2844.882470 +2844.886566 +2844.982203 +2844.983602 +2844.986299 +2845.082603 +2845.084035 +2845.086732 +2845.182902 +2845.184401 +2845.186865 +2845.284534 +2845.286965 +2845.291627 +2845.295623 +2845.383002 +2845.391660 +2845.483035 +2845.484467 +2845.487431 +2845.489962 +2845.583102 +2845.584600 +2845.587564 +2845.590428 +2845.683102 +2845.688629 +2845.787963 +2845.883168 +2845.884700 +2845.888063 +2846.083101 +2846.087830 +2846.283201 +2846.383201 +2846.387297 +2846.389628 +2846.488762 +2846.583201 +2846.683167 +2846.688262 +2846.783267 +2846.787729 +2846.789927 +2846.883234 +2846.890227 +2846.987496 +2847.083233 +2847.087229 +2847.183267 +2847.188928 +2847.283167 +2847.387962 +2847.483166 +2847.583233 +2847.587862 +2847.594189 +2847.687429 +2847.783233 +2847.883299 +2847.894455 +2847.983299 +2847.984598 +2848.083299 +2848.091091 +2848.183266 +2848.187395 +2848.283232 +2848.284531 +2848.287694 +2848.290691 +2848.383299 +2848.389826 +2848.483265 +2848.484564 +2848.583332 +2848.584697 +2848.587727 +2848.683298 +2848.684597 +2848.687461 +2848.783332 +2848.788027 +2848.791057 +2848.883265 +2848.887494 +2848.890691 +2848.983265 +2848.984564 +2848.987427 +2849.084563 +2849.087327 +2849.089525 +2849.090591 +2849.183331 +2849.187760 +2849.283265 +2849.284696 +2849.287660 +2849.290291 +2849.383331 +2849.384630 +2849.387394 +2849.483298 +2849.487327 +2849.583331 +2849.584630 +2849.592222 +2849.687660 +2849.690157 +2849.783331 +2849.787460 +2849.791156 +2849.883331 +2849.887493 +2851.968177 +2854.881727 +2854.891384 +2854.892916 +2854.907435 +2854.916026 +2854.925683 +2854.932976 +2854.941501 +2854.950758 +2854.960881 +2854.972936 +2854.981727 +2854.991617 +2855.000009 +2855.009100 +2855.019423 +2855.031244 +2855.042766 +2855.054021 +2855.064111 +2855.075766 +2855.086056 +2855.097078 +2855.108067 +2855.119156 +2855.128680 +2855.141101 +2855.152889 +2855.165943 +2855.176665 +2855.199376 +2855.213329 +2855.223685 +2855.234441 +2855.247195 +2855.259516 +2855.269739 +2855.280928 +2855.291350 +2855.301973 +2855.315227 +2855.326582 +2855.338104 +2855.340535 +2855.349592 +2855.361047 +2855.374600 +2855.397544 +2855.408100 +2855.430711 +2855.442766 +2855.447461 +2855.453921 +2855.465776 +2855.478430 +2855.490418 +2855.499808 +2855.523751 +2855.535673 +2855.546062 +2855.557184 +2855.561780 +2855.570438 +2855.582392 +2855.592749 +2855.615526 +2855.634540 +2855.642998 +2855.652955 +2855.664410 +2855.674134 +2855.683858 +2855.695213 +2855.706635 +2855.718589 +2855.727847 +2855.739202 +2855.750924 +2855.760148 +2855.770571 +2855.783491 +2855.795612 +2855.804637 +2855.816425 +2855.828313 +2855.838969 +2855.851123 +2855.858283 +2855.869638 +2855.880194 +2855.890850 +2855.897177 +2855.903138 +2855.919488 +2855.930544 +2855.941566 +2855.955719 +2855.962146 +2855.973334 +2855.981293 +2855.991550 +2856.001739 +2856.011863 +2856.016758 +2856.027680 +2856.033574 +2856.052555 +2856.064077 +2856.075765 +2856.081726 +2856.090850 +2856.095579 +2856.102772 +2856.108399 +2856.114526 +2856.128213 +2856.133974 +2856.142332 +2856.157017 +2856.159481 +2856.167507 +2856.171569 +2856.180261 +2856.185655 +2856.192648 +2856.197011 +2856.206601 +2856.214193 +2856.219421 +2856.232741 +2856.238569 +2856.244863 +2856.249458 +2856.256717 +2856.261013 +2856.269238 +2856.279861 +2856.293114 +2856.296644 +2856.305802 +2856.309631 +2856.319921 +2856.324383 +2856.332242 +2856.344063 +2856.349425 +2856.358216 +2856.363011 +2856.373068 +2856.385056 +2856.390950 +2856.398575 +2856.404703 +2856.411196 +2856.416624 +2856.423684 +2856.446128 +2856.454786 +2856.466075 +2856.478229 +2856.481859 +2856.489817 +2856.497210 +2856.508332 +2856.512162 +2856.522751 +2856.533540 +2856.547493 +2856.558249 +2856.587586 +2856.599208 +2856.610830 +2856.613827 +2856.624316 +2856.627580 +2856.635938 +2856.640000 +2856.649624 +2856.653820 +2856.662078 +2856.665375 +2856.675365 +2856.679394 +2856.701173 +2856.703570 +2856.718755 +2856.729577 +2856.732541 +2856.741399 +2856.745861 +2856.754120 +2856.757649 +2856.762511 +2856.770037 +2856.782158 +2856.785954 +2856.794879 +2856.798575 +2856.807433 +2856.811762 +2856.820653 +2856.824582 +2856.833973 +2856.837902 +2856.848925 +2856.858016 +2856.869104 +2856.880759 +2856.887519 +2856.892448 +2856.902105 +2856.914659 +2856.934606 +2856.946227 +2856.956950 +2856.967906 +2856.974699 +2856.981692 +2856.988618 +2857.001106 +2857.011196 +2857.024849 +2857.034239 +2857.038002 +2857.052321 +2857.060846 +2857.064442 +2857.074166 +2857.078928 +2857.087919 +2857.098775 +2857.114459 +2857.118555 +2857.126247 +2857.134838 +2857.149357 +2857.155251 +2857.168305 +2857.181125 +2857.185155 +2857.194479 +2857.198075 +2857.209830 +2857.219121 +2857.232674 +2857.244995 +2857.257249 +2857.261345 +2857.273500 +2857.284089 +2857.288385 +2857.302171 +2857.311062 +2857.317755 +2857.328078 +2857.337469 +2857.343596 +2857.354652 +2857.369037 +2857.376397 +2857.383123 +2857.400006 +2857.411894 +2857.424615 +2857.430043 +2857.438501 +2857.443763 +2857.452953 +2857.457515 +2857.469637 +2857.482157 +2857.494412 +2857.498075 +2857.510696 +2857.521951 +2857.526580 +2857.538767 +2857.550689 +2857.554751 +2857.565541 +2857.568904 +2857.593546 +2857.597309 +2857.609597 +2857.624315 +2857.635437 +2857.639300 +2857.653020 +2857.667505 +2857.681458 +2857.694711 +2857.706500 +2857.723816 +2857.737002 +2857.751554 +2857.763875 +2857.785754 +2857.798940 +2857.817089 +2857.829943 +2857.880159 +2857.907332 +2857.921884 +2857.933672 +2857.947991 +2857.961511 +2857.976429 +2857.989283 +2858.004335 +2858.019386 +2858.033805 +2858.055783 +2858.083023 +2858.108963 +2858.147192 +2858.170002 +2858.185853 +2858.199839 +2858.213992 +2858.225014 +2858.238034 +2858.250555 +2858.266106 +2858.294711 +2858.338534 +2858.353119 +2858.367138 +2858.381324 +2858.395909 +2858.409496 +2858.423648 +2858.438267 +2858.452286 +2858.467704 +2858.481424 +2858.495843 +2858.510928 +2858.539266 +2858.554584 +2858.582023 +2858.595909 +2858.610928 +2858.648823 +2858.674630 +2858.687185 +2858.703735 +2858.716655 +2858.762842 +2858.789848 +2858.819319 +2858.865573 +2858.870002 +2858.893811 +2858.914823 +2858.933272 +2858.945726 +2858.960145 +2858.974297 +2858.987584 +2859.003301 +2859.016988 +2859.029209 +2859.044827 +2859.062809 +2859.075429 +2859.091047 +2859.106032 +2859.119918 +2859.135403 +2859.149422 +2859.164540 +2859.180058 +2859.195476 +2859.210661 +2859.238999 +2859.253484 +2859.268103 +2859.282855 +2859.310627 +2859.329009 +2859.357147 +2859.371533 +2859.387484 +2859.402469 +2859.417121 +2859.432139 +2859.445592 +2859.461576 +2859.506198 +2859.520750 +2859.566038 +2859.579125 +2859.623847 +2859.640164 +2859.654183 +2859.718885 +2859.741662 +2859.759311 +2859.774430 +2859.787283 +2859.803267 +2859.831273 +2859.847257 +2859.860410 +2859.875928 +2869.882212 +2869.885542 +2869.887839 +2869.893900 +2869.906887 +2870.882311 +2870.883543 +2870.887805 +2871.882676 +2871.883941 +2871.886838 +2871.888836 +2872.882442 +2872.887470 +2872.889934 +2873.882807 +2873.884139 +2873.889900 +2874.883039 +2874.884305 +2874.887235 +2874.889499 +2877.495924 +2879.883334 +2879.884666 +2879.888629 +2879.890593 +2879.984299 +2879.985631 +2879.988562 +2880.088762 +2880.090793 +2880.186430 +2880.189061 +2880.285198 +2880.286497 +2880.289394 +2880.295721 +2880.386530 +2880.389161 +2880.486597 +2880.491092 +2880.585298 +2880.586663 +2880.589693 +2880.594755 +2880.686730 +2880.689560 +2880.694455 +2880.785398 +2880.786730 +2880.789727 +2880.889427 +2880.892024 +2880.986696 +2880.989094 +2880.991624 +2881.086729 +2881.089593 +2881.186929 +2881.189660 +2881.192856 +2881.285430 +2881.286696 +2881.289726 +2881.386796 +2881.389559 +2881.393189 +2881.485530 +2881.486862 +2881.489493 +2881.493522 +2881.585563 +2881.586895 +2881.589792 +2881.685563 +2881.686795 +2881.688993 +2881.691790 +2881.785563 +2881.786828 +2881.789925 +2881.885563 +2881.886795 +2881.889259 +2881.892190 +2881.985530 +2881.990058 +2882.085696 +2882.090125 +2882.093255 +2882.185663 +2882.186995 +2882.189459 +2882.192089 +2882.285729 +2882.287094 +2882.293122 +2882.385696 +2882.386961 +2882.389425 +2882.393088 +2882.394354 +2882.485696 +2882.486994 +2882.492455 +2882.592655 +2882.687027 +2882.689924 +2882.693221 +2882.696251 +2882.787160 +2882.789691 +2882.885828 +2882.887094 +2882.889591 +2882.892588 +2882.985862 +2882.989758 +2882.992322 +2882.993188 +2883.085928 +2883.090157 +2883.093121 +2883.185861 +2883.187093 +2883.189924 +2883.285861 +2883.293354 +2883.385861 +2883.387226 +2883.390057 +2883.487160 +2883.489657 +2883.493620 +2883.585828 +2883.587193 +2883.589890 +2883.687259 +2883.690356 +2883.785961 +2883.789990 +2883.793120 +2883.887293 +2883.890223 +2883.893120 +2883.985994 +2883.987392 +2883.990023 +2883.992820 +2883.993153 +2884.086094 +2884.087359 +2884.090689 +2884.186127 +2884.190356 +2884.194119 +2884.286093 +2884.287425 +2884.290156 +2884.386093 +2884.390489 +2884.486126 +2884.490289 +2884.586026 +2884.686160 +2884.687358 +2884.690489 +2884.693752 +2884.786193 +2884.790455 +2884.886159 +2884.887525 +2884.890189 +2888.061980 +2889.415592 +2889.575232 +2889.895279 +2889.902804 +2889.904802 +2889.910696 +2889.918888 +2889.925881 +2889.934040 +2889.943197 +2889.951889 +2889.954519 +2889.961978 +2889.970470 +2889.980227 +2889.999674 +2890.019687 +2890.039934 +2890.064110 +2890.075698 +2890.085721 +2890.106800 +2890.115858 +2890.125648 +2890.136770 +2890.147926 +2890.149924 +2890.161112 +2890.173533 +2890.184323 +2890.195944 +2890.198575 +2890.209930 +2890.220187 +2890.233607 +2890.243996 +2890.255085 +2890.264742 +2890.275531 +2890.290283 +2890.303703 +2890.313959 +2890.325248 +2890.337170 +2890.348492 +2890.360047 +2890.375365 +2890.377696 +2890.386787 +2890.398375 +2890.424049 +2890.434239 +2890.444729 +2890.456250 +2890.466640 +2890.475731 +2890.478461 +2890.486853 +2890.496843 +2890.498974 +2890.510496 +2890.544462 +2890.557982 +2890.563643 +2890.571535 +2890.583590 +2890.595911 +2890.606134 +2890.617556 +2890.629910 +2890.644262 +2890.646626 +2890.655917 +2890.667872 +2890.679893 +2890.693180 +2890.703336 +2890.713959 +2890.724648 +2890.736869 +2890.739733 +2890.749290 +2890.761079 +2890.774365 +2890.777828 +2890.786453 +2890.796044 +2890.804135 +2890.811695 +2890.822617 +2890.834871 +2890.845527 +2890.855318 +2890.867905 +2890.880426 +2890.891881 +2890.905034 +2890.912760 +2890.923716 +2890.934905 +2890.944528 +2890.953752 +2890.962976 +2890.999806 +2891.009563 +2891.020719 +2891.041132 +2891.047825 +2891.053453 +2891.059879 +2891.072500 +2891.080426 +2891.085920 +2891.095177 +2891.107132 +2891.116756 +2891.139633 +2891.149656 +2891.152387 +2891.162044 +2891.175730 +2891.186086 +2891.195311 +2891.206100 +2891.214125 +2891.223949 +2891.228044 +2891.238101 +2891.241231 +2891.249290 +2891.255051 +2891.261378 +2891.272367 +2891.282257 +2891.294578 +2891.302170 +2891.305500 +2891.315990 +2891.326379 +2891.337601 +2891.346326 +2891.349922 +2891.359313 +2891.364841 +2891.372866 +2891.376562 +2891.382956 +2891.386619 +2891.394877 +2891.399206 +2891.421584 +2891.424648 +2891.429809 +2891.434338 +2891.447158 +2891.460312 +2891.464141 +2891.474231 +2891.478727 +2891.487585 +2891.504368 +2891.511561 +2891.522217 +2891.532107 +2891.535770 +2891.544661 +2891.548191 +2891.557914 +2891.562376 +2891.571034 +2891.584454 +2891.595976 +2891.598740 +2891.599672 +2891.608097 +2891.620718 +2891.624281 +2891.631441 +2891.634671 +2891.644195 +2891.647658 +2891.658114 +2891.661044 +2891.671834 +2891.674664 +2891.677994 +2891.684721 +2891.697042 +2891.700272 +2891.704601 +2891.712326 +2891.714957 +2891.724015 +2891.728344 +2891.736069 +2891.745793 +2891.758513 +2891.762043 +2891.772599 +2891.776362 +2891.786019 +2891.788983 +2891.798374 +2891.803069 +2891.807498 +2891.814058 +2891.816888 +2891.820685 +2891.827511 +2891.839566 +2891.843761 +2891.849456 +2891.854151 +2891.857747 +2891.866439 +2891.870002 +2891.874631 +2891.880525 +2891.883655 +2891.894111 +2891.897707 +2891.906965 +2891.912326 +2891.920718 +2891.925080 +2891.937967 +2891.947857 +2891.951820 +2891.966905 +2891.980558 +2891.991946 +2892.002336 +2892.006465 +2892.016255 +2892.020152 +2892.029476 +2892.033338 +2892.046459 +2892.057681 +2892.061144 +2892.073099 +2892.083688 +2892.089316 +2892.098007 +2892.110961 +2892.123881 +2892.127178 +2892.137368 +2892.141397 +2892.152785 +2892.164174 +2892.168703 +2892.179092 +2892.190781 +2892.195676 +2892.202702 +2892.208163 +2892.214990 +2892.218287 +2892.228077 +2892.231673 +2892.240631 +2892.243561 +2892.253918 +2892.258413 +2892.266838 +2892.279725 +2892.284620 +2892.296875 +2892.308962 +2892.317953 +2892.323981 +2892.337134 +2892.352785 +2892.379858 +2892.393445 +2892.406065 +2892.416954 +2892.430441 +2892.441630 +2892.445526 +2892.455516 +2892.458979 +2892.469568 +2892.473131 +2892.482555 +2892.494910 +2892.500970 +2892.508729 +2892.525379 +2892.533971 +2892.547224 +2892.552752 +2892.566638 +2892.577227 +2892.586751 +2892.597340 +2892.614024 +2892.627677 +2892.635036 +2892.665039 +2892.683088 +2892.694443 +2892.708762 +2892.733737 +2892.747690 +2892.751353 +2892.762608 +2892.776894 +2892.803434 +2892.814490 +2892.818819 +2892.831606 +2892.843960 +2892.858512 +2892.861909 +2892.889082 +2892.903934 +2892.915655 +2892.931772 +2892.945692 +2892.958745 +2892.970667 +2892.986584 +2893.001303 +2893.015822 +2893.028009 +2893.068103 +2893.120184 +2893.125379 +2893.138266 +2893.152052 +2893.167137 +2893.180890 +2893.195608 +2893.282188 +2893.292911 +2893.308595 +2893.323014 +2893.338565 +2893.349421 +2893.376061 +2893.390180 +2893.420750 +2893.446257 +2893.503933 +2893.525178 +2893.541962 +2893.569034 +2893.583587 +2893.598505 +2893.612025 +2893.695841 +2893.710693 +2893.738731 +2893.753350 +2893.778425 +2893.782188 +2893.796074 +2893.824146 +2893.836633 +2893.852084 +2893.867769 +2893.882454 +2893.910892 +2893.925977 +2893.939630 +2894.011059 +2894.025278 +2894.069434 +2894.084885 +2894.155814 +2894.338697 +2894.379923 +2894.397139 +2894.454548 +2894.467369 +2894.484152 +2894.499037 +2894.515753 +2894.619982 +2894.633502 +2894.730772 +2894.758943 +2894.775094 +2894.790212 +2894.806129 +2894.821647 +2894.837898 +2894.868733 +2894.883252 +2904.886772 +2904.887971 +2904.890368 +2904.892566 +2905.888503 +2905.892399 +2906.419405 +2906.887136 +2906.892031 +2906.894329 +2907.887502 +2907.888734 +2907.892563 +2908.886668 +2908.894360 +2909.887400 +2909.888698 +2909.892728 +2909.894759 +2912.085832 +2912.200018 +2914.887195 +2914.891424 +2914.893022 +2914.987994 +2914.989193 +2914.991790 +2915.088394 +2915.089626 +2915.092090 +2915.094088 +2915.095120 +2915.189959 +2915.192922 +2915.199882 +2915.288726 +2915.290058 +2915.292456 +2915.294554 +2915.388826 +2915.390125 +2915.392922 +2915.394853 +2915.490125 +2915.493055 +2915.588859 +2915.590225 +2915.593055 +2915.595553 +2915.688892 +2915.690158 +2915.697118 +2915.788926 +2915.790224 +2915.792655 +2915.794986 +2915.888892 +2915.893188 +2915.896918 +2915.989025 +2915.993488 +2916.089025 +2916.090357 +2916.093621 +2916.188959 +2916.190257 +2916.195718 +2916.196151 +2916.288992 +2916.292855 +2916.294420 +2916.295785 +2916.296251 +2916.388958 +2916.390257 +2916.393054 +2916.396318 +2916.490257 +2916.492988 +2916.590390 +2916.594686 +2916.595352 +2916.690357 +2916.693021 +2916.695685 +2916.788958 +2916.790257 +2916.793520 +2916.796517 +2916.889058 +2916.890423 +2916.893220 +2916.896051 +2916.989091 +2916.990456 +2916.993520 +2916.996783 +2917.089091 +2917.090390 +2917.093420 +2917.189057 +2917.193453 +2917.288957 +2917.290256 +2917.293187 +2917.296350 +2917.388957 +2917.390323 +2917.393186 +2917.489124 +2917.490389 +2917.493286 +2917.589024 +2917.590389 +2917.593586 +2917.596483 +2917.689057 +2917.693120 +2917.696017 +2917.789123 +2917.790422 +2917.793552 +2917.794585 +2917.796616 +2917.992786 +2917.996050 +2918.390288 +2918.495949 +2918.589023 +2918.592985 +2918.595883 +2918.789089 +2918.796315 +2918.889122 +2918.896482 +2918.993318 +2918.996149 +2919.001210 +2919.089122 +2919.193351 +2919.389022 +2919.395582 +2919.593317 +2919.695548 +2919.796148 +2919.895948 +2924.887118 +2924.888450 +2924.891780 +2924.898307 +2924.906099 +2924.915590 +2924.924414 +2924.932573 +2924.941997 +2924.952120 +2924.961244 +2924.981158 +2924.990482 +2925.000372 +2925.002303 +2925.010928 +2925.013625 +2925.023515 +2925.031341 +2925.040931 +2925.051254 +2925.061011 +2925.062876 +2925.072899 +2925.084021 +2925.095576 +2925.107731 +2925.115923 +2925.127378 +2925.138334 +2925.140731 +2925.149955 +2925.160112 +2925.170202 +2925.191014 +2925.201970 +2925.204700 +2925.214224 +2925.225113 +2925.238467 +2925.247857 +2925.259779 +2925.270335 +2925.280824 +2925.290581 +2925.301837 +2925.311660 +2925.321750 +2925.333338 +2925.356881 +2925.366805 +2925.373931 +2925.394877 +2925.406099 +2925.414724 +2925.431274 +2925.443894 +2925.454684 +2925.469502 +2925.478793 +2925.490148 +2925.500105 +2925.508996 +2925.518586 +2925.526711 +2925.536535 +2925.546192 +2925.571300 +2925.582056 +2925.594144 +2925.603568 +2925.613525 +2925.623947 +2925.633038 +2925.644593 +2925.669102 +2925.679192 +2925.690581 +2925.694111 +2925.702802 +2925.711893 +2925.722515 +2925.737600 +2925.750354 +2925.761143 +2925.770368 +2925.782522 +2925.793245 +2925.810527 +2925.816688 +2925.824913 +2925.836601 +2925.840264 +2925.850088 +2925.863241 +2925.875895 +2925.887617 +2925.906398 +2925.917320 +2925.926345 +2925.932072 +2925.939165 +2925.942628 +2925.950787 +2925.962575 +2925.974929 +2925.978060 +2925.987750 +2925.997074 +2926.008329 +2926.022915 +2926.034303 +2926.040297 +2926.047057 +2926.049655 +2926.060843 +2926.064640 +2926.072965 +2926.078592 +2926.096874 +2926.109994 +2926.114157 +2926.122115 +2926.125346 +2926.135469 +2926.148855 +2926.153251 +2926.161210 +2926.165039 +2926.176628 +2926.182322 +2926.186717 +2926.190680 +2926.199005 +2926.207730 +2926.218086 +2926.222249 +2926.231106 +2926.236934 +2926.243527 +2926.247323 +2926.260777 +2926.269967 +2926.280191 +2926.295842 +2926.300637 +2926.309395 +2926.320817 +2926.329774 +2926.336567 +2926.340464 +2926.350853 +2926.356414 +2926.369368 +2926.377826 +2926.382588 +2926.390613 +2926.403001 +2926.407896 +2926.415855 +2926.428842 +2926.432838 +2926.440130 +2926.444792 +2926.452518 +2926.457347 +2926.465805 +2926.472165 +2926.478758 +2926.490746 +2926.495542 +2926.505032 +2926.511093 +2926.516188 +2926.519684 +2926.524346 +2926.532538 +2926.540696 +2926.549055 +2926.554949 +2926.558012 +2926.567470 +2926.571599 +2926.580856 +2926.585085 +2926.592678 +2926.597806 +2926.605798 +2926.610127 +2926.617886 +2926.620683 +2926.629374 +2926.632904 +2926.642328 +2926.645558 +2926.646424 +2926.650387 +2926.656680 +2926.660976 +2926.668402 +2926.671799 +2926.682221 +2926.686584 +2926.692445 +2926.696973 +2926.700104 +2926.703034 +2926.707296 +2926.714955 +2926.720716 +2926.728775 +2926.738532 +2926.747956 +2926.752651 +2926.760643 +2926.766770 +2926.772531 +2926.776227 +2926.779890 +2926.786684 +2926.789081 +2926.796807 +2926.800603 +2926.812924 +2926.817686 +2926.825478 +2926.829341 +2926.837832 +2926.843260 +2926.853017 +2926.856347 +2926.863773 +2926.867802 +2926.877226 +2926.882188 +2926.889481 +2926.895308 +2926.903267 +2926.907463 +2926.917353 +2926.920416 +2926.929541 +2926.935102 +2926.942927 +2926.946990 +2926.956613 +2926.960643 +2926.968701 +2926.972597 +2926.981655 +2926.985618 +2926.991712 +2926.994842 +2926.999804 +2927.007329 +2927.011858 +2927.020150 +2927.032271 +2927.037366 +2927.049287 +2927.059877 +2927.065504 +2927.073696 +2927.087516 +2927.092111 +2927.100769 +2927.105298 +2927.112957 +2927.117985 +2927.127676 +2927.130739 +2927.140396 +2927.144659 +2927.152551 +2927.157079 +2927.165937 +2927.171232 +2927.179857 +2927.183919 +2927.192944 +2927.206963 +2927.210992 +2927.220150 +2927.224778 +2927.233903 +2927.247689 +2927.251618 +2927.260110 +2927.263606 +2927.273197 +2927.287682 +2927.291944 +2927.301102 +2927.304166 +2927.314955 +2927.318052 +2927.328508 +2927.333403 +2927.342227 +2927.346124 +2927.355814 +2927.360076 +2927.367502 +2927.381188 +2927.385884 +2927.394375 +2927.399870 +2927.408361 +2927.411824 +2927.421648 +2927.435068 +2927.438265 +2927.447422 +2927.451352 +2927.461108 +2927.465804 +2927.474495 +2927.502534 +2927.506297 +2927.517219 +2927.528308 +2927.537232 +2927.549154 +2927.562540 +2927.576260 +2927.607828 +2927.622780 +2927.633103 +2927.644691 +2927.657545 +2927.660442 +2927.672797 +2927.687848 +2927.702300 +2927.713622 +2927.728974 +2927.740962 +2927.754814 +2927.768234 +2927.780256 +2927.784019 +2927.796040 +2927.808361 +2927.824312 +2927.836333 +2927.850052 +2927.863106 +2927.867602 +2927.894108 +2927.923312 +2927.983719 +2928.007129 +2928.021048 +2928.036100 +2928.048953 +2928.052516 +2928.066169 +2928.079889 +2928.140595 +2928.242859 +2928.269533 +2928.283951 +2928.294974 +2928.298837 +2928.312356 +2928.327308 +2928.339529 +2928.354814 +2928.380355 +2928.393242 +2928.408460 +2928.423279 +2928.437464 +2928.451983 +2928.464471 +2928.478790 +2928.555480 +2928.611290 +2928.634434 +2928.696472 +2928.725509 +2928.738763 +2928.754714 +2928.769066 +2928.782652 +2928.798670 +2928.813188 +2928.826408 +2928.906328 +2928.923012 +2928.935766 +2928.977757 +2928.989479 +2929.034966 +2929.049785 +2929.063371 +2929.204796 +2929.375559 +2929.397237 +2929.412255 +2929.426241 +2929.441559 +2929.561306 +2929.590976 +2929.604330 +2929.619914 +2929.634233 +2929.722911 +2929.739761 +2929.754979 +2929.771030 +2929.802265 +2939.887769 +2939.890966 +2939.893031 +2939.894762 +2939.899757 +2939.912644 +2940.888035 +2940.889267 +2940.892530 +2940.894895 +2941.888167 +2941.889466 +2941.892030 +2941.894627 +2942.889565 +2942.893028 +2943.888298 +2943.889564 +2943.892794 +2943.896157 +2944.888197 +2944.894091 +2949.199582 +2949.299215 +2949.887593 +2949.888892 +2949.891955 +2949.894053 +2949.989624 +2949.992388 +2950.088858 +2950.090057 +2950.092588 +2950.094353 +2950.096883 +2950.189058 +2950.190290 +2950.192388 +2950.289158 +2950.290423 +2950.292854 +2950.294852 +2950.389224 +2950.392887 +2950.395118 +2950.489157 +2950.490556 +2950.492987 +2950.496217 +2950.589257 +2950.590556 +2950.596350 +2950.689290 +2950.690622 +2950.693420 +2950.696183 +2950.789290 +2950.790589 +2950.889224 +2950.890589 +2950.896849 +2950.989290 +2950.990589 +2950.997016 +2951.090655 +2951.093319 +2951.095051 +2951.189257 +2951.190555 +2951.193552 +2951.196849 +2951.289290 +2951.290688 +2951.293552 +2951.295950 +2951.389290 +2951.390655 +2951.394984 +2951.397015 +2951.489290 +2951.496482 +2951.590621 +2951.593019 +2951.596416 +2951.689289 +2951.690588 +2951.693352 +2951.695483 +2951.789256 +2951.792919 +2951.796149 +2951.889223 +2951.893285 +2951.896382 +2951.989256 +2951.990621 +2951.993252 +2951.996182 +2952.089289 +2952.090588 +2952.093751 +2952.097048 +2952.189289 +2952.190621 +2952.196681 +2952.289255 +2952.290587 +2952.293218 +2952.296981 +2952.389289 +2952.390621 +2952.393518 +2952.396481 +2952.489289 +2952.490587 +2952.493418 +2952.496981 +2952.589322 +2952.590554 +2952.592951 +2952.689188 +2952.789255 +2952.790520 +2952.793850 +2952.796514 +2952.889288 +2952.890687 +2952.893317 +2952.896348 +2952.989221 +2952.990587 +2952.992984 +2952.994916 +2952.995548 +2952.998845 +2953.089255 +2953.093251 +2953.095748 +2953.189188 +2953.193084 +2953.196014 +2953.289254 +2953.290586 +2953.293151 +2953.295815 +2953.389221 +2953.390520 +2953.393184 +2953.489221 +2953.493950 +2953.589188 +2953.593117 +2953.595614 +2953.689287 +2953.690653 +2953.693417 +2953.696314 +2953.789221 +2953.790553 +2953.793117 +2953.795614 +2953.889154 +2953.893150 +2953.896713 +2953.989154 +2953.992983 +2954.089254 +2954.093150 +2954.189187 +2954.193083 +2954.289154 +2954.296213 +2954.389187 +2954.390585 +2954.393349 +2954.489253 +2954.496379 +2954.589187 +2954.593549 +2954.689186 +2954.695613 +2954.789153 +2954.790552 +2954.793116 +2954.796512 +2954.889186 +2954.893249 +2954.896446 +2959.887183 +2959.892878 +2959.903933 +2959.910760 +2959.919451 +2959.921416 +2959.929241 +2959.938199 +2959.946857 +2959.956580 +2959.975561 +2959.983620 +2959.991412 +2959.993843 +2960.002734 +2960.013124 +2960.021582 +2960.023713 +2960.032638 +2960.034636 +2960.055548 +2960.065771 +2960.074829 +2960.084452 +2960.086983 +2960.097673 +2960.110593 +2960.121549 +2960.130640 +2960.140330 +2960.147756 +2960.157013 +2960.166670 +2960.176327 +2960.187549 +2960.189947 +2960.197739 +2960.207829 +2960.216121 +2960.223380 +2960.232637 +2960.243094 +2960.252984 +2960.255281 +2960.265005 +2960.273863 +2960.284752 +2960.294775 +2960.297539 +2960.305531 +2960.323480 +2960.335867 +2960.344259 +2960.355082 +2960.365837 +2960.369201 +2960.375494 +2960.398105 +2960.404998 +2960.414788 +2960.416953 +2960.426110 +2960.428575 +2960.437166 +2960.445691 +2960.448222 +2960.453217 +2960.457912 +2960.467036 +2960.469334 +2960.489181 +2960.493077 +2960.501102 +2960.505131 +2960.511192 +2960.522680 +2960.526177 +2960.535001 +2960.537899 +2960.558844 +2960.574162 +2960.581122 +2960.594275 +2960.598405 +2960.606929 +2960.611658 +2960.617086 +2960.619417 +2960.629840 +2960.642527 +2960.645058 +2960.654715 +2960.657246 +2960.667436 +2960.670732 +2960.680156 +2960.684419 +2960.691478 +2960.695041 +2960.701268 +2960.712590 +2960.716686 +2960.725378 +2960.729840 +2960.736799 +2960.748488 +2960.759011 +2960.770166 +2960.773796 +2960.784518 +2960.794042 +2960.796440 +2960.806363 +2960.809194 +2960.814688 +2960.819317 +2960.822314 +2960.831904 +2960.837765 +2960.844825 +2960.849020 +2960.856013 +2960.858111 +2960.869500 +2960.872996 +2960.881521 +2960.884052 +2960.893909 +2960.917785 +2960.921315 +2960.930139 +2960.933636 +2960.945857 +2960.958744 +2960.967502 +2960.972963 +2960.976226 +2960.986982 +2960.990279 +2960.998138 +2961.010725 +2961.017985 +2961.020416 +2961.026343 +2961.030639 +2961.035134 +2961.043026 +2961.045657 +2961.050252 +2961.055314 +2961.057978 +2961.066536 +2961.071797 +2961.078058 +2961.081121 +2961.090112 +2961.096106 +2961.101901 +2961.112756 +2961.115853 +2961.124911 +2961.136766 +2961.155147 +2961.159376 +2961.163672 +2961.170898 +2961.180555 +2961.184751 +2961.192277 +2961.196473 +2961.204331 +2961.207828 +2961.215520 +2961.218218 +2961.223645 +2961.232936 +2961.241028 +2961.245890 +2961.259043 +2961.267502 +2961.279723 +2961.282686 +2961.291045 +2961.294408 +2961.298237 +2961.303299 +2961.308094 +2961.317518 +2961.321448 +2961.329007 +2961.336499 +2961.342127 +2961.347055 +2961.352983 +2961.358044 +2961.364804 +2961.368967 +2961.377725 +2961.381321 +2961.401734 +2961.404398 +2961.414088 +2961.417052 +2961.424012 +2961.427675 +2961.430638 +2961.437731 +2961.440095 +2961.442526 +2961.450618 +2961.453715 +2961.457112 +2961.464271 +2961.468900 +2961.477025 +2961.482653 +2961.486815 +2961.496006 +2961.500435 +2961.513888 +2961.523146 +2961.526476 +2961.534101 +2961.536832 +2961.544824 +2961.547222 +2961.552683 +2961.558377 +2961.561807 +2961.565370 +2961.570598 +2961.575160 +2961.590245 +2961.597072 +2961.601600 +2961.609925 +2961.620981 +2961.623512 +2961.627241 +2961.635400 +2961.641094 +2961.648121 +2961.652250 +2961.660142 +2961.664471 +2961.671830 +2961.682087 +2961.687781 +2961.694041 +2961.702000 +2961.705030 +2961.713488 +2961.717551 +2961.726675 +2961.733735 +2961.738097 +2961.744724 +2961.749153 +2961.756912 +2961.761740 +2961.769666 +2961.773761 +2961.783585 +2961.788413 +2961.795773 +2961.801667 +2961.807761 +2961.813455 +2961.820148 +2961.826142 +2961.833102 +2961.835699 +2961.839129 +2961.846522 +2961.858776 +2961.867901 +2961.878423 +2961.889945 +2961.893109 +2961.903265 +2961.913388 +2961.923678 +2961.932503 +2961.935899 +2961.946489 +2961.950085 +2961.959975 +2961.970931 +2961.981620 +2961.995573 +2962.007028 +2962.010524 +2962.018317 +2962.022113 +2962.030771 +2962.043824 +2962.049918 +2962.055912 +2962.061473 +2962.068034 +2962.077790 +2962.080621 +2962.089845 +2962.103232 +2962.108193 +2962.115353 +2962.120681 +2962.128007 +2962.133335 +2962.141094 +2962.153748 +2962.157078 +2962.165736 +2962.169665 +2962.177724 +2962.182985 +2962.191310 +2962.200667 +2962.212489 +2962.216052 +2962.224610 +2962.237064 +2962.249219 +2962.261373 +2962.272329 +2962.285649 +2962.294240 +2962.305130 +2962.309991 +2962.317517 +2962.322446 +2962.330637 +2962.336931 +2962.343291 +2962.354813 +2962.368100 +2962.382152 +2962.395006 +2962.408326 +2962.419582 +2962.431769 +2962.434533 +2962.446255 +2962.457810 +2962.470464 +2962.481686 +2962.494174 +2962.506495 +2962.514587 +2962.537763 +2962.543924 +2962.550983 +2962.562838 +2962.574560 +2962.595439 +2962.607494 +2962.612355 +2962.621912 +2962.634733 +2962.638895 +2962.648353 +2962.660973 +2962.664203 +2962.674760 +2962.689878 +2962.700534 +2962.713987 +2962.717051 +2962.725842 +2962.729039 +2962.740993 +2962.753681 +2962.766401 +2962.780620 +2962.794107 +2962.808026 +2962.819881 +2962.824243 +2962.837130 +2962.864203 +2962.873394 +2962.885948 +2962.921146 +2962.935032 +2962.946721 +2962.959641 +2962.972928 +2963.006627 +2963.019181 +2963.033334 +2963.046721 +2963.049751 +2963.060873 +2963.075225 +2963.089544 +2963.103364 +2963.154546 +2963.171129 +2963.206261 +2963.220347 +2963.252781 +2963.280054 +2963.300866 +2963.315884 +2963.328538 +2963.357110 +2963.383983 +2963.398102 +2963.411922 +2963.425675 +2963.440127 +2963.456710 +2963.468132 +2963.484049 +2963.507992 +2963.562637 +2963.587912 +2963.642691 +2963.671662 +2963.688778 +2963.743323 +2963.768498 +2963.812088 +2963.824209 +2963.911621 +2963.923310 +2963.937029 +2963.950582 +2963.954046 +2963.979787 +2963.984215 +2964.093772 +2964.177822 +2964.203163 +2964.258308 +2964.330602 +2964.459939 +2964.473026 +2964.652580 +2964.666899 +2964.711154 +2974.887102 +2974.888267 +2974.891198 +2974.892962 +2975.890864 +2975.893061 +2976.887399 +2976.892228 +2977.068518 +2977.887365 +2977.888597 +2978.887397 +2978.888729 +2978.892093 +2979.888395 +2979.891126 +2980.980802 +2981.785297 +2982.339941 +2983.130650 +2983.294419 +2983.602045 +2984.153326 +2984.210536 +2984.886426 +2984.887658 +2984.890522 +2984.988790 +2984.991387 +2985.087924 +2985.089156 +2985.091654 +2985.093751 +2985.188124 +2985.189422 +2985.191986 +2985.194284 +2985.289555 +2985.388290 +2985.389689 +2985.392353 +2985.488290 +2985.489655 +2985.588356 +2985.589588 +2985.594916 +2985.688290 +2985.689655 +2985.692419 +2985.694184 +2985.695116 +2985.788290 +2985.789522 +2985.792286 +2985.888289 +2985.889655 +2985.892052 +2985.894517 +2985.988389 +2985.989655 +2985.992385 +2985.995449 +2986.088356 +2986.089688 +2986.092452 +2986.095449 +2986.188322 +2986.189688 +2986.192685 +2986.288322 +2986.289621 +2986.292318 +2986.295349 +2986.388356 +2986.392418 +2986.394150 +2986.395482 +2986.488355 +2986.489654 +2986.492218 +2986.495115 +2986.588389 +2986.589721 +2986.592618 +2986.595082 +2986.688355 +2986.689721 +2986.692151 +2986.695348 +2986.788355 +2986.789720 +2986.792584 +2986.795415 +2986.888288 +2986.889620 +2986.892451 +2986.895115 +2986.899311 +2986.988388 +2986.992617 +2987.088322 +2987.092251 +2987.094082 +2987.095581 +2987.188388 +2987.192251 +2987.194315 +2987.197479 +2987.288321 +2987.289687 +2987.292184 +2987.294815 +2987.388421 +2987.389720 +2987.394349 +2987.488354 +2987.489653 +2987.492450 +2987.588354 +2987.589653 +2987.592117 +2987.594448 +2987.688388 +2987.689819 +2987.692450 +2987.695247 +2987.788387 +2987.789719 +2987.792383 +2987.795880 +2987.888321 +2987.892317 +2987.988321 +2987.989686 +2987.992217 +2988.088354 +2988.089719 +2988.092450 +2988.188387 +2988.192250 +2988.198144 +2988.288420 +2988.289719 +2988.292183 +2988.388354 +2988.389752 +2988.392150 +2988.488320 +2988.492416 +2988.496012 +2988.588353 +2988.592483 +2988.595480 +2988.688353 +2988.692549 +2988.788353 +2988.792482 +2988.888386 +2988.892449 +2988.894913 +2988.988353 +2988.989785 +2988.992282 +2988.995179 +2989.088353 +2989.091683 +2989.094946 +2989.188353 +2989.192116 +2989.194846 +2989.288353 +2989.388319 +2989.391849 +2989.394613 +2989.395379 +2989.489618 +2989.495579 +2989.588352 +2989.589651 +2989.592382 +2989.594879 +2989.689684 +2989.692382 +2989.694613 +2989.788286 +2989.792248 +2989.795412 +2993.972098 +2994.890045 +2994.898504 +2994.909559 +2994.917784 +2994.933235 +2994.941594 +2994.943525 +2994.951217 +2994.953349 +2994.960575 +2994.969666 +2994.971597 +2994.990079 +2994.999369 +2995.010392 +2995.019849 +2995.022280 +2995.030705 +2995.040228 +2995.050651 +2995.053249 +2995.061207 +2995.063505 +2995.072163 +2995.081887 +2995.091144 +2995.098503 +2995.106995 +2995.108860 +2995.118184 +2995.120248 +2995.129939 +2995.140894 +2995.150851 +2995.154847 +2995.164571 +2995.166868 +2995.175593 +2995.178057 +2995.187181 +2995.190112 +2995.199635 +2995.222013 +2995.231670 +2995.241793 +2995.244158 +2995.252416 +2995.271530 +2995.273961 +2995.283418 +2995.286482 +2995.297637 +2995.306395 +2995.316785 +2995.327274 +2995.330504 +2995.338130 +2995.340461 +2995.348120 +2995.357777 +2995.367967 +2995.374993 +2995.385250 +2995.387947 +2995.399102 +2995.409425 +2995.421080 +2995.424510 +2995.432103 +2995.441360 +2995.448520 +2995.456778 +2995.467900 +2995.478523 +2995.486681 +2995.503631 +2995.513854 +2995.516385 +2995.538996 +2995.544057 +2995.559442 +2995.565769 +2995.570897 +2995.576725 +2995.585816 +2995.593008 +2995.603198 +2995.612822 +2995.624777 +2995.629838 +2995.636731 +2995.647887 +2995.658243 +2995.666102 +2995.673827 +2995.676225 +2995.685849 +2995.689512 +2995.697004 +2995.705496 +2995.713621 +2995.724776 +2995.730904 +2995.739528 +2995.747487 +2995.757344 +2995.770764 +2995.776192 +2995.783018 +2995.794074 +2995.798469 +2995.805429 +2995.818116 +2995.823811 +2995.831436 +2995.835899 +2995.844124 +2995.851483 +2995.854880 +2995.867966 +2995.872595 +2995.879255 +2995.891110 +2995.903364 +2995.908592 +2995.915752 +2995.921813 +2995.925709 +2995.935066 +2995.937697 +2995.948353 +2995.952648 +2995.960574 +2995.963804 +2995.971663 +2995.975759 +2995.983151 +2995.994873 +2996.006561 +2996.009691 +2996.018183 +2996.024044 +2996.031236 +2996.035599 +2996.043957 +2996.052349 +2996.056511 +2996.064570 +2996.068566 +2996.076691 +2996.080287 +2996.088179 +2996.091643 +2996.096371 +2996.102032 +2996.113720 +2996.117417 +2996.138862 +2996.151016 +2996.153581 +2996.155612 +2996.163138 +2996.165502 +2996.176624 +2996.179788 +2996.184383 +2996.193108 +2996.205728 +2996.212555 +2996.221246 +2996.223644 +2996.228272 +2996.234699 +2996.242558 +2996.245655 +2996.249584 +2996.254946 +2996.259008 +2996.265968 +2996.269831 +2996.275425 +2996.277923 +2996.281353 +2996.287213 +2996.289977 +2996.294273 +2996.298136 +2996.301699 +2996.304962 +2996.311289 +2996.320680 +2996.329904 +2996.334466 +2996.342192 +2996.350983 +2996.354313 +2996.361905 +2996.374459 +2996.377956 +2996.386181 +2996.389345 +2996.398269 +2996.401000 +2996.410956 +2996.414286 +2996.424276 +2996.426807 +2996.429171 +2996.436964 +2996.449251 +2996.453047 +2996.457843 +2996.461939 +2996.472028 +2996.475259 +2996.478289 +2996.482052 +2996.487846 +2996.491609 +2996.495938 +2996.500234 +2996.505928 +2996.513953 +2996.517883 +2996.526474 +2996.530137 +2996.534632 +2996.538728 +2996.542891 +2996.545288 +2996.551815 +2996.563770 +2996.576590 +2996.588878 +2996.594972 +2996.603264 +2996.615152 +2996.618116 +2996.627606 +2996.640460 +2996.648385 +2996.651948 +2996.657343 +2996.664136 +2996.666967 +2996.676690 +2996.681053 +2996.690143 +2996.694772 +2996.707459 +2996.714686 +2996.720946 +2996.727173 +2996.732135 +2996.739061 +2996.743124 +2996.752814 +2996.756344 +2996.764569 +2996.769897 +2996.777856 +2996.783084 +2996.790143 +2996.796071 +2996.803130 +2996.809624 +2996.815951 +2996.822178 +2996.825841 +2996.835831 +2996.839161 +2996.850350 +2996.860673 +2996.872461 +2996.875192 +2996.877922 +2996.885448 +2996.889111 +2996.897836 +2996.901465 +2996.910390 +2996.915751 +2996.920480 +2996.932368 +2996.954845 +2996.966334 +2996.972161 +2996.978089 +2996.982085 +2996.989710 +2996.994905 +2997.003330 +2997.009757 +2997.014552 +2997.022111 +2997.031002 +2997.042124 +2997.054279 +2997.058075 +2997.067299 +2997.071428 +2997.079154 +2997.083317 +2997.092441 +2997.097203 +2997.104395 +2997.108858 +2997.118315 +2997.125774 +2997.130503 +2997.142457 +2997.145554 +2997.155311 +2997.160106 +2997.167998 +2997.179387 +2997.192474 +2997.196936 +2997.205827 +2997.218415 +2997.231302 +2997.236796 +2997.245021 +2997.249184 +2997.259074 +2997.268098 +2997.280153 +2997.300066 +2997.313186 +2997.317782 +2997.326673 +2997.346720 +2997.357842 +2997.369164 +2997.382217 +2997.395338 +2997.407659 +2997.422211 +2997.426373 +2997.437129 +2997.449683 +2997.461904 +2997.467798 +2997.475557 +2997.479686 +2997.491475 +2997.502297 +2997.506826 +2997.516583 +2997.521045 +2997.530436 +2997.542723 +2997.547818 +2997.557375 +2997.569763 +2997.573726 +2997.582850 +2997.595604 +2997.608291 +2997.613120 +2997.623076 +2997.626673 +2997.636729 +2997.648617 +2997.663403 +2997.677389 +2997.681151 +2997.692806 +2997.705627 +2997.716416 +2997.729603 +2997.734165 +2997.744421 +2997.799366 +2997.812453 +2997.825241 +2997.828471 +2997.839959 +2997.852746 +2997.856709 +2997.867132 +2997.882750 +2997.894238 +2997.909889 +2997.923043 +2997.934664 +2997.949483 +2997.952580 +2997.966033 +2997.979719 +2997.993672 +2998.019180 +2998.033432 +2998.047451 +2998.062936 +2998.075457 +2998.100498 +2998.104961 +2998.153579 +2998.166899 +2998.238494 +2998.252579 +2998.278620 +2998.291041 +2998.340625 +2998.352846 +2998.365533 +2998.379386 +2998.406359 +2998.418380 +2998.444387 +2998.459073 +2998.476156 +2998.489875 +2998.503761 +2998.518114 +2998.531833 +2998.545453 +2998.560005 +2998.615916 +2998.630834 +2998.643588 +2998.658706 +2998.674058 +2998.684147 +2998.702696 +2998.713884 +2998.729402 +2998.759572 +2998.799232 +2998.885712 +2998.902529 +2998.930434 +2998.973125 +2998.986478 +2999.003395 +2999.031233 +2999.044753 +2999.074423 +2999.102062 +2999.145186 +2999.174989 +2999.189641 +2999.249182 +2999.315449 +2999.360803 +2999.403494 +2999.620777 +2999.641756 +2999.667197 +2999.741589 +3001.969426 +3009.886168 +3009.889697 +3009.892961 +3010.886833 +3010.888098 +3010.890329 +3010.892627 +3010.900885 +3011.888164 +3011.903182 +3012.886797 +3012.888063 +3013.886830 +3013.891125 +3014.886729 +3014.892723 +3014.898484 +3014.911704 +3019.887723 +3019.890253 +3019.891785 +3019.897013 +3019.987156 +3019.988422 +3019.990620 +3020.087656 +3020.088855 +3020.090886 +3020.093050 +3020.096547 +3020.187822 +3020.189088 +3020.191519 +3020.193850 +3020.287922 +3020.289221 +3020.291618 +3020.293616 +3020.387755 +3020.389154 +3020.391585 +3020.487023 +3020.491918 +3020.495215 +3020.591085 +3020.687922 +3020.689220 +3020.693749 +3020.788055 +3020.792217 +3020.794415 +3020.887988 +3020.889253 +3020.891884 +3020.895214 +3020.988055 +3020.989353 +3020.992017 +3020.995813 +3021.088088 +3021.089353 +3021.092217 +3021.187721 +3021.191884 +3021.288088 +3021.292150 +3021.388087 +3021.389453 +3021.392350 +3021.394614 +3021.488087 +3021.489453 +3021.492150 +3021.588054 +3021.591517 +3021.594381 +3021.688154 +3021.689386 +3021.696645 +3021.788154 +3021.792216 +3021.796046 +3021.888020 +3021.889386 +3021.892083 +3021.988054 +3021.989286 +3022.088087 +3022.089419 +3022.092183 +3022.096478 +3022.112962 +3022.188153 +3022.192216 +3022.288087 +3022.289419 +3022.292349 +3022.296112 +3022.388153 +3022.392748 +3022.488086 +3022.489418 +3022.492249 +3022.496112 +3022.588086 +3022.589318 +3022.591416 +3022.595246 +3022.688186 +3022.689451 +3022.692016 +3022.696111 +3022.787920 +3022.789185 +3022.791316 +3022.888086 +3022.889451 +3022.891782 +3022.988186 +3022.989518 +3022.992182 +3022.995678 +3023.088052 +3023.092115 +3023.099075 +3023.188119 +3023.189418 +3023.192448 +3023.195478 +3023.288086 +3023.292015 +3023.294812 +3023.388085 +3023.392081 +3023.395278 +3023.488119 +3023.489517 +3023.492215 +3023.588152 +3023.595778 +3023.688252 +3023.692348 +3023.788185 +3023.792148 +3023.888118 +3023.891981 +3023.894812 +3023.988151 +3023.992048 +3023.994478 +3024.088185 +3024.089483 +3024.092047 +3024.094945 +3024.188151 +3024.192447 +3024.196010 +3024.288085 +3024.289417 +3024.291981 +3024.294978 +3024.388218 +3024.391947 +3024.395177 +3024.488084 +3024.491514 +3024.588184 +3024.589583 +3024.592180 +3024.594877 +3024.688151 +3024.692347 +3024.695410 +3024.788117 +3024.789449 +3024.791581 +3024.795343 +3024.889316 +3024.891481 +3024.894444 +3026.101636 +3029.889977 +3029.891642 +3029.902698 +3029.910490 +3029.918782 +3029.928505 +3029.937929 +3029.939627 +3029.948252 +3029.957077 +3029.966500 +3029.973893 +3029.992241 +3030.002098 +3030.022511 +3030.032867 +3030.043690 +3030.053114 +3030.075025 +3030.084982 +3030.094606 +3030.105928 +3030.116251 +3030.125974 +3030.135298 +3030.145122 +3030.147253 +3030.155511 +3030.157676 +3030.167599 +3030.177856 +3030.180619 +3030.197203 +3030.204829 +3030.215351 +3030.217150 +3030.239361 +3030.249384 +3030.251948 +3030.271029 +3030.301099 +3030.303730 +3030.312487 +3030.324043 +3030.337030 +3030.339727 +3030.348685 +3030.350782 +3030.372461 +3030.387612 +3030.411355 +3030.422344 +3030.431602 +3030.444389 +3030.453879 +3030.463103 +3030.471328 +3030.479454 +3030.483083 +3030.490876 +3030.493340 +3030.502697 +3030.525674 +3030.538628 +3030.549583 +3030.552048 +3030.574658 +3030.588678 +3030.595904 +3030.601132 +3030.611089 +3030.622477 +3030.646153 +3030.650349 +3030.658441 +3030.668831 +3030.672793 +3030.680253 +3030.691708 +3030.704062 +3030.715484 +3030.717882 +3030.727306 +3030.729903 +3030.739760 +3030.743423 +3030.764402 +3030.769930 +3030.783849 +3030.795437 +3030.805461 +3030.810622 +3030.817715 +3030.829636 +3030.842057 +3030.854145 +3030.860039 +3030.867598 +3030.876123 +3030.889410 +3030.898801 +3030.909290 +3030.920878 +3030.947052 +3030.960039 +3030.966433 +3030.978954 +3030.982950 +3030.994871 +3031.008091 +3031.019846 +3031.022910 +3031.031135 +3031.034731 +3031.044188 +3031.049416 +3031.057475 +3031.073193 +3031.083216 +3031.095071 +3031.099067 +3031.107059 +3031.112953 +3031.120379 +3031.131301 +3031.134898 +3031.143789 +3031.146586 +3031.160971 +3031.174325 +3031.182683 +3031.186912 +3031.206026 +3031.213585 +3031.222410 +3031.232300 +3031.241724 +3031.245287 +3031.251281 +3031.262437 +3031.272993 +3031.276423 +3031.279986 +3031.286279 +3031.298367 +3031.302163 +3031.305727 +3031.311388 +3031.315850 +3031.322909 +3031.325440 +3031.334631 +3031.341258 +3031.351114 +3031.361238 +3031.364834 +3031.374091 +3031.378021 +3031.385846 +3031.390042 +3031.398267 +3031.401364 +3031.404394 +3031.410755 +3031.414384 +3031.422443 +3031.429836 +3031.435530 +3031.442023 +3031.448783 +3031.451880 +3031.456509 +3031.461770 +3031.465766 +3031.473792 +3031.477155 +3031.486745 +3031.489876 +3031.492972 +3031.499699 +3031.504228 +3031.520678 +3031.524075 +3031.528537 +3031.535530 +3031.538627 +3031.552713 +3031.561337 +3031.564501 +3031.569895 +3031.574791 +3031.577854 +3031.581850 +3031.587445 +3031.590175 +3031.601597 +3031.605327 +3031.612120 +3031.614651 +3031.624108 +3031.634564 +3031.647385 +3031.649649 +3031.657008 +3031.660938 +3031.666399 +3031.674224 +3031.678553 +3031.685946 +3031.692473 +3031.698733 +3031.703861 +3031.711387 +3031.714617 +3031.723508 +3031.727904 +3031.736429 +3031.741424 +3031.750914 +3031.762802 +3031.767531 +3031.775756 +3031.779885 +3031.785413 +3031.789509 +3031.793905 +3031.801530 +3031.810088 +3031.814884 +3031.819412 +3031.824674 +3031.833698 +3031.836695 +3031.847518 +3031.850515 +3031.859739 +3031.862103 +3031.871527 +3031.882649 +3031.885713 +3031.894670 +3031.897967 +3031.907058 +3031.911420 +3031.917647 +3031.920345 +3031.924540 +3031.933798 +3031.946119 +3031.960338 +3031.972259 +3031.977454 +3031.985846 +3031.989942 +3031.999399 +3032.010554 +3032.022742 +3032.029269 +3032.034264 +3032.045386 +3032.049149 +3032.058273 +3032.062869 +3032.071327 +3032.083015 +3032.094937 +3032.097900 +3032.103495 +3032.108656 +3032.112985 +3032.121810 +3032.134897 +3032.138593 +3032.147551 +3032.152446 +3032.159738 +3032.164900 +3032.173624 +3032.187344 +3032.197933 +3032.210155 +3032.213584 +3032.219379 +3032.223941 +3032.228569 +3032.238526 +3032.241590 +3032.251047 +3032.254444 +3032.263534 +3032.278020 +3032.282749 +3032.291440 +3032.296701 +3032.304227 +3032.309322 +3032.316681 +3032.320711 +3032.328869 +3032.333464 +3032.341656 +3032.344886 +3032.356508 +3032.360804 +3032.369761 +3032.374723 +3032.383714 +3032.396668 +3032.401496 +3032.410920 +3032.414950 +3032.423574 +3032.429535 +3032.441190 +3032.450481 +3032.463667 +3032.468896 +3032.477021 +3032.482049 +3032.490940 +3032.495469 +3032.503960 +3032.519112 +3032.523208 +3032.533997 +3032.545419 +3032.549748 +3032.560437 +3032.563534 +3032.572891 +3032.578020 +3032.587277 +3032.591673 +3032.600897 +3032.605692 +3032.614650 +3032.618413 +3032.627936 +3032.631400 +3032.641589 +3032.646251 +3032.656341 +3032.660537 +3032.669728 +3032.683314 +3032.688642 +3032.698666 +3032.711286 +3032.724107 +3032.737560 +3032.742255 +3032.752312 +3032.756441 +3032.767497 +3032.780017 +3032.783880 +3032.793870 +3032.797866 +3032.811819 +3032.821376 +3032.839491 +3032.874490 +3032.881449 +3032.899664 +3032.912318 +3032.924739 +3032.938059 +3032.965332 +3032.979285 +3032.994636 +3032.999531 +3033.012585 +3033.025638 +3033.038858 +3033.042921 +3033.056907 +3033.071259 +3033.112984 +3033.123907 +3033.127570 +3033.141322 +3033.169960 +3033.185145 +3033.198465 +3033.213184 +3033.227370 +3033.239924 +3033.243653 +3033.257206 +3033.270060 +3033.286177 +3033.299697 +3033.329301 +3033.342987 +3033.359271 +3033.372757 +3033.388508 +3033.403127 +3033.431632 +3033.446917 +3033.460470 +3033.474689 +3033.489740 +3033.504692 +3033.533064 +3033.547516 +3033.562867 +3033.576853 +3033.592870 +3033.609021 +3033.622441 +3033.636860 +3033.651079 +3033.665664 +3033.679684 +3033.695168 +3033.709887 +3033.723873 +3033.738591 +3033.754142 +3033.783247 +3033.798232 +3033.812417 +3033.826170 +3033.842554 +3033.855974 +3033.872124 +3033.885611 +3033.901162 +3033.916247 +3033.946017 +3033.961102 +3033.977519 +3033.991538 +3034.008188 +3034.022940 +3034.037858 +3034.053876 +3034.068261 +3034.082880 +3034.098464 +3034.127069 +3034.142254 +3034.156706 +3034.322740 +3034.350878 +3034.422174 +3034.436659 +3034.646982 +3034.661567 +3034.677984 +3034.693835 +3034.828933 +3034.873056 +3044.886932 +3044.888330 +3044.890695 +3044.893425 +3045.888729 +3045.893791 +3046.887063 +3046.888428 +3046.903080 +3047.888860 +3047.891857 +3047.894588 +3048.886728 +3048.887294 +3048.888693 +3048.892755 +3049.887559 +3049.892022 +3054.887022 +3054.891118 +3054.892783 +3054.900508 +3054.987821 +3055.089486 +3055.091584 +3055.093681 +3055.192249 +3055.194547 +3055.388653 +3055.488753 +3055.490118 +3055.492349 +3055.495146 +3055.588719 +3055.590118 +3055.592349 +3055.595080 +3055.598243 +3055.688786 +3055.692482 +3055.695246 +3055.788819 +3055.790284 +3055.792948 +3055.888786 +3055.893181 +3055.988885 +3055.992781 +3055.996078 +3056.088852 +3056.188719 +3056.190184 +3056.192848 +3056.288785 +3056.296378 +3056.388718 +3056.390117 +3056.393181 +3056.396544 +3056.488852 +3056.490250 +3056.493014 +3056.495811 +3056.588851 +3056.590283 +3056.593513 +3056.597077 +3056.688851 +3056.690283 +3056.696677 +3056.788751 +3056.792814 +3056.797043 +3056.798808 +3056.888785 +3056.892647 +3056.895711 +3056.988851 +3056.990316 +3056.993580 +3056.996776 +3057.090183 +3057.093213 +3057.096710 +3057.188884 +3057.193180 +3057.288917 +3057.388917 +3057.390316 +3057.393513 +3057.397542 +3057.488817 +3057.492547 +3057.497142 +3057.588717 +3057.590149 +3057.595843 +3057.688717 +3057.692746 +3057.696243 +3057.788817 +3057.793146 +3057.800305 +3057.888850 +3057.890249 +3057.892713 +3057.988883 +3057.990349 +3057.992946 +3057.996209 +3058.088817 +3058.090282 +3058.188850 +3058.190315 +3058.193079 +3058.196842 +3058.288850 +3058.293179 +3058.388850 +3058.393179 +3058.488916 +3058.492879 +3058.588849 +3058.590248 +3058.592945 +3058.688883 +3058.696175 +3058.788849 +3058.796175 +3058.888816 +3058.896708 +3058.899572 +3058.988782 +3058.994843 +3058.995942 +3059.088782 +3059.188882 +3059.193045 +3059.195509 +3059.288915 +3059.293078 +3059.296441 +3059.388849 +3059.393178 +3059.488948 +3059.490347 +3059.493078 +3059.495575 +3059.499638 +3059.588782 +3059.593078 +3059.688882 +3059.900104 +3064.887012 +3064.891241 +3064.898034 +3064.904328 +3064.919912 +3064.937728 +3064.947618 +3064.956376 +3064.964967 +3064.976056 +3064.985413 +3064.987644 +3064.995836 +3065.006226 +3065.015949 +3065.028037 +3065.037528 +3065.048150 +3065.060471 +3065.071793 +3065.082616 +3065.093805 +3065.104960 +3065.116482 +3065.127038 +3065.137827 +3065.148683 +3065.160205 +3065.170694 +3065.178686 +3065.188576 +3065.198233 +3065.209056 +3065.219412 +3065.232699 +3065.252845 +3065.265733 +3065.278353 +3065.289875 +3065.301230 +3065.312919 +3065.324840 +3065.337161 +3065.348350 +3065.360737 +3065.363468 +3065.377288 +3065.387744 +3065.399532 +3065.411087 +3065.413518 +3065.426272 +3065.440358 +3065.451913 +3065.457973 +3065.467198 +3065.476488 +3065.486911 +3065.498067 +3065.520977 +3065.532432 +3065.541290 +3065.553245 +3065.564434 +3065.575123 +3065.588276 +3065.594004 +3065.601397 +3065.611853 +3065.625040 +3065.636728 +3065.650015 +3065.661836 +3065.681516 +3065.691640 +3065.716848 +3065.720344 +3065.729768 +3065.739159 +3065.751380 +3065.763001 +3065.772559 +3065.776521 +3065.784813 +3065.797800 +3065.801296 +3065.811886 +3065.822642 +3065.825972 +3065.835262 +3065.842089 +3065.848749 +3065.861137 +3065.870427 +3065.881716 +3065.895469 +3065.906624 +3065.912086 +3065.925139 +3065.934297 +3065.937127 +3065.946951 +3065.950680 +3065.959471 +3065.965898 +3065.973058 +3065.977387 +3065.985279 +3065.995302 +3065.998566 +3066.007890 +3066.012219 +3066.021143 +3066.025472 +3066.036095 +3066.047583 +3066.058006 +3066.067763 +3066.079884 +3066.093004 +3066.105359 +3066.111053 +3066.133098 +3066.145785 +3066.166165 +3066.170327 +3066.179551 +3066.183447 +3066.191939 +3066.204093 +3066.208322 +3066.217213 +3066.223074 +3066.229768 +3066.235728 +3066.245552 +3066.251546 +3066.259171 +3066.262868 +3066.271093 +3066.278952 +3066.285012 +3066.289541 +3066.298532 +3066.302928 +3066.312085 +3066.316514 +3066.325372 +3066.340790 +3066.344186 +3066.353011 +3066.365998 +3066.378119 +3066.382048 +3066.390174 +3066.394969 +3066.402495 +3066.409554 +3066.413450 +3066.422674 +3066.448016 +3066.460403 +3066.470393 +3066.476787 +3066.484879 +3066.495901 +3066.507789 +3066.511585 +3066.522108 +3066.525904 +3066.535062 +3066.538292 +3066.542721 +3066.552778 +3066.560670 +3066.568029 +3066.574090 +3066.586710 +3066.591672 +3066.602028 +3066.605791 +3066.615315 +3066.618978 +3066.622508 +3066.628635 +3066.632065 +3066.636227 +3066.642688 +3066.655042 +3066.659038 +3066.667230 +3066.674256 +3066.682215 +3066.685545 +3066.690307 +3066.695568 +3066.704859 +3066.709820 +3066.714283 +3066.723140 +3066.727170 +3066.731232 +3066.741189 +3066.746550 +3066.753410 +3066.764432 +3066.777453 +3066.782215 +3066.791206 +3066.795734 +3066.804559 +3066.807889 +3066.817046 +3066.820676 +3066.844519 +3066.848715 +3066.856740 +3066.860470 +3066.874822 +3066.887676 +3066.900130 +3066.908821 +3066.912517 +3066.921442 +3066.925638 +3066.935161 +3066.940356 +3066.961568 +3066.965265 +3066.978118 +3066.988675 +3066.992970 +3067.001562 +3067.006657 +3067.017379 +3067.023173 +3067.036793 +3067.041622 +3067.052844 +3067.058505 +3067.068128 +3067.085911 +3067.099397 +3067.110586 +3067.123107 +3067.134096 +3067.146850 +3067.163566 +3067.173356 +3067.177619 +3067.187809 +3067.190939 +3067.202261 +3067.215814 +3067.229200 +3067.233063 +3067.244552 +3067.247948 +3067.256773 +3067.261701 +3067.270992 +3067.275554 +3067.285944 +3067.297865 +3067.313483 +3067.325704 +3067.329933 +3067.341322 +3067.345184 +3067.355674 +3067.369593 +3067.373656 +3067.382380 +3067.386909 +3067.397032 +3067.401095 +3067.410419 +3067.422607 +3067.428201 +3067.437525 +3067.442620 +3067.452810 +3067.465797 +3067.469959 +3067.484578 +3067.504225 +3067.516613 +3067.531465 +3067.545051 +3067.558537 +3067.571391 +3067.581947 +3067.595434 +3067.599530 +3067.615714 +3067.624471 +3067.629233 +3067.639956 +3067.643752 +3067.654475 +3067.658504 +3067.672090 +3067.684978 +3067.696633 +3067.701661 +3067.729500 +3067.741754 +3067.755907 +3067.782646 +3067.787342 +3067.823605 +3067.836792 +3067.850312 +3067.875753 +3067.889406 +3067.905990 +3067.917878 +3067.935061 +3067.949779 +3067.960169 +3067.974188 +3067.982446 +3067.991271 +3068.006922 +3068.021174 +3068.036559 +3068.051311 +3068.064165 +3068.090671 +3068.107721 +3068.145949 +3068.159003 +3068.172556 +3068.188074 +3068.202859 +3068.216479 +3068.248114 +3068.285776 +3068.300128 +3068.315779 +3068.365496 +3068.379316 +3068.393535 +3068.408553 +3068.423971 +3068.440321 +3068.454574 +3068.471024 +3068.484677 +3068.500261 +3068.515080 +3068.544850 +3068.558936 +3068.574354 +3068.588839 +3068.603625 +3068.616745 +3068.633295 +3068.660967 +3068.676352 +3068.691270 +3068.751377 +3068.777617 +3068.821573 +3068.866362 +3068.879748 +3068.892968 +3068.907354 +3068.922172 +3068.938290 +3068.953441 +3068.967294 +3068.985243 +3069.000760 +3069.016445 +3069.032062 +3069.047980 +3069.063331 +3069.080414 +3069.094800 +3069.111883 +3069.127400 +3069.143118 +3069.157737 +3069.174487 +3069.189005 +3069.205789 +3069.221906 +3069.236991 +3069.253141 +3069.300194 +3069.315612 +3069.330763 +3069.347547 +3069.363098 +3069.378616 +3069.394033 +3069.469525 +3069.484843 +3069.500760 +3069.531329 +3069.610250 +3069.656437 +3069.671789 +3069.687939 +3069.702958 +3069.778715 +3069.822671 +3069.867260 +3069.880147 +3079.888462 +3079.890893 +3079.893390 +3080.887695 +3080.889094 +3080.892024 +3081.887261 +3081.888693 +3081.891623 +3082.888892 +3082.891622 +3083.887825 +3083.889157 +3083.891788 +3084.887857 +3084.889356 +3089.887186 +3089.888518 +3089.891316 +3089.893081 +3089.902105 +3089.988052 +3089.989318 +3089.991449 +3089.993680 +3090.088485 +3090.089784 +3090.092148 +3090.094213 +3090.188718 +3090.292547 +3090.390183 +3090.392381 +3090.488851 +3090.490316 +3090.493113 +3090.495244 +3090.589017 +3090.590383 +3090.592913 +3090.688951 +3090.690283 +3090.695078 +3090.788884 +3090.792747 +3090.794878 +3090.888917 +3090.890249 +3090.988950 +3090.992946 +3091.089017 +3091.090382 +3091.093146 +3091.096942 +3091.189017 +3091.190415 +3091.192913 +3091.197175 +3091.289017 +3091.290415 +3091.293246 +3091.296343 +3091.388950 +3091.390348 +3091.393246 +3091.489016 +3091.493412 +3091.589016 +3091.590415 +3091.593545 +3091.688983 +3091.690348 +3091.692646 +3091.790415 +3091.792712 +3091.795976 +3091.888883 +3091.893178 +3091.988916 +3091.990315 +3091.992912 +3092.088916 +3092.090281 +3092.093078 +3092.188949 +3092.190281 +3092.288949 +3092.290314 +3092.293012 +3092.296841 +3092.396508 +3092.488949 +3092.496142 +3092.588949 +3092.593378 +3092.596741 +3092.689015 +3092.690547 +3092.693278 +3092.696308 +3092.788915 +3092.793211 +3092.889082 +3092.893444 +3092.898306 +3092.900037 +3092.988982 +3092.993111 +3092.995941 +3093.088981 +3093.090447 +3093.093177 +3093.096607 +3093.188948 +3093.193244 +3093.196574 +3093.288548 +3093.387949 +3093.391379 +3093.398239 +3093.488914 +3093.496507 +3093.588814 +3093.592711 +3093.596440 +3093.689014 +3093.690379 +3093.789081 +3093.793210 +3093.889014 +3093.893010 +3093.988947 +3093.993143 +3093.996739 +3094.089014 +3094.090446 +3094.093076 +3094.096240 +3094.189047 +3094.190446 +3094.195574 +3094.288980 +3094.292976 +3094.388947 +3094.392910 +3094.588880 +3094.688780 +3094.788980 +3094.889013 +3094.890412 +3094.893076 +3094.896272 +3099.887210 +3099.888608 +3099.891073 +3099.898232 +3099.904326 +3099.906490 +3099.919810 +3099.928568 +3099.936161 +3099.944652 +3099.955275 +3099.965498 +3099.975588 +3099.985811 +3099.996434 +3100.004426 +3100.014016 +3100.026004 +3100.037026 +3100.048015 +3100.056607 +3100.068761 +3100.077286 +3100.086743 +3100.088875 +3100.098565 +3100.111186 +3100.121808 +3100.124206 +3100.133663 +3100.144286 +3100.167096 +3100.179584 +3100.190273 +3100.200296 +3100.212384 +3100.214815 +3100.224139 +3100.234562 +3100.245718 +3100.256041 +3100.278052 +3100.290406 +3100.312884 +3100.315548 +3100.326004 +3100.328401 +3100.341022 +3100.353510 +3100.363300 +3100.376753 +3100.387942 +3100.399730 +3100.412784 +3100.424938 +3100.432364 +3100.441522 +3100.453010 +3100.465031 +3100.477019 +3100.487675 +3100.494136 +3100.502261 +3100.521675 +3100.529034 +3100.539024 +3100.551545 +3100.563733 +3100.574821 +3100.585477 +3100.588741 +3100.599164 +3100.612117 +3100.616879 +3100.624305 +3100.630865 +3100.636759 +3100.649047 +3100.661501 +3100.674888 +3100.686376 +3100.696600 +3100.708588 +3100.719776 +3100.728434 +3100.749547 +3100.759204 +3100.768761 +3100.780815 +3100.786177 +3100.795667 +3100.806356 +3100.818577 +3100.821408 +3100.831465 +3100.843120 +3100.854641 +3100.858038 +3100.867495 +3100.881048 +3100.885277 +3100.895600 +3100.899463 +3100.907322 +3100.911418 +3100.921674 +3100.926236 +3100.934794 +3100.941155 +3100.948814 +3100.971991 +3100.992270 +3100.999796 +3101.004325 +3101.013982 +3101.025470 +3101.029366 +3101.039356 +3101.042254 +3101.051744 +3101.056306 +3101.063865 +3101.067428 +3101.076286 +3101.079316 +3101.090206 +3101.094235 +3101.103526 +3101.108687 +3101.112184 +3101.124937 +3101.135360 +3101.139423 +3101.150412 +3101.154541 +3101.164231 +3101.176120 +3101.183312 +3101.189140 +3101.193635 +3101.201927 +3101.204991 +3101.208720 +3101.215813 +3101.218577 +3101.222906 +3101.230132 +3101.232730 +3101.242187 +3101.245384 +3101.254474 +3101.258704 +3101.262167 +3101.269160 +3101.274921 +3101.280582 +3101.283645 +3101.288341 +3101.293635 +3101.297764 +3101.306356 +3101.310052 +3101.319476 +3101.322307 +3101.331631 +3101.343485 +3101.351544 +3101.358504 +3101.362067 +3101.365663 +3101.371324 +3101.374288 +3101.386043 +3101.396432 +3101.399296 +3101.407821 +3101.410885 +3101.419742 +3101.425270 +3101.433329 +3101.437058 +3101.445716 +3101.450678 +3101.462200 +3101.469026 +3101.473489 +3101.478151 +3101.485576 +3101.489572 +3101.497331 +3101.501627 +3101.507654 +3101.511950 +3101.517844 +3101.521973 +3101.532230 +3101.536026 +3101.544551 +3101.558071 +3101.563299 +3101.570525 +3101.575054 +3101.582713 +3101.587474 +3101.595799 +3101.600595 +3101.608920 +3101.622606 +3101.626669 +3101.636326 +3101.639755 +3101.649279 +3101.653309 +3101.662433 +3101.674054 +3101.677817 +3101.681780 +3101.689372 +3101.692270 +3101.696066 +3101.702959 +3101.708686 +3101.713482 +3101.717544 +3101.728200 +3101.731397 +3101.741187 +3101.745716 +3101.755639 +3101.760168 +3101.768593 +3101.773155 +3101.781514 +3101.785310 +3101.795566 +3101.808120 +3101.815813 +3101.822006 +3101.826835 +3101.834960 +3101.839056 +3101.847481 +3101.851310 +3101.860801 +3101.865163 +3101.873455 +3101.877018 +3101.884244 +3101.890538 +3101.901327 +3101.916046 +3101.926535 +3101.939855 +3101.951776 +3101.956105 +3101.966395 +3101.978716 +3101.983978 +3101.991970 +3101.997397 +3102.005789 +3102.010384 +3102.020175 +3102.024537 +3102.033195 +3102.037424 +3102.047014 +3102.052109 +3102.061134 +3102.074320 +3102.088873 +3102.093135 +3102.103058 +3102.107654 +3102.117011 +3102.121074 +3102.129798 +3102.133395 +3102.144184 +3102.155239 +3102.159502 +3102.170957 +3102.175619 +3102.183345 +3102.188040 +3102.196798 +3102.200561 +3102.211250 +3102.215146 +3102.228699 +3102.238689 +3102.243018 +3102.256172 +3102.265962 +3102.269958 +3102.279349 +3102.284011 +3102.293235 +3102.297664 +3102.306155 +3102.311416 +3102.320141 +3102.323971 +3102.338123 +3102.349279 +3102.354007 +3102.365329 +3102.376618 +3102.381746 +3102.394933 +3102.408386 +3102.418642 +3102.432295 +3102.446281 +3102.451476 +3102.461833 +3102.473920 +3102.478982 +3102.491470 +3102.505555 +3102.519608 +3102.533228 +3102.545249 +3102.561666 +3102.572222 +3102.576118 +3102.591669 +3102.619541 +3102.633561 +3102.647780 +3102.658702 +3102.661866 +3102.675619 +3102.689804 +3102.704923 +3102.718442 +3102.734227 +3102.746980 +3102.762731 +3102.811516 +3102.821706 +3102.826900 +3102.837157 +3102.840753 +3102.851443 +3102.855272 +3102.867859 +3102.883078 +3102.897563 +3102.911016 +3102.925235 +3102.940354 +3102.954240 +3102.969291 +3102.984276 +3102.997929 +3103.013114 +3103.028732 +3103.041319 +3103.072055 +3103.086707 +3103.101992 +3103.116943 +3103.130397 +3103.146247 +3103.161932 +3103.178116 +3103.191635 +3103.206687 +3103.221306 +3103.235824 +3103.250643 +3103.266127 +3103.281812 +3103.296197 +3103.310383 +3103.340553 +3103.355105 +3103.369757 +3103.384909 +3103.399993 +3103.415578 +3103.429497 +3103.444382 +3103.460133 +3103.474019 +3103.506354 +3103.521272 +3103.536424 +3103.551109 +3103.566160 +3103.597396 +3103.612181 +3103.627765 +3103.643616 +3103.659267 +3103.674519 +3103.689837 +3103.719840 +3103.734592 +3103.751175 +3103.765528 +3103.796164 +3103.826966 +3103.842084 +3103.858135 +3103.872887 +3103.888105 +3103.901725 +3103.916843 +3103.930629 +3103.960932 +3103.975184 +3103.991535 +3104.006486 +3104.020406 +3104.050043 +3104.064861 +3104.093832 +3104.108884 +3104.153639 +3104.167858 +3104.183942 +3104.212747 +3104.269423 +3104.286140 +3104.299060 +3104.330462 +3104.347112 +3104.361331 +3104.378248 +3104.393399 +3104.408284 +3104.424235 +3104.439919 +3104.454571 +3104.501391 +3104.546013 +3104.562163 +3104.577548 +3104.609283 +3104.625800 +3104.641218 +3104.657834 +3104.671887 +3104.703555 +3104.733792 +3104.749110 +3104.796063 +3104.872453 +3114.888227 +3114.892956 +3114.899149 +3115.889059 +3115.892222 +3115.905342 +3116.887492 +3116.888758 +3116.891488 +3117.887525 +3117.888923 +3117.891920 +3118.887457 +3118.888789 +3118.892352 +3119.887623 +3119.889055 +3119.892318 +3119.894482 +3119.911033 +3122.558383 +3124.886985 +3124.888384 +3124.893345 +3124.987884 +3125.088417 +3125.089749 +3125.188583 +3125.189848 +3125.192046 +3125.194111 +3125.288816 +3125.290248 +3125.292879 +3125.388883 +3125.390314 +3125.392712 +3125.394877 +3125.488916 +3125.490214 +3125.493078 +3125.495642 +3125.588916 +3125.590281 +3125.592778 +3125.594976 +3125.688916 +3125.692845 +3125.696575 +3125.788816 +3125.790247 +3125.793311 +3125.888949 +3125.890347 +3125.893211 +3125.990247 +3125.992945 +3126.088948 +3126.090314 +3126.092944 +3126.095608 +3126.188915 +3126.190314 +3126.192944 +3126.195608 +3126.288948 +3126.290347 +3126.293477 +3126.388948 +3126.393011 +3126.488948 +3126.493044 +3126.588981 +3126.590380 +3126.592578 +3126.593077 +3126.595408 +3126.688948 +3126.690346 +3126.695375 +3126.788848 +3126.790180 +3126.792944 +3126.796207 +3126.888881 +3126.896473 +3126.988914 +3126.990313 +3126.992844 +3126.995907 +3127.088947 +3127.090213 +3127.092977 +3127.096606 +3127.188847 +3127.190146 +3127.193143 +3127.194908 +3127.196573 +3127.288881 +3127.290279 +3127.293110 +3127.388947 +3127.390412 +3127.393176 +3127.488980 +3127.490379 +3127.493243 +3127.588914 +3127.592344 +3127.595374 +3127.688980 +3127.693043 +3127.788913 +3127.793309 +3127.797105 +3127.888947 +3127.892943 +3127.896872 +3127.993109 +3127.995840 +3128.088980 +3128.090345 +3128.093342 +3128.188913 +3128.192709 +3128.288880 +3128.293342 +3128.390178 +3128.392609 +3128.488913 +3128.490311 +3128.493109 +3128.588946 +3128.590311 +3128.592842 +3128.688946 +3128.692842 +3128.695706 +3128.788879 +3128.793208 +3128.796072 +3128.888912 +3128.893141 +3128.988979 +3128.993275 +3129.090277 +3129.093175 +3129.096072 +3129.188945 +3129.190311 +3129.193108 +3129.288912 +3129.290344 +3129.293141 +3129.296404 +3129.388945 +3129.390377 +3129.393341 +3129.396538 +3129.493274 +3129.588878 +3129.590277 +3129.592741 +3129.595305 +3129.688912 +3129.692941 +3129.788778 +3129.793007 +3129.797503 +3129.888845 +3129.890210 +3129.892774 +3129.895505 +3134.887042 +3134.890771 +3134.892303 +3134.897864 +3134.899895 +3134.904224 +3134.920042 +3134.921873 +3134.930065 +3134.938190 +3134.947148 +3134.956206 +3134.976485 +3134.986176 +3134.996166 +3135.006355 +3135.016279 +3135.027401 +3135.037957 +3135.048280 +3135.051044 +3135.059869 +3135.071657 +3135.081214 +3135.083112 +3135.092436 +3135.103159 +3135.113082 +3135.126136 +3135.139289 +3135.151111 +3135.161300 +3135.163598 +3135.173588 +3135.185809 +3135.197897 +3135.208786 +3135.211284 +3135.222539 +3135.233728 +3135.245916 +3135.256871 +3135.259868 +3135.270991 +3135.281380 +3135.292835 +3135.305123 +3135.316412 +3135.329032 +3135.331297 +3135.342919 +3135.353674 +3135.365329 +3135.377084 +3135.387707 +3135.398996 +3135.410085 +3135.421973 +3135.433261 +3135.444450 +3135.454041 +3135.467694 +3135.478783 +3135.494134 +3135.502292 +3135.512682 +3135.534693 +3135.544384 +3135.557171 +3135.567727 +3135.578549 +3135.589605 +3135.599695 +3135.608220 +3135.620141 +3135.632862 +3135.645283 +3135.648046 +3135.657803 +3135.671523 +3135.682479 +3135.695899 +3135.705056 +3135.712682 +3135.735259 +3135.744650 +3135.755972 +3135.766728 +3135.778982 +3135.785009 +3135.792535 +3135.802958 +3135.808419 +3135.816811 +3135.823737 +3135.829631 +3135.841653 +3135.851576 +3135.862265 +3135.875186 +3135.881080 +3135.888273 +3135.893068 +3135.900760 +3135.906488 +3135.918176 +3135.934327 +3135.940187 +3135.947147 +3135.958136 +3135.969025 +3135.980747 +3135.993867 +3135.997363 +3136.006021 +3136.009784 +3136.018809 +3136.023171 +3136.041186 +3136.047580 +3136.055206 +3136.059967 +3136.066494 +3136.070823 +3136.079281 +3136.082944 +3136.091602 +3136.095066 +3136.105189 +3136.108119 +3136.117776 +3136.130230 +3136.137923 +3136.146514 +3136.153940 +3136.158868 +3136.164896 +3136.177350 +3136.182045 +3136.191070 +3136.200294 +3136.204822 +3136.212182 +3136.215878 +3136.227000 +3136.230330 +3136.239255 +3136.242451 +3136.245382 +3136.253107 +3136.256504 +3136.265628 +3136.269591 +3136.273620 +3136.278449 +3136.281712 +3136.286008 +3136.292268 +3136.295065 +3136.305255 +3136.307986 +3136.317576 +3136.321273 +3136.326068 +3136.330863 +3136.334826 +3136.339121 +3136.344849 +3136.347513 +3136.350810 +3136.357736 +3136.361199 +3136.369391 +3136.374120 +3136.383177 +3136.387606 +3136.394965 +3136.405821 +3136.408752 +3136.413880 +3136.418342 +3136.422738 +3136.431462 +3136.434959 +3136.446347 +3136.450610 +3136.458935 +3136.465395 +3136.470656 +3136.479847 +3136.491402 +3136.495365 +3136.504423 +3136.508452 +3136.511682 +3136.517842 +3136.522405 +3136.531462 +3136.535225 +3136.538755 +3136.544349 +3136.548478 +3136.553240 +3136.558036 +3136.561732 +3136.573387 +3136.579980 +3136.585708 +3136.590070 +3136.593833 +3136.600193 +3136.604189 +3136.613114 +3136.622538 +3136.628299 +3136.635192 +3136.643950 +3136.653240 +3136.658435 +3136.662498 +3136.667193 +3136.681112 +3136.685541 +3136.694699 +3136.698695 +3136.703257 +3136.708818 +3136.712248 +3136.722205 +3136.725801 +3136.736157 +3136.740386 +3136.748778 +3136.753706 +3136.757636 +3136.762697 +3136.767060 +3136.776051 +3136.779281 +3136.788971 +3136.792701 +3136.802458 +3136.806254 +3136.816011 +3136.827399 +3136.832361 +3136.840919 +3136.853839 +3136.859034 +3136.865861 +3136.877982 +3136.892268 +3136.895098 +3136.905255 +3136.909084 +3136.919674 +3136.924469 +3136.933693 +3136.937722 +3136.946846 +3136.955937 +3136.961931 +3136.965394 +3136.973853 +3136.987606 +3136.991735 +3137.014412 +3137.028831 +3137.032128 +3137.040786 +3137.052474 +3137.056969 +3137.064229 +3137.068724 +3137.077882 +3137.082810 +3137.092600 +3137.103789 +3137.117209 +3137.129230 +3137.136490 +3137.142617 +3137.148012 +3137.158268 +3137.171521 +3137.176350 +3137.189370 +3137.198628 +3137.210549 +3137.214312 +3137.224002 +3137.227765 +3137.238821 +3137.242550 +3137.252174 +3137.264662 +3137.270489 +3137.278181 +3137.282244 +3137.293699 +3137.305820 +3137.321072 +3137.334025 +3137.352074 +3137.365527 +3137.376816 +3137.380446 +3137.393832 +3137.419540 +3137.424268 +3137.433792 +3137.438554 +3137.451608 +3137.465361 +3137.478448 +3137.488937 +3137.494065 +3137.505787 +3137.517875 +3137.523169 +3137.531761 +3137.536290 +3137.551375 +3137.564994 +3137.580379 +3137.589603 +3137.592467 +3137.607485 +3137.618674 +3137.622637 +3137.635091 +3137.662963 +3137.673319 +3137.687638 +3137.691235 +3137.704821 +3137.719373 +3137.730628 +3137.746812 +3137.758367 +3137.774951 +3137.789203 +3137.800658 +3137.818074 +3137.831927 +3137.847145 +3137.860865 +3137.874684 +3137.889636 +3137.903622 +3137.917142 +3137.931328 +3137.962230 +3137.975716 +3137.990402 +3138.019240 +3138.033325 +3138.062330 +3138.077481 +3138.091467 +3138.103955 +3138.119739 +3138.134424 +3138.149642 +3138.165726 +3138.178613 +3138.208750 +3138.238354 +3138.252872 +3138.268623 +3138.282742 +3138.297594 +3138.313045 +3138.327598 +3138.343648 +3138.358700 +3138.373718 +3138.389136 +3138.402955 +3138.418640 +3138.432892 +3138.448810 +3138.462263 +3138.478580 +3138.493265 +3138.509116 +3138.523468 +3138.538153 +3138.553072 +3138.567990 +3138.583675 +3138.614344 +3138.629629 +3138.644547 +3138.659432 +3138.674350 +3138.689868 +3138.705286 +3138.735689 +3138.750341 +3138.766192 +3138.781776 +3138.795629 +3138.811247 +3138.826765 +3138.841150 +3138.856668 +3138.886904 +3138.902156 +3138.917540 +3138.932758 +3138.947477 +3138.962995 +3138.978879 +3138.993731 +3139.008882 +3139.040051 +3139.055003 +3139.071120 +3139.086205 +3139.101723 +3139.118106 +3139.132392 +3139.148143 +3139.163627 +3139.290101 +3139.301789 +3139.331326 +3139.346211 +3139.359898 +3139.403454 +3139.416741 +3139.474716 +3139.533590 +3139.563261 +3139.662062 +3139.677646 +3139.784506 +3139.798325 +3139.812544 +3139.828229 +3139.885571 +3149.888059 +3149.890723 +3149.893820 +3150.887225 +3150.888524 +3150.891121 +3150.893519 +3150.901278 +3151.887624 +3151.891786 +3152.887756 +3152.889288 +3153.891585 +3153.895214 +3154.893881 +3159.886750 +3159.888049 +3159.891112 +3159.987749 +3159.991379 +3160.089481 +3160.091612 +3160.188448 +3160.189714 +3160.194076 +3160.289947 +3160.292644 +3160.388614 +3160.392311 +3160.394275 +3160.488581 +3160.489913 +3160.492610 +3160.495041 +3160.588681 +3160.590013 +3160.592943 +3160.596606 +3160.688714 +3160.690079 +3160.692544 +3160.788714 +3160.790046 +3160.888647 +3160.892543 +3160.895507 +3160.988680 +3160.990046 +3160.992776 +3160.995773 +3161.088647 +3161.090012 +3161.092576 +3161.095873 +3161.188714 +3161.190046 +3161.192710 +3161.196639 +3161.288747 +3161.290079 +3161.295773 +3161.388680 +3161.390045 +3161.392343 +3161.395573 +3161.488680 +3161.490045 +3161.492942 +3161.495173 +3161.588746 +3161.590145 +3161.595373 +3161.688746 +3161.690178 +3161.692942 +3161.696772 +3161.788680 +3161.792709 +3161.796605 +3161.890111 +3161.892343 +3161.896105 +3161.988713 +3161.990011 +3161.993308 +3161.997004 +3162.088746 +3162.090145 +3162.093142 +3162.188679 +3162.192908 +3162.288712 +3162.289978 +3162.296704 +3162.388779 +3162.393041 +3162.488712 +3162.492409 +3162.495206 +3162.588612 +3162.589911 +3162.592875 +3162.688679 +3162.692575 +3162.695206 +3162.788712 +3162.792908 +3162.795838 +3162.888712 +3162.892908 +3162.895971 +3162.988678 +3162.990044 +3162.992941 +3162.993407 +3163.088778 +3163.090144 +3163.092808 +3163.188678 +3163.288711 +3163.290010 +3163.292608 +3163.295438 +3163.297836 +3163.388711 +3163.390077 +3163.392374 +3163.395138 +3163.488745 +3163.492940 +3163.496370 +3163.588744 +3163.592907 +3163.688711 +3163.690110 +3163.692840 +3163.788711 +3163.790076 +3163.793306 +3163.888711 +3163.892674 +3163.895770 +3163.988744 +3163.990109 +3163.995770 +3164.088711 +3164.092973 +3164.096569 +3164.188744 +3164.190142 +3164.192740 +3164.195937 +3164.288810 +3164.292906 +3164.297002 +3164.388777 +3164.390209 +3164.593139 +3164.688643 +3164.690009 +3164.692906 +3164.696469 +3164.888677 +3164.896469 +3169.886840 +3169.890836 +3169.896797 +3169.898462 +3169.913080 +3169.920540 +3169.929830 +3169.939887 +3169.941652 +3169.950510 +3169.952707 +3169.961365 +3169.963330 +3169.971822 +3169.980779 +3169.990103 +3170.010050 +3170.020273 +3170.029297 +3170.039454 +3170.041685 +3170.051209 +3170.062231 +3170.073886 +3170.085708 +3170.094865 +3170.105521 +3170.120739 +3170.131195 +3170.133693 +3170.156404 +3170.169058 +3170.178448 +3170.188938 +3170.200160 +3170.211981 +3170.223436 +3170.235158 +3170.252274 +3170.264096 +3170.273353 +3170.281711 +3170.290736 +3170.301758 +3170.303789 +3170.316743 +3170.337789 +3170.348844 +3170.365361 +3170.387306 +3170.399161 +3170.410649 +3170.413280 +3170.423536 +3170.434425 +3170.454871 +3170.462597 +3170.473120 +3170.483143 +3170.493133 +3170.503689 +3170.515744 +3170.529031 +3170.539853 +3170.551908 +3170.557102 +3170.574418 +3170.586307 +3170.599427 +3170.610982 +3170.621305 +3170.631761 +3170.642417 +3170.654472 +3170.663296 +3170.686606 +3170.693533 +3170.701425 +3170.714711 +3170.726633 +3170.737289 +3170.749676 +3170.753806 +3170.763030 +3170.767958 +3170.776416 +3170.780379 +3170.788271 +3170.800625 +3170.813213 +3170.826266 +3170.834392 +3170.854605 +3170.864794 +3170.876782 +3170.900226 +3170.906986 +3170.913313 +3170.918174 +3170.927065 +3170.931461 +3170.939886 +3170.948377 +3170.961931 +3170.975284 +3170.981211 +3170.990002 +3171.002224 +3171.006886 +3171.015810 +3171.022004 +3171.028131 +3171.038820 +3171.042750 +3171.053006 +3171.065494 +3171.079413 +3171.092400 +3171.095430 +3171.099759 +3171.118507 +3171.135956 +3171.142949 +3171.158101 +3171.164295 +3171.171188 +3171.175617 +3171.183709 +3171.196263 +3171.199792 +3171.209050 +3171.211914 +3171.222570 +3171.226133 +3171.235157 +3171.239286 +3171.248011 +3171.252939 +3171.261464 +3171.268890 +3171.274518 +3171.277981 +3171.287671 +3171.296429 +3171.301724 +3171.308417 +3171.312480 +3171.320805 +3171.323735 +3171.328630 +3171.333525 +3171.336489 +3171.345447 +3171.349742 +3171.358367 +3171.361764 +3171.370488 +3171.373752 +3171.382609 +3171.387205 +3171.395796 +3171.402856 +3171.406685 +3171.411247 +3171.418307 +3171.426466 +3171.431694 +3171.440618 +3171.445114 +3171.449276 +3171.454870 +3171.462896 +3171.467524 +3171.475350 +3171.482010 +3171.485140 +3171.492133 +3171.495197 +3171.501224 +3171.506685 +3171.509050 +3171.518107 +3171.523568 +3171.530495 +3171.534358 +3171.538021 +3171.544314 +3171.548011 +3171.551873 +3171.558267 +3171.562230 +3171.570954 +3171.574284 +3171.577581 +3171.588503 +3171.592699 +3171.598726 +3171.607085 +3171.612979 +3171.624900 +3171.628397 +3171.637454 +3171.650008 +3171.658000 +3171.663029 +3171.666559 +3171.676149 +3171.679312 +3171.689269 +3171.695996 +3171.700491 +3171.703821 +3171.715942 +3171.726465 +3171.729862 +3171.740818 +3171.744114 +3171.753505 +3171.764794 +3171.767724 +3171.778946 +3171.784674 +3171.792499 +3171.796229 +3171.806718 +3171.810381 +3171.814411 +3171.819739 +3171.824167 +3171.833125 +3171.846945 +3171.851074 +3171.861097 +3171.865260 +3171.874783 +3171.878879 +3171.886938 +3171.901890 +3171.905819 +3171.914311 +3171.928396 +3171.932559 +3171.940584 +3171.945046 +3171.957700 +3171.965926 +3171.970921 +3171.979279 +3171.992099 +3171.997727 +3172.007950 +3172.019206 +3172.028696 +3172.039119 +3172.041683 +3172.050641 +3172.056535 +3172.062795 +3172.075849 +3172.089269 +3172.101989 +3172.112346 +3172.123035 +3172.144380 +3172.157567 +3172.166858 +3172.170621 +3172.179645 +3172.184374 +3172.193131 +3172.206685 +3172.211913 +3172.220338 +3172.225466 +3172.235089 +3172.239319 +3172.248809 +3172.254204 +3172.263961 +3172.267590 +3172.276515 +3172.281809 +3172.300324 +3172.313078 +3172.325466 +3172.338319 +3172.361596 +3172.374716 +3172.387903 +3172.400357 +3172.414110 +3172.418040 +3172.428562 +3172.432425 +3172.442215 +3172.446644 +3172.457200 +3172.460830 +3172.471919 +3172.474983 +3172.486871 +3172.490034 +3172.500391 +3172.504486 +3172.514676 +3172.518639 +3172.532958 +3172.541283 +3172.546578 +3172.555369 +3172.567723 +3172.582841 +3172.599991 +3172.616108 +3172.640983 +3172.654070 +3172.663960 +3172.680244 +3172.690400 +3172.703254 +3172.715642 +3172.749008 +3172.769088 +3172.782408 +3172.794529 +3172.810946 +3172.821169 +3172.835389 +3172.847743 +3172.874017 +3172.887703 +3172.923234 +3172.926464 +3172.937553 +3172.955002 +3172.980776 +3172.994363 +3172.999657 +3173.013344 +3173.027863 +3173.056800 +3173.100057 +3173.113144 +3173.117872 +3173.132624 +3173.146810 +3173.161995 +3173.177080 +3173.206184 +3173.221502 +3173.235122 +3173.251838 +3173.266124 +3173.281276 +3173.309947 +3173.323999 +3173.339884 +3173.354336 +3173.369188 +3173.384572 +3173.399790 +3173.415375 +3173.446377 +3173.459564 +3173.474848 +3173.489134 +3173.504918 +3173.519038 +3173.534489 +3173.549274 +3173.578811 +3173.593563 +3173.608215 +3173.623333 +3173.653570 +3173.668255 +3173.683073 +3173.698525 +3173.712810 +3173.727296 +3173.741948 +3173.757266 +3173.772018 +3173.788068 +3173.801621 +3173.817605 +3173.831025 +3173.875447 +3173.889766 +3173.904485 +3173.919903 +3173.935154 +3173.949407 +3173.965058 +3173.980709 +3173.996160 +3174.012211 +3174.026463 +3174.055667 +3174.085437 +3174.099856 +3174.114841 +3174.175447 +3174.238318 +3174.294128 +3174.323299 +3174.338750 +3174.399423 +3174.425031 +3174.438451 +3174.524764 +3174.597724 +3174.608147 +3174.624464 +3174.639483 +3174.655300 +3174.670984 +3174.685736 +3174.701387 +3174.733422 +3174.747574 +3174.777811 +3174.808147 +3174.823532 +3174.852703 +3179.497253 +3184.890455 +3184.892886 +3185.737007 +3185.886857 +3185.888223 +3186.887223 +3186.888555 +3186.891019 +3186.893317 +3186.902374 +3187.891850 +3187.894448 +3188.887387 +3188.888686 +3188.891516 +3188.894147 +3189.887053 +3189.888152 +3189.888385 +3189.891349 +3194.886748 +3194.888180 +3194.891011 +3194.987614 +3194.988780 +3194.993475 +3195.088047 +3195.089379 +3195.188280 +3195.189579 +3195.192043 +3195.194041 +3195.289745 +3195.292143 +3195.294407 +3195.388413 +3195.389678 +3195.392143 +3195.394340 +3195.488446 +3195.492509 +3195.588246 +3195.592109 +3195.596038 +3195.688446 +3195.689845 +3195.695705 +3195.788512 +3195.789878 +3195.792742 +3195.795372 +3195.888446 +3195.889778 +3195.892342 +3195.895306 +3195.988379 +3195.989644 +3195.992375 +3195.995539 +3196.088412 +3196.089711 +3196.091875 +3196.095838 +3196.188412 +3196.189777 +3196.192541 +3196.195272 +3196.288545 +3196.289944 +3196.292708 +3196.388479 +3196.392608 +3196.488545 +3196.489877 +3196.495238 +3196.588478 +3196.592441 +3196.595605 +3196.688378 +3196.689810 +3196.692341 +3196.693840 +3196.694672 +3196.695072 +3196.788478 +3196.789877 +3196.792641 +3196.796470 +3196.888478 +3196.889877 +3196.892707 +3196.988445 +3196.992674 +3196.996037 +3197.088578 +3197.089876 +3197.092774 +3197.096037 +3197.188444 +3197.189843 +3197.192674 +3197.195737 +3197.288411 +3197.292007 +3197.295870 +3197.388411 +3197.392340 +3197.394571 +3197.488511 +3197.489943 +3197.492640 +3197.496403 +3197.588411 +3197.589776 +3197.592706 +3197.596403 +3197.688477 +3197.700132 +3197.788477 +3197.792606 +3197.888510 +3197.896169 +3197.988444 +3197.992606 +3198.088477 +3198.092340 +3198.095370 +3198.188410 +3198.192639 +3198.196336 +3198.288510 +3198.292672 +3198.296302 +3198.388410 +3198.395103 +3198.488443 +3198.492772 +3198.495703 +3198.499399 +3198.588510 +3198.589842 +3198.593005 +3198.596202 +3198.688443 +3198.689742 +3198.788509 +3198.792406 +3198.795169 +3198.888443 +3198.892505 +3198.895269 +3198.896701 +3198.988476 +3198.989908 +3198.992638 +3198.995469 +3199.088476 +3199.092672 +3199.095902 +3199.188442 +3199.192705 +3199.195336 +3199.288476 +3199.292505 +3199.295668 +3199.388542 +3199.488509 +3199.688442 +3199.788475 +3199.795701 +3199.888442 +3204.886039 +3204.891634 +3204.898893 +3204.904354 +3204.911813 +3204.921370 +3204.929396 +3204.938087 +3204.948077 +3204.957334 +3204.966991 +3204.977381 +3204.987804 +3204.997228 +3205.007851 +3205.016808 +3205.026565 +3205.037454 +3205.039386 +3205.051207 +3205.074717 +3205.095563 +3205.107484 +3205.110015 +3205.119472 +3205.130295 +3205.140551 +3205.151407 +3205.161563 +3205.164028 +3205.173718 +3205.186006 +3205.195762 +3205.210481 +3205.232792 +3205.242516 +3205.253105 +3205.261030 +3205.271886 +3205.295263 +3205.308450 +3205.318473 +3205.328929 +3205.338087 +3205.348576 +3205.372652 +3205.385539 +3205.398826 +3205.408949 +3205.411546 +3205.421969 +3205.432659 +3205.443614 +3205.453871 +3205.461763 +3205.470621 +3205.483741 +3205.506318 +3205.518473 +3205.529562 +3205.532425 +3205.541117 +3205.553438 +3205.563361 +3205.573817 +3205.579612 +3205.598026 +3205.606118 +3205.617307 +3205.636188 +3205.644080 +3205.657067 +3205.662795 +3205.670554 +3205.679278 +3205.689934 +3205.700524 +3205.738053 +3205.749109 +3205.753371 +3205.762628 +3205.766824 +3205.789468 +3205.801556 +3205.807683 +3205.824633 +3205.835555 +3205.846311 +3205.862162 +3205.871020 +3205.875382 +3205.884340 +3205.886904 +3205.890334 +3205.897726 +3205.902255 +3205.909914 +3205.913544 +3205.922435 +3205.925365 +3205.935056 +3205.938619 +3205.948276 +3205.952005 +3205.960697 +3205.973784 +3205.979545 +3205.991366 +3206.001356 +3206.004120 +3206.013677 +3206.017140 +3206.025765 +3206.029761 +3206.037886 +3206.049708 +3206.062661 +3206.071686 +3206.074816 +3206.085538 +3206.089468 +3206.099291 +3206.111146 +3206.115575 +3206.124133 +3206.136820 +3206.140117 +3206.149308 +3206.152838 +3206.155202 +3206.162661 +3206.167057 +3206.171153 +3206.176314 +3206.181243 +3206.188269 +3206.196894 +3206.209681 +3206.213610 +3206.221835 +3206.227263 +3206.233324 +3206.236321 +3206.242948 +3206.246244 +3206.249108 +3206.257300 +3206.260297 +3206.269088 +3206.280676 +3206.285938 +3206.292864 +3206.295861 +3206.298525 +3206.301922 +3206.307416 +3206.310680 +3206.322135 +3206.330959 +3206.342148 +3206.354769 +3206.359231 +3206.368722 +3206.372218 +3206.376414 +3206.381642 +3206.384672 +3206.389368 +3206.395661 +3206.407783 +3206.419571 +3206.426664 +3206.435155 +3206.443414 +3206.446943 +3206.456467 +3206.459364 +3206.467956 +3206.471785 +3206.480610 +3206.484805 +3206.493730 +3206.497792 +3206.507183 +3206.519571 +3206.532757 +3206.537020 +3206.545012 +3206.548875 +3206.558165 +3206.561962 +3206.568921 +3206.573650 +3206.583207 +3206.587070 +3206.596261 +3206.612844 +3206.624133 +3206.627463 +3206.636520 +3206.649541 +3206.662494 +3206.676247 +3206.679943 +3206.689534 +3206.693796 +3206.702721 +3206.707582 +3206.717106 +3206.720936 +3206.729594 +3206.734689 +3206.742314 +3206.746910 +3206.755934 +3206.760163 +3206.768688 +3206.772484 +3206.781775 +3206.785704 +3206.793297 +3206.806617 +3206.810646 +3206.821102 +3206.831225 +3206.834555 +3206.841881 +3206.845611 +3206.855068 +3206.870619 +3206.883073 +3206.889800 +3206.899857 +3206.905717 +3206.916174 +3206.928162 +3206.939750 +3206.952071 +3206.962061 +3206.966623 +3206.974848 +3206.979677 +3206.990166 +3206.997326 +3207.007482 +3207.016573 +3207.021701 +3207.030459 +3207.035288 +3207.043346 +3207.056700 +3207.061029 +3207.070552 +3207.074615 +3207.083606 +3207.095860 +3207.100922 +3207.108947 +3207.120336 +3207.126929 +3207.132724 +3207.143746 +3207.156133 +3207.169187 +3207.172983 +3207.183073 +3207.197259 +3207.209647 +3207.215208 +3207.223366 +3207.228428 +3207.236753 +3207.241548 +3207.252204 +3207.262693 +3207.267855 +3207.276380 +3207.281341 +3207.289633 +3207.294195 +3207.308448 +3207.315674 +3207.320502 +3207.330059 +3207.341348 +3207.353036 +3207.358331 +3207.367089 +3207.370685 +3207.379377 +3207.391731 +3207.398058 +3207.404984 +3207.419004 +3207.428394 +3207.463792 +3207.475880 +3207.487901 +3207.499590 +3207.514708 +3207.528527 +3207.540049 +3207.553036 +3207.567755 +3207.578444 +3207.589633 +3207.602320 +3207.605550 +3207.628228 +3207.630991 +3207.641314 +3207.644844 +3207.656666 +3207.667588 +3207.679876 +3207.693129 +3207.697059 +3207.708447 +3207.720635 +3207.734088 +3207.739516 +3207.750938 +3207.765790 +3207.790099 +3207.822866 +3207.836086 +3207.840682 +3207.850072 +3207.863226 +3207.888667 +3207.903619 +3207.916672 +3207.929126 +3207.970019 +3207.983206 +3207.995826 +3208.009712 +3208.025064 +3208.076612 +3208.104717 +3208.117904 +3208.147408 +3208.158730 +3208.186336 +3208.201620 +3208.216172 +3208.231490 +3208.243112 +3208.255833 +3208.270818 +3208.321234 +3208.334820 +3208.362259 +3208.437018 +3208.450704 +3208.467288 +3208.480974 +3208.494261 +3208.507947 +3208.535619 +3208.561194 +3208.575013 +3208.590231 +3208.603085 +3208.620434 +3208.634753 +3208.754900 +3208.771417 +3208.784503 +3208.799588 +3208.829658 +3208.843012 +3208.873614 +3209.004517 +3209.031889 +3209.047174 +3209.122165 +3209.151103 +3209.286934 +3209.300221 +3209.358196 +3209.442112 +3209.500187 +3209.624829 +3209.696158 +3209.710943 +3209.741046 +3209.755198 +3209.801452 +3209.815771 +3209.847240 +3219.886557 +3219.887789 +3219.890553 +3219.892518 +3220.886756 +3220.892317 +3221.887054 +3221.888320 +3221.891417 +3222.886887 +3223.886853 +3223.888118 +3223.892081 +3224.886952 +3224.888150 +3224.890814 +3228.595906 +3228.882885 +3228.912156 +3229.886347 +3229.892275 +3229.987213 +3229.988445 +3229.991009 +3230.087612 +3230.088878 +3230.091209 +3230.092974 +3230.187779 +3230.189111 +3230.191475 +3230.287978 +3230.291675 +3230.293906 +3230.295338 +3230.297003 +3230.388012 +3230.389344 +3230.393839 +3230.488045 +3230.489377 +3230.495138 +3230.588045 +3230.589343 +3230.592141 +3230.594671 +3230.688045 +3230.689377 +3230.691907 +3230.695071 +3230.699034 +3230.788045 +3230.789343 +3230.792041 +3230.794705 +3230.888078 +3230.889443 +3230.895104 +3230.988044 +3230.989410 +3230.992373 +3230.994704 +3231.088044 +3231.089443 +3231.092140 +3231.188011 +3231.189443 +3231.191641 +3231.199499 +3231.288077 +3231.289409 +3231.292207 +3231.294704 +3231.388144 +3231.389509 +3231.393705 +3231.396069 +3231.488044 +3231.489409 +3231.492106 +3231.495303 +3231.588110 +3231.589509 +3231.592040 +3231.595303 +3231.688110 +3231.689476 +3231.692006 +3231.694770 +3231.788143 +3231.789475 +3231.792040 +3231.794304 +3231.888143 +3231.889442 +3231.894870 +3231.988143 +3231.992306 +3232.088143 +3232.092039 +3232.095103 +3232.192106 +3232.194770 +3232.288143 +3232.292239 +3232.295203 +3232.388176 +3232.391806 +3232.394137 +3232.488109 +3232.492305 +3232.494836 +3232.588143 +3232.592105 +3232.688176 +3232.692139 +3232.695469 +3232.788109 +3232.792505 +3232.795302 +3232.888076 +3232.897267 +3232.988209 +3232.989541 +3232.991872 +3233.088076 +3233.089441 +3233.092138 +3233.094969 +3233.188142 +3233.191938 +3233.197100 +3233.198698 +3233.288109 +3233.289474 +3233.292071 +3233.295967 +3233.388142 +3233.395468 +3233.488208 +3233.588142 +3233.589474 +3233.591971 +3233.594335 +3233.688075 +3233.691272 +3233.692138 +3233.788175 +3233.888175 +3233.889540 +3233.895268 +3233.899164 +3233.988041 +3233.994735 +3234.088174 +3234.092304 +3234.189606 +3234.194568 +3234.288108 +3234.292204 +3234.388141 +3234.594934 +3234.688107 +3239.886237 +3239.903620 +3239.909880 +3239.917606 +3239.919437 +3239.926730 +3239.935188 +3239.943880 +3239.953104 +3239.962661 +3239.964326 +3239.992930 +3240.002554 +3240.004652 +3240.013676 +3240.024133 +3240.034056 +3240.043946 +3240.054602 +3240.063160 +3240.073816 +3240.083973 +3240.094329 +3240.096860 +3240.105052 +3240.116307 +3240.127263 +3240.136320 +3240.138818 +3240.161029 +3240.173416 +3240.194429 +3240.203953 +3240.208881 +3240.219237 +3240.233456 +3240.243113 +3240.265524 +3240.281641 +3240.290832 +3240.304485 +3240.316740 +3240.326330 +3240.343480 +3240.354235 +3240.363659 +3240.367822 +3240.378211 +3240.389300 +3240.400289 +3240.411212 +3240.423366 +3240.435687 +3240.445144 +3240.453070 +3240.462394 +3240.479776 +3240.485238 +3240.488668 +3240.498924 +3240.509613 +3240.520869 +3240.532457 +3240.553270 +3240.565557 +3240.574648 +3240.585904 +3240.593629 +3240.604418 +3240.614708 +3240.625764 +3240.636986 +3240.645577 +3240.664691 +3240.677578 +3240.686902 +3240.697925 +3240.701288 +3240.710712 +3240.725031 +3240.762094 +3240.773949 +3240.791731 +3240.800555 +3240.804518 +3240.812543 +3240.815807 +3240.825863 +3240.834854 +3240.839550 +3240.862427 +3240.865823 +3240.874914 +3240.880109 +3240.890499 +3240.904018 +3240.912044 +3240.916672 +3240.925197 +3240.930892 +3240.937219 +3240.946276 +3240.950372 +3240.954668 +3240.962860 +3240.966922 +3240.975181 +3240.979410 +3240.988301 +3240.992064 +3240.995627 +3241.001088 +3241.005717 +3241.012776 +3241.021967 +3241.034022 +3241.038850 +3241.045876 +3241.050705 +3241.055767 +3241.059263 +3241.071384 +3241.083572 +3241.087468 +3241.092730 +3241.097092 +3241.112809 +3241.120036 +3241.123232 +3241.126929 +3241.136419 +3241.144411 +3241.149240 +3241.161894 +3241.168820 +3241.172217 +3241.177378 +3241.182739 +3241.185936 +3241.194661 +3241.197358 +3241.204418 +3241.209280 +3241.216206 +3241.225963 +3241.228993 +3241.238317 +3241.241814 +3241.250172 +3241.256932 +3241.261561 +3241.266389 +3241.273116 +3241.285370 +3241.297858 +3241.301720 +3241.306316 +3241.314874 +3241.320402 +3241.327495 +3241.333489 +3241.337917 +3241.345576 +3241.350671 +3241.356565 +3241.359895 +3241.367588 +3241.370218 +3241.373349 +3241.377811 +3241.383072 +3241.386902 +3241.390365 +3241.396625 +3241.401121 +3241.409746 +3241.412876 +3241.417138 +3241.422766 +3241.426096 +3241.430691 +3241.435453 +3241.439516 +3241.446675 +3241.450272 +3241.456166 +3241.461627 +3241.464824 +3241.473115 +3241.476845 +3241.486102 +3241.489399 +3241.497591 +3241.500921 +3241.513275 +3241.517871 +3241.523798 +3241.533422 +3241.546076 +3241.549905 +3241.559196 +3241.564191 +3241.580008 +3241.586169 +3241.590598 +3241.597891 +3241.618770 +3241.623132 +3241.632556 +3241.636186 +3241.639948 +3241.646109 +3241.651970 +3241.657065 +3241.664058 +3241.678776 +3241.689066 +3241.697924 +3241.701354 +3241.710345 +3241.714274 +3241.718803 +3241.723598 +3241.727394 +3241.735220 +3241.741747 +3241.746675 +3241.749805 +3241.763192 +3241.773148 +3241.777644 +3241.785170 +3241.791530 +3241.796558 +3241.806781 +3241.819535 +3241.828393 +3241.840747 +3241.845176 +3241.854034 +3241.866289 +3241.877810 +3241.888433 +3241.900421 +3241.912043 +3241.916039 +3241.925429 +3241.928992 +3241.936651 +3241.941713 +3241.949971 +3241.954034 +3241.962925 +3241.968053 +3241.975712 +3241.979708 +3241.987800 +3241.992662 +3242.001420 +3242.015306 +3242.019169 +3242.029525 +3242.041180 +3242.045975 +3242.054567 +3242.058929 +3242.068220 +3242.072282 +3242.082739 +3242.087001 +3242.095126 +3242.099389 +3242.107880 +3242.112409 +3242.122166 +3242.126861 +3242.135319 +3242.140048 +3242.148073 +3242.152968 +3242.161926 +3242.166355 +3242.174946 +3242.180474 +3242.187567 +3242.192795 +3242.201919 +3242.207014 +3242.215106 +3242.218869 +3242.230624 +3242.234553 +3242.242345 +3242.245609 +3242.256764 +3242.260561 +3242.269152 +3242.273215 +3242.282838 +3242.288599 +3242.295326 +3242.300154 +3242.309079 +3242.312908 +3242.322765 +3242.327460 +3242.336218 +3242.340680 +3242.349039 +3242.361060 +3242.364823 +3242.374646 +3242.378975 +3242.388100 +3242.399555 +3242.402252 +3242.414573 +3242.418869 +3242.428526 +3242.433421 +3242.442445 +3242.446108 +3242.454966 +3242.460294 +3242.471449 +3242.485169 +3242.496591 +3242.500321 +3242.514107 +3242.528725 +3242.536285 +3242.541712 +3242.551769 +3242.569884 +3242.579408 +3242.583104 +3242.593627 +3242.597656 +3242.606281 +3242.610544 +3242.623464 +3242.634386 +3242.639048 +3242.648106 +3242.665855 +3242.675212 +3242.678775 +3242.688865 +3242.693161 +3242.713907 +3242.727393 +3242.740214 +3242.753700 +3242.757963 +3242.768519 +3242.781206 +3242.785801 +3242.795658 +3242.812974 +3242.827027 +3242.836950 +3242.850037 +3242.863890 +3242.882371 +3242.896058 +3242.906747 +3242.920467 +3242.950537 +3242.965422 +3242.977576 +3242.981106 +3243.056231 +3243.081739 +3243.108878 +3243.121099 +3243.149371 +3243.162458 +3243.177409 +3243.190230 +3243.204283 +3243.233353 +3243.246873 +3243.261026 +3243.275811 +3243.288398 +3243.304449 +3243.319367 +3243.333553 +3243.377776 +3243.392161 +3243.405514 +3243.420466 +3243.449937 +3243.464888 +3243.476610 +3243.494192 +3243.507646 +3243.615671 +3243.659127 +3243.687898 +3243.714139 +3243.774312 +3243.824495 +3243.840745 +3243.910376 +3243.923163 +3243.939114 +3244.039780 +3244.070316 +3244.112640 +3244.137948 +3244.152667 +3244.162390 +3244.259693 +3244.266985 +3244.395990 +3244.422297 +3244.484101 +3244.510508 +3244.524794 +3244.543076 +3244.569083 +3244.726159 +3244.742010 +3244.856062 +3254.887821 +3254.892383 +3254.897544 +3255.888219 +3255.890817 +3255.893347 +3255.903337 +3256.887019 +3256.888351 +3256.890916 +3257.886985 +3257.888350 +3257.891081 +3259.886917 +3259.888182 +3259.891345 +3259.908562 +3264.886379 +3264.887578 +3264.890308 +3264.900265 +3264.987211 +3264.990608 +3264.992539 +3265.087677 +3265.088976 +3265.091174 +3265.187910 +3265.191440 +3265.287977 +3265.289309 +3265.291606 +3265.293704 +3265.388077 +3265.389342 +3265.391939 +3265.393904 +3265.489442 +3265.491939 +3265.494570 +3265.588043 +3265.589408 +3265.591706 +3265.688110 +3265.689475 +3265.692106 +3265.788143 +3265.789441 +3265.792239 +3265.887810 +3265.891373 +3265.895535 +3265.988875 +3265.991373 +3265.995435 +3266.087976 +3266.089341 +3266.187943 +3266.189308 +3266.195169 +3266.288142 +3266.289441 +3266.292205 +3266.388142 +3266.392504 +3266.396101 +3266.488142 +3266.489507 +3266.491972 +3266.494469 +3266.587975 +3266.592271 +3266.595235 +3266.688075 +3266.689474 +3266.692204 +3266.695035 +3266.788075 +3266.789407 +3266.791771 +3266.794236 +3266.799031 +3266.888108 +3266.892437 +3266.988175 +3266.989573 +3266.992504 +3267.088108 +3267.089440 +3267.092038 +3267.095567 +3267.188141 +3267.189573 +3267.195234 +3267.288274 +3267.289673 +3267.292304 +3267.294035 +3267.295434 +3267.388174 +3267.389606 +3267.392137 +3267.395068 +3267.396033 +3267.488108 +3267.492204 +3267.495434 +3267.588074 +3267.591937 +3267.595101 +3267.688174 +3267.689539 +3267.692670 +3267.788141 +3267.789539 +3267.792403 +3267.888174 +3267.892636 +3267.895333 +3267.895567 +3267.988207 +3267.992536 +3267.995500 +3268.088207 +3268.089539 +3268.095067 +3268.188140 +3268.192136 +3268.288174 +3268.292503 +3268.388173 +3268.389505 +3268.392169 +3268.395033 +3268.488173 +3268.588007 +3268.592169 +3268.595299 +3268.688140 +3268.692003 +3268.695732 +3268.792269 +3268.794833 +3268.888206 +3268.892202 +3268.988140 +3268.994866 +3268.999162 +3269.088206 +3269.092335 +3269.095066 +3269.099328 +3269.188139 +3269.192302 +3269.195465 +3269.288206 +3269.292535 +3269.295032 +3269.298995 +3269.388206 +3269.389538 +3269.392368 +3269.488039 +3269.492135 +3269.494666 +3269.499061 +3269.588139 +3269.589471 +3269.591935 +3269.594399 +3269.688072 +3269.692135 +3269.694066 +3269.694832 +3269.788139 +3269.789504 +3269.792168 +3269.794732 +3269.888139 +3269.889537 +3269.892368 +3269.894432 +3274.886269 +3274.890098 +3274.898490 +3274.903318 +3274.912742 +3274.921001 +3274.923032 +3274.930525 +3274.932822 +3274.950405 +3274.960994 +3274.969053 +3274.975846 +3274.986269 +3274.988633 +3274.997058 +3275.007514 +3275.010411 +3275.018803 +3275.030025 +3275.032223 +3275.041314 +3275.052536 +3275.063458 +3275.065290 +3275.074580 +3275.085669 +3275.097657 +3275.108313 +3275.119402 +3275.130491 +3275.141047 +3275.150804 +3275.162692 +3275.169952 +3275.180508 +3275.190864 +3275.203152 +3275.213408 +3275.224630 +3275.237151 +3275.247008 +3275.255899 +3275.258496 +3275.268220 +3275.278410 +3275.289032 +3275.299056 +3275.308113 +3275.316605 +3275.327327 +3275.337217 +3275.350504 +3275.371849 +3275.382339 +3275.384670 +3275.395359 +3275.406581 +3275.416072 +3275.427194 +3275.436918 +3275.447074 +3275.457930 +3275.471250 +3275.473414 +3275.483904 +3275.496958 +3275.507780 +3275.520201 +3275.534420 +3275.549871 +3275.561626 +3275.571450 +3275.585302 +3275.596092 +3275.609678 +3275.620634 +3275.628060 +3275.633954 +3275.646042 +3275.650271 +3275.658829 +3275.663025 +3275.672282 +3275.676278 +3275.685103 +3275.697424 +3275.710411 +3275.726461 +3275.737384 +3275.750171 +3275.754133 +3275.762425 +3275.774113 +3275.784270 +3275.787567 +3275.796225 +3275.799954 +3275.808745 +3275.812642 +3275.822798 +3275.831756 +3275.841779 +3275.849971 +3275.866321 +3275.874679 +3275.876877 +3275.888133 +3275.899621 +3275.904749 +3275.912042 +3275.917037 +3275.924463 +3275.934420 +3275.937417 +3275.946774 +3275.949704 +3275.958029 +3275.961626 +3275.966055 +3275.971549 +3275.974480 +3275.984103 +3275.997124 +3276.000487 +3276.004949 +3276.010876 +3276.016970 +3276.022698 +3276.030856 +3276.036850 +3276.044709 +3276.055399 +3276.066787 +3276.076711 +3276.080140 +3276.088465 +3276.092994 +3276.100953 +3276.113274 +3276.116770 +3276.125362 +3276.131389 +3276.141446 +3276.145242 +3276.153201 +3276.158096 +3276.165688 +3276.172048 +3276.178109 +3276.186967 +3276.190763 +3276.199887 +3276.203184 +3276.213207 +3276.216171 +3276.225595 +3276.228692 +3276.237649 +3276.241612 +3276.251302 +3276.253966 +3276.264489 +3276.267786 +3276.275944 +3276.280973 +3276.288798 +3276.293760 +3276.301319 +3276.313507 +3276.316038 +3276.327127 +3276.335518 +3276.339248 +3276.348439 +3276.355731 +3276.363590 +3276.366720 +3276.375278 +3276.379208 +3276.386767 +3276.390496 +3276.399687 +3276.404316 +3276.409111 +3276.417403 +3276.428492 +3276.438781 +3276.448971 +3276.453001 +3276.461992 +3276.472714 +3276.485501 +3276.488432 +3276.498022 +3276.501052 +3276.505415 +3276.511409 +3276.522964 +3276.526594 +3276.531122 +3276.537449 +3276.540746 +3276.549171 +3276.552368 +3276.557796 +3276.563323 +3276.566487 +3276.566820 +3276.571449 +3276.577110 +3276.580306 +3276.585068 +3276.590463 +3276.594359 +3276.603283 +3276.606480 +3276.610343 +3276.617736 +3276.621765 +3276.629124 +3276.632954 +3276.640413 +3276.644376 +3276.648172 +3276.653566 +3276.656064 +3276.666320 +3276.669417 +3276.678275 +3276.680906 +3276.685634 +3276.690829 +3276.694059 +3276.702950 +3276.711608 +3276.717469 +3276.724229 +3276.728558 +3276.733120 +3276.741512 +3276.753433 +3276.760027 +3276.770749 +3276.775944 +3276.780972 +3276.794592 +3276.806980 +3276.819867 +3276.823929 +3276.833287 +3276.837049 +3276.846074 +3276.849703 +3276.859927 +3276.863223 +3276.877942 +3276.886234 +3276.896024 +3276.903083 +3276.909877 +3276.912407 +3276.923296 +3276.926060 +3276.936783 +3276.949204 +3276.962557 +3276.966420 +3276.977842 +3276.989697 +3276.994159 +3277.004482 +3277.009643 +3277.017469 +3277.029590 +3277.034319 +3277.042644 +3277.046873 +3277.056829 +3277.060792 +3277.070482 +3277.074279 +3277.084302 +3277.089064 +3277.097089 +3277.100852 +3277.110542 +3277.114139 +3277.124395 +3277.128391 +3277.137915 +3277.142843 +3277.150536 +3277.155231 +3277.164122 +3277.168651 +3277.177775 +3277.181338 +3277.190629 +3277.195291 +3277.204382 +3277.208744 +3277.218235 +3277.221331 +3277.231721 +3277.235750 +3277.244375 +3277.258261 +3277.262191 +3277.271015 +3277.285534 +3277.290096 +3277.298787 +3277.312174 +3277.317302 +3277.326526 +3277.330289 +3277.340113 +3277.343942 +3277.352234 +3277.358860 +3277.367419 +3277.370882 +3277.382570 +3277.385134 +3277.395590 +3277.399953 +3277.409410 +3277.414605 +3277.423662 +3277.427492 +3277.437182 +3277.441877 +3277.455730 +3277.466952 +3277.470282 +3277.479573 +3277.494292 +3277.497955 +3277.507512 +3277.511041 +3277.525594 +3277.533619 +3277.539013 +3277.548904 +3277.562323 +3277.566752 +3277.575477 +3277.581804 +3277.590862 +3277.595157 +3277.605347 +3277.609909 +3277.622929 +3277.648704 +3277.652433 +3277.663456 +3277.666686 +3277.678108 +3277.680871 +3277.690362 +3277.695690 +3277.705780 +3277.708977 +3277.719866 +3277.724994 +3277.737681 +3277.748537 +3277.753465 +3277.766386 +3277.775443 +3277.781304 +3277.806712 +3277.818101 +3277.822729 +3277.834185 +3277.845373 +3277.850335 +3277.873645 +3277.900552 +3277.905447 +3277.916802 +3277.934351 +3277.945640 +3277.961124 +3277.964454 +3277.975543 +3277.979173 +3277.992226 +3278.009276 +3278.019000 +3278.036615 +3278.051434 +3278.061724 +3278.066319 +3278.080272 +3278.094724 +3278.108677 +3278.125593 +3278.155963 +3278.169516 +3278.181770 +3278.197787 +3278.210108 +3278.226159 +3278.240112 +3278.251467 +3278.267151 +3278.281437 +3278.296422 +3278.308110 +3278.311507 +3278.324627 +3278.353665 +3278.368350 +3278.380205 +3278.397188 +3278.411041 +3278.426059 +3278.441044 +3278.468050 +3278.481770 +3278.497920 +3278.514604 +3278.530421 +3278.543774 +3278.558626 +3278.574310 +3278.589895 +3278.602649 +3278.618966 +3278.648503 +3278.663188 +3278.693591 +3278.710241 +3278.722962 +3278.738380 +3278.752066 +3278.768150 +3278.784100 +3278.798719 +3278.828156 +3278.858493 +3278.872112 +3278.902815 +3278.942975 +3278.958759 +3279.002915 +3279.129122 +3279.167117 +3279.180737 +3279.197720 +3279.213271 +3279.297253 +3279.310507 +3279.339644 +3279.391992 +3279.446304 +3279.475642 +3279.491892 +3279.506744 +3279.522694 +3279.539211 +3279.554030 +3279.584233 +3279.599318 +3279.676341 +3279.751898 +3279.766950 +3279.783533 +3279.799084 +3279.876607 +3289.886554 +3289.887819 +3289.889750 +3289.891782 +3289.895944 +3289.900706 +3290.888417 +3290.891181 +3290.905434 +3291.886685 +3291.888150 +3291.892978 +3292.887017 +3292.888349 +3292.891146 +3292.902035 +3293.886982 +3293.888248 +3293.891245 +3293.893309 +3294.888280 +3294.893542 +3296.812387 +3299.886510 +3299.890440 +3299.892005 +3299.910853 +3299.987243 +3299.988442 +3299.990539 +3299.992671 +3299.997433 +3300.087742 +3300.089041 +3300.091372 +3300.093403 +3300.187942 +3300.189241 +3300.191472 +3300.193669 +3300.288042 +3300.293736 +3300.389473 +3300.488175 +3300.489540 +3300.492437 +3300.495734 +3300.588175 +3300.589473 +3300.594169 +3300.688041 +3300.689440 +3300.691738 +3300.694202 +3300.788141 +3300.789506 +3300.792437 +3300.794068 +3300.888041 +3300.889406 +3300.892237 +3300.988074 +3300.992470 +3301.088207 +3301.089573 +3301.188207 +3301.189639 +3301.192603 +3301.194867 +3301.288174 +3301.289539 +3301.292203 +3301.294534 +3301.388240 +3301.389572 +3301.392370 +3301.488140 +3301.489439 +3301.495633 +3301.588140 +3301.589539 +3301.592136 +3301.595233 +3301.688140 +3301.689439 +3301.692136 +3301.694367 +3301.788107 +3301.789472 +3301.791970 +3301.888107 +3301.892169 +3301.988240 +3301.989538 +3301.992369 +3302.088306 +3302.092369 +3302.095066 +3302.097231 +3302.188339 +3302.195199 +3302.288239 +3302.291869 +3302.388339 +3302.389705 +3302.391936 +3302.488306 +3302.489671 +3302.492302 +3302.495432 +3302.588306 +3302.589604 +3302.592435 +3302.596298 +3302.688272 +3302.692102 +3302.694666 +3302.788339 +3302.789604 +3302.795032 +3302.888239 +3302.892435 +3302.895065 +3302.988239 +3302.989637 +3302.992201 +3303.088139 +3303.092035 +3303.188139 +3303.189504 +3303.192001 +3303.288272 +3303.289637 +3303.292168 +3303.295698 +3303.388272 +3303.392401 +3303.395964 +3303.488205 +3303.489604 +3303.492401 +3303.495265 +3303.588305 +3303.592301 +3303.688271 +3303.689737 +3303.788238 +3303.792267 +3303.795264 +3303.796796 +3303.888271 +3303.889636 +3303.892334 +3303.895031 +3303.988304 +3303.992600 +3303.995963 +3304.088338 +3304.089736 +3304.095297 +3304.188238 +3304.192433 +3304.196429 +3304.288204 +3304.289569 +3304.292367 +3304.294698 +3304.388271 +3304.392000 +3304.394598 +3304.488304 +3304.492433 +3304.588237 +3304.592233 +3304.595630 +3304.688071 +3304.696029 +3304.788170 +3304.789569 +3304.795863 +3304.888070 +3304.894864 +3309.886367 +3309.897323 +3309.903949 +3309.911176 +3309.920599 +3309.928825 +3309.949371 +3309.958795 +3309.969550 +3309.980040 +3309.990663 +3310.001851 +3310.010942 +3310.020599 +3310.031788 +3310.041578 +3310.064589 +3310.066886 +3310.076110 +3310.078608 +3310.088431 +3310.090962 +3310.100286 +3310.111642 +3310.127026 +3310.137715 +3310.146540 +3310.156463 +3310.168118 +3310.178874 +3310.181505 +3310.192494 +3310.202118 +3310.212940 +3310.222131 +3310.229723 +3310.241878 +3310.253633 +3310.263490 +3310.275111 +3310.284335 +3310.294392 +3310.305281 +3310.315271 +3310.326593 +3310.337049 +3310.348138 +3310.361991 +3310.372514 +3310.384535 +3310.395990 +3310.407445 +3310.419034 +3310.440612 +3310.452967 +3310.470449 +3310.478374 +3310.483869 +3310.491195 +3310.504249 +3310.515471 +3310.517968 +3310.527925 +3310.533120 +3310.542144 +3310.547239 +3310.555697 +3310.561425 +3310.569450 +3310.581038 +3310.587199 +3310.594658 +3310.604315 +3310.617402 +3310.630289 +3310.637215 +3310.643509 +3310.650469 +3310.657229 +3310.666453 +3310.678874 +3310.691761 +3310.705547 +3310.716836 +3310.729123 +3310.741511 +3310.748737 +3310.758894 +3310.769949 +3310.783036 +3310.809876 +3310.823762 +3310.829789 +3310.841677 +3310.850302 +3310.855364 +3310.861757 +3310.873279 +3310.877042 +3310.887232 +3310.891761 +3310.899986 +3310.903482 +3310.913006 +3310.926493 +3310.938514 +3310.950935 +3310.960026 +3310.967252 +3310.972946 +3310.981071 +3310.984901 +3310.994025 +3311.007445 +3311.019033 +3311.024161 +3311.035284 +3311.043142 +3311.055164 +3311.065720 +3311.073279 +3311.082603 +3311.095157 +3311.107844 +3311.111541 +3311.121564 +3311.125194 +3311.134751 +3311.138181 +3311.148104 +3311.150868 +3311.158360 +3311.162623 +3311.172047 +3311.175177 +3311.183702 +3311.187565 +3311.195690 +3311.201451 +3311.207977 +3311.212040 +3311.219399 +3311.223329 +3311.231920 +3311.235949 +3311.244874 +3311.248870 +3311.257894 +3311.262256 +3311.264687 +3311.271580 +3311.276775 +3311.283968 +3311.288530 +3311.296689 +3311.301484 +3311.314604 +3311.320931 +3311.328157 +3311.331287 +3311.341544 +3311.344274 +3311.354031 +3311.365986 +3311.369416 +3311.378573 +3311.381870 +3311.391294 +3311.394424 +3311.398853 +3311.404181 +3311.407012 +3311.409942 +3311.417201 +3311.420032 +3311.428923 +3311.432386 +3311.436316 +3311.442576 +3311.449536 +3311.453965 +3311.457628 +3311.468783 +3311.478373 +3311.482070 +3311.489362 +3311.491927 +3311.501617 +3311.515869 +3311.518500 +3311.522096 +3311.529256 +3311.532886 +3311.537081 +3311.543508 +3311.555863 +3311.559559 +3311.568583 +3311.573778 +3311.581137 +3311.588164 +3311.594657 +3311.599885 +3311.604347 +3311.617301 +3311.631154 +3311.634550 +3311.638014 +3311.644407 +3311.648070 +3311.658127 +3311.661623 +3311.671380 +3311.675376 +3311.685733 +3311.691061 +3311.698786 +3311.703615 +3311.711673 +3311.716468 +3311.725759 +3311.730155 +3311.738879 +3311.743708 +3311.751500 +3311.755396 +3311.765053 +3311.769715 +3311.777974 +3311.782303 +3311.792193 +3311.798553 +3311.809609 +3311.819199 +3311.822562 +3311.831953 +3311.835882 +3311.844607 +3311.858293 +3311.870914 +3311.875476 +3311.884001 +3311.889062 +3311.897354 +3311.910441 +3311.913904 +3311.919032 +3311.925226 +3311.929588 +3311.938380 +3311.941643 +3311.950601 +3311.955130 +3311.963488 +3311.967184 +3311.976841 +3311.994224 +3312.005246 +3312.009475 +3312.017434 +3312.023228 +3312.033351 +3312.044673 +3312.048802 +3312.057993 +3312.061756 +3312.072112 +3312.084600 +3312.089229 +3312.102549 +3312.110774 +3312.116435 +3312.125559 +3312.128922 +3312.152565 +3312.158792 +3312.166818 +3312.172312 +3312.179738 +3312.192991 +3312.207710 +3312.223394 +3312.233551 +3312.238080 +3312.247004 +3312.251866 +3312.264387 +3312.280038 +3312.288895 +3312.302948 +3312.318599 +3312.346105 +3312.361723 +3312.396921 +3312.402781 +3312.415868 +3312.421629 +3312.430187 +3312.438646 +3312.448935 +3312.472445 +3312.485199 +3312.498586 +3312.502815 +3312.527124 +3312.541176 +3312.553064 +3312.567250 +3312.581636 +3312.585432 +3312.596354 +3312.600284 +3312.610374 +3312.614803 +3312.628222 +3312.640710 +3312.652165 +3312.656727 +3312.671646 +3312.683201 +3312.699751 +3312.740843 +3312.763021 +3312.775442 +3312.789794 +3312.822262 +3312.832651 +3312.864053 +3312.876907 +3312.893091 +3312.954163 +3312.970380 +3312.983001 +3313.024293 +3313.050034 +3313.065418 +3313.107110 +3313.111405 +3313.125525 +3313.139944 +3313.196720 +3313.224792 +3313.241275 +3313.255062 +3313.271245 +3313.285365 +3313.300949 +3313.330220 +3313.343740 +3313.358658 +3313.374875 +3313.389094 +3313.405345 +3313.433483 +3313.463586 +3313.478438 +3313.493556 +3313.507975 +3313.538012 +3313.567516 +3313.583000 +3313.598784 +3313.613569 +3313.628754 +3313.643206 +3313.658491 +3313.672910 +3313.688894 +3313.702980 +3313.718564 +3313.734115 +3313.749134 +3313.763286 +3313.778638 +3313.792890 +3313.808508 +3313.824192 +3313.839310 +3313.854428 +3313.869180 +3313.885397 +3313.900183 +3313.930286 +3313.944571 +3313.990259 +3314.005211 +3314.021361 +3314.036180 +3314.051797 +3314.066350 +3314.081767 +3314.096886 +3314.127721 +3314.143039 +3314.158391 +3314.187162 +3314.233815 +3314.248401 +3314.253362 +3314.338910 +3314.414201 +3314.458690 +3314.485663 +3314.501980 +3314.516366 +3314.561354 +3314.594221 +3314.607208 +3314.624291 +3314.654827 +3314.769879 +3314.784031 +3314.797717 +3314.827088 +3314.856525 +3314.884997 +3324.886585 +3324.887851 +3324.890981 +3324.893811 +3325.887217 +3325.888582 +3325.891379 +3325.897706 +3326.900036 +3327.887115 +3327.891844 +3327.897871 +3328.887214 +3328.888513 +3328.893707 +3328.902399 +3329.887313 +3329.888578 +3329.891342 +3329.894339 +3333.834395 +3334.886808 +3334.888074 +3334.890671 +3334.892469 +3334.900861 +3334.987574 +3334.988806 +3334.991304 +3334.993135 +3335.087940 +3335.188273 +3335.189605 +3335.192036 +3335.289705 +3335.292169 +3335.294067 +3335.395466 +3335.488439 +3335.489838 +3335.492602 +3335.494433 +3335.589838 +3335.592868 +3335.692036 +3335.694600 +3335.789871 +3335.792668 +3335.794866 +3335.888339 +3335.889738 +3335.892901 +3335.895998 +3335.988505 +3335.990004 +3335.992801 +3335.995032 +3336.088539 +3336.089971 +3336.092168 +3336.094633 +3336.188539 +3336.192868 +3336.195798 +3336.288472 +3336.292501 +3336.295765 +3336.388538 +3336.389937 +3336.392734 +3336.397862 +3336.489804 +3336.492501 +3336.494899 +3336.588472 +3336.592734 +3336.596031 +3336.688405 +3336.689870 +3336.692767 +3336.696264 +3336.788405 +3336.789737 +3336.792034 +3336.794599 +3336.892567 +3336.895531 +3336.988504 +3336.995830 +3337.088604 +3337.092867 +3337.188538 +3337.189936 +3337.192833 +3337.194998 +3337.288504 +3337.292733 +3337.388471 +3337.392766 +3337.395797 +3337.398194 +3337.488537 +3337.493199 +3337.495897 +3337.588604 +3337.589969 +3337.592933 +3337.595697 +3337.688570 +3337.689969 +3337.692733 +3337.695097 +3337.788604 +3337.789969 +3337.793032 +3337.888570 +3337.892533 +3337.896063 +3337.988603 +3337.992866 +3337.995563 +3338.092799 +3338.099892 +3338.189902 +3338.192266 +3338.195197 +3338.288636 +3338.290002 +3338.292865 +3338.388570 +3338.389902 +3338.392732 +3338.394830 +3338.488603 +3338.490001 +3338.492799 +3338.495363 +3338.588569 +3338.589901 +3338.592599 +3338.688503 +3338.689801 +3338.692832 +3338.696162 +3338.788569 +3338.792532 +3338.794996 +3338.888636 +3338.890134 +3338.892665 +3338.895695 +3338.988569 +3339.088502 +3339.092831 +3339.095429 +3339.188602 +3339.192598 +3339.195462 +3339.288535 +3339.292798 +3339.388602 +3339.488535 +3339.492465 +3339.495095 +3339.497526 +3339.588602 +3339.592864 +3339.688568 +3339.695628 +3339.788602 +3339.792231 +3339.794629 +3339.888635 +3339.892764 +3339.896527 +3344.886598 +3344.903615 +3344.918800 +3344.928357 +3344.937814 +3344.945206 +3344.952999 +3344.962855 +3344.971946 +3344.981836 +3344.991493 +3344.993958 +3345.002383 +3345.015003 +3345.023428 +3345.033851 +3345.043675 +3345.052965 +3345.064420 +3345.074777 +3345.085866 +3345.095989 +3345.098553 +3345.106811 +3345.118033 +3345.128423 +3345.138147 +3345.147670 +3345.157228 +3345.168749 +3345.179339 +3345.190195 +3345.199985 +3345.211939 +3345.223828 +3345.234783 +3345.245706 +3345.256328 +3345.267451 +3345.270148 +3345.281636 +3345.291460 +3345.303581 +3345.314437 +3345.328390 +3345.341876 +3345.351766 +3345.357727 +3345.366118 +3345.379239 +3345.390461 +3345.397820 +3345.404680 +3345.413504 +3345.423827 +3345.434150 +3345.443807 +3345.454696 +3345.468483 +3345.481270 +3345.492692 +3345.505079 +3345.517300 +3345.527524 +3345.539245 +3345.550434 +3345.561889 +3345.572645 +3345.593158 +3345.605978 +3345.610174 +3345.619065 +3345.625126 +3345.632219 +3345.642209 +3345.655396 +3345.667217 +3345.678606 +3345.690927 +3345.709042 +3345.719098 +3345.730853 +3345.737314 +3345.751766 +3345.763587 +3345.766285 +3345.777340 +3345.781336 +3345.789694 +3345.801383 +3345.805479 +3345.815036 +3345.819098 +3345.827690 +3345.831319 +3345.841443 +3345.845439 +3345.854363 +3345.858059 +3345.860490 +3345.872545 +3345.880237 +3345.884599 +3345.893790 +3345.904246 +3345.914936 +3345.923993 +3345.936148 +3345.949268 +3345.973177 +3345.985099 +3345.996587 +3346.012238 +3346.022761 +3346.026691 +3346.034516 +3346.038412 +3346.046304 +3346.049701 +3346.060190 +3346.064586 +3346.073244 +3346.085931 +3346.090260 +3346.099684 +3346.102648 +3346.111606 +3346.116467 +3346.124826 +3346.130320 +3346.136814 +3346.148036 +3346.153097 +3346.160790 +3346.166983 +3346.179637 +3346.192058 +3346.196254 +3346.207743 +3346.213570 +3346.220397 +3346.224259 +3346.232418 +3346.235581 +3346.245438 +3346.249168 +3346.253297 +3346.258858 +3346.271446 +3346.279238 +3346.284632 +3346.294922 +3346.305878 +3346.311139 +3346.318232 +3346.322827 +3346.329687 +3346.333417 +3346.341276 +3346.343707 +3346.348002 +3346.353763 +3346.356927 +3346.366251 +3346.369514 +3346.374076 +3346.380170 +3346.383866 +3346.392524 +3346.396554 +3346.406344 +3346.414336 +3346.419331 +3346.429687 +3346.439977 +3346.443706 +3346.451965 +3346.455162 +3346.464919 +3346.467949 +3346.478871 +3346.486364 +3346.493690 +3346.499417 +3346.504579 +3346.507409 +3346.517965 +3346.520929 +3346.529121 +3346.534615 +3346.538578 +3346.553763 +3346.557692 +3346.566650 +3346.570280 +3346.580336 +3346.584066 +3346.593823 +3346.596986 +3346.601782 +3346.606943 +3346.610539 +3346.619497 +3346.632251 +3346.637113 +3346.645504 +3346.648535 +3346.657026 +3346.661122 +3346.670113 +3346.673143 +3346.682301 +3346.686896 +3346.696120 +3346.699850 +3346.714502 +3346.722228 +3346.725558 +3346.735448 +3346.739810 +3346.748335 +3346.751731 +3346.765684 +3346.776973 +3346.780802 +3346.793190 +3346.802381 +3346.806377 +3346.816999 +3346.820329 +3346.830053 +3346.833649 +3346.846437 +3346.857692 +3346.861355 +3346.873143 +3346.882700 +3346.886630 +3346.894788 +3346.900516 +3346.908841 +3346.912804 +3346.921428 +3346.933017 +3346.940776 +3346.951864 +3346.958658 +3346.971312 +3346.974975 +3346.983932 +3346.988161 +3346.996819 +3347.006443 +3347.010606 +3347.014768 +3347.024525 +3347.027822 +3347.038178 +3347.042907 +3347.052697 +3347.056493 +3347.078638 +3347.084998 +3347.092557 +3347.106576 +3347.110606 +3347.120163 +3347.134348 +3347.149167 +3347.161521 +3347.165917 +3347.175874 +3347.180302 +3347.193056 +3347.201614 +3347.215168 +3347.219630 +3347.233649 +3347.244738 +3347.260023 +3347.272310 +3347.286996 +3347.298418 +3347.302747 +3347.311571 +3347.316166 +3347.334282 +3347.343506 +3347.356759 +3347.372110 +3347.386463 +3347.395187 +3347.399483 +3347.413536 +3347.423592 +3347.428221 +3347.439077 +3347.465384 +3347.469247 +3347.482933 +3347.495887 +3347.511105 +3347.525457 +3347.603845 +3347.616599 +3347.632350 +3347.645570 +3347.658790 +3347.663252 +3347.675973 +3347.690625 +3347.701814 +3347.731517 +3347.745870 +3347.761254 +3347.774108 +3347.801281 +3347.816332 +3347.830085 +3347.841874 +3347.871577 +3347.885197 +3347.897285 +3347.912669 +3347.924458 +3347.956925 +3347.968780 +3347.996152 +3348.060388 +3348.076106 +3348.126922 +3348.142439 +3348.235813 +3348.251530 +3348.267847 +3348.295486 +3348.309872 +3348.338010 +3348.454594 +3348.470211 +3348.576105 +3348.590524 +3348.647301 +3348.657857 +3348.670411 +3348.686861 +3348.700947 +3348.718429 +3348.730218 +3348.747167 +3348.761187 +3348.791656 +3348.807207 +3348.820927 +3348.838143 +3348.851030 +3348.866215 +3348.881833 +3348.896951 +3348.911603 +3348.928120 +3348.958156 +3348.972508 +3348.988026 +3349.019928 +3349.046235 +3349.077070 +3349.092289 +3349.092955 +3349.108639 +3349.124090 +3349.152928 +3349.168079 +3349.183697 +3349.200680 +3349.214666 +3349.230284 +3349.261752 +3349.277503 +3349.308206 +3349.325821 +3349.352828 +3349.384163 +3349.399281 +3349.416331 +3349.431749 +3349.447766 +3349.463284 +3349.479201 +3349.492921 +3349.510004 +3349.523723 +3349.539874 +3349.570510 +3349.584429 +3349.600313 +3349.630783 +3349.646134 +3349.662185 +3349.678535 +3349.723224 +3349.770610 +3349.785761 +3349.803010 +3349.817862 +3349.836011 +3349.849531 +3349.879834 +3359.886916 +3359.888215 +3359.890946 +3359.893643 +3360.887482 +3360.888780 +3360.891711 +3361.889179 +3361.892575 +3361.906695 +3362.887646 +3362.888978 +3363.887479 +3363.888844 +3364.887677 +3364.888976 +3364.891507 +3368.675020 +3369.886240 +3369.888039 +3369.892101 +3369.988138 +3369.989470 +3369.993566 +3370.089937 +3370.094199 +3370.188838 +3370.190170 +3370.192434 +3370.194332 +3370.199494 +3370.289037 +3370.290369 +3370.293100 +3370.296097 +3370.299860 +3370.390369 +3370.396263 +3370.490536 +3370.493066 +3370.495231 +3370.589137 +3370.590569 +3370.593566 +3370.595764 +3370.690469 +3370.693532 +3370.696396 +3370.789170 +3370.790502 +3370.793366 +3370.795897 +3370.889137 +3370.890502 +3370.893466 +3370.895896 +3370.900159 +3370.990435 +3370.993699 +3371.089136 +3371.090602 +3371.093698 +3371.096229 +3371.189136 +3371.190468 +3371.193532 +3371.195796 +3371.290468 +3371.293132 +3371.303455 +3371.390435 +3371.393299 +3371.489269 +3371.490634 +3371.493498 +3371.590301 +3371.593598 +3371.596262 +3371.597294 +3371.689169 +3371.690468 +3371.695563 +3371.793298 +3371.895929 +3372.193431 +3372.393631 +3372.493597 +3372.496128 +3372.689268 +3372.693364 +3372.795328 +3372.993663 +3373.093430 +3373.289167 +3373.389201 +3373.393663 +3373.396493 +3373.493663 +3373.889267 +3374.089366 +3374.096026 +3374.190598 +3374.290765 +3374.293862 +3374.296393 +3374.389266 +3374.390632 +3374.393562 +3374.400322 +3374.490698 +3374.493628 +3374.500255 +3374.589299 +3374.590765 +3374.593728 +3374.690698 +3374.800055 +3374.889299 +3374.890698 +3374.895892 +3378.087997 +3379.887163 +3379.890892 +3379.891858 +3379.898585 +3379.904512 +3379.919897 +3379.928521 +3379.945238 +3379.953163 +3379.962587 +3379.972777 +3379.982734 +3379.993456 +3380.003713 +3380.013903 +3380.024792 +3380.034882 +3380.044339 +3380.057226 +3380.067616 +3380.069813 +3380.080769 +3380.089960 +3380.100882 +3380.113903 +3380.122394 +3380.131219 +3380.143573 +3380.155328 +3380.165950 +3380.175974 +3380.201082 +3380.207842 +3380.216533 +3380.226090 +3380.237745 +3380.243473 +3380.251365 +3380.259856 +3380.270879 +3380.281135 +3380.290492 +3380.300449 +3380.311405 +3380.315734 +3380.324825 +3380.335114 +3380.348002 +3380.360722 +3380.373842 +3380.386197 +3380.395554 +3380.405644 +3380.416200 +3380.425857 +3380.434015 +3380.443506 +3380.454661 +3380.463186 +3380.474142 +3380.498018 +3380.508241 +3380.529453 +3380.538544 +3380.549367 +3380.559623 +3380.570812 +3380.582300 +3380.591691 +3380.602114 +3380.613769 +3380.625790 +3380.638711 +3380.643805 +3380.651032 +3380.662453 +3380.667082 +3380.675274 +3380.687662 +3380.698284 +3380.709706 +3380.738377 +3380.748334 +3380.757592 +3380.770379 +3380.783166 +3380.795986 +3380.810539 +3380.817532 +3380.830752 +3380.842840 +3380.852230 +3380.864385 +3380.881967 +3380.890825 +3380.902047 +3380.907075 +3380.915667 +3380.919862 +3380.931950 +3380.941574 +3380.944538 +3380.964451 +3380.975207 +3380.992123 +3381.002946 +3381.013202 +3381.023892 +3381.028121 +3381.035014 +3381.038177 +3381.045403 +3381.049000 +3381.056359 +3381.061920 +3381.070445 +3381.074474 +3381.083332 +3381.087461 +3381.095820 +3381.100115 +3381.109606 +3381.113602 +3381.123559 +3381.133016 +3381.140941 +3381.154428 +3381.158690 +3381.168913 +3381.173875 +3381.182833 +3381.196419 +3381.199449 +3381.208973 +3381.212070 +3381.217431 +3381.222859 +3381.226089 +3381.234381 +3381.238310 +3381.248101 +3381.251564 +3381.255460 +3381.263851 +3381.270978 +3381.276605 +3381.284531 +3381.296186 +3381.304944 +3381.308973 +3381.312703 +3381.318896 +3381.322293 +3381.329652 +3381.333249 +3381.345403 +3381.346336 +3381.354261 +3381.359889 +3381.367548 +3381.373442 +3381.380035 +3381.384631 +3381.391690 +3381.395553 +3381.405077 +3381.418397 +3381.422393 +3381.425756 +3381.435513 +3381.439909 +3381.449199 +3381.463785 +3381.476539 +3381.483998 +3381.489992 +3381.494787 +3381.499049 +3381.509173 +3381.512769 +3381.517564 +3381.523092 +3381.526455 +3381.536445 +3381.539742 +3381.549266 +3381.553095 +3381.562386 +3381.565150 +3381.569579 +3381.575673 +3381.578936 +3381.588726 +3381.604311 +3381.614467 +3381.617664 +3381.628420 +3381.630984 +3381.640508 +3381.643538 +3381.652329 +3381.655260 +3381.665982 +3381.669013 +3381.682832 +3381.692089 +3381.695819 +3381.705576 +3381.713601 +3381.719728 +3381.723691 +3381.731883 +3381.736678 +3381.748866 +3381.757657 +3381.762119 +3381.770777 +3381.774274 +3381.783631 +3381.787694 +3381.798416 +3381.805876 +3381.811936 +3381.815566 +3381.825589 +3381.830085 +3381.837810 +3381.841540 +3381.845636 +3381.856458 +3381.863684 +3381.868846 +3381.878070 +3381.882799 +3381.888992 +3381.892489 +3381.908506 +3381.915999 +3381.920494 +3381.937644 +3381.954660 +3381.960887 +3381.968679 +3381.974806 +3381.981200 +3381.993754 +3382.004477 +3382.017664 +3382.030551 +3382.040940 +3382.052329 +3382.066515 +3382.073075 +3382.099182 +3382.112635 +3382.125955 +3382.136545 +3382.143171 +3382.152529 +3382.163151 +3382.177537 +3382.185762 +3382.191090 +3382.194586 +3382.208006 +3382.218496 +3382.230817 +3382.245302 +3382.259954 +3382.272608 +3382.277337 +3382.301380 +3382.314799 +3382.328286 +3382.332382 +3382.343437 +3382.359421 +3382.369911 +3382.381966 +3382.388359 +3382.398049 +3382.401579 +3382.414366 +3382.431782 +3382.443371 +3382.457590 +3382.469311 +3382.485529 +3382.496551 +3382.514500 +3382.529218 +3382.543004 +3382.557057 +3382.567213 +3382.571476 +3382.584896 +3382.598549 +3382.610870 +3382.624290 +3382.628019 +3382.655125 +3382.684496 +3382.699681 +3382.712202 +3382.726654 +3382.740740 +3382.764649 +3382.800813 +3382.811569 +3382.824689 +3382.834546 +3382.838209 +3382.849431 +3382.863484 +3382.877003 +3382.899614 +3382.918395 +3382.930949 +3382.943037 +3382.956990 +3382.972175 +3382.985994 +3383.000846 +3383.040540 +3383.051395 +3383.065315 +3383.093753 +3383.109804 +3383.119894 +3383.134579 +3383.150463 +3383.166314 +3383.180966 +3383.196151 +3383.209337 +3383.239674 +3383.254958 +3383.269544 +3383.285095 +3383.299780 +3383.342870 +3383.357289 +3383.372807 +3383.386493 +3383.401412 +3383.416863 +3383.430882 +3383.446200 +3383.460286 +3383.474672 +3383.490190 +3383.504109 +3383.519460 +3383.532747 +3383.548997 +3383.564682 +3383.578501 +3383.621325 +3383.631248 +3383.638941 +3383.663816 +3383.710802 +3383.724422 +3383.740206 +3383.755291 +3383.784029 +3383.798448 +3383.814465 +3383.843969 +3383.875004 +3383.889590 +3383.903909 +3383.919260 +3383.948564 +3384.032780 +3384.044734 +3384.098747 +3384.128317 +3384.143036 +3384.156889 +3384.171408 +3384.187558 +3384.201777 +3384.214831 +3384.230349 +3384.259220 +3384.274771 +3384.334111 +3384.349063 +3384.361551 +3384.393485 +3384.495417 +3384.508104 +3384.523089 +3384.536675 +3384.550761 +3384.581464 +3384.640771 +3384.681730 +3384.696848 +3384.712133 +3384.726818 +3384.755490 +3384.771574 +3384.803175 +3384.816762 +3384.833711 +3384.847930 +3384.863781 +3384.878034 +3394.887880 +3394.889279 +3394.893541 +3394.898137 +3394.902999 +3394.910058 +3395.889644 +3395.892042 +3395.894872 +3395.900900 +3396.887878 +3396.892074 +3396.903596 +3397.888410 +3397.889676 +3397.892539 +3397.900731 +3398.888409 +3398.889708 +3398.892971 +3398.899198 +3399.888375 +3399.889840 +3399.892970 +3399.895801 +3404.888969 +3404.891633 +3404.893298 +3404.901956 +3404.910981 +3404.988536 +3404.992000 +3405.088969 +3405.092699 +3405.094663 +3405.189235 +3405.190534 +3405.192732 +3405.194730 +3405.290634 +3405.293065 +3405.295030 +3405.389368 +3405.390867 +3405.393398 +3405.396361 +3405.489368 +3405.490667 +3405.495163 +3405.589435 +3405.590767 +3405.593431 +3405.689435 +3405.690700 +3405.696727 +3405.789501 +3405.790733 +3405.793297 +3405.795529 +3405.889468 +3405.893697 +3405.989434 +3405.990733 +3405.993430 +3405.996461 +3406.089401 +3406.090800 +3406.096594 +3406.189434 +3406.190800 +3406.193530 +3406.196960 +3406.289467 +3406.290766 +3406.297226 +3406.389434 +3406.390799 +3406.395861 +3406.489401 +3406.490833 +3406.493630 +3406.496327 +3406.589434 +3406.593530 +3406.689434 +3406.690832 +3406.693663 +3406.697293 +3406.790766 +3406.795761 +3406.889434 +3406.890832 +3406.893529 +3406.895561 +3406.989467 +3406.990765 +3406.993663 +3406.996260 +3407.089467 +3407.090832 +3407.092996 +3407.095361 +3407.189533 +3407.190865 +3407.193329 +3407.196559 +3407.290865 +3407.293662 +3407.389466 +3407.390832 +3407.393529 +3407.396926 +3407.489500 +3407.490865 +3407.493829 +3407.589499 +3407.590831 +3407.689499 +3407.690798 +3407.693462 +3407.697425 +3407.789433 +3407.790831 +3407.793395 +3407.796426 +3407.889466 +3407.890831 +3407.893828 +3407.897458 +3407.989499 +3407.990864 +3407.996958 +3408.090731 +3408.093562 +3408.096292 +3408.189432 +3408.190764 +3408.193395 +3408.290764 +3408.297191 +3408.389432 +3408.390797 +3408.393728 +3408.396691 +3408.489532 +3408.490864 +3408.493594 +3408.496591 +3408.589532 +3408.590864 +3408.593428 +3408.596725 +3408.690830 +3408.694527 +3408.789432 +3408.790764 +3408.793561 +3408.889465 +3408.893594 +3408.897091 +3408.989398 +3408.993061 +3408.996824 +3409.089398 +3409.090797 +3409.093660 +3409.096524 +3409.189465 +3409.190863 +3409.193527 +3409.289498 +3409.290796 +3409.293660 +3409.297556 +3409.300453 +3409.389431 +3409.390763 +3409.393460 +3409.396191 +3409.489464 +3409.490796 +3409.497223 +3409.589497 +3409.590929 +3409.593593 +3409.689397 +3409.690796 +3409.693393 +3409.695724 +3409.789464 +3409.790896 +3409.793493 +3409.796757 +3409.889464 +3409.892960 +3414.887461 +3414.904510 +3414.911936 +3414.931650 +3414.939475 +3414.948899 +3414.957224 +3414.959023 +3414.968513 +3414.990458 +3415.001080 +3415.011370 +3415.032016 +3415.043072 +3415.053961 +3415.061520 +3415.093688 +3415.115299 +3415.125689 +3415.136811 +3415.156758 +3415.166448 +3415.176172 +3415.187427 +3415.223691 +3415.247833 +3415.260055 +3415.271343 +3415.273474 +3415.283265 +3415.298050 +3415.332182 +3415.341373 +3415.352362 +3415.360987 +3415.382965 +3415.394686 +3415.408772 +3415.419495 +3415.431916 +3415.432682 +3415.446168 +3415.457857 +3415.467847 +3415.478935 +3415.489159 +3415.500081 +3415.511137 +3415.519328 +3415.530118 +3415.534979 +3415.545602 +3415.555559 +3415.561886 +3415.568912 +3415.579568 +3415.590457 +3415.603144 +3415.616265 +3415.624523 +3415.640207 +3415.651230 +3415.662219 +3415.674473 +3415.686195 +3415.697583 +3415.709638 +3415.721892 +3415.734846 +3415.746767 +3415.749931 +3415.759388 +3415.765615 +3415.773507 +3415.797883 +3415.803810 +3415.811769 +3415.815132 +3415.824623 +3415.835079 +3415.837976 +3415.849631 +3415.860920 +3415.871609 +3415.884330 +3415.896218 +3415.909238 +3415.918962 +3415.929784 +3415.933214 +3415.944170 +3415.955458 +3415.967846 +3415.977237 +3415.981599 +3415.990457 +3416.001512 +3416.006507 +3416.016231 +3416.028885 +3416.036411 +3416.048632 +3416.053027 +3416.061885 +3416.065348 +3416.074906 +3416.079767 +3416.088126 +3416.093787 +3416.099747 +3416.102711 +3416.112734 +3416.116963 +3416.125655 +3416.129884 +3416.138542 +3416.141173 +3416.162285 +3416.166281 +3416.178635 +3416.188592 +3416.192022 +3416.202211 +3416.206074 +3416.214899 +3416.219028 +3416.228585 +3416.234979 +3416.240640 +3416.251928 +3416.262451 +3416.268811 +3416.274805 +3416.283097 +3416.296717 +3416.307173 +3416.310836 +3416.319461 +3416.324123 +3416.331316 +3416.336111 +3416.344536 +3416.348865 +3416.356990 +3416.361985 +3416.369910 +3416.373906 +3416.381266 +3416.386061 +3416.394785 +3416.398848 +3416.407972 +3416.414699 +3416.426287 +3416.433746 +3416.436510 +3416.445401 +3416.455957 +3416.462085 +3416.474406 +3416.482997 +3416.487459 +3416.500979 +3416.510236 +3416.515298 +3416.522757 +3416.527253 +3416.534978 +3416.539341 +3416.548698 +3416.561585 +3416.562018 +3416.564182 +3416.575138 +3416.578768 +3416.587026 +3416.600779 +3416.604209 +3416.613367 +3416.616763 +3416.621325 +3416.627985 +3416.643503 +3416.646700 +3416.654059 +3416.658655 +3416.666147 +3416.670343 +3416.679334 +3416.693287 +3416.696250 +3416.700446 +3416.706973 +3416.711269 +3416.720559 +3416.734712 +3416.738708 +3416.747166 +3416.751628 +3416.759420 +3416.762884 +3416.772307 +3416.784695 +3416.788525 +3416.793187 +3416.799147 +3416.802744 +3416.807439 +3416.813133 +3416.816263 +3416.824888 +3416.829484 +3416.838341 +3416.841705 +3416.851828 +3416.854658 +3416.859920 +3416.867878 +3416.873639 +3416.885161 +3416.895051 +3416.898681 +3416.910203 +3416.919027 +3416.928851 +3416.938408 +3416.952061 +3416.956123 +3416.964781 +3416.969410 +3416.977669 +3416.981032 +3416.991888 +3416.994751 +3417.005574 +3417.009637 +3417.018128 +3417.022257 +3417.030715 +3417.036610 +3417.043270 +3417.051195 +3417.055924 +3417.064815 +3417.077002 +3417.082797 +3417.088158 +3417.096383 +3417.104308 +3417.109736 +3417.116629 +3417.123289 +3417.129883 +3417.133679 +3417.144502 +3417.154825 +3417.168611 +3417.174671 +3417.181298 +3417.185194 +3417.195184 +3417.199014 +3417.208471 +3417.212600 +3417.223489 +3417.240172 +3417.245700 +3417.256956 +3417.268877 +3417.277901 +3417.289390 +3417.302277 +3417.307205 +3417.317995 +3417.334212 +3417.344435 +3417.348064 +3417.358121 +3417.361951 +3417.370908 +3417.374971 +3417.385261 +3417.396549 +3417.400845 +3417.411401 +3417.416429 +3417.425287 +3417.429183 +3417.440272 +3417.452826 +3417.457055 +3417.468344 +3417.472540 +3417.481597 +3417.494152 +3417.498913 +3417.508237 +3417.512633 +3417.523023 +3417.527318 +3417.537675 +3417.550362 +3417.554624 +3417.564548 +3417.578500 +3417.582663 +3417.591687 +3417.596249 +3417.606739 +3417.610169 +3417.620125 +3417.623722 +3417.633579 +3417.638341 +3417.648997 +3417.652293 +3417.662616 +3417.666612 +3417.680299 +3417.689756 +3417.694318 +3417.703109 +3417.707771 +3417.717928 +3417.722989 +3417.731880 +3417.747198 +3417.750229 +3417.761784 +3417.765147 +3417.775303 +3417.778400 +3417.789223 +3417.792819 +3417.803775 +3417.817028 +3417.822190 +3417.833678 +3417.836143 +3417.848164 +3417.860185 +3417.864314 +3417.874504 +3417.878400 +3417.890322 +3417.896815 +3417.903941 +3417.907238 +3417.917594 +3417.920891 +3417.932113 +3417.935143 +3417.947897 +3417.960518 +3417.975570 +3417.978866 +3417.990122 +3418.003242 +3418.007837 +3418.021424 +3418.033878 +3418.048363 +3418.061484 +3418.065846 +3418.079566 +3418.089556 +3418.094218 +3418.104940 +3418.108470 +3418.120558 +3418.124088 +3418.136875 +3418.151127 +3418.177567 +3418.181064 +3418.194917 +3418.206705 +3418.234910 +3418.267078 +3418.279099 +3418.282962 +3418.296415 +3418.311100 +3418.341037 +3418.353758 +3418.369442 +3418.380664 +3418.384161 +3418.399079 +3418.412998 +3418.427917 +3418.457487 +3418.472406 +3418.486159 +3418.500611 +3418.516961 +3418.546165 +3418.573904 +3418.588356 +3418.603807 +3418.616761 +3418.633877 +3418.648296 +3418.663614 +3418.678533 +3418.693751 +3418.707204 +3418.737507 +3418.752925 +3418.782595 +3418.811133 +3418.825552 +3418.842202 +3418.855888 +3418.871539 +3418.886158 +3418.900910 +3418.915329 +3418.931313 +3418.945132 +3418.961683 +3418.991153 +3419.005972 +3419.036008 +3419.051426 +3419.065945 +3419.080930 +3419.095549 +3419.141503 +3419.171972 +3419.186791 +3419.201276 +3419.217360 +3419.232944 +3419.248096 +3419.263347 +3419.277899 +3419.294350 +3419.323487 +3419.352758 +3419.398778 +3419.414629 +3419.429414 +3419.445398 +3419.460550 +3419.474536 +3419.549461 +3419.566177 +3419.581362 +3419.626717 +3419.657086 +3419.687356 +3419.717826 +3419.732411 +3419.779364 +3419.858551 +3429.888312 +3429.890976 +3429.893307 +3429.904729 +3430.887511 +3430.888710 +3430.891374 +3430.893872 +3431.887577 +3431.888776 +3431.891340 +3431.894004 +3432.887576 +3432.892504 +3432.907023 +3433.888707 +3433.891804 +3434.286010 +3434.887474 +3434.888839 +3434.891570 +3435.183078 +3439.886770 +3439.888035 +3439.890466 +3439.892364 +3439.902254 +3439.987569 +3439.988801 +3439.992897 +3440.088035 +3440.089334 +3440.091631 +3440.188201 +3440.191864 +3440.193896 +3440.288368 +3440.289667 +3440.292064 +3440.388434 +3440.392231 +3440.488468 +3440.492430 +3440.588467 +3440.589833 +3440.688467 +3440.694428 +3440.788501 +3440.789833 +3440.792530 +3440.795061 +3440.888467 +3440.892630 +3440.895926 +3440.988467 +3440.992596 +3440.994994 +3441.088434 +3441.089766 +3441.092729 +3441.188500 +3441.189865 +3441.192396 +3441.195060 +3441.288500 +3441.289832 +3441.294427 +3441.388533 +3441.389899 +3441.392662 +3441.396226 +3441.488467 +3441.489932 +3441.492895 +3441.496192 +3441.588466 +3441.688433 +3441.689698 +3441.692462 +3441.788433 +3441.792862 +3441.888400 +3441.892162 +3441.988399 +3441.994660 +3442.088433 +3442.089798 +3442.092262 +3442.188433 +3442.192628 +3442.195858 +3442.288432 +3442.289798 +3442.292462 +3442.388466 +3442.392895 +3442.488399 +3442.489731 +3442.492628 +3442.494693 +3442.497124 +3442.588465 +3442.589831 +3442.592528 +3442.594792 +3442.688365 +3442.689664 +3442.694326 +3442.788399 +3442.792395 +3442.795991 +3442.888432 +3442.889797 +3442.892461 +3442.895258 +3442.988365 +3442.992494 +3442.995991 +3443.088432 +3443.089797 +3443.092261 +3443.188432 +3443.189830 +3443.192494 +3443.194259 +3443.195158 +3443.199287 +3443.288365 +3443.292427 +3443.294958 +3443.388365 +3443.392028 +3443.394292 +3443.488365 +3443.489763 +3443.492394 +3443.495291 +3443.588398 +3443.589796 +3443.594125 +3443.595058 +3443.688398 +3443.689796 +3443.692594 +3443.695457 +3443.788364 +3443.789730 +3443.792227 +3443.795890 +3443.888398 +3443.892160 +3443.894991 +3443.988397 +3443.989829 +3443.992294 +3443.994991 +3444.088331 +3444.092260 +3444.094624 +3444.098787 +3444.188397 +3444.192460 +3444.195290 +3444.197921 +3444.288397 +3444.292460 +3444.295024 +3444.388297 +3444.395890 +3444.488397 +3444.492493 +3444.588397 +3444.592360 +3444.595690 +3444.688363 +3444.692359 +3444.694957 +3444.788330 +3444.792359 +3444.888397 +3444.892792 +3444.898653 +3449.608372 +3449.886160 +3449.889490 +3449.892654 +3449.897549 +3449.904043 +3449.911069 +3449.917596 +3449.924822 +3449.937909 +3449.945901 +3449.957456 +3449.974439 +3449.989024 +3449.997982 +3450.000013 +3450.008038 +3450.013333 +3450.021192 +3450.032081 +3450.041272 +3450.043103 +3450.052161 +3450.061718 +3450.071608 +3450.078002 +3450.087725 +3450.089823 +3450.098748 +3450.110869 +3450.120293 +3450.130616 +3450.141904 +3450.143936 +3450.151595 +3450.162118 +3450.174339 +3450.184262 +3450.186826 +3450.195717 +3450.198348 +3450.207039 +3450.229217 +3450.245567 +3450.251728 +3450.259254 +3450.263882 +3450.271075 +3450.281964 +3450.284162 +3450.295517 +3450.306307 +3450.310236 +3450.317362 +3450.320093 +3450.335810 +3450.343036 +3450.355291 +3450.360352 +3450.367279 +3450.373073 +3450.382730 +3450.387592 +3450.392021 +3450.398381 +3450.403543 +3450.416996 +3450.422257 +3450.428218 +3450.443136 +3450.448930 +3450.453859 +3450.462317 +3450.465580 +3450.472507 +3450.480865 +3450.483629 +3450.494152 +3450.497682 +3450.507239 +3450.509303 +3450.519260 +3450.521624 +3450.527019 +3450.531015 +3450.533845 +3450.539873 +3450.542637 +3450.545900 +3450.553293 +3450.557022 +3450.564948 +3450.567312 +3450.577135 +3450.583229 +3450.585694 +3450.594618 +3450.606040 +3450.616230 +3450.618394 +3450.622390 +3450.639806 +3450.645101 +3450.652560 +3450.656956 +3450.663382 +3450.675637 +3450.683163 +3450.685660 +3450.693885 +3450.699613 +3450.703143 +3450.712467 +3450.715197 +3450.719593 +3450.725554 +3450.729749 +3450.737209 +3450.740805 +3450.744868 +3450.749263 +3450.753759 +3450.761617 +3450.768844 +3450.774105 +3450.781098 +3450.793985 +3450.802477 +3450.806439 +3450.810202 +3450.818794 +3450.821291 +3450.830548 +3450.833346 +3450.836842 +3450.847165 +3450.850528 +3450.857988 +3450.861850 +3450.866346 +3450.869842 +3450.874171 +3450.880532 +3450.885593 +3450.891188 +3450.893452 +3450.902743 +3450.915730 +3450.928584 +3450.933013 +3450.938740 +3450.941404 +3450.945833 +3450.950295 +3450.954191 +3450.970175 +3450.978101 +3450.980765 +3450.984894 +3450.990222 +3450.993019 +3450.996449 +3451.008404 +3451.014897 +3451.021624 +3451.032147 +3451.034977 +3451.040405 +3451.045666 +3451.047232 +3451.048264 +3451.060219 +3451.067711 +3451.070142 +3451.076069 +3451.081497 +3451.085860 +3451.093285 +3451.099746 +3451.105373 +3451.108171 +3451.113998 +3451.118827 +3451.123122 +3451.131048 +3451.136775 +3451.142936 +3451.146066 +3451.156123 +3451.160418 +3451.164714 +3451.167611 +3451.176302 +3451.179899 +3451.185959 +3451.189123 +3451.191820 +3451.194751 +3451.201710 +3451.204707 +3451.214864 +3451.222023 +3451.224487 +3451.228883 +3451.232380 +3451.236342 +3451.238840 +3451.243302 +3451.253525 +3451.261450 +3451.263682 +3451.270441 +3451.275237 +3451.284494 +3451.287857 +3451.291121 +3451.297581 +3451.300345 +3451.311301 +3451.314397 +3451.323388 +3451.328383 +3451.336942 +3451.344601 +3451.352060 +3451.355423 +3451.367644 +3451.375103 +3451.379399 +3451.386658 +3451.389256 +3451.392686 +3451.398646 +3451.401544 +3451.411400 +3451.414331 +3451.423522 +3451.426385 +3451.436209 +3451.442503 +3451.448896 +3451.451460 +3451.459952 +3451.471906 +3451.474670 +3451.485393 +3451.489289 +3451.495882 +3451.499579 +3451.508070 +3451.511234 +3451.516195 +3451.528250 +3451.531447 +3451.540438 +3451.548397 +3451.557454 +3451.568110 +3451.572040 +3451.578600 +3451.581230 +3451.589023 +3451.594217 +3451.601643 +3451.605639 +3451.618793 +3451.626452 +3451.633278 +3451.638606 +3451.644600 +3451.650494 +3451.655389 +3451.662915 +3451.673804 +3451.680165 +3451.686159 +3451.696182 +3451.708003 +3451.710701 +3451.719259 +3451.722256 +3451.726984 +3451.736475 +3451.747730 +3451.750827 +3451.760018 +3451.763348 +3451.766645 +3451.773172 +3451.785726 +3451.790354 +3451.798779 +3451.814131 +3451.817028 +3451.824254 +3451.830481 +3451.836575 +3451.842436 +3451.849262 +3451.853991 +3451.861650 +3451.865413 +3451.873671 +3451.879998 +3451.886958 +3451.891686 +3451.897813 +3451.901876 +3451.910567 +3451.922555 +3451.934344 +3451.946298 +3451.959119 +3451.966711 +3451.970940 +3451.975203 +3451.981530 +3451.985226 +3451.994450 +3452.005039 +3452.016794 +3452.023188 +3452.028749 +3452.039372 +3452.050494 +3452.074969 +3452.078699 +3452.087990 +3452.091153 +3452.101243 +3452.103541 +3452.106738 +3452.114130 +3452.116994 +3452.127450 +3452.131480 +3452.143168 +3452.153824 +3452.166678 +3452.170740 +3452.179531 +3452.183394 +3452.192219 +3452.195049 +3452.206072 +3452.210700 +3452.218293 +3452.224986 +3452.231113 +3452.233511 +3452.244167 +3452.257487 +3452.270374 +3452.274736 +3452.283561 +3452.295382 +3452.299145 +3452.308636 +3452.313531 +3452.320291 +3452.331812 +3452.343501 +3452.354057 +3452.384793 +3452.396148 +3452.409435 +3452.422688 +3452.434476 +3452.446797 +3452.458752 +3452.472205 +3452.486025 +3452.498279 +3452.511199 +3452.522688 +3452.534343 +3452.548262 +3452.557919 +3452.570940 +3452.581862 +3452.593950 +3452.605405 +3452.609801 +3452.621422 +3452.633677 +3452.637806 +3452.659285 +3452.664446 +3452.674136 +3452.689088 +3452.699045 +3452.715328 +3452.725818 +3452.739038 +3452.751526 +3452.756454 +3452.765179 +3452.777999 +3452.783194 +3452.804606 +3452.822122 +3452.831612 +3452.844366 +3452.857353 +3452.870340 +3452.883993 +3452.896913 +3452.910100 +3452.923387 +3452.938205 +3452.950959 +3452.963247 +3452.978365 +3452.989421 +3453.008302 +3453.019690 +3453.031046 +3453.045531 +3453.058085 +3453.071505 +3453.083760 +3453.096347 +3453.109234 +3453.121788 +3453.136141 +3453.145398 +3453.194715 +3453.269607 +3453.283327 +3453.310366 +3453.324718 +3453.328215 +3453.351758 +3453.370006 +3453.380463 +3453.392184 +3453.404905 +3453.445831 +3453.472537 +3453.532843 +3453.560149 +3453.573070 +3453.585990 +3453.599710 +3453.616526 +3453.671205 +3453.685324 +3453.774868 +3453.791684 +3453.800309 +3453.814595 +3453.829546 +3453.857019 +3453.871504 +3453.886023 +3453.913529 +3453.929513 +3453.957252 +3454.043865 +3454.073136 +3454.103039 +3454.378497 +3454.391517 +3454.557451 +3454.584824 +3454.613662 +3454.685656 +3454.715160 +; +4.903758 +20.742936 +25.047561 +25.076731 +25.134773 +25.201906 +25.432375 +26.672701 +26.681925 +26.822484 +26.867506 +27.836702 +28.287085 +28.613458 +30.064672 +41.509982 +42.809381 +44.878710 +48.557427 +52.294453 +60.015058 +60.070236 +61.101171 +61.176362 +61.247058 +61.370368 +61.469702 +62.785785 +63.758411 +63.815820 +67.673592 +70.512750 +70.584112 +77.049740 +77.972516 +78.521966 +80.102884 +81.236782 +87.453426 +88.503541 +89.262548 +89.300510 +89.316794 +89.405172 +89.506171 +89.621489 +95.070401 +95.146691 +97.025244 +97.726109 +112.932554 +113.036617 +116.737412 +118.184897 +125.516158 +129.498971 +129.549987 +129.572098 +130.978723 +131.018517 +131.398803 +133.669597 +134.929136 +134.974057 +135.407990 +135.467996 +138.431730 +138.468526 +139.988804 +143.899523 +145.781639 +148.682602 +151.403445 +156.730912 +156.741335 +159.317157 +159.402971 +161.574930 +165.075060 +165.099069 +165.116252 +165.478689 +167.306992 +169.091406 +169.527536 +169.557839 +170.055574 +185.028719 +185.581866 +187.501278 +192.803936 +194.406799 +200.074225 +200.206360 +200.347752 +200.660172 +201.256442 +201.279386 +201.426971 +201.602962 +207.764894 +210.870219 +210.884671 +214.920864 +214.966984 +215.676607 +227.595510 +227.699939 +227.958014 +228.298906 +229.091912 +232.240893 +235.023974 +235.039858 +235.092705 +235.098966 +235.134264 +235.165699 +235.230501 +235.344387 +235.365732 +235.379285 +235.420943 +236.038459 +236.162268 +238.994799 +239.033361 +239.855404 +244.338217 +245.350537 +245.360827 +245.365089 +249.769447 +255.389655 +262.997806 +263.132604 +270.061402 +270.138258 +270.141188 +270.925570 +270.969126 +272.270757 +272.308219 +272.414946 +272.464862 +272.497297 +272.531496 +272.568625 +273.661165 +273.734025 +273.788537 +273.807452 +273.966859 +274.003922 +274.020305 +274.112846 +274.913578 +277.696292 +278.719002 +278.744277 +278.916704 +279.386434 +280.692460 +280.779306 +282.001050 +282.754529 +283.678870 +283.776073 +283.835547 +292.335239 +295.801769 +297.808527 +297.902699 +305.019175 +305.386774 +306.552241 +309.071219 +309.148509 +309.205984 +309.235954 +309.275948 +309.333856 +309.396394 +309.441116 +309.448275 +309.472851 +309.512211 +310.307715 +319.494053 +319.569844 +320.403809 +320.510402 +320.535277 +320.722956 +321.175536 +321.249795 +322.271706 +322.305538 +322.736640 +323.762780 +323.935507 +323.948461 +324.083858 +324.156685 +326.660046 +326.794345 +327.232573 +327.256716 +327.304002 +327.730841 +328.091380 +333.900865 +336.943686 +339.064829 +339.379314 +340.013113 +340.164229 +340.246480 +340.299193 +340.335157 +340.340952 +340.352140 +340.457502 +340.631061 +341.744214 +342.333923 +342.885072 +342.901722 +343.644678 +349.355794 +349.666750 +353.092454 +357.525084 +358.911696 +359.456783 +361.258014 +364.996372 +365.074060 +365.096838 +365.103631 +365.501000 +369.703993 +373.384875 +375.038786 +384.715766 +384.762319 +387.976735 +405.164563 +410.001055 +410.053802 +410.386436 +411.237850 +411.530058 +412.583304 +412.644043 +414.009576 +439.556870 +439.565894 +439.705488 +439.802524 +440.791267 +443.714008 +443.752537 +445.840213 +445.889564 +445.912474 +446.190529 +446.360293 +446.389031 +446.420466 +462.414156 +463.707828 +463.725044 +463.890745 +474.199426 +474.284940 +474.297161 +482.789694 +484.266415 +484.281800 +484.296652 +484.355893 +484.386828 +485.665082 +493.893845 +506.913213 +509.997858 +512.579174 +512.602618 +514.033385 +514.107145 +514.148870 +514.195490 +514.240212 +514.309076 +518.785562 +528.197041 +528.259545 +529.557313 +529.597572 +529.609627 +529.631738 +529.660043 +529.765571 +529.862274 +530.884750 +530.904464 +530.925043 +530.949885 +530.997438 +539.129464 +540.157901 +540.176383 +540.232693 +540.415377 +540.477415 +540.697894 +540.903289 +542.604985 +546.162824 +547.593825 +549.028822 +549.062887 +550.520662 +552.552528 +553.265680 +553.360719 +554.048530 +554.048963 +554.248963 +555.817160 +555.828149 +555.889787 +557.239569 +557.246196 +557.282859 +557.297611 +557.307068 +565.422445 +566.637395 +566.705327 +572.255738 +572.816044 +573.331927 +575.882408 +585.059688 +585.773806 +586.014133 +586.751095 +587.896648 +587.908969 +587.941603 +587.963548 +588.076635 +588.165379 +588.197980 +588.278965 +588.362715 +589.021755 +589.058385 +589.125651 +589.259750 +589.318691 +589.355055 +589.368175 +589.394449 +589.428948 +589.561548 +589.583560 +589.656387 +589.711432 +596.941061 +597.412223 +603.010186 +603.089074 +606.230596 +606.322670 +608.890666 +612.114839 +612.295725 +612.310077 +612.340546 +612.373946 +613.483069 +613.645007 +619.893286 +619.896716 +621.529748 +622.578532 +627.708496 +633.881650 +633.933832 +634.028870 +634.029902 +636.027103 +636.029001 +636.801061 +636.997398 +637.027801 +637.029100 +638.849544 +640.414411 +640.448943 +643.029327 +643.129060 +643.229393 +643.229593 +643.230226 +644.031557 +644.131524 +644.230991 +644.430724 +644.530158 +644.831923 +644.930690 +645.131822 +645.331522 +645.531822 +645.631888 +645.731922 +645.832188 +645.930756 +646.231888 +646.631921 +646.731754 +646.931721 +646.932154 +647.032620 +647.132287 +647.231687 +647.232253 +647.529422 +647.730787 +647.832153 +647.932619 +648.031786 +653.033979 +653.124655 +655.015862 +655.507836 +656.915960 +656.945330 +656.968041 +657.033808 +657.113495 +657.180695 +657.228380 +657.261214 +657.414994 +657.478996 +657.480861 +657.514627 +657.640501 +657.661613 +657.688953 +657.772402 +657.809199 +657.830578 +657.858716 +657.877164 +657.905636 +657.943331 +657.960148 +657.981327 +657.995879 +661.863008 +667.096069 +668.793604 +670.164365 +671.179915 +671.450810 +671.507187 +671.848179 +672.031030 +672.534492 +672.553473 +672.650310 +672.690603 +672.742784 +672.776783 +673.242417 +673.917941 +673.923335 +673.941983 +673.997628 +674.333325 +675.439185 +675.461862 +675.501655 +675.620536 +676.558964 +676.581375 +676.587469 +676.654968 +676.655900 +676.874248 +676.897492 +676.906716 +676.953535 +677.002720 +677.827694 +677.889199 +678.329958 +678.331689 +678.383804 +678.531622 +678.532022 +678.933320 +679.133187 +679.330190 +679.630522 +680.032853 +680.033619 +680.033985 +680.134784 +680.233053 +680.467018 +680.632653 +680.733918 +681.132053 +681.133252 +681.433684 +681.732652 +681.833850 +681.929854 +682.332884 +682.433050 +682.533483 +682.633650 +682.731618 +682.830319 +682.931485 +683.032850 +686.686792 +688.028549 +688.037041 +688.046032 +688.137307 +688.151093 +688.408469 +689.366344 +689.516160 +689.967342 +689.980063 +690.087355 +690.229346 +690.819988 +691.181427 +691.345995 +691.363544 +691.820354 +691.855552 +691.886488 +691.937969 +691.993281 +692.033840 +692.067273 +692.083457 +692.128412 +692.164110 +692.211096 +692.259681 +692.326181 +692.343730 +692.419321 +692.437469 +692.474832 +692.506700 +692.622284 +692.665874 +692.702104 +692.786653 +692.821785 +692.884555 +692.889017 +692.925547 +692.956450 +693.003936 +703.031631 +705.031796 +705.033094 +707.029962 +707.121437 +707.161131 +707.198893 +707.260432 +708.032625 +710.651004 +713.432953 +713.733485 +713.733852 +714.033418 +714.333152 +714.333551 +714.433385 +714.532019 +714.532785 +714.633684 +714.934084 +716.034349 +716.134315 +716.234116 +716.333683 +716.334448 +716.431485 +716.629420 +717.033549 +717.133216 +717.133648 +717.233881 +717.234681 +717.331484 +717.333881 +717.434181 +717.532050 +717.633049 +717.733448 +717.933315 +717.933648 +718.031983 +718.346701 +719.545834 +719.935710 +720.377601 +720.437974 +721.007104 +723.030512 +723.158917 +723.603272 +723.727415 +723.753355 +724.042899 +724.126216 +724.171637 +724.310631 +724.455086 +724.537304 +725.409198 +725.547959 +725.774466 +725.842831 +726.051089 +726.700172 +726.730209 +726.731741 +726.799140 +726.834205 +726.849623 +726.911561 +726.959446 +727.028743 +727.062110 +727.080825 +727.141297 +727.173532 +727.223349 +727.261311 +727.315157 +727.392213 +727.471167 +727.471467 +727.503568 +727.543894 +727.606898 +727.667338 +727.681890 +727.683754 +727.701803 +727.720185 +727.769735 +727.816288 +727.850188 +727.877394 +727.877760 +727.917387 +727.956115 +733.090775 +733.111222 +734.553112 +734.595136 +734.955575 +734.990640 +735.143987 +739.029064 +739.030396 +739.367293 +739.441585 +740.029663 +740.030629 +741.023834 +741.030361 +742.031026 +743.029726 +748.331519 +748.432052 +748.732218 +749.432684 +749.532617 +750.132816 +750.230552 +750.631717 +750.832016 +751.131683 +751.229918 +751.430284 +751.530351 +751.632582 +752.829683 +752.932314 +758.117457 +758.283657 +758.824749 +758.889118 +758.904935 +759.217023 +759.370036 +759.430309 +759.543663 +759.546260 +759.576496 +759.727146 +759.805600 +760.203769 +760.329010 +760.728843 +760.771134 +761.026212 +761.326944 +761.359512 +761.470168 +761.642462 +761.679258 +761.851219 +761.881622 +761.891479 +761.945658 +761.963840 +761.964539 +762.024879 +762.057280 +762.208895 +762.256447 +762.305065 +762.401435 +762.403600 +762.422481 +762.471232 +762.498438 +762.581555 +762.627076 +762.629540 +762.662740 +762.705065 +762.754282 +762.785551 +762.841462 +762.844225 +762.902600 +762.915055 +763.011425 +763.027542 +765.592141 +765.735864 +766.708224 +766.904461 +772.033227 +775.028895 +776.030626 +777.027994 +778.029991 +783.029920 +783.130286 +783.431351 +784.431317 +785.431982 +785.832181 +785.932581 +786.631648 +786.731947 +787.832146 +787.931779 +787.932279 +793.063642 +793.134205 +794.193112 +795.792211 +796.604631 +797.180288 +797.297704 +797.470864 +797.567334 +797.632735 +797.770831 +808.029695 +812.029358 +818.331383 +818.632581 +819.632281 +820.632146 +820.732612 +820.832346 +821.032579 +821.132545 +822.032611 +822.232444 +822.832677 +823.033010 +828.046291 +828.056848 +828.057514 +828.075129 +828.076428 +828.077827 +828.122382 +828.163041 +828.221683 +828.222615 +828.236135 +828.278592 +828.319984 +828.322348 +828.362675 +828.373264 +828.389814 +828.391146 +828.445758 +828.471999 +828.501203 +828.519784 +828.544759 +828.546890 +828.578492 +828.613324 +828.660477 +828.679558 +828.724413 +828.760144 +828.788682 +828.848988 +828.876460 +828.933736 +828.935302 +828.949088 +828.980556 +828.998605 +829.036034 +829.064972 +829.099670 +829.139997 +829.189114 +829.237599 +829.269167 +829.270566 +829.754282 +830.231338 +830.461008 +831.140627 +832.511722 +833.003429 +833.014885 +843.029726 +844.030658 +845.030690 +853.030183 +853.131614 +853.934311 +855.433477 +856.132910 +856.533243 +857.833275 +857.933041 +858.033075 +858.033574 +863.348920 +863.709659 +863.726575 +865.581918 +865.894738 +866.255411 +866.271661 +866.342224 +866.376823 +866.394438 +867.155377 +867.323675 +867.385546 +867.424807 +867.549249 +867.751913 +867.945352 +870.490039 +870.568726 +870.578550 +870.633961 +871.698962 +875.819404 +878.769451 +879.304882 +879.920865 +879.925161 +879.947771 +880.029723 +880.030455 +882.031486 +882.031585 +883.693422 +883.732017 +888.029149 +888.331812 +888.532478 +888.632578 +888.732977 +888.933210 +889.033343 +889.133776 +889.233243 +889.233876 +889.289021 +889.330712 +889.733343 +889.833309 +889.834375 +890.133842 +890.233708 +890.334274 +890.433175 +890.433642 +890.434308 +890.533941 +890.632476 +891.032809 +891.133408 +891.233108 +891.233841 +891.533674 +891.633907 +891.719155 +891.755319 +892.132408 +892.177829 +892.182091 +892.191415 +892.199807 +892.231775 +892.632740 +892.633806 +892.634572 +892.635205 +892.731808 +892.733206 +892.733639 +892.770569 +892.776297 +892.791115 +892.832540 +892.832807 +893.032973 +893.187718 +893.198707 +894.016389 +895.116288 +895.121116 +895.782987 +896.306962 +896.357812 +898.045822 +898.134566 +898.936464 +899.916649 +900.338760 +901.039891 +901.081750 +901.132099 +901.159339 +901.516081 +901.597433 +901.806924 +901.880950 +901.921542 +902.118578 +902.187942 +902.238125 +902.491705 +902.574355 +902.631698 +902.998065 +913.031355 +914.030821 +915.029588 +915.030953 +915.032318 +916.031152 +917.030452 +917.031284 +918.031416 +921.559551 +923.127249 +923.129846 +923.429380 +923.429812 +923.430412 +923.632443 +923.833009 +923.933009 +924.229845 +924.432142 +924.432542 +924.733574 +924.833341 +924.833674 +924.933441 +925.033840 +925.333041 +925.428046 +925.632274 +925.731409 +925.833040 +925.933440 +925.933806 +926.033673 +926.232773 +926.233273 +926.332740 +926.432174 +926.732107 +926.733239 +927.132972 +927.231673 +927.232106 +927.333472 +927.333671 +927.533072 +927.633305 +927.701403 +927.767770 +928.032672 +928.033271 +928.703833 +929.760975 +931.301999 +933.161371 +933.247252 +933.342390 +933.397601 +933.441591 +933.562203 +933.764701 +933.806026 +933.865666 +933.937894 +933.971793 +934.091707 +934.150481 +934.178020 +934.193704 +934.265666 +934.318413 +934.405293 +934.585712 +934.642089 +934.722475 +935.293470 +935.323707 +935.401828 +935.523440 +936.274089 +936.597665 +936.646915 +937.930930 +937.953508 +937.967227 +937.983211 +938.004290 +938.822704 +938.908019 +938.985508 +940.224468 +941.514643 +941.521769 +941.631093 +941.816441 +942.704985 +946.761291 +949.030186 +949.030852 +953.028484 +954.893484 +956.533975 +958.030011 +958.030843 +958.129545 +958.229911 +958.329411 +958.629677 +958.632574 +958.730843 +958.733607 +959.033273 +959.133706 +959.633040 +959.730242 +959.832773 +960.032407 +960.032906 +960.132173 +960.133639 +960.633971 +961.233071 +962.033936 +962.934102 +963.033336 +963.034069 +963.895706 +967.757873 +967.765166 +967.795536 +968.029235 +968.046751 +968.056008 +968.087244 +968.087477 +968.088176 +968.106658 +968.131766 +968.176621 +968.205892 +968.222608 +968.264233 +968.367763 +968.377054 +968.378053 +968.391872 +968.460370 +968.463101 +968.490573 +968.508555 +968.551546 +968.608955 +968.624606 +968.672391 +968.751013 +968.782947 +968.807523 +968.834362 +968.867563 +968.897166 +968.932331 +968.997799 +969.788208 +969.831997 +969.847415 +969.864498 +970.137325 +970.271357 +970.320808 +971.190904 +971.452775 +971.546115 +971.561699 +971.581080 +971.729131 +971.779148 +972.074020 +972.091669 +972.156237 +972.332394 +972.420506 +972.927665 +980.422130 +984.031750 +987.032579 +988.030647 +988.032245 +992.462377 +993.531807 +993.532806 +993.629243 +993.730608 +993.933705 +993.934271 +994.033438 +994.132705 +994.133971 +994.234337 +994.334437 +994.434470 +994.533737 +995.234136 +995.433836 +995.534302 +995.534436 +995.631472 +995.833270 +996.034502 +996.134735 +996.233702 +996.429973 +996.431604 +996.433702 +996.934667 +997.034368 +997.134434 +997.532802 +997.632635 +997.633601 +998.493141 +999.336163 +1003.066163 +1003.066596 +1003.078218 +1003.087941 +1003.111551 +1003.132730 +1003.161834 +1003.177785 +1003.192370 +1003.220608 +1003.248281 +1003.290672 +1003.317312 +1003.350112 +1003.394734 +1003.430165 +1003.465363 +1003.479616 +1003.514847 +1003.533262 +1003.549879 +1003.595600 +1003.628101 +1003.669859 +1003.699629 +1003.699862 +1003.719609 +1003.768593 +1003.769459 +1003.831131 +1003.876918 +1004.478449 +1004.651776 +1005.040453 +1005.231229 +1005.776250 +1005.947379 +1006.026966 +1006.128897 +1006.167991 +1006.210449 +1006.247479 +1006.255737 +1006.299859 +1006.383176 +1006.567125 +1006.690901 +1006.929429 +1007.103422 +1007.180711 +1007.227731 +1007.297161 +1007.358167 +1007.593997 +1007.738086 +1007.851972 +1007.937886 +1011.343378 +1012.458761 +1012.510243 +1012.929889 +1012.987865 +1013.025427 +1013.301617 +1013.666685 +1013.686798 +1014.166785 +1014.179339 +1014.205679 +1014.307211 +1014.363854 +1014.390661 +1014.453131 +1014.820164 +1015.599850 +1015.617166 +1015.625092 +1015.641309 +1015.659257 +1017.223625 +1017.242606 +1017.528453 +1017.558490 +1018.032682 +1018.628485 +1019.032447 +1019.387758 +1019.523256 +1019.575304 +1019.634178 +1019.745800 +1020.033745 +1021.031779 +1021.558619 +1022.031878 +1023.031711 +1023.032011 +1023.032310 +1028.031972 +1028.534836 +1028.933836 +1029.034003 +1029.034935 +1029.134302 +1029.234369 +1029.333569 +1029.334302 +1029.430705 +1029.933535 +1030.734667 +1030.934367 +1031.034500 +1032.334565 +1032.434765 +1032.534399 +1032.631635 +1037.173888 +1038.148079 +1038.192801 +1038.320207 +1038.430696 +1039.458501 +1039.575018 +1040.010748 +1040.344980 +1040.611780 +1040.862662 +1041.546944 +1041.580477 +1041.955701 +1041.956500 +1042.021702 +1042.340782 +1042.832956 +1042.878644 +1053.029849 +1054.030881 +1054.031247 +1055.031113 +1056.030879 +1063.229839 +1063.331471 +1063.532137 +1063.532569 +1063.533502 +1063.831970 +1064.032569 +1064.232302 +1064.532402 +1065.032801 +1065.432667 +1065.532135 +1065.632634 +1065.733899 +1065.831868 +1065.832867 +1066.032833 +1066.331901 +1066.332367 +1066.433499 +1066.532533 +1066.732600 +1066.832566 +1066.834098 +1066.932533 +1067.132499 +1067.133665 +1067.232366 +1067.332799 +1067.631899 +1067.632798 +1067.832399 +1067.932265 +1073.038021 +1073.046646 +1073.074451 +1073.076216 +1073.087472 +1073.087738 +1073.136722 +1073.147012 +1073.148411 +1073.169123 +1073.170921 +1073.183109 +1073.211614 +1073.242283 +1073.257535 +1073.274052 +1073.298960 +1073.326532 +1073.340652 +1073.356636 +1073.369556 +1073.382843 +1073.417475 +1073.448477 +1073.476982 +1073.479879 +1073.511714 +1073.540418 +1073.573818 +1073.597894 +1073.599393 +1073.628463 +1073.660731 +1073.711680 +1073.759532 +1073.788736 +1073.833458 +1074.004487 +1074.070288 +1074.199925 +1074.273718 +1074.326498 +1074.385872 +1074.644946 +1074.727463 +1074.808849 +1074.894962 +1075.155169 +1075.204453 +1075.254336 +1075.294030 +1075.298392 +1075.413943 +1075.564759 +1075.643913 +1076.182940 +1076.256067 +1076.387302 +1076.461028 +1076.683905 +1076.784604 +1076.940648 +1077.030458 +1077.125430 +1077.454467 +1077.549871 +1077.873448 +1077.889032 +1088.028449 +1088.029581 +1089.028115 +1090.028680 +1093.027245 +1098.431169 +1098.530536 +1098.830803 +1099.030969 +1099.630902 +1100.431400 +1100.732566 +1102.031599 +1102.531365 +1102.631332 +1108.028529 +1108.037087 +1108.053537 +1108.064493 +1108.075748 +1108.086538 +1108.098193 +1108.099758 +1108.122568 +1108.134756 +1108.135322 +1108.149075 +1108.149741 +1108.162894 +1108.176048 +1108.192365 +1108.236221 +1108.249141 +1108.275648 +1108.303520 +1108.379611 +1108.414975 +1108.417207 +1108.455102 +1108.472218 +1108.532125 +1108.576214 +1108.578212 +1108.623567 +1109.184472 +1110.668586 +1110.730724 +1110.840448 +1112.168352 +1112.298122 +1112.600652 +1112.662390 +1112.667552 +1112.894392 +1112.938081 +1113.000852 +1117.772542 +1120.670941 +1124.683091 +1125.029744 +1126.030209 +1128.030607 +1133.230801 +1133.331367 +1133.631301 +1133.631967 +1133.731467 +1133.732333 +1133.930201 +1134.029236 +1134.031034 +1134.532199 +1134.532798 +1134.732298 +1134.832465 +1135.031998 +1135.132132 +1135.332031 +1135.730366 +1136.132530 +1136.432863 +1136.532330 +1136.532730 +1136.533828 +1136.630865 +1136.631531 +1136.832929 +1137.031164 +1137.232829 +1137.432962 +1137.529965 +1137.632096 +1141.324300 +1143.037984 +1143.045477 +1143.063592 +1143.076912 +1143.099090 +1143.099556 +1143.132523 +1143.135287 +1143.161794 +1143.190532 +1143.208247 +1143.220935 +1143.251271 +1143.282773 +1143.315107 +1143.341980 +1143.368121 +1143.374747 +1143.388767 +1143.420468 +1143.453835 +1143.499622 +1143.527295 +1143.542613 +1144.606315 +1145.399021 +1145.747139 +1146.663955 +1146.892160 +1147.939645 +1147.970813 +1147.990027 +1148.007044 +1158.030943 +1158.653853 +1158.683656 +1158.736270 +1158.763876 +1159.742363 +1160.029742 +1161.029209 +1161.030973 +1167.078653 +1167.236895 +1168.130600 +1168.531499 +1168.631898 +1168.732198 +1168.831565 +1168.832697 +1169.030599 +1169.031365 +1169.230699 +1169.331298 +1169.331831 +1169.433030 +1169.532197 +1169.532763 +1169.830399 +1169.929499 +1170.029333 +1170.632163 +1171.233094 +1171.333294 +1171.730030 +1171.829830 +1171.931196 +1171.931595 +1172.132994 +1172.232860 +1172.731961 +1172.732760 +1172.829397 +1172.831128 +1172.928464 +1172.931128 +1173.031627 +1175.597559 +1177.000255 +1178.052668 +1178.073181 +1178.082605 +1178.117869 +1178.145375 +1178.171682 +1178.173181 +1178.203351 +1178.218735 +1178.270383 +1178.310910 +1178.347140 +1178.364689 +1178.379474 +1178.409078 +1178.455931 +1178.492961 +1178.518935 +1178.531722 +1178.545408 +1178.568751 +1178.767552 +1178.831755 +1179.842543 +1180.194557 +1182.834848 +1182.870346 +1182.909240 +1182.956026 +1182.957325 +1182.990092 +1183.022427 +1192.574199 +1193.029676 +1194.260044 +1196.305830 +1196.317918 +1196.369000 +1196.601734 +1197.028507 +1197.029372 +1197.030271 +1197.030871 +1197.383118 +1197.463504 +1197.544756 +1197.569798 +1197.768999 +1198.028572 +1198.060207 +1198.729570 +1198.737762 +1198.749084 +1199.410289 +1199.454545 +1199.478354 +1199.518780 +1200.669961 +1201.137360 +1201.163268 +1203.030798 +1203.231431 +1203.330931 +1203.331531 +1203.731164 +1203.830997 +1203.931796 +1204.031996 +1204.231896 +1204.332395 +1204.332762 +1204.432395 +1204.532595 +1204.632761 +1204.732695 +1204.932328 +1205.130730 +1205.332128 +1205.432128 +1205.726933 +1205.831162 +1205.932161 +1206.031295 +1206.031894 +1206.429729 +1206.530895 +1206.732093 +1206.832293 +1206.931027 +1207.032992 +1207.229962 +1207.625432 +1207.629895 +1207.732126 +1207.830028 +1207.931659 +1210.433122 +1213.038048 +1213.045174 +1213.062923 +1213.063888 +1213.064188 +1213.064521 +1213.085700 +1213.095024 +1213.122430 +1213.123862 +1213.152000 +1213.190628 +1213.193259 +1213.219366 +1213.258827 +1213.272746 +1213.285067 +1213.304781 +1213.344940 +1213.345373 +1213.377441 +1213.623362 +1213.785799 +1213.933951 +1214.074743 +1214.106944 +1214.851832 +1215.125625 +1215.160223 +1215.359757 +1215.390260 +1215.437512 +1215.500949 +1215.773976 +1215.907542 +1216.016999 +1216.052131 +1216.229886 +1216.504311 +1216.689759 +1216.754661 +1217.121493 +1217.787860 +1217.816165 +1217.828053 +1217.892655 +1217.939541 +1217.939841 +1218.002145 +1223.328580 +1223.379729 +1228.030274 +1228.030507 +1228.030873 +1228.100537 +1228.250686 +1229.029141 +1230.028707 +1231.029438 +1233.046786 +1233.204661 +1233.585180 +1233.963102 +1238.029531 +1238.231429 +1238.830496 +1239.129697 +1239.232627 +1239.331228 +1239.431927 +1239.532993 +1239.831927 +1239.930395 +1240.132726 +1240.232859 +1240.748110 +1240.833824 +1240.932858 +1241.033491 +1241.133058 +1241.728728 +1241.735521 +1241.930726 +1241.932624 +1242.033024 +1242.130060 +1242.131492 +1242.229827 +1242.332790 +1242.733789 +1242.933056 +1243.033789 +1245.500086 +1246.104382 +1246.592759 +1248.029421 +1248.051266 +1248.060357 +1248.061522 +1248.072611 +1248.073078 +1248.095888 +1248.106444 +1248.119997 +1248.132218 +1248.132485 +1248.144739 +1248.146571 +1248.158792 +1248.171646 +1248.198452 +1248.214336 +1248.227223 +1248.227490 +1248.228988 +1248.280037 +1248.461955 +1248.516800 +1248.576074 +1248.622028 +1248.668914 +1248.775841 +1248.805345 +1248.834016 +1248.876307 +1248.892424 +1248.995021 +1249.263952 +1249.726889 +1249.855693 +1249.899250 +1249.963152 +1250.065483 +1250.077005 +1250.245969 +1250.503611 +1250.566981 +1250.604310 +1250.885396 +1251.322392 +1251.545701 +1251.548665 +1252.164082 +1252.646133 +1252.672840 +1252.684561 +1252.738141 +1252.767112 +1252.797548 +1252.837408 +1252.908304 +1252.935144 +1252.962117 +1252.980265 +1253.014331 +1254.970973 +1254.990253 +1255.261282 +1259.315024 +1259.356183 +1259.383955 +1260.648356 +1262.288848 +1262.470699 +1262.979390 +1263.008927 +1263.025044 +1263.029373 +1263.203965 +1263.319682 +1263.534367 +1264.031170 +1264.031670 +1264.491210 +1265.335964 +1265.586180 +1265.597669 +1265.634199 +1265.759240 +1266.031235 +1266.031534 +1266.447551 +1266.677155 +1266.790108 +1267.032266 +1268.031066 +1269.523339 +1273.131128 +1273.230661 +1273.334824 +1273.432726 +1273.533658 +1273.533958 +1273.631727 +1273.647478 +1273.732726 +1273.833358 +1274.033092 +1274.132559 +1274.532758 +1274.533524 +1274.734523 +1274.734956 +1274.933290 +1275.132658 +1275.533689 +1275.534322 +1275.734322 +1275.834688 +1276.033989 +1276.034621 +1276.534721 +1276.735253 +1276.834621 +1276.933921 +1277.234254 +1277.534154 +1277.534686 +1277.634653 +1277.734054 +1277.935785 +1283.031484 +1283.031751 +1283.032350 +1283.056959 +1283.058058 +1283.075174 +1283.087262 +1283.100482 +1283.110805 +1283.124058 +1283.127388 +1283.148034 +1283.175873 +1283.217565 +1283.782499 +1287.599745 +1287.646964 +1287.696881 +1287.714730 +1287.731646 +1287.757653 +1287.807803 +1287.853457 +1287.857353 +1287.888822 +1287.891652 +1287.927084 +1287.929148 +1287.958119 +1287.989788 +1288.021023 +1288.022755 +1299.032301 +1301.031433 +1301.031766 +1308.232591 +1308.432891 +1309.033390 +1309.533822 +1309.733589 +1310.033655 +1310.433688 +1310.633954 +1310.734120 +1310.933654 +1310.934020 +1311.033887 +1311.433920 +1311.633820 +1311.833820 +1311.934053 +1312.133220 +1312.133719 +1312.233187 +1312.434352 +1312.435118 +1312.533752 +1312.634019 +1313.033918 +1318.032548 +1318.081566 +1318.108972 +1318.136111 +1318.176537 +1318.219528 +1318.337110 +1318.380400 +1318.418428 +1318.597383 +1318.979334 +1319.037575 +1319.152360 +1319.426586 +1319.531714 +1319.664381 +1319.710435 +1319.896715 +1319.974404 +1320.352992 +1320.866878 +1320.891719 +1321.105472 +1321.122755 +1321.306737 +1321.392485 +1321.535475 +1321.607936 +1321.694183 +1321.861482 +1322.439537 +1322.556220 +1322.572071 +1322.605504 +1322.677831 +1322.708967 +1322.736373 +1322.737705 +1322.738404 +1322.807768 +1322.854954 +1322.891950 +1322.939536 +1322.989819 +1323.019190 +1325.863110 +1335.031465 +1337.031996 +1343.030825 +1343.131724 +1343.132490 +1343.232256 +1343.233688 +1343.332723 +1343.431857 +1343.532156 +1343.632922 +1343.634587 +1343.732955 +1343.733521 +1343.733854 +1343.833155 +1343.932456 +1344.034853 +1344.233587 +1344.732421 +1345.033453 +1345.233320 +1345.332820 +1345.833186 +1346.133452 +1346.633618 +1347.133884 +1347.233751 +1347.333751 +1347.633717 +1347.832052 +1350.842938 +1350.851163 +1350.885862 +1350.950031 +1351.718095 +1351.728019 +1351.893886 +1351.918828 +1351.949997 +1351.978601 +1352.090856 +1353.031581 +1353.047698 +1353.079066 +1353.160951 +1354.186058 +1354.987523 +1355.181196 +1355.228149 +1355.342867 +1355.417059 +1355.827449 +1355.863213 +1355.924618 +1355.991085 +1356.027582 +1356.076266 +1356.125251 +1356.309666 +1356.310199 +1356.366676 +1356.690784 +1356.736439 +1356.975799 +1356.997411 +1357.394014 +1357.431510 +1357.462878 +1357.463711 +1357.517057 +1357.562911 +1357.629478 +1357.647893 +1357.714460 +1357.730277 +1357.763910 +1357.782125 +1357.835805 +1357.870670 +1357.917090 +1357.986554 +1357.987553 +1358.023584 +1368.972724 +1369.972023 +1370.972155 +1375.971751 +1375.972217 +1376.073416 +1376.267388 +1376.667221 +1376.767654 +1377.068253 +1377.167920 +1377.367787 +1377.467887 +1377.468286 +1377.567986 +1377.667820 +1377.668419 +1377.768452 +1377.867686 +1377.868086 +1377.878609 +1377.967120 +1378.168385 +1378.268419 +1378.567353 +1378.568485 +1378.668318 +1379.168151 +1379.168651 +1379.268484 +1379.868650 +1379.968517 +1380.068284 +1380.268217 +1380.568250 +1380.668017 +1380.668616 +1380.968582 +1386.012467 +1386.054824 +1386.062483 +1386.096682 +1386.168178 +1386.275870 +1386.348797 +1386.394684 +1386.429616 +1386.475137 +1386.499546 +1386.542636 +1386.564381 +1386.591121 +1386.631247 +1386.654824 +1386.680598 +1386.716462 +1386.780365 +1386.817028 +1386.858786 +1386.904774 +1386.944900 +1386.970841 +1387.035776 +1387.065712 +1387.107238 +1387.155023 +1387.194250 +1387.218826 +1387.293984 +1387.317194 +1387.369608 +1387.390820 +1387.429149 +1387.442335 +1387.533344 +1387.534243 +1387.558752 +1387.587490 +1387.621922 +1387.647264 +1387.656821 +1387.671772 +1387.697946 +1387.705938 +1387.741669 +1387.789555 +1387.819192 +1387.895382 +1387.936008 +1387.960084 +1387.985059 +1388.011765 +1388.026351 +1388.037040 +1388.062282 +1388.090353 +1388.142435 +1388.177500 +1388.202208 +1388.235009 +1388.260317 +1388.284393 +1388.325118 +1388.349194 +1388.376301 +1388.442534 +1388.455688 +1388.495714 +1388.540503 +1388.556087 +1388.607569 +1388.673736 +1388.729214 +1388.835607 +1388.865511 +1388.893583 +1388.917858 +1388.944099 +1389.017159 +1389.044598 +1389.059816 +1389.091684 +1389.120289 +1389.179363 +1389.239403 +1389.284358 +1389.326516 +1389.355887 +1389.427082 +1389.453422 +1389.470139 +1389.485257 +1389.510632 +1389.512929 +1389.530878 +1389.565976 +1389.581428 +1389.598177 +1389.611164 +1389.622287 +1389.624351 +1389.660448 +1389.686156 +1389.703206 +1389.729213 +1389.804138 +1389.818757 +1389.894281 +1389.909799 +1389.927847 +1389.958184 +1390.001973 +1390.034707 +1390.066109 +1390.111530 +1390.137538 +1390.172536 +1390.201440 +1390.217624 +1390.242366 +1390.257118 +1390.270504 +1390.286255 +1390.346162 +1390.373168 +1390.388553 +1390.417391 +1390.431244 +1390.449425 +1390.477597 +1390.521853 +1390.536538 +1390.553554 +1390.581327 +1390.597444 +1390.613261 +1390.659848 +1390.690251 +1390.705935 +1390.720188 +1390.734773 +1390.750924 +1390.783125 +1390.796545 +1390.812462 +1390.828013 +1390.842032 +1390.859748 +1390.888219 +1390.901173 +1390.934673 +1390.949425 +1400.966964 +1400.974123 +1401.968062 +1401.973956 +1402.974155 +1404.973687 +1405.974318 +1405.974851 +1410.965755 +1410.973081 +1410.973780 +1411.074147 +1411.173747 +1411.367686 +1411.568352 +1411.769817 +1411.969284 +1411.971115 +1412.269384 +1412.468651 +1412.469250 +1412.669150 +1412.868684 +1412.968883 +1413.068350 +1413.268717 +1413.368750 +1413.569482 +1413.869116 +1413.968782 +1414.067983 +1414.268749 +1414.468682 +1414.668815 +1414.768515 +1415.268681 +1415.269647 +1415.468648 +1415.569147 +1415.569547 +1415.768781 +1415.769646 +1415.968681 +1415.969380 +1420.548962 +1420.641969 +1421.039205 +1421.061816 +1421.097846 +1421.224486 +1421.246597 +1421.296747 +1421.319857 +1421.341103 +1421.391486 +1421.449494 +1421.504406 +1421.541669 +1421.594482 +1421.623786 +1421.724186 +1421.753257 +1421.753523 +1421.804506 +1421.849927 +1421.872704 +1421.876733 +1421.916427 +1421.975301 +1422.012464 +1422.038471 +1422.049394 +1422.076034 +1422.127849 +1422.162514 +1422.186090 +1422.207669 +1422.221255 +1422.270406 +1422.309600 +1422.311232 +1422.349527 +1422.364878 +1422.396846 +1422.453123 +1422.479330 +1422.537072 +1422.562946 +1422.575367 +1422.648661 +1422.664012 +1422.704305 +1422.705037 +1422.749460 +1422.787455 +1422.812064 +1422.863379 +1422.871504 +1422.900175 +1422.924218 +1422.964511 +1423.004904 +1423.035573 +1423.058517 +1423.084691 +1423.111464 +1423.174900 +1423.207301 +1423.234008 +1423.257951 +1423.335473 +1423.349659 +1423.361747 +1423.387721 +1423.415626 +1423.489219 +1423.490118 +1423.536006 +1423.554520 +1423.655819 +1423.721387 +1423.734207 +1423.763378 +1423.779229 +1423.818090 +1423.847261 +1423.890817 +1423.926215 +1423.977197 +1424.016691 +1424.096478 +1424.136205 +1424.167141 +1424.225515 +1424.242565 +1424.283124 +1424.319888 +1424.346961 +1424.407633 +1424.431942 +1424.489418 +1424.512628 +1424.541799 +1424.560047 +1424.599241 +1424.614260 +1424.642032 +1424.665975 +1424.706667 +1424.721719 +1424.806101 +1424.833940 +1424.856717 +1424.883890 +1424.902338 +1424.932341 +1424.960680 +1424.986953 +1425.002171 +1425.086420 +1425.115624 +1425.129344 +1425.156051 +1425.180859 +1425.200373 +1425.211162 +1425.214326 +1425.226880 +1425.241598 +1425.271535 +1425.284189 +1425.293247 +1425.315558 +1425.349157 +1425.361945 +1425.389950 +1425.392481 +1425.409197 +1425.431508 +1425.432307 +1425.433506 +1425.478961 +1425.507865 +1425.536703 +1425.552787 +1425.579160 +1425.596643 +1425.622584 +1425.635671 +1425.651055 +1425.653519 +1425.673899 +1425.697242 +1425.712261 +1425.722417 +1425.738201 +1425.739733 +1425.756649 +1425.763576 +1425.790982 +1425.835104 +1425.848657 +1425.871301 +1425.872733 +1425.872966 +1425.891381 +1425.893779 +1425.908964 +1425.934172 +1425.963276 +1435.975587 +1438.968757 +1438.976117 +1438.976416 +1440.969655 +1445.975977 +1445.976376 +1446.571480 +1446.670948 +1446.671880 +1446.970414 +1447.068949 +1447.140045 +1447.269682 +1447.271779 +1447.571479 +1447.671479 +1447.772179 +1448.071013 +1448.171579 +1448.371712 +1448.471479 +1448.472178 +1448.670080 +1448.670912 +1448.771545 +1448.871611 +1448.971645 +1449.271777 +1449.371578 +1449.371811 +1449.471677 +1449.570978 +1449.771577 +1449.971544 +1449.972176 +1450.072210 +1450.271776 +1450.372609 +1450.571676 +1450.572276 +1450.671676 +1450.871676 +1450.971742 +1452.889123 +1452.903675 +1453.407704 +1453.518027 +1455.846496 +1455.855287 +1455.868974 +1455.949726 +1455.960649 +1455.976599 +1455.982893 +1456.001241 +1456.029247 +1456.087755 +1456.097611 +1456.175400 +1456.198610 +1456.244131 +1456.268807 +1456.361747 +1456.411364 +1456.528613 +1456.556286 +1456.607068 +1456.648793 +1456.650391 +1456.670571 +1456.682859 +1456.712729 +1456.713562 +1456.737171 +1456.774534 +1456.824650 +1456.854887 +1456.884790 +1456.928213 +1456.929312 +1457.048659 +1457.071004 +1457.109565 +1457.134840 +1457.199708 +1457.225449 +1457.257684 +1457.330710 +1457.372835 +1457.382226 +1457.429678 +1457.443231 +1457.490883 +1457.515559 +1457.544097 +1457.579262 +1457.594746 +1457.646528 +1457.700607 +1457.743431 +1457.780793 +1457.828978 +1457.853520 +1457.900041 +1457.931842 +1457.970004 +1457.970870 +1458.063244 +1458.084622 +1458.113427 +1458.122884 +1458.134672 +1458.160080 +1458.202072 +1458.225182 +1458.249457 +1458.260979 +1458.326713 +1458.364243 +1458.399474 +1458.424615 +1458.426680 +1458.494246 +1458.526946 +1458.575831 +1458.629344 +1458.659181 +1458.683456 +1458.696210 +1458.710030 +1458.735671 +1458.769537 +1458.796710 +1458.800706 +1458.827346 +1458.838501 +1458.865874 +1458.876230 +1458.958414 +1458.986719 +1459.011928 +1459.068671 +1459.123116 +1459.137269 +1459.194278 +1459.240898 +1459.285087 +1459.322816 +1459.347691 +1459.375530 +1459.434271 +1459.459546 +1459.487951 +1459.523216 +1459.545593 +1459.574598 +1459.630575 +1459.654318 +1459.678460 +1459.721784 +1459.757981 +1459.772000 +1459.799905 +1459.810928 +1459.854551 +1459.887118 +1459.919020 +1459.947291 +1460.017521 +1460.040964 +1460.042196 +1460.043262 +1460.073432 +1460.098007 +1460.110328 +1460.114923 +1460.128310 +1460.187517 +1460.207264 +1460.229442 +1460.242662 +1460.258313 +1460.258979 +1460.270434 +1460.283688 +1460.307597 +1460.346292 +1460.348123 +1460.370867 +1460.398806 +1460.403035 +1460.410894 +1460.449955 +1460.464906 +1460.477327 +1460.490747 +1460.506432 +1460.515223 +1460.519052 +1460.534270 +1460.543827 +1460.587351 +1460.612159 +1460.658413 +1460.685952 +1460.774263 +1460.789315 +1460.808396 +1460.838732 +1460.869735 +1460.883521 +1460.909162 +1460.911360 +1460.940730 +1460.941429 +1471.970722 +1473.972186 +1475.978810 +1478.953366 +1480.977973 +1481.273111 +1481.673577 +1481.675008 +1481.872877 +1481.874109 +1482.073110 +1482.174076 +1482.273543 +1482.274309 +1482.473010 +1482.573609 +1482.672610 +1482.673442 +1482.773276 +1482.873242 +1482.973142 +1483.173475 +1483.173808 +1483.174208 +1483.573075 +1483.673308 +1483.773308 +1483.873275 +1483.973208 +1484.071510 +1484.073807 +1484.171676 +1484.173108 +1484.271310 +1484.272841 +1484.372109 +1484.873340 +1484.973307 +1485.073373 +1485.073906 +1485.173307 +1485.372840 +1485.471608 +1485.573173 +1485.673539 +1485.674205 +1485.772507 +1485.773306 +1485.873073 +1485.973206 +1488.539470 +1491.013294 +1491.064576 +1491.065675 +1491.106468 +1491.139401 +1491.176464 +1491.253953 +1491.265075 +1491.306201 +1491.357849 +1491.408332 +1491.432441 +1491.458915 +1491.478429 +1491.521619 +1491.575198 +1491.634905 +1491.671702 +1491.747859 +1491.768005 +1491.780559 +1491.823117 +1491.863510 +1491.899574 +1491.995711 +1492.021984 +1492.095311 +1492.131475 +1492.154985 +1492.158215 +1492.198408 +1492.237902 +1492.248957 +1492.342264 +1492.379493 +1492.391415 +1492.437835 +1492.481957 +1492.506966 +1492.560545 +1492.572800 +1492.587618 +1492.608298 +1492.612760 +1492.662710 +1492.687119 +1492.719786 +1492.752886 +1492.776396 +1492.791148 +1492.830608 +1492.886486 +1492.940065 +1492.954318 +1492.992746 +1492.993579 +1493.015024 +1493.075596 +1493.115457 +1493.138767 +1493.178027 +1493.251953 +1493.278160 +1493.341630 +1493.373332 +1493.396409 +1493.425480 +1493.477661 +1493.502502 +1493.568703 +1493.580891 +1493.595210 +1493.644194 +1493.687151 +1493.718553 +1493.735669 +1493.777927 +1493.829409 +1493.852319 +1493.877560 +1493.932539 +1493.987850 +1494.014024 +1494.065039 +1494.099005 +1494.124247 +1494.160044 +1494.200670 +1494.226911 +1494.261210 +1494.294909 +1494.350887 +1494.353384 +1494.406131 +1494.435235 +1494.461509 +1494.501935 +1494.528276 +1494.568835 +1494.585052 +1494.612092 +1494.648655 +1494.672598 +1494.712791 +1494.738931 +1494.759811 +1494.790613 +1494.853617 +1494.883453 +1494.915355 +1494.926843 +1494.939264 +1494.941495 +1494.972065 +1494.987682 +1495.011792 +1495.070200 +1495.085185 +1495.095674 +1495.119817 +1495.120216 +1495.133237 +1495.157979 +1495.167269 +1495.171998 +1495.183686 +1495.226743 +1495.227975 +1495.239697 +1495.247422 +1495.259311 +1495.273630 +1495.277626 +1495.288615 +1495.301602 +1495.309993 +1495.330939 +1495.340995 +1495.355448 +1495.389946 +1495.400369 +1495.401035 +1495.412590 +1495.414489 +1495.439364 +1495.491811 +1495.504232 +1495.532637 +1495.533403 +1495.557279 +1495.586883 +1495.614289 +1495.616620 +1495.643926 +1495.667402 +1495.690612 +1495.692710 +1495.708960 +1495.725078 +1495.725744 +1495.738331 +1495.754748 +1495.782886 +1495.812490 +1495.837565 +1495.865604 +1495.879190 +1495.894108 +1495.908661 +1495.922380 +1495.935800 +1495.952250 +1497.531469 +1497.535798 +1497.548386 +1500.712718 +1503.629965 +1504.867559 +1505.300526 +1506.971853 +1507.971819 +1511.210177 +1514.354962 +1514.391626 +1514.439478 +1515.727955 +1515.955527 +1515.978704 +1516.072710 +1516.171244 +1516.372776 +1516.473708 +1516.572409 +1516.572676 +1516.672909 +1516.678803 +1516.772742 +1516.972675 +1516.974174 +1517.373574 +1517.672442 +1517.673008 +1517.771709 +1517.873041 +1517.972608 +1518.073474 +1518.074006 +1518.273440 +1518.274672 +1518.374739 +1518.573673 +1518.574705 +1518.873373 +1518.971708 +1518.972407 +1519.273039 +1519.273239 +1519.373306 +1519.373705 +1519.474138 +1519.673405 +1519.673805 +1519.773372 +1519.773738 +1519.972739 +1520.372639 +1520.673371 +1520.674636 +1520.773637 +1520.973471 +1526.035537 +1526.057581 +1526.104401 +1526.156016 +1526.178993 +1526.191747 +1526.238767 +1526.262876 +1526.285720 +1526.289849 +1526.338867 +1526.376063 +1526.413192 +1526.440565 +1526.490315 +1526.519119 +1526.555017 +1526.581823 +1526.639765 +1526.660711 +1526.677960 +1526.703202 +1526.800704 +1526.828743 +1526.919452 +1526.931540 +1527.011626 +1527.049988 +1527.072033 +1527.110727 +1527.140331 +1527.202669 +1527.276328 +1527.308063 +1527.346758 +1527.359944 +1527.383554 +1527.451952 +1527.474496 +1527.487483 +1527.497940 +1527.551586 +1527.578825 +1527.616787 +1527.654550 +1527.714490 +1527.730440 +1527.753118 +1527.783920 +1527.820084 +1527.840563 +1527.850387 +1527.874996 +1527.927410 +1527.976394 +1528.028475 +1528.055382 +1528.085285 +1528.118985 +1528.162175 +1528.189348 +1528.216787 +1528.240796 +1528.255481 +1528.286683 +1528.311892 +1528.334769 +1528.362175 +1528.381822 +1528.411725 +1528.449421 +1528.480156 +1528.505731 +1528.508295 +1528.534669 +1528.550220 +1528.606130 +1528.606930 +1528.636234 +1528.658245 +1528.708461 +1528.754482 +1528.780056 +1528.853083 +1528.879057 +1528.917485 +1528.944525 +1528.966936 +1528.991078 +1529.034402 +1529.096806 +1529.123080 +1529.147155 +1529.160376 +1529.188914 +1529.217285 +1529.242493 +1529.267135 +1529.336499 +1529.385750 +1529.428241 +1529.485051 +1529.532636 +1529.563272 +1529.658177 +1529.683685 +1529.711158 +1529.723345 +1529.759709 +1529.788314 +1529.814887 +1529.838430 +1529.851484 +1529.863472 +1529.879622 +1529.888846 +1529.907894 +1529.908860 +1529.922046 +1529.964104 +1529.967934 +1529.979556 +1529.982186 +1529.996239 +1529.998204 +1530.021547 +1530.040927 +1530.050651 +1530.065836 +1530.069332 +1530.092143 +1530.103998 +1530.116918 +1530.127474 +1530.128140 +1530.140062 +1530.155180 +1530.156612 +1530.167068 +1530.168333 +1530.170897 +1530.184950 +1530.212822 +1530.214187 +1530.215286 +1530.246921 +1530.254114 +1530.272163 +1530.273961 +1530.297870 +1530.304530 +1530.314820 +1530.339728 +1530.353848 +1530.355945 +1530.358909 +1530.372962 +1530.386948 +1530.415652 +1530.416518 +1530.426375 +1530.431670 +1530.447887 +1530.471530 +1530.484517 +1530.488346 +1530.524810 +1530.526108 +1530.539795 +1530.553015 +1530.565069 +1530.565402 +1530.587480 +1530.601799 +1530.603764 +1530.614254 +1530.618283 +1530.627607 +1530.647720 +1530.651050 +1530.679954 +1530.692342 +1530.694540 +1530.708359 +1530.723278 +1530.752149 +1530.765569 +1530.781286 +1530.783617 +1530.783950 +1530.800767 +1530.816584 +1530.816917 +1530.842092 +1530.842858 +1530.863671 +1530.878123 +1530.879521 +1530.891376 +1530.903098 +1530.918249 +1530.920480 +1530.938529 +1530.950317 +1530.952848 +1539.175983 +1540.651540 +1540.973251 +1543.274381 +1543.391230 +1543.972149 +1544.339481 +1545.288731 +1545.972846 +1550.077138 +1551.373940 +1551.580533 +1551.673107 +1551.774739 +1551.873506 +1551.973506 +1551.974905 +1552.073473 +1552.074305 +1552.173872 +1552.273573 +1552.373939 +1552.374638 +1552.873705 +1553.073738 +1553.273838 +1553.274904 +1553.374138 +1553.473638 +1553.574337 +1553.874437 +1553.875103 +1554.175202 +1554.273670 +1554.575102 +1554.674569 +1554.773071 +1554.873936 +1555.173936 +1555.174236 +1555.273736 +1555.274169 +1555.574335 +1555.575234 +1555.673503 +1555.674035 +1555.773569 +1555.774768 +1555.874102 +1555.974834 +1558.611062 +1558.790949 +1558.866506 +1559.574697 +1560.972099 +1560.985652 +1561.018819 +1561.045459 +1561.130940 +1561.168269 +1561.208629 +1561.245059 +1561.266404 +1561.320150 +1561.345492 +1561.375462 +1561.418252 +1561.449754 +1561.500004 +1561.534502 +1561.572864 +1561.668268 +1561.696807 +1561.711958 +1561.737499 +1561.776793 +1561.789680 +1561.826377 +1561.862507 +1561.893876 +1561.943826 +1561.963373 +1562.015221 +1562.101002 +1562.123446 +1562.146456 +1562.177659 +1562.190979 +1562.256213 +1562.370932 +1562.381921 +1562.439097 +1562.485550 +1562.540029 +1562.565271 +1562.580022 +1562.602933 +1562.651584 +1562.671831 +1562.708294 +1562.746356 +1562.758677 +1562.781954 +1562.844891 +1562.953482 +1562.992543 +1563.016885 +1563.053648 +1563.067701 +1563.079822 +1563.116352 +1563.144391 +1563.170665 +1563.233235 +1563.335733 +1563.362406 +1563.396505 +1563.447621 +1563.495806 +1563.521513 +1563.587347 +1563.616585 +1563.634167 +1563.677690 +1563.717018 +1563.742426 +1563.775992 +1563.820348 +1563.829871 +1563.845323 +1563.882918 +1563.934700 +1563.961440 +1563.994873 +1564.010824 +1564.035432 +1564.125009 +1564.150450 +1564.160341 +1564.254213 +1564.296138 +1564.336897 +1564.378822 +1564.409658 +1564.410557 +1564.441459 +1564.482651 +1564.523044 +1564.553680 +1564.588845 +1564.611256 +1564.628805 +1564.672828 +1564.684882 +1564.712788 +1564.778455 +1564.789944 +1564.826840 +1564.866700 +1564.868865 +1564.888279 +1564.915218 +1564.944456 +1564.958142 +1564.967499 +1564.987979 +1565.003963 +1565.026507 +1565.044289 +1565.067599 +1565.081785 +1565.114452 +1565.158308 +1565.169697 +1565.186080 +1565.189111 +1565.234399 +1565.277289 +1565.309723 +1565.321878 +1565.340526 +1565.360539 +1565.397402 +1565.414152 +1565.425208 +1565.428471 +1565.457309 +1565.460073 +1565.487079 +1565.504162 +1565.518847 +1565.530502 +1565.537928 +1565.582251 +1565.613985 +1565.668697 +1565.671261 +1565.694372 +1565.704961 +1565.727405 +1565.729137 +1565.765767 +1565.778021 +1565.780752 +1565.810788 +1565.837562 +1565.852347 +1565.868764 +1565.894205 +1565.919813 +1565.920479 +1565.950249 +1565.959406 +1568.241122 +1568.274689 +1568.280883 +1568.299764 +1568.341389 +1576.385203 +1576.451171 +1576.466289 +1576.475213 +1576.547141 +1576.687434 +1576.729059 +1576.818869 +1576.972083 +1576.979342 +1577.289165 +1578.972380 +1578.973013 +1583.100382 +1585.979033 +1586.073172 +1586.073505 +1586.874137 +1586.974803 +1587.073804 +1587.174204 +1587.175103 +1587.273871 +1587.274170 +1587.474237 +1587.574137 +1587.674003 +1587.774236 +1587.875135 +1587.973970 +1588.074169 +1588.174802 +1588.274269 +1588.374935 +1588.574369 +1588.773703 +1588.874035 +1588.974302 +1589.074402 +1589.174135 +1589.274834 +1589.374901 +1589.375367 +1589.474235 +1589.574001 +1589.675367 +1589.875033 +1590.174567 +1590.275233 +1590.373168 +1590.375000 +1590.473201 +1590.474600 +1590.575066 +1590.673867 +1590.774267 +1590.774833 +1590.873168 +1590.874500 +1590.973867 +1590.974866 +1592.305700 +1593.089149 +1593.597008 +1594.475395 +1596.020715 +1596.073595 +1596.095207 +1596.158544 +1596.179789 +1596.233935 +1596.288813 +1596.330838 +1596.354015 +1596.394807 +1596.433535 +1596.435333 +1596.477258 +1596.502233 +1596.516452 +1596.524577 +1596.603165 +1596.663238 +1596.771530 +1596.818183 +1596.830704 +1596.870864 +1596.906528 +1596.930338 +1596.976025 +1597.026908 +1597.059209 +1597.071530 +1597.095306 +1597.119648 +1597.149085 +1597.185915 +1597.223478 +1597.268533 +1597.321047 +1597.371063 +1597.398636 +1597.446821 +1597.508592 +1597.522112 +1597.543757 +1597.582818 +1597.614753 +1597.663804 +1597.694007 +1597.738562 +1597.811289 +1597.858276 +1597.884516 +1597.920480 +1597.952248 +1597.978089 +1598.026174 +1598.053314 +1598.080653 +1598.177156 +1598.218049 +1598.258475 +1598.312388 +1598.383750 +1598.412454 +1598.426707 +1598.470296 +1598.494938 +1598.520180 +1598.557409 +1598.594372 +1598.604262 +1598.628271 +1598.649783 +1598.653180 +1598.692008 +1598.723709 +1598.746187 +1598.771062 +1598.840059 +1598.849916 +1598.906460 +1598.935198 +1598.948318 +1598.950815 +1599.001065 +1599.028637 +1599.081551 +1599.111887 +1599.135497 +1599.147951 +1599.213186 +1599.244088 +1599.293839 +1599.306426 +1599.349849 +1599.390209 +1599.433299 +1599.456043 +1599.512287 +1599.538460 +1599.570195 +1599.599333 +1599.690109 +1599.738394 +1599.759972 +1599.770561 +1599.793139 +1599.837161 +1599.838793 +1599.863668 +1599.903262 +1599.919579 +1599.945553 +1600.038260 +1600.065067 +1600.080418 +1600.114117 +1600.177054 +1600.218446 +1600.235662 +1600.263868 +1600.287977 +1600.302562 +1600.329835 +1600.333165 +1600.361337 +1600.375356 +1600.377021 +1600.401163 +1600.430068 +1600.469695 +1600.471693 +1600.503694 +1600.522908 +1600.552678 +1600.578319 +1600.583681 +1600.601996 +1600.633098 +1600.674656 +1600.690574 +1600.718246 +1600.750847 +1600.780484 +1600.806991 +1600.837094 +1600.861769 +1600.888176 +1613.214271 +1614.971812 +1621.272871 +1621.274103 +1621.373104 +1621.374103 +1621.474536 +1621.773370 +1621.973503 +1621.974868 +1622.073603 +1622.174002 +1622.273802 +1622.274335 +1622.374002 +1622.374535 +1622.374568 +1622.473769 +1622.474135 +1622.574035 +1622.673769 +1622.674068 +1622.874434 +1623.173502 +1623.173968 +1623.274001 +1623.475333 +1623.574567 +1623.575233 +1623.674034 +1623.675100 +1623.773901 +1623.775133 +1623.874067 +1623.971536 +1624.073268 +1624.174067 +1624.174833 +1624.274033 +1624.473933 +1624.574100 +1624.574566 +1624.674100 +1624.674566 +1624.674566 +1624.674999 +1624.772501 +1624.872667 +1624.874266 +1624.874599 +1624.973933 +1625.074099 +1625.074665 +1625.173666 +1625.174499 +1625.174732 +1625.273999 +1625.374598 +1625.472967 +1625.473300 +1625.673799 +1625.674631 +1625.973865 +1625.974098 +1625.975131 +1631.003264 +1631.014120 +1631.033167 +1631.077823 +1631.159874 +1631.175925 +1631.198402 +1631.242658 +1631.272261 +1631.315418 +1631.338362 +1631.351815 +1631.386480 +1631.415218 +1631.445688 +1631.468998 +1631.495904 +1631.532501 +1631.558941 +1631.598302 +1631.635098 +1631.658109 +1631.678921 +1631.708691 +1631.728138 +1631.752314 +1631.775125 +1631.790876 +1631.802730 +1631.898568 +1631.922544 +1631.957043 +1631.993972 +1632.025474 +1632.050915 +1632.051581 +1632.106726 +1632.136796 +1632.148917 +1632.186280 +1632.189776 +1632.214418 +1632.253213 +1632.276922 +1632.318681 +1632.320013 +1632.376489 +1632.402463 +1632.436896 +1632.498900 +1632.538660 +1632.552147 +1632.574891 +1632.601364 +1632.631035 +1632.654378 +1632.690142 +1632.750049 +1632.784481 +1632.858407 +1632.900631 +1632.946419 +1633.013618 +1633.044654 +1633.070095 +1633.071793 +1633.111454 +1633.119779 +1633.154344 +1633.170461 +1633.194404 +1633.230468 +1633.273591 +1633.300964 +1633.339192 +1633.342023 +1633.379652 +1633.408723 +1633.447817 +1633.460704 +1633.489442 +1633.516815 +1633.556475 +1633.612719 +1633.646452 +1633.679152 +1633.692805 +1633.707524 +1633.750414 +1633.776122 +1633.778353 +1633.790208 +1633.861869 +1633.887244 +1633.899731 +1633.937827 +1633.970427 +1633.982482 +1634.013418 +1634.069128 +1634.095302 +1634.098233 +1634.124706 +1634.157107 +1634.199598 +1634.228902 +1634.253411 +1634.281516 +1634.304626 +1634.350447 +1634.364666 +1634.406924 +1634.432332 +1634.454509 +1634.478785 +1634.517846 +1634.541023 +1634.613717 +1634.675721 +1634.713051 +1634.737226 +1634.778652 +1634.817546 +1634.845451 +1634.858372 +1634.876454 +1634.948415 +1634.964865 +1634.988675 +1635.023140 +1635.053943 +1635.078918 +1635.101195 +1635.128235 +1635.173556 +1635.197732 +1635.244319 +1635.279650 +1635.351079 +1635.380183 +1635.432897 +1635.458238 +1635.480316 +1635.523373 +1635.553642 +1635.598864 +1635.628301 +1635.643952 +1635.657239 +1635.705557 +1635.718611 +1635.764565 +1635.781315 +1635.812084 +1635.856706 +1635.881381 +1635.925404 +1635.957738 +1645.971714 +1645.978674 +1646.971946 +1648.972477 +1648.978870 +1655.971771 +1656.171770 +1656.272003 +1656.672403 +1656.672835 +1656.972835 +1657.072635 +1657.272768 +1657.572801 +1657.672868 +1657.872934 +1657.873600 +1657.974166 +1658.272900 +1658.273067 +1658.273433 +1658.473500 +1658.672900 +1658.772967 +1658.773433 +1658.872833 +1658.973033 +1659.073033 +1659.172966 +1659.173332 +1659.174032 +1659.272966 +1659.274032 +1659.372866 +1659.374131 +1659.472966 +1659.473332 +1659.572866 +1659.573099 +1659.573499 +1659.672899 +1659.772866 +1659.873298 +1659.873998 +1659.973998 +1660.072932 +1660.173431 +1660.272932 +1660.472865 +1660.674263 +1660.772965 +1660.773431 +1660.773964 +1660.972898 +1665.992140 +1666.001964 +1666.011121 +1666.028437 +1666.040858 +1666.075756 +1666.106626 +1666.107292 +1666.126805 +1666.173425 +1666.202629 +1666.214118 +1666.224341 +1666.311221 +1666.394737 +1666.413185 +1666.437694 +1666.461204 +1666.519046 +1666.553778 +1666.575523 +1666.600631 +1666.624174 +1666.670528 +1666.689908 +1666.700265 +1666.710321 +1666.739725 +1666.782782 +1666.786845 +1666.809722 +1666.857541 +1666.878253 +1666.898100 +1666.926638 +1666.940757 +1666.979652 +1666.989575 +1667.015882 +1667.030401 +1667.049282 +1667.079518 +1667.101297 +1667.123741 +1667.144254 +1667.173458 +1667.222509 +1667.246385 +1667.274856 +1667.305992 +1667.320843 +1667.360437 +1667.385845 +1667.435062 +1667.462269 +1667.495302 +1667.517480 +1667.545052 +1667.558139 +1667.598299 +1667.619311 +1667.698898 +1667.726171 +1667.739458 +1667.760470 +1667.825472 +1667.870860 +1667.871925 +1667.927936 +1667.967896 +1667.998998 +1668.013717 +1668.037027 +1668.053410 +1668.092171 +1668.107756 +1668.146883 +1668.174089 +1668.201129 +1668.238725 +1668.263666 +1668.265498 +1668.306157 +1668.330067 +1668.345285 +1668.371225 +1668.406024 +1668.440423 +1668.470026 +1668.506323 +1668.528235 +1668.550812 +1668.636094 +1668.661002 +1668.688708 +1668.716446 +1668.731365 +1668.731631 +1668.758404 +1668.784478 +1668.799430 +1668.838191 +1668.848914 +1668.892803 +1668.985344 +1669.000229 +1669.028900 +1669.084078 +1669.101994 +1669.102360 +1669.130499 +1669.189273 +1669.246283 +1669.300995 +1669.324105 +1669.355007 +1669.400828 +1669.528267 +1669.546982 +1669.575820 +1669.616912 +1669.649146 +1669.676286 +1669.691237 +1669.720774 +1669.722606 +1669.735993 +1669.802193 +1669.833062 +1669.845150 +1669.876219 +1669.891603 +1669.909585 +1669.936792 +1669.967860 +1669.986375 +1670.000028 +1670.014514 +1670.043951 +1670.059602 +1670.116045 +1670.143318 +1670.177084 +1670.205256 +1670.224137 +1670.253541 +1670.270058 +1670.297530 +1670.314846 +1670.330864 +1670.358136 +1670.388406 +1670.433994 +1670.451243 +1670.466461 +1670.491336 +1670.507254 +1670.537923 +1670.570224 +1670.586008 +1670.598729 +1670.628532 +1670.631496 +1670.642685 +1670.660734 +1670.686807 +1670.722971 +1670.748279 +1670.799361 +1670.813614 +1670.856604 +1670.873354 +1670.890903 +1670.945149 +1670.947480 +1670.959002 +1672.842117 +1672.861963 +1672.875616 +1673.447178 +1673.463595 +1682.972276 +1683.979035 +1685.971907 +1689.780028 +1690.971203 +1690.978429 +1691.071802 +1691.173201 +1691.273267 +1691.273267 +1691.472867 +1691.873300 +1691.874132 +1691.973433 +1691.974032 +1692.073533 +1692.074332 +1692.173333 +1692.273366 +1692.493612 +1692.572566 +1692.573432 +1692.573699 +1692.972466 +1693.072799 +1693.073598 +1693.171867 +1693.173298 +1693.173565 +1693.273598 +1693.372699 +1693.471167 +1693.473498 +1693.574230 +1693.674364 +1693.773864 +1693.872931 +1693.873731 +1693.973864 +1693.974363 +1694.074396 +1694.173730 +1694.174263 +1694.373730 +1694.473697 +1694.573763 +1694.672298 +1694.874063 +1695.073796 +1695.273130 +1695.373729 +1695.474362 +1695.773562 +1695.874062 +1695.874361 +1697.711855 +1700.970560 +1701.020277 +1701.054876 +1701.083847 +1701.149481 +1701.161702 +1701.171725 +1701.231565 +1701.269161 +1701.293137 +1701.341056 +1701.360903 +1701.387043 +1701.416813 +1701.453643 +1701.523540 +1701.551112 +1701.602228 +1701.658072 +1701.684112 +1701.720643 +1701.746350 +1701.755774 +1701.783346 +1701.877053 +1701.913716 +1701.951345 +1701.963000 +1701.991405 +1702.012584 +1702.036093 +1702.067962 +1702.129300 +1702.188974 +1702.227169 +1702.254874 +1702.292137 +1702.331797 +1702.359037 +1702.384345 +1702.448014 +1702.459869 +1702.469593 +1702.483312 +1702.484711 +1702.527268 +1702.529400 +1702.559203 +1702.602660 +1702.664165 +1702.691770 +1702.704258 +1702.705024 +1702.738191 +1702.792570 +1702.800195 +1702.829566 +1702.841687 +1702.863299 +1702.900228 +1702.923039 +1702.946615 +1702.977951 +1703.031664 +1703.070425 +1703.093968 +1703.120575 +1703.150644 +1703.163798 +1703.172922 +1703.187441 +1703.212016 +1703.240455 +1703.306389 +1703.345449 +1703.380714 +1703.417577 +1703.441953 +1703.466828 +1703.507687 +1703.520907 +1703.562832 +1703.616745 +1703.642719 +1703.668693 +1703.710584 +1703.721973 +1703.762998 +1703.805855 +1703.829332 +1703.875486 +1703.935026 +1703.958636 +1703.975652 +1704.007920 +1704.039988 +1704.065362 +1704.093068 +1704.105256 +1704.130430 +1704.177317 +1704.190370 +1704.204823 +1704.232162 +1704.259634 +1704.277849 +1704.307686 +1704.335592 +1704.380846 +1704.408019 +1704.437623 +1704.460766 +1704.485941 +1704.513380 +1704.533194 +1704.559634 +1704.601525 +1704.633127 +1704.635525 +1704.659501 +1704.720473 +1704.759567 +1704.790769 +1704.805588 +1704.833793 +1704.863863 +1704.878315 +1704.895065 +1704.920373 +1704.951742 +1704.976350 +1704.993100 +1705.018075 +1705.049377 +1705.078015 +1705.115411 +1705.146280 +1705.175018 +1705.217575 +1705.234026 +1705.247479 +1705.274951 +1705.315078 +1705.382577 +1705.439753 +1705.482610 +1705.513313 +1705.569556 +1705.596163 +1705.615211 +1705.657302 +1705.695697 +1705.714411 +1705.743316 +1705.774018 +1705.817042 +1705.832793 +1705.845647 +1705.861331 +1705.887671 +1705.949743 +1705.968124 +1707.796261 +1707.801089 +1707.816341 +1707.850340 +1707.884939 +1708.941348 +1708.993562 +1709.036419 +1709.096126 +1710.497590 +1710.502186 +1710.510144 +1710.548539 +1716.978703 +1717.972841 +1717.979601 +1719.972273 +1725.971900 +1725.978627 +1726.173465 +1726.272932 +1726.373698 +1726.573698 +1726.873598 +1726.973598 +1727.073964 +1727.173797 +1727.174130 +1727.374030 +1727.374796 +1727.474163 +1727.673763 +1727.774396 +1727.874329 +1727.973996 +1728.074762 +1728.274396 +1728.373996 +1728.374229 +1728.474728 +1728.475294 +1728.674895 +1728.775028 +1728.873995 +1728.874761 +1728.973496 +1729.074861 +1729.075161 +1729.174095 +1729.274062 +1729.274894 +1729.474028 +1729.573895 +1729.574694 +1729.674028 +1729.674794 +1729.774161 +1729.873795 +1729.874827 +1729.973595 +1730.073628 +1730.075026 +1730.174161 +1730.273295 +1730.373661 +1730.574260 +1730.574626 +1730.674127 +1730.674493 +1730.775359 +1730.775991 +1730.873494 +1730.874559 +1730.973860 +1730.974859 +1735.998630 +1736.063765 +1736.094268 +1736.116312 +1736.167594 +1736.319576 +1736.343219 +1736.369559 +1736.419342 +1736.445816 +1736.481447 +1736.515979 +1736.554540 +1736.589439 +1736.627767 +1736.682679 +1736.728899 +1736.767361 +1736.807720 +1736.809385 +1736.835592 +1736.872522 +1736.906521 +1736.934260 +1736.955273 +1736.991670 +1737.068093 +1737.091936 +1737.128233 +1737.157637 +1737.195932 +1737.224070 +1737.249844 +1737.277184 +1737.286341 +1737.329831 +1737.353441 +1737.400827 +1737.433294 +1737.576684 +1737.590204 +1737.681179 +1737.704356 +1737.730430 +1737.766161 +1737.781612 +1737.821073 +1737.848312 +1737.864629 +1737.885142 +1737.897996 +1737.924303 +1737.952974 +1737.984842 +1738.026767 +1738.063230 +1738.089770 +1738.113580 +1738.115112 +1738.175052 +1738.219307 +1738.234659 +1738.287073 +1738.314679 +1738.345614 +1738.356637 +1738.466293 +1738.556770 +1738.607019 +1738.629930 +1738.664562 +1738.688504 +1738.741085 +1738.768391 +1738.822204 +1738.834025 +1738.858234 +1738.875850 +1738.888604 +1738.899826 +1738.910682 +1738.948677 +1738.981311 +1738.996962 +1739.018274 +1739.053839 +1739.091468 +1739.126299 +1739.168058 +1739.232027 +1739.250608 +1739.280545 +1739.348510 +1739.374318 +1739.403089 +1739.447478 +1739.461064 +1739.501257 +1739.526232 +1739.547778 +1739.590235 +1739.608983 +1739.638320 +1739.663562 +1739.692200 +1739.713745 +1739.743848 +1739.758866 +1739.771953 +1739.797061 +1739.812846 +1739.851573 +1739.852905 +1739.881344 +1739.917274 +1739.920105 +1739.941117 +1739.970721 +1739.984407 +1740.012945 +1740.039186 +1740.070155 +1740.095296 +1740.124467 +1740.149076 +1740.175050 +1740.187903 +1740.248709 +1740.257001 +1740.289968 +1740.313278 +1740.330527 +1740.359665 +1740.396062 +1740.448709 +1740.515342 +1740.542582 +1740.597793 +1740.618939 +1740.650873 +1740.696361 +1740.725732 +1740.726098 +1740.751173 +1740.797260 +1740.822968 +1740.857666 +1740.874616 +1740.903820 +1740.935688 +1740.965758 +1749.372743 +1749.380868 +1749.405910 +1749.522293 +1750.973107 +1752.214365 +1752.223456 +1752.973505 +1754.184626 +1754.200310 +1756.550358 +1759.123915 +1759.169669 +1761.070999 +1761.074130 +1761.173064 +1761.273863 +1761.373930 +1761.374229 +1761.374462 +1761.473596 +1761.573363 +1761.573796 +1761.673796 +1761.874762 +1761.974262 +1762.175028 +1762.273562 +1762.674528 +1762.774195 +1762.774694 +1762.873395 +1762.874228 +1762.975060 +1763.074261 +1763.076658 +1763.274560 +1763.374494 +1763.375060 +1763.474560 +1763.674493 +1763.874560 +1763.973194 +1764.174426 +1764.175225 +1764.374526 +1764.474426 +1764.475059 +1764.674559 +1764.675125 +1764.774426 +1764.873526 +1765.174525 +1765.374691 +1765.475058 +1765.574425 +1765.574991 +1765.674391 +1765.875157 +1765.974458 +1765.975224 +1770.477117 +1770.979181 +1771.013414 +1771.068658 +1771.108519 +1771.132594 +1771.160267 +1771.212748 +1771.246847 +1771.297996 +1771.329231 +1771.360566 +1771.383510 +1771.440486 +1771.482011 +1771.531528 +1771.543816 +1771.574719 +1771.603789 +1771.620406 +1771.673220 +1771.691602 +1771.744216 +1771.817109 +1771.838721 +1771.852274 +1771.873286 +1771.917142 +1771.952574 +1771.970755 +1772.012614 +1772.041385 +1772.071721 +1772.099626 +1772.135757 +1772.164495 +1772.187971 +1772.250575 +1772.261931 +1772.317508 +1772.346313 +1772.361065 +1772.401657 +1772.423302 +1772.468857 +1772.503156 +1772.558201 +1772.597695 +1772.624168 +1772.662796 +1772.729063 +1772.752007 +1772.781311 +1772.819373 +1772.857002 +1772.886073 +1772.923369 +1772.951773 +1772.997028 +1773.039086 +1773.076282 +1773.077481 +1773.122636 +1773.151740 +1773.162063 +1773.244714 +1773.289702 +1773.314144 +1773.339685 +1773.362562 +1773.397860 +1773.437687 +1773.468523 +1773.517807 +1773.547078 +1773.600491 +1773.635223 +1773.678879 +1773.730161 +1773.743281 +1773.771353 +1773.819072 +1773.858599 +1773.898859 +1773.928895 +1773.943114 +1773.993264 +1774.007850 +1774.030893 +1774.073451 +1774.076914 +1774.104952 +1774.119871 +1774.176514 +1774.191033 +1774.232525 +1774.256101 +1774.284007 +1774.284406 +1774.296494 +1774.299158 +1774.311945 +1774.340816 +1774.369521 +1774.382242 +1774.394096 +1774.436987 +1774.480210 +1774.509481 +1774.537686 +1774.562161 +1774.563493 +1774.579477 +1774.587603 +1774.613477 +1774.616540 +1774.649341 +1774.676480 +1774.680010 +1774.694229 +1774.706584 +1774.728395 +1774.742181 +1774.758998 +1774.761196 +1774.787503 +1774.788934 +1774.800057 +1774.801855 +1774.832058 +1774.856434 +1774.879177 +1774.918538 +1774.935221 +1774.952704 +1774.963127 +1774.966590 +1774.994562 +1775.024632 +1775.057066 +1775.084672 +1775.111345 +1775.135854 +1775.164092 +1775.175348 +1775.186270 +1775.224598 +1775.251971 +1775.282607 +1775.311078 +1775.323366 +1775.336520 +1775.350106 +1775.364691 +1775.396160 +1775.398691 +1775.428095 +1775.443246 +1775.469786 +1775.477712 +1775.491132 +1775.508514 +1775.528994 +1775.560063 +1775.587668 +1775.612344 +1775.644545 +1775.667855 +1775.697492 +1775.725897 +1775.755900 +1775.788068 +1775.803852 +1775.830425 +1775.849872 +1775.872516 +1775.924698 +1775.941880 +1775.955600 +1781.285332 +1781.314236 +1781.324992 +1781.335048 +1786.979831 +1789.973435 +1790.973534 +1790.974133 +1792.849156 +1792.860511 +1795.971564 +1795.978957 +1795.980655 +1796.274161 +1796.574394 +1796.674294 +1796.675126 +1796.774294 +1796.874493 +1796.974060 +1797.073661 +1797.174593 +1797.175426 +1797.176225 +1797.374693 +1797.673261 +1797.975358 +1798.074625 +1798.175391 +1798.274758 +1798.474459 +1798.475258 +1798.675158 +1798.974491 +1798.974758 +1799.074658 +1799.174458 +1799.274724 +1799.374591 +1799.473958 +1799.474291 +1799.673958 +1799.874424 +1799.874923 +1800.074657 +1800.174790 +1800.274490 +1800.374656 +1800.875322 +1805.269590 +1805.985906 +1806.004521 +1806.025833 +1806.150375 +1806.199093 +1806.219472 +1806.267724 +1806.305786 +1806.354637 +1806.387737 +1806.481244 +1806.506985 +1806.531227 +1806.551707 +1806.592432 +1806.645413 +1806.675549 +1806.698460 +1806.726398 +1806.881010 +1806.940784 +1806.977713 +1807.016008 +1807.064127 +1807.078646 +1807.108616 +1807.123468 +1807.161563 +1807.178246 +1807.228063 +1807.250074 +1807.273517 +1807.286471 +1807.318772 +1807.372352 +1807.421702 +1807.470420 +1807.519604 +1807.543813 +1807.555169 +1807.597560 +1807.668222 +1807.696627 +1807.733790 +1807.770154 +1807.795262 +1807.796627 +1807.809814 +1807.850973 +1807.875248 +1807.923433 +1807.951605 +1807.962394 +1808.009148 +1808.034955 +1808.036487 +1808.046310 +1808.071852 +1808.107183 +1808.135055 +1808.173050 +1808.210912 +1808.220403 +1808.221235 +1808.233423 +1808.257566 +1808.311945 +1808.341348 +1808.369420 +1808.393896 +1808.403187 +1808.427529 +1808.453703 +1808.493030 +1808.533623 +1808.575348 +1808.601255 +1808.627296 +1808.656466 +1808.682940 +1808.709547 +1808.734055 +1808.747675 +1808.781275 +1808.833756 +1808.848840 +1808.889933 +1808.967821 +1808.996459 +1809.024298 +1809.051271 +1809.076912 +1809.101388 +1809.116106 +1809.157265 +1809.183039 +1809.211544 +1809.216106 +1809.240915 +1809.267055 +1809.295860 +1809.309946 +1809.327661 +1809.330592 +1809.361061 +1809.412276 +1809.437485 +1809.467754 +1809.484904 +1809.511510 +1809.521800 +1809.565956 +1809.566622 +1809.606116 +1809.607714 +1809.634521 +1809.647108 +1809.666489 +1809.676412 +1809.690598 +1809.714108 +1809.716272 +1809.727561 +1809.752969 +1809.781540 +1809.807980 +1809.810012 +1809.837218 +1809.848573 +1809.862526 +1809.879009 +1809.919935 +1809.936985 +1809.966122 +1809.981074 +1809.981673 +1810.025196 +1810.055366 +1810.082938 +1810.097657 +1810.111044 +1810.126228 +1810.133788 +1810.157231 +1810.183005 +1810.198956 +1810.224230 +1810.240214 +1810.255632 +1810.282738 +1810.309412 +1810.312242 +1810.341013 +1810.365988 +1810.385036 +1810.413308 +1810.470317 +1810.494959 +1810.530490 +1810.546208 +1810.576944 +1810.655565 +1810.680840 +1810.683238 +1810.710643 +1810.726161 +1810.770850 +1810.801819 +1810.817403 +1810.846874 +1810.857297 +1810.875012 +1810.891829 +1810.905682 +1810.923031 +1810.950670 +1813.563488 +1819.374970 +1822.972003 +1824.971468 +1830.972128 +1830.979921 +1831.172827 +1831.276091 +1831.372927 +1831.473393 +1831.573660 +1831.574326 +1831.874325 +1831.975757 +1832.374491 +1832.375623 +1832.574624 +1832.675057 +1832.774724 +1832.974624 +1832.975689 +1833.074690 +1833.476854 +1833.674090 +1833.772958 +1834.074523 +1834.075089 +1834.175122 +1834.274722 +1834.473290 +1834.573257 +1834.574656 +1834.774589 +1834.874788 +1835.074722 +1835.174588 +1835.276553 +1835.472091 +1835.875320 +1835.974055 +1836.291604 +1836.305689 +1836.331830 +1837.068959 +1837.102225 +1837.119242 +1838.035658 +1838.081745 +1840.979278 +1840.985705 +1840.992764 +1841.030027 +1841.074449 +1841.107117 +1841.115608 +1841.141882 +1841.166790 +1841.190400 +1841.213776 +1841.268255 +1841.320869 +1841.371885 +1841.451938 +1841.486670 +1841.515208 +1841.556400 +1841.589267 +1841.600090 +1841.656100 +1841.658331 +1841.672950 +1841.734855 +1841.761828 +1841.797192 +1841.830592 +1841.883539 +1841.923866 +1841.945710 +1842.001654 +1842.042414 +1842.078411 +1842.101921 +1842.143313 +1842.236386 +1842.263859 +1842.292164 +1842.403086 +1842.433289 +1842.497891 +1842.509912 +1842.535087 +1842.556932 +1842.586169 +1842.644744 +1842.674348 +1842.711710 +1842.732623 +1842.746775 +1842.803685 +1842.845643 +1842.873815 +1842.970884 +1843.023032 +1843.063392 +1843.092363 +1843.139049 +1843.178277 +1843.204051 +1843.217637 +1843.255566 +1843.288833 +1843.290098 +1843.313508 +1843.341413 +1843.370584 +1843.425762 +1843.464091 +1843.488733 +1843.514806 +1843.519468 +1843.555066 +1843.596658 +1843.609612 +1843.637084 +1843.652768 +1843.752635 +1843.769551 +1843.788133 +1843.830857 +1843.863691 +1843.893161 +1843.969451 +1844.036218 +1844.093161 +1844.122798 +1844.192428 +1844.230324 +1844.248938 +1844.291163 +1844.307313 +1844.332788 +1844.367353 +1844.408112 +1844.440780 +1844.471416 +1844.516903 +1844.541912 +1844.604949 +1844.632987 +1844.654332 +1844.686134 +1844.716870 +1844.733686 +1844.758595 +1844.805947 +1844.829224 +1844.854865 +1844.913506 +1844.944609 +1844.980373 +1845.016936 +1845.031388 +1845.084668 +1845.117535 +1845.133653 +1845.160459 +1845.177109 +1845.285567 +1845.366087 +1845.368384 +1845.409477 +1845.450069 +1845.515104 +1845.541245 +1845.579540 +1845.621997 +1845.667885 +1845.782969 +1845.826259 +1845.848870 +1845.902150 +1845.930422 +1845.956229 +1854.531978 +1859.973798 +1866.072060 +1866.172626 +1866.373458 +1866.374357 +1866.374824 +1866.573824 +1866.574624 +1866.673791 +1866.773824 +1866.973524 +1867.073158 +1867.074024 +1867.074290 +1867.174223 +1867.273890 +1867.673857 +1867.675155 +1867.873990 +1867.974256 +1868.173823 +1868.174056 +1868.273689 +1868.273956 +1868.474255 +1868.574955 +1868.675088 +1868.774388 +1868.774954 +1868.873889 +1868.874388 +1868.974255 +1869.173622 +1869.273955 +1869.274554 +1869.374687 +1869.473821 +1869.474321 +1869.574188 +1869.773655 +1870.074420 +1870.075120 +1870.174420 +1870.274353 +1870.374287 +1870.474387 +1870.475152 +1870.774286 +1870.974120 +1875.972516 +1875.986336 +1875.994594 +1876.035620 +1876.044411 +1876.095726 +1876.108214 +1876.157298 +1876.218770 +1876.253102 +1876.300987 +1876.337518 +1876.374580 +1876.395892 +1876.418603 +1876.445809 +1876.506382 +1876.560661 +1876.582239 +1876.595026 +1876.644144 +1876.666555 +1876.690697 +1876.712842 +1876.774680 +1876.775746 +1876.877810 +1876.891430 +1876.932322 +1876.970384 +1877.046907 +1877.074979 +1877.122099 +1877.220167 +1877.242811 +1877.284037 +1877.311443 +1877.337583 +1877.410210 +1877.438282 +1877.461959 +1877.484070 +1877.551003 +1877.588332 +1877.649438 +1877.689198 +1877.730556 +1877.773147 +1877.789431 +1877.828625 +1877.857996 +1877.871782 +1877.893460 +1877.931555 +1877.955331 +1877.982271 +1878.011742 +1878.057862 +1878.099520 +1878.170416 +1878.238082 +1878.260892 +1878.285834 +1878.288098 +1878.312807 +1878.332920 +1878.356796 +1878.387266 +1878.452833 +1878.486400 +1878.512241 +1878.560659 +1878.588664 +1878.631055 +1878.694858 +1878.738880 +1878.765720 +1878.797988 +1878.813206 +1878.872280 +1878.902550 +1878.915937 +1878.958128 +1878.989030 +1879.016802 +1879.060259 +1879.089430 +1879.114205 +1879.132253 +1879.143642 +1879.145473 +1879.159626 +1879.233485 +1879.259593 +1879.288897 +1879.350868 +1879.382037 +1879.412706 +1879.444674 +1879.485433 +1879.516069 +1879.541677 +1879.573312 +1879.607511 +1879.621697 +1879.650701 +1879.664354 +1879.689429 +1879.714504 +1879.729389 +1879.731620 +1879.760125 +1879.802582 +1879.819432 +1879.850734 +1879.876209 +1879.913005 +1879.976042 +1880.005979 +1880.020631 +1880.065552 +1880.094557 +1880.154963 +1880.176441 +1880.201816 +1880.230920 +1880.270947 +1880.303548 +1880.319598 +1880.347737 +1880.373011 +1880.404347 +1880.453897 +1880.484200 +1880.503980 +1880.529888 +1880.588596 +1880.620297 +1880.649734 +1880.665852 +1880.694123 +1880.704546 +1880.722528 +1880.737047 +1880.755096 +1880.770713 +1880.812338 +1880.846537 +1880.877273 +1880.907010 +1880.923194 +1880.940343 +1880.955795 +1891.972434 +1891.974099 +1892.979692 +1895.972496 +1895.972763 +1901.072824 +1901.373523 +1901.374089 +1901.473290 +1901.773756 +1902.073789 +1902.274788 +1902.375220 +1902.674987 +1902.774121 +1902.873622 +1902.874021 +1902.975020 +1903.274087 +1903.274587 +1903.373721 +1903.373987 +1903.473987 +1903.474620 +1903.574287 +1903.574786 +1903.673920 +1903.974153 +1904.175185 +1904.373953 +1904.573986 +1904.575385 +1904.673886 +1904.674985 +1905.074052 +1905.374019 +1905.473952 +1905.574085 +1911.001319 +1911.019334 +1911.020134 +1911.029324 +1911.038149 +1911.038915 +1911.052368 +1911.061792 +1911.062491 +1911.109244 +1911.132921 +1911.143144 +1911.152434 +1911.186500 +1911.226560 +1911.238781 +1911.251036 +1911.282338 +1911.308412 +1911.319767 +1911.352101 +1911.383503 +1911.384436 +1911.385867 +1911.397423 +1911.407546 +1911.426926 +1911.433320 +1911.436550 +1911.448205 +1911.457562 +1911.471715 +1911.480739 +1911.482171 +1911.483670 +1911.492594 +1911.513073 +1911.546473 +1911.584269 +1911.593227 +1911.598788 +1911.599554 +1911.608678 +1911.619167 +1911.635717 +1911.651868 +1911.686966 +1911.687266 +1911.740179 +1911.769916 +1911.807346 +1911.828325 +1911.853366 +1911.854132 +1911.890129 +1911.905514 +1911.940046 +1911.977076 +1911.977708 +1911.991927 +1912.014738 +1912.042810 +1912.057029 +1912.097955 +1912.161857 +1912.194058 +1912.207911 +1912.236383 +1912.272080 +1912.298953 +1912.321797 +1912.390662 +1912.413006 +1912.426426 +1912.448670 +1912.483702 +1912.497655 +1912.538281 +1912.564454 +1912.578640 +1912.603282 +1912.630921 +1912.662523 +1912.741877 +1912.764055 +1912.828756 +1912.866019 +1912.908044 +1912.937980 +1912.963788 +1912.986132 +1913.038380 +1913.066518 +1913.094957 +1913.122662 +1913.177840 +1913.202249 +1913.245140 +1913.271280 +1913.326358 +1913.339745 +1913.367451 +1913.394690 +1913.433884 +1913.464753 +1913.517234 +1913.544207 +1913.559225 +1913.585699 +1913.612971 +1913.654696 +1913.698253 +1913.711340 +1913.734250 +1913.784300 +1913.850434 +1913.865718 +1913.892725 +1913.966418 +1913.980670 +1913.993324 +1914.009075 +1914.036481 +1914.065052 +1914.112039 +1914.138013 +1914.153664 +1914.208875 +1914.225725 +1914.255129 +1914.269181 +1914.285099 +1914.315268 +1914.341276 +1914.384999 +1914.414136 +1914.430220 +1914.458192 +1914.474975 +1914.505012 +1914.516933 +1914.519098 +1914.533483 +1914.561722 +1914.576507 +1914.601149 +1914.617632 +1914.636247 +1914.663986 +1914.680636 +1914.739577 +1914.742408 +1914.756027 +1914.757293 +1914.770912 +1914.843107 +1914.879870 +1914.909873 +1914.924825 +1914.951065 +1914.968748 +1914.997419 +1915.012737 +1915.038711 +1915.056260 +1915.103113 +1915.128454 +1915.129620 +1915.146237 +1915.161721 +1915.221894 +1915.264785 +1915.280802 +1915.297618 +1915.328687 +1915.359057 +1915.388827 +1915.417831 +1915.442873 +1915.492856 +1915.521128 +1915.547135 +1915.577605 +1915.592057 +1915.605244 +1915.621594 +1915.652497 +1915.667815 +1915.683432 +1915.727388 +1915.742606 +1915.757658 +1915.769213 +1915.799150 +1915.824191 +1915.840608 +1915.869846 +1915.916799 +1925.972932 +1926.979292 +1927.971931 +1928.971331 +1929.978823 +1930.978921 +1935.971291 +1935.978417 +1936.473888 +1936.574087 +1936.774254 +1936.874154 +1936.874453 +1936.973554 +1936.974187 +1937.073987 +1937.273654 +1937.374852 +1937.573520 +1937.673687 +1937.674219 +1937.674786 +1937.774053 +1937.874719 +1937.974352 +1938.073320 +1938.073753 +1938.109450 +1938.272720 +1938.333027 +1938.368358 +1938.370889 +1938.371422 +1938.371821 +1938.473353 +1938.573586 +1938.673286 +1938.773253 +1939.046146 +1939.055970 +1939.137288 +1939.152406 +1939.173519 +1939.273618 +1939.369389 +1939.371687 +1939.473552 +1939.475150 +1939.573651 +1939.574351 +1939.673485 +1939.873485 +1940.073618 +1940.074350 +1940.074850 +1940.173717 +1940.373817 +1940.573850 +1940.674683 +1940.872451 +1940.873683 +1943.349538 +1943.938382 +1945.991660 +1946.006246 +1946.014171 +1946.014438 +1946.015170 +1946.067385 +1946.070115 +1946.070315 +1946.092792 +1946.114604 +1946.126425 +1946.134717 +1946.146239 +1946.167584 +1946.170615 +1946.191727 +1946.221031 +1946.237081 +1946.261557 +1946.285966 +1946.307944 +1946.331320 +1946.346805 +1946.369149 +1946.385733 +1946.433052 +1946.458227 +1946.498253 +1946.555130 +1946.583301 +1946.596388 +1946.618366 +1946.632852 +1946.648603 +1946.671813 +1946.675309 +1946.723894 +1946.746938 +1946.794790 +1946.820231 +1946.846072 +1946.876441 +1946.877207 +1946.898985 +1946.927157 +1946.943274 +1946.984333 +1947.012605 +1947.048103 +1947.058126 +1947.080570 +1947.133484 +1947.174277 +1947.186231 +1947.210507 +1947.285465 +1947.331552 +1947.365918 +1947.394556 +1947.427856 +1947.458092 +1947.484533 +1947.533217 +1947.548369 +1947.561522 +1947.586930 +1947.589228 +1947.642341 +1947.680203 +1947.731719 +1947.765285 +1947.779904 +1947.802981 +1947.838578 +1947.864119 +1947.892025 +1947.944073 +1947.958092 +1947.994389 +1948.022594 +1948.063087 +1948.074775 +1948.082534 +1948.097353 +1948.122061 +1948.123826 +1948.187196 +1948.240809 +1948.289061 +1948.304445 +1948.324325 +1948.352830 +1948.365451 +1948.403812 +1948.446436 +1948.479570 +1948.492091 +1948.521694 +1948.544605 +1948.566949 +1948.593489 +1948.660322 +1948.714868 +1948.725091 +1948.766516 +1948.789560 +1948.821394 +1948.861887 +1948.883765 +1948.915567 +1948.939576 +1948.963286 +1948.989326 +1949.012503 +1949.039310 +1949.100748 +1949.127322 +1949.164318 +1949.191524 +1949.256559 +1949.286995 +1949.327355 +1949.344671 +1949.400781 +1949.402879 +1949.412836 +1949.472976 +1949.517198 +1949.544238 +1949.600748 +1949.629019 +1949.673508 +1949.702346 +1949.718064 +1949.775439 +1949.776172 +1949.791823 +1949.901247 +1949.935979 +1949.960021 +1949.978236 +1950.006042 +1950.020761 +1950.050664 +1950.062119 +1950.090124 +1950.147434 +1950.179335 +1950.196818 +1950.227221 +1950.272941 +1950.330917 +1950.346568 +1950.397184 +1950.416398 +1950.432282 +1950.464350 +1950.491589 +1950.505176 +1950.534846 +1950.547567 +1950.572109 +1950.588725 +1950.613800 +1950.627919 +1950.638709 +1950.655692 +1950.701313 +1950.729718 +1950.747766 +1950.761319 +1950.776138 +1950.777869 +1950.831549 +1950.844969 +1950.874006 +1950.888425 +1950.916564 +1950.932315 +1950.955825 +1957.787419 +1957.826614 +1961.972064 +1962.972296 +1964.878155 +1964.970895 +1964.978022 +1964.978355 +1970.977383 +1971.072355 +1971.172454 +1971.473686 +1971.772920 +1971.873120 +1971.973419 +1972.673419 +1972.973119 +1973.173252 +1973.174217 +1973.273052 +1973.373185 +1973.373418 +1973.473318 +1974.073151 +1974.273284 +1974.473084 +1974.573517 +1974.672451 +1974.774082 +1974.873483 +1974.972484 +1975.173583 +1975.273682 +1975.373682 +1975.473482 +1975.573216 +1975.573582 +1975.772983 +1975.973016 +1980.984033 +1980.984865 +1981.000150 +1981.020463 +1981.029554 +1981.037213 +1981.048668 +1981.083234 +1981.084632 +1981.095521 +1981.126224 +1981.143673 +1981.145438 +1981.191625 +1981.217766 +1981.219830 +1981.306444 +1981.319031 +1981.330852 +1981.340476 +1981.355827 +1981.356893 +1981.395221 +1981.435148 +1981.446703 +1981.447935 +1981.449367 +1981.497652 +1981.523759 +1981.534948 +1981.557193 +1981.595421 +1981.618931 +1981.664818 +1981.714868 +1981.733583 +1981.765251 +1981.788628 +1981.883699 +1981.905511 +1981.917066 +1981.955327 +1982.003279 +1982.042840 +1982.086330 +1982.096120 +1982.134448 +1982.160455 +1982.190292 +1982.211138 +1982.241141 +1982.267348 +1982.291691 +1982.317265 +1982.349599 +1982.389659 +1982.415900 +1982.451431 +1982.475873 +1982.516299 +1982.553595 +1982.583232 +1982.628121 +1982.653262 +1982.690891 +1982.711537 +1982.744770 +1982.773908 +1982.796552 +1982.822260 +1982.844537 +1982.872942 +1982.901347 +1982.949399 +1982.992090 +1983.015400 +1983.047368 +1983.081134 +1983.102612 +1983.172576 +1983.198150 +1983.208806 +1983.222859 +1983.271377 +1983.296951 +1983.337411 +1983.370644 +1983.400681 +1983.427987 +1983.472742 +1983.503378 +1983.535512 +1983.550364 +1983.571476 +1983.596418 +1983.626321 +1983.648965 +1983.675672 +1983.705209 +1983.719561 +1983.745069 +1983.772042 +1983.789758 +1983.815698 +1983.845469 +1983.860953 +1983.887959 +1983.954859 +1983.981466 +1984.008406 +1984.026121 +1984.097749 +1984.134979 +1984.183430 +1984.198682 +1984.249897 +1984.335378 +1984.357856 +1984.373274 +1984.433880 +1984.464149 +1984.489424 +1984.507339 +1984.535078 +1984.573473 +1984.602544 +1984.634379 +1984.649630 +1984.660386 +1984.672940 +1984.716164 +1984.742204 +1984.770609 +1984.798615 +1984.821825 +1984.845867 +1984.905175 +1984.945534 +1984.979300 +1984.998015 +1985.025288 +1985.036077 +1985.074305 +1985.099480 +1985.101012 +1985.126653 +1985.155357 +1985.183696 +1985.199746 +1985.226553 +1985.255058 +1985.271142 +1985.284162 +1985.301145 +1985.326986 +1985.374172 +1985.421757 +1985.462883 +1985.489390 +1985.542303 +1985.569276 +1985.645833 +1985.660152 +1985.674937 +1985.711001 +1985.725054 +1985.737075 +1985.790755 +1985.805540 +1985.820425 +1985.862716 +1985.864681 +1985.890422 +1985.912167 +1985.926552 +1985.955856 +1991.627779 +1995.978657 +1996.966268 +1996.971663 +1997.677689 +1998.353779 +1999.972192 +1999.973092 +2000.446784 +2000.455409 +2000.480284 +2000.526904 +2000.971925 +2001.650912 +2003.956970 +2005.574651 +2005.971021 +2005.972120 +2005.979046 +2006.379612 +2006.572985 +2007.272884 +2007.274683 +2007.373783 +2007.374816 +2007.572884 +2007.573317 +2007.774183 +2007.874183 +2007.973849 +2008.274249 +2008.276380 +2008.475081 +2008.674015 +2008.952437 +2008.973449 +2009.073982 +2009.274880 +2009.373915 +2009.474414 +2009.574913 +2009.874347 +2009.974047 +2009.974414 +2009.975113 +2010.074780 +2010.173980 +2010.175512 +2010.176411 +2010.274213 +2010.274313 +2010.275146 +2010.474979 +2010.574446 +2010.772648 +2010.874446 +2015.972743 +2015.985463 +2016.002479 +2016.045137 +2016.046069 +2016.080801 +2016.104877 +2016.105110 +2016.115566 +2016.128786 +2016.151797 +2016.161254 +2016.172742 +2016.174208 +2016.195753 +2016.227721 +2016.238743 +2016.254261 +2016.268713 +2016.279003 +2016.290358 +2016.291324 +2016.299449 +2016.340208 +2016.372176 +2016.385796 +2016.386761 +2016.423791 +2016.474907 +2016.498616 +2016.537910 +2016.560121 +2016.600880 +2016.635646 +2016.707440 +2016.776205 +2016.813434 +2016.820827 +2016.844037 +2016.896951 +2016.946102 +2016.981166 +2017.007207 +2017.048033 +2017.073674 +2017.097250 +2017.152395 +2017.162685 +2017.215732 +2017.238709 +2017.265415 +2017.303977 +2017.331582 +2017.335412 +2017.357923 +2017.403910 +2017.442172 +2017.464150 +2017.477536 +2017.541339 +2017.575571 +2017.597683 +2017.625188 +2017.661452 +2017.688925 +2017.741405 +2017.794486 +2017.820826 +2017.861319 +2017.885195 +2017.970143 +2018.012867 +2018.038308 +2018.064216 +2018.078535 +2018.099114 +2018.152694 +2018.181931 +2018.222524 +2018.250862 +2018.281765 +2018.302477 +2018.327852 +2018.354492 +2018.389024 +2018.418261 +2018.449297 +2018.462450 +2018.489690 +2018.536676 +2018.570409 +2018.612467 +2018.651894 +2018.666146 +2018.730515 +2018.762350 +2018.788357 +2018.814331 +2018.843569 +2018.878967 +2018.916263 +2018.960752 +2018.973339 +2019.013299 +2019.039140 +2019.094618 +2019.118194 +2019.132679 +2019.147065 +2019.172340 +2019.238873 +2019.253059 +2019.285293 +2019.309136 +2019.323488 +2019.351294 +2019.362949 +2019.419725 +2019.446865 +2019.471540 +2019.473605 +2019.505706 +2019.533245 +2019.566312 +2019.582396 +2019.623888 +2019.669675 +2019.700045 +2019.727950 +2019.772572 +2019.795982 +2019.831447 +2019.871773 +2019.873172 +2019.927684 +2019.943035 +2019.956488 +2019.979066 +2020.014164 +2020.052725 +2020.081097 +2020.168742 +2020.182429 +2020.230281 +2020.246931 +2020.289255 +2020.324353 +2020.395316 +2020.449628 +2020.478932 +2020.503840 +2020.506471 +2020.536075 +2020.547996 +2020.596781 +2020.614330 +2020.641436 +2020.673004 +2020.703507 +2020.716061 +2020.745232 +2020.776534 +2020.804040 +2020.859251 +2020.861349 +2020.870307 +2020.925085 +2020.935042 +2020.948096 +2024.835571 +2024.844096 +2030.973593 +2031.973692 +2031.974059 +2033.973624 +2035.974121 +2036.457537 +2040.979810 +2041.072484 +2041.073683 +2041.179577 +2041.274249 +2041.279977 +2041.374382 +2041.573949 +2041.674082 +2041.774915 +2041.775680 +2042.375080 +2042.473615 +2042.474980 +2042.575114 +2042.575613 +2042.974880 +2042.975113 +2043.075346 +2043.175180 +2043.274513 +2043.275113 +2043.475812 +2043.575046 +2043.874446 +2044.075279 +2044.075478 +2044.175212 +2044.175811 +2044.375178 +2044.475278 +2044.575811 +2044.675178 +2044.774345 +2044.775311 +2045.075311 +2045.075677 +2045.274645 +2045.380838 +2045.474911 +2045.575910 +2045.674777 +2045.774744 +2045.874511 +2045.874977 +2045.975310 +2049.964950 +2050.973240 +2050.981432 +2050.986827 +2050.987193 +2051.003044 +2051.010670 +2051.011502 +2051.034945 +2051.054859 +2051.056324 +2051.069710 +2051.071942 +2051.081898 +2051.091822 +2051.118761 +2051.144003 +2051.144702 +2051.176970 +2051.203310 +2051.216031 +2051.236111 +2051.246334 +2051.269810 +2051.270410 +2051.282364 +2051.283896 +2051.303776 +2051.330250 +2051.342704 +2051.368345 +2051.381998 +2051.393953 +2051.405608 +2051.473406 +2051.497815 +2051.509570 +2051.545434 +2051.589124 +2051.628218 +2051.662883 +2051.696450 +2051.757888 +2051.805041 +2051.869144 +2051.892487 +2051.914631 +2051.992254 +2052.017695 +2052.028451 +2052.065447 +2052.088424 +2052.109403 +2052.124688 +2052.134778 +2052.164148 +2052.177601 +2052.213599 +2052.240372 +2052.275936 +2052.342203 +2052.353192 +2052.401744 +2052.447864 +2052.469876 +2052.518094 +2052.563415 +2052.592320 +2052.614830 +2052.703408 +2052.732313 +2052.772639 +2052.789955 +2052.822922 +2052.846066 +2052.950195 +2052.978067 +2053.005373 +2053.047464 +2053.087058 +2053.159951 +2053.173604 +2053.193917 +2053.224287 +2053.225286 +2053.252925 +2053.294450 +2053.365546 +2053.400511 +2053.433744 +2053.455922 +2053.482795 +2053.509701 +2053.542069 +2053.552292 +2053.576168 +2053.657387 +2053.686125 +2053.697447 +2053.709468 +2053.751559 +2053.779964 +2053.792885 +2053.817360 +2053.850127 +2053.862548 +2053.880097 +2053.905239 +2053.928915 +2053.954290 +2053.986790 +2054.015395 +2054.042168 +2054.066910 +2054.105905 +2054.137173 +2054.161549 +2054.190886 +2054.230413 +2054.287922 +2054.330813 +2054.345332 +2054.399910 +2054.427050 +2054.457286 +2054.482861 +2054.493217 +2054.524952 +2054.557186 +2054.598811 +2054.628848 +2054.645365 +2054.669074 +2054.695714 +2054.725584 +2054.750992 +2054.768075 +2054.801775 +2054.828548 +2054.861515 +2054.873203 +2054.911165 +2054.941302 +2054.965011 +2055.005271 +2055.018291 +2055.049627 +2055.073736 +2055.096613 +2055.111165 +2055.120422 +2055.135740 +2055.147895 +2055.185824 +2055.212197 +2055.266010 +2055.306669 +2055.341668 +2055.356153 +2055.387888 +2055.441201 +2055.453889 +2055.468307 +2055.496379 +2055.525617 +2055.527815 +2055.540202 +2055.559982 +2055.576299 +2055.603006 +2055.614161 +2055.644764 +2055.670105 +2055.693515 +2055.719323 +2055.747694 +2055.790219 +2055.848127 +2055.862679 +2055.882393 +2055.904537 +2055.916459 +2055.917758 +2055.928380 +2055.943532 +2064.325808 +2065.007792 +2065.626239 +2065.634764 +2065.851880 +2065.923775 +2065.973958 +2066.164900 +2066.197101 +2066.243288 +2066.305992 +2066.317181 +2066.974090 +2067.151346 +2067.205325 +2067.225072 +2067.343587 +2067.363234 +2067.421276 +2068.972523 +2068.972756 +2075.971417 +2076.172915 +2076.274913 +2076.474780 +2076.575546 +2076.575912 +2076.681207 +2076.875113 +2077.275678 +2077.460460 +2077.573180 +2077.873080 +2077.975178 +2077.975944 +2078.173480 +2078.174978 +2078.275111 +2078.374678 +2078.475078 +2078.675111 +2078.675311 +2079.075676 +2079.275876 +2079.376309 +2079.675576 +2079.875143 +2080.075176 +2080.375475 +2080.574909 +2080.675242 +2080.775941 +2083.561519 +2085.987158 +2085.995217 +2085.995383 +2086.012266 +2086.031514 +2086.037308 +2086.045899 +2086.068643 +2086.068976 +2086.080531 +2086.080831 +2086.113565 +2086.115863 +2086.128716 +2086.152126 +2086.175536 +2086.177368 +2086.200178 +2086.212166 +2086.212399 +2086.215263 +2086.239439 +2086.250195 +2086.285160 +2086.308936 +2086.310368 +2086.384827 +2086.410934 +2086.498413 +2086.537640 +2086.549029 +2086.593451 +2086.602076 +2086.611367 +2086.638673 +2086.690820 +2086.721556 +2086.744300 +2086.756721 +2086.794150 +2086.818925 +2086.841336 +2086.877400 +2086.894616 +2086.948363 +2086.963114 +2086.977866 +2087.021956 +2087.066644 +2087.118792 +2087.157919 +2087.178699 +2087.193217 +2087.216561 +2087.279698 +2087.347297 +2087.370174 +2087.409268 +2087.469607 +2087.525085 +2087.570540 +2087.636607 +2087.652624 +2087.666111 +2087.685691 +2087.732578 +2087.763880 +2087.780530 +2087.815728 +2087.858718 +2087.873570 +2087.903107 +2087.918691 +2087.959950 +2087.998611 +2088.040769 +2088.071239 +2088.107369 +2088.148095 +2088.174036 +2088.204305 +2088.229813 +2088.250692 +2088.288521 +2088.322054 +2088.358418 +2088.408934 +2088.455387 +2088.484958 +2088.509633 +2088.537339 +2088.579796 +2088.593216 +2088.615028 +2088.625617 +2088.655354 +2088.682260 +2088.709633 +2088.734441 +2088.775667 +2088.802373 +2088.829013 +2088.865677 +2088.913862 +2088.931644 +2088.966742 +2088.976699 +2089.001174 +2089.022420 +2089.050092 +2089.087288 +2089.129346 +2089.173235 +2089.200508 +2089.215926 +2089.254154 +2089.267408 +2089.309066 +2089.338637 +2089.362946 +2089.377265 +2089.467874 +2089.481960 +2089.535806 +2089.545862 +2089.559316 +2089.594414 +2089.623751 +2089.676931 +2089.720687 +2089.747993 +2089.797710 +2089.819755 +2089.848526 +2089.877630 +2089.909432 +2089.933741 +2089.963578 +2089.977264 +2090.023351 +2090.051823 +2090.095213 +2090.121686 +2090.149858 +2090.162678 +2090.186055 +2090.190251 +2090.215359 +2090.243364 +2090.283291 +2090.317224 +2090.343164 +2090.384723 +2090.421519 +2090.434273 +2090.463943 +2090.493081 +2090.510097 +2090.550424 +2090.584323 +2090.631176 +2090.662445 +2090.698409 +2090.699841 +2090.738635 +2090.771169 +2090.780094 +2090.794945 +2090.829078 +2090.861545 +2090.874133 +2090.920486 +2090.923150 +2090.936437 +2090.949091 +2090.953120 +2091.564875 +2100.527670 +2101.910485 +2101.921375 +2102.979515 +2103.974086 +2103.974320 +2107.975881 +2109.281474 +2111.274246 +2111.374412 +2111.474678 +2111.475744 +2111.576843 +2111.875377 +2111.974878 +2112.074811 +2112.075643 +2112.175144 +2112.275077 +2112.375077 +2112.375676 +2112.673445 +2112.674211 +2112.875643 +2112.974610 +2112.975110 +2112.975976 +2113.075110 +2113.175209 +2113.175709 +2113.176109 +2113.274843 +2113.275909 +2113.375243 +2113.376142 +2113.675176 +2113.775209 +2113.776408 +2113.874576 +2113.875175 +2114.075841 +2114.175075 +2114.275108 +2114.275608 +2114.374909 +2114.375541 +2114.474975 +2114.575674 +2114.674442 +2114.675108 +2114.974775 +2115.074841 +2115.173742 +2115.174808 +2115.275807 +2115.374608 +2115.575041 +2115.575707 +2115.575707 +2115.675706 +2115.774741 +2115.775240 +2115.875007 +2119.786525 +2119.819925 +2120.972771 +2120.987123 +2120.987656 +2120.995348 +2121.015228 +2121.015828 +2121.034243 +2121.071106 +2121.080197 +2121.083393 +2121.115428 +2121.127749 +2121.147429 +2121.179863 +2121.181895 +2121.182994 +2121.202041 +2121.215128 +2121.262880 +2121.301875 +2121.348694 +2121.350859 +2121.410166 +2121.491851 +2121.531212 +2121.545964 +2121.570905 +2121.598411 +2121.600076 +2121.640502 +2121.682693 +2121.698145 +2121.706636 +2121.753156 +2121.776466 +2121.826083 +2121.849227 +2121.881228 +2121.910699 +2121.935940 +2121.982027 +2121.996246 +2122.025417 +2122.080628 +2122.108134 +2122.164644 +2122.203938 +2122.250525 +2122.276333 +2122.330312 +2122.386489 +2122.437571 +2122.508367 +2122.557118 +2122.581094 +2122.620954 +2122.659915 +2122.688320 +2122.738437 +2122.771970 +2122.833109 +2122.865809 +2122.876399 +2122.909732 +2122.950125 +2122.987188 +2123.030045 +2123.049292 +2123.130811 +2123.144863 +2123.183291 +2123.207700 +2123.263345 +2123.291716 +2123.308233 +2123.322985 +2123.335672 +2123.378130 +2123.398076 +2123.440534 +2123.468406 +2123.509898 +2123.546728 +2123.575998 +2123.616391 +2123.698509 +2123.722618 +2123.748226 +2123.780827 +2123.841632 +2123.867606 +2123.897510 +2123.914859 +2123.951289 +2123.994679 +2124.027580 +2124.051489 +2124.069904 +2124.083823 +2124.120553 +2124.132308 +2124.172135 +2124.190949 +2124.200606 +2124.241532 +2124.263943 +2124.308998 +2124.365108 +2124.422617 +2124.453253 +2124.488218 +2124.527912 +2124.585121 +2124.586021 +2124.615458 +2124.616324 +2124.647193 +2124.675997 +2124.702637 +2124.716756 +2124.741698 +2124.810696 +2124.837802 +2124.870469 +2124.893846 +2124.926047 +2124.957282 +2125.013792 +2125.027912 +2125.051754 +2125.075864 +2125.091281 +2125.113393 +2125.135304 +2125.177329 +2125.193413 +2125.224881 +2125.253652 +2125.313293 +2125.341797 +2125.371634 +2125.395877 +2125.413892 +2125.455317 +2125.487418 +2125.523615 +2125.537568 +2125.597841 +2125.629076 +2125.631208 +2125.660312 +2125.700105 +2125.741864 +2125.762942 +2125.793945 +2125.820984 +2125.840465 +2125.897541 +2125.927411 +2125.951920 +2135.973055 +2138.972453 +2138.980312 +2144.842977 +2145.907045 +2146.073345 +2146.172746 +2146.472978 +2146.473311 +2146.473445 +2146.573145 +2146.574876 +2146.974776 +2147.074976 +2147.173810 +2147.373843 +2147.472844 +2147.473410 +2147.473743 +2147.572977 +2147.673876 +2147.873277 +2147.874908 +2147.973543 +2148.272510 +2148.274109 +2148.473842 +2148.573842 +2148.574608 +2148.674075 +2148.774008 +2148.874008 +2148.973442 +2149.073908 +2149.272543 +2149.373875 +2149.473042 +2149.573541 +2149.573841 +2149.873907 +2149.973741 +2150.073774 +2150.173840 +2150.174540 +2150.273907 +2150.274340 +2150.280267 +2150.373674 +2150.476005 +2150.573740 +2150.673807 +2150.674206 +2150.773540 +2150.873740 +2150.873940 +2155.992616 +2156.009599 +2156.020255 +2156.021454 +2156.031477 +2156.042066 +2156.043631 +2156.064844 +2156.098576 +2156.099143 +2156.131943 +2156.132642 +2156.142166 +2156.145196 +2156.167008 +2156.196845 +2156.242099 +2156.275732 +2156.299076 +2156.360348 +2156.412729 +2156.446861 +2156.485423 +2156.487487 +2156.505835 +2156.560181 +2156.601073 +2156.615992 +2156.672668 +2156.704936 +2156.737737 +2156.791816 +2156.839701 +2156.842199 +2156.871769 +2156.910664 +2156.981626 +2157.006734 +2157.036471 +2157.069338 +2157.109431 +2157.166741 +2157.202538 +2157.205069 +2157.229711 +2157.254553 +2157.290683 +2157.318322 +2157.347493 +2157.416058 +2157.442564 +2157.466674 +2157.534539 +2157.602971 +2157.617722 +2157.658249 +2157.683856 +2157.687719 +2157.722751 +2157.804369 +2157.869537 +2157.899773 +2157.929377 +2157.986953 +2158.059447 +2158.088818 +2158.126546 +2158.178395 +2158.202071 +2158.258048 +2158.275164 +2158.300572 +2158.325514 +2158.364841 +2158.383789 +2158.471002 +2158.491148 +2158.578994 +2158.601971 +2158.618088 +2158.632373 +2158.644561 +2158.646359 +2158.678028 +2158.703502 +2158.743895 +2158.795344 +2158.796542 +2158.822417 +2158.861211 +2158.889416 +2158.910662 +2158.934804 +2158.969336 +2159.002336 +2159.018820 +2159.045194 +2159.086852 +2159.110262 +2159.191547 +2159.218220 +2159.245027 +2159.283322 +2159.299839 +2159.323748 +2159.351121 +2159.379359 +2159.402136 +2159.417920 +2159.440964 +2159.466139 +2159.496675 +2159.517687 +2159.519119 +2159.547924 +2159.575463 +2159.599838 +2159.630674 +2159.659079 +2159.700837 +2159.718952 +2159.733405 +2159.747291 +2159.773931 +2159.806165 +2159.833005 +2159.847424 +2159.874130 +2159.891113 +2159.906065 +2159.918186 +2159.940664 +2159.959378 +2159.985885 +2160.018419 +2160.019418 +2160.046025 +2160.072965 +2160.092312 +2160.121183 +2160.146191 +2160.175296 +2160.206764 +2160.238599 +2160.265339 +2160.306065 +2160.343327 +2160.367104 +2160.380790 +2160.418252 +2160.449854 +2160.465772 +2160.493777 +2160.518752 +2160.546457 +2160.559944 +2160.577560 +2160.603234 +2160.650487 +2160.679225 +2160.697007 +2160.714323 +2160.729175 +2160.757579 +2160.775328 +2160.791212 +2160.805998 +2160.835801 +2160.850453 +2160.866404 +2160.881356 +2160.896907 +2160.923280 +2160.939697 +2160.955781 +2171.639020 +2171.971721 +2172.972053 +2173.972085 +2173.972485 +2175.970351 +2181.172045 +2181.271778 +2181.272011 +2181.272644 +2181.572477 +2181.672577 +2181.872144 +2181.972710 +2182.172610 +2182.172809 +2182.173209 +2182.272476 +2182.372210 +2182.472010 +2182.472410 +2182.672476 +2182.673375 +2182.773208 +2182.972609 +2182.973508 +2183.272708 +2183.274174 +2183.381100 +2183.573474 +2183.672542 +2183.674173 +2183.872541 +2183.873307 +2184.072175 +2184.171309 +2184.272741 +2184.273274 +2184.373540 +2184.872008 +2184.872407 +2185.073506 +2185.272706 +2185.273506 +2185.472640 +2185.472906 +2185.473406 +2185.672739 +2185.772273 +2185.772473 +2185.773172 +2185.872273 +2191.001838 +2191.020986 +2191.066374 +2191.115524 +2191.188884 +2191.228878 +2191.252554 +2191.293113 +2191.370170 +2191.379893 +2191.430676 +2191.447492 +2191.498774 +2191.523616 +2191.577196 +2191.586919 +2191.629910 +2191.666107 +2191.703602 +2191.728478 +2191.770136 +2191.792613 +2191.842830 +2191.886220 +2191.917055 +2191.957648 +2191.985953 +2191.996143 +2192.039000 +2192.093346 +2192.129176 +2192.207298 +2192.238967 +2192.276362 +2192.307132 +2192.335770 +2192.402703 +2192.431474 +2192.453818 +2192.476362 +2192.500338 +2192.557714 +2192.582223 +2192.607897 +2192.635303 +2192.645260 +2192.686818 +2192.726312 +2192.767105 +2192.812393 +2192.814391 +2192.842163 +2192.904201 +2192.967071 +2192.991979 +2193.003202 +2193.057414 +2193.062709 +2193.104866 +2193.153451 +2193.178526 +2193.224846 +2193.277127 +2193.287950 +2193.314690 +2193.328642 +2193.371799 +2193.397307 +2193.425745 +2193.449488 +2193.452252 +2193.477560 +2193.507364 +2193.543494 +2193.569635 +2193.618419 +2193.670367 +2193.710593 +2193.745991 +2193.773863 +2193.789248 +2193.814523 +2193.880324 +2193.911426 +2193.936068 +2194.003001 +2194.059211 +2194.092644 +2194.133870 +2194.167370 +2194.184652 +2194.221082 +2194.251785 +2194.275761 +2194.303933 +2194.329574 +2194.385385 +2194.415554 +2194.448388 +2194.462940 +2194.488248 +2194.521182 +2194.552850 +2194.591245 +2194.609194 +2194.637899 +2194.652684 +2194.678491 +2194.713556 +2194.740562 +2194.782387 +2194.816120 +2194.840529 +2194.868401 +2194.907062 +2194.926343 +2194.950752 +2194.977392 +2195.007096 +2195.022780 +2195.045557 +2195.092244 +2195.157245 +2195.186916 +2195.204631 +2195.220049 +2195.257179 +2195.314222 +2195.340129 +2195.359110 +2195.373962 +2195.385450 +2195.415454 +2195.448953 +2195.459310 +2195.475360 +2195.487481 +2195.543425 +2195.546522 +2195.579290 +2195.599736 +2195.619716 +2195.622679 +2195.660708 +2195.666436 +2195.669233 +2195.694707 +2195.696539 +2195.713255 +2195.744657 +2195.745290 +2195.770631 +2195.784917 +2195.815453 +2195.816286 +2195.843791 +2195.853049 +2195.858377 +2195.872030 +2195.888280 +2195.932902 +2195.946822 +2195.947255 +2202.191005 +2203.349878 +2203.405023 +2203.432828 +2206.705918 +2207.700823 +2208.141515 +2208.702420 +2209.699788 +2209.705849 +2210.699954 +2210.700520 +2212.998320 +2213.583900 +2213.969914 +2214.034682 +2214.631984 +2214.775541 +2217.902810 +2218.012600 +2218.513033 +2220.803007 +2221.002874 +2221.703339 +2224.173667 +2226.706798 +2226.742362 +2226.769335 +2226.809228 +2226.846757 +2226.878193 +2226.906897 +2226.937999 +2226.959911 +2226.991779 +2227.021949 +2227.045858 +2227.069068 +2227.076894 +2227.128509 +2227.141696 +2227.150853 +2227.177626 +2227.234536 +2227.270999 +2227.306198 +2227.319651 +2227.333071 +2227.377926 +2227.416787 +2227.456980 +2227.483087 +2227.515255 +2227.550853 +2227.586151 +2227.594675 +2227.618219 +2227.665971 +2227.683187 +2227.718785 +2227.749853 +2227.761841 +2227.781022 +2227.810426 +2227.833969 +2227.894309 +2227.905098 +2227.926443 +2227.949221 +2227.989014 +2228.036100 +2228.073196 +2228.100436 +2228.122181 +2228.144525 +2228.169533 +2228.193343 +2228.215221 +2228.267868 +2228.295907 +2228.316919 +2228.343226 +2228.369866 +2228.404365 +2228.407229 +2228.418651 +2228.432470 +2228.447655 +2228.460675 +2228.483785 +2228.484984 +2228.512257 +2228.533369 +2228.544425 +2228.558111 +2228.583053 +2228.606463 +2228.629873 +2228.654548 +2228.679922 +2228.706429 +2228.719949 +2228.733702 +2228.757944 +2228.760275 +2228.771797 +2228.785750 +2228.812456 +2228.841261 +2228.878690 +2228.892976 +2228.918750 +2228.943259 +2228.970798 +2228.998603 +2229.024178 +2229.040994 +2229.052749 +2229.068767 +2229.082120 +2229.096206 +2229.111757 +2229.126342 +2229.153282 +2229.179389 +2229.210225 +2229.210525 +2229.238630 +2229.263738 +2229.290977 +2229.305197 +2229.328340 +2229.331570 +2229.343658 +2229.368300 +2229.381287 +2229.382652 +2229.406762 +2229.422512 +2229.437597 +2229.464371 +2229.489845 +2229.501800 +2229.515086 +2229.526675 +2229.548819 +2229.549718 +2229.563904 +2229.578523 +2229.607161 +2229.620714 +2229.648952 +2229.666635 +2229.667267 +2229.703931 +2229.722279 +2229.747254 +2229.763504 +2229.778689 +2229.804364 +2229.816551 +2229.843491 +2229.866468 +2229.881053 +2229.893008 +2229.909891 +2229.937797 +2229.952249 +2229.979621 +2229.992009 +2229.994906 +2230.006428 +2230.022878 +2230.036231 +2230.052815 +2230.065103 +2230.090444 +2230.109092 +2230.125475 +2230.138962 +2230.149718 +2230.163704 +2230.177224 +2230.191776 +2230.206095 +2230.221413 +2230.239062 +2230.267766 +2230.287080 +2230.312089 +2230.327673 +2230.343124 +2230.356244 +2230.380520 +2230.407826 +2230.422245 +2230.424310 +2230.434932 +2230.435665 +2230.450117 +2230.452515 +2230.467799 +2230.483883 +2230.486148 +2230.499201 +2230.512588 +2230.512921 +2230.525009 +2230.544323 +2230.559674 +2230.568565 +2230.587946 +2230.590110 +2230.603097 +2230.617749 +2230.618981 +2230.630137 +2230.645455 +2230.661872 +2230.664702 +2230.677623 +2230.690243 +2230.692108 +2230.702997 +2230.707793 +2230.720480 +2230.723444 +2230.738029 +2230.753480 +2230.765235 +2230.767899 +2230.796337 +2230.799134 +2230.812554 +2230.814353 +2230.830037 +2230.844955 +2230.859341 +2230.875491 +2230.888212 +2230.892408 +2230.908358 +2230.921379 +2230.924176 +2230.936697 +2230.937896 +2230.964402 +2230.966800 +2230.984882 +2230.995671 +2230.997536 +2231.008591 +2231.014452 +2231.022877 +2231.043024 +2231.054679 +2231.075258 +2231.091076 +2231.092707 +2231.106826 +2231.109357 +2231.124609 +2231.150483 +2231.167432 +2231.197036 +2231.213919 +2231.226240 +2231.239727 +2231.252447 +2231.268065 +2231.282417 +2231.298934 +2231.312587 +2231.330569 +2231.343123 +2231.358608 +2231.375724 +2231.393173 +2231.407459 +2231.418981 +2231.421678 +2231.436763 +2231.448318 +2231.450716 +2231.451515 +2231.482117 +2231.497202 +2231.515384 +2231.530769 +2231.546819 +2231.575357 +2231.589610 +2231.607425 +2231.624575 +2231.649017 +2231.668364 +2231.681018 +2231.685980 +2239.772352 +2241.707315 +2241.708181 +2242.707514 +2242.708147 +2243.197823 +2244.707978 +2245.263955 +2245.270515 +2245.274878 +2245.708077 +2246.708376 +2250.927619 +2251.012201 +2251.018994 +2251.037576 +2251.053193 +2251.265081 +2251.275504 +2251.298215 +2251.315165 +2251.374439 +2251.702643 +2251.909303 +2252.010202 +2252.018261 +2252.121457 +2253.003475 +2253.904273 +2255.704537 +2261.703000 +2261.707662 +2261.754515 +2261.812423 +2261.837432 +2261.856579 +2261.867468 +2261.939230 +2261.985983 +2261.999037 +2262.020948 +2262.079989 +2262.132603 +2262.156046 +2262.168267 +2262.193142 +2262.251451 +2262.288913 +2262.313588 +2262.322746 +2262.358044 +2262.435300 +2262.458610 +2262.480521 +2262.630638 +2262.661740 +2262.681287 +2262.713288 +2262.756945 +2262.816452 +2262.837464 +2262.851483 +2262.898303 +2262.911856 +2262.937264 +2262.949252 +2262.971563 +2263.011590 +2263.048653 +2263.061806 +2263.114886 +2263.137064 +2263.139129 +2263.160574 +2263.196871 +2263.227807 +2263.250184 +2263.261972 +2263.270697 +2263.315186 +2263.392109 +2263.415485 +2263.437497 +2263.449218 +2263.460840 +2263.468699 +2263.493274 +2263.521712 +2263.546255 +2263.555678 +2263.572162 +2263.606128 +2263.618915 +2263.655778 +2263.657010 +2263.669398 +2263.683684 +2263.696138 +2263.736930 +2263.759907 +2263.803131 +2263.817583 +2263.841725 +2263.853480 +2263.862505 +2263.877789 +2263.907526 +2263.920913 +2263.958442 +2263.984915 +2264.009358 +2264.023444 +2264.035765 +2264.082917 +2264.095771 +2264.124276 +2264.133567 +2264.149850 +2264.178455 +2264.204995 +2264.219614 +2264.233900 +2264.259973 +2264.274559 +2264.299201 +2264.301798 +2264.313720 +2264.329437 +2264.354712 +2264.370430 +2264.384882 +2264.395538 +2264.412055 +2264.450683 +2264.476756 +2264.491209 +2264.505561 +2264.508292 +2264.522477 +2264.546686 +2264.562104 +2264.578188 +2264.592341 +2264.606160 +2264.619680 +2264.644655 +2264.661205 +2264.674658 +2264.701365 +2264.711888 +2264.714918 +2264.729337 +2264.743223 +2264.784781 +2264.799800 +2264.842524 +2264.855777 +2264.909390 +2264.923309 +2264.938394 +2264.980319 +2264.994805 +2265.010089 +2265.020512 +2265.022810 +2265.036696 +2265.052014 +2265.066200 +2265.079819 +2265.094804 +2265.109257 +2265.123076 +2265.124108 +2265.153146 +2265.166566 +2265.179320 +2265.179653 +2265.195537 +2265.209356 +2265.239227 +2265.293739 +2265.310022 +2265.325440 +2265.353412 +2265.365467 +2265.379619 +2265.394371 +2265.410688 +2265.425274 +2265.439260 +2265.452213 +2265.482816 +2265.496269 +2265.539692 +2265.569463 +2265.582183 +2265.586213 +2265.596735 +2265.613485 +2265.641724 +2265.652779 +2265.667997 +2265.681351 +2265.697201 +2265.713452 +2265.727837 +2265.756242 +2265.771394 +2265.784647 +2265.797767 +2265.827471 +2265.839359 +2265.852046 +2265.871594 +2265.880218 +2265.906292 +2265.920844 +2265.952779 +2265.968796 +2266.014251 +2266.038726 +2266.064500 +2266.102962 +2266.120478 +2266.136595 +2266.152845 +2266.166465 +2266.177254 +2266.192073 +2266.209589 +2266.233298 +2266.246585 +2266.261237 +2266.274857 +2266.291107 +2266.323774 +2266.335130 +2266.378353 +2266.390907 +2266.465532 +2266.479818 +2266.493737 +2266.508156 +2266.521876 +2266.536794 +2266.553111 +2266.575689 +2266.588975 +2266.604194 +2266.616048 +2266.626838 +2266.655342 +2266.675622 +2276.703751 +2276.704583 +2276.709312 +2276.709678 +2276.709944 +2276.710411 +2277.709544 +2277.710509 +2278.704148 +2278.705114 +2279.704114 +2279.710075 +2279.711740 +2280.704246 +2280.704979 +2281.703879 +2281.708607 +2286.709868 +2286.904739 +2287.705538 +2287.805504 +2287.906004 +2288.005737 +2288.205471 +2288.705470 +2289.505536 +2289.905802 +2290.405768 +2290.605335 +2290.605934 +2290.705568 +2290.905734 +2291.004635 +2291.103969 +2291.106933 +2296.708592 +2296.737597 +2296.761373 +2296.823344 +2296.860973 +2296.881419 +2296.914686 +2296.933867 +2296.960474 +2296.972728 +2296.981552 +2297.000067 +2297.046421 +2297.067300 +2297.092774 +2297.111356 +2297.130803 +2297.154879 +2297.174060 +2297.193440 +2297.238329 +2297.280187 +2297.306227 +2297.327872 +2297.365035 +2297.393940 +2297.395738 +2297.416850 +2297.451382 +2297.472661 +2297.494372 +2297.530669 +2297.551981 +2297.560706 +2297.569830 +2297.591475 +2297.613020 +2297.636131 +2297.649850 +2297.673293 +2297.697569 +2297.747752 +2297.772594 +2297.784582 +2297.806627 +2297.856410 +2297.900599 +2297.945188 +2297.982883 +2298.006393 +2298.057842 +2298.084382 +2298.096570 +2298.098301 +2298.121545 +2298.144622 +2298.159307 +2298.220879 +2298.233000 +2298.255477 +2298.275923 +2298.318481 +2298.342190 +2298.360306 +2298.395970 +2298.434298 +2298.458740 +2298.478687 +2298.500698 +2298.519779 +2298.547119 +2298.581651 +2298.601564 +2298.614385 +2298.659872 +2298.673126 +2298.737495 +2298.749283 +2298.771994 +2298.784048 +2298.808557 +2298.820045 +2298.830568 +2298.862536 +2298.934631 +2298.945220 +2298.958707 +2298.980951 +2299.003828 +2299.015516 +2299.027438 +2299.044521 +2299.059706 +2299.073392 +2299.109656 +2299.123309 +2299.135263 +2299.147584 +2299.168730 +2299.180218 +2299.202063 +2299.223408 +2299.236828 +2299.257741 +2299.276655 +2299.309089 +2299.322076 +2299.335563 +2299.348849 +2299.361204 +2299.372159 +2299.386046 +2299.398200 +2299.409489 +2299.431600 +2299.446285 +2299.502329 +2299.516049 +2299.528303 +2299.540757 +2299.553045 +2299.565000 +2299.565732 +2299.578819 +2299.598866 +2299.623075 +2299.633398 +2299.647384 +2299.660571 +2299.688210 +2299.700364 +2299.729502 +2299.743454 +2299.756741 +2299.771660 +2299.783947 +2299.797034 +2299.811486 +2299.837194 +2299.851213 +2299.876588 +2299.891972 +2299.904194 +2299.917347 +2299.931400 +2299.954310 +2299.967630 +2299.995502 +2300.008356 +2300.022608 +2300.035595 +2300.048083 +2300.072092 +2300.085046 +2300.113151 +2300.138326 +2300.152711 +2300.166098 +2300.202162 +2300.213650 +2300.239192 +2300.248083 +2300.250014 +2300.265598 +2300.281483 +2300.292005 +2300.294803 +2300.307723 +2300.333597 +2300.347050 +2300.359937 +2300.372292 +2300.396800 +2300.399032 +2300.411885 +2300.423574 +2300.424206 +2300.434629 +2300.437426 +2300.448615 +2300.465498 +2300.477953 +2300.479018 +2300.493204 +2300.505625 +2300.535095 +2300.547516 +2300.560969 +2300.574856 +2300.588675 +2300.602528 +2300.603527 +2300.616980 +2300.642821 +2300.673590 +2300.700530 +2300.728135 +2300.730034 +2300.742388 +2300.756907 +2300.770493 +2300.783513 +2300.785645 +2300.797999 +2300.826171 +2300.826937 +2300.841189 +2300.854009 +2300.885578 +2300.895901 +2300.909687 +2300.925904 +2300.938791 +2300.952178 +2300.978152 +2300.985045 +2301.007423 +2301.035062 +2301.049114 +2301.063000 +2301.078685 +2301.091572 +2301.121841 +2301.128168 +2301.137426 +2301.165531 +2301.177819 +2301.190906 +2301.208488 +2301.261235 +2301.276353 +2301.316979 +2301.354742 +2301.360969 +2301.368927 +2301.406456 +2301.408288 +2301.441055 +2301.553642 +2301.556540 +2301.566796 +2311.709809 +2311.710209 +2311.710709 +2313.710374 +2313.710673 +2313.710906 +2314.710139 +2314.710472 +2315.705643 +2315.710438 +2315.710938 +2316.705043 +2316.710337 +2316.710704 +2316.711003 +2321.703173 +2321.704039 +2321.709899 +2321.805604 +2321.904704 +2322.006169 +2322.306336 +2322.405037 +2323.006135 +2323.405402 +2323.406235 +2323.506068 +2323.605702 +2324.505168 +2324.505801 +2324.806167 +2325.506099 +2325.806299 +2326.005466 +2326.405666 +2331.756842 +2331.824774 +2331.856609 +2331.878487 +2331.931201 +2331.959606 +2331.995137 +2332.013885 +2332.049383 +2332.072227 +2332.156609 +2332.189010 +2332.226306 +2332.236562 +2332.264234 +2332.294105 +2332.315283 +2332.360638 +2332.385280 +2332.431767 +2332.457008 +2332.503994 +2332.566265 +2332.594004 +2332.604660 +2332.642789 +2332.656908 +2332.679286 +2332.714317 +2332.748983 +2332.766398 +2332.779552 +2332.810987 +2332.822675 +2332.861537 +2332.872392 +2332.923241 +2332.945586 +2332.965899 +2332.992439 +2333.051680 +2333.078519 +2333.098766 +2333.126471 +2333.228902 +2333.251679 +2333.299165 +2333.324207 +2333.360038 +2333.386611 +2333.409155 +2333.434363 +2333.453710 +2333.477587 +2333.513284 +2333.543953 +2333.557107 +2333.566964 +2333.592139 +2333.617313 +2333.645818 +2333.669927 +2333.698332 +2333.711752 +2333.788775 +2333.811852 +2333.866764 +2333.881782 +2333.909121 +2333.932431 +2333.956640 +2333.973923 +2334.012751 +2334.035861 +2334.060004 +2334.086244 +2334.100696 +2334.166197 +2334.192038 +2334.217879 +2334.233497 +2334.247449 +2334.274888 +2334.301329 +2334.315181 +2334.339890 +2334.366031 +2334.382414 +2334.409054 +2334.419677 +2334.420643 +2334.469560 +2334.493603 +2334.517512 +2334.533130 +2334.581415 +2334.601462 +2334.612484 +2334.661668 +2334.676453 +2334.698265 +2334.714249 +2334.725404 +2334.750912 +2334.765797 +2334.777619 +2334.790639 +2334.804791 +2334.817246 +2334.844951 +2334.879916 +2334.890605 +2334.903959 +2334.939556 +2334.951045 +2334.978684 +2334.994135 +2335.081215 +2335.091538 +2335.124272 +2335.137592 +2335.140389 +2335.165597 +2335.180682 +2335.195001 +2335.225004 +2335.239123 +2335.252443 +2335.265497 +2335.279882 +2335.295900 +2335.310019 +2335.311351 +2335.324205 +2335.333063 +2335.352943 +2335.353442 +2335.368061 +2335.382147 +2335.395267 +2335.407388 +2335.423838 +2335.436226 +2335.451777 +2335.467095 +2335.483612 +2335.510119 +2335.523838 +2335.539656 +2335.555407 +2335.570092 +2335.583345 +2335.611351 +2335.625536 +2335.639289 +2335.649712 +2335.651011 +2335.680581 +2335.696266 +2335.712549 +2335.726835 +2335.741620 +2335.771191 +2335.772822 +2335.786609 +2335.801893 +2335.815713 +2335.831097 +2335.844650 +2335.847181 +2335.861201 +2335.875220 +2335.888740 +2335.905556 +2335.915513 +2335.934827 +2335.936126 +2335.963831 +2335.978616 +2335.994667 +2336.008120 +2336.036592 +2336.052143 +2336.066129 +2336.081014 +2336.110351 +2336.140221 +2336.173188 +2336.187973 +2336.203291 +2336.217710 +2336.232729 +2336.246914 +2336.277650 +2336.306122 +2336.321906 +2336.335759 +2336.367227 +2336.383977 +2336.396864 +2336.410617 +2336.439888 +2336.457204 +2336.485442 +2336.501926 +2336.515146 +2336.517743 +2336.562265 +2336.578616 +2336.593068 +2336.611050 +2336.625469 +2336.641952 +2336.656638 +2336.682046 +2345.305680 +2345.310209 +2346.705745 +2346.710907 +2348.711238 +2349.705143 +2349.710770 +2350.704010 +2350.705242 +2351.705241 +2351.711301 +2356.194946 +2356.199975 +2356.214693 +2356.274500 +2356.290251 +2356.710331 +2357.406201 +2357.705568 +2357.806933 +2358.006533 +2358.106733 +2358.206866 +2358.306999 +2358.606100 +2358.806432 +2359.206465 +2359.207065 +2359.606898 +2360.507197 +2360.807163 +2360.906230 +2361.006830 +2361.607195 +2363.001500 +2363.030204 +2364.220446 +2365.459573 +2365.583981 +2366.705059 +2366.763834 +2366.797134 +2366.837127 +2366.838526 +2366.850047 +2366.858472 +2366.928535 +2366.963667 +2367.016714 +2367.038059 +2367.063767 +2367.097333 +2367.131266 +2367.156441 +2367.178618 +2367.210054 +2367.242921 +2367.267763 +2367.291306 +2367.302128 +2367.348981 +2367.382581 +2367.400996 +2367.464332 +2367.511352 +2367.533297 +2367.546184 +2367.564432 +2367.614948 +2367.649147 +2367.704059 +2367.739557 +2367.764332 +2367.786577 +2367.828701 +2367.853942 +2367.889274 +2367.918045 +2367.940756 +2367.953410 +2367.972923 +2368.000296 +2368.067895 +2368.091205 +2368.092037 +2368.100729 +2368.149247 +2368.165131 +2368.198564 +2368.210918 +2368.255141 +2368.281181 +2368.319776 +2368.344052 +2368.356506 +2368.388607 +2368.419676 +2368.459536 +2368.483612 +2368.563998 +2368.587974 +2368.619176 +2368.641787 +2368.657138 +2368.691005 +2368.707988 +2368.755140 +2368.756739 +2368.771790 +2368.792703 +2368.821141 +2368.849180 +2368.901194 +2368.921108 +2368.939056 +2369.031930 +2369.048447 +2369.087707 +2369.133395 +2369.173821 +2369.192303 +2369.232829 +2369.271357 +2369.287108 +2369.310951 +2369.327734 +2369.340621 +2369.389972 +2369.407987 +2369.505056 +2369.505889 +2369.524737 +2369.548047 +2369.645349 +2369.661333 +2369.724437 +2369.764663 +2369.779249 +2369.824303 +2369.847680 +2369.877117 +2369.890937 +2369.891669 +2369.928932 +2369.947846 +2369.986508 +2369.999994 +2370.041619 +2370.043950 +2370.070224 +2370.083677 +2370.087240 +2370.102458 +2370.113381 +2370.114779 +2370.145149 +2370.170424 +2370.199228 +2370.217177 +2370.230963 +2370.247047 +2370.261100 +2370.285941 +2370.288272 +2370.305155 +2370.318942 +2370.332628 +2370.334693 +2370.349278 +2370.375552 +2370.378182 +2370.388738 +2370.406421 +2370.435492 +2370.449278 +2370.450410 +2370.454506 +2370.466194 +2370.479381 +2370.497463 +2370.497962 +2370.508219 +2370.524669 +2370.536824 +2370.537856 +2370.551409 +2370.552608 +2370.569324 +2370.581645 +2370.596297 +2370.611815 +2370.627566 +2370.655605 +2370.670723 +2370.687273 +2370.699661 +2370.703190 +2370.719208 +2370.730496 +2370.733360 +2370.748512 +2370.764029 +2370.776650 +2370.777583 +2370.795565 +2370.808785 +2370.810616 +2370.821072 +2370.823270 +2370.838122 +2370.865994 +2370.867126 +2370.881678 +2370.897762 +2370.926101 +2370.942717 +2370.958235 +2370.959767 +2370.982877 +2370.998495 +2371.002457 +2371.015444 +2371.029197 +2371.071222 +2371.085474 +2371.091069 +2371.100726 +2371.115344 +2371.130496 +2371.144748 +2371.164462 +2371.178881 +2371.192734 +2371.206620 +2371.207685 +2371.223603 +2371.223936 +2371.238621 +2371.255038 +2371.270889 +2371.283942 +2371.285274 +2371.299826 +2371.310882 +2371.316210 +2371.331894 +2371.342317 +2371.345880 +2371.358601 +2371.373220 +2371.376749 +2371.387972 +2371.392667 +2371.407718 +2371.417975 +2371.418941 +2371.436057 +2371.480745 +2371.497529 +2371.530462 +2371.543249 +2371.547445 +2371.562430 +2371.563063 +2371.580878 +2371.596230 +2371.624768 +2371.641884 +2371.658301 +2371.673686 +2371.687605 +2371.700592 +2380.242342 +2380.283334 +2381.710805 +2382.711304 +2383.705675 +2385.711567 +2386.706971 +2386.712665 +2391.705567 +2391.706566 +2391.806333 +2391.806866 +2392.306832 +2392.706931 +2392.707497 +2392.807264 +2392.907297 +2393.007697 +2393.107497 +2393.407164 +2393.407597 +2393.607530 +2393.707563 +2393.806897 +2393.807097 +2394.007629 +2394.206930 +2396.007594 +2396.106994 +2396.307594 +2396.408193 +2396.706961 +2401.731964 +2401.759969 +2401.799030 +2401.819909 +2401.829899 +2401.850845 +2401.885244 +2401.896000 +2401.904458 +2401.928634 +2401.939456 +2401.972157 +2402.029266 +2402.064997 +2402.085210 +2402.121774 +2402.154674 +2402.156605 +2402.170192 +2402.204058 +2402.225969 +2402.235260 +2402.267694 +2402.290072 +2402.346582 +2402.383378 +2402.422306 +2402.446715 +2402.488939 +2402.527001 +2402.561733 +2402.607121 +2402.675086 +2402.690105 +2402.725802 +2402.749312 +2402.787940 +2402.823971 +2402.891437 +2402.915812 +2402.946248 +2402.982745 +2402.999928 +2403.036458 +2403.053241 +2403.077017 +2403.130264 +2403.156205 +2403.180814 +2403.210217 +2403.229831 +2403.254640 +2403.277650 +2403.289039 +2403.307953 +2403.331762 +2403.357270 +2403.411716 +2403.448712 +2403.500993 +2403.528932 +2403.554040 +2403.554773 +2403.668992 +2403.722904 +2403.747713 +2403.802758 +2403.830896 +2403.851875 +2403.883444 +2403.896464 +2403.905222 +2403.922837 +2403.970923 +2403.997496 +2404.021206 +2404.033893 +2404.063164 +2404.087906 +2404.100460 +2404.126700 +2404.152308 +2404.191568 +2404.208285 +2404.222504 +2404.238388 +2404.249910 +2404.306287 +2404.351009 +2404.376850 +2404.403157 +2404.419307 +2404.445747 +2404.447079 +2404.460033 +2404.485607 +2404.513313 +2404.542550 +2404.600359 +2404.615844 +2404.631162 +2404.633060 +2404.658967 +2404.687106 +2404.717808 +2404.746846 +2404.789770 +2404.803989 +2404.805121 +2404.831594 +2404.847578 +2404.874984 +2404.891268 +2404.904821 +2404.918641 +2404.942517 +2404.977715 +2404.998927 +2405.020072 +2405.045514 +2405.060965 +2405.075717 +2405.089703 +2405.114611 +2405.127798 +2405.150708 +2405.164728 +2405.188837 +2405.204588 +2405.257601 +2405.270155 +2405.283875 +2405.315277 +2405.331427 +2405.348077 +2405.350009 +2405.363962 +2405.407152 +2405.423435 +2405.438487 +2405.465826 +2405.497728 +2405.524468 +2405.540884 +2405.552806 +2405.568923 +2405.583775 +2405.599992 +2405.615809 +2405.660065 +2405.674351 +2405.688437 +2405.730295 +2405.773019 +2405.789669 +2405.804287 +2405.849509 +2405.866192 +2405.879812 +2405.882176 +2405.896961 +2405.914078 +2405.941583 +2405.957667 +2405.974550 +2405.991334 +2406.048943 +2406.064560 +2406.081010 +2406.094863 +2406.113411 +2406.141050 +2406.157168 +2406.170488 +2406.186072 +2406.218906 +2406.247411 +2406.261896 +2406.277714 +2406.292998 +2406.308982 +2406.323734 +2406.338286 +2406.355702 +2406.372052 +2406.398226 +2406.413311 +2406.417307 +2406.429428 +2406.463994 +2406.496628 +2406.512578 +2406.557001 +2406.571420 +2406.573418 +2406.602455 +2406.632092 +2406.647876 +2406.660464 +2406.696128 +2410.082438 +2416.711702 +2417.711169 +2417.711768 +2418.705773 +2418.712100 +2419.711833 +2420.711532 +2421.711631 +2426.705798 +2426.811493 +2427.406697 +2427.407063 +2427.506730 +2427.806896 +2427.906596 +2427.907096 +2428.307162 +2428.406563 +2428.407095 +2428.606596 +2428.607295 +2429.707027 +2430.207626 +2430.406461 +2430.506461 +2430.506960 +2430.606960 +2430.706360 +2430.707126 +2430.906926 +2431.206593 +2431.306926 +2431.407026 +2431.506859 +2436.710151 +2436.746514 +2436.791170 +2436.833727 +2436.874686 +2436.896664 +2436.897696 +2437.014646 +2437.076584 +2437.091336 +2437.136724 +2437.137723 +2437.147346 +2437.184676 +2437.194632 +2437.251376 +2437.287606 +2437.307253 +2437.309417 +2437.346614 +2437.365262 +2437.376584 +2437.385575 +2437.456570 +2437.514712 +2437.588838 +2437.614046 +2437.625068 +2437.698794 +2437.721072 +2437.753207 +2437.785308 +2437.803922 +2437.824402 +2437.849044 +2437.870090 +2437.880746 +2437.881611 +2437.903889 +2437.932061 +2437.967292 +2437.978348 +2437.990469 +2438.010849 +2438.012913 +2438.033659 +2438.052374 +2438.055104 +2438.080446 +2438.101325 +2438.119174 +2438.169357 +2438.179780 +2438.194665 +2438.229596 +2438.247279 +2438.271121 +2438.298427 +2438.329297 +2438.353306 +2438.366459 +2438.376749 +2438.397661 +2438.443183 +2438.476982 +2438.492367 +2438.505087 +2438.520272 +2438.540618 +2438.541218 +2438.559966 +2438.587372 +2438.619939 +2438.645713 +2438.658467 +2438.672020 +2438.683842 +2438.703455 +2438.706685 +2438.719739 +2438.741484 +2438.781943 +2438.795197 +2438.822669 +2438.834824 +2438.860132 +2438.879346 +2438.911081 +2438.933758 +2438.948510 +2439.006319 +2439.023002 +2439.035923 +2439.047178 +2439.062496 +2439.086605 +2439.088570 +2439.100291 +2439.140185 +2439.166359 +2439.191700 +2439.207085 +2439.231061 +2439.260664 +2439.272486 +2439.273551 +2439.286505 +2439.300724 +2439.312113 +2439.339452 +2439.354703 +2439.394830 +2439.423035 +2439.448177 +2439.474384 +2439.530128 +2439.556202 +2439.601057 +2439.627197 +2439.642549 +2439.643481 +2439.684473 +2439.712312 +2439.725399 +2439.727297 +2439.766458 +2439.820970 +2439.836754 +2439.864427 +2439.879611 +2439.881043 +2439.892732 +2439.895662 +2439.922702 +2439.950307 +2439.954004 +2439.967623 +2439.980244 +2440.004320 +2440.017140 +2440.030993 +2440.041349 +2440.062728 +2440.079178 +2440.095129 +2440.096927 +2440.123534 +2440.126364 +2440.154936 +2440.169288 +2440.183374 +2440.212811 +2440.228396 +2440.243281 +2440.259198 +2440.269188 +2440.287137 +2440.303687 +2440.320503 +2440.348076 +2440.360896 +2440.363294 +2440.376714 +2440.393231 +2440.409148 +2440.436387 +2440.461229 +2440.474449 +2440.496161 +2440.539018 +2440.540383 +2440.556234 +2440.571419 +2440.586937 +2440.588835 +2440.600756 +2440.603553 +2440.604386 +2440.615541 +2440.618738 +2440.629594 +2440.633224 +2440.659697 +2440.691132 +2440.707916 +2440.735321 +2440.751339 +2440.753570 +2440.769654 +2440.781242 +2440.796860 +2440.814709 +2440.831059 +2440.842647 +2440.858731 +2440.873516 +2440.889900 +2440.904452 +2440.922234 +2440.937652 +2440.952404 +2440.954569 +2440.982174 +2440.986170 +2440.998525 +2441.015674 +2441.017206 +2441.029294 +2441.041715 +2441.043979 +2441.077379 +2441.089667 +2441.106550 +2441.109414 +2441.134588 +2441.135155 +2441.151971 +2441.153736 +2441.165324 +2441.180742 +2441.197093 +2441.198558 +2441.209147 +2441.234988 +2441.253636 +2441.269653 +2441.285471 +2441.301355 +2441.318038 +2441.332657 +2441.361461 +2441.375680 +2441.377345 +2441.395461 +2441.410912 +2441.426296 +2441.439483 +2441.441448 +2441.455101 +2441.469586 +2441.488634 +2441.521102 +2441.539550 +2441.552836 +2441.567988 +2441.584738 +2441.599789 +2441.631325 +2441.647542 +2441.648541 +2441.665191 +2441.692230 +2441.693029 +2441.695927 +2452.705206 +2453.703873 +2454.710965 +2454.711997 +2455.711464 +2456.679595 +2456.706135 +2456.710797 +2461.905597 +2463.306727 +2463.706727 +2463.806394 +2464.906293 +2465.506659 +2465.706425 +2466.406325 +2470.603856 +2470.707719 +2471.704888 +2471.710116 +2471.713512 +2471.729962 +2471.745114 +2471.762530 +2471.763562 +2471.773752 +2471.783908 +2471.792333 +2471.814178 +2471.846712 +2471.856902 +2471.880046 +2471.899193 +2471.900325 +2471.911914 +2471.933592 +2471.965993 +2471.996762 +2472.020671 +2472.031128 +2472.041917 +2472.049343 +2472.082077 +2472.095230 +2472.116309 +2472.130162 +2472.138753 +2472.163495 +2472.190168 +2472.218374 +2472.245014 +2472.256535 +2472.283575 +2472.308750 +2472.311580 +2472.320138 +2472.336422 +2472.346212 +2472.363162 +2472.374084 +2472.420438 +2472.456602 +2472.493365 +2472.506285 +2472.506552 +2472.517674 +2472.542915 +2472.555636 +2472.556768 +2472.585673 +2472.607417 +2472.627064 +2472.649109 +2472.676681 +2472.704320 +2472.732159 +2472.739385 +2472.769955 +2472.799059 +2472.824500 +2472.858733 +2472.883874 +2472.906851 +2472.982309 +2473.005186 +2473.029129 +2473.052772 +2473.092332 +2473.129661 +2473.157667 +2473.170687 +2473.191666 +2473.224933 +2473.238419 +2473.251007 +2473.272119 +2473.291033 +2473.330261 +2473.358033 +2473.358799 +2473.386105 +2473.410514 +2473.437720 +2473.463261 +2473.490267 +2473.521403 +2473.550041 +2473.575748 +2473.588402 +2473.612012 +2473.640117 +2473.663427 +2473.691932 +2473.704353 +2473.731259 +2473.758032 +2473.783440 +2473.807616 +2473.831492 +2473.879977 +2473.907017 +2473.963260 +2473.976913 +2473.992831 +2474.051272 +2474.078179 +2474.115808 +2474.158398 +2474.244812 +2474.285238 +2474.300523 +2474.313410 +2474.338984 +2474.355068 +2474.382274 +2474.411312 +2474.424931 +2474.439117 +2474.453270 +2474.510146 +2474.537352 +2474.567156 +2474.594595 +2474.610113 +2474.637519 +2474.653103 +2474.678578 +2474.694695 +2474.721268 +2474.737852 +2474.765391 +2474.793596 +2474.807881 +2474.835687 +2474.836386 +2474.865757 +2474.867455 +2474.881474 +2474.896859 +2474.923732 +2474.924831 +2474.940682 +2474.955234 +2474.972117 +2474.982806 +2474.986503 +2475.029759 +2475.071950 +2475.089400 +2475.133089 +2475.149373 +2475.176879 +2475.178510 +2475.192829 +2475.206949 +2475.207148 +2475.221434 +2475.265324 +2475.281707 +2475.295893 +2475.314175 +2475.328227 +2475.342113 +2475.343712 +2475.355333 +2475.357931 +2475.367355 +2475.401820 +2475.417138 +2475.445776 +2475.475780 +2475.493329 +2475.508114 +2475.510478 +2475.521367 +2475.539383 +2475.541580 +2475.566555 +2475.567887 +2475.583838 +2475.599156 +2475.613175 +2475.616206 +2475.626728 +2475.630691 +2475.645743 +2475.658863 +2475.661560 +2475.675979 +2475.677311 +2475.690764 +2475.721600 +2475.749372 +2475.778843 +2475.805050 +2475.820335 +2475.836252 +2475.849006 +2475.862726 +2475.878610 +2475.889665 +2475.903784 +2475.921200 +2475.935886 +2475.949139 +2475.973448 +2475.991663 +2476.005749 +2476.021633 +2476.037351 +2476.069352 +2476.085003 +2476.100055 +2476.114906 +2476.143278 +2476.159295 +2476.177344 +2476.193561 +2476.220501 +2476.250404 +2476.251237 +2476.278742 +2476.279642 +2476.309778 +2476.323897 +2476.352635 +2476.366321 +2476.381839 +2476.397923 +2476.410943 +2476.427560 +2476.443611 +2476.456964 +2476.488433 +2476.503584 +2476.549372 +2476.563091 +2476.590963 +2476.606215 +2476.620500 +2476.631056 +2476.663324 +2476.678109 +2476.692062 +2477.413340 +2483.986327 +2483.999414 +2486.705439 +2486.706271 +2486.710966 +2487.706137 +2487.710799 +2488.705703 +2488.711697 +2489.705536 +2490.706201 +2490.711628 +2491.705833 +2491.706133 +2491.713559 +2496.906361 +2497.206860 +2497.607059 +2497.907026 +2498.806992 +2498.908024 +2499.007125 +2499.107358 +2499.506891 +2499.507391 +2499.706525 +2499.707357 +2500.107090 +2500.607090 +2501.306989 +2501.407122 +2501.606822 +2501.706389 +2506.716641 +2506.722901 +2506.760031 +2506.769987 +2506.780011 +2506.800390 +2506.819504 +2506.923201 +2506.947909 +2506.965791 +2507.001755 +2507.030760 +2507.119771 +2507.140550 +2507.178445 +2507.189401 +2507.224499 +2507.244412 +2507.263693 +2507.284705 +2507.303587 +2507.324366 +2507.350739 +2507.375215 +2507.409580 +2507.423666 +2507.456134 +2507.481475 +2507.494995 +2507.515907 +2507.543946 +2507.569154 +2507.581875 +2507.594229 +2507.614475 +2507.646077 +2507.671285 +2507.697592 +2507.710413 +2507.721535 +2507.739983 +2507.751705 +2507.763759 +2507.783706 +2507.793396 +2507.794329 +2507.817772 +2507.819836 +2507.832058 +2507.843812 +2507.893629 +2507.932757 +2507.935754 +2507.945244 +2507.959230 +2507.960362 +2507.985038 +2508.010213 +2508.011944 +2508.023999 +2508.036486 +2508.038751 +2508.064991 +2508.075714 +2508.098524 +2508.112144 +2508.113376 +2508.125497 +2508.148441 +2508.162627 +2508.165257 +2508.188068 +2508.213775 +2508.238084 +2508.249973 +2508.262893 +2508.302720 +2508.329193 +2508.350405 +2508.377079 +2508.379210 +2508.388501 +2508.427162 +2508.437285 +2508.441214 +2508.453169 +2508.480975 +2508.504484 +2508.531358 +2508.553702 +2508.561760 +2508.581674 +2508.608680 +2508.610112 +2508.622100 +2508.623932 +2508.649373 +2508.662859 +2508.688966 +2508.703652 +2508.752370 +2508.792862 +2508.794361 +2508.818703 +2508.829159 +2508.852569 +2508.878410 +2508.878976 +2508.902020 +2508.925463 +2508.935719 +2508.957664 +2508.981207 +2509.000421 +2509.024164 +2509.048340 +2509.064391 +2509.087534 +2509.104484 +2509.158896 +2509.173648 +2509.185003 +2509.196458 +2509.220934 +2509.224730 +2509.238450 +2509.252502 +2509.277544 +2509.289532 +2509.306915 +2509.334054 +2509.352835 +2509.354700 +2509.364557 +2509.379409 +2509.391263 +2509.402652 +2509.454966 +2509.469652 +2509.472549 +2509.485003 +2509.498756 +2509.511710 +2509.540381 +2509.555666 +2509.580441 +2509.583238 +2509.609212 +2509.666421 +2509.679275 +2509.692695 +2509.708213 +2509.731856 +2509.746475 +2509.761293 +2509.776478 +2509.790231 +2509.802818 +2509.816738 +2509.829025 +2509.844210 +2509.859495 +2509.873947 +2509.884403 +2509.896491 +2509.910710 +2509.925062 +2509.935219 +2509.938149 +2509.950670 +2509.963424 +2509.965289 +2509.979475 +2509.991363 +2510.004183 +2510.020467 +2510.057397 +2510.058629 +2510.070517 +2510.085668 +2510.113141 +2510.142445 +2510.169052 +2510.196191 +2510.208612 +2510.237849 +2510.251036 +2510.280307 +2510.294126 +2510.321732 +2510.334120 +2510.359661 +2510.372248 +2510.386634 +2510.400120 +2510.412142 +2510.416737 +2510.429191 +2510.458096 +2510.471682 +2510.472714 +2510.488665 +2510.503084 +2510.518635 +2510.533720 +2510.545175 +2510.561758 +2510.588565 +2510.602418 +2510.617536 +2510.631289 +2510.645275 +2510.655365 +2510.657629 +2510.669151 +2510.682837 +2510.697689 +2510.738648 +2510.753167 +2510.766820 +2510.780806 +2510.783736 +2510.793793 +2510.795158 +2510.810643 +2510.839547 +2510.854798 +2510.866820 +2510.879907 +2510.896623 +2510.927859 +2510.943709 +2510.960626 +2510.986933 +2511.003416 +2511.019534 +2511.035451 +2511.049237 +2511.065188 +2511.092827 +2511.109210 +2511.139946 +2511.154165 +2511.184535 +2511.187033 +2511.198987 +2511.214938 +2511.229190 +2511.245407 +2511.247339 +2511.260259 +2511.275377 +2511.289130 +2511.306047 +2511.317469 +2511.319367 +2511.333386 +2511.349370 +2511.362257 +2511.381538 +2511.395690 +2511.409810 +2511.427126 +2511.440412 +2511.455397 +2511.481671 +2511.511641 +2511.544242 +2511.587532 +2511.615404 +2511.645041 +2511.654431 +2511.666419 +2511.679972 +2511.692660 +2520.070207 +2523.705701 +2523.706434 +2523.712062 +2524.712327 +2525.705000 +2525.705433 +2525.706432 +2525.711260 +2526.711326 +2526.711925 +2531.811654 +2533.705558 +2534.007023 +2534.115514 +2534.407256 +2535.106589 +2536.506588 +2541.710479 +2541.715640 +2541.721834 +2541.737385 +2541.744478 +2541.757598 +2541.774015 +2541.806716 +2541.852170 +2541.862626 +2541.892330 +2541.897924 +2541.905883 +2541.918204 +2541.943845 +2541.965423 +2541.984238 +2541.986769 +2542.017338 +2542.018137 +2542.043945 +2542.053735 +2542.065823 +2542.080342 +2542.093695 +2542.114174 +2542.120768 +2542.141680 +2542.160994 +2542.194760 +2542.208880 +2542.234720 +2542.255500 +2542.255866 +2542.270851 +2542.307814 +2542.332156 +2542.344011 +2542.354567 +2542.379908 +2542.381074 +2542.393561 +2542.417338 +2542.431890 +2542.440481 +2542.468586 +2542.493428 +2542.517471 +2542.519569 +2542.533421 +2542.554167 +2542.568886 +2542.579309 +2542.600887 +2542.622865 +2542.636685 +2542.670151 +2542.689598 +2542.691929 +2542.706681 +2542.730657 +2542.742479 +2542.752402 +2542.777977 +2542.830124 +2542.842146 +2542.876844 +2542.948439 +2542.963125 +2542.989132 +2543.028459 +2543.065056 +2543.087966 +2543.101453 +2543.115872 +2543.139448 +2543.176644 +2543.200953 +2543.213407 +2543.215172 +2543.239182 +2543.240547 +2543.263724 +2543.277410 +2543.277676 +2543.299022 +2543.321299 +2543.345042 +2543.366654 +2543.379874 +2543.393394 +2543.417270 +2543.466721 +2543.468885 +2543.484303 +2543.495725 +2543.498156 +2543.508479 +2543.522498 +2543.547240 +2543.554832 +2543.572748 +2543.586467 +2543.598955 +2543.611675 +2543.622398 +2543.648072 +2543.665055 +2543.692228 +2543.704982 +2543.741978 +2543.758728 +2543.782438 +2543.804782 +2543.818002 +2543.829557 +2543.847673 +2543.860293 +2543.873513 +2543.887533 +2543.913174 +2543.936584 +2543.950803 +2543.987732 +2544.015205 +2544.026327 +2544.064422 +2544.080739 +2544.081971 +2544.117669 +2544.144309 +2544.146140 +2544.157662 +2544.179374 +2544.197589 +2544.210310 +2544.211841 +2544.256597 +2544.257962 +2544.269717 +2544.284902 +2544.306946 +2544.319700 +2544.331288 +2544.331988 +2544.345707 +2544.371914 +2544.424928 +2544.450136 +2544.473280 +2544.486533 +2544.487565 +2544.499187 +2544.521565 +2544.535184 +2544.547572 +2544.567818 +2544.580739 +2544.605614 +2544.617236 +2544.641545 +2544.654365 +2544.666653 +2544.669716 +2544.694159 +2544.710709 +2544.723762 +2544.736916 +2544.750802 +2544.763522 +2544.774611 +2544.788164 +2544.804315 +2544.817202 +2544.827425 +2544.829956 +2544.844142 +2544.857462 +2544.868917 +2544.881238 +2544.896356 +2544.923396 +2544.936216 +2544.948670 +2544.969716 +2544.984734 +2544.997688 +2545.012207 +2545.023995 +2545.025627 +2545.039380 +2545.053699 +2545.083302 +2545.093359 +2545.116536 +2545.129356 +2545.143942 +2545.187598 +2545.197122 +2545.211740 +2545.229722 +2545.254031 +2545.316536 +2545.328524 +2545.330022 +2545.341344 +2545.352333 +2545.367751 +2545.379706 +2545.380571 +2545.403449 +2545.408111 +2545.428723 +2545.433052 +2545.444741 +2545.468483 +2545.482370 +2545.495789 +2545.524527 +2545.536615 +2545.553665 +2545.565386 +2545.578040 +2545.608776 +2545.636981 +2545.650068 +2545.662822 +2545.675310 +2545.692526 +2545.720465 +2545.736016 +2545.750002 +2545.793092 +2545.805013 +2545.829122 +2545.839745 +2545.851433 +2545.861823 +2545.892359 +2545.908376 +2545.908876 +2545.924627 +2545.937081 +2545.951333 +2545.980804 +2545.994623 +2546.008676 +2546.021263 +2546.038346 +2546.049735 +2546.079006 +2546.095689 +2546.123195 +2546.139645 +2546.150201 +2546.206878 +2546.222895 +2546.262722 +2546.289628 +2546.321097 +2546.335882 +2546.348170 +2546.363488 +2546.388796 +2546.399119 +2546.414836 +2546.429422 +2546.456661 +2546.469814 +2546.483101 +2546.498552 +2546.508243 +2546.523760 +2546.534816 +2546.550201 +2546.567117 +2546.596088 +2546.608309 +2546.625725 +2546.642242 +2546.656727 +2546.670181 +2546.685665 +2546.696055 +2556.710230 +2556.712428 +2557.706300 +2558.704567 +2558.711294 +2559.705565 +2565.032866 +2565.053912 +2566.705192 +2566.710254 +2566.710487 +2566.710953 +2567.006957 +2567.606690 +2567.606723 +2567.806523 +2567.906989 +2567.907322 +2568.107189 +2568.506889 +2568.607588 +2568.906788 +2569.307654 +2569.806621 +2569.807054 +2569.906588 +2570.206687 +2570.406387 +2571.306753 +2571.506719 +2571.606786 +2571.606952 +2572.260198 +2573.891732 +2573.935188 +2576.710577 +2576.735752 +2576.764123 +2576.764756 +2576.765056 +2576.776311 +2576.809278 +2576.819901 +2576.832388 +2576.912808 +2576.922132 +2576.923797 +2576.951302 +2576.961326 +2577.000087 +2577.020533 +2577.045741 +2577.069950 +2577.071982 +2577.102118 +2577.110110 +2577.135918 +2577.137716 +2577.149071 +2577.173580 +2577.197856 +2577.221532 +2577.229857 +2577.249571 +2577.251069 +2577.265888 +2577.288598 +2577.303750 +2577.336916 +2577.345441 +2577.365488 +2577.387266 +2577.397156 +2577.434752 +2577.468818 +2577.534119 +2577.569017 +2577.594958 +2577.620399 +2577.641711 +2577.656397 +2577.680572 +2577.692128 +2577.735817 +2577.756763 +2577.766853 +2577.786766 +2577.810209 +2577.832187 +2577.869483 +2577.891262 +2577.913473 +2577.940845 +2577.964522 +2577.988831 +2578.011108 +2578.031388 +2578.084268 +2578.099120 +2578.113073 +2578.148804 +2578.172580 +2578.219633 +2578.238014 +2578.285400 +2578.337348 +2578.369383 +2578.378973 +2578.467218 +2578.479340 +2578.512873 +2578.535617 +2578.556995 +2578.585866 +2578.609443 +2578.653132 +2578.676342 +2578.698587 +2578.719599 +2578.758360 +2578.784301 +2578.814637 +2578.825826 +2578.847138 +2578.945972 +2578.970648 +2579.010708 +2579.036149 +2579.048370 +2579.081537 +2579.133485 +2579.162389 +2579.186665 +2579.203748 +2579.216035 +2579.258326 +2579.285599 +2579.327158 +2579.355629 +2579.380571 +2579.394224 +2579.406445 +2579.494523 +2579.519798 +2579.533851 +2579.598852 +2579.647204 +2579.666418 +2579.693058 +2579.729089 +2579.751733 +2579.778406 +2579.805745 +2579.822362 +2579.846205 +2579.867916 +2579.886664 +2579.895722 +2579.920763 +2579.952898 +2579.977174 +2579.993091 +2580.017100 +2580.029654 +2580.049168 +2580.062222 +2580.077939 +2580.107443 +2580.131686 +2580.146804 +2580.162721 +2580.179971 +2580.193557 +2580.207410 +2580.235615 +2580.262222 +2580.274543 +2580.306211 +2580.321529 +2580.335981 +2580.349767 +2580.373510 +2580.377506 +2580.393124 +2580.407842 +2580.423826 +2580.449101 +2580.467017 +2580.482201 +2580.507110 +2580.523993 +2580.554063 +2580.579737 +2580.599184 +2580.614236 +2580.641375 +2580.655028 +2580.666916 +2580.683933 +2580.710972 +2580.723826 +2580.741342 +2580.755628 +2580.756593 +2580.784499 +2580.799817 +2580.812970 +2580.829554 +2580.844206 +2580.858891 +2580.897852 +2580.914902 +2580.947436 +2580.963087 +2580.994788 +2581.007342 +2581.022827 +2581.050199 +2581.082900 +2581.097552 +2581.142474 +2581.155294 +2581.171711 +2581.187029 +2581.214035 +2581.262154 +2581.291358 +2581.336979 +2581.367548 +2581.394621 +2581.421594 +2581.437512 +2581.449100 +2581.493422 +2581.506210 +2581.521461 +2581.536246 +2581.553629 +2581.568447 +2581.595787 +2581.613302 +2581.626622 +2581.642174 +2581.655560 +2581.669746 +2581.683066 +2589.005902 +2591.710961 +2591.711428 +2592.053052 +2593.712458 +2595.711890 +2595.712456 +2596.711622 +2601.806589 +2602.205923 +2602.206888 +2602.305023 +2602.506422 +2602.609019 +2602.706921 +2602.806655 +2602.907687 +2603.007653 +2603.108020 +2603.206821 +2603.606620 +2603.607386 +2603.907386 +2604.207386 +2604.407019 +2604.607419 +2604.707385 +2604.806220 +2604.907452 +2605.307318 +2605.407584 +2605.506385 +2605.606352 +2605.806785 +2605.807084 +2606.107417 +2606.108116 +2606.206851 +2606.207317 +2606.207783 +2606.209182 +2606.306684 +2606.307650 +2606.606018 +2606.706218 +2606.707117 +2606.709215 +2611.722397 +2611.747904 +2611.777242 +2611.799786 +2611.821997 +2611.858427 +2611.870282 +2611.900219 +2611.927525 +2611.958294 +2611.996722 +2612.005646 +2612.025460 +2612.061490 +2612.096256 +2612.133052 +2612.157361 +2612.181770 +2612.204381 +2612.246472 +2612.281803 +2612.317468 +2612.354630 +2612.366951 +2612.390461 +2612.415503 +2612.438247 +2612.484833 +2612.508077 +2612.547670 +2612.575343 +2612.611340 +2612.637281 +2612.647537 +2612.678906 +2612.731953 +2612.763355 +2612.786764 +2612.820664 +2612.841776 +2612.894823 +2612.923128 +2612.939645 +2612.970714 +2613.011539 +2613.046904 +2613.050567 +2613.085632 +2613.120630 +2613.192891 +2613.217999 +2613.245439 +2613.285565 +2613.298419 +2613.323594 +2613.365019 +2613.399085 +2613.424559 +2613.445538 +2613.481769 +2613.500383 +2613.519831 +2613.562821 +2613.580570 +2613.617699 +2613.654629 +2613.684732 +2613.708209 +2613.748801 +2613.762088 +2613.773244 +2613.790127 +2613.842674 +2613.897852 +2613.972910 +2614.011272 +2614.064352 +2614.100383 +2614.128754 +2614.145471 +2614.157692 +2614.184698 +2614.213103 +2614.239777 +2614.267782 +2614.291292 +2614.321661 +2614.342640 +2614.360156 +2614.386163 +2614.412770 +2614.434282 +2614.458491 +2614.474775 +2614.488694 +2614.500449 +2614.502214 +2614.511738 +2614.539010 +2614.564618 +2614.587828 +2614.604278 +2614.616133 +2614.684498 +2614.715734 +2614.744272 +2614.758224 +2614.768015 +2614.783499 +2614.798251 +2614.809273 +2614.813702 +2614.824891 +2614.827155 +2614.841541 +2614.852830 +2614.870012 +2614.895454 +2614.911704 +2614.938644 +2614.953396 +2614.966816 +2614.995720 +2615.008008 +2615.010672 +2615.023525 +2615.037711 +2615.052696 +2615.062453 +2615.083033 +2615.088694 +2615.104178 +2615.115933 +2615.120795 +2615.129619 +2615.155926 +2615.168014 +2615.184265 +2615.196752 +2615.206209 +2615.219796 +2615.261787 +2615.288460 +2615.304611 +2615.334880 +2615.360954 +2615.372310 +2615.375806 +2615.400015 +2615.401780 +2615.403845 +2615.415433 +2615.443838 +2615.458390 +2615.486728 +2615.502912 +2615.529419 +2615.542972 +2615.555992 +2615.570878 +2615.582066 +2615.594820 +2615.606608 +2615.634414 +2615.651597 +2615.676205 +2615.694820 +2615.712536 +2615.737744 +2615.752762 +2615.765050 +2615.779935 +2615.815466 +2615.829918 +2615.831816 +2615.845369 +2615.861920 +2615.889925 +2615.914400 +2615.932316 +2615.962685 +2615.985562 +2615.999315 +2616.000314 +2616.039242 +2616.058023 +2616.073674 +2616.097151 +2616.133514 +2616.148466 +2616.159788 +2616.174207 +2616.203611 +2616.218662 +2616.235246 +2616.260687 +2616.276072 +2616.294753 +2616.335179 +2616.350464 +2616.381533 +2616.395652 +2616.411336 +2616.425655 +2616.458489 +2616.483997 +2616.499781 +2616.517130 +2616.543371 +2616.546568 +2616.577570 +2616.592688 +2616.611036 +2616.624956 +2616.650730 +2627.706163 +2627.711725 +2628.706329 +2628.712156 +2629.712555 +2630.705994 +2631.712420 +2634.991604 +2636.710617 +2636.815678 +2637.107952 +2638.206819 +2638.207085 +2638.407851 +2638.907418 +2639.007218 +2639.607683 +2639.707217 +2639.907816 +2640.306684 +2640.307216 +2640.407316 +2640.407583 +2640.507349 +2640.807149 +2641.007182 +2641.107515 +2641.306283 +2641.707148 +2642.507481 +2642.602719 +2642.611144 +2642.678543 +2643.556897 +2643.585934 +2643.591595 +2643.604716 +2644.707645 +2644.711807 +2644.717535 +2644.725793 +2646.765085 +2646.810806 +2646.842042 +2646.868349 +2646.901049 +2646.914736 +2646.945139 +2646.983600 +2647.016567 +2647.041975 +2647.064119 +2647.098785 +2647.143007 +2647.212005 +2647.235515 +2647.253330 +2647.315368 +2647.328055 +2647.353630 +2647.378205 +2647.391991 +2647.405544 +2647.476473 +2647.500183 +2647.540476 +2647.575607 +2647.634215 +2647.661322 +2647.688761 +2647.724259 +2647.780303 +2647.813003 +2647.843539 +2647.872643 +2647.909673 +2647.943173 +2647.952963 +2648.010039 +2648.101448 +2648.127755 +2648.166183 +2648.189227 +2648.203879 +2648.216799 +2648.243239 +2648.300415 +2648.330052 +2648.354728 +2648.392057 +2648.418430 +2648.448800 +2648.488594 +2648.503778 +2648.553828 +2648.582200 +2648.618797 +2648.636845 +2648.659123 +2648.700848 +2648.724025 +2648.750531 +2648.817464 +2648.845037 +2648.859023 +2648.885563 +2648.898383 +2648.937644 +2648.993954 +2649.001347 +2649.042539 +2649.070478 +2649.084197 +2649.134747 +2649.148899 +2649.192755 +2649.248466 +2649.286994 +2649.305176 +2649.392222 +2649.427987 +2649.439309 +2649.467913 +2649.478003 +2649.515998 +2649.556691 +2649.585895 +2649.609238 +2649.677470 +2649.692289 +2649.719794 +2649.746801 +2649.764117 +2649.777803 +2649.805076 +2649.824356 +2649.850996 +2649.863584 +2649.891123 +2649.919195 +2649.946767 +2649.975039 +2649.989591 +2650.015232 +2650.030750 +2650.056924 +2650.074639 +2650.100214 +2650.122125 +2650.175871 +2650.191189 +2650.235878 +2650.249764 +2650.277137 +2650.293087 +2650.319095 +2650.337476 +2650.377769 +2650.392787 +2650.432514 +2650.448865 +2650.479268 +2650.494852 +2650.510303 +2650.524655 +2650.563683 +2650.579001 +2650.581199 +2650.616430 +2650.646034 +2650.669144 +2650.684695 +2650.709204 +2650.722457 +2650.750396 +2650.765548 +2650.780233 +2650.796650 +2650.810802 +2650.838575 +2650.854991 +2650.870110 +2650.886194 +2650.915997 +2650.958221 +2650.975204 +2650.991888 +2651.028018 +2651.052028 +2651.078634 +2651.096450 +2651.109070 +2651.152294 +2651.155990 +2651.168078 +2651.207605 +2651.221158 +2651.244502 +2651.258687 +2651.315297 +2651.331781 +2651.360019 +2651.374838 +2651.403143 +2651.449063 +2651.464848 +2651.476802 +2651.492220 +2651.508837 +2651.534178 +2651.548830 +2651.574305 +2651.591954 +2651.619027 +2651.640239 +2651.673172 +2659.941629 +2661.711191 +2662.712555 +2663.712654 +2664.922177 +2665.309189 +2665.705426 +2665.706225 +2665.707124 +2666.706824 +2666.712418 +2666.713151 +2671.711447 +2671.906219 +2672.706818 +2673.008116 +2673.707516 +2673.708049 +2673.807849 +2674.307382 +2674.407748 +2674.507449 +2674.607915 +2674.907415 +2674.907681 +2675.007348 +2675.107248 +2675.607481 +2675.707214 +2675.707647 +2675.806548 +2675.807680 +2676.106648 +2676.207280 +2676.407447 +2676.706614 +2676.707380 +2681.707108 +2681.716066 +2681.745304 +2681.745736 +2681.773076 +2681.804544 +2681.816432 +2681.825989 +2681.838810 +2681.847834 +2681.849732 +2681.914867 +2681.916699 +2681.927321 +2681.966282 +2681.973642 +2681.974008 +2681.999616 +2682.017431 +2682.027621 +2682.066316 +2682.087561 +2682.116332 +2682.140175 +2682.141307 +2682.178403 +2682.199416 +2682.211737 +2682.244437 +2682.261920 +2682.302113 +2682.325689 +2682.353495 +2682.362119 +2682.377571 +2682.412203 +2682.422359 +2682.460821 +2682.485696 +2682.507341 +2682.536145 +2682.549399 +2682.573241 +2682.606775 +2682.643305 +2682.670711 +2682.694953 +2682.720094 +2682.755592 +2682.776238 +2682.798516 +2682.836878 +2682.866714 +2682.890357 +2682.917663 +2682.943271 +2682.985729 +2683.030850 +2683.034680 +2683.058989 +2683.096651 +2683.109871 +2683.130983 +2683.148033 +2683.175305 +2683.199914 +2683.201379 +2683.224922 +2683.252228 +2683.252961 +2683.277270 +2683.327753 +2683.341273 +2683.365781 +2683.409105 +2683.431249 +2683.460587 +2683.487293 +2683.513400 +2683.550929 +2683.565448 +2683.566680 +2683.613733 +2683.626587 +2683.661685 +2683.689557 +2683.714865 +2683.741872 +2683.777736 +2683.816830 +2683.857023 +2683.872508 +2683.882964 +2683.907806 +2683.921858 +2683.936543 +2683.962617 +2684.010403 +2684.025221 +2684.051562 +2684.064116 +2684.091422 +2684.106806 +2684.132148 +2684.156090 +2684.180200 +2684.208172 +2684.234845 +2684.249797 +2684.273573 +2684.291255 +2684.293153 +2684.347699 +2684.377136 +2684.402211 +2684.404808 +2684.429250 +2684.448098 +2684.492187 +2684.505973 +2684.520326 +2684.557921 +2684.585161 +2684.614132 +2684.629283 +2684.653060 +2684.677235 +2684.694718 +2684.696816 +2684.709869 +2684.734578 +2684.746333 +2684.748864 +2684.760785 +2684.761451 +2684.795384 +2684.816363 +2684.841604 +2684.857022 +2684.868411 +2684.884528 +2684.907838 +2684.952094 +2684.968411 +2684.994185 +2685.012200 +2685.026919 +2685.038674 +2685.053692 +2685.097315 +2685.139273 +2685.156156 +2685.169842 +2685.186625 +2685.197481 +2685.209669 +2685.225620 +2685.252160 +2685.266479 +2685.281863 +2685.295750 +2685.337042 +2685.351460 +2685.363715 +2685.379466 +2685.408437 +2685.421857 +2685.424654 +2685.437941 +2685.454024 +2685.464281 +2685.478933 +2685.494617 +2685.510834 +2685.533478 +2685.536509 +2685.539406 +2685.551494 +2685.623721 +2685.639539 +2685.723355 +2685.738973 +2685.754291 +2685.779832 +2685.802875 +2685.807004 +2685.817794 +2685.832645 +2685.849828 +2685.860617 +2685.863415 +2685.879565 +2685.892952 +2685.919991 +2685.934976 +2685.948962 +2685.964147 +2685.979698 +2686.004374 +2686.020757 +2686.045532 +2686.068143 +2686.097181 +2686.126152 +2686.127983 +2686.140537 +2686.159885 +2686.175003 +2686.190387 +2686.218126 +2686.246365 +2686.248762 +2686.264114 +2686.279698 +2686.296481 +2686.341603 +2686.372538 +2686.385059 +2686.400510 +2686.417527 +2686.440271 +2686.483727 +2686.487290 +2686.499811 +2686.529748 +2686.534243 +2686.561749 +2686.579997 +2686.593451 +2686.596214 +2686.623887 +2686.684859 +2686.686224 +2687.246097 +2687.813096 +2687.844631 +2689.534040 +2698.706592 +2698.707957 +2699.712751 +2700.712184 +2700.712817 +2701.712383 +2701.713149 +2706.807516 +2707.107016 +2707.607915 +2708.208481 +2709.107880 +2709.507946 +2709.508379 +2709.808113 +2710.207912 +2710.308046 +2710.507945 +2710.608045 +2710.807879 +2710.907845 +2711.007579 +2711.008311 +2711.108744 +2711.207179 +2711.307978 +2711.408544 +2711.708011 +2715.133748 +2715.143106 +2715.152763 +2716.705575 +2716.711702 +2716.716531 +2716.722691 +2716.723224 +2716.731349 +2716.749464 +2716.778502 +2716.799448 +2716.800447 +2716.819528 +2716.852095 +2716.872175 +2716.885262 +2716.896584 +2716.928185 +2716.947466 +2716.947699 +2716.948066 +2716.959820 +2716.971009 +2716.971309 +2716.981499 +2716.991988 +2717.011702 +2717.012534 +2717.139707 +2717.195285 +2717.238575 +2717.250929 +2717.369044 +2717.381998 +2717.439940 +2717.472541 +2717.509537 +2717.538641 +2717.572174 +2717.598281 +2717.645068 +2717.669743 +2717.705341 +2717.730016 +2717.757489 +2717.779367 +2717.807838 +2717.830482 +2717.858021 +2717.880366 +2717.889090 +2717.936043 +2717.963815 +2718.000112 +2718.056722 +2718.066613 +2718.081464 +2718.112833 +2718.126852 +2718.162184 +2718.190255 +2718.254891 +2718.267944 +2718.289756 +2718.368677 +2718.406073 +2718.441437 +2718.460285 +2718.488424 +2718.525120 +2718.541437 +2718.567711 +2718.592619 +2718.608603 +2718.643968 +2718.669609 +2718.683462 +2718.715596 +2718.780431 +2718.808570 +2718.822622 +2718.835177 +2718.846865 +2718.896449 +2718.923888 +2718.948896 +2718.992253 +2719.039505 +2719.067677 +2719.083761 +2719.093618 +2719.107504 +2719.181064 +2719.192985 +2719.220058 +2719.232013 +2719.258186 +2719.271207 +2719.308503 +2719.324620 +2719.340937 +2719.368842 +2719.395582 +2719.420857 +2719.438140 +2719.460917 +2719.492252 +2719.508003 +2719.543867 +2719.544367 +2719.575402 +2719.631912 +2719.640704 +2719.667776 +2719.694150 +2719.696015 +2719.710733 +2719.752092 +2719.779598 +2719.792984 +2719.805738 +2719.807437 +2719.821256 +2719.834476 +2719.860417 +2719.862382 +2719.874336 +2719.917626 +2719.931313 +2719.943933 +2719.968142 +2719.999245 +2720.029348 +2720.044766 +2720.070706 +2720.086757 +2720.109368 +2720.110267 +2720.134143 +2720.159018 +2720.171306 +2720.172638 +2720.199910 +2720.238905 +2720.253757 +2720.271772 +2720.299910 +2720.326184 +2720.341868 +2720.354622 +2720.372138 +2720.399377 +2720.424253 +2720.443666 +2720.445165 +2720.459317 +2720.484559 +2720.503174 +2720.529148 +2720.548328 +2720.576833 +2720.592784 +2720.608402 +2720.633110 +2720.652358 +2720.696547 +2720.723719 +2720.741968 +2720.769041 +2720.797779 +2720.839936 +2720.855088 +2720.881362 +2720.908634 +2720.927282 +2720.950859 +2720.970406 +2720.983393 +2720.998811 +2721.008901 +2721.036073 +2721.058951 +2721.072703 +2721.088321 +2721.128980 +2721.147928 +2721.161182 +2721.189986 +2721.246163 +2721.262480 +2721.276966 +2721.305237 +2721.317092 +2721.339803 +2721.352890 +2721.368974 +2721.399809 +2721.411964 +2721.423586 +2721.438571 +2721.459883 +2721.484358 +2721.497645 +2721.518957 +2721.532610 +2721.554821 +2721.586389 +2721.603672 +2721.613629 +2721.615693 +2721.626582 +2721.628847 +2721.641134 +2721.654521 +2721.657918 +2721.669206 +2721.683958 +2721.692849 +2729.565036 +2729.581753 +2732.705925 +2735.706755 +2736.713114 +2736.894100 +2736.943017 +2737.072188 +2737.200826 +2737.451209 +2737.494665 +2737.671155 +2737.785341 +2737.973552 +2738.009183 +2739.969754 +2742.808279 +2743.208179 +2743.307613 +2743.507679 +2743.507879 +2744.307512 +2744.507678 +2744.607712 +2744.707845 +2745.507444 +2745.807544 +2746.107477 +2746.307510 +2746.317400 +2751.706039 +2751.730282 +2751.739739 +2751.740305 +2751.740572 +2751.757055 +2751.803975 +2751.805074 +2751.814464 +2751.825653 +2751.826286 +2751.836509 +2751.836942 +2751.858653 +2751.859919 +2751.880132 +2751.901843 +2751.911767 +2751.930948 +2751.932846 +2751.965979 +2752.015263 +2752.051627 +2752.053658 +2752.092086 +2752.101377 +2752.139239 +2752.176335 +2752.186891 +2752.213265 +2752.251760 +2752.310201 +2752.359419 +2752.446931 +2752.476868 +2752.500211 +2752.534643 +2752.557620 +2752.581363 +2752.605706 +2752.634011 +2752.683528 +2752.706205 +2752.730880 +2752.767344 +2752.791286 +2752.820291 +2752.843601 +2752.907537 +2752.956355 +2752.967910 +2752.989788 +2753.032212 +2753.068675 +2753.082628 +2753.109468 +2753.123953 +2753.149095 +2753.171406 +2753.218359 +2753.279464 +2753.300843 +2753.317460 +2753.345632 +2753.371206 +2753.424886 +2753.484826 +2753.528415 +2753.547629 +2753.584959 +2753.612198 +2753.649760 +2753.679597 +2753.720057 +2753.742501 +2753.762381 +2753.798145 +2753.827982 +2753.853790 +2753.908102 +2753.946830 +2753.970007 +2753.990852 +2754.028781 +2754.043167 +2754.076567 +2754.100309 +2754.127815 +2754.140935 +2754.170506 +2754.196014 +2754.225051 +2754.225784 +2754.281262 +2754.350326 +2754.377365 +2754.391618 +2754.418291 +2754.458418 +2754.473836 +2754.484125 +2754.487255 +2754.500476 +2754.514928 +2754.528847 +2754.558784 +2754.583326 +2754.629713 +2754.670972 +2754.686722 +2754.714162 +2754.715061 +2754.739703 +2754.766975 +2754.782560 +2754.798044 +2754.813795 +2754.839603 +2754.856453 +2754.882560 +2754.899476 +2754.936839 +2754.970905 +2754.983292 +2755.000642 +2755.024951 +2755.026549 +2755.043898 +2755.057784 +2755.073768 +2755.119256 +2755.133342 +2755.162613 +2755.191151 +2755.206669 +2755.222852 +2755.250258 +2755.281927 +2755.296013 +2755.312063 +2755.339136 +2755.353089 +2755.381727 +2755.393615 +2755.408866 +2755.425916 +2755.454920 +2755.471470 +2755.487221 +2755.530211 +2755.578630 +2755.606468 +2755.623485 +2755.650358 +2755.653322 +2755.699009 +2755.712562 +2755.729612 +2755.745596 +2755.761014 +2755.805902 +2755.820354 +2755.821786 +2755.836372 +2755.851956 +2755.868273 +2755.895346 +2755.910065 +2755.926681 +2755.942965 +2755.954387 +2755.970271 +2755.988253 +2756.003038 +2756.004836 +2756.017757 +2756.029512 +2756.049991 +2756.074966 +2756.108832 +2756.149924 +2756.163744 +2756.181027 +2756.197044 +2756.267773 +2756.286721 +2756.302172 +2756.316591 +2756.345129 +2756.359182 +2756.388086 +2756.420387 +2756.435106 +2756.449525 +2756.464077 +2756.490717 +2756.507233 +2756.520720 +2756.535172 +2756.553987 +2756.578862 +2756.605735 +2756.633840 +2756.648026 +2756.670803 +2756.685089 +2756.701039 +2766.710953 +2767.705757 +2770.711881 +2771.711780 +2776.710676 +2776.811309 +2777.606813 +2777.806480 +2777.906380 +2778.206879 +2778.806778 +2779.006478 +2779.406245 +2779.406611 +2779.806711 +2780.406410 +2780.606710 +2780.706477 +2780.906210 +2781.305910 +2781.406709 +2781.506309 +2786.709867 +2786.714896 +2786.721389 +2786.737040 +2786.746597 +2786.777766 +2786.786757 +2786.798046 +2786.820490 +2786.821289 +2786.860816 +2786.890054 +2786.913930 +2786.938605 +2786.969208 +2786.970606 +2786.988522 +2787.011166 +2787.021922 +2787.060949 +2787.069840 +2787.141868 +2787.179497 +2787.214695 +2787.273903 +2787.301841 +2787.313030 +2787.400143 +2787.425784 +2787.498511 +2787.530812 +2787.554821 +2787.573902 +2787.613296 +2787.626849 +2787.651724 +2787.679230 +2787.701641 +2787.727715 +2787.728914 +2787.776866 +2787.853722 +2787.882061 +2787.905837 +2787.930712 +2788.019290 +2788.037638 +2788.051025 +2788.107202 +2788.120988 +2788.159616 +2788.183226 +2788.212963 +2788.225717 +2788.302973 +2788.368307 +2788.378797 +2788.420355 +2788.431943 +2788.445963 +2788.482160 +2788.499010 +2788.523918 +2788.537072 +2788.549393 +2788.563645 +2788.576565 +2788.577964 +2788.629546 +2788.652889 +2788.668074 +2788.690618 +2788.717191 +2788.768373 +2788.792416 +2788.821354 +2788.887987 +2788.943165 +2788.980428 +2788.981627 +2788.995413 +2789.031543 +2789.047394 +2789.062013 +2789.074500 +2789.100807 +2789.126781 +2789.149625 +2789.166741 +2789.188053 +2789.209898 +2789.223451 +2789.284224 +2789.311163 +2789.338902 +2789.392582 +2789.407034 +2789.420521 +2789.446195 +2789.461779 +2789.487320 +2789.501806 +2789.502871 +2789.527380 +2789.530311 +2789.572169 +2789.612795 +2789.628346 +2789.654253 +2789.669371 +2789.681626 +2789.682725 +2789.724550 +2789.739468 +2789.754087 +2789.778729 +2789.794579 +2789.796111 +2789.821919 +2789.834972 +2789.851722 +2789.866441 +2789.889451 +2789.906501 +2789.921386 +2789.943697 +2789.963544 +2789.977796 +2789.991016 +2790.004469 +2790.019188 +2790.033107 +2790.057916 +2790.072768 +2790.087853 +2790.102704 +2790.133573 +2790.145295 +2790.173467 +2790.190417 +2790.205435 +2790.220054 +2790.235571 +2790.262245 +2790.279627 +2790.321852 +2790.337969 +2790.350090 +2790.353120 +2790.368805 +2790.382324 +2790.411961 +2790.425182 +2790.440300 +2790.484456 +2790.498808 +2790.513526 +2790.524948 +2790.541232 +2790.555718 +2790.569371 +2790.585355 +2790.599674 +2790.614159 +2790.642031 +2790.645628 +2790.658515 +2790.674665 +2790.685987 +2790.718022 +2790.734206 +2790.748225 +2790.791348 +2790.803703 +2790.830809 +2790.845461 +2790.896476 +2790.911395 +2790.925681 +2790.980492 +2790.994911 +2791.018521 +2791.032873 +2791.063243 +2791.077362 +2791.107066 +2791.123649 +2791.137802 +2791.153752 +2791.180925 +2791.184655 +2791.230742 +2791.246426 +2791.258114 +2791.272500 +2791.304701 +2791.327279 +2791.340698 +2791.352686 +2791.376762 +2791.408198 +2791.423682 +2791.452187 +2791.463575 +2791.479460 +2791.495910 +2791.506999 +2791.519619 +2791.531141 +2791.547958 +2791.562743 +2791.580791 +2791.619519 +2791.665174 +2791.678660 +2791.690515 +2791.701670 +2802.711017 +2803.711249 +2804.710715 +2804.711980 +2805.705386 +2806.710280 +2812.307278 +2812.906544 +2813.106811 +2813.407010 +2813.606843 +2813.706177 +2814.406043 +2814.406809 +2814.606742 +2815.006476 +2815.406575 +2815.706875 +2815.707241 +2816.006008 +2816.306941 +2816.406641 +2816.407040 +2816.706241 +2821.706003 +2821.715693 +2821.721554 +2821.722553 +2821.730312 +2821.730611 +2821.742433 +2821.750658 +2821.758484 +2821.765743 +2821.800675 +2821.838204 +2821.859549 +2821.886489 +2821.915227 +2821.944164 +2821.976898 +2821.999243 +2822.039902 +2822.062746 +2822.082692 +2822.084024 +2822.152156 +2822.190451 +2822.208766 +2822.243332 +2822.281627 +2822.300441 +2822.318023 +2822.364910 +2822.365909 +2822.388753 +2822.437570 +2822.467008 +2822.478330 +2822.500807 +2822.515226 +2822.537237 +2822.554420 +2822.576731 +2822.634673 +2822.661946 +2822.672902 +2822.682925 +2822.706535 +2822.729545 +2822.751490 +2822.788319 +2822.809232 +2822.845562 +2822.868339 +2822.890517 +2822.905735 +2822.960447 +2822.982825 +2823.040067 +2823.076031 +2823.105235 +2823.115126 +2823.141266 +2823.167506 +2823.180760 +2823.248525 +2823.268372 +2823.303171 +2823.314692 +2823.342698 +2823.380793 +2823.434905 +2823.444995 +2823.482524 +2823.546261 +2823.570636 +2823.614059 +2823.628778 +2823.651955 +2823.679327 +2823.691748 +2823.716357 +2823.738934 +2823.778828 +2823.802204 +2823.816424 +2823.837636 +2823.838968 +2823.863110 +2823.879194 +2823.905101 +2823.919820 +2823.945161 +2823.955484 +2823.980859 +2824.006833 +2824.031042 +2824.053786 +2824.088684 +2824.102204 +2824.127945 +2824.175664 +2824.203203 +2824.227712 +2824.242930 +2824.345594 +2824.391781 +2824.402903 +2824.413859 +2824.435271 +2824.460179 +2824.480492 +2824.519120 +2824.545893 +2824.571934 +2824.573799 +2824.599773 +2824.612393 +2824.653253 +2824.668704 +2824.681158 +2824.706632 +2824.719520 +2824.732007 +2824.761811 +2824.828577 +2824.841631 +2824.896442 +2824.913159 +2824.940332 +2824.970701 +2825.000838 +2825.037668 +2825.057048 +2825.070502 +2825.084987 +2825.111560 +2825.128477 +2825.158314 +2825.181157 +2825.211494 +2825.251420 +2825.267371 +2825.293478 +2825.309296 +2825.324314 +2825.349955 +2825.378393 +2825.392246 +2825.450455 +2825.493811 +2825.506032 +2825.519019 +2825.532506 +2825.534737 +2825.582422 +2825.613458 +2825.641796 +2825.655316 +2825.670634 +2825.728010 +2825.775196 +2825.819086 +2825.863708 +2825.878826 +2825.893345 +2825.922249 +2825.951819 +2825.990248 +2826.004733 +2826.033404 +2826.074896 +2826.121583 +2826.149921 +2826.177460 +2826.179591 +2826.180790 +2826.195775 +2826.208895 +2826.224746 +2826.239265 +2826.251553 +2826.264173 +2826.277793 +2826.293377 +2826.294976 +2826.309195 +2826.322482 +2826.342728 +2826.356015 +2826.368502 +2826.453717 +2826.468169 +2826.481822 +2826.501502 +2826.525845 +2826.537866 +2826.551985 +2826.554116 +2826.596074 +2826.627676 +2826.643227 +2826.659344 +2826.675562 +2826.688216 +2826.698339 +2826.702668 +2831.079820 +2831.096969 +2831.162404 +2831.208657 +2831.319513 +2831.477022 +2831.490242 +2832.056975 +2832.064967 +2832.110887 +2832.191573 +2832.717347 +2833.422841 +2833.456907 +2833.759038 +2833.776953 +2833.795967 +2834.012717 +2834.841421 +2834.876552 +2835.027834 +2835.058470 +2835.068360 +2835.091837 +2835.152709 +2835.217145 +2836.044217 +2836.054040 +2836.080247 +2836.115113 +2836.162165 +2836.239754 +2836.814646 +2836.835558 +2837.266760 +2837.881245 +2837.883709 +2837.884641 +2837.885107 +2838.506952 +2838.641550 +2838.664727 +2838.883641 +2840.032957 +2840.094163 +2840.151306 +2841.090599 +2841.110812 +2841.121102 +2841.169486 +2841.206882 +2844.879573 +2844.885134 +2845.290761 +2845.381537 +2845.382336 +2845.780604 +2846.288329 +2846.488329 +2847.289360 +2848.088194 +2848.289593 +2848.582266 +2848.888327 +2849.288126 +2852.803807 +2854.884857 +2854.889852 +2854.897944 +2854.913562 +2854.939902 +2854.959116 +2854.980095 +2855.018557 +2855.038603 +2855.073535 +2855.085024 +2855.104870 +2855.125150 +2855.149426 +2855.175333 +2855.198776 +2855.233941 +2855.268906 +2855.324650 +2855.346362 +2855.356019 +2855.369206 +2855.394980 +2855.405403 +2855.430211 +2855.451690 +2855.497411 +2855.508267 +2855.532376 +2855.556518 +2855.602306 +2855.630311 +2855.642665 +2855.669672 +2855.682026 +2855.704370 +2855.727181 +2855.759082 +2855.777863 +2855.802772 +2855.827913 +2855.856185 +2855.887520 +2855.909365 +2855.929079 +2855.950024 +2856.014860 +2856.049425 +2856.050790 +2856.072002 +2856.135039 +2856.153687 +2856.178962 +2856.203937 +2856.230843 +2856.254819 +2856.277230 +2856.303904 +2856.328279 +2856.355352 +2856.405369 +2856.431343 +2856.462145 +2856.495645 +2856.518755 +2856.553254 +2856.578096 +2856.592748 +2856.621053 +2856.658116 +2856.682491 +2856.724016 +2856.749391 +2856.776830 +2856.777996 +2856.791782 +2856.817456 +2856.843597 +2856.855485 +2856.866907 +2856.889218 +2856.911962 +2856.977063 +2857.010363 +2857.043596 +2857.058382 +2857.094679 +2857.110163 +2857.133007 +2857.150023 +2857.165807 +2857.191715 +2857.215391 +2857.227579 +2857.252820 +2857.267306 +2857.294246 +2857.307166 +2857.333107 +2857.345195 +2857.357482 +2857.397742 +2857.422983 +2857.434272 +2857.435604 +2857.450323 +2857.478794 +2857.488185 +2857.505268 +2857.528977 +2857.560412 +2857.603702 +2857.617455 +2857.632907 +2857.647192 +2857.670369 +2857.687052 +2857.700073 +2857.731608 +2857.768404 +2857.780559 +2857.793080 +2857.807232 +2857.823149 +2857.832906 +2857.836336 +2857.876596 +2857.903636 +2857.915757 +2857.929643 +2857.942796 +2857.967139 +2858.007865 +2858.023282 +2858.050289 +2858.072300 +2858.128710 +2858.151754 +2858.165507 +2858.178860 +2858.192280 +2858.204201 +2858.230275 +2858.243262 +2858.256616 +2858.270768 +2858.286852 +2858.341397 +2858.358147 +2858.359612 +2858.371867 +2858.387018 +2858.398007 +2858.413292 +2858.430708 +2858.443462 +2858.456549 +2858.472133 +2858.487518 +2858.516489 +2858.542862 +2858.574631 +2858.612226 +2858.640198 +2858.667737 +2858.679559 +2858.693378 +2858.709962 +2858.723648 +2858.735270 +2858.751920 +2858.763242 +2858.771034 +2858.783888 +2858.792446 +2858.820351 +2858.834437 +2858.859279 +2858.886352 +2858.897474 +2858.909062 +2858.922682 +2858.951653 +2858.964940 +2858.967004 +2858.979525 +2858.993778 +2858.995309 +2858.996775 +2859.010128 +2859.011160 +2859.021650 +2859.036302 +2859.038899 +2859.063608 +2859.098806 +2859.111027 +2859.124747 +2859.133971 +2859.157847 +2859.172399 +2859.185452 +2859.198273 +2859.210394 +2859.228709 +2859.243161 +2859.260877 +2859.270834 +2859.290980 +2859.304400 +2859.329808 +2859.361043 +2859.378393 +2859.421150 +2859.423547 +2859.438066 +2859.453251 +2859.466604 +2859.470401 +2859.478060 +2859.483421 +2859.499039 +2859.508729 +2859.552152 +2859.600370 +2859.611992 +2859.627310 +2859.658246 +2859.688416 +2859.736368 +2859.759112 +2859.780990 +2859.793344 +2859.801502 +2859.822382 +2859.839331 +2859.855282 +2865.246585 +2865.262736 +2870.881278 +2870.887106 +2871.887071 +2871.888237 +2872.880943 +2872.887403 +2872.889135 +2873.886970 +2874.886902 +2874.887302 +2874.889033 +2875.184338 +2878.895789 +2878.904147 +2879.765718 +2879.770613 +2879.815768 +2879.881769 +2879.883833 +2879.887330 +2880.183167 +2880.183766 +2880.384865 +2880.599950 +2880.683666 +2880.684265 +2880.684998 +2887.127782 +2889.923484 +2889.942298 +2889.969904 +2890.026481 +2890.062578 +2890.096544 +2890.097410 +2890.123517 +2890.146460 +2890.182591 +2890.203870 +2890.240433 +2890.264109 +2890.298974 +2890.322118 +2890.346893 +2890.373733 +2890.397709 +2890.454918 +2890.466340 +2890.495711 +2890.517855 +2890.529444 +2890.557382 +2890.641931 +2890.675964 +2890.710429 +2890.735804 +2890.760845 +2890.800639 +2890.843862 +2890.864542 +2890.876729 +2890.900506 +2890.963243 +2890.983156 +2891.028211 +2891.055983 +2891.080259 +2891.092613 +2891.125214 +2891.182157 +2891.246759 +2891.258680 +2891.269769 +2891.290981 +2891.321251 +2891.343995 +2891.354052 +2891.370036 +2891.390282 +2891.392280 +2891.443262 +2891.471900 +2891.505733 +2891.509263 +2891.517821 +2891.544128 +2891.567605 +2891.593745 +2891.618687 +2891.630408 +2891.679226 +2891.695576 +2891.705200 +2891.730741 +2891.753752 +2891.755583 +2891.770735 +2891.795110 +2891.796242 +2891.796642 +2891.808297 +2891.850355 +2891.851321 +2891.889949 +2891.914424 +2891.928277 +2891.940132 +2891.954151 +2891.987950 +2891.999239 +2892.000804 +2892.011394 +2892.023082 +2892.040864 +2892.066372 +2892.093312 +2892.133205 +2892.134038 +2892.161077 +2892.171100 +2892.188616 +2892.211627 +2892.259745 +2892.263808 +2892.275096 +2892.302469 +2892.319285 +2892.330408 +2892.354650 +2892.366805 +2892.387484 +2892.400904 +2892.424513 +2892.437068 +2892.451520 +2892.466305 +2892.477627 +2892.531373 +2892.556182 +2892.579458 +2892.592678 +2892.615589 +2892.620218 +2892.633771 +2892.656182 +2892.668602 +2892.690680 +2892.693145 +2892.703701 +2892.716654 +2892.730674 +2892.741063 +2892.755882 +2892.771100 +2892.796741 +2892.811659 +2892.823747 +2892.825445 +2892.840797 +2892.867603 +2892.882222 +2892.896308 +2892.925046 +2892.940797 +2892.965638 +2892.968136 +2892.979891 +2892.991479 +2892.995509 +2893.009095 +2893.022881 +2893.046691 +2893.059744 +2893.076461 +2893.086917 +2893.100437 +2893.130873 +2893.144693 +2893.171266 +2893.172498 +2893.185319 +2893.187250 +2893.212358 +2893.228609 +2893.274896 +2893.289015 +2893.316554 +2893.327776 +2893.340064 +2893.354549 +2893.384752 +2893.398971 +2893.412025 +2893.425412 +2893.435568 +2893.447323 +2893.461842 +2893.476660 +2893.494010 +2893.506297 +2893.519151 +2893.533603 +2893.562508 +2893.563440 +2893.576693 +2893.605132 +2893.619517 +2893.675028 +2893.689314 +2893.702301 +2893.715721 +2893.745191 +2893.773696 +2893.787716 +2893.801702 +2893.804399 +2893.814522 +2893.827709 +2893.875761 +2893.887849 +2893.904332 +2893.916920 +2893.919184 +2893.928175 +2893.931838 +2893.973496 +2893.986883 +2894.001102 +2894.001335 +2894.017119 +2894.019117 +2894.055547 +2894.063040 +2894.081954 +2894.084618 +2894.103033 +2894.115454 +2894.130639 +2894.143060 +2894.157545 +2894.170566 +2894.171931 +2894.185884 +2894.200602 +2894.211458 +2894.212857 +2894.287282 +2894.304765 +2894.331138 +2894.389713 +2894.433935 +2894.461941 +2894.475261 +2894.476926 +2894.479490 +2894.493942 +2894.505530 +2894.509227 +2894.523379 +2894.533269 +2894.534635 +2894.548221 +2894.562107 +2894.592410 +2894.611424 +2894.625177 +2894.638031 +2894.652816 +2894.668267 +2894.723212 +2894.727142 +2894.769166 +2894.784651 +2894.801867 +2894.832403 +2894.846889 +2894.860142 +2894.873229 +2898.614417 +2903.912547 +2906.886104 +2907.892030 +2908.774880 +2908.891597 +2908.892362 +2914.335481 +2914.591624 +2914.887095 +2914.891524 +2915.087361 +2916.587193 +2916.687260 +2918.193952 +2918.887224 +2919.593784 +2924.885920 +2924.951587 +2924.960045 +2924.998740 +2925.038467 +2925.049955 +2925.081724 +2925.115157 +2925.126679 +2925.136102 +2925.159013 +2925.178460 +2925.209729 +2925.213558 +2925.233805 +2925.286985 +2925.317654 +2925.354217 +2925.381923 +2925.394111 +2925.413758 +2925.453651 +2925.477527 +2925.496675 +2925.524347 +2925.544793 +2925.572233 +2925.580891 +2925.610794 +2925.643228 +2925.664940 +2925.698573 +2925.722182 +2925.748989 +2925.770168 +2925.789748 +2925.858146 +2925.875196 +2925.885319 +2925.896308 +2925.924247 +2925.948223 +2925.994576 +2926.021083 +2926.084886 +2926.109095 +2926.147324 +2926.181456 +2926.205832 +2926.228109 +2926.239065 +2926.266704 +2926.286518 +2926.316388 +2926.337300 +2926.358612 +2926.387150 +2926.411992 +2926.413590 +2926.426910 +2926.427443 +2926.448955 +2926.486451 +2926.503733 +2926.526311 +2926.552585 +2926.566604 +2926.588282 +2926.590613 +2926.613124 +2926.616021 +2926.652418 +2926.664473 +2926.679890 +2926.701735 +2926.721282 +2926.734802 +2926.759611 +2926.772331 +2926.784852 +2926.798072 +2926.810759 +2926.835468 +2926.859577 +2926.897306 +2926.900470 +2926.915355 +2926.926344 +2926.978358 +2927.016753 +2927.018751 +2927.040796 +2927.070599 +2927.097106 +2927.111625 +2927.136866 +2927.137932 +2927.151552 +2927.164772 +2927.176194 +2927.190213 +2927.190513 +2927.204998 +2927.230240 +2927.254948 +2927.258311 +2927.281388 +2927.294575 +2927.312058 +2927.327209 +2927.352917 +2927.390313 +2927.390912 +2927.403666 +2927.441295 +2927.456580 +2927.458844 +2927.481854 +2927.494875 +2927.495541 +2927.522414 +2927.546490 +2927.559144 +2927.570332 +2927.591112 +2927.605697 +2927.616486 +2927.640562 +2927.655913 +2927.695674 +2927.709227 +2927.735867 +2927.750985 +2927.764838 +2927.790013 +2927.817385 +2927.819383 +2927.829673 +2927.831737 +2927.855913 +2927.859177 +2927.872963 +2927.926043 +2927.942560 +2927.954515 +2927.978624 +2927.988747 +2928.001401 +2928.045257 +2928.071131 +2928.083952 +2928.099469 +2928.148853 +2928.161607 +2928.176626 +2928.186216 +2928.200135 +2928.211124 +2928.215187 +2928.235866 +2928.251684 +2928.263572 +2928.277025 +2928.289080 +2928.302433 +2928.305030 +2928.306229 +2928.319749 +2928.334468 +2928.357378 +2928.373029 +2928.387581 +2928.401234 +2928.429006 +2928.440761 +2928.454348 +2928.484551 +2928.494008 +2928.509093 +2928.511157 +2928.522246 +2928.535799 +2928.537831 +2928.563971 +2928.592476 +2928.604131 +2928.613755 +2928.628307 +2928.652216 +2928.664371 +2928.674827 +2928.690245 +2928.706295 +2928.732935 +2928.746255 +2928.749319 +2928.761140 +2928.790911 +2928.804863 +2928.817651 +2928.848220 +2928.854647 +2928.872096 +2928.874094 +2928.886182 +2928.887048 +2928.901933 +2928.925709 +2928.941993 +2928.955246 +2928.968133 +2928.983684 +2928.998736 +2929.000201 +2929.043458 +2929.045556 +2929.056678 +2929.069931 +2929.084550 +2929.098869 +2929.112422 +2929.113421 +2929.125309 +2929.139928 +2929.168799 +2929.181320 +2929.219615 +2929.247420 +2929.259375 +2929.271230 +2929.282618 +2929.296505 +2929.311789 +2929.325242 +2929.337663 +2929.367467 +2929.392442 +2929.405429 +2929.419715 +2929.434933 +2929.447220 +2929.459508 +2929.475292 +2929.516251 +2929.528206 +2929.544923 +2929.557044 +2929.598036 +2929.612322 +2929.612555 +2929.626974 +2929.642425 +2929.652781 +2929.730270 +2929.760973 +2929.778322 +2929.818748 +2929.835532 +2939.887037 +2939.892365 +2940.887036 +2940.892497 +2941.887068 +2941.893162 +2944.892093 +2944.892626 +2949.987992 +2950.088325 +2950.193453 +2950.388591 +2950.588624 +2950.888657 +2951.288624 +2952.188590 +2952.288623 +2954.494148 +2959.908728 +2959.919784 +2959.936867 +2959.964972 +2959.990014 +2960.018585 +2960.040996 +2960.065305 +2960.128741 +2960.146357 +2960.164606 +2960.196440 +2960.249754 +2960.292677 +2960.305032 +2960.412291 +2960.435201 +2960.542128 +2960.567402 +2960.580856 +2960.616087 +2960.617086 +2960.653483 +2960.675627 +2960.711325 +2960.711891 +2960.767336 +2960.784185 +2960.841461 +2960.865904 +2960.879956 +2960.903133 +2960.926609 +2960.975361 +2961.014122 +2961.029573 +2961.040828 +2961.064971 +2961.086116 +2961.100669 +2961.124245 +2961.157378 +2961.176892 +2961.226876 +2961.240595 +2961.260708 +2961.286915 +2961.324012 +2961.348121 +2961.387681 +2961.436366 +2961.461374 +2961.471564 +2961.473029 +2961.497505 +2961.521414 +2961.531471 +2961.554448 +2961.569965 +2961.578091 +2961.582453 +2961.595806 +2961.619616 +2961.634135 +2961.680788 +2961.702333 +2961.720481 +2961.740994 +2961.755913 +2961.780821 +2961.802566 +2961.806229 +2961.818084 +2961.833135 +2961.855779 +2961.867101 +2961.875992 +2961.887215 +2961.898270 +2961.910092 +2961.911557 +2961.931304 +2961.955180 +2961.956012 +2961.968866 +2961.980355 +2961.991976 +2962.004264 +2962.017318 +2962.030138 +2962.052849 +2962.065037 +2962.101367 +2962.123511 +2962.138463 +2962.173994 +2962.186881 +2962.188480 +2962.207727 +2962.222146 +2962.233335 +2962.256611 +2962.269532 +2962.269998 +2962.281919 +2962.302232 +2962.325343 +2962.326342 +2962.327008 +2962.338063 +2962.352649 +2962.363504 +2962.366335 +2962.404397 +2962.431037 +2962.442092 +2962.443658 +2962.456645 +2962.468633 +2962.488746 +2962.511257 +2962.534900 +2962.557211 +2962.569931 +2962.591410 +2962.605595 +2962.629971 +2962.630670 +2962.645722 +2962.671729 +2962.684250 +2962.684849 +2962.696571 +2962.708792 +2962.711323 +2962.723910 +2962.733834 +2962.737630 +2962.749718 +2962.763437 +2962.775958 +2962.788446 +2962.802398 +2962.814486 +2962.841759 +2962.855179 +2962.890777 +2962.917350 +2962.930071 +2962.940960 +2962.967200 +2962.977523 +2962.980354 +2962.991176 +2963.002465 +2963.027606 +2963.029837 +2963.070597 +2963.083717 +2963.096904 +2963.121979 +2963.135165 +2963.146487 +2963.161606 +2963.174359 +2963.199568 +2963.235698 +2963.248352 +2963.272495 +2963.283350 +2963.309657 +2963.322778 +2963.335698 +2963.348552 +2963.362671 +2963.404629 +2963.418382 +2963.433533 +2963.448618 +2963.473926 +2963.500100 +2963.514519 +2963.553680 +2963.569764 +2963.580553 +2963.608958 +2963.620779 +2963.635698 +2963.649351 +2963.679121 +2963.690876 +2963.705794 +2963.709324 +2963.717549 +2963.722311 +2963.732467 +2963.745055 +2963.747153 +2963.761305 +2963.780886 +2963.792208 +2963.803929 +2963.816017 +2963.885847 +2963.931069 +2963.943456 +2963.960939 +2964.013619 +2964.084548 +2964.154978 +2964.167299 +2964.181018 +2964.247885 +2964.278754 +2964.466366 +2975.886301 +2975.891463 +2977.890562 +2979.890926 +2984.890155 +2984.890721 +2984.890921 +2985.186858 +2985.887623 +2986.087690 +2987.596213 +2989.894679 +2994.922779 +2994.940428 +2994.969899 +2994.998537 +2995.019349 +2995.050485 +2995.090844 +2995.115853 +2995.117751 +2995.159009 +2995.219782 +2995.240661 +2995.271264 +2995.316585 +2995.336498 +2995.393608 +2995.394540 +2995.420081 +2995.430105 +2995.501034 +2995.522679 +2995.549951 +2995.574360 +2995.593508 +2995.645489 +2995.681520 +2995.702632 +2995.721180 +2995.816684 +2995.840194 +2995.863504 +2995.877956 +2995.980487 +2996.004829 +2996.017650 +2996.040194 +2996.062272 +2996.063071 +2996.099968 +2996.125642 +2996.158875 +2996.175192 +2996.200267 +2996.220813 +2996.254080 +2996.265102 +2996.276191 +2996.296271 +2996.337829 +2996.358675 +2996.382052 +2996.407793 +2996.436264 +2996.471362 +2996.473693 +2996.486714 +2996.510956 +2996.537596 +2996.559607 +2996.576158 +2996.610323 +2996.626707 +2996.638062 +2996.661505 +2996.686913 +2996.709957 +2996.713687 +2996.737862 +2996.750883 +2996.764236 +2996.788179 +2996.800300 +2996.801099 +2996.822644 +2996.833900 +2996.849218 +2996.868332 +2996.893673 +2996.905661 +2996.918049 +2996.929371 +2996.940326 +2996.963503 +2996.965102 +2996.986347 +2996.999734 +2997.030136 +2997.038828 +2997.051715 +2997.102631 +2997.125674 +2997.138195 +2997.153013 +2997.175258 +2997.189743 +2997.214519 +2997.226007 +2997.243123 +2997.252913 +2997.265634 +2997.285581 +2997.298468 +2997.321112 +2997.339826 +2997.366933 +2997.377922 +2997.405727 +2997.420246 +2997.432867 +2997.459873 +2997.483882 +2997.499433 +2997.510889 +2997.527006 +2997.537795 +2997.550116 +2997.564635 +2997.578754 +2997.590009 +2997.603829 +2997.614984 +2997.642923 +2997.644155 +2997.659506 +2997.686513 +2997.697901 +2997.699367 +2997.722910 +2997.738328 +2997.750182 +2997.763502 +2997.774991 +2997.795204 +2997.807159 +2997.819513 +2997.820645 +2997.835996 +2997.859340 +2997.863602 +2997.903762 +2997.916050 +2997.972560 +2997.984981 +2997.999400 +2998.013885 +2998.026839 +2998.041724 +2998.054245 +2998.068730 +2998.082350 +2998.097235 +2998.108657 +2998.121877 +2998.135896 +2998.146952 +2998.159672 +2998.173092 +2998.219612 +2998.232100 +2998.243489 +2998.245620 +2998.259106 +2998.273059 +2998.283748 +2998.295969 +2998.321377 +2998.333632 +2998.347018 +2998.359206 +2998.368963 +2998.422676 +2998.453179 +2998.466232 +2998.505460 +2998.513085 +2998.536495 +2998.564634 +2998.564900 +2998.577787 +2998.592439 +2998.606126 +2998.607391 +2998.619645 +2998.634197 +2998.648050 +2998.661670 +2998.666498 +2998.667930 +2998.677654 +2998.690474 +2998.705926 +2998.719146 +2998.723075 +2998.733531 +2998.747617 +2998.761537 +2998.789808 +2998.791340 +2998.833331 +2998.847284 +2998.862336 +2998.877454 +2998.918380 +2998.964134 +2998.977687 +2998.981017 +2998.991207 +2999.006059 +2999.013151 +2999.027870 +2999.049615 +2999.063068 +2999.077321 +2999.080984 +2999.094736 +2999.109022 +2999.135396 +2999.151813 +2999.200364 +2999.212052 +2999.224240 +2999.293438 +2999.689008 +2999.702994 +3009.884802 +3009.886168 +3011.891027 +3011.891194 +3012.886697 +3012.890827 +3012.891026 +3013.885897 +3014.885830 +3017.583995 +3017.654292 +3017.677102 +3017.783096 +3019.286491 +3019.319059 +3020.386090 +3020.585691 +3020.685957 +3021.186056 +3021.287155 +3021.486988 +3021.586789 +3022.086322 +3022.086921 +3022.786687 +3024.186886 +3024.892713 +3029.693474 +3029.937097 +3029.998735 +3030.031802 +3030.059341 +3030.093973 +3030.154546 +3030.177123 +3030.202597 +3030.237596 +3030.259707 +3030.278521 +3030.298268 +3030.299267 +3030.336031 +3030.396170 +3030.420213 +3030.441492 +3030.462571 +3030.477156 +3030.521745 +3030.549850 +3030.583483 +3030.677489 +3030.701764 +3030.725074 +3030.748118 +3030.786946 +3030.810356 +3030.864402 +3030.885880 +3030.896536 +3030.920679 +3030.942290 +3030.969929 +3031.064968 +3031.081817 +3031.112287 +3031.155144 +3031.190842 +3031.209390 +3031.230269 +3031.270195 +3031.321844 +3031.332433 +3031.359872 +3031.372759 +3031.396935 +3031.421278 +3031.443688 +3031.470195 +3031.495870 +3031.532932 +3031.542856 +3031.562969 +3031.584214 +3031.599799 +3031.621311 +3031.645187 +3031.671227 +3031.696968 +3031.720278 +3031.736362 +3031.800098 +3031.822110 +3031.843888 +3031.891240 +3031.904760 +3031.929369 +3031.931134 +3031.945453 +3031.980651 +3031.993538 +3032.007790 +3032.019878 +3032.053944 +3032.078653 +3032.094537 +3032.133565 +3032.155476 +3032.172326 +3032.195236 +3032.208456 +3032.221477 +3032.245253 +3032.260571 +3032.275556 +3032.327337 +3032.339925 +3032.367930 +3032.419512 +3032.444520 +3032.461103 +3032.471826 +3032.473524 +3032.489974 +3032.554943 +3032.566365 +3032.584813 +3032.610421 +3032.625006 +3032.639591 +3032.653378 +3032.679218 +3032.708156 +3032.732498 +3032.747983 +3032.763734 +3032.773258 +3032.791006 +3032.826937 +3032.850147 +3032.869794 +3032.907357 +3032.922442 +3032.940890 +3032.942555 +3032.960570 +3032.975355 +3032.992638 +3033.019944 +3033.050547 +3033.073923 +3033.091273 +3033.102395 +3033.118079 +3033.135262 +3033.149647 +3033.176421 +3033.191639 +3033.221542 +3033.236261 +3033.237426 +3033.250313 +3033.292105 +3033.304726 +3033.338259 +3033.349681 +3033.366997 +3033.380250 +3033.395102 +3033.410087 +3033.425272 +3033.454576 +3033.467929 +3033.480117 +3033.480883 +3033.483313 +3033.484745 +3033.508821 +3033.510719 +3033.512085 +3033.527003 +3033.540523 +3033.553810 +3033.567429 +3033.571958 +3033.584279 +3033.587909 +3033.598765 +3033.599863 +3033.614416 +3033.629667 +3033.657905 +3033.684679 +3033.685444 +3033.701895 +3033.713117 +3033.718545 +3033.730832 +3033.743786 +3033.745584 +3033.761269 +3033.774289 +3033.789074 +3033.803859 +3033.818545 +3033.832564 +3033.836160 +3033.850546 +3033.862600 +3033.875454 +3033.891372 +3033.895501 +3033.905091 +3033.908788 +3033.923273 +3033.936826 +3033.952044 +3033.953543 +3033.967729 +3033.981182 +3033.983413 +3033.998897 +3034.000462 +3034.012850 +3034.031265 +3034.056506 +3034.058737 +3034.073789 +3034.087942 +3034.090539 +3034.101595 +3034.118245 +3034.132364 +3034.134262 +3034.147682 +3034.161035 +3034.179350 +3034.194502 +3034.211851 +3034.221142 +3034.234761 +3034.256473 +3034.270093 +3034.286010 +3034.298830 +3034.327036 +3034.343519 +3034.370259 +3034.385477 +3034.412483 +3034.414082 +3034.420642 +3034.432597 +3034.444351 +3034.458804 +3034.473156 +3034.485077 +3034.496666 +3034.510152 +3034.554075 +3034.581514 +3034.600528 +3034.654841 +3034.668927 +3034.685976 +3034.699829 +3034.713149 +3034.728101 +3034.741920 +3034.758071 +3034.774987 +3034.776719 +3034.787575 +3034.819609 +3034.823106 +3034.846516 +3034.866895 +3041.497158 +3041.747941 +3046.883067 +3046.885764 +3046.886197 +3047.892090 +3047.892623 +3048.885463 +3048.892456 +3049.891589 +3054.885923 +3054.890418 +3054.891284 +3054.987288 +3054.989652 +3055.488020 +3057.087652 +3059.487683 +3064.064035 +3064.896669 +3064.903495 +3064.944621 +3064.963335 +3064.964601 +3064.976089 +3065.005227 +3065.026039 +3065.036229 +3065.055143 +3065.071294 +3065.080418 +3065.081484 +3065.114717 +3065.126339 +3065.136928 +3065.156775 +3065.176888 +3065.187045 +3065.195403 +3065.217714 +3065.240391 +3065.251613 +3065.262669 +3065.310188 +3065.333598 +3065.336961 +3065.346518 +3065.361070 +3065.397068 +3065.421010 +3065.437993 +3065.463235 +3065.463901 +3065.537993 +3065.552279 +3065.571227 +3065.572625 +3065.609688 +3065.624407 +3065.650015 +3065.658007 +3065.678286 +3065.717647 +3065.737660 +3065.794770 +3065.819878 +3065.868529 +3065.881017 +3065.892738 +3065.902129 +3065.971859 +3065.993271 +3066.033497 +3066.054143 +3066.055875 +3066.075922 +3066.118679 +3066.142189 +3066.165465 +3066.201363 +3066.214916 +3066.231899 +3066.233630 +3066.294603 +3066.323773 +3066.376587 +3066.397866 +3066.419111 +3066.456674 +3066.458905 +3066.480450 +3066.481316 +3066.504726 +3066.532498 +3066.547216 +3066.559771 +3066.585378 +3066.612551 +3066.627370 +3066.664699 +3066.680583 +3066.680983 +3066.694203 +3066.718911 +3066.720010 +3066.749947 +3066.775122 +3066.786743 +3066.786976 +3066.815415 +3066.842055 +3066.855641 +3066.864965 +3066.880450 +3066.907090 +3066.931532 +3066.934329 +3066.948481 +3066.957239 +3066.972191 +3066.985644 +3066.998298 +3067.010419 +3067.021209 +3067.049480 +3067.058172 +3067.083713 +3067.097166 +3067.116147 +3067.145351 +3067.156573 +3067.182747 +3067.197066 +3067.210386 +3067.213283 +3067.227136 +3067.253809 +3067.268128 +3067.270459 +3067.295234 +3067.310086 +3067.323673 +3067.339790 +3067.365764 +3067.379450 +3067.394335 +3067.419910 +3067.421175 +3067.433829 +3067.476819 +3067.500229 +3067.513682 +3067.528368 +3067.554142 +3067.577119 +3067.600529 +3067.620509 +3067.663865 +3067.666629 +3067.690106 +3067.706722 +3067.723406 +3067.747748 +3067.752310 +3067.762267 +3067.776886 +3067.794668 +3067.818977 +3067.832996 +3067.847548 +3067.858404 +3067.869926 +3067.885011 +3067.899296 +3067.926502 +3067.928833 +3067.942853 +3067.954907 +3067.969126 +3067.970925 +3067.986309 +3067.996765 +3068.014015 +3068.030565 +3068.043652 +3068.059170 +3068.096466 +3068.098564 +3068.113315 +3068.137891 +3068.167295 +3068.181247 +3068.196066 +3068.211917 +3068.223705 +3068.239123 +3068.252776 +3068.265463 +3068.280215 +3068.310052 +3068.325636 +3068.358437 +3068.373189 +3068.390205 +3068.417278 +3068.418310 +3068.431197 +3068.431597 +3068.479149 +3068.480148 +3068.490471 +3068.506622 +3068.535926 +3068.552376 +3068.561966 +3068.565596 +3068.578317 +3068.579515 +3068.591803 +3068.595200 +3068.608387 +3068.624737 +3068.639289 +3068.652809 +3068.654940 +3068.666928 +3068.670757 +3068.681447 +3068.684410 +3068.685243 +3068.699262 +3068.701860 +3068.710651 +3068.712049 +3068.726102 +3068.742552 +3068.756638 +3068.772988 +3068.791903 +3068.804357 +3068.813781 +3068.817044 +3068.830264 +3068.854707 +3068.858103 +3068.873421 +3068.902359 +3068.932795 +3068.945949 +3068.947147 +3068.959901 +3068.962232 +3068.975885 +3068.993301 +3069.006055 +3069.009485 +3069.024370 +3069.025136 +3069.041853 +3069.071689 +3069.073921 +3069.089072 +3069.101027 +3069.103058 +3069.119442 +3069.136525 +3069.150844 +3069.183178 +3069.212881 +3069.227600 +3069.228732 +3069.241952 +3069.260401 +3069.274986 +3069.290903 +3069.307920 +3069.337257 +3069.351210 +3069.369991 +3069.384510 +3069.402425 +3069.431429 +3069.443983 +3069.445948 +3069.460534 +3069.474919 +3069.494566 +3069.523537 +3069.536791 +3069.554839 +3069.584276 +3069.601559 +3069.615046 +3069.629931 +3069.643450 +3069.662631 +3069.679148 +3069.693833 +3069.710217 +3069.724802 +3069.752874 +3069.766993 +3069.844216 +3069.857936 +3078.515703 +3079.885332 +3079.891692 +3080.891491 +3081.886429 +3083.892487 +3084.892653 +3089.886321 +3089.891482 +3090.092781 +3090.787685 +3092.297141 +3093.286883 +3093.288182 +3093.387882 +3094.487548 +3094.687914 +3094.689779 +3094.889912 +3099.891139 +3099.910520 +3099.942288 +3099.953077 +3099.984446 +3100.002661 +3100.003294 +3100.023140 +3100.046517 +3100.075355 +3100.097200 +3100.105624 +3100.129567 +3100.141489 +3100.156041 +3100.176853 +3100.199397 +3100.230033 +3100.243853 +3100.288308 +3100.309654 +3100.339490 +3100.370160 +3100.421142 +3100.450546 +3100.486243 +3100.495101 +3100.526370 +3100.536826 +3100.549780 +3100.583513 +3100.585344 +3100.595467 +3100.610519 +3100.647415 +3100.672657 +3100.684112 +3100.694668 +3100.716113 +3100.727036 +3100.748314 +3100.793036 +3100.806123 +3100.817778 +3100.818644 +3100.851911 +3100.866496 +3100.867928 +3100.889573 +3100.945417 +3100.964998 +3100.996633 +3101.023372 +3101.061035 +3101.074255 +3101.121807 +3101.123472 +3101.135127 +3101.149047 +3101.173322 +3101.186842 +3101.197831 +3101.214348 +3101.223006 +3101.227069 +3101.251611 +3101.252909 +3101.262400 +3101.290771 +3101.315946 +3101.317678 +3101.329633 +3101.342686 +3101.365430 +3101.391104 +3101.405523 +3101.413748 +3101.429599 +3101.453176 +3101.469426 +3101.494801 +3101.515913 +3101.540388 +3101.541254 +3101.567428 +3101.577451 +3101.602626 +3101.621008 +3101.645383 +3101.661234 +3101.673488 +3101.674288 +3101.698297 +3101.726102 +3101.739722 +3101.753775 +3101.766229 +3101.792269 +3101.792536 +3101.805856 +3101.815380 +3101.818510 +3101.831797 +3101.843318 +3101.857304 +3101.868393 +3101.883412 +3101.884444 +3101.905023 +3101.920874 +3101.937524 +3101.961933 +3101.975053 +3101.988340 +3102.003858 +3102.026335 +3102.043585 +3102.071823 +3102.086242 +3102.098929 +3102.111450 +3102.112482 +3102.125802 +3102.151477 +3102.167527 +3102.183012 +3102.206988 +3102.222805 +3102.223405 +3102.249279 +3102.273621 +3102.288939 +3102.303558 +3102.329665 +3102.346015 +3102.347647 +3102.360667 +3102.372056 +3102.386841 +3102.399961 +3102.415479 +3102.429964 +3102.442019 +3102.443684 +3102.457071 +3102.481813 +3102.497131 +3102.499695 +3102.525968 +3102.541919 +3102.554673 +3102.557071 +3102.569558 +3102.598729 +3102.612648 +3102.627700 +3102.641586 +3102.668059 +3102.683244 +3102.706854 +3102.721539 +3102.740320 +3102.750211 +3102.764163 +3102.766394 +3102.766727 +3102.789438 +3102.791836 +3102.817576 +3102.832129 +3102.845082 +3102.873088 +3102.886408 +3102.888838 +3102.905389 +3102.919208 +3102.933094 +3102.934626 +3102.946747 +3102.962065 +3102.990437 +3103.005788 +3103.020573 +3103.063231 +3103.078815 +3103.092035 +3103.092634 +3103.108319 +3103.125502 +3103.153707 +3103.170556 +3103.200227 +3103.226600 +3103.243250 +3103.260167 +3103.271555 +3103.274586 +3103.286873 +3103.319707 +3103.331695 +3103.332095 +3103.361732 +3103.363996 +3103.377516 +3103.393833 +3103.406720 +3103.409784 +3103.421905 +3103.423537 +3103.436557 +3103.467259 +3103.482644 +3103.495831 +3103.499461 +3103.500593 +3103.513413 +3103.529963 +3103.539953 +3103.556936 +3103.558435 +3103.574186 +3103.576550 +3103.589637 +3103.603323 +3103.605987 +3103.634792 +3103.635957 +3103.637722 +3103.653873 +3103.666560 +3103.680812 +3103.695631 +3103.697895 +3103.712181 +3103.724369 +3103.727233 +3103.740286 +3103.753073 +3103.756703 +3103.771721 +3103.775185 +3103.787672 +3103.805854 +3103.819673 +3103.821338 +3103.847013 +3103.851575 +3103.862997 +3103.865361 +3103.879380 +3103.894332 +3103.897162 +3103.909983 +3103.924435 +3103.954072 +3103.955371 +3103.967192 +3103.984275 +3104.011282 +3104.013146 +3104.025234 +3104.042450 +3104.057269 +3104.071321 +3104.072221 +3104.087039 +3104.089870 +3104.100659 +3104.130762 +3104.132727 +3104.146380 +3104.148644 +3104.159333 +3104.161997 +3104.177548 +3104.189503 +3104.221105 +3104.244115 +3104.260299 +3104.273419 +3104.291967 +3104.308617 +3104.326133 +3104.340286 +3104.353972 +3104.370555 +3104.373652 +3104.385507 +3104.400625 +3104.416176 +3104.430295 +3104.448277 +3104.474551 +3104.486806 +3104.522437 +3104.535157 +3104.537854 +3104.555803 +3104.569689 +3104.586805 +3104.601291 +3104.630495 +3104.648311 +3104.677048 +3104.678214 +3104.694831 +3104.710981 +3104.725433 +3104.742783 +3104.747245 +3104.756302 +3104.774418 +3104.788171 +3104.803122 +3104.804088 +3104.829229 +3104.861997 +3105.690867 +3105.696395 +3105.877280 +3107.315807 +3107.335554 +3107.410912 +3114.891657 +3115.892155 +3115.892788 +3117.887192 +3118.886525 +3125.697607 +3127.587748 +3129.486547 +3131.147052 +3134.902792 +3134.936758 +3135.004557 +3135.034128 +3135.058703 +3135.087940 +3135.135127 +3135.149212 +3135.173022 +3135.196365 +3135.221174 +3135.243385 +3135.279415 +3135.299895 +3135.384643 +3135.407521 +3135.440754 +3135.465962 +3135.476052 +3135.498563 +3135.524970 +3135.543784 +3135.566262 +3135.588106 +3135.617111 +3135.643251 +3135.679149 +3135.681913 +3135.703025 +3135.741520 +3135.770424 +3135.800294 +3135.861067 +3135.883977 +3135.917677 +3135.931130 +3135.946281 +3135.967493 +3135.991702 +3136.017610 +3136.050843 +3136.064829 +3136.076584 +3136.091403 +3136.103224 +3136.125835 +3136.136358 +3136.164030 +3136.184976 +3136.186974 +3136.209052 +3136.260567 +3136.262298 +3136.275219 +3136.312714 +3136.340686 +3136.367326 +3136.379448 +3136.391602 +3136.402225 +3136.428432 +3136.430064 +3136.455571 +3136.469324 +3136.470124 +3136.488205 +3136.516144 +3136.541419 +3136.553906 +3136.594499 +3136.611116 +3136.623503 +3136.651276 +3136.665595 +3136.692967 +3136.693567 +3136.705155 +3136.706920 +3136.735325 +3136.769824 +3136.786973 +3136.798528 +3136.800027 +3136.814013 +3136.839554 +3136.862564 +3136.902424 +3136.904089 +3136.929697 +3136.944948 +3136.958102 +3136.982644 +3137.012447 +3137.026067 +3137.048711 +3137.074985 +3137.089537 +3137.099227 +3137.116044 +3137.128365 +3137.142284 +3137.155271 +3137.180246 +3137.196230 +3137.218208 +3137.236456 +3137.245348 +3137.289770 +3137.301491 +3137.303956 +3137.315744 +3137.330396 +3137.331461 +3137.347479 +3137.387971 +3137.414878 +3137.415744 +3137.443183 +3137.443816 +3137.445547 +3137.459533 +3137.471821 +3137.484841 +3137.499959 +3137.514245 +3137.516176 +3137.529563 +3137.545447 +3137.569690 +3137.586373 +3137.601125 +3137.614711 +3137.625634 +3137.642084 +3137.644415 +3137.669257 +3137.684208 +3137.696829 +3137.699560 +3137.707785 +3137.735657 +3137.751341 +3137.768424 +3137.795663 +3137.810182 +3137.826333 +3137.839553 +3137.865493 +3137.866959 +3137.880878 +3137.884175 +3137.894931 +3137.898527 +3137.911481 +3137.926932 +3137.940685 +3137.968357 +3137.981278 +3137.982776 +3137.995197 +3137.999193 +3138.013712 +3138.027798 +3138.028364 +3138.040019 +3138.058567 +3138.098760 +3138.113945 +3138.130661 +3138.159033 +3138.173985 +3138.201357 +3138.215610 +3138.228430 +3138.231760 +3138.244747 +3138.248044 +3138.259599 +3138.261131 +3138.274584 +3138.275483 +3138.291467 +3138.306219 +3138.322902 +3138.336755 +3138.347611 +3138.352806 +3138.365460 +3138.368024 +3138.379279 +3138.391667 +3138.394730 +3138.408317 +3138.427331 +3138.440618 +3138.453505 +3138.455470 +3138.469988 +3138.489036 +3138.502622 +3138.513412 +3138.544381 +3138.545313 +3138.557567 +3138.574217 +3138.577814 +3138.592699 +3138.604720 +3138.621570 +3138.636955 +3138.653371 +3138.667391 +3138.684507 +3138.699126 +3138.726698 +3138.744314 +3138.757434 +3138.758899 +3138.773951 +3138.786838 +3138.802789 +3138.805353 +3138.819838 +3138.834490 +3138.835456 +3138.848443 +3138.849275 +3138.863128 +3138.876814 +3138.878080 +3138.892166 +3138.909915 +3138.910947 +3138.968123 +3138.970221 +3138.985905 +3139.018006 +3139.031926 +3139.047410 +3139.050407 +3139.063261 +3139.064393 +3139.076315 +3139.078013 +3139.078912 +3139.093964 +3139.107583 +3139.110547 +3139.112112 +3139.125432 +3139.126897 +3139.151739 +3139.168389 +3139.168889 +3139.170321 +3139.181942 +3139.198126 +3139.199525 +3139.210181 +3139.219005 +3139.225732 +3139.238353 +3139.252438 +3139.264560 +3139.268123 +3139.283041 +3139.296894 +3139.323634 +3139.338552 +3139.354470 +3139.368755 +3139.378279 +3139.382442 +3139.393730 +3139.408449 +3139.420037 +3139.421602 +3139.424200 +3139.447510 +3139.464693 +3139.478812 +3139.511279 +3139.541516 +3139.582342 +3139.594363 +3139.625165 +3139.654636 +3139.668256 +3139.705585 +3139.717173 +3139.748076 +3139.770620 +3139.774982 +3139.790134 +3139.792764 +3139.806983 +3139.823600 +3139.838485 +3139.849574 +3139.876514 +3149.884829 +3151.892353 +3152.891852 +3154.892449 +3159.685452 +3160.186150 +3160.696972 +3161.887481 +3162.596837 +3169.890670 +3169.919774 +3169.988039 +3169.989004 +3169.996863 +3170.017276 +3170.037989 +3170.048245 +3170.079148 +3170.155405 +3170.165528 +3170.176350 +3170.223170 +3170.248711 +3170.271655 +3170.289604 +3170.314812 +3170.346114 +3170.397129 +3170.418974 +3170.431295 +3170.451675 +3170.481545 +3170.549077 +3170.573519 +3170.638621 +3170.681977 +3170.733892 +3170.747279 +3170.786872 +3170.812180 +3170.863662 +3170.884541 +3170.908850 +3170.946446 +3170.961331 +3170.987239 +3170.999992 +3171.013179 +3171.014378 +3171.026632 +3171.035990 +3171.074651 +3171.102556 +3171.128297 +3171.169090 +3171.205953 +3171.231594 +3171.245580 +3171.281477 +3171.314844 +3171.319073 +3171.355770 +3171.392500 +3171.403156 +3171.414278 +3171.451174 +3171.474784 +3171.503056 +3171.528863 +3171.541684 +3171.595996 +3171.622303 +3171.635456 +3171.645080 +3171.662063 +3171.684507 +3171.707751 +3171.724034 +3171.737987 +3171.750208 +3171.777880 +3171.816342 +3171.832326 +3171.857134 +3171.882176 +3171.899925 +3171.922502 +3171.935190 +3171.964427 +3171.986305 +3172.003721 +3172.034690 +3172.049608 +3172.060031 +3172.069555 +3172.108050 +3172.133425 +3172.152372 +3172.191700 +3172.191933 +3172.206085 +3172.231526 +3172.247211 +3172.273051 +3172.295429 +3172.307883 +3172.346145 +3172.384939 +3172.408749 +3172.426098 +3172.441017 +3172.455835 +3172.482242 +3172.496161 +3172.525332 +3172.537720 +3172.577280 +3172.606118 +3172.646278 +3172.674217 +3172.722968 +3172.737686 +3172.747576 +3172.789934 +3172.813377 +3172.828296 +3172.843314 +3172.854136 +3172.870453 +3172.884306 +3172.915375 +3172.949608 +3172.973683 +3172.989667 +3172.991199 +3173.006317 +3173.020903 +3173.049974 +3173.081309 +3173.095362 +3173.108881 +3173.138485 +3173.138985 +3173.154036 +3173.169654 +3173.185438 +3173.196294 +3173.200024 +3173.216307 +3173.227896 +3173.241282 +3173.243547 +3173.259764 +3173.271718 +3173.273916 +3173.286204 +3173.288368 +3173.289800 +3173.302221 +3173.317439 +3173.331492 +3173.347010 +3173.360263 +3173.363393 +3173.375681 +3173.378478 +3173.389867 +3173.393663 +3173.405451 +3173.407283 +3173.423167 +3173.438951 +3173.454535 +3173.480743 +3173.495561 +3173.512278 +3173.527929 +3173.528595 +3173.541848 +3173.555068 +3173.558165 +3173.573183 +3173.587935 +3173.602487 +3173.617339 +3173.632957 +3173.644046 +3173.647176 +3173.662194 +3173.677812 +3173.690499 +3173.706084 +3173.720070 +3173.734822 +3173.750040 +3173.758198 +3173.765191 +3173.792397 +3173.807649 +3173.818538 +3173.836087 +3173.838584 +3173.851838 +3173.867755 +3173.881908 +3173.897459 +3173.911378 +3173.927429 +3173.941681 +3173.956466 +3173.970186 +3173.972983 +3173.988667 +3174.004685 +3174.016706 +3174.033090 +3174.043080 +3174.076979 +3174.090232 +3174.106882 +3174.120069 +3174.150838 +3174.162893 +3174.178577 +3174.181574 +3174.192730 +3174.202953 +3174.221534 +3174.242513 +3174.259829 +3174.271884 +3174.285004 +3174.300222 +3174.302087 +3174.330492 +3174.344811 +3174.349773 +3174.361061 +3174.375247 +3174.378910 +3174.391264 +3174.403486 +3174.418604 +3174.430758 +3174.447109 +3174.463692 +3174.475247 +3174.477711 +3174.488434 +3174.502753 +3174.529226 +3174.545110 +3174.559263 +3174.600588 +3174.615906 +3174.619536 +3174.648007 +3174.663892 +3174.678510 +3174.710278 +3174.711144 +3174.726329 +3174.759529 +3174.772117 +3174.800122 +3174.812176 +3174.831024 +3174.874081 +3176.160127 +3185.885992 +3188.891516 +3194.987081 +3196.386814 +3196.686913 +3196.987312 +3197.387212 +3197.486912 +3198.386878 +3199.586877 +3204.871853 +3204.893865 +3204.895596 +3204.927431 +3204.977081 +3205.014044 +3205.035723 +3205.037321 +3205.079179 +3205.094131 +3205.139119 +3205.230061 +3205.250075 +3205.281976 +3205.294630 +3205.327797 +3205.345113 +3205.356901 +3205.416175 +3205.459232 +3205.481843 +3205.516175 +3205.528096 +3205.550641 +3205.589035 +3205.614510 +3205.667191 +3205.679278 +3205.689002 +3205.736654 +3205.798492 +3205.867990 +3205.905219 +3205.921103 +3205.946211 +3205.954137 +3205.973884 +3205.982442 +3205.997660 +3206.011912 +3206.083807 +3206.109614 +3206.119771 +3206.122968 +3206.147543 +3206.171419 +3206.206551 +3206.207583 +3206.240650 +3206.276980 +3206.289135 +3206.317906 +3206.350540 +3206.352871 +3206.366024 +3206.379344 +3206.414443 +3206.429561 +3206.462428 +3206.490666 +3206.491965 +3206.505451 +3206.529594 +3206.541815 +3206.566923 +3206.567256 +3206.594029 +3206.620536 +3206.621102 +3206.644479 +3206.673483 +3206.689134 +3206.727796 +3206.749940 +3206.778911 +3206.792231 +3206.816074 +3206.816873 +3206.829094 +3206.854102 +3206.875514 +3206.912810 +3206.923966 +3206.938551 +3206.960063 +3206.985238 +3207.001621 +3207.039550 +3207.054136 +3207.104052 +3207.126929 +3207.138984 +3207.153769 +3207.190999 +3207.207549 +3207.248741 +3207.272717 +3207.286470 +3207.297958 +3207.299157 +3207.311212 +3207.325497 +3207.326563 +3207.351005 +3207.362593 +3207.386003 +3207.399357 +3207.412344 +3207.432590 +3207.448474 +3207.462027 +3207.472950 +3207.484971 +3207.511511 +3207.525630 +3207.548341 +3207.562427 +3207.574315 +3207.597592 +3207.611111 +3207.623166 +3207.625364 +3207.652570 +3207.664991 +3207.678377 +3207.769220 +3207.780275 +3207.793362 +3207.808281 +3207.820169 +3207.846409 +3207.859330 +3207.860428 +3207.872783 +3207.923765 +3207.937385 +3207.950372 +3207.962426 +3207.978177 +3207.992363 +3208.005317 +3208.018837 +3208.033855 +3208.045810 +3208.057798 +3208.059596 +3208.059796 +3208.072982 +3208.075480 +3208.083538 +3208.086769 +3208.096992 +3208.100521 +3208.101254 +3208.112842 +3208.115673 +3208.125730 +3208.138417 +3208.151171 +3208.154368 +3208.166056 +3208.168154 +3208.177444 +3208.180808 +3208.194494 +3208.207281 +3208.220701 +3208.235386 +3208.247508 +3208.262260 +3208.272682 +3208.287101 +3208.299456 +3208.305083 +3208.314807 +3208.315806 +3208.329892 +3208.346708 +3208.355733 +3208.357364 +3208.381773 +3208.393695 +3208.429026 +3208.432356 +3208.457065 +3208.472249 +3208.475346 +3208.487001 +3208.498889 +3208.500188 +3208.500488 +3208.501820 +3208.513508 +3208.596125 +3208.600588 +3208.621600 +3208.625130 +3208.638849 +3208.639915 +3208.652103 +3208.666089 +3208.677477 +3208.679975 +3208.691596 +3208.703418 +3208.707347 +3208.732622 +3208.734787 +3208.747008 +3208.759195 +3208.761959 +3208.775446 +3208.778443 +3208.789066 +3208.792795 +3208.803784 +3208.819468 +3208.833022 +3208.835619 +3208.845476 +3208.846275 +3208.861460 +3208.862858 +3208.902852 +3208.904883 +3208.915306 +3208.930291 +3208.933155 +3208.955233 +3208.981306 +3208.994660 +3209.026062 +3209.038016 +3209.041679 +3209.055099 +3209.068386 +3209.071783 +3209.082738 +3209.097890 +3209.124363 +3209.128959 +3209.141479 +3209.150637 +3209.361126 +3209.444909 +3209.477243 +3209.517270 +3209.523763 +3209.688832 +3209.734985 +3209.749671 +3209.778242 +3209.807479 +3221.890251 +3222.885622 +3222.890950 +3223.885820 +3223.890749 +3223.891315 +3224.886186 +3224.890315 +3233.086244 +3239.901722 +3239.942581 +3239.961562 +3239.971718 +3239.990167 +3240.033257 +3240.060330 +3240.071752 +3240.093230 +3240.100489 +3240.114908 +3240.171152 +3240.207616 +3240.228994 +3240.252637 +3240.314642 +3240.325364 +3240.352570 +3240.366390 +3240.385704 +3240.451804 +3240.469553 +3240.494295 +3240.506183 +3240.553270 +3240.583939 +3240.621068 +3240.651871 +3240.685870 +3240.708081 +3240.724265 +3240.746443 +3240.795560 +3240.838251 +3240.860529 +3240.883206 +3240.907315 +3240.932956 +3240.984205 +3241.009313 +3241.021434 +3241.043845 +3241.075713 +3241.089466 +3241.114441 +3241.127595 +3241.140682 +3241.167288 +3241.177045 +3241.193728 +3241.212909 +3241.257165 +3241.293828 +3241.309113 +3241.331457 +3241.353435 +3241.379576 +3241.444744 +3241.460228 +3241.482406 +3241.497924 +3241.518570 +3241.531557 +3241.593428 +3241.621633 +3241.666755 +3241.686935 +3241.708247 +3241.719735 +3241.730191 +3241.732189 +3241.755699 +3241.769885 +3241.792829 +3241.836685 +3241.861294 +3241.884504 +3241.920801 +3241.934653 +3241.957630 +3241.973914 +3242.000288 +3242.040281 +3242.051470 +3242.064024 +3242.078643 +3242.108346 +3242.133155 +3242.147507 +3242.186401 +3242.198156 +3242.212176 +3242.235619 +3242.254034 +3242.267653 +3242.289465 +3242.306348 +3242.319635 +3242.358096 +3242.372349 +3242.397324 +3242.410277 +3242.426328 +3242.450670 +3242.466887 +3242.506881 +3242.519834 +3242.532955 +3242.534020 +3242.560227 +3242.572748 +3242.588865 +3242.617703 +3242.658462 +3242.684170 +3242.685568 +3242.724163 +3242.735119 +3242.748872 +3242.775279 +3242.789664 +3242.791929 +3242.803750 +3242.815372 +3242.828992 +3242.846441 +3242.859927 +3242.874280 +3242.899488 +3242.913007 +3242.942445 +3242.957263 +3242.972115 +3242.987400 +3243.025362 +3243.026294 +3243.036251 +3243.048305 +3243.063590 +3243.076943 +3243.103517 +3243.130090 +3243.141346 +3243.144775 +3243.158861 +3243.172148 +3243.197689 +3243.212674 +3243.225728 +3243.238315 +3243.239148 +3243.239514 +3243.269317 +3243.284336 +3243.295225 +3243.312607 +3243.326327 +3243.341046 +3243.352234 +3243.354133 +3243.369317 +3243.382571 +3243.411242 +3243.413706 +3243.426194 +3243.428192 +3243.441778 +3243.453633 +3243.469351 +3243.485101 +3243.495225 +3243.497922 +3243.511975 +3243.527759 +3243.567286 +3243.568651 +3243.579840 +3243.593593 +3243.609244 +3243.621332 +3243.634885 +3243.646939 +3243.650036 +3243.662724 +3243.667219 +3243.676277 +3243.689996 +3243.704582 +3243.718501 +3243.734652 +3243.748271 +3243.762957 +3243.775244 +3243.790030 +3243.804115 +3243.831688 +3243.846806 +3243.861358 +3243.872947 +3243.887932 +3243.900019 +3243.930356 +3243.944741 +3243.956496 +3243.971781 +3243.977575 +3244.000752 +3244.016969 +3244.028824 +3244.036616 +3244.048637 +3244.059826 +3244.073146 +3244.074378 +3244.115970 +3244.130822 +3244.142710 +3244.155131 +3244.180272 +3244.193925 +3244.215604 +3244.258794 +3244.274411 +3244.287964 +3244.299386 +3244.315737 +3244.326559 +3244.339213 +3244.346140 +3244.357362 +3244.384368 +3244.402117 +3244.414072 +3244.429489 +3244.463322 +3244.492493 +3244.548703 +3244.561690 +3244.575910 +3244.604781 +3244.616369 +3244.663755 +3244.749536 +3244.772713 +3258.884886 +3258.885552 +3258.887550 +3259.886617 +3263.101499 +3263.271395 +3264.554078 +3264.582550 +3264.889842 +3264.890375 +3264.985346 +3266.187410 +3267.496966 +3269.486840 +3274.896259 +3274.902353 +3274.920002 +3274.975047 +3275.015306 +3275.059962 +3275.063158 +3275.071217 +3275.105449 +3275.128327 +3275.148806 +3275.167021 +3275.179242 +3275.245143 +3275.276845 +3275.296924 +3275.314274 +3275.315073 +3275.349172 +3275.369352 +3275.380041 +3275.403118 +3275.425662 +3275.455732 +3275.470184 +3275.558496 +3275.569685 +3275.572016 +3275.592495 +3275.617837 +3275.643244 +3275.656198 +3275.695858 +3275.748439 +3275.757996 +3275.794127 +3275.859728 +3275.871916 +3275.895325 +3275.920833 +3275.932355 +3275.942478 +3275.970650 +3276.030290 +3276.051835 +3276.073847 +3276.098589 +3276.111509 +3276.120167 +3276.123430 +3276.140147 +3276.174213 +3276.185402 +3276.212008 +3276.235785 +3276.262858 +3276.274746 +3276.331156 +3276.368019 +3276.385035 +3276.414572 +3276.427393 +3276.446008 +3276.468652 +3276.496224 +3276.518568 +3276.533853 +3276.548372 +3276.599787 +3276.625195 +3276.649804 +3276.675012 +3276.689664 +3276.726427 +3276.751202 +3276.776244 +3276.858794 +3276.882404 +3276.946706 +3276.999520 +3277.040612 +3277.055098 +3277.082104 +3277.161724 +3277.217036 +3277.239413 +3277.255198 +3277.281238 +3277.295923 +3277.311641 +3277.351002 +3277.377875 +3277.394025 +3277.406979 +3277.421098 +3277.446340 +3277.461824 +3277.476043 +3277.518734 +3277.533153 +3277.555697 +3277.603116 +3277.657095 +3277.732320 +3277.745906 +3277.771847 +3277.787798 +3277.799719 +3277.829489 +3277.883036 +3277.894990 +3277.912706 +3277.913305 +3277.928057 +3277.943775 +3277.955097 +3277.972280 +3277.972846 +3277.985000 +3277.987298 +3278.001550 +3278.029656 +3278.031054 +3278.045839 +3278.059060 +3278.071347 +3278.074045 +3278.090029 +3278.116102 +3278.118367 +3278.133352 +3278.133718 +3278.147404 +3278.162423 +3278.163588 +3278.177275 +3278.192892 +3278.206878 +3278.218333 +3278.220598 +3278.222230 +3278.245506 +3278.246239 +3278.248736 +3278.262622 +3278.273611 +3278.275843 +3278.290261 +3278.302882 +3278.305346 +3278.316235 +3278.317767 +3278.333152 +3278.343841 +3278.348237 +3278.360991 +3278.388197 +3278.389862 +3278.401284 +3278.418034 +3278.434151 +3278.448903 +3278.462023 +3278.474577 +3278.477940 +3278.491260 +3278.506179 +3278.519765 +3278.521863 +3278.537114 +3278.551833 +3278.564520 +3278.568949 +3278.579272 +3278.581503 +3278.595622 +3278.596621 +3278.612472 +3278.612839 +3278.613305 +3278.628256 +3278.653731 +3278.656428 +3278.673145 +3278.682835 +3278.685133 +3278.700384 +3278.702682 +3278.716069 +3278.718599 +3278.731786 +3278.746272 +3278.758826 +3278.760724 +3278.776375 +3278.790461 +3278.804247 +3278.820764 +3278.834950 +3278.861956 +3278.877540 +3278.893558 +3278.903714 +3278.934650 +3278.949502 +3278.975476 +3278.989661 +3279.007377 +3279.019398 +3279.033184 +3279.048236 +3279.063354 +3279.079272 +3279.093324 +3279.093624 +3279.105412 +3279.120963 +3279.133051 +3279.150467 +3279.174643 +3279.188729 +3279.219731 +3279.234117 +3279.245738 +3279.259425 +3279.272112 +3279.285365 +3279.317933 +3279.340710 +3279.358725 +3279.360457 +3279.369781 +3279.371646 +3279.384166 +3279.398053 +3279.411972 +3279.425558 +3279.439611 +3279.454629 +3279.469115 +3279.470214 +3279.483267 +3279.485965 +3279.499884 +3279.501882 +3279.516767 +3279.531985 +3279.561622 +3279.603181 +3279.620730 +3279.636714 +3279.650367 +3279.666184 +3279.680503 +3279.726058 +3279.745372 +3279.758159 +3279.807409 +3279.821329 +3279.833716 +3279.882301 +3283.885128 +3285.378932 +3285.668443 +3286.228682 +3290.145694 +3290.154052 +3290.160946 +3290.171502 +3290.208764 +3290.886519 +3290.891181 +3293.886583 +3293.891178 +3294.242227 +3294.262007 +3294.886049 +3294.891111 +3299.482848 +3299.890040 +3299.890273 +3300.986975 +3301.886375 +3303.087073 +3303.687006 +3304.886372 +3306.806850 +3309.902518 +3309.989131 +3310.063789 +3310.109544 +3310.135651 +3310.177642 +3310.191195 +3310.201618 +3310.251202 +3310.273879 +3310.302717 +3310.313440 +3310.413273 +3310.439347 +3310.461924 +3310.484035 +3310.515637 +3310.540079 +3310.563256 +3310.603249 +3310.628025 +3310.653965 +3310.687998 +3310.727891 +3310.744408 +3310.795524 +3310.807145 +3310.834185 +3310.848637 +3310.885966 +3310.924195 +3310.934518 +3310.957961 +3310.968617 +3311.003682 +3311.042010 +3311.093892 +3311.116236 +3311.133252 +3311.192793 +3311.218267 +3311.243275 +3311.255830 +3311.294258 +3311.327025 +3311.349969 +3311.400884 +3311.451134 +3311.463655 +3311.511107 +3311.513105 +3311.540944 +3311.566219 +3311.589029 +3311.680105 +3311.706945 +3311.722396 +3311.747038 +3311.842309 +3311.879139 +3311.933784 +3311.988596 +3312.003614 +3312.026824 +3312.092692 +3312.105446 +3312.122062 +3312.163354 +3312.186631 +3312.217167 +3312.230354 +3312.268183 +3312.282535 +3312.326225 +3312.339445 +3312.367150 +3312.379938 +3312.416834 +3312.445172 +3312.468016 +3312.480937 +3312.496255 +3312.518332 +3312.564686 +3312.578539 +3312.636248 +3312.674276 +3312.691526 +3312.731452 +3312.813970 +3312.828589 +3312.843607 +3312.858325 +3312.885532 +3312.908042 +3312.908842 +3312.922261 +3312.923427 +3312.946437 +3312.948768 +3312.961256 +3312.978738 +3312.990560 +3313.017499 +3313.030986 +3313.046237 +3313.060789 +3313.071812 +3313.091126 +3313.103780 +3313.117033 +3313.118565 +3313.131186 +3313.132151 +3313.146670 +3313.162388 +3313.177040 +3313.188362 +3313.192591 +3313.204279 +3313.222627 +3313.235681 +3313.236813 +3313.247136 +3313.249434 +3313.250599 +3313.265485 +3313.293223 +3313.295521 +3313.308608 +3313.324825 +3313.337413 +3313.349867 +3313.352364 +3313.381169 +3313.394788 +3313.407709 +3313.424925 +3313.438844 +3313.441941 +3313.457925 +3313.471811 +3313.487529 +3313.503313 +3313.516866 +3313.529787 +3313.545604 +3313.558691 +3313.562321 +3313.562854 +3313.572577 +3313.589394 +3313.601581 +3313.607176 +3313.618964 +3313.621961 +3313.632950 +3313.636180 +3313.651898 +3313.652464 +3313.662620 +3313.665817 +3313.694821 +3313.695920 +3313.707942 +3313.725890 +3313.740209 +3313.756460 +3313.771478 +3313.786463 +3313.801282 +3313.819197 +3313.832783 +3313.844338 +3313.858458 +3313.887928 +3313.891924 +3313.904611 +3313.907209 +3313.920429 +3313.935547 +3313.938977 +3313.953363 +3313.967648 +3313.981235 +3313.997319 +3314.011205 +3314.026789 +3314.046669 +3314.058724 +3314.075807 +3314.088661 +3314.104212 +3314.108874 +3314.118964 +3314.135147 +3314.163519 +3314.166782 +3314.167182 +3314.183233 +3314.195454 +3314.208041 +3314.226556 +3314.240009 +3314.257425 +3314.271444 +3314.283932 +3314.298784 +3314.315067 +3314.317698 +3314.329153 +3314.360722 +3314.362087 +3314.374774 +3314.389959 +3314.407308 +3314.422893 +3314.436446 +3314.437345 +3314.452063 +3314.466749 +3314.524158 +3314.538643 +3314.551164 +3314.551497 +3314.569379 +3314.571511 +3314.586995 +3314.598317 +3314.615200 +3314.628154 +3314.645303 +3314.660388 +3314.692190 +3314.704511 +3314.719263 +3314.732416 +3314.763552 +3314.778037 +3314.807341 +3314.821494 +3314.836912 +3314.865849 +3314.874807 +3324.885253 +3324.890914 +3326.891145 +3329.886913 +3335.685808 +3336.387140 +3336.486907 +3336.987372 +3337.287871 +3338.187038 +3339.586770 +3339.686803 +3341.891763 +3342.216205 +3343.806313 +3343.817735 +3344.239846 +3344.377874 +3344.383902 +3344.890461 +3344.896022 +3344.916802 +3344.936016 +3344.951167 +3344.969815 +3344.969982 +3344.970381 +3344.978273 +3344.980871 +3344.989662 +3345.009376 +3345.021796 +3345.040811 +3345.042309 +3345.052233 +3345.073911 +3345.094723 +3345.105413 +3345.107211 +3345.116302 +3345.136482 +3345.154164 +3345.154397 +3345.166685 +3345.177674 +3345.208876 +3345.210674 +3345.221263 +3345.232585 +3345.252898 +3345.254597 +3345.255496 +3345.264553 +3345.279505 +3345.279938 +3345.289595 +3345.302249 +3345.326258 +3345.326691 +3345.335849 +3345.339079 +3345.339512 +3345.351100 +3345.363521 +3345.377074 +3345.385599 +3345.388729 +3345.410474 +3345.421530 +3345.423295 +3345.430854 +3345.452266 +3345.501316 +3345.512339 +3345.514736 +3345.525992 +3345.537547 +3345.548236 +3345.569748 +3345.592692 +3345.602482 +3345.629055 +3345.630687 +3345.639611 +3345.641243 +3345.651300 +3345.665985 +3345.675742 +3345.687031 +3345.716767 +3345.736914 +3345.751566 +3345.788129 +3345.839278 +3345.852532 +3345.875542 +3345.887630 +3345.912838 +3345.934316 +3345.957859 +3345.991726 +3346.009708 +3346.020730 +3346.044806 +3346.057193 +3346.070946 +3346.081969 +3346.108942 +3346.119864 +3346.145838 +3346.157493 +3346.168482 +3346.182235 +3346.206644 +3346.229321 +3346.253530 +3346.270780 +3346.281202 +3346.303780 +3346.304712 +3346.316367 +3346.326557 +3346.339611 +3346.378272 +3346.400550 +3346.410173 +3346.423826 +3346.435415 +3346.500083 +3346.524392 +3346.538944 +3346.549534 +3346.590793 +3346.602248 +3346.629920 +3346.642774 +3346.668182 +3346.718065 +3346.744738 +3346.747036 +3346.760356 +3346.773177 +3346.798185 +3346.800216 +3346.814502 +3346.840975 +3346.854728 +3346.891258 +3346.902114 +3346.918631 +3346.932451 +3346.966350 +3346.981568 +3347.005344 +3347.021328 +3347.035880 +3347.050799 +3347.073143 +3347.089027 +3347.105278 +3347.132617 +3347.145104 +3347.156060 +3347.172677 +3347.196420 +3347.213070 +3347.226523 +3347.279070 +3347.294155 +3347.294854 +3347.318830 +3347.351464 +3347.352264 +3347.366916 +3347.390092 +3347.405810 +3347.434082 +3347.449466 +3347.474175 +3347.489593 +3347.514768 +3347.526556 +3347.538311 +3347.550399 +3347.563086 +3347.563852 +3347.578937 +3347.599882 +3347.614368 +3347.642506 +3347.667848 +3347.681867 +3347.685297 +3347.708607 +3347.765350 +3347.810372 +3347.823392 +3347.863086 +3347.864751 +3347.889959 +3347.905743 +3347.920262 +3347.936712 +3347.947634 +3347.988360 +3347.989992 +3348.002180 +3348.026755 +3348.039709 +3348.056659 +3348.069446 +3348.108074 +3348.121727 +3348.146535 +3348.160288 +3348.174940 +3348.232349 +3348.243838 +3348.257724 +3348.270844 +3348.288593 +3348.316365 +3348.329885 +3348.344570 +3348.369046 +3348.386095 +3348.408140 +3348.435812 +3348.459355 +3348.500548 +3348.514367 +3348.543671 +3348.565616 +3348.611170 +3348.624790 +3348.649165 +3348.664250 +3348.679269 +3348.696485 +3348.711503 +3348.768013 +3348.785829 +3348.814866 +3348.828053 +3348.861819 +3348.874773 +3348.964084 +3348.995652 +3349.036578 +3349.053128 +3349.066614 +3349.083131 +3349.104010 +3349.115499 +3349.130217 +3349.145835 +3349.159754 +3349.192322 +3349.253827 +3349.269678 +3349.316164 +3349.347733 +3349.440540 +3349.561319 +3349.605408 +3349.654959 +3349.684662 +3349.696550 +3349.716730 +3349.748032 +3349.761985 +3359.886184 +3359.891379 +3359.891578 +3360.886616 +3361.892176 +3362.885815 +3362.886048 +3362.886547 +3363.796903 +3363.809790 +3363.887312 +3363.892540 +3363.908624 +3364.122277 +3364.128870 +3364.134864 +3364.157542 +3367.345950 +3369.558069 +3369.577083 +3369.891668 +3373.988601 +3374.088134 +3374.387035 +3374.387968 +3374.686935 +3374.788000 +3374.788567 +3374.888666 +3379.891359 +3379.910639 +3379.918698 +3379.918998 +3379.926091 +3379.942208 +3379.943074 +3379.951632 +3379.962654 +3379.971512 +3379.972011 +3379.972144 +3379.980403 +3380.000416 +3380.011538 +3380.013769 +3380.023193 +3380.041309 +3380.077206 +3380.097319 +3380.099683 +3380.120829 +3380.172211 +3380.172910 +3380.185131 +3380.196154 +3380.198518 +3380.214435 +3380.222227 +3380.223892 +3380.257925 +3380.278738 +3380.289294 +3380.300383 +3380.308674 +3380.344006 +3380.368581 +3380.370679 +3380.393623 +3380.394555 +3380.430286 +3380.441275 +3380.442374 +3380.452231 +3380.453096 +3380.469813 +3380.484298 +3380.496686 +3380.536746 +3380.557958 +3380.589760 +3380.598584 +3380.623892 +3380.635381 +3380.659057 +3380.683399 +3380.706210 +3380.728621 +3380.756060 +3380.780968 +3380.793722 +3380.816832 +3380.849566 +3380.869246 +3380.870578 +3380.898917 +3380.927488 +3380.961121 +3380.989926 +3381.010405 +3381.042540 +3381.068114 +3381.137944 +3381.155693 +3381.194421 +3381.220928 +3381.246202 +3381.281767 +3381.315034 +3381.328120 +3381.363818 +3381.375839 +3381.402579 +3381.403079 +3381.411370 +3381.440441 +3381.461753 +3381.491457 +3381.533914 +3381.599049 +3381.611970 +3381.636012 +3381.659189 +3381.676505 +3381.728053 +3381.751497 +3381.780035 +3381.795852 +3381.861453 +3381.911536 +3381.936345 +3381.949965 +3381.977437 +3381.990025 +3382.036645 +3382.060654 +3382.094820 +3382.108140 +3382.132549 +3382.160188 +3382.224956 +3382.252429 +3382.285529 +3382.309039 +3382.321526 +3382.340474 +3382.365149 +3382.380301 +3382.409172 +3382.449198 +3382.465782 +3382.508106 +3382.532648 +3382.551496 +3382.577869 +3382.606474 +3382.636677 +3382.664882 +3382.676338 +3382.693054 +3382.704409 +3382.716164 +3382.758755 +3382.769844 +3382.784096 +3382.804409 +3382.829684 +3382.842172 +3382.844836 +3382.869178 +3382.881099 +3382.906840 +3382.920460 +3382.938142 +3382.939641 +3382.949964 +3382.964316 +3383.006241 +3383.029884 +3383.042771 +3383.045235 +3383.056923 +3383.070243 +3383.085162 +3383.100979 +3383.115165 +3383.128552 +3383.144835 +3383.161419 +3383.185761 +3383.219960 +3383.230816 +3383.249431 +3383.276970 +3383.321725 +3383.349497 +3383.366746 +3383.405508 +3383.424489 +3383.439041 +3383.452427 +3383.480899 +3383.496783 +3383.511801 +3383.526320 +3383.539673 +3383.541472 +3383.568411 +3383.613266 +3383.629717 +3383.643703 +3383.701944 +3383.718961 +3383.734279 +3383.745934 +3383.761984 +3383.774405 +3383.791921 +3383.818861 +3383.832247 +3383.849097 +3383.867345 +3383.882297 +3383.925587 +3383.951062 +3383.955357 +3383.966779 +3383.980865 +3383.995351 +3384.009803 +3384.022324 +3384.037309 +3384.050795 +3384.065847 +3384.080965 +3384.094118 +3384.108038 +3384.122057 +3384.137475 +3384.152693 +3384.182330 +3384.222024 +3384.247531 +3384.264248 +3384.279699 +3384.293619 +3384.310901 +3384.367145 +3384.399946 +3384.412666 +3384.428717 +3384.444235 +3384.468710 +3384.512366 +3384.527518 +3384.542536 +3384.573572 +3384.588590 +3384.617228 +3384.631014 +3384.649329 +3384.662849 +3384.687924 +3384.737408 +3384.795949 +3384.812832 +3384.873738 +3392.661642 +3392.690613 +3394.886981 +3395.892109 +3399.340790 +3399.887942 +3405.093198 +3406.688335 +3406.893829 +3407.094195 +3407.188867 +3407.388867 +3407.397825 +3407.487868 +3407.488367 +3407.588900 +3407.593762 +3407.797125 +3407.888866 +3407.987901 +3408.088367 +3408.288300 +3408.389032 +3408.588333 +3408.688366 +3409.287766 +3414.891690 +3414.903412 +3414.947601 +3414.978337 +3415.010371 +3415.040807 +3415.091224 +3415.124057 +3415.184697 +3415.233481 +3415.256392 +3415.282665 +3415.319262 +3415.347833 +3415.380367 +3415.465549 +3415.497750 +3415.540341 +3415.576704 +3415.611336 +3415.633681 +3415.671742 +3415.673141 +3415.695519 +3415.757124 +3415.793521 +3415.821493 +3415.847833 +3415.870976 +3415.894386 +3415.940973 +3415.997083 +3416.035312 +3416.072375 +3416.096584 +3416.146734 +3416.161685 +3416.174339 +3416.199547 +3416.260786 +3416.289324 +3416.315831 +3416.353993 +3416.369178 +3416.412401 +3416.442571 +3416.463250 +3416.489890 +3416.545834 +3416.560420 +3416.597316 +3416.611702 +3416.650296 +3416.663117 +3416.704109 +3416.745601 +3416.767912 +3416.783530 +3416.796050 +3416.810203 +3416.837809 +3416.860819 +3416.882464 +3416.895384 +3416.924755 +3416.936377 +3416.974605 +3416.987858 +3416.999647 +3417.047965 +3417.101112 +3417.164715 +3417.180133 +3417.205973 +3417.263416 +3417.284695 +3417.315197 +3417.341538 +3417.368278 +3417.392720 +3417.409303 +3417.436443 +3417.450495 +3417.465880 +3417.488158 +3417.530016 +3417.559186 +3417.587292 +3417.599679 +3417.601311 +3417.604175 +3417.615730 +3417.642037 +3417.644801 +3417.659686 +3417.674305 +3417.713632 +3417.757621 +3417.771374 +3417.813632 +3417.828284 +3417.855157 +3417.856855 +3417.869742 +3417.871873 +3417.886525 +3417.913732 +3417.927718 +3417.956089 +3417.967977 +3417.986092 +3417.997181 +3418.001177 +3418.015230 +3418.043035 +3418.056389 +3418.069243 +3418.073205 +3418.084960 +3418.101044 +3418.115296 +3418.116096 +3418.143701 +3418.146598 +3418.175103 +3418.185193 +3418.199779 +3418.214098 +3418.217994 +3418.233112 +3418.247298 +3418.262316 +3418.276568 +3418.302542 +3418.319425 +3418.335876 +3418.359252 +3418.360351 +3418.377301 +3418.378966 +3418.392685 +3418.422522 +3418.436075 +3418.479432 +3418.494484 +3418.509668 +3418.522522 +3418.539738 +3418.550894 +3418.555023 +3418.570741 +3418.581563 +3418.597547 +3418.608569 +3418.613165 +3418.628150 +3418.658952 +3418.683661 +3418.685293 +3418.701709 +3418.717161 +3418.745466 +3418.789621 +3418.819958 +3418.836208 +3418.849661 +3418.864380 +3418.879898 +3418.895482 +3418.909202 +3418.939804 +3418.956321 +3418.966278 +3418.970440 +3418.983161 +3419.000677 +3419.015962 +3419.044333 +3419.060051 +3419.075102 +3419.090487 +3419.104739 +3419.120690 +3419.133511 +3419.150860 +3419.165112 +3419.181096 +3419.196048 +3419.224753 +3419.240237 +3419.271040 +3419.287157 +3419.327317 +3419.342801 +3419.407003 +3419.436740 +3419.450227 +3419.466311 +3419.496481 +3419.526584 +3419.573437 +3419.588122 +3419.600510 +3419.615794 +3419.633210 +3419.649661 +3419.677399 +3419.709134 +3419.755821 +3419.761216 +3419.771705 +3419.787190 +3419.790187 +3419.800077 +3419.816727 +3419.831645 +3419.845664 +3419.857253 +3419.875734 +3419.878465 +3429.891575 +3430.887178 +3431.887211 +3431.892039 +3431.892339 +3432.891872 +3432.893104 +3433.886909 +3433.891904 +3439.891232 +3439.987036 +3440.587202 +3441.287901 +3441.986868 +3443.693160 +3449.902144 +3449.916563 +3449.927985 +3449.944302 +3449.944835 +3449.955358 +3449.956490 +3449.968012 +3449.979667 +3449.989024 +3449.996716 +3449.998881 +3450.005874 +3450.041705 +3450.050030 +3450.051728 +3450.060253 +3450.061352 +3450.069810 +3450.083097 +3450.086693 +3450.086993 +3450.097649 +3450.097882 +3450.117429 +3450.130083 +3450.130483 +3450.149497 +3450.150762 +3450.194219 +3450.194452 +3450.196383 +3450.206207 +3450.217229 +3450.226886 +3450.237142 +3450.269410 +3450.281498 +3450.282331 +3450.290922 +3450.365547 +3450.388191 +3450.409670 +3450.426753 +3450.461318 +3450.496749 +3450.508105 +3450.552127 +3450.573539 +3450.582830 +3450.592786 +3450.614698 +3450.638074 +3450.649396 +3450.699913 +3450.733446 +3450.780965 +3450.804042 +3450.804408 +3450.826786 +3450.856023 +3450.879000 +3450.902110 +3450.925587 +3450.948564 +3450.960685 +3450.986326 +3451.011434 +3451.021424 +3451.080199 +3451.187158 +3451.209236 +3451.222856 +3451.248397 +3451.294451 +3451.334877 +3451.360218 +3451.361217 +3451.381930 +3451.408437 +3451.423022 +3451.446898 +3451.458553 +3451.483428 +3451.528816 +3451.545067 +3451.555623 +3451.564414 +3451.577168 +3451.587924 +3451.597348 +3451.610634 +3451.624021 +3451.633278 +3451.634843 +3451.646898 +3451.670241 +3451.704607 +3451.719825 +3451.733145 +3451.744300 +3451.783994 +3451.809102 +3451.819725 +3451.844500 +3451.859785 +3451.895582 +3451.932645 +3451.980464 +3452.026684 +3452.037374 +3452.047430 +3452.098945 +3452.126318 +3452.149362 +3452.217493 +3452.229481 +3452.242535 +3452.279565 +3452.318026 +3452.329881 +3452.391652 +3452.405239 +3452.429515 +3452.467643 +3452.481562 +3452.495515 +3452.505439 +3452.508036 +3452.519425 +3452.531446 +3452.533011 +3452.541203 +3452.543134 +3452.566178 +3452.577933 +3452.581163 +3452.589255 +3452.590753 +3452.593317 +3452.602308 +3452.604140 +3452.614163 +3452.616927 +3452.628149 +3452.630347 +3452.641103 +3452.643767 +3452.644333 +3452.657320 +3452.669707 +3452.679265 +3452.692951 +3452.695881 +3452.697446 +3452.709101 +3452.711832 +3452.721689 +3452.733810 +3452.746564 +3452.758585 +3452.762248 +3452.772471 +3452.785092 +3452.800110 +3452.814596 +3452.816094 +3452.825418 +3452.837972 +3452.850726 +3452.853623 +3452.863880 +3452.876967 +3452.878698 +3452.891785 +3452.892484 +3452.907603 +3452.918658 +3452.919890 +3452.931412 +3452.933044 +3452.934376 +3452.943933 +3452.969674 +3452.984026 +3452.984992 +3452.988688 +3452.998045 +3453.012431 +3453.014529 +3453.041202 +3453.051126 +3453.053390 +3453.066310 +3453.076900 +3453.079464 +3453.090087 +3453.092284 +3453.103440 +3453.116926 +3453.118159 +3453.127183 +3453.138971 +3453.151026 +3453.152191 +3453.163180 +3453.166710 +3453.177266 +3453.188655 +3453.199910 +3453.200876 +3453.202141 +3453.228681 +3453.250559 +3453.261582 +3453.276766 +3453.303640 +3453.305771 +3453.320256 +3453.331678 +3453.372637 +3453.385125 +3453.386756 +3453.387955 +3453.397712 +3453.401242 +3453.411232 +3453.411532 +3453.413763 +3453.438771 +3453.452657 +3453.454855 +3453.463346 +3453.502174 +3453.513763 +3453.514995 +3453.537006 +3453.551658 +3453.579597 +3453.583293 +3453.591818 +3453.607835 +3453.619923 +3453.622487 +3453.634675 +3453.638338 +3453.647695 +3453.695847 +3453.703806 +3453.715028 +3453.727482 +3453.733176 +3453.744099 +3453.753822 +3453.779363 +3453.782960 +3453.794681 +3453.796213 +3453.809400 +3453.821388 +3453.838471 +3453.847662 +3453.862547 +3453.879730 +3453.894182 +3453.896146 +3453.937105 +3453.944931 +3453.953023 +3453.959983 +3454.062547 +3454.065910 +3454.077731 +3454.083359 +3454.135340 +3454.159916 +3454.189087 +3454.575666 +; +3.891738 +3.986809 +3.991837 +17.466749 +18.137311 +19.821792 +22.875701 +23.437006 +23.723419 +25.116758 +25.231943 +25.425449 +26.832740 +26.864875 +26.882357 +27.462343 +27.524681 +28.226312 +28.523481 +28.659145 +28.747091 +30.099737 +30.157179 +30.383886 +33.381585 +36.155275 +40.650509 +47.053300 +47.074711 +48.558193 +48.883801 +50.301448 +60.030376 +60.085055 +61.316888 +61.793411 +64.175627 +64.211824 +67.208158 +70.083946 +70.469993 +70.487509 +70.621874 +71.903624 +71.943018 +71.949811 +71.956039 +72.003191 +72.019209 +72.021606 +72.025402 +72.035093 +72.132628 +72.153774 +72.161233 +72.167660 +72.178449 +72.181180 +72.192002 +72.305822 +72.826700 +72.830197 +72.835858 +72.844116 +72.867293 +72.879647 +72.894299 +72.906254 +72.920107 +72.946813 +73.023903 +73.812214 +74.109683 +74.381278 +74.386139 +74.410781 +74.417808 +74.425267 +74.435157 +74.510581 +74.541051 +74.552539 +74.559932 +74.569389 +74.579146 +75.256468 +75.328496 +75.343581 +75.390734 +75.397427 +75.412012 +76.936387 +79.954732 +81.443475 +81.501850 +81.521230 +81.536582 +82.830520 +88.200045 +88.337474 +88.400811 +88.761250 +88.871373 +88.898646 +90.789553 +90.803339 +93.321718 +93.334006 +94.955050 +94.999705 +95.020817 +95.047524 +95.114390 +95.116288 +95.183455 +95.258080 +95.337367 +96.076894 +96.706830 +96.747922 +96.773896 +96.787782 +96.814921 +96.938931 +97.030539 +97.068701 +97.317418 +97.576559 +97.596905 +99.179721 +99.334433 +99.594040 +99.675691 +99.772361 +99.854878 +99.892607 +99.976357 +100.851747 +102.635395 +102.659871 +105.254174 +107.022104 +107.027832 +112.892195 +112.912408 +112.996324 +117.674807 +118.148067 +119.568112 +119.585761 +119.722491 +120.017962 +120.052327 +120.251162 +120.925753 +120.953192 +120.999313 +121.086392 +121.538340 +124.601174 +124.638637 +124.655553 +124.743465 +124.821986 +124.897444 +127.073965 +128.032606 +128.060411 +130.054948 +130.154548 +130.897039 +130.931504 +130.934534 +131.078390 +131.112689 +131.167601 +131.727973 +131.790244 +131.797237 +131.817051 +131.830804 +131.859009 +131.897803 +132.501166 +132.611955 +133.199534 +133.234532 +134.157175 +134.294205 +134.343788 +134.374824 +134.392506 +134.483815 +134.526272 +137.602660 +140.017143 +140.113912 +143.955867 +143.966223 +146.968551 +148.374544 +148.379172 +148.382735 +148.390827 +148.394690 +148.414837 +148.426958 +148.450734 +148.506278 +148.512106 +148.517800 +148.533651 +148.539845 +148.581237 +148.612572 +148.628356 +148.992492 +149.017533 +149.026191 +149.034350 +149.038546 +149.164719 +149.174543 +149.204846 +149.253031 +149.350866 +149.377706 +150.036979 +150.095787 +150.110506 +150.151465 +150.155627 +150.167615 +150.192790 +150.193623 +150.239677 +150.245837 +150.275441 +150.287429 +150.407375 +150.482700 +150.550099 +151.322659 +151.578969 +151.586095 +151.594454 +152.061120 +152.144004 +152.151030 +152.365382 +152.374606 +152.530184 +152.537776 +152.551829 +155.300044 +165.040361 +165.099369 +165.203065 +166.574659 +167.962536 +167.984414 +182.124293 +190.809666 +190.834541 +191.498976 +191.503671 +191.517724 +191.598843 +200.028405 +200.052913 +200.100333 +200.135631 +200.161072 +200.209423 +200.259673 +200.351381 +200.413419 +200.533033 +200.693406 +200.773093 +200.888977 +201.004328 +201.082250 +201.157841 +201.293605 +201.494870 +201.658939 +202.292638 +202.431532 +202.581882 +202.852811 +212.152668 +214.941244 +225.964975 +226.499041 +227.602203 +227.647391 +227.663608 +227.667471 +227.681091 +227.685686 +227.699905 +234.996268 +235.000930 +235.010587 +235.032499 +235.067497 +235.123375 +235.333597 +237.160669 +237.215414 +237.249646 +237.261035 +237.395567 +238.585376 +238.598762 +238.603424 +238.621207 +238.669891 +238.721506 +238.722072 +238.726534 +238.736791 +238.748379 +238.750744 +238.795699 +238.820540 +238.865229 +238.921639 +238.961499 +238.964063 +238.974420 +239.189205 +239.865594 +239.892800 +239.925035 +239.992234 +241.846811 +241.903321 +243.046444 +243.082807 +243.097126 +243.116041 +244.699189 +244.727527 +244.739915 +244.753801 +246.320699 +246.346573 +247.206646 +253.007905 +253.805074 +253.817795 +253.959986 +254.037775 +254.063715 +254.222556 +254.330815 +255.249528 +255.518859 +258.223585 +260.377928 +260.415157 +260.444328 +261.300205 +262.050720 +262.100937 +262.156281 +262.160177 +262.300837 +263.585317 +266.283084 +268.643854 +268.742988 +268.758772 +269.665531 +269.725771 +270.116446 +270.202927 +270.370925 +270.692303 +270.708121 +270.721607 +270.762766 +270.777152 +270.873755 +271.162466 +271.491137 +271.517011 +271.547048 +271.602526 +271.626402 +271.634161 +271.710850 +272.367926 +272.432661 +272.590836 +272.660267 +272.700460 +272.782378 +272.817942 +273.729696 +274.877947 +274.880544 +274.946412 +277.480675 +279.014007 +283.042041 +283.051831 +283.069414 +283.087662 +285.228652 +286.814532 +286.841471 +290.006936 +293.549090 +294.003735 +295.500370 +295.537134 +297.596872 +297.802533 +298.957243 +298.961206 +305.022439 +305.062399 +305.100261 +305.223105 +305.450577 +305.549578 +305.597963 +305.633860 +305.653074 +305.735392 +305.884343 +305.954439 +305.958935 +306.014912 +306.024602 +306.092867 +306.139288 +306.214479 +306.514579 +306.578148 +306.627599 +306.686473 +306.896097 +306.992200 +307.026200 +307.243416 +308.192566 +308.270521 +308.355636 +310.135720 +310.344844 +310.417971 +311.387001 +314.610375 +314.630321 +314.649968 +314.785033 +317.557358 +317.774241 +318.811603 +320.406739 +321.789588 +322.946197 +326.731275 +330.415720 +332.109958 +332.871495 +333.043823 +333.129304 +333.704928 +333.798634 +340.014978 +340.052041 +340.298527 +340.377682 +340.479679 +340.489403 +340.853206 +340.944381 +341.052040 +341.130228 +342.057400 +342.119605 +342.172651 +342.201190 +342.248409 +342.296561 +342.352039 +342.580277 +342.596560 +342.725531 +342.736254 +342.743180 +342.751306 +342.769720 +342.950373 +342.953969 +342.967922 +342.976946 +343.012677 +343.012877 +343.096194 +343.195061 +343.232224 +343.260030 +343.659330 +345.204450 +345.217171 +345.489831 +347.326359 +347.343376 +347.368883 +348.843807 +349.870479 +351.229019 +351.322226 +351.564151 +352.356158 +352.834612 +352.910236 +352.995484 +353.316996 +354.405773 +354.412466 +354.476535 +354.516462 +354.606705 +354.757454 +355.345166 +355.709801 +356.206936 +356.219724 +356.226817 +356.249660 +356.300176 +356.314695 +356.343300 +356.350160 +356.797745 +357.083725 +357.101907 +357.109033 +357.119923 +357.229446 +357.258451 +358.025949 +358.053322 +358.074567 +358.195746 +358.261846 +358.268373 +358.368606 +358.380094 +363.272930 +363.792676 +364.413322 +365.198602 +366.708724 +367.835230 +367.899299 +369.000663 +369.701761 +369.811918 +375.007850 +375.016808 +375.036222 +375.037953 +375.080511 +375.159831 +376.704585 +376.735188 +376.761361 +376.770219 +376.784338 +376.857931 +376.891531 +377.011045 +377.867987 +377.877844 +379.242078 +379.266587 +379.355098 +379.394626 +379.475145 +379.558628 +380.457095 +382.903147 +386.617262 +391.999408 +403.800196 +410.008481 +410.026396 +410.029260 +410.068454 +410.088867 +410.191864 +410.235887 +410.291531 +410.415241 +410.489966 +411.252736 +411.361760 +412.059361 +412.504549 +434.065267 +435.799631 +442.367323 +445.018003 +445.139215 +445.346741 +445.770850 +445.839448 +446.176577 +446.242877 +446.298521 +446.347905 +446.744775 +446.815404 +446.822697 +449.991458 +450.988793 +451.054660 +451.157924 +457.222753 +457.230046 +458.250058 +458.398509 +458.411763 +460.368937 +461.125313 +461.153252 +461.231140 +461.763474 +462.408229 +468.369728 +468.830067 +470.202127 +470.581847 +470.699096 +470.770292 +470.801194 +470.900328 +471.203458 +472.901891 +474.228830 +474.258334 +474.298027 +478.388832 +478.485802 +479.779007 +480.022497 +480.048005 +480.062257 +480.076310 +480.101152 +480.120665 +480.204215 +480.252300 +480.431920 +480.540745 +480.639979 +480.712140 +480.851134 +482.152565 +482.228922 +482.293590 +482.434483 +483.545637 +483.583466 +483.589493 +484.196719 +484.203046 +484.236878 +484.701746 +484.717797 +489.020457 +490.249060 +490.413329 +493.913126 +495.496907 +495.505165 +497.002200 +500.470429 +500.491541 +500.831933 +500.849682 +501.913651 +506.186973 +506.886506 +512.325062 +517.581001 +517.584964 +517.593721 +517.634114 +517.718430 +517.740541 +517.752895 +517.754960 +517.801680 +517.814167 +517.873508 +517.881633 +518.377537 +518.397151 +518.423524 +518.436877 +518.657157 +519.686693 +519.797349 +519.901345 +519.978501 +520.095184 +520.957488 +527.031408 +528.111959 +528.117687 +535.001197 +535.043654 +539.370523 +539.377649 +539.422937 +539.454006 +539.484442 +539.575917 +539.690669 +539.766726 +539.780579 +539.814978 +540.653572 +541.489968 +541.495862 +541.564493 +541.581743 +541.712412 +541.839285 +541.854037 +541.862362 +542.001756 +543.157465 +543.234688 +543.240183 +543.299057 +543.317172 +543.323299 +543.359230 +543.431824 +544.592429 +544.601487 +544.613974 +544.635985 +544.652835 +544.661027 +544.677211 +544.684370 +544.695326 +544.836118 +544.852535 +545.637550 +545.872847 +545.882571 +545.893427 +545.952135 +545.963090 +546.087632 +546.102484 +546.395757 +546.405448 +546.407246 +546.410443 +546.422997 +547.661690 +547.669682 +547.743708 +550.016233 +550.077439 +550.158857 +550.474541 +550.646835 +550.729353 +550.758856 +550.761387 +550.792889 +550.854028 +550.899049 +550.989992 +552.482964 +552.561852 +552.585595 +552.602911 +553.269177 +556.997545 +558.985322 +558.997276 +560.237368 +560.314092 +560.360445 +560.368138 +560.376962 +564.004731 +569.389607 +569.438591 +571.588839 +573.382444 +574.310082 +574.327664 +574.353072 +574.362429 +574.494797 +575.798292 +575.902721 +576.101655 +577.281707 +577.300988 +577.399889 +579.577509 +579.599920 +582.198818 +583.004878 +585.009139 +585.057723 +585.140141 +585.534113 +585.540873 +585.545868 +585.563251 +585.607673 +585.629851 +585.639308 +585.762784 +585.880833 +585.891822 +586.288624 +586.296084 +586.331282 +586.331948 +586.348132 +586.492154 +586.499946 +586.555824 +587.200012 +587.213066 +587.223922 +587.261983 +587.310735 +587.493119 +587.554757 +587.679266 +587.735676 +601.044654 +601.061170 +601.296102 +601.309688 +601.438693 +601.539259 +601.729601 +601.819844 +601.950580 +602.660370 +604.144651 +605.087640 +606.297063 +607.366725 +607.447444 +607.467924 +607.812313 +607.820971 +607.859299 +607.885473 +607.991866 +608.467457 +608.501756 +608.512378 +608.554303 +608.585872 +608.619405 +608.737686 +608.742748 +608.748808 +608.808282 +609.587203 +610.502353 +611.830857 +612.294792 +612.600919 +619.264649 +620.027585 +620.047598 +620.092187 +620.445001 +622.547529 +626.285887 +632.559074 +632.578155 +633.028538 +634.028404 +634.028936 +634.595103 +635.929034 +636.028468 +636.035395 +636.823139 +636.986143 +637.027601 +637.114414 +637.287841 +640.771820 +640.971953 +641.011713 +641.517940 +641.559232 +641.588136 +642.323467 +643.229260 +643.246276 +643.329260 +643.629060 +643.630658 +643.728793 +643.829593 +643.830925 +643.831557 +644.330458 +644.528659 +644.731690 +644.929425 +645.029225 +645.131722 +645.131922 +645.230057 +645.232288 +645.331189 +645.429491 +645.533154 +645.633720 +645.733320 +645.830789 +645.832521 +645.930856 +646.029357 +646.429890 +646.531788 +646.732487 +646.832353 +647.430122 +647.528323 +647.530588 +647.531287 +647.694624 +647.730155 +647.832386 +648.030587 +649.442208 +649.963719 +649.968880 +649.978637 +650.442373 +653.028484 +653.050129 +653.383129 +653.517928 +653.643802 +653.690821 +653.780665 +653.925919 +654.425752 +654.639605 +655.984093 +656.143733 +656.888521 +656.900409 +657.002506 +657.059583 +657.079529 +657.164111 +657.196579 +657.229479 +657.231244 +657.263245 +657.346429 +657.416159 +657.428147 +657.430645 +657.445663 +657.625683 +657.641533 +657.659016 +657.678563 +657.691916 +657.794081 +657.810464 +657.910098 +657.925416 +657.980228 +657.997810 +658.027147 +660.872999 +661.274064 +661.824913 +661.850054 +662.001269 +662.280290 +663.681188 +664.873960 +667.171394 +667.310488 +668.603161 +668.695801 +668.705292 +668.789275 +668.809987 +669.030267 +669.030966 +669.493603 +670.175320 +671.031364 +673.029730 +673.031128 +676.656100 +677.911144 +678.028892 +678.129125 +678.430590 +678.530657 +678.532255 +678.631489 +678.632655 +678.730923 +678.831356 +678.933553 +679.229957 +679.231822 +679.330223 +679.430389 +679.530622 +679.589663 +679.630123 +679.631788 +679.731854 +679.833186 +679.834119 +679.933353 +680.134218 +680.430555 +680.431387 +680.530788 +680.531787 +680.631121 +680.731554 +680.733185 +681.032186 +681.131920 +681.233418 +681.333385 +681.791359 +681.827257 +681.830054 +681.837313 +681.932751 +682.029321 +682.132252 +682.433417 +682.732118 +682.933316 +682.933549 +687.550228 +688.038007 +688.065013 +688.331946 +688.442135 +688.838372 +689.021555 +689.523320 +689.565444 +689.600409 +689.628381 +690.267575 +690.317025 +690.948926 +691.001440 +691.293914 +691.852588 +691.886887 +691.900940 +691.902871 +691.935439 +691.936937 +691.962711 +692.014293 +692.033174 +692.050657 +692.067173 +692.099807 +692.146261 +692.210463 +692.226014 +692.272834 +692.308765 +692.322251 +692.342664 +692.368372 +692.417556 +692.437036 +692.455052 +692.486787 +692.520453 +692.523283 +692.553453 +692.569737 +692.606200 +692.651488 +692.668904 +692.703270 +692.720586 +692.771102 +692.802437 +692.926746 +692.956716 +692.988784 +700.403495 +700.414618 +700.445653 +701.351813 +703.274022 +703.277885 +703.294202 +703.319543 +704.031331 +705.031496 +705.032628 +705.476151 +705.481379 +705.487373 +705.504456 +705.516677 +705.535991 +705.554140 +705.601292 +706.030929 +706.031195 +706.032028 +706.243683 +706.257835 +706.897561 +706.911814 +706.922536 +707.030928 +708.032192 +708.287637 +708.294663 +708.366891 +708.673117 +711.892062 +711.904516 +711.920866 +711.962791 +713.028358 +713.030855 +713.031155 +713.230156 +713.230456 +713.231554 +713.332120 +713.430688 +713.631787 +713.633352 +713.633619 +713.833186 +713.833885 +714.134251 +714.137081 +714.232153 +714.333551 +714.432652 +714.533485 +714.632286 +714.633151 +714.734317 +714.934050 +714.935116 +715.233817 +715.334649 +715.431852 +715.832751 +715.931652 +715.931918 +716.033949 +716.134715 +716.234049 +716.332650 +716.528954 +716.732250 +716.732716 +716.832949 +716.933116 +717.234115 +717.234847 +717.434281 +717.634181 +717.834380 +719.294119 +719.400679 +722.717126 +722.755421 +723.038471 +723.093682 +723.147029 +723.173070 +723.204238 +723.261048 +723.275401 +723.437072 +723.695014 +723.741301 +723.851424 +723.880095 +723.937504 +723.994847 +724.042499 +724.107767 +724.253655 +724.361380 +724.378430 +724.393215 +724.461746 +724.699408 +725.333474 +725.599374 +725.903670 +726.114425 +726.226879 +726.273133 +726.323882 +726.471068 +726.760412 +726.834771 +726.835137 +726.868304 +726.893912 +726.911927 +726.961378 +726.998940 +727.064008 +727.079093 +727.124681 +727.209163 +727.242097 +727.296575 +727.390681 +727.393245 +727.408530 +727.426312 +727.470768 +727.540897 +727.543761 +727.574031 +727.611061 +727.668237 +727.701670 +727.702436 +727.803168 +727.817121 +727.833005 +727.862975 +727.892912 +727.956282 +727.982888 +728.021117 +734.881150 +737.635559 +738.938488 +738.956570 +739.029631 +739.031562 +739.830229 +739.888904 +740.029396 +740.730128 +741.523068 +741.900823 +741.904553 +742.898158 +743.029194 +743.029960 +746.305947 +748.130188 +748.130387 +748.130953 +748.131187 +748.331752 +748.431786 +748.432651 +748.531919 +748.532152 +748.733384 +749.031419 +749.032351 +749.529886 +749.532018 +749.632750 +750.333049 +750.527122 +750.530951 +750.630551 +750.631417 +750.830285 +750.832283 +750.932416 +751.033681 +751.431816 +751.432981 +751.633081 +752.131582 +752.132914 +752.231715 +752.731748 +753.033046 +753.630282 +753.729216 +753.947997 +754.043968 +754.477201 +754.512532 +755.287556 +756.626416 +756.631311 +756.675134 +756.683659 +756.704904 +758.036871 +758.052056 +758.069705 +758.104703 +758.515891 +758.975764 +759.445727 +759.519920 +760.268104 +760.315557 +760.543628 +760.683622 +761.144926 +761.696141 +761.714157 +761.726644 +761.979691 +762.011093 +762.025445 +762.041296 +762.092478 +762.110327 +762.174995 +762.193643 +762.292877 +762.303267 +762.339098 +762.401602 +762.439997 +762.466703 +762.468135 +762.516853 +762.532537 +762.659977 +762.690479 +762.738498 +762.739996 +762.768535 +762.809926 +762.845990 +762.864772 +762.899304 +762.916420 +762.978291 +763.437065 +763.446256 +763.452716 +763.456812 +763.470898 +763.476160 +763.740262 +763.929706 +764.123478 +770.500828 +775.172252 +776.029793 +776.031891 +777.026529 +778.030357 +784.430950 +784.831949 +785.031016 +785.730316 +785.829417 +786.031981 +786.426453 +786.933812 +787.132180 +787.328517 +787.832146 +793.054252 +793.177762 +793.524215 +793.712593 +793.799306 +794.451253 +794.511693 +795.509794 +795.613224 +795.839797 +796.351285 +796.384285 +796.550352 +796.576659 +796.636100 +796.679423 +796.844491 +797.000235 +797.117018 +797.212290 +797.213155 +797.299402 +797.342626 +797.439396 +797.771463 +797.980687 +808.028662 +808.030694 +809.030626 +811.028460 +811.030358 +818.029285 +818.029951 +818.131383 +818.229884 +819.132115 +819.632247 +820.731380 +821.031746 +821.033245 +821.132479 +821.331646 +821.432645 +821.631679 +822.331712 +822.530613 +822.534742 +822.630379 +822.832744 +822.833176 +822.931278 +822.932111 +823.031811 +823.465011 +828.038166 +828.046858 +828.056448 +828.056981 +828.067004 +828.086551 +828.087983 +828.098572 +828.150487 +828.150920 +828.165206 +828.193244 +828.207663 +828.222781 +828.235835 +828.237600 +828.251819 +828.292079 +828.308329 +828.348789 +828.371333 +828.373664 +828.407397 +828.471199 +828.502102 +828.519817 +828.578592 +828.578925 +828.645425 +828.677560 +828.711426 +828.728275 +828.742761 +828.788215 +828.790580 +828.862208 +828.947323 +828.947689 +828.949754 +828.950753 +829.037266 +829.064506 +829.065937 +829.067269 +829.113423 +829.154782 +829.173563 +829.189580 +829.205498 +829.219384 +829.269967 +829.360443 +829.378258 +829.421315 +829.557512 +830.280688 +830.508527 +830.641327 +830.827274 +831.045190 +831.394107 +831.559741 +831.783717 +831.832335 +831.923943 +831.955145 +831.988046 +832.040826 +832.269364 +832.460373 +832.855910 +838.201593 +845.029891 +847.029789 +848.029588 +848.031586 +853.131814 +853.230549 +853.533545 +853.632147 +854.133545 +856.232877 +857.132343 +857.932042 +858.032076 +858.506401 +858.542332 +860.567338 +860.581224 +860.612293 +863.169500 +863.417551 +863.488281 +864.140195 +864.312189 +864.511690 +864.710790 +864.742758 +864.760640 +864.996471 +865.426008 +866.050449 +866.169830 +866.754078 +866.821844 +867.115683 +867.154944 +867.186046 +867.219712 +867.323209 +867.324940 +867.408523 +867.454411 +867.678120 +867.696835 +867.714184 +867.838093 +867.873691 +875.902521 +878.031323 +878.032255 +881.929521 +882.031486 +882.032351 +883.031684 +886.387392 +886.623289 +886.627452 +888.029581 +888.329814 +888.332378 +888.430613 +888.432178 +888.432811 +888.531279 +888.533311 +888.631512 +888.934143 +889.034376 +889.135774 +889.429713 +889.631478 +889.731944 +890.031211 +890.134375 +890.333675 +890.434807 +890.731377 +890.830145 +890.930877 +891.030777 +891.033208 +891.731143 +891.934739 +892.633906 +892.732241 +893.033040 +898.098403 +898.594772 +899.411521 +899.856210 +900.179719 +900.194471 +901.081949 +901.131400 +901.340457 +901.356941 +901.533397 +901.551746 +901.565199 +901.940923 +902.103061 +902.139391 +902.217879 +902.269860 +902.320010 +902.477852 +902.614149 +902.676853 +902.817712 +902.849547 +914.856727 +915.030520 +918.032382 +920.145100 +920.170075 +920.189656 +920.202743 +921.614396 +921.786957 +923.127115 +923.129713 +923.130312 +923.164212 +923.230579 +923.328714 +923.426316 +923.430811 +923.533209 +923.631277 +923.733975 +924.031743 +924.032709 +924.131443 +924.231110 +924.330611 +924.431143 +924.432442 +924.432675 +924.631809 +924.633141 +924.634640 +924.732109 +924.832375 +924.833474 +924.834207 +924.934040 +925.034473 +925.834239 +926.232973 +926.333406 +926.431141 +926.531175 +926.630109 +926.831840 +926.933439 +927.633771 +927.930507 +927.932672 +928.031939 +928.033371 +929.732370 +929.930439 +931.321380 +933.030535 +933.073559 +933.106559 +933.119713 +933.220512 +933.326639 +933.368197 +933.483782 +933.522643 +933.593705 +933.729969 +933.848084 +933.880018 +933.938593 +934.016182 +934.193904 +934.389442 +934.405159 +934.535462 +935.493770 +936.048415 +936.144618 +936.514415 +936.645117 +937.087075 +937.187374 +937.236925 +937.771956 +937.913781 +941.503188 +941.732525 +944.604150 +944.627161 +944.640847 +944.654000 +944.702652 +944.755266 +944.872382 +944.921766 +948.029821 +948.030088 +950.364484 +950.451197 +950.465317 +951.032049 +952.030783 +952.804741 +953.027419 +953.897980 +958.029778 +958.431742 +958.632308 +958.732574 +958.833174 +958.833873 +958.934306 +959.032075 +959.033407 +959.132474 +959.133573 +959.332341 +959.430676 +959.529477 +959.631974 +959.633173 +959.833139 +959.933506 +960.032506 +960.132040 +960.535736 +960.732905 +960.830341 +961.732705 +961.832538 +961.933504 +962.335834 +962.831971 +965.429870 +966.914118 +968.065599 +968.086478 +968.087776 +968.130234 +968.132731 +968.147750 +968.263634 +968.278119 +968.341522 +968.420543 +968.461669 +968.477753 +968.507490 +968.551645 +968.584912 +968.659837 +968.687176 +968.709887 +968.721142 +968.766231 +968.795535 +968.819477 +968.873490 +968.942521 +969.224305 +970.336392 +971.693234 +971.908818 +972.253906 +972.743383 +972.876383 +980.462356 +981.630920 +982.955294 +984.030584 +987.031480 +987.032113 +987.685492 +987.730880 +987.743767 +987.750860 +987.764280 +987.798679 +987.971107 +987.990054 +988.012465 +988.030680 +988.031579 +988.037707 +989.005771 +990.327614 +990.464710 +993.031874 +993.033306 +993.132240 +993.233739 +993.331907 +993.430408 +993.431274 +993.633272 +994.233038 +994.535436 +994.832938 +994.932571 +995.032571 +995.132704 +995.332338 +995.334702 +995.435002 +995.534236 +995.630306 +995.731871 +995.732338 +995.834136 +995.933137 +996.034735 +996.531271 +996.631504 +996.833202 +996.932869 +997.632535 +997.732069 +997.732402 +997.733002 +997.831536 +998.527273 +999.256177 +1000.595436 +1003.037259 +1003.037758 +1003.045151 +1003.054342 +1003.065997 +1003.077319 +1003.088807 +1003.099396 +1003.099696 +1003.111717 +1003.132930 +1003.146949 +1003.161901 +1003.174222 +1003.207888 +1003.220608 +1003.271191 +1003.300462 +1003.316346 +1003.350312 +1003.377784 +1003.411417 +1003.430199 +1003.501361 +1003.565064 +1003.596699 +1003.611451 +1003.626702 +1003.684211 +1003.701727 +1003.735626 +1003.752476 +1003.766595 +1003.767061 +1003.768294 +1003.785643 +1003.802060 +1004.367960 +1004.464230 +1004.478782 +1004.683045 +1004.920640 +1005.039688 +1005.229498 +1005.636923 +1005.774286 +1006.054572 +1006.075218 +1006.125634 +1006.202990 +1006.345347 +1006.373053 +1006.384108 +1006.393366 +1006.517075 +1006.569789 +1006.602790 +1006.656336 +1006.710881 +1006.751374 +1007.005087 +1007.102989 +1007.377048 +1007.380178 +1007.416408 +1007.453272 +1007.541450 +1007.707018 +1007.785572 +1007.818872 +1007.854337 +1007.888369 +1008.018972 +1008.374882 +1010.991630 +1011.580307 +1014.060591 +1015.948967 +1018.031416 +1018.639174 +1019.032447 +1020.031581 +1020.032147 +1020.033179 +1021.031779 +1021.032545 +1022.032012 +1023.031511 +1028.130540 +1028.230773 +1028.231373 +1028.231872 +1028.331040 +1028.431839 +1028.433903 +1028.533770 +1028.633670 +1028.634502 +1029.032904 +1029.033769 +1029.134269 +1029.233203 +1029.234635 +1029.431038 +1029.632104 +1029.832437 +1029.834601 +1030.032903 +1030.035200 +1030.534334 +1030.634467 +1031.232202 +1031.832468 +1031.834266 +1031.934133 +1032.609757 +1032.614552 +1032.620479 +1032.632034 +1032.731002 +1034.161237 +1034.214084 +1038.109918 +1038.473887 +1038.614179 +1038.840286 +1039.188105 +1039.282610 +1039.619640 +1040.026333 +1040.862396 +1040.929828 +1041.927829 +1042.520436 +1042.972816 +1046.409143 +1047.168983 +1056.029946 +1062.216720 +1063.129606 +1063.130705 +1063.230072 +1063.331404 +1063.332903 +1063.532869 +1063.730871 +1063.832203 +1063.932103 +1063.932436 +1064.032869 +1064.131303 +1064.132869 +1064.133834 +1064.230837 +1064.631536 +1064.632235 +1064.731503 +1065.032501 +1065.034699 +1065.131136 +1065.132368 +1065.132868 +1065.231069 +1065.331202 +1065.332601 +1065.432534 +1065.531435 +1065.532900 +1065.633500 +1065.731335 +1065.831235 +1065.834432 +1065.932700 +1066.031302 +1066.231168 +1066.233033 +1066.332467 +1066.431401 +1066.571727 +1066.585447 +1066.628837 +1066.731034 +1066.832167 +1067.333032 +1067.431467 +1067.531367 +1067.931166 +1068.034030 +1073.037055 +1073.037622 +1073.097861 +1073.099393 +1073.100192 +1073.111081 +1073.146712 +1073.148111 +1073.160565 +1073.225267 +1073.242050 +1073.258467 +1073.299193 +1073.382743 +1073.431594 +1073.447711 +1073.461730 +1073.495530 +1073.540318 +1073.572786 +1073.610248 +1073.646179 +1073.661664 +1073.694198 +1073.695729 +1073.711580 +1073.711913 +1073.818740 +1073.877947 +1074.357234 +1074.385073 +1074.386205 +1074.468889 +1074.745246 +1074.894796 +1075.051905 +1075.234423 +1075.482974 +1075.703753 +1075.881142 +1075.911112 +1076.116939 +1076.182174 +1076.477478 +1076.561128 +1076.987468 +1077.034221 +1077.145343 +1077.658063 +1077.839681 +1079.063989 +1082.733083 +1082.798218 +1082.832084 +1083.433449 +1083.446236 +1084.312735 +1084.387960 +1084.393954 +1088.029048 +1092.029244 +1093.028444 +1098.830403 +1101.129835 +1101.130834 +1101.232931 +1102.131299 +1102.229567 +1102.429534 +1103.030099 +1108.044580 +1108.044979 +1108.075515 +1108.087303 +1108.087603 +1108.134723 +1108.148542 +1108.175482 +1108.262628 +1108.276681 +1108.333224 +1108.387470 +1108.418072 +1108.456634 +1108.471652 +1108.488369 +1108.545312 +1108.546011 +1108.547210 +1108.593763 +1108.875215 +1109.505417 +1109.602653 +1109.691031 +1109.781607 +1109.858530 +1109.904351 +1110.055567 +1110.282273 +1110.313109 +1110.405316 +1111.654999 +1112.095491 +1112.218302 +1112.249071 +1112.583536 +1112.881338 +1113.002117 +1113.501417 +1116.921960 +1123.028114 +1124.029545 +1124.030944 +1125.028379 +1126.030009 +1126.030309 +1126.030609 +1128.030507 +1128.469035 +1128.551352 +1128.618152 +1128.683220 +1129.948987 +1131.658675 +1133.128004 +1133.230835 +1133.231368 +1133.332033 +1133.431800 +1133.533099 +1133.829436 +1133.829868 +1134.030268 +1134.231000 +1134.232033 +1134.332599 +1134.433231 +1134.532299 +1135.230333 +1135.230933 +1135.929933 +1136.132996 +1136.133429 +1136.232796 +1136.331631 +1136.531398 +1136.664364 +1136.831497 +1136.930132 +1136.931997 +1137.129099 +1137.332662 +1137.334194 +1137.432562 +1137.529898 +1137.631496 +1137.633095 +1138.029032 +1139.965160 +1143.029593 +1143.055567 +1143.099689 +1143.133922 +1143.161161 +1143.208048 +1143.263625 +1143.265723 +1143.295993 +1143.297991 +1143.345976 +1143.346476 +1143.420202 +1143.482373 +1143.483838 +1143.502220 +1143.519569 +1143.538750 +1143.720268 +1144.039915 +1144.082805 +1144.084004 +1144.274780 +1144.308180 +1144.708579 +1145.844442 +1145.859893 +1145.931588 +1146.055264 +1146.652133 +1146.720498 +1147.023695 +1147.061723 +1147.428157 +1147.752598 +1147.942075 +1147.987197 +1148.007477 +1148.009674 +1148.535914 +1153.966645 +1155.987122 +1156.231911 +1156.274268 +1157.305469 +1157.558716 +1157.605303 +1158.030344 +1158.702371 +1159.030776 +1163.028141 +1163.030372 +1163.378823 +1163.416652 +1163.431138 +1163.566102 +1163.619449 +1164.265869 +1164.571163 +1165.829071 +1167.337727 +1168.029801 +1168.129601 +1168.228935 +1168.330234 +1168.330999 +1168.531399 +1168.631965 +1168.731465 +1169.030266 +1169.105291 +1169.129400 +1169.129800 +1169.433662 +1169.632896 +1169.731597 +1169.829932 +1170.129865 +1170.230332 +1170.232296 +1170.331897 +1170.429865 +1170.733195 +1170.832828 +1170.933561 +1171.332695 +1171.630130 +1171.631829 +1171.830430 +1171.931262 +1172.131562 +1172.531861 +1175.396194 +1177.160428 +1178.038482 +1178.053534 +1178.094693 +1178.094959 +1178.130923 +1178.158662 +1178.277110 +1178.313274 +1178.313673 +1178.406847 +1178.627759 +1178.686134 +1178.850536 +1180.164221 +1180.837747 +1181.369048 +1181.493058 +1181.708209 +1181.766417 +1181.833916 +1182.280902 +1182.531851 +1182.719596 +1182.869813 +1182.924391 +1183.959289 +1183.974907 +1184.156491 +1184.174074 +1184.322192 +1185.888291 +1185.939873 +1186.559852 +1186.648464 +1187.422422 +1188.217393 +1188.236008 +1191.625082 +1191.842731 +1194.031773 +1194.718319 +1195.629007 +1196.708427 +1196.715520 +1197.829538 +1197.987946 +1198.028339 +1198.028739 +1198.219448 +1198.692241 +1199.448651 +1200.821976 +1203.029699 +1203.030265 +1203.031231 +1203.130665 +1203.230365 +1203.231531 +1203.529832 +1203.636825 +1203.729565 +1203.829299 +1203.830797 +1203.930198 +1203.932029 +1204.032262 +1204.232096 +1204.233161 +1204.332628 +1205.028965 +1205.230263 +1205.330496 +1205.331995 +1205.433260 +1205.531428 +1205.832660 +1206.229829 +1206.429629 +1206.628430 +1206.831427 +1206.929929 +1207.629562 +1207.730760 +1207.832458 +1207.931626 +1208.031393 +1213.029689 +1213.045107 +1213.063189 +1213.063988 +1213.151800 +1213.192693 +1213.192893 +1213.193459 +1213.235417 +1213.304714 +1213.342476 +1213.359892 +1213.377941 +1213.390661 +1213.432653 +1213.660758 +1214.373311 +1214.485632 +1214.676874 +1214.994223 +1215.011272 +1215.230586 +1215.791591 +1215.855627 +1216.019363 +1216.460289 +1217.010371 +1217.790957 +1217.815565 +1217.842372 +1217.843371 +1217.859921 +1217.894620 +1217.912269 +1217.954659 +1217.959388 +1218.001579 +1218.004043 +1218.300813 +1221.031546 +1221.764812 +1224.997609 +1228.981588 +1229.029340 +1229.029607 +1230.030139 +1230.070132 +1232.030470 +1232.030836 +1234.053611 +1235.056307 +1235.837858 +1237.155007 +1238.131096 +1238.131662 +1238.431729 +1238.633427 +1238.731395 +1238.732894 +1239.132927 +1239.233026 +1239.331728 +1239.432127 +1239.432860 +1239.733026 +1239.833026 +1239.931927 +1240.032726 +1240.132160 +1240.233525 +1240.333591 +1240.630794 +1240.732692 +1240.932026 +1241.232259 +1241.331393 +1241.333690 +1241.430826 +1241.532558 +1241.735089 +1241.930726 +1242.033124 +1242.050639 +1242.228994 +1242.231059 +1242.433656 +1242.733456 +1242.832890 +1242.932623 +1243.136586 +1243.187701 +1243.262393 +1243.290964 +1244.475346 +1244.532921 +1244.561126 +1244.710177 +1245.040879 +1245.596956 +1245.770516 +1245.831022 +1245.889996 +1246.608743 +1246.624261 +1246.893858 +1248.073044 +1248.107343 +1248.184066 +1248.199518 +1248.547003 +1248.696187 +1248.891825 +1248.980602 +1249.558990 +1249.986362 +1249.998317 +1250.186262 +1250.551164 +1250.760088 +1250.791057 +1251.291423 +1251.389325 +1251.611735 +1251.885295 +1251.902711 +1252.340606 +1252.551694 +1252.683396 +1252.688091 +1252.735777 +1252.752826 +1252.836842 +1252.867179 +1252.869310 +1252.902210 +1252.904441 +1252.918727 +1252.934078 +1252.948564 +1252.962850 +1252.963083 +1252.999113 +1254.934076 +1255.028648 +1255.161482 +1256.820788 +1256.893382 +1262.044759 +1262.109793 +1262.938730 +1263.030705 +1263.088647 +1263.112456 +1264.300034 +1264.304330 +1264.394207 +1264.755911 +1264.783584 +1265.030303 +1265.529071 +1265.658375 +1265.670895 +1266.355876 +1266.413386 +1266.538427 +1266.597801 +1266.678187 +1267.609089 +1269.200795 +1269.239390 +1269.392204 +1269.411851 +1269.617545 +1270.560401 +1271.214446 +1272.269590 +1272.301625 +1272.326666 +1272.346014 +1272.581644 +1273.129762 +1273.131694 +1273.433525 +1273.533592 +1273.733525 +1273.933991 +1273.934490 +1273.935056 +1274.033758 +1274.129761 +1274.231992 +1274.433790 +1274.434556 +1274.533291 +1274.635122 +1275.032591 +1275.232957 +1275.233623 +1275.335122 +1275.433523 +1275.434922 +1275.634555 +1275.935221 +1276.134854 +1276.236353 +1276.333655 +1276.335220 +1276.533755 +1276.933522 +1277.234221 +1277.434986 +1277.532922 +1277.632921 +1277.634653 +1277.635419 +1277.734320 +1278.768718 +1278.773180 +1278.888864 +1280.130888 +1280.233219 +1283.031717 +1283.039043 +1283.099982 +1283.123925 +1283.260855 +1283.957824 +1285.037876 +1285.432281 +1285.505974 +1285.539607 +1285.744935 +1285.868544 +1285.898481 +1286.030749 +1286.063383 +1286.256090 +1286.369176 +1286.385960 +1287.144534 +1287.318393 +1287.599645 +1287.628283 +1287.663048 +1287.698313 +1287.731346 +1287.732612 +1287.774869 +1287.796281 +1287.821423 +1287.824719 +1287.854523 +1287.858519 +1287.886857 +1287.889488 +1287.929415 +1287.943301 +1287.988589 +1288.006404 +1288.264679 +1298.031536 +1300.032999 +1302.030766 +1308.031093 +1308.132824 +1308.233590 +1308.431958 +1309.032224 +1309.132457 +1309.133489 +1309.135021 +1309.232457 +1309.332457 +1309.334089 +1309.334322 +1309.932656 +1310.132989 +1310.336152 +1310.434287 +1310.832722 +1311.334286 +1311.533787 +1311.732721 +1312.129424 +1312.130290 +1312.132754 +1312.133353 +1312.232121 +1312.532820 +1312.635650 +1312.732820 +1312.734252 +1312.834252 +1312.932720 +1313.032620 +1318.048632 +1318.096318 +1318.108405 +1318.461219 +1318.491988 +1318.550796 +1318.977669 +1319.071242 +1319.102910 +1319.245800 +1319.603675 +1319.633113 +1320.033445 +1320.050295 +1320.367378 +1320.641470 +1320.701543 +1320.782895 +1320.873438 +1321.105072 +1321.535941 +1321.693683 +1321.829714 +1322.021522 +1322.540169 +1322.570872 +1322.588987 +1322.633975 +1322.660649 +1322.676433 +1322.703939 +1322.719889 +1322.737105 +1322.737405 +1322.769973 +1322.772670 +1322.789420 +1322.791285 +1322.808301 +1322.856319 +1322.906236 +1322.939170 +1322.940369 +1322.992317 +1323.019556 +1334.030567 +1336.030932 +1337.032096 +1338.030830 +1343.232057 +1343.233489 +1343.431490 +1343.532156 +1343.731923 +1343.831623 +1343.832289 +1344.033521 +1344.134886 +1344.233554 +1344.234087 +1344.234986 +1344.530390 +1345.330290 +1345.630855 +1346.132653 +1346.274544 +1346.289896 +1346.330255 +1346.632453 +1346.634418 +1347.033918 +1347.532752 +1347.832052 +1348.034416 +1350.177970 +1353.032413 +1353.047831 +1353.390088 +1353.483861 +1353.730181 +1354.102542 +1354.153458 +1354.603873 +1354.768942 +1355.229014 +1355.416993 +1355.525617 +1355.725684 +1355.758051 +1355.789487 +1355.925717 +1357.171703 +1357.393315 +1357.459215 +1357.481959 +1357.499475 +1357.517757 +1357.548393 +1357.566508 +1357.567174 +1357.599342 +1357.615892 +1357.631143 +1357.633474 +1357.660147 +1357.665942 +1357.682891 +1357.700307 +1357.742965 +1357.744463 +1357.745795 +1357.764110 +1357.776664 +1357.798342 +1357.818456 +1357.852455 +1357.886288 +1357.888319 +1357.900440 +1357.987653 +1357.988918 +1358.006767 +1360.997107 +1362.821248 +1364.525176 +1365.965933 +1365.971195 +1366.814417 +1366.965366 +1366.965999 +1367.972258 +1368.678751 +1368.966363 +1368.971858 +1368.973656 +1369.972323 +1369.972822 +1370.971789 +1370.973388 +1375.971718 +1376.065490 +1376.066056 +1376.066922 +1376.073449 +1376.167155 +1376.567754 +1376.569153 +1376.668021 +1377.168553 +1377.368053 +1378.466021 +1378.469184 +1378.569051 +1378.768984 +1379.468084 +1379.867485 +1380.167484 +1385.986792 +1386.045201 +1386.076403 +1386.228484 +1386.392986 +1386.407771 +1386.476269 +1386.517195 +1386.630948 +1386.669209 +1386.669775 +1386.681364 +1386.693385 +1386.751294 +1387.036608 +1387.207870 +1387.268143 +1387.429615 +1387.454523 +1387.546365 +1387.757320 +1387.829981 +1387.971306 +1388.166344 +1388.324985 +1388.361915 +1388.390053 +1388.417792 +1388.484059 +1388.568808 +1388.595381 +1388.770040 +1388.959284 +1388.973936 +1389.075767 +1389.119057 +1389.180396 +1389.268541 +1389.311831 +1389.353023 +1389.412164 +1389.468807 +1389.529912 +1389.609100 +1389.622786 +1389.659017 +1389.700408 +1389.702573 +1389.789985 +1389.791784 +1389.837738 +1389.894847 +1389.910765 +1389.927215 +1389.940701 +1389.956619 +1389.970871 +1390.046362 +1390.077298 +1390.092216 +1390.110032 +1390.171970 +1390.203305 +1390.214227 +1390.285956 +1390.330911 +1390.332209 +1390.359748 +1390.402206 +1390.462579 +1390.538370 +1390.554853 +1390.570804 +1390.731210 +1390.793281 +1390.839169 +1390.899475 +1390.948193 +1400.967031 +1400.973224 +1400.973524 +1400.973857 +1401.967562 +1404.966694 +1405.974551 +1410.965755 +1410.972349 +1410.972915 +1410.973214 +1411.067087 +1411.067353 +1411.367586 +1412.168085 +1412.468118 +1412.470083 +1412.769949 +1412.870016 +1413.067818 +1413.168017 +1413.268284 +1413.467751 +1414.267916 +1414.968215 +1415.668914 +1415.768314 +1415.770146 +1417.512702 +1417.628219 +1418.678834 +1421.052492 +1421.247463 +1421.260384 +1421.414296 +1421.452624 +1421.507170 +1421.597613 +1421.649527 +1421.701042 +1421.818858 +1421.948994 +1421.976733 +1422.145664 +1422.221788 +1422.309001 +1422.310066 +1422.337272 +1422.442167 +1422.562280 +1422.640369 +1422.777065 +1422.913729 +1422.993782 +1423.019922 +1423.057252 +1423.071004 +1423.153489 +1423.207768 +1423.363445 +1423.526515 +1423.591284 +1423.619822 +1423.710997 +1423.747660 +1423.749226 +1423.929312 +1423.991383 +1424.043598 +1424.139368 +1424.168839 +1424.321653 +1424.517090 +1424.585955 +1424.698775 +1424.762711 +1424.835172 +1424.871802 +1425.084289 +1425.085987 +1425.097309 +1425.100440 +1425.112494 +1425.114292 +1425.115092 +1425.154752 +1425.171169 +1425.188252 +1425.213193 +1425.227113 +1425.230043 +1425.230942 +1425.240633 +1425.241332 +1425.283690 +1425.305767 +1425.319787 +1425.334072 +1425.335438 +1425.336836 +1425.347692 +1425.373866 +1425.388984 +1425.391015 +1425.405568 +1425.418555 +1425.432241 +1425.433939 +1425.449623 +1425.465141 +1425.494512 +1425.522850 +1425.535904 +1425.551122 +1425.565707 +1425.577895 +1425.594079 +1425.611162 +1425.638035 +1425.652654 +1425.666540 +1425.678827 +1425.697409 +1425.699573 +1425.710462 +1425.712027 +1425.738401 +1425.752021 +1425.762011 +1425.763776 +1425.776163 +1425.777795 +1425.791281 +1425.823283 +1425.835637 +1425.837069 +1425.853253 +1425.854152 +1425.863709 +1425.870169 +1425.882290 +1425.895943 +1425.907698 +1425.908830 +1425.919486 +1425.928444 +1425.946892 +1425.960945 +1427.182855 +1434.262468 +1437.968958 +1438.968291 +1438.968591 +1438.968991 +1440.968522 +1443.638749 +1445.975111 +1445.975943 +1446.170249 +1446.770481 +1446.870481 +1447.071147 +1447.071813 +1447.371713 +1447.772845 +1447.970214 +1447.970813 +1448.070513 +1448.072178 +1448.370480 +1448.670546 +1449.171112 +1449.271744 +1449.870778 +1449.871344 +1449.972509 +1450.071211 +1450.071477 +1450.171643 +1450.172043 +1450.173075 +1450.470744 +1450.670710 +1450.873108 +1450.971543 +1452.700778 +1452.711468 +1455.970039 +1456.100941 +1456.126183 +1456.150525 +1456.373335 +1456.542733 +1456.785490 +1456.823418 +1456.857717 +1457.010031 +1457.082859 +1457.186288 +1457.258017 +1457.643397 +1457.730111 +1457.864077 +1457.957583 +1458.024016 +1458.026414 +1458.111862 +1458.159214 +1458.289251 +1458.316923 +1458.400573 +1458.471835 +1458.511695 +1458.565841 +1458.576963 +1458.730676 +1458.758614 +1458.785920 +1458.800206 +1459.000439 +1459.053419 +1459.202737 +1459.348224 +1459.631607 +1459.657448 +1459.829343 +1459.976695 +1460.029043 +1460.030075 +1460.042629 +1460.086019 +1460.099039 +1460.157847 +1460.187184 +1460.316289 +1460.361010 +1460.411393 +1460.424214 +1460.491646 +1460.505499 +1460.533138 +1460.599705 +1460.673664 +1460.717287 +1460.743761 +1460.774863 +1460.896408 +1460.923614 +1460.926444 +1460.957214 +1467.681616 +1471.970256 +1471.977882 +1474.201822 +1474.263028 +1474.285672 +1474.347477 +1474.371319 +1474.559831 +1474.634989 +1474.692864 +1474.702621 +1474.753337 +1475.970419 +1475.977412 +1476.092497 +1476.205417 +1477.506714 +1477.547873 +1477.549804 +1477.611076 +1477.630857 +1479.668051 +1480.970713 +1480.977940 +1480.978239 +1481.071479 +1481.073011 +1481.272345 +1481.272744 +1481.472411 +1481.572211 +1481.573044 +1481.772711 +1481.773210 +1481.973210 +1482.173376 +1482.671777 +1482.672810 +1482.673409 +1482.772576 +1482.972776 +1483.473375 +1483.572842 +1483.673142 +1483.775040 +1483.973608 +1484.372974 +1484.574506 +1484.874739 +1485.074805 +1485.371475 +1485.572341 +1488.668275 +1490.992681 +1491.054619 +1491.130843 +1491.227946 +1491.266541 +1491.329877 +1491.345195 +1491.421885 +1491.469304 +1491.523450 +1491.548392 +1491.620620 +1491.709297 +1491.734705 +1491.760147 +1491.957416 +1491.970503 +1492.052188 +1492.053853 +1492.081625 +1492.118188 +1492.210496 +1492.451821 +1492.508331 +1492.571301 +1492.573832 +1492.587019 +1492.739366 +1492.763509 +1492.929443 +1492.981657 +1493.049622 +1493.203968 +1493.351054 +1493.384920 +1493.401970 +1493.596508 +1493.718753 +1493.719618 +1493.903867 +1494.040231 +1494.053651 +1494.281256 +1494.283354 +1494.366138 +1494.381223 +1494.394276 +1494.421682 +1494.462741 +1494.487816 +1494.527343 +1494.599205 +1494.662242 +1494.675895 +1494.828209 +1494.854815 +1494.870899 +1494.928042 +1494.988215 +1495.017586 +1495.045092 +1495.072398 +1495.096906 +1495.135701 +1495.147556 +1495.158079 +1495.169900 +1495.182587 +1495.184352 +1495.197106 +1495.199437 +1495.214455 +1495.225245 +1495.258312 +1495.261342 +1495.313756 +1495.332238 +1495.413589 +1495.427043 +1495.438997 +1495.463107 +1495.464106 +1495.466403 +1495.476993 +1495.477825 +1495.547189 +1495.547689 +1495.548521 +1495.559943 +1495.561441 +1495.562107 +1495.586583 +1495.601535 +1495.614355 +1495.665337 +1495.668268 +1495.692144 +1495.710958 +1495.737332 +1495.780655 +1495.797605 +1495.799570 +1495.809993 +1495.825577 +1495.837498 +1495.839030 +1495.881288 +1495.882154 +1495.908294 +1495.921281 +1495.922746 +1498.870529 +1498.887212 +1506.971920 +1510.972582 +1510.978809 +1515.970845 +1515.977305 +1515.977771 +1516.072576 +1516.172110 +1516.272943 +1516.372876 +1516.873275 +1516.973075 +1517.072575 +1517.172475 +1517.172942 +1517.273241 +1517.373874 +1517.475172 +1517.573607 +1518.172541 +1518.172807 +1518.272674 +1518.274872 +1518.373340 +1518.573173 +1518.573540 +1518.672807 +1518.773107 +1518.775105 +1518.971841 +1519.172340 +1519.274505 +1519.472806 +1519.473406 +1519.672873 +1519.873605 +1519.972106 +1519.972373 +1520.272206 +1520.372506 +1520.472539 +1520.572505 +1525.201272 +1525.445827 +1526.081025 +1526.103602 +1526.274931 +1526.354118 +1526.439499 +1526.465640 +1526.497075 +1526.814657 +1526.944494 +1526.999239 +1527.049622 +1527.086252 +1527.616155 +1527.655315 +1527.840230 +1527.925545 +1527.948622 +1528.029108 +1528.151286 +1528.228808 +1528.287183 +1528.334302 +1528.336467 +1528.438898 +1528.619417 +1528.659643 +1528.745491 +1528.769700 +1528.880422 +1528.943559 +1528.969234 +1529.060942 +1529.134934 +1529.136200 +1529.205730 +1529.337998 +1529.361841 +1529.440762 +1529.454648 +1529.469200 +1529.532403 +1529.760541 +1529.802067 +1529.827508 +1529.850451 +1529.851950 +1529.877258 +1529.878756 +1529.879256 +1529.906362 +1529.908094 +1529.921747 +1529.937664 +1529.969865 +1529.981187 +1529.983019 +1529.997371 +1530.024511 +1530.027607 +1530.039829 +1530.054247 +1530.068333 +1530.068633 +1530.105330 +1530.105696 +1530.117184 +1530.129872 +1530.130205 +1530.141727 +1530.184950 +1530.259775 +1530.260075 +1530.273595 +1530.286115 +1530.302799 +1530.344091 +1530.357844 +1530.358643 +1530.360641 +1530.372829 +1530.402199 +1530.402699 +1530.429505 +1530.446422 +1530.459975 +1530.485716 +1530.496505 +1530.502765 +1530.511157 +1530.521713 +1530.539062 +1530.539329 +1530.589079 +1530.602332 +1530.618649 +1530.631669 +1530.649285 +1530.661040 +1530.677457 +1530.680154 +1530.694806 +1530.707893 +1530.708526 +1530.722945 +1530.724776 +1530.755179 +1530.767467 +1530.781519 +1530.785282 +1530.829838 +1530.849052 +1530.862405 +1530.876724 +1530.881053 +1530.891609 +1530.894273 +1530.934533 +1530.935765 +1530.948919 +1530.952082 +1530.953647 +1532.516616 +1534.948482 +1534.960536 +1534.969660 +1541.971552 +1542.972483 +1543.308846 +1544.228293 +1544.328093 +1544.697023 +1544.854732 +1544.979474 +1549.620528 +1551.572974 +1551.672974 +1551.774372 +1551.874239 +1551.973240 +1551.973972 +1552.673239 +1552.874071 +1553.074371 +1553.175370 +1554.174237 +1554.273238 +1554.374270 +1554.572904 +1554.773537 +1554.874269 +1554.974103 +1555.073736 +1555.173337 +1555.473236 +1555.773036 +1555.973469 +1556.422087 +1556.461514 +1557.337770 +1557.493947 +1557.635805 +1557.879494 +1557.903004 +1558.058016 +1560.087051 +1560.978126 +1561.106464 +1561.221849 +1561.307863 +1561.524546 +1561.777293 +1561.896540 +1561.908095 +1561.921515 +1562.336000 +1562.358777 +1562.440196 +1562.724045 +1562.748321 +1562.890045 +1562.903232 +1562.926476 +1563.107561 +1563.131770 +1563.180921 +1563.252050 +1563.398403 +1563.533901 +1563.937197 +1563.963671 +1564.058443 +1564.208692 +1564.224843 +1564.365635 +1564.396304 +1564.540493 +1564.541725 +1564.576857 +1564.673627 +1564.761605 +1564.799800 +1564.812921 +1564.957909 +1564.970563 +1564.973527 +1565.005761 +1565.028139 +1565.056943 +1565.079887 +1565.092974 +1565.104162 +1565.128438 +1565.129704 +1565.171761 +1565.189277 +1565.219414 +1565.247685 +1565.248951 +1565.260406 +1565.261572 +1565.263769 +1565.294905 +1565.351382 +1565.351715 +1565.397735 +1565.428937 +1565.489810 +1565.551548 +1565.567565 +1565.582051 +1565.597569 +1565.598701 +1565.693839 +1565.705094 +1565.749317 +1565.767066 +1565.809323 +1565.840925 +1565.852480 +1565.868231 +1565.910389 +1565.934631 +1565.967032 +1571.224336 +1572.117808 +1572.177848 +1572.353772 +1575.777878 +1575.971651 +1575.978777 +1579.971647 +1580.972745 +1581.997685 +1583.417897 +1583.631750 +1583.860254 +1584.634812 +1584.645635 +1585.971607 +1585.978101 +1586.275270 +1586.473205 +1586.475670 +1587.073837 +1587.074370 +1587.172772 +1587.373171 +1587.573404 +1587.574503 +1587.673404 +1587.772971 +1587.872505 +1588.072771 +1588.074469 +1588.273270 +1588.273636 +1588.574369 +1588.574835 +1588.773869 +1589.273136 +1589.673535 +1590.273734 +1590.374700 +1590.473568 +1590.773767 +1590.774400 +1590.973834 +1590.974466 +1593.332473 +1595.971864 +1595.977492 +1595.985683 +1596.001068 +1596.049852 +1596.071731 +1596.148720 +1596.193842 +1596.492576 +1596.516552 +1596.561307 +1596.710191 +1596.738363 +1596.993907 +1597.111057 +1597.150084 +1597.187480 +1597.236132 +1597.447886 +1597.470963 +1597.558076 +1597.559674 +1597.583551 +1597.638795 +1597.679887 +1597.701233 +1597.742591 +1597.788645 +1597.801899 +1597.908092 +1598.127173 +1598.423809 +1598.426041 +1598.456244 +1598.509857 +1598.534232 +1598.547153 +1598.639793 +1598.749017 +1599.043289 +1599.157975 +1599.214485 +1599.229070 +1599.432866 +1599.539359 +1599.627871 +1599.652480 +1599.725140 +1599.740059 +1599.770628 +1599.812419 +1599.851181 +1599.894737 +1599.935030 +1599.977654 +1600.008124 +1600.069362 +1600.084214 +1600.100964 +1600.161270 +1600.174657 +1600.176622 +1600.190941 +1600.262902 +1600.318313 +1600.346585 +1600.374024 +1600.376488 +1600.390441 +1600.456308 +1600.486378 +1600.488443 +1600.522375 +1600.631566 +1600.662568 +1600.769561 +1600.796068 +1600.878552 +1600.892372 +1600.948715 +1605.586573 +1610.972548 +1611.979607 +1612.972047 +1612.979905 +1614.787696 +1614.865152 +1614.972178 +1620.972372 +1620.978799 +1621.472671 +1621.473304 +1621.573437 +1621.873137 +1622.473236 +1622.973868 +1623.174301 +1624.073368 +1624.073867 +1624.274300 +1624.773733 +1625.175331 +1625.974098 +1630.972095 +1631.283450 +1631.313820 +1631.351316 +1631.446454 +1631.460007 +1631.507293 +1631.871362 +1631.997202 +1632.151015 +1632.256276 +1632.364268 +1632.437362 +1632.448917 +1632.539560 +1632.786279 +1632.833499 +1632.902230 +1632.947251 +1633.016815 +1633.083781 +1633.134131 +1633.183015 +1633.220012 +1633.245320 +1633.273958 +1633.395636 +1633.450048 +1633.489009 +1633.545519 +1633.598433 +1633.635662 +1633.705759 +1633.877087 +1633.941523 +1633.969295 +1634.000197 +1634.013085 +1634.028203 +1634.040790 +1634.081416 +1634.083447 +1634.157873 +1634.183414 +1634.198466 +1634.267929 +1634.278819 +1634.319345 +1634.391073 +1634.433763 +1634.817812 +1634.861668 +1634.874889 +1634.876054 +1634.904426 +1634.948548 +1634.975488 +1635.065797 +1635.101595 +1635.212517 +1635.499164 +1635.512084 +1635.513649 +1635.673423 +1635.675820 +1635.691471 +1635.706789 +1635.719843 +1635.794801 +1635.894934 +1635.955440 +1640.128430 +1645.971947 +1646.971913 +1647.977806 +1648.978870 +1650.972142 +1656.471937 +1656.472636 +1656.571803 +1656.772036 +1656.872436 +1656.873868 +1657.072535 +1657.172236 +1657.174000 +1657.272469 +1657.572701 +1657.873001 +1657.874066 +1657.974333 +1658.075498 +1658.172068 +1658.672201 +1658.673999 +1658.872267 +1658.872667 +1659.074198 +1659.172267 +1659.273033 +1659.374231 +1659.573865 +1659.672100 +1659.674531 +1659.872133 +1660.972831 +1665.992673 +1666.013119 +1666.106925 +1666.255643 +1666.269696 +1666.379785 +1666.438693 +1666.472992 +1666.541890 +1666.625073 +1666.657408 +1666.761370 +1666.844853 +1666.939059 +1667.124507 +1667.172459 +1667.272758 +1667.333398 +1667.398499 +1667.470827 +1667.508655 +1667.519711 +1667.558439 +1667.610254 +1667.679418 +1667.714782 +1667.785645 +1667.816314 +1667.859371 +1667.895069 +1667.943720 +1667.999764 +1668.012584 +1668.133497 +1668.174589 +1668.201895 +1668.316447 +1668.730965 +1668.998697 +1669.029666 +1669.101361 +1669.116613 +1669.145783 +1669.176353 +1669.217778 +1669.274321 +1669.364731 +1669.620042 +1669.634328 +1669.663165 +1669.676286 +1669.702459 +1669.735327 +1669.775253 +1669.833562 +1669.861534 +1669.877318 +1670.061100 +1670.146748 +1670.193401 +1670.221773 +1670.237923 +1670.240521 +1670.298996 +1670.312582 +1670.374687 +1670.479915 +1670.508586 +1670.512282 +1670.552475 +1670.568193 +1670.598263 +1670.599894 +1670.632129 +1670.660700 +1670.673221 +1670.703124 +1670.705056 +1670.718676 +1670.752775 +1670.873321 +1670.901826 +1670.906121 +1670.933960 +1676.149073 +1680.977939 +1681.971711 +1681.979304 +1682.972410 +1683.972142 +1683.973308 +1684.973273 +1689.811464 +1690.977330 +1691.272268 +1691.774832 +1691.973633 +1692.072467 +1692.172700 +1692.175164 +1692.372966 +1692.572766 +1692.573299 +1692.673332 +1693.073099 +1693.073731 +1693.174531 +1693.272999 +1693.273398 +1693.373332 +1693.572998 +1693.973364 +1694.273764 +1694.771865 +1695.172930 +1695.173629 +1695.173929 +1695.274795 +1700.969761 +1700.977620 +1701.001662 +1701.074123 +1701.096434 +1701.160437 +1701.173157 +1701.207756 +1701.258738 +1701.270427 +1701.330300 +1701.389507 +1701.513983 +1701.602128 +1701.631532 +1701.645718 +1701.660736 +1701.683646 +1701.889507 +1702.093036 +1702.188741 +1702.201861 +1702.332830 +1702.399630 +1702.425537 +1702.791104 +1702.852909 +1702.912316 +1703.031164 +1703.148513 +1703.202559 +1703.269192 +1703.321840 +1703.641819 +1703.854373 +1703.900028 +1703.926002 +1703.992435 +1704.006621 +1704.078882 +1704.092368 +1704.121106 +1704.146081 +1704.205755 +1704.292501 +1704.306754 +1704.380180 +1704.395199 +1704.449278 +1704.449744 +1704.487373 +1704.503457 +1704.544915 +1704.674153 +1704.675784 +1704.689005 +1704.719041 +1704.736224 +1704.765095 +1704.963197 +1705.034825 +1705.218541 +1705.247046 +1705.261831 +1705.302690 +1705.317176 +1705.328698 +1705.397562 +1705.560066 +1705.571122 +1705.612314 +1705.801424 +1705.847811 +1711.607646 +1715.366317 +1715.978903 +1716.972975 +1717.926054 +1717.978402 +1717.979767 +1719.177701 +1719.972606 +1720.925119 +1720.978532 +1720.978865 +1724.612628 +1724.648558 +1724.792015 +1724.817289 +1725.971701 +1725.972633 +1725.978960 +1726.272400 +1726.372499 +1726.472766 +1726.574231 +1726.672432 +1726.773565 +1726.774031 +1726.974330 +1727.173864 +1727.174197 +1727.272798 +1727.373730 +1727.473930 +1727.673031 +1727.773264 +1727.874463 +1727.874529 +1727.973896 +1727.974529 +1728.074429 +1728.173064 +1728.273496 +1728.273996 +1728.333603 +1728.575527 +1728.673063 +1728.673996 +1728.772797 +1728.775161 +1728.873596 +1729.173562 +1729.273196 +1729.372929 +1729.875726 +1729.973961 +1730.173761 +1730.473428 +1730.474094 +1730.575625 +1730.674693 +1730.872795 +1736.170825 +1736.354607 +1736.419209 +1736.684211 +1736.822539 +1736.849146 +1736.897397 +1736.983145 +1737.015546 +1737.057037 +1737.512182 +1737.578116 +1737.659734 +1737.744716 +1737.796331 +1737.822305 +1738.025435 +1738.053773 +1738.092035 +1738.113646 +1738.164995 +1738.191635 +1738.205122 +1738.343583 +1738.371055 +1738.492367 +1738.503623 +1738.567159 +1738.606420 +1738.649344 +1738.772554 +1738.921604 +1739.378614 +1739.501324 +1739.515110 +1739.623868 +1739.690834 +1739.743981 +1739.907184 +1739.983009 +1739.999392 +1740.070588 +1740.150508 +1740.177580 +1740.288436 +1740.373751 +1740.436022 +1740.463328 +1740.655968 +1740.680877 +1740.739684 +1740.783940 +1740.934589 +1742.501088 +1742.546609 +1743.764057 +1744.185269 +1749.501614 +1749.541807 +1750.970810 +1750.979168 +1751.973473 +1753.528649 +1753.551526 +1754.825651 +1755.231811 +1755.484192 +1755.565211 +1756.850191 +1756.921320 +1757.349858 +1758.168372 +1758.231608 +1758.237569 +1758.442830 +1759.135637 +1759.189350 +1759.197908 +1761.173164 +1761.274096 +1761.673563 +1761.775661 +1761.976027 +1762.374495 +1762.375727 +1762.874561 +1763.674160 +1763.973361 +1764.073960 +1764.075392 +1764.274426 +1764.574193 +1764.873760 +1764.874059 +1764.974192 +1765.174725 +1765.375657 +1765.675191 +1765.774991 +1770.986407 +1771.129564 +1771.130696 +1771.236690 +1771.315345 +1771.399827 +1771.542251 +1771.592567 +1771.680779 +1771.901958 +1771.940785 +1772.047945 +1772.290968 +1772.454904 +1772.493232 +1772.742083 +1772.923835 +1772.939186 +1772.988304 +1773.125433 +1773.164194 +1773.221503 +1773.522069 +1773.650008 +1773.731992 +1773.804553 +1773.958566 +1773.982175 +1774.046111 +1774.178079 +1774.272984 +1774.284939 +1774.296927 +1774.381842 +1774.409681 +1774.424433 +1774.507450 +1774.508715 +1774.535988 +1774.758165 +1774.773916 +1774.877712 +1774.891399 +1774.937219 +1774.996360 +1775.038385 +1775.071718 +1775.085171 +1775.114142 +1775.139084 +1775.195927 +1775.226197 +1775.267589 +1775.269154 +1775.298724 +1775.383106 +1775.490865 +1775.493229 +1775.505217 +1775.549906 +1775.603419 +1775.605517 +1775.670652 +1775.681608 +1775.757032 +1775.787635 +1775.802553 +1775.872783 +1779.410508 +1781.455728 +1781.468049 +1785.133047 +1785.194419 +1785.973472 +1786.972272 +1787.425552 +1787.445832 +1787.973770 +1787.979464 +1788.973069 +1790.973767 +1790.974899 +1795.225844 +1795.978890 +1796.173762 +1796.673961 +1796.873728 +1796.972495 +1796.975193 +1797.374260 +1797.374693 +1797.574992 +1797.672561 +1797.774659 +1797.875158 +1798.174992 +1798.274425 +1798.274758 +1798.276090 +1798.774292 +1798.871062 +1798.874491 +1798.875224 +1798.972693 +1799.072327 +1799.174092 +1799.274424 +1799.470961 +1799.474025 +1799.475590 +1799.673358 +1799.773458 +1799.875023 +1799.975056 +1800.275356 +1800.474357 +1800.974623 +1800.976621 +1805.985673 +1805.993532 +1806.036256 +1806.068590 +1806.070555 +1806.148777 +1806.318840 +1806.592999 +1806.714843 +1806.766858 +1806.819239 +1806.930860 +1807.066192 +1807.203254 +1807.359132 +1807.705385 +1807.760363 +1807.785838 +1807.809248 +1807.902355 +1807.940783 +1808.341482 +1808.352437 +1808.429027 +1808.666157 +1808.681674 +1808.695094 +1808.724065 +1808.822467 +1808.893429 +1808.921501 +1808.922833 +1809.088534 +1809.172383 +1809.202120 +1809.215973 +1809.285370 +1809.313609 +1809.329193 +1809.344711 +1809.345943 +1809.389732 +1809.413442 +1809.437485 +1809.487634 +1809.501121 +1809.582206 +1809.607081 +1809.608880 +1809.625130 +1809.636019 +1809.653202 +1809.838217 +1809.875413 +1809.892496 +1809.895559 +1810.021933 +1810.084537 +1810.155932 +1810.209545 +1810.224597 +1810.226295 +1810.241513 +1810.279808 +1810.324130 +1810.442179 +1810.545875 +1810.577344 +1810.608046 +1810.697090 +1810.709744 +1810.723963 +1810.771283 +1810.872615 +1810.904183 +1810.906880 +1810.936184 +1810.949238 +1810.969451 +1811.381638 +1816.335313 +1816.346535 +1816.668013 +1819.337874 +1819.529283 +1820.225619 +1821.973270 +1823.973168 +1824.973699 +1825.496443 +1826.667604 +1828.180057 +1828.291878 +1828.313556 +1829.695073 +1830.414087 +1830.736398 +1830.760474 +1830.972528 +1830.978888 +1831.073194 +1831.274359 +1831.373327 +1831.374359 +1831.473427 +1831.676024 +1831.875557 +1831.894405 +1831.898268 +1831.904462 +1831.911055 +1831.934632 +1831.949683 +1831.961371 +1831.972727 +1832.017049 +1832.028038 +1832.129770 +1832.173193 +1832.273892 +1832.475457 +1832.573492 +1832.675057 +1832.974124 +1832.974491 +1833.174058 +1833.546019 +1833.556808 +1833.573991 +1833.574257 +1833.602262 +1833.651879 +1833.750048 +1833.773391 +1833.816514 +1833.876854 +1833.977054 +1834.173557 +1834.473557 +1834.574589 +1834.673856 +1834.774755 +1834.775022 +1834.974755 +1835.277019 +1835.472990 +1835.473589 +1835.476220 +1835.506556 +1835.673422 +1835.674088 +1835.774455 +1835.873589 +1837.054939 +1840.993530 +1841.030693 +1841.106417 +1841.177979 +1841.279411 +1841.333557 +1841.404286 +1841.578878 +1841.774482 +1841.923666 +1841.988767 +1842.015441 +1842.090266 +1842.156266 +1842.181608 +1842.210445 +1842.359396 +1842.535021 +1842.557665 +1842.571784 +1842.644611 +1842.698057 +1842.771018 +1842.822266 +1842.861460 +1842.986902 +1843.001853 +1843.024730 +1843.069918 +1843.151270 +1843.259229 +1843.276179 +1843.329092 +1843.411010 +1843.424896 +1843.638083 +1843.687400 +1843.728892 +1843.790464 +1843.922865 +1844.010111 +1844.026061 +1844.140680 +1844.234120 +1844.305582 +1844.321199 +1844.380007 +1844.396224 +1844.529557 +1844.531922 +1844.594559 +1844.668984 +1844.671116 +1844.744609 +1845.074046 +1845.206147 +1845.235251 +1845.286966 +1845.329390 +1845.393959 +1845.543376 +1845.580805 +1845.595757 +1845.666919 +1845.669749 +1845.827292 +1845.850868 +1845.851334 +1845.893758 +1849.720961 +1849.780668 +1851.007406 +1851.011203 +1851.043171 +1851.060753 +1851.094386 +1854.496447 +1854.530879 +1855.367375 +1855.573336 +1856.979162 +1858.974098 +1860.972698 +1860.973430 +1862.279123 +1862.457578 +1864.861072 +1865.973525 +1865.979186 +1865.979652 +1866.071927 +1866.173092 +1866.173658 +1866.272692 +1866.373924 +1866.473225 +1866.474124 +1866.673758 +1866.773758 +1866.873658 +1866.874457 +1867.373890 +1867.773257 +1867.775055 +1867.872891 +1867.974223 +1868.174389 +1868.272924 +1868.273123 +1868.374022 +1868.873955 +1869.274554 +1869.374787 +1869.772922 +1869.873288 +1869.874087 +1869.874787 +1870.174687 +1870.373987 +1870.374986 +1870.474620 +1870.873654 +1870.973554 +1875.978943 +1875.985437 +1876.012310 +1876.094294 +1876.182606 +1876.243578 +1876.278443 +1876.349972 +1876.419236 +1876.469552 +1876.656698 +1876.702752 +1876.865056 +1876.971316 +1877.158329 +1877.162359 +1877.175745 +1877.274380 +1877.508412 +1877.525961 +1877.564922 +1877.626361 +1877.719934 +1877.720533 +1877.761359 +1877.804149 +1877.832321 +1877.893327 +1877.908212 +1877.934552 +1877.968385 +1878.196823 +1878.324828 +1878.409344 +1878.421298 +1878.652034 +1878.696057 +1878.739413 +1878.811874 +1878.986666 +1879.030655 +1879.043675 +1879.060359 +1879.172646 +1879.187565 +1879.234418 +1879.322197 +1879.336249 +1879.351700 +1879.428390 +1879.499586 +1879.545373 +1879.598387 +1879.633751 +1879.648337 +1879.760991 +1879.863588 +1879.914171 +1879.960558 +1879.977640 +1879.991693 +1880.066718 +1880.106345 +1880.142043 +1880.216335 +1880.245572 +1880.317667 +1880.349868 +1880.379538 +1880.424660 +1880.455729 +1880.485099 +1880.501316 +1880.516601 +1880.543607 +1880.602215 +1880.618532 +1880.635182 +1880.708309 +1880.739644 +1880.768116 +1880.814936 +1880.860423 +1880.875375 +1880.890860 +1880.939944 +1890.979294 +1894.972297 +1895.978923 +1895.979889 +1900.971692 +1900.979151 +1901.074056 +1901.174389 +1901.372824 +1901.472957 +1901.573023 +1901.574122 +1901.674156 +1901.875288 +1901.973190 +1902.273289 +1903.173255 +1903.273188 +1903.373221 +1903.775019 +1904.273254 +1904.374353 +1904.575385 +1904.973187 +1904.975784 +1905.175351 +1905.473353 +1905.974384 +1910.978575 +1911.027859 +1911.037017 +1911.046774 +1911.062624 +1911.100087 +1911.120533 +1911.132921 +1911.143310 +1911.151968 +1911.175078 +1911.197689 +1911.215238 +1911.237916 +1911.238881 +1911.273147 +1911.282271 +1911.308845 +1911.318535 +1911.341079 +1911.351036 +1911.351269 +1911.372214 +1911.395658 +1911.417036 +1911.427159 +1911.446773 +1911.447672 +1911.459394 +1911.482471 +1911.523996 +1911.526027 +1911.558195 +1911.569384 +1911.584768 +1911.597622 +1911.598321 +1911.610210 +1911.664455 +1911.688032 +1911.724728 +1911.725428 +1911.751635 +1911.816636 +1911.942910 +1912.034785 +1912.097588 +1912.197422 +1912.541078 +1912.554431 +1912.589896 +1912.616835 +1912.714005 +1912.753465 +1912.774344 +1912.791927 +1912.805746 +1912.817002 +1912.882503 +1912.908910 +1912.938047 +1912.990395 +1913.003981 +1913.028790 +1913.042975 +1913.055330 +1913.138979 +1913.150668 +1913.246005 +1913.298286 +1913.353298 +1913.381070 +1913.436382 +1913.491160 +1913.503847 +1913.505179 +1913.573977 +1913.628889 +1913.643674 +1913.696887 +1913.770381 +1913.892825 +1914.010174 +1914.036481 +1914.051033 +1914.194489 +1914.313936 +1914.373410 +1914.442641 +1914.445505 +1914.517732 +1914.560923 +1914.575408 +1914.618032 +1914.650566 +1914.679271 +1914.696054 +1914.739943 +1914.769747 +1914.816800 +1914.841009 +1914.871045 +1914.951298 +1914.965551 +1914.983167 +1915.039577 +1915.042307 +1915.054062 +1915.113836 +1915.173509 +1915.177006 +1915.188295 +1915.283066 +1915.311138 +1915.313003 +1915.329320 +1915.388294 +1915.477239 +1915.492523 +1915.503446 +1915.576539 +1915.663785 +1915.680768 +1915.696652 +1915.698550 +1915.768747 +1915.822426 +1915.825324 +1915.915433 +1915.967515 +1925.971734 +1926.979159 +1927.973696 +1927.978991 +1928.972030 +1928.972497 +1928.972530 +1929.972695 +1935.895433 +1936.072123 +1936.172856 +1936.273055 +1936.373455 +1936.673821 +1936.874953 +1937.072921 +1937.175186 +1937.274886 +1937.773687 +1937.774219 +1938.273586 +1938.370722 +1938.372221 +1938.377915 +1938.474851 +1938.573952 +1938.772953 +1938.774884 +1938.973552 +1939.172087 +1939.373352 +1939.474018 +1939.574650 +1940.375116 +1940.772052 +1940.879877 +1941.468122 +1941.484572 +1944.594326 +1944.604382 +1944.682471 +1944.683403 +1945.978607 +1945.985100 +1945.991694 +1946.006645 +1946.014737 +1946.022363 +1946.094058 +1946.124827 +1946.133718 +1946.158593 +1946.158960 +1946.168550 +1946.183335 +1946.192959 +1946.203948 +1946.222130 +1946.223029 +1946.237181 +1946.247970 +1946.260758 +1946.270748 +1946.283934 +1946.295689 +1946.297987 +1946.309342 +1946.321497 +1946.333551 +1946.344674 +1946.346139 +1946.368916 +1946.369915 +1946.396022 +1946.396488 +1946.422030 +1946.456995 +1946.496222 +1946.496555 +1946.498520 +1946.498786 +1946.499718 +1946.512539 +1946.527690 +1946.541477 +1946.542509 +1946.555230 +1946.568117 +1946.596488 +1946.597987 +1946.610075 +1946.617534 +1946.617933 +1946.636082 +1946.649502 +1946.687497 +1946.856694 +1946.915602 +1947.149268 +1947.459891 +1947.548036 +1947.562022 +1947.694023 +1947.744339 +1947.828555 +1948.009174 +1948.096453 +1948.262387 +1948.288461 +1948.366350 +1948.393922 +1948.448335 +1948.549500 +1948.593156 +1948.676706 +1948.740975 +1948.767948 +1948.887195 +1949.097318 +1949.178970 +1949.315800 +1949.372476 +1949.458923 +1949.487561 +1949.528353 +1949.600914 +1949.688660 +1949.763451 +1949.818263 +1949.868480 +1949.886062 +1949.900215 +1949.963451 +1950.005909 +1950.007374 +1950.050531 +1950.220627 +1950.319861 +1950.415266 +1950.417097 +1950.444636 +1950.479401 +1950.519595 +1950.534013 +1950.560054 +1950.670011 +1950.874806 +1952.176969 +1960.978159 +1961.403034 +1961.970033 +1961.979057 +1963.652682 +1964.977955 +1965.973259 +1968.148914 +1968.653043 +1968.661534 +1969.787840 +1970.971489 +1971.473187 +1971.673519 +1971.973153 +1972.173752 +1972.371820 +1972.572386 +1972.972852 +1972.973019 +1973.073618 +1973.472985 +1973.673284 +1973.872452 +1973.873351 +1973.973784 +1974.172418 +1974.273683 +1974.673050 +1974.673217 +1974.773716 +1974.873749 +1974.973017 +1974.973649 +1975.173782 +1975.373815 +1975.574548 +1975.672916 +1975.772450 +1975.773782 +1975.872949 +1975.873715 +1975.973116 +1979.888763 +1979.924560 +1979.928390 +1980.214603 +1980.219765 +1980.221363 +1980.226092 +1980.230987 +1980.239012 +1980.403048 +1980.520131 +1980.522928 +1980.576874 +1980.625758 +1980.991992 +1981.027856 +1981.038745 +1981.057726 +1981.095821 +1981.125558 +1981.170946 +1981.194056 +1981.206244 +1981.216900 +1981.219131 +1981.219364 +1981.228755 +1981.233450 +1981.255861 +1981.267949 +1981.281502 +1981.307243 +1981.340809 +1981.349401 +1981.357193 +1981.384599 +1981.396720 +1981.434948 +1981.436114 +1981.447203 +1981.447969 +1981.448335 +1981.459524 +1981.472111 +1981.486130 +1981.498318 +1981.533783 +1981.543073 +1981.703746 +1981.736213 +1981.874608 +1981.945804 +1982.041474 +1982.072244 +1982.161354 +1982.362720 +1982.379303 +1982.405810 +1982.567881 +1982.614401 +1982.809306 +1982.847667 +1983.019362 +1983.045037 +1983.360188 +1983.384364 +1983.501913 +1983.638542 +1983.693188 +1983.763617 +1983.790457 +1983.904177 +1984.065282 +1984.098715 +1984.197050 +1984.306241 +1984.325188 +1984.348665 +1984.360819 +1984.374439 +1984.385461 +1984.415132 +1984.588325 +1984.717795 +1984.810403 +1984.967479 +1985.114065 +1985.127419 +1985.200645 +1985.284795 +1985.315497 +1985.377968 +1985.481131 +1985.506672 +1985.522290 +1985.536276 +1985.645234 +1985.659053 +1985.688024 +1985.736875 +1985.750928 +1985.903109 +1985.954291 +1996.971563 +1996.971862 +1997.973693 +2000.653910 +2001.793136 +2005.971287 +2005.979013 +2006.172553 +2006.172586 +2006.472586 +2006.473152 +2006.572819 +2006.601024 +2006.673351 +2006.773151 +2006.845612 +2006.871120 +2006.872086 +2006.873085 +2006.973284 +2007.073184 +2007.075549 +2007.474150 +2007.673717 +2007.774183 +2007.873750 +2008.173649 +2008.374049 +2008.374482 +2008.873016 +2008.973182 +2009.073482 +2009.075214 +2009.172849 +2009.273382 +2009.275580 +2009.374015 +2009.674314 +2009.874447 +2010.273880 +2010.274780 +2010.373314 +2010.773047 +2010.773214 +2010.773813 +2011.546140 +2011.746140 +2011.757262 +2011.816736 +2013.883967 +2013.976308 +2015.165084 +2015.219230 +2015.379503 +2015.979269 +2015.993189 +2016.013835 +2016.024291 +2016.034314 +2016.054427 +2016.082266 +2016.104144 +2016.139909 +2016.140275 +2016.160888 +2016.161787 +2016.173908 +2016.196519 +2016.207008 +2016.216698 +2016.252729 +2016.279935 +2016.303178 +2016.338976 +2016.351863 +2016.385429 +2016.400315 +2016.462885 +2016.476272 +2016.485563 +2016.638709 +2016.774773 +2016.933647 +2016.996118 +2017.098149 +2017.227353 +2017.415265 +2017.489091 +2017.623157 +2017.702578 +2017.729817 +2017.783530 +2017.849231 +2017.900746 +2017.927219 +2018.197282 +2018.271675 +2018.326586 +2018.393486 +2018.488724 +2018.611967 +2018.791188 +2018.817961 +2018.833945 +2018.905107 +2019.039040 +2019.067445 +2019.130282 +2019.161351 +2019.189756 +2019.266212 +2019.363948 +2019.406172 +2019.489589 +2019.491187 +2019.505406 +2019.552126 +2019.657587 +2019.670941 +2019.847664 +2020.002875 +2020.053191 +2020.165146 +2020.350527 +2020.380863 +2020.439305 +2020.614063 +2020.692485 +2020.762348 +2020.792285 +2020.824020 +2020.860050 +2020.861782 +2020.874536 +2020.898112 +2020.899378 +2020.912831 +2020.940636 +2020.955022 +2030.973227 +2031.972227 +2031.973159 +2033.972924 +2034.362268 +2035.714181 +2038.820239 +2038.837089 +2039.006519 +2039.019606 +2039.111447 +2039.631860 +2039.652805 +2039.719905 +2040.973084 +2040.978911 +2041.073816 +2041.273849 +2041.274449 +2041.374748 +2041.474948 +2041.575015 +2041.774282 +2041.874448 +2041.875214 +2042.274015 +2042.374248 +2042.475413 +2043.074747 +2043.274414 +2043.373881 +2043.774513 +2043.776511 +2043.974979 +2044.174646 +2044.575544 +2044.576543 +2044.674778 +2044.874412 +2044.874645 +2044.973646 +2044.974645 +2045.073712 +2045.074878 +2045.175111 +2045.274079 +2045.374711 +2045.474112 +2045.674278 +2045.873578 +2045.974378 +2046.113272 +2046.130788 +2046.270548 +2046.311440 +2047.387330 +2049.681667 +2049.695486 +2050.972941 +2050.979134 +2050.979467 +2051.012235 +2051.026520 +2051.026887 +2051.082697 +2051.083497 +2051.108405 +2051.108705 +2051.157389 +2051.165681 +2051.202411 +2051.247333 +2051.303543 +2051.305275 +2051.317895 +2051.329184 +2051.341705 +2051.379733 +2051.381065 +2051.392687 +2051.395018 +2051.560619 +2051.722324 +2051.926020 +2051.941371 +2052.005341 +2052.101145 +2052.149563 +2052.277135 +2052.341770 +2052.362350 +2052.374171 +2052.506572 +2052.732046 +2052.824354 +2053.004607 +2053.101643 +2053.225486 +2053.240771 +2053.471373 +2053.562782 +2053.654390 +2053.862215 +2054.109867 +2054.124453 +2054.388721 +2054.428315 +2054.444266 +2054.457419 +2054.541136 +2054.555688 +2054.569441 +2054.646264 +2054.660017 +2054.785791 +2054.860749 +2054.915028 +2054.955254 +2055.007635 +2055.019557 +2055.033276 +2055.061848 +2055.356619 +2055.371638 +2055.386656 +2055.777298 +2055.789086 +2055.800941 +2055.805070 +2055.847495 +2055.847894 +2055.848294 +2055.861281 +2055.871804 +2055.882160 +2055.904771 +2055.906436 +2055.928880 +2055.941700 +2055.944497 +2062.081621 +2062.140728 +2064.285648 +2065.979519 +2065.979985 +2068.972190 +2069.974320 +2070.242086 +2070.979747 +2072.697528 +2074.830559 +2075.972616 +2075.979010 +2075.979942 +2076.172150 +2076.173248 +2076.173615 +2076.273248 +2076.476545 +2076.774247 +2077.176544 +2077.373947 +2077.431556 +2077.455265 +2077.472015 +2077.474013 +2077.572714 +2077.674179 +2077.674912 +2077.773513 +2077.773979 +2077.873746 +2077.874212 +2077.875045 +2078.073813 +2078.172281 +2078.173946 +2078.174512 +2078.375710 +2078.473945 +2078.475244 +2078.575444 +2078.576842 +2078.674278 +2079.074877 +2079.174344 +2079.374178 +2079.475643 +2079.574111 +2079.674211 +2079.774477 +2080.075342 +2080.275409 +2080.375908 +2080.573877 +2080.574343 +2080.575142 +2080.775808 +2080.974010 +2080.974909 +2080.975475 +2084.669843 +2085.900745 +2085.994517 +2086.013798 +2086.044967 +2086.055756 +2086.056555 +2086.068277 +2086.093119 +2086.103175 +2086.153059 +2086.153591 +2086.176469 +2086.176935 +2086.189855 +2086.211833 +2086.213998 +2086.224754 +2086.275536 +2086.285459 +2086.308736 +2086.320724 +2086.410568 +2086.499612 +2086.579165 +2086.808736 +2086.868143 +2087.290953 +2087.410200 +2087.481829 +2087.510733 +2087.540470 +2087.699710 +2087.922254 +2088.013330 +2088.048395 +2088.148594 +2088.192817 +2088.288488 +2088.496013 +2088.708867 +2088.736972 +2088.817092 +2088.890385 +2088.991384 +2089.027448 +2089.051191 +2089.061980 +2089.074468 +2089.086955 +2089.367041 +2089.455320 +2089.505969 +2089.579296 +2089.654054 +2089.752456 +2089.850424 +2089.864111 +2089.964477 +2090.214826 +2090.244263 +2090.259481 +2090.318456 +2090.332042 +2090.347027 +2090.407666 +2090.584656 +2090.586887 +2090.712628 +2090.723750 +2090.724216 +2090.736970 +2090.739201 +2090.768039 +2090.770636 +2090.782891 +2090.784423 +2090.796444 +2090.798409 +2090.813860 +2090.845428 +2090.857716 +2090.890683 +2090.923750 +2090.936038 +2090.938801 +2090.939268 +2090.954952 +2090.964243 +2090.965675 +2090.967106 +2095.656579 +2097.103664 +2101.450579 +2101.507755 +2101.532997 +2101.972723 +2102.971990 +2104.973752 +2105.980744 +2108.188268 +2110.692894 +2111.173913 +2111.174279 +2112.476809 +2112.673445 +2112.675077 +2112.675443 +2112.874044 +2112.974011 +2113.075076 +2113.076508 +2113.476075 +2113.975475 +2114.274076 +2114.274542 +2114.374009 +2114.375541 +2114.474742 +2114.575574 +2114.673743 +2114.874342 +2114.876373 +2114.973742 +2115.074675 +2115.274874 +2115.473975 +2115.474308 +2115.474974 +2115.674474 +2115.774574 +2115.873875 +2115.874308 +2121.013996 +2121.024819 +2121.054589 +2121.070873 +2121.081995 +2121.095315 +2121.167043 +2121.169041 +2121.191452 +2121.213996 +2121.226783 +2121.228448 +2121.504605 +2121.713030 +2121.949227 +2122.096180 +2122.166776 +2122.361947 +2122.638037 +2122.716958 +2122.822020 +2122.937837 +2123.017790 +2123.134807 +2123.147394 +2123.173634 +2123.185023 +2123.278463 +2123.376764 +2123.562145 +2123.633474 +2123.645495 +2123.811329 +2123.915225 +2124.053254 +2124.086021 +2124.217423 +2124.262145 +2124.276730 +2124.397509 +2124.500406 +2124.543330 +2124.631642 +2124.828012 +2124.883623 +2125.000606 +2125.067139 +2125.194412 +2125.357548 +2125.386220 +2125.413459 +2125.430375 +2125.460146 +2125.515457 +2125.601571 +2125.652020 +2125.778360 +2125.808530 +2138.971787 +2138.978880 +2139.972385 +2145.137648 +2146.173178 +2146.372978 +2146.974343 +2146.974909 +2146.975209 +2147.073344 +2147.075042 +2147.174176 +2147.475941 +2147.873543 +2147.974276 +2148.173476 +2148.373343 +2148.574375 +2148.673442 +2149.175040 +2149.272909 +2149.375173 +2149.428320 +2149.673075 +2149.874174 +2150.273041 +2150.472908 +2150.674306 +2150.774839 +2154.243633 +2155.971171 +2155.977797 +2156.020987 +2156.021787 +2156.032576 +2156.055919 +2156.074834 +2156.087987 +2156.107434 +2156.119722 +2156.131277 +2156.145796 +2156.167574 +2156.217857 +2156.220188 +2156.597743 +2156.600074 +2156.851456 +2156.930710 +2156.945329 +2156.958016 +2156.996178 +2157.159415 +2157.204469 +2157.403404 +2157.590483 +2157.622451 +2157.828212 +2157.952720 +2158.023849 +2158.192647 +2158.243196 +2158.394478 +2158.397242 +2158.521584 +2158.544561 +2158.546360 +2158.591181 +2158.616589 +2158.645194 +2158.677628 +2158.693213 +2158.731707 +2158.743695 +2158.833505 +2158.848291 +2158.924248 +2158.935803 +2159.088317 +2159.137102 +2159.311094 +2159.465473 +2159.519386 +2159.548556 +2159.562975 +2159.602536 +2159.627278 +2159.630241 +2159.672799 +2159.774031 +2159.776528 +2159.889815 +2159.941963 +2159.970834 +2160.019385 +2160.073764 +2160.105998 +2160.179991 +2160.317420 +2160.356814 +2160.368236 +2160.439864 +2160.591379 +2160.618918 +2160.651586 +2160.664606 +2160.666904 +2160.837200 +2160.924879 +2171.971987 +2172.558467 +2172.971353 +2173.971419 +2173.972718 +2174.971851 +2181.071079 +2181.171945 +2181.872577 +2181.972643 +2182.071677 +2182.072943 +2182.473875 +2182.771976 +2182.774407 +2182.874107 +2182.973008 +2183.272842 +2183.471410 +2184.071575 +2184.071908 +2184.073474 +2184.171542 +2184.171942 +2184.471941 +2184.573173 +2184.671175 +2184.872540 +2184.973872 +2185.072840 +2185.173073 +2185.173572 +2185.372407 +2185.373239 +2185.474138 +2185.572007 +2185.871407 +2186.662748 +2191.409497 +2191.499407 +2191.847392 +2191.932806 +2192.012094 +2192.082790 +2192.237435 +2192.306832 +2192.349489 +2192.754384 +2192.896109 +2193.115955 +2193.167770 +2193.359545 +2193.424780 +2193.438266 +2193.468569 +2193.481656 +2193.594410 +2193.687350 +2193.813191 +2193.885418 +2193.940330 +2194.014756 +2194.106997 +2194.184619 +2194.213856 +2194.227509 +2194.266604 +2194.318552 +2194.360743 +2194.463906 +2194.507862 +2194.682953 +2194.786217 +2194.788315 +2194.801901 +2194.881921 +2194.952584 +2194.953649 +2195.077092 +2195.078058 +2195.106729 +2195.131305 +2195.160742 +2195.289513 +2195.344724 +2195.358744 +2195.418950 +2195.449253 +2195.461308 +2195.490545 +2195.531904 +2195.534534 +2195.548487 +2195.558144 +2195.559676 +2195.572263 +2195.583186 +2195.593575 +2195.599303 +2195.610225 +2195.612756 +2195.622846 +2195.623878 +2195.635067 +2195.711257 +2195.726542 +2195.759343 +2195.772463 +2195.787448 +2195.802766 +2195.814188 +2195.854248 +2195.855746 +2195.856845 +2195.884251 +2200.113051 +2200.136861 +2203.205056 +2203.224603 +2203.488073 +2205.063696 +2206.562029 +2207.699790 +2208.032657 +2208.705583 +2209.272316 +2209.565556 +2209.584903 +2209.706615 +2210.666554 +2210.701419 +2210.827559 +2210.896390 +2211.701718 +2211.704415 +2211.706213 +2211.852533 +2211.905181 +2214.495155 +2214.954695 +2215.643439 +2215.680069 +2216.226055 +2216.806708 +2221.202441 +2222.565277 +2224.174033 +2224.253420 +2226.704666 +2226.787184 +2226.905998 +2227.067503 +2227.103001 +2227.130307 +2227.257813 +2227.368668 +2227.444060 +2227.493310 +2227.504832 +2227.516654 +2227.553517 +2227.599104 +2227.670000 +2227.739997 +2227.871365 +2227.883786 +2227.926177 +2227.980090 +2227.990479 +2227.999537 +2228.011392 +2228.036400 +2228.100802 +2228.113456 +2228.125444 +2228.178757 +2228.205664 +2228.343659 +2228.368567 +2228.407861 +2228.510559 +2228.583452 +2228.596006 +2228.643159 +2228.694441 +2228.718451 +2228.761075 +2228.786349 +2228.826676 +2228.839829 +2228.891278 +2228.904797 +2229.026043 +2229.097771 +2229.208227 +2229.210192 +2229.277891 +2229.279822 +2229.343691 +2229.449918 +2229.464104 +2229.525742 +2229.536865 +2229.539529 +2229.605829 +2229.620414 +2229.634667 +2229.736698 +2229.762539 +2229.819682 +2229.845289 +2229.869199 +2229.882052 +2229.895972 +2229.936132 +2229.966202 +2229.968266 +2230.037497 +2230.051882 +2230.067134 +2230.079322 +2230.096671 +2230.108759 +2230.122112 +2230.138696 +2230.151716 +2230.235798 +2230.283950 +2230.369564 +2230.369997 +2230.379621 +2230.383650 +2230.396105 +2230.408592 +2230.409191 +2230.418982 +2230.434699 +2230.449784 +2230.464236 +2230.467100 +2230.470064 +2230.494839 +2230.497903 +2230.499101 +2230.539894 +2230.555012 +2230.568199 +2230.569997 +2230.571362 +2230.573560 +2230.584150 +2230.597969 +2230.599235 +2230.603430 +2230.659208 +2230.672561 +2230.687080 +2230.702698 +2230.705661 +2230.751182 +2230.754712 +2230.795138 +2230.796404 +2230.808425 +2230.809857 +2230.825741 +2230.828405 +2230.839727 +2230.843657 +2230.845355 +2230.854745 +2230.855878 +2230.861738 +2230.885282 +2230.886680 +2230.902764 +2230.903530 +2230.904995 +2230.934066 +2230.936064 +2230.951782 +2230.954312 +2230.963603 +2230.978488 +2230.980420 +2230.994539 +2231.013453 +2231.014985 +2231.026873 +2231.029570 +2231.041858 +2231.045688 +2231.048252 +2231.061439 +2231.074292 +2231.089377 +2231.104529 +2231.105794 +2231.131968 +2231.148418 +2231.164635 +2231.167432 +2231.177489 +2231.193406 +2231.200266 +2231.209124 +2231.210156 +2231.227239 +2231.241025 +2231.253679 +2231.264469 +2231.266067 +2231.270263 +2231.282817 +2231.295837 +2231.298202 +2231.311388 +2231.315784 +2231.340526 +2231.346520 +2231.356243 +2231.366733 +2231.371095 +2231.373693 +2231.375358 +2231.400832 +2231.416716 +2231.419380 +2231.432401 +2231.435830 +2231.463203 +2231.465434 +2231.480686 +2231.482217 +2231.483116 +2231.494838 +2231.500965 +2231.511055 +2231.529936 +2231.546486 +2231.556643 +2231.590476 +2231.639027 +2231.687645 +2231.698334 +2232.767930 +2239.229995 +2239.261031 +2240.417740 +2241.248208 +2241.706450 +2241.707215 +2242.058730 +2242.183905 +2242.707281 +2242.707947 +2243.708113 +2244.707712 +2245.309177 +2245.364754 +2245.564954 +2245.701750 +2245.702416 +2246.702515 +2246.702848 +2251.148898 +2251.707772 +2251.802743 +2251.909103 +2252.103276 +2252.903908 +2254.203507 +2256.304071 +2258.738367 +2261.707595 +2261.714288 +2261.826643 +2261.838397 +2261.856846 +2261.918950 +2261.950219 +2262.048021 +2262.145157 +2262.300135 +2262.334301 +2262.393342 +2262.415120 +2262.426642 +2262.447721 +2262.457478 +2262.481420 +2262.571097 +2262.683951 +2262.734467 +2262.749186 +2262.769266 +2262.805563 +2262.807094 +2262.839362 +2262.852083 +2262.889845 +2262.938197 +2262.948952 +2263.023478 +2263.075193 +2263.106095 +2263.127041 +2263.150018 +2263.183884 +2263.196871 +2263.260740 +2263.365502 +2263.425675 +2263.438496 +2263.494506 +2263.497170 +2263.521613 +2263.534200 +2263.656544 +2263.670963 +2263.711423 +2263.723211 +2263.762838 +2263.853480 +2263.983151 +2264.072328 +2264.109224 +2264.148985 +2264.166467 +2264.202531 +2264.204795 +2264.297269 +2264.326107 +2264.371096 +2264.380686 +2264.382085 +2264.424575 +2264.450449 +2264.462304 +2264.464435 +2264.507825 +2264.686280 +2264.702197 +2264.726773 +2264.739061 +2264.742490 +2264.757376 +2264.771528 +2264.811122 +2264.868531 +2264.966633 +2265.006060 +2265.049616 +2265.052180 +2265.067432 +2265.092473 +2265.107725 +2265.134631 +2265.146819 +2265.152147 +2265.164002 +2265.180718 +2265.204961 +2265.233599 +2265.237428 +2265.248551 +2265.251747 +2265.275890 +2265.294305 +2265.308357 +2265.310655 +2265.321011 +2265.327538 +2265.339460 +2265.369330 +2265.380518 +2265.382983 +2265.439193 +2265.463003 +2265.476589 +2265.480219 +2265.493206 +2265.494937 +2265.506226 +2265.508324 +2265.527405 +2265.535463 +2265.554378 +2265.565167 +2265.566133 +2265.584348 +2265.594238 +2265.595770 +2265.598434 +2265.607824 +2265.609622 +2265.611287 +2265.623842 +2265.626173 +2265.640258 +2265.664801 +2265.694671 +2265.695437 +2265.711853 +2265.715017 +2265.723975 +2265.725307 +2265.753745 +2265.756342 +2265.769496 +2265.772126 +2265.781817 +2265.783082 +2265.786379 +2265.794937 +2265.840225 +2265.864601 +2265.891474 +2265.901264 +2265.932732 +2265.949815 +2265.955010 +2265.964634 +2265.967398 +2265.970495 +2265.978886 +2265.983748 +2265.993205 +2265.998533 +2266.009389 +2266.023009 +2266.034963 +2266.054144 +2266.073691 +2266.085413 +2266.087744 +2266.188110 +2266.194071 +2266.257774 +2266.259206 +2266.288177 +2266.291507 +2266.306492 +2266.315782 +2266.319745 +2266.321177 +2266.347118 +2266.362669 +2266.374723 +2266.424507 +2266.450514 +2266.453478 +2266.460904 +2266.465732 +2266.479385 +2266.482649 +2266.507757 +2266.510354 +2266.610887 +2276.709911 +2277.704416 +2277.709610 +2277.710243 +2278.703948 +2278.708677 +2280.703980 +2280.708941 +2280.709807 +2280.710640 +2281.708940 +2286.702908 +2286.709035 +2286.709268 +2286.804573 +2286.804939 +2287.005305 +2287.705538 +2287.905005 +2287.905271 +2288.005504 +2288.304971 +2288.405371 +2288.605570 +2288.706036 +2289.304903 +2289.305636 +2289.405070 +2289.705669 +2289.806068 +2289.905169 +2290.005269 +2290.105935 +2290.305568 +2290.605035 +2290.805068 +2290.805268 +2291.405567 +2296.723011 +2296.890544 +2297.001632 +2297.010690 +2297.173960 +2297.193740 +2297.271462 +2297.344189 +2297.396171 +2297.451948 +2297.462105 +2297.513620 +2297.521712 +2297.559174 +2297.625142 +2297.626041 +2297.759241 +2297.761172 +2297.771528 +2297.798235 +2297.823343 +2297.919847 +2297.968664 +2298.030103 +2298.109956 +2298.123110 +2298.160006 +2298.209290 +2298.292873 +2298.318880 +2298.522410 +2298.625240 +2298.648883 +2298.674491 +2298.699766 +2298.727804 +2298.748251 +2298.882783 +2298.920678 +2298.922709 +2298.933132 +2298.959672 +2298.970828 +2299.030202 +2299.071327 +2299.092373 +2299.123708 +2299.157974 +2299.168030 +2299.247551 +2299.274158 +2299.358706 +2299.383648 +2299.458773 +2299.474690 +2299.488343 +2299.504027 +2299.553911 +2299.555776 +2299.578153 +2299.623508 +2299.649282 +2299.662535 +2299.674357 +2299.877287 +2299.918646 +2299.983547 +2300.087677 +2300.097067 +2300.191106 +2300.198699 +2300.200330 +2300.215349 +2300.224606 +2300.225572 +2300.236761 +2300.246884 +2300.248749 +2300.263267 +2300.277686 +2300.278319 +2300.290207 +2300.293604 +2300.318812 +2300.319311 +2300.331366 +2300.331965 +2300.344186 +2300.369395 +2300.409954 +2300.411153 +2300.420943 +2300.423807 +2300.436427 +2300.439757 +2300.447450 +2300.449315 +2300.452212 +2300.467297 +2300.478219 +2300.480683 +2300.482748 +2300.496834 +2300.506091 +2300.533530 +2300.564499 +2300.575455 +2300.577220 +2300.592471 +2300.601695 +2300.635561 +2300.643387 +2300.656607 +2300.658106 +2300.660237 +2300.662901 +2300.686144 +2300.690673 +2300.727370 +2300.731033 +2300.739624 +2300.754476 +2300.758172 +2300.768295 +2300.783014 +2300.787842 +2300.797166 +2300.810520 +2300.824939 +2300.825405 +2300.837792 +2300.840123 +2300.855175 +2300.870160 +2300.871226 +2300.884645 +2300.909221 +2300.913417 +2300.921708 +2300.923906 +2300.937060 +2300.965531 +2300.968661 +2300.977486 +2300.994269 +2301.019644 +2301.033563 +2301.047582 +2301.048548 +2301.110819 +2301.135927 +2301.148981 +2301.162434 +2301.205591 +2301.224106 +2301.231165 +2301.317779 +2301.366963 +2301.370692 +2301.424771 +2301.512717 +2301.551977 +2301.556340 +2301.611152 +2301.626536 +2301.635627 +2301.687908 +2311.704648 +2312.709276 +2313.705279 +2313.709408 +2314.704545 +2314.705078 +2314.710972 +2316.710837 +2321.805304 +2321.905504 +2322.005637 +2322.105936 +2322.606435 +2322.805969 +2322.905702 +2323.106002 +2323.206435 +2323.305469 +2323.406335 +2323.605535 +2323.806034 +2324.206001 +2324.305701 +2324.306500 +2324.405401 +2325.106000 +2325.405467 +2325.407498 +2325.605633 +2325.605733 +2326.005966 +2326.206165 +2326.306498 +2331.856909 +2331.930402 +2331.972760 +2332.205993 +2332.285713 +2332.420445 +2332.505093 +2332.726172 +2332.726905 +2332.811620 +2332.887877 +2333.028370 +2333.051147 +2333.068230 +2333.125339 +2333.127071 +2333.167164 +2333.178686 +2333.209821 +2333.250048 +2333.286112 +2333.297300 +2333.334430 +2333.362901 +2333.466764 +2333.518079 +2333.530400 +2333.593171 +2333.619811 +2333.673024 +2333.738692 +2333.814782 +2333.880450 +2334.060803 +2334.100363 +2334.126204 +2334.139690 +2334.165964 +2334.303493 +2334.356840 +2334.369427 +2334.383014 +2334.395368 +2334.441488 +2334.494569 +2334.544985 +2334.627103 +2334.699364 +2334.714349 +2334.723772 +2334.736726 +2334.764865 +2334.778418 +2334.842520 +2334.968028 +2335.038624 +2335.053243 +2335.106523 +2335.278717 +2335.280782 +2335.293402 +2335.310452 +2335.320475 +2335.334927 +2335.349346 +2335.365597 +2335.409020 +2335.447648 +2335.478317 +2335.481947 +2335.495300 +2335.496832 +2335.526436 +2335.540954 +2335.551677 +2335.594168 +2335.610551 +2335.626336 +2335.678883 +2335.693135 +2335.708187 +2335.710751 +2335.798663 +2335.802526 +2335.832230 +2335.858037 +2335.871823 +2335.891004 +2335.900228 +2335.918377 +2335.920408 +2335.945183 +2335.959935 +2335.974887 +2335.978616 +2335.986375 +2336.004457 +2336.079382 +2336.094667 +2336.098130 +2336.122306 +2336.129199 +2336.168893 +2336.174853 +2336.186808 +2336.244084 +2336.262232 +2336.278017 +2336.325236 +2336.409885 +2336.430397 +2336.469358 +2336.470957 +2336.514247 +2336.518676 +2336.547247 +2336.593334 +2336.637856 +2336.666827 +2336.685342 +2339.078580 +2339.137821 +2345.365154 +2346.705246 +2347.706410 +2347.710972 +2349.371710 +2349.414167 +2349.439908 +2349.705642 +2349.710404 +2349.711037 +2349.711403 +2350.345502 +2351.705907 +2351.711301 +2356.213594 +2356.704803 +2356.709498 +2356.709898 +2356.805702 +2356.906234 +2357.105868 +2357.506966 +2357.607499 +2357.706500 +2357.806866 +2358.006933 +2358.206067 +2358.406699 +2358.506166 +2359.107098 +2359.207098 +2359.606298 +2359.906664 +2359.906798 +2360.206664 +2360.307929 +2360.706930 +2361.006763 +2361.106996 +2361.406996 +2361.407296 +2361.507162 +2361.508095 +2361.606862 +2366.756208 +2366.817014 +2366.930533 +2367.017580 +2367.133464 +2367.155342 +2367.266297 +2367.278452 +2367.289374 +2367.348482 +2367.589108 +2367.816480 +2367.817645 +2367.854908 +2367.867163 +2367.880116 +2367.893503 +2367.904825 +2368.011851 +2368.024172 +2368.041255 +2368.053876 +2368.081148 +2368.103026 +2368.268294 +2368.345051 +2368.356772 +2368.399396 +2368.432863 +2368.496499 +2368.535127 +2368.630532 +2368.694168 +2368.708887 +2368.862167 +2368.924138 +2368.964431 +2369.206122 +2369.261101 +2369.313615 +2369.504657 +2369.549046 +2369.562532 +2369.687574 +2369.713747 +2369.723937 +2369.766361 +2369.838822 +2369.877417 +2369.878716 +2369.902492 +2369.959668 +2370.028066 +2370.041253 +2370.042585 +2370.056704 +2370.067527 +2370.085575 +2370.088306 +2370.114047 +2370.124736 +2370.130797 +2370.158835 +2370.169658 +2370.171989 +2370.195598 +2370.202791 +2370.217210 +2370.231363 +2370.241919 +2370.287573 +2370.289271 +2370.317410 +2370.330463 +2370.332961 +2370.333427 +2370.363231 +2370.372788 +2370.393301 +2370.406887 +2370.418742 +2370.424136 +2370.464762 +2370.466028 +2370.477883 +2370.479481 +2370.507220 +2370.522571 +2370.536391 +2370.538255 +2370.564063 +2370.565761 +2370.569258 +2370.583111 +2370.594932 +2370.599394 +2370.625635 +2370.640153 +2370.642418 +2370.644149 +2370.655605 +2370.657170 +2370.667193 +2370.684642 +2370.687539 +2370.715445 +2370.717576 +2370.717942 +2370.734692 +2370.744382 +2370.746414 +2370.748445 +2370.778881 +2370.790703 +2370.822504 +2370.836290 +2370.851842 +2370.864229 +2370.878515 +2370.879148 +2370.882011 +2370.894998 +2370.922304 +2370.926101 +2370.937989 +2370.953606 +2370.957436 +2370.969091 +2370.996830 +2370.999760 +2371.001292 +2371.013080 +2371.026600 +2371.028198 +2371.030163 +2371.054572 +2371.056537 +2371.070789 +2371.084808 +2371.085208 +2371.128398 +2371.142384 +2371.155737 +2371.178648 +2371.188172 +2371.191202 +2371.193733 +2371.210483 +2371.255471 +2371.280945 +2371.284775 +2371.295497 +2371.309384 +2371.312947 +2371.328764 +2371.341185 +2371.343050 +2371.357469 +2371.372720 +2371.387539 +2371.390935 +2371.430063 +2371.434225 +2371.446346 +2371.461898 +2371.475983 +2371.493866 +2371.496263 +2371.515044 +2371.530662 +2371.532127 +2371.575184 +2371.577715 +2371.580279 +2371.590769 +2371.606220 +2371.611648 +2371.640685 +2371.656736 +2371.672720 +2371.683409 +2371.686273 +2372.105287 +2374.707882 +2374.999190 +2375.890598 +2378.668717 +2378.873245 +2378.924594 +2379.417301 +2379.448836 +2379.468982 +2379.482203 +2380.182268 +2381.222860 +2381.705710 +2382.707308 +2382.711703 +2382.839808 +2382.903911 +2382.916332 +2384.706473 +2384.711135 +2386.707403 +2386.713164 +2391.811894 +2391.906433 +2392.006666 +2392.307032 +2393.007397 +2393.607463 +2393.707197 +2393.707430 +2393.707863 +2393.807863 +2394.207463 +2394.306896 +2394.506863 +2394.507829 +2394.707329 +2394.807295 +2395.007395 +2395.107861 +2395.307428 +2395.608760 +2395.707561 +2396.107694 +2396.207760 +2396.507161 +2396.508726 +2401.863399 +2401.885910 +2402.031231 +2402.213116 +2402.814680 +2402.916178 +2402.947081 +2403.011783 +2403.052609 +2403.156738 +2403.299595 +2403.319142 +2403.345615 +2403.434293 +2403.490437 +2403.515978 +2403.541719 +2403.667726 +2403.791602 +2403.853440 +2403.967759 +2404.021572 +2404.099794 +2404.179947 +2404.222471 +2404.235558 +2404.294266 +2404.445514 +2404.447745 +2404.558867 +2404.761864 +2404.831628 +2404.848478 +2404.875417 +2404.876816 +2404.917309 +2404.946812 +2405.046013 +2405.057635 +2405.101524 +2405.363129 +2405.392799 +2405.482443 +2405.508617 +2405.539486 +2405.552639 +2405.554438 +2405.655137 +2405.719006 +2405.728230 +2405.777381 +2405.791534 +2406.018140 +2406.031360 +2406.035123 +2406.047977 +2406.142582 +2406.158233 +2406.200824 +2406.213911 +2406.244247 +2406.272019 +2406.337487 +2406.366491 +2406.386971 +2406.397427 +2406.430361 +2406.495163 +2406.558133 +2406.584440 +2406.587637 +2406.616608 +2406.630394 +2407.588368 +2409.529126 +2409.533088 +2409.747973 +2416.704876 +2417.705641 +2417.706274 +2417.707239 +2417.710636 +2417.712001 +2418.711734 +2419.706205 +2420.706171 +2424.869237 +2425.604467 +2426.709828 +2426.710194 +2426.805432 +2426.810593 +2427.006264 +2427.006664 +2427.007430 +2427.106131 +2427.306331 +2427.406996 +2427.707396 +2428.006896 +2428.007296 +2428.306063 +2428.406563 +2428.407528 +2428.906296 +2429.007494 +2429.206861 +2429.207228 +2429.406861 +2429.607294 +2429.706595 +2429.707394 +2430.106594 +2431.407425 +2431.606060 +2431.707325 +2436.747413 +2436.755738 +2436.802425 +2436.841919 +2436.909451 +2437.047580 +2437.078782 +2437.186441 +2437.577549 +2437.647779 +2437.720339 +2437.753606 +2437.784442 +2437.837422 +2437.892001 +2437.968058 +2437.980246 +2437.991002 +2438.067359 +2438.078448 +2438.092300 +2438.353606 +2438.417042 +2438.454371 +2438.520006 +2438.560099 +2438.584474 +2438.621870 +2438.671487 +2438.718773 +2438.783342 +2438.880345 +2438.948610 +2439.087837 +2439.130095 +2439.182209 +2439.193332 +2439.286072 +2439.368956 +2439.394264 +2439.462262 +2439.490234 +2439.492033 +2439.530161 +2439.642016 +2439.655602 +2439.670221 +2439.852006 +2439.877713 +2439.894230 +2439.907483 +2439.951606 +2439.953338 +2439.954370 +2439.965692 +2439.967390 +2439.979545 +2439.980311 +2439.982375 +2439.994097 +2440.017540 +2440.018139 +2440.053504 +2440.065725 +2440.081409 +2440.082608 +2440.110680 +2440.137986 +2440.170220 +2440.181942 +2440.214743 +2440.238985 +2440.244679 +2440.254103 +2440.271419 +2440.273251 +2440.285505 +2440.288302 +2440.303087 +2440.304053 +2440.318339 +2440.320237 +2440.332491 +2440.345445 +2440.345811 +2440.349374 +2440.361063 +2440.389601 +2440.391099 +2440.405152 +2440.405984 +2440.407483 +2440.420437 +2440.421769 +2440.435522 +2440.449607 +2440.460230 +2440.462162 +2440.481143 +2440.483174 +2440.495428 +2440.509914 +2440.514409 +2440.529594 +2440.543813 +2440.554369 +2440.567822 +2440.587802 +2440.599358 +2440.602854 +2440.616707 +2440.630060 +2440.656767 +2440.688701 +2440.723833 +2440.738618 +2440.764159 +2440.813077 +2440.814476 +2440.842115 +2440.860596 +2440.876147 +2440.876513 +2440.887502 +2440.891299 +2440.902521 +2440.918505 +2440.932091 +2440.965724 +2440.980576 +2440.996294 +2441.010246 +2441.012011 +2441.014009 +2441.040882 +2441.056467 +2441.060596 +2441.061262 +2441.073416 +2441.075980 +2441.078045 +2441.086736 +2441.106350 +2441.106883 +2441.108981 +2441.118738 +2441.163793 +2441.165857 +2441.178511 +2441.194429 +2441.210046 +2441.218338 +2441.238118 +2441.252337 +2441.253936 +2441.265424 +2441.268654 +2441.272617 +2441.280676 +2441.285671 +2441.286636 +2441.296027 +2441.298058 +2441.303186 +2441.317272 +2441.362027 +2441.380542 +2441.390599 +2441.407582 +2441.436919 +2441.440715 +2441.450938 +2441.454735 +2441.456966 +2441.474948 +2441.482374 +2441.500256 +2441.532723 +2441.548807 +2441.564525 +2441.566656 +2441.582007 +2441.600689 +2441.601954 +2441.628561 +2441.631491 +2441.645177 +2441.691531 +2441.692230 +2448.027056 +2448.033749 +2448.039577 +2448.071045 +2448.087162 +2448.093989 +2448.104978 +2448.139643 +2449.338909 +2451.199647 +2451.393553 +2451.705074 +2451.709903 +2451.710668 +2452.704907 +2453.346598 +2453.369275 +2453.417660 +2453.791319 +2454.705471 +2454.706636 +2454.711265 +2456.710763 +2457.810929 +2459.577494 +2460.939630 +2461.015021 +2461.114555 +2461.428641 +2461.709326 +2461.805131 +2461.805630 +2462.005996 +2462.006629 +2462.306629 +2462.505263 +2462.506628 +2462.606062 +2462.607061 +2462.805962 +2462.807061 +2463.206195 +2463.506694 +2464.005961 +2464.007093 +2464.205195 +2464.206160 +2464.305161 +2464.306294 +2464.306826 +2464.506660 +2465.004861 +2465.006526 +2465.105827 +2465.205560 +2465.206892 +2465.209057 +2465.606758 +2466.206225 +2466.405625 +2466.407057 +2466.506724 +2467.511485 +2470.702025 +2471.728764 +2471.826999 +2471.856303 +2471.868790 +2471.898694 +2471.901424 +2471.944681 +2472.069256 +2472.071254 +2472.129463 +2472.256768 +2472.335556 +2472.398027 +2472.408683 +2472.421004 +2472.446212 +2472.467990 +2472.506885 +2472.530361 +2472.544447 +2472.545113 +2472.639718 +2472.780045 +2472.798892 +2472.872053 +2473.168855 +2473.304320 +2473.316707 +2473.329461 +2473.537553 +2473.549841 +2473.602688 +2473.744479 +2473.771552 +2473.808082 +2473.893463 +2473.907583 +2473.922767 +2473.935988 +2473.994529 +2474.021935 +2474.143580 +2474.187436 +2474.215874 +2474.228561 +2474.285038 +2474.341015 +2474.352737 +2474.382541 +2474.393663 +2474.412244 +2474.437752 +2474.452570 +2474.479810 +2474.748774 +2474.820902 +2474.879177 +2474.881375 +2474.923299 +2474.953069 +2474.969287 +2474.984138 +2475.011278 +2475.028294 +2475.028760 +2475.044977 +2475.057532 +2475.071584 +2475.074481 +2475.085537 +2475.099856 +2475.135154 +2475.144578 +2475.192929 +2475.204518 +2475.222966 +2475.233389 +2475.308880 +2475.323266 +2475.355933 +2475.368953 +2475.413808 +2475.416572 +2475.444577 +2475.458763 +2475.493995 +2475.504384 +2475.518637 +2475.534854 +2475.552469 +2475.566822 +2475.595826 +2475.597058 +2475.611444 +2475.614341 +2475.627894 +2475.641813 +2475.646475 +2475.673748 +2475.690731 +2475.718503 +2475.720601 +2475.747208 +2475.760195 +2475.780175 +2475.803951 +2475.817404 +2475.831424 +2475.835420 +2475.837651 +2475.860128 +2475.876412 +2475.877611 +2475.905216 +2475.917271 +2475.931823 +2475.933255 +2475.934654 +2475.944510 +2475.959595 +2475.973015 +2475.975413 +2475.989099 +2476.050404 +2476.081174 +2476.114940 +2476.125696 +2476.129858 +2476.132156 +2476.175779 +2476.179042 +2476.203784 +2476.218603 +2476.251969 +2476.291297 +2476.322998 +2476.349938 +2476.360660 +2476.378742 +2476.381506 +2476.393294 +2476.443811 +2476.483637 +2476.502285 +2476.505615 +2476.560694 +2476.600687 +2476.602219 +2476.618969 +2476.630224 +2476.660594 +2476.664490 +2476.692428 +2477.528158 +2477.532587 +2477.538248 +2479.690294 +2482.051664 +2482.057758 +2482.114001 +2485.429216 +2486.710900 +2487.705904 +2487.710433 +2487.711099 +2488.706236 +2489.704969 +2489.712162 +2490.711529 +2491.706233 +2491.712027 +2494.533236 +2496.709991 +2496.806128 +2496.905928 +2497.106993 +2497.207093 +2497.307026 +2497.408558 +2497.907559 +2498.406459 +2499.207491 +2499.306825 +2499.607657 +2500.506490 +2500.707656 +2500.907356 +2500.907656 +2501.107655 +2506.745645 +2506.761096 +2506.800057 +2506.932591 +2506.982641 +2506.992232 +2507.003221 +2507.023034 +2507.149641 +2507.469254 +2507.529827 +2507.590566 +2507.619737 +2507.645444 +2507.654802 +2507.684206 +2507.741615 +2507.762128 +2507.808581 +2507.819037 +2507.855201 +2507.857366 +2507.857932 +2507.934555 +2508.026863 +2508.039483 +2508.059796 +2508.077545 +2508.111345 +2508.139583 +2508.177878 +2508.274282 +2508.277545 +2508.402087 +2508.454401 +2508.532157 +2508.611611 +2508.689566 +2508.690598 +2508.743012 +2508.766988 +2508.780208 +2508.820202 +2508.889632 +2508.934621 +2508.947275 +2508.958264 +2508.998124 +2509.053002 +2509.066788 +2509.077977 +2509.093395 +2509.144677 +2509.210411 +2509.265956 +2509.292029 +2509.305516 +2509.365090 +2509.377277 +2509.390631 +2509.441313 +2509.497857 +2509.538649 +2509.553568 +2509.570084 +2509.595592 +2509.638483 +2509.652702 +2509.678509 +2509.733787 +2509.788199 +2509.800853 +2509.815272 +2509.856598 +2509.886335 +2509.923131 +2509.936051 +2509.938616 +2509.978509 +2510.014739 +2510.110577 +2510.169917 +2510.184569 +2510.194792 +2510.240080 +2510.263124 +2510.264423 +2510.267053 +2510.306414 +2510.310244 +2510.347639 +2510.357463 +2510.385035 +2510.397190 +2510.400087 +2510.475278 +2510.516071 +2510.532088 +2510.559261 +2510.566154 +2510.629890 +2510.643443 +2510.654799 +2510.683270 +2510.725528 +2510.737982 +2510.781905 +2510.811175 +2510.825528 +2510.913873 +2510.926760 +2510.931388 +2510.944109 +2510.960892 +2511.076277 +2511.106347 +2511.111475 +2511.139747 +2511.151668 +2511.167619 +2511.271948 +2511.291095 +2511.303383 +2511.306846 +2511.321565 +2511.337981 +2511.378241 +2511.412240 +2511.452267 +2511.468884 +2511.498654 +2511.499953 +2511.529290 +2511.543642 +2511.570549 +2511.586633 +2511.598554 +2511.654531 +2511.665221 +2511.680072 +2511.683269 +2511.694558 +2520.069341 +2521.705936 +2521.710598 +2521.711165 +2522.711796 +2525.710694 +2526.705998 +2526.710627 +2526.711493 +2531.709856 +2531.811254 +2531.911121 +2532.706292 +2533.206791 +2533.206791 +2533.306791 +2533.607356 +2533.806890 +2534.106790 +2534.406390 +2534.506723 +2541.720535 +2541.828261 +2541.830525 +2541.850771 +2541.873748 +2541.906715 +2541.966322 +2542.006349 +2542.007748 +2542.044311 +2542.045077 +2542.056199 +2542.077944 +2542.080442 +2542.093395 +2542.105417 +2542.131291 +2542.132190 +2542.140948 +2542.173082 +2542.221267 +2542.234987 +2542.243878 +2542.272150 +2542.272882 +2542.281440 +2542.283871 +2542.293661 +2542.319935 +2542.331257 +2542.332289 +2542.343145 +2542.392796 +2542.404817 +2542.507181 +2542.544743 +2542.591830 +2542.635886 +2542.646675 +2542.648373 +2542.659795 +2542.730491 +2542.752402 +2542.779575 +2542.792495 +2542.805016 +2542.817604 +2542.842545 +2542.866188 +2542.889798 +2542.900954 +2542.937650 +2542.961859 +2542.975712 +2543.027926 +2543.091097 +2543.143511 +2543.201453 +2543.225928 +2543.236651 +2543.261992 +2543.300021 +2543.343144 +2543.429358 +2543.495359 +2543.557996 +2543.571582 +2543.574546 +2543.611476 +2543.691429 +2543.702884 +2543.715405 +2543.731089 +2543.818502 +2543.834186 +2543.835984 +2543.874912 +2543.937749 +2543.963290 +2543.976244 +2543.989231 +2544.067552 +2544.082271 +2544.109277 +2544.133187 +2544.170150 +2544.187166 +2544.210276 +2544.271515 +2544.293726 +2544.330955 +2544.371149 +2544.401318 +2544.412174 +2544.436916 +2544.449836 +2544.500119 +2544.535218 +2544.559194 +2544.579740 +2544.593726 +2544.606480 +2544.628791 +2544.631521 +2544.643343 +2544.669850 +2544.708344 +2544.711275 +2544.718767 +2544.724129 +2544.735151 +2544.773612 +2544.776509 +2544.793759 +2544.795790 +2544.815737 +2544.859093 +2544.882070 +2544.909343 +2544.918934 +2544.920199 +2544.922230 +2544.933519 +2544.948337 +2544.959426 +2544.971814 +2544.995224 +2545.003083 +2545.012373 +2545.022896 +2545.036050 +2545.039113 +2545.041910 +2545.052899 +2545.054331 +2545.065553 +2545.067152 +2545.080172 +2545.081304 +2545.105980 +2545.117601 +2545.140845 +2545.154831 +2545.156329 +2545.157428 +2545.172313 +2545.184934 +2545.189429 +2545.220199 +2545.232386 +2545.242010 +2545.244341 +2545.255896 +2545.275943 +2545.290928 +2545.303249 +2545.315703 +2545.318167 +2545.338713 +2545.363122 +2545.376476 +2545.382037 +2545.404547 +2545.419166 +2545.432220 +2545.453865 +2545.464388 +2545.480638 +2545.481770 +2545.494524 +2545.539945 +2545.551733 +2545.564021 +2545.565853 +2545.576142 +2545.589795 +2545.592892 +2545.620398 +2545.630621 +2545.646938 +2545.648237 +2545.659259 +2545.690461 +2545.696255 +2545.736449 +2545.748670 +2545.780771 +2545.828090 +2545.850967 +2545.865220 +2545.906745 +2545.935083 +2545.938480 +2545.948769 +2545.953198 +2545.979971 +2545.982236 +2545.996821 +2546.005579 +2546.021197 +2546.033385 +2546.037214 +2546.049202 +2546.054530 +2546.076808 +2546.122928 +2546.133817 +2546.136015 +2546.153231 +2546.165286 +2546.174976 +2546.208076 +2546.224194 +2546.251133 +2546.306778 +2546.320664 +2546.346138 +2546.397953 +2546.424693 +2546.426358 +2546.444107 +2546.451333 +2546.496754 +2546.522695 +2546.535382 +2546.563654 +2546.564353 +2546.578439 +2546.597054 +2546.657760 +2546.697786 +2557.710463 +2557.711395 +2561.706063 +2561.710492 +2565.051414 +2566.709987 +2566.810453 +2566.906491 +2566.907123 +2567.006690 +2567.406657 +2567.706090 +2568.507222 +2568.805989 +2568.906755 +2569.007188 +2569.506122 +2569.707220 +2570.406121 +2570.406853 +2570.407253 +2570.506154 +2570.607153 +2570.906120 +2571.206753 +2571.605887 +2574.056334 +2576.766288 +2576.809777 +2576.810144 +2576.913707 +2576.951569 +2576.976178 +2577.019667 +2577.048006 +2577.058096 +2577.113740 +2577.137083 +2577.196057 +2577.208245 +2577.221299 +2577.348405 +2577.496224 +2577.586500 +2577.669184 +2577.724728 +2577.777342 +2577.830422 +2577.891628 +2577.904848 +2578.085134 +2578.370116 +2578.428923 +2578.545240 +2578.625194 +2578.708943 +2578.747438 +2578.800818 +2578.824794 +2578.864687 +2578.959026 +2579.035117 +2579.070814 +2579.096056 +2579.189995 +2579.216302 +2579.243508 +2579.245339 +2579.353931 +2579.407744 +2579.422995 +2579.562489 +2579.612539 +2579.668416 +2579.682735 +2579.763920 +2579.814403 +2579.921962 +2579.933717 +2580.161123 +2580.207043 +2580.289994 +2580.436813 +2580.465618 +2580.477606 +2580.550400 +2580.554496 +2580.580070 +2580.581735 +2580.697786 +2580.699650 +2580.738611 +2580.741442 +2580.753996 +2580.828088 +2580.854728 +2580.902847 +2580.917665 +2580.974342 +2581.035314 +2581.066716 +2581.156959 +2581.187695 +2581.243240 +2581.261754 +2581.276706 +2581.347668 +2581.391924 +2581.420962 +2581.445004 +2581.566250 +2581.611904 +2581.698284 +2583.375472 +2583.406574 +2583.426188 +2584.140340 +2584.170609 +2584.207905 +2584.218628 +2586.691752 +2586.722721 +2586.859618 +2587.619557 +2588.824351 +2591.705533 +2591.711161 +2592.091714 +2592.513991 +2592.524514 +2595.706229 +2595.710025 +2595.711290 +2596.711589 +2596.712122 +2597.630469 +2597.729137 +2598.575323 +2598.598633 +2599.960370 +2601.706689 +2601.711384 +2601.806289 +2601.906189 +2602.194800 +2602.206222 +2602.249546 +2602.807654 +2603.206588 +2603.706421 +2603.707153 +2603.707486 +2604.507319 +2604.607452 +2604.707618 +2604.807185 +2604.807618 +2604.907585 +2605.006652 +2606.108583 +2606.506751 +2606.608416 +2607.476880 +2608.066889 +2608.407515 +2608.986202 +2608.991963 +2611.811907 +2611.889629 +2611.918334 +2611.938047 +2612.062123 +2612.221364 +2612.229722 +2612.390794 +2612.449735 +2612.451800 +2612.507944 +2612.663088 +2612.753331 +2612.754863 +2612.885099 +2612.894224 +2612.924926 +2613.097587 +2613.193391 +2613.457493 +2613.482801 +2613.775242 +2613.907010 +2613.920729 +2614.011272 +2614.037479 +2614.131885 +2614.157059 +2614.227356 +2614.253363 +2614.309240 +2614.387729 +2614.474342 +2614.501415 +2614.524858 +2614.538478 +2614.561954 +2614.588927 +2614.616333 +2614.628920 +2614.655893 +2614.687395 +2614.713269 +2614.716200 +2614.744238 +2614.756226 +2614.769580 +2614.799317 +2614.825524 +2614.827688 +2614.853829 +2614.854628 +2614.910405 +2614.950499 +2614.967748 +2614.980369 +2615.021428 +2615.024291 +2615.039210 +2615.064185 +2615.086429 +2615.157458 +2615.168480 +2615.173875 +2615.182067 +2615.204644 +2615.220795 +2615.260555 +2615.262719 +2615.289160 +2615.302413 +2615.305044 +2615.305976 +2615.316898 +2615.320695 +2615.346436 +2615.359855 +2615.399516 +2615.400681 +2615.413502 +2615.460188 +2615.471677 +2615.474141 +2615.484264 +2615.499283 +2615.526888 +2615.528220 +2615.530551 +2615.565683 +2615.571677 +2615.594287 +2615.608740 +2615.619296 +2615.635779 +2615.661354 +2615.675173 +2615.676672 +2615.680435 +2615.749332 +2615.800681 +2615.827720 +2615.845802 +2615.871477 +2615.887161 +2615.902879 +2615.929519 +2615.944837 +2615.971610 +2615.988759 +2615.997417 +2616.038942 +2616.082166 +2616.095419 +2616.102945 +2616.110537 +2616.132282 +2616.134946 +2616.146535 +2616.187261 +2616.188126 +2616.215366 +2616.218063 +2616.241972 +2616.245536 +2616.260521 +2616.273241 +2616.274706 +2616.290357 +2616.314866 +2616.348066 +2616.349798 +2616.394220 +2616.421093 +2616.443038 +2616.465915 +2616.471210 +2616.481333 +2616.483231 +2616.485362 +2616.500380 +2616.511769 +2616.517330 +2616.543937 +2616.544603 +2616.556225 +2616.560520 +2616.562352 +2616.575539 +2616.610071 +2616.620227 +2616.650863 +2616.653960 +2616.667180 +2616.681299 +2616.685295 +2616.699415 +2617.319327 +2617.331815 +2617.338175 +2617.341472 +2626.706164 +2626.710926 +2627.706730 +2627.711092 +2628.706129 +2628.706862 +2629.712355 +2631.712220 +2632.106192 +2634.324039 +2635.064731 +2635.070658 +2635.119176 +2635.125736 +2635.167595 +2635.281214 +2635.560435 +2635.574854 +2635.580981 +2636.704290 +2636.711849 +2636.806587 +2636.906987 +2637.306920 +2637.507652 +2637.707352 +2638.007219 +2638.107219 +2638.407352 +2638.507518 +2638.607618 +2639.307950 +2639.707417 +2640.106584 +2640.107483 +2640.206417 +2640.306251 +2640.507383 +2640.808015 +2646.715568 +2646.783034 +2646.913171 +2647.054329 +2647.176640 +2647.300749 +2647.366417 +2647.386697 +2647.476573 +2647.516400 +2647.662054 +2647.770346 +2647.782001 +2647.845004 +2647.874342 +2647.923226 +2647.976040 +2647.987429 +2648.089460 +2648.181268 +2648.254894 +2648.331584 +2648.464584 +2648.648667 +2648.816599 +2648.898150 +2649.043538 +2649.132516 +2649.249432 +2649.384031 +2649.394453 +2649.429418 +2649.529918 +2649.572842 +2649.599515 +2649.619462 +2649.628419 +2649.666148 +2649.735013 +2649.748099 +2649.780267 +2649.864749 +2649.919694 +2649.921892 +2649.976937 +2650.002445 +2650.030150 +2650.134013 +2650.161219 +2650.163883 +2650.193820 +2650.207406 +2650.219994 +2650.293853 +2650.304709 +2650.306807 +2650.550197 +2650.562684 +2650.628851 +2650.657423 +2650.735245 +2650.737076 +2650.777269 +2650.839074 +2650.851728 +2650.866613 +2650.868778 +2650.912967 +2650.945135 +2651.038841 +2651.093286 +2651.121358 +2651.124821 +2651.150562 +2651.244435 +2651.316396 +2651.327685 +2651.343669 +2651.404075 +2651.450262 +2651.460918 +2651.464348 +2651.492886 +2651.521191 +2651.521990 +2651.535310 +2651.617228 +2651.685427 +2654.464378 +2654.482394 +2654.511298 +2654.543433 +2654.562580 +2654.834941 +2655.583192 +2655.829645 +2661.705763 +2661.711391 +2662.107594 +2662.706461 +2662.707594 +2662.710091 +2662.712489 +2663.290643 +2663.430570 +2663.706660 +2664.706559 +2664.711221 +2664.712220 +2664.869063 +2665.203529 +2665.281384 +2665.705792 +2665.712020 +2665.908523 +2666.711452 +2667.110553 +2667.471492 +2668.087508 +2668.238724 +2668.279017 +2668.308454 +2668.359136 +2669.061300 +2671.711514 +2671.806719 +2671.906386 +2672.007518 +2672.307151 +2672.407351 +2672.606218 +2672.607384 +2672.707051 +2672.806651 +2673.006684 +2674.006916 +2675.407381 +2675.906781 +2676.406814 +2676.606747 +2680.627456 +2681.715700 +2681.716366 +2681.729519 +2681.745703 +2681.784997 +2681.785197 +2681.804777 +2681.805577 +2681.824857 +2681.848467 +2681.860555 +2681.861088 +2681.873176 +2681.892623 +2681.906242 +2681.925024 +2681.927321 +2681.952097 +2681.952529 +2681.963618 +2681.980801 +2681.989626 +2681.999682 +2682.026955 +2682.049765 +2682.063552 +2682.064151 +2682.085829 +2682.096885 +2682.177970 +2682.210105 +2682.243904 +2682.280734 +2682.329685 +2682.375972 +2682.421826 +2682.431583 +2682.461220 +2682.483831 +2682.522692 +2682.536545 +2682.584597 +2682.597018 +2682.721626 +2682.748566 +2682.775306 +2682.842039 +2682.877803 +2682.893687 +2682.985162 +2683.009904 +2683.033414 +2683.098049 +2683.133214 +2683.161020 +2683.185961 +2683.279235 +2683.435945 +2683.565948 +2683.614100 +2683.664849 +2683.717130 +2683.740839 +2683.742238 +2683.818095 +2683.872374 +2683.962551 +2684.026120 +2684.052994 +2684.078768 +2684.130116 +2684.235677 +2684.250596 +2684.263083 +2684.305940 +2684.432081 +2684.448298 +2684.502877 +2684.533413 +2684.545667 +2684.573206 +2684.587692 +2684.601078 +2684.639440 +2684.681531 +2684.695351 +2684.697249 +2684.722756 +2684.748531 +2684.760086 +2684.815830 +2684.830449 +2684.855590 +2684.884095 +2684.896716 +2684.899346 +2684.940339 +2685.024921 +2685.042570 +2685.052393 +2685.171174 +2685.195217 +2685.251261 +2685.253525 +2685.280165 +2685.282396 +2685.324154 +2685.363082 +2685.410901 +2685.477734 +2685.480265 +2685.524454 +2685.596848 +2685.697214 +2685.708037 +2685.726785 +2685.753125 +2685.779332 +2685.793684 +2685.808270 +2685.818460 +2685.864447 +2685.878566 +2685.893285 +2685.918160 +2685.946665 +2686.139971 +2686.169475 +2686.261783 +2686.310767 +2686.384227 +2686.456987 +2686.484793 +2686.496914 +2686.499778 +2686.512298 +2686.523754 +2686.535176 +2686.537307 +2686.545399 +2686.549894 +2686.551559 +2686.575602 +2686.590387 +2686.609068 +2686.611499 +2686.655289 +2686.657753 +2686.667943 +2686.672138 +2686.681363 +2686.683627 +2686.692485 +2687.210000 +2687.227349 +2687.241102 +2687.243666 +2687.256454 +2690.150423 +2691.594644 +2695.437697 +2697.712087 +2698.707691 +2698.712653 +2699.672758 +2699.705858 +2700.707156 +2700.985577 +2701.024006 +2701.711950 +2705.442316 +2706.806617 +2706.912611 +2707.208348 +2707.808281 +2708.007016 +2708.207382 +2708.407548 +2708.608114 +2708.706948 +2709.208213 +2709.307347 +2709.707480 +2709.806248 +2709.807080 +2710.007680 +2710.508245 +2710.608711 +2710.807546 +2711.007445 +2711.507478 +2711.608677 +2712.277974 +2713.702081 +2715.974374 +2716.716764 +2716.721925 +2716.723191 +2716.730150 +2716.738176 +2716.748465 +2716.766547 +2716.809371 +2716.819794 +2716.851862 +2716.862818 +2716.863417 +2716.883530 +2716.884762 +2716.905042 +2716.918528 +2716.925755 +2716.934646 +2716.947633 +2716.949198 +2716.968678 +2716.972341 +2716.992055 +2716.992654 +2717.009171 +2717.021559 +2717.057756 +2717.263650 +2717.290190 +2717.322790 +2717.345967 +2717.360286 +2717.382830 +2717.404209 +2717.657722 +2717.681232 +2717.693120 +2717.832946 +2717.936509 +2718.003276 +2718.071574 +2718.224288 +2718.278167 +2718.368810 +2718.381198 +2718.449796 +2718.500944 +2718.885593 +2718.937574 +2719.273837 +2719.298513 +2719.310601 +2719.324920 +2719.339405 +2719.407637 +2719.437274 +2719.451027 +2719.492552 +2719.544899 +2719.602042 +2719.616028 +2719.643434 +2719.667244 +2719.791319 +2719.916294 +2720.016960 +2720.043400 +2720.213097 +2720.224786 +2720.238672 +2720.284759 +2720.370107 +2720.385591 +2720.514795 +2720.533044 +2720.549227 +2720.559750 +2720.575634 +2720.606370 +2720.633943 +2720.649860 +2720.727915 +2720.729147 +2720.759350 +2720.895248 +2720.922121 +2720.924086 +2721.059550 +2721.100243 +2721.217492 +2721.232910 +2721.272970 +2721.303772 +2721.386456 +2721.397345 +2721.408034 +2721.420688 +2721.432910 +2721.437771 +2721.446130 +2721.450226 +2721.457984 +2721.469240 +2721.484991 +2721.498244 +2721.506869 +2721.509100 +2721.516992 +2721.529946 +2721.533209 +2721.535207 +2721.543432 +2721.555753 +2721.568108 +2721.573069 +2721.574701 +2721.600708 +2721.610165 +2721.615094 +2721.630778 +2721.652090 +2721.654454 +2721.665510 +2721.677831 +2721.679729 +2721.681561 +2721.690219 +2721.694947 +2721.873635 +2721.885856 +2722.138104 +2722.144963 +2724.114226 +2726.940563 +2728.220981 +2732.334430 +2732.711686 +2735.712016 +2736.917077 +2738.196696 +2738.381477 +2741.710778 +2741.906948 +2742.007414 +2742.106948 +2742.208280 +2742.307081 +2742.507880 +2742.607947 +2742.806981 +2743.007946 +2743.106980 +2743.507113 +2743.906846 +2744.006946 +2744.206979 +2744.407012 +2744.507046 +2744.807045 +2744.808377 +2745.206745 +2745.306679 +2745.508110 +2745.607711 +2746.007011 +2746.407643 +2746.606644 +2746.706944 +2746.707310 +2746.707543 +2751.705940 +2751.710502 +2751.710801 +2751.715064 +2751.716163 +2751.723222 +2751.731514 +2751.760418 +2751.802942 +2751.804674 +2751.813898 +2751.825054 +2751.825953 +2751.848497 +2751.848896 +2751.858886 +2751.881098 +2751.890921 +2751.891254 +2751.933978 +2751.945400 +2752.138573 +2752.149362 +2752.188090 +2752.202942 +2752.225253 +2752.286525 +2752.358120 +2752.385093 +2752.397947 +2752.463281 +2752.524787 +2752.569875 +2752.581929 +2752.759585 +2752.780630 +2752.932878 +2752.969208 +2753.149361 +2753.150860 +2753.320090 +2753.333377 +2753.386291 +2753.411466 +2753.422455 +2753.494183 +2753.598945 +2753.612298 +2753.741369 +2753.775967 +2753.801908 +2753.826883 +2753.829547 +2753.896280 +2754.065311 +2754.089920 +2754.099943 +2754.156686 +2754.183160 +2754.265477 +2754.266976 +2754.308601 +2754.349260 +2754.363779 +2754.391085 +2754.404638 +2754.417792 +2754.456819 +2754.458617 +2754.584258 +2754.629047 +2754.671604 +2754.753855 +2754.854055 +2754.855054 +2754.882526 +2754.967541 +2754.996812 +2754.999976 +2755.015893 +2755.044631 +2755.073602 +2755.118057 +2755.220355 +2755.324318 +2755.337138 +2755.366142 +2755.560847 +2755.576232 +2755.607134 +2755.634207 +2755.636339 +2755.786322 +2755.835905 +2755.852789 +2755.986055 +2756.062812 +2756.065975 +2756.078829 +2756.105669 +2756.151989 +2756.164343 +2756.186754 +2756.281626 +2756.283957 +2756.300607 +2756.344530 +2756.358283 +2756.359881 +2756.372402 +2756.387453 +2756.465242 +2756.479195 +2756.491483 +2756.493947 +2756.533674 +2756.548858 +2756.606834 +2756.647093 +2766.710886 +2766.711119 +2768.705889 +2771.705720 +2771.706319 +2776.705215 +2776.709677 +2776.805215 +2776.805548 +2776.811009 +2776.905415 +2777.206813 +2777.306480 +2777.805847 +2778.305913 +2778.306279 +2778.607078 +2778.806612 +2778.905912 +2779.006578 +2779.105812 +2779.106345 +2779.406245 +2779.506544 +2779.506944 +2779.606611 +2780.006977 +2780.106744 +2780.506510 +2780.506643 +2780.805910 +2781.307042 +2781.606742 +2781.705876 +2786.721622 +2786.721822 +2786.729248 +2786.735508 +2786.759451 +2786.786357 +2786.795815 +2786.830147 +2787.011532 +2787.335275 +2787.404006 +2787.451924 +2787.545031 +2787.565211 +2787.588821 +2787.626150 +2787.678964 +2787.767176 +2787.875267 +2787.956919 +2787.978098 +2788.027382 +2788.040002 +2788.141101 +2788.184591 +2788.196746 +2788.215527 +2788.472803 +2788.630478 +2788.720155 +2788.759382 +2788.887421 +2788.956185 +2788.956751 +2788.995080 +2789.197877 +2789.258050 +2789.313295 +2789.393248 +2789.433508 +2789.447061 +2789.710963 +2789.795312 +2789.850057 +2789.851822 +2789.865409 +2789.907167 +2789.962944 +2790.149391 +2790.175032 +2790.231176 +2790.232774 +2790.305135 +2790.320653 +2790.338435 +2790.382724 +2790.441066 +2790.451688 +2790.466540 +2790.483257 +2790.509664 +2790.524749 +2790.556550 +2790.572101 +2790.597076 +2790.657249 +2790.713460 +2790.714492 +2790.730110 +2790.761478 +2790.772634 +2790.801005 +2790.979726 +2790.981558 +2791.009930 +2791.045427 +2791.093812 +2791.105401 +2791.140965 +2791.150622 +2791.256250 +2791.338734 +2791.365773 +2791.380625 +2791.419919 +2791.422517 +2791.446726 +2791.462177 +2791.464974 +2791.521218 +2791.534538 +2791.549423 +2791.580858 +2791.632340 +2791.635603 +2795.094441 +2795.126409 +2795.135533 +2802.706022 +2802.710917 +2803.710916 +2804.705221 +2804.710249 +2805.705752 +2805.709815 +2805.710081 +2811.709143 +2811.807078 +2811.810442 +2811.905846 +2812.006479 +2812.306145 +2812.306412 +2812.307044 +2812.407344 +2812.607344 +2812.906378 +2813.605844 +2813.906210 +2814.007076 +2814.106277 +2814.107109 +2814.306909 +2814.607508 +2814.906942 +2815.106143 +2815.207408 +2815.606975 +2815.607441 +2815.707307 +2816.005476 +2816.106308 +2816.206907 +2816.307174 +2816.406907 +2821.273303 +2821.282627 +2821.492183 +2821.709832 +2821.711031 +2821.715527 +2821.721421 +2821.730345 +2821.741933 +2821.750458 +2821.766476 +2821.817758 +2821.967474 +2822.102572 +2822.153588 +2822.187454 +2822.198710 +2822.210764 +2822.399142 +2822.457784 +2822.515093 +2822.516025 +2822.588120 +2822.636338 +2822.662112 +2822.741833 +2822.917124 +2822.930044 +2822.967806 +2823.178562 +2823.179961 +2823.248892 +2823.316158 +2823.328678 +2823.369238 +2823.405901 +2823.420753 +2823.548225 +2823.692814 +2823.704203 +2823.780293 +2823.995344 +2824.065574 +2824.116690 +2824.141298 +2824.179227 +2824.296010 +2824.547991 +2824.759413 +2824.816689 +2824.940099 +2824.986552 +2824.997908 +2825.042463 +2825.111827 +2825.279359 +2825.294377 +2825.335836 +2825.418853 +2825.448756 +2825.477927 +2825.560611 +2825.587084 +2825.613325 +2825.653351 +2825.657081 +2825.666738 +2825.669202 +2825.682356 +2825.716322 +2825.758346 +2825.773431 +2825.804600 +2825.844061 +2825.859745 +2825.863208 +2825.877760 +2825.905999 +2825.918653 +2825.976295 +2825.990614 +2826.031207 +2826.091779 +2826.105432 +2826.166837 +2826.181323 +2826.191446 +2826.208263 +2826.219818 +2826.222016 +2826.233537 +2826.248789 +2826.251086 +2826.281090 +2826.321749 +2826.331972 +2826.385052 +2826.409395 +2826.410727 +2826.422815 +2826.440497 +2826.459744 +2826.482355 +2826.496574 +2826.500470 +2826.526844 +2826.537000 +2826.578825 +2826.606564 +2826.621582 +2826.623347 +2826.625412 +2826.638865 +2826.656880 +2826.684220 +2826.703201 +2831.038794 +2832.232033 +2832.245153 +2833.433264 +2834.880482 +2834.883445 +2835.095100 +2835.880780 +2835.883944 +2835.884210 +2836.884343 +2836.884842 +2836.886041 +2837.416077 +2838.884440 +2839.880910 +2839.884972 +2844.691461 +2844.711374 +2844.883702 +2844.885067 +2845.081604 +2845.381537 +2845.689562 +2849.488626 +2854.443033 +2854.486922 +2854.499443 +2854.938670 +2855.030578 +2855.085756 +2855.116759 +2855.289019 +2855.372103 +2855.704404 +2855.825283 +2855.827048 +2855.979295 +2856.037770 +2856.061546 +2856.464276 +2856.484723 +2856.508632 +2856.566074 +2856.620653 +2856.634606 +2856.672801 +2856.776397 +2856.779028 +2856.818255 +2856.832308 +2856.868305 +2856.891216 +2856.986620 +2857.006567 +2857.081792 +2857.167439 +2857.293346 +2857.294778 +2857.309297 +2857.396776 +2857.450456 +2857.491814 +2857.544861 +2857.559680 +2857.590016 +2857.617655 +2857.661511 +2857.674765 +2857.888984 +2857.942164 +2857.969736 +2858.074564 +2858.141830 +2858.176829 +2858.257415 +2858.344328 +2858.359812 +2858.385120 +2858.388284 +2858.401271 +2858.430575 +2858.471500 +2858.499572 +2858.543262 +2858.587018 +2858.598074 +2858.625013 +2858.627011 +2858.656049 +2858.678527 +2858.738933 +2858.806432 +2858.898640 +2858.905266 +2858.908263 +2858.910261 +2858.951187 +2858.992879 +2859.006998 +2859.020284 +2859.034737 +2859.038699 +2859.040564 +2859.050421 +2859.055982 +2859.064107 +2859.076761 +2859.077727 +2859.082855 +2859.123048 +2859.139565 +2859.159811 +2859.171067 +2859.172932 +2859.211060 +2859.229808 +2859.241396 +2859.300204 +2859.302469 +2859.315855 +2859.336634 +2859.348156 +2859.348589 +2859.357680 +2859.363674 +2859.378959 +2859.392245 +2859.393045 +2859.395908 +2859.420883 +2859.421216 +2859.422748 +2859.424846 +2859.434203 +2859.436834 +2859.462309 +2859.477360 +2859.488882 +2859.509228 +2859.511626 +2859.555982 +2859.572265 +2859.598406 +2859.617387 +2859.670600 +2859.671066 +2859.687550 +2859.731473 +2859.733804 +2859.735935 +2859.750520 +2859.762242 +2859.797207 +2859.809894 +2859.818652 +2859.821516 +2859.835602 +2859.851619 +2859.865205 +2869.885242 +2870.885807 +2870.886973 +2871.882310 +2871.883175 +2873.881475 +2873.882008 +2874.881940 +2874.882340 +2874.886469 +2874.886735 +2874.886902 +2876.899954 +2876.958861 +2877.353699 +2877.547106 +2877.551368 +2879.761622 +2879.776108 +2879.881602 +2879.886697 +2880.383533 +2880.384366 +2880.583566 +2880.584166 +2880.983766 +2880.984132 +2881.083766 +2881.083999 +2881.290725 +2881.483898 +2881.584165 +2881.884098 +2882.284031 +2882.390990 +2882.784163 +2883.384229 +2884.485028 +2886.736108 +2889.959581 +2889.988519 +2890.047926 +2890.114992 +2890.241365 +2890.312927 +2890.355618 +2890.384222 +2890.386220 +2890.431642 +2890.518455 +2890.557616 +2890.643729 +2890.679027 +2890.748225 +2890.760612 +2890.843862 +2890.940266 +2891.081758 +2891.172700 +2891.193479 +2891.233839 +2891.357348 +2891.358614 +2891.371900 +2891.394012 +2891.446226 +2891.459779 +2891.530275 +2891.617521 +2891.641064 +2891.668071 +2891.680658 +2891.732040 +2891.754817 +2891.781590 +2891.810195 +2891.825014 +2891.939632 +2891.967771 +2892.000538 +2892.039166 +2892.050721 +2892.094843 +2892.134637 +2892.136135 +2892.162542 +2892.175296 +2892.200105 +2892.285652 +2892.319252 +2892.320484 +2892.346658 +2892.450421 +2892.463774 +2892.492479 +2892.502435 +2892.518386 +2892.617454 +2892.629908 +2892.655549 +2892.717720 +2892.726977 +2892.773031 +2892.784486 +2892.796042 +2892.809761 +2892.823281 +2892.837267 +2892.911792 +2892.937700 +2892.951419 +2892.966404 +2892.994576 +2893.004333 +2893.050587 +2893.074097 +2893.088249 +2893.100703 +2893.115522 +2893.128742 +2893.140697 +2893.170500 +2893.173464 +2893.209894 +2893.249421 +2893.260044 +2893.275595 +2893.310826 +2893.318452 +2893.329907 +2893.343127 +2893.366837 +2893.385718 +2893.396474 +2893.408861 +2893.410959 +2893.421682 +2893.471832 +2893.482088 +2893.488682 +2893.494343 +2893.520150 +2893.531072 +2893.534835 +2893.589780 +2893.631772 +2893.646790 +2893.663273 +2893.673896 +2893.687982 +2893.700969 +2893.714988 +2893.727343 +2893.769600 +2893.772497 +2893.826543 +2893.840529 +2893.841562 +2893.844659 +2893.872298 +2893.874262 +2893.876194 +2893.900369 +2893.902367 +2893.913989 +2893.917352 +2893.927842 +2893.941761 +2893.956946 +2893.962774 +2893.970999 +2893.990679 +2894.018052 +2894.032504 +2894.041661 +2894.075661 +2894.100136 +2894.142127 +2894.146290 +2894.160509 +2894.162307 +2894.170965 +2894.185218 +2894.187449 +2894.210892 +2894.214721 +2894.243593 +2894.312623 +2894.316286 +2894.344258 +2894.399836 +2894.415620 +2894.417718 +2894.428174 +2894.458611 +2894.490179 +2894.518018 +2894.575194 +2894.596772 +2894.598138 +2894.610958 +2894.636033 +2894.650785 +2894.665071 +2894.764937 +2894.795440 +2894.816952 +2894.843192 +2894.846289 +2894.857678 +2895.587248 +2899.854776 +2903.560699 +2903.664662 +2903.837123 +2903.868791 +2903.932228 +2903.938888 +2903.966993 +2904.110815 +2905.886538 +2905.886771 +2905.891100 +2906.831226 +2906.886770 +2907.889633 +2907.891964 +2908.027462 +2908.032223 +2908.047808 +2908.099057 +2908.115240 +2908.154168 +2908.197125 +2908.281674 +2908.289333 +2908.338217 +2908.351471 +2908.801154 +2908.892296 +2908.892729 +2909.886601 +2909.891063 +2912.003881 +2912.019066 +2912.335016 +2912.382502 +2913.019431 +2913.541342 +2914.890625 +2914.987095 +2915.187095 +2915.187494 +2915.287128 +2915.487894 +2915.787760 +2916.688092 +2917.187859 +2917.494518 +2924.286819 +2925.039965 +2925.125680 +2925.137101 +2925.169203 +2925.245560 +2925.320518 +2925.381557 +2925.476562 +2925.622349 +2925.653584 +2925.665772 +2925.700637 +2925.710494 +2925.760977 +2925.811127 +2925.848889 +2925.873797 +2926.032139 +2926.071400 +2926.157513 +2926.252385 +2926.317320 +2926.358013 +2926.386850 +2926.413357 +2926.452218 +2926.589015 +2926.734436 +2926.785418 +2926.798272 +2926.850386 +2926.925478 +2926.950686 +2927.005231 +2927.039564 +2927.084585 +2927.178325 +2927.229540 +2927.242794 +2927.244825 +2927.246024 +2927.297705 +2927.309693 +2927.364672 +2927.379224 +2927.445191 +2927.467569 +2927.508361 +2927.523946 +2927.573463 +2927.629040 +2927.694974 +2927.711558 +2927.734535 +2927.737831 +2927.761541 +2927.778358 +2927.816453 +2927.817985 +2927.858344 +2927.872097 +2927.924378 +2927.925477 +2927.937265 +2927.942227 +2927.949719 +2927.951251 +2927.964738 +2927.967402 +2927.980888 +2928.013356 +2928.032104 +2928.040895 +2928.045523 +2928.070798 +2928.080888 +2928.094275 +2928.111591 +2928.134135 +2928.159276 +2928.173728 +2928.178024 +2928.187948 +2928.201068 +2928.203599 +2928.210891 +2928.225477 +2928.239329 +2928.247488 +2928.251917 +2928.261674 +2928.304930 +2928.315886 +2928.320448 +2928.329572 +2928.358077 +2928.371664 +2928.427008 +2928.430338 +2928.444224 +2928.455613 +2928.457178 +2928.471430 +2928.494374 +2928.535500 +2928.561707 +2928.566668 +2928.576792 +2928.578623 +2928.614720 +2928.627241 +2928.641161 +2928.686582 +2928.701034 +2928.730038 +2928.746522 +2928.747021 +2928.758776 +2928.760308 +2928.761773 +2928.763205 +2928.813388 +2928.829605 +2928.844690 +2928.855879 +2928.858243 +2928.888679 +2928.911723 +2928.926275 +2928.929106 +2928.952682 +2928.955546 +2928.971530 +2929.029805 +2929.040960 +2929.041626 +2929.057244 +2929.081753 +2929.116551 +2929.164137 +2929.166801 +2929.173594 +2929.209725 +2929.231070 +2929.234500 +2929.235832 +2929.292675 +2929.313821 +2929.363771 +2929.367800 +2929.377557 +2929.390111 +2929.401333 +2929.406561 +2929.487314 +2929.543491 +2929.624676 +2929.653048 +2929.667600 +2929.701233 +2929.780087 +2929.819215 +2929.865102 +2940.887369 +2940.891864 +2941.887667 +2941.891830 +2941.892729 +2943.892727 +2944.094758 +2944.887465 +2949.886894 +2949.890723 +2949.891023 +2950.087859 +2950.287792 +2950.387792 +2950.487526 +2950.687625 +2950.787559 +2950.787958 +2950.794085 +2950.987725 +2951.087658 +2951.088058 +2951.287625 +2951.388024 +2951.887591 +2952.094450 +2952.387757 +2952.487757 +2953.088056 +2953.188122 +2953.194416 +2953.488089 +2953.594382 +2954.587888 +2954.887821 +2954.894148 +2959.889881 +2959.965205 +2960.073730 +2960.204599 +2960.231472 +2960.311991 +2960.332438 +2960.352484 +2960.353883 +2960.521049 +2960.567769 +2960.580423 +2960.677925 +2960.759443 +2960.855581 +2960.902567 +2960.953050 +2960.986916 +2961.017119 +2961.053216 +2961.064638 +2961.110858 +2961.238397 +2961.288048 +2961.436532 +2961.521514 +2961.531171 +2961.583352 +2961.621680 +2961.634634 +2961.702333 +2961.703732 +2961.877025 +2961.967801 +2961.981021 +2962.053348 +2962.086582 +2962.150085 +2962.199668 +2962.247321 +2962.269099 +2962.327540 +2962.393008 +2962.442725 +2962.443857 +2962.455646 +2962.478223 +2962.546321 +2962.546654 +2962.571263 +2962.590977 +2962.592475 +2962.631103 +2962.633634 +2962.644257 +2962.668732 +2962.749118 +2962.761739 +2962.827174 +2962.841193 +2962.851316 +2962.852915 +2962.870430 +2962.878256 +2962.890310 +2962.893707 +2962.930004 +2962.990910 +2963.002698 +2963.028139 +2963.041126 +2963.053980 +2963.069165 +2963.095405 +2963.109391 +2963.159541 +2963.171729 +2963.186214 +2963.197903 +2963.214220 +2963.246887 +2963.275991 +2963.284782 +2963.309258 +2963.334666 +2963.336264 +2963.347220 +2963.394539 +2963.417616 +2963.419447 +2963.445655 +2963.487613 +2963.516284 +2963.597935 +2963.612288 +2963.636464 +2963.638728 +2963.647952 +2963.653546 +2963.665634 +2963.677123 +2963.691142 +2963.703896 +2963.707393 +2963.733999 +2963.761438 +2963.764202 +2963.808658 +2963.832667 +2963.927406 +2963.942690 +2963.973726 +2963.990975 +2964.001332 +2964.014219 +2964.028571 +2964.030702 +2964.054412 +2964.073193 +2964.074458 +2964.194538 +2964.236063 +2964.238727 +2964.278055 +2964.291674 +2964.307126 +2964.336363 +2964.405327 +2964.449250 +2964.453945 +2964.619113 +2964.645420 +2964.673759 +2964.675057 +2964.715384 +2974.886436 +2976.886300 +2976.890496 +2977.887032 +2977.889530 +2977.890196 +2978.891460 +2979.153498 +2984.986525 +2984.991887 +2985.187225 +2985.187491 +2985.694350 +2986.087057 +2986.186624 +2986.586690 +2986.686724 +2986.687323 +2986.793816 +2987.787089 +2987.986722 +2988.187122 +2988.886855 +2989.687120 +2992.973997 +2995.106395 +2995.270498 +2995.294307 +2995.336698 +2995.408426 +2995.548553 +2995.561606 +2995.672762 +2995.766701 +2995.871296 +2995.888979 +2996.005229 +2996.187413 +2996.276324 +2996.327773 +2996.385848 +2996.386214 +2996.448818 +2996.509724 +2996.536730 +2996.571895 +2996.597536 +2996.637763 +2996.737929 +2996.823543 +2996.847985 +2996.920480 +2996.929337 +2996.976024 +2997.037829 +2997.039227 +2997.051382 +2997.090909 +2997.150516 +2997.177322 +2997.214752 +2997.309723 +2997.355244 +2997.456177 +2997.472261 +2997.524741 +2997.555211 +2997.564268 +2997.593106 +2997.604761 +2997.643889 +2997.726673 +2997.832000 +2997.849516 +2997.860206 +2997.889177 +2997.891008 +2997.917748 +2997.930568 +2997.931268 +2997.942956 +2997.971927 +2997.997069 +2998.002430 +2998.042523 +2998.053878 +2998.081750 +2998.083748 +2998.134398 +2998.210322 +2998.219612 +2998.220845 +2998.243921 +2998.245220 +2998.260405 +2998.270062 +2998.332866 +2998.369229 +2998.385014 +2998.522010 +2998.536828 +2998.549782 +2998.554644 +2998.568596 +2998.577954 +2998.579252 +2998.590375 +2998.621577 +2998.625040 +2998.646818 +2998.648250 +2998.661670 +2998.681150 +2998.694604 +2998.705226 +2998.734530 +2998.735496 +2998.737427 +2998.737760 +2998.762502 +2998.774690 +2998.776122 +2998.817980 +2998.846685 +2998.849549 +2998.861237 +2998.863834 +2998.935929 +2998.949515 +2998.976755 +2998.991873 +2999.019878 +2999.022575 +2999.039492 +2999.048350 +2999.052912 +2999.063668 +2999.121110 +2999.154710 +2999.222242 +2999.308589 +2999.335828 +2999.393970 +2999.405392 +2999.408323 +2999.448416 +2999.484946 +2999.493304 +2999.521842 +2999.537793 +2999.562169 +2999.574756 +2999.603427 +2999.615049 +2999.701829 +2999.704826 +2999.729767 +2999.772092 +2999.869261 +2999.877919 +3001.957637 +3002.005090 +3002.014147 +3002.028233 +3002.800027 +3003.674785 +3003.687472 +3005.674916 +3009.113474 +3009.837117 +3009.890663 +3010.308978 +3010.886233 +3010.890762 +3010.891062 +3011.269783 +3011.276110 +3011.354231 +3011.889562 +3012.886065 +3012.890926 +3017.422723 +3017.443869 +3019.885525 +3019.889388 +3019.986124 +3020.089454 +3020.286590 +3020.386090 +3020.484991 +3020.486590 +3020.493416 +3020.986290 +3020.986989 +3021.086922 +3021.287255 +3021.387155 +3021.486889 +3021.587155 +3021.687288 +3021.886655 +3022.086355 +3022.086688 +3022.187054 +3022.287121 +3022.486355 +3022.486688 +3022.987120 +3023.286887 +3023.287320 +3024.286087 +3024.393446 +3024.885953 +3025.894277 +3025.928143 +3026.341962 +3026.557313 +3026.677360 +3027.068401 +3028.244591 +3028.315054 +3028.502899 +3029.937496 +3030.193773 +3030.260306 +3030.418914 +3030.490476 +3030.559740 +3030.632900 +3030.668664 +3030.727372 +3030.760972 +3030.776157 +3030.840792 +3030.932500 +3030.981418 +3031.055877 +3031.143955 +3031.250282 +3031.309190 +3031.383682 +3031.407858 +3031.433765 +3031.521910 +3031.533765 +3031.646053 +3031.774857 +3031.798600 +3031.822776 +3031.905559 +3031.983548 +3032.106758 +3032.206092 +3032.222176 +3032.288210 +3032.289342 +3032.341157 +3032.353711 +3032.367630 +3032.381783 +3032.408756 +3032.513917 +3032.540191 +3032.544154 +3032.596967 +3032.610887 +3032.625006 +3032.693737 +3032.694103 +3032.731599 +3032.747783 +3032.920743 +3032.962302 +3032.990906 +3033.019611 +3033.179018 +3033.192505 +3033.248282 +3033.408721 +3033.450513 +3033.477419 +3033.482847 +3033.483946 +3033.495068 +3033.497732 +3033.498232 +3033.508022 +3033.510853 +3033.511152 +3033.512717 +3033.521708 +3033.526204 +3033.527836 +3033.537459 +3033.552611 +3033.554409 +3033.555108 +3033.567096 +3033.569061 +3033.581981 +3033.583913 +3033.614482 +3033.615914 +3033.629700 +3033.640789 +3033.643786 +3033.644086 +3033.645451 +3033.655408 +3033.659171 +3033.660070 +3033.668561 +3033.671891 +3033.673523 +3033.683646 +3033.684912 +3033.700862 +3033.728635 +3033.732031 +3033.746583 +3033.755674 +3033.757539 +3033.760036 +3033.770493 +3033.774722 +3033.789507 +3033.792238 +3033.800962 +3033.805091 +3033.817512 +3033.818212 +3033.821042 +3033.832164 +3033.836160 +3033.847116 +3033.850180 +3033.859370 +3033.861468 +3033.874888 +3033.908821 +3033.923007 +3033.949247 +3033.965131 +3033.980982 +3033.987675 +3033.998897 +3034.013083 +3034.017246 +3034.026836 +3034.041655 +3034.042387 +3034.047249 +3034.059337 +3034.069393 +3034.074755 +3034.087375 +3034.090406 +3034.101861 +3034.115947 +3034.146783 +3034.165497 +3034.167695 +3034.175620 +3034.178185 +3034.207921 +3034.221841 +3034.233962 +3034.245550 +3034.274155 +3034.286176 +3034.299263 +3034.313316 +3034.369593 +3034.427135 +3034.457705 +3034.497731 +3034.556539 +3034.598364 +3034.637625 +3034.651577 +3034.653209 +3034.789706 +3034.802560 +3034.864697 +3034.880914 +3036.012448 +3038.806019 +3041.435453 +3041.471151 +3041.602653 +3041.693595 +3041.729026 +3042.496158 +3044.890062 +3044.890262 +3044.890628 +3044.891028 +3045.890560 +3045.891926 +3047.891491 +3047.892024 +3048.886628 +3048.887261 +3048.891490 +3049.886760 +3054.891184 +3055.286921 +3055.487620 +3056.087120 +3056.087353 +3056.087753 +3056.187753 +3056.289385 +3056.487120 +3056.487386 +3056.787120 +3056.987086 +3057.187352 +3057.287419 +3057.387385 +3058.787184 +3059.287517 +3059.487550 +3062.604630 +3062.614686 +3063.213287 +3063.232634 +3063.312288 +3063.377423 +3063.460706 +3063.469231 +3063.480586 +3063.490210 +3064.889409 +3064.917748 +3064.984547 +3065.004994 +3065.059039 +3065.070828 +3065.114517 +3065.146685 +3065.166499 +3065.309655 +3065.397068 +3065.409122 +3065.449782 +3065.450947 +3065.539891 +3065.623974 +3065.689542 +3065.770561 +3065.796268 +3066.006458 +3066.102661 +3066.118146 +3066.200930 +3066.214849 +3066.282515 +3066.309355 +3066.321875 +3066.338159 +3066.375655 +3066.386511 +3066.409188 +3066.418212 +3066.419411 +3066.431233 +3066.449048 +3066.481649 +3066.516780 +3066.532398 +3066.585212 +3066.595069 +3066.597433 +3066.599398 +3066.609854 +3066.613683 +3066.653011 +3066.693970 +3066.719111 +3066.734163 +3066.743753 +3066.773290 +3066.786843 +3066.801429 +3066.802861 +3066.815548 +3066.816480 +3066.827935 +3066.842321 +3066.869161 +3066.881315 +3066.906657 +3066.930499 +3066.931532 +3066.958405 +3067.021675 +3067.022108 +3067.034995 +3067.057073 +3067.105924 +3067.130832 +3067.132564 +3067.143486 +3067.145018 +3067.156007 +3067.168694 +3067.170726 +3067.267828 +3067.281981 +3067.311318 +3067.320542 +3067.324738 +3067.337259 +3067.349547 +3067.351778 +3067.378251 +3067.380283 +3067.391438 +3067.421974 +3067.448081 +3067.478684 +3067.492803 +3067.501395 +3067.508055 +3067.514482 +3067.515647 +3067.539690 +3067.541022 +3067.555307 +3067.563632 +3067.566230 +3067.592370 +3067.665430 +3067.676719 +3067.681115 +3067.693969 +3067.750745 +3067.760935 +3067.768561 +3067.779283 +3067.828667 +3067.868261 +3067.885543 +3067.911151 +3067.915980 +3067.942387 +3067.966030 +3067.971757 +3067.985277 +3067.985743 +3068.001061 +3068.003392 +3068.013182 +3068.028767 +3068.030698 +3068.043019 +3068.053142 +3068.057971 +3068.097798 +3068.109153 +3068.127301 +3068.181148 +3068.183412 +3068.192037 +3068.207288 +3068.210984 +3068.241354 +3068.264497 +3068.276552 +3068.281714 +3068.292969 +3068.308786 +3068.309186 +3068.318677 +3068.371357 +3068.373522 +3068.386109 +3068.415846 +3068.431064 +3068.463798 +3068.477085 +3068.479149 +3068.506955 +3068.521074 +3068.534294 +3068.535859 +3068.561567 +3068.567095 +3068.592436 +3068.609585 +3068.610551 +3068.626002 +3068.637191 +3068.638956 +3068.640188 +3068.650544 +3068.669692 +3068.684777 +3068.697830 +3068.714780 +3068.740088 +3068.745949 +3068.755006 +3068.755606 +3068.768260 +3068.783378 +3068.785276 +3068.788040 +3068.801360 +3068.815246 +3068.830697 +3068.840488 +3068.857304 +3068.861067 +3068.871690 +3068.896998 +3068.901027 +3068.915080 +3068.929165 +3068.930497 +3068.946215 +3068.947447 +3068.958236 +3068.961400 +3068.965163 +3068.974653 +3068.989805 +3068.994866 +3069.021440 +3069.022672 +3069.038056 +3069.042718 +3069.053707 +3069.085376 +3069.085909 +3069.087407 +3069.088872 +3069.099162 +3069.118642 +3069.132529 +3069.134360 +3069.137790 +3069.149445 +3069.163198 +3069.166261 +3069.178816 +3069.193934 +3069.196365 +3069.197197 +3069.199362 +3069.214313 +3069.228333 +3069.260734 +3069.273687 +3069.275186 +3069.279648 +3069.291370 +3069.307620 +3069.308353 +3069.326767 +3069.338289 +3069.356771 +3069.366195 +3069.372688 +3069.382945 +3069.384177 +3069.415645 +3069.430164 +3069.431463 +3069.433261 +3069.435092 +3069.444183 +3069.461932 +3069.473787 +3069.493567 +3069.504556 +3069.507753 +3069.540687 +3069.629198 +3069.646714 +3069.649411 +3069.661333 +3069.663697 +3069.678782 +3069.721672 +3069.738056 +3069.798728 +3069.841186 +3069.843084 +3069.870923 +3073.663926 +3080.890126 +3080.891691 +3081.886029 +3082.887094 +3082.891489 +3083.892421 +3084.886958 +3084.888157 +3086.271406 +3089.886620 +3089.986554 +3089.987086 +3090.287819 +3090.387586 +3090.388185 +3090.786919 +3091.187285 +3091.287318 +3091.387285 +3091.787251 +3091.787484 +3091.987584 +3092.186851 +3092.187650 +3092.486784 +3092.590048 +3092.786884 +3093.187283 +3093.280024 +3093.283520 +3093.356414 +3093.359511 +3093.364273 +3093.364872 +3093.387183 +3093.787282 +3093.887749 +3094.452583 +3094.456513 +3094.473229 +3094.566869 +3094.587481 +3096.069598 +3098.063868 +3098.071327 +3098.572726 +3099.962901 +3100.073989 +3100.095768 +3100.166930 +3100.265231 +3100.300663 +3100.325038 +3100.336860 +3100.370060 +3100.387076 +3100.463366 +3100.584312 +3100.621941 +3100.747582 +3100.853909 +3100.879450 +3100.903326 +3100.931331 +3100.942320 +3100.999130 +3101.036260 +3101.121807 +3101.123772 +3101.134428 +3101.211684 +3101.226269 +3101.240155 +3101.252743 +3101.264564 +3101.265796 +3101.275886 +3101.291770 +3101.342053 +3101.393502 +3101.403625 +3101.405357 +3101.417445 +3101.458470 +3101.470292 +3101.481680 +3101.494601 +3101.504824 +3101.527435 +3101.542320 +3101.566795 +3101.568527 +3101.592936 +3101.607987 +3101.618344 +3101.620941 +3101.645283 +3101.659169 +3101.686542 +3101.697398 +3101.723139 +3101.736792 +3101.751310 +3101.766196 +3101.779216 +3101.779849 +3101.790871 +3101.792802 +3101.794600 +3101.806022 +3101.819476 +3101.820341 +3101.843851 +3101.845350 +3101.868526 +3101.892269 +3101.895766 +3101.933794 +3101.935826 +3101.960668 +3101.974454 +3102.016279 +3102.032029 +3102.043118 +3102.059835 +3102.072589 +3102.085409 +3102.087141 +3102.087940 +3102.100894 +3102.114980 +3102.152209 +3102.154873 +3102.164630 +3102.168226 +3102.168959 +3102.179948 +3102.192136 +3102.210218 +3102.220174 +3102.234893 +3102.248679 +3102.249712 +3102.276784 +3102.287074 +3102.289638 +3102.300894 +3102.305289 +3102.314580 +3102.319275 +3102.328966 +3102.343185 +3102.347947 +3102.356704 +3102.370457 +3102.373221 +3102.375253 +3102.385742 +3102.400461 +3102.412648 +3102.428166 +3102.439788 +3102.442685 +3102.466694 +3102.471057 +3102.481613 +3102.481912 +3102.495266 +3102.509418 +3102.566894 +3102.580913 +3102.583910 +3102.593001 +3102.600760 +3102.624936 +3102.626101 +3102.637856 +3102.669058 +3102.671023 +3102.684476 +3102.694300 +3102.697663 +3102.698163 +3102.750877 +3102.763164 +3102.791669 +3102.793034 +3102.801559 +3102.805389 +3102.814380 +3102.820440 +3102.827866 +3102.832561 +3102.842085 +3102.845548 +3102.862165 +3102.871989 +3102.888239 +3102.900560 +3102.919608 +3102.929698 +3102.932461 +3102.959834 +3102.973687 +3102.988705 +3102.989771 +3102.992268 +3103.021206 +3103.032928 +3103.034426 +3103.064096 +3103.074819 +3103.091802 +3103.094466 +3103.094766 +3103.095765 +3103.107087 +3103.120307 +3103.140287 +3103.155738 +3103.181579 +3103.196863 +3103.199494 +3103.202191 +3103.211449 +3103.214246 +3103.245615 +3103.254606 +3103.258968 +3103.270723 +3103.273420 +3103.287639 +3103.314845 +3103.329464 +3103.334859 +3103.343084 +3103.379914 +3103.388805 +3103.393034 +3103.405022 +3103.407852 +3103.420873 +3103.422771 +3103.423104 +3103.434459 +3103.452408 +3103.466027 +3103.525301 +3103.528765 +3103.556270 +3103.571389 +3103.586307 +3103.590669 +3103.602091 +3103.620439 +3103.620972 +3103.636690 +3103.648112 +3103.667825 +3103.679247 +3103.739387 +3103.758868 +3103.760499 +3103.770223 +3103.786473 +3103.788604 +3103.800692 +3103.803423 +3103.819207 +3103.834325 +3103.847579 +3103.863596 +3103.880479 +3103.923569 +3103.935424 +3103.936490 +3103.937489 +3103.953673 +3103.964428 +3103.967992 +3103.969423 +3103.982111 +3104.009017 +3104.013579 +3104.024735 +3104.045114 +3104.052640 +3104.056936 +3104.069490 +3104.086972 +3104.088005 +3104.101691 +3104.159966 +3104.171188 +3104.175451 +3104.203356 +3104.205221 +3104.248744 +3104.258601 +3104.307985 +3104.322903 +3104.368591 +3104.399526 +3104.412580 +3104.458334 +3104.503988 +3104.508317 +3104.521571 +3104.613512 +3104.632160 +3104.661397 +3104.710415 +3104.769056 +3104.773951 +3104.801990 +3104.845147 +3104.865760 +3105.706451 +3108.654833 +3108.843778 +3108.863391 +3114.891191 +3116.886027 +3116.891189 +3119.891619 +3120.660482 +3123.436204 +3123.663610 +3123.732507 +3123.788418 +3123.788784 +3124.889149 +3124.987118 +3125.587550 +3126.087217 +3126.087583 +3126.187117 +3126.287183 +3126.687116 +3126.687616 +3131.011554 +3132.351313 +3132.374090 +3132.400231 +3132.405093 +3132.411386 +3132.416315 +3132.424273 +3134.890904 +3134.912150 +3135.015746 +3135.161267 +3135.254307 +3135.315113 +3135.532662 +3135.554007 +3135.587474 +3135.670690 +3135.743218 +3135.815046 +3135.921173 +3135.967327 +3136.040587 +3136.075918 +3136.078016 +3136.102258 +3136.113481 +3136.126567 +3136.164063 +3136.173354 +3136.207553 +3136.210550 +3136.236790 +3136.249877 +3136.275385 +3136.288672 +3136.315245 +3136.325968 +3136.329031 +3136.352208 +3136.367326 +3136.379814 +3136.391635 +3136.416111 +3136.416710 +3136.429831 +3136.431129 +3136.441785 +3136.443250 +3136.444882 +3136.455238 +3136.489970 +3136.491369 +3136.502258 +3136.525568 +3136.529131 +3136.540020 +3136.542518 +3136.542784 +3136.553240 +3136.554805 +3136.556337 +3136.584309 +3136.635092 +3136.638688 +3136.652175 +3136.666527 +3136.676450 +3136.704422 +3136.716976 +3136.773653 +3136.787872 +3136.812414 +3136.864595 +3136.875751 +3136.888272 +3136.890469 +3136.903789 +3136.918142 +3136.931162 +3136.968758 +3137.025667 +3137.036357 +3137.087805 +3137.088738 +3137.100959 +3137.113912 +3137.115644 +3137.129031 +3137.140586 +3137.155238 +3137.167259 +3137.168791 +3137.180746 +3137.192134 +3137.205321 +3137.206853 +3137.232793 +3137.235624 +3137.272221 +3137.285574 +3137.328031 +3137.331228 +3137.342917 +3137.346779 +3137.372520 +3137.373886 +3137.385307 +3137.387805 +3137.399626 +3137.402257 +3137.413313 +3137.427965 +3137.429497 +3137.441684 +3137.444382 +3137.456303 +3137.458334 +3137.497828 +3137.502057 +3137.512480 +3137.545847 +3137.568990 +3137.573119 +3137.586673 +3137.600659 +3137.613046 +3137.640186 +3137.641717 +3137.643316 +3137.652940 +3137.670522 +3137.695264 +3137.711015 +3137.723802 +3137.737555 +3137.769057 +3137.783509 +3137.783875 +3137.796096 +3137.809083 +3137.811048 +3137.811448 +3137.811980 +3137.826666 +3137.827165 +3137.827298 +3137.838287 +3137.840252 +3137.841184 +3137.850042 +3137.866459 +3137.879180 +3137.882710 +3137.898560 +3137.909350 +3137.912247 +3137.936922 +3137.938487 +3137.941717 +3137.952773 +3137.954238 +3137.969789 +3137.979080 +3138.007018 +3138.014544 +3138.042450 +3138.053772 +3138.055004 +3138.099726 +3138.123502 +3138.143016 +3138.154771 +3138.183142 +3138.184807 +3138.197395 +3138.199426 +3138.201291 +3138.203921 +3138.229629 +3138.232060 +3138.273252 +3138.277281 +3138.291667 +3138.306286 +3138.333425 +3138.380911 +3138.397161 +3138.413412 +3138.422303 +3138.425533 +3138.437920 +3138.439186 +3138.440451 +3138.443215 +3138.453838 +3138.502090 +3138.512313 +3138.513711 +3138.518773 +3138.529296 +3138.545047 +3138.547244 +3138.548576 +3138.559299 +3138.561697 +3138.623435 +3138.637088 +3138.650441 +3138.653471 +3138.709315 +3138.725366 +3138.727264 +3138.728030 +3138.740551 +3138.741217 +3138.773418 +3138.803088 +3138.819172 +3138.830128 +3138.831593 +3138.843215 +3138.864061 +3138.864826 +3138.879046 +3138.880844 +3138.890501 +3138.891167 +3138.895962 +3138.905652 +3138.921470 +3138.921803 +3138.934856 +3138.936621 +3138.940118 +3138.941283 +3138.969755 +3138.997860 +3138.999725 +3139.015176 +3139.017973 +3139.044713 +3139.074583 +3139.076714 +3139.089668 +3139.094397 +3139.106917 +3139.108383 +3139.122668 +3139.155769 +3139.180843 +3139.194397 +3139.213244 +3139.222269 +3139.266558 +3139.277746 +3139.280843 +3139.306451 +3139.322468 +3139.336521 +3139.336887 +3139.351606 +3139.354403 +3139.383074 +3139.394763 +3139.418739 +3139.497260 +3139.510214 +3139.536487 +3139.607849 +3139.706417 +3139.749774 +3139.760463 +3139.864559 +3146.514436 +3149.885428 +3149.890856 +3151.109203 +3151.566379 +3151.597315 +3151.886858 +3151.891653 +3151.951860 +3152.551992 +3152.599178 +3152.784493 +3152.891885 +3158.377960 +3159.659911 +3159.886184 +3159.890147 +3159.986017 +3160.286816 +3160.287582 +3160.387715 +3160.487549 +3161.188014 +3161.387048 +3161.487015 +3161.487847 +3161.688014 +3162.087014 +3162.491176 +3162.687447 +3162.787646 +3163.186980 +3163.388012 +3163.487346 +3163.693706 +3164.687311 +3169.938455 +3170.130296 +3170.242218 +3170.290170 +3170.300926 +3170.774751 +3170.800192 +3170.959666 +3171.060798 +3171.115943 +3171.142250 +3171.295830 +3171.328364 +3171.366892 +3171.438886 +3171.528796 +3171.595130 +3171.697028 +3171.724767 +3171.775383 +3171.832193 +3171.843881 +3171.872586 +3171.923468 +3171.926332 +3172.060964 +3172.143448 +3172.190134 +3172.246911 +3172.440351 +3172.452505 +3172.511746 +3172.649341 +3172.687570 +3172.724300 +3172.764260 +3172.802022 +3172.831559 +3172.832791 +3172.869488 +3173.021702 +3173.051406 +3173.067456 +3173.096327 +3173.140783 +3173.167956 +3173.180543 +3173.181575 +3173.182574 +3173.196460 +3173.201322 +3173.209914 +3173.243047 +3173.244912 +3173.270220 +3173.317772 +3173.328362 +3173.330160 +3173.343979 +3173.348875 +3173.363660 +3173.377046 +3173.380243 +3173.390566 +3173.435055 +3173.439484 +3173.448342 +3173.452571 +3173.465291 +3173.467822 +3173.480543 +3173.482408 +3173.493796 +3173.496194 +3173.497925 +3173.509647 +3173.524299 +3173.527429 +3173.539251 +3173.541115 +3173.568954 +3173.571851 +3173.586170 +3173.588035 +3173.598958 +3173.600290 +3173.631425 +3173.642314 +3173.644645 +3173.672617 +3173.688535 +3173.690399 +3173.705118 +3173.736187 +3173.745811 +3173.750672 +3173.764192 +3173.776080 +3173.778977 +3173.810979 +3173.823666 +3173.836620 +3173.850572 +3173.853436 +3173.867023 +3173.869420 +3173.895061 +3173.899190 +3173.909380 +3173.911411 +3173.914708 +3173.939550 +3173.942014 +3173.944978 +3173.957399 +3173.957832 +3173.971018 +3173.989433 +3174.002620 +3174.045078 +3174.105784 +3174.107215 +3174.118438 +3174.119703 +3174.133023 +3174.152104 +3174.152703 +3174.164025 +3174.165557 +3174.166290 +3174.176779 +3174.177478 +3174.189666 +3174.203819 +3174.207182 +3174.217239 +3174.219004 +3174.229193 +3174.230159 +3174.231757 +3174.233955 +3174.242713 +3174.259630 +3174.261095 +3174.274548 +3174.288367 +3174.301088 +3174.313675 +3174.315740 +3174.342147 +3174.361328 +3174.362293 +3174.375847 +3174.389932 +3174.429626 +3174.503785 +3174.516839 +3174.529326 +3174.558664 +3174.563925 +3174.575247 +3174.577312 +3174.587168 +3174.589166 +3174.617538 +3174.676579 +3174.679076 +3174.742413 +3174.753568 +3174.783805 +3174.798590 +3174.858164 +3174.883405 +3176.151336 +3176.162192 +3176.170483 +3176.177476 +3176.186068 +3179.394490 +3180.612837 +3184.645567 +3184.886026 +3185.885525 +3186.886690 +3187.891184 +3188.891583 +3194.890245 +3194.989812 +3194.990744 +3195.286915 +3195.386914 +3196.093607 +3196.187213 +3196.686747 +3197.587378 +3204.965726 +3205.094164 +3205.160065 +3205.219405 +3205.370621 +3205.382709 +3205.383974 +3205.418773 +3205.458566 +3205.468689 +3205.491633 +3205.506518 +3205.515875 +3205.639485 +3205.713178 +3205.737620 +3205.834923 +3205.857400 +3205.883141 +3205.919405 +3205.932625 +3206.011279 +3206.060930 +3206.084639 +3206.266591 +3206.277979 +3206.303054 +3206.353304 +3206.379311 +3206.405352 +3206.440417 +3206.568022 +3206.579244 +3206.658698 +3206.660197 +3206.672018 +3206.768122 +3206.839251 +3206.890599 +3206.902820 +3206.914842 +3206.937719 +3207.026863 +3207.080176 +3207.091931 +3207.094362 +3207.117772 +3207.205784 +3207.234555 +3207.287635 +3207.297459 +3207.434721 +3207.458731 +3207.460828 +3207.473616 +3207.485903 +3207.524998 +3207.533522 +3207.573016 +3207.587335 +3207.597558 +3207.599556 +3207.609779 +3207.611877 +3207.624898 +3207.648574 +3207.650239 +3207.702287 +3207.704984 +3207.715240 +3207.718903 +3207.759529 +3207.782573 +3207.794628 +3207.821201 +3207.857498 +3207.872650 +3207.911810 +3207.913908 +3208.032623 +3208.060961 +3208.085803 +3208.086569 +3208.099090 +3208.111910 +3208.125163 +3208.137718 +3208.139016 +3208.142746 +3208.157065 +3208.166256 +3208.180741 +3208.182273 +3208.191997 +3208.195393 +3208.207348 +3208.220435 +3208.220701 +3208.233022 +3208.236186 +3208.245876 +3208.261660 +3208.274547 +3208.290365 +3208.305283 +3208.342413 +3208.356066 +3208.369819 +3208.382772 +3208.391563 +3208.394061 +3208.404118 +3208.413142 +3208.415406 +3208.444044 +3208.458163 +3208.460561 +3208.476112 +3208.486102 +3208.502586 +3208.513575 +3208.528093 +3208.555732 +3208.566955 +3208.582173 +3208.596325 +3208.612442 +3208.626728 +3208.628926 +3208.649638 +3208.651736 +3208.666721 +3208.668087 +3208.690964 +3208.704517 +3208.705316 +3208.717471 +3208.749738 +3208.757930 +3208.760494 +3208.761427 +3208.773048 +3208.773781 +3208.787267 +3208.789765 +3208.802552 +3208.806415 +3208.831556 +3208.860194 +3208.878509 +3208.889532 +3208.901120 +3208.932622 +3208.943711 +3208.969685 +3208.981540 +3208.993927 +3209.010211 +3209.037617 +3209.040614 +3209.055432 +3209.082372 +3209.112209 +3209.123298 +3209.143810 +3209.152235 +3209.155132 +3209.180341 +3209.194526 +3209.247806 +3209.277177 +3209.292562 +3209.302152 +3209.390031 +3209.447640 +3209.491862 +3209.504916 +3209.508046 +3209.535751 +3209.631922 +3209.732122 +3209.760760 +3209.793893 +3219.885924 +3219.889654 +3219.890353 +3220.890685 +3221.890484 +3229.885848 +3229.889611 +3229.988911 +3230.386380 +3230.586413 +3230.886413 +3230.986612 +3231.486612 +3231.786545 +3231.786845 +3231.886445 +3232.086878 +3232.686944 +3232.786877 +3233.386876 +3233.786676 +3233.886843 +3234.186809 +3240.032424 +3240.313609 +3240.350672 +3240.365058 +3240.422600 +3240.508481 +3240.552304 +3240.645144 +3240.735254 +3240.923632 +3240.960795 +3240.972883 +3241.091731 +3241.117338 +3241.154867 +3241.179343 +3241.214408 +3241.407947 +3241.433389 +3241.570485 +3241.645310 +3241.655599 +3241.696558 +3241.707947 +3241.745043 +3241.817338 +3242.092795 +3242.134021 +3242.145576 +3242.171849 +3242.198223 +3242.386168 +3242.465622 +3242.480907 +3242.494460 +3242.520067 +3242.546541 +3242.577310 +3242.618169 +3242.655099 +3242.697756 +3242.723597 +3242.763157 +3242.859028 +3242.929824 +3242.955631 +3242.959960 +3242.971216 +3242.974146 +3242.982604 +3242.984003 +3242.985069 +3242.987000 +3242.988698 +3243.000253 +3243.020067 +3243.022897 +3243.038648 +3243.049005 +3243.050903 +3243.059827 +3243.064090 +3243.065022 +3243.076311 +3243.083970 +3243.117969 +3243.131389 +3243.142777 +3243.170949 +3243.181938 +3243.184169 +3243.185468 +3243.194992 +3243.198189 +3243.208945 +3243.228059 +3243.239281 +3243.242611 +3243.266787 +3243.269451 +3243.271182 +3243.281006 +3243.283104 +3243.295225 +3243.298355 +3243.298921 +3243.324895 +3243.368718 +3243.370316 +3243.396157 +3243.410543 +3243.423863 +3243.428491 +3243.440812 +3243.453866 +3243.458861 +3243.483769 +3243.486134 +3243.496057 +3243.525394 +3243.578808 +3243.592561 +3243.611775 +3243.645874 +3243.648405 +3243.663390 +3243.676277 +3243.704548 +3243.706713 +3243.708744 +3243.716770 +3243.722564 +3243.733153 +3243.746140 +3243.767186 +3243.788398 +3243.803250 +3243.805314 +3243.817968 +3243.829690 +3243.830922 +3243.844875 +3243.847872 +3243.872281 +3243.873846 +3243.913639 +3243.915371 +3243.927792 +3243.931421 +3243.943409 +3243.944675 +3243.956163 +3243.971315 +3243.988065 +3243.991128 +3244.001784 +3244.005780 +3244.015970 +3244.029723 +3244.044974 +3244.061225 +3244.072747 +3244.076143 +3244.078907 +3244.089496 +3244.101551 +3244.117102 +3244.140212 +3244.146240 +3244.196956 +3244.220499 +3244.246206 +3244.257162 +3244.258128 +3244.277542 +3244.285367 +3244.343076 +3244.346972 +3244.414371 +3244.548470 +3244.614504 +3244.631920 +3244.674244 +3244.685733 +3244.745207 +3244.791327 +3244.836116 +3248.410771 +3255.890717 +3255.891183 +3256.729977 +3256.886387 +3256.889983 +3256.890816 +3257.715457 +3257.889882 +3257.891547 +3258.769402 +3258.810394 +3258.840597 +3258.846891 +3258.870867 +3258.892312 +3259.886017 +3259.886251 +3264.885813 +3264.888776 +3264.889276 +3264.990341 +3265.186312 +3265.486411 +3265.686778 +3265.887710 +3266.286511 +3266.292904 +3266.386710 +3266.586710 +3266.886477 +3267.386410 +3267.886409 +3269.486774 +3274.888833 +3274.908880 +3274.910844 +3274.911677 +3274.975912 +3275.027927 +3275.072482 +3275.095526 +3275.106748 +3275.118270 +3275.178343 +3275.192196 +3275.201653 +3275.276611 +3275.357764 +3275.369985 +3275.416005 +3275.432822 +3275.558063 +3275.572482 +3275.594560 +3275.618969 +3275.923198 +3275.994693 +3276.020933 +3276.151835 +3276.198622 +3276.273847 +3276.435451 +3276.652068 +3276.676510 +3276.883270 +3276.893127 +3277.119667 +3277.147605 +3277.203982 +3277.215337 +3277.255630 +3277.376909 +3277.393559 +3277.461291 +3277.502783 +3277.603549 +3277.660359 +3277.700718 +3277.717901 +3277.728724 +3277.745174 +3277.800452 +3277.855330 +3277.892260 +3277.897821 +3277.912972 +3277.913938 +3277.939213 +3277.944308 +3277.971814 +3277.984035 +3277.987298 +3277.999919 +3278.001717 +3278.011008 +3278.054997 +3278.069416 +3278.088930 +3278.089562 +3278.100784 +3278.116202 +3278.117668 +3278.131221 +3278.134218 +3278.145406 +3278.148370 +3278.164121 +3278.174078 +3278.178007 +3278.189662 +3278.192060 +3278.193925 +3278.244374 +3278.248537 +3278.249302 +3278.259459 +3278.263189 +3278.272379 +3278.274178 +3278.288030 +3278.301916 +3278.305413 +3278.314271 +3278.333152 +3278.372446 +3278.373478 +3278.387464 +3278.402183 +3278.403315 +3278.405146 +3278.432819 +3278.435150 +3278.451067 +3278.472213 +3278.492226 +3278.507910 +3278.518433 +3278.533751 +3278.535549 +3278.552233 +3278.565319 +3278.567784 +3278.578440 +3278.580604 +3278.599219 +3278.609176 +3278.611107 +3278.627357 +3278.629122 +3278.639146 +3278.641044 +3278.657427 +3278.658859 +3278.668450 +3278.700584 +3278.715436 +3278.715802 +3278.728156 +3278.742908 +3278.760158 +3278.772579 +3278.774910 +3278.787564 +3278.789961 +3278.805646 +3278.816135 +3278.819299 +3278.821097 +3278.834317 +3278.844473 +3278.846371 +3278.848636 +3278.851133 +3278.889595 +3278.895289 +3278.906178 +3278.921896 +3278.932285 +3278.973844 +3278.990860 +3278.992891 +3278.994124 +3279.005013 +3279.007477 +3279.008509 +3279.034417 +3279.047337 +3279.062988 +3279.063454 +3279.073944 +3279.075709 +3279.095722 +3279.122029 +3279.147637 +3279.160524 +3279.174709 +3279.177573 +3279.201649 +3279.206111 +3279.216434 +3279.228556 +3279.230420 +3279.232152 +3279.244540 +3279.246171 +3279.247903 +3279.273044 +3279.299518 +3279.304346 +3279.313171 +3279.315502 +3279.345805 +3279.357227 +3279.384566 +3279.394190 +3279.409807 +3279.425392 +3279.438512 +3279.440310 +3279.467250 +3279.482468 +3279.484433 +3279.497919 +3279.501283 +3279.511872 +3279.528022 +3279.531386 +3279.542308 +3279.557959 +3279.602914 +3279.604379 +3279.617266 +3279.635415 +3279.668415 +3279.730486 +3279.744439 +3279.790560 +3279.792691 +3279.881302 +3279.883234 +3282.151829 +3282.352695 +3283.827319 +3285.573970 +3286.212032 +3286.423920 +3287.712563 +3287.789586 +3287.790052 +3287.816859 +3287.856153 +3287.870838 +3288.650258 +3288.673201 +3288.871969 +3289.889617 +3290.890415 +3290.891215 +3290.987152 +3291.001438 +3291.034371 +3291.883155 +3291.885353 +3291.886152 +3291.891413 +3292.886317 +3292.890613 +3293.015022 +3293.885517 +3293.891278 +3294.890844 +3297.381551 +3299.889274 +3299.889441 +3300.290639 +3300.586776 +3300.587375 +3300.686110 +3300.786443 +3300.887142 +3301.086476 +3301.186942 +3301.286775 +3301.593069 +3301.686409 +3301.686742 +3301.987407 +3302.987273 +3303.486540 +3303.886972 +3304.286539 +3304.886106 +3306.894362 +3306.952171 +3306.964225 +3307.281142 +3309.902284 +3309.909144 +3310.064689 +3310.098854 +3310.118202 +3310.167419 +3310.262391 +3310.415671 +3310.822863 +3310.959593 +3310.969649 +3311.029390 +3311.081671 +3311.181304 +3311.194091 +3311.242310 +3311.401584 +3311.427824 +3311.462722 +3311.476808 +3311.488064 +3311.602949 +3311.655463 +3311.749336 +3311.841343 +3311.866984 +3311.881803 +3311.934484 +3312.015935 +3312.325059 +3312.592691 +3312.649534 +3312.690926 +3312.707177 +3312.718898 +3312.770380 +3312.811406 +3312.812704 +3312.825358 +3312.841509 +3312.857426 +3312.871546 +3312.872445 +3312.883334 +3312.893990 +3312.896221 +3312.931885 +3312.934716 +3312.936148 +3312.950267 +3312.961489 +3312.963986 +3312.988628 +3312.989228 +3313.019164 +3313.058292 +3313.059391 +3313.070946 +3313.076973 +3313.087296 +3313.090360 +3313.100483 +3313.129587 +3313.131152 +3313.133983 +3313.147469 +3313.157160 +3313.159091 +3313.160656 +3313.174276 +3313.190027 +3313.192125 +3313.192458 +3313.203580 +3313.206510 +3313.207043 +3313.217832 +3313.220330 +3313.222061 +3313.236047 +3313.260623 +3313.264419 +3313.277239 +3313.278571 +3313.279670 +3313.294356 +3313.333217 +3313.339011 +3313.349534 +3313.353297 +3313.367849 +3313.380070 +3313.383566 +3313.408974 +3313.411705 +3313.422627 +3313.427023 +3313.452064 +3313.457626 +3313.471345 +3313.483366 +3313.485165 +3313.503580 +3313.514302 +3313.527023 +3313.531585 +3313.546270 +3313.561222 +3313.563053 +3313.575441 +3313.591358 +3313.603480 +3313.620096 +3313.629354 +3313.662387 +3313.663120 +3313.677805 +3313.679537 +3313.681635 +3313.707908 +3313.709873 +3313.722327 +3313.735681 +3313.740642 +3313.803979 +3313.815434 +3313.843339 +3313.862887 +3313.886663 +3313.902214 +3313.917132 +3313.919030 +3313.922260 +3313.922760 +3313.933616 +3313.938011 +3313.948934 +3313.950466 +3313.963586 +3313.965217 +3313.980702 +3313.983732 +3313.997152 +3314.009173 +3314.040709 +3314.073775 +3314.101248 +3314.116633 +3314.120662 +3314.148201 +3314.166216 +3314.183432 +3314.195587 +3314.210872 +3314.239443 +3314.242806 +3314.257758 +3314.284098 +3314.312903 +3314.316166 +3314.329153 +3314.361954 +3314.402480 +3314.416066 +3314.417498 +3314.451397 +3314.523625 +3314.581301 +3314.595786 +3314.613036 +3314.617931 +3314.630951 +3314.644471 +3314.688160 +3314.730685 +3314.774241 +3314.790292 +3314.791857 +3314.817398 +3318.915595 +3319.746164 +3321.033475 +3321.050925 +3324.885786 +3324.886052 +3324.890415 +3325.890181 +3328.223079 +3328.886648 +3328.891077 +3329.118749 +3329.890043 +3329.891575 +3334.886242 +3335.286741 +3335.386675 +3335.588073 +3335.687007 +3338.386971 +3341.708480 +3342.196691 +3342.203984 +3343.644175 +3343.681405 +3343.746473 +3343.764788 +3343.791728 +3344.193326 +3344.214271 +3344.888863 +3344.895157 +3344.896222 +3344.901950 +3344.903182 +3344.909209 +3344.912306 +3344.919299 +3344.925460 +3344.942676 +3344.980971 +3344.990794 +3344.999485 +3345.000751 +3345.011407 +3345.012306 +3345.032053 +3345.032952 +3345.040311 +3345.051433 +3345.085000 +3345.094291 +3345.095623 +3345.106678 +3345.135949 +3345.137414 +3345.155263 +3345.156262 +3345.244107 +3345.300950 +3345.326891 +3345.338146 +3345.338879 +3345.348336 +3345.372445 +3345.374910 +3345.378573 +3345.387630 +3345.397753 +3345.400318 +3345.411839 +3345.421230 +3345.452932 +3345.466951 +3345.477873 +3345.488363 +3345.491360 +3345.502482 +3345.504813 +3345.516068 +3345.535948 +3345.548503 +3345.548869 +3345.558859 +3345.568516 +3345.582502 +3345.601816 +3345.617533 +3345.673877 +3345.676241 +3345.686598 +3345.718233 +3345.750634 +3345.761956 +3345.824659 +3345.837913 +3345.838645 +3345.888762 +3345.921729 +3345.923294 +3345.933351 +3345.972645 +3345.996221 +3346.029921 +3346.055662 +3346.082102 +3346.121029 +3346.134616 +3346.180903 +3346.194589 +3346.227723 +3346.229887 +3346.280303 +3346.303513 +3346.315202 +3346.326990 +3346.338545 +3346.363986 +3346.364586 +3346.375408 +3346.414069 +3346.425125 +3346.438145 +3346.450833 +3346.461988 +3346.477273 +3346.500883 +3346.538545 +3346.539777 +3346.551432 +3346.564486 +3346.588595 +3346.590926 +3346.616134 +3346.641375 +3346.643506 +3346.655028 +3346.667649 +3346.679704 +3346.719397 +3346.745871 +3346.759757 +3346.813769 +3346.841142 +3346.854961 +3346.867249 +3346.868481 +3346.893057 +3346.904012 +3346.905544 +3346.929853 +3346.931485 +3346.956460 +3346.981868 +3346.995554 +3347.021328 +3347.034149 +3347.048401 +3347.049200 +3347.077239 +3347.144205 +3347.185997 +3347.186663 +3347.224958 +3347.253196 +3347.267548 +3347.281501 +3347.307908 +3347.322194 +3347.335913 +3347.351231 +3347.351331 +3347.363486 +3347.377871 +3347.391025 +3347.394754 +3347.418730 +3347.448034 +3347.448900 +3347.501581 +3347.550465 +3347.564318 +3347.586729 +3347.597918 +3347.600748 +3347.613302 +3347.623126 +3347.626689 +3347.638744 +3347.654261 +3347.654661 +3347.670112 +3347.988094 +3348.001947 +3348.123125 +3348.135513 +3348.147135 +3348.172243 +3348.285796 +3348.411037 +3348.471377 +3348.528853 +3348.553528 +3348.594553 +3348.610671 +3348.623391 +3348.679901 +3348.751297 +3348.755059 +3348.768712 +3348.811336 +3348.888592 +3348.980534 +3349.009172 +3349.158089 +3349.207573 +3349.219728 +3349.377237 +3349.453261 +3349.806007 +3349.852261 +3349.856057 +3351.566945 +3351.575503 +3356.711029 +3358.277228 +3359.891578 +3359.892078 +3361.317518 +3361.322946 +3361.886748 +3361.891443 +3363.578621 +3363.886280 +3364.410089 +3364.886345 +3364.887178 +3368.511250 +3369.454972 +3369.459001 +3369.891235 +3370.087805 +3370.193599 +3370.287772 +3370.387738 +3370.487572 +3371.287604 +3371.288603 +3371.487504 +3371.586372 +3371.687471 +3374.388101 +3374.389399 +3374.689366 +3379.188562 +3379.890626 +3379.918798 +3379.933616 +3379.934083 +3379.952964 +3380.013270 +3380.031985 +3380.049267 +3380.049667 +3380.065851 +3380.067482 +3380.076573 +3380.096553 +3380.111172 +3380.112204 +3380.120729 +3380.139544 +3380.140809 +3380.150100 +3380.152963 +3380.163586 +3380.195021 +3380.195987 +3380.214835 +3380.215834 +3380.224692 +3380.224891 +3380.246636 +3380.247935 +3380.248867 +3380.267116 +3380.269114 +3380.269513 +3380.289194 +3380.298718 +3380.321794 +3380.323093 +3380.323360 +3380.334781 +3380.356227 +3380.371411 +3380.372410 +3380.385331 +3380.393123 +3380.395088 +3380.404612 +3380.421195 +3380.430519 +3380.432084 +3380.451331 +3380.453130 +3380.453829 +3380.473676 +3380.497685 +3380.515900 +3380.537678 +3380.547901 +3380.569114 +3380.579303 +3380.717931 +3380.769580 +3380.840309 +3380.924092 +3381.002446 +3381.033149 +3381.067814 +3381.181534 +3381.207175 +3381.303079 +3381.377937 +3381.479536 +3381.519862 +3381.521294 +3381.545470 +3381.636212 +3381.663651 +3381.716598 +3381.742073 +3381.767614 +3381.780135 +3381.888260 +3381.977404 +3382.001480 +3382.014633 +3382.086095 +3382.096718 +3382.159888 +3382.202279 +3382.228053 +3382.270011 +3382.338509 +3382.339908 +3382.367080 +3382.368146 +3382.436245 +3382.438376 +3382.451429 +3382.466548 +3382.507540 +3382.590923 +3382.607973 +3382.633947 +3382.647600 +3382.690923 +3382.706740 +3382.720660 +3382.732948 +3382.758189 +3382.783697 +3382.814699 +3382.871742 +3382.892621 +3382.922458 +3382.963117 +3382.978402 +3382.991822 +3383.019128 +3383.072674 +3383.073507 +3383.099780 +3383.174805 +3383.201379 +3383.204276 +3383.217196 +3383.218828 +3383.249164 +3383.260519 +3383.288758 +3383.349297 +3383.365414 +3383.378868 +3383.391022 +3383.407239 +3383.420559 +3383.424389 +3383.478568 +3383.496983 +3383.508838 +3383.541938 +3383.553260 +3383.571142 +3383.614698 +3383.639640 +3383.683796 +3383.687326 +3383.702311 +3383.714332 +3383.729816 +3383.759353 +3383.776936 +3383.778101 +3383.847265 +3383.850196 +3383.867645 +3383.936976 +3383.940372 +3384.107272 +3384.120392 +3384.136276 +3384.166679 +3384.181564 +3384.209470 +3384.222756 +3384.236176 +3384.251494 +3384.263615 +3384.264881 +3384.292120 +3384.367411 +3384.441238 +3384.466779 +3384.468244 +3384.471907 +3384.526652 +3384.662316 +3384.691021 +3384.703508 +3384.734744 +3384.838873 +3384.884028 +3392.559678 +3392.564273 +3392.576194 +3393.320017 +3394.890511 +3394.890744 +3394.891910 +3395.237364 +3395.249285 +3395.891742 +3396.891708 +3397.097968 +3397.112820 +3397.892306 +3397.892872 +3398.887543 +3398.891340 +3398.892272 +3399.892937 +3401.564697 +3401.582512 +3405.387770 +3405.787770 +3405.788902 +3405.987736 +3406.688002 +3407.188001 +3407.193429 +3407.688067 +3407.788001 +3407.988034 +3408.187767 +3408.287934 +3408.389632 +3408.488033 +3409.188332 +3415.030817 +3415.070145 +3415.176005 +3415.487860 +3415.639108 +3415.696951 +3415.770910 +3415.809005 +3415.821526 +3415.929551 +3415.931582 +3415.952561 +3416.025089 +3416.047366 +3416.059521 +3416.198881 +3416.200114 +3416.289857 +3416.303810 +3416.378202 +3416.470709 +3416.518795 +3416.596750 +3416.637875 +3416.676570 +3416.744169 +3416.745901 +3417.037642 +3417.048564 +3417.097915 +3417.112234 +3417.153559 +3417.206606 +3417.317062 +3417.340805 +3417.355990 +3417.380465 +3417.394318 +3417.504308 +3417.506972 +3417.548164 +3417.601577 +3417.646199 +3417.659919 +3417.714231 +3417.730981 +3417.742003 +3417.787158 +3417.799313 +3417.827551 +3417.841071 +3417.871674 +3417.884827 +3417.899912 +3417.914930 +3417.925620 +3417.986758 +3417.999912 +3418.026585 +3418.073905 +3418.116628 +3418.130048 +3418.131980 +3418.143302 +3418.144933 +3418.185693 +3418.202309 +3418.203575 +3418.231846 +3418.244567 +3418.247398 +3418.262349 +3418.291220 +3418.291653 +3418.331880 +3418.373838 +3418.378766 +3418.419459 +3418.465846 +3418.480431 +3418.525120 +3418.581030 +3418.583561 +3418.609036 +3418.668576 +3418.684027 +3418.687457 +3418.688889 +3418.701243 +3418.727417 +3418.790654 +3418.804007 +3418.805173 +3418.816361 +3418.820557 +3418.831579 +3418.834044 +3418.848130 +3418.850227 +3418.861050 +3418.863814 +3418.891286 +3418.892252 +3418.895882 +3418.917294 +3418.919558 +3418.923121 +3418.935509 +3418.950627 +3418.953025 +3418.986358 +3419.010334 +3419.024986 +3419.045499 +3419.149095 +3419.177100 +3419.208036 +3419.221522 +3419.237240 +3419.252092 +3419.302441 +3419.330513 +3419.357220 +3419.361083 +3419.417992 +3419.493817 +3419.512331 +3419.556121 +3419.587356 +3419.620623 +3419.630480 +3419.661748 +3419.710133 +3419.752924 +3419.758785 +3419.772238 +3419.787190 +3419.834875 +3429.885248 +3431.886745 +3432.891039 +3433.890672 +3433.891072 +3433.891571 +3434.892169 +3435.186775 +3439.889600 +3440.086437 +3440.786769 +3441.087268 +3441.387667 +3441.886768 +3441.887267 +3442.587966 +3443.087499 +3443.186733 +3443.187233 +3443.586766 +3443.686666 +3444.087365 +3449.886160 +3449.888924 +3449.889990 +3449.915331 +3449.936510 +3449.953027 +3449.955757 +3449.968112 +3449.978202 +3450.007306 +3450.014898 +3450.019360 +3450.019627 +3450.040506 +3450.075038 +3450.085761 +3450.086094 +3450.086360 +3450.086826 +3450.097649 +3450.097948 +3450.119027 +3450.119760 +3450.137908 +3450.150596 +3450.159287 +3450.161385 +3450.171508 +3450.181665 +3450.183696 +3450.192421 +3450.194985 +3450.206839 +3450.218428 +3450.227852 +3450.237875 +3450.238341 +3450.267812 +3450.280865 +3450.282331 +3450.290589 +3450.316263 +3450.366513 +3450.495584 +3450.508038 +3450.552593 +3450.638474 +3450.683429 +3450.748231 +3450.792120 +3450.803376 +3450.804408 +3450.888657 +3450.889756 +3450.901810 +3450.953092 +3450.966412 +3450.975437 +3451.054990 +3451.140238 +3451.176369 +3451.343935 +3451.360485 +3451.397215 +3451.447831 +3451.483428 +3451.555989 +3451.566412 +3451.623088 +3451.635176 +3451.706172 +3451.707804 +3451.731380 +3451.782995 +3451.811233 +3451.821490 +3451.835942 +3451.906471 +3451.945899 +3451.979632 +3452.002176 +3452.025519 +3452.060983 +3452.099878 +3452.125219 +3452.189488 +3452.228516 +3452.292185 +3452.360783 +3452.457253 +3452.494816 +3452.506471 +3452.515895 +3452.519058 +3452.528615 +3452.531213 +3452.542834 +3452.553391 +3452.565445 +3452.568442 +3452.578732 +3452.592085 +3452.601076 +3452.602841 +3452.615195 +3452.626218 +3452.629015 +3452.640836 +3452.655555 +3452.656021 +3452.668009 +3452.682728 +3452.694116 +3452.708302 +3452.709235 +3452.732545 +3452.736108 +3452.759151 +3452.761282 +3452.763114 +3452.774269 +3452.783827 +3452.798812 +3452.800177 +3452.826251 +3452.838339 +3452.864379 +3452.881529 +3452.894183 +3452.906903 +3452.916893 +3452.919324 +3452.943167 +3452.957153 +3452.961249 +3452.970573 +3452.973137 +3453.011732 +3453.023853 +3453.025884 +3453.026617 +3453.028582 +3453.051958 +3453.077366 +3453.088155 +3453.089354 +3453.091186 +3453.100809 +3453.114262 +3453.115195 +3453.139804 +3453.150626 +3453.153523 +3453.163879 +3453.186690 +3453.187955 +3453.188688 +3453.190686 +3453.206004 +3453.245331 +3453.266177 +3453.278065 +3453.343999 +3453.346164 +3453.358784 +3453.361548 +3453.371671 +3453.384259 +3453.385358 +3453.397446 +3453.403140 +3453.423619 +3453.430013 +3453.438438 +3453.463613 +3453.466743 +3453.487822 +3453.488887 +3453.526716 +3453.563879 +3453.567542 +3453.568408 +3453.578065 +3453.591318 +3453.634109 +3453.650359 +3453.661415 +3453.674269 +3453.687855 +3453.691018 +3453.693183 +3453.700009 +3453.726150 +3453.731178 +3453.753289 +3453.769340 +3453.779130 +3453.796679 +3453.806137 +3453.810865 +3453.819989 +3453.823852 +3453.838737 +3453.852490 +3453.876866 +3453.877831 +3453.891118 +3453.894581 +3453.904605 +3453.921954 +3453.936306 +3453.961947 +3453.964012 +3453.998011 +3454.023785 +3454.033642 +3454.061414 +3454.077998 +3454.105370 +3454.108001 +3454.119023 +3454.150092 +3454.164345 +3454.221554 +3454.257451 +3454.269573 +3454.283359 +3454.293282 +3454.316193 +3454.369473 +3454.439935 +3454.547728 +3454.563145 +3454.577398 +3454.690318 +3454.702273 +3454.762513 +3454.812696 +3454.868473 +; +25.095546 +27.423449 +27.767638 +28.643694 +60.206566 +95.234670 +98.502299 +119.664649 +121.001211 +130.053316 +131.811623 +131.866801 +132.595605 +132.660673 +146.999054 +156.703306 +165.059375 +165.124377 +165.224943 +165.319182 +165.399268 +165.711389 +165.891942 +165.971396 +166.049584 +166.121146 +166.184882 +166.303330 +166.452980 +166.665568 +166.760473 +166.900199 +167.106260 +167.178154 +167.263902 +167.337095 +167.443123 +167.563535 +167.660505 +167.733166 +167.807691 +167.896835 +168.020711 +168.325473 +168.409888 +168.692372 +168.823141 +168.915615 +169.188076 +169.302328 +169.731598 +169.865731 +169.929600 +200.024742 +200.071695 +200.198301 +200.251448 +200.311421 +200.375990 +200.417648 +200.545520 +200.696469 +200.787445 +200.867665 +200.941990 +201.036429 +201.106192 +201.169462 +201.243555 +201.314218 +201.391573 +201.459505 +201.533831 +201.617880 +201.715582 +201.797767 +201.906225 +201.991406 +202.085878 +202.173191 +202.367430 +202.459704 +202.579618 +202.657073 +202.777686 +202.898798 +203.001728 +203.103660 +203.533396 +203.646117 +204.520275 +204.653275 +204.944983 +235.035529 +235.082282 +237.034661 +238.574220 +238.750111 +238.954273 +238.989205 +239.833959 +239.841718 +241.875316 +241.886405 +243.133656 +244.749572 +255.290254 +258.255519 +258.332242 +258.389851 +260.403169 +261.523115 +262.301203 +270.141022 +272.367959 +272.432661 +272.590803 +273.729763 +274.896528 +274.910947 +282.044573 +282.345172 +282.790193 +282.837046 +314.591360 +314.615236 +314.620997 +314.652299 +314.771447 +314.805080 +316.012171 +318.990224 +333.688477 +340.075551 +340.183443 +340.444415 +340.492300 +340.515710 +341.474284 +342.121736 +342.182675 +342.833224 +375.023002 +375.073218 +375.162029 +375.264726 +375.369721 +375.435888 +375.490567 +375.537054 +375.622501 +375.756601 +375.903787 +376.006850 +376.222867 +376.555201 +376.659763 +376.751138 +376.878411 +376.978045 +377.054068 +377.336086 +377.373848 +377.591031 +377.808080 +378.055699 +378.411443 +378.518070 +379.215105 +410.053403 +410.115574 +410.264425 +410.415207 +410.752836 +410.918137 +411.225563 +411.305183 +411.380075 +411.596059 +412.284103 +412.613340 +412.715804 +412.806114 +412.919767 +413.017569 +413.139647 +413.249004 +413.338847 +413.551534 +413.629723 +413.838580 +414.003382 +414.157528 +414.300252 +414.408010 +414.526092 +414.655862 +414.812406 +414.926691 +445.468086 +446.487765 +449.938078 +471.700128 +473.009883 +478.471783 +480.032121 +480.068018 +484.196719 +484.203012 +484.236945 +484.685230 +484.729752 +484.747600 +490.299676 +490.312896 +490.510399 +490.525650 +490.531344 +510.636386 +511.315906 +515.285932 +515.574276 +517.698783 +517.778137 +517.854460 +517.883032 +518.420028 +518.430883 +518.476305 +518.519894 +518.685628 +518.690124 +518.709704 +518.750563 +518.840174 +550.646869 +566.698201 +566.740659 +566.879919 +566.918148 +571.784843 +571.794333 +571.935991 +572.252974 +572.327300 +573.327432 +573.371921 +573.415977 +575.999357 +579.010743 +579.106580 +579.598888 +579.640113 +579.675211 +579.709044 +580.578141 +580.637148 +580.690062 +585.068746 +585.861752 +587.473205 +587.531281 +608.840383 +608.845978 +612.297823 +624.063645 +633.028837 +634.029403 +635.029601 +643.029327 +643.034788 +643.329726 +643.530259 +643.831124 +643.931257 +644.032023 +644.431990 +644.731057 +644.831323 +644.929825 +645.330224 +646.023097 +646.433353 +647.132287 +647.431454 +647.729589 +647.931586 +649.111206 +650.483499 +650.592856 +650.629486 +650.661687 +651.677870 +651.717064 +651.777137 +653.040239 +653.048531 +653.205507 +653.371341 +653.459020 +654.043835 +654.338240 +654.749795 +654.796048 +654.925486 +655.014763 +655.151659 +655.520656 +656.064279 +656.157486 +656.291285 +656.371305 +656.707435 +656.821421 +656.900409 +657.263812 +657.480928 +657.641533 +657.997777 +661.990946 +668.030800 +669.030999 +670.030232 +670.030665 +671.031597 +672.031462 +678.030457 +678.135452 +678.431323 +678.531456 +678.632155 +678.832921 +678.833087 +679.033287 +679.429191 +680.332520 +680.333119 +680.733618 +680.932752 +681.333251 +681.534317 +681.837380 +682.133151 +682.533217 +683.033549 +688.044267 +688.054990 +688.320058 +688.546864 +688.734243 +688.858019 +688.949761 +689.085358 +689.176700 +689.298711 +689.386890 +689.818025 +689.955720 +690.039836 +690.205071 +690.261814 +690.476566 +690.831344 +691.148560 +691.312662 +691.440134 +691.541067 +691.622252 +691.768239 +691.886821 +692.437103 +692.908298 +692.954951 +703.032730 +704.032463 +707.030329 +707.031727 +709.621235 +713.028691 +713.038348 +713.231987 +713.332687 +713.934617 +715.135482 +716.034415 +716.134282 +716.528954 +717.033382 +717.334048 +717.834181 +718.034713 +723.029813 +723.030546 +723.045730 +723.054388 +723.063246 +723.104605 +723.336606 +723.712396 +723.866509 +723.919223 +724.010798 +724.110198 +724.173268 +724.240867 +724.598576 +724.677597 +724.824084 +725.126448 +725.365042 +725.583224 +726.271701 +726.353120 +726.529543 +726.587752 +726.657915 +727.544394 +727.752619 +738.030231 +740.030229 +742.031093 +743.035754 +748.131853 +748.532585 +748.533451 +748.632884 +749.232151 +749.233417 +750.133016 +750.733149 +752.732647 +758.044530 +758.059382 +758.105702 +758.227214 +758.347194 +758.498409 +758.599042 +758.764210 +758.859647 +759.085055 +759.485920 +759.611861 +759.818821 +759.987019 +760.266606 +760.438067 +760.544661 +760.726312 +760.808197 +761.192612 +761.248323 +761.325779 +761.518552 +762.011059 +762.175228 +762.257380 +762.323680 +762.373497 +762.468102 +762.532471 +762.597539 +762.738465 +762.799071 +762.862341 +762.946690 +762.977958 +776.030526 +777.029393 +786.132680 +786.331315 +787.631813 +793.053253 +793.096809 +793.307532 +793.653186 +794.011660 +794.107997 +794.284221 +794.645825 +794.717021 +795.207630 +795.257413 +795.286551 +795.748322 +796.268801 +796.471598 +796.519783 +796.680888 +797.647820 +809.030093 +810.029992 +818.130950 +818.431682 +818.832481 +818.932381 +819.032681 +819.132814 +819.232447 +819.333513 +819.632913 +819.732613 +820.033546 +820.732113 +821.632878 +821.933144 +822.733143 +822.832111 +822.931478 +828.067071 +828.120351 +828.207597 +828.265239 +828.437134 +828.448356 +828.449721 +828.578992 +828.788748 +828.876427 +828.950753 +829.067203 +829.205431 +829.268934 +829.330006 +829.540363 +829.605964 +829.690412 +829.750153 +829.783786 +829.825877 +829.930605 +830.092343 +830.348221 +830.392010 +830.434035 +830.536965 +830.592409 +830.691044 +830.857244 +831.028839 +831.090211 +831.140561 +831.659375 +831.723411 +831.757477 +831.825708 +832.350749 +832.766300 +832.904195 +832.934532 +845.030524 +846.031222 +853.632946 +853.732813 +853.933279 +854.333445 +855.033677 +855.934309 +856.733476 +857.633908 +857.933308 +863.045690 +863.149819 +863.349919 +863.679689 +863.827075 +863.911557 +863.954914 +864.057711 +864.662672 +864.949252 +865.299001 +866.329770 +866.375824 +866.576123 +866.755144 +867.374158 +867.422676 +867.517414 +867.771893 +867.799432 +867.820011 +867.939392 +879.031156 +888.332911 +888.532678 +888.532878 +888.632878 +888.733077 +888.933643 +889.233210 +889.233843 +889.533210 +889.632877 +889.733209 +889.733776 +890.133942 +890.434208 +890.932709 +891.433807 +891.534007 +891.634173 +892.131342 +892.534106 +892.633906 +898.028806 +898.036931 +898.053681 +898.075326 +898.125242 +898.137530 +898.450017 +898.694406 +898.846354 +899.052547 +899.212521 +899.316916 +899.378688 +899.426173 +900.451780 +900.467764 +900.916948 +901.014117 +901.066498 +901.093371 +901.175323 +901.191207 +901.340091 +901.464167 +902.005658 +902.172491 +902.382581 +902.517646 +902.820409 +923.429246 +923.431078 +923.532643 +923.732876 +923.833309 +923.933142 +924.733774 +925.629710 +926.432773 +926.933772 +927.132872 +927.333139 +927.333538 +927.931673 +933.029004 +933.064535 +933.073959 +933.580219 +933.712686 +933.921743 +934.033265 +934.119845 +934.179752 +934.415582 +934.570294 +935.293537 +935.411485 +935.447949 +935.508622 +935.638225 +935.829700 +935.962767 +936.564498 +936.649147 +936.891537 +936.891970 +936.963598 +937.068294 +937.106122 +937.574920 +937.922705 +937.955739 +948.030487 +952.904608 +953.036176 +958.136105 +958.432508 +958.732441 +958.833340 +958.833473 +959.133506 +959.134039 +959.431342 +959.733406 +960.931540 +961.614823 +961.629042 +962.134069 +962.234702 +962.530439 +962.532604 +962.833236 +968.174556 +968.263401 +969.171558 +969.277019 +969.463200 +969.634195 +969.822407 +969.903459 +970.028634 +970.165730 +970.288973 +970.562499 +970.704957 +970.754474 +970.920774 +971.146714 +971.345982 +971.613814 +972.140287 +972.251642 +972.626500 +972.793133 +972.859467 +986.032048 +988.035742 +993.833438 +994.234304 +994.334170 +995.935701 +996.732037 +996.732337 +996.934268 +997.134301 +997.134700 +997.234334 +997.833035 +997.932668 +1003.430698 +1003.447881 +1003.768893 +1004.075952 +1004.168726 +1004.594933 +1005.255372 +1005.506953 +1005.773353 +1005.825468 +1005.835458 +1005.861265 +1006.067326 +1006.103389 +1006.213646 +1006.804754 +1006.981211 +1007.004820 +1007.016076 +1007.103455 +1007.196562 +1023.031877 +1028.232205 +1028.333071 +1028.633470 +1028.733470 +1028.934302 +1029.035135 +1029.934135 +1031.332102 +1031.933667 +1032.434865 +1032.534499 +1032.634465 +1038.054640 +1038.135559 +1038.447080 +1038.552341 +1038.704356 +1039.106820 +1039.188604 +1041.116841 +1041.387537 +1041.894496 +1042.036221 +1042.521002 +1042.629061 +1042.788401 +1042.845111 +1053.031048 +1054.031047 +1063.030439 +1063.229539 +1063.331937 +1063.432237 +1063.633369 +1063.731337 +1063.831770 +1063.932502 +1064.131836 +1064.231536 +1064.532069 +1065.131735 +1065.331968 +1066.231734 +1066.431734 +1066.630269 +1066.630735 +1066.934631 +1067.232399 +1067.331933 +1067.531766 +1067.731433 +1068.032032 +1073.037422 +1073.045014 +1073.148111 +1073.432127 +1073.695763 +1073.775883 +1073.943182 +1074.123734 +1074.200291 +1074.519638 +1074.553904 +1074.645745 +1074.695296 +1074.958632 +1075.008216 +1075.155035 +1075.237852 +1075.342081 +1075.418272 +1075.629394 +1075.737352 +1075.914076 +1076.151937 +1076.257831 +1076.338218 +1076.444911 +1076.898923 +1076.958230 +1077.177211 +1077.235020 +1077.312209 +1077.384370 +1077.497257 +1077.658596 +1077.753734 +1077.855199 +1077.958496 +1081.559957 +1085.090856 +1088.029481 +1091.028846 +1092.028845 +1098.730603 +1098.731202 +1098.831069 +1099.031402 +1099.330502 +1099.531801 +1099.831801 +1100.731733 +1101.131833 +1101.232099 +1101.732032 +1102.530899 +1102.631431 +1108.027963 +1108.063827 +1108.134223 +1108.162695 +1108.418239 +1108.547709 +1108.918505 +1109.382274 +1109.743579 +1110.031357 +1110.172716 +1110.250738 +1110.329592 +1110.716771 +1110.793961 +1110.961260 +1111.044144 +1111.100321 +1111.207047 +1111.343444 +1111.637983 +1111.860959 +1112.079441 +1112.185268 +1112.479274 +1112.547838 +1112.600186 +1112.644309 +1112.720266 +1112.844608 +1112.937182 +1133.230868 +1133.531900 +1133.632599 +1134.032299 +1134.732199 +1135.032531 +1135.132032 +1136.233229 +1137.032130 +1137.232729 +1137.833228 +1143.689466 +1143.992729 +1144.578775 +1144.659761 +1144.707014 +1144.741879 +1144.780973 +1144.802984 +1144.884103 +1145.349304 +1145.651302 +1145.743609 +1145.860492 +1145.982903 +1145.998055 +1146.422630 +1146.489529 +1146.537814 +1146.554065 +1146.893858 +1147.007578 +1147.096822 +1147.134184 +1147.201916 +1147.302083 +1147.359292 +1147.487497 +1147.658193 +1147.671613 +1147.858659 +1161.030874 +1162.027776 +1168.228968 +1169.533196 +1169.633329 +1170.232629 +1170.833361 +1171.033394 +1171.133128 +1171.233294 +1171.333394 +1172.632927 +1173.032760 +1178.095359 +1178.131456 +1178.515172 +1178.545541 +1178.638915 +1178.728425 +1179.037016 +1179.235118 +1179.529756 +1179.773346 +1180.310108 +1180.477741 +1180.653898 +1180.937647 +1181.920396 +1182.295588 +1182.815800 +1194.031107 +1196.029373 +1198.028372 +1203.331297 +1203.331897 +1203.332629 +1203.636892 +1203.729232 +1204.031530 +1204.032362 +1204.632661 +1204.733028 +1205.532727 +1205.631994 +1205.632794 +1206.032094 +1206.430262 +1206.733026 +1206.831960 +1208.032225 +1213.046772 +1213.152367 +1213.645506 +1213.705213 +1214.024693 +1214.121363 +1214.323261 +1214.483834 +1214.775309 +1214.851233 +1215.028389 +1215.124326 +1215.361622 +1215.440143 +1215.670945 +1215.890159 +1216.247435 +1216.359989 +1216.581034 +1216.691091 +1217.095253 +1217.453761 +1217.877104 +1238.029564 +1238.332428 +1238.533826 +1238.632960 +1238.933293 +1239.331828 +1239.432826 +1239.833326 +1239.932260 +1240.133192 +1241.832258 +1242.129860 +1242.834488 +1248.061489 +1248.061656 +1248.105911 +1248.359591 +1248.434349 +1248.592957 +1248.656494 +1249.332983 +1249.651864 +1249.770512 +1249.814068 +1250.093988 +1250.445436 +1250.663651 +1250.776838 +1250.858689 +1250.949998 +1251.292055 +1251.355026 +1251.488126 +1251.874339 +1252.014865 +1252.148565 +1252.211235 +1252.307539 +1252.567778 +1252.616863 +1252.869610 +1264.031004 +1266.031201 +1273.233825 +1274.634290 +1274.635122 +1275.834555 +1278.034753 +1283.032084 +1283.047501 +1283.048567 +1283.135913 +1283.259389 +1284.111670 +1284.393554 +1285.204642 +1285.449797 +1286.062683 +1286.240539 +1286.368311 +1286.593019 +1301.031599 +1308.132325 +1308.432658 +1308.433224 +1308.532724 +1308.533290 +1308.633257 +1308.733290 +1308.934056 +1309.234022 +1309.333522 +1309.334355 +1309.432956 +1309.634055 +1309.733256 +1310.034421 +1310.134154 +1310.134754 +1310.534221 +1310.635453 +1310.934520 +1311.633487 +1311.634486 +1312.034286 +1312.434452 +1312.633453 +1312.832953 +1318.031283 +1318.233880 +1318.381166 +1318.729084 +1318.781698 +1318.873939 +1318.951861 +1319.212167 +1319.304175 +1319.634112 +1319.853858 +1319.941770 +1320.034544 +1320.260518 +1320.595283 +1320.750361 +1320.873138 +1320.974603 +1321.015795 +1321.087290 +1321.228183 +1321.487889 +1321.488122 +1321.643267 +1321.778165 +1321.912264 +1321.989687 +1322.007636 +1322.116094 +1322.411831 +1322.540602 +1322.542201 +1322.721355 +1333.031501 +1338.031596 +1343.030592 +1343.232290 +1343.232756 +1343.332523 +1343.332889 +1343.632789 +1343.632955 +1343.633188 +1343.732722 +1343.733055 +1344.233621 +1344.234120 +1344.630157 +1344.731556 +1344.934453 +1345.333153 +1345.533986 +1345.933919 +1346.033186 +1347.934050 +1347.934383 +1348.034516 +1353.101178 +1353.270874 +1353.361284 +1353.484860 +1353.667544 +1353.791453 +1354.367710 +1354.625086 +1354.732645 +1354.927050 +1354.986191 +1355.133110 +1355.228781 +1355.454056 +1355.756453 +1355.800675 +1355.896879 +1356.162180 +1356.315294 +1356.495480 +1356.633109 +1356.897411 +1357.325283 +1357.394147 +1357.631210 +1357.744563 +1357.776598 +1357.888219 +1366.971693 +1366.972159 +1367.966031 +1367.973291 +1368.965830 +1368.966263 +1368.967029 +1368.971525 +1369.967128 +1369.971157 +1370.966161 +1370.966328 +1370.971390 +1370.971656 +1375.965957 +1375.966256 +1375.966423 +1376.066423 +1376.166822 +1376.167122 +1376.267089 +1376.367521 +1376.567488 +1376.568154 +1376.667454 +1376.767954 +1376.867454 +1376.868453 +1377.267820 +1377.268619 +1377.367654 +1377.567953 +1377.967886 +1377.968219 +1378.068419 +1378.368418 +1378.967818 +1379.068251 +1379.068551 +1379.567884 +1379.568650 +1379.868583 +1379.968317 +1380.068017 +1380.068517 +1380.268750 +1385.996283 +1386.024122 +1386.074172 +1386.122656 +1386.266712 +1386.360485 +1386.504707 +1386.504974 +1386.581664 +1386.619759 +1386.655889 +1386.893685 +1386.932679 +1386.984560 +1387.154390 +1387.243002 +1387.362415 +1387.430514 +1387.470441 +1387.522888 +1387.646531 +1387.660151 +1387.697513 +1387.749128 +1387.827383 +1387.922854 +1387.936840 +1387.983427 +1388.025252 +1388.049761 +1388.079931 +1388.132278 +1388.153290 +1388.190919 +1388.206504 +1388.247996 +1388.284959 +1388.300643 +1388.375701 +1388.407036 +1388.430113 +1388.445964 +1388.517160 +1388.540470 +1388.620989 +1388.674336 +1388.709067 +1388.743433 +1388.811432 +1388.833543 +1388.879863 +1388.944698 +1389.001741 +1389.002674 +1389.043666 +1389.119923 +1389.136273 +1389.163246 +1389.223286 +1389.282493 +1389.311131 +1389.324685 +1389.367608 +1389.384991 +1389.410632 +1389.426549 +1389.510365 +1389.625717 +1389.647994 +1389.675633 +1389.748360 +1389.777831 +1389.821687 +1389.912030 +1389.971837 +1389.987554 +1390.017058 +1390.032909 +1390.048760 +1390.095147 +1390.125982 +1390.142599 +1390.171337 +1390.187354 +1390.201840 +1390.230611 +1390.244131 +1390.258616 +1390.272269 +1390.286855 +1390.308500 +1390.319622 +1390.335406 +1390.345363 +1390.360747 +1390.374467 +1390.389385 +1390.404570 +1390.461380 +1390.479995 +1390.510131 +1390.525982 +1390.567740 +1390.615393 +1390.656918 +1390.672602 +1390.719255 +1390.781293 +1390.796811 +1390.825749 +1390.887254 +1390.935972 +1405.967359 +1405.973819 +1411.167820 +1411.368419 +1411.568518 +1411.769983 +1411.968651 +1411.969051 +1412.069017 +1412.269084 +1412.269450 +1412.368684 +1412.569150 +1412.668684 +1412.669383 +1412.769117 +1413.269183 +1414.068549 +1414.168749 +1414.469215 +1414.668982 +1414.969015 +1414.969314 +1415.069314 +1415.268348 +1415.268914 +1415.468648 +1415.468947 +1415.569347 +1415.968947 +1420.973238 +1420.999844 +1421.051959 +1421.109035 +1421.198978 +1421.342568 +1421.369841 +1421.415428 +1421.531479 +1421.585858 +1421.623520 +1421.673437 +1421.701742 +1421.740603 +1421.861382 +1421.937606 +1421.963813 +1422.025551 +1422.063513 +1422.185890 +1422.209034 +1422.248161 +1422.295947 +1422.335740 +1422.364378 +1422.384825 +1422.549526 +1422.604105 +1422.802307 +1422.826183 +1422.912829 +1423.034341 +1423.166942 +1423.193582 +1423.257784 +1423.305137 +1423.389719 +1423.415992 +1423.466409 +1423.489785 +1423.554287 +1423.589219 +1423.618656 +1423.644897 +1423.685023 +1423.722885 +1423.849259 +1423.877364 +1423.902006 +1423.929079 +1423.967507 +1424.055552 +1424.085789 +1424.125449 +1424.152788 +1424.181793 +1424.210697 +1424.226914 +1424.267973 +1424.295112 +1424.433407 +1424.459048 +1424.487120 +1424.514426 +1424.543264 +1424.573767 +1424.598142 +1424.626980 +1424.668972 +1424.697376 +1424.733307 +1424.778196 +1424.817456 +1424.834539 +1424.857383 +1424.904070 +1424.932241 +1424.987086 +1425.026780 +1425.055118 +1425.082091 +1425.141632 +1425.169837 +1425.187453 +1425.213260 +1425.293713 +1425.306766 +1425.361478 +1425.377129 +1425.434505 +1425.448192 +1425.448891 +1425.449823 +1425.493446 +1425.565441 +1425.639267 +1425.664109 +1425.723416 +1425.936103 +1425.960479 +1436.968859 +1436.969092 +1438.968258 +1439.969422 +1445.975444 +1446.271447 +1446.571447 +1446.771580 +1447.269981 +1447.471513 +1447.571380 +1447.571613 +1447.571946 +1447.671946 +1447.871512 +1448.171612 +1448.471312 +1448.571712 +1448.670080 +1448.671945 +1448.771978 +1448.971811 +1449.071711 +1449.072044 +1449.171445 +1449.271811 +1449.471278 +1449.571111 +1449.771644 +1449.772410 +1449.971977 +1450.071843 +1450.171777 +1450.371543 +1450.571876 +1450.671376 +1450.771476 +1450.871909 +1450.872242 +1450.971976 +1455.838404 +1455.975134 +1455.991784 +1456.088088 +1456.162247 +1456.243898 +1456.272636 +1456.335973 +1456.466709 +1456.502606 +1456.554421 +1456.584191 +1456.623418 +1456.650758 +1456.700175 +1456.739802 +1456.786156 +1456.870738 +1456.957351 +1456.983858 +1457.071437 +1457.099875 +1457.158549 +1457.236671 +1457.272535 +1457.384190 +1457.420088 +1457.456784 +1457.528279 +1457.680960 +1457.702671 +1457.757650 +1457.971203 +1457.998242 +1458.135938 +1458.188119 +1458.226181 +1458.288252 +1458.328378 +1458.387453 +1458.453287 +1458.483923 +1458.577529 +1458.616390 +1458.736703 +1458.760579 +1458.797975 +1458.815025 +1458.855651 +1458.959613 +1459.038734 +1459.124948 +1459.181358 +1459.216556 +1459.334105 +1459.361677 +1459.507465 +1459.536303 +1459.550289 +1459.575330 +1459.668637 +1459.734904 +1459.760012 +1459.788683 +1459.813891 +1459.856449 +1459.897441 +1459.936702 +1459.963375 +1460.003269 +1460.030874 +1460.055083 +1460.073199 +1460.084953 +1460.143894 +1460.209296 +1460.295676 +1460.390015 +1460.413391 +1460.465273 +1460.489648 +1460.532106 +1460.632206 +1460.672066 +1460.703967 +1460.771566 +1460.802102 +1460.851886 +1460.881623 +1460.925579 +1460.943461 +1460.958046 +1470.970790 +1472.971521 +1473.971686 +1473.972452 +1475.971051 +1480.969948 +1480.970247 +1480.976141 +1480.977274 +1481.071246 +1481.071579 +1481.772444 +1481.973210 +1482.073676 +1482.372111 +1482.473110 +1482.672543 +1482.773675 +1482.873775 +1483.173675 +1483.373275 +1483.473142 +1483.773142 +1483.873441 +1483.873674 +1483.973141 +1483.973408 +1484.171876 +1484.273141 +1484.573307 +1484.574040 +1484.673673 +1484.773507 +1484.873806 +1484.973373 +1485.073440 +1485.272807 +1485.273340 +1485.673040 +1485.973739 +1490.977030 +1491.000307 +1491.066041 +1491.153187 +1491.176764 +1491.251722 +1491.280627 +1491.331809 +1491.370337 +1491.407000 +1491.548758 +1491.608965 +1491.634606 +1491.709131 +1491.757449 +1491.807865 +1491.836737 +1491.875797 +1491.912860 +1491.956683 +1492.050756 +1492.080459 +1492.143030 +1492.199407 +1492.227612 +1492.250689 +1492.286753 +1492.325581 +1492.379227 +1492.403736 +1492.462943 +1492.560778 +1492.574665 +1492.695877 +1492.737735 +1492.807099 +1492.847725 +1492.943595 +1492.993046 +1493.117055 +1493.152586 +1493.177428 +1493.178527 +1493.202303 +1493.240731 +1493.267604 +1493.290581 +1493.342496 +1493.386252 +1493.425013 +1493.463109 +1493.491480 +1493.517487 +1493.582622 +1493.631040 +1493.706498 +1493.780358 +1493.839698 +1493.893345 +1493.969302 +1494.069601 +1494.125446 +1494.186851 +1494.201070 +1494.225645 +1494.250454 +1494.294243 +1494.351619 +1494.377460 +1494.408962 +1494.436001 +1494.638032 +1494.662841 +1494.700969 +1494.727077 +1494.771832 +1494.801802 +1494.885884 +1494.955548 +1495.021249 +1495.045225 +1495.086950 +1495.183653 +1495.226011 +1495.259577 +1495.314222 +1495.332437 +1495.385851 +1495.413157 +1495.439963 +1495.532670 +1495.562107 +1495.586583 +1495.617252 +1495.642560 +1495.665337 +1495.694075 +1495.753782 +1495.810059 +1495.812190 +1495.894941 +1495.909027 +1495.967801 +1505.978414 +1510.972049 +1510.978243 +1510.978842 +1516.272110 +1516.373409 +1516.574507 +1516.672842 +1517.473174 +1517.473940 +1517.573108 +1517.573574 +1517.673108 +1517.673374 +1517.872575 +1517.873041 +1518.073840 +1518.674039 +1518.773673 +1518.774106 +1519.073539 +1519.573206 +1519.673305 +1519.773605 +1520.173505 +1520.273272 +1520.473072 +1520.473671 +1520.673571 +1520.773637 +1520.775136 +1520.873671 +1526.001038 +1526.036869 +1526.068737 +1526.104534 +1526.167238 +1526.377128 +1526.399406 +1526.508197 +1526.559279 +1526.595743 +1526.639799 +1526.689782 +1526.725513 +1526.790115 +1526.839565 +1526.907597 +1526.958380 +1526.985153 +1527.038266 +1527.071666 +1527.127943 +1527.165972 +1527.204467 +1527.265772 +1527.372465 +1527.397673 +1527.453018 +1527.487750 +1527.530507 +1527.577260 +1527.631173 +1527.676095 +1527.744027 +1527.782122 +1527.840697 +1527.875129 +1527.890147 +1527.913424 +1527.967137 +1528.071565 +1528.178392 +1528.218285 +1528.253450 +1528.298005 +1528.424679 +1528.464639 +1528.496240 +1528.552950 +1528.660443 +1528.697106 +1528.743193 +1528.797139 +1528.828774 +1528.855414 +1528.916353 +1528.955081 +1529.034735 +1529.061808 +1529.121814 +1529.161641 +1529.190046 +1529.216852 +1529.270232 +1529.326742 +1529.388980 +1529.456179 +1529.602100 +1529.629140 +1529.760442 +1529.788747 +1529.863838 +1529.969998 +1530.010125 +1530.012256 +1530.067801 +1530.105563 +1530.129705 +1530.157011 +1530.243724 +1530.344191 +1530.373328 +1530.429605 +1530.460940 +1530.566268 +1530.618849 +1530.661972 +1530.738796 +1530.768499 +1530.815985 +1530.849485 +1530.878056 +1530.905296 +1530.924643 +1544.971682 +1544.977942 +1551.172808 +1551.173407 +1551.173574 +1551.273673 +1551.573640 +1551.673873 +1551.773873 +1552.073906 +1552.173872 +1552.373972 +1552.474671 +1552.574505 +1552.773605 +1552.873972 +1552.974871 +1553.074138 +1553.273771 +1553.274238 +1553.373738 +1553.374537 +1553.673738 +1553.873937 +1554.174170 +1554.174736 +1554.473770 +1554.473903 +1554.574070 +1554.773737 +1554.873703 +1554.974036 +1555.074269 +1555.173436 +1555.174036 +1555.273736 +1555.374136 +1560.985785 +1561.011792 +1561.096174 +1561.219618 +1561.234136 +1561.246258 +1561.257480 +1561.345258 +1561.535368 +1561.562041 +1561.589048 +1561.644359 +1561.684719 +1561.778791 +1561.827742 +1561.861975 +1561.895907 +1561.931638 +1561.967203 +1562.017452 +1562.062674 +1562.101235 +1562.150619 +1562.308861 +1562.334235 +1562.346956 +1562.472297 +1562.528074 +1562.569300 +1562.605530 +1562.655247 +1562.710492 +1562.782586 +1562.832503 +1562.879323 +1562.938430 +1562.954614 +1562.982286 +1563.006029 +1563.079622 +1563.105796 +1563.193642 +1563.320248 +1563.348586 +1563.361007 +1563.397704 +1563.419416 +1563.448220 +1563.474960 +1563.498070 +1563.648686 +1563.665436 +1563.819215 +1563.845822 +1563.872395 +1563.983784 +1564.034866 +1564.137597 +1564.252315 +1564.285349 +1564.311989 +1564.353980 +1564.384050 +1564.427373 +1564.457343 +1564.487080 +1564.524676 +1564.555878 +1564.601566 +1564.640527 +1564.714153 +1564.775758 +1564.800167 +1564.826207 +1564.931668 +1564.957043 +1564.990776 +1565.055278 +1565.094106 +1565.146120 +1565.159241 +1565.202697 +1565.219314 +1565.307725 +1565.382750 +1565.429404 +1565.487812 +1565.502564 +1565.540959 +1565.581618 +1565.628737 +1565.718781 +1565.729670 +1565.780386 +1565.828071 +1565.879120 +1565.906426 +1565.909656 +1565.922876 +1565.949117 +1576.972183 +1578.972480 +1579.972046 +1580.972445 +1580.972811 +1586.073073 +1586.373405 +1586.474404 +1586.774803 +1586.873738 +1586.874370 +1586.974903 +1587.174304 +1587.175669 +1587.474570 +1587.674270 +1587.973837 +1588.074169 +1588.274103 +1588.275701 +1588.473936 +1588.574369 +1588.774235 +1588.974002 +1589.174268 +1589.374035 +1589.473935 +1589.573868 +1589.574401 +1589.574967 +1589.674401 +1589.774001 +1589.774334 +1589.874367 +1589.974767 +1590.374267 +1590.474034 +1590.574433 +1590.674233 +1595.971231 +1595.977258 +1596.021048 +1596.150052 +1596.408693 +1596.529606 +1596.586815 +1596.616019 +1596.679722 +1596.712056 +1596.782619 +1596.796239 +1596.846289 +1596.897770 +1597.073328 +1597.260640 +1597.285882 +1597.346554 +1597.546421 +1597.593041 +1597.651449 +1597.679721 +1597.717516 +1597.826308 +1597.872894 +1597.909225 +1598.016317 +1598.100733 +1598.140227 +1598.240593 +1598.380253 +1598.468864 +1598.506393 +1598.534765 +1598.568365 +1598.640692 +1598.668398 +1598.697436 +1598.747252 +1598.772161 +1598.798268 +1598.851415 +1598.926340 +1598.962603 +1599.003296 +1599.031235 +1599.057475 +1599.146320 +1599.227205 +1599.268764 +1599.322210 +1599.352780 +1599.377455 +1599.408124 +1599.513952 +1599.558773 +1599.585347 +1599.705893 +1599.737827 +1599.768397 +1599.796302 +1599.977321 +1599.992173 +1600.102529 +1600.116482 +1600.162802 +1600.204161 +1600.245652 +1600.264067 +1600.319911 +1600.360471 +1600.404460 +1600.440657 +1600.457607 +1600.505592 +1600.535795 +1600.536628 +1600.552845 +1600.566365 +1600.600564 +1600.672991 +1600.724673 +1600.751879 +1600.783647 +1600.809255 +1600.891439 +1600.908422 +1600.923341 +1612.972613 +1613.971912 +1614.972877 +1615.973276 +1620.978799 +1621.073171 +1621.373237 +1621.673803 +1621.773503 +1621.974036 +1622.073669 +1622.173736 +1622.174102 +1622.574068 +1622.574435 +1622.674168 +1622.873835 +1622.874068 +1622.973502 +1623.073535 +1623.074068 +1623.074567 +1623.173635 +1623.274168 +1623.374101 +1623.473834 +1623.474034 +1623.574167 +1623.674234 +1623.774067 +1623.774900 +1623.874167 +1624.073334 +1624.073967 +1624.173700 +1624.174167 +1624.273933 +1624.274200 +1624.373800 +1624.374133 +1624.473867 +1624.574166 +1624.673700 +1624.674100 +1624.873267 +1624.873866 +1624.974133 +1625.174099 +1625.273833 +1625.274166 +1625.274532 +1625.373966 +1625.374132 +1625.574065 +1625.673699 +1625.674032 +1625.774098 +1625.874032 +1630.977956 +1630.994306 +1631.013654 +1631.092741 +1631.127307 +1631.222278 +1631.314719 +1631.352248 +1631.435065 +1631.494972 +1631.558109 +1631.623776 +1631.741958 +1631.777456 +1631.829037 +1631.910722 +1631.946087 +1632.189577 +1632.244322 +1632.279420 +1632.331801 +1632.365068 +1632.403662 +1632.576289 +1632.590775 +1632.717848 +1632.762570 +1632.916282 +1632.930635 +1632.991041 +1633.029669 +1633.095869 +1633.144221 +1633.340957 +1633.370062 +1633.409122 +1633.423408 +1633.597534 +1633.634430 +1633.708623 +1633.723708 +1633.790507 +1633.901063 +1633.928369 +1633.970327 +1633.984813 +1634.069728 +1634.097400 +1634.113884 +1634.169028 +1634.185545 +1634.227770 +1634.291273 +1634.363734 +1634.389042 +1634.419678 +1634.454376 +1634.616680 +1634.648349 +1634.690440 +1634.792504 +1634.830566 +1634.859870 +1634.960869 +1635.036960 +1635.115181 +1635.159137 +1635.173889 +1635.225704 +1635.242587 +1635.269660 +1635.292537 +1635.334928 +1635.352144 +1635.420909 +1635.525337 +1635.541222 +1635.583046 +1635.615547 +1635.631531 +1635.705923 +1635.735327 +1635.750545 +1635.814615 +1635.849013 +1645.971448 +1646.971713 +1647.971645 +1647.971945 +1648.971711 +1649.971111 +1650.971443 +1656.071471 +1656.072137 +1656.272736 +1656.572669 +1656.773135 +1656.873168 +1657.073268 +1657.173268 +1657.272968 +1657.273268 +1657.273434 +1657.372602 +1657.473334 +1657.672968 +1658.073400 +1658.173067 +1658.272967 +1658.373067 +1658.473366 +1658.473733 +1658.672967 +1658.773000 +1659.073333 +1659.272766 +1659.372966 +1659.473032 +1659.573032 +1659.672999 +1659.673332 +1659.772599 +1659.773032 +1659.872999 +1659.973099 +1660.072965 +1660.173398 +1660.272632 +1660.273032 +1660.373098 +1660.373298 +1660.772698 +1660.773031 +1660.972531 +1660.972964 +1665.978121 +1666.002330 +1666.076056 +1666.162237 +1666.192906 +1666.256176 +1666.324141 +1666.461037 +1666.496768 +1666.529436 +1666.635729 +1666.699099 +1666.785413 +1666.786545 +1666.820544 +1666.856209 +1666.952146 +1667.004061 +1667.033198 +1667.068363 +1667.094670 +1667.124174 +1667.157207 +1667.246684 +1667.318179 +1667.361769 +1667.385545 +1667.451213 +1667.483181 +1667.609887 +1667.739025 +1667.799398 +1667.839791 +1667.908089 +1667.930000 +1667.946217 +1668.000463 +1668.024639 +1668.052444 +1668.119111 +1668.147216 +1668.187343 +1668.214316 +1668.265531 +1668.318844 +1668.357672 +1668.372025 +1668.395568 +1668.428801 +1668.517879 +1668.553343 +1668.585944 +1668.610519 +1668.635161 +1668.661435 +1668.701561 +1668.744618 +1668.772624 +1668.786809 +1668.860203 +1669.001195 +1669.056639 +1669.074088 +1669.204025 +1669.230865 +1669.259836 +1669.314348 +1669.340389 +1669.354608 +1669.375986 +1669.400828 +1669.443785 +1669.488540 +1669.502859 +1669.548480 +1669.632163 +1669.661434 +1669.677917 +1669.747781 +1669.789839 +1669.817478 +1669.847947 +1669.893468 +1669.923538 +1669.938989 +1669.956505 +1670.002359 +1670.029066 +1670.030698 +1670.076185 +1670.091903 +1670.131164 +1670.148280 +1670.176718 +1670.194700 +1670.239855 +1670.284810 +1670.300594 +1670.345915 +1670.377351 +1670.405256 +1670.434393 +1670.450544 +1670.492269 +1670.509851 +1670.526701 +1670.553874 +1670.585043 +1670.601726 +1670.627200 +1670.645749 +1670.646481 +1670.689605 +1670.722638 +1670.736591 +1670.749112 +1670.750610 +1670.751842 +1670.779714 +1670.798995 +1670.813114 +1670.830297 +1670.858669 +1670.872588 +1680.977973 +1682.971943 +1682.972176 +1685.971807 +1690.971702 +1690.977363 +1691.072002 +1691.173300 +1691.273001 +1691.673833 +1691.773966 +1692.173866 +1692.273666 +1692.274132 +1692.473765 +1692.773232 +1692.873665 +1692.973632 +1693.073332 +1693.373731 +1693.374131 +1693.573298 +1693.573531 +1693.573764 +1693.773464 +1693.773797 +1693.873364 +1693.875362 +1693.973797 +1693.974130 +1694.273431 +1694.273930 +1694.473897 +1694.771798 +1694.973563 +1695.073863 +1695.173197 +1695.373896 +1695.473862 +1695.574262 +1695.673929 +1695.674262 +1695.773862 +1700.984979 +1701.073657 +1701.363800 +1701.364133 +1701.443620 +1701.579617 +1701.633630 +1701.673456 +1701.734096 +1701.769893 +1701.821042 +1702.139923 +1702.189107 +1702.242553 +1702.346350 +1702.386443 +1702.426869 +1702.439123 +1702.482780 +1702.516180 +1702.527435 +1702.559236 +1702.602327 +1702.603925 +1702.649646 +1702.754508 +1702.853975 +1702.913515 +1702.937125 +1702.978550 +1703.019010 +1703.057538 +1703.123671 +1703.161966 +1703.188273 +1703.216412 +1703.284444 +1703.321041 +1703.366428 +1703.396199 +1703.432229 +1703.483045 +1703.522772 +1703.579881 +1703.618243 +1703.721973 +1703.752076 +1703.841753 +1703.854939 +1703.877350 +1703.898429 +1703.990903 +1704.007387 +1704.063664 +1704.162998 +1704.176051 +1704.220207 +1704.246214 +1704.275885 +1704.277783 +1704.349911 +1704.379781 +1704.487173 +1704.516111 +1704.592734 +1704.731995 +1704.779081 +1704.796630 +1704.808518 +1704.823503 +1704.836823 +1704.866494 +1704.894998 +1704.937889 +1705.021572 +1705.046513 +1705.064129 +1705.076617 +1705.104822 +1705.131661 +1705.187805 +1705.262730 +1705.340619 +1705.367159 +1705.385407 +1705.399793 +1705.413113 +1705.470522 +1705.499327 +1705.539087 +1705.572886 +1705.600958 +1705.616643 +1705.668124 +1705.697262 +1705.713246 +1705.756736 +1705.815677 +1705.831394 +1705.891667 +1705.921737 +1705.951308 +1706.310182 +1706.334591 +1715.972177 +1715.972476 +1716.972342 +1716.972975 +1717.972008 +1718.972407 +1720.972205 +1725.971734 +1726.072366 +1726.172966 +1726.373232 +1726.473365 +1726.473865 +1726.672133 +1726.673032 +1726.773798 +1726.873664 +1726.973698 +1727.174463 +1727.273930 +1727.373964 +1727.573863 +1727.674063 +1727.874229 +1727.875029 +1728.374062 +1728.474329 +1728.574295 +1728.773629 +1728.874328 +1728.875028 +1729.074262 +1729.173928 +1729.374228 +1729.474294 +1729.474694 +1729.774394 +1729.874261 +1729.874893 +1730.174194 +1730.373261 +1730.574293 +1730.675825 +1730.873627 +1730.974226 +1730.974659 +1735.978184 +1735.984311 +1735.999363 +1736.006689 +1736.064697 +1736.076286 +1736.094601 +1736.159702 +1736.246182 +1736.294234 +1736.394434 +1736.445683 +1736.554807 +1736.606189 +1736.639089 +1736.719742 +1736.768959 +1736.835859 +1736.897897 +1736.921773 +1736.959036 +1737.002592 +1737.080880 +1737.128200 +1737.138356 +1737.172921 +1737.213547 +1737.250477 +1737.288805 +1737.354573 +1737.399062 +1737.445049 +1737.499794 +1737.672421 +1737.728299 +1737.836990 +1737.911848 +1737.987040 +1738.091702 +1738.165395 +1738.192068 +1738.262398 +1738.301791 +1738.328598 +1738.382710 +1738.434958 +1738.457169 +1738.515811 +1738.648278 +1738.690469 +1738.718807 +1738.743216 +1738.812280 +1738.846280 +1738.886706 +1738.959067 +1739.018674 +1739.064528 +1739.101258 +1739.128797 +1739.157069 +1739.183342 +1739.210249 +1739.280645 +1739.306253 +1739.432859 +1739.433292 +1739.461264 +1739.487271 +1739.548777 +1739.620205 +1739.651141 +1739.679446 +1739.801657 +1739.882443 +1739.918506 +1739.919572 +1739.932426 +1739.957701 +1740.056335 +1740.094797 +1740.149509 +1740.189036 +1740.230061 +1740.258499 +1740.274883 +1740.289102 +1740.325732 +1740.461197 +1740.477780 +1740.516375 +1740.555236 +1740.600724 +1740.642815 +1740.678979 +1740.726131 +1740.779977 +1740.858865 +1740.935022 +1740.964326 +1750.970843 +1751.972940 +1752.972739 +1753.972605 +1754.972171 +1761.072931 +1761.173863 +1761.373830 +1761.473830 +1761.674096 +1761.774229 +1761.874528 +1761.974229 +1761.974562 +1762.074528 +1762.273795 +1762.474495 +1762.773262 +1762.774028 +1762.774428 +1762.874261 +1762.875360 +1762.974594 +1763.074494 +1763.274594 +1763.374660 +1763.574693 +1763.674627 +1763.774194 +1764.075126 +1764.174859 +1764.274959 +1764.574692 +1764.674359 +1764.674626 +1764.774725 +1764.874825 +1765.174392 +1765.274991 +1765.574691 +1770.973121 +1770.978682 +1771.013447 +1771.120074 +1771.430829 +1771.466460 +1771.467493 +1771.519074 +1771.605055 +1771.646980 +1771.717509 +1771.760499 +1771.812381 +1771.839121 +1771.863396 +1771.889237 +1771.971388 +1772.027532 +1772.100559 +1772.115078 +1772.126167 +1772.262197 +1772.291601 +1772.334425 +1772.440252 +1772.560365 +1772.600758 +1772.783509 +1772.831794 +1772.875583 +1772.912613 +1772.965093 +1772.999026 +1773.066958 +1773.088936 +1773.125966 +1773.175050 +1773.200358 +1773.234257 +1773.275050 +1773.303555 +1773.339086 +1773.385539 +1773.438486 +1773.470254 +1773.492532 +1773.522702 +1773.561163 +1773.575482 +1773.635123 +1773.651240 +1773.707117 +1773.817640 +1773.846811 +1773.971519 +1773.995495 +1774.076581 +1774.146577 +1774.164726 +1774.245145 +1774.310980 +1774.369221 +1774.383940 +1774.421669 +1774.491133 +1774.551672 +1774.578046 +1774.604186 +1774.635022 +1774.681842 +1774.772318 +1774.858032 +1774.878778 +1774.922467 +1774.950273 +1774.980576 +1775.084405 +1775.239017 +1775.252903 +1775.396460 +1775.396659 +1775.426962 +1775.445777 +1775.469786 +1775.477778 +1775.479710 +1775.505917 +1775.563692 +1775.589899 +1775.618005 +1775.655667 +1775.710878 +1775.728094 +1775.757998 +1775.802786 +1775.832223 +1775.860195 +1775.925463 +1785.973272 +1789.972702 +1789.972869 +1790.973234 +1795.978257 +1796.373761 +1796.474161 +1796.574361 +1796.674294 +1796.674893 +1796.774560 +1796.874560 +1796.973694 +1797.073761 +1797.174826 +1797.474726 +1797.673061 +1798.074792 +1798.174892 +1798.474658 +1798.674592 +1798.774492 +1799.174591 +1799.274791 +1799.275290 +1799.774357 +1799.874823 +1799.974957 +1800.074790 +1800.174856 +1800.274756 +1800.374623 +1800.474723 +1800.475123 +1805.984941 +1805.994598 +1806.004621 +1806.162296 +1806.243349 +1806.317341 +1806.391067 +1806.455902 +1806.494897 +1806.539752 +1806.619272 +1806.701490 +1806.746478 +1806.779612 +1806.859898 +1806.907217 +1806.942982 +1807.017607 +1807.088869 +1807.151706 +1807.262861 +1807.318872 +1807.346045 +1807.387770 +1807.422302 +1807.457067 +1807.531159 +1807.557966 +1807.597693 +1807.632558 +1807.746211 +1807.747077 +1807.785172 +1807.796760 +1807.809048 +1807.862661 +1807.914276 +1808.034589 +1808.070819 +1808.173816 +1808.197293 +1808.284372 +1808.430226 +1808.482174 +1808.576846 +1808.615374 +1808.643313 +1808.683073 +1808.739949 +1808.797425 +1808.836786 +1808.864059 +1808.894495 +1808.952903 +1808.968288 +1809.022666 +1809.039383 +1809.066955 +1809.085004 +1809.101354 +1809.116406 +1809.154768 +1809.231391 +1809.255633 +1809.310978 +1809.375380 +1809.391897 +1809.436719 +1809.470085 +1809.500954 +1809.536552 +1809.596126 +1809.623698 +1809.676912 +1809.705250 +1809.753235 +1809.909146 +1809.937284 +1809.967321 +1809.994893 +1810.041347 +1810.125229 +1810.184703 +1810.223298 +1810.255033 +1810.281073 +1810.311443 +1810.339748 +1810.410377 +1810.439548 +1810.467354 +1810.470817 +1810.493494 +1810.520034 +1810.530124 +1810.569418 +1810.680673 +1810.683371 +1810.754533 +1810.844676 +1810.902585 +1810.950104 +1821.972703 +1824.972867 +1825.972899 +1831.474192 +1831.974092 +1832.073992 +1832.275457 +1832.374225 +1832.374558 +1832.473925 +1832.574225 +1832.674491 +1833.274657 +1833.474324 +1833.574690 +1833.875222 +1833.974789 +1834.374989 +1834.574189 +1834.674356 +1834.774822 +1834.874422 +1835.174322 +1835.174688 +1835.574022 +1835.674288 +1835.774554 +1835.775220 +1835.974055 +1840.709448 +1840.972218 +1840.978279 +1840.985505 +1840.986104 +1841.002954 +1841.053270 +1841.145511 +1841.190600 +1841.242648 +1841.319804 +1841.404819 +1841.455601 +1841.487502 +1841.529793 +1841.568521 +1841.643613 +1841.682407 +1841.708714 +1841.765524 +1841.816839 +1841.842614 +1841.881508 +1841.966157 +1842.013409 +1842.042114 +1842.091098 +1842.197092 +1842.249073 +1842.275680 +1842.377545 +1842.389966 +1842.496126 +1842.536219 +1842.586103 +1842.685137 +1842.722033 +1842.771451 +1842.812676 +1842.847341 +1843.023898 +1843.082106 +1843.179076 +1843.206249 +1843.245210 +1843.274081 +1843.316239 +1843.382872 +1843.398390 +1843.439049 +1843.502519 +1843.547274 +1843.586801 +1843.701853 +1843.727827 +1843.741113 +1843.768852 +1843.819701 +1843.850570 +1843.906981 +1843.967953 +1844.095891 +1844.126727 +1844.153933 +1844.191429 +1844.219434 +1844.277277 +1844.306381 +1844.335518 +1844.349604 +1844.471182 +1844.499854 +1844.517037 +1844.558029 +1844.571482 +1844.592528 +1844.620966 +1844.666853 +1844.695658 +1844.733187 +1844.757696 +1844.760060 +1844.843443 +1844.881672 +1844.912008 +1844.969950 +1845.018601 +1845.131222 +1845.168484 +1845.193326 +1845.352900 +1845.365021 +1845.422131 +1845.484901 +1845.501052 +1845.527825 +1845.637781 +1845.709843 +1845.711874 +1845.758094 +1845.784435 +1845.816169 +1845.892959 +1845.930588 +1845.959726 +1856.972968 +1858.972267 +1859.972865 +1860.972198 +1860.972565 +1866.574124 +1866.674024 +1866.774390 +1866.873824 +1866.973924 +1867.073524 +1867.174024 +1867.174490 +1867.573990 +1867.574323 +1867.673956 +1867.674090 +1867.774090 +1867.974589 +1868.074589 +1868.273756 +1868.274322 +1868.373323 +1868.474488 +1868.574422 +1868.674155 +1868.674555 +1868.774488 +1868.874421 +1868.974488 +1869.074421 +1869.173888 +1869.174321 +1869.374388 +1869.474088 +1869.474454 +1869.475320 +1869.475986 +1869.574454 +1869.674521 +1869.773721 +1869.773888 +1869.774187 +1869.874321 +1869.875886 +1870.074487 +1870.174520 +1870.174853 +1870.274620 +1870.574053 +1870.673754 +1870.674553 +1870.774553 +1870.874153 +1870.974253 +1875.985870 +1876.004551 +1876.058730 +1876.181707 +1876.195393 +1876.207747 +1876.255999 +1876.301986 +1876.314041 +1876.398323 +1876.458630 +1876.560628 +1876.666621 +1876.749838 +1876.774980 +1876.867187 +1876.934187 +1876.996192 +1877.049904 +1877.091296 +1877.133721 +1877.220101 +1877.234087 +1877.287500 +1877.370683 +1877.383837 +1877.509311 +1877.549737 +1877.612008 +1877.662624 +1877.701186 +1877.759661 +1877.802684 +1877.871982 +1877.955398 +1878.036983 +1878.113273 +1878.171815 +1878.197622 +1878.240113 +1878.387898 +1878.527659 +1878.561691 +1878.563523 +1878.591728 +1878.637848 +1878.680905 +1878.707978 +1878.725694 +1878.766153 +1878.796656 +1878.899919 +1878.930022 +1878.974245 +1878.989496 +1879.014704 +1879.105880 +1879.145174 +1879.171814 +1879.264288 +1879.278773 +1879.293792 +1879.307778 +1879.366852 +1879.442410 +1879.529123 +1879.558427 +1879.611374 +1879.634850 +1879.703115 +1879.728889 +1879.746472 +1879.776642 +1879.835050 +1879.901683 +1879.946871 +1879.978773 +1880.007411 +1880.036049 +1880.066585 +1880.081636 +1880.215036 +1880.243807 +1880.290094 +1880.319498 +1880.332519 +1880.365352 +1880.408942 +1880.440777 +1880.517167 +1880.557227 +1880.559025 +1880.589428 +1880.605146 +1880.680870 +1880.725392 +1880.787330 +1880.831785 +1880.891392 +1880.909907 +1880.954063 +1891.972400 +1891.972633 +1892.972632 +1892.979992 +1893.972465 +1894.972331 +1894.972531 +1895.972396 +1895.972563 +1895.979856 +1901.474023 +1901.474489 +1901.573856 +1901.773656 +1901.774788 +1901.873956 +1901.973722 +1902.174088 +1902.274122 +1902.473722 +1902.574121 +1902.674488 +1902.873755 +1902.874487 +1902.973855 +1902.974421 +1903.074154 +1903.173888 +1903.274154 +1903.274820 +1903.574120 +1903.773787 +1903.774453 +1903.873820 +1903.874486 +1903.974253 +1904.074087 +1904.074453 +1904.274120 +1904.373687 +1904.374086 +1904.674452 +1904.773686 +1904.774619 +1904.974052 +1904.974519 +1905.074119 +1905.174085 +1905.273719 +1905.274085 +1905.474019 +1905.573785 +1905.674551 +1905.774884 +1905.974917 +1910.977243 +1910.994493 +1911.030756 +1911.196057 +1911.197689 +1911.273513 +1911.383536 +1911.435151 +1911.459627 +1911.584102 +1911.608711 +1911.638581 +1911.639647 +1911.664722 +1911.713440 +1911.750203 +1911.781605 +1911.806180 +1911.828325 +1911.905780 +1912.024029 +1912.128258 +1912.173479 +1912.184968 +1912.259393 +1912.289463 +1912.321597 +1912.349037 +1912.377874 +1912.447938 +1912.496889 +1912.528557 +1912.554731 +1912.716669 +1912.753931 +1912.805014 +1912.894391 +1912.922596 +1912.950701 +1913.017234 +1913.040511 +1913.069649 +1913.164654 +1913.177840 +1913.190827 +1913.258460 +1913.284833 +1913.339945 +1913.366218 +1913.394224 +1913.420930 +1913.448303 +1913.476641 +1913.573744 +1913.600983 +1913.645572 +1913.809841 +1913.828289 +1913.952831 +1913.995255 +1914.009974 +1914.080903 +1914.139711 +1914.180337 +1914.210373 +1914.255528 +1914.283134 +1914.328655 +1914.357027 +1914.415934 +1914.429288 +1914.460257 +1914.472944 +1914.475641 +1914.502914 +1914.531152 +1914.604146 +1914.620929 +1914.635548 +1914.664985 +1914.709341 +1914.741875 +1914.756294 +1914.801748 +1914.817166 +1914.843440 +1914.867682 +1914.892890 +1914.908641 +1914.938844 +1914.993723 +1915.010539 +1915.056027 +1915.072843 +1915.127955 +1915.143872 +1915.190626 +1915.224292 +1915.266416 +1915.283766 +1915.342407 +1915.372910 +1915.416733 +1915.447835 +1915.490758 +1915.522327 +1915.535680 +1915.550166 +1915.564818 +1915.591258 +1915.606975 +1915.637611 +1915.653229 +1915.682933 +1915.739976 +1915.757558 +1915.794821 +1915.870545 +1915.886096 +1915.902013 +1915.930685 +1915.954927 +1925.972100 +1927.971365 +1929.972129 +1929.972329 +1930.972028 +1930.972361 +1935.895400 +1936.573754 +1936.673554 +1936.773554 +1936.873987 +1936.973954 +1937.073687 +1937.173687 +1937.373454 +1937.474553 +1937.573787 +1937.673420 +1937.673753 +1937.874086 +1937.973753 +1938.574352 +1938.673419 +1938.673686 +1938.674085 +1938.774118 +1938.973685 +1938.974052 +1939.473285 +1939.573318 +1939.673585 +1939.774084 +1939.874117 +1939.973385 +1940.073684 +1940.173717 +1940.373651 +1940.475282 +1940.673451 +1940.873783 +1944.604349 +1945.971314 +1945.971580 +1945.977674 +1945.991694 +1946.193059 +1946.224627 +1946.272379 +1946.369882 +1946.510941 +1946.582302 +1946.711240 +1946.799085 +1946.833751 +1946.965652 +1947.035782 +1947.112705 +1947.226225 +1947.285832 +1947.319698 +1947.428555 +1947.560190 +1947.588728 +1947.641509 +1947.682568 +1947.765818 +1947.829088 +1947.944506 +1947.982801 +1948.062154 +1948.094522 +1948.162820 +1948.190759 +1948.231452 +1948.271045 +1948.303646 +1948.447369 +1948.481934 +1948.534082 +1948.578904 +1948.648368 +1948.704678 +1948.727855 +1948.780336 +1948.884864 +1948.912969 +1948.962353 +1948.989526 +1949.042573 +1949.100948 +1949.175773 +1949.203678 +1949.228687 +1949.230685 +1949.270778 +1949.300282 +1949.342673 +1949.401747 +1949.472776 +1949.526489 +1949.544837 +1949.571077 +1949.716032 +1949.748000 +1949.774407 +1949.870178 +1949.896585 +1949.948033 +1949.964550 +1949.992755 +1950.019429 +1950.061120 +1950.088093 +1950.122792 +1950.208473 +1950.257390 +1950.273874 +1950.297983 +1950.331150 +1950.346768 +1950.402345 +1950.430584 +1950.456558 +1950.533314 +1950.559255 +1950.586394 +1950.626121 +1950.642205 +1950.758722 +1950.792821 +1950.860387 +1950.915964 +1950.943071 +1950.955125 +1960.971432 +1960.971799 +1961.971132 +1962.971230 +1962.971563 +1964.971661 +1965.971827 +1971.272621 +1971.873153 +1972.073253 +1972.073885 +1972.473319 +1972.474185 +1972.773452 +1972.873318 +1973.173385 +1973.273451 +1973.373518 +1973.473318 +1973.973051 +1973.973251 +1974.073251 +1974.273151 +1974.573084 +1974.973250 +1975.473149 +1975.473516 +1975.474115 +1975.672616 +1975.773116 +1975.873182 +1980.971612 +1981.106111 +1981.153430 +1981.170846 +1981.293590 +1981.569680 +1981.605644 +1981.619364 +1981.704578 +1981.777505 +1981.816966 +1981.861188 +1981.930918 +1981.996386 +1982.014468 +1982.055327 +1982.085830 +1982.191591 +1982.229786 +1982.450598 +1982.556093 +1982.627155 +1982.681634 +1982.695786 +1982.808240 +1982.821993 +1982.846469 +1982.938909 +1982.962186 +1982.992423 +1983.033348 +1983.070977 +1983.119062 +1983.148067 +1983.199915 +1983.236512 +1983.301147 +1983.326422 +1983.359422 +1983.402279 +1983.474573 +1983.513901 +1983.547767 +1983.586328 +1983.611270 +1983.678769 +1983.778369 +1983.982665 +1984.011203 +1984.053194 +1984.084896 +1984.224156 +1984.248931 +1984.296883 +1984.360720 +1984.387526 +1984.441439 +1984.467546 +1984.495085 +1984.604742 +1984.636543 +1984.662384 +1984.730183 +1984.811835 +1984.848032 +1984.896616 +1984.919260 +1984.980466 +1984.996383 +1985.025288 +1985.111801 +1985.211967 +1985.241505 +1985.268811 +1985.299746 +1985.340872 +1985.390922 +1985.435610 +1985.463616 +1985.492420 +1985.519759 +1985.545567 +1985.557688 +1985.580166 +1985.630382 +1985.675936 +1985.765280 +1985.805174 +1985.832280 +1985.851427 +1985.877035 +1996.972096 +1999.972026 +2005.971853 +2006.573784 +2006.673285 +2006.773151 +2007.274117 +2007.373850 +2007.374649 +2007.573916 +2007.874183 +2007.973583 +2008.273949 +2008.573283 +2008.574581 +2008.773849 +2008.774515 +2008.873482 +2008.874248 +2009.074048 +2009.172550 +2009.373548 +2009.474248 +2009.674048 +2009.975746 +2010.074014 +2010.173847 +2010.174347 +2010.274313 +2010.275046 +2010.275878 +2010.375712 +2010.474946 +2010.873946 +2010.974279 +2015.164984 +2015.217232 +2015.986662 +2016.024391 +2016.046169 +2016.082166 +2016.128886 +2016.161287 +2016.161820 +2016.196552 +2016.279769 +2016.340175 +2016.426189 +2016.497451 +2016.527554 +2016.614167 +2016.661853 +2016.720361 +2016.746801 +2016.911470 +2016.945569 +2016.972375 +2017.021526 +2017.061486 +2017.109438 +2017.151396 +2017.277237 +2017.347733 +2017.385428 +2017.416597 +2017.442371 +2017.566114 +2017.587226 +2017.637276 +2017.741805 +2017.822824 +2017.849797 +2017.927719 +2017.956324 +2018.080499 +2018.102211 +2018.225121 +2018.279900 +2018.314498 +2018.341305 +2018.366213 +2018.440639 +2018.476603 +2018.516663 +2018.562017 +2018.621458 +2018.640239 +2018.664049 +2018.690489 +2018.734012 +2018.764215 +2018.764681 +2018.804974 +2018.820425 +2018.863249 +2018.890189 +2018.932813 +2018.933079 +2018.974271 +2019.003542 +2019.052493 +2019.096083 +2019.121024 +2019.175237 +2019.283628 +2019.312233 +2019.349462 +2019.378467 +2019.407538 +2019.459019 +2019.596615 +2019.626086 +2019.655256 +2019.759119 +2019.786325 +2019.888523 +2019.914230 +2019.929881 +2019.954823 +2020.051093 +2020.077833 +2020.166212 +2020.197547 +2020.258652 +2020.347164 +2020.410067 +2020.450693 +2020.466278 +2020.549395 +2020.562115 +2020.562581 +2020.641203 +2020.660217 +2020.744133 +2020.774636 +2020.793950 +2020.836707 +2020.872638 +2031.979054 +2032.973458 +2033.973690 +2035.973089 +2040.972518 +2041.375847 +2041.576413 +2041.674815 +2041.974848 +2041.975414 +2042.174881 +2042.375147 +2042.474681 +2042.475047 +2042.574747 +2042.774914 +2042.974813 +2043.075246 +2043.175180 +2043.575113 +2043.675112 +2044.074779 +2044.175212 +2044.375312 +2044.475644 +2044.575345 +2044.675178 +2044.774579 +2044.874279 +2044.874812 +2045.074845 +2045.574744 +2045.575111 +2045.674811 +2045.676742 +2045.774811 +2045.873612 +2049.681633 +2049.695453 +2050.973473 +2051.108572 +2051.155158 +2051.190157 +2051.219128 +2051.460819 +2051.497948 +2051.559553 +2051.603976 +2051.698215 +2051.806173 +2051.841471 +2051.904775 +2051.994485 +2052.039773 +2052.099613 +2052.190655 +2052.375337 +2052.405407 +2052.469043 +2052.536276 +2052.654191 +2052.703975 +2052.811667 +2052.833412 +2052.862616 +2052.903109 +2053.058586 +2053.128183 +2053.160218 +2053.199578 +2053.305339 +2053.367377 +2053.426718 +2053.510068 +2053.551293 +2053.577200 +2053.605872 +2053.615895 +2053.641270 +2053.723054 +2053.752725 +2053.794416 +2053.904939 +2054.069641 +2054.150926 +2054.206104 +2054.274036 +2054.318125 +2054.346097 +2054.389621 +2054.427349 +2054.481129 +2054.511732 +2054.540236 +2054.610499 +2054.683027 +2054.685125 +2054.712564 +2054.726850 +2054.846430 +2054.885691 +2054.941968 +2054.980596 +2054.996113 +2055.083892 +2055.096047 +2055.137339 +2055.160615 +2055.188920 +2055.227948 +2055.256819 +2055.431145 +2055.456186 +2055.496879 +2055.668740 +2055.732676 +2055.749559 +2055.819389 +2055.885057 +2065.979286 +2066.973491 +2066.973957 +2069.973787 +2070.974286 +2075.972116 +2076.173482 +2076.173648 +2076.574913 +2076.575979 +2076.774813 +2076.775113 +2077.174846 +2077.574279 +2077.775278 +2078.074212 +2078.375044 +2078.674878 +2078.875011 +2078.875843 +2079.175643 +2079.375110 +2079.775276 +2079.776808 +2080.074876 +2080.174909 +2080.274876 +2080.275142 +2080.674809 +2080.676740 +2080.874776 +2080.875375 +2085.995683 +2086.103542 +2086.265113 +2086.358386 +2086.397481 +2086.474137 +2086.525952 +2086.569442 +2086.626185 +2086.674537 +2086.716228 +2086.780464 +2086.828816 +2086.896348 +2086.920823 +2086.975669 +2087.080863 +2087.109868 +2087.178399 +2087.218525 +2087.271239 +2087.482761 +2087.525685 +2087.654689 +2087.685125 +2087.712831 +2087.765445 +2087.779997 +2087.891851 +2087.934276 +2087.988588 +2088.015761 +2088.149394 +2088.192118 +2088.239071 +2088.322187 +2088.344132 +2088.383992 +2088.424984 +2088.468574 +2088.536140 +2088.580828 +2088.615161 +2088.670139 +2088.684058 +2088.695813 +2088.766010 +2088.828614 +2089.000242 +2089.037704 +2089.073602 +2089.101407 +2089.142899 +2089.241600 +2089.309399 +2089.443432 +2089.505436 +2089.568473 +2089.624018 +2089.681527 +2089.721886 +2089.766242 +2089.783125 +2089.806535 +2089.907567 +2089.937803 +2089.986821 +2090.064643 +2090.109032 +2090.136038 +2090.175299 +2090.216957 +2090.272002 +2090.304670 +2090.361146 +2090.394513 +2090.420986 +2090.464643 +2090.523650 +2090.574233 +2090.600041 +2090.630144 +2090.660880 +2090.675265 +2090.724283 +2090.740333 +2090.752488 +2090.768971 +2090.798708 +2090.829011 +2090.844496 +2090.920120 +2102.972889 +2103.973787 +2104.973752 +2105.973452 +2105.973618 +2110.972914 +2111.073347 +2111.073547 +2111.173746 +2111.273946 +2111.274545 +2111.374379 +2111.575111 +2111.674279 +2111.674878 +2111.874745 +2111.975111 +2112.074811 +2112.175244 +2112.375110 +2112.475144 +2113.174810 +2113.274876 +2113.374843 +2113.375243 +2113.475309 +2113.575209 +2113.674843 +2113.675242 +2113.675575 +2113.774843 +2113.775176 +2113.973644 +2113.974543 +2114.075175 +2114.174875 +2114.175208 +2114.176674 +2114.275108 +2114.374576 +2114.475175 +2114.575208 +2114.576007 +2114.773177 +2114.974841 +2115.074075 +2115.275141 +2115.275674 +2115.374774 +2115.575174 +2115.675074 +2115.775140 +2115.875074 +2115.974607 +2120.979198 +2121.014029 +2121.054789 +2121.117559 +2121.168741 +2121.273203 +2121.302507 +2121.369940 +2121.423087 +2121.506770 +2121.531378 +2121.911731 +2122.153822 +2122.221854 +2122.252390 +2122.307601 +2122.347162 +2122.402040 +2122.556352 +2122.598510 +2122.624617 +2122.729146 +2122.762413 +2122.832709 +2122.922719 +2123.051590 +2123.079695 +2123.148559 +2123.221919 +2123.265343 +2123.320354 +2123.348926 +2123.430011 +2123.468073 +2123.519122 +2123.548825 +2123.592149 +2123.618855 +2123.699808 +2123.723917 +2123.738935 +2123.795179 +2123.856384 +2123.899774 +2123.984123 +2124.039834 +2124.085089 +2124.178762 +2124.216524 +2124.308432 +2124.376697 +2124.411628 +2124.465741 +2124.500906 +2124.528112 +2124.574898 +2124.587353 +2124.677229 +2124.742497 +2124.869570 +2124.912361 +2124.984588 +2125.016223 +2125.039700 +2125.041298 +2125.134305 +2125.162244 +2125.206333 +2125.223649 +2125.254784 +2125.299606 +2125.328944 +2125.356216 +2125.444761 +2125.475097 +2125.516056 +2125.552353 +2125.629609 +2125.661144 +2125.689316 +2125.715323 +2125.804934 +2125.831074 +2125.854584 +2125.896342 +2125.927544 +2125.965839 +2135.972389 +2140.972618 +2145.972646 +2146.172346 +2147.074310 +2147.274343 +2147.473011 +2147.473577 +2147.573477 +2147.773909 +2147.873909 +2148.373309 +2148.473709 +2148.573542 +2148.675340 +2148.873642 +2148.873975 +2148.874308 +2148.973942 +2149.073908 +2149.373209 +2149.473475 +2150.273441 +2150.473507 +2150.874106 +2152.009536 +2152.555423 +2155.971537 +2155.986022 +2156.002173 +2156.168373 +2156.198476 +2156.276199 +2156.313128 +2156.415426 +2156.462079 +2156.573434 +2156.616458 +2156.706401 +2156.802638 +2156.873368 +2156.930044 +2156.958549 +2157.071203 +2157.158749 +2157.192548 +2157.243231 +2157.280260 +2157.392947 +2157.442731 +2157.470104 +2157.523617 +2157.578062 +2157.600739 +2157.763843 +2157.790583 +2157.841099 +2157.869038 +2157.901072 +2157.954385 +2157.995977 +2158.027246 +2158.089450 +2158.145860 +2158.180959 +2158.205134 +2158.259880 +2158.300739 +2158.355084 +2158.395144 +2158.396143 +2158.424881 +2158.471168 +2158.581191 +2158.617055 +2158.645927 +2158.773799 +2158.899972 +2158.923582 +2158.956549 +2159.018687 +2159.047458 +2159.100571 +2159.149822 +2159.206865 +2159.233339 +2159.259346 +2159.335736 +2159.404501 +2159.418786 +2159.455683 +2159.493811 +2159.518586 +2159.534803 +2159.562010 +2159.589748 +2159.615356 +2159.702502 +2159.734104 +2159.750221 +2159.821650 +2159.875496 +2159.891946 +2159.930208 +2159.943961 +2159.971333 +2159.999305 +2160.031440 +2160.048622 +2160.063541 +2160.091413 +2160.121083 +2160.193311 +2160.211626 +2160.279058 +2160.302402 +2160.452785 +2160.507397 +2160.532205 +2160.548855 +2160.562175 +2160.576894 +2160.607030 +2160.635602 +2160.650320 +2160.653184 +2160.712025 +2160.742861 +2160.804932 +2160.864706 +2160.895009 +2160.909794 +2160.928642 +2160.943527 +2160.958012 +2170.971555 +2171.971421 +2174.971285 +2175.971184 +2180.970380 +2181.871944 +2181.972343 +2182.272510 +2182.572476 +2182.972709 +2183.272609 +2183.472042 +2183.472209 +2183.672475 +2183.673108 +2183.972042 +2183.972741 +2184.072641 +2184.273307 +2184.372841 +2184.572774 +2184.672108 +2184.872041 +2184.873772 +2184.972274 +2184.972907 +2185.173206 +2185.272840 +2185.572506 +2185.772773 +2185.872439 +2185.972373 +2190.976863 +2190.992947 +2191.091249 +2191.141032 +2191.294845 +2191.333406 +2191.434272 +2191.525547 +2191.552387 +2191.666240 +2191.741331 +2191.783889 +2191.832940 +2191.875197 +2191.957715 +2191.986586 +2192.012826 +2192.025780 +2192.068737 +2192.117455 +2192.162377 +2192.206499 +2192.243129 +2192.294111 +2192.365573 +2192.491714 +2192.530475 +2192.585253 +2192.662010 +2192.676495 +2192.752053 +2192.791547 +2192.869069 +2192.907364 +2192.930241 +2193.006698 +2193.100870 +2193.130374 +2193.168536 +2193.238000 +2193.304100 +2193.331806 +2193.384320 +2193.411526 +2193.425246 +2193.491879 +2193.605765 +2193.671999 +2193.713024 +2193.747856 +2193.826810 +2193.855482 +2193.883920 +2193.963241 +2194.004066 +2194.028009 +2194.060377 +2194.096141 +2194.106098 +2194.122548 +2194.212591 +2194.277493 +2194.304765 +2194.345458 +2194.418984 +2194.449687 +2194.552384 +2194.568601 +2194.607429 +2194.667069 +2194.697905 +2194.729274 +2194.757512 +2194.799737 +2194.858977 +2194.926976 +2195.008894 +2195.036133 +2195.076093 +2195.146423 +2195.202533 +2195.275527 +2195.319616 +2195.344624 +2195.375427 +2195.432936 +2195.448987 +2195.477225 +2195.503632 +2195.572796 +2195.610259 +2195.634967 +2195.667734 +2195.669266 +2195.682819 +2195.711557 +2195.714055 +2195.742892 +2195.760874 +2195.827941 +2195.872996 +2195.918450 +2206.700624 +2208.701021 +2208.701188 +2208.701654 +2209.700587 +2209.701020 +2209.705483 +2210.700653 +2210.700886 +2210.701252 +2210.706481 +2211.700785 +2211.701018 +2211.704482 +2214.482268 +2214.495155 +2214.954728 +2216.700214 +2216.700381 +2216.707906 +2216.801246 +2216.802079 +2216.901646 +2217.001945 +2217.101979 +2217.403077 +2218.202344 +2218.502410 +2219.802442 +2220.403374 +2221.702374 +2221.702573 +2226.248290 +2226.254417 +2226.476195 +2226.788216 +2226.887317 +2226.950820 +2227.010993 +2227.068202 +2227.110793 +2227.176128 +2227.211925 +2227.237899 +2227.284286 +2227.354116 +2227.474962 +2227.494243 +2227.538065 +2227.566171 +2227.619517 +2227.642894 +2227.696740 +2227.730673 +2227.752251 +2227.813423 +2227.915155 +2227.960776 +2227.968701 +2227.970333 +2228.048255 +2228.062607 +2228.099071 +2228.113922 +2228.145924 +2228.379656 +2228.431804 +2228.500868 +2228.534501 +2228.556912 +2228.571731 +2228.666836 +2228.720082 +2228.733635 +2228.759543 +2228.785883 +2228.798204 +2228.811990 +2228.878757 +2228.904065 +2228.919016 +2228.942992 +2228.958444 +2228.971597 +2228.986149 +2229.001134 +2229.026908 +2229.039796 +2229.041694 +2229.070465 +2229.083652 +2229.152216 +2229.155480 +2229.180788 +2229.192976 +2229.235433 +2229.252216 +2229.265237 +2229.291111 +2229.368766 +2229.395906 +2229.409159 +2229.477691 +2229.502266 +2229.514853 +2229.535766 +2229.579222 +2229.607694 +2229.608293 +2229.622246 +2229.653481 +2229.677957 +2229.693308 +2229.723544 +2229.745356 +2229.767367 +2229.778889 +2229.883285 +2229.938329 +2229.953980 +2230.006894 +2230.080487 +2230.123544 +2230.150184 +2230.164337 +2230.178922 +2230.221946 +2230.236697 +2230.341326 +2230.354413 +2230.395938 +2230.450916 +2230.468599 +2230.558375 +2230.558609 +2230.571229 +2230.616351 +2230.660373 +2230.753913 +2230.811389 +2230.857409 +2230.874426 +2230.997170 +2231.029404 +2231.060173 +2241.701521 +2241.707582 +2242.701687 +2243.701952 +2243.702252 +2243.707780 +2244.702018 +2245.701517 +2245.702050 +2246.702082 +2246.702282 +2246.702548 +2251.701644 +2251.701977 +2251.706906 +2251.802910 +2251.903209 +2252.003476 +2252.103642 +2252.403642 +2252.603841 +2253.003674 +2253.003941 +2253.503940 +2253.604639 +2253.904006 +2254.203507 +2254.303973 +2254.803872 +2256.004104 +2261.714022 +2261.722014 +2261.817751 +2261.986349 +2262.039996 +2262.157345 +2262.205264 +2262.239196 +2262.262873 +2262.324478 +2262.349053 +2262.360475 +2262.393875 +2262.436998 +2262.479822 +2262.506629 +2262.518550 +2262.532669 +2262.569699 +2262.604331 +2262.672229 +2262.713089 +2262.769632 +2262.828040 +2262.912955 +2262.946588 +2262.985283 +2263.074127 +2263.171463 +2263.197837 +2263.220880 +2263.247320 +2263.286082 +2263.326708 +2263.377257 +2263.393507 +2263.436964 +2263.450750 +2263.472528 +2263.484716 +2263.534833 +2263.545189 +2263.572861 +2263.604863 +2263.647720 +2263.750350 +2263.775458 +2263.789744 +2263.802032 +2263.852148 +2263.866434 +2263.891909 +2263.908159 +2263.958975 +2263.974493 +2264.024609 +2264.037563 +2264.083384 +2264.124576 +2264.137796 +2264.176624 +2264.178921 +2264.191442 +2264.205861 +2264.230836 +2264.247453 +2264.301499 +2264.316017 +2264.326640 +2264.342324 +2264.356011 +2264.357043 +2264.383250 +2264.397403 +2264.423443 +2264.425474 +2264.453380 +2264.480519 +2264.521645 +2264.547985 +2264.562704 +2264.578521 +2264.619647 +2264.646820 +2264.661039 +2264.700266 +2264.713952 +2264.729803 +2264.742957 +2264.770662 +2264.798168 +2264.826573 +2264.854312 +2264.895204 +2264.910123 +2264.922677 +2264.937229 +2264.950083 +2264.980352 +2264.993306 +2265.008125 +2265.054079 +2265.080152 +2265.093572 +2265.108657 +2265.123542 +2265.136996 +2265.165634 +2265.179053 +2265.208357 +2265.221844 +2265.235330 +2265.249749 +2265.264235 +2265.265001 +2265.297701 +2265.323542 +2265.339127 +2265.408324 +2265.436429 +2265.452080 +2265.466899 +2265.508657 +2265.538394 +2265.567465 +2265.568897 +2265.613019 +2265.679419 +2265.682882 +2265.727604 +2265.822709 +2265.851647 +2265.920278 +2265.952546 +2266.121077 +2266.660071 +2276.703484 +2276.703751 +2277.703916 +2277.703949 +2277.708944 +2278.708877 +2280.703980 +2280.708941 +2281.703945 +2281.704278 +2286.703108 +2286.708736 +2286.804240 +2286.904606 +2287.004839 +2287.305871 +2288.506036 +2288.806069 +2288.905969 +2289.705236 +2290.305968 +2290.605934 +2290.705934 +2290.805235 +2291.105201 +2291.405334 +2291.505734 +2291.706033 +2296.745589 +2296.777890 +2296.788979 +2296.938163 +2296.971962 +2297.031969 +2297.081619 +2297.111389 +2297.173061 +2297.218415 +2297.249085 +2297.269864 +2297.290843 +2297.341725 +2297.355678 +2297.368798 +2297.379421 +2297.395904 +2297.472461 +2297.493940 +2297.530903 +2297.571961 +2297.614452 +2297.637596 +2297.686913 +2297.734898 +2297.798901 +2297.821745 +2297.881518 +2297.942124 +2297.944822 +2298.059274 +2298.072194 +2298.085214 +2298.121944 +2298.146753 +2298.171428 +2298.196237 +2298.234998 +2298.247119 +2298.308757 +2298.331468 +2298.395470 +2298.482850 +2298.508258 +2298.520312 +2298.534498 +2298.590941 +2298.604794 +2298.649716 +2298.663003 +2298.684348 +2298.737595 +2298.749483 +2298.771294 +2298.772926 +2298.796402 +2298.807625 +2298.820245 +2298.854211 +2298.872859 +2298.897568 +2298.909123 +2298.944687 +2299.050049 +2299.082516 +2299.101031 +2299.112186 +2299.124674 +2299.136495 +2299.153145 +2299.169063 +2299.225240 +2299.286512 +2299.324074 +2299.349149 +2299.360904 +2299.386245 +2299.399998 +2299.410921 +2299.447551 +2299.502063 +2299.599965 +2299.632232 +2299.661836 +2299.687177 +2299.757241 +2299.784180 +2299.796968 +2299.824473 +2299.851247 +2299.878386 +2299.892039 +2299.904660 +2299.917580 +2299.980484 +2299.994403 +2300.008456 +2300.022708 +2300.048516 +2300.138226 +2300.150947 +2300.164133 +2300.249281 +2300.251846 +2300.281549 +2300.305692 +2300.359305 +2300.372025 +2300.385678 +2300.387343 +2300.535628 +2300.615615 +2300.782315 +2300.828235 +2301.129134 +2311.704115 +2312.704514 +2313.704380 +2314.704478 +2315.704611 +2315.711604 +2321.703739 +2321.704305 +2321.709367 +2321.804771 +2322.005270 +2322.305603 +2322.405403 +2322.405936 +2322.806435 +2323.106002 +2323.106468 +2323.605702 +2323.906034 +2324.106534 +2324.306101 +2325.605467 +2326.405532 +2326.505832 +2326.605665 +2326.605765 +2331.775390 +2331.846220 +2331.878454 +2331.920379 +2331.960971 +2332.062037 +2332.095037 +2332.129769 +2332.167032 +2332.284547 +2332.314118 +2332.431034 +2332.458140 +2332.528803 +2332.592905 +2332.621677 +2332.657341 +2332.726738 +2332.789109 +2332.824274 +2332.914151 +2332.935063 +2333.030035 +2333.152279 +2333.177520 +2333.310687 +2333.324407 +2333.443021 +2333.467197 +2333.492472 +2333.570660 +2333.593837 +2333.646451 +2333.670593 +2333.697267 +2333.724073 +2333.798998 +2333.827669 +2333.920110 +2333.947416 +2333.998498 +2334.027370 +2334.047849 +2334.059704 +2334.086610 +2334.127836 +2334.152611 +2334.246217 +2334.271692 +2334.287842 +2334.300962 +2334.326770 +2334.342454 +2334.356007 +2334.440123 +2334.470060 +2334.535328 +2334.601595 +2334.612317 +2334.624272 +2334.640689 +2334.661135 +2334.675887 +2334.748648 +2334.778384 +2334.869826 +2334.891005 +2335.025637 +2335.081648 +2335.125837 +2335.138624 +2335.178817 +2335.194668 +2335.223406 +2335.238324 +2335.266463 +2335.295600 +2335.351577 +2335.379316 +2335.422007 +2335.467262 +2335.483046 +2335.526203 +2335.538923 +2335.554508 +2335.609786 +2335.624371 +2335.637191 +2335.666629 +2335.682413 +2335.693502 +2335.725303 +2335.739323 +2335.815380 +2335.845683 +2335.860967 +2335.874587 +2335.887607 +2335.961833 +2336.007221 +2336.023072 +2336.066295 +2336.110651 +2336.123571 +2336.141187 +2336.154607 +2336.172023 +2336.215479 +2336.260268 +2336.353674 +2336.366661 +2336.439555 +2346.704680 +2347.705045 +2348.705077 +2348.705577 +2349.705143 +2349.710471 +2350.710303 +2351.705674 +2356.704803 +2356.805236 +2356.905702 +2357.106867 +2358.006533 +2358.106233 +2358.506200 +2358.506766 +2358.606366 +2358.906266 +2359.106332 +2359.406065 +2359.406498 +2359.506232 +2359.506665 +2359.507264 +2359.706098 +2360.106564 +2360.306364 +2360.406631 +2360.606397 +2360.706430 +2360.906697 +2361.106497 +2361.406463 +2361.506463 +2361.606363 +2361.706330 +2366.722142 +2366.797400 +2366.826804 +2366.884280 +2366.940424 +2366.975255 +2367.029801 +2367.052611 +2367.109854 +2367.199597 +2367.290040 +2367.475654 +2367.500629 +2367.533863 +2367.635195 +2367.661135 +2367.717279 +2367.804459 +2367.853609 +2367.869926 +2367.891904 +2367.893037 +2367.917545 +2367.961934 +2367.996200 +2368.023273 +2368.114915 +2368.188108 +2368.216879 +2368.306589 +2368.364265 +2368.457239 +2368.497665 +2368.519210 +2368.536393 +2368.549879 +2368.550911 +2368.590239 +2368.641887 +2368.656606 +2368.768760 +2368.794201 +2368.833529 +2368.900328 +2368.923106 +2368.939090 +2368.966063 +2369.061400 +2369.109386 +2369.162299 +2369.205623 +2369.218843 +2369.230498 +2369.247248 +2369.272855 +2369.299529 +2369.327501 +2369.352243 +2369.389605 +2369.418843 +2369.420108 +2369.442752 +2369.491870 +2369.517244 +2369.534660 +2369.576152 +2369.602625 +2369.619941 +2369.644450 +2369.673055 +2369.700627 +2369.851876 +2369.891403 +2369.905189 +2369.933028 +2369.972688 +2369.986841 +2370.058269 +2370.069158 +2370.116311 +2370.186674 +2370.228332 +2370.246248 +2370.277017 +2370.306288 +2370.331795 +2370.466194 +2370.482112 +2370.509085 +2370.511282 +2370.524602 +2370.570623 +2370.597696 +2370.628565 +2370.658235 +2370.698428 +2370.716477 +2370.762031 +2370.793600 +2370.867060 +2370.882178 +2370.939520 +2370.972454 +2371.112614 +2371.130463 +2371.237389 +2371.358035 +2371.359433 +2371.374885 +2371.432827 +2371.479646 +2371.512880 +2371.529030 +2371.561598 +2371.609583 +2371.703323 +2372.101690 +2372.105220 +2379.482203 +2381.705377 +2381.706076 +2382.705876 +2383.711269 +2385.705673 +2385.711733 +2386.706005 +2391.705667 +2391.706100 +2392.307098 +2392.707131 +2393.007897 +2393.707197 +2393.807130 +2394.107929 +2394.207196 +2394.706896 +2395.107129 +2395.406895 +2396.007494 +2396.107228 +2396.107361 +2396.207361 +2396.707194 +2401.706123 +2401.716712 +2401.722440 +2401.895434 +2401.972290 +2402.017611 +2402.074088 +2402.123139 +2402.190605 +2402.214481 +2402.255240 +2402.291371 +2402.326735 +2402.393768 +2402.434660 +2402.457671 +2402.499362 +2402.500328 +2402.527368 +2402.551743 +2402.575186 +2402.663831 +2402.688939 +2402.759269 +2402.778283 +2402.840021 +2402.870291 +2402.914513 +2402.967960 +2402.986408 +2403.065229 +2403.119209 +2403.170091 +2403.200627 +2403.229665 +2403.231030 +2403.265063 +2403.344883 +2403.397397 +2403.410983 +2403.412282 +2403.458869 +2403.514613 +2403.567526 +2403.581413 +2403.604856 +2403.689704 +2403.723870 +2403.736857 +2403.762764 +2403.802624 +2403.841053 +2403.908252 +2403.933260 +2403.955605 +2403.996763 +2404.095964 +2404.237056 +2404.262897 +2404.279980 +2404.377049 +2404.402258 +2404.447512 +2404.514445 +2404.558068 +2404.599993 +2404.633260 +2404.699726 +2404.718441 +2404.773752 +2404.805654 +2404.817608 +2404.859700 +2404.930229 +2404.986007 +2405.007785 +2405.019440 +2405.043882 +2405.046546 +2405.060332 +2405.074018 +2405.135457 +2405.150941 +2405.164495 +2405.175384 +2405.176782 +2405.191334 +2405.257934 +2405.282909 +2405.306419 +2405.332660 +2405.453472 +2405.467291 +2405.612779 +2405.627032 +2405.644148 +2405.674384 +2405.687105 +2405.688936 +2405.747511 +2405.775416 +2405.789635 +2405.805919 +2405.821603 +2405.837354 +2405.881077 +2405.897194 +2406.001557 +2406.004587 +2406.064594 +2406.111313 +2406.170587 +2406.183608 +2406.262096 +2406.276881 +2406.291100 +2406.323101 +2406.368656 +2406.491333 +2406.506951 +2406.525665 +2406.572052 +2406.615043 +2406.645645 +2416.710803 +2417.705774 +2418.705773 +2419.705539 +2419.705639 +2420.705471 +2421.705637 +2421.706136 +2421.710166 +2426.705032 +2427.206331 +2427.206597 +2427.306697 +2427.606697 +2427.807429 +2428.107562 +2428.607461 +2429.606395 +2429.806628 +2431.406460 +2431.507425 +2436.709751 +2436.721173 +2436.773487 +2436.791636 +2436.833094 +2436.864430 +2436.974819 +2437.022338 +2437.058302 +2437.195864 +2437.241619 +2437.278115 +2437.299994 +2437.355738 +2437.415744 +2437.500926 +2437.530696 +2437.550343 +2437.684975 +2437.710016 +2437.731961 +2437.795797 +2437.849444 +2437.858468 +2437.894099 +2437.931428 +2437.990269 +2438.032527 +2438.193932 +2438.229796 +2438.250076 +2438.298427 +2438.354105 +2438.405787 +2438.467758 +2438.539420 +2438.646546 +2438.670755 +2438.704155 +2438.729163 +2438.770388 +2438.808916 +2438.871221 +2438.960964 +2438.981843 +2439.023002 +2439.048110 +2439.138853 +2439.175483 +2439.192100 +2439.217408 +2439.246978 +2439.299359 +2439.313944 +2439.328363 +2439.340684 +2439.355036 +2439.381743 +2439.392965 +2439.409049 +2439.434557 +2439.449775 +2439.492565 +2439.505652 +2439.568123 +2439.573484 +2439.584374 +2439.600224 +2439.628263 +2439.671453 +2439.684973 +2439.696661 +2439.712579 +2439.738186 +2439.780810 +2439.837553 +2439.892865 +2439.925366 +2439.939884 +2439.951506 +2440.018239 +2440.041982 +2440.042681 +2440.064826 +2440.068722 +2440.097726 +2440.112345 +2440.138918 +2440.140750 +2440.186038 +2440.198259 +2440.229295 +2440.243181 +2440.257533 +2440.258565 +2440.288802 +2440.289568 +2440.332625 +2440.365092 +2440.379111 +2440.472884 +2440.527230 +2440.558099 +2440.572251 +2440.587703 +2440.617007 +2440.663793 +2440.706484 +2440.753070 +2440.766723 +2440.797060 +2440.846677 +2440.889700 +2440.890699 +2440.921435 +2440.937885 +2440.949973 +2440.997259 +2441.030426 +2441.047909 +2441.136287 +2441.151372 +2441.182441 +2441.197359 +2441.226696 +2441.317139 +2441.333290 +2441.363326 +2441.426197 +2441.599323 +2451.704674 +2451.704908 +2452.705206 +2453.704473 +2453.704739 +2453.704906 +2453.710933 +2454.705238 +2461.704198 +2462.505596 +2462.705629 +2462.706229 +2463.106128 +2463.206428 +2464.004795 +2464.205628 +2464.306094 +2465.206159 +2465.606326 +2465.706459 +2465.906092 +2466.406358 +2470.454639 +2471.705254 +2471.708151 +2471.715843 +2471.722070 +2471.728864 +2471.763962 +2471.835424 +2471.956536 +2471.980179 +2472.008417 +2472.060365 +2472.081677 +2472.128064 +2472.163628 +2472.210948 +2472.222869 +2472.321237 +2472.343881 +2472.396695 +2472.433425 +2472.458766 +2472.545446 +2472.598426 +2472.665160 +2472.706152 +2472.720438 +2472.756901 +2472.846312 +2472.860131 +2472.884207 +2472.931227 +2472.952972 +2472.981809 +2473.004087 +2473.016441 +2473.028030 +2473.079312 +2473.155269 +2473.170820 +2473.212878 +2473.239152 +2473.273118 +2473.293164 +2473.317040 +2473.341050 +2473.370154 +2473.462428 +2473.548709 +2473.600224 +2473.627263 +2473.680876 +2473.705318 +2473.745778 +2473.795462 +2473.833590 +2473.881975 +2473.937386 +2473.965225 +2473.991932 +2474.034789 +2474.088968 +2474.132591 +2474.200723 +2474.216440 +2474.328195 +2474.369920 +2474.398025 +2474.423133 +2474.453470 +2474.507282 +2474.550972 +2474.581974 +2474.636886 +2474.667955 +2474.693163 +2474.736786 +2474.777645 +2474.867622 +2474.879610 +2474.897359 +2474.912577 +2474.927195 +2474.955367 +2475.073948 +2475.102720 +2475.118704 +2475.145743 +2475.149073 +2475.221035 +2475.222000 +2475.237385 +2475.252270 +2475.268321 +2475.282706 +2475.343179 +2475.461594 +2475.477112 +2475.493728 +2475.509746 +2475.523332 +2475.555167 +2475.569785 +2475.584304 +2475.598723 +2475.614607 +2475.630491 +2475.632056 +2475.658397 +2475.704284 +2475.719103 +2475.749572 +2475.763625 +2475.793029 +2475.809046 +2475.849872 +2475.890198 +2475.919968 +2475.947308 +2475.977777 +2476.024064 +2476.040647 +2476.056631 +2476.084304 +2476.084603 +2476.114707 +2476.128260 +2476.158829 +2476.173548 +2476.192662 +2476.222132 +2476.264290 +2476.281273 +2476.354433 +2476.410477 +2476.455799 +2476.469984 +2476.521766 +2476.549671 +2476.549904 +2476.562125 +2476.574147 +2476.604017 +2486.705405 +2487.705271 +2487.705538 +2488.711864 +2490.705668 +2491.705700 +2496.705728 +2496.710124 +2497.006427 +2497.206694 +2497.607626 +2497.707259 +2497.807692 +2498.007658 +2498.607758 +2499.207557 +2499.706858 +2499.806891 +2500.207723 +2500.807156 +2501.007722 +2501.307722 +2506.788202 +2506.842681 +2506.921136 +2507.071519 +2507.167756 +2507.178212 +2507.199557 +2507.245445 +2507.294029 +2507.325698 +2507.410879 +2507.412011 +2507.433656 +2507.469620 +2507.507316 +2507.531858 +2507.631558 +2507.660995 +2507.683639 +2507.709347 +2507.784205 +2507.856766 +2507.972051 +2507.986636 +2508.000356 +2508.037785 +2508.076646 +2508.113676 +2508.125730 +2508.164458 +2508.213775 +2508.226563 +2508.251238 +2508.314774 +2508.353702 +2508.366822 +2508.388734 +2508.427561 +2508.453436 +2508.480275 +2508.504784 +2508.542646 +2508.566955 +2508.604151 +2508.638384 +2508.676079 +2508.689299 +2508.741814 +2508.755899 +2508.804617 +2508.854567 +2508.891930 +2508.903119 +2508.903851 +2508.947841 +2508.970518 +2508.997791 +2509.012642 +2509.132223 +2509.160195 +2509.187134 +2509.222699 +2509.225929 +2509.239515 +2509.315706 +2509.333421 +2509.355599 +2509.366721 +2509.457997 +2509.483904 +2509.523398 +2509.540314 +2509.554633 +2509.583271 +2509.622998 +2509.654167 +2509.692862 +2509.735053 +2509.761959 +2509.773448 +2509.802718 +2509.816704 +2509.844543 +2509.872915 +2509.897423 +2509.900454 +2509.911476 +2509.924430 +2509.964656 +2509.991463 +2510.016238 +2510.029691 +2510.042745 +2510.056464 +2510.069851 +2510.086301 +2510.100820 +2510.128559 +2510.140913 +2510.209111 +2510.223730 +2510.252401 +2510.267486 +2510.293594 +2510.333454 +2510.345342 +2510.399454 +2510.430323 +2510.473980 +2510.490263 +2510.559661 +2510.575611 +2510.602285 +2510.617336 +2510.659128 +2510.724063 +2510.739081 +2510.768085 +2510.797023 +2510.882904 +2510.898988 +2510.974079 +2510.991262 +2511.051102 +2511.063889 +2511.078874 +2511.093460 +2511.106913 +2511.121665 +2511.137449 +2511.154865 +2511.183736 +2511.244841 +2511.260526 +2515.689292 +2516.829551 +2517.334346 +2521.705237 +2521.705504 +2521.710199 +2521.710832 +2522.705636 +2522.705702 +2523.705701 +2523.706267 +2524.705634 +2525.705167 +2525.705566 +2526.705399 +2526.705698 +2532.407391 +2532.606592 +2532.607324 +2533.306857 +2534.607256 +2541.704085 +2541.709646 +2541.729659 +2541.774048 +2541.809213 +2541.852936 +2541.873682 +2541.898690 +2541.907015 +2541.943312 +2541.964158 +2541.965224 +2541.997291 +2542.019203 +2542.034421 +2542.131757 +2542.172183 +2542.210578 +2542.235653 +2542.309179 +2542.392662 +2542.406648 +2542.420534 +2542.441680 +2542.469818 +2542.494494 +2542.533355 +2542.555100 +2542.612476 +2542.657864 +2542.717937 +2542.751370 +2542.753002 +2542.830524 +2542.854433 +2542.877677 +2542.888699 +2542.914673 +2542.948240 +2542.989265 +2543.000154 +2543.064523 +2543.089465 +2543.154067 +2543.224929 +2543.289331 +2543.302485 +2543.332755 +2543.354599 +2543.391729 +2543.445042 +2543.468152 +2543.496158 +2543.509444 +2543.533187 +2543.561026 +2543.585435 +2543.624263 +2543.648405 +2543.692528 +2543.729191 +2543.768785 +2543.782238 +2543.783537 +2543.795158 +2543.861792 +2543.875245 +2543.886967 +2543.911775 +2543.926627 +2544.001685 +2544.027559 +2544.070316 +2544.093560 +2544.148638 +2544.200353 +2544.222464 +2544.257362 +2544.283503 +2544.298155 +2544.344908 +2544.345441 +2544.383270 +2544.394558 +2544.451968 +2544.522997 +2544.557329 +2544.560659 +2544.593293 +2544.607678 +2544.683103 +2544.695457 +2544.707578 +2544.749503 +2544.856696 +2544.869416 +2544.869949 +2544.907378 +2544.970515 +2544.983935 +2544.998254 +2545.045141 +2545.080871 +2545.118467 +2545.130888 +2545.144341 +2545.172713 +2545.186199 +2545.200818 +2545.213006 +2545.254098 +2545.279073 +2545.316369 +2545.328923 +2545.341511 +2545.352766 +2545.366286 +2545.380538 +2545.406046 +2545.420099 +2545.430921 +2545.444507 +2545.470049 +2545.525826 +2545.578540 +2545.621497 +2545.675343 +2545.735383 +2545.852366 +2545.877607 +2545.892392 +2545.908143 +2545.922829 +2545.978340 +2546.067983 +2546.179938 +2546.263887 +2546.275775 +2546.349402 +2546.415802 +2556.705169 +2556.710031 +2556.711163 +2557.705268 +2559.705466 +2560.712591 +2561.705397 +2561.705963 +2561.710459 +2566.705425 +2566.709654 +2566.805458 +2567.307223 +2568.406789 +2568.707288 +2568.906289 +2569.106921 +2569.107254 +2569.307188 +2569.606255 +2569.607287 +2569.707320 +2570.107253 +2570.406520 +2570.507353 +2570.606221 +2570.707253 +2571.106420 +2571.406519 +2571.606886 +2576.742212 +2576.842545 +2576.941978 +2576.965155 +2576.988765 +2577.010876 +2577.031622 +2577.058495 +2577.125861 +2577.149304 +2577.174313 +2577.220833 +2577.266121 +2577.277909 +2577.315771 +2577.347173 +2577.358262 +2577.376810 +2577.410243 +2577.437050 +2577.470416 +2577.544176 +2577.597855 +2577.714006 +2577.744508 +2577.766953 +2577.789164 +2577.856430 +2577.975610 +2578.008844 +2578.049936 +2578.111907 +2578.134718 +2578.237215 +2578.311474 +2578.401484 +2578.429556 +2578.512173 +2578.561957 +2578.626459 +2578.637015 +2578.652266 +2578.698454 +2578.810175 +2578.879772 +2578.931387 +2578.957861 +2578.971847 +2579.047238 +2579.068816 +2579.174211 +2579.191793 +2579.213904 +2579.232186 +2579.256328 +2579.271746 +2579.286332 +2579.312705 +2579.327391 +2579.340811 +2579.391327 +2579.494790 +2579.519632 +2579.602415 +2579.639378 +2579.707344 +2579.815169 +2579.856628 +2579.885499 +2579.967550 +2579.993257 +2580.006511 +2580.021629 +2580.036081 +2580.063754 +2580.094090 +2580.106844 +2580.121163 +2580.135781 +2580.150766 +2580.175175 +2580.234849 +2580.306744 +2580.362421 +2580.376574 +2580.407909 +2580.423560 +2580.452398 +2580.510606 +2580.524226 +2580.567516 +2580.596687 +2580.611905 +2580.626091 +2580.639544 +2580.667349 +2580.684565 +2580.742840 +2580.757293 +2580.828655 +2580.947336 +2580.947702 +2581.004845 +2581.020729 +2581.049300 +2581.095454 +2581.111971 +2581.171212 +2581.186430 +2581.201581 +2581.229953 +2581.305844 +2581.460422 +2581.509007 +2581.610339 +2591.705200 +2591.705400 +2592.710361 +2593.705332 +2595.705729 +2595.710957 +2601.705190 +2601.705390 +2601.906922 +2602.006522 +2602.205823 +2602.207121 +2602.807221 +2603.406887 +2603.607486 +2603.706853 +2603.906887 +2604.006853 +2604.007186 +2604.207519 +2604.706919 +2604.806752 +2604.807252 +2605.007185 +2605.307218 +2605.606552 +2605.606918 +2605.907018 +2611.711075 +2611.716669 +2611.730056 +2611.823129 +2611.868983 +2611.900219 +2611.984035 +2612.035983 +2612.141877 +2612.182536 +2612.218766 +2612.247038 +2612.268850 +2612.306046 +2612.331753 +2612.379472 +2612.413471 +2612.450701 +2612.476841 +2612.511340 +2612.575576 +2612.610108 +2612.833518 +2612.860491 +2612.894723 +2612.914337 +2612.959392 +2613.097986 +2613.120863 +2613.194090 +2613.217300 +2613.232318 +2613.283700 +2613.311239 +2613.350533 +2613.389628 +2613.435948 +2613.511972 +2613.541609 +2613.578006 +2613.593790 +2613.654696 +2613.720896 +2613.815268 +2613.830386 +2613.855495 +2613.878938 +2613.906943 +2613.946337 +2613.997319 +2614.077672 +2614.103680 +2614.129654 +2614.146037 +2614.159624 +2614.210306 +2614.254229 +2614.269647 +2614.293789 +2614.307642 +2614.333583 +2614.374608 +2614.473110 +2614.487362 +2614.539144 +2614.551132 +2614.565351 +2614.577206 +2614.643739 +2614.658258 +2614.684232 +2614.702580 +2614.715201 +2614.730652 +2614.784731 +2614.813902 +2614.837945 +2614.882533 +2614.897685 +2614.911138 +2614.939310 +2614.965017 +2614.979070 +2614.981834 +2614.993655 +2615.037345 +2615.053695 +2615.076173 +2615.089892 +2615.121328 +2615.158424 +2615.209240 +2615.222759 +2615.252962 +2615.291590 +2615.359256 +2615.375640 +2615.389592 +2615.459156 +2615.487461 +2615.516965 +2615.545237 +2615.569812 +2615.650065 +2615.666915 +2615.723192 +2615.738143 +2615.829952 +2615.845303 +2615.862819 +2615.917730 +2615.959755 +2615.974407 +2615.974673 +2616.001513 +2616.045169 +2616.124890 +2616.126222 +2616.148866 +2616.175006 +2616.216898 +2616.232882 +2616.304310 +2616.319695 +2616.382299 +2616.424290 +2616.441806 +2616.502378 +2627.706163 +2627.711125 +2629.705928 +2629.706228 +2629.710624 +2630.706027 +2630.711455 +2631.705993 +2631.706159 +2636.704456 +2636.806121 +2636.906587 +2637.208019 +2637.305987 +2637.307253 +2637.506720 +2637.507119 +2637.809217 +2638.805686 +2638.907617 +2639.006918 +2639.007717 +2639.107218 +2639.608116 +2640.306750 +2640.608049 +2640.707016 +2640.707482 +2640.907282 +2641.108181 +2641.207582 +2641.307249 +2641.607015 +2646.738912 +2646.764719 +2646.830020 +2646.866850 +2646.956327 +2646.957193 +2647.052298 +2647.075808 +2647.089760 +2647.133383 +2647.210939 +2647.243307 +2647.266983 +2647.316966 +2647.318032 +2647.353430 +2647.405544 +2647.465451 +2647.488561 +2647.577239 +2647.611372 +2647.727655 +2647.813070 +2647.931118 +2647.964818 +2648.001181 +2648.065217 +2648.075707 +2648.076506 +2648.100082 +2648.180802 +2648.204178 +2648.242007 +2648.255926 +2648.343039 +2648.353828 +2648.392490 +2648.450132 +2648.477238 +2648.516099 +2648.528753 +2648.554294 +2648.593688 +2648.637711 +2648.701247 +2648.739043 +2648.777737 +2648.791357 +2648.818130 +2648.948367 +2648.973175 +2649.002346 +2649.029719 +2649.058623 +2649.071044 +2649.095053 +2649.133681 +2649.162719 +2649.206775 +2649.232749 +2649.263185 +2649.319528 +2649.359555 +2649.416764 +2649.431183 +2649.454893 +2649.481100 +2649.503411 +2649.518429 +2649.537177 +2649.558023 +2649.610171 +2649.653694 +2649.763384 +2649.778869 +2649.809738 +2649.823890 +2649.877670 +2649.934713 +2649.947866 +2649.962318 +2650.004509 +2650.030850 +2650.046634 +2650.087393 +2650.134579 +2650.148732 +2650.178136 +2650.208505 +2650.234912 +2650.251995 +2650.290523 +2650.390789 +2650.493520 +2650.577902 +2650.603943 +2650.630549 +2650.694652 +2650.709737 +2650.723989 +2650.767079 +2650.781731 +2650.885428 +2650.917196 +2650.918128 +2650.960719 +2650.989823 +2651.025687 +2651.042637 +2651.079367 +2651.096350 +2651.110869 +2651.126586 +2651.195118 +2651.260719 +2651.347032 +2651.372107 +2651.477069 +2651.507705 +2651.572606 +2651.700678 +2662.706162 +2662.711390 +2663.705894 +2664.705827 +2664.706160 +2665.706159 +2666.706124 +2666.706224 +2666.711885 +2671.705453 +2671.811980 +2672.207051 +2672.707850 +2673.007950 +2673.107017 +2673.206984 +2673.407117 +2673.522668 +2673.807016 +2673.907549 +2674.307116 +2674.607249 +2674.607748 +2674.608048 +2674.707115 +2675.107082 +2675.307581 +2675.507081 +2675.607148 +2675.707681 +2675.806881 +2676.107580 +2676.207847 +2681.705277 +2681.836845 +2681.952529 +2682.064151 +2682.107707 +2682.178337 +2682.200348 +2682.270977 +2682.281533 +2682.360954 +2682.376805 +2682.461820 +2682.549965 +2682.618962 +2682.659022 +2682.670511 +2682.736778 +2682.767647 +2682.801080 +2682.868279 +2682.891989 +2683.007607 +2683.047533 +2683.084929 +2683.122159 +2683.159288 +2683.201180 +2683.227353 +2683.252495 +2683.329218 +2683.354992 +2683.420826 +2683.423257 +2683.448898 +2683.473840 +2683.487526 +2683.577336 +2683.625688 +2683.646667 +2683.691089 +2683.777036 +2683.803010 +2683.816930 +2683.857622 +2683.884429 +2683.988292 +2684.000380 +2684.038275 +2684.051362 +2684.079600 +2684.106473 +2684.179201 +2684.195917 +2684.207306 +2684.221225 +2684.249097 +2684.278468 +2684.304708 +2684.362151 +2684.387326 +2684.403976 +2684.447232 +2684.492287 +2684.532114 +2684.571708 +2684.588391 +2684.613066 +2684.642503 +2684.666146 +2684.735644 +2684.782297 +2684.805407 +2684.830415 +2684.885494 +2684.910302 +2684.924854 +2684.952393 +2684.984028 +2685.011534 +2685.025986 +2685.066745 +2685.084661 +2685.112500 +2685.128584 +2685.142503 +2685.154191 +2685.157521 +2685.172040 +2685.211767 +2685.267711 +2685.296282 +2685.321857 +2685.336908 +2685.420391 +2685.452892 +2685.467011 +2685.480964 +2685.493818 +2685.508437 +2685.523888 +2685.551627 +2685.566778 +2685.611966 +2685.639838 +2685.654657 +2685.694684 +2685.715463 +2685.782496 +2685.832213 +2685.847564 +2685.920125 +2685.931879 +2686.021157 +2686.080664 +2686.143568 +2686.159984 +2686.174337 +2686.189455 +2686.371206 +2686.412765 +2686.414330 +2686.468709 +2686.565112 +2686.579698 +2696.705528 +2696.705995 +2696.711089 +2697.706426 +2697.706993 +2698.706492 +2698.706958 +2699.705792 +2700.706390 +2701.706289 +2701.706522 +2706.706118 +2706.806484 +2706.907050 +2706.907783 +2707.007116 +2707.107183 +2707.607549 +2708.008015 +2708.307515 +2708.407981 +2708.507714 +2708.607514 +2709.007847 +2710.007446 +2710.208112 +2711.008478 +2711.107845 +2711.407412 +2711.608144 +2716.705508 +2716.721825 +2717.047899 +2717.091156 +2717.139074 +2717.165381 +2717.240773 +2717.261951 +2717.300479 +2717.333280 +2717.359087 +2717.395318 +2717.508138 +2717.634645 +2717.668544 +2717.694618 +2717.748298 +2717.808504 +2717.869876 +2717.890988 +2717.926186 +2717.965147 +2717.988990 +2718.114431 +2718.126053 +2718.139606 +2718.188291 +2718.212400 +2718.256489 +2718.317695 +2718.354724 +2718.407405 +2718.440572 +2718.499646 +2718.526719 +2718.552360 +2718.580665 +2718.643702 +2718.716462 +2718.741104 +2718.767744 +2718.793651 +2718.809236 +2718.834644 +2718.848330 +2718.873305 +2718.887025 +2718.911167 +2719.016229 +2719.039772 +2719.053158 +2719.129582 +2719.162782 +2719.220591 +2719.273171 +2719.309069 +2719.325486 +2719.368043 +2719.394150 +2719.409602 +2719.451759 +2719.477966 +2719.494117 +2719.506904 +2719.531813 +2719.576501 +2719.631213 +2719.694283 +2719.709535 +2719.780730 +2719.835242 +2719.836674 +2719.848529 +2719.875668 +2719.914529 +2720.031246 +2720.057153 +2720.096914 +2720.148062 +2720.172072 +2720.188422 +2720.212365 +2720.254090 +2720.274802 +2720.295182 +2720.471805 +2720.593050 +2720.607070 +2720.637073 +2720.652691 +2720.681129 +2720.788255 +2720.853456 +2720.868608 +2720.909334 +2720.941302 +2720.953523 +2720.982094 +2721.010499 +2721.024252 +2721.134009 +2721.156686 +2721.190186 +2721.233443 +2721.248761 +2721.278098 +2721.304138 +2721.328581 +2721.350592 +2721.450425 +2721.483526 +2721.560016 +2721.585856 +2721.627581 +2731.706026 +2731.711621 +2734.706523 +2735.707421 +2735.711583 +2736.706088 +2741.706416 +2742.207381 +2742.708246 +2743.007413 +2743.107413 +2743.207480 +2743.207780 +2743.307446 +2743.307613 +2743.407779 +2743.708378 +2743.907346 +2744.007379 +2745.208111 +2745.307311 +2745.407311 +2746.707277 +2751.705507 +2751.880198 +2751.945799 +2751.981630 +2752.052726 +2752.126352 +2752.152160 +2752.321190 +2752.347098 +2752.523521 +2752.606405 +2752.709402 +2752.855156 +2752.931646 +2752.933378 +2752.990021 +2753.043967 +2753.055688 +2753.070407 +2753.097080 +2753.161849 +2753.191120 +2753.332245 +2753.357753 +2753.387290 +2753.409901 +2753.446231 +2753.470706 +2753.505039 +2753.539671 +2753.571572 +2753.692185 +2753.776534 +2753.828681 +2753.855754 +2753.883593 +2753.897179 +2753.958618 +2753.981428 +2754.001875 +2754.054256 +2754.100343 +2754.170806 +2754.197912 +2754.290919 +2754.320323 +2754.378031 +2754.431578 +2754.470705 +2754.485124 +2754.502540 +2754.516593 +2754.530279 +2754.572570 +2754.600309 +2754.615927 +2754.631311 +2754.658184 +2754.683992 +2754.728447 +2754.798477 +2754.826183 +2754.895447 +2754.913862 +2754.940801 +2755.026882 +2755.058917 +2755.088187 +2755.115926 +2755.133509 +2755.162080 +2755.222886 +2755.364444 +2755.396212 +2755.424850 +2755.484224 +2755.501174 +2755.518756 +2755.547561 +2755.549126 +2755.652755 +2755.681060 +2755.699142 +2755.714427 +2755.760281 +2755.775965 +2755.791916 +2755.807767 +2755.822685 +2755.851157 +2755.912229 +2755.927147 +2755.974134 +2755.989052 +2756.031210 +2756.092182 +2756.109432 +2756.165509 +2756.198776 +2756.241133 +2756.256784 +2756.298043 +2756.314526 +2756.402005 +2756.416191 +2756.461912 +2756.520853 +2756.536970 +2756.594846 +2756.684123 +2766.705225 +2767.705357 +2768.705023 +2768.705356 +2769.705988 +2770.705255 +2770.705421 +2771.704821 +2771.705120 +2771.710948 +2777.206114 +2777.807179 +2778.306246 +2778.406712 +2778.907045 +2779.106179 +2779.406311 +2779.506245 +2779.706278 +2779.906577 +2780.106244 +2780.107110 +2780.206977 +2780.406277 +2780.506277 +2781.107176 +2781.405777 +2786.704506 +2786.715795 +2786.914196 +2786.959850 +2786.989621 +2787.059051 +2787.093483 +2787.121489 +2787.179331 +2787.243533 +2787.254023 +2787.265578 +2787.293516 +2787.345897 +2787.372071 +2787.415694 +2787.441035 +2787.463147 +2787.543633 +2787.574302 +2787.625417 +2787.666610 +2787.692484 +2787.765677 +2787.801741 +2787.825617 +2787.954888 +2788.007835 +2788.064078 +2788.141534 +2788.161847 +2788.194814 +2788.241567 +2788.242200 +2788.265943 +2788.292849 +2788.316692 +2788.341268 +2788.406835 +2788.486489 +2788.499542 +2788.537338 +2788.602573 +2788.617258 +2788.666242 +2788.692483 +2788.732443 +2788.746495 +2788.834707 +2788.862612 +2788.884790 +2788.915759 +2788.938203 +2788.981127 +2789.005702 +2789.048793 +2789.074167 +2789.186155 +2789.208999 +2789.222319 +2789.244497 +2789.285323 +2789.286155 +2789.310164 +2789.325949 +2789.340601 +2789.364010 +2789.392349 +2789.404303 +2789.461280 +2789.475366 +2789.528179 +2789.541932 +2789.556484 +2789.584157 +2789.613527 +2789.641466 +2789.656151 +2789.669971 +2789.684257 +2789.709898 +2789.780360 +2789.796511 +2789.810597 +2789.835705 +2789.852388 +2789.878129 +2789.892981 +2789.921486 +2789.950357 +2790.018489 +2790.034906 +2790.046527 +2790.074599 +2790.090883 +2790.129244 +2790.146727 +2790.160713 +2790.218255 +2790.263677 +2790.365841 +2790.410330 +2790.454819 +2790.495977 +2790.586687 +2790.600106 +2790.615591 +2790.658848 +2790.671735 +2790.688085 +2790.689484 +2790.715058 +2790.734971 +2790.777229 +2790.789384 +2790.790150 +2790.803836 +2790.953320 +2790.954718 +2790.969403 +2790.993280 +2791.107166 +2791.121851 +2791.166173 +2791.229909 +2791.271002 +2791.300805 +2791.351821 +2791.392946 +2791.408297 +2791.431874 +2791.506566 +2791.578161 +2801.704990 +2801.710052 +2802.704923 +2802.705223 +2802.705722 +2803.705288 +2805.704787 +2805.709981 +2806.705085 +2806.705318 +2806.705485 +2806.705785 +2811.704747 +2811.705047 +2811.709543 +2811.711341 +2811.805613 +2811.805746 +2811.806212 +2812.006212 +2812.006812 +2813.006578 +2813.207377 +2813.507376 +2813.606544 +2813.807443 +2814.206643 +2814.506676 +2815.006576 +2815.106642 +2815.507474 +2815.606375 +2815.906308 +2816.406674 +2816.606707 +2821.705104 +2821.757917 +2821.839869 +2821.868840 +2821.933775 +2821.975633 +2822.008966 +2822.040335 +2822.074401 +2822.152189 +2822.200841 +2822.235473 +2822.246495 +2822.301773 +2822.387654 +2822.449259 +2822.466042 +2822.489052 +2822.543964 +2822.563045 +2822.625083 +2822.652655 +2822.763078 +2822.808100 +2822.855019 +2822.905302 +2822.939668 +2822.969904 +2823.013894 +2823.040633 +2823.095978 +2823.098342 +2823.128446 +2823.159348 +2823.218689 +2823.247793 +2823.278329 +2823.290350 +2823.343530 +2823.382558 +2823.407866 +2823.432741 +2823.473134 +2823.497443 +2823.559081 +2823.582957 +2823.615058 +2823.665641 +2823.681226 +2823.705535 +2823.727479 +2823.751322 +2823.816856 +2823.837869 +2823.849923 +2823.865608 +2823.891016 +2823.942397 +2824.006533 +2824.019554 +2824.052421 +2824.089583 +2824.115224 +2824.151521 +2824.240999 +2824.272234 +2824.320719 +2824.333140 +2824.390649 +2824.403136 +2824.458581 +2824.492014 +2824.520386 +2824.531708 +2824.589150 +2824.612627 +2824.669703 +2824.681491 +2824.696010 +2824.719719 +2824.758314 +2824.774897 +2824.788717 +2824.844494 +2824.873432 +2825.012127 +2825.027778 +2825.054451 +2825.083655 +2825.141564 +2825.169169 +2825.216189 +2825.241064 +2825.265906 +2825.381124 +2825.408030 +2825.449222 +2825.465539 +2825.520784 +2825.545726 +2825.559112 +2825.572566 +2825.627111 +2825.685220 +2825.700005 +2825.712492 +2825.743395 +2825.834170 +2825.922948 +2825.962609 +2825.965073 +2826.032305 +2826.116887 +2826.177893 +2826.264540 +2826.279258 +2826.293910 +2826.308729 +2826.357380 +2826.409828 +2826.425578 +2826.608862 +2826.641562 +2834.879483 +2835.879915 +2836.879814 +2836.880280 +2836.884942 +2837.880179 +2838.880345 +2839.880044 +2839.884206 +2844.879772 +2844.880105 +2844.985467 +2845.281470 +2845.381437 +2845.681337 +2846.081669 +2846.481702 +2847.184898 +2847.284832 +2847.481735 +2848.085031 +2849.481766 +2854.997445 +2855.064011 +2855.127548 +2855.185223 +2855.245130 +2855.324451 +2855.384690 +2855.441434 +2855.556252 +2855.567441 +2855.641234 +2855.662279 +2855.671770 +2855.692083 +2855.726282 +2855.749092 +2855.836738 +2855.868073 +2855.928646 +2855.939435 +2856.038602 +2856.101340 +2856.125449 +2856.146561 +2856.166075 +2856.217557 +2856.290117 +2856.316990 +2856.342298 +2856.356185 +2856.409231 +2856.432575 +2856.454719 +2856.508166 +2856.554320 +2856.569071 +2856.594912 +2856.645695 +2856.672535 +2856.713227 +2856.738036 +2856.776863 +2856.791982 +2856.855518 +2856.899274 +2856.922118 +2856.944096 +2856.965275 +2857.027046 +2857.043630 +2857.083790 +2857.121818 +2857.150456 +2857.178561 +2857.203137 +2857.216856 +2857.229843 +2857.253753 +2857.334339 +2857.358614 +2857.384788 +2857.397509 +2857.420686 +2857.422118 +2857.447725 +2857.490083 +2857.533306 +2857.618421 +2857.673566 +2857.687585 +2857.703869 +2857.715957 +2857.728178 +2857.729576 +2857.743163 +2857.781957 +2857.794378 +2857.820918 +2857.832906 +2857.847192 +2857.862011 +2857.875597 +2857.916589 +2857.927512 +2857.955683 +2857.970802 +2857.984654 +2858.010129 +2858.023482 +2858.037901 +2858.061677 +2858.089283 +2858.103103 +2858.113825 +2858.129343 +2858.165740 +2858.190182 +2858.205467 +2858.244061 +2858.285420 +2858.313758 +2858.358647 +2858.372633 +2858.384188 +2858.414458 +2858.503568 +2858.516189 +2858.530208 +2858.545826 +2858.638666 +2858.667038 +2858.680058 +2869.880713 +2869.881113 +2870.880879 +2870.881212 +2871.886872 +2872.881010 +2872.881409 +2872.881776 +2872.886604 +2873.881708 +2874.881641 +2879.882202 +2879.983001 +2880.183633 +2880.283966 +2880.383800 +2880.384033 +2880.484033 +2880.484465 +2880.983965 +2881.283832 +2881.290692 +2881.484931 +2881.584065 +2881.683998 +2881.784031 +2881.884131 +2881.984064 +2881.984098 +2882.284197 +2882.484164 +2882.684230 +2882.684263 +2882.784896 +2883.384130 +2883.584962 +2883.684396 +2884.585360 +2889.883790 +2890.051789 +2890.073267 +2890.124083 +2890.158548 +2890.182658 +2890.218355 +2890.254219 +2890.432041 +2890.455884 +2890.475198 +2890.507932 +2890.556017 +2890.580792 +2890.635904 +2890.702604 +2890.724249 +2890.759780 +2890.820885 +2890.900206 +2890.912360 +2890.986087 +2891.017888 +2891.043862 +2891.056316 +2891.135803 +2891.184888 +2891.259813 +2891.279926 +2891.300539 +2891.392546 +2891.420119 +2891.519619 +2891.555350 +2891.556482 +2891.580925 +2891.628643 +2891.642230 +2891.694145 +2891.743462 +2891.756815 +2891.807864 +2891.864740 +2891.877894 +2891.889149 +2891.903302 +2891.917255 +2891.930275 +2891.944594 +2891.966072 +2891.988583 +2892.025213 +2892.066938 +2892.081024 +2892.120817 +2892.147524 +2892.149722 +2892.173764 +2892.188550 +2892.225013 +2892.261810 +2892.304201 +2892.317221 +2892.344161 +2892.365905 +2892.378493 +2892.403768 +2892.438433 +2892.479692 +2892.491280 +2892.504100 +2892.531673 +2892.543894 +2892.553285 +2892.571433 +2892.643994 +2892.692012 +2892.705166 +2892.728176 +2892.743095 +2892.746225 +2892.756614 +2892.770167 +2892.782622 +2892.812392 +2892.824713 +2892.826744 +2892.854383 +2892.869568 +2892.883054 +2892.909728 +2892.992778 +2893.008163 +2893.021183 +2893.059345 +2893.061776 +2893.111159 +2893.130174 +2893.158912 +2893.160210 +2893.185851 +2893.213723 +2893.224879 +2893.237400 +2893.249421 +2893.273797 +2893.277693 +2893.313657 +2893.343027 +2893.367103 +2893.384153 +2893.423280 +2893.449121 +2893.450786 +2893.462008 +2893.480590 +2893.521482 +2893.546590 +2893.560077 +2893.563906 +2893.575295 +2893.602168 +2893.617952 +2893.633004 +2893.658478 +2893.672464 +2893.787383 +2894.000369 +2904.885307 +2904.885607 +2905.886072 +2906.885904 +2907.886270 +2907.886769 +2908.892929 +2914.885930 +2914.986595 +2914.987361 +2915.086995 +2915.287294 +2915.487328 +2915.488327 +2915.587427 +2915.987494 +2916.087360 +2916.387493 +2916.487493 +2916.587526 +2916.687559 +2916.787360 +2917.287526 +2917.388258 +2917.988257 +2918.587591 +2919.087557 +2919.187590 +2919.387457 +2919.587590 +2919.687490 +2919.787556 +2924.918986 +2924.960678 +2925.010395 +2925.070868 +2925.105766 +2925.257681 +2925.289416 +2925.321250 +2925.380991 +2925.411893 +2925.440398 +2925.475330 +2925.523615 +2925.554017 +2925.600538 +2925.643495 +2925.720418 +2925.757813 +2925.801769 +2925.897840 +2925.962242 +2926.021549 +2926.070900 +2926.095376 +2926.133138 +2926.215389 +2926.241230 +2926.297906 +2926.411626 +2926.438132 +2926.486584 +2926.513624 +2926.577893 +2926.653783 +2926.679058 +2926.745258 +2926.770433 +2926.809694 +2926.835335 +2926.874029 +2926.875095 +2926.911692 +2926.915688 +2926.916287 +2926.977925 +2927.002368 +2927.019351 +2927.045957 +2927.097506 +2927.161442 +2927.190513 +2927.217019 +2927.229807 +2927.257312 +2927.270233 +2927.324412 +2927.339464 +2927.363906 +2927.417352 +2927.431838 +2927.457945 +2927.483220 +2927.498771 +2927.522780 +2927.546190 +2927.558811 +2927.579490 +2927.590113 +2927.606929 +2927.642360 +2927.653816 +2927.668767 +2927.710192 +2927.750119 +2927.764272 +2927.803999 +2927.832537 +2927.847055 +2927.860042 +2927.911990 +2927.913223 +2927.938963 +2927.952517 +2927.988947 +2928.004065 +2928.057611 +2928.071930 +2928.086449 +2928.098404 +2928.109326 +2928.135966 +2928.172929 +2928.186882 +2928.201367 +2928.214921 +2928.276692 +2928.319582 +2928.361041 +2928.387481 +2928.400735 +2928.415387 +2928.483652 +2928.496938 +2928.510891 +2928.522946 +2928.550551 +2928.603465 +2928.664937 +2928.690711 +2928.717817 +2928.954314 +2939.890866 +2941.887101 +2942.887200 +2942.891662 +2943.886866 +2943.887133 +2944.887098 +2949.886527 +2949.992788 +2950.389091 +2952.788056 +2952.887890 +2953.487822 +2953.688355 +2953.888255 +2954.087822 +2954.894115 +2959.890946 +2959.964073 +2959.982921 +2960.019318 +2960.053317 +2960.095908 +2960.137999 +2960.221715 +2960.251985 +2960.304632 +2960.341795 +2960.402035 +2960.403566 +2960.454216 +2960.509494 +2960.532604 +2960.556646 +2960.580056 +2960.606197 +2960.663539 +2960.746889 +2960.868534 +2960.880522 +2960.892544 +2960.941761 +2960.965903 +2960.986283 +2961.026909 +2961.075960 +2961.099037 +2961.122880 +2961.201501 +2961.327575 +2961.348254 +2961.363306 +2961.399969 +2961.413056 +2961.462307 +2961.530805 +2961.541827 +2961.554581 +2961.608860 +2961.646589 +2961.669666 +2961.692243 +2961.731504 +2961.744124 +2961.754814 +2961.792809 +2961.876592 +2961.899502 +2961.932503 +2961.956512 +2961.993541 +2962.006262 +2962.015353 +2962.066036 +2962.087514 +2962.100335 +2962.122912 +2962.136898 +2962.150784 +2962.175493 +2962.219216 +2962.232369 +2962.244757 +2962.269931 +2962.290511 +2962.341959 +2962.353381 +2962.377923 +2962.415785 +2962.467334 +2962.479155 +2962.490078 +2962.523877 +2962.658343 +2962.670697 +2962.696371 +2962.722345 +2962.748752 +2962.788512 +2962.802498 +2962.878622 +2962.891343 +2962.903997 +2962.917283 +2962.929405 +2962.966701 +2962.978655 +2962.980387 +2963.121346 +2963.134466 +2963.199967 +2963.237330 +2963.247520 +2963.296970 +2963.422544 +2963.514619 +2963.592907 +2963.621945 +2974.885936 +2974.886069 +2975.886301 +2975.890630 +2978.886165 +2978.890594 +2979.885964 +2979.886064 +2984.885493 +2984.889289 +2984.986192 +2985.086525 +2985.087258 +2985.092286 +2985.186758 +2985.286792 +2985.386858 +2985.387724 +2985.486791 +2987.786856 +2988.587488 +2988.886888 +2994.889446 +2994.903099 +2994.923945 +2994.969932 +2995.071364 +2995.105963 +2995.128240 +2995.173162 +2995.196805 +2995.260175 +2995.325509 +2995.373661 +2995.399169 +2995.500967 +2995.513754 +2995.591843 +2995.611790 +2995.656978 +2995.684084 +2995.715186 +2995.745656 +2995.766168 +2995.793041 +2995.911889 +2995.935166 +2995.958243 +2995.982019 +2996.052615 +2996.087380 +2996.241626 +2996.266068 +2996.340160 +2996.373694 +2996.396970 +2996.409125 +2996.435099 +2996.472595 +2996.496637 +2996.522611 +2996.537962 +2996.562471 +2996.573394 +2996.597869 +2996.613487 +2996.626707 +2996.635698 +2996.648585 +2996.649684 +2996.662671 +2996.686314 +2996.786281 +2996.813620 +2996.835864 +2996.894339 +2996.907792 +2996.963270 +2996.974592 +2996.988345 +2997.050583 +2997.088678 +2997.141192 +2997.152447 +2997.166533 +2997.178888 +2997.189177 +2997.216949 +2997.297169 +2997.311555 +2997.320313 +2997.343623 +2997.367099 +2997.391908 +2997.447785 +2997.485214 +2997.551814 +2997.566599 +2997.578454 +2997.590642 +2997.659673 +2997.673159 +2997.685147 +2997.808324 +2997.820678 +2997.822010 +2997.874391 +2997.957808 +2997.983615 +2997.998767 +2998.013186 +2998.025041 +2998.068464 +2998.094671 +2998.107625 +2998.147718 +2998.173126 +2998.296136 +2998.319879 +2998.347884 +2998.383415 +2998.396302 +2998.437095 +2998.550515 +2999.350813 +3009.885169 +3009.885435 +3011.885833 +3011.889829 +3012.885698 +3014.886329 +3019.885358 +3019.985858 +3020.186457 +3020.886689 +3020.986723 +3021.185923 +3021.487355 +3021.886888 +3022.486754 +3022.487354 +3022.986687 +3023.587453 +3023.787352 +3024.586719 +3029.973094 +3030.000966 +3030.042691 +3030.124109 +3030.144589 +3030.204529 +3030.247586 +3030.270230 +3030.467366 +3030.488644 +3030.560806 +3030.586546 +3030.631102 +3030.657276 +3030.700965 +3030.716317 +3030.788378 +3030.829603 +3030.885347 +3030.907392 +3030.957109 +3030.993373 +3031.018381 +3031.041891 +3031.102264 +3031.119779 +3031.141924 +3031.190608 +3031.272193 +3031.295537 +3031.371594 +3031.397368 +3031.421511 +3031.457774 +3031.551747 +3031.574058 +3031.644221 +3031.721144 +3031.735863 +3031.786912 +3031.811520 +3031.832965 +3031.834231 +3031.892772 +3031.918180 +3031.931533 +3031.971127 +3032.009922 +3032.105526 +3032.134197 +3032.146418 +3032.170061 +3032.186611 +3032.207657 +3032.221277 +3032.237361 +3032.260671 +3032.275756 +3032.300164 +3032.314117 +3032.326039 +3032.419279 +3032.448682 +3032.490307 +3032.502828 +3032.528536 +3032.541723 +3032.557174 +3032.571493 +3032.609555 +3032.638492 +3032.709921 +3032.790807 +3032.828702 +3032.852278 +3032.862002 +3032.920044 +3032.943154 +3032.977453 +3033.005825 +3033.035029 +3033.048582 +3033.064466 +3033.078186 +3033.091173 +3033.107090 +3033.120144 +3033.236494 +3033.279584 +3033.293836 +3033.351978 +3033.396767 +3033.437559 +3033.451612 +3033.496500 +3033.539357 +3033.555008 +3033.744985 +3033.789374 +3033.968395 +3034.428567 +3045.890794 +3046.886031 +3048.885796 +3048.886062 +3048.886162 +3049.886061 +3049.886261 +3054.885756 +3054.885956 +3055.987320 +3057.887984 +3058.087418 +3059.088183 +3064.888810 +3064.889842 +3064.926073 +3064.974790 +3065.059839 +3065.115716 +3065.197634 +3065.240291 +3065.284880 +3065.311054 +3065.386512 +3065.410021 +3065.447284 +3065.474324 +3065.507324 +3065.562802 +3065.610188 +3065.635163 +3065.703195 +3065.760304 +3065.785679 +3065.831566 +3065.891972 +3065.905759 +3065.932399 +3065.958772 +3065.981816 +3066.020177 +3066.044420 +3066.190540 +3066.283547 +3066.332398 +3066.350080 +3066.386344 +3066.397233 +3066.407257 +3066.407456 +3066.422042 +3066.505325 +3066.558605 +3066.584013 +3066.610387 +3066.625671 +3066.651112 +3066.692305 +3066.760869 +3066.774289 +3066.789807 +3066.816547 +3066.830266 +3066.830932 +3066.878918 +3066.956773 +3066.974056 +3066.998232 +3067.033896 +3067.070226 +3067.083846 +3067.132264 +3067.184911 +3067.199230 +3067.212151 +3067.254042 +3067.281215 +3067.283613 +3067.295534 +3067.297266 +3067.337226 +3067.339457 +3067.352111 +3067.381415 +3067.477052 +3067.576852 +3067.600828 +3067.620742 +3067.637558 +3067.665097 +3067.720942 +3067.737825 +3067.762999 +3067.766096 +3067.791904 +3067.818311 +3067.858704 +3067.860235 +3067.916712 +3067.941621 +3068.001461 +3068.015347 +3068.042886 +3068.070891 +3068.084877 +3068.157138 +3068.168926 +3068.224904 +3068.239622 +3068.280115 +3068.294934 +3068.308687 +3068.324671 +3068.343485 +3068.610484 +3068.741487 +3068.828100 +3068.946182 +3069.073421 +3069.211683 +3079.885598 +3082.886294 +3082.886561 +3083.886626 +3084.886625 +3089.886187 +3090.087186 +3090.187386 +3090.587585 +3090.687652 +3091.287585 +3091.587618 +3092.587317 +3092.787550 +3093.279957 +3093.283387 +3093.287283 +3093.356314 +3093.359477 +3094.452583 +3094.456513 +3094.487382 +3094.588214 +3094.687381 +3094.787315 +3099.889641 +3099.984845 +3100.075055 +3100.085345 +3100.188608 +3100.231998 +3100.244719 +3100.289540 +3100.312118 +3100.438991 +3100.498165 +3100.507689 +3100.535894 +3100.561268 +3100.585677 +3100.726403 +3100.757938 +3100.817745 +3100.852777 +3100.866996 +3100.920009 +3100.946383 +3101.023206 +3101.061501 +3101.074921 +3101.134561 +3101.173422 +3101.188607 +3101.327501 +3101.379816 +3101.416579 +3101.441321 +3101.495766 +3101.568527 +3101.608054 +3101.620042 +3101.620974 +3101.672323 +3101.726269 +3101.777717 +3101.780215 +3101.818510 +3101.830065 +3101.911250 +3101.924137 +3102.003092 +3102.088673 +3102.194134 +3102.290537 +3102.334227 +3102.361233 +3102.402292 +3102.428000 +3102.457537 +3102.542618 +3102.584876 +3102.599262 +3102.610983 +3102.640587 +3102.652375 +3102.698163 +3102.711349 +3102.725469 +3102.739688 +3102.763231 +3102.818409 +3102.875885 +3102.916711 +3102.961233 +3103.007653 +3103.034193 +3103.079747 +3103.109817 +3103.124802 +3103.153807 +3103.168925 +3103.347679 +3103.422671 +3103.574885 +3103.666060 +3103.773420 +3103.969856 +3114.885796 +3114.886029 +3115.886594 +3116.886061 +3116.886793 +3118.886358 +3119.886391 +3124.885786 +3124.986519 +3127.187615 +3128.287181 +3128.687680 +3129.188146 +3129.387646 +3129.388146 +3129.788212 +3132.400297 +3134.886542 +3134.896066 +3134.945583 +3134.984178 +3135.025570 +3135.101394 +3135.160235 +3135.197764 +3135.290105 +3135.350977 +3135.391936 +3135.418942 +3135.509119 +3135.543551 +3135.586108 +3135.678849 +3135.701360 +3135.762865 +3135.800461 +3135.834893 +3135.870424 +3135.922172 +3135.944416 +3136.004989 +3136.064962 +3136.088805 +3136.116278 +3136.150577 +3136.173321 +3136.249111 +3136.263997 +3136.291203 +3136.339954 +3136.366327 +3136.392235 +3136.415545 +3136.598095 +3136.622471 +3136.635958 +3136.706986 +3136.759900 +3136.797796 +3136.812781 +3136.837589 +3136.875451 +3136.875951 +3136.904256 +3136.932328 +3136.999893 +3137.023536 +3137.050742 +3137.072287 +3137.075251 +3137.182078 +3137.222837 +3137.247479 +3137.260199 +3137.318075 +3137.414378 +3137.431561 +3137.470922 +3137.486440 +3137.515177 +3137.530262 +3137.599160 +3137.600559 +3137.626533 +3137.643449 +3137.655204 +3137.714178 +3137.726066 +3137.752973 +3137.796796 +3137.798427 +3137.897195 +3137.926233 +3137.967025 +3137.982576 +3138.011980 +3138.029030 +3138.056635 +3138.082843 +3138.156302 +3138.185906 +3138.187271 +3138.230728 +3138.245180 +3138.275916 +3138.320471 +3138.335956 +3138.365992 +3138.367091 +3138.380844 +3138.471487 +3138.666059 +3138.681343 +3138.698127 +3138.835090 +3149.885595 +3150.885993 +3150.886260 +3150.886726 +3151.886292 +3151.886492 +3151.886991 +3151.887258 +3153.886956 +3154.886988 +3159.885718 +3159.986217 +3160.387216 +3160.587282 +3160.687216 +3160.787282 +3161.887214 +3162.087414 +3162.587247 +3162.887313 +3163.287379 +3169.885741 +3169.929031 +3169.960433 +3170.006087 +3170.148212 +3170.198228 +3170.222238 +3170.279447 +3170.299594 +3170.346513 +3170.671821 +3170.735257 +3170.762064 +3170.787938 +3170.821504 +3170.861897 +3170.935557 +3170.947978 +3171.025500 +3171.090402 +3171.166792 +3171.207685 +3171.219906 +3171.244981 +3171.295030 +3171.318074 +3171.380378 +3171.391534 +3171.476948 +3171.502356 +3171.541917 +3171.568224 +3171.596395 +3171.623235 +3171.698094 +3171.816508 +3171.845912 +3171.859299 +3171.882809 +3171.897894 +3171.938986 +3171.962229 +3171.977314 +3172.004720 +3172.034257 +3172.071720 +3172.109782 +3172.141716 +3172.163694 +3172.321037 +3172.357900 +3172.373717 +3172.409182 +3172.441316 +3172.468456 +3172.483507 +3172.509681 +3172.536188 +3172.551772 +3172.578979 +3172.594596 +3172.626631 +3172.647976 +3172.672285 +3172.711213 +3172.725232 +3172.749974 +3172.777480 +3172.788769 +3172.819305 +3172.842881 +3172.857300 +3172.881143 +3172.918772 +3172.932991 +3172.946810 +3173.006084 +3173.035488 +3173.049641 +3173.065891 +3173.082441 +3173.140716 +3173.227263 +3173.273650 +3173.334322 +3173.361395 +3173.557399 +3173.644945 +3173.674682 +3173.721635 +3173.721801 +3173.733889 +3173.748874 +3173.749041 +3173.796526 +3173.825830 +3174.046576 +3174.120036 +3174.137518 +3184.885726 +3186.890519 +3187.886156 +3187.886855 +3187.891451 +3188.886222 +3189.886021 +3194.885516 +3194.885616 +3195.487048 +3195.586948 +3195.687114 +3196.087080 +3196.987046 +3198.187078 +3203.096364 +3204.890068 +3204.895729 +3204.911014 +3204.956069 +3205.014477 +3205.034724 +3205.082043 +3205.128496 +3205.194131 +3205.208983 +3205.270521 +3205.328863 +3205.357101 +3205.394697 +3205.459498 +3205.492699 +3205.527397 +3205.571520 +3205.590034 +3205.688536 +3205.713777 +3205.735322 +3205.773151 +3205.809481 +3205.896794 +3205.960064 +3206.044613 +3206.072884 +3206.121636 +3206.240617 +3206.392897 +3206.465924 +3206.505551 +3206.556001 +3206.619970 +3206.700323 +3206.741215 +3206.780143 +3206.790832 +3206.805052 +3206.828162 +3206.841349 +3206.842015 +3206.866190 +3206.889267 +3206.913376 +3206.925664 +3206.947476 +3206.958565 +3207.000689 +3207.038318 +3207.053769 +3207.082674 +3207.105251 +3207.119337 +3207.129327 +3207.130492 +3207.208115 +3207.221834 +3207.248175 +3207.274049 +3207.286270 +3207.299390 +3207.312777 +3207.326829 +3207.350173 +3207.399756 +3207.473383 +3207.511811 +3207.536686 +3207.550738 +3207.563093 +3207.610312 +3207.638384 +3207.651804 +3207.664158 +3207.677611 +3207.717438 +3207.758064 +3207.794661 +3207.819436 +3207.846109 +3207.873049 +3207.885603 +3207.898291 +3207.925030 +3207.950938 +3207.964458 +3207.967022 +3207.990132 +3208.006049 +3208.033555 +3208.046342 +3208.072316 +3208.382972 +3208.442945 +3208.499722 +3208.568520 +3208.775179 +3208.819069 +3219.885125 +3219.885591 +3220.885657 +3221.885889 +3222.885622 +3222.885755 +3222.886054 +3223.885421 +3224.885786 +3229.885748 +3229.889944 +3229.890676 +3229.988878 +3232.287244 +3233.087110 +3233.986376 +3239.889134 +3239.981509 +3240.001921 +3240.042348 +3240.135754 +3240.181209 +3240.208082 +3240.253037 +3240.451705 +3240.518604 +3240.624931 +3240.708947 +3240.838984 +3240.922467 +3240.937052 +3240.985570 +3241.022000 +3241.066356 +3241.103619 +3241.141814 +3241.234188 +3241.247308 +3241.270085 +3241.307714 +3241.329293 +3241.381540 +3241.431590 +3241.445776 +3241.619569 +3241.644377 +3241.745410 +3241.756232 +3241.768120 +3241.792129 +3241.794294 +3241.805316 +3241.850171 +3241.862759 +3241.876478 +3241.895892 +3241.908380 +3241.933321 +3241.946142 +3242.001120 +3242.079275 +3242.118902 +3242.121000 +3242.185935 +3242.208180 +3242.224430 +3242.264523 +3242.281440 +3242.304716 +3242.331423 +3242.411543 +3242.425828 +3242.451136 +3242.479408 +3242.493194 +3242.604217 +3242.632688 +3242.646707 +3242.711309 +3242.749371 +3242.831989 +3242.845508 +3242.887400 +3242.902218 +3242.915705 +3243.023930 +3243.088898 +3243.116304 +3243.211708 +3243.239847 +3243.369018 +3243.456697 +3243.468984 +3254.885223 +3254.885456 +3255.885788 +3256.885887 +3257.885820 +3258.885286 +3259.885651 +3264.888743 +3265.985445 +3266.186444 +3268.687407 +3269.287473 +3274.888933 +3275.018237 +3275.049838 +3275.167987 +3275.189898 +3275.212742 +3275.324930 +3275.358862 +3275.434387 +3275.505349 +3275.549572 +3275.570884 +3275.603717 +3275.620034 +3275.644876 +3275.669818 +3275.670684 +3275.736085 +3275.749438 +3275.771916 +3275.848173 +3275.872648 +3275.898556 +3275.932621 +3275.983237 +3276.019301 +3276.032122 +3276.062891 +3276.109411 +3276.172515 +3276.199787 +3276.212075 +3276.248206 +3276.261859 +3276.286767 +3276.310310 +3276.395558 +3276.428059 +3276.497156 +3276.602584 +3276.626360 +3276.651169 +3276.675245 +3276.699354 +3276.727526 +3276.752068 +3276.777442 +3276.816537 +3276.934752 +3276.974978 +3276.987898 +3277.202717 +3277.227559 +3277.241744 +3277.308478 +3277.363256 +3277.405381 +3277.432021 +3277.449070 +3277.474611 +3277.528058 +3277.630855 +3277.661324 +3277.686000 +3277.703049 +3277.786732 +3277.830588 +3277.853132 +3277.883202 +3277.927758 +3278.029356 +3278.059559 +3278.103682 +3278.148537 +3278.221464 +3278.234684 +3278.276875 +3278.290328 +3278.317468 +3278.346172 +3278.360758 +3278.376142 +3278.403348 +3278.460824 +3278.463788 +3278.504680 +3278.593858 +3278.730787 +3278.743241 +3278.818033 +3278.819199 +3278.834550 +3279.188695 +3279.261190 +3289.885388 +3289.886087 +3289.889983 +3290.885787 +3290.890549 +3291.885286 +3292.885651 +3292.885951 +3293.885884 +3299.885245 +3300.386643 +3300.586609 +3300.787375 +3300.886742 +3301.287408 +3301.686775 +3302.187174 +3302.887306 +3303.286807 +3303.486473 +3303.786806 +3304.287505 +3304.686838 +3304.886405 +3309.889264 +3310.009144 +3310.063090 +3310.109077 +3310.136983 +3310.190396 +3310.283836 +3310.314139 +3310.324861 +3310.360592 +3310.392927 +3310.489763 +3310.525427 +3310.539413 +3310.541045 +3310.567052 +3310.665354 +3310.726892 +3310.834784 +3310.885067 +3310.911774 +3310.980439 +3311.005014 +3311.028724 +3311.093359 +3311.204548 +3311.216669 +3311.304481 +3311.350535 +3311.375976 +3311.377941 +3311.400218 +3311.439146 +3311.499819 +3311.527191 +3311.577374 +3311.627624 +3311.656429 +3311.680738 +3311.695290 +3311.762056 +3311.801284 +3311.828390 +3311.855263 +3311.880304 +3311.948303 +3312.003115 +3312.094490 +3312.134583 +3312.202515 +3312.218399 +3312.257494 +3312.300051 +3312.326558 +3312.366218 +3312.381569 +3312.404113 +3312.468616 +3312.480404 +3312.548302 +3312.563454 +3312.606777 +3312.663520 +3312.677706 +3312.782834 +3312.811372 +3312.828322 +3312.828489 +3312.842641 +3312.856094 +3312.910906 +3313.004879 +3313.046770 +3313.087529 +3313.104379 +3313.146037 +3313.146237 +3313.175908 +3313.191991 +3313.307942 +3313.367716 +3313.503546 +3313.529953 +3313.603846 +3313.741275 +3313.754795 +3322.826181 +3322.845628 +3324.885353 +3325.885951 +3327.891411 +3328.886115 +3329.885914 +3329.886081 +3329.886680 +3329.890709 +3334.889539 +3334.891237 +3335.085842 +3336.587106 +3336.887039 +3337.287039 +3338.686938 +3344.885000 +3344.885466 +3344.894990 +3344.902183 +3344.943708 +3344.970814 +3345.137547 +3345.198919 +3345.232053 +3345.350201 +3345.376042 +3345.442942 +3345.591793 +3345.617167 +3345.653864 +3345.708109 +3345.740311 +3345.824959 +3345.912372 +3345.984866 +3346.009241 +3346.068715 +3346.132884 +3346.167849 +3346.216267 +3346.217866 +3346.242375 +3346.268782 +3346.269647 +3346.314403 +3346.327523 +3346.338945 +3346.409874 +3346.426224 +3346.448801 +3346.563753 +3346.564719 +3346.578505 +3346.603846 +3346.630087 +3346.666117 +3346.733083 +3346.787329 +3346.800982 +3346.851798 +3346.880003 +3346.892158 +3346.917332 +3346.946170 +3346.968581 +3346.980269 +3347.007442 +3347.035914 +3347.048601 +3347.049667 +3347.089527 +3347.171711 +3347.173642 +3347.200982 +3347.282101 +3347.306876 +3347.366183 +3347.419297 +3347.473476 +3347.475607 +3347.489027 +3347.537478 +3347.613169 +3347.613835 +3347.713602 +3347.738111 +3347.780668 +3347.794155 +3347.809606 +3347.824225 +3347.837744 +3347.865650 +3347.891457 +3347.892889 +3347.907341 +3347.921660 +3347.934214 +3347.950198 +3348.017764 +3348.083532 +3348.273974 +3348.288160 +3348.344204 +3348.385529 +3348.410871 +3348.461753 +3348.709971 +3348.816065 +3348.948366 +3359.885584 +3359.885884 +3359.886051 +3359.891845 +3360.886416 +3361.886382 +3361.886615 +3362.886481 +3363.885947 +3363.886446 +3369.987472 +3370.087139 +3370.187406 +3370.487638 +3370.787638 +3370.887571 +3371.887737 +3372.087703 +3374.588600 +3379.885931 +3379.886164 +3379.896487 +3379.926823 +3379.933716 +3380.014036 +3380.068148 +3380.174875 +3380.356227 +3380.526656 +3380.547735 +3380.589859 +3380.612903 +3380.649100 +3380.707309 +3380.745337 +3380.793622 +3380.850499 +3380.938943 +3380.979636 +3381.000848 +3381.012403 +3381.055826 +3381.129519 +3381.155626 +3381.207508 +3381.220095 +3381.245603 +3381.267981 +3381.292323 +3381.315500 +3381.403012 +3381.462919 +3381.504910 +3381.533981 +3381.557990 +3381.572209 +3381.638843 +3381.661653 +3381.727321 +3381.739509 +3381.794587 +3381.820294 +3381.847467 +3381.873241 +3381.900048 +3381.936678 +3382.048966 +3382.110404 +3382.268612 +3382.381266 +3382.407773 +3382.425522 +3382.438675 +3382.463950 +3382.479934 +3382.507107 +3382.534579 +3382.605742 +3382.632681 +3382.647999 +3382.693587 +3382.744170 +3382.771143 +3382.785295 +3382.842471 +3382.950297 +3382.966114 +3383.057956 +3383.100946 +3383.131682 +3383.144935 +3383.160853 +3383.203343 +3383.217862 +3383.233846 +3383.304808 +3383.320992 +3383.392854 +3383.422557 +3383.437609 +3383.482630 +3383.539906 +3383.585627 +3383.627419 +3383.643969 +3383.685361 +3383.732314 +3383.791455 +3383.835710 +3383.849263 +3383.880532 +3383.910535 +3383.936709 +3384.151294 +3384.238574 +3384.281198 +3384.588024 +3394.886815 +3395.887014 +3396.886713 +3396.886780 +3397.887178 +3398.887144 +3399.887176 +3405.387970 +3406.488868 +3407.088068 +3407.288068 +3407.788034 +3408.088034 +3408.288067 +3409.188099 +3409.488032 +3409.488865 +3414.886995 +3414.956891 +3414.988660 +3415.018530 +3415.122492 +3415.174740 +3415.211803 +3415.246202 +3415.270644 +3415.408373 +3415.443238 +3415.589225 +3415.638209 +3415.659954 +3415.695952 +3415.721926 +3415.849065 +3415.882964 +3416.013434 +3416.098082 +3416.125255 +3416.159221 +3416.201013 +3416.237743 +3416.260220 +3416.290823 +3416.305808 +3416.330150 +3416.355225 +3416.380699 +3416.423656 +3416.442404 +3416.492488 +3416.570376 +3416.625355 +3416.651495 +3416.691388 +3416.718095 +3416.783929 +3416.849563 +3416.894352 +3416.916496 +3416.950829 +3416.988158 +3417.036610 +3417.123756 +3417.140772 +3417.165014 +3417.179899 +3417.231847 +3417.297915 +3417.343136 +3417.369976 +3417.410069 +3417.435410 +3417.462283 +3417.476136 +3417.560951 +3417.576636 +3417.604241 +3417.630249 +3417.675470 +3417.699646 +3417.727585 +3417.743635 +3417.758753 +3417.771041 +3417.785693 +3417.858021 +3417.928051 +3417.944234 +3417.958287 +3417.984561 +3418.030282 +3418.057754 +3418.100744 +3418.160584 +3418.188623 +3418.288456 +3418.334477 +3418.350827 +3418.364713 +3418.393052 +3418.448696 +3418.496015 +3418.509802 +3418.553158 +3418.613265 +3418.672306 +3418.716295 +3418.731313 +3418.775502 +3418.908869 +3418.923487 +3418.937007 +3419.028549 +3419.057520 +3419.071339 +3419.088456 +3419.102941 +3419.238772 +3419.285425 +3419.343400 +3419.375035 +3419.801708 +3429.886014 +3430.886346 +3430.886446 +3431.886412 +3433.886176 +3433.886343 +3433.886809 +3433.891771 +3434.886242 +3440.987002 +3441.687001 +3442.287001 +3449.936510 +3450.040506 +3450.050030 +3450.060120 +3450.060319 +3450.085994 +3450.117695 +3450.341138 +3450.375571 +3450.390755 +3450.435610 +3450.471708 +3450.551062 +3450.591854 +3450.684128 +3450.709936 +3450.759286 +3450.841804 +3450.866080 +3450.913332 +3450.927585 +3450.999979 +3451.033878 +3451.065813 +3451.078633 +3451.103242 +3451.164448 +3451.198846 +3451.259086 +3451.273472 +3451.344467 +3451.371241 +3451.484594 +3451.506672 +3451.544567 +3451.585459 +3451.646465 +3451.659519 +3451.729882 +3451.847863 +3451.860351 +3451.873038 +3451.895682 +3451.944800 +3451.957121 +3451.988956 +3452.047264 +3452.112698 +3452.138073 +3452.204540 +3452.216694 +3452.242835 +3452.254423 +3452.268309 +3452.351759 +3452.430147 +3452.590986 +3452.681296 +3452.694316 +3452.708102 +3452.956720 +3452.984559 +3453.130513 +3453.303340 +3453.319024 +3453.329780 +3453.373736 +3453.400842 +; +59.673700 +95.097074 +95.263042 +99.367633 +204.658603 +207.151541 +238.934393 +273.860865 +274.115277 +286.765681 +321.373705 +324.104904 +411.496958 +445.182006 +480.738580 +585.666181 +588.230780 +637.027768 +643.228827 +643.729226 +644.331956 +644.430891 +644.731523 +645.030757 +645.231190 +645.430490 +645.732621 +646.332421 +653.070243 +654.568676 +656.931811 +656.933709 +656.948727 +657.481327 +657.623785 +657.743032 +657.923618 +669.030700 +673.031228 +676.961328 +678.229625 +678.429824 +678.834153 +679.033820 +680.034085 +680.532087 +681.433618 +681.534483 +682.732551 +682.831851 +688.055556 +689.815827 +690.541367 +691.744030 +692.164509 +692.570270 +692.654719 +692.801938 +692.908531 +713.632320 +713.734185 +714.232819 +714.333685 +714.335316 +714.533185 +714.533917 +714.633484 +714.934883 +715.433450 +716.134981 +717.433582 +717.533348 +723.039137 +723.046197 +723.082993 +723.204338 +723.337572 +723.384558 +723.439037 +723.610332 +723.670105 +723.728747 +723.882193 +724.392416 +725.115692 +725.469105 +725.758715 +725.848292 +726.129111 +726.373433 +742.029894 +748.431886 +748.932451 +749.233050 +749.733116 +750.033582 +750.432616 +750.532150 +750.631684 +750.832416 +752.033081 +752.133580 +752.332681 +752.334346 +752.432881 +758.841432 +759.241232 +759.611628 +760.438600 +760.602836 +760.633905 +760.668337 +760.682056 +760.759346 +760.903069 +760.930308 +761.143894 +761.193678 +761.327410 +761.567137 +761.633238 +761.661509 +761.759311 +761.811559 +761.965805 +762.160210 +762.274529 +762.339464 +762.421948 +762.689913 +762.690846 +762.700702 +762.739963 +762.784152 +762.808628 +762.916153 +762.980156 +773.030795 +777.028893 +783.532317 +783.930951 +784.331050 +784.732682 +785.631016 +785.731682 +785.732814 +785.831149 +785.832181 +786.232347 +786.233047 +786.332347 +786.531348 +786.631215 +786.933046 +787.032546 +787.132546 +787.232513 +787.331247 +787.430681 +787.531946 +787.631846 +793.096077 +793.947558 +794.697840 +795.987782 +796.335634 +797.033535 +797.087115 +797.329772 +797.727074 +797.799136 +818.431249 +818.532548 +818.632881 +818.831149 +819.732813 +819.833679 +820.833378 +820.933944 +821.232512 +821.333011 +822.433144 +822.732511 +828.192712 +828.407596 +828.518852 +828.645825 +828.712691 +828.744925 +828.789947 +828.930939 +829.155181 +829.157246 +829.205598 +831.689245 +832.109924 +832.572194 +832.656177 +832.967798 +853.432713 +853.733212 +853.933578 +854.633444 +855.134410 +855.234010 +855.632478 +855.833843 +856.433609 +856.833276 +857.333841 +863.727774 +864.615719 +866.472593 +867.137028 +867.785479 +867.858739 +881.031586 +888.531712 +889.133943 +889.134176 +889.233576 +889.534575 +890.333342 +898.046621 +899.135764 +899.716216 +899.892174 +900.405027 +900.407524 +900.744953 +901.484446 +901.677287 +901.940623 +902.172458 +902.475421 +902.709287 +902.853010 +902.958538 +902.960635 +902.998797 +903.314714 +918.031749 +923.130112 +923.833642 +924.231110 +924.332409 +924.531343 +925.332941 +926.632240 +926.833705 +927.032972 +927.434371 +927.931639 +932.045954 +932.763170 +933.029836 +933.148084 +933.209090 +933.342490 +933.438194 +933.440092 +933.716416 +933.895836 +933.923075 +933.972859 +934.033631 +934.207957 +934.314051 +935.403394 +935.447283 +935.522075 +935.667429 +935.719943 +935.911585 +936.673655 +937.085277 +937.101560 +937.208553 +937.498763 +937.970857 +958.531809 +959.233639 +959.633306 +959.832973 +960.634837 +960.932705 +961.032372 +961.132838 +961.133504 +961.432638 +961.433005 +961.934203 +962.234802 +962.533203 +968.030667 +968.043288 +968.046418 +968.055342 +968.066864 +968.261336 +968.339491 +968.365998 +968.491739 +968.674289 +968.720710 +968.997199 +969.225138 +969.863466 +970.055840 +970.289772 +970.686475 +971.745915 +972.138622 +993.430642 +993.934404 +996.035035 +996.134402 +996.332470 +996.833136 +997.135033 +997.234933 +1003.030033 +1004.696731 +1004.714313 +1005.752807 +1006.678081 +1006.816309 +1006.899626 +1006.981377 +1007.006952 +1007.148843 +1007.197661 +1007.253705 +1007.360931 +1007.400624 +1007.485772 +1007.560764 +1007.856934 +1007.872585 +1028.232272 +1029.432470 +1030.134168 +1030.135400 +1030.633235 +1030.634867 +1031.035266 +1031.234500 +1031.235332 +1031.433367 +1031.734066 +1031.934699 +1032.134965 +1032.234099 +1038.369291 +1039.245414 +1039.460266 +1040.823135 +1040.878746 +1041.327031 +1041.593897 +1041.845212 +1041.940583 +1041.965725 +1042.162994 +1042.670652 +1056.030279 +1063.030838 +1063.131138 +1063.210192 +1063.230172 +1063.332103 +1063.432536 +1063.932070 +1064.133501 +1064.332802 +1064.733301 +1065.234033 +1066.131934 +1067.031733 +1074.616807 +1075.793363 +1076.373149 +1077.819635 +1089.029713 +1098.130404 +1098.531036 +1098.931269 +1099.329670 +1100.432033 +1101.231033 +1102.032464 +1108.087903 +1108.135022 +1110.361460 +1111.919234 +1112.134019 +1112.500020 +1124.030311 +1126.031408 +1134.332932 +1134.433198 +1136.532230 +1136.532896 +1143.029926 +1143.065723 +1143.112144 +1143.148207 +1143.176313 +1145.745574 +1147.670980 +1147.840144 +1159.031442 +1168.030867 +1168.229534 +1168.330467 +1168.931798 +1169.031398 +1170.532462 +1171.233794 +1171.830696 +1172.132794 +1180.673511 +1182.139177 +1203.030066 +1203.030965 +1203.131531 +1203.231264 +1203.630831 +1204.231163 +1204.332429 +1205.332128 +1205.433660 +1206.629629 +1206.731993 +1207.832159 +1213.271014 +1214.854762 +1216.358590 +1217.586162 +1238.030464 +1238.130563 +1238.231362 +1238.431795 +1238.731295 +1238.829763 +1239.032860 +1239.233359 +1239.433193 +1239.533093 +1240.432959 +1240.433425 +1241.532758 +1241.634955 +1248.837979 +1249.350133 +1251.565382 +1251.915997 +1252.047333 +1252.406140 +1252.617062 +1273.231461 +1273.633159 +1274.631792 +1274.833590 +1275.234322 +1275.834422 +1276.036486 +1276.134122 +1276.335387 +1276.435220 +1276.535154 +1276.735120 +1276.833821 +1277.434021 +1283.077571 +1302.031732 +1303.032263 +1308.233157 +1309.333090 +1309.334555 +1309.533689 +1309.534055 +1309.534455 +1309.634188 +1310.034920 +1310.134754 +1310.135586 +1310.534887 +1310.933121 +1311.034320 +1311.133687 +1311.134919 +1311.233088 +1311.334020 +1311.434386 +1311.534353 +1311.934419 +1312.533053 +1313.034285 +1318.071709 +1319.036143 +1319.742303 +1320.398147 +1322.190919 +1322.791551 +1322.823552 +1334.031633 +1343.031391 +1343.332956 +1344.234353 +1344.630990 +1344.732055 +1345.133220 +1345.333220 +1345.432787 +1346.233053 +1346.434484 +1346.633818 +1346.834551 +1346.934850 +1347.033984 +1347.831586 +1347.833051 +1354.586757 +1355.416127 +1357.078896 +1357.744929 +1357.799808 +1366.966865 +1375.966023 +1375.966356 +1376.066722 +1376.067821 +1376.267022 +1376.467355 +1376.867621 +1377.270984 +1377.869551 +1377.967786 +1378.468052 +1379.069550 +1379.168684 +1379.368284 +1379.968517 +1380.069849 +1380.167984 +1380.467284 +1386.361651 +1386.371974 +1386.655090 +1386.780864 +1386.845766 +1387.280964 +1387.470907 +1387.624553 +1388.193184 +1388.220556 +1388.300909 +1388.360916 +1388.363080 +1388.431945 +1388.649394 +1388.687589 +1388.946530 +1388.960716 +1389.031378 +1389.061048 +1389.164345 +1389.484691 +1389.582493 +1389.748227 +1389.838404 +1389.882326 +1389.959016 +1389.989419 +1390.003172 +1390.018657 +1390.079096 +1390.093848 +1390.127015 +1390.245763 +1390.373068 +1390.509399 +1390.570038 +1390.780827 +1390.809731 +1390.913128 +1390.935372 +1400.967264 +1400.967830 +1402.968294 +1403.967427 +1403.967893 +1403.973921 +1404.967493 +1404.967926 +1404.974785 +1410.967453 +1411.068619 +1411.267753 +1411.368352 +1411.368585 +1411.468152 +1411.868252 +1411.869051 +1412.068318 +1412.169417 +1412.469184 +1412.769050 +1413.068484 +1413.169549 +1413.469482 +1413.668949 +1413.769948 +1413.868616 +1413.969582 +1414.069348 +1414.268083 +1414.268449 +1414.269015 +1414.269615 +1414.469814 +1414.669181 +1414.670647 +1414.768915 +1415.168482 +1415.469414 +1415.868148 +1420.967510 +1420.974303 +1420.981496 +1421.624119 +1422.026850 +1422.325984 +1422.522820 +1422.764644 +1422.863446 +1422.995114 +1423.097844 +1423.416925 +1423.476499 +1423.604570 +1423.749026 +1423.926981 +1424.184523 +1424.489818 +1424.612128 +1424.685022 +1424.696944 +1424.872002 +1424.903204 +1424.987986 +1425.116257 +1425.143297 +1425.213094 +1425.335105 +1425.421485 +1425.522717 +1425.625681 +1425.653286 +1425.686386 +1425.791614 +1425.807665 +1425.824482 +1425.871668 +1425.894245 +1425.895943 +1425.911328 +1425.920685 +1425.949257 +1425.962310 +1426.843628 +1427.169768 +1427.188150 +1435.968561 +1437.968925 +1440.968656 +1440.977047 +1445.969250 +1445.969816 +1445.975677 +1446.270382 +1446.270881 +1446.671713 +1446.770981 +1446.771747 +1446.970414 +1447.272679 +1447.671213 +1447.671746 +1447.672079 +1447.871512 +1448.071912 +1448.271978 +1448.272378 +1448.471812 +1448.771778 +1449.171411 +1449.471677 +1449.473276 +1449.572743 +1449.672077 +1449.772609 +1449.872143 +1449.971710 +1450.073109 +1450.171344 +1450.171976 +1450.470910 +1450.572009 +1450.572742 +1450.671343 +1450.971709 +1455.992050 +1456.477598 +1456.673935 +1456.785689 +1457.085556 +1457.160980 +1457.213328 +1457.371869 +1457.530477 +1457.803237 +1457.831376 +1457.998409 +1458.086454 +1458.264609 +1458.302638 +1458.564575 +1459.099640 +1459.258880 +1459.271601 +1459.348624 +1459.419187 +1459.433805 +1459.479060 +1459.644494 +1459.697375 +1459.751521 +1459.814957 +1459.888483 +1459.950155 +1460.142995 +1460.232839 +1460.243928 +1460.319385 +1460.320917 +1460.347124 +1460.412326 +1460.438699 +1460.477361 +1460.534104 +1460.587284 +1460.617654 +1460.661143 +1460.744993 +1460.867703 +1460.881889 +1460.941696 +1473.971953 +1481.070913 +1481.273610 +1481.473011 +1481.973476 +1482.074375 +1482.172977 +1482.174076 +1482.174542 +1482.772943 +1482.773476 +1482.873043 +1482.972943 +1482.974208 +1483.373941 +1483.474008 +1483.673042 +1483.774507 +1484.073974 +1484.171176 +1484.173607 +1484.274839 +1484.373074 +1484.373940 +1484.573008 +1484.773274 +1484.873274 +1484.873473 +1485.272141 +1485.274738 +1485.373906 +1485.374439 +1485.473140 +1485.571242 +1490.971170 +1490.971802 +1490.985522 +1491.280760 +1491.537436 +1491.794779 +1491.849457 +1491.996244 +1492.117422 +1492.173566 +1492.561777 +1492.723682 +1492.806466 +1493.024514 +1493.076362 +1493.139632 +1493.554117 +1493.990814 +1494.055249 +1494.295242 +1494.296608 +1494.437433 +1494.475695 +1494.638232 +1494.639131 +1494.688515 +1494.802901 +1494.841995 +1494.955215 +1495.048821 +1495.075661 +1495.098638 +1495.133237 +1495.147922 +1495.213024 +1495.261775 +1495.314888 +1495.345724 +1495.401568 +1495.415654 +1495.465504 +1495.547589 +1495.640995 +1495.692310 +1495.695307 +1495.696773 +1495.725178 +1495.725444 +1495.853449 +1495.880356 +1495.882620 +1495.909193 +1495.936799 +1495.936999 +1495.937698 +1495.952250 +1505.971954 +1506.972153 +1508.972484 +1516.673209 +1517.174074 +1517.273208 +1517.273441 +1517.275106 +1517.374207 +1517.872774 +1517.972841 +1517.973673 +1518.274372 +1518.274705 +1518.374339 +1518.574639 +1518.673673 +1518.675171 +1518.873506 +1519.273206 +1519.573972 +1519.773339 +1520.573704 +1526.426179 +1527.037767 +1527.629375 +1527.676794 +1527.890214 +1527.937433 +1528.256414 +1528.323713 +1528.479257 +1528.593143 +1528.660942 +1528.713356 +1528.829174 +1528.868101 +1528.926943 +1528.989846 +1529.017485 +1529.047855 +1529.086483 +1529.361807 +1529.441095 +1529.498903 +1529.616486 +1529.642260 +1529.696039 +1529.723845 +1529.864238 +1529.923478 +1529.923745 +1529.937864 +1530.040495 +1530.138929 +1530.171197 +1530.186249 +1530.243125 +1530.329738 +1530.359342 +1530.415786 +1530.417650 +1530.447587 +1530.487680 +1530.525509 +1530.566635 +1530.578523 +1530.664903 +1530.694939 +1530.723977 +1530.878522 +1542.972883 +1551.273041 +1551.773207 +1551.774572 +1551.873573 +1551.874006 +1551.973839 +1551.974772 +1552.374005 +1552.574771 +1553.074870 +1553.173905 +1553.174770 +1553.274537 +1553.374371 +1553.375037 +1553.674171 +1553.674570 +1553.674770 +1553.774237 +1553.973637 +1554.274203 +1554.474070 +1554.574270 +1554.974569 +1554.974735 +1554.974902 +1555.072637 +1555.074835 +1555.174036 +1555.175068 +1555.274968 +1555.374402 +1555.674835 +1555.774402 +1555.974901 +1561.155881 +1561.333770 +1561.465238 +1561.748355 +1562.124845 +1562.282454 +1562.440495 +1562.456579 +1562.497272 +1562.581188 +1562.653849 +1562.847688 +1562.892343 +1562.952583 +1562.993076 +1563.221514 +1563.278590 +1563.434001 +1563.487414 +1563.547221 +1563.626275 +1563.859375 +1563.937863 +1564.022245 +1564.060873 +1564.139362 +1564.242159 +1564.255878 +1564.355112 +1564.904562 +1564.905361 +1564.958042 +1564.991775 +1565.005162 +1565.030769 +1565.043357 +1565.143190 +1565.189277 +1565.218282 +1565.293873 +1565.387046 +1565.416450 +1565.443989 +1565.470696 +1565.478155 +1565.491242 +1565.517615 +1565.616050 +1565.643889 +1565.765434 +1565.778454 +1565.780985 +1565.908191 +1565.935430 +1565.950882 +1565.965134 +1576.971850 +1586.073938 +1586.474271 +1586.574004 +1586.574337 +1586.674171 +1586.974437 +1587.074603 +1587.173804 +1587.174970 +1587.374337 +1587.473637 +1587.474370 +1587.475102 +1587.674902 +1587.775069 +1587.974935 +1588.175102 +1588.275202 +1588.474902 +1588.675035 +1588.774868 +1588.873769 +1589.074002 +1589.074901 +1589.075234 +1589.275034 +1589.475200 +1589.674900 +1590.174567 +1590.174867 +1590.274334 +1590.574034 +1590.575133 +1590.575732 +1590.773035 +1590.774700 +1590.974500 +1590.975199 +1596.372696 +1596.407361 +1596.505330 +1596.563372 +1596.654381 +1596.752616 +1596.821813 +1596.872929 +1596.909459 +1597.085749 +1597.247154 +1597.259375 +1597.471096 +1597.545755 +1597.718049 +1597.982418 +1598.128105 +1598.190543 +1598.285581 +1598.428172 +1598.627272 +1598.697735 +1599.146653 +1599.229137 +1599.295171 +1599.378487 +1599.420545 +1599.432933 +1599.572260 +1599.627571 +1599.679985 +1599.838660 +1599.919512 +1599.962403 +1599.991374 +1600.052479 +1600.070961 +1600.117181 +1600.175656 +1600.202862 +1600.249549 +1600.291107 +1600.303295 +1600.346019 +1600.522908 +1600.553211 +1600.567231 +1600.836794 +1600.864366 +1600.963401 +1614.973643 +1615.972443 +1621.273004 +1621.374536 +1621.674302 +1621.873570 +1622.273669 +1622.374302 +1622.473769 +1622.475800 +1622.575001 +1622.674301 +1622.675367 +1622.974967 +1622.975134 +1623.473668 +1623.574534 +1623.875166 +1623.973001 +1624.274699 +1624.975531 +1625.173699 +1625.273666 +1625.474532 +1625.875031 +1625.875730 +1630.972195 +1631.304463 +1631.507593 +1631.658408 +1631.716284 +1631.730303 +1631.767166 +1632.038261 +1632.280086 +1632.576156 +1632.658074 +1632.742889 +1632.917215 +1632.917515 +1633.111121 +1633.233998 +1633.503062 +1633.663268 +1633.705825 +1633.766032 +1634.015449 +1634.042355 +1634.112685 +1634.266031 +1634.361136 +1634.406957 +1634.445152 +1634.479051 +1634.677653 +1634.749780 +1634.846317 +1634.890873 +1635.022907 +1635.116280 +1635.130133 +1635.243653 +1635.405990 +1635.527735 +1635.568994 +1635.658837 +1635.673589 +1635.722840 +1635.751411 +1635.767828 +1635.860369 +1635.895101 +1635.941121 +1645.971414 +1645.971714 +1647.971479 +1650.971542 +1655.970772 +1656.273502 +1656.372170 +1656.473735 +1656.873368 +1656.972569 +1656.973401 +1657.072535 +1657.472668 +1657.674400 +1657.874033 +1658.073467 +1658.273400 +1658.872367 +1658.973100 +1659.072633 +1659.073099 +1659.172633 +1659.173466 +1659.372600 +1659.373465 +1659.573132 +1659.673165 +1659.773765 +1659.774364 +1659.973198 +1660.073565 +1660.074430 +1660.172632 +1660.472632 +1660.673131 +1660.873564 +1665.993938 +1666.095403 +1666.129669 +1666.339226 +1666.349116 +1666.404794 +1666.473225 +1666.834197 +1666.902429 +1666.915949 +1666.987810 +1667.183381 +1667.223674 +1667.261836 +1667.385912 +1667.496834 +1667.774389 +1667.802428 +1667.931932 +1667.982082 +1668.038425 +1668.148282 +1668.189208 +1668.290906 +1668.497998 +1668.518678 +1668.580749 +1668.676054 +1668.799996 +1668.961601 +1669.001961 +1669.015747 +1669.072357 +1669.288707 +1669.417278 +1669.441920 +1669.458970 +1669.503692 +1669.549080 +1669.634860 +1669.689872 +1669.733662 +1669.735793 +1670.015979 +1670.060734 +1670.077584 +1670.118610 +1670.270191 +1670.511649 +1670.525902 +1670.659535 +1670.719974 +1670.811216 +1670.829165 +1670.840420 +1670.855938 +1670.872821 +1670.904190 +1675.633156 +1675.653369 +1675.665357 +1675.674282 +1675.687302 +1675.693696 +1683.972009 +1684.971708 +1691.072701 +1691.374865 +1691.573067 +1691.773167 +1691.773766 +1692.673632 +1692.674098 +1692.771967 +1692.773299 +1692.774298 +1692.974764 +1693.174397 +1693.175197 +1693.373365 +1693.374197 +1693.873464 +1693.874330 +1693.874730 +1694.173864 +1694.675128 +1694.773730 +1694.774196 +1694.974629 +1695.172297 +1695.273529 +1695.273829 +1695.875127 +1695.973495 +1700.978619 +1700.985712 +1701.270726 +1701.376987 +1701.390506 +1701.404059 +1701.526770 +1701.770226 +1701.954542 +1701.979317 +1702.177552 +1702.201861 +1702.228268 +1702.333529 +1702.949612 +1703.110052 +1703.188540 +1703.245117 +1703.456338 +1703.659002 +1703.698230 +1703.724370 +1703.780980 +1703.794766 +1703.913181 +1704.163531 +1704.264130 +1704.576784 +1704.660899 +1704.736624 +1704.781212 +1705.118575 +1705.146813 +1705.217409 +1705.398461 +1705.428031 +1705.528797 +1705.541418 +1705.584841 +1705.684741 +1705.759300 +1705.786073 +1705.876249 +1705.908184 +1726.173598 +1727.074663 +1727.173897 +1727.373531 +1727.473764 +1728.474895 +1729.174594 +1729.274827 +1729.774794 +1729.774960 +1729.874860 +1730.075792 +1730.273128 +1730.273661 +1730.873727 +1730.973793 +1735.550179 +1735.634262 +1735.971757 +1736.183112 +1736.356372 +1736.456738 +1736.651976 +1736.744151 +1737.118742 +1737.148080 +1737.290271 +1737.424536 +1737.718609 +1738.067093 +1738.129297 +1738.276217 +1738.330496 +1738.531228 +1738.691302 +1738.705221 +1738.933825 +1739.031594 +1739.055171 +1739.115310 +1739.268790 +1739.335823 +1739.471054 +1739.637621 +1739.678946 +1739.728763 +1739.758533 +1739.802622 +1739.896662 +1739.958167 +1740.110581 +1740.112845 +1740.164827 +1740.260164 +1740.271553 +1740.322003 +1740.410048 +1740.415642 +1740.517374 +1740.570920 +1740.695129 +1740.783874 +1740.855702 +1740.950240 +1761.373397 +1761.374129 +1761.874229 +1761.974229 +1762.076460 +1762.574861 +1762.674161 +1762.675227 +1762.774195 +1762.775027 +1763.073928 +1763.076259 +1763.175160 +1763.274194 +1763.574394 +1763.576425 +1763.876191 +1763.975126 +1764.373527 +1764.374859 +1764.474359 +1764.974292 +1765.374292 +1765.473859 +1765.675191 +1765.774525 +1770.428466 +1770.512748 +1770.551876 +1771.189438 +1771.387439 +1771.972154 +1772.061864 +1772.375517 +1772.439586 +1772.546712 +1772.575417 +1772.587738 +1772.653306 +1772.755636 +1772.834391 +1772.938587 +1773.079146 +1773.247311 +1773.291567 +1773.387404 +1773.454770 +1773.508350 +1773.562662 +1773.874650 +1774.369055 +1774.452871 +1774.453637 +1774.467989 +1774.638019 +1774.729061 +1774.758398 +1774.774948 +1774.817939 +1774.892398 +1775.138851 +1775.269487 +1775.285005 +1775.366523 +1775.380342 +1775.428161 +1775.504751 +1775.538151 +1775.602453 +1775.644345 +1775.711078 +1775.742313 +1775.801854 +1775.833289 +1775.887368 +1788.972603 +1790.973667 +1796.273761 +1796.474028 +1796.474960 +1796.475826 +1796.674227 +1797.575425 +1797.673594 +1797.874226 +1798.174426 +1798.376124 +1798.474325 +1798.475058 +1798.976056 +1799.474624 +1799.874857 +1799.876422 +1800.074790 +1800.174457 +1800.175756 +1800.374690 +1800.774456 +1806.318440 +1806.378746 +1806.566492 +1806.894963 +1807.109981 +1807.264193 +1807.435888 +1807.573117 +1807.671852 +1807.774283 +1808.024765 +1808.098092 +1808.197959 +1808.405451 +1808.509214 +1808.616273 +1808.680909 +1808.725031 +1808.769420 +1808.909213 +1809.025464 +1809.115840 +1809.161561 +1809.314608 +1809.377012 +1809.454135 +1809.523565 +1809.595959 +1809.596692 +1809.622599 +1809.692096 +1809.728593 +1809.754234 +1809.768087 +1809.839549 +1810.071983 +1810.110777 +1810.112409 +1810.186335 +1810.280607 +1810.471450 +1810.492595 +1810.531123 +1810.544809 +1810.578909 +1810.608612 +1810.622498 +1810.669052 +1810.724729 +1810.832788 +1810.935252 +1822.973768 +1824.973899 +1825.973532 +1831.273793 +1831.373427 +1831.674259 +1831.873992 +1831.974325 +1832.674291 +1832.875290 +1833.076322 +1833.674057 +1833.874257 +1834.374190 +1834.475521 +1834.574256 +1834.876387 +1835.074355 +1835.675154 +1841.416374 +1841.991365 +1842.044478 +1842.156832 +1842.211211 +1842.523765 +1842.987934 +1843.164923 +1843.194494 +1843.411144 +1843.519269 +1843.686002 +1843.791729 +1843.923764 +1843.939948 +1843.981706 +1844.011210 +1844.126461 +1844.154633 +1844.178942 +1844.192595 +1844.207413 +1844.397223 +1844.593393 +1844.594626 +1844.608845 +1844.654532 +1844.669850 +1844.735251 +1844.758095 +1844.773979 +1844.896590 +1844.928591 +1844.942710 +1845.019300 +1845.032687 +1845.128991 +1845.221764 +1845.353766 +1845.486400 +1845.528291 +1845.593659 +1845.610176 +1845.667318 +1845.696556 +1845.727358 +1845.788497 +1845.849603 +1845.851601 +1866.774091 +1866.873891 +1866.974357 +1867.175222 +1868.174589 +1868.273356 +1868.773756 +1868.875287 +1869.273622 +1869.374654 +1869.574054 +1869.674754 +1869.875952 +1870.075086 +1870.175053 +1870.574020 +1870.673854 +1870.675885 +1870.874153 +1870.975518 +1876.120934 +1876.656898 +1876.716105 +1877.076911 +1877.578908 +1877.748372 +1877.803983 +1878.302018 +1878.421998 +1878.579507 +1878.666187 +1878.725960 +1878.753466 +1878.799287 +1878.869916 +1879.090928 +1879.189096 +1879.219566 +1879.306479 +1879.336382 +1879.428823 +1879.530854 +1879.635516 +1879.663721 +1879.665420 +1879.731454 +1879.900684 +1879.961989 +1880.068183 +1880.096255 +1880.128589 +1880.155429 +1880.176941 +1880.189329 +1880.217534 +1880.228489 +1880.274976 +1880.362955 +1880.530187 +1880.531619 +1880.664520 +1880.784400 +1880.814536 +1880.924759 +1880.954995 +1890.973167 +1891.972400 +1891.972767 +1891.978528 +1894.972297 +1894.972664 +1895.972363 +1900.971992 +1901.072758 +1901.474955 +1901.573523 +1901.574522 +1901.674056 +1901.675155 +1901.974288 +1902.073855 +1902.474121 +1902.774288 +1903.075253 +1903.174853 +1903.275553 +1903.574686 +1903.974520 +1903.974853 +1904.074986 +1904.273753 +1904.275885 +1904.674585 +1904.774286 +1904.873786 +1904.874852 +1904.875951 +1904.975950 +1905.373752 +1905.574784 +1905.575683 +1910.978642 +1911.028492 +1911.061459 +1911.063590 +1911.175711 +1911.397722 +1911.584502 +1911.906813 +1911.955497 +1912.163622 +1912.376609 +1912.507811 +1912.579273 +1912.909243 +1913.030122 +1913.098054 +1913.368316 +1913.395423 +1913.492192 +1913.544074 +1913.588396 +1913.839511 +1913.893724 +1913.993957 +1914.111706 +1914.138679 +1914.283567 +1914.284000 +1914.285831 +1914.328755 +1914.371279 +1914.472211 +1914.519597 +1914.559424 +1914.605178 +1914.650866 +1914.680103 +1914.739710 +1914.787030 +1915.012970 +1915.055394 +1915.115934 +1915.329054 +1915.389393 +1915.535880 +1915.548401 +1915.577572 +1915.620429 +1915.809240 +1915.821960 +1915.838610 +1915.856392 +1915.956193 +1928.973995 +1936.173821 +1936.272889 +1936.372522 +1936.372889 +1936.473088 +1936.573155 +1936.573754 +1936.574787 +1936.673321 +1936.673654 +1936.773221 +1936.974986 +1937.873420 +1938.074352 +1938.273520 +1938.574418 +1938.873352 +1938.973852 +1939.172087 +1939.372586 +1939.372852 +1939.373918 +1939.472886 +1939.473185 +1939.773318 +1939.973418 +1940.174150 +1940.473484 +1946.223795 +1946.237647 +1946.433118 +1946.527657 +1946.608210 +1946.700651 +1946.916102 +1947.201383 +1947.369548 +1947.459125 +1947.563154 +1947.792025 +1947.829054 +1947.880336 +1948.108708 +1948.178505 +1948.301681 +1948.366583 +1948.420762 +1948.520496 +1948.547302 +1948.647568 +1948.729054 +1948.781568 +1948.873476 +1948.911404 +1948.955161 +1949.055061 +1949.101181 +1949.141507 +1949.192856 +1949.287761 +1949.301081 +1949.301647 +1949.445470 +1949.459256 +1949.501780 +1949.557258 +1949.703478 +1949.763185 +1949.872276 +1949.948466 +1950.008206 +1950.009106 +1950.034280 +1950.076338 +1950.181200 +1950.242472 +1950.258456 +1950.414700 +1950.430317 +1950.492289 +1950.776804 +1950.804976 +1950.838842 +1950.902345 +1950.968945 +1961.971265 +1970.971289 +1971.171822 +1971.472754 +1971.473786 +1971.873186 +1972.173552 +1972.273219 +1972.473186 +1972.973751 +1973.573284 +1973.574383 +1973.872685 +1973.873084 +1974.274116 +1974.373384 +1974.774982 +1974.974116 +1975.075048 +1975.574981 +1975.773715 +1975.973049 +1980.992758 +1981.385265 +1981.607975 +1982.109073 +1982.203379 +1982.414801 +1982.580468 +1982.581800 +1982.807608 +1982.901280 +1982.992090 +1983.119762 +1983.373308 +1983.462485 +1983.489891 +1983.735312 +1983.803211 +1983.806108 +1983.906141 +1983.920860 +1983.957024 +1984.111502 +1984.134080 +1984.225322 +1984.249964 +1984.296284 +1984.360054 +1984.386460 +1984.576137 +1984.624089 +1984.744502 +1984.860486 +1984.898048 +1985.026020 +1985.113100 +1985.168245 +1985.242537 +1985.451661 +1985.545667 +1985.630648 +1985.661351 +1985.686559 +1985.819726 +1985.877435 +2005.972553 +2005.973385 +2006.174018 +2006.273518 +2006.773418 +2006.873018 +2007.074716 +2007.173750 +2007.273684 +2007.573650 +2008.175348 +2008.373183 +2008.374349 +2008.375048 +2008.874048 +2009.174847 +2009.275014 +2010.674912 +2016.044737 +2016.140608 +2016.161820 +2016.173808 +2016.175107 +2016.385996 +2016.426122 +2016.575406 +2016.720894 +2016.908806 +2017.214233 +2017.275738 +2017.503077 +2017.600014 +2017.821625 +2017.999813 +2018.041339 +2018.140672 +2018.200080 +2018.405541 +2018.453060 +2018.655857 +2018.690655 +2018.705607 +2018.749630 +2018.818494 +2019.176103 +2019.362982 +2019.475669 +2019.727051 +2019.784427 +2020.040104 +2020.053591 +2020.125352 +2020.169242 +2020.231180 +2020.412432 +2020.468009 +2020.481363 +2020.535375 +2020.681696 +2020.704306 +2020.716328 +2020.747896 +2033.973457 +2041.174982 +2041.374082 +2041.374782 +2041.375215 +2041.775381 +2042.174581 +2042.375080 +2042.475813 +2042.775813 +2042.874880 +2042.975446 +2043.076012 +2043.175446 +2043.175979 +2043.474413 +2043.475612 +2043.476578 +2043.874613 +2043.875146 +2043.875345 +2043.975145 +2043.975778 +2044.376843 +2045.774877 +2050.987226 +2050.987659 +2050.995285 +2051.295951 +2051.305974 +2051.639773 +2051.746400 +2051.828284 +2051.982697 +2052.110868 +2052.177835 +2052.303709 +2052.377168 +2052.613532 +2052.731680 +2052.847531 +2052.877701 +2052.952859 +2053.157720 +2053.200744 +2053.227950 +2053.292585 +2053.319059 +2053.378300 +2053.738439 +2053.753058 +2053.878299 +2053.986491 +2054.166211 +2054.290819 +2054.332211 +2054.684126 +2054.768674 +2054.802574 +2054.858052 +2054.915461 +2055.085291 +2055.111365 +2055.189420 +2055.326716 +2055.357019 +2055.358318 +2055.401641 +2055.469107 +2055.589952 +2055.629346 +2055.681494 +2055.693049 +2055.732410 +2055.835373 +2065.973625 +2066.974157 +2070.974119 +2076.073848 +2076.173681 +2076.374514 +2076.475346 +2076.475912 +2076.775446 +2076.875612 +2077.275745 +2077.775411 +2077.875012 +2077.976144 +2079.075943 +2079.076842 +2079.574843 +2080.575742 +2080.775575 +2086.068676 +2086.333278 +2086.410934 +2086.705406 +2086.782995 +2086.923954 +2086.975935 +2087.081263 +2087.360883 +2087.435908 +2087.510833 +2087.573870 +2087.666877 +2087.733776 +2087.766877 +2087.819857 +2087.892284 +2087.907236 +2088.001941 +2088.048561 +2088.240369 +2088.360049 +2088.399676 +2088.456520 +2088.644698 +2088.683026 +2088.749227 +2088.751458 +2088.778597 +2088.943232 +2089.013928 +2089.037338 +2089.154521 +2089.190119 +2089.216059 +2089.444764 +2089.456086 +2089.594913 +2089.695912 +2089.709998 +2089.821487 +2089.823818 +2089.824484 +2089.850391 +2089.879961 +2089.988186 +2090.081926 +2090.110764 +2090.176198 +2090.229478 +2090.318955 +2090.393581 +2090.408998 +2090.465775 +2090.477929 +2090.574533 +2090.631176 +2090.699774 +2090.738102 +2090.752721 +2090.769238 +2090.799274 +2090.830310 +2090.938435 +2101.974222 +2103.974386 +2104.973553 +2110.973447 +2111.073313 +2111.074945 +2111.774678 +2111.875344 +2111.974778 +2112.176842 +2112.474977 +2112.574611 +2112.574877 +2112.875276 +2112.975210 +2113.075376 +2113.375942 +2113.474543 +2113.574676 +2113.674476 +2113.874743 +2113.875675 +2113.876840 +2114.074343 +2114.176074 +2114.575674 +2114.674042 +2114.674842 +2114.775474 +2114.874708 +2114.974575 +2115.176040 +2115.176606 +2115.275074 +2115.275807 +2115.374774 +2115.375474 +2115.474574 +2115.475374 +2115.775906 +2115.874274 +2115.875873 +2115.876039 +2115.974807 +2120.972271 +2120.973170 +2120.974003 +2120.979131 +2121.083327 +2121.158318 +2121.169074 +2121.182128 +2121.215927 +2121.217293 +2121.239670 +2121.643399 +2121.698145 +2121.924185 +2122.334141 +2122.347761 +2122.624817 +2122.762712 +2122.843232 +2122.867174 +2122.923685 +2123.003904 +2123.094414 +2123.148193 +2123.519355 +2123.562845 +2123.578363 +2123.617756 +2123.738136 +2123.984423 +2124.111629 +2124.217156 +2124.338335 +2124.499207 +2124.528611 +2124.616557 +2124.674765 +2124.800839 +2125.091714 +2125.149556 +2125.644994 +2125.688350 +2125.808031 +2125.853552 +2125.926878 +2135.972489 +2139.972685 +2139.973151 +2145.972746 +2146.273578 +2146.573211 +2146.874809 +2147.274409 +2147.373777 +2147.374276 +2147.472877 +2147.474443 +2147.575475 +2147.674542 +2147.873443 +2147.873676 +2148.275607 +2148.373709 +2148.374375 +2148.473842 +2148.474475 +2148.575740 +2149.073575 +2149.274108 +2149.274907 +2149.374241 +2149.474540 +2149.974274 +2150.073607 +2150.075039 +2150.474107 +2150.874539 +2155.971870 +2155.979029 +2155.994281 +2156.045130 +2156.066242 +2156.120654 +2156.133841 +2156.416092 +2156.487154 +2156.932075 +2157.084290 +2157.135072 +2157.350623 +2157.635438 +2157.842830 +2158.088018 +2158.275131 +2158.566340 +2158.567472 +2158.618021 +2158.678727 +2158.680092 +2158.693213 +2158.721584 +2158.835104 +2158.848357 +2158.913559 +2159.031807 +2159.047058 +2159.299905 +2159.392313 +2159.403435 +2159.644860 +2159.703568 +2159.704434 +2159.749555 +2159.760511 +2159.777194 +2159.848489 +2159.944826 +2160.010461 +2160.034570 +2160.092012 +2160.123381 +2160.165073 +2160.194943 +2160.280390 +2160.318286 +2160.417820 +2160.478492 +2160.668136 +2160.681322 +2160.745458 +2160.761309 +2160.808195 +2160.809061 +2160.836833 +2160.838399 +2160.880357 +2160.881489 +2160.895242 +2160.896207 +2181.071512 +2181.271778 +2181.372011 +2181.472144 +2181.572211 +2181.974075 +2182.071977 +2182.372077 +2182.474075 +2182.573508 +2182.772509 +2182.973042 +2182.973508 +2183.071876 +2183.072775 +2183.172209 +2183.274640 +2183.372742 +2183.971842 +2183.972608 +2184.072042 +2184.073141 +2184.171376 +2184.272974 +2184.274206 +2184.373440 +2184.673340 +2185.272640 +2185.474471 +2185.773139 +2185.870408 +2185.971873 +2191.002338 +2191.022617 +2191.115724 +2191.666440 +2191.730675 +2192.267505 +2192.405500 +2192.467638 +2192.664241 +2192.854251 +2192.980624 +2193.048256 +2193.130674 +2193.182855 +2193.277394 +2193.645092 +2193.800503 +2193.871399 +2193.939464 +2194.148355 +2194.266304 +2194.433037 +2194.493576 +2194.596007 +2194.652417 +2194.800869 +2194.816919 +2194.952683 +2195.021748 +2195.105098 +2195.218651 +2195.402866 +2195.417718 +2195.493209 +2195.534068 +2195.612157 +2195.669399 +2195.699236 +2195.743392 +2195.872463 +2195.932270 +2206.701223 +2211.705814 +2214.494788 +2214.923326 +2216.706774 +2217.402778 +2217.702111 +2218.303010 +2218.402377 +2218.802943 +2219.702309 +2219.702875 +2219.902808 +2220.903207 +2221.402374 +2221.503073 +2221.602873 +2226.700604 +2226.759079 +2226.929874 +2227.056448 +2227.176960 +2227.197573 +2227.213890 +2227.344726 +2227.378925 +2227.485285 +2227.586350 +2227.668502 +2227.927909 +2228.023413 +2228.218451 +2228.220616 +2228.271598 +2228.369333 +2228.458211 +2228.473995 +2228.620682 +2228.669699 +2228.681654 +2228.745490 +2228.759543 +2228.773562 +2228.798704 +2228.800235 +2228.878823 +2228.958244 +2228.972130 +2228.997571 +2229.027674 +2229.082686 +2229.124411 +2229.127241 +2229.139762 +2229.169199 +2229.196372 +2229.265769 +2229.305163 +2229.332070 +2229.356612 +2229.396305 +2229.410758 +2229.478556 +2229.503931 +2229.538396 +2229.606362 +2229.652316 +2229.665469 +2229.706828 +2229.753381 +2229.856844 +2229.868366 +2229.880954 +2229.883318 +2229.895939 +2229.939195 +2229.965635 +2229.992076 +2230.008393 +2230.023178 +2230.067700 +2230.096038 +2230.162205 +2230.193208 +2230.206727 +2230.238362 +2230.340660 +2230.343524 +2230.393873 +2230.409924 +2230.410157 +2230.434699 +2230.439961 +2230.483883 +2230.526108 +2230.544389 +2230.558808 +2230.559474 +2230.572395 +2230.628539 +2230.632535 +2230.661639 +2230.678089 +2230.719581 +2230.751715 +2230.783084 +2230.907959 +2230.919281 +2230.937296 +2230.953147 +2230.968298 +2230.983383 +2231.013886 +2231.029970 +2231.045221 +2231.136796 +2231.182118 +2231.254712 +2231.331335 +2231.374792 +2231.420313 +2231.464935 +2231.513719 +2231.525940 +2231.529936 +2231.604262 +2231.636829 +2231.666233 +2231.668731 +2231.697402 +2245.702050 +2251.802810 +2251.803442 +2252.103742 +2252.203409 +2252.603741 +2252.703775 +2253.404007 +2253.603874 +2253.604373 +2254.503773 +2254.905304 +2255.105337 +2255.603605 +2255.704105 +2256.004404 +2256.103638 +2256.604104 +2256.604836 +2261.708394 +2262.228740 +2262.888446 +2263.173428 +2263.229738 +2263.261207 +2263.300667 +2263.301033 +2263.449685 +2263.473427 +2263.484383 +2263.485049 +2263.510224 +2263.588079 +2263.604296 +2263.618649 +2263.630437 +2263.683417 +2263.697237 +2263.709891 +2263.711356 +2263.722844 +2263.751050 +2263.789478 +2263.841059 +2263.853713 +2263.866134 +2263.879621 +2263.921812 +2263.973660 +2264.009424 +2264.011622 +2264.011955 +2264.036064 +2264.071296 +2264.073727 +2264.084882 +2264.175591 +2264.177556 +2264.206161 +2264.273760 +2264.286880 +2264.301832 +2264.315751 +2264.398235 +2264.466866 +2264.479221 +2264.534765 +2264.536730 +2264.575957 +2264.590110 +2264.619547 +2264.646387 +2264.687878 +2264.701132 +2264.714352 +2264.729570 +2264.910655 +2264.922976 +2264.966966 +2264.995537 +2265.038161 +2265.064235 +2265.092074 +2265.148318 +2265.193705 +2265.238461 +2265.350249 +2265.362703 +2265.380585 +2265.381018 +2265.395237 +2265.397335 +2265.468131 +2265.483982 +2265.524641 +2265.536762 +2265.542123 +2265.598500 +2265.599066 +2265.651214 +2265.752679 +2265.785446 +2265.838793 +2265.893538 +2265.903162 +2265.997900 +2266.000431 +2266.013285 +2266.026072 +2266.040158 +2266.062769 +2266.075822 +2266.107757 +2266.121177 +2266.148550 +2266.150548 +2266.150947 +2266.152579 +2266.166532 +2266.320677 +2266.336528 +2266.363335 +2266.365233 +2266.379019 +2266.392972 +2266.466531 +2266.509155 +2266.538759 +2266.589075 +2266.616681 +2266.645985 +2266.658872 +2277.703783 +2280.704246 +2287.705072 +2288.605337 +2289.105203 +2289.205303 +2289.505303 +2290.305302 +2290.806034 +2290.905668 +2291.206134 +2291.406167 +2291.505367 +2296.704297 +2296.709292 +2296.891343 +2297.420247 +2297.432168 +2297.735464 +2297.772727 +2297.920413 +2298.082317 +2298.172161 +2298.197768 +2298.220978 +2298.293606 +2298.318281 +2298.341857 +2298.371461 +2298.373792 +2298.421911 +2298.522943 +2298.663302 +2298.701264 +2298.761537 +2298.798101 +2298.820778 +2298.852080 +2298.852380 +2298.909989 +2298.971394 +2299.124907 +2299.275057 +2299.311753 +2299.312453 +2299.360305 +2299.396668 +2299.461337 +2299.503428 +2299.541024 +2299.677154 +2299.731367 +2299.742256 +2299.744587 +2299.745785 +2299.771993 +2299.799299 +2299.894370 +2299.996934 +2300.011353 +2300.098799 +2300.125072 +2300.140357 +2300.203361 +2300.211919 +2300.226438 +2300.229135 +2300.241090 +2300.347583 +2300.361436 +2300.440457 +2300.450913 +2300.467996 +2300.481549 +2300.589807 +2300.620510 +2300.633430 +2300.644419 +2300.646617 +2300.660570 +2300.771525 +2300.829867 +2300.909221 +2300.938825 +2300.941722 +2300.982914 +2301.064832 +2301.077852 +2301.080083 +2301.125404 +2301.139424 +2301.153776 +2301.249414 +2301.280216 +2301.316613 +2301.410619 +2301.426203 +2301.452743 +2301.465964 +2301.525604 +2301.529766 +2301.553909 +2301.583113 +2301.613183 +2301.625371 +2301.689240 +2315.704477 +2316.705642 +2316.712369 +2322.405803 +2323.605635 +2324.705767 +2325.605633 +2325.906232 +2326.106898 +2326.205399 +2326.405699 +2326.406132 +2326.505732 +2331.803862 +2331.962237 +2332.029536 +2332.040525 +2332.166332 +2332.270262 +2332.348550 +2332.374757 +2332.596102 +2332.863235 +2332.874923 +2333.050614 +2333.099232 +2333.468063 +2333.543754 +2333.789807 +2333.816181 +2334.026604 +2334.205924 +2334.245618 +2334.302994 +2334.495201 +2334.560869 +2334.602627 +2334.626536 +2334.638524 +2334.676353 +2334.689374 +2334.702161 +2334.752743 +2334.880982 +2334.968095 +2335.039623 +2335.140156 +2335.207455 +2335.254475 +2335.409752 +2335.448414 +2335.526602 +2335.583512 +2335.639256 +2335.697864 +2335.753675 +2335.772922 +2335.773655 +2335.846682 +2335.876718 +2335.944717 +2335.950311 +2336.019975 +2336.040754 +2336.098863 +2336.108520 +2336.123072 +2336.159435 +2336.173122 +2336.174021 +2336.202093 +2336.293534 +2336.305323 +2336.412216 +2336.427967 +2336.593301 +2336.610018 +2336.625003 +2336.639588 +2336.682379 +2346.704513 +2347.704912 +2350.710769 +2351.710702 +2356.704803 +2356.805202 +2357.206201 +2357.906966 +2358.606366 +2359.706132 +2359.906265 +2360.006265 +2360.207130 +2360.406298 +2360.606364 +2360.706997 +2361.006364 +2361.007129 +2361.206463 +2361.307162 +2361.706296 +2366.716015 +2367.233464 +2367.443054 +2367.565964 +2367.637659 +2367.787675 +2367.828967 +2367.962167 +2367.994901 +2368.104525 +2368.178617 +2368.282247 +2368.321408 +2368.419943 +2368.460502 +2368.509486 +2368.536759 +2368.644318 +2368.668660 +2368.794867 +2368.835194 +2368.888906 +2368.992969 +2369.046715 +2369.087674 +2369.098730 +2369.124271 +2369.164531 +2369.261034 +2369.353108 +2369.381014 +2369.403491 +2369.429266 +2369.430931 +2369.443551 +2369.535093 +2369.675119 +2369.754174 +2369.836858 +2369.959002 +2370.000361 +2370.028732 +2370.043717 +2370.087940 +2370.156737 +2370.230763 +2370.242818 +2370.288372 +2370.319807 +2370.391003 +2370.436990 +2370.465462 +2370.482445 +2370.525069 +2370.612648 +2370.672721 +2370.699128 +2370.703024 +2370.746447 +2370.808352 +2370.809284 +2370.823270 +2370.823736 +2370.868292 +2370.877849 +2370.913713 +2370.997962 +2371.017043 +2371.106587 +2371.117109 +2371.119074 +2371.152740 +2371.177549 +2371.239553 +2371.240486 +2371.254072 +2371.299926 +2371.359633 +2371.375950 +2371.462863 +2371.481278 +2371.497362 +2371.543849 +2371.576316 +2371.589936 +2371.593033 +2371.623369 +2371.625933 +2371.686972 +2371.700459 +2382.706408 +2385.705207 +2385.706206 +2391.806033 +2391.806932 +2391.906466 +2392.006366 +2392.006765 +2392.406865 +2392.506931 +2392.606698 +2392.707464 +2393.007031 +2393.107097 +2393.207031 +2393.307330 +2393.507064 +2393.607297 +2394.106930 +2394.407063 +2394.507129 +2394.606963 +2394.607795 +2395.206929 +2396.307460 +2396.707227 +2401.972423 +2402.031531 +2402.267561 +2402.338024 +2402.382846 +2402.501027 +2402.729532 +2402.790637 +2402.895333 +2403.110051 +2403.129498 +2403.462964 +2403.490903 +2403.592635 +2403.829498 +2403.909184 +2403.972255 +2404.280146 +2404.336923 +2404.446646 +2404.459101 +2404.530063 +2404.558834 +2404.675784 +2404.702723 +2404.819673 +2404.932893 +2404.961431 +2405.008984 +2405.088271 +2405.126632 +2405.164961 +2405.191168 +2405.244015 +2405.376549 +2405.378081 +2405.391367 +2405.407751 +2405.583076 +2405.625766 +2405.639819 +2405.700958 +2405.777881 +2405.787671 +2405.807085 +2405.821903 +2405.832526 +2405.837754 +2405.883741 +2405.941617 +2405.944913 +2405.958866 +2405.971254 +2406.005586 +2406.050075 +2406.079512 +2406.097561 +2406.167757 +2406.169688 +2406.185473 +2406.369721 +2406.465459 +2406.478413 +2406.599991 +2406.644946 +2417.706373 +2419.706305 +2426.806631 +2426.906264 +2426.906797 +2427.806497 +2427.807229 +2427.906929 +2428.007029 +2428.007429 +2428.206430 +2428.306629 +2428.306962 +2428.806595 +2429.107294 +2429.207294 +2429.306395 +2430.006528 +2430.107194 +2430.206527 +2430.306561 +2430.806360 +2431.106427 +2431.207126 +2431.307259 +2431.406460 +2431.407359 +2431.706659 +2436.976318 +2437.698628 +2437.732294 +2437.838221 +2437.872853 +2437.922437 +2437.934292 +2437.955737 +2437.979447 +2438.002957 +2438.013946 +2438.068225 +2438.145814 +2438.181977 +2438.229563 +2438.249010 +2438.262597 +2438.298760 +2438.442716 +2438.468257 +2438.494231 +2438.587205 +2438.635956 +2438.671687 +2438.759333 +2438.810049 +2438.962096 +2439.009249 +2439.023635 +2439.058367 +2439.114377 +2439.128230 +2439.218107 +2439.260498 +2439.355569 +2439.395230 +2439.601823 +2439.726365 +2439.824167 +2439.881310 +2439.896428 +2439.910980 +2439.982242 +2439.993964 +2439.994463 +2440.006318 +2440.016907 +2440.019105 +2440.028263 +2440.067557 +2440.095595 +2440.126165 +2440.171286 +2440.227996 +2440.272019 +2440.302188 +2440.302721 +2440.334989 +2440.362395 +2440.362928 +2440.391566 +2440.483807 +2440.499058 +2440.542181 +2440.543647 +2440.558232 +2440.570520 +2440.572751 +2440.614842 +2440.618605 +2440.663793 +2440.675881 +2440.752271 +2440.768122 +2440.860130 +2440.891498 +2440.967256 +2440.984405 +2440.997925 +2441.045011 +2441.076713 +2441.165224 +2441.167222 +2441.181142 +2441.228295 +2441.241248 +2441.270086 +2441.313276 +2441.314675 +2441.316373 +2441.349440 +2441.363160 +2441.393263 +2441.469387 +2441.483872 +2441.487069 +2441.503719 +2441.568554 +2441.581941 +2441.646043 +2441.647342 +2441.675281 +2441.691165 +2441.695860 +2452.705073 +2452.705872 +2454.705770 +2461.705231 +2461.806030 +2462.406762 +2462.507261 +2462.806195 +2463.306561 +2463.506228 +2463.706294 +2464.005894 +2464.006161 +2464.506193 +2465.105926 +2465.307491 +2465.409356 +2466.006725 +2466.706324 +2466.707057 +2471.737122 +2471.746046 +2471.802590 +2471.803056 +2471.815277 +2471.935290 +2472.060199 +2472.092500 +2472.130295 +2472.166292 +2472.177015 +2472.200458 +2472.222136 +2472.256269 +2472.297761 +2472.309416 +2472.336322 +2472.372553 +2472.410015 +2472.457135 +2472.530095 +2472.579612 +2472.598693 +2472.758266 +2472.835689 +2472.980178 +2473.053271 +2473.169821 +2473.263994 +2473.477813 +2473.602355 +2473.681842 +2473.706317 +2473.732525 +2473.758232 +2473.860730 +2473.884506 +2473.923533 +2474.008848 +2474.021535 +2474.186570 +2474.201855 +2474.230226 +2474.257666 +2474.368854 +2474.411845 +2474.423766 +2474.437652 +2474.480909 +2474.567522 +2474.638884 +2474.792464 +2474.808714 +2474.837518 +2474.897292 +2474.897392 +2474.925397 +2474.942280 +2474.970519 +2475.103985 +2475.116473 +2475.164225 +2475.178977 +2475.208480 +2475.221334 +2475.250205 +2475.298124 +2475.343512 +2475.354801 +2475.372916 +2475.444844 +2475.478976 +2475.479309 +2475.540082 +2475.584338 +2475.628194 +2475.676745 +2475.705483 +2475.707481 +2475.748040 +2475.778810 +2475.836152 +2475.862592 +2475.888433 +2475.889299 +2475.906049 +2475.978876 +2476.007181 +2476.022899 +2476.066821 +2476.129858 +2476.161293 +2476.192995 +2476.204916 +2476.250005 +2476.367753 +2476.518602 +2476.534586 +2476.675479 +2487.706037 +2487.706270 +2487.706636 +2488.705470 +2488.711131 +2490.705468 +2491.706266 +2496.706128 +2497.106594 +2497.606693 +2497.806693 +2498.106793 +2498.306859 +2498.406892 +2498.706958 +2498.707192 +2498.806825 +2498.906792 +2499.207491 +2499.406858 +2499.706791 +2499.806791 +2499.807224 +2500.006891 +2500.106757 +2500.206391 +2500.306790 +2500.406824 +2500.506890 +2500.606790 +2500.706823 +2500.906823 +2501.006790 +2501.106923 +2501.206789 +2501.306789 +2501.606689 +2501.706789 +2506.864759 +2506.876248 +2507.245112 +2507.353303 +2507.470153 +2507.557000 +2507.606550 +2507.695394 +2507.698225 +2507.771651 +2507.796859 +2507.831991 +2507.844012 +2507.855068 +2508.025131 +2508.077712 +2508.089300 +2508.101854 +2508.202387 +2508.252903 +2508.355167 +2508.390432 +2508.427928 +2508.468587 +2508.602386 +2508.623599 +2508.690631 +2508.744311 +2508.755933 +2508.756332 +2508.792729 +2508.806848 +2508.831424 +2508.879476 +2508.890598 +2508.987568 +2509.051404 +2509.145909 +2509.266322 +2509.277810 +2509.365689 +2509.378643 +2509.379176 +2509.404084 +2509.416938 +2509.513208 +2509.539648 +2509.541413 +2509.569418 +2509.624796 +2509.651603 +2509.693061 +2509.704883 +2509.721433 +2509.745609 +2509.761060 +2509.802319 +2509.803884 +2509.804183 +2509.831889 +2509.846375 +2509.857863 +2509.872682 +2509.886801 +2509.913940 +2509.923531 +2509.924696 +2510.057630 +2510.072015 +2510.085369 +2510.100487 +2510.143244 +2510.153534 +2510.171083 +2510.222132 +2510.237983 +2510.279974 +2510.293027 +2510.348905 +2510.358329 +2510.418369 +2510.459927 +2510.488265 +2510.519634 +2510.547340 +2510.564422 +2510.669684 +2510.710343 +2510.725028 +2510.740013 +2510.795924 +2510.869883 +2510.871382 +2510.885534 +2510.914872 +2510.942710 +2510.963157 +2511.003416 +2511.020799 +2511.051701 +2511.078108 +2511.091495 +2511.125561 +2511.166453 +2511.185634 +2511.228058 +2511.241911 +2511.260792 +2511.304149 +2511.305880 +2511.333286 +2511.381205 +2511.425827 +2511.544508 +2511.587965 +2511.604015 +2511.617202 +2511.618201 +2511.680971 +2511.683902 +2521.705370 +2523.705601 +2531.705427 +2531.705627 +2531.806526 +2531.907025 +2532.606525 +2533.109455 +2533.206491 +2533.406424 +2533.606491 +2534.106224 +2534.106557 +2534.806556 +2535.006589 +2535.107422 +2535.206356 +2535.306655 +2535.706855 +2535.806522 +2536.106455 +2536.107121 +2536.406355 +2541.774215 +2541.819936 +2541.862626 +2541.975180 +2542.044977 +2542.296292 +2542.319536 +2542.343745 +2542.381873 +2542.394094 +2542.431890 +2542.532356 +2542.556065 +2542.569552 +2542.648873 +2542.751703 +2542.805016 +2542.829891 +2542.842778 +2542.886568 +2542.951703 +2542.989132 +2543.052968 +2543.104450 +2543.202552 +2543.214506 +2543.249804 +2543.252368 +2543.275445 +2543.334253 +2543.416504 +2543.444310 +2543.573580 +2543.586567 +2543.610610 +2543.624230 +2543.624995 +2543.692694 +2543.715205 +2543.742311 +2543.807113 +2543.847839 +2543.860060 +2543.912108 +2543.939481 +2543.951502 +2544.001519 +2544.043310 +2544.096324 +2544.122464 +2544.135618 +2544.169684 +2544.179540 +2544.196057 +2544.224828 +2544.284802 +2544.357329 +2544.383769 +2544.438415 +2544.524295 +2544.579873 +2544.606913 +2544.629690 +2544.795524 +2544.804515 +2544.814871 +2544.818001 +2544.830689 +2544.872846 +2544.882403 +2544.908078 +2544.946639 +2544.959992 +2544.987765 +2544.999153 +2545.026426 +2545.144441 +2545.144974 +2545.156929 +2545.211141 +2545.226259 +2545.253166 +2545.292326 +2545.293758 +2545.315969 +2545.340944 +2545.354165 +2545.417668 +2545.468850 +2545.471514 +2545.483402 +2545.499219 +2545.513871 +2545.550801 +2545.578107 +2545.637481 +2545.683968 +2545.688197 +2545.827258 +2545.846305 +2545.865453 +2545.895489 +2545.923961 +2545.939079 +2545.969049 +2546.007244 +2546.021097 +2546.022362 +2546.109242 +2546.125093 +2546.223661 +2546.250101 +2546.274810 +2546.277873 +2546.290927 +2546.321197 +2546.333884 +2546.336248 +2546.375542 +2546.472145 +2546.507710 +2546.509741 +2546.537114 +2546.551932 +2546.595622 +2546.623927 +2546.640544 +2546.652798 +2546.671979 +2546.685832 +2546.698252 +2558.706832 +2566.906690 +2566.907023 +2567.007390 +2567.606523 +2568.106323 +2568.106856 +2568.107189 +2568.206290 +2568.306689 +2568.506456 +2568.607088 +2568.807121 +2569.209352 +2569.306621 +2569.406322 +2569.506521 +2569.706421 +2571.006620 +2571.106520 +2571.108018 +2571.407019 +2571.606786 +2576.706314 +2576.709844 +2576.715772 +2576.722432 +2576.757330 +2576.776311 +2576.899754 +2576.965821 +2577.009944 +2577.081938 +2577.102251 +2577.212408 +2577.315671 +2577.345075 +2577.375345 +2577.471715 +2577.630656 +2577.755331 +2577.798421 +2577.893759 +2577.954365 +2578.058827 +2578.124095 +2578.135550 +2578.159726 +2578.183203 +2578.213106 +2578.590462 +2578.651567 +2578.665054 +2578.709509 +2578.811241 +2578.933352 +2579.023228 +2579.098153 +2579.300617 +2579.422229 +2579.545372 +2579.559259 +2579.613937 +2579.766718 +2579.791360 +2579.843774 +2580.005978 +2580.037147 +2580.051832 +2580.093657 +2580.121363 +2580.179704 +2580.265019 +2580.292824 +2580.334516 +2580.377539 +2580.436447 +2580.479204 +2580.583367 +2580.797219 +2580.815135 +2580.918165 +2580.918831 +2580.960622 +2580.991991 +2581.143073 +2581.156426 +2581.187196 +2581.233083 +2581.320029 +2581.321694 +2581.335514 +2581.376506 +2581.390093 +2581.392057 +2581.488328 +2581.509373 +2581.553829 +2581.626989 +2581.699516 +2601.705257 +2602.106589 +2603.707087 +2603.807220 +2604.406986 +2604.607618 +2605.306752 +2605.407551 +2605.507518 +2605.607051 +2606.506618 +2606.506884 +2606.507650 +2611.711108 +2611.856329 +2611.870215 +2611.907977 +2611.937015 +2611.937981 +2611.972180 +2612.096822 +2612.145307 +2612.268983 +2612.356329 +2612.488263 +2612.857560 +2612.913937 +2612.998020 +2613.245539 +2613.297553 +2613.446537 +2613.489494 +2613.641775 +2613.749368 +2613.804046 +2613.984665 +2614.065951 +2614.104878 +2614.158358 +2614.186164 +2614.199917 +2614.213769 +2614.240742 +2614.322361 +2614.387562 +2614.400782 +2614.461288 +2614.526689 +2614.563386 +2614.565118 +2614.578071 +2614.617532 +2614.631318 +2614.687495 +2614.727022 +2614.757458 +2614.783299 +2614.827921 +2614.841208 +2614.924258 +2614.924658 +2614.982134 +2614.993955 +2615.062387 +2615.104977 +2615.106609 +2615.118830 +2615.182766 +2615.278703 +2615.318896 +2615.362553 +2615.373841 +2615.444970 +2615.474141 +2615.555826 +2615.624557 +2615.637577 +2615.650664 +2615.665450 +2615.711803 +2615.780235 +2616.045602 +2616.053994 +2616.086362 +2616.202878 +2616.217497 +2616.263950 +2616.291157 +2616.365515 +2616.381300 +2616.406541 +2616.425289 +2616.514866 +2616.527620 +2616.533148 +2616.562618 +2616.577703 +2616.590324 +2616.593054 +2616.622858 +2616.623291 +2616.698116 +2626.706464 +2627.706763 +2631.706060 +2631.706592 +2636.710783 +2636.806154 +2636.907386 +2637.207886 +2637.306853 +2637.307153 +2637.607053 +2637.907685 +2638.008085 +2638.407185 +2638.507285 +2638.906752 +2639.007850 +2639.407617 +2639.607084 +2639.807883 +2640.007383 +2640.106784 +2640.707083 +2640.807616 +2640.807915 +2641.007982 +2641.107049 +2641.108681 +2646.903247 +2647.044006 +2647.426024 +2647.490792 +2647.601382 +2647.662853 +2647.742107 +2647.753663 +2647.895587 +2647.975774 +2647.977172 +2648.077672 +2648.103712 +2648.117165 +2648.332516 +2648.394654 +2648.490292 +2648.528820 +2648.557225 +2648.580768 +2648.703379 +2648.713935 +2648.845103 +2648.898283 +2648.911237 +2648.991257 +2649.070045 +2649.122326 +2649.234980 +2649.345636 +2649.429385 +2649.598416 +2649.639342 +2649.655525 +2649.666748 +2649.692688 +2649.706907 +2649.719861 +2649.748333 +2649.763917 +2649.795019 +2649.907939 +2650.002711 +2650.031216 +2650.089791 +2650.133414 +2650.223057 +2650.237243 +2650.264116 +2650.351362 +2650.400513 +2650.422158 +2650.434046 +2650.467046 +2650.536976 +2650.576936 +2650.695218 +2650.807506 +2650.809137 +2650.886060 +2650.899147 +2650.917562 +2651.014332 +2651.030116 +2651.039473 +2651.065547 +2651.065847 +2651.080066 +2651.108937 +2651.233113 +2651.491987 +2651.534811 +2651.590255 +2651.592187 +2651.632380 +2651.701144 +2664.705893 +2664.706326 +2665.705959 +2665.706725 +2672.407051 +2672.807717 +2673.007017 +2673.107783 +2673.507050 +2673.606983 +2673.707083 +2673.807682 +2674.307016 +2674.407049 +2675.308014 +2675.408214 +2675.507980 +2675.807547 +2676.206648 +2676.306248 +2676.407047 +2681.705344 +2682.179835 +2682.190491 +2682.271077 +2682.368247 +2682.431850 +2682.499648 +2682.608573 +2682.698882 +2682.735945 +2682.879035 +2682.996484 +2683.009638 +2683.175772 +2683.189258 +2683.290424 +2683.474772 +2683.487393 +2683.603177 +2683.612934 +2683.677736 +2683.845168 +2683.858189 +2683.958888 +2683.988625 +2683.999447 +2684.052694 +2684.066880 +2684.089923 +2684.133313 +2684.169177 +2684.207805 +2684.210436 +2684.221591 +2684.222391 +2684.235577 +2684.235944 +2684.278002 +2684.291988 +2684.307539 +2684.404375 +2684.405874 +2684.432614 +2684.434079 +2684.475837 +2684.478168 +2684.517229 +2684.533013 +2684.546999 +2684.708537 +2684.721025 +2684.816729 +2684.817495 +2684.885494 +2684.912067 +2684.954991 +2685.012367 +2685.041904 +2685.066879 +2685.098647 +2685.111534 +2685.169376 +2685.183096 +2685.212100 +2685.296216 +2685.351527 +2685.367178 +2685.464481 +2685.523222 +2685.568310 +2685.579332 +2685.627251 +2685.668676 +2685.696748 +2685.768843 +2685.804274 +2685.821090 +2685.835176 +2685.876368 +2685.878866 +2685.890987 +2685.931846 +2685.932545 +2685.934177 +2685.947830 +2685.965279 +2685.978999 +2686.008236 +2686.032845 +2686.045199 +2686.125952 +2686.200677 +2686.203541 +2686.234876 +2686.249295 +2686.277700 +2686.399844 +2686.442102 +2686.458153 +2686.579298 +2696.705995 +2696.706461 +2697.706293 +2698.706159 +2707.106950 +2707.307449 +2707.408182 +2707.608281 +2707.707848 +2707.906982 +2708.006982 +2708.007215 +2708.008248 +2708.107215 +2708.407681 +2708.507581 +2708.608447 +2708.707681 +2708.807881 +2708.808214 +2708.907181 +2709.007647 +2709.208446 +2709.507913 +2709.607846 +2709.707613 +2709.908312 +2710.108379 +2710.308012 +2710.507912 +2710.607912 +2710.707945 +2711.607878 +2717.227453 +2717.334312 +2717.494985 +2717.529850 +2717.822723 +2717.903010 +2718.003576 +2718.128417 +2718.178567 +2718.225354 +2718.288424 +2718.318694 +2718.331081 +2718.408071 +2718.513998 +2718.608337 +2718.794884 +2718.808303 +2718.847331 +2718.899679 +2718.939539 +2719.005906 +2719.082263 +2719.274304 +2719.299145 +2719.312765 +2719.327184 +2719.340804 +2719.563681 +2719.590987 +2719.632945 +2719.794550 +2719.877400 +2719.889588 +2719.990154 +2720.016328 +2720.071805 +2720.097813 +2720.123487 +2720.135209 +2720.146930 +2720.201875 +2720.214429 +2720.241103 +2720.254056 +2720.326750 +2720.343100 +2720.357320 +2720.383693 +2720.444765 +2720.446397 +2720.458585 +2720.488322 +2720.532011 +2720.563213 +2720.651525 +2720.680829 +2720.683260 +2720.742601 +2720.839004 +2720.909567 +2720.939703 +2720.954555 +2721.007402 +2721.021388 +2721.190519 +2721.205237 +2721.302873 +2721.400575 +2721.401241 +2721.448827 +2721.508501 +2721.521188 +2721.669073 +2732.706192 +2736.706820 +2741.705683 +2741.908114 +2742.107215 +2742.707447 +2743.108246 +2743.207347 +2743.407513 +2744.308111 +2744.407345 +2744.607445 +2744.707478 +2744.907412 +2745.007811 +2745.008644 +2745.407311 +2745.707877 +2745.807344 +2745.907311 +2745.908077 +2746.208110 +2746.307344 +2746.407277 +2746.408576 +2751.891187 +2751.957255 +2751.957521 +2752.014997 +2752.214530 +2752.251926 +2752.412133 +2752.535909 +2752.605706 +2752.696714 +2752.748496 +2752.792552 +2752.830547 +2752.856122 +2752.932245 +2752.980131 +2753.111200 +2753.137973 +2753.149095 +2753.191885 +2753.230314 +2753.244799 +2753.268908 +2753.423653 +2753.471372 +2753.613097 +2753.665411 +2753.679564 +2753.742634 +2753.751625 +2753.764279 +2753.856087 +2753.922521 +2754.118391 +2754.131079 +2754.323086 +2754.375934 +2754.406403 +2754.488088 +2754.741834 +2754.799410 +2754.828214 +2754.885024 +2754.898011 +2754.928747 +2754.986656 +2754.987122 +2755.028347 +2755.161148 +2755.205337 +2755.207102 +2755.223918 +2755.281860 +2755.354321 +2755.381560 +2755.438470 +2755.487021 +2755.561813 +2755.665310 +2755.758350 +2755.817524 +2755.834007 +2755.912895 +2755.987554 +2755.989418 +2756.017524 +2756.034074 +2756.061513 +2756.094180 +2756.165942 +2756.175332 +2756.177197 +2756.226781 +2756.268339 +2756.286022 +2756.357883 +2756.388752 +2756.436304 +2756.479894 +2756.480260 +2756.521852 +2756.539534 +2756.633907 +2756.636870 +2756.670537 +2756.682525 +2756.700806 +2768.705989 +2776.806114 +2776.906880 +2777.307412 +2777.706846 +2778.406179 +2778.506046 +2778.706146 +2779.006245 +2779.305845 +2779.406178 +2779.406578 +2779.506445 +2780.506943 +2780.807509 +2780.906277 +2781.206343 +2781.605976 +2781.606309 +2781.706376 +2781.707042 +2786.970773 +2787.335208 +2787.429247 +2787.482128 +2787.667375 +2787.815161 +2787.893915 +2787.944731 +2788.008134 +2788.279729 +2788.318191 +2788.445996 +2788.459949 +2788.485923 +2788.617991 +2788.809499 +2788.822885 +2788.901873 +2788.945096 +2788.967807 +2789.074667 +2789.114260 +2789.245895 +2789.246295 +2789.284856 +2789.394680 +2789.405469 +2789.421153 +2789.447793 +2789.473234 +2789.475466 +2789.584690 +2789.642465 +2789.726281 +2789.837137 +2789.851389 +2789.931676 +2789.992948 +2790.047726 +2790.103104 +2790.323583 +2790.352621 +2790.397642 +2790.411795 +2790.439600 +2790.466207 +2790.483856 +2790.602371 +2790.643863 +2790.674632 +2790.717789 +2790.745428 +2790.748691 +2790.763043 +2790.777629 +2790.842897 +2790.856417 +2790.881225 +2790.895011 +2790.910762 +2790.966540 +2791.006433 +2791.033939 +2791.065008 +2791.124382 +2791.185987 +2791.213060 +2791.300139 +2791.301638 +2791.313559 +2791.453153 +2791.507765 +2791.508331 +2791.545094 +2791.592613 +2791.607998 +2791.661810 +2791.690915 +2804.705920 +2804.706186 +2804.710682 +2805.705886 +2811.805513 +2811.806346 +2812.306378 +2812.506445 +2812.906544 +2813.206777 +2813.306377 +2813.506577 +2813.706510 +2814.006610 +2814.206909 +2814.306277 +2814.406843 +2814.407109 +2814.606609 +2814.806542 +2815.606508 +2815.906575 +2816.106941 +2816.206641 +2816.506741 +2821.315594 +2821.879063 +2822.164910 +2822.233941 +2822.329645 +2822.544896 +2822.577264 +2822.706535 +2822.730777 +2822.777131 +2822.819521 +2822.868672 +2822.968672 +2822.982492 +2823.040900 +2823.097876 +2823.208532 +2823.249158 +2823.303937 +2823.509664 +2823.571169 +2823.627613 +2823.691815 +2824.018854 +2824.041998 +2824.130110 +2824.142297 +2824.191448 +2824.205035 +2824.217755 +2824.217955 +2824.308764 +2824.413426 +2824.576230 +2824.615424 +2824.643429 +2824.656016 +2824.815790 +2824.857981 +2824.885720 +2824.928644 +2824.941264 +2825.084288 +2825.323748 +2825.420185 +2825.451820 +2825.506165 +2825.638966 +2825.892778 +2825.921283 +2825.978926 +2826.076228 +2826.106298 +2826.162608 +2826.166837 +2826.223980 +2826.307830 +2826.321882 +2826.363074 +2826.429674 +2826.475762 +2826.541363 +2826.565105 +2826.596374 +2826.613257 +2826.639964 +2826.656347 +2826.686517 +2826.689914 +2836.881612 +2838.880844 +2845.081670 +2845.082070 +2845.082303 +2845.182503 +2845.382569 +2845.482502 +2845.682635 +2846.081370 +2848.181800 +2848.783298 +2855.175999 +2855.187155 +2855.578863 +2855.693781 +2855.781693 +2855.921320 +2856.100907 +2856.218356 +2856.278795 +2856.343497 +2856.383790 +2856.497343 +2856.608465 +2856.633807 +2856.764842 +2856.871003 +2856.966407 +2856.987053 +2857.044296 +2857.141232 +2857.153253 +2857.153520 +2857.166973 +2857.231075 +2857.231375 +2857.267306 +2857.269071 +2857.269404 +2857.576263 +2857.616823 +2857.619087 +2857.646626 +2857.755784 +2857.796310 +2857.943296 +2858.062810 +2858.118853 +2858.131574 +2858.204668 +2858.205067 +2858.243495 +2858.259546 +2858.270002 +2858.274364 +2858.289583 +2858.347158 +2858.373832 +2858.388350 +2858.398407 +2858.416023 +2858.430941 +2858.503801 +2858.515323 +2858.531440 +2858.542896 +2858.575829 +2858.669136 +2858.766072 +2858.808630 +2858.846625 +2858.883288 +2858.884554 +2858.940098 +2858.952219 +2858.981357 +2859.024247 +2859.053784 +2859.082422 +2859.125779 +2859.138466 +2859.198273 +2859.212492 +2859.292745 +2859.303701 +2859.345792 +2859.349821 +2859.361942 +2859.408263 +2859.435735 +2859.453617 +2859.554416 +2859.583421 +2859.626777 +2859.628809 +2859.676195 +2859.688582 +2859.702934 +2859.732738 +2859.780024 +2859.821882 +2859.852385 +2873.881542 +2873.887103 +2874.882373 +2874.887668 +2879.982901 +2880.283600 +2880.383766 +2880.484099 +2880.583833 +2880.584499 +2880.885198 +2881.083899 +2881.185364 +2881.485563 +2881.583965 +2881.683931 +2881.884298 +2881.985463 +2882.285563 +2882.286661 +2882.384131 +2882.385629 +2882.484197 +2882.484730 +2882.684530 +2883.184296 +2883.385428 +2884.485960 +2889.960746 +2890.407499 +2890.900705 +2891.232607 +2891.280991 +2891.310529 +2891.356882 +2891.444395 +2891.605866 +2891.655150 +2891.656615 +2891.744561 +2891.757881 +2891.770635 +2891.783955 +2891.838467 +2891.838766 +2891.850621 +2891.877827 +2891.878360 +2891.917954 +2891.967238 +2892.000971 +2892.068270 +2892.095876 +2892.135136 +2892.149589 +2892.173565 +2892.175463 +2892.201470 +2892.211060 +2892.237401 +2892.378726 +2892.390281 +2892.439465 +2892.466072 +2892.591946 +2892.593811 +2892.632872 +2892.743428 +2892.758413 +2892.837500 +2892.911060 +2892.938699 +2892.940264 +2892.964240 +2892.980557 +2893.004466 +2893.110826 +2893.146258 +2893.174130 +2893.186817 +2893.200603 +2893.200870 +2893.247789 +2893.317586 +2893.330706 +2893.436933 +2893.462441 +2893.483587 +2893.486950 +2893.534136 +2893.634203 +2893.729607 +2893.756680 +2893.772930 +2893.843360 +2893.843859 +2893.861109 +2894.000769 +2894.046024 +2894.060809 +2894.331538 +2894.347455 +2894.475594 +2894.508194 +2894.538031 +2894.621548 +2894.693176 +2894.782919 +2894.874195 +2905.892332 +2909.886800 +2915.787627 +2915.887860 +2916.287393 +2916.288226 +2916.387160 +2916.688958 +2916.888025 +2916.987493 +2917.087859 +2917.587658 +2917.987225 +2918.087425 +2918.188091 +2918.587624 +2919.287057 +2919.488123 +2919.887590 +2919.888222 +2925.180125 +2925.309396 +2925.321117 +2925.571600 +2925.591447 +2925.654350 +2925.665572 +2925.720085 +2925.875196 +2925.923548 +2925.925346 +2925.960511 +2926.032705 +2926.071932 +2926.254083 +2926.289015 +2926.338832 +2926.437433 +2926.539797 +2926.567170 +2926.578792 +2926.627376 +2926.627942 +2926.691379 +2926.823147 +2926.875062 +2926.914922 +2926.980057 +2927.005798 +2927.006464 +2927.019217 +2927.047423 +2927.111292 +2927.125544 +2927.178558 +2927.246989 +2927.270999 +2927.272364 +2927.285884 +2927.299470 +2927.337332 +2927.340163 +2927.341295 +2927.393310 +2927.406197 +2927.471831 +2927.483719 +2927.500502 +2927.592144 +2927.643259 +2927.668767 +2927.778258 +2927.830605 +2927.831171 +2927.833369 +2927.871697 +2927.953016 +2927.977558 +2928.044325 +2928.136666 +2928.200368 +2928.201967 +2928.203665 +2928.262939 +2928.279256 +2928.348220 +2928.348787 +2928.358843 +2928.413422 +2928.442160 +2928.470165 +2928.485650 +2928.549919 +2928.562140 +2928.576725 +2928.705230 +2928.718483 +2928.730138 +2928.748620 +2928.760941 +2928.816452 +2928.870398 +2928.915020 +2928.928639 +2928.953148 +2928.956212 +2928.957078 +2929.069399 +2929.097371 +2929.153914 +2929.194440 +2929.233368 +2929.295339 +2929.311623 +2929.337563 +2929.392309 +2929.447154 +2929.502099 +2929.625309 +2929.806994 +2929.863570 +2929.876324 +2941.886902 +2949.891522 +2949.892521 +2950.088392 +2950.588425 +2950.688458 +2950.789157 +2951.089290 +2951.389290 +2951.688357 +2952.287457 +2952.887890 +2953.587722 +2954.694015 +2954.787788 +2959.910227 +2960.156614 +2960.488881 +2960.568967 +2960.592677 +2960.892510 +2960.953349 +2961.112557 +2961.159676 +2961.170032 +2961.203532 +2961.286782 +2961.288714 +2961.300469 +2961.351384 +2961.401567 +2961.489379 +2961.522480 +2961.555047 +2961.569699 +2961.621181 +2961.621780 +2961.634101 +2961.659309 +2961.732003 +2961.780122 +2961.793875 +2961.901667 +2961.931603 +2961.958177 +2961.980554 +2961.982286 +2962.006362 +2962.018250 +2962.088680 +2962.126009 +2962.139296 +2962.152582 +2962.163238 +2962.186315 +2962.208526 +2962.291410 +2962.302699 +2962.315153 +2962.315719 +2962.384883 +2962.403431 +2962.427773 +2962.499768 +2962.571230 +2962.632968 +2962.723844 +2962.737630 +2962.748819 +2962.751516 +2962.763204 +2962.789545 +2962.879721 +2962.917350 +2962.943524 +2962.981486 +2963.040127 +2963.044090 +2963.097137 +2963.164136 +2963.223810 +2963.235332 +2963.298535 +2963.352748 +2963.380253 +2963.390476 +2963.395471 +2963.435032 +2963.475658 +2963.490010 +2963.526707 +2963.556310 +2963.569531 +2963.583850 +2963.653014 +2963.902098 +2963.943356 +2963.974625 +2963.988877 +2964.004262 +2964.013486 +2964.043456 +2964.182350 +2964.236896 +2964.295437 +2964.307858 +2964.352247 +2964.532900 +2964.574125 +2964.746519 +2964.876356 +2964.876556 +2976.886900 +2979.885898 +2979.886198 +2984.886159 +2985.186692 +2986.887423 +2987.087389 +2987.688321 +2987.788254 +2989.187520 +2994.895706 +2995.018284 +2995.019616 +2995.080488 +2995.172296 +2995.271830 +2995.375093 +2995.501333 +2995.513788 +2995.623578 +2995.623844 +2995.862305 +2995.934966 +2996.016218 +2996.137097 +2996.306894 +2996.384250 +2996.385615 +2996.398768 +2996.422978 +2996.513254 +2996.524975 +2996.537763 +2996.561439 +2996.663137 +2996.688811 +2996.701166 +2996.726307 +2996.763037 +2996.800300 +2996.849351 +2996.919580 +2996.929337 +2996.941825 +2997.018981 +2997.020380 +2997.049450 +2997.050982 +2997.051881 +2997.077156 +2997.116583 +2997.165168 +2997.165568 +2997.287312 +2997.320712 +2997.355411 +2997.356177 +2997.379886 +2997.460239 +2997.485847 +2997.578554 +2997.631501 +2997.644155 +2997.646519 +2997.673859 +2997.686280 +2997.699466 +2997.710922 +2997.713319 +2997.713652 +2997.784082 +2997.796636 +2997.797002 +2997.807192 +2997.822377 +2997.835996 +2997.914218 +2997.918447 +2997.956010 +2997.969430 +2997.970695 +2998.220611 +2998.221444 +2998.244821 +2998.246719 +2998.297235 +2998.319779 +2998.374058 +2998.553811 +2998.568130 +2998.594937 +2998.609156 +2998.666399 +2998.750614 +2998.763068 +2998.776988 +2998.819479 +2998.905959 +2998.909588 +2998.948949 +2998.951280 +2999.065899 +2999.136528 +2999.150381 +2999.209788 +2999.280184 +2999.307357 +2999.322608 +2999.408622 +2999.423008 +2999.449914 +2999.508356 +2999.564300 +2999.575921 +2999.630200 +2999.643620 +2999.744952 +2999.881316 +3011.885566 +3011.886265 +3013.891325 +3014.890791 +3019.985824 +3019.986257 +3020.086690 +3020.286490 +3020.584958 +3021.086889 +3021.286722 +3021.387655 +3021.388054 +3022.387654 +3023.688118 +3023.788118 +3024.787485 +3030.165468 +3030.657808 +3030.678854 +3030.841758 +3030.908424 +3030.982317 +3031.070695 +3031.239193 +3031.295770 +3031.309290 +3031.360805 +3031.497934 +3031.574557 +3031.634697 +3031.735763 +3031.749482 +3031.811986 +3031.856742 +3031.880917 +3031.905859 +3031.931334 +3031.958373 +3032.094470 +3032.261836 +3032.289575 +3032.355309 +3032.542156 +3032.568829 +3032.625406 +3032.802928 +3032.852778 +3032.873291 +3032.975488 +3032.977686 +3033.050547 +3033.076254 +3033.092438 +3033.147949 +3033.234962 +3033.235595 +3033.322241 +3033.363001 +3033.366597 +3033.395501 +3033.409887 +3033.424506 +3033.523973 +3033.555142 +3033.583480 +3033.615748 +3033.658405 +3033.673157 +3033.701362 +3033.732864 +3033.774122 +3033.804725 +3034.087842 +3034.164631 +3034.314581 +3034.387442 +3034.414348 +3034.443752 +3034.472024 +3034.486043 +3034.527502 +3034.582546 +3034.614847 +3034.716812 +3044.885633 +3047.891824 +3048.886262 +3054.889819 +3054.890918 +3055.187987 +3056.087387 +3056.088852 +3056.187387 +3056.587420 +3056.688851 +3056.988751 +3057.387019 +3057.687185 +3057.688318 +3058.188783 +3058.488916 +3058.588883 +3059.088816 +3059.188915 +3059.287583 +3059.288882 +3059.489015 +3059.587417 +3059.588615 +3064.889809 +3064.890675 +3064.896336 +3064.966565 +3065.046918 +3065.104494 +3065.283348 +3065.398200 +3065.506325 +3065.608922 +3065.635229 +3065.773125 +3065.859938 +3065.919678 +3065.945552 +3066.007290 +3066.117979 +3066.118679 +3066.191239 +3066.231233 +3066.255775 +3066.449947 +3066.470660 +3066.470959 +3066.491372 +3066.506657 +3066.599098 +3066.638991 +3066.642155 +3066.678718 +3066.763533 +3066.801628 +3066.803693 +3066.830466 +3067.096766 +3067.121275 +3067.146483 +3067.171458 +3067.197299 +3067.198831 +3067.213017 +3067.268295 +3067.297765 +3067.324105 +3067.325038 +3067.339890 +3067.434728 +3067.543053 +3067.555707 +3067.579383 +3067.621741 +3067.652144 +3067.694435 +3067.722773 +3067.752477 +3067.778284 +3067.793169 +3067.805790 +3067.886809 +3067.914415 +3067.943286 +3067.970791 +3068.043585 +3068.085310 +3068.113216 +3068.113682 +3068.127801 +3068.139156 +3068.152942 +3068.211750 +3068.226669 +3068.252310 +3068.282679 +3068.308021 +3068.308986 +3068.320275 +3068.417378 +3068.450744 +3068.464331 +3068.480248 +3068.494967 +3068.538423 +3068.566462 +3068.595100 +3068.637957 +3068.698230 +3068.699595 +3068.788173 +3068.816345 +3068.817877 +3068.844217 +3068.860534 +3068.872389 +3068.931963 +3068.948979 +3068.978683 +3069.041253 +3069.086674 +3069.180314 +3069.229898 +3069.245382 +3069.310417 +3069.401326 +3069.432528 +3069.448546 +3069.461333 +3069.568992 +3069.602192 +3069.618276 +3069.632561 +3069.755338 +3069.815645 +3069.842085 +3089.986654 +3090.087053 +3090.587519 +3090.588451 +3090.990249 +3091.587684 +3092.087950 +3092.187184 +3092.188849 +3092.288982 +3092.487617 +3092.587217 +3092.587517 +3092.589082 +3092.889082 +3092.989081 +3093.089081 +3093.188282 +3093.287483 +3093.488082 +3093.687616 +3093.787615 +3093.987149 +3093.988914 +3094.089114 +3094.187981 +3094.287748 +3094.289047 +3094.487482 +3099.890873 +3099.896800 +3099.897932 +3099.902894 +3099.912085 +3099.942388 +3100.130699 +3100.324539 +3100.377685 +3100.452078 +3100.508421 +3100.549147 +3100.646816 +3100.739457 +3101.012084 +3101.023506 +3101.074122 +3101.100362 +3101.124438 +3101.161534 +3101.161934 +3101.200096 +3101.241221 +3101.291837 +3101.381148 +3101.416945 +3101.431431 +3101.481780 +3101.517644 +3101.542986 +3101.580148 +3101.607754 +3101.621674 +3101.661434 +3101.740388 +3101.767727 +3101.780681 +3101.807454 +3101.845616 +3101.949945 +3101.950444 +3101.977850 +3101.990671 +3102.003991 +3102.004490 +3102.017411 +3102.101360 +3102.115579 +3102.208320 +3102.288040 +3102.304157 +3102.375253 +3102.402792 +3102.416878 +3102.444150 +3102.472588 +3102.554773 +3102.597563 +3102.599029 +3102.627900 +3102.652675 +3102.655572 +3102.764463 +3102.805089 +3102.806354 +3102.862265 +3102.930830 +3103.007187 +3103.020607 +3103.051476 +3103.138588 +3103.152308 +3103.184010 +3103.201026 +3103.215245 +3103.244183 +3103.274719 +3103.349278 +3103.375918 +3103.422238 +3103.450077 +3103.480946 +3103.667026 +3103.804522 +3103.850509 +3103.924069 +3103.924335 +3103.924668 +3103.940652 +3103.969090 +3103.980812 +3104.012147 +3104.263862 +3104.308451 +3104.323602 +3104.350775 +3104.368557 +3104.384242 +3104.445114 +3104.477715 +3104.492100 +3104.506219 +3104.554171 +3104.585140 +3104.692400 +3104.708950 +3104.772886 +3104.817308 +3104.846612 +3104.876815 +3115.886228 +3115.887027 +3117.886825 +3124.886452 +3125.687417 +3126.388016 +3126.587716 +3126.688981 +3126.988881 +3128.588846 +3128.688779 +3129.088912 +3129.387680 +3134.985110 +3135.004391 +3135.160468 +3135.339788 +3135.682512 +3135.711783 +3135.772822 +3135.790038 +3135.800294 +3135.897364 +3136.065029 +3136.127300 +3136.176384 +3136.188705 +3136.189171 +3136.212148 +3136.223837 +3136.224569 +3136.316644 +3136.417410 +3136.481379 +3136.491669 +3136.529631 +3136.585342 +3136.610050 +3136.610450 +3136.690903 +3136.720806 +3136.786840 +3136.801092 +3136.852341 +3136.865361 +3136.891235 +3136.945381 +3136.959067 +3136.985341 +3137.012980 +3137.013546 +3137.062730 +3137.141851 +3137.195065 +3137.195697 +3137.208751 +3137.222371 +3137.346546 +3137.374618 +3137.432593 +3137.443982 +3137.486539 +3137.502290 +3137.517675 +3137.527732 +3137.530462 +3137.542783 +3137.543349 +3137.572120 +3137.586140 +3137.643749 +3137.671588 +3137.725034 +3137.741917 +3137.769589 +3137.808517 +3137.840818 +3137.853938 +3137.912380 +3137.995696 +3138.026266 +3138.055570 +3138.100192 +3138.114378 +3138.188037 +3138.213712 +3138.243915 +3138.244348 +3138.247345 +3138.292899 +3138.321504 +3138.337454 +3138.441750 +3138.547311 +3138.574883 +3138.608550 +3138.652173 +3138.681277 +3138.713012 +3138.729795 +3138.743581 +3138.754637 +3138.773951 +3138.801923 +3138.814277 +3138.863561 +3138.878280 +3138.997893 +3139.046678 +3139.090467 +3139.111147 +3139.141483 +3139.195828 +3139.225665 +3139.267523 +3139.281343 +3139.353870 +3139.424133 +3139.480477 +3139.582375 +3139.623900 +3139.666024 +3139.695095 +3139.721602 +3139.763494 +3139.806451 +3139.850706 +3150.886193 +3159.986783 +3160.187116 +3161.788613 +3161.888680 +3162.287380 +3163.688744 +3163.987312 +3163.987612 +3169.896564 +3170.102724 +3170.131262 +3170.156404 +3170.241285 +3170.398794 +3170.409617 +3170.597595 +3170.811748 +3170.843449 +3170.911981 +3170.973552 +3171.041484 +3171.245780 +3171.296029 +3171.343016 +3171.426432 +3171.490435 +3171.583975 +3171.648044 +3171.753005 +3171.777581 +3171.816508 +3171.846478 +3171.872186 +3171.939885 +3172.036921 +3172.122602 +3172.164826 +3172.273185 +3172.298126 +3172.322335 +3172.441183 +3172.512878 +3172.539318 +3172.579045 +3172.602422 +3172.660464 +3172.735955 +3172.737986 +3172.764759 +3172.816807 +3172.830560 +3172.856667 +3172.976880 +3172.992997 +3173.048509 +3173.111512 +3173.137852 +3173.181942 +3173.257533 +3173.319271 +3173.348608 +3173.364093 +3173.379044 +3173.420636 +3173.468821 +3173.481342 +3173.498691 +3173.527995 +3173.601555 +3173.644345 +3173.647109 +3173.692198 +3173.718305 +3173.734921 +3173.735687 +3173.751538 +3173.763859 +3173.792664 +3173.810313 +3173.854568 +3173.868654 +3173.870452 +3173.926863 +3173.944545 +3173.957132 +3173.971884 +3173.987202 +3174.004052 +3174.075148 +3174.092930 +3174.136653 +3174.163825 +3174.260862 +3174.287035 +3174.319103 +3174.331258 +3174.333556 +3174.407149 +3174.407348 +3174.430026 +3174.447608 +3174.460295 +3174.515773 +3174.519070 +3174.576879 +3174.588434 +3174.588900 +3174.603419 +3174.694461 +3174.695260 +3184.891221 +3188.885989 +3189.885854 +3189.886454 +3194.885483 +3194.886016 +3194.991077 +3195.387048 +3196.186481 +3196.287080 +3197.088445 +3197.287978 +3197.788510 +3198.187245 +3198.387211 +3199.088576 +3199.487476 +3199.587443 +3199.687643 +3199.787609 +3205.481809 +3205.590867 +3205.653571 +3205.678945 +3205.896394 +3205.908582 +3205.920803 +3205.946977 +3206.161229 +3206.172551 +3206.197793 +3206.242182 +3206.242714 +3206.293231 +3206.317673 +3206.339617 +3206.341183 +3206.367390 +3206.441216 +3206.568322 +3206.634822 +3206.647876 +3206.753303 +3206.904086 +3206.915774 +3206.926696 +3206.987502 +3207.040216 +3207.054868 +3207.107582 +3207.107982 +3207.128128 +3207.207649 +3207.222567 +3207.236819 +3207.314075 +3207.325963 +3207.339616 +3207.361961 +3207.364425 +3207.461728 +3207.524265 +3207.612477 +3207.625297 +3207.626629 +3207.638551 +3207.650905 +3207.703153 +3207.755300 +3207.793629 +3207.795294 +3207.807581 +3207.820102 +3207.939050 +3208.031590 +3208.049706 +3208.061993 +3208.140548 +3208.142346 +3208.167255 +3208.218537 +3208.219969 +3208.248174 +3208.261127 +3208.319336 +3208.329859 +3208.417937 +3208.432156 +3208.488367 +3208.515406 +3208.554833 +3208.583538 +3208.598456 +3208.640747 +3208.654800 +3208.664157 +3208.680674 +3208.691463 +3208.763058 +3208.819702 +3208.849305 +3208.862725 +3208.943411 +3209.012209 +3209.238749 +3209.251303 +3209.279841 +3209.291263 +3209.405349 +3209.476278 +3209.490697 +3209.491129 +3209.520300 +3209.533587 +3209.537183 +3209.627959 +3209.655665 +3209.686800 +3209.731256 +3209.758695 +3209.763757 +3209.804982 +3209.818269 +3209.878608 +3221.885722 +3222.885555 +3222.886121 +3223.886386 +3224.886385 +3229.890443 +3229.890809 +3229.986613 +3229.986813 +3231.287245 +3231.587344 +3231.588110 +3231.688243 +3231.787611 +3231.887344 +3231.987211 +3232.087411 +3232.488143 +3232.887376 +3232.988242 +3234.186776 +3240.092631 +3240.290266 +3240.377545 +3240.389001 +3240.508481 +3240.785038 +3240.898824 +3241.033056 +3241.118171 +3241.130592 +3241.142680 +3241.167421 +3241.310045 +3241.333322 +3241.446342 +3241.532889 +3241.545010 +3241.582539 +3241.676712 +3241.721367 +3241.757198 +3241.783771 +3241.837084 +3241.850804 +3241.898923 +3241.948706 +3241.974580 +3242.014174 +3242.159428 +3242.161426 +3242.173881 +3242.560860 +3242.604749 +3242.765189 +3242.778209 +3242.832055 +3243.023131 +3243.052035 +3243.062924 +3243.065555 +3243.100953 +3243.104516 +3243.129191 +3243.144043 +3243.185568 +3243.254432 +3243.255065 +3243.267053 +3243.270017 +3243.270649 +3243.297456 +3243.383770 +3243.397756 +3243.400253 +3243.412874 +3243.428558 +3243.471482 +3243.514539 +3243.526726 +3243.564322 +3243.595791 +3243.675378 +3243.706680 +3243.721831 +3243.751168 +3243.804881 +3243.829956 +3243.861824 +3243.889896 +3243.903116 +3243.918701 +3243.957895 +3244.006047 +3244.019533 +3244.046639 +3244.059926 +3244.061824 +3244.087432 +3244.104548 +3244.171514 +3244.220432 +3244.233819 +3244.260559 +3244.274311 +3244.302616 +3244.402516 +3244.413605 +3244.416336 +3244.461091 +3244.490129 +3244.520332 +3244.531021 +3244.533785 +3244.646605 +3244.658294 +3244.671580 +3244.746472 +3244.775177 +3244.790062 +3244.819599 +3244.877175 +3251.970274 +3255.890817 +3256.886453 +3257.886386 +3258.885552 +3258.886052 +3259.885618 +3259.886284 +3264.886079 +3264.889909 +3265.386711 +3265.587377 +3265.587710 +3265.987144 +3266.687176 +3267.187142 +3267.188175 +3267.988141 +3268.286742 +3268.287841 +3269.086907 +3269.088239 +3274.920168 +3274.955866 +3275.150205 +3275.180108 +3275.256532 +3275.336984 +3275.471816 +3275.481440 +3275.518902 +3275.546774 +3275.560894 +3275.632156 +3275.671683 +3275.737384 +3275.971616 +3276.110510 +3276.149671 +3276.223430 +3276.235885 +3276.298588 +3276.333820 +3276.395924 +3276.497290 +3276.562225 +3276.574745 +3276.627026 +3276.857529 +3276.885035 +3276.895891 +3276.961292 +3276.989064 +3277.000819 +3277.094592 +3277.135684 +3277.149104 +3277.229856 +3277.256896 +3277.283769 +3277.350569 +3277.449703 +3277.617535 +3277.644275 +3277.700252 +3277.701318 +3277.785633 +3277.882070 +3277.913672 +3277.926026 +3277.954997 +3277.985134 +3278.013339 +3278.030355 +3278.031421 +3278.044241 +3278.074011 +3278.103249 +3278.132686 +3278.191960 +3278.206212 +3278.277175 +3278.317801 +3278.345473 +3278.361057 +3278.362156 +3278.391260 +3278.418766 +3278.434184 +3278.464387 +3278.479505 +3278.493758 +3278.548570 +3278.758027 +3278.803581 +3278.819432 +3278.847837 +3278.892991 +3278.907277 +3278.949402 +3278.963321 +3278.978739 +3278.991726 +3279.019398 +3279.065885 +3279.134983 +3279.136947 +3279.161389 +3279.233551 +3279.290427 +3279.301416 +3279.302581 +3279.396954 +3279.413803 +3279.437480 +3279.469281 +3279.498519 +3279.529288 +3279.635615 +3279.715035 +3279.728422 +3279.775308 +3279.777739 +3291.886285 +3293.886616 +3299.885578 +3299.890606 +3299.986210 +3299.986743 +3300.087343 +3300.387376 +3300.687009 +3300.987841 +3301.687141 +3302.388139 +3303.287106 +3303.887472 +3304.187272 +3304.487338 +3304.886305 +3304.887071 +3309.977975 +3310.062557 +3310.099021 +3310.153100 +3310.428791 +3310.450436 +3310.490762 +3310.628358 +3310.641877 +3310.767019 +3310.795490 +3310.795957 +3310.847105 +3310.860492 +3311.006379 +3311.106479 +3311.182703 +3311.304880 +3311.464188 +3311.527458 +3311.579173 +3311.670048 +3311.763188 +3311.790195 +3311.958959 +3311.962722 +3312.029455 +3312.056528 +3312.106378 +3312.109209 +3312.218932 +3312.285232 +3312.403481 +3312.509275 +3312.594723 +3312.608575 +3312.693424 +3312.707310 +3312.772312 +3312.802714 +3312.856361 +3312.884699 +3312.923693 +3312.923993 +3312.949634 +3312.963121 +3313.019664 +3313.031585 +3313.105378 +3313.146604 +3313.279071 +3313.351732 +3313.439943 +3313.455494 +3313.471612 +3313.499317 +3313.528987 +3313.547103 +3313.635015 +3313.635581 +3313.666816 +3313.711372 +3313.726656 +3313.742141 +3313.755561 +3313.801048 +3313.801748 +3313.803280 +3313.923293 +3313.935414 +3314.089160 +3314.119696 +3314.136746 +3314.194555 +3314.255960 +3314.272943 +3314.283232 +3314.289060 +3314.312836 +3314.330419 +3314.344305 +3314.374674 +3314.387661 +3314.433815 +3314.436745 +3314.479436 +3314.567614 +3314.626256 +3314.645170 +3314.676639 +3314.720162 +3314.747135 +3314.806642 +3314.847601 +3324.886086 +3329.885914 +3334.887607 +3334.987274 +3335.588339 +3335.687540 +3335.688506 +3336.187506 +3336.286973 +3336.588538 +3336.687339 +3336.787472 +3336.788605 +3336.789570 +3336.887672 +3337.486906 +3337.987371 +3338.387304 +3338.588003 +3338.687570 +3338.787037 +3339.187703 +3339.287736 +3339.687636 +3339.787769 +3339.887602 +3344.902749 +3344.926592 +3344.943009 +3344.953065 +3344.970082 +3345.126059 +3345.168117 +3345.268616 +3345.312938 +3345.389728 +3345.452199 +3345.615535 +3345.630021 +3345.675276 +3345.707643 +3345.813471 +3345.854163 +3345.879072 +3345.913737 +3345.923361 +3346.030786 +3346.032618 +3346.058259 +3346.206511 +3346.269681 +3346.270114 +3346.328155 +3346.350999 +3346.437879 +3346.476707 +3346.502048 +3346.527922 +3346.541542 +3346.562954 +3346.604779 +3346.617899 +3346.694622 +3346.707709 +3346.708142 +3346.719131 +3346.747569 +3346.760623 +3346.787862 +3346.801149 +3346.812537 +3346.827722 +3346.840110 +3346.842541 +3346.905078 +3346.932550 +3346.982101 +3347.008674 +3347.022627 +3347.049866 +3347.119097 +3347.143739 +3347.159590 +3347.227655 +3347.228121 +3347.228521 +3347.268148 +3347.282367 +3347.310905 +3347.322493 +3347.335114 +3347.338144 +3347.394721 +3347.406942 +3347.407542 +3347.434282 +3347.538844 +3347.562453 +3347.613735 +3347.640742 +3347.696519 +3347.713269 +3347.781268 +3347.796352 +3347.823026 +3347.878570 +3347.949566 +3348.260721 +3348.285629 +3348.513035 +3348.553428 +3348.581134 +3348.612735 +3348.650731 +3348.710937 +3348.798749 +3348.887660 +3348.904010 +3348.934913 +3349.069045 +3349.111969 +3349.131083 +3349.148466 +3349.253560 +3349.298749 +3349.312834 +3349.376604 +3349.392988 +3349.407340 +3349.440440 +3349.502178 +3349.544503 +3349.561552 +3349.594253 +3349.792554 +3349.824256 +3349.838675 +3361.886448 +3362.886281 +3362.886980 +3364.887045 +3369.885941 +3369.892601 +3369.987639 +3370.387838 +3370.887938 +3371.287438 +3371.288970 +3371.488370 +3371.588337 +3371.688270 +3371.888403 +3372.288336 +3372.387703 +3372.688402 +3373.588201 +3374.189100 +3380.249167 +3380.567748 +3380.707741 +3380.708241 +3380.755660 +3380.913336 +3381.002014 +3381.167082 +3381.181434 +3381.328820 +3381.401913 +3381.452995 +3381.479269 +3381.480768 +3381.481667 +3381.493322 +3381.507508 +3381.585263 +3381.611470 +3381.624324 +3381.638010 +3381.649266 +3381.690658 +3381.807674 +3381.835279 +3381.835912 +3381.849166 +3381.862819 +3381.976971 +3382.003444 +3382.111003 +3382.285096 +3382.325689 +3382.352129 +3382.438542 +3382.550697 +3382.690557 +3382.756491 +3382.784629 +3382.830517 +3382.854293 +3382.869577 +3382.912201 +3382.939174 +3382.964949 +3383.056823 +3383.114566 +3383.116297 +3383.128918 +3383.142438 +3383.160753 +3383.172574 +3383.202577 +3383.219893 +3383.291056 +3383.306007 +3383.320160 +3383.406840 +3383.423556 +3383.481199 +3383.510669 +3383.572374 +3383.599480 +3383.625554 +3383.669876 +3383.689124 +3383.733246 +3383.792154 +3383.831581 +3383.833779 +3383.837042 +3383.851461 +3383.866446 +3383.867079 +3383.880299 +3383.894751 +3383.922723 +3383.942237 +3383.954292 +3383.967512 +3384.024921 +3384.050662 +3384.079966 +3384.135244 +3384.135743 +3384.193186 +3384.224022 +3384.236476 +3384.249163 +3384.366013 +3384.370408 +3384.396316 +3384.428650 +3384.444701 +3384.457754 +3384.459985 +3384.499679 +3384.514331 +3384.603708 +3384.659486 +3384.676802 +3384.707904 +3384.733212 +3384.748030 +3384.794184 +3387.352890 +3395.887680 +3397.887877 +3398.887810 +3399.887742 +3404.892033 +3404.988004 +3405.088536 +3405.588469 +3407.188434 +3407.289300 +3407.388967 +3407.688001 +3407.689333 +3407.889000 +3407.889266 +3407.988034 +3408.089299 +3408.189133 +3408.488999 +3408.492296 +3408.689265 +3408.989298 +3409.288632 +3409.688665 +3409.789331 +3409.887632 +3414.296752 +3414.891523 +3415.419062 +3415.541040 +3415.578303 +3415.589758 +3415.648865 +3415.661653 +3415.770544 +3415.871909 +3415.965815 +3416.006641 +3416.072341 +3416.124955 +3416.137243 +3416.303610 +3416.367513 +3416.378335 +3416.402611 +3416.597316 +3416.717396 +3416.719827 +3416.848065 +3416.894885 +3417.026986 +3417.048564 +3417.062950 +3417.151628 +3417.255790 +3417.356123 +3417.368444 +3417.478800 +3417.576403 +3417.590389 +3417.604508 +3417.659020 +3417.673339 +3417.715397 +3417.716196 +3417.756822 +3417.771374 +3417.773872 +3417.787258 +3417.855856 +3417.872040 +3417.958720 +3417.986958 +3417.999745 +3418.056622 +3418.158253 +3418.259086 +3418.287524 +3418.304807 +3418.321324 +3418.335110 +3418.420125 +3418.433977 +3418.554057 +3418.565579 +3418.570141 +3418.580631 +3418.786391 +3418.815262 +3418.878233 +3418.969208 +3418.998213 +3419.056588 +3419.074070 +3419.088889 +3419.103307 +3419.132745 +3419.146997 +3419.162715 +3419.210667 +3419.210966 +3419.238139 +3419.255688 +3419.272771 +3419.298013 +3419.332312 +3419.346364 +3419.390487 +3419.392718 +3419.419724 +3419.525185 +3419.528349 +3419.556953 +3419.573470 +3419.605039 +3419.616594 +3419.663180 +3419.667276 +3419.724053 +3419.739171 +3419.755888 +3419.770972 +3430.886213 +3430.887079 +3432.887010 +3432.887176 +3433.886876 +3439.886037 +3439.891299 +3440.387935 +3440.687568 +3440.888401 +3441.787667 +3441.887467 +3443.488032 +3443.587565 +3443.986932 +3444.587398 +3444.887497 +3449.885661 +3449.980100 +3450.007672 +3450.098215 +3450.306107 +3450.327619 +3450.366113 +3450.638740 +3450.691621 +3450.699779 +3450.831947 +3450.842137 +3450.843602 +3450.902243 +3450.914331 +3450.989190 +3451.130049 +3451.164847 +3451.261750 +3451.322756 +3451.385393 +3451.555489 +3451.968609 +3451.989555 +3452.003341 +3452.179332 +3452.192152 +3452.306871 +3452.362881 +3452.455655 +3452.457054 +3452.481995 +3452.556121 +3452.565545 +3452.579931 +3452.619458 +3452.628415 +3452.656954 +3452.697513 +3452.722288 +3452.748762 +3452.762115 +3452.775968 +3452.785358 +3452.801109 +3452.827716 +3452.918159 +3452.943334 +3452.986590 +3453.040170 +3453.079364 +3453.102408 +3453.152591 +3453.253856 +3453.373869 +3453.465478 +3453.503539 +3453.553356 +3453.566410 +3453.569507 +3453.578598 +3453.580462 +3453.646896 +3453.660616 +3453.688488 +3453.757319 +3453.796113 +3453.836739 +3453.863512 +3453.866476 +3453.877299 +3453.891518 +3454.011664 +3454.051025 +3454.063912 +3454.091584 +3454.136140 +3454.161448 +3454.190585 +3454.241334 +3454.280562 +3454.327348 +3454.385523 +3454.394914 +3454.407535 +3454.450458 +3454.674467 +3454.688154 +3454.829579 +; +0.883882 +3.989640 +4.851410 +6.782877 +6.800260 +16.898251 +18.201613 +19.201346 +19.202445 +26.767639 +26.778994 +27.452353 +27.468670 +27.531341 +27.663742 +28.579059 +28.599139 +28.620018 +28.634170 +28.732106 +30.126410 +31.934367 +31.993208 +32.141127 +33.400932 +43.596027 +48.528123 +56.735541 +61.303169 +61.318820 +62.755815 +62.831206 +67.069130 +69.088376 +69.123274 +71.118377 +71.170991 +75.615842 +75.654769 +75.937620 +76.920070 +77.051671 +77.319203 +77.336453 +77.347342 +77.365224 +77.561960 +80.057429 +80.121798 +81.283702 +81.318833 +81.322496 +81.389462 +86.034246 +94.851220 +94.887517 +94.976861 +94.987484 +97.802833 +97.900368 +99.773926 +102.637726 +102.660537 +102.747150 +103.562034 +117.685530 +118.785862 +119.624023 +119.851329 +120.097749 +120.109270 +121.011700 +121.022989 +124.851424 +125.585389 +131.225576 +131.822113 +132.663703 +135.327071 +138.335160 +138.348946 +142.782674 +142.842981 +142.851905 +142.855834 +142.900490 +146.353633 +147.649836 +147.655397 +147.696722 +148.702648 +152.464816 +152.514466 +156.160483 +190.869173 +191.808366 +191.852189 +205.247614 +205.286175 +205.290670 +205.631196 +210.897225 +214.998986 +227.492147 +227.601637 +227.699339 +229.001569 +230.000569 +232.343158 +232.361040 +232.395006 +234.120645 +235.230101 +235.370161 +238.663198 +238.674986 +238.702292 +238.743051 +238.758935 +238.916811 +238.932462 +239.123803 +239.697463 +239.957802 +239.965494 +241.766691 +243.123466 +244.339549 +244.731790 +244.743245 +244.772083 +246.298322 +247.020133 +247.092327 +247.110109 +247.127858 +247.143143 +247.166486 +247.248304 +247.417668 +247.542643 +247.610974 +248.020798 +248.074211 +248.088663 +257.181428 +260.518854 +262.205299 +262.300903 +262.338332 +263.597106 +264.806262 +265.012888 +268.883614 +273.780112 +273.911248 +274.915543 +274.935689 +293.578794 +293.638234 +293.653686 +294.072500 +297.630605 +297.674361 +306.285408 +307.067558 +307.186739 +308.418806 +311.461826 +311.490198 +316.045272 +322.721455 +322.898545 +322.991019 +324.115893 +327.377262 +329.109095 +329.219751 +329.243360 +329.303300 +329.325944 +329.504699 +329.603700 +330.413489 +330.423945 +330.554182 +330.622247 +330.820915 +330.922446 +330.956279 +330.986649 +331.018350 +331.916951 +331.923677 +331.935066 +331.942525 +332.030803 +332.088446 +340.185774 +340.200925 +340.475517 +340.495197 +340.533392 +341.431793 +342.218239 +342.411579 +342.915175 +343.403486 +348.192958 +348.197354 +348.208077 +348.259092 +348.270481 +348.359458 +348.383301 +348.748935 +348.842908 +352.828851 +357.458251 +357.476932 +359.326747 +359.394146 +359.410963 +359.508532 +359.902404 +359.992281 +360.234538 +360.331974 +360.446726 +361.832339 +361.926345 +362.059378 +368.618080 +368.622941 +368.678319 +379.210710 +449.954029 +449.963086 +449.972410 +458.407600 +460.026513 +460.106799 +460.326180 +461.247025 +463.640862 +469.123973 +471.647247 +480.072414 +480.138481 +484.226922 +484.243405 +484.719029 +484.788193 +490.249993 +508.637487 +510.623898 +510.655966 +510.662959 +510.673249 +510.677378 +515.347969 +517.579735 +517.653661 +517.694121 +517.702213 +517.830951 +517.843005 +517.847567 +517.874407 +518.392622 +518.602112 +518.607973 +518.688992 +519.823323 +519.829350 +519.884295 +519.946267 +519.953493 +520.005640 +523.951324 +523.958217 +524.006968 +524.022286 +524.038470 +524.108034 +524.951856 +524.969372 +524.981193 +525.022818 +525.047094 +525.057983 +525.112861 +526.396377 +526.468771 +526.485587 +526.522717 +532.290577 +536.368728 +540.500925 +541.703721 +541.878646 +544.703684 +546.270383 +550.594754 +550.645370 +550.659989 +550.712203 +552.582864 +560.508664 +567.730801 +571.778016 +573.383309 +573.470322 +573.488770 +574.363628 +585.772841 +586.506440 +587.489289 +587.507105 +589.079930 +593.013593 +593.022883 +593.353053 +593.440199 +597.626475 +597.692676 +605.093501 +609.600922 +624.769006 +624.951390 +628.640464 +631.086915 +643.730925 +644.131923 +644.132656 +644.332256 +644.528959 +645.232222 +645.428892 +645.732521 +645.832588 +646.030190 +646.232054 +646.329190 +646.530622 +647.511740 +649.564685 +653.058721 +653.059220 +653.079766 +653.091455 +653.179500 +653.224888 +653.238141 +653.268278 +653.303276 +653.370842 +653.459153 +653.549097 +653.646566 +653.807804 +653.908437 +653.975070 +654.045799 +654.046632 +654.233778 +654.329116 +654.536608 +654.810467 +654.897580 +654.966844 +655.066511 +655.461782 +655.509401 +655.614995 +655.773637 +656.210732 +656.274435 +656.276267 +656.372237 +656.460482 +656.502673 +656.568274 +656.785157 +657.145597 +657.231178 +657.261814 +657.294381 +657.325883 +657.387288 +657.431577 +657.462113 +657.546562 +657.656252 +657.662013 +657.700042 +657.735839 +657.775999 +657.979795 +661.995841 +662.528242 +665.777889 +667.340292 +669.030933 +670.030732 +671.032030 +674.595629 +675.445445 +677.292896 +678.228393 +678.431523 +678.532022 +678.532455 +678.733087 +678.833154 +680.633185 +681.806078 +681.808742 +681.818799 +681.827557 +681.842741 +681.846937 +681.998585 +682.028922 +682.133683 +682.233184 +682.731452 +682.772710 +682.784199 +682.932417 +688.064880 +688.121323 +688.150727 +688.237374 +689.023320 +689.191352 +689.331645 +689.443233 +689.539870 +689.711831 +689.801708 +690.045064 +690.191251 +690.233709 +690.354688 +690.558117 +690.615560 +690.829113 +690.902506 +690.917158 +690.999642 +691.113861 +691.268240 +691.396145 +691.443364 +691.530344 +691.603771 +691.707067 +691.727647 +691.783924 +691.834540 +691.919721 +691.961213 +691.996511 +692.100906 +692.196677 +692.293613 +692.324316 +692.370203 +692.438635 +692.522651 +692.523949 +692.617189 +692.664342 +692.721618 +692.737436 +692.835038 +693.004435 +693.005467 +693.224215 +693.265374 +693.284055 +693.339866 +693.476329 +693.517954 +702.306624 +706.031961 +707.003289 +707.029030 +713.130889 +713.634118 +714.034184 +714.128557 +714.233052 +716.234049 +716.422094 +716.427389 +716.484565 +716.521328 +716.529786 +716.727422 +716.777805 +716.932450 +718.034380 +722.413064 +723.031611 +723.046030 +723.094515 +723.105437 +723.120089 +723.132677 +723.146763 +723.204105 +723.239636 +723.275001 +723.291751 +723.292051 +723.353556 +723.483292 +723.553822 +723.567342 +723.596013 +723.956186 +723.957085 +724.076299 +724.209166 +724.269539 +724.285123 +724.376598 +724.437904 +724.507567 +724.598743 +724.677064 +724.732442 +724.805569 +724.841799 +725.050390 +725.064010 +725.126980 +725.274533 +725.417290 +725.485222 +725.619354 +725.789251 +725.981492 +725.981925 +726.063909 +726.101438 +726.177895 +726.256084 +726.500539 +726.724648 +726.733139 +726.851155 +726.895876 +726.985187 +727.048224 +727.127212 +727.190149 +727.651487 +727.702236 +727.816621 +727.929775 +727.997207 +728.017987 +728.268902 +732.059308 +732.174925 +732.194772 +732.279521 +732.686880 +733.088744 +733.716449 +733.804061 +733.818314 +734.019979 +740.029896 +743.028361 +747.390894 +747.454164 +747.736249 +747.775742 +747.832286 +747.858160 +748.131120 +748.332552 +748.432751 +750.233815 +750.333449 +751.333181 +751.333581 +752.231449 +752.333147 +752.431981 +752.731815 +753.033146 +755.556987 +757.840368 +758.081293 +758.093747 +758.102372 +758.156818 +758.157217 +758.284623 +758.285222 +758.368705 +758.661945 +758.706034 +758.762478 +758.764076 +758.807833 +758.859348 +759.084223 +759.141265 +759.141998 +759.242631 +759.415358 +759.544462 +759.578195 +759.711095 +759.896043 +759.987918 +760.222450 +760.341830 +760.603335 +760.618154 +760.645060 +760.682589 +760.760378 +760.774198 +760.881324 +761.032206 +761.117754 +761.231573 +761.324147 +761.446991 +761.679525 +761.735136 +761.809661 +761.893211 +761.895841 +761.965472 +762.010260 +762.010627 +762.075728 +762.110959 +762.153750 +762.225145 +762.231905 +762.270733 +762.324412 +762.335468 +762.373863 +762.419584 +762.451585 +762.515788 +762.563007 +762.595541 +762.689614 +762.723047 +762.754249 +762.767835 +762.783520 +762.841861 +762.883453 +762.917319 +762.962574 +763.203699 +763.228707 +763.238065 +763.382587 +763.434634 +763.444192 +769.216081 +769.286110 +769.339191 +769.376620 +769.612117 +769.652877 +770.867161 +771.259502 +772.540653 +783.531850 +785.932947 +786.429550 +786.430049 +786.530749 +793.037269 +793.045694 +793.075464 +793.110362 +793.132740 +793.177495 +793.215724 +793.357282 +793.497874 +793.512060 +793.772999 +793.836036 +793.966106 +794.150821 +794.325879 +794.393212 +794.468703 +794.557780 +794.618453 +794.728010 +794.916454 +795.036434 +795.152185 +795.350753 +795.382654 +795.500270 +795.563174 +795.626710 +795.698805 +795.800137 +795.905564 +796.035068 +796.120416 +796.139730 +796.201768 +796.519816 +796.548920 +796.621215 +797.135833 +797.387448 +797.405496 +797.439229 +797.743258 +797.802799 +797.817983 +818.231483 +818.431949 +818.832648 +818.932481 +819.631881 +820.033146 +820.133079 +820.333246 +820.632413 +821.332645 +821.933510 +822.333377 +827.204001 +828.056714 +828.098672 +828.121450 +828.151420 +828.179958 +828.252418 +828.348123 +828.390880 +828.435868 +828.535568 +828.645925 +828.695508 +828.789248 +828.877826 +829.066603 +829.129640 +829.189847 +829.411758 +829.449121 +829.511791 +829.573330 +829.719683 +829.752650 +829.754615 +829.794741 +830.031205 +830.158011 +830.297838 +830.451517 +830.523478 +830.571763 +830.765636 +830.798670 +830.962805 +830.981087 +831.073927 +831.106129 +831.271097 +831.376192 +831.427807 +831.782851 +831.815319 +831.846354 +831.894573 +831.992108 +832.227739 +832.397036 +832.397403 +832.493307 +832.583849 +832.635398 +832.767998 +832.819081 +832.856243 +832.934731 +838.146381 +838.154207 +853.832912 +854.534410 +855.733876 +857.132543 +863.031538 +863.055714 +863.087815 +863.136533 +863.155614 +863.168301 +863.234834 +863.262340 +863.289779 +863.447322 +863.566269 +863.886748 +863.911990 +864.045423 +864.235200 +864.363305 +864.364071 +864.435166 +864.525476 +864.572595 +864.646555 +864.807527 +864.901233 +864.976191 +865.089678 +865.315785 +865.365635 +865.426207 +865.698035 +865.785481 +865.848618 +865.948385 +865.967133 +866.170596 +866.210256 +866.241724 +866.285980 +866.329836 +866.373359 +866.708590 +867.220112 +867.290741 +867.373691 +867.391141 +867.394437 +867.433132 +867.485047 +867.526372 +867.612652 +867.751014 +867.798233 +867.848716 +867.892472 +868.296101 +869.712484 +869.719177 +869.729333 +873.631161 +873.692932 +873.734424 +874.599492 +874.609382 +874.652339 +874.784939 +874.798992 +874.807816 +874.812712 +874.825798 +874.833524 +874.843381 +874.858266 +874.920770 +875.161995 +875.237753 +875.334090 +875.898292 +875.936720 +876.034588 +876.229393 +876.245744 +876.251738 +876.286536 +876.298624 +878.031689 +879.341179 +879.348904 +879.370316 +879.418401 +879.464688 +881.876274 +881.922728 +883.422959 +885.170110 +885.187160 +885.192188 +885.237376 +885.242704 +885.296484 +886.619460 +888.029282 +889.033943 +889.329913 +889.330846 +889.400709 +889.432044 +890.030678 +890.823085 +890.829279 +890.932576 +891.829877 +892.033107 +892.045861 +892.229144 +892.434272 +892.633906 +898.037297 +898.054780 +898.097470 +898.123078 +898.165402 +898.450317 +899.088478 +899.136563 +899.212521 +899.213120 +899.231335 +899.536297 +899.640026 +899.838194 +899.856310 +899.938594 +900.127138 +900.256243 +900.359273 +900.406292 +900.440924 +900.468863 +900.494937 +900.496069 +900.560605 +900.630035 +901.136095 +901.258240 +901.466365 +901.514683 +901.579851 +901.858838 +901.882648 +901.958006 +902.016214 +902.188708 +902.399797 +902.544685 +902.760969 +902.803559 +902.922274 +903.004125 +903.284644 +906.378547 +909.422600 +909.557432 +911.279974 +913.031788 +915.031652 +916.030985 +916.031918 +916.032550 +917.234547 +920.207405 +920.853625 +920.859852 +923.128514 +923.429779 +923.532909 +925.833839 +926.733306 +926.833972 +927.231507 +927.729575 +927.747024 +927.832039 +932.863936 +932.936929 +933.029370 +933.177655 +933.248884 +933.398900 +933.426772 +933.515217 +933.524341 +933.686113 +933.905926 +934.001763 +934.117814 +934.119845 +934.120544 +934.165233 +934.178886 +934.179818 +934.187111 +934.224973 +934.306358 +934.319179 +934.536228 +934.585879 +934.597600 +934.643121 +934.643421 +934.694503 +934.802562 +934.931832 +935.092904 +935.235095 +935.307223 +935.331665 +935.415781 +935.524739 +935.601695 +935.637792 +935.703094 +935.703593 +935.707689 +935.755608 +935.825005 +935.913316 +935.945584 +936.064399 +936.144319 +936.340422 +936.512517 +936.547948 +936.598597 +936.644884 +936.673755 +936.800728 +937.377517 +937.593401 +937.806754 +937.911350 +937.981613 +938.078216 +938.091403 +941.916174 +944.682905 +944.687900 +944.881406 +958.028246 +958.090750 +958.129145 +958.228879 +958.632708 +960.032540 +960.634870 +961.832605 +962.234469 +962.333570 +963.370865 +963.395707 +963.399736 +963.567368 +964.390211 +964.426042 +964.456012 +965.517649 +967.729901 +968.066098 +968.086345 +968.119511 +968.176754 +968.204726 +968.222808 +968.264966 +968.278452 +968.390507 +968.521642 +968.641089 +968.797832 +968.806490 +968.807989 +968.857739 +968.865132 +968.930300 +968.945751 +968.984412 +969.155075 +969.242754 +969.354275 +969.478684 +969.696233 +969.806556 +969.874854 +969.887908 +969.892836 +970.029599 +970.071790 +970.212217 +970.307488 +970.320675 +970.453841 +970.652676 +970.686475 +970.946248 +971.146282 +971.159602 +971.174820 +971.229099 +971.261400 +971.272156 +971.312748 +971.459801 +971.612581 +971.876850 +971.961466 +972.091669 +972.139621 +972.189304 +972.316743 +972.363530 +972.393267 +972.525767 +972.624935 +972.774485 +972.811282 +983.030019 +984.030518 +987.625519 +987.667311 +987.681463 +988.018293 +988.029914 +990.179296 +990.234441 +993.633305 +993.633705 +993.833305 +994.434970 +994.730374 +995.834169 +996.330239 +996.337365 +996.731870 +997.034767 +997.438130 +997.465403 +997.833901 +1000.742156 +1002.933596 +1003.055840 +1003.276186 +1003.411051 +1003.447315 +1003.701161 +1004.005922 +1004.169092 +1004.265962 +1004.449145 +1004.530131 +1004.618742 +1004.651576 +1004.697497 +1004.741786 +1004.774586 +1004.987573 +1005.166960 +1005.270290 +1005.360100 +1005.388871 +1005.524802 +1005.595531 +1005.773653 +1005.800759 +1005.837589 +1005.974052 +1006.089070 +1006.113779 +1006.114645 +1006.169590 +1006.226932 +1006.245481 +1006.298827 +1006.312280 +1006.359799 +1006.381544 +1006.405121 +1006.602024 +1006.930495 +1006.931028 +1006.957335 +1006.981411 +1006.981744 +1006.992233 +1006.994531 +1007.014211 +1007.072886 +1007.128963 +1007.544613 +1007.581976 +1007.650075 +1007.799791 +1007.938652 +1008.108416 +1008.134157 +1013.673978 +1013.696089 +1013.716036 +1014.156728 +1014.284567 +1014.432619 +1014.524860 +1014.701483 +1014.779471 +1015.855328 +1017.654127 +1019.032914 +1023.032310 +1028.734502 +1029.531038 +1030.434367 +1031.134900 +1031.135566 +1031.332069 +1031.498103 +1031.634433 +1031.833334 +1032.731901 +1038.030564 +1038.031796 +1038.054373 +1038.193101 +1038.250777 +1038.904655 +1039.059634 +1039.092800 +1039.187672 +1039.247679 +1039.258568 +1039.292234 +1039.310915 +1039.346879 +1039.368624 +1039.421272 +1039.448677 +1039.451441 +1039.528664 +1039.668491 +1039.762297 +1040.224900 +1040.271321 +1040.428963 +1040.457434 +1040.592999 +1040.773918 +1040.776815 +1040.808849 +1040.893664 +1041.063461 +1041.226864 +1041.385905 +1041.547277 +1041.726231 +1041.928495 +1041.941482 +1042.003087 +1042.132924 +1042.176880 +1042.194995 +1042.215774 +1042.330826 +1042.427795 +1042.589234 +1042.611578 +1042.688901 +1042.972750 +1061.713124 +1061.725978 +1061.735868 +1062.209560 +1062.213856 +1063.129972 +1063.230705 +1063.432636 +1063.633069 +1063.830638 +1063.832036 +1064.232436 +1073.075384 +1073.087405 +1073.147045 +1073.241850 +1073.369223 +1073.416076 +1073.483009 +1073.497794 +1073.599592 +1073.601524 +1073.759133 +1073.859499 +1073.957234 +1074.004420 +1074.075616 +1074.806717 +1075.009181 +1075.329294 +1075.564925 +1075.583773 +1075.620303 +1075.678245 +1075.825231 +1075.855068 +1075.970086 +1076.002487 +1076.073416 +1076.087202 +1076.197459 +1076.216440 +1076.292730 +1076.403719 +1076.786502 +1076.868454 +1077.005217 +1077.128460 +1077.293095 +1077.366289 +1077.383405 +1077.416805 +1077.480574 +1077.548440 +1077.569219 +1077.623598 +1077.672515 +1077.672915 +1077.691596 +1077.754267 +1077.754766 +1077.856098 +1079.038881 +1079.064655 +1092.029877 +1098.230770 +1098.330836 +1099.231002 +1099.231601 +1099.231968 +1099.431801 +1099.532034 +1099.728371 +1099.832367 +1099.932267 +1100.028470 +1100.132133 +1100.731866 +1101.331333 +1101.528535 +1101.628602 +1102.131099 +1102.131432 +1102.190706 +1102.229634 +1102.328535 +1102.328968 +1102.632164 +1102.729000 +1108.027330 +1108.076414 +1108.112711 +1108.149841 +1108.177546 +1108.220870 +1108.292165 +1108.459864 +1108.472118 +1108.472784 +1108.741549 +1108.769854 +1108.860330 +1108.967789 +1109.247709 +1109.354269 +1109.473483 +1109.505417 +1109.555833 +1109.637751 +1109.814475 +1109.869220 +1109.920069 +1109.920502 +1110.056932 +1110.091164 +1110.173981 +1110.215706 +1110.250238 +1110.474514 +1110.562293 +1110.563691 +1110.749272 +1110.962425 +1111.042645 +1111.133687 +1111.226195 +1111.259561 +1111.287167 +1111.476777 +1111.722864 +1111.990163 +1112.366087 +1112.366520 +1112.395291 +1112.566686 +1112.584435 +1112.899253 +1124.029912 +1124.030777 +1127.029576 +1128.031006 +1133.231101 +1133.331634 +1133.632566 +1134.031833 +1135.229800 +1136.132230 +1137.433395 +1137.984110 +1137.995299 +1138.003357 +1138.008586 +1138.017277 +1138.022505 +1138.029198 +1138.105255 +1138.818342 +1138.836823 +1138.923969 +1140.613411 +1142.533856 +1143.063759 +1143.133256 +1143.135587 +1143.237252 +1143.251637 +1143.312177 +1143.418803 +1143.454900 +1143.579542 +1143.598756 +1143.657531 +1143.720701 +1144.101387 +1144.547873 +1144.577044 +1144.609278 +1144.628725 +1144.708479 +1144.723830 +1144.726361 +1144.726627 +1144.770051 +1144.822565 +1144.884236 +1144.996957 +1145.320533 +1145.352101 +1145.424695 +1145.477309 +1145.556896 +1145.948504 +1146.026560 +1146.120199 +1146.123662 +1146.454997 +1146.479639 +1146.597055 +1146.959159 +1147.075976 +1147.302016 +1147.441277 +1147.525959 +1147.646538 +1147.677440 +1147.788529 +1147.949501 +1150.184497 +1161.944459 +1161.959877 +1168.632531 +1168.730733 +1169.929832 +1170.733261 +1172.732893 +1176.887534 +1176.938916 +1176.949805 +1177.110644 +1177.123432 +1177.160128 +1177.329126 +1178.044876 +1178.083371 +1178.174113 +1178.249305 +1178.275645 +1178.313307 +1178.504249 +1178.636783 +1178.641445 +1178.650203 +1178.654233 +1178.668951 +1178.716204 +1179.189197 +1179.267585 +1179.371714 +1179.496090 +1179.580472 +1179.991960 +1180.259859 +1180.310475 +1180.377075 +1180.749036 +1180.780238 +1180.881037 +1180.938246 +1180.939345 +1181.023394 +1181.154563 +1181.477107 +1181.665119 +1181.783001 +1181.831918 +1181.886597 +1182.087329 +1182.153530 +1182.218665 +1182.266716 +1182.297952 +1182.720995 +1183.024624 +1191.787952 +1193.029942 +1194.875262 +1195.028142 +1196.029340 +1197.860773 +1197.916251 +1198.204829 +1198.802797 +1199.316183 +1199.551814 +1199.567898 +1203.331963 +1203.530032 +1203.682313 +1203.729366 +1204.233028 +1204.332995 +1204.433061 +1205.932394 +1206.031828 +1206.731461 +1207.233458 +1207.830194 +1208.289901 +1213.054132 +1213.097788 +1213.122530 +1213.193925 +1213.302616 +1213.660225 +1213.677208 +1214.092292 +1214.187131 +1214.249668 +1214.526691 +1214.757160 +1214.789894 +1214.994889 +1215.045538 +1215.411106 +1215.411472 +1215.499850 +1215.774941 +1215.854229 +1216.459190 +1216.516166 +1216.551830 +1216.610405 +1216.614534 +1216.759522 +1216.760122 +1216.995053 +1217.041973 +1217.077604 +1217.727420 +1217.989924 +1218.002112 +1221.866444 +1221.926184 +1221.949927 +1221.982594 +1222.200742 +1222.655587 +1228.152118 +1233.037894 +1234.892638 +1234.959637 +1234.984113 +1235.005159 +1235.195202 +1235.248282 +1235.325471 +1235.408854 +1235.421175 +1235.720509 +1237.063265 +1237.297464 +1237.352709 +1237.464364 +1238.130031 +1238.933493 +1239.333126 +1239.432960 +1240.334291 +1240.510215 +1241.333024 +1241.840350 +1241.930859 +1242.230726 +1242.333323 +1242.632124 +1242.733789 +1243.485470 +1243.497524 +1246.345873 +1247.020631 +1248.073078 +1248.084133 +1248.130587 +1248.227689 +1248.283467 +1248.499018 +1248.577040 +1248.670879 +1248.823426 +1248.908708 +1249.088961 +1249.301448 +1249.355427 +1249.486230 +1249.533183 +1249.572177 +1249.710439 +1249.787428 +1249.823625 +1249.842040 +1249.897984 +1249.938677 +1249.976239 +1249.997285 +1250.011637 +1250.091424 +1250.092656 +1250.295919 +1250.360654 +1250.377904 +1250.386129 +1250.566715 +1250.607108 +1250.831816 +1250.901979 +1250.968646 +1251.021260 +1251.052029 +1251.100414 +1251.223557 +1251.272741 +1251.322691 +1251.473873 +1251.644269 +1251.692488 +1251.773374 +1251.834546 +1252.258788 +1252.320326 +1252.391921 +1252.470742 +1252.521491 +1252.550596 +1252.615397 +1252.687192 +1252.723389 +1252.739373 +1252.770442 +1252.935843 +1254.576667 +1263.124111 +1263.423845 +1265.030536 +1265.043124 +1265.598235 +1266.475324 +1267.536228 +1267.907257 +1268.286411 +1273.143948 +1273.544181 +1274.231460 +1274.232625 +1274.333025 +1274.634689 +1275.435255 +1279.020333 +1283.048434 +1283.076339 +1283.136712 +1283.203246 +1283.363385 +1283.365317 +1283.494487 +1283.676605 +1283.729619 +1283.833615 +1283.978236 +1284.146968 +1284.161486 +1284.284929 +1284.392455 +1284.489891 +1284.835412 +1284.885528 +1284.930949 +1285.021392 +1285.086127 +1285.178235 +1285.301945 +1285.315964 +1285.421192 +1285.508804 +1285.703476 +1285.725654 +1285.837276 +1285.983929 +1286.001611 +1286.239739 +1286.469243 +1286.517561 +1286.610768 +1286.612167 +1286.690322 +1286.756888 +1286.759885 +1286.950927 +1286.968243 +1287.082795 +1287.207571 +1287.284294 +1287.320258 +1287.352126 +1287.354690 +1287.382895 +1287.615229 +1287.697580 +1287.820923 +1287.928915 +1287.989754 +1308.032258 +1308.633923 +1308.833423 +1308.833789 +1309.134055 +1309.634188 +1310.034721 +1310.134321 +1311.334220 +1312.534618 +1318.083131 +1318.161053 +1318.191056 +1318.282897 +1318.298515 +1318.351562 +1318.507506 +1318.510037 +1318.596883 +1318.697249 +1318.766813 +1318.920426 +1319.035544 +1319.087259 +1319.129217 +1319.151961 +1319.382630 +1319.416529 +1319.483496 +1319.601644 +1319.681098 +1319.849896 +1319.883961 +1319.908037 +1319.917561 +1319.918061 +1320.050894 +1320.069076 +1320.261084 +1320.354191 +1320.488190 +1320.560584 +1320.594517 +1320.700977 +1320.839871 +1320.892285 +1321.006604 +1321.075502 +1321.123554 +1321.427383 +1321.457520 +1321.521023 +1321.677200 +1322.070772 +1322.192284 +1322.251525 +1322.255987 +1322.380496 +1322.426516 +1322.512763 +1322.555854 +1322.641268 +1322.658517 +1322.697445 +1322.710432 +1322.711365 +1322.736573 +1322.786223 +1322.790918 +1322.872337 +1322.956519 +1322.972670 +1324.831775 +1324.890750 +1324.938602 +1324.954219 +1325.150223 +1325.779493 +1325.786187 +1325.792813 +1325.798941 +1325.803569 +1325.921851 +1334.031700 +1336.031564 +1337.031996 +1343.132390 +1343.432689 +1343.533055 +1344.033554 +1344.033887 +1344.234187 +1344.598589 +1344.631589 +1345.034319 +1345.233220 +1345.333320 +1345.534086 +1345.633020 +1346.034685 +1346.234185 +1346.332586 +1346.633985 +1346.634751 +1346.734018 +1347.533318 +1348.034250 +1353.079599 +1353.099979 +1353.118860 +1353.120159 +1353.230948 +1353.286426 +1353.390954 +1353.441870 +1353.455523 +1353.485859 +1353.517294 +1353.601710 +1353.748063 +1353.791520 +1353.842569 +1353.910934 +1353.928250 +1353.946298 +1353.995249 +1354.046964 +1354.080631 +1354.152792 +1354.185925 +1354.202209 +1354.337374 +1354.401443 +1354.444533 +1354.602941 +1354.928615 +1354.944100 +1355.132045 +1355.166211 +1355.281195 +1355.593117 +1355.708434 +1355.770972 +1355.860183 +1356.076200 +1356.208800 +1356.367342 +1356.440269 +1356.496612 +1356.764877 +1357.015060 +1357.049825 +1357.172436 +1357.311363 +1357.600607 +1357.684556 +1357.728646 +1357.762245 +1357.888852 +1357.955419 +1358.270736 +1358.374000 +1365.966266 +1368.966563 +1369.966662 +1369.972156 +1370.966561 +1370.972855 +1375.966889 +1375.972384 +1376.066889 +1376.167422 +1377.068453 +1377.468419 +1377.668552 +1378.268685 +1378.568485 +1379.368684 +1379.968750 +1380.269249 +1380.467684 +1380.568816 +1380.768782 +1380.968782 +1384.754293 +1385.971674 +1385.979833 +1386.054491 +1386.054958 +1386.123589 +1386.158487 +1386.168810 +1386.195250 +1386.265913 +1386.455224 +1386.490721 +1386.541637 +1386.581697 +1386.655656 +1386.731447 +1386.767611 +1386.846865 +1386.871340 +1386.945433 +1386.957654 +1387.024887 +1387.039039 +1387.065746 +1387.109069 +1387.131214 +1387.133178 +1387.142835 +1387.182895 +1387.193152 +1387.233311 +1387.257221 +1387.280198 +1387.320158 +1387.362615 +1387.369275 +1387.440437 +1387.455822 +1387.469775 +1387.522022 +1387.523454 +1387.545232 +1387.559718 +1387.637374 +1387.659884 +1387.671972 +1387.729914 +1387.790620 +1387.808635 +1387.841836 +1387.854756 +1387.896081 +1387.910533 +1387.911133 +1387.921456 +1387.922588 +1387.960683 +1387.984393 +1387.997813 +1388.013464 +1388.048395 +1388.091452 +1388.104639 +1388.130713 +1388.179264 +1388.191752 +1388.207669 +1388.257653 +1388.273304 +1388.299244 +1388.324186 +1388.375035 +1388.417792 +1388.446231 +1388.458418 +1388.483993 +1388.539837 +1388.596480 +1388.662181 +1388.674469 +1388.701275 +1388.756487 +1388.786224 +1388.811698 +1388.850060 +1388.862247 +1388.866876 +1388.956886 +1388.960582 +1388.987689 +1389.044765 +1389.046663 +1389.059350 +1389.103939 +1389.133942 +1389.151391 +1389.165544 +1389.195281 +1389.208667 +1389.225018 +1389.240136 +1389.254155 +1389.270872 +1389.283126 +1389.284625 +1389.298711 +1389.312863 +1389.398011 +1389.425350 +1389.440335 +1389.454055 +1389.470971 +1389.497145 +1389.514594 +1389.525350 +1389.540235 +1389.623585 +1389.625783 +1389.647395 +1389.672703 +1389.685890 +1389.687255 +1389.716559 +1389.731044 +1389.760915 +1389.761148 +1389.775467 +1389.791983 +1389.805503 +1389.835640 +1389.864011 +1389.866076 +1389.881327 +1389.896512 +1389.926582 +1389.941933 +1389.958317 +1390.032176 +1390.047628 +1390.064444 +1390.108267 +1390.139702 +1390.170072 +1390.171237 +1390.183425 +1390.201141 +1390.215726 +1390.217158 +1390.243964 +1390.245629 +1390.258750 +1390.271537 +1390.283158 +1390.307567 +1390.309832 +1390.386455 +1390.419189 +1390.509132 +1390.538003 +1390.539802 +1390.556385 +1390.581793 +1390.605436 +1390.629245 +1390.640201 +1390.644763 +1390.658449 +1390.672269 +1390.685689 +1390.687021 +1390.704770 +1390.720121 +1390.736505 +1390.750491 +1390.763744 +1390.779562 +1390.796778 +1390.826448 +1390.926781 +1390.948293 +1390.949591 +1396.084684 +1396.108561 +1402.968028 +1403.973754 +1405.967026 +1405.967758 +1411.368918 +1411.568419 +1412.068718 +1412.368784 +1412.668984 +1413.469482 +1413.969582 +1414.469648 +1414.769314 +1414.769448 +1415.268948 +1415.469414 +1421.024986 +1421.053191 +1421.099977 +1421.111000 +1421.135475 +1421.186824 +1421.223853 +1421.247896 +1421.272571 +1421.342535 +1421.357087 +1421.402575 +1421.415695 +1421.429914 +1421.636307 +1421.687756 +1421.702441 +1421.726983 +1421.780496 +1421.861615 +1422.049327 +1422.050792 +1422.077899 +1422.106670 +1422.145697 +1422.186457 +1422.233376 +1422.269307 +1422.308168 +1422.308434 +1422.363313 +1422.399976 +1422.510732 +1422.588421 +1422.602840 +1422.615860 +1422.664811 +1422.679829 +1422.694115 +1422.751225 +1422.751657 +1422.778231 +1422.812497 +1422.851557 +1422.978131 +1422.994215 +1423.021188 +1423.068540 +1423.070505 +1423.071071 +1423.093349 +1423.152523 +1423.178497 +1423.179729 +1423.220488 +1423.255686 +1423.280029 +1423.281394 +1423.281627 +1423.305703 +1423.336272 +1423.337205 +1423.348693 +1423.350525 +1423.363478 +1423.377598 +1423.499309 +1423.604770 +1423.658916 +1423.659415 +1423.712263 +1423.747827 +1423.748959 +1423.762712 +1423.792948 +1423.833841 +1423.848493 +1423.873634 +1423.899009 +1423.929545 +1423.968639 +1423.988786 +1423.991416 +1424.085156 +1424.098210 +1424.111496 +1424.124716 +1424.140401 +1424.154120 +1424.182292 +1424.224849 +1424.268805 +1424.283358 +1424.308699 +1424.334973 +1424.335905 +1424.376731 +1424.393447 +1424.407267 +1424.408233 +1424.419055 +1424.459215 +1424.460014 +1424.486721 +1424.529411 +1424.543830 +1424.544962 +1424.599641 +1424.627946 +1424.653487 +1424.669671 +1424.732508 +1424.834273 +1424.871535 +1424.915691 +1424.918189 +1424.932075 +1424.948192 +1424.989184 +1425.039234 +1425.086054 +1425.101139 +1425.111662 +1425.114592 +1425.115358 +1425.130876 +1425.140433 +1425.156184 +1425.158315 +1425.173000 +1425.196310 +1425.198009 +1425.213526 +1425.215358 +1425.229011 +1425.230443 +1425.259880 +1425.273833 +1425.274099 +1425.283889 +1425.293646 +1425.305434 +1425.305834 +1425.322151 +1425.331708 +1425.333973 +1425.375331 +1425.377562 +1425.393746 +1425.422084 +1425.431875 +1425.446626 +1425.447159 +1425.477695 +1425.492814 +1425.493713 +1425.509563 +1425.523616 +1425.524449 +1425.550789 +1425.568771 +1425.580193 +1425.591781 +1425.593246 +1425.611262 +1425.626213 +1425.654885 +1425.665341 +1425.670802 +1425.685188 +1425.696410 +1425.698175 +1425.723383 +1425.726446 +1425.739367 +1425.740499 +1425.760279 +1425.762943 +1425.779227 +1425.793779 +1425.807931 +1425.809497 +1425.824348 +1425.824781 +1425.854218 +1425.856150 +1425.866040 +1425.870968 +1425.892913 +1425.907399 +1425.910129 +1425.913825 +1425.927878 +1425.935137 +1425.948924 +1425.963709 +1431.372595 +1439.969522 +1440.969954 +1442.158964 +1442.165691 +1442.179444 +1445.968817 +1446.771847 +1446.975176 +1447.572046 +1447.970613 +1448.071712 +1448.171845 +1448.570479 +1448.872510 +1448.972344 +1450.071810 +1450.272676 +1450.471810 +1451.903676 +1455.856786 +1455.970405 +1456.001508 +1456.019023 +1456.039769 +1456.047961 +1456.126849 +1456.269506 +1456.373302 +1456.400109 +1456.438537 +1456.452256 +1456.500175 +1456.541634 +1456.623352 +1456.624750 +1456.683825 +1456.698743 +1456.738237 +1456.763412 +1456.774201 +1456.787088 +1456.844331 +1456.870338 +1456.884457 +1456.942199 +1456.982059 +1456.982426 +1457.048127 +1457.058050 +1457.060081 +1457.071603 +1457.085656 +1457.098743 +1457.099675 +1457.123718 +1457.159415 +1457.248160 +1457.256285 +1457.285955 +1457.382658 +1457.420354 +1457.440834 +1457.455685 +1457.501340 +1457.504070 +1457.568339 +1457.594280 +1457.620187 +1457.730510 +1457.741166 +1457.769604 +1457.783424 +1457.787686 +1457.818755 +1457.864509 +1457.865908 +1457.892248 +1457.901572 +1457.932009 +1457.941999 +1457.955352 +1458.026148 +1458.076897 +1458.085388 +1458.112062 +1458.112728 +1458.264942 +1458.275165 +1458.401672 +1458.414992 +1458.452521 +1458.471202 +1458.503736 +1458.536470 +1458.537636 +1458.539767 +1458.604202 +1458.632641 +1458.658015 +1458.664542 +1458.697143 +1458.744961 +1458.757482 +1458.787652 +1458.812361 +1458.813226 +1458.839800 +1458.853886 +1458.854352 +1458.865607 +1458.942730 +1459.052221 +1459.139800 +1459.169337 +1459.257415 +1459.286786 +1459.301638 +1459.333139 +1459.376263 +1459.402969 +1459.403669 +1459.431907 +1459.461078 +1459.462110 +1459.615723 +1459.644228 +1459.720918 +1459.747258 +1459.772799 +1459.813891 +1459.846326 +1459.855050 +1459.875463 +1459.886219 +1459.898473 +1459.922649 +1459.936136 +1459.950022 +1459.989949 +1460.016056 +1460.054284 +1460.070734 +1460.086385 +1460.126412 +1460.126978 +1460.129143 +1460.142829 +1460.201037 +1460.216222 +1460.270601 +1460.317687 +1460.330574 +1460.332239 +1460.334004 +1460.374863 +1460.389182 +1460.412292 +1460.450887 +1460.463241 +1460.490381 +1460.506831 +1460.518420 +1460.531939 +1460.544327 +1460.559212 +1460.570900 +1460.598306 +1460.601037 +1460.626911 +1460.645659 +1460.648056 +1460.648989 +1460.671533 +1460.672132 +1460.673831 +1460.701070 +1460.742029 +1460.776162 +1460.808030 +1460.851353 +1460.862109 +1460.864740 +1460.867803 +1460.881989 +1460.883254 +1460.898606 +1460.925612 +1460.944893 +1460.952052 +1460.958346 +1461.938565 +1461.945824 +1474.322169 +1474.518772 +1476.097691 +1480.970780 +1481.070813 +1481.373077 +1481.472811 +1481.549068 +1481.571346 +1481.673177 +1481.771312 +1482.073942 +1482.173842 +1482.371411 +1482.372577 +1482.373176 +1482.573276 +1482.774108 +1482.973908 +1483.073275 +1483.273841 +1483.373209 +1483.373708 +1483.473641 +1483.773574 +1483.774074 +1484.173940 +1484.272408 +1484.474040 +1484.673873 +1484.874139 +1485.073939 +1485.174073 +1485.373007 +1485.572674 +1485.573273 +1485.773339 +1485.773606 +1491.001073 +1491.035339 +1491.064843 +1491.082858 +1491.152821 +1491.153787 +1491.292615 +1491.293081 +1491.293447 +1491.369404 +1491.435039 +1491.447160 +1491.523450 +1491.563177 +1491.597376 +1491.598209 +1491.619587 +1491.648592 +1491.697043 +1491.709797 +1491.748159 +1491.780460 +1491.823683 +1491.836071 +1491.849857 +1491.850223 +1491.888218 +1491.899207 +1491.938668 +1491.982657 +1492.021951 +1492.038135 +1492.143296 +1492.213226 +1492.237102 +1492.263776 +1492.286020 +1492.312660 +1492.368604 +1492.413293 +1492.414924 +1492.436403 +1492.474232 +1492.482856 +1492.509463 +1492.560978 +1492.612427 +1492.648657 +1492.673765 +1492.697475 +1492.709230 +1492.735037 +1492.847525 +1492.903768 +1492.990881 +1493.003868 +1493.064741 +1493.074764 +1493.078827 +1493.139166 +1493.151387 +1493.200471 +1493.240631 +1493.321783 +1493.322483 +1493.365273 +1493.376728 +1493.386652 +1493.400138 +1493.477194 +1493.491780 +1493.492346 +1493.519053 +1493.543062 +1493.554417 +1493.596475 +1493.619718 +1493.659345 +1493.686552 +1493.705333 +1493.818586 +1493.890847 +1493.956015 +1493.956948 +1493.988250 +1494.065938 +1494.101103 +1494.125346 +1494.139864 +1494.151120 +1494.225312 +1494.248589 +1494.269335 +1494.270667 +1494.363607 +1494.381656 +1494.408829 +1494.473830 +1494.525878 +1494.526677 +1494.542761 +1494.569401 +1494.597440 +1494.598306 +1494.610493 +1494.661875 +1494.673930 +1494.675595 +1494.675761 +1494.728275 +1494.737833 +1494.750387 +1494.759944 +1494.774296 +1494.816754 +1494.842228 +1494.881988 +1494.906897 +1494.917586 +1494.929008 +1494.953816 +1494.956380 +1494.985984 +1494.986983 +1494.989181 +1495.012691 +1495.017053 +1495.019517 +1495.032205 +1495.047289 +1495.058245 +1495.085318 +1495.107895 +1495.118951 +1495.120283 +1495.133437 +1495.158079 +1495.211492 +1495.213257 +1495.227010 +1495.260576 +1495.277459 +1495.330140 +1495.332304 +1495.375428 +1495.395008 +1495.413356 +1495.438764 +1495.440396 +1495.454116 +1495.463872 +1495.475328 +1495.504032 +1495.506230 +1495.520016 +1495.533070 +1495.534602 +1495.545624 +1495.560709 +1495.574129 +1495.583120 +1495.589913 +1495.611491 +1495.629174 +1495.629673 +1495.643526 +1495.655314 +1495.668101 +1495.691478 +1495.723679 +1495.735134 +1495.738764 +1495.764172 +1495.769500 +1495.778824 +1495.782487 +1495.811391 +1495.812623 +1495.828341 +1495.854015 +1495.865137 +1495.910492 +1495.918984 +1495.936732 +1495.950452 +1495.951285 +1496.278524 +1496.454714 +1496.500368 +1507.974682 +1509.444944 +1512.642177 +1515.970678 +1515.971478 +1516.272277 +1516.372543 +1516.671943 +1516.672676 +1516.773874 +1516.974041 +1517.173075 +1517.473674 +1517.573141 +1517.573740 +1517.671476 +1517.673374 +1517.771542 +1517.872808 +1517.972741 +1518.174306 +1518.374506 +1518.474306 +1518.574039 +1518.873639 +1518.942204 +1518.971841 +1518.972574 +1519.073306 +1519.172507 +1519.373739 +1519.374038 +1519.374405 +1519.473439 +1519.474205 +1519.573905 +1519.674338 +1519.873938 +1519.969342 +1519.973272 +1520.271973 +1520.273072 +1520.273538 +1520.371007 +1520.372106 +1520.673771 +1520.774037 +1520.874137 +1520.974037 +1525.543663 +1525.587452 +1525.618887 +1525.731475 +1526.001571 +1526.009230 +1526.015956 +1526.026879 +1526.034505 +1526.093346 +1526.103602 +1526.142197 +1526.142863 +1526.167105 +1526.191647 +1526.226179 +1526.262110 +1526.301837 +1526.353352 +1526.375497 +1526.412260 +1526.425480 +1526.454451 +1526.480924 +1526.546226 +1526.571067 +1526.582756 +1526.594611 +1526.639599 +1526.763675 +1526.778793 +1526.803535 +1526.828243 +1526.839232 +1526.921716 +1526.984853 +1527.009728 +1527.060511 +1527.083188 +1527.084920 +1527.176528 +1527.251786 +1527.345925 +1527.424946 +1527.454383 +1527.489282 +1527.587916 +1527.617120 +1527.664040 +1527.689348 +1527.744693 +1527.754350 +1527.805898 +1527.806664 +1527.819684 +1527.904133 +1527.948555 +1527.950986 +1527.964506 +1527.989980 +1528.014856 +1528.044126 +1528.083720 +1528.084453 +1528.110493 +1528.124313 +1528.137266 +1528.165005 +1528.208195 +1528.253117 +1528.268801 +1528.336567 +1528.385718 +1528.400569 +1528.413024 +1528.465604 +1528.493177 +1528.535601 +1528.607629 +1528.620150 +1528.659144 +1528.660909 +1528.743793 +1528.804365 +1528.817352 +1528.823346 +1528.828541 +1528.868168 +1528.893809 +1528.918584 +1529.016786 +1529.031072 +1529.073895 +1529.107096 +1529.121847 +1529.175594 +1529.217319 +1529.218384 +1529.300002 +1529.301634 +1529.399669 +1529.410192 +1529.468401 +1529.485417 +1529.499969 +1529.548121 +1529.562107 +1529.628940 +1529.656779 +1529.669266 +1529.723012 +1529.734301 +1529.736466 +1529.748021 +1529.761740 +1529.773295 +1529.813722 +1529.839962 +1529.863838 +1529.876359 +1529.878557 +1529.891244 +1529.938830 +1529.981720 +1530.024710 +1530.025576 +1530.039296 +1530.052383 +1530.052649 +1530.068566 +1530.104064 +1530.131204 +1530.201300 +1530.216718 +1530.245489 +1530.259775 +1530.303232 +1530.317251 +1530.352549 +1530.357411 +1530.371929 +1530.374260 +1530.388480 +1530.401200 +1530.433168 +1530.449452 +1530.471397 +1530.488513 +1530.510591 +1530.540061 +1530.540827 +1530.562905 +1530.579322 +1530.603964 +1530.631070 +1530.677790 +1530.679422 +1530.738562 +1530.755113 +1530.783118 +1530.814020 +1530.814953 +1530.817816 +1530.833567 +1530.862938 +1530.863937 +1530.879055 +1530.918749 +1530.921180 +1530.935965 +1530.950783 +1530.963304 +1530.967600 +1531.297303 +1531.313554 +1539.931261 +1539.993665 +1540.090168 +1540.505519 +1540.529695 +1540.568489 +1540.828962 +1540.972252 +1541.177213 +1541.183407 +1541.188469 +1541.196727 +1541.910646 +1541.970619 +1542.972649 +1543.222433 +1543.972149 +1543.972449 +1544.971515 +1545.972580 +1550.971609 +1551.073108 +1551.173107 +1551.473673 +1551.673806 +1551.774073 +1552.073240 +1552.073939 +1552.173340 +1552.174172 +1552.274205 +1552.374305 +1552.474405 +1552.574438 +1552.575037 +1552.774205 +1552.874138 +1553.074771 +1553.274304 +1553.374604 +1553.773937 +1553.875269 +1553.974470 +1554.174170 +1554.175069 +1554.474370 +1554.474569 +1554.474936 +1554.574969 +1554.774602 +1554.874669 +1554.974169 +1554.974802 +1555.174036 +1555.174802 +1555.774601 +1555.778131 +1555.874601 +1560.249222 +1560.972232 +1561.047790 +1561.061043 +1561.071133 +1561.082688 +1561.094609 +1561.105665 +1561.195009 +1561.245991 +1561.269235 +1561.309494 +1561.343960 +1561.375994 +1561.398239 +1561.438565 +1561.451119 +1561.477726 +1561.619218 +1561.658478 +1561.658811 +1561.698805 +1561.723879 +1561.726510 +1561.827942 +1561.850986 +1561.862108 +1561.920982 +1562.014422 +1562.076360 +1562.077359 +1562.099204 +1562.110526 +1562.136500 +1562.150253 +1562.178558 +1562.218951 +1562.309260 +1562.335867 +1562.357978 +1562.380689 +1562.441794 +1562.472197 +1562.541261 +1562.554515 +1562.604132 +1562.616686 +1562.684684 +1562.708893 +1562.759909 +1562.781721 +1562.808494 +1562.832636 +1562.846755 +1562.890978 +1562.938730 +1563.026942 +1563.077691 +1563.078224 +1563.101134 +1563.120248 +1563.146023 +1563.205963 +1563.251550 +1563.253348 +1563.262106 +1563.319183 +1563.361607 +1563.397471 +1563.398070 +1563.410025 +1563.446056 +1563.476925 +1563.577557 +1563.591910 +1563.616152 +1563.637764 +1563.664670 +1563.700934 +1563.752216 +1563.765403 +1563.777257 +1563.779255 +1563.802132 +1563.803764 +1563.806461 +1563.835066 +1563.844290 +1563.909092 +1563.936798 +1563.937697 +1563.939062 +1563.947687 +1564.025009 +1564.072762 +1564.112622 +1564.113487 +1564.152016 +1564.165269 +1564.181186 +1564.255412 +1564.296371 +1564.297803 +1564.354846 +1564.368466 +1564.426907 +1564.443557 +1564.586614 +1564.642291 +1564.668698 +1564.703730 +1564.731502 +1564.733001 +1564.747386 +1564.774526 +1564.775092 +1564.812421 +1564.824243 +1564.825575 +1564.839128 +1564.841026 +1564.870763 +1564.890210 +1564.914119 +1564.916317 +1564.916950 +1564.948219 +1564.970629 +1564.971961 +1564.982484 +1564.989144 +1564.991875 +1565.001865 +1565.003663 +1565.017915 +1565.027639 +1565.028838 +1565.053080 +1565.078988 +1565.116683 +1565.141658 +1565.144422 +1565.146986 +1565.160573 +1565.188445 +1565.203230 +1565.219014 +1565.262870 +1565.292907 +1565.295038 +1565.308658 +1565.322577 +1565.323110 +1565.350383 +1565.383250 +1565.384315 +1565.398901 +1565.407525 +1565.428704 +1565.443523 +1565.444389 +1565.472394 +1565.489610 +1565.490809 +1565.519147 +1565.538894 +1565.541691 +1565.554745 +1565.583616 +1565.600599 +1565.629969 +1565.631368 +1565.657342 +1565.670163 +1565.688311 +1565.704595 +1565.718547 +1565.737395 +1565.738228 +1565.764601 +1565.779420 +1565.811088 +1565.841891 +1565.851747 +1565.881418 +1565.894538 +1565.910955 +1565.951681 +1566.315450 +1566.398200 +1566.466066 +1566.470362 +1567.017314 +1568.680016 +1575.971851 +1576.384138 +1576.492596 +1576.713075 +1577.416371 +1577.973014 +1578.972114 +1580.490594 +1580.555496 +1580.606478 +1580.636315 +1580.647204 +1580.654030 +1580.666917 +1580.674044 +1580.972944 +1586.072973 +1586.273472 +1586.674038 +1586.774870 +1587.074836 +1587.274603 +1587.374636 +1587.474337 +1587.674303 +1587.674736 +1587.774569 +1587.774869 +1588.374502 +1588.374669 +1588.575101 +1588.674968 +1588.774435 +1588.774801 +1588.774968 +1588.874402 +1588.974835 +1589.174368 +1589.174834 +1589.175101 +1589.175833 +1589.275034 +1589.375167 +1589.474967 +1589.574501 +1589.774467 +1589.874634 +1589.874867 +1589.974700 +1590.074634 +1590.174434 +1590.174667 +1590.274966 +1590.474800 +1590.674333 +1590.674800 +1590.773534 +1590.874600 +1590.974633 +1593.305133 +1595.476227 +1595.569999 +1595.971198 +1595.971597 +1595.971597 +1595.973995 +1595.976992 +1596.096972 +1596.139663 +1596.180555 +1596.219449 +1596.247588 +1596.289346 +1596.342393 +1596.343259 +1596.370531 +1596.423179 +1596.449785 +1596.478590 +1596.502166 +1596.691677 +1596.740428 +1596.762772 +1596.796305 +1596.821147 +1596.845156 +1596.884750 +1596.906628 +1596.943291 +1596.945556 +1596.983085 +1596.991710 +1597.008460 +1597.048952 +1597.060108 +1597.111590 +1597.139095 +1597.150784 +1597.175392 +1597.283518 +1597.321313 +1597.334500 +1597.336265 +1597.382785 +1597.398569 +1597.399235 +1597.410124 +1597.446388 +1597.519215 +1597.532002 +1597.534766 +1597.560574 +1597.627107 +1597.679921 +1597.789278 +1597.802365 +1597.859474 +1597.897370 +1598.031069 +1598.052881 +1598.090476 +1598.102897 +1598.115019 +1598.140193 +1598.203563 +1598.205328 +1598.217682 +1598.249717 +1598.250117 +1598.341159 +1598.410190 +1598.441791 +1598.495205 +1598.504828 +1598.533433 +1598.568098 +1598.594672 +1598.608824 +1598.680286 +1598.724076 +1598.736796 +1598.759906 +1598.853613 +1598.924075 +1598.947252 +1598.963036 +1598.974991 +1599.004528 +1599.039993 +1599.042757 +1599.054178 +1599.159839 +1599.173959 +1599.226606 +1599.378221 +1599.391974 +1599.445820 +1599.501064 +1599.511820 +1599.513252 +1599.560871 +1599.572193 +1599.613019 +1599.625673 +1599.628970 +1599.663469 +1599.666832 +1599.722909 +1599.725273 +1599.738826 +1599.752713 +1599.795570 +1599.863635 +1599.867498 +1599.875923 +1599.887744 +1599.890808 +1599.905626 +1599.908457 +1599.920578 +1599.931700 +1599.948816 +1599.962602 +1599.964734 +1599.987811 +1600.022143 +1600.086578 +1600.101097 +1600.115749 +1600.117181 +1600.131367 +1600.190374 +1600.206259 +1600.222476 +1600.249449 +1600.264400 +1600.277920 +1600.344054 +1600.375556 +1600.393005 +1600.404427 +1600.413917 +1600.451913 +1600.456808 +1600.500964 +1600.517447 +1600.534863 +1600.536861 +1600.565665 +1600.567863 +1600.584347 +1600.599998 +1600.628369 +1600.635029 +1600.649082 +1600.662169 +1600.689575 +1600.707057 +1600.724973 +1600.766365 +1600.779019 +1600.806325 +1600.807423 +1600.820810 +1600.840124 +1600.849015 +1600.863501 +1600.878386 +1600.889808 +1600.892572 +1600.894003 +1600.903860 +1600.922242 +1600.938159 +1601.577852 +1609.678111 +1609.731857 +1609.750238 +1609.763658 +1610.292762 +1610.522898 +1611.301685 +1611.337316 +1611.972847 +1614.972311 +1614.973010 +1621.372571 +1621.874435 +1622.074302 +1622.474268 +1622.674701 +1622.874501 +1623.074534 +1623.274401 +1623.275100 +1623.874567 +1623.972702 +1624.474499 +1624.772568 +1624.773467 +1624.874299 +1624.974166 +1624.974599 +1625.374399 +1625.574532 +1625.774498 +1631.113154 +1631.187446 +1631.200367 +1631.437363 +1631.474093 +1631.598968 +1631.646553 +1631.668232 +1631.679154 +1631.681818 +1631.694239 +1631.731235 +1631.741259 +1631.755111 +1631.790476 +1631.804129 +1631.842657 +1631.854112 +1631.886147 +1631.924642 +1632.050516 +1632.059374 +1632.070462 +1632.138561 +1632.176356 +1632.217315 +1632.225740 +1632.232733 +1632.276190 +1632.293739 +1632.363536 +1632.376889 +1632.393073 +1632.404761 +1632.422377 +1632.500832 +1632.529436 +1632.564235 +1632.574824 +1632.575956 +1632.590409 +1632.605793 +1632.630602 +1632.633799 +1632.669596 +1632.703063 +1632.798800 +1632.845986 +1632.859639 +1632.873892 +1632.889243 +1632.916682 +1632.946819 +1632.948284 +1632.974424 +1633.002363 +1633.015450 +1633.029602 +1633.058207 +1633.146019 +1633.155610 +1633.184980 +1633.261603 +1633.288510 +1633.304361 +1633.315916 +1633.382249 +1633.434797 +1633.449682 +1633.463335 +1633.476588 +1633.488676 +1633.517114 +1633.574823 +1633.596402 +1633.621377 +1633.634464 +1633.648882 +1633.692972 +1633.719911 +1633.722942 +1633.751380 +1633.777154 +1633.801729 +1633.815649 +1633.826205 +1633.851713 +1633.900531 +1633.900797 +1633.940557 +1633.998899 +1634.000064 +1634.012285 +1634.041390 +1634.071360 +1634.083780 +1634.126538 +1634.158406 +1634.168529 +1634.171459 +1634.185878 +1634.196534 +1634.213151 +1634.215049 +1634.226304 +1634.227004 +1634.254343 +1634.280117 +1634.318612 +1634.348615 +1634.376654 +1634.433297 +1634.464466 +1634.477553 +1634.519078 +1634.530866 +1634.541356 +1634.600297 +1634.617513 +1634.619811 +1634.633031 +1634.644752 +1634.660969 +1634.662268 +1634.675954 +1634.714316 +1634.736927 +1634.762268 +1634.763766 +1634.778152 +1634.792404 +1634.806957 +1634.808022 +1634.831599 +1634.833996 +1634.905325 +1634.905758 +1634.920376 +1634.934629 +1634.972657 +1634.996667 +1635.023340 +1635.037393 +1635.039490 +1635.065831 +1635.102860 +1635.103793 +1635.115614 +1635.143120 +1635.243786 +1635.305391 +1635.339190 +1635.351511 +1635.366696 +1635.378451 +1635.391438 +1635.434029 +1635.443419 +1635.444052 +1635.469760 +1635.471824 +1635.484079 +1635.513316 +1635.540289 +1635.541788 +1635.582580 +1635.599263 +1635.674188 +1635.675787 +1635.720242 +1635.735560 +1635.752477 +1635.797698 +1635.820808 +1635.835960 +1635.838158 +1635.868561 +1635.881714 +1635.940722 +1635.955840 +1649.971377 +1649.971643 +1656.672935 +1656.972935 +1657.073401 +1657.472968 +1657.473268 +1657.473501 +1657.774100 +1657.873800 +1659.773332 +1660.273564 +1660.474030 +1660.572898 +1666.040692 +1666.041058 +1666.050715 +1666.075690 +1666.097668 +1666.118747 +1666.182350 +1666.192440 +1666.255610 +1666.269929 +1666.323042 +1666.357608 +1666.369895 +1666.384880 +1666.393605 +1666.415983 +1666.416815 +1666.437961 +1666.497201 +1666.508090 +1666.518646 +1666.542456 +1666.542989 +1666.648383 +1666.670728 +1666.699765 +1666.713485 +1666.739159 +1666.760438 +1666.784414 +1666.820578 +1666.887844 +1666.888110 +1666.903361 +1666.928536 +1666.964001 +1666.990641 +1667.057474 +1667.159005 +1667.172425 +1667.198166 +1667.305525 +1667.398865 +1667.424873 +1667.450847 +1667.481216 +1667.482215 +1667.483347 +1667.533264 +1667.585545 +1667.585845 +1667.646118 +1667.659338 +1667.669261 +1667.672425 +1667.682148 +1667.738226 +1667.816347 +1667.839091 +1667.848149 +1667.857606 +1667.860437 +1667.872092 +1667.930433 +1667.931199 +1667.958439 +1667.969461 +1668.013550 +1668.035595 +1668.038458 +1668.107456 +1668.108488 +1668.174356 +1668.201395 +1668.253110 +1668.305425 +1668.332398 +1668.394336 +1668.406257 +1668.426903 +1668.443253 +1668.457572 +1668.530333 +1668.549680 +1668.600696 +1668.637426 +1668.687575 +1668.714049 +1668.742454 +1668.744785 +1668.784945 +1668.823040 +1668.836626 +1668.838924 +1668.859603 +1668.931598 +1668.987808 +1668.999297 +1669.015447 +1669.030732 +1669.041854 +1669.057339 +1669.086776 +1669.131464 +1669.190372 +1669.190971 +1669.217845 +1669.246616 +1669.260835 +1669.289373 +1669.301194 +1669.301661 +1669.365896 +1669.387142 +1669.402826 +1669.456705 +1669.483345 +1669.531664 +1669.616212 +1669.631564 +1669.677784 +1669.715580 +1669.736092 +1669.751177 +1669.801460 +1669.817145 +1669.832829 +1669.833229 +1669.848513 +1669.863498 +1669.864331 +1669.875020 +1669.879715 +1669.893335 +1669.939855 +1669.969858 +1669.999129 +1670.017577 +1670.028566 +1670.061334 +1670.090038 +1670.129332 +1670.131796 +1670.133028 +1670.144384 +1670.159868 +1670.161034 +1670.178550 +1670.179182 +1670.205090 +1670.223172 +1670.236725 +1670.359735 +1670.360501 +1670.421340 +1670.434593 +1670.437524 +1670.464130 +1670.510251 +1670.542152 +1670.556105 +1670.584976 +1670.597530 +1670.616245 +1670.659701 +1670.660600 +1670.674953 +1670.690504 +1670.706987 +1670.720574 +1670.737124 +1670.751409 +1670.752675 +1670.781346 +1670.782745 +1670.872522 +1670.890404 +1670.920707 +1670.934759 +1670.945582 +1670.958402 +1670.959867 +1670.961233 +1680.971712 +1681.972843 +1684.972108 +1690.971769 +1691.271302 +1691.472901 +1691.974132 +1692.073399 +1692.173732 +1692.573199 +1692.669536 +1692.673132 +1692.772100 +1693.073765 +1693.074331 +1693.074564 +1693.272799 +1693.273864 +1693.373465 +1693.473365 +1693.574031 +1693.774230 +1694.474030 +1694.474529 +1694.574629 +1694.674063 +1694.773030 +1694.773896 +1694.874129 +1694.973996 +1695.074595 +1695.174362 +1695.473862 +1695.474162 +1701.001529 +1701.020910 +1701.021243 +1701.095968 +1701.120776 +1701.132098 +1701.133097 +1701.206890 +1701.243886 +1701.305991 +1701.317779 +1701.353277 +1701.363167 +1701.363833 +1701.430233 +1701.469028 +1701.526903 +1701.614549 +1701.685245 +1701.685744 +1701.709587 +1701.745551 +1701.769960 +1701.770260 +1701.832131 +1701.844019 +1701.889607 +1701.891538 +1701.965131 +1701.990073 +1702.012018 +1702.022574 +1702.127435 +1702.140189 +1702.165464 +1702.167196 +1702.189240 +1702.216813 +1702.226137 +1702.294568 +1702.332730 +1702.333696 +1702.360935 +1702.398797 +1702.470559 +1702.484844 +1702.572923 +1702.573489 +1702.602526 +1702.627002 +1702.651611 +1702.657705 +1702.667761 +1702.752876 +1702.780282 +1702.781847 +1702.853475 +1702.874055 +1702.914248 +1702.925270 +1702.937291 +1702.949013 +1702.977651 +1702.978217 +1703.018743 +1703.044784 +1703.057005 +1703.111550 +1703.161767 +1703.174454 +1703.187707 +1703.267561 +1703.307754 +1703.319076 +1703.335593 +1703.409252 +1703.420774 +1703.440188 +1703.497730 +1703.522173 +1703.594267 +1703.669625 +1703.710384 +1703.710884 +1703.738023 +1703.782112 +1703.855073 +1703.977983 +1703.993401 +1704.042951 +1704.064263 +1704.104856 +1704.120241 +1704.134793 +1704.177550 +1704.189771 +1704.336491 +1704.350910 +1704.393767 +1704.437423 +1704.462565 +1704.486474 +1704.531262 +1704.592102 +1704.592701 +1704.593067 +1704.702824 +1704.733560 +1704.735225 +1704.766161 +1704.809084 +1704.810550 +1704.823870 +1704.866360 +1704.892934 +1704.937090 +1704.950876 +1705.007819 +1705.019307 +1705.045548 +1705.049477 +1705.061665 +1705.092534 +1705.148012 +1705.177049 +1705.219840 +1705.248378 +1705.258734 +1705.275950 +1705.303256 +1705.316876 +1705.340952 +1705.398195 +1705.413679 +1705.441118 +1705.456703 +1705.483476 +1705.485208 +1705.512713 +1705.514611 +1705.527832 +1705.529130 +1705.554005 +1705.587405 +1705.613246 +1705.630695 +1705.656436 +1705.670489 +1705.697362 +1705.745181 +1705.759333 +1705.774418 +1705.814711 +1705.848178 +1705.862463 +1705.908351 +1705.967591 +1706.326332 +1707.906584 +1708.996859 +1710.031024 +1710.916704 +1711.635884 +1717.980034 +1720.970640 +1720.972272 +1720.972571 +1724.671902 +1724.705668 +1724.719288 +1725.972333 +1726.173099 +1726.274231 +1726.372766 +1726.473165 +1726.572233 +1726.573531 +1726.649156 +1726.670601 +1726.673698 +1726.774464 +1727.174696 +1727.474330 +1727.574463 +1727.774596 +1727.974496 +1728.074429 +1728.074596 +1728.174163 +1728.174595 +1728.272031 +1728.272398 +1728.574229 +1728.574628 +1728.673263 +1729.274827 +1729.374328 +1729.374794 +1729.574494 +1729.674228 +1729.674494 +1729.874461 +1729.974327 +1730.373528 +1730.474293 +1730.575126 +1730.674893 +1730.974393 +1735.990938 +1735.999296 +1736.028600 +1736.028933 +1736.038257 +1736.053942 +1736.065030 +1736.129166 +1736.130898 +1736.181980 +1736.232829 +1736.269659 +1736.355739 +1736.369959 +1736.383145 +1736.396499 +1736.431930 +1736.481680 +1736.529399 +1736.530165 +1736.556039 +1736.744350 +1736.757337 +1736.780115 +1736.822472 +1736.870757 +1736.908919 +1736.973355 +1736.992669 +1737.148246 +1737.186941 +1737.237890 +1737.248912 +1737.302858 +1737.316678 +1737.342185 +1737.386674 +1737.388006 +1737.442751 +1737.470390 +1737.471789 +1737.536657 +1737.606188 +1737.617909 +1737.620707 +1737.670856 +1737.716377 +1737.755572 +1737.795964 +1737.823204 +1737.849511 +1737.876784 +1737.951109 +1737.976417 +1738.165561 +1738.208585 +1738.234692 +1738.236690 +1738.249510 +1738.329697 +1738.368858 +1738.370556 +1738.383376 +1738.409617 +1738.421538 +1738.663296 +1738.678048 +1738.690169 +1738.720672 +1738.759367 +1738.785208 +1738.834225 +1738.873552 +1738.898794 +1738.950142 +1738.988238 +1739.066160 +1739.098494 +1739.099926 +1739.183242 +1739.236356 +1739.237788 +1739.278813 +1739.306785 +1739.319972 +1739.333459 +1739.348810 +1739.375217 +1739.390935 +1739.445613 +1739.457901 +1739.471987 +1739.524401 +1739.526732 +1739.579479 +1739.606352 +1739.689769 +1739.714411 +1739.744114 +1739.757235 +1739.800125 +1739.816009 +1739.850907 +1739.867857 +1739.891167 +1739.895063 +1739.919239 +1739.942716 +1740.044081 +1740.072586 +1740.096994 +1740.122402 +1740.123068 +1740.161330 +1740.176248 +1740.177048 +1740.232625 +1740.258633 +1740.273651 +1740.325699 +1740.346245 +1740.360131 +1740.376481 +1740.377214 +1740.434723 +1740.448842 +1740.476814 +1740.489668 +1740.516475 +1740.531693 +1740.584074 +1740.585605 +1740.652072 +1740.676581 +1740.712112 +1740.764593 +1740.795562 +1740.809648 +1740.839351 +1740.871219 +1740.887836 +1740.903587 +1744.821299 +1750.970910 +1754.249195 +1754.973004 +1760.972898 +1761.273597 +1761.474096 +1761.573430 +1761.574262 +1761.974961 +1762.174861 +1762.274262 +1762.773728 +1762.774294 +1763.174893 +1763.375193 +1763.474693 +1763.475426 +1763.774593 +1764.175392 +1764.275059 +1764.374859 +1764.575025 +1764.974392 +1764.975191 +1765.474658 +1765.675224 +1765.773592 +1771.106920 +1771.109684 +1771.140720 +1771.141885 +1771.171456 +1771.225934 +1771.250610 +1771.261532 +1771.285874 +1771.296664 +1771.297696 +1771.315345 +1771.316144 +1771.316344 +1771.373020 +1771.427965 +1771.455172 +1771.467060 +1771.468325 +1771.505821 +1771.542118 +1771.542684 +1771.602191 +1771.646746 +1771.648312 +1771.693500 +1771.717476 +1771.732228 +1771.771821 +1771.773886 +1771.784475 +1771.873586 +1771.902124 +1771.929863 +1771.996230 +1772.026566 +1772.037922 +1772.098195 +1772.127465 +1772.275517 +1772.306886 +1772.360832 +1772.389103 +1772.414278 +1772.455004 +1772.492966 +1772.532560 +1772.559166 +1772.559932 +1772.679979 +1772.692799 +1772.704954 +1772.730395 +1772.740718 +1772.782676 +1772.808817 +1772.833792 +1772.846279 +1772.848310 +1772.863828 +1772.924035 +1772.940385 +1772.952772 +1773.028030 +1773.028830 +1773.042050 +1773.088037 +1773.125333 +1773.127564 +1773.162229 +1773.177381 +1773.220771 +1773.221237 +1773.275749 +1773.290568 +1773.292532 +1773.304354 +1773.352572 +1773.384973 +1773.437421 +1773.519772 +1773.536888 +1773.576715 +1773.602822 +1773.611014 +1773.649142 +1773.650807 +1773.706052 +1773.733358 +1773.775149 +1773.790767 +1773.818872 +1773.832525 +1773.860697 +1773.861030 +1773.902622 +1773.918073 +1773.968755 +1774.078412 +1774.087603 +1774.107583 +1774.133257 +1774.178113 +1774.190667 +1774.257600 +1774.310147 +1774.327396 +1774.369521 +1774.383141 +1774.410979 +1774.463960 +1774.492864 +1774.493530 +1774.550473 +1774.578878 +1774.603453 +1774.635588 +1774.663993 +1774.691865 +1774.705651 +1774.758798 +1774.774749 +1774.786837 +1774.812877 +1774.830726 +1774.832524 +1774.845911 +1774.862428 +1774.952038 +1774.981575 +1775.010379 +1775.026796 +1775.040916 +1775.059996 +1775.085471 +1775.111911 +1775.186403 +1775.208281 +1775.227462 +1775.270219 +1775.284239 +1775.298857 +1775.348941 +1775.366956 +1775.398824 +1775.411878 +1775.413809 +1775.429527 +1775.457532 +1775.459430 +1775.460063 +1775.493263 +1775.505750 +1775.521301 +1775.550705 +1775.573216 +1775.575913 +1775.589267 +1775.605251 +1775.643912 +1775.653536 +1775.681508 +1775.696859 +1775.771118 +1775.801954 +1775.832057 +1775.843945 +1775.849040 +1775.862726 +1775.883872 +1775.885570 +1775.913076 +1775.925663 +1775.955034 +1776.950271 +1776.970551 +1776.988699 +1778.708977 +1779.709009 +1779.808477 +1779.831820 +1779.836682 +1779.845273 +1785.973239 +1786.972206 +1786.973271 +1787.973836 +1796.374028 +1796.973661 +1796.973827 +1797.074027 +1797.174726 +1797.175259 +1797.274826 +1797.275559 +1798.175458 +1798.275591 +1798.374026 +1798.375025 +1798.573226 +1798.574692 +1798.874691 +1798.974558 +1799.071561 +1799.074791 +1799.274857 +1799.275190 +1799.473225 +1799.774424 +1799.875156 +1799.974923 +1800.375356 +1800.674723 +1800.775022 +1800.874956 +1800.974989 +1806.004354 +1806.025234 +1806.095830 +1806.161797 +1806.377115 +1806.428297 +1806.630494 +1806.663395 +1806.674350 +1806.674917 +1806.698759 +1806.728530 +1806.779945 +1806.806418 +1806.830294 +1806.869921 +1806.870920 +1806.882176 +1806.905985 +1806.941383 +1806.966325 +1806.994064 +1807.034956 +1807.047477 +1807.080211 +1807.107817 +1807.175948 +1807.178746 +1807.203354 +1807.262828 +1807.293264 +1807.424200 +1807.531026 +1807.543081 +1807.559198 +1807.585139 +1807.619038 +1807.671253 +1807.695961 +1807.719904 +1807.720204 +1807.772351 +1807.785238 +1807.808582 +1807.810913 +1807.821103 +1807.862994 +1807.997759 +1808.012777 +1808.013443 +1808.023467 +1808.035654 +1808.047176 +1808.084639 +1808.097393 +1808.111812 +1808.136553 +1808.174649 +1808.209181 +1808.234056 +1808.340949 +1808.355035 +1808.393596 +1808.442314 +1808.492963 +1808.548874 +1808.576247 +1808.616939 +1808.653702 +1808.683373 +1808.723632 +1808.739750 +1808.796426 +1808.810779 +1808.812344 +1808.836852 +1808.880942 +1808.895627 +1808.909280 +1809.010479 +1809.039816 +1809.098457 +1809.100056 +1809.102453 +1809.129426 +1809.130192 +1809.156399 +1809.171884 +1809.173249 +1809.185803 +1809.216639 +1809.242313 +1809.254568 +1809.257431 +1809.273016 +1809.357365 +1809.377112 +1809.413675 +1809.425197 +1809.438417 +1809.454667 +1809.471784 +1809.485736 +1809.563891 +1809.565323 +1809.651770 +1809.677444 +1809.691830 +1809.726928 +1809.753801 +1809.777078 +1809.822033 +1809.822666 +1809.824764 +1809.836918 +1809.862959 +1809.890698 +1809.892163 +1809.893128 +1809.950771 +1809.981373 +1809.995226 +1810.039049 +1810.070451 +1810.085036 +1810.095393 +1810.097424 +1810.099522 +1810.120301 +1810.182372 +1810.200221 +1810.225329 +1810.242346 +1810.269518 +1810.296158 +1810.311243 +1810.325795 +1810.351936 +1810.396358 +1810.411310 +1810.425629 +1810.467753 +1810.493028 +1810.518602 +1810.542845 +1810.560261 +1810.593228 +1810.621366 +1810.652402 +1810.694460 +1810.709311 +1810.739914 +1810.757497 +1810.768985 +1810.802052 +1810.804316 +1810.817736 +1810.849471 +1810.886800 +1810.920966 +1810.938882 +1821.973036 +1822.973235 +1823.973301 +1828.334435 +1830.676857 +1831.373760 +1831.673693 +1831.774625 +1831.874026 +1831.874492 +1831.973926 +1832.173692 +1832.374957 +1832.474791 +1832.574857 +1832.675024 +1833.175290 +1833.275323 +1833.474723 +1833.772558 +1833.975256 +1834.175122 +1834.675122 +1835.175521 +1835.274855 +1835.374055 +1835.574055 +1835.574488 +1835.675254 +1835.974321 +1839.490368 +1839.498294 +1839.509249 +1839.755303 +1840.655935 +1840.766324 +1840.970986 +1840.972285 +1840.986271 +1840.994030 +1841.002521 +1841.021769 +1841.053370 +1841.085172 +1841.131426 +1841.131992 +1841.191765 +1841.242548 +1841.280709 +1841.292931 +1841.361529 +1841.376047 +1841.431425 +1841.486970 +1841.500856 +1841.541448 +1841.592231 +1841.616806 +1841.619137 +1841.660130 +1841.674615 +1841.682973 +1841.695694 +1841.736353 +1841.776413 +1841.829793 +1841.843246 +1841.868954 +1841.923633 +1841.924299 +1841.947675 +1841.987069 +1842.043479 +1842.069520 +1842.102986 +1842.130692 +1842.155567 +1842.183239 +1842.183872 +1842.334088 +1842.346742 +1842.350505 +1842.414175 +1842.433222 +1842.433822 +1842.485204 +1842.486203 +1842.496526 +1842.523499 +1842.536519 +1842.549406 +1842.571850 +1842.600488 +1842.674081 +1842.685237 +1842.698157 +1842.732090 +1842.733489 +1842.760129 +1842.771018 +1842.834354 +1842.848140 +1842.861161 +1842.886902 +1842.913708 +1842.914341 +1842.914874 +1842.958297 +1842.988267 +1843.002819 +1843.022732 +1843.038583 +1843.068686 +1843.070052 +1843.114973 +1843.115739 +1843.128060 +1843.129625 +1843.259862 +1843.290531 +1843.314673 +1843.342812 +1843.382439 +1843.410045 +1843.424830 +1843.477277 +1843.490731 +1843.518070 +1843.531123 +1843.597757 +1843.610744 +1843.627427 +1843.640114 +1843.660361 +1843.687101 +1843.701786 +1843.717570 +1843.741879 +1843.778343 +1843.894793 +1843.922865 +1843.996225 +1843.996891 +1844.024330 +1844.052268 +1844.082771 +1844.097556 +1844.126361 +1844.168818 +1844.207680 +1844.245708 +1844.248405 +1844.294759 +1844.305149 +1844.305382 +1844.322731 +1844.332122 +1844.366421 +1844.395758 +1844.397057 +1844.424396 +1844.441712 +1844.451802 +1844.472148 +1844.499587 +1844.501952 +1844.516171 +1844.591495 +1844.591728 +1844.592161 +1844.620400 +1844.622098 +1844.654099 +1844.667386 +1844.696057 +1844.710043 +1844.743843 +1844.746141 +1844.757662 +1844.788531 +1844.818435 +1844.819034 +1844.843476 +1844.855032 +1844.913340 +1844.980573 +1845.004016 +1845.004315 +1845.005647 +1845.072847 +1845.116470 +1845.147406 +1845.178008 +1845.221631 +1845.235917 +1845.262191 +1845.298488 +1845.407978 +1845.449670 +1845.500252 +1845.514272 +1845.528457 +1845.572014 +1845.592127 +1845.653099 +1845.709876 +1845.726659 +1845.739746 +1845.783169 +1845.814504 +1845.829023 +1845.866852 +1845.916103 +1845.930955 +1855.972969 +1857.163844 +1857.174333 +1857.973167 +1858.970169 +1866.067964 +1866.071461 +1866.073225 +1866.172792 +1866.874423 +1866.973857 +1866.974323 +1867.074190 +1867.873457 +1868.374422 +1868.675021 +1869.074621 +1869.173855 +1869.274188 +1869.874820 +1869.974820 +1870.375053 +1870.474553 +1870.474819 +1870.974819 +1876.026462 +1876.036319 +1876.048540 +1876.096792 +1876.156532 +1876.218936 +1876.242313 +1876.349805 +1876.397924 +1876.421167 +1876.481773 +1876.569619 +1876.583971 +1876.678177 +1876.691397 +1876.750504 +1876.843211 +1876.844244 +1876.867287 +1876.867753 +1876.868919 +1876.920301 +1877.009878 +1877.076844 +1877.092262 +1877.218835 +1877.246241 +1877.258829 +1877.368552 +1877.399155 +1877.436917 +1877.463324 +1877.496957 +1877.498356 +1877.512342 +1877.552734 +1877.564423 +1877.638515 +1877.702285 +1877.719334 +1877.719967 +1877.733653 +1877.746174 +1877.759394 +1877.788965 +1877.857396 +1877.871016 +1877.922231 +1877.932921 +1877.969750 +1877.970117 +1878.024362 +1878.025594 +1878.042311 +1878.056164 +1878.124196 +1878.125894 +1878.163556 +1878.195091 +1878.238714 +1878.264489 +1878.286167 +1878.410343 +1878.486267 +1878.529224 +1878.539214 +1878.650935 +1878.693359 +1878.708611 +1878.740312 +1878.781638 +1878.798954 +1878.826659 +1878.829923 +1878.856862 +1878.869350 +1878.871381 +1878.931321 +1878.943842 +1879.015537 +1879.032487 +1879.045240 +1879.059626 +1879.072480 +1879.074445 +1879.102150 +1879.127691 +1879.128590 +1879.200951 +1879.203649 +1879.230588 +1879.263322 +1879.292693 +1879.308777 +1879.335949 +1879.366619 +1879.410408 +1879.428390 +1879.444008 +1879.469482 +1879.489363 +1879.543508 +1879.573911 +1879.582969 +1879.584434 +1879.619832 +1879.620931 +1879.621863 +1879.631287 +1879.633518 +1879.665819 +1879.714204 +1879.774444 +1879.806179 +1879.864354 +1879.878373 +1879.902049 +1879.914737 +1879.928423 +1879.929156 +1879.958526 +1879.991993 +1880.006845 +1880.021830 +1880.023961 +1880.038546 +1880.066185 +1880.110874 +1880.139878 +1880.158260 +1880.228589 +1880.261023 +1880.302615 +1880.333051 +1880.378506 +1880.394257 +1880.408209 +1880.437047 +1880.438746 +1880.454297 +1880.482835 +1880.503747 +1880.556561 +1880.590127 +1880.601516 +1880.636448 +1880.662721 +1880.707610 +1880.722129 +1880.739578 +1880.771979 +1880.785798 +1880.802481 +1880.803414 +1880.813837 +1880.829321 +1880.845205 +1880.865019 +1880.941043 +1880.954962 +1902.774887 +1903.774420 +1903.974653 +1904.374652 +1904.674086 +1904.774652 +1911.001685 +1911.011575 +1911.045308 +1911.046840 +1911.052834 +1911.082604 +1911.089864 +1911.108545 +1911.133254 +1911.143344 +1911.227926 +1911.251002 +1911.261425 +1911.272947 +1911.284469 +1911.340047 +1911.341146 +1911.351835 +1911.383370 +1911.407979 +1911.421665 +1911.447772 +1911.471781 +1911.513806 +1911.556597 +1911.597655 +1911.608212 +1911.623063 +1911.650003 +1911.665887 +1911.697289 +1911.700053 +1911.725661 +1911.738714 +1911.807246 +1911.817003 +1911.840612 +1911.865421 +1911.868118 +1911.906113 +1911.916070 +1911.917036 +1911.917735 +1911.930456 +1911.954265 +1911.955897 +1912.005081 +1912.034152 +1912.055064 +1912.083269 +1912.111042 +1912.151002 +1912.196989 +1912.264854 +1912.301817 +1912.310375 +1912.337248 +1912.348637 +1912.349003 +1912.401118 +1912.426626 +1912.427458 +1912.484235 +1912.507978 +1912.618400 +1912.705979 +1912.737914 +1912.739179 +1912.762889 +1912.786499 +1912.806046 +1912.828257 +1912.828557 +1912.843642 +1912.923628 +1912.947871 +1913.040911 +1913.081770 +1913.138613 +1913.189728 +1913.190295 +1913.230388 +1913.258127 +1913.271080 +1913.284034 +1913.326758 +1913.380737 +1913.381636 +1913.408509 +1913.410308 +1913.410574 +1913.422262 +1913.435682 +1913.504547 +1913.586565 +1913.645872 +1913.684933 +1913.698286 +1913.732385 +1913.734816 +1913.753531 +1913.800850 +1913.814736 +1913.864287 +1913.880037 +1913.892192 +1913.933617 +1913.938213 +1913.963088 +1914.007210 +1914.051466 +1914.078872 +1914.096354 +1914.123127 +1914.138379 +1914.153164 +1914.153797 +1914.165985 +1914.193690 +1914.210307 +1914.241642 +1914.283534 +1914.285232 +1914.356927 +1914.357226 +1914.372045 +1914.415668 +1914.446038 +1914.474842 +1914.475208 +1914.487663 +1914.489894 +1914.502215 +1914.547469 +1914.571878 +1914.575142 +1914.587563 +1914.620796 +1914.634982 +1914.696620 +1914.772677 +1914.784366 +1914.815668 +1914.856460 +1914.856793 +1914.871112 +1914.923959 +1914.938678 +1914.980303 +1915.010006 +1915.068748 +1915.084399 +1915.144472 +1915.175607 +1915.204478 +1915.236013 +1915.252231 +1915.264951 +1915.298484 +1915.312171 +1915.327056 +1915.358890 +1915.373243 +1915.387528 +1915.389493 +1915.405244 +1915.430419 +1915.489926 +1915.521494 +1915.534648 +1915.579303 +1915.592224 +1915.608141 +1915.650365 +1915.666316 +1915.680568 +1915.757325 +1915.771444 +1915.851964 +1915.868713 +1915.884265 +1915.898517 +1915.913635 +1915.928054 +1915.955160 +1926.972565 +1927.971565 +1927.972364 +1927.978192 +1928.972263 +1935.971890 +1937.175186 +1937.373987 +1937.473787 +1937.673787 +1937.774486 +1938.473719 +1938.774585 +1939.083209 +1939.372486 +1939.373785 +1939.774417 +1940.374017 +1940.374650 +1940.473984 +1940.574350 +1940.673883 +1940.873484 +1940.974016 +1945.711940 +1946.007145 +1946.046239 +1946.047205 +1946.092926 +1946.146039 +1946.194724 +1946.224061 +1946.250535 +1946.272612 +1946.309276 +1946.346006 +1946.384101 +1946.409975 +1946.476442 +1946.539778 +1946.567118 +1946.568783 +1946.609176 +1946.648736 +1946.662322 +1946.687464 +1946.700551 +1946.736581 +1946.771779 +1946.772512 +1946.786431 +1946.821863 +1946.916135 +1946.928889 +1946.941809 +1946.988496 +1946.989428 +1946.998519 +1947.056728 +1947.084533 +1947.124227 +1947.125059 +1947.185499 +1947.186298 +1947.187164 +1947.211040 +1947.228223 +1947.238945 +1947.280570 +1947.283800 +1947.295056 +1947.309974 +1947.343973 +1947.355495 +1947.394856 +1947.395455 +1947.460623 +1947.502714 +1947.547237 +1947.574842 +1947.588795 +1947.641276 +1947.730953 +1947.779537 +1947.841475 +1947.864652 +1947.902814 +1947.916667 +1947.958991 +1948.021695 +1948.023893 +1948.061755 +1948.097153 +1948.110939 +1948.138078 +1948.260090 +1948.260556 +1948.274242 +1948.287695 +1948.289260 +1948.354162 +1948.390526 +1948.404878 +1948.421961 +1948.450765 +1948.536679 +1948.567216 +1948.567882 +1948.605178 +1948.618697 +1948.632950 +1948.649067 +1948.662187 +1948.676972 +1948.703179 +1948.729253 +1948.739510 +1948.765151 +1948.781434 +1948.792890 +1948.861155 +1948.945703 +1948.962487 +1948.973875 +1948.999583 +1949.029020 +1949.041607 +1949.069579 +1949.114568 +1949.176739 +1949.177005 +1949.192523 +1949.216965 +1949.230651 +1949.296785 +1949.313968 +1949.358457 +1949.372443 +1949.417731 +1949.445203 +1949.468447 +1949.486096 +1949.513335 +1949.553295 +1949.570245 +1949.598150 +1949.601247 +1949.613601 +1949.617564 +1949.629985 +1949.643805 +1949.687128 +1949.703745 +1949.732516 +1949.734048 +1949.747168 +1949.762985 +1949.763585 +1949.802446 +1949.845303 +1949.854793 +1949.857924 +1949.887261 +1949.913002 +1949.949265 +1949.960754 +1949.978636 +1949.993854 +1950.046901 +1950.063151 +1950.108007 +1950.177537 +1950.208339 +1950.211336 +1950.240607 +1950.241540 +1950.257524 +1950.286128 +1950.299015 +1950.300214 +1950.316798 +1950.361553 +1950.371210 +1950.375239 +1950.386161 +1950.402112 +1950.477670 +1950.488659 +1950.516564 +1950.549132 +1950.559288 +1950.572308 +1950.574273 +1950.600647 +1950.655259 +1950.668878 +1950.671143 +1950.671975 +1950.672874 +1950.700480 +1950.702911 +1950.731749 +1950.773407 +1950.773940 +1950.818762 +1950.834846 +1950.857356 +1950.875671 +1950.903344 +1950.915565 +1954.716560 +1961.971065 +1963.759042 +1964.873992 +1964.970762 +1964.971695 +1964.971894 +1971.873985 +1972.273019 +1972.473519 +1972.573585 +1972.674051 +1972.774251 +1972.973218 +1973.073618 +1973.074217 +1973.373651 +1973.573684 +1973.673251 +1973.974183 +1974.273550 +1974.473716 +1974.574183 +1974.972550 +1975.074115 +1975.274615 +1975.373782 +1975.374182 +1975.773682 +1975.774348 +1975.874181 +1975.973815 +1980.971712 +1980.984333 +1981.021262 +1981.030653 +1981.070546 +1981.143573 +1981.194223 +1981.245671 +1981.269014 +1981.269247 +1981.370713 +1981.422061 +1981.472977 +1981.499917 +1981.584632 +1981.619264 +1981.643839 +1981.654495 +1981.736446 +1981.776107 +1981.778371 +1981.804378 +1981.806043 +1981.818631 +1981.886463 +1981.916067 +1981.945237 +1982.014268 +1982.190059 +1982.245304 +1982.270445 +1982.319563 +1982.362220 +1982.369313 +1982.390392 +1982.404877 +1982.418464 +1982.462819 +1982.488693 +1982.502746 +1982.569346 +1982.598384 +1982.629253 +1982.642506 +1982.643106 +1982.695553 +1982.696152 +1982.696386 +1982.722093 +1982.759922 +1982.773475 +1982.796385 +1982.809972 +1982.834214 +1982.863718 +1982.962120 +1983.004277 +1983.058789 +1983.111304 +1983.120095 +1983.121460 +1983.211470 +1983.212069 +1983.223258 +1983.246768 +1983.273641 +1983.274274 +1983.287261 +1983.311836 +1983.313801 +1983.338276 +1983.361320 +1983.384796 +1983.414500 +1983.415499 +1983.428919 +1983.462519 +1983.463484 +1983.488160 +1983.502978 +1983.511803 +1983.535246 +1983.573807 +1983.664650 +1983.678103 +1983.706275 +1983.733114 +1983.760054 +1983.763351 +1983.788559 +1983.805875 +1983.832548 +1983.920327 +1984.009205 +1984.063617 +1984.066015 +1984.087493 +1984.097949 +1984.135245 +1984.135545 +1984.162052 +1984.184263 +1984.195885 +1984.200114 +1984.223623 +1984.223956 +1984.235378 +1984.314532 +1984.347533 +1984.361086 +1984.414566 +1984.450763 +1984.519394 +1984.521459 +1984.548731 +1984.601878 +1984.623357 +1984.636843 +1984.647799 +1984.662717 +1984.663750 +1984.733480 +1984.757356 +1984.885661 +1984.920526 +1984.962051 +1984.995917 +1985.010236 +1985.035011 +1985.036743 +1985.051761 +1985.063849 +1985.075271 +1985.089390 +1985.111768 +1985.112933 +1985.168677 +1985.170742 +1985.184895 +1985.196450 +1985.212001 +1985.240006 +1985.300046 +1985.315331 +1985.328484 +1985.340339 +1985.406573 +1985.407339 +1985.434345 +1985.452960 +1985.464015 +1985.490988 +1985.493053 +1985.531814 +1985.556489 +1985.578967 +1985.580499 +1985.605007 +1985.629017 +1985.631081 +1985.646166 +1985.687092 +1985.750595 +1985.764681 +1985.833878 +1985.847431 +1985.865147 +1985.889622 +1985.911567 +1985.924654 +1985.926219 +1988.632843 +1988.640835 +1988.646996 +1989.421554 +1989.470138 +1989.524251 +1989.552090 +1989.559749 +1989.609865 +1991.245261 +1991.266440 +1991.270403 +1993.779958 +1995.970864 +1995.978990 +1996.972162 +1998.972327 +2000.972058 +2000.972791 +2006.072286 +2006.573518 +2007.174117 +2007.174749 +2007.274683 +2007.374449 +2007.474150 +2007.574183 +2007.774749 +2008.074449 +2008.075281 +2009.073515 +2009.074481 +2009.172716 +2009.374348 +2009.474114 +2009.474980 +2009.674480 +2010.174813 +2010.274580 +2010.274646 +2010.374413 +2010.374580 +2010.574746 +2010.975012 +2013.808609 +2015.116466 +2015.165218 +2015.336879 +2015.352064 +2015.378837 +2016.004511 +2016.035347 +2016.056559 +2016.067881 +2016.074807 +2016.102712 +2016.105610 +2016.117265 +2016.158923 +2016.161454 +2016.196818 +2016.240574 +2016.268480 +2016.327687 +2016.401280 +2016.412469 +2016.436878 +2016.437611 +2016.464617 +2016.497650 +2016.559955 +2016.572875 +2016.588393 +2016.614800 +2016.661586 +2016.733081 +2016.761753 +2016.801313 +2016.831816 +2016.886927 +2016.910504 +2016.923091 +2016.946734 +2016.959854 +2016.997783 +2017.033780 +2017.035812 +2017.099015 +2017.110470 +2017.110737 +2017.126321 +2017.226821 +2017.275405 +2017.369511 +2017.454026 +2017.530150 +2017.542638 +2017.543304 +2017.556091 +2017.599514 +2017.610337 +2017.612102 +2017.647799 +2017.661719 +2017.717363 +2017.731116 +2017.740673 +2017.743104 +2017.794652 +2017.796750 +2017.820793 +2017.885661 +2017.915231 +2017.942537 +2017.967879 +2017.969544 +2018.000313 +2018.000713 +2018.038708 +2018.066813 +2018.076836 +2018.102544 +2018.140106 +2018.185128 +2018.317063 +2018.340905 +2018.342004 +2018.353659 +2018.393653 +2018.450196 +2018.452827 +2018.476137 +2018.489823 +2018.525920 +2018.539740 +2018.540572 +2018.570076 +2018.584262 +2018.584894 +2018.611701 +2018.622157 +2018.678268 +2018.690722 +2018.728451 +2018.748797 +2018.779000 +2018.801944 +2018.873173 +2018.890122 +2018.932680 +2018.934678 +2018.961517 +2018.963615 +2019.002643 +2019.095750 +2019.118327 +2019.147565 +2019.156322 +2019.173139 +2019.212133 +2019.213931 +2019.252060 +2019.267778 +2019.298547 +2019.336509 +2019.360951 +2019.377468 +2019.379965 +2019.418460 +2019.445466 +2019.472839 +2019.520358 +2019.550761 +2019.567411 +2019.578633 +2019.652992 +2019.671274 +2019.699712 +2019.714897 +2019.746965 +2019.774271 +2019.820191 +2019.834344 +2019.835409 +2019.861150 +2019.871906 +2019.889322 +2019.900078 +2019.945100 +2019.977034 +2019.990987 +2020.027317 +2020.054024 +2020.093884 +2020.168376 +2020.168909 +2020.194816 +2020.198413 +2020.255056 +2020.277034 +2020.367443 +2020.381063 +2020.425852 +2020.437040 +2020.536274 +2020.562615 +2020.589055 +2020.630946 +2020.641835 +2020.713264 +2020.715828 +2020.731779 +2020.745532 +2020.760284 +2020.776301 +2020.778032 +2020.805239 +2020.887356 +2020.900543 +2020.922887 +2029.774027 +2030.973427 +2031.972727 +2031.973492 +2032.941457 +2032.972293 +2032.973192 +2033.971659 +2040.973150 +2041.474981 +2041.975347 +2042.074248 +2042.475680 +2042.575313 +2042.675646 +2042.876012 +2043.775445 +2043.875445 +2043.975279 +2043.975445 +2044.175611 +2044.276011 +2044.375578 +2044.375944 +2044.774945 +2044.775211 +2044.874745 +2045.275943 +2045.374878 +2045.475510 +2045.873578 +2045.873911 +2046.120265 +2050.790024 +2050.979634 +2050.995019 +2051.003410 +2051.003677 +2051.026387 +2051.036044 +2051.060719 +2051.070876 +2051.093653 +2051.109604 +2051.133646 +2051.155025 +2051.169344 +2051.203943 +2051.259154 +2051.294386 +2051.304575 +2051.341971 +2051.405308 +2051.443237 +2051.483463 +2051.522324 +2051.547199 +2051.576170 +2051.605474 +2051.723090 +2051.745367 +2051.758521 +2051.777668 +2051.861751 +2051.904874 +2051.955457 +2052.040106 +2052.051927 +2052.076902 +2052.101811 +2052.110569 +2052.135344 +2052.135910 +2052.160285 +2052.203575 +2052.255956 +2052.256356 +2052.292253 +2052.362117 +2052.405140 +2052.461151 +2052.520092 +2052.522423 +2052.592919 +2052.614897 +2052.630015 +2052.689755 +2052.715929 +2052.746732 +2052.810701 +2052.811034 +2052.825786 +2052.848696 +2052.913065 +2052.914963 +2052.915829 +2052.937541 +2053.126585 +2053.159685 +2053.160384 +2053.185792 +2053.197547 +2053.211899 +2053.281163 +2053.308303 +2053.387990 +2053.427850 +2053.428549 +2053.469142 +2053.510767 +2053.511266 +2053.541470 +2053.574470 +2053.578532 +2053.709068 +2053.738239 +2053.766245 +2053.834143 +2053.848595 +2053.851659 +2053.861316 +2053.919125 +2053.930314 +2053.943833 +2053.985425 +2054.015828 +2054.027383 +2054.029814 +2054.120723 +2054.150926 +2054.163747 +2054.181962 +2054.235775 +2054.275635 +2054.304606 +2054.360516 +2054.427516 +2054.456454 +2054.481429 +2054.523487 +2054.570573 +2054.584392 +2054.631245 +2054.670140 +2054.670872 +2054.712431 +2054.799943 +2054.859883 +2054.884891 +2054.914628 +2054.970872 +2055.008834 +2055.034009 +2055.034775 +2055.037539 +2055.084658 +2055.146530 +2055.190086 +2055.228048 +2055.270838 +2055.296013 +2055.309933 +2055.356519 +2055.429746 +2055.444798 +2055.455454 +2055.512996 +2055.514761 +2055.563579 +2055.588720 +2055.645830 +2055.670472 +2055.706336 +2055.732610 +2055.804471 +2055.872636 +2055.893082 +2055.904005 +2055.927581 +2058.255418 +2058.282490 +2059.701936 +2065.972859 +2067.153677 +2067.294303 +2068.972090 +2068.973122 +2072.775017 +2075.026330 +2075.973582 +2076.072749 +2076.073182 +2076.078810 +2076.173848 +2076.274281 +2076.474613 +2077.175512 +2077.455765 +2077.574046 +2077.621199 +2077.674979 +2077.775411 +2078.074046 +2078.173246 +2078.376010 +2078.475444 +2078.476010 +2078.975443 +2078.976209 +2079.075610 +2079.176176 +2079.275643 +2079.276176 +2079.575709 +2079.576209 +2079.675676 +2079.676342 +2079.975476 +2080.075609 +2080.076208 +2080.275842 +2080.475309 +2080.574676 +2080.575275 +2080.675408 +2080.675908 +2080.975375 +2085.971740 +2085.973172 +2085.973405 +2085.987358 +2086.014064 +2086.036542 +2086.127384 +2086.127584 +2086.165013 +2086.252060 +2086.288623 +2086.346299 +2086.371507 +2086.423821 +2086.449029 +2086.471840 +2086.499245 +2086.499778 +2086.567177 +2086.593418 +2086.625686 +2086.637307 +2086.689888 +2086.692752 +2086.755655 +2086.756388 +2086.782362 +2086.818659 +2086.853557 +2086.854124 +2086.897613 +2086.934976 +2086.965945 +2087.019758 +2087.034476 +2087.068775 +2087.271506 +2087.290753 +2087.356954 +2087.357253 +2087.421922 +2087.464046 +2087.494582 +2087.525119 +2087.526251 +2087.540170 +2087.595948 +2087.611066 +2087.625818 +2087.683527 +2087.711132 +2087.794416 +2087.819491 +2087.874602 +2088.000176 +2088.093117 +2088.134375 +2088.249793 +2088.260915 +2088.273370 +2088.439703 +2088.440802 +2088.511398 +2088.511897 +2088.537938 +2088.567875 +2088.568607 +2088.612031 +2088.630046 +2088.656653 +2088.682993 +2088.710632 +2088.765544 +2088.789853 +2088.792616 +2088.821055 +2088.838870 +2088.864844 +2088.898344 +2088.921254 +2088.966209 +2088.968507 +2089.014394 +2089.025250 +2089.061281 +2089.074168 +2089.127814 +2089.159483 +2089.175433 +2089.198111 +2089.268407 +2089.280928 +2089.308633 +2089.364777 +2089.404204 +2089.405736 +2089.419755 +2089.469173 +2089.470838 +2089.494381 +2089.516425 +2089.518290 +2089.549192 +2089.653788 +2089.678197 +2089.720954 +2089.779395 +2089.820454 +2089.824650 +2089.847361 +2089.849725 +2089.879728 +2089.963078 +2089.997644 +2090.051090 +2090.097244 +2090.098043 +2090.123684 +2090.137837 +2090.160347 +2090.191250 +2090.205136 +2090.240967 +2090.255619 +2090.287553 +2090.331576 +2090.346827 +2090.359648 +2090.406401 +2090.437237 +2090.478296 +2090.493181 +2090.524416 +2090.539368 +2090.563411 +2090.564576 +2090.574799 +2090.598009 +2090.628878 +2090.688119 +2090.699108 +2090.710996 +2090.713594 +2090.724016 +2090.736770 +2090.751422 +2090.753354 +2090.755052 +2090.780660 +2090.808432 +2090.811029 +2090.814226 +2090.846128 +2090.858016 +2090.860513 +2090.890150 +2090.903770 +2090.907100 +2090.921785 +2090.938868 +2090.966840 +2092.795110 +2092.805799 +2092.829276 +2102.972123 +2102.980048 +2103.973987 +2104.973886 +2111.173746 +2111.475644 +2112.276309 +2112.375810 +2112.575044 +2112.575809 +2112.673245 +2112.674078 +2112.675010 +2112.975476 +2113.275842 +2113.475342 +2113.575242 +2113.575642 +2113.974409 +2114.075075 +2114.175075 +2114.175874 +2114.675275 +2114.975008 +2115.074675 +2115.075341 +2115.275640 +2115.575707 +2115.675640 +2115.975107 +2118.083296 +2120.859817 +2120.972671 +2120.973370 +2121.005438 +2121.014862 +2121.070540 +2121.070939 +2121.106437 +2121.116893 +2121.148362 +2121.148695 +2121.202141 +2121.302740 +2121.325584 +2121.351458 +2121.411265 +2121.424652 +2121.478564 +2121.531412 +2121.585324 +2121.643799 +2121.657985 +2121.685491 +2121.726649 +2121.727016 +2121.789986 +2121.812563 +2121.814362 +2121.858384 +2121.924385 +2121.961181 +2121.983925 +2122.064778 +2122.139536 +2122.154455 +2122.169107 +2122.192750 +2122.250225 +2122.278997 +2122.280295 +2122.308667 +2122.336139 +2122.348327 +2122.414394 +2122.427581 +2122.526549 +2122.585623 +2122.623185 +2122.652889 +2122.663811 +2122.675833 +2122.776698 +2122.791484 +2122.817957 +2122.852090 +2122.897111 +2122.909865 +2122.937138 +2122.977131 +2123.078763 +2123.094447 +2123.109132 +2123.219988 +2123.243598 +2123.252755 +2123.264843 +2123.292016 +2123.333241 +2123.361913 +2123.377164 +2123.406335 +2123.420754 +2123.495013 +2123.519089 +2123.519788 +2123.561979 +2123.562245 +2123.576598 +2123.619854 +2123.621320 +2123.659948 +2123.688552 +2123.723451 +2123.826348 +2123.883690 +2123.938702 +2123.997843 +2123.998775 +2124.027446 +2124.039967 +2124.053087 +2124.111462 +2124.159414 +2124.177629 +2124.215591 +2124.231309 +2124.251489 +2124.338668 +2124.351622 +2124.465907 +2124.500506 +2124.512527 +2124.528511 +2124.586553 +2124.645628 +2124.673933 +2124.692447 +2124.732441 +2124.800406 +2124.868904 +2124.954718 +2125.029610 +2125.042031 +2125.054052 +2125.133939 +2125.176263 +2125.179193 +2125.226180 +2125.239300 +2125.313992 +2125.343562 +2125.356749 +2125.459147 +2125.512926 +2125.552020 +2125.554817 +2125.568371 +2125.597142 +2125.652153 +2125.686519 +2125.715157 +2125.830075 +2125.843029 +2125.868004 +2125.882656 +2125.929176 +2125.940764 +2140.973050 +2146.373445 +2146.373944 +2146.874110 +2146.973777 +2147.374076 +2147.573643 +2147.574409 +2147.874442 +2148.373509 +2148.373909 +2148.374075 +2149.073975 +2149.373675 +2149.374074 +2149.474041 +2149.574574 +2149.775040 +2149.974806 +2150.174107 +2150.374207 +2150.374606 +2150.473807 +2150.874839 +2150.973873 +2155.985656 +2156.007834 +2156.032543 +2156.087321 +2156.087920 +2156.107301 +2156.120421 +2156.144730 +2156.156851 +2156.157085 +2156.231477 +2156.289019 +2156.311563 +2156.313628 +2156.360714 +2156.414760 +2156.511696 +2156.520920 +2156.531610 +2156.559415 +2156.587087 +2156.600341 +2156.648193 +2156.659948 +2156.683957 +2156.684357 +2156.706535 +2156.860913 +2156.874700 +2156.957583 +2156.957983 +2156.982292 +2157.007134 +2157.008066 +2157.036171 +2157.058815 +2157.059548 +2157.119554 +2157.160280 +2157.182092 +2157.205169 +2157.243197 +2157.278029 +2157.325915 +2157.351522 +2157.352654 +2157.378728 +2157.392481 +2157.405601 +2157.441266 +2157.469771 +2157.522385 +2157.523150 +2157.544163 +2157.555418 +2157.565441 +2157.674499 +2157.701505 +2157.710363 +2157.738102 +2157.738635 +2157.761778 +2157.776097 +2157.826114 +2157.881392 +2157.929277 +2157.951155 +2158.036703 +2158.037469 +2158.102770 +2158.114525 +2158.145627 +2158.228611 +2158.228911 +2158.258681 +2158.284888 +2158.313526 +2158.326413 +2158.327112 +2158.383489 +2158.395277 +2158.411694 +2158.447858 +2158.459180 +2158.493379 +2158.508830 +2158.533206 +2158.580492 +2158.618421 +2158.644295 +2158.668571 +2158.690815 +2158.730775 +2158.761078 +2158.772899 +2158.795810 +2158.831974 +2158.834138 +2158.860345 +2158.862243 +2158.873898 +2158.902470 +2158.903136 +2158.946259 +2158.973599 +2159.002636 +2159.020285 +2159.047824 +2159.059446 +2159.061544 +2159.087285 +2159.110828 +2159.121883 +2159.134537 +2159.137601 +2159.162110 +2159.206532 +2159.231041 +2159.258314 +2159.270968 +2159.282256 +2159.293978 +2159.312293 +2159.336435 +2159.337001 +2159.378293 +2159.380358 +2159.392013 +2159.415523 +2159.416489 +2159.443428 +2159.481390 +2159.507398 +2159.587484 +2159.588017 +2159.612392 +2159.630574 +2159.631240 +2159.657048 +2159.670434 +2159.719285 +2159.719985 +2159.746891 +2159.750354 +2159.762975 +2159.775529 +2159.788083 +2159.804733 +2159.859645 +2159.875596 +2159.890880 +2159.906132 +2159.941263 +2159.958513 +2159.999572 +2160.018919 +2160.088516 +2160.135669 +2160.138832 +2160.180823 +2160.196408 +2160.223381 +2160.227011 +2160.278326 +2160.279858 +2160.314523 +2160.355249 +2160.367836 +2160.393244 +2160.437566 +2160.438033 +2160.463873 +2160.561676 +2160.576994 +2160.590413 +2160.590713 +2160.605731 +2160.633703 +2160.651219 +2160.651985 +2160.667503 +2160.681322 +2160.724146 +2160.740363 +2160.758878 +2160.805032 +2160.822181 +2160.836234 +2160.880423 +2160.910560 +2160.942195 +2170.970923 +2170.971289 +2170.971622 +2172.970521 +2172.971220 +2173.970320 +2173.978445 +2175.970285 +2175.971550 +2180.970480 +2181.872011 +2181.971977 +2181.973076 +2182.073309 +2182.172976 +2182.372843 +2182.471843 +2182.473109 +2182.773009 +2183.072609 +2183.272908 +2183.371976 +2183.573008 +2183.672941 +2183.773207 +2183.873374 +2183.971942 +2183.973141 +2184.072075 +2184.072375 +2184.171376 +2184.273440 +2184.373340 +2184.572807 +2184.573473 +2184.671575 +2185.073173 +2185.172940 +2185.273039 +2185.673172 +2185.972439 +2186.665446 +2186.688756 +2186.731746 +2186.762182 +2190.668239 +2190.971735 +2190.977463 +2190.983623 +2191.000839 +2191.022018 +2191.022484 +2191.116890 +2191.128245 +2191.189217 +2191.305101 +2191.419886 +2191.433739 +2191.444961 +2191.460279 +2191.473932 +2191.563576 +2191.615824 +2191.654052 +2191.654651 +2191.666540 +2191.691381 +2191.717588 +2191.784455 +2191.796509 +2191.810262 +2191.834871 +2191.899573 +2191.911328 +2191.930509 +2191.932507 +2191.972034 +2192.011694 +2192.177362 +2192.193512 +2192.279393 +2192.336835 +2192.378227 +2192.392147 +2192.418853 +2192.420019 +2192.466372 +2192.515157 +2192.542696 +2192.583122 +2192.599939 +2192.635936 +2192.664374 +2192.730075 +2192.743295 +2192.753585 +2192.767005 +2192.814191 +2192.840664 +2192.841197 +2192.854817 +2192.869202 +2192.905566 +2192.908663 +2192.927544 +2192.956915 +2193.047158 +2193.047757 +2193.103468 +2193.105965 +2193.130907 +2193.141896 +2193.144394 +2193.212592 +2193.251187 +2193.251953 +2193.280058 +2193.304600 +2193.305033 +2193.315889 +2193.347357 +2193.382722 +2193.437334 +2193.452452 +2193.466837 +2193.495775 +2193.510494 +2193.525112 +2193.569535 +2193.571366 +2193.609961 +2193.646258 +2193.700204 +2193.700837 +2193.747357 +2193.758878 +2193.775029 +2193.789981 +2193.840996 +2193.884852 +2193.963707 +2194.004566 +2194.027210 +2194.027643 +2194.072165 +2194.092478 +2194.133304 +2194.147723 +2194.156680 +2194.182921 +2194.213390 +2194.225911 +2194.228442 +2194.250453 +2194.265305 +2194.276494 +2194.277393 +2194.362774 +2194.376727 +2194.405165 +2194.479957 +2194.507263 +2194.608561 +2194.636034 +2194.637033 +2194.712990 +2194.738764 +2194.787016 +2194.896773 +2194.909593 +2194.925877 +2194.938631 +2194.950586 +2194.953316 +2194.992444 +2195.023846 +2195.116586 +2195.132104 +2195.160942 +2195.232104 +2195.274828 +2195.276659 +2195.326576 +2195.330638 +2195.343759 +2195.345157 +2195.358910 +2195.373662 +2195.461974 +2195.463739 +2195.503066 +2195.517784 +2195.518650 +2195.520182 +2195.544091 +2195.558444 +2195.560309 +2195.580655 +2195.601434 +2195.609792 +2195.610725 +2195.635100 +2195.650885 +2195.665603 +2195.669499 +2195.682253 +2195.697804 +2195.713688 +2195.714587 +2195.727841 +2195.741094 +2195.759176 +2195.785783 +2195.815953 +2195.825876 +2195.840561 +2195.843425 +2195.855879 +2195.870964 +2195.872296 +2195.886549 +2195.904031 +2195.919216 +2195.930538 +2195.949286 +2195.959309 +2202.856672 +2202.873155 +2206.700957 +2206.705752 +2207.687303 +2207.698025 +2207.706017 +2207.911778 +2208.134788 +2208.143879 +2208.701321 +2209.194561 +2209.700587 +2209.701886 +2209.706149 +2209.707214 +2210.700653 +2211.701318 +2211.701551 +2211.706480 +2211.706779 +2215.693455 +2215.703678 +2215.733548 +2215.759189 +2215.805809 +2216.293588 +2216.342672 +2216.349166 +2216.363818 +2216.369778 +2216.377204 +2216.384697 +2216.421360 +2216.508839 +2216.700680 +2216.700980 +2216.801413 +2216.901912 +2217.102445 +2217.202078 +2217.802344 +2218.102211 +2218.202377 +2218.702477 +2219.002177 +2219.602509 +2219.602842 +2219.702309 +2219.802309 +2219.802875 +2220.102475 +2220.302508 +2220.502608 +2220.602608 +2221.002508 +2221.602507 +2222.660947 +2226.817753 +2226.847890 +2226.917254 +2226.948889 +2227.057513 +2227.089981 +2227.103401 +2227.119151 +2227.128808 +2227.175828 +2227.176661 +2227.285052 +2227.295109 +2227.308961 +2227.320217 +2227.331306 +2227.342794 +2227.369934 +2227.417253 +2227.432205 +2227.494742 +2227.539730 +2227.554049 +2227.598871 +2227.619417 +2227.620550 +2227.639730 +2227.643893 +2227.670067 +2227.682088 +2227.682920 +2227.694775 +2227.697206 +2227.741195 +2227.761209 +2227.824778 +2227.847922 +2227.871765 +2227.904365 +2227.915821 +2227.928341 +2227.978691 +2227.988714 +2228.024012 +2228.024645 +2228.048155 +2228.048921 +2228.049587 +2228.063606 +2228.073430 +2228.100103 +2228.135234 +2228.135934 +2228.146456 +2228.180422 +2228.193409 +2228.206596 +2228.232137 +2228.281954 +2228.292310 +2228.328508 +2228.380555 +2228.382121 +2228.394175 +2228.406330 +2228.418850 +2228.433203 +2228.444924 +2228.473596 +2228.485117 +2228.500902 +2228.511458 +2228.512124 +2228.525410 +2228.526409 +2228.584351 +2228.629873 +2228.642094 +2228.655613 +2228.665537 +2228.682087 +2228.694974 +2228.732936 +2228.734901 +2228.746389 +2228.759842 +2228.771631 +2228.772996 +2228.798937 +2228.810592 +2228.811524 +2228.827108 +2228.838397 +2228.852949 +2228.892110 +2228.917118 +2228.919083 +2228.942560 +2228.943525 +2228.955713 +2228.957744 +2228.983685 +2229.040395 +2229.054414 +2229.071497 +2229.098670 +2229.126109 +2229.168234 +2229.182086 +2229.209126 +2229.263272 +2229.263638 +2229.277957 +2229.292543 +2229.342592 +2229.370598 +2229.407827 +2229.424411 +2229.435533 +2229.452283 +2229.465769 +2229.480022 +2229.490777 +2229.535766 +2229.607927 +2229.624643 +2229.666435 +2229.668466 +2229.679489 +2229.692242 +2229.722945 +2229.736132 +2229.747287 +2229.747754 +2229.762938 +2229.802998 +2229.806661 +2229.831570 +2229.879355 +2229.922412 +2229.939295 +2229.955179 +2229.969065 +2229.981486 +2229.993008 +2229.995739 +2230.049352 +2230.066634 +2230.080287 +2230.109491 +2230.151516 +2230.178955 +2230.180687 +2230.221046 +2230.234400 +2230.269431 +2230.298236 +2230.315186 +2230.328006 +2230.340227 +2230.369598 +2230.380387 +2230.406827 +2230.435232 +2230.466168 +2230.480786 +2230.482718 +2230.484949 +2230.510590 +2230.527473 +2230.529105 +2230.543091 +2230.560140 +2230.587513 +2230.589311 +2230.601965 +2230.605262 +2230.619714 +2230.632668 +2230.659874 +2230.661739 +2230.662971 +2230.677323 +2230.691076 +2230.738029 +2230.751848 +2230.767733 +2230.782551 +2230.798102 +2230.812288 +2230.828239 +2230.860040 +2230.860307 +2230.876490 +2230.908059 +2230.922344 +2230.938462 +2230.953913 +2230.966267 +2230.998601 +2231.027572 +2231.030503 +2231.031868 +2231.061971 +2231.090942 +2231.107426 +2231.137329 +2231.168798 +2231.183317 +2231.184982 +2231.197802 +2231.199367 +2231.211755 +2231.225275 +2231.252747 +2231.282983 +2231.296670 +2231.313153 +2231.342424 +2231.344289 +2231.359374 +2231.373193 +2231.407192 +2231.434432 +2231.436630 +2231.449217 +2231.467132 +2231.468764 +2231.497735 +2231.498434 +2231.513952 +2231.560939 +2231.561838 +2231.635997 +2231.637862 +2231.652380 +2231.666000 +2231.668431 +2231.683616 +2231.697835 +2232.363635 +2236.116179 +2236.119609 +2236.124704 +2236.132296 +2241.702121 +2243.702185 +2243.708412 +2244.708445 +2245.708910 +2246.708776 +2249.544670 +2251.374372 +2251.702510 +2251.909936 +2252.103775 +2252.704074 +2252.905240 +2253.404839 +2253.903840 +2254.003773 +2254.204173 +2254.404039 +2254.804006 +2254.904005 +2255.504271 +2255.604371 +2255.908300 +2261.729107 +2261.738065 +2261.756380 +2261.875960 +2261.877025 +2261.928707 +2261.939197 +2261.960042 +2261.969233 +2261.997705 +2262.078923 +2262.114721 +2262.124012 +2262.181021 +2262.216319 +2262.217984 +2262.263472 +2262.276492 +2262.314321 +2262.323945 +2262.372063 +2262.481620 +2262.518350 +2262.533368 +2262.558976 +2262.593542 +2262.647088 +2262.713322 +2262.736032 +2262.758277 +2262.781453 +2262.794141 +2262.829539 +2262.889445 +2262.890111 +2262.912855 +2262.927174 +2262.957477 +2262.985749 +2263.036132 +2263.039329 +2263.086015 +2263.104130 +2263.115919 +2263.138230 +2263.149518 +2263.173228 +2263.185582 +2263.211356 +2263.212322 +2263.238596 +2263.248652 +2263.260341 +2263.271130 +2263.313421 +2263.341060 +2263.366102 +2263.383551 +2263.393208 +2263.404929 +2263.426042 +2263.436664 +2263.471463 +2263.497803 +2263.535965 +2263.546721 +2263.548386 +2263.561439 +2263.583983 +2263.593241 +2263.604030 +2263.605529 +2263.618649 +2263.630603 +2263.658609 +2263.670264 +2263.671429 +2263.710890 +2263.721845 +2263.738029 +2263.747919 +2263.763870 +2263.801865 +2263.827373 +2263.842192 +2263.880187 +2263.891509 +2263.895205 +2263.919647 +2263.947087 +2263.962571 +2263.984316 +2263.997669 +2263.999601 +2264.011589 +2264.012088 +2264.024576 +2264.070130 +2264.071629 +2264.084582 +2264.097336 +2264.123610 +2264.218448 +2264.246620 +2264.247553 +2264.260273 +2264.271928 +2264.273227 +2264.285015 +2264.301598 +2264.327839 +2264.328172 +2264.329237 +2264.342458 +2264.343989 +2264.358508 +2264.368898 +2264.381785 +2264.383916 +2264.421978 +2264.425774 +2264.451548 +2264.476090 +2264.492374 +2264.549550 +2264.575791 +2264.590276 +2264.591175 +2264.647419 +2264.673460 +2264.674325 +2264.687712 +2264.728171 +2264.743556 +2264.769530 +2264.784448 +2264.797036 +2264.799334 +2264.812420 +2264.825607 +2264.828837 +2264.867732 +2264.880519 +2264.881918 +2264.882683 +2264.894938 +2264.905527 +2264.936263 +2264.939393 +2264.953080 +2264.964701 +2264.978854 +2264.994039 +2264.995637 +2265.036097 +2265.067865 +2265.081651 +2265.094238 +2265.106493 +2265.109157 +2265.136363 +2265.149150 +2265.178454 +2265.192940 +2265.222676 +2265.235863 +2265.250349 +2265.323908 +2265.337362 +2265.350615 +2265.424408 +2265.440492 +2265.454078 +2265.455410 +2265.477788 +2265.480052 +2265.482083 +2265.536729 +2265.554178 +2265.579886 +2265.627471 +2265.680818 +2265.696835 +2265.727072 +2265.755243 +2265.784214 +2265.799199 +2265.823142 +2265.837095 +2265.851447 +2265.866066 +2265.920445 +2265.967498 +2265.995170 +2265.998467 +2266.038160 +2266.074490 +2266.087611 +2266.120012 +2266.149848 +2266.177521 +2266.178986 +2266.244986 +2266.272759 +2266.289076 +2266.320744 +2266.362702 +2266.492872 +2266.524507 +2266.646584 +2266.692106 +2277.709910 +2278.977508 +2279.709375 +2279.710341 +2279.710574 +2279.944740 +2279.951799 +2279.972112 +2280.710573 +2286.804406 +2287.005039 +2288.105404 +2289.305303 +2289.806202 +2290.205302 +2291.005135 +2291.005568 +2291.205035 +2296.715552 +2296.777923 +2296.788579 +2296.809691 +2296.832302 +2296.850783 +2296.852448 +2296.900234 +2296.907493 +2296.938296 +2296.982551 +2297.058276 +2297.090776 +2297.091709 +2297.122411 +2297.173827 +2297.206461 +2297.216650 +2297.281519 +2297.306860 +2297.316717 +2297.317483 +2297.341559 +2297.395305 +2297.431935 +2297.444156 +2297.470696 +2297.483583 +2297.650549 +2297.676723 +2297.722944 +2297.771595 +2297.785648 +2297.880985 +2297.921412 +2297.945821 +2297.971095 +2297.996470 +2298.006926 +2298.058042 +2298.133932 +2298.147718 +2298.171961 +2298.173359 +2298.198301 +2298.221411 +2298.233166 +2298.307658 +2298.332733 +2298.360539 +2298.409590 +2298.460938 +2298.506026 +2298.519413 +2298.533233 +2298.535930 +2298.548584 +2298.561371 +2298.572860 +2298.591508 +2298.649616 +2298.673492 +2298.674225 +2298.686979 +2298.701098 +2298.702530 +2298.737062 +2298.772560 +2298.783116 +2298.797302 +2298.844155 +2298.872659 +2298.896635 +2298.970795 +2298.981883 +2298.992939 +2298.993538 +2299.147917 +2299.178620 +2299.200798 +2299.211520 +2299.236229 +2299.285513 +2299.298500 +2299.324074 +2299.360471 +2299.370428 +2299.419346 +2299.446385 +2299.542123 +2299.565466 +2299.632965 +2299.647151 +2299.699698 +2299.701496 +2299.714417 +2299.741556 +2299.782482 +2299.795902 +2299.813218 +2299.825139 +2299.836162 +2299.849648 +2299.866498 +2299.878186 +2299.940957 +2299.944786 +2299.965332 +2299.983314 +2300.164100 +2300.224306 +2300.225905 +2300.253144 +2300.264200 +2300.278985 +2300.292605 +2300.320144 +2300.386011 +2300.401929 +2300.451313 +2300.455475 +2300.466264 +2300.506557 +2300.508056 +2300.533863 +2300.588642 +2300.622841 +2300.630500 +2300.643520 +2300.645585 +2300.659038 +2300.687476 +2300.699364 +2300.715948 +2300.743154 +2300.768129 +2300.771692 +2300.798465 +2300.798998 +2300.827769 +2300.896367 +2300.924739 +2301.021275 +2301.025704 +2301.065165 +2301.077153 +2301.090073 +2301.204825 +2301.206057 +2301.433796 +2301.538025 +2312.704880 +2312.711607 +2313.704879 +2314.704645 +2314.704945 +2321.704039 +2321.705237 +2321.709966 +2321.905504 +2322.205403 +2326.206365 +2326.606198 +2331.721078 +2331.721944 +2331.730302 +2331.784814 +2331.814451 +2331.814651 +2331.846919 +2331.931001 +2331.995304 +2332.029270 +2332.038527 +2332.051614 +2332.084714 +2332.106626 +2332.108957 +2332.128037 +2332.128670 +2332.179519 +2332.205527 +2332.228637 +2332.251780 +2332.252213 +2332.285114 +2332.295170 +2332.374124 +2332.409223 +2332.421044 +2332.445553 +2332.446219 +2332.480285 +2332.543089 +2332.567431 +2332.608556 +2332.680151 +2332.726538 +2332.739425 +2332.750847 +2332.760371 +2332.811620 +2332.835796 +2332.863868 +2332.887644 +2332.914284 +2332.933997 +2332.964800 +2332.977887 +2332.994104 +2333.005726 +2333.007058 +2333.029335 +2333.031300 +2333.067530 +2333.103295 +2333.125639 +2333.152812 +2333.178286 +2333.208323 +2333.230734 +2333.262802 +2333.311786 +2333.313118 +2333.396734 +2333.408156 +2333.430534 +2333.467996 +2333.517813 +2333.543287 +2333.569228 +2333.582082 +2333.605459 +2333.620144 +2333.633730 +2333.671226 +2333.672125 +2333.697267 +2333.723640 +2333.726071 +2333.763434 +2333.787310 +2333.789075 +2333.802028 +2333.813117 +2333.826371 +2333.852778 +2333.919910 +2333.932997 +2333.957040 +2333.987077 +2333.987443 +2334.011652 +2334.038059 +2334.048682 +2334.098898 +2334.100063 +2334.151812 +2334.163833 +2334.165032 +2334.205058 +2334.273923 +2334.288908 +2334.300629 +2334.302061 +2334.327036 +2334.342088 +2334.384545 +2334.407689 +2334.408555 +2334.419943 +2334.482414 +2334.493969 +2334.521275 +2334.522274 +2334.581049 +2334.600063 +2334.613216 +2334.626104 +2334.637958 +2334.650845 +2334.662167 +2334.676054 +2334.701295 +2334.714515 +2334.764665 +2334.805091 +2334.816546 +2334.819310 +2334.830466 +2334.856007 +2334.938857 +2334.951611 +2334.966896 +2334.980416 +2334.994535 +2335.025504 +2335.038291 +2335.039057 +2335.081281 +2335.106489 +2335.136426 +2335.152077 +2335.166296 +2335.179883 +2335.207755 +2335.235127 +2335.236259 +2335.252643 +2335.266463 +2335.279483 +2335.282513 +2335.337358 +2335.351211 +2335.407055 +2335.434894 +2335.435560 +2335.448880 +2335.451444 +2335.481347 +2335.509553 +2335.509819 +2335.511151 +2335.522939 +2335.554274 +2335.595866 +2335.609053 +2335.621774 +2335.624071 +2335.651810 +2335.695233 +2335.698130 +2335.710118 +2335.724038 +2335.739822 +2335.741454 +2335.770958 +2335.785243 +2335.785610 +2335.816212 +2335.843285 +2335.845883 +2335.857404 +2335.873422 +2335.887774 +2335.892103 +2335.902659 +2335.918010 +2335.932196 +2335.960967 +2335.977850 +2335.991737 +2336.005656 +2336.050977 +2336.053675 +2336.080081 +2336.111583 +2336.153974 +2336.172456 +2336.231363 +2336.259935 +2336.261600 +2336.278450 +2336.335193 +2336.363797 +2336.395000 +2336.425902 +2336.438489 +2336.486774 +2336.517177 +2336.530830 +2336.547647 +2336.562732 +2336.576684 +2336.579948 +2336.596564 +2336.627800 +2336.682478 +2347.710273 +2348.710239 +2349.334114 +2350.353327 +2354.032544 +2356.340134 +2356.704703 +2357.906333 +2358.306333 +2358.406333 +2358.906133 +2359.406265 +2359.406698 +2360.806963 +2361.506729 +2363.023345 +2366.705159 +2366.705958 +2366.709988 +2366.745252 +2366.779518 +2366.818046 +2366.861203 +2366.872891 +2366.894103 +2366.894936 +2366.994936 +2367.074856 +2367.223141 +2367.223840 +2367.256740 +2367.279118 +2367.279617 +2367.292038 +2367.359304 +2367.396067 +2367.406124 +2367.417080 +2367.427103 +2367.453377 +2367.455008 +2367.466097 +2367.486643 +2367.511252 +2367.523140 +2367.534096 +2367.544885 +2367.600862 +2367.613683 +2367.624705 +2367.666597 +2367.683613 +2367.693969 +2367.717379 +2367.753843 +2367.805491 +2367.806290 +2367.854275 +2367.941089 +2367.975288 +2367.998032 +2368.000662 +2368.022107 +2368.022773 +2368.066396 +2368.067995 +2368.115347 +2368.128701 +2368.163799 +2368.165797 +2368.188774 +2368.243219 +2368.282114 +2368.292004 +2368.304025 +2368.345351 +2368.368361 +2368.397698 +2368.419277 +2368.419876 +2368.468061 +2368.537691 +2368.577551 +2368.606356 +2368.630831 +2368.641254 +2368.655407 +2368.668727 +2368.717744 +2368.756672 +2368.758504 +2368.781214 +2368.807388 +2368.808653 +2368.821807 +2368.849679 +2368.875154 +2368.876452 +2368.899429 +2368.938790 +2368.966895 +2368.993135 +2369.017611 +2369.020708 +2369.084877 +2369.122573 +2369.137824 +2369.149945 +2369.161767 +2369.164497 +2369.175353 +2369.191603 +2369.259069 +2369.274121 +2369.289239 +2369.313348 +2369.313681 +2369.338989 +2369.380215 +2369.422772 +2369.440887 +2369.492835 +2369.535060 +2369.574853 +2369.675253 +2369.687074 +2369.688573 +2369.752642 +2369.795932 +2369.808386 +2369.839055 +2369.850211 +2369.890004 +2369.901127 +2369.904190 +2369.932795 +2369.933727 +2369.957770 +2369.972222 +2369.986108 +2369.987107 +2370.028865 +2370.043084 +2370.072755 +2370.085342 +2370.111849 +2370.116511 +2370.130330 +2370.142119 +2370.143650 +2370.170524 +2370.172688 +2370.200094 +2370.202891 +2370.214080 +2370.216577 +2370.226834 +2370.231329 +2370.243750 +2370.260101 +2370.274420 +2370.276418 +2370.289638 +2370.306021 +2370.334260 +2370.347779 +2370.393267 +2370.409051 +2370.450876 +2370.453407 +2370.454406 +2370.498029 +2370.510317 +2370.525069 +2370.527833 +2370.540953 +2370.611316 +2370.643816 +2370.656071 +2370.671589 +2370.685342 +2370.688072 +2370.702091 +2370.703790 +2370.716144 +2370.731296 +2370.732661 +2370.747879 +2370.760600 +2370.764829 +2370.777916 +2370.779814 +2370.794066 +2370.807319 +2370.822304 +2370.837523 +2370.851375 +2370.882078 +2370.894898 +2370.900193 +2370.910283 +2370.926633 +2370.940686 +2370.942351 +2370.943983 +2370.971455 +2371.000992 +2371.014978 +2371.058368 +2371.072154 +2371.099560 +2371.113713 +2371.128531 +2371.132660 +2371.142917 +2371.144848 +2371.165794 +2371.176783 +2371.191968 +2371.221638 +2371.270023 +2371.296996 +2371.298361 +2371.300293 +2371.315444 +2371.390602 +2371.405188 +2371.434059 +2371.434758 +2371.449210 +2371.462231 +2371.463329 +2371.494798 +2371.529863 +2371.545614 +2371.560699 +2371.561065 +2371.577482 +2371.607485 +2371.625267 +2371.639420 +2371.686573 +2371.702723 +2372.108317 +2372.110748 +2375.009047 +2383.705042 +2383.712468 +2384.711768 +2386.705838 +2391.705833 +2391.906632 +2392.613858 +2392.807231 +2394.107429 +2395.607161 +2395.807128 +2395.907128 +2396.607194 +2396.707094 +2401.706389 +2401.740455 +2401.799330 +2401.829167 +2401.852477 +2401.951677 +2401.972223 +2401.995200 +2402.064398 +2402.085543 +2402.121907 +2402.134461 +2402.180948 +2402.191837 +2402.225570 +2402.268194 +2402.447148 +2402.468560 +2402.479482 +2402.489006 +2402.501227 +2402.524804 +2402.525603 +2402.540954 +2402.552542 +2402.562033 +2402.628000 +2402.664797 +2402.676851 +2402.691370 +2402.728899 +2402.759102 +2402.839222 +2402.839755 +2402.850511 +2402.850844 +2402.879782 +2402.903691 +2402.913847 +2402.969359 +2402.985343 +2402.998729 +2403.027001 +2403.039388 +2403.051743 +2403.065429 +2403.099528 +2403.118909 +2403.156638 +2403.158736 +2403.202292 +2403.241719 +2403.242552 +2403.265862 +2403.276817 +2403.317910 +2403.358502 +2403.372988 +2403.411449 +2403.423571 +2403.477150 +2403.503124 +2403.515345 +2403.517676 +2403.530064 +2403.540886 +2403.566727 +2403.618808 +2403.643284 +2403.643517 +2403.703590 +2403.722371 +2403.763630 +2403.775984 +2403.789471 +2403.894000 +2403.980779 +2403.995631 +2404.085208 +2404.099461 +2404.127066 +2404.165195 +2404.181678 +2404.207852 +2404.238022 +2404.249677 +2404.265395 +2404.277482 +2404.293500 +2404.334226 +2404.361765 +2404.432794 +2404.475418 +2404.500959 +2404.556736 +2404.572554 +2404.587672 +2404.588138 +2404.602257 +2404.629264 +2404.688438 +2404.730662 +2404.744748 +2404.746679 +2404.803123 +2404.816643 +2404.831228 +2404.847812 +2404.891201 +2404.932660 +2404.933159 +2404.960898 +2404.989004 +2405.009017 +2405.034092 +2405.058134 +2405.074651 +2405.089403 +2405.103789 +2405.116543 +2405.139886 +2405.201058 +2405.217009 +2405.218074 +2405.245214 +2405.260299 +2405.271055 +2405.282710 +2405.306586 +2405.317275 +2405.377748 +2405.406652 +2405.420605 +2405.452073 +2405.510215 +2405.541484 +2405.554038 +2405.599393 +2405.615010 +2405.627997 +2405.642616 +2405.686639 +2405.687305 +2405.701990 +2405.716542 +2405.731494 +2405.745646 +2405.773718 +2405.788903 +2405.791034 +2405.837454 +2405.851141 +2405.865493 +2405.881910 +2405.896362 +2405.990934 +2406.006751 +2406.034424 +2406.035456 +2406.048443 +2406.081710 +2406.109282 +2406.142083 +2406.186338 +2406.200990 +2406.232459 +2406.249475 +2406.275749 +2406.276648 +2406.292699 +2406.322602 +2406.338586 +2406.431793 +2406.495462 +2406.495762 +2406.526365 +2406.542382 +2406.558566 +2406.587237 +2406.614210 +2406.661063 +2406.678279 +2418.705573 +2419.705506 +2419.710967 +2420.705771 +2426.705332 +2427.406797 +2427.906663 +2436.715845 +2436.716411 +2436.738256 +2436.738955 +2436.763997 +2436.765662 +2436.791569 +2436.791836 +2436.853108 +2436.863730 +2436.887573 +2436.897963 +2436.942718 +2437.023703 +2437.057503 +2437.126168 +2437.136657 +2437.137356 +2437.157803 +2437.174053 +2437.174652 +2437.218309 +2437.227233 +2437.228965 +2437.280413 +2437.288172 +2437.335891 +2437.346414 +2437.357869 +2437.375618 +2437.436690 +2437.466427 +2437.491469 +2437.541052 +2437.591835 +2437.600726 +2437.733027 +2437.754106 +2437.803589 +2437.837089 +2437.859434 +2437.880479 +2437.892900 +2437.943782 +2437.966926 +2438.002557 +2438.045248 +2438.053106 +2438.080046 +2438.080945 +2438.118741 +2438.153872 +2438.180212 +2438.234725 +2438.286539 +2438.342383 +2438.364861 +2438.394698 +2438.416709 +2438.430129 +2438.456070 +2438.492933 +2438.505287 +2438.507651 +2438.520006 +2438.559300 +2438.585340 +2438.586139 +2438.599326 +2438.635956 +2438.636389 +2438.648311 +2438.670755 +2438.694331 +2438.718474 +2438.751541 +2438.780944 +2438.794664 +2438.810848 +2438.823369 +2438.859166 +2438.921704 +2438.935690 +2438.960232 +2438.982243 +2439.020238 +2439.023768 +2439.036222 +2439.058866 +2439.074884 +2439.085972 +2439.127031 +2439.175916 +2439.192832 +2439.203988 +2439.205919 +2439.233158 +2439.246245 +2439.272086 +2439.339885 +2439.355769 +2439.394797 +2439.409682 +2439.436522 +2439.450641 +2439.478047 +2439.515509 +2439.518539 +2439.557401 +2439.572386 +2439.588170 +2439.611213 +2439.643681 +2439.644380 +2439.669222 +2439.685506 +2439.696561 +2439.726565 +2439.767590 +2439.781077 +2439.782176 +2439.795562 +2439.851906 +2439.879045 +2439.882076 +2439.896761 +2439.911213 +2439.925465 +2439.966058 +2439.967190 +2439.979212 +2439.994063 +2440.008682 +2440.029062 +2440.053071 +2440.066857 +2440.082941 +2440.083241 +2440.108349 +2440.140250 +2440.141649 +2440.168023 +2440.171486 +2440.183241 +2440.185439 +2440.213078 +2440.226331 +2440.258066 +2440.270920 +2440.272318 +2440.285505 +2440.287869 +2440.302555 +2440.303787 +2440.315708 +2440.333524 +2440.348375 +2440.376880 +2440.391266 +2440.423167 +2440.447643 +2440.461529 +2440.482408 +2440.483041 +2440.512411 +2440.525698 +2440.542215 +2440.588069 +2440.602488 +2440.618572 +2440.632991 +2440.646644 +2440.691898 +2440.694296 +2440.708981 +2440.739351 +2440.766257 +2440.780343 +2440.814009 +2440.826131 +2440.829227 +2440.831592 +2440.861029 +2440.874083 +2440.907949 +2440.933490 +2440.933956 +2440.950506 +2440.966557 +2440.983973 +2440.984805 +2440.997959 +2441.001189 +2441.014076 +2441.014575 +2441.047542 +2441.062694 +2441.091964 +2441.104419 +2441.180043 +2441.183173 +2441.195161 +2441.221035 +2441.224965 +2441.235321 +2441.241382 +2441.252604 +2441.254801 +2441.269254 +2441.285671 +2441.299457 +2441.313509 +2441.329327 +2441.331092 +2441.363626 +2441.378444 +2441.395228 +2441.396293 +2441.426596 +2441.427961 +2441.441115 +2441.458165 +2441.470319 +2441.487169 +2441.506383 +2441.521035 +2441.522367 +2441.538418 +2441.600955 +2441.601921 +2441.630392 +2441.631757 +2441.649806 +2441.664058 +2441.682407 +2441.694128 +2449.016399 +2451.705340 +2452.705040 +2453.397979 +2453.703141 +2453.704706 +2454.705071 +2456.705102 +2461.708594 +2461.709793 +2461.710259 +2462.606262 +2462.706661 +2464.110556 +2464.306027 +2464.506293 +2465.306293 +2466.106292 +2466.206525 +2466.406558 +2467.530333 +2470.556304 +2470.588705 +2470.599827 +2471.730329 +2471.773419 +2471.802656 +2471.847278 +2471.858734 +2471.891900 +2471.900225 +2471.912347 +2471.923735 +2471.958134 +2472.030195 +2472.051840 +2472.082609 +2472.093598 +2472.105653 +2472.107718 +2472.138986 +2472.165027 +2472.200658 +2472.233392 +2472.234158 +2472.253305 +2472.275416 +2472.286072 +2472.286705 +2472.296995 +2472.298627 +2472.342816 +2472.357434 +2472.357801 +2472.361597 +2472.374717 +2472.386239 +2472.396695 +2472.407051 +2472.419772 +2472.422569 +2472.457101 +2472.492599 +2472.493531 +2472.507484 +2472.540784 +2472.557634 +2472.570554 +2472.582875 +2472.626765 +2472.639452 +2472.663961 +2472.665459 +2472.688237 +2472.690001 +2472.734124 +2472.746845 +2472.771154 +2472.780511 +2472.799792 +2472.835556 +2472.883208 +2472.964493 +2472.979878 +2473.005186 +2473.015509 +2473.016874 +2473.050674 +2473.053338 +2473.105719 +2473.130594 +2473.130794 +2473.156634 +2473.193231 +2473.210247 +2473.293364 +2473.331326 +2473.349142 +2473.371153 +2473.425032 +2473.448043 +2473.463993 +2473.488436 +2473.491233 +2473.513544 +2473.537087 +2473.589767 +2473.600190 +2473.637353 +2473.665958 +2473.667823 +2473.692664 +2473.720204 +2473.731759 +2473.796361 +2473.822301 +2473.846877 +2473.860463 +2473.882608 +2473.934722 +2473.993030 +2474.091099 +2474.104918 +2474.117473 +2474.146410 +2474.157433 +2474.172917 +2474.186404 +2474.201022 +2474.202920 +2474.269987 +2474.286337 +2474.286670 +2474.395228 +2474.411745 +2474.425797 +2474.453170 +2474.467089 +2474.579344 +2474.609680 +2474.623866 +2474.651538 +2474.694961 +2474.721035 +2474.747608 +2474.765158 +2474.793063 +2474.809147 +2474.823033 +2474.839383 +2474.867022 +2474.868021 +2474.879143 +2474.882307 +2474.894861 +2474.912876 +2474.925297 +2474.925963 +2474.953835 +2474.982274 +2474.998657 +2475.029426 +2475.072517 +2475.088967 +2475.089733 +2475.105384 +2475.117771 +2475.119403 +2475.144245 +2475.148108 +2475.161860 +2475.205850 +2475.206449 +2475.208014 +2475.221301 +2475.233023 +2475.250438 +2475.264358 +2475.281274 +2475.282973 +2475.296159 +2475.312809 +2475.314241 +2475.326263 +2475.431091 +2475.460961 +2475.461760 +2475.478910 +2475.491464 +2475.508447 +2475.523798 +2475.537751 +2475.538883 +2475.540348 +2475.567488 +2475.581174 +2475.598290 +2475.599789 +2475.660761 +2475.675180 +2475.690098 +2475.704551 +2475.721300 +2475.734154 +2475.734720 +2475.750838 +2475.778976 +2475.779675 +2475.793695 +2475.808313 +2475.822166 +2475.823165 +2475.833655 +2475.848340 +2475.876811 +2475.891097 +2475.904584 +2475.915206 +2475.918070 +2475.933022 +2475.946309 +2475.949039 +2475.976578 +2475.990697 +2475.992063 +2476.005516 +2476.006881 +2476.020901 +2476.022899 +2476.065955 +2476.097524 +2476.098390 +2476.115306 +2476.147807 +2476.161327 +2476.162858 +2476.173847 +2476.191863 +2476.224164 +2476.236152 +2476.238549 +2476.266355 +2476.281473 +2476.294493 +2476.355066 +2476.395159 +2476.396192 +2476.409312 +2476.425063 +2476.456564 +2476.470118 +2476.486834 +2476.520101 +2476.548339 +2476.551170 +2476.591729 +2476.618303 +2476.676677 +2476.693327 +2481.140576 +2481.149933 +2487.705371 +2489.705136 +2496.705495 +2496.705928 +2496.805695 +2497.506860 +2498.006859 +2498.807758 +2501.707022 +2501.707488 +2506.705752 +2506.842248 +2506.958532 +2506.959065 +2506.991998 +2506.993264 +2507.110114 +2507.150873 +2507.166590 +2507.167656 +2507.187769 +2507.201422 +2507.212345 +2507.244313 +2507.254869 +2507.274349 +2507.274715 +2507.295262 +2507.325398 +2507.335488 +2507.360996 +2507.362528 +2507.363427 +2507.407749 +2507.435821 +2507.480443 +2507.506717 +2507.530060 +2507.531259 +2507.558864 +2507.593263 +2507.606117 +2507.606483 +2507.632091 +2507.633923 +2507.646510 +2507.659797 +2507.696860 +2507.709680 +2507.729394 +2507.731059 +2507.752337 +2507.784838 +2507.808514 +2507.817339 +2507.831025 +2507.857099 +2507.857865 +2507.882474 +2507.906516 +2507.934388 +2507.958464 +2507.973649 +2507.986903 +2508.012410 +2508.039616 +2508.065857 +2508.073449 +2508.086836 +2508.099157 +2508.123199 +2508.138517 +2508.139650 +2508.163526 +2508.175514 +2508.213376 +2508.226929 +2508.238750 +2508.240116 +2508.265257 +2508.277179 +2508.304052 +2508.328394 +2508.365024 +2508.391231 +2508.440848 +2508.441448 +2508.480642 +2508.505583 +2508.530791 +2508.532323 +2508.533489 +2508.560961 +2508.583039 +2508.609846 +2508.625663 +2508.649739 +2508.663792 +2508.674281 +2508.678077 +2508.715973 +2508.729626 +2508.730425 +2508.754501 +2508.754900 +2508.768420 +2508.768553 +2508.792196 +2508.795427 +2508.808647 +2508.819602 +2508.853568 +2508.864691 +2508.878044 +2508.890498 +2508.902719 +2508.904684 +2508.936852 +2508.946142 +2508.958630 +2508.972216 +2508.978110 +2508.980908 +2508.990398 +2509.013342 +2509.027727 +2509.039882 +2509.065756 +2509.067421 +2509.090631 +2509.104417 +2509.117304 +2509.147208 +2509.158630 +2509.159562 +2509.183172 +2509.197391 +2509.224897 +2509.238916 +2509.253035 +2509.290864 +2509.303085 +2509.306182 +2509.329925 +2509.344344 +2509.355233 +2509.366588 +2509.389765 +2509.403551 +2509.416205 +2509.428360 +2509.442212 +2509.455266 +2509.456132 +2509.471516 +2509.496824 +2509.513241 +2509.526595 +2509.541546 +2509.568886 +2509.595626 +2509.635119 +2509.651403 +2509.652169 +2509.665988 +2509.678809 +2509.680507 +2509.693627 +2509.719535 +2509.733354 +2509.734120 +2509.748140 +2509.763224 +2509.789665 +2509.803284 +2509.813008 +2509.843877 +2509.861626 +2509.873647 +2509.885269 +2509.887833 +2509.911409 +2509.937517 +2509.949771 +2510.002585 +2510.029458 +2510.032755 +2510.043511 +2510.044276 +2510.057796 +2510.068885 +2510.084070 +2510.126194 +2510.126960 +2510.141080 +2510.155532 +2510.209311 +2510.238582 +2510.266154 +2510.267786 +2510.292828 +2510.321532 +2510.333021 +2510.344543 +2510.358695 +2510.386367 +2510.399654 +2510.412574 +2510.427892 +2510.429957 +2510.443943 +2510.486201 +2510.489298 +2510.517902 +2510.532921 +2510.561392 +2510.578042 +2510.590130 +2510.602717 +2510.630323 +2510.632987 +2510.642045 +2510.656597 +2510.670050 +2510.681206 +2510.683537 +2510.694892 +2510.708878 +2510.722031 +2510.725095 +2510.737682 +2510.757096 +2510.824529 +2510.852467 +2510.854266 +2510.883869 +2510.947572 +2510.974545 +2511.004482 +2511.005881 +2511.006480 +2511.019334 +2511.034818 +2511.036283 +2511.080173 +2511.093027 +2511.107346 +2511.110209 +2511.122431 +2511.124662 +2511.142810 +2511.153832 +2511.275078 +2511.351335 +2511.362257 +2511.364388 +2511.412007 +2511.495224 +2511.528224 +2511.626659 +2520.069841 +2520.096547 +2520.108769 +2520.120956 +2520.758551 +2520.767809 +2520.783094 +2520.801875 +2520.831279 +2522.706668 +2523.705601 +2523.711096 +2525.712826 +2532.306459 +2532.506725 +2533.006591 +2533.406657 +2533.705525 +2535.706588 +2536.507553 +2536.618842 +2541.716206 +2541.716672 +2541.725297 +2541.729127 +2541.736952 +2541.757631 +2541.765091 +2541.772250 +2541.793828 +2541.807415 +2541.808480 +2541.818637 +2541.840848 +2541.853336 +2541.874914 +2541.884404 +2541.919203 +2541.919769 +2541.929759 +2541.954667 +2541.975014 +2541.986502 +2541.987235 +2542.106083 +2542.119203 +2542.130292 +2542.142246 +2542.142613 +2542.197757 +2542.245310 +2542.256965 +2542.266256 +2542.283771 +2542.308313 +2542.319536 +2542.345976 +2542.380208 +2542.404517 +2542.418104 +2542.418869 +2542.451836 +2542.452269 +2542.492962 +2542.518004 +2542.518736 +2542.520035 +2542.532922 +2542.602552 +2542.624430 +2542.635486 +2542.649139 +2542.688699 +2542.707747 +2542.718370 +2542.743378 +2542.770151 +2542.790930 +2542.804150 +2542.804617 +2542.817071 +2542.829825 +2542.853501 +2542.865955 +2542.886934 +2542.937517 +2542.939415 +2542.962825 +2542.964490 +2542.987600 +2543.000687 +2543.011942 +2543.053234 +2543.089765 +2543.112708 +2543.115505 +2543.153401 +2543.177244 +2543.200720 +2543.202185 +2543.214506 +2543.262925 +2543.263824 +2543.278109 +2543.300554 +2543.354566 +2543.366554 +2543.379808 +2543.392495 +2543.457496 +2543.468252 +2543.482305 +2543.484536 +2543.497523 +2543.523897 +2543.561126 +2543.573380 +2543.585035 +2543.586201 +2543.609178 +2543.621832 +2543.623797 +2543.637849 +2543.649304 +2543.651369 +2543.687599 +2543.715005 +2543.716304 +2543.729791 +2543.794126 +2543.795458 +2543.808545 +2543.831955 +2543.845708 +2543.860893 +2543.861459 +2543.874679 +2543.888065 +2543.888598 +2543.912175 +2543.926194 +2543.951635 +2543.962158 +2543.965688 +2543.990197 +2544.002817 +2544.041179 +2544.054732 +2544.068152 +2544.068884 +2544.082005 +2544.094925 +2544.122997 +2544.132654 +2544.160393 +2544.184702 +2544.187965 +2544.246307 +2544.258461 +2544.272048 +2544.302551 +2544.328125 +2544.387199 +2544.425727 +2544.448638 +2544.486466 +2544.511708 +2544.524428 +2544.536583 +2544.546906 +2544.548671 +2544.590795 +2544.604149 +2544.629856 +2544.643243 +2544.655264 +2544.668451 +2544.680672 +2544.694292 +2544.707345 +2544.722097 +2544.735584 +2544.736383 +2544.801784 +2544.805114 +2544.814838 +2544.817602 +2544.828124 +2544.840246 +2544.854731 +2544.868917 +2544.870582 +2544.883436 +2544.895890 +2544.932853 +2544.945007 +2544.958561 +2544.985833 +2544.998554 +2545.011341 +2545.024528 +2545.038414 +2545.039280 +2545.066486 +2545.080672 +2545.103549 +2545.114171 +2545.127991 +2545.158061 +2545.171481 +2545.200485 +2545.215437 +2545.226559 +2545.268883 +2545.276742 +2545.280405 +2545.294857 +2545.318633 +2545.328923 +2545.339812 +2545.355397 +2545.365187 +2545.392926 +2545.405680 +2545.420498 +2545.443142 +2545.443542 +2545.453931 +2545.481737 +2545.499020 +2545.509609 +2545.551600 +2545.563755 +2545.595923 +2545.606512 +2545.705180 +2545.738347 +2545.750235 +2545.753864 +2545.767584 +2545.778373 +2545.794624 +2545.819432 +2545.848237 +2545.862123 +2545.863854 +2545.877574 +2545.894091 +2545.907611 +2545.923928 +2545.953065 +2545.979705 +2546.007844 +2546.021996 +2546.037481 +2546.078073 +2546.080271 +2546.108576 +2546.110807 +2546.120531 +2546.209442 +2546.263588 +2546.321463 +2546.334283 +2546.349968 +2546.428123 +2546.456161 +2546.481769 +2546.507443 +2546.522562 +2546.580337 +2546.652332 +2546.697753 +2556.711396 +2558.705333 +2560.704532 +2560.706264 +2565.097901 +2565.103595 +2566.705592 +2567.006024 +2567.106191 +2567.306424 +2567.406657 +2567.506523 +2568.106723 +2568.707355 +2569.406788 +2570.206454 +2570.606487 +2573.972218 +2575.341181 +2576.004717 +2576.705415 +2576.705782 +2576.715305 +2576.728359 +2576.756464 +2576.798455 +2576.832155 +2576.924130 +2576.941745 +2576.942678 +2576.965455 +2576.987466 +2576.999321 +2576.999721 +2577.010643 +2577.059461 +2577.082937 +2577.100653 +2577.101485 +2577.124263 +2577.124962 +2577.162158 +2577.187266 +2577.207180 +2577.230756 +2577.231422 +2577.232255 +2577.253567 +2577.255265 +2577.277942 +2577.301985 +2577.316004 +2577.326926 +2577.388698 +2577.398055 +2577.426493 +2577.449171 +2577.471682 +2577.495791 +2577.520166 +2577.521632 +2577.534352 +2577.543876 +2577.558861 +2577.654565 +2577.690995 +2577.736816 +2577.755997 +2577.797855 +2577.821365 +2577.844608 +2577.845574 +2577.890496 +2577.891561 +2577.926926 +2577.941178 +2577.977908 +2577.989630 +2578.000918 +2578.010109 +2578.023929 +2578.033652 +2578.121864 +2578.212140 +2578.235850 +2578.251334 +2578.262623 +2578.298554 +2578.298953 +2578.338913 +2578.351900 +2578.399486 +2578.514571 +2578.547538 +2578.547938 +2578.627258 +2578.677208 +2578.718567 +2578.798187 +2578.798820 +2578.825426 +2578.843508 +2578.855863 +2578.919799 +2578.933318 +2578.971014 +2578.996189 +2579.035716 +2579.069682 +2579.070215 +2579.082569 +2579.109309 +2579.147537 +2579.163788 +2579.202249 +2579.204747 +2579.272945 +2579.286465 +2579.381770 +2579.394856 +2579.422063 +2579.449435 +2579.470681 +2579.472712 +2579.484034 +2579.505246 +2579.519432 +2579.573178 +2579.588662 +2579.628090 +2579.644606 +2579.658892 +2579.693557 +2579.707310 +2579.727024 +2579.752765 +2579.766185 +2579.791493 +2579.792325 +2579.816335 +2579.821230 +2579.847537 +2579.869315 +2579.913004 +2579.923860 +2579.925459 +2580.037713 +2580.108575 +2580.151133 +2580.179171 +2580.193390 +2580.262721 +2580.278139 +2580.321129 +2580.348269 +2580.362721 +2580.378305 +2580.392358 +2580.406843 +2580.420696 +2580.438012 +2580.494023 +2580.494855 +2580.496154 +2580.610606 +2580.624459 +2580.655128 +2580.668681 +2580.682534 +2580.697419 +2580.726790 +2580.740410 +2580.755062 +2580.811472 +2580.841675 +2580.871512 +2580.888628 +2580.945105 +2580.977039 +2580.991791 +2581.020363 +2581.080702 +2581.123726 +2581.156660 +2581.201681 +2581.215967 +2581.229520 +2581.277605 +2581.291225 +2581.350932 +2581.353762 +2581.363519 +2581.433549 +2581.446003 +2581.505277 +2581.565917 +2581.582900 +2581.637845 +2583.439275 +2583.479035 +2584.105408 +2593.712491 +2596.448053 +2596.506694 +2602.204790 +2603.506887 +2605.306752 +2605.607218 +2606.209015 +2606.506951 +2606.507184 +2611.705980 +2611.722630 +2611.730888 +2611.738880 +2611.777441 +2611.800452 +2611.848104 +2611.868750 +2611.870249 +2611.871148 +2611.937515 +2611.983835 +2612.006812 +2612.017168 +2612.037181 +2612.048204 +2612.062489 +2612.107678 +2612.134218 +2612.168117 +2612.268850 +2612.280471 +2612.318899 +2612.319199 +2612.331687 +2612.344640 +2612.380638 +2612.425293 +2612.463322 +2612.520997 +2612.522596 +2612.535083 +2612.546505 +2612.560324 +2612.612239 +2612.636848 +2612.651933 +2612.663588 +2612.679205 +2612.691493 +2612.691893 +2612.710907 +2612.712272 +2612.734683 +2612.745739 +2612.764487 +2612.788629 +2612.810641 +2612.821496 +2612.875143 +2612.913737 +2612.938479 +2612.995356 +2612.996654 +2613.023394 +2613.075575 +2613.110074 +2613.143740 +2613.158925 +2613.169781 +2613.203780 +2613.287130 +2613.299485 +2613.311706 +2613.363321 +2613.363687 +2613.365452 +2613.388729 +2613.389761 +2613.415335 +2613.491526 +2613.511206 +2613.531352 +2613.576707 +2613.579338 +2613.593990 +2613.630120 +2613.775342 +2613.790526 +2613.804246 +2613.815002 +2613.816500 +2613.906444 +2613.948135 +2613.948668 +2613.998285 +2614.026290 +2614.051665 +2614.064852 +2614.065185 +2614.078405 +2614.119430 +2614.159890 +2614.185631 +2614.295987 +2614.334082 +2614.344638 +2614.357192 +2614.374342 +2614.386397 +2614.423160 +2614.460089 +2614.486729 +2614.501215 +2614.514668 +2614.526656 +2614.537712 +2614.549999 +2614.551465 +2614.589959 +2614.616999 +2614.617532 +2614.645537 +2614.670512 +2614.685231 +2614.714501 +2614.727821 +2614.743139 +2614.744605 +2614.755194 +2614.758391 +2614.770579 +2614.785664 +2614.801681 +2614.813303 +2614.838411 +2614.839909 +2614.854794 +2614.867249 +2614.868114 +2614.884664 +2614.885064 +2614.908674 +2614.924924 +2614.938377 +2614.952030 +2614.966150 +2614.978637 +2615.007775 +2615.023892 +2615.038078 +2615.038510 +2615.065017 +2615.075507 +2615.092656 +2615.106576 +2615.119862 +2615.134481 +2615.144937 +2615.171311 +2615.207175 +2615.221927 +2615.236446 +2615.238544 +2615.252430 +2615.261188 +2615.266183 +2615.289259 +2615.304078 +2615.333482 +2615.335347 +2615.363152 +2615.385963 +2615.402679 +2615.416499 +2615.431184 +2615.459323 +2615.487727 +2615.499216 +2615.502080 +2615.513768 +2615.517398 +2615.543738 +2615.567581 +2615.571044 +2615.583998 +2615.596019 +2615.609239 +2615.651297 +2615.653462 +2615.664018 +2615.695719 +2615.708939 +2615.709672 +2615.725723 +2615.764384 +2615.765416 +2615.779169 +2615.817897 +2615.828220 +2615.832715 +2615.846535 +2615.859988 +2615.877238 +2615.904344 +2615.906741 +2615.918962 +2615.930751 +2615.961353 +2615.985096 +2615.986561 +2615.988293 +2616.002079 +2616.003611 +2616.029285 +2616.042139 +2616.043937 +2616.055925 +2616.057024 +2616.072975 +2616.102512 +2616.119628 +2616.127321 +2616.133481 +2616.159055 +2616.173075 +2616.190491 +2616.201613 +2616.219129 +2616.246401 +2616.293221 +2616.321360 +2616.350064 +2616.367047 +2616.396618 +2616.410970 +2616.413767 +2616.485762 +2616.529684 +2616.558522 +2616.562452 +2616.607806 +2616.620860 +2616.696218 +2617.290223 +2626.469801 +2626.706031 +2627.706263 +2627.712657 +2628.706329 +2628.712822 +2629.706361 +2630.712421 +2631.712586 +2636.705522 +2638.205953 +2638.407451 +2638.607351 +2638.805586 +2638.807151 +2638.807418 +2638.906152 +2639.006985 +2639.607484 +2639.707384 +2640.007250 +2640.207250 +2640.306850 +2640.407116 +2640.907915 +2641.107882 +2641.407915 +2646.710540 +2646.764519 +2646.901982 +2646.935781 +2646.955795 +2647.027656 +2647.078438 +2647.134283 +2647.142674 +2647.154462 +2647.199884 +2647.234615 +2647.255761 +2647.292890 +2647.341941 +2647.402481 +2647.405145 +2647.459224 +2647.503213 +2647.515767 +2647.542574 +2647.554495 +2647.613203 +2647.689227 +2647.701348 +2647.728255 +2647.753762 +2647.770379 +2647.781335 +2647.812870 +2647.814835 +2647.845770 +2647.893689 +2647.935314 +2647.964252 +2647.973776 +2648.010838 +2648.038011 +2648.058291 +2648.075940 +2648.089426 +2648.150465 +2648.151764 +2648.178071 +2648.215434 +2648.254028 +2648.255693 +2648.381134 +2648.405244 +2648.407108 +2648.418397 +2648.462886 +2648.490425 +2648.503112 +2648.529053 +2648.530951 +2648.558923 +2648.582799 +2648.584564 +2648.649899 +2648.690625 +2648.712703 +2648.817664 +2648.830551 +2648.909905 +2648.948933 +2648.961986 +2649.031583 +2649.083065 +2649.096818 +2649.121726 +2649.135546 +2649.136978 +2649.147101 +2649.149965 +2649.192922 +2649.261387 +2649.290125 +2649.343538 +2649.384497 +2649.385263 +2649.404976 +2649.418996 +2649.440541 +2649.442339 +2649.454993 +2649.455859 +2649.479235 +2649.526954 +2649.547134 +2649.572975 +2649.620261 +2649.639109 +2649.664783 +2649.704443 +2649.733148 +2649.761553 +2649.776238 +2649.823224 +2649.824157 +2649.850763 +2649.877703 +2649.904576 +2649.962951 +2650.003111 +2650.047067 +2650.112235 +2650.113634 +2650.132515 +2650.133780 +2650.160387 +2650.164016 +2650.193853 +2650.207839 +2650.222891 +2650.247433 +2650.279701 +2650.309171 +2650.322491 +2650.337909 +2650.391655 +2650.449597 +2650.464449 +2650.465248 +2650.490556 +2650.509371 +2650.523157 +2650.538608 +2650.551529 +2650.562218 +2650.579434 +2650.593586 +2650.615664 +2650.628085 +2650.660353 +2650.722224 +2650.734279 +2650.766347 +2650.794752 +2650.797416 +2650.855225 +2650.870543 +2650.871741 +2650.872507 +2650.884728 +2650.932148 +2650.963516 +2650.975438 +2651.017895 +2651.062717 +2651.110402 +2651.110869 +2651.124488 +2651.154259 +2651.181132 +2651.207372 +2651.246300 +2651.248231 +2651.276103 +2651.345867 +2651.360386 +2651.407205 +2651.416896 +2651.435610 +2651.463083 +2651.478800 +2651.505307 +2651.521258 +2651.586692 +2651.641304 +2651.672240 +2661.706296 +2662.706328 +2662.706528 +2663.706327 +2663.706494 +2664.707059 +2665.705926 +2666.712718 +2668.774354 +2671.806119 +2671.906452 +2672.006752 +2672.107751 +2672.207051 +2672.507018 +2672.816608 +2674.607249 +2675.006815 +2675.206815 +2675.208613 +2675.406682 +2675.508447 +2675.707414 +2675.807514 +2676.206914 +2676.207547 +2676.407214 +2677.158595 +2681.721927 +2681.738177 +2681.738410 +2681.744771 +2681.801581 +2681.825890 +2681.836679 +2681.883166 +2681.906209 +2681.917331 +2681.918730 +2681.928220 +2681.977804 +2681.979869 +2681.990625 +2682.007674 +2682.008873 +2682.052196 +2682.065317 +2682.088993 +2682.120062 +2682.187894 +2682.212269 +2682.254061 +2682.280934 +2682.282766 +2682.294454 +2682.330351 +2682.362719 +2682.376638 +2682.411470 +2682.453028 +2682.497384 +2682.522725 +2682.561553 +2682.586029 +2682.654727 +2682.670577 +2682.724190 +2682.748499 +2682.756724 +2682.775073 +2682.775705 +2682.812469 +2682.826688 +2682.916231 +2682.957657 +2683.008206 +2683.073008 +2683.084996 +2683.133248 +2683.150597 +2683.162818 +2683.200913 +2683.213367 +2683.238642 +2683.250663 +2683.253560 +2683.304942 +2683.318162 +2683.340940 +2683.366547 +2683.379201 +2683.403377 +2683.420826 +2683.449364 +2683.460387 +2683.484429 +2683.511769 +2683.538375 +2683.564682 +2683.614699 +2683.652028 +2683.676970 +2683.728618 +2683.776271 +2683.857689 +2683.872974 +2683.882264 +2683.897249 +2683.898748 +2683.925721 +2683.950163 +2684.037509 +2684.039107 +2684.063117 +2684.079167 +2684.129917 +2684.145235 +2684.155624 +2684.220060 +2684.232048 +2684.251495 +2684.275737 +2684.292421 +2684.303643 +2684.331781 +2684.346999 +2684.375171 +2684.391222 +2684.419693 +2684.434079 +2684.474638 +2684.477435 +2684.488025 +2684.503443 +2684.516130 +2684.520759 +2684.533679 +2684.543602 +2684.574105 +2684.585827 +2684.612966 +2684.628884 +2684.667445 +2684.668211 +2684.708171 +2684.723922 +2684.734978 +2684.770475 +2684.785360 +2684.806939 +2684.829050 +2684.855390 +2684.871841 +2684.885061 +2684.898014 +2684.898814 +2684.899713 +2684.923589 +2684.939340 +2684.939872 +2684.983895 +2685.022789 +2685.041471 +2685.081764 +2685.084095 +2685.113599 +2685.128184 +2685.141704 +2685.172306 +2685.185527 +2685.187125 +2685.199612 +2685.237741 +2685.293019 +2685.307804 +2685.365546 +2685.409935 +2685.423089 +2685.437674 +2685.439372 +2685.537974 +2685.567777 +2685.582529 +2685.608503 +2685.625986 +2685.643735 +2685.666778 +2685.681364 +2685.711733 +2685.729515 +2685.741670 +2685.742636 +2685.753525 +2685.755789 +2685.770707 +2685.785093 +2685.830248 +2685.847497 +2685.906705 +2685.936575 +2685.947963 +2685.949429 +2685.966645 +2685.975969 +2685.991287 +2685.991819 +2685.993851 +2686.037074 +2686.053824 +2686.080064 +2686.096082 +2686.129149 +2686.142868 +2686.157187 +2686.172672 +2686.201843 +2686.233178 +2686.309934 +2686.310767 +2686.342702 +2686.357187 +2686.372771 +2686.429448 +2686.445199 +2686.459218 +2686.564246 +2686.609634 +2686.689654 +2696.706994 +2697.712221 +2699.706524 +2701.222041 +2701.712716 +2706.706151 +2707.206883 +2707.207749 +2707.220470 +2707.507715 +2707.907915 +2708.107681 +2708.307648 +2708.407981 +2708.508081 +2708.708080 +2709.107747 +2711.307811 +2712.288863 +2712.313405 +2713.729687 +2716.723057 +2716.737976 +2716.758422 +2716.808805 +2716.885395 +2716.945635 +2716.970643 +2717.009604 +2717.058055 +2717.079501 +2717.091755 +2717.103510 +2717.104309 +2717.117529 +2717.153160 +2717.165515 +2717.214632 +2717.322091 +2717.346500 +2717.359087 +2717.360453 +2717.392920 +2717.486493 +2717.559420 +2717.583829 +2717.620060 +2717.622957 +2717.656190 +2717.668478 +2717.708671 +2717.756123 +2717.821225 +2717.830915 +2717.855890 +2717.870509 +2717.890456 +2717.901178 +2717.964781 +2718.003276 +2718.015564 +2718.016729 +2718.164415 +2718.174571 +2718.225387 +2718.257355 +2718.269110 +2718.278667 +2718.291221 +2718.344834 +2718.430648 +2718.499945 +2718.542569 +2718.566612 +2718.715563 +2718.727285 +2718.753259 +2718.782696 +2718.896116 +2718.925353 +2718.939772 +2719.018360 +2719.083595 +2719.127750 +2719.152093 +2719.179066 +2719.179632 +2719.192619 +2719.193884 +2719.234610 +2719.247197 +2719.249395 +2719.311566 +2719.339472 +2719.366112 +2719.406505 +2719.410234 +2719.423787 +2719.436208 +2719.450894 +2719.464447 +2719.523055 +2719.539671 +2719.562282 +2719.656921 +2719.657553 +2719.710234 +2719.723654 +2719.751692 +2719.808302 +2719.917993 +2719.968842 +2719.989255 +2720.003873 +2720.014896 +2720.017660 +2720.030314 +2720.044433 +2720.060017 +2720.134143 +2720.158585 +2720.173437 +2720.199944 +2720.213963 +2720.226451 +2720.240703 +2720.240936 +2720.299577 +2720.354989 +2720.356587 +2720.367543 +2720.371738 +2720.384026 +2720.414329 +2720.485325 +2720.487123 +2720.500310 +2720.531645 +2720.561016 +2720.619823 +2720.636806 +2720.638405 +2720.667742 +2720.681095 +2720.697346 +2720.709234 +2720.712364 +2720.729347 +2720.759350 +2720.773003 +2720.785791 +2720.800276 +2720.881894 +2720.882660 +2720.908967 +2720.910266 +2720.926916 +2720.982727 +2721.023020 +2721.023286 +2721.036440 +2721.048994 +2721.075168 +2721.089054 +2721.130013 +2721.159317 +2721.191917 +2721.204238 +2721.223186 +2721.233975 +2721.248494 +2721.263080 +2721.274168 +2721.290585 +2721.291551 +2721.305637 +2721.328015 +2721.337638 +2721.361248 +2721.387388 +2721.399177 +2721.447961 +2721.459316 +2721.471538 +2721.472537 +2721.485490 +2721.497079 +2721.518690 +2721.521821 +2721.535407 +2721.586556 +2721.643266 +2721.655387 +2721.665910 +2721.682327 +2722.045530 +2722.552156 +2722.977930 +2723.003804 +2731.706359 +2734.706489 +2735.706522 +2737.333759 +2738.310082 +2738.491101 +2738.796529 +2739.116808 +2739.169955 +2741.209580 +2741.706582 +2741.711078 +2742.107248 +2742.307314 +2742.607447 +2743.008079 +2743.408012 +2743.807413 +2744.307412 +2744.407479 +2745.408010 +2751.705706 +2751.710402 +2751.717095 +2751.723122 +2751.731248 +2751.749563 +2751.759419 +2751.814398 +2751.826219 +2751.848497 +2751.880465 +2751.881264 +2751.911967 +2751.993985 +2752.040638 +2752.066046 +2752.114164 +2752.138606 +2752.174504 +2752.187624 +2752.226285 +2752.239472 +2752.322855 +2752.383661 +2752.486292 +2752.498946 +2752.499878 +2752.500244 +2752.524454 +2752.557287 +2752.582495 +2752.606871 +2752.626518 +2752.670740 +2752.672572 +2752.673404 +2752.745432 +2752.747564 +2752.793851 +2752.831513 +2752.908236 +2752.980064 +2752.980464 +2752.993784 +2753.006105 +2753.070707 +2753.085359 +2753.217193 +2753.244633 +2753.268509 +2753.291652 +2753.293550 +2753.332711 +2753.371539 +2753.385725 +2753.445465 +2753.458485 +2753.505771 +2753.518359 +2753.539537 +2753.547063 +2753.599611 +2753.610466 +2753.654356 +2753.677799 +2753.719724 +2753.732544 +2753.761415 +2753.789154 +2753.813030 +2753.828382 +2753.842567 +2753.855122 +2753.883094 +2753.897080 +2753.897979 +2753.980096 +2754.000509 +2754.017093 +2754.042201 +2754.077133 +2754.077532 +2754.092884 +2754.118491 +2754.156586 +2754.170306 +2754.197212 +2754.222587 +2754.251358 +2754.307302 +2754.347529 +2754.375467 +2754.376167 +2754.404838 +2754.432710 +2754.444831 +2754.458684 +2754.474335 +2754.501741 +2754.543699 +2754.559516 +2754.559949 +2754.571704 +2754.601075 +2754.613696 +2754.629280 +2754.699343 +2754.701841 +2754.741701 +2754.767708 +2754.780828 +2754.839370 +2754.855687 +2754.884425 +2754.926383 +2754.943166 +2754.999543 +2755.014128 +2755.030412 +2755.058350 +2755.071604 +2755.072570 +2755.102806 +2755.118224 +2755.149093 +2755.179396 +2755.206369 +2755.235407 +2755.249060 +2755.264844 +2755.296778 +2755.377764 +2755.393681 +2755.484391 +2755.517757 +2755.607800 +2755.638969 +2755.665376 +2755.682026 +2755.803172 +2755.836538 +2755.837371 +2755.851723 +2755.852855 +2755.866741 +2755.881160 +2755.897311 +2755.911430 +2755.941167 +2755.971503 +2755.975299 +2756.048393 +2756.064010 +2756.080760 +2756.092682 +2756.124750 +2756.137936 +2756.140068 +2756.196611 +2756.209598 +2756.224250 +2756.241400 +2756.256884 +2756.358549 +2756.374333 +2756.414759 +2756.428079 +2756.430144 +2756.448492 +2756.481293 +2756.494380 +2756.537437 +2756.540101 +2756.550990 +2756.562844 +2756.563810 +2756.578495 +2756.580061 +2756.632508 +2756.660480 +2756.685821 +2756.700040 +2766.705092 +2771.705287 +2771.705653 +2771.711980 +2776.907246 +2777.306347 +2777.810342 +2778.906245 +2779.207544 +2780.006178 +2781.610505 +2786.704672 +2786.714896 +2786.715861 +2786.722255 +2786.736574 +2786.758652 +2786.809601 +2786.840836 +2786.855688 +2786.914329 +2786.914529 +2786.950726 +2786.988355 +2787.036274 +2787.061349 +2787.131112 +2787.131445 +2787.203573 +2787.243866 +2787.334176 +2787.349061 +2787.370806 +2787.403606 +2787.439504 +2787.521122 +2787.543666 +2787.573003 +2787.574568 +2787.587422 +2787.624918 +2787.666543 +2787.692251 +2787.715794 +2787.728747 +2787.738771 +2787.740735 +2787.766543 +2787.777432 +2787.789387 +2787.801907 +2787.826616 +2787.852290 +2787.865677 +2787.890219 +2787.904771 +2787.907202 +2787.919456 +2787.942267 +2787.954455 +2788.086589 +2788.087422 +2788.108334 +2788.130878 +2788.152590 +2788.175467 +2788.194548 +2788.196179 +2788.305137 +2788.316526 +2788.354721 +2788.380229 +2788.418524 +2788.456119 +2788.456785 +2788.470505 +2788.512763 +2788.525616 +2788.536672 +2788.552256 +2788.587987 +2788.666575 +2788.667941 +2788.668740 +2788.693915 +2788.717957 +2788.731244 +2788.796179 +2788.808467 +2788.834707 +2788.846562 +2788.849825 +2788.862279 +2788.886022 +2788.888353 +2788.913262 +2788.943398 +2788.981793 +2789.008433 +2789.020388 +2789.021620 +2789.034973 +2789.047261 +2789.062679 +2789.074067 +2789.086522 +2789.127747 +2789.138370 +2789.150990 +2789.165942 +2789.210031 +2789.222152 +2789.235173 +2789.255852 +2789.258516 +2789.269572 +2789.271670 +2789.283424 +2789.285955 +2789.297943 +2789.326248 +2789.340401 +2789.376664 +2789.433374 +2789.433874 +2789.435372 +2789.472702 +2789.489585 +2789.529645 +2789.543497 +2789.557683 +2789.570870 +2789.613594 +2789.637903 +2789.640900 +2789.682192 +2789.724416 +2789.736871 +2789.780560 +2789.795445 +2789.808965 +2789.836105 +2789.837403 +2789.849991 +2789.850324 +2789.877130 +2789.880627 +2789.906134 +2789.933074 +2789.962112 +2789.974200 +2790.003404 +2790.016457 +2790.031276 +2790.046061 +2790.074666 +2790.146660 +2790.148059 +2790.160047 +2790.202171 +2790.216324 +2790.247193 +2790.248825 +2790.261379 +2790.263543 +2790.292414 +2790.305102 +2790.307200 +2790.323816 +2790.351522 +2790.394013 +2790.438668 +2790.454252 +2790.568938 +2790.570469 +2790.585088 +2790.612361 +2790.628511 +2790.641665 +2790.646593 +2790.698175 +2790.713393 +2790.743563 +2790.746660 +2790.775664 +2790.816623 +2790.869270 +2790.879627 +2790.894512 +2790.923017 +2790.938701 +2790.939633 +2790.993646 +2791.079127 +2791.092247 +2791.120452 +2791.136803 +2791.152154 +2791.197342 +2791.213692 +2791.228144 +2791.243729 +2791.259313 +2791.273399 +2791.339600 +2791.352920 +2791.364475 +2791.377761 +2791.379426 +2791.404801 +2791.467472 +2791.490948 +2791.521717 +2791.530742 +2791.548690 +2791.623748 +2791.647325 +2791.650788 +2791.662110 +2791.674631 +2791.703902 +2803.710616 +2811.706013 +2812.206945 +2813.317366 +2813.406877 +2813.706910 +2814.406443 +2814.806709 +2815.007208 +2816.006575 +2821.710631 +2821.715693 +2821.736073 +2821.737671 +2821.758284 +2821.808001 +2821.857718 +2821.924817 +2821.956019 +2821.977697 +2822.063745 +2822.083325 +2822.102173 +2822.102806 +2822.151024 +2822.153089 +2822.165609 +2822.189152 +2822.200108 +2822.223152 +2822.272935 +2822.448426 +2822.458916 +2822.477064 +2822.514660 +2822.527614 +2822.546128 +2822.564610 +2822.565176 +2822.597644 +2822.634973 +2822.662312 +2822.717623 +2822.730511 +2822.760747 +2822.799342 +2822.808133 +2822.821053 +2822.831010 +2822.856018 +2822.890850 +2822.904370 +2822.904603 +2822.905435 +2822.951722 +2822.991716 +2823.065575 +2823.067440 +2823.096644 +2823.097543 +2823.115459 +2823.157716 +2823.179994 +2823.219454 +2823.258016 +2823.302671 +2823.342531 +2823.356084 +2823.382858 +2823.409531 +2823.445928 +2823.472002 +2823.472734 +2823.484156 +2823.523683 +2823.535838 +2823.560580 +2823.593547 +2823.614392 +2823.641632 +2823.653453 +2823.679161 +2823.768671 +2823.791482 +2823.826880 +2823.866440 +2823.891016 +2823.918388 +2823.970136 +2823.982291 +2824.006234 +2824.007066 +2824.043629 +2824.087685 +2824.101305 +2824.117555 +2824.129244 +2824.142764 +2824.152520 +2824.205068 +2824.218288 +2824.231108 +2824.242763 +2824.272867 +2824.297575 +2824.306733 +2824.308931 +2824.320952 +2824.322783 +2824.333806 +2824.345660 +2824.367772 +2824.506499 +2824.560246 +2824.572600 +2824.612693 +2824.775364 +2824.801537 +2824.842397 +2824.859846 +2824.886086 +2824.901437 +2824.915390 +2824.939899 +2824.953985 +2824.971201 +2824.986586 +2824.997908 +2825.025247 +2825.053985 +2825.058647 +2825.083489 +2825.085720 +2825.101604 +2825.114391 +2825.156749 +2825.210128 +2825.224880 +2825.239566 +2825.253685 +2825.268503 +2825.322283 +2825.322516 +2825.351787 +2825.395476 +2825.423315 +2825.436568 +2825.450621 +2825.479426 +2825.509196 +2825.522083 +2825.533072 +2825.545593 +2825.558846 +2825.571234 +2825.587151 +2825.641264 +2825.654517 +2825.655949 +2825.698540 +2825.716555 +2825.802402 +2825.817487 +2825.846958 +2825.875762 +2825.891247 +2825.895676 +2825.905000 +2825.920417 +2825.949555 +2825.990880 +2826.032805 +2826.060977 +2826.134836 +2826.178259 +2826.206198 +2826.210294 +2826.236101 +2826.265306 +2826.293111 +2826.310261 +2826.310660 +2826.320983 +2826.344626 +2826.399538 +2826.411359 +2826.453817 +2826.455116 +2826.483987 +2826.527310 +2826.540230 +2826.564772 +2826.581323 +2826.592445 +2826.623747 +2826.639165 +2826.658945 +2826.670533 +2829.540827 +2829.552781 +2831.335763 +2831.941890 +2834.083846 +2834.105924 +2834.879816 +2834.883812 +2834.884578 +2835.157471 +2835.880381 +2836.064363 +2836.162831 +2836.191836 +2836.201593 +2836.240753 +2836.290370 +2836.880546 +2836.885974 +2837.264962 +2837.880579 +2837.880812 +2838.880511 +2838.880777 +2839.880543 +2839.885638 +2839.886104 +2843.950702 +2844.867951 +2846.181836 +2846.481636 +2846.882035 +2846.886997 +2846.982135 +2847.081602 +2847.882100 +2847.981867 +2848.181701 +2848.282067 +2848.381967 +2848.582066 +2848.681833 +2854.536106 +2854.891151 +2854.940435 +2854.967608 +2854.979862 +2855.019123 +2855.063545 +2855.084857 +2855.128081 +2855.163145 +2855.174467 +2855.186855 +2855.256086 +2855.256918 +2855.359815 +2855.383958 +2855.384724 +2855.430012 +2855.497178 +2855.499775 +2855.543431 +2855.557417 +2855.601640 +2855.632243 +2855.652189 +2855.662412 +2855.726448 +2855.737371 +2855.747694 +2855.748326 +2855.770105 +2855.793415 +2855.816258 +2855.900574 +2855.990717 +2856.038536 +2856.063611 +2856.089019 +2856.099775 +2856.112295 +2856.138369 +2856.164277 +2856.188053 +2856.202672 +2856.203571 +2856.242099 +2856.253787 +2856.302971 +2856.355552 +2856.356051 +2856.370637 +2856.371369 +2856.395978 +2856.432675 +2856.453853 +2856.495046 +2856.555818 +2856.567540 +2856.580660 +2856.595845 +2856.620120 +2856.686454 +2856.698242 +2856.700473 +2856.711329 +2856.740267 +2856.752588 +2856.765841 +2856.792415 +2856.805202 +2856.819587 +2856.831675 +2856.842897 +2856.877396 +2856.889351 +2856.924249 +2856.942631 +2856.999307 +2857.010097 +2857.042930 +2857.056517 +2857.070403 +2857.121652 +2857.124848 +2857.140599 +2857.177363 +2857.177995 +2857.216590 +2857.347992 +2857.379926 +2857.397242 +2857.421218 +2857.437835 +2857.463509 +2857.517922 +2857.520253 +2857.532074 +2857.544428 +2857.561212 +2857.574865 +2857.603003 +2857.645394 +2857.674065 +2857.729510 +2857.744328 +2857.768671 +2857.794878 +2857.821285 +2857.848224 +2857.890049 +2857.901871 +2857.915057 +2857.928544 +2857.954185 +2857.969037 +2857.981225 +2857.984788 +2858.012127 +2858.024448 +2858.026279 +2858.049057 +2858.062377 +2858.072899 +2858.128244 +2858.178460 +2858.227944 +2858.287918 +2858.342896 +2858.488550 +2858.544161 +2858.560045 +2858.574764 +2858.707964 +2858.709529 +2858.754317 +2858.779426 +2858.795443 +2858.808163 +2858.835736 +2858.859878 +2858.924314 +2859.173797 +2859.305133 +2859.468403 +2859.792178 +2859.838399 +2869.881579 +2869.886541 +2872.886937 +2874.882273 +2874.887635 +2875.208280 +2878.472912 +2878.582936 +2878.600618 +2879.883167 +2879.983201 +2880.083700 +2880.483766 +2880.584266 +2880.584932 +2881.488094 +2881.884131 +2881.884497 +2882.584597 +2883.384962 +2889.884789 +2889.895412 +2889.902671 +2889.909997 +2889.916258 +2889.978062 +2890.014892 +2890.017090 +2890.028012 +2890.062311 +2890.114426 +2890.123017 +2890.172235 +2890.183257 +2890.242831 +2890.243230 +2890.273100 +2890.312128 +2890.324482 +2890.357349 +2890.374532 +2890.397609 +2890.442697 +2890.542497 +2890.544162 +2890.556317 +2890.582757 +2890.678828 +2890.701305 +2890.737402 +2890.760446 +2890.834372 +2890.865907 +2890.890183 +2890.942364 +2890.960546 +2890.961311 +2891.006333 +2891.032074 +2891.082590 +2891.148591 +2891.175530 +2891.193546 +2891.234371 +2891.247725 +2891.300239 +2891.345094 +2891.346359 +2891.406333 +2891.432773 +2891.458714 +2891.484688 +2891.508564 +2891.529376 +2891.541497 +2891.567505 +2891.619719 +2891.627844 +2891.640831 +2891.643062 +2891.655850 +2891.656782 +2891.682656 +2891.693578 +2891.708131 +2891.720551 +2891.745127 +2891.756049 +2891.757148 +2891.769802 +2891.784288 +2891.795610 +2891.821684 +2891.824980 +2891.890948 +2891.891614 +2891.904101 +2891.904334 +2891.918220 +2891.929043 +2891.943129 +2891.946192 +2891.965573 +2891.987118 +2891.988350 +2892.000371 +2892.013258 +2892.053052 +2892.054351 +2892.067371 +2892.080291 +2892.106332 +2892.108630 +2892.136169 +2892.149089 +2892.159545 +2892.188217 +2892.200305 +2892.212692 +2892.224347 +2892.238799 +2892.249222 +2892.277028 +2892.278093 +2892.303068 +2892.303801 +2892.318586 +2892.320717 +2892.331407 +2892.355116 +2892.365905 +2892.378693 +2892.387917 +2892.401903 +2892.413558 +2892.425879 +2892.427477 +2892.439998 +2892.449355 +2892.467337 +2892.479325 +2892.490714 +2892.518986 +2892.531739 +2892.543428 +2892.545725 +2892.607430 +2892.620884 +2892.645292 +2892.655582 +2892.666571 +2892.669002 +2892.680857 +2892.691646 +2892.704600 +2892.717387 +2892.742562 +2892.768835 +2892.797274 +2892.826444 +2892.838799 +2892.839731 +2892.850620 +2892.856181 +2892.869968 +2892.881290 +2892.895542 +2892.951952 +2892.952352 +2892.979058 +2892.980823 +2892.993477 +2893.049321 +2893.059445 +2893.101602 +2893.144393 +2893.157846 +2893.159744 +2893.172831 +2893.224979 +2893.249687 +2893.286351 +2893.287416 +2893.314523 +2893.330340 +2893.332038 +2893.384719 +2893.410593 +2893.411659 +2893.426377 +2893.451719 +2893.464173 +2893.478658 +2893.491346 +2893.533004 +2893.536067 +2893.546624 +2893.576793 +2893.577826 +2893.591312 +2893.606064 +2893.616254 +2893.632737 +2893.673297 +2893.690746 +2893.712025 +2893.728641 +2893.731672 +2893.789580 +2893.800170 +2893.932571 +2894.046956 +2894.524178 +2894.799469 +2898.806625 +2898.897867 +2898.972592 +2900.643919 +2903.924868 +2903.941685 +2904.886039 +2905.886172 +2905.886471 +2905.890834 +2905.892032 +2906.886171 +2907.886503 +2913.652065 +2914.886329 +2914.986795 +2914.987028 +2915.087261 +2915.187494 +2915.487727 +2915.787394 +2916.987559 +2918.087591 +2918.287591 +2918.387624 +2918.487491 +2918.587558 +2918.687624 +2918.887624 +2919.187723 +2919.287590 +2919.787656 +2919.887656 +2924.890815 +2924.897641 +2924.921717 +2924.980625 +2925.030342 +2925.049056 +2925.058680 +2925.059712 +2925.060412 +2925.126545 +2925.149589 +2925.179759 +2925.180358 +2925.201037 +2925.223315 +2925.224347 +2925.287784 +2925.310028 +2925.343595 +2925.364774 +2925.391846 +2925.394177 +2925.394943 +2925.452586 +2925.475663 +2925.498673 +2925.517188 +2925.524880 +2925.525246 +2925.566272 +2925.579725 +2925.581557 +2925.611760 +2925.632306 +2925.642595 +2925.701869 +2925.708896 +2925.758846 +2925.833471 +2925.848956 +2925.923914 +2925.950121 +2926.020251 +2926.032472 +2926.057880 +2926.058979 +2926.105798 +2926.121583 +2926.132738 +2926.147024 +2926.159711 +2926.215256 +2926.217054 +2926.298306 +2926.316821 +2926.348422 +2926.349788 +2926.414390 +2926.438832 +2926.450520 +2926.500637 +2926.526710 +2926.538432 +2926.553151 +2926.576960 +2926.589348 +2926.591945 +2926.617253 +2926.628742 +2926.651452 +2926.652651 +2926.653950 +2926.664606 +2926.679025 +2926.699771 +2926.712092 +2926.722781 +2926.758712 +2926.770999 +2926.799304 +2926.821882 +2926.836900 +2926.849021 +2926.860843 +2926.874662 +2926.926610 +2926.927476 +2926.952451 +2926.953949 +2926.978292 +2926.979291 +2927.029574 +2927.047323 +2927.058711 +2927.070366 +2927.084419 +2927.099737 +2927.110826 +2927.137466 +2927.138798 +2927.176726 +2927.203899 +2927.218118 +2927.232471 +2927.260110 +2927.271565 +2927.272064 +2927.297139 +2927.297772 +2927.312857 +2927.325544 +2927.339064 +2927.339697 +2927.379657 +2927.392843 +2927.416420 +2927.445158 +2927.459910 +2927.470000 +2927.483519 +2927.496906 +2927.510526 +2927.512291 +2927.523879 +2927.534735 +2927.544558 +2927.558511 +2927.559177 +2927.571764 +2927.588881 +2927.606863 +2927.642227 +2927.667535 +2927.668734 +2927.681887 +2927.695374 +2927.696773 +2927.734735 +2927.763839 +2927.776626 +2927.803965 +2927.830472 +2927.843992 +2927.858877 +2927.872330 +2927.899570 +2927.900402 +2927.926276 +2927.940329 +2927.941294 +2927.953815 +2927.976992 +2927.977658 +2928.002666 +2928.031804 +2928.043992 +2928.044758 +2928.084917 +2928.097305 +2928.098271 +2928.100369 +2928.110692 +2928.134901 +2928.136732 +2928.150585 +2928.161707 +2928.163572 +2928.250452 +2928.301734 +2928.307328 +2928.331737 +2928.346589 +2928.347055 +2928.361374 +2928.401034 +2928.414920 +2928.429073 +2928.441694 +2928.471331 +2928.483085 +2928.497005 +2928.499136 +2928.509992 +2928.536865 +2928.551584 +2928.577724 +2928.594074 +2928.604864 +2928.616885 +2928.639629 +2928.675593 +2928.685816 +2928.702999 +2928.719848 +2928.758809 +2928.775526 +2928.789379 +2928.818749 +2928.897038 +2928.926508 +2939.886337 +2939.891799 +2939.892265 +2949.890790 +2951.888190 +2954.588088 +2954.887754 +2959.886884 +2959.890646 +2959.897207 +2959.909294 +2959.989980 +2960.064639 +2960.082621 +2960.094742 +2960.139730 +2960.155315 +2960.174562 +2960.175894 +2960.231472 +2960.250653 +2960.262308 +2960.305431 +2960.313157 +2960.384186 +2960.404599 +2960.435434 +2960.465371 +2960.465671 +2960.478258 +2960.499304 +2960.591478 +2960.605231 +2960.628574 +2960.710659 +2960.722580 +2960.758478 +2960.818651 +2960.917718 +2960.996506 +2961.005530 +2961.088181 +2961.189746 +2961.226043 +2961.300535 +2961.314721 +2961.327208 +2961.375660 +2961.412090 +2961.448587 +2961.491511 +2961.508161 +2961.509992 +2961.520981 +2961.531537 +2961.543658 +2961.556845 +2961.567102 +2961.568833 +2961.582553 +2961.621481 +2961.671164 +2961.684085 +2961.720615 +2961.741527 +2961.781987 +2961.816985 +2961.817751 +2961.832403 +2961.856645 +2961.865903 +2961.867368 +2961.886582 +2961.899136 +2961.919782 +2961.957611 +2961.969665 +2961.981187 +2961.993042 +2962.014887 +2962.040128 +2962.065536 +2962.100002 +2962.111590 +2962.113621 +2962.124344 +2962.135666 +2962.150618 +2962.175393 +2962.188280 +2962.208060 +2962.220681 +2962.233834 +2962.244623 +2962.257178 +2962.271097 +2962.315552 +2962.327940 +2962.339795 +2962.351317 +2962.362139 +2962.377557 +2962.389578 +2962.415386 +2962.429339 +2962.454580 +2962.490011 +2962.545289 +2962.559708 +2962.561506 +2962.592742 +2962.603431 +2962.616818 +2962.631203 +2962.643391 +2962.656311 +2962.669232 +2962.670397 +2962.697071 +2962.708393 +2962.709924 +2962.722046 +2962.750284 +2962.762438 +2962.775459 +2962.789212 +2962.801766 +2962.815119 +2962.827607 +2962.842458 +2962.853747 +2962.864037 +2962.880087 +2962.930703 +2962.941925 +2962.942625 +2962.966168 +2962.968099 +2962.988545 +2963.014053 +2963.016184 +2963.096870 +2963.108592 +2963.133667 +2963.139295 +2963.173061 +2963.175825 +2963.236131 +2963.294905 +2963.310357 +2963.324010 +2963.348885 +2963.380986 +2963.391043 +2963.416950 +2963.421179 +2963.447653 +2963.451782 +2963.476257 +2963.501332 +2963.693640 +2963.791841 +2963.898601 +2963.990809 +2975.886335 +2976.886467 +2984.885693 +2984.891121 +2984.986459 +2985.086758 +2985.186825 +2985.286958 +2985.287091 +2986.586923 +2987.598611 +2988.498876 +2994.896306 +2994.909559 +2994.923945 +2994.941694 +2994.969732 +2994.978091 +2994.989746 +2995.010192 +2995.038497 +2995.048487 +2995.070831 +2995.096872 +2995.097071 +2995.139762 +2995.186815 +2995.210658 +2995.240694 +2995.258177 +2995.283318 +2995.306129 +2995.325976 +2995.357744 +2995.373528 +2995.396672 +2995.430804 +2995.465969 +2995.502599 +2995.552149 +2995.575792 +2995.585016 +2995.610524 +2995.611024 +2995.623445 +2995.624011 +2995.635932 +2995.674094 +2995.718250 +2995.780820 +2995.840394 +2995.852482 +2995.853548 +2995.889645 +2995.922479 +2995.993541 +2996.017084 +2996.029538 +2996.061506 +2996.062372 +2996.075026 +2996.124843 +2996.125142 +2996.136764 +2996.162372 +2996.186714 +2996.232568 +2996.308126 +2996.338029 +2996.338995 +2996.358975 +2996.409391 +2996.434566 +2996.472595 +2996.473394 +2996.484649 +2996.512122 +2996.549451 +2996.560873 +2996.562471 +2996.588245 +2996.611888 +2996.627240 +2996.649318 +2996.650317 +2996.662937 +2996.701033 +2996.711655 +2996.712454 +2996.725941 +2996.736863 +2996.788478 +2996.812588 +2996.825641 +2996.837163 +2996.930203 +2996.964868 +2996.985947 +2996.999700 +2997.009590 +2997.018914 +2997.033799 +2997.039227 +2997.049484 +2997.065168 +2997.077922 +2997.090043 +2997.102298 +2997.114052 +2997.142191 +2997.150749 +2997.178321 +2997.190642 +2997.215851 +2997.255178 +2997.264802 +2997.277123 +2997.286613 +2997.310789 +2997.321678 +2997.342524 +2997.366500 +2997.407092 +2997.418414 +2997.432267 +2997.446287 +2997.459007 +2997.485547 +2997.487012 +2997.514052 +2997.537262 +2997.539260 +2997.551648 +2997.602763 +2997.618348 +2997.630436 +2997.630735 +2997.685514 +2997.686047 +2997.699666 +2997.711388 +2997.765034 +2997.775857 +2997.787112 +2997.796236 +2997.821444 +2997.848018 +2997.888877 +2997.933133 +2997.942790 +2997.970861 +2997.998134 +2998.012786 +2998.026306 +2998.054012 +2998.069596 +2998.081750 +2998.095570 +2998.108191 +2998.121111 +2998.134897 +2998.146352 +2998.160805 +2998.173425 +2998.243855 +2998.258673 +2998.269862 +2998.282649 +2998.307524 +2998.358573 +2998.370794 +2998.384348 +2998.385713 +2998.408224 +2998.439059 +2998.479719 +2998.538194 +2998.554044 +2998.611187 +2998.621710 +2998.734564 +2998.734830 +2998.832998 +2998.847317 +2998.864167 +3002.043984 +3010.885900 +3011.885699 +3014.885630 +3020.287023 +3020.387056 +3021.186023 +3022.786155 +3022.786354 +3022.986787 +3023.286654 +3023.386687 +3024.786919 +3024.886486 +3025.922349 +3025.979625 +3029.901332 +3029.916817 +3029.926807 +3029.982518 +3030.011156 +3030.032901 +3030.052315 +3030.134066 +3030.203430 +3030.239860 +3030.321212 +3030.348485 +3030.371761 +3030.397169 +3030.407193 +3030.512554 +3030.512820 +3030.534432 +3030.573959 +3030.608191 +3030.622011 +3030.644422 +3030.667099 +3030.679120 +3030.689377 +3030.714119 +3030.748817 +3030.776290 +3030.828970 +3030.897369 +3030.918714 +3030.920545 +3030.944455 +3031.043755 +3031.092340 +3031.093139 +3031.121011 +3031.168997 +3031.212054 +3031.230469 +3031.239027 +3031.249849 +3031.259440 +3031.261970 +3031.308923 +3031.310821 +3031.341124 +3031.384248 +3031.397135 +3031.420245 +3031.484181 +3031.532599 +3031.560205 +3031.572526 +3031.574091 +3031.632400 +3031.660738 +3031.673958 +3031.721843 +3031.746585 +3031.774657 +3031.842090 +3031.856908 +3031.858140 +3031.869829 +3031.881284 +3031.890874 +3031.905160 +3031.919745 +3031.942589 +3031.958506 +3032.030135 +3032.043688 +3032.082416 +3032.106225 +3032.117647 +3032.130934 +3032.132499 +3032.274424 +3032.289042 +3032.302362 +3032.340591 +3032.366665 +3032.369229 +3032.381250 +3032.394770 +3032.435163 +3032.444620 +3032.461270 +3032.474557 +3032.487643 +3032.528269 +3032.529002 +3032.543987 +3032.569362 +3032.582415 +3032.597833 +3032.626638 +3032.639225 +3032.652512 +3032.666365 +3032.681150 +3032.707357 +3032.720111 +3032.733631 +3032.775156 +3032.801662 +3032.834563 +3032.842222 +3032.853044 +3032.882681 +3032.895935 +3032.931466 +3032.962135 +3033.018912 +3033.020710 +3033.077919 +3033.163667 +3033.176754 +3033.190640 +3033.247017 +3033.264033 +3033.277852 +3033.305791 +3033.307290 +3033.321975 +3033.349414 +3033.350380 +3033.363800 +3033.379284 +3033.395168 +3033.424472 +3033.436927 +3033.480982 +3033.496300 +3033.568894 +3033.581116 +3033.613750 +3033.685211 +3033.716214 +3033.732830 +3033.760336 +3033.789940 +3033.817246 +3033.833163 +3033.860902 +3033.893303 +3033.924339 +3033.937892 +3033.967962 +3033.999530 +3034.032197 +3034.060869 +3034.119876 +3034.133762 +3034.398830 +3042.270118 +3046.887030 +3047.886196 +3048.887094 +3055.487254 +3055.987354 +3056.287353 +3057.087386 +3057.487352 +3058.187551 +3058.587784 +3058.887317 +3064.886745 +3064.902829 +3064.936562 +3064.975423 +3065.035030 +3065.047218 +3065.059073 +3065.070561 +3065.103628 +3065.104594 +3065.157741 +3065.216782 +3065.250781 +3065.264634 +3065.311187 +3065.323242 +3065.336562 +3065.395936 +3065.398766 +3065.424607 +3065.485113 +3065.495802 +3065.518613 +3065.519612 +3065.553112 +3065.571660 +3065.586678 +3065.623907 +3065.680850 +3065.691440 +3065.703961 +3065.750181 +3065.770028 +3065.772625 +3065.782582 +3065.785046 +3065.797600 +3065.821543 +3065.822808 +3065.833231 +3065.858839 +3065.868995 +3065.880517 +3065.917880 +3065.932399 +3065.944986 +3065.971360 +3065.992971 +3065.994303 +3066.019212 +3066.053877 +3066.056807 +3066.066864 +3066.076488 +3066.078586 +3066.091040 +3066.116381 +3066.141622 +3066.154576 +3066.215715 +3066.224806 +3066.243853 +3066.255875 +3066.270760 +3066.281016 +3066.283014 +3066.296701 +3066.310820 +3066.323574 +3066.348149 +3066.360936 +3066.361969 +3066.375788 +3066.398732 +3066.406357 +3066.407989 +3066.430733 +3066.433797 +3066.446218 +3066.457773 +3066.482015 +3066.502228 +3066.505625 +3066.519844 +3066.530833 +3066.533497 +3066.559504 +3066.559937 +3066.583081 +3066.611352 +3066.627103 +3066.651346 +3066.679750 +3066.705258 +3066.722075 +3066.732031 +3066.761036 +3066.774256 +3066.776287 +3066.787543 +3066.789274 +3066.826936 +3066.867096 +3066.881449 +3066.893503 +3066.906457 +3066.930566 +3066.932964 +3066.948348 +3066.970626 +3066.996966 +3067.033230 +3067.048881 +3067.072524 +3067.096134 +3067.118178 +3067.119943 +3067.131598 +3067.133296 +3067.144519 +3067.155641 +3067.157938 +3067.169327 +3067.182947 +3067.184978 +3067.197998 +3067.225870 +3067.238258 +3067.240123 +3067.267262 +3067.269160 +3067.310419 +3067.339856 +3067.353376 +3067.366763 +3067.378285 +3067.379683 +3067.380083 +3067.407788 +3067.418744 +3067.433230 +3067.435094 +3067.460336 +3067.527136 +3067.554908 +3067.566363 +3067.567129 +3067.576986 +3067.591904 +3067.603992 +3067.635660 +3067.681448 +3067.707622 +3067.709253 +3067.721774 +3067.735261 +3067.737658 +3067.751977 +3067.765663 +3067.791304 +3067.794235 +3067.806523 +3067.832796 +3067.872523 +3067.884478 +3067.886309 +3067.899996 +3067.916446 +3067.969126 +3068.015647 +3068.029599 +3068.086409 +3068.100928 +3068.112150 +3068.114015 +3068.140322 +3068.142286 +3068.168460 +3068.169359 +3068.181980 +3068.212350 +3068.239622 +3068.240488 +3068.254241 +3068.267861 +3068.280615 +3068.282579 +3068.321474 +3068.359203 +3068.373422 +3068.374254 +3068.387841 +3068.417478 +3068.435959 +3068.480614 +3068.492336 +3068.493901 +3068.534294 +3068.548546 +3068.564797 +3068.580015 +3068.641420 +3068.698863 +3068.842286 +3068.900594 +3068.944384 +3068.975719 +3069.119808 +3069.133994 +3069.369525 +3069.433061 +3069.726334 +3073.627396 +3073.638385 +3073.680876 +3073.686204 +3073.693496 +3073.726530 +3073.739817 +3073.889800 +3073.924865 +3073.945777 +3073.964225 +3074.511411 +3074.564691 +3074.611944 +3074.641181 +3074.651604 +3075.752702 +3075.760394 +3075.784037 +3075.809445 +3075.816038 +3075.849338 +3079.886164 +3080.887762 +3081.886096 +3083.886760 +3083.887026 +3084.886792 +3089.891482 +3090.087486 +3091.187551 +3091.287784 +3091.787784 +3092.087384 +3092.386585 +3093.087883 +3093.187549 +3093.487349 +3094.687948 +3094.787848 +3098.939092 +3099.902062 +3099.903127 +3099.919045 +3099.953344 +3099.953810 +3100.001828 +3100.024139 +3100.062168 +3100.075255 +3100.120476 +3100.143020 +3100.156240 +3100.165631 +3100.198631 +3100.211285 +3100.212384 +3100.233330 +3100.264132 +3100.277119 +3100.336527 +3100.372258 +3100.385344 +3100.386577 +3100.436893 +3100.451045 +3100.487242 +3100.496800 +3100.519210 +3100.560736 +3100.585777 +3100.598398 +3100.635527 +3100.648081 +3100.724372 +3100.726969 +3100.738291 +3100.747848 +3100.767029 +3100.780183 +3100.817012 +3100.818311 +3100.839856 +3100.852643 +3100.855141 +3100.865464 +3100.881415 +3100.945684 +3100.967595 +3101.011584 +3101.024205 +3101.049213 +3101.059969 +3101.087275 +3101.100529 +3101.101328 +3101.102560 +3101.122107 +3101.124205 +3101.187475 +3101.199463 +3101.214082 +3101.227735 +3101.238890 +3101.264564 +3101.288274 +3101.303159 +3101.315314 +3101.316879 +3101.328600 +3101.341454 +3101.354541 +3101.355373 +3101.369126 +3101.379882 +3101.394035 +3101.404624 +3101.406622 +3101.418577 +3101.419343 +3101.429866 +3101.457738 +3101.470625 +3101.515813 +3101.530398 +3101.542253 +3101.554974 +3101.579283 +3101.579549 +3101.593135 +3101.617744 +3101.621274 +3101.634294 +3101.647914 +3101.648280 +3101.661034 +3101.699662 +3101.711350 +3101.712449 +3101.737391 +3101.739955 +3101.752776 +3101.754840 +3101.777884 +3101.778883 +3101.792969 +3101.793835 +3101.794401 +3101.804557 +3101.832696 +3101.842619 +3101.869958 +3101.905556 +3101.912482 +3101.924071 +3101.924470 +3101.963265 +3101.964331 +3101.977984 +3101.989705 +3101.990504 +3102.016478 +3102.042519 +3102.045749 +3102.059569 +3102.071590 +3102.087374 +3102.101227 +3102.114680 +3102.168193 +3102.179782 +3102.181080 +3102.182312 +3102.193934 +3102.195532 +3102.233994 +3102.249245 +3102.262665 +3102.276818 +3102.303424 +3102.318043 +3102.344816 +3102.359035 +3102.360900 +3102.374420 +3102.388306 +3102.401759 +3102.428499 +3102.443218 +3102.456205 +3102.469558 +3102.472522 +3102.486108 +3102.499129 +3102.523870 +3102.539621 +3102.542652 +3102.556804 +3102.569158 +3102.570024 +3102.585009 +3102.585475 +3102.597697 +3102.628099 +3102.640554 +3102.655405 +3102.668892 +3102.682645 +3102.697530 +3102.726468 +3102.740087 +3102.741586 +3102.765495 +3102.792069 +3102.803424 +3102.817976 +3102.832994 +3102.847979 +3102.859768 +3102.905622 +3102.916244 +3102.930364 +3102.932728 +3102.945349 +3102.960167 +3102.990170 +3103.003990 +3103.020373 +3103.034726 +3103.036191 +3103.080846 +3103.093467 +3103.124436 +3103.126234 +3103.155072 +3103.169691 +3103.171456 +3103.186674 +3103.199494 +3103.212914 +3103.226867 +3103.240620 +3103.258668 +3103.258968 +3103.272121 +3103.288438 +3103.317010 +3103.360899 +3103.392601 +3103.451975 +3103.557935 +3103.560832 +3103.576816 +3103.620539 +3103.635558 +3103.667126 +3103.695065 +3103.726933 +3103.743616 +3103.805121 +3103.877649 +3103.908784 +3103.955704 +3103.997296 +3104.073053 +3104.086240 +3104.174452 +3104.191068 +3104.356136 +3104.554471 +3104.601990 +3104.697561 +3106.475348 +3106.501389 +3106.505551 +3107.330126 +3115.886428 +3116.886027 +3116.892820 +3117.886559 +3117.887392 +3118.886525 +3121.456985 +3121.580661 +3122.576731 +3122.592415 +3122.676398 +3123.884355 +3124.885819 +3125.387517 +3125.787450 +3126.287450 +3126.687583 +3127.187416 +3128.087448 +3128.487314 +3129.287813 +3129.486547 +3129.602798 +3131.100532 +3134.919243 +3134.955140 +3134.985476 +3135.014547 +3135.036392 +3135.037524 +3135.047548 +3135.079849 +3135.089905 +3135.100861 +3135.122040 +3135.122939 +3135.123505 +3135.150977 +3135.183778 +3135.184510 +3135.221640 +3135.244251 +3135.269692 +3135.328999 +3135.341020 +3135.363831 +3135.374986 +3135.394234 +3135.408153 +3135.442419 +3135.450977 +3135.477018 +3135.520474 +3135.531197 +3135.543518 +3135.565596 +3135.629299 +3135.657770 +3135.681013 +3135.719009 +3135.741320 +3135.783478 +3135.815412 +3135.849545 +3135.907920 +3135.922472 +3135.932728 +3135.979448 +3136.016278 +3136.028965 +3136.076418 +3136.078183 +3136.091170 +3136.101359 +3136.102425 +3136.114746 +3136.136125 +3136.139088 +3136.139455 +3136.152009 +3136.163297 +3136.174852 +3136.176850 +3136.209451 +3136.211216 +3136.237357 +3136.262465 +3136.275985 +3136.302491 +3136.367893 +3136.380813 +3136.381612 +3136.392535 +3136.404256 +3136.415412 +3136.443184 +3136.479914 +3136.501825 +3136.514746 +3136.541752 +3136.556537 +3136.567659 +3136.582311 +3136.584343 +3136.598395 +3136.612081 +3136.624636 +3136.625468 +3136.636457 +3136.650110 +3136.652175 +3136.663996 +3136.677849 +3136.680280 +3136.704156 +3136.706054 +3136.720573 +3136.732195 +3136.744016 +3136.746780 +3136.759967 +3136.771855 +3136.785674 +3136.786107 +3136.801858 +3136.840253 +3136.864995 +3136.888238 +3136.903157 +3136.930296 +3136.930862 +3136.944649 +3136.956470 +3136.959767 +3136.972487 +3136.986473 +3137.010283 +3137.011915 +3137.025135 +3137.027133 +3137.037189 +3137.049277 +3137.050576 +3137.060533 +3137.061298 +3137.087206 +3137.101025 +3137.129763 +3137.156570 +3137.180379 +3137.195697 +3137.208817 +3137.221738 +3137.235191 +3137.235824 +3137.248345 +3137.249943 +3137.273386 +3137.290203 +3137.303589 +3137.314445 +3137.345148 +3137.373719 +3137.387305 +3137.428797 +3137.430829 +3137.470988 +3137.487472 +3137.516576 +3137.527898 +3137.528964 +3137.542983 +3137.573652 +3137.587438 +3137.600059 +3137.614445 +3137.642417 +3137.656902 +3137.710349 +3137.724634 +3137.726200 +3137.740319 +3137.742184 +3137.753639 +3137.767958 +3137.782610 +3137.811381 +3137.840685 +3137.854371 +3137.882476 +3137.896962 +3137.913745 +3137.941084 +3137.968291 +3137.985007 +3137.997162 +3138.011481 +3138.084141 +3138.100092 +3138.109349 +3138.112646 +3138.126099 +3138.139719 +3138.157068 +3138.158001 +3138.171021 +3138.244681 +3138.292399 +3138.378280 +3138.424900 +3138.441350 +3138.457201 +3138.484307 +3138.500624 +3138.529762 +3138.532060 +3138.559132 +3138.579013 +3138.589569 +3138.620238 +3138.622169 +3138.636122 +3138.637787 +3138.652739 +3138.679712 +3138.697327 +3138.727297 +3138.742382 +3138.879245 +3138.910015 +3138.911580 +3138.940384 +3138.971087 +3139.017673 +3139.044780 +3139.046811 +3139.379478 +3139.380410 +3139.392931 +3139.409981 +3139.539684 +3151.886625 +3151.886825 +3159.885818 +3159.886750 +3159.986550 +3160.086817 +3160.287183 +3160.387216 +3160.487249 +3160.687282 +3160.887315 +3161.087315 +3161.587315 +3164.387678 +3164.687278 +3164.787311 +3169.896197 +3169.896997 +3169.918675 +3169.960333 +3169.996597 +3170.036590 +3170.037456 +3170.038888 +3170.076850 +3170.094599 +3170.129464 +3170.155171 +3170.164895 +3170.177716 +3170.221871 +3170.262930 +3170.299327 +3170.301059 +3170.314445 +3170.408818 +3170.432361 +3170.452740 +3170.503057 +3170.528365 +3170.572254 +3170.609417 +3170.736756 +3170.799526 +3170.799959 +3170.812613 +3170.853106 +3170.873319 +3170.885773 +3170.911015 +3170.937821 +3170.962064 +3171.000159 +3171.001125 +3171.037288 +3171.039619 +3171.052307 +3171.078148 +3171.157501 +3171.232060 +3171.246446 +3171.293865 +3171.353305 +3171.368057 +3171.404188 +3171.404787 +3171.426466 +3171.439186 +3171.464661 +3171.491101 +3171.504454 +3171.514178 +3171.525966 +3171.540385 +3171.554737 +3171.596995 +3171.633858 +3171.671820 +3171.687105 +3171.710981 +3171.725067 +3171.734857 +3171.738453 +3171.748676 +3171.791234 +3171.829995 +3171.846578 +3171.870554 +3171.937188 +3171.951473 +3171.977081 +3171.978013 +3171.991000 +3172.004387 +3172.061863 +3172.122136 +3172.138453 +3172.204786 +3172.205253 +3172.296694 +3172.308816 +3172.319905 +3172.369422 +3172.370854 +3172.384240 +3172.395429 +3172.423301 +3172.440451 +3172.454670 +3172.469122 +3172.510414 +3172.525865 +3172.539285 +3172.563627 +3172.578246 +3172.592065 +3172.615942 +3172.646278 +3172.709748 +3172.712012 +3172.763261 +3172.881709 +3172.896094 +3172.907616 +3172.918239 +3172.919504 +3172.920570 +3172.947043 +3173.019138 +3173.019871 +3173.034689 +3173.035455 +3173.063127 +3173.081542 +3173.155535 +3173.186171 +3173.196594 +3173.199091 +3173.212478 +3173.213410 +3173.228295 +3173.258165 +3173.289101 +3173.332291 +3173.348308 +3173.362061 +3173.363726 +3173.439950 +3173.452005 +3173.467123 +3173.496427 +3173.572351 +3173.587469 +3173.599790 +3173.628228 +3173.646077 +3173.661861 +3173.705484 +3173.777845 +3173.795128 +3173.809180 +3173.823999 +3173.852237 +3173.864891 +3173.881308 +3173.899090 +3173.910812 +3173.942480 +3173.943379 +3173.956833 +3174.032590 +3174.090998 +3174.104485 +3174.122200 +3174.152004 +3174.179110 +3174.217372 +3174.345477 +3174.360762 +3174.446443 +3174.485803 +3174.601321 +3174.664657 +3174.693262 +3174.708980 +3174.832623 +3180.308408 +3184.885027 +3185.884793 +3185.885692 +3189.891316 +3194.886449 +3194.890278 +3195.086648 +3195.987713 +3196.686946 +3198.087411 +3199.486944 +3204.895829 +3204.910082 +3204.937321 +3204.976216 +3205.025633 +3205.095296 +3205.107717 +3205.118740 +3205.127930 +3205.149875 +3205.172219 +3205.308450 +3205.345912 +3205.347011 +3205.372086 +3205.384074 +3205.395529 +3205.430927 +3205.441483 +3205.451973 +3205.493098 +3205.516841 +3205.577813 +3205.578479 +3205.630361 +3205.656202 +3205.724566 +3205.759964 +3205.883940 +3205.896261 +3205.908715 +3205.945179 +3205.970653 +3205.986571 +3205.999291 +3205.999758 +3206.024699 +3206.036354 +3206.044646 +3206.084739 +3206.145778 +3206.161163 +3206.173850 +3206.174816 +3206.206318 +3206.221336 +3206.242481 +3206.256567 +3206.265625 +3206.266990 +3206.268189 +3206.291199 +3206.292964 +3206.306251 +3206.339751 +3206.365525 +3206.377912 +3206.378745 +3206.380443 +3206.403687 +3206.404652 +3206.405019 +3206.416108 +3206.426131 +3206.440350 +3206.454702 +3206.466923 +3206.477613 +3206.478412 +3206.490566 +3206.503054 +3206.506317 +3206.528095 +3206.555934 +3206.557066 +3206.568921 +3206.581742 +3206.603620 +3206.633656 +3206.646310 +3206.699091 +3206.715375 +3206.765724 +3206.779011 +3206.779744 +3206.805018 +3206.853403 +3206.865491 +3206.877213 +3206.901921 +3206.913976 +3206.925298 +3206.946910 +3206.957632 +3206.958265 +3207.028328 +3207.028661 +3207.040915 +3207.066490 +3207.078911 +3207.080676 +3207.093463 +3207.117705 +3207.127695 +3207.139550 +3207.140416 +3207.152637 +3207.165557 +3207.180243 +3207.194062 +3207.207249 +3207.235621 +3207.248508 +3207.261361 +3207.283439 +3207.285904 +3207.301288 +3207.311411 +3207.361894 +3207.365824 +3207.386936 +3207.388234 +3207.412910 +3207.434122 +3207.436719 +3207.449673 +3207.458364 +3207.459696 +3207.484571 +3207.496393 +3207.510545 +3207.537652 +3207.549440 +3207.562194 +3207.586569 +3207.665923 +3207.742613 +3207.744811 +3207.784038 +3207.795027 +3207.807914 +3207.809879 +3207.819037 +3207.832190 +3207.835254 +3207.844744 +3207.858997 +3207.860928 +3207.871551 +3207.897924 +3207.899389 +3207.913375 +3207.915407 +3207.925630 +3207.950072 +3207.964691 +3207.977245 +3207.977744 +3207.989499 +3208.003818 +3208.034188 +3208.072117 +3208.127062 +3208.179975 +3208.206748 +3208.234088 +3208.235953 +3208.260761 +3208.303718 +3208.458430 +3208.554400 +3208.612409 +3208.745309 +3208.760095 +3208.760428 +3208.913974 +3219.885958 +3219.891052 +3220.885757 +3221.885922 +3223.885754 +3224.885886 +3229.890143 +3233.086344 +3233.686843 +3233.687242 +3234.387075 +3234.586675 +3234.686742 +3234.886675 +3239.886004 +3239.890200 +3239.895894 +3239.916207 +3240.000623 +3240.002121 +3240.062627 +3240.083440 +3240.103853 +3240.146244 +3240.157965 +3240.206050 +3240.217772 +3240.230026 +3240.253137 +3240.289567 +3240.326497 +3240.338984 +3240.339284 +3240.364159 +3240.377779 +3240.452637 +3240.484139 +3240.508315 +3240.530293 +3240.531092 +3240.541748 +3240.590998 +3240.634655 +3240.663559 +3240.719070 +3240.848607 +3240.886136 +3240.887269 +3240.910112 +3240.910978 +3240.946376 +3240.949739 +3240.962327 +3241.000489 +3241.043978 +3241.089699 +3241.117238 +3241.118104 +3241.143046 +3241.156099 +3241.179543 +3241.193229 +3241.212376 +3241.215307 +3241.258464 +3241.295660 +3241.320268 +3241.354135 +3241.395127 +3241.419469 +3241.520235 +3241.541880 +3241.584471 +3241.694627 +3241.708447 +3241.746009 +3241.757797 +3241.782173 +3241.793928 +3241.817071 +3241.836085 +3241.848107 +3241.909778 +3241.921866 +3241.935553 +3241.974214 +3241.986901 +3241.999122 +3242.025596 +3242.065556 +3242.065889 +3242.094160 +3242.119668 +3242.133721 +3242.160827 +3242.183971 +3242.185303 +3242.198489 +3242.265722 +3242.279109 +3242.292961 +3242.346308 +3242.372615 +3242.373314 +3242.384670 +3242.424896 +3242.425962 +3242.466421 +3242.492795 +3242.508313 +3242.531356 +3242.546674 +3242.616038 +3242.617303 +3242.631722 +3242.644476 +3242.698855 +3242.710477 +3242.734619 +3242.764156 +3242.804383 +3242.831156 +3242.860127 +3242.873147 +3242.886601 +3242.900786 +3242.929824 +3242.972481 +3242.988265 +3242.999954 +3243.014572 +3243.062891 +3243.073147 +3243.087799 +3243.101818 +3243.115471 +3243.130590 +3243.157163 +3243.182604 +3243.185901 +3243.196890 +3243.224662 +3243.227426 +3243.238881 +3243.240247 +3243.252901 +3243.254099 +3243.269551 +3243.281838 +3243.296990 +3243.325961 +3243.370117 +3243.397955 +3243.429124 +3243.439381 +3243.456430 +3243.469883 +3243.473113 +3243.512407 +3243.540646 +3243.593659 +3243.690696 +3243.705847 +3243.789996 +3243.831521 +3243.873246 +3243.900652 +3243.915870 +3244.058428 +3244.155430 +3255.891150 +3256.463510 +3256.667772 +3256.682824 +3258.174830 +3258.194877 +3264.886079 +3265.286545 +3265.886478 +3266.286710 +3266.587543 +3267.586676 +3268.086709 +3268.687008 +3268.690870 +3268.986574 +3269.486507 +3273.557432 +3273.568954 +3273.585571 +3273.599923 +3273.787702 +3274.885969 +3274.911211 +3274.920235 +3275.016339 +3275.049972 +3275.059762 +3275.083272 +3275.178310 +3275.190431 +3275.200921 +3275.224097 +3275.265756 +3275.336452 +3275.359462 +3275.406515 +3275.415639 +3275.456998 +3275.457397 +3275.494260 +3275.519535 +3275.540581 +3275.558762 +3275.582539 +3275.608579 +3275.632921 +3275.645209 +3275.683038 +3275.683371 +3275.747773 +3275.759794 +3275.831023 +3275.847074 +3275.858895 +3275.871183 +3275.895592 +3275.910577 +3275.911076 +3275.920867 +3275.956231 +3275.982039 +3276.007147 +3276.054266 +3276.184103 +3276.263790 +3276.275179 +3276.286068 +3276.345242 +3276.346840 +3276.396690 +3276.424729 +3276.448105 +3276.470616 +3276.495491 +3276.507946 +3276.575545 +3276.687932 +3276.699887 +3276.700253 +3276.740579 +3276.751602 +3276.831055 +3276.893293 +3276.961958 +3276.971881 +3277.042610 +3277.066853 +3277.079440 +3277.081072 +3277.095957 +3277.108744 +3277.147272 +3277.176743 +3277.202084 +3277.214971 +3277.241445 +3277.294125 +3277.309243 +3277.310076 +3277.323229 +3277.350602 +3277.378341 +3277.394158 +3277.407179 +3277.435417 +3277.447472 +3277.517668 +3277.530122 +3277.542543 +3277.559027 +3277.601284 +3277.603316 +3277.671414 +3277.701218 +3277.717302 +3277.729556 +3277.745240 +3277.814305 +3277.816136 +3277.869549 +3277.913505 +3277.927558 +3277.941943 +3277.953832 +3277.957062 +3277.971547 +3277.973545 +3277.999686 +3278.044374 +3278.045440 +3278.060025 +3278.090728 +3278.175643 +3278.206012 +3278.219233 +3278.220132 +3278.244541 +3278.276708 +3278.288896 +3278.302249 +3278.374843 +3278.388863 +3278.402982 +3278.418367 +3278.432319 +3278.448303 +3278.490594 +3278.523328 +3278.550501 +3278.553232 +3278.581170 +3278.598486 +3278.610008 +3278.640744 +3278.654197 +3278.684234 +3278.728789 +3278.730587 +3278.742875 +3278.747337 +3278.759658 +3278.862256 +3278.920897 +3278.979039 +3278.993125 +3279.033850 +3279.074976 +3279.107044 +3279.162488 +3279.175142 +3279.177174 +3279.427889 +3279.440244 +3279.451865 +3279.471745 +3279.517400 +3282.255992 +3289.885455 +3292.885951 +3298.351214 +3299.993303 +3300.186510 +3300.886642 +3301.486842 +3301.686642 +3301.986941 +3302.286808 +3302.586841 +3303.186241 +3303.186873 +3303.586906 +3304.687072 +3304.886838 +3309.896357 +3309.902018 +3309.918202 +3309.918968 +3309.947806 +3310.009810 +3310.020100 +3310.039880 +3310.063257 +3310.086900 +3310.143843 +3310.154399 +3310.228291 +3310.240846 +3310.263290 +3310.273213 +3310.314139 +3310.324295 +3310.336516 +3310.346506 +3310.358794 +3310.369550 +3310.383536 +3310.428025 +3310.489996 +3310.527692 +3310.627891 +3310.642044 +3310.666453 +3310.747538 +3310.755397 +3310.768850 +3310.769949 +3310.781171 +3310.807378 +3310.820299 +3310.833186 +3310.936716 +3310.958893 +3311.004714 +3311.029956 +3311.061557 +3311.119066 +3311.146872 +3311.157062 +3311.182769 +3311.244008 +3311.268417 +3311.328190 +3311.374944 +3311.389729 +3311.413072 +3311.427991 +3311.438613 +3311.452333 +3311.464621 +3311.498986 +3311.566385 +3311.655996 +3311.668650 +3311.711041 +3311.721364 +3311.764187 +3311.776109 +3311.800618 +3311.853997 +3311.867950 +3311.935449 +3312.002582 +3312.068583 +3312.069981 +3312.097187 +3312.111007 +3312.138280 +3312.150867 +3312.175742 +3312.245472 +3312.299518 +3312.338712 +3312.366185 +3312.437180 +3312.478206 +3312.535582 +3312.592891 +3312.663754 +3312.708875 +3312.719098 +3312.719931 +3312.799384 +3312.855129 +3312.872811 +3312.896021 +3312.898718 +3312.910773 +3312.922461 +3312.937413 +3312.951133 +3312.962155 +3312.976174 +3312.989927 +3313.019964 +3313.044939 +3313.072544 +3313.087996 +3313.090759 +3313.104546 +3313.117766 +3313.131619 +3313.161788 +3313.173843 +3313.175841 +3313.203713 +3313.204879 +3313.234682 +3313.248768 +3313.263020 +3313.280636 +3313.293457 +3313.338112 +3313.365018 +3313.382035 +3313.397419 +3313.411738 +3313.453396 +3313.485431 +3313.500416 +3313.545205 +3313.546237 +3313.575574 +3313.577572 +3313.603147 +3313.635514 +3313.740176 +3313.858158 +3313.890992 +3313.907076 +3313.938478 +3314.013469 +3314.106043 +3314.330618 +3314.391657 +3314.691024 +3314.849566 +3322.832808 +3324.781390 +3324.790515 +3324.797374 +3324.807531 +3324.811860 +3324.817488 +3324.822716 +3324.885719 +3325.464573 +3325.473065 +3325.500337 +3325.544726 +3325.563308 +3326.182388 +3326.209994 +3326.217286 +3326.253517 +3326.263807 +3326.271898 +3326.283220 +3326.886850 +3327.128041 +3327.134835 +3327.145324 +3327.153583 +3327.163839 +3327.200835 +3327.216187 +3327.886915 +3328.222146 +3328.238763 +3328.244724 +3328.252349 +3328.268167 +3328.272463 +3328.297038 +3328.387980 +3335.287207 +3335.886707 +3336.787006 +3337.187405 +3337.386939 +3337.887471 +3338.587104 +3338.887470 +3339.087170 +3339.187070 +3339.787103 +3340.906516 +3343.533986 +3343.555065 +3344.216236 +3344.224295 +3344.284268 +3344.399686 +3344.895623 +3344.896822 +3344.917401 +3344.927091 +3344.943408 +3344.970847 +3345.001583 +3345.022795 +3345.032452 +3345.093924 +3345.095323 +3345.106845 +3345.117667 +3345.136282 +3345.137314 +3345.153731 +3345.233385 +3345.244474 +3345.265752 +3345.312872 +3345.327590 +3345.341077 +3345.377174 +3345.389162 +3345.422429 +3345.465219 +3345.503215 +3345.515302 +3345.515802 +3345.549901 +3345.581370 +3345.603514 +3345.616834 +3345.630554 +3345.651932 +3345.662622 +3345.664153 +3345.687430 +3345.708576 +3345.728389 +3345.749401 +3345.751100 +3345.801083 +3345.839844 +3345.878672 +3345.891992 +3345.912472 +3345.913038 +3345.933284 +3345.947370 +3345.948635 +3345.970380 +3345.983833 +3346.043807 +3346.056461 +3346.069914 +3346.071246 +3346.083900 +3346.084399 +3346.097287 +3346.108609 +3346.120963 +3346.145938 +3346.147137 +3346.168415 +3346.179471 +3346.206311 +3346.243507 +3346.244972 +3346.269714 +3346.291492 +3346.294855 +3346.304446 +3346.314036 +3346.317133 +3346.327023 +3346.338012 +3346.349401 +3346.377573 +3346.391359 +3346.402614 +3346.424626 +3346.426757 +3346.437213 +3346.438445 +3346.449601 +3346.450267 +3346.459657 +3346.462255 +3346.502081 +3346.514835 +3346.540043 +3346.615435 +3346.653097 +3346.655328 +3346.655794 +3346.668448 +3346.694222 +3346.719364 +3346.732084 +3346.759657 +3346.799683 +3346.827589 +3346.867649 +3346.904578 +3346.905344 +3346.929220 +3346.931452 +3346.953929 +3346.967582 +3347.033416 +3347.047602 +3347.074741 +3347.076939 +3347.090259 +3347.118231 +3347.146137 +3347.158691 +3347.185031 +3347.186696 +3347.199250 +3347.200549 +3347.240342 +3347.320595 +3347.323992 +3347.335580 +3347.337046 +3347.349966 +3347.390792 +3347.420229 +3347.447735 +3347.461354 +3347.462187 +3347.526256 +3347.527621 +3347.535980 +3347.549433 +3347.550032 +3347.551464 +3347.563552 +3347.574641 +3347.609839 +3347.641208 +3347.655760 +3347.712470 +3347.738544 +3347.767315 +3347.793022 +3347.809672 +3347.823226 +3347.836779 +3347.876439 +3347.935813 +3348.004511 +3348.027754 +3348.070112 +3348.106975 +3348.202180 +3348.260388 +3348.300914 +3348.332249 +3348.370644 +3348.397051 +3348.413102 +3348.501680 +3348.566781 +3348.609672 +3348.694487 +3348.695053 +3348.723591 +3348.813967 +3348.843504 +3348.888959 +3348.932848 +3348.962618 +3348.979735 +3349.087160 +3349.115832 +3349.205975 +3349.220294 +3349.255059 +3349.331449 +3349.343637 +3349.375971 +3349.407706 +3349.424056 +3349.439707 +3349.470410 +3349.483430 +3349.562884 +3349.620826 +3349.730749 +3349.823723 +3349.869644 +3351.273971 +3353.607669 +3354.137005 +3354.179696 +3354.207368 +3354.221088 +3354.275001 +3360.887315 +3362.600267 +3362.607493 +3362.620114 +3362.629038 +3362.658242 +3362.701699 +3362.740194 +3362.758975 +3362.850583 +3362.886281 +3362.886614 +3363.149784 +3364.886645 +3365.650913 +3365.675289 +3367.156606 +3369.605588 +3369.885907 +3370.387905 +3370.687438 +3370.705054 +3370.887838 +3370.888337 +3370.987571 +3371.087771 +3371.587304 +3371.587870 +3371.588137 +3371.887604 +3371.893398 +3372.288536 +3372.387770 +3372.587603 +3372.687670 +3372.787803 +3373.087902 +3373.687802 +3373.787735 +3374.387801 +3374.488167 +3374.588167 +3374.787801 +3374.788167 +3375.168120 +3375.226362 +3379.897253 +3379.903680 +3379.969614 +3379.970946 +3379.972045 +3379.991958 +3380.011472 +3380.051332 +3380.066217 +3380.066716 +3380.089127 +3380.111971 +3380.142407 +3380.198784 +3380.222694 +3380.225724 +3380.269946 +3380.289960 +3380.346603 +3380.359856 +3380.393922 +3380.404645 +3380.423193 +3380.423593 +3380.431951 +3380.432817 +3380.442174 +3380.497385 +3380.549733 +3380.568514 +3380.648234 +3380.685797 +3380.730252 +3380.736180 +3380.780502 +3380.781334 +3380.806909 +3380.818131 +3380.829486 +3380.839942 +3380.850765 +3380.861354 +3380.899683 +3380.912203 +3380.951597 +3380.961421 +3380.992090 +3381.002480 +3381.069246 +3381.069613 +3381.093389 +3381.127022 +3381.182233 +3381.258357 +3381.268180 +3381.270445 +3381.282599 +3381.302879 +3381.328287 +3381.338810 +3381.378137 +3381.412836 +3381.441474 +3381.479302 +3381.481633 +3381.493888 +3381.545037 +3381.569712 +3381.571077 +3381.637211 +3381.660421 +3381.677138 +3381.714334 +3381.730085 +3381.742273 +3381.793854 +3381.833315 +3381.859888 +3381.873142 +3381.885130 +3381.898749 +3381.938243 +3381.978403 +3381.979135 +3382.000780 +3382.048499 +3382.078136 +3382.097384 +3382.134080 +3382.143371 +3382.146701 +3382.160554 +3382.186461 +3382.322492 +3382.380167 +3382.395519 +3382.410803 +3382.450330 +3382.480167 +3382.505775 +3382.535046 +3382.535645 +3382.537044 +3382.564117 +3382.606441 +3382.634846 +3382.648832 +3382.664017 +3382.679301 +3382.772575 +3382.799747 +3382.817763 +3382.830583 +3382.867879 +3382.924090 +3382.951662 +3382.963783 +3382.978302 +3383.018329 +3383.020027 +3383.043070 +3383.097483 +3383.130117 +3383.145435 +3383.159820 +3383.185728 +3383.202078 +3383.217662 +3383.246800 +3383.278135 +3383.320859 +3383.337010 +3383.365215 +3383.377303 +3383.409337 +3383.423157 +3383.424122 +3383.484295 +3383.527019 +3383.570509 +3383.587026 +3383.612101 +3383.612867 +3383.623556 +3383.641305 +3383.643103 +3383.657056 +3383.659220 +3383.686193 +3383.701012 +3383.717928 +3383.733712 +3383.748165 +3383.761684 +3383.791088 +3383.822590 +3383.907871 +3383.926753 +3383.937908 +3383.954658 +3383.970442 +3384.025054 +3384.051827 +3384.061351 +3384.077801 +3384.105374 +3384.108271 +3384.165514 +3384.181464 +3384.193419 +3384.225154 +3384.238973 +3384.250329 +3384.279300 +3384.307904 +3384.341671 +3384.352426 +3384.370508 +3384.468710 +3384.471274 +3384.514797 +3384.516429 +3384.528650 +3384.561517 +3384.585193 +3384.601744 +3384.619859 +3384.688690 +3384.705873 +3384.722123 +3384.764081 +3394.886981 +3395.892475 +3396.892707 +3397.887311 +3398.892638 +3404.891800 +3405.087670 +3406.988168 +3407.188101 +3408.488067 +3408.888000 +3414.896052 +3414.902646 +3414.930851 +3414.956692 +3414.988959 +3415.042106 +3415.060754 +3415.145469 +3415.165183 +3415.175173 +3415.186195 +3415.212535 +3415.259289 +3415.259888 +3415.306375 +3415.340174 +3415.350064 +3415.360188 +3415.381833 +3415.407241 +3415.408373 +3415.478636 +3415.487360 +3415.488126 +3415.517064 +3415.639042 +3415.719295 +3415.722225 +3415.731150 +3415.744470 +3415.756957 +3415.796617 +3415.810470 +3415.846767 +3415.848998 +3415.860220 +3415.892721 +3415.918862 +3415.976737 +3416.013201 +3416.036844 +3416.059887 +3416.084995 +3416.123590 +3416.125089 +3416.173207 +3416.187360 +3416.188126 +3416.291988 +3416.316530 +3416.354359 +3416.379134 +3416.380699 +3416.404209 +3416.413900 +3416.506906 +3416.508671 +3416.584995 +3416.610170 +3416.638941 +3416.675371 +3416.706007 +3416.745867 +3416.769577 +3416.822158 +3416.823756 +3416.837043 +3416.837609 +3416.862451 +3416.894352 +3416.906640 +3416.973806 +3417.000812 +3417.016396 +3417.127219 +3417.153193 +3417.154159 +3417.206939 +3417.244335 +3417.263116 +3417.286093 +3417.329317 +3417.354225 +3417.384028 +3417.409903 +3417.438008 +3417.449163 +3417.506040 +3417.532780 +3417.549163 +3417.589489 +3417.645467 +3417.673938 +3417.688224 +3417.701211 +3417.712866 +3417.744901 +3417.759286 +3417.785760 +3417.800911 +3417.815297 +3417.841937 +3417.842703 +3417.856689 +3417.873006 +3417.911634 +3417.928916 +3417.943069 +3417.944667 +3417.957521 +3417.986459 +3418.000878 +3418.042036 +3418.043735 +3418.045100 +3418.100778 +3418.114997 +3418.117894 +3418.130115 +3418.131181 +3418.159819 +3418.201610 +3418.203908 +3418.215629 +3418.231547 +3418.261750 +3418.275403 +3418.276102 +3418.304973 +3418.306538 +3418.321324 +3418.321956 +3418.336175 +3418.350161 +3418.363914 +3418.392253 +3418.423455 +3418.433911 +3418.479365 +3418.495849 +3418.553325 +3418.582562 +3418.614031 +3418.639072 +3418.717427 +3418.790654 +3418.817827 +3418.834543 +3418.848895 +3418.860417 +3418.879332 +3418.891420 +3418.908336 +3418.937140 +3418.938872 +3418.969974 +3418.997613 +3419.014363 +3419.028482 +3419.042835 +3419.058552 +3419.088789 +3419.103407 +3419.133244 +3419.146797 +3419.151559 +3419.226085 +3419.269907 +3419.300277 +3419.302841 +3419.314563 +3419.328649 +3419.357653 +3419.375402 +3419.391219 +3419.393084 +3419.403274 +3419.436341 +3419.452591 +3419.541236 +3419.559884 +3419.569741 +3419.588622 +3419.619524 +3419.637007 +3419.708069 +3419.723087 +3419.787822 +3419.788855 +3439.890932 +3441.487035 +3441.691363 +3443.887299 +3444.487231 +3444.587265 +3449.896051 +3449.902111 +3449.909837 +3449.923690 +3449.945035 +3449.969011 +3449.988192 +3450.019094 +3450.029917 +3450.041272 +3450.083796 +3450.109936 +3450.130116 +3450.151861 +3450.183529 +3450.195318 +3450.218062 +3450.229017 +3450.237509 +3450.270742 +3450.327785 +3450.365181 +3450.409803 +3450.415297 +3450.441405 +3450.462683 +3450.481698 +3450.494119 +3450.507372 +3450.530482 +3450.541205 +3450.628384 +3450.648864 +3450.660752 +3450.662350 +3450.672507 +3450.693819 +3450.711734 +3450.767845 +3450.791687 +3450.804841 +3450.867312 +3450.901744 +3450.914331 +3450.977168 +3451.012566 +3451.032713 +3451.033379 +3451.130515 +3451.166013 +3451.220625 +3451.248697 +3451.322389 +3451.384827 +3451.410967 +3451.424021 +3451.471007 +3451.483661 +3451.484527 +3451.494750 +3451.508703 +3451.585393 +3451.623988 +3451.624654 +3451.634510 +3451.670374 +3451.694683 +3451.719026 +3451.745732 +3451.834543 +3451.872039 +3451.896182 +3451.919325 +3451.932812 +3451.956655 +3451.966411 +3452.026451 +3452.048629 +3452.111000 +3452.190287 +3452.202242 +3452.203141 +3452.305405 +3452.379664 +3452.382162 +3452.507037 +3452.518759 +3452.530014 +3452.552924 +3452.600477 +3452.605771 +3452.614829 +3452.656854 +3452.695415 +3452.772371 +3452.774802 +3452.801409 +3452.815561 +3452.826850 +3452.891286 +3452.916993 +3452.997146 +3453.011865 +3453.139138 +3453.176134 +3453.372604 +3453.397346 +3453.426150 +3453.536373 +3453.564179 +3453.702274 +3453.821055 +; +546.218501 +587.881630 +589.289454 +589.460083 +619.871142 +619.913033 +619.996916 +620.145067 +620.337342 +635.028869 +636.028968 +643.129393 +643.229327 +643.428527 +643.430059 +643.528960 +643.629559 +643.729193 +643.830292 +644.031490 +644.231890 +644.331690 +644.630025 +645.330224 +645.532055 +645.632155 +645.632721 +645.931555 +646.030123 +646.131788 +646.832020 +646.932820 +647.032420 +647.032953 +647.132719 +647.332719 +647.531387 +648.031986 +653.904807 +655.523753 +656.691151 +657.231011 +657.308866 +657.846395 +657.909166 +672.031895 +678.129991 +678.331456 +678.430723 +678.832122 +679.431721 +679.432454 +680.033819 +680.034285 +680.531987 +680.631387 +681.032985 +681.233485 +681.534184 +682.031153 +682.132751 +682.133750 +682.332951 +682.433816 +682.731185 +682.831052 +682.931551 +682.933216 +683.033083 +686.548098 +688.039239 +692.016790 +692.082991 +692.804902 +706.030962 +706.956003 +706.962064 +707.030129 +710.850038 +710.876545 +710.965190 +713.131854 +713.232687 +713.332487 +714.133185 +714.634017 +714.734217 +715.334649 +716.234881 +716.333416 +716.433050 +716.530252 +717.133582 +717.232816 +717.334647 +717.433615 +717.534014 +717.834114 +718.033947 +724.326282 +724.505669 +724.700507 +724.839169 +726.987418 +727.111960 +727.241530 +727.427111 +727.486452 +728.416621 +728.652252 +737.738689 +738.029998 +739.030163 +740.028864 +741.030927 +742.031559 +748.129721 +748.231386 +748.331719 +748.431586 +748.632085 +748.632418 +748.932484 +749.333183 +749.432983 +749.533017 +749.631118 +749.933482 +750.133416 +751.233281 +751.332715 +751.333381 +751.433048 +751.532715 +751.633381 +751.733381 +751.932981 +752.533946 +753.032880 +758.029312 +759.575631 +760.017655 +761.142662 +761.340830 +761.459778 +762.110194 +762.547123 +762.753350 +783.230186 +784.131217 +784.832349 +785.729484 +786.132847 +786.332214 +786.427119 +786.529550 +786.630982 +786.631315 +786.732280 +787.133279 +787.232146 +787.429049 +788.032112 +788.032945 +793.029776 +794.616921 +811.030424 +818.731915 +819.832314 +819.832647 +820.333179 +820.432180 +820.632812 +821.233178 +821.333011 +821.433278 +821.433611 +821.933644 +822.033377 +822.132045 +822.132544 +822.628381 +822.832477 +823.414861 +828.058346 +828.192845 +829.771465 +853.732380 +854.533511 +854.632745 +854.933710 +855.133677 +855.233743 +855.933709 +856.033609 +856.533909 +856.733609 +857.734107 +866.362004 +867.680018 +879.339081 +880.029723 +882.030953 +888.230680 +889.133943 +891.033241 +891.334573 +891.434007 +892.433706 +892.534206 +892.933972 +898.029705 +898.046288 +899.977022 +900.425007 +901.189741 +902.002095 +902.818078 +914.728689 +914.754963 +914.766551 +914.778406 +914.790960 +915.029721 +915.662221 +916.593223 +918.030517 +923.431144 +924.032276 +924.932941 +924.934107 +925.034107 +926.133739 +926.332407 +926.332873 +926.532007 +926.933738 +927.332806 +927.633904 +933.065467 +934.463634 +934.567164 +935.411885 +935.827269 +936.533662 +936.911051 +953.029217 +958.332175 +958.532042 +958.632741 +958.732408 +959.033407 +959.632607 +959.632973 +959.833206 +959.932540 +960.032307 +961.132672 +961.233371 +961.432239 +961.632005 +961.732405 +961.831939 +961.933037 +961.934036 +962.134602 +962.732104 +962.933170 +965.425675 +968.030234 +968.353810 +968.478419 +969.835660 +969.862167 +969.891904 +970.754907 +972.591069 +988.029914 +993.532939 +993.632706 +994.033838 +994.035270 +995.233936 +995.333104 +995.632171 +995.733836 +996.233836 +996.933702 +997.034701 +997.035133 +997.135033 +997.733301 +1003.030099 +1003.702626 +1004.432262 +1020.031747 +1021.439105 +1023.032011 +1029.134435 +1029.633536 +1029.934035 +1030.634634 +1030.935233 +1031.634499 +1031.834000 +1031.934632 +1032.234599 +1032.334665 +1032.335431 +1033.034665 +1037.950078 +1037.961533 +1038.029165 +1039.331495 +1040.256902 +1040.637121 +1041.927163 +1042.067756 +1042.081808 +1042.222434 +1063.130072 +1063.229506 +1063.230205 +1064.132702 +1064.332435 +1064.432169 +1064.432668 +1065.133201 +1065.233200 +1065.333700 +1065.833167 +1066.033100 +1066.733199 +1067.633365 +1067.933497 +1074.502422 +1077.345343 +1077.383005 +1098.431269 +1099.030869 +1099.230769 +1099.331102 +1099.631434 +1099.728870 +1100.030069 +1100.831766 +1108.028929 +1108.037254 +1108.519138 +1109.000689 +1109.570852 +1109.903219 +1110.624797 +1110.745609 +1111.338982 +1113.537215 +1113.574810 +1123.027582 +1124.030211 +1126.029810 +1127.029775 +1128.565272 +1128.582554 +1128.619750 +1128.632305 +1128.737266 +1128.846856 +1129.783153 +1133.027738 +1133.110588 +1133.127438 +1133.230069 +1133.432233 +1133.731633 +1133.829402 +1133.911986 +1134.029668 +1134.031666 +1134.331799 +1134.733198 +1135.033131 +1135.530899 +1135.619277 +1135.629134 +1135.629467 +1135.830133 +1135.831365 +1136.031398 +1136.433429 +1138.030064 +1144.513474 +1145.483836 +1145.965854 +1147.923760 +1161.030474 +1168.030201 +1168.531532 +1168.631932 +1168.731598 +1168.931598 +1169.333030 +1169.432430 +1170.531863 +1170.933827 +1171.333627 +1172.032394 +1172.932127 +1175.488568 +1175.642214 +1178.095658 +1180.720031 +1182.279404 +1182.939210 +1193.029143 +1193.029543 +1194.030274 +1194.614556 +1195.030240 +1198.029105 +1203.029966 +1203.130732 +1203.231298 +1204.231596 +1204.232329 +1204.332795 +1204.532828 +1204.933261 +1205.029897 +1205.129864 +1205.231695 +1205.431895 +1205.532561 +1205.533426 +1205.730796 +1205.832028 +1205.931928 +1206.032260 +1206.227865 +1206.832260 +1206.832493 +1207.133758 +1207.430827 +1207.631360 +1207.732658 +1213.038148 +1213.064654 +1213.107345 +1213.565486 +1213.922329 +1214.246671 +1217.860021 +1233.030768 +1238.029864 +1238.231529 +1238.331928 +1238.932727 +1239.633426 +1241.232925 +1241.333657 +1241.531825 +1241.831459 +1242.131891 +1242.433723 +1242.533889 +1242.733023 +1242.932390 +1243.034255 +1248.044040 +1248.146138 +1248.230320 +1248.729554 +1248.804346 +1248.817799 +1248.836580 +1248.847735 +1264.032169 +1266.030868 +1267.031700 +1273.433159 +1273.533392 +1273.632992 +1273.732859 +1273.933325 +1273.934623 +1274.122868 +1274.130128 +1274.230361 +1274.329861 +1274.434756 +1274.632891 +1274.833823 +1275.033590 +1275.233390 +1275.334822 +1275.633390 +1275.733589 +1275.734588 +1275.934522 +1276.534488 +1276.734920 +1277.133788 +1277.233654 +1277.234687 +1277.333887 +1277.533721 +1277.732888 +1286.453159 +1300.032466 +1301.032099 +1302.031232 +1308.332291 +1310.134587 +1310.233888 +1310.534687 +1311.034553 +1311.134653 +1311.334486 +1311.734386 +1311.934119 +1312.533985 +1312.734651 +1318.031283 +1319.231714 +1343.333189 +1343.831923 +1343.832755 +1343.932689 +1344.732188 +1345.232288 +1345.733886 +1345.834285 +1345.934352 +1346.733685 +1347.334550 +1353.047698 +1354.382728 +1355.278698 +1355.772570 +1355.880595 +1356.708367 +1357.598809 +1366.971593 +1366.972592 +1369.966063 +1376.066722 +1376.067289 +1377.868552 +1378.368918 +1378.468785 +1380.468217 +1386.300911 +1386.630315 +1386.730848 +1386.817061 +1387.194850 +1387.255955 +1387.657953 +1387.808536 +1388.362981 +1388.687223 +1389.284125 +1389.582793 +1389.747361 +1389.944298 +1390.017724 +1390.094447 +1390.465476 +1390.599309 +1390.900873 +1413.468217 +1414.469281 +1421.284892 +1421.428116 +1421.621755 +1421.764346 +1421.819724 +1421.975901 +1422.209334 +1422.386956 +1422.813296 +1422.914228 +1423.058617 +1423.511630 +1423.605037 +1423.698876 +1424.019555 +1424.282026 +1424.375932 +1424.776597 +1424.857982 +1424.873067 +1425.306700 +1425.375498 +1425.536237 +1425.640033 +1425.686120 +1425.713459 +1425.792713 +1425.871368 +1425.896976 +1425.931175 +1435.968527 +1436.742819 +1436.768626 +1437.953607 +1437.967327 +1438.968924 +1446.971047 +1447.071247 +1448.571678 +1448.671012 +1450.372209 +1450.471909 +1450.571876 +1455.983026 +1456.501407 +1456.595413 +1456.673069 +1456.833009 +1456.969006 +1457.284690 +1457.543497 +1457.605802 +1458.988684 +1459.722783 +1459.789682 +1460.245326 +1460.672765 +1461.463207 +1471.971622 +1482.173609 +1483.673708 +1485.273606 +1485.373073 +1485.473173 +1485.572274 +1491.486321 +1491.794978 +1491.861878 +1491.969470 +1491.995378 +1492.105301 +1492.414192 +1492.496743 +1493.077195 +1493.364341 +1494.069002 +1494.475096 +1494.585052 +1494.885052 +1494.970666 +1495.034469 +1495.049088 +1495.345657 +1495.372830 +1495.402034 +1495.519483 +1495.667102 +1495.681055 +1495.696440 +1495.767901 +1495.840129 +1495.966836 +1509.638384 +1516.171877 +1516.672975 +1516.772709 +1516.972975 +1517.272908 +1517.373641 +1518.073740 +1518.173274 +1518.373706 +1518.972907 +1519.973871 +1520.673571 +1526.919552 +1527.254650 +1527.465472 +1528.362508 +1528.660676 +1528.842960 +1528.927242 +1529.177858 +1529.388281 +1530.053049 +1530.274427 +1530.288080 +1530.344590 +1530.415919 +1530.446788 +1530.475426 +1530.502798 +1530.679488 +1530.800667 +1530.864303 +1541.971518 +1543.971916 +1544.972181 +1550.971742 +1550.977969 +1551.773340 +1551.874705 +1551.974738 +1552.073539 +1553.973438 +1554.273637 +1554.373637 +1554.473604 +1554.573604 +1554.773803 +1554.873437 +1554.973403 +1555.074802 +1555.174868 +1555.873835 +1555.874635 +1560.986351 +1562.125178 +1562.439896 +1562.456080 +1562.992276 +1563.092842 +1563.417717 +1563.793874 +1564.354579 +1564.578489 +1564.870596 +1564.931802 +1565.430169 +1565.616483 +1565.705927 +1565.811488 +1565.827505 +1565.966766 +1573.411547 +1578.972380 +1585.971674 +1586.673438 +1586.973904 +1587.173671 +1587.873404 +1587.973437 +1587.973870 +1588.773536 +1590.774000 +1596.231970 +1596.515919 +1596.563139 +1596.821946 +1597.322812 +1597.360174 +1597.571629 +1597.767566 +1598.383650 +1598.641358 +1599.187378 +1599.463069 +1599.547684 +1599.651814 +1599.704494 +1599.797368 +1599.934164 +1600.103495 +1600.333598 +1600.456941 +1600.567297 +1600.821809 +1621.373703 +1622.073569 +1631.189078 +1631.585215 +1631.830270 +1631.911655 +1632.267432 +1633.169929 +1633.290341 +1633.451114 +1634.084413 +1634.890440 +1635.256273 +1635.457306 +1635.721807 +1656.573202 +1657.273501 +1666.012653 +1666.564301 +1666.820711 +1666.902063 +1667.332232 +1667.399665 +1667.425572 +1667.645652 +1668.662900 +1668.974854 +1669.115247 +1669.458670 +1669.599429 +1669.660701 +1670.032163 +1670.177218 +1670.540387 +1670.571057 +1670.751010 +1670.889971 +1690.971436 +1692.773032 +1693.273265 +1695.174395 +1700.971626 +1701.525505 +1701.721142 +1701.940090 +1702.678284 +1702.791837 +1703.071457 +1703.352709 +1703.631730 +1703.980014 +1704.576284 +1704.635358 +1704.991069 +1705.047279 +1705.727465 +1705.771121 +1705.788304 +1705.909150 +1718.310769 +1720.972438 +1723.958949 +1726.373798 +1726.874597 +1727.573730 +1727.674463 +1728.273297 +1728.273596 +1730.273461 +1730.373927 +1733.000065 +1734.372691 +1735.976153 +1735.984444 +1736.267827 +1736.492036 +1736.685776 +1736.958503 +1737.016378 +1737.057637 +1737.172389 +1737.510484 +1737.693034 +1737.822838 +1738.053940 +1738.222138 +1738.432194 +1738.618574 +1738.921971 +1739.209916 +1739.417308 +1739.488437 +1739.653738 +1740.151507 +1740.347677 +1740.965026 +1753.972505 +1761.673197 +1762.773995 +1771.158568 +1771.431129 +1772.006320 +1772.613912 +1772.821237 +1773.210181 +1773.351307 +1774.297926 +1774.847409 +1775.164625 +1775.352137 +1775.589133 +1775.631724 +1775.698657 +1775.833855 +1775.926196 +1788.972703 +1795.036134 +1796.474461 +1798.674358 +1798.875291 +1799.572992 +1799.674258 +1806.441916 +1806.633125 +1806.756102 +1807.291200 +1807.374250 +1807.670853 +1808.096094 +1808.221668 +1808.341915 +1808.391465 +1808.466889 +1808.482774 +1808.549307 +1808.616207 +1808.723866 +1808.983372 +1809.114241 +1809.329959 +1809.487068 +1809.566622 +1809.609279 +1809.739016 +1809.822999 +1809.967687 +1810.283471 +1810.456298 +1810.607780 +1810.639248 +1810.740047 +1820.972538 +1832.174125 +1832.475190 +1832.675290 +1833.174424 +1834.374256 +1835.275421 +1835.373922 +1835.574322 +1835.775487 +1835.875553 +1840.972618 +1841.243014 +1841.404752 +1841.542947 +1841.644878 +1842.130292 +1842.211977 +1842.424997 +1842.470552 +1842.711111 +1842.975846 +1843.327927 +1843.490997 +1844.249871 +1844.397922 +1844.440546 +1844.500786 +1844.746973 +1844.819634 +1845.006413 +1845.193593 +1845.234918 +1845.368051 +1845.486300 +1845.596423 +1858.972900 +1859.972566 +1866.073026 +1866.773957 +1866.973757 +1867.073691 +1868.173556 +1870.574287 +1876.396026 +1876.667088 +1876.750371 +1877.423863 +1878.077542 +1878.250836 +1878.932587 +1879.044508 +1879.337714 +1879.415037 +1879.459859 +1879.588264 +1879.890328 +1880.038313 +1880.187364 +1880.426158 +1880.635981 +1880.665285 +1880.844872 +1880.940510 +1901.974655 +1902.274821 +1904.974885 +1905.573752 +1910.986134 +1911.121266 +1911.261525 +1911.320033 +1911.426327 +1911.436983 +1911.447239 +1911.620399 +1911.687765 +1911.727592 +1911.928558 +1912.148837 +1912.428091 +1912.590229 +1912.907611 +1912.949635 +1913.016369 +1913.230854 +1913.366651 +1913.865086 +1914.111672 +1914.402181 +1914.650300 +1914.854662 +1914.922660 +1914.952997 +1914.998085 +1915.192091 +1915.449233 +1915.476040 +1915.680435 +1915.771477 +1915.840175 +1915.871044 +1930.971862 +1937.074120 +1938.273020 +1938.370090 +1938.473153 +1938.573286 +1938.774318 +1939.573185 +1940.674549 +1940.770354 +1941.459564 +1946.159093 +1946.308576 +1946.524294 +1946.618599 +1946.661490 +1946.759225 +1946.832419 +1947.354296 +1947.416667 +1947.577173 +1948.483832 +1948.619929 +1949.329919 +1949.529952 +1949.585396 +1950.009405 +1950.180767 +1950.239408 +1950.361952 +1950.643004 +1950.777237 +1950.791289 +1950.833947 +1950.917197 +1961.971231 +1964.971462 +1965.972326 +1971.172654 +1971.272088 +1972.372320 +1972.572952 +1972.673086 +1973.772885 +1973.773551 +1981.096487 +1981.161289 +1981.319331 +1981.357726 +1981.397286 +1981.496786 +1981.498918 +1981.678371 +1981.725524 +1982.072843 +1982.836445 +1982.912802 +1983.550364 +1983.587893 +1984.250130 +1984.349131 +1984.454825 +1984.468911 +1984.506574 +1984.691355 +1984.785561 +1984.944735 +1985.011501 +1985.379367 +1985.689123 +1985.725753 +1985.766146 +1985.954458 +1995.972097 +1997.971662 +2006.071254 +2006.272686 +2006.674250 +2006.774417 +2006.873684 +2007.073051 +2007.173717 +2007.273717 +2007.874915 +2008.174981 +2008.273716 +2008.373616 +2008.473816 +2008.573050 +2009.173415 +2009.373049 +2010.175179 +2010.475146 +2010.673813 +2016.139376 +2017.050197 +2017.123990 +2017.438708 +2017.611835 +2017.863184 +2017.988025 +2018.127552 +2018.720092 +2018.764681 +2018.820459 +2018.847365 +2018.919293 +2018.975836 +2019.040938 +2019.158687 +2019.350162 +2019.435709 +2019.553492 +2019.670241 +2019.930448 +2019.991353 +2020.277866 +2020.535475 +2020.616161 +2020.912431 +2020.925452 +2020.939604 +2031.972960 +2035.972889 +2040.972584 +2042.476046 +2042.574980 +2043.275346 +2045.075344 +2045.574611 +2045.874644 +2050.887127 +2051.306240 +2051.499613 +2051.698881 +2051.871042 +2052.641271 +2052.914098 +2052.952859 +2053.282995 +2053.739904 +2054.110933 +2054.993816 +2055.086689 +2055.258284 +2055.271005 +2055.310832 +2055.417658 +2055.599077 +2055.704371 +2055.945030 +2069.973255 +2076.173681 +2077.076145 +2078.175244 +2079.576109 +2085.980431 +2085.996415 +2086.288390 +2086.321756 +2086.410301 +2086.602742 +2086.691353 +2087.882328 +2088.551158 +2088.568174 +2088.735973 +2088.792583 +2088.793149 +2088.805970 +2089.098777 +2089.458650 +2089.667008 +2089.849392 +2089.893181 +2090.123151 +2090.259814 +2090.464010 +2090.587320 +2090.631509 +2090.712062 +2090.755718 +2101.973489 +2104.973453 +2111.275178 +2112.674411 +2113.074643 +2113.174710 +2113.274410 +2114.874442 +2115.074875 +2115.076040 +2115.174442 +2115.374541 +2115.675040 +2115.774841 +2115.874507 +2115.974374 +2121.671505 +2121.752091 +2121.857752 +2121.949959 +2122.106569 +2122.347761 +2122.909798 +2123.220154 +2123.277630 +2124.041066 +2124.397543 +2124.986753 +2125.211261 +2125.475197 +2125.855483 +2125.912360 +2146.273378 +2146.474244 +2146.673344 +2149.874806 +2150.374939 +2156.219389 +2156.624683 +2156.671103 +2157.121153 +2157.350257 +2158.036803 +2158.090582 +2158.203503 +2159.003735 +2159.222150 +2159.378460 +2160.437899 +2160.464206 +2160.480224 +2160.591079 +2160.820750 +2160.942028 +2181.071745 +2181.171878 +2181.971744 +2182.372310 +2182.472176 +2183.071943 +2183.172276 +2183.972275 +2184.073174 +2184.172075 +2184.872107 +2184.873306 +2184.973639 +2191.383623 +2191.822417 +2192.337901 +2192.557847 +2192.815356 +2193.032772 +2193.304900 +2193.468136 +2193.509828 +2193.645325 +2194.492910 +2194.756613 +2195.022547 +2195.063572 +2195.117685 +2195.162440 +2195.533535 +2195.624311 +2195.637565 +2195.772763 +2195.885983 +2200.201263 +2206.704287 +2208.704751 +2210.701619 +2216.700680 +2216.701147 +2217.402511 +2217.602511 +2219.002177 +2219.202776 +2226.828642 +2227.024413 +2227.082089 +2227.102501 +2227.170567 +2227.285718 +2227.400936 +2227.643227 +2227.969300 +2228.220649 +2228.239630 +2228.343259 +2228.972629 +2229.055913 +2229.210491 +2229.279056 +2229.768067 +2230.024377 +2230.379821 +2230.483317 +2230.705195 +2230.720879 +2230.766967 +2230.783617 +2230.843723 +2230.890709 +2230.951216 +2230.964236 +2231.046986 +2231.168764 +2231.285248 +2231.358907 +2241.705550 +2242.706648 +2243.707780 +2244.702118 +2251.803076 +2251.907105 +2252.103808 +2261.857678 +2261.999203 +2262.089613 +2262.631071 +2262.960774 +2262.999302 +2263.172595 +2263.260674 +2263.341093 +2263.522212 +2263.658376 +2263.670730 +2264.010323 +2264.049351 +2264.480086 +2264.784582 +2264.869497 +2265.166832 +2265.194172 +2265.326339 +2265.411354 +2265.526839 +2265.555710 +2265.740924 +2265.814884 +2265.838760 +2265.936828 +2266.050281 +2266.064600 +2266.105193 +2266.119046 +2266.206958 +2266.234630 +2266.336029 +2266.350181 +2266.643754 +2276.703617 +2276.710677 +2277.703983 +2278.704048 +2280.703913 +2281.704412 +2286.703441 +2286.704173 +2286.804406 +2287.305472 +2291.505734 +2291.605700 +2296.908093 +2297.182818 +2297.218182 +2297.260240 +2297.343956 +2297.407693 +2297.971761 +2298.097302 +2298.294338 +2298.509823 +2298.590342 +2298.982649 +2299.018247 +2299.125506 +2299.372426 +2299.588243 +2299.613218 +2299.932066 +2299.957474 +2300.009255 +2300.038193 +2300.072558 +2300.239924 +2300.252212 +2300.322242 +2300.348049 +2300.374423 +2300.399564 +2300.466697 +2300.492471 +2300.521376 +2300.535761 +2300.548782 +2300.662268 +2300.675422 +2300.742488 +2300.758006 +2300.856440 +2300.981881 +2301.037326 +2301.050446 +2301.181182 +2301.292138 +2301.371525 +2301.454009 +2301.528368 +2301.558071 +2301.584512 +2315.704644 +2315.709173 +2316.710004 +2321.703706 +2321.905237 +2322.106436 +2325.706066 +2326.105899 +2326.605998 +2331.730669 +2332.050448 +2332.206792 +2333.363567 +2333.480750 +2334.025372 +2334.073090 +2334.219377 +2334.556973 +2334.615581 +2334.915547 +2335.254808 +2335.367428 +2335.510618 +2335.742020 +2335.890172 +2335.993834 +2336.278483 +2336.322605 +2336.441620 +2336.657037 +2356.704736 +2358.606599 +2361.107496 +2366.708855 +2366.715415 +2366.797467 +2367.110786 +2367.545018 +2367.786543 +2368.217712 +2368.242087 +2368.293669 +2368.398431 +2369.034594 +2369.123405 +2369.150644 +2369.406688 +2369.562965 +2369.619009 +2369.661333 +2369.702725 +2369.739055 +2369.798496 +2369.824836 +2369.947247 +2370.246914 +2370.275352 +2370.407553 +2370.438289 +2370.449811 +2370.467393 +2370.480014 +2370.568425 +2370.610883 +2370.641452 +2370.655971 +2370.699994 +2370.718542 +2370.778282 +2370.838322 +2370.942751 +2370.998661 +2371.128565 +2371.360333 +2371.527565 +2371.593166 +2371.638787 +2371.655737 +2371.703123 +2383.705075 +2386.709701 +2391.806333 +2396.707627 +2399.612352 +2399.621310 +2401.928867 +2402.006389 +2402.316745 +2402.511517 +2402.728433 +2402.870757 +2402.975552 +2403.212415 +2403.319608 +2403.750876 +2403.816477 +2403.957136 +2404.062298 +2404.433460 +2404.487705 +2404.501092 +2404.558934 +2404.616210 +2404.716376 +2404.875584 +2404.904089 +2404.998760 +2405.103289 +2405.165793 +2405.191767 +2405.437255 +2406.033058 +2406.111979 +2406.140984 +2406.202689 +2406.323534 +2406.338353 +2406.400990 +2417.710469 +2418.710069 +2419.705372 +2419.712632 +2426.805765 +2427.006564 +2436.703258 +2436.876684 +2437.426467 +2437.684908 +2438.170189 +2438.354738 +2438.416343 +2438.455570 +2438.469556 +2438.598460 +2438.758633 +2439.219039 +2439.245946 +2439.356668 +2439.881010 +2439.954004 +2439.979778 +2440.304153 +2440.482708 +2440.529095 +2440.588002 +2440.618039 +2440.707749 +2440.811312 +2440.858864 +2441.061229 +2441.285071 +2441.286536 +2441.487835 +2441.518737 +2441.551704 +2451.705540 +2461.805563 +2462.006296 +2462.906495 +2463.006628 +2463.406727 +2466.206358 +2471.714977 +2471.902223 +2471.976849 +2472.179579 +2472.373785 +2472.468690 +2472.800125 +2472.908583 +2473.066558 +2473.080111 +2473.399624 +2473.549474 +2473.884373 +2474.105518 +2474.188035 +2474.230060 +2474.273017 +2474.852903 +2474.882174 +2475.131224 +2475.133722 +2475.191864 +2475.251704 +2475.400422 +2475.431824 +2475.538517 +2475.568254 +2475.778410 +2475.793695 +2475.807947 +2476.036885 +2476.054234 +2476.068753 +2476.177144 +2476.235885 +2476.349438 +2476.469818 +2476.695559 +2491.705767 +2496.710557 +2496.805961 +2497.006660 +2497.106760 +2497.206727 +2497.306927 +2497.406960 +2497.506960 +2499.607157 +2506.832558 +2506.984573 +2507.108582 +2507.177846 +2507.433024 +2507.482641 +2507.557632 +2507.594895 +2507.663027 +2507.696826 +2507.762727 +2507.796926 +2507.946343 +2508.113276 +2508.290832 +2508.390732 +2508.466389 +2508.572250 +2508.624265 +2508.903385 +2508.998989 +2509.106615 +2509.159329 +2509.693494 +2509.817204 +2509.965755 +2510.030723 +2510.156264 +2510.170683 +2510.224663 +2510.359861 +2510.444209 +2510.503650 +2510.577310 +2510.695891 +2510.769317 +2510.783770 +2510.827692 +2510.900786 +2510.943410 +2511.005348 +2511.109743 +2511.125228 +2511.198688 +2511.305614 +2511.349137 +2511.546273 +2511.616569 +2511.682370 +2521.709400 +2522.705769 +2524.705534 +2531.805793 +2532.106659 +2541.909379 +2541.974048 +2542.056299 +2542.211743 +2542.614374 +2542.770118 +2542.987500 +2543.014074 +2543.053001 +2543.189498 +2543.289065 +2543.404183 +2543.483637 +2543.598022 +2543.623797 +2543.728192 +2543.885368 +2543.925528 +2543.976643 +2544.179141 +2544.224262 +2544.284702 +2544.412940 +2544.450203 +2544.512440 +2544.580839 +2544.816336 +2544.842077 +2544.946373 +2545.056130 +2545.105147 +2545.230255 +2545.254797 +2545.392260 +2545.430888 +2545.469815 +2545.511440 +2545.894191 +2545.953831 +2545.966718 +2546.191693 +2546.264187 +2546.387264 +2546.456561 +2546.494456 +2546.595289 +2546.654596 +2556.705802 +2566.805825 +2566.905958 +2567.206857 +2576.710510 +2576.833687 +2576.942545 +2577.148172 +2577.483470 +2577.692627 +2577.906113 +2577.966220 +2578.009443 +2578.172214 +2578.312473 +2578.639712 +2578.733851 +2578.826359 +2579.136249 +2579.639845 +2579.658826 +2579.859058 +2580.221429 +2580.333550 +2580.598185 +2580.873410 +2581.322127 +2581.698850 +2601.806156 +2601.906489 +2602.006789 +2602.206256 +2602.607188 +2603.506621 +2606.507084 +2611.709010 +2612.157161 +2612.413072 +2612.487431 +2612.584966 +2612.914570 +2612.960491 +2612.997154 +2613.313237 +2613.364420 +2613.402848 +2613.803547 +2614.065251 +2614.146204 +2614.513569 +2614.785131 +2615.107208 +2615.278037 +2615.516898 +2615.764517 +2615.844837 +2615.961553 +2616.000880 +2616.028420 +2616.187693 +2616.233514 +2616.393954 +2616.653361 +2616.697317 +2627.712457 +2629.705995 +2630.706560 +2637.007120 +2637.307086 +2637.407219 +2638.906885 +2641.306483 +2646.708975 +2647.007543 +2647.466350 +2647.517499 +2647.633716 +2647.701148 +2647.790859 +2648.076173 +2648.450698 +2648.502879 +2648.543572 +2648.712703 +2649.057258 +2649.136911 +2650.088692 +2650.123823 +2650.601612 +2650.750896 +2650.796650 +2650.989424 +2651.040905 +2651.110169 +2651.154825 +2651.287858 +2651.562750 +2671.906685 +2672.007052 +2675.106982 +2676.107614 +2676.607546 +2682.685596 +2683.378302 +2683.391689 +2683.460720 +2683.622758 +2683.987259 +2684.321558 +2684.334312 +2684.377635 +2684.391255 +2684.478101 +2684.519060 +2685.013266 +2685.042836 +2685.212999 +2685.393485 +2685.480964 +2685.977800 +2686.008869 +2686.082162 +2686.187857 +2686.235775 +2686.339138 +2686.550194 +2686.581396 +2686.609435 +2686.656055 +2696.705628 +2697.712687 +2699.981649 +2701.706489 +2707.107316 +2707.206583 +2708.407348 +2711.207512 +2716.715998 +2716.787227 +2716.862884 +2716.983264 +2717.102944 +2717.214699 +2717.358455 +2717.406307 +2717.474805 +2717.561984 +2717.694085 +2717.891854 +2718.071108 +2718.406939 +2718.500312 +2718.609336 +2718.922356 +2719.071174 +2719.151393 +2719.259252 +2719.312798 +2719.437707 +2719.605172 +2719.892518 +2719.975535 +2720.017693 +2720.060017 +2720.159717 +2720.186957 +2720.253290 +2720.314096 +2720.328515 +2720.342801 +2720.445864 +2720.697812 +2720.772404 +2720.868142 +2720.895647 +2721.176433 +2721.233476 +2721.276533 +2721.304571 +2721.495713 +2721.614161 +2721.629846 +2731.705793 +2741.709846 +2741.806715 +2742.507647 +2751.710402 +2751.716596 +2751.849163 +2751.932246 +2752.014431 +2752.140937 +2752.450861 +2752.500910 +2752.569375 +2752.626685 +2752.738306 +2753.399744 +2753.639870 +2753.679198 +2753.829647 +2753.867842 +2754.348927 +2754.515294 +2754.700708 +2754.883126 +2755.058350 +2755.177132 +2755.533442 +2755.637970 +2755.699209 +2755.744530 +2755.941766 +2755.959382 +2756.092981 +2756.122818 +2756.607833 +2756.684090 +2776.805448 +2781.306343 +2787.202707 +2787.280596 +2787.379996 +2787.463080 +2787.576799 +2787.765710 +2787.977065 +2788.085457 +2788.109500 +2788.267308 +2788.409066 +2788.694114 +2788.733075 +2788.914361 +2789.087521 +2789.245929 +2789.460481 +2789.780993 +2789.880160 +2790.189950 +2790.422551 +2790.440633 +2790.512194 +2790.616490 +2790.717256 +2790.817689 +2790.897276 +2790.898308 +2791.199906 +2791.563376 +2791.677461 +2805.705786 +2811.805879 +2811.906212 +2814.307142 +2816.007241 +2822.053688 +2822.301940 +2822.341100 +2822.554487 +2822.753521 +2822.879395 +2823.239301 +2823.793646 +2823.815991 +2823.852421 +2823.957815 +2824.019920 +2824.424315 +2824.655284 +2824.707398 +2825.336535 +2825.890114 +2825.991113 +2826.206631 +2826.322815 +2826.612491 +2826.672898 +2834.880049 +2837.880479 +2839.884839 +2848.782865 +2849.382099 +2854.891551 +2855.128713 +2855.442466 +2855.694847 +2855.838836 +2855.941533 +2856.101773 +2856.164909 +2856.353787 +2856.473334 +2856.521286 +2856.793114 +2856.818921 +2856.899641 +2856.998775 +2857.072068 +2857.308631 +2857.617089 +2857.957015 +2858.074231 +2858.117355 +2858.546659 +2858.738134 +2858.911726 +2858.938533 +2859.126811 +2859.140830 +2859.244194 +2859.349089 +2859.407064 +2859.508662 +2859.525978 +2862.332769 +2862.360141 +2871.885440 +2874.887302 +2879.983234 +2880.083600 +2880.183900 +2880.483799 +2881.884364 +2882.285063 +2882.384763 +2890.006401 +2890.195711 +2890.287053 +2890.365142 +2890.484955 +2890.932507 +2891.212227 +2891.371701 +2891.656582 +2892.068536 +2892.260944 +2892.306365 +2892.452186 +2892.581023 +2892.759412 +2892.785219 +2892.954183 +2893.050054 +2893.133137 +2893.548522 +2893.732870 +2893.902601 +2893.915954 +2894.128674 +2894.226843 +2894.317685 +2894.375194 +2894.388880 +2894.390579 +2894.447788 +2894.476160 +2894.565171 +2894.624744 +2905.890134 +2906.886837 +2906.887203 +2924.940065 +2925.310261 +2925.413158 +2925.850687 +2926.072798 +2926.230574 +2926.627410 +2926.678492 +2927.165105 +2927.178924 +2927.484352 +2927.606263 +2927.843592 +2927.926876 +2928.443692 +2928.860175 +2928.873328 +2928.913788 +2928.955746 +2928.971030 +2928.997704 +2929.013754 +2929.028373 +2929.042725 +2929.154247 +2929.247887 +2929.271330 +2929.284716 +2929.352382 +2929.818582 +2942.887234 +2943.890762 +2949.891889 +2949.987393 +2949.991256 +2951.088790 +2960.041296 +2960.404099 +2960.532271 +2960.759910 +2961.289113 +2961.621314 +2962.029539 +2962.098803 +2962.164537 +2962.303298 +2962.524643 +2962.723711 +2962.839828 +2963.122978 +2963.393973 +2963.528771 +2963.638861 +2963.666334 +2963.694838 +2963.748218 +2963.764435 +2963.948351 +2964.045587 +2964.142723 +2964.170096 +2964.479786 +2964.522244 +2964.536063 +2964.745354 +2964.876456 +2974.891531 +2977.891994 +2994.888713 +2995.019383 +2995.326076 +2995.385150 +2995.564104 +2995.693807 +2995.728306 +2996.064370 +2996.360440 +2996.487013 +2996.510124 +2996.675891 +2996.940926 +2997.216383 +2997.421045 +2997.540459 +2997.579187 +2997.849483 +2998.482849 +2998.495003 +2998.554244 +2998.680018 +2998.722742 +2998.736795 +2998.823142 +2998.980284 +2999.279252 +2999.323041 +2999.337993 +2999.410820 +2999.550280 +2999.603028 +2999.747017 +2999.789408 +3019.889088 +3020.086524 +3020.186623 +3020.287489 +3020.386157 +3020.486090 +3020.586457 +3022.886554 +3030.124276 +3030.237895 +3030.408092 +3030.560173 +3030.726140 +3030.934931 +3031.238094 +3031.361238 +3031.685413 +3031.749283 +3031.812453 +3032.119712 +3032.302662 +3032.584913 +3032.692472 +3032.762602 +3032.952911 +3033.162002 +3033.308222 +3033.337260 +3033.409387 +3033.600896 +3033.630033 +3033.787176 +3033.835461 +3034.163799 +3034.180948 +3034.342453 +3034.359370 +3034.528567 +3054.889552 +3054.986689 +3055.087188 +3056.788318 +3057.687518 +3063.607592 +3064.896269 +3065.124574 +3065.228137 +3065.919112 +3066.007190 +3066.178619 +3066.203893 +3066.309321 +3066.881548 +3067.352943 +3067.434162 +3067.461701 +3067.544352 +3067.590106 +3067.722507 +3067.873422 +3067.997498 +3068.014747 +3068.211850 +3068.389872 +3068.433528 +3068.537025 +3069.179948 +3069.212548 +3069.354606 +3069.710450 +3069.813747 +3081.887095 +3090.087386 +3090.287686 +3090.687852 +3091.188584 +3091.588617 +3091.687917 +3091.688583 +3091.788583 +3092.487284 +3093.387383 +3094.387915 +3094.487515 +3100.086077 +3100.387576 +3100.550479 +3100.705890 +3100.756839 +3100.867096 +3100.930166 +3101.060569 +3101.124138 +3101.278584 +3101.568727 +3101.738690 +3101.792935 +3101.831730 +3102.484643 +3102.670557 +3102.765029 +3102.847247 +3103.007520 +3103.200260 +3103.318408 +3103.332528 +3103.436657 +3103.452508 +3103.666693 +3103.710583 +3103.775085 +3103.803856 +3103.850076 +3103.879913 +3103.998428 +3104.322204 +3104.352740 +3104.555004 +3104.662496 +3104.664261 +3117.886293 +3126.188482 +3126.487783 +3127.387748 +3127.887681 +3134.889739 +3134.986342 +3135.057937 +3135.553308 +3135.692502 +3135.979048 +3136.944216 +3137.116943 +3137.430995 +3137.852640 +3137.883709 +3137.898061 +3137.940718 +3138.099226 +3138.246512 +3138.546079 +3138.620737 +3138.773718 +3138.848476 +3139.031826 +3139.123534 +3139.834289 +3139.862461 +3150.890489 +3154.886522 +3154.890685 +3159.885585 +3160.287516 +3161.887348 +3170.452341 +3170.912480 +3170.961198 +3171.308251 +3171.462929 +3171.568523 +3172.048110 +3172.165060 +3172.346178 +3172.674616 +3172.736821 +3172.802854 +3173.468621 +3173.616573 +3173.839816 +3174.090932 +3174.107981 +3174.708514 +3174.785536 +3174.857131 +3194.986515 +3195.086848 +3195.487081 +3197.287146 +3205.025067 +3205.528429 +3205.856867 +3206.365025 +3206.478811 +3206.715408 +3206.914509 +3206.959996 +3206.987336 +3207.194695 +3207.512510 +3207.537219 +3207.808048 +3208.047874 +3208.343179 +3208.431790 +3208.705882 +3208.719668 +3208.804750 +3208.945476 +3208.959562 +3209.026295 +3209.068786 +3209.111410 +3209.250803 +3209.278576 +3209.305848 +3209.405615 +3209.492395 +3209.716570 +3224.889682 +3229.986181 +3233.686543 +3234.486842 +3234.687741 +3240.181741 +3240.520602 +3240.551571 +3240.848374 +3241.570152 +3241.909112 +3242.065056 +3242.212708 +3242.710876 +3242.944443 +3243.427692 +3243.624329 +3243.749870 +3243.875977 +3244.088597 +3244.261391 +3244.689096 +3269.686940 +3275.116605 +3275.222765 +3275.873281 +3275.984569 +3276.042978 +3276.548838 +3277.069450 +3277.434951 +3277.449636 +3277.529157 +3277.559326 +3277.646473 +3277.883668 +3277.943509 +3278.134051 +3278.582802 +3279.149868 +3279.303081 +3279.452731 +3290.885920 +3293.885983 +3294.889679 +3300.086677 +3300.386943 +3310.178941 +3310.768717 +3311.018101 +3311.146439 +3311.205880 +3311.452566 +3311.724294 +3311.989096 +3312.097054 +3312.326358 +3312.445139 +3312.536281 +3312.787130 +3312.963986 +3313.120729 +3313.162088 +3313.249700 +3313.383466 +3313.562088 +3313.755328 +3313.905344 +3314.026989 +3314.043672 +3314.552929 +3314.583465 +3314.661587 +3325.886085 +3335.887473 +3345.616768 +3346.133817 +3346.465018 +3346.514869 +3346.746237 +3346.747436 +3347.008907 +3347.036513 +3347.212104 +3347.293822 +3347.324258 +3347.407408 +3347.564052 +3347.809972 +3348.069246 +3348.680434 +3348.723358 +3348.949798 +3349.145735 +3349.221259 +3349.360187 +3360.268168 +3362.885581 +3363.886513 +3370.387672 +3371.588104 +3371.687970 +3373.288168 +3379.886663 +3380.443206 +3380.484032 +3380.648767 +3381.584664 +3381.888093 +3382.099249 +3382.135446 +3382.147134 +3382.606741 +3382.771176 +3383.160619 +3383.289990 +3383.409570 +3383.910036 +3383.952860 +3384.079267 +3384.674238 +3384.704474 +3384.733045 +3384.777934 +3398.891473 +3404.886272 +3404.987404 +3407.388201 +3414.989525 +3415.112902 +3415.200781 +3415.683864 +3415.757423 +3416.248765 +3416.341838 +3416.690489 +3416.811435 +3417.036776 +3417.179067 +3417.219493 +3417.275737 +3417.872440 +3418.144334 +3418.246998 +3418.657887 +3418.850361 +3419.241303 +3419.557986 +3430.890375 +3439.986437 +3442.088000 +3443.887998 +3444.187998 +3449.888891 +3450.701677 +3450.724488 +3450.974704 +3451.587391 +3451.695782 +3451.720058 +3452.037041 +3452.444366 +3452.532245 +3452.567909 +3452.670373 +3452.722888 +3452.749594 +3452.839571 +3453.291352 +3453.540036 +3453.607902 +3453.704372 +3454.080961 +3454.092350 +3454.176133 +3454.242067 +; +550.127688 +550.555327 +550.647834 +550.747568 +591.678130 +601.314051 +601.393837 +601.554144 +601.737793 +621.611033 +633.029304 +633.029870 +635.028802 +636.028102 +636.028402 +636.108088 +636.800329 +638.030131 +638.031563 +641.087204 +641.477813 +641.485439 +641.492998 +641.505952 +643.228960 +643.329693 +643.429693 +643.528860 +643.629493 +643.630359 +643.730392 +643.830691 +643.931424 +644.131823 +644.132456 +644.332323 +644.431790 +644.629525 +644.731057 +644.830491 +645.232189 +645.632588 +645.732488 +645.832388 +646.331122 +646.430256 +646.731821 +646.732820 +646.932653 +647.232686 +647.233352 +647.332420 +647.332586 +647.333185 +647.432053 +647.531254 +647.630788 +647.832286 +647.832552 +647.931786 +648.031953 +653.059154 +653.893186 +654.005939 +654.461250 +654.568543 +654.585526 +654.653092 +654.938739 +655.187590 +655.985092 +656.062614 +656.063213 +656.932943 +657.002673 +657.042700 +657.181461 +657.230911 +657.365177 +657.481094 +657.628114 +657.661680 +657.845163 +657.944164 +657.946395 +668.030934 +669.029634 +669.030433 +670.029733 +670.030399 +670.030965 +671.030298 +671.030864 +672.031063 +672.715511 +672.768125 +672.825168 +675.431659 +678.129858 +678.430057 +678.431656 +678.532488 +678.832788 +678.932588 +678.933087 +679.131422 +679.432354 +679.432687 +679.933919 +679.934618 +680.034385 +680.133919 +680.531354 +680.833185 +680.933984 +681.132985 +681.233318 +681.233751 +681.334384 +681.434383 +681.535083 +681.829388 +682.031020 +682.133384 +682.232851 +682.234649 +682.433716 +682.434482 +682.534615 +682.534815 +682.633883 +683.033017 +683.034548 +688.046798 +688.700110 +689.176467 +689.252591 +689.381861 +689.522221 +690.107968 +690.251258 +690.560548 +690.594647 +690.685290 +690.773935 +691.002406 +691.236338 +691.474267 +691.596411 +691.783424 +691.802638 +691.869937 +691.977763 +692.082824 +692.164576 +692.274366 +692.274899 +692.420087 +692.491249 +692.650523 +692.771635 +692.804102 +692.804768 +692.957882 +703.032397 +704.666095 +706.030796 +708.033791 +713.131222 +713.131788 +713.231721 +713.232187 +713.232487 +713.432154 +713.532420 +713.633186 +713.733452 +713.934318 +714.129289 +714.633851 +714.835449 +714.934417 +715.034350 +715.233983 +715.633384 +715.732551 +715.833816 +716.034815 +716.134449 +716.234782 +717.135114 +717.333948 +717.334514 +717.435346 +717.534447 +717.634847 +717.734780 +717.735479 +718.035113 +723.038438 +723.039403 +723.939336 +724.009899 +724.043865 +724.326115 +724.392749 +724.598942 +725.080227 +725.213893 +725.378762 +725.550090 +725.655884 +725.918488 +726.307166 +726.451321 +726.718754 +726.882956 +726.988684 +727.111860 +727.225946 +727.241397 +727.297941 +727.486385 +727.544427 +727.596542 +727.721716 +727.832972 +727.986418 +741.030261 +743.028394 +743.029560 +748.030188 +748.030487 +748.130421 +748.131420 +748.231486 +748.232185 +748.332485 +748.431519 +748.532352 +748.732218 +748.832451 +748.833084 +748.932651 +749.232418 +749.432551 +749.532850 +749.631118 +749.631851 +749.632384 +749.633150 +749.731318 +749.732617 +749.732983 +749.833349 +749.933349 +750.033349 +750.132983 +750.332749 +750.432217 +750.528387 +750.529919 +750.630252 +750.731484 +750.733015 +750.931517 +751.033248 +751.233348 +751.332982 +751.333281 +751.432948 +751.533081 +751.633947 +751.733248 +751.832681 +752.332048 +752.433313 +752.533713 +752.633513 +752.931948 +752.932780 +756.187123 +756.685723 +756.905703 +758.028712 +758.045562 +758.081926 +758.201872 +758.283824 +759.020253 +759.101872 +759.353553 +759.520819 +759.714292 +759.866906 +760.205167 +760.451088 +760.543062 +760.866439 +761.163574 +761.266638 +761.551719 +761.693211 +761.814623 +761.917020 +761.966204 +762.041263 +762.058412 +762.322548 +762.421249 +762.456747 +762.545125 +762.547056 +762.565371 +762.704898 +762.740662 +762.902301 +762.947222 +763.013356 +773.028398 +776.030726 +776.031025 +777.029892 +778.030258 +783.030919 +783.229087 +783.229653 +783.231085 +783.330052 +783.330685 +783.331684 +783.431251 +783.432150 +783.531717 +783.631584 +783.931217 +784.231816 +784.532682 +784.633048 +784.733148 +785.032382 +785.132748 +785.232581 +785.329751 +785.731648 +785.732215 +786.631215 +786.631914 +786.732114 +786.832646 +787.132280 +787.231947 +787.531980 +787.631946 +787.732246 +787.732579 +788.032579 +793.029410 +794.165340 +794.552352 +795.226477 +795.451186 +795.731006 +796.114955 +796.351651 +796.811091 +796.863539 +796.881121 +796.982719 +797.052416 +797.118217 +797.512090 +797.767301 +797.818849 +797.925975 +797.926741 +809.029327 +810.030625 +811.029692 +818.029618 +818.030451 +818.131383 +818.431582 +818.632115 +818.632681 +818.731416 +818.731948 +818.932348 +819.131981 +819.132581 +819.232514 +819.232980 +819.433213 +819.532747 +819.632713 +819.732680 +819.832846 +820.033279 +820.333845 +820.433179 +820.433945 +820.531913 +820.532879 +820.632712 +820.633312 +821.333245 +821.433145 +821.433478 +821.534443 +821.633278 +821.832412 +821.832811 +821.833344 +821.933510 +822.032078 +822.032977 +822.033277 +822.033677 +822.132411 +822.233377 +822.433010 +822.434242 +822.632710 +822.732610 +822.832377 +822.832710 +828.030973 +828.136834 +828.192712 +828.694509 +829.049354 +829.115521 +829.270233 +829.449354 +829.605531 +829.927875 +830.017718 +830.657644 +830.766102 +830.964304 +831.391643 +831.559275 +831.594173 +831.658542 +831.803730 +831.922844 +831.926208 +832.091842 +832.109524 +832.180020 +832.364702 +832.471562 +832.474592 +832.558575 +832.618282 +832.819447 +832.886646 +832.902031 +832.987579 +844.030591 +845.031489 +847.030821 +848.031153 +853.029949 +853.231348 +853.231947 +853.331847 +853.432380 +853.632580 +853.633012 +853.732646 +853.832146 +854.033112 +854.333078 +854.433378 +854.532645 +854.533411 +854.733644 +854.833544 +854.834177 +855.033411 +855.132911 +855.133211 +855.233943 +855.333577 +855.633377 +855.634109 +855.734675 +855.833710 +855.933909 +855.934242 +856.232710 +856.233343 +856.233643 +856.734341 +857.233775 +857.234208 +857.234407 +857.433808 +857.434074 +857.733941 +857.734474 +863.669832 +864.063305 +864.362705 +864.899102 +865.087580 +865.445355 +865.598235 +865.715118 +865.947752 +865.982517 +866.119014 +866.258175 +866.412420 +866.558474 +866.791008 +866.869396 +867.290874 +867.326605 +867.499499 +867.533232 +867.604760 +867.677421 +867.681217 +867.820078 +867.941556 +868.011120 +873.654271 +878.031290 +878.031856 +879.031022 +879.314072 +879.330889 +879.390895 +879.538015 +879.544941 +880.634184 +880.638979 +880.645906 +880.722096 +881.032419 +881.805445 +881.810174 +882.031585 +882.296587 +882.302548 +882.309374 +883.032284 +885.249165 +885.260686 +888.029581 +888.030814 +888.230647 +888.231613 +888.330747 +888.332012 +888.432412 +888.433211 +888.733876 +888.833543 +888.834109 +888.933743 +889.034575 +889.833576 +889.931911 +890.134241 +890.334841 +890.434641 +890.534141 +890.535107 +891.033075 +891.134407 +891.234340 +891.434240 +891.633407 +891.634373 +892.032042 +892.133274 +892.633939 +892.634772 +892.933506 +898.479921 +898.613520 +898.846887 +898.934632 +899.013820 +899.103896 +899.441891 +899.583050 +899.703329 +899.974791 +900.064068 +900.150249 +900.243888 +900.513885 +900.630235 +901.241956 +901.421709 +901.582748 +901.633331 +901.730200 +901.793437 +901.839957 +902.001962 +902.120476 +902.138558 +902.334562 +902.477885 +902.560936 +902.596700 +902.658804 +902.728468 +902.818012 +902.836426 +902.888641 +914.031520 +914.031753 +915.030320 +915.031219 +915.032019 +916.031019 +916.031651 +918.031283 +918.031450 +923.429413 +923.532776 +923.632709 +923.733175 +923.734041 +923.833142 +923.933875 +924.033142 +924.132942 +924.230944 +924.733674 +924.733940 +924.734173 +924.835106 +924.933874 +924.934140 +924.934806 +925.034007 +925.034573 +925.233773 +925.333207 +925.425049 +925.528445 +925.833640 +925.933040 +926.133906 +926.134638 +926.633206 +926.933605 +926.934771 +927.034771 +927.133771 +927.333072 +927.334937 +927.433971 +927.634737 +927.729375 +927.931873 +927.932139 +927.932605 +931.180920 +933.028604 +933.193239 +933.415184 +933.578853 +933.683615 +933.775257 +934.048616 +934.075856 +934.133198 +934.224574 +934.476355 +934.536028 +934.645885 +934.932964 +935.261203 +935.307523 +935.404492 +935.449081 +935.566730 +935.602294 +935.773423 +935.930466 +936.387808 +936.388507 +936.452710 +936.705623 +936.891271 +937.151777 +937.221540 +937.247548 +937.531597 +937.532462 +937.773022 +937.843285 +937.844150 +944.772215 +948.030987 +950.032350 +951.032182 +958.030977 +958.130910 +958.733307 +958.733906 +958.833840 +959.134472 +959.334205 +959.633040 +959.733106 +960.034038 +960.134138 +960.434537 +960.534670 +960.634304 +960.634970 +960.734137 +960.735070 +961.133338 +961.234137 +961.433937 +961.734403 +961.833637 +961.935202 +962.134336 +962.134969 +962.234569 +962.334069 +962.334802 +962.434036 +962.434702 +962.933436 +962.933602 +962.934268 +963.034302 +968.030201 +968.046251 +968.160171 +968.353610 +968.422641 +968.507390 +968.508455 +968.713850 +968.715015 +968.794902 +968.817013 +968.866064 +968.878984 +969.169760 +969.587708 +970.223439 +970.565430 +970.640421 +970.754907 +970.967694 +971.257837 +971.582578 +971.711582 +971.745915 +971.998795 +972.122971 +972.392567 +972.515178 +972.659134 +972.809317 +972.810016 +972.987372 +983.030918 +986.031515 +987.031480 +987.032213 +988.032179 +993.032440 +993.133073 +993.430075 +993.531307 +993.532673 +993.633039 +993.733805 +993.734171 +993.833771 +993.833938 +993.933904 +994.133871 +994.234504 +994.335569 +994.534503 +994.634603 +994.933970 +995.034403 +995.333537 +995.631139 +995.632038 +995.733137 +995.733670 +995.834136 +995.834402 +995.934901 +995.935534 +996.134102 +996.134668 +996.135234 +996.233669 +996.733635 +996.933735 +997.034967 +997.235167 +997.532402 +997.732702 +997.733235 +998.033234 +1003.029966 +1003.249946 +1003.720874 +1004.202426 +1004.328599 +1004.670724 +1004.761633 +1004.920540 +1005.506554 +1005.858435 +1005.947845 +1006.109284 +1006.330229 +1006.374385 +1006.881044 +1006.946079 +1006.984174 +1007.087538 +1007.088403 +1007.345513 +1007.399925 +1007.452972 +1007.560498 +1007.669155 +1007.708083 +1007.836488 +1007.929528 +1020.031681 +1020.032247 +1020.032746 +1021.031480 +1021.031946 +1022.032311 +1028.031306 +1028.031806 +1028.131806 +1028.231905 +1028.333337 +1028.433370 +1028.534003 +1028.634269 +1029.135168 +1029.334901 +1029.335767 +1029.633336 +1029.833935 +1030.334101 +1030.334401 +1030.334767 +1030.433169 +1030.533135 +1030.634600 +1030.635300 +1030.734534 +1030.835166 +1030.835499 +1030.934700 +1031.035566 +1031.534067 +1031.634400 +1031.734866 +1032.135132 +1032.234832 +1032.235664 +1032.335298 +1032.335931 +1032.535597 +1032.933499 +1033.034498 +1038.065728 +1038.371955 +1038.582211 +1038.921172 +1039.074485 +1039.219174 +1039.590369 +1039.867458 +1040.132759 +1040.930827 +1041.433091 +1041.667623 +1042.300090 +1042.687768 +1042.796859 +1046.349836 +1056.030146 +1056.030945 +1058.030577 +1061.658412 +1062.689047 +1063.030272 +1063.131205 +1063.230006 +1063.331970 +1063.533002 +1063.632469 +1063.832003 +1063.932769 +1064.032935 +1064.132569 +1064.232835 +1064.332802 +1064.433001 +1064.433568 +1064.632735 +1064.633767 +1064.733501 +1064.832735 +1064.933167 +1065.033201 +1065.033767 +1065.133667 +1065.232701 +1065.233101 +1065.333766 +1065.433300 +1065.433500 +1065.932167 +1066.433532 +1066.532800 +1066.632233 +1067.133365 +1067.432799 +1067.433565 +1067.532865 +1067.733364 +1067.832365 +1068.033098 +1073.397761 +1073.526166 +1073.677481 +1074.121936 +1074.402722 +1074.520471 +1075.299724 +1075.480543 +1075.598824 +1076.036719 +1076.136786 +1076.612177 +1076.716206 +1076.868254 +1077.082240 +1077.142846 +1077.531790 +1077.568719 +1077.674513 +1077.751636 +1077.927727 +1077.974779 +1079.471448 +1084.347800 +1092.029078 +1092.029244 +1098.027973 +1098.029671 +1098.330337 +1098.431302 +1098.531702 +1098.630903 +1098.731302 +1099.031668 +1099.131568 +1099.131768 +1099.431335 +1099.727905 +1099.831900 +1099.932267 +1100.131501 +1100.432000 +1100.630668 +1100.631200 +1100.731900 +1100.831733 +1100.831899 +1101.131866 +1101.231832 +1101.232299 +1101.431433 +1101.831399 +1101.932464 +1102.032331 +1102.531731 +1102.632331 +1102.831564 +1102.832164 +1102.931464 +1102.931631 +1102.932530 +1103.031431 +1108.028829 +1108.683040 +1109.306083 +1109.491331 +1109.672217 +1109.919370 +1110.454800 +1110.510944 +1110.594094 +1110.713774 +1110.858196 +1110.980674 +1111.207280 +1111.290331 +1111.576944 +1111.811575 +1112.079008 +1112.079640 +1112.249637 +1112.331788 +1112.813073 +1112.919733 +1113.003116 +1124.029712 +1124.030611 +1126.029643 +1126.030309 +1127.029709 +1128.030907 +1128.031806 +1133.028904 +1133.230602 +1133.432033 +1133.632100 +1133.632766 +1133.633432 +1133.931500 +1134.031966 +1134.032599 +1134.132232 +1134.132732 +1134.332499 +1134.433531 +1134.533997 +1134.632965 +1134.732432 +1134.732998 +1134.933031 +1135.132698 +1135.629334 +1135.831232 +1136.131931 +1136.133662 +1136.333263 +1136.433096 +1136.433595 +1136.532696 +1136.533063 +1137.032396 +1137.232030 +1137.333195 +1137.333528 +1137.431963 +1137.432129 +1137.633694 +1137.732828 +1138.030297 +1143.028827 +1143.675147 +1144.038350 +1144.149805 +1144.460694 +1144.949105 +1145.079241 +1145.252867 +1145.349937 +1145.435851 +1145.729290 +1146.141278 +1146.421631 +1146.638713 +1146.760159 +1146.891993 +1147.238680 +1147.302116 +1147.374277 +1147.375942 +1147.428823 +1147.549036 +1147.570114 +1147.695056 +1147.923228 +1155.982061 +1156.221488 +1159.030176 +1159.030942 +1160.030641 +1160.031074 +1162.028974 +1162.029208 +1163.142227 +1163.341527 +1163.373795 +1163.470864 +1163.499036 +1164.271263 +1165.822044 +1168.031266 +1168.230367 +1168.330900 +1168.531732 +1168.531932 +1168.632098 +1168.732165 +1168.832497 +1169.032131 +1169.332330 +1169.432663 +1169.433229 +1169.433529 +1169.533129 +1169.533696 +1169.732263 +1169.732730 +1169.733995 +1170.631730 +1170.632462 +1170.632762 +1171.133361 +1171.134160 +1171.234693 +1171.333427 +1171.333993 +1172.132894 +1172.233626 +1172.433859 +1172.434192 +1172.633692 +1172.732760 +1178.031056 +1178.095525 +1178.096158 +1178.295758 +1178.442178 +1178.849271 +1178.951602 +1179.372780 +1179.856063 +1179.990861 +1180.162456 +1180.245240 +1180.277341 +1180.853065 +1181.172512 +1181.365452 +1181.430953 +1181.782768 +1182.058991 +1182.187762 +1182.379670 +1182.465717 +1182.652830 +1182.760489 +1182.925723 +1182.939043 +1185.071209 +1193.029077 +1194.030541 +1195.029841 +1195.030107 +1196.030339 +1198.027840 +1199.255611 +1202.141255 +1202.148748 +1203.231864 +1203.332396 +1203.528400 +1203.627801 +1203.730498 +1203.830598 +1204.232196 +1204.232862 +1204.332595 +1204.533061 +1204.533760 +1204.633394 +1204.634160 +1204.733227 +1204.733660 +1204.833361 +1204.933161 +1205.029797 +1205.130929 +1205.331862 +1205.432494 +1205.532561 +1205.533293 +1205.633659 +1205.933459 +1206.832393 +1206.932759 +1207.032659 +1207.033591 +1207.134524 +1207.233025 +1213.029356 +1213.107245 +1213.318067 +1213.345507 +1213.953565 +1214.173444 +1214.249735 +1214.403181 +1215.348335 +1215.686996 +1215.854695 +1216.247335 +1216.428154 +1216.571244 +1216.676905 +1216.757491 +1216.847368 +1216.945836 +1217.063185 +1217.347467 +1217.431383 +1217.859821 +1218.004276 +1228.028476 +1228.030007 +1230.029639 +1230.030671 +1230.030938 +1231.030304 +1238.129631 +1238.232128 +1238.431895 +1238.532461 +1238.532927 +1238.933060 +1239.132527 +1239.233160 +1239.332460 +1239.333326 +1239.633792 +1239.933725 +1240.232926 +1240.333458 +1240.432825 +1240.627564 +1240.729229 +1240.733125 +1240.833757 +1240.933891 +1241.132658 +1241.232891 +1241.531692 +1241.531925 +1241.633424 +1241.831858 +1242.033923 +1242.131758 +1242.333190 +1242.433623 +1242.533489 +1242.632923 +1242.733556 +1242.833256 +1243.033422 +1243.034022 +1243.034255 +1248.061656 +1248.107976 +1248.243640 +1248.403580 +1248.846304 +1249.405211 +1249.469446 +1249.787695 +1249.891624 +1250.094454 +1250.094820 +1250.280368 +1250.429818 +1250.479236 +1250.608240 +1250.744037 +1250.805909 +1251.121093 +1251.121459 +1251.187826 +1251.439208 +1251.612335 +1251.818362 +1251.918961 +1252.179500 +1252.408438 +1252.492454 +1252.602610 +1252.738041 +1252.904674 +1253.014498 +1263.029639 +1264.031337 +1266.031634 +1267.031733 +1267.032899 +1268.030001 +1273.132526 +1273.232493 +1273.333126 +1273.333825 +1273.534291 +1273.633392 +1273.834191 +1273.934490 +1274.432592 +1274.434623 +1274.532725 +1274.635322 +1274.735422 +1274.831526 +1275.033923 +1275.233790 +1275.334689 +1275.434922 +1275.435854 +1275.533723 +1275.734488 +1275.934721 +1276.135387 +1276.335986 +1276.633555 +1276.634954 +1277.234520 +1277.235186 +1277.333754 +1277.334420 +1277.435652 +1277.533621 +1277.533987 +1277.534353 +1277.635286 +1277.834986 +1278.034553 +1283.393056 +1283.929585 +1284.129119 +1284.382432 +1284.712868 +1284.959554 +1285.070776 +1285.287826 +1285.370410 +1285.591954 +1285.901212 +1286.123989 +1286.386526 +1286.418427 +1286.807105 +1287.003442 +1287.206338 +1287.317194 +1287.417194 +1287.665412 +1289.159716 +1290.681760 +1290.724483 +1298.031602 +1300.032200 +1301.032032 +1308.132791 +1308.232858 +1308.332891 +1308.333091 +1308.432991 +1308.433290 +1308.533423 +1308.833656 +1308.833889 +1308.933390 +1308.933989 +1309.033589 +1309.034322 +1309.133922 +1309.134422 +1309.233922 +1309.234155 +1309.333822 +1309.733655 +1309.734321 +1309.933489 +1310.033821 +1310.133055 +1310.134454 +1310.233888 +1310.433954 +1310.534354 +1310.735053 +1310.835952 +1310.933787 +1311.033487 +1311.034486 +1311.134486 +1311.333554 +1311.335818 +1311.433753 +1311.733620 +1311.733786 +1312.534651 +1312.634152 +1312.933719 +1312.934285 +1318.031149 +1318.031716 +1318.071442 +1318.325155 +1318.395152 +1318.891022 +1319.287958 +1319.399014 +1319.547631 +1319.867511 +1320.049762 +1320.261151 +1320.322789 +1320.534077 +1320.872372 +1320.959518 +1321.487889 +1321.488688 +1321.794516 +1321.894948 +1321.912564 +1322.115794 +1322.211298 +1322.274968 +1322.525351 +1322.587655 +1322.677765 +1322.791351 +1322.857885 +1322.908467 +1322.921987 +1323.005270 +1324.892848 +1324.951023 +1325.875064 +1325.883789 +1335.031699 +1338.031229 +1343.029792 +1343.131757 +1343.133189 +1343.232190 +1343.232390 +1343.332723 +1343.432256 +1343.633155 +1343.633488 +1343.633688 +1343.734154 +1343.831790 +1343.833222 +1343.932555 +1344.034187 +1344.133255 +1344.233887 +1344.334120 +1344.432555 +1344.532222 +1345.033287 +1345.033553 +1345.134053 +1345.332254 +1345.332887 +1345.333120 +1345.333387 +1345.834085 +1345.934252 +1346.035018 +1346.234285 +1346.632653 +1346.633685 +1346.734084 +1346.934617 +1347.034151 +1347.034384 +1347.134417 +1347.334184 +1347.433384 +1347.434050 +1347.533185 +1347.534050 +1347.934083 +1353.030815 +1353.031714 +1353.048863 +1353.390854 +1354.416161 +1354.521190 +1354.768442 +1355.362348 +1355.400010 +1355.541768 +1355.691052 +1355.880595 +1356.366109 +1356.442033 +1356.615060 +1356.672869 +1356.689919 +1356.766442 +1356.896412 +1357.117158 +1357.393315 +1357.459948 +1357.535106 +1357.585089 +1357.903903 +1365.965867 +1365.966200 +1366.966265 +1366.972925 +1367.966398 +1369.965929 +1370.966694 +1375.966356 +1375.973516 +1376.568021 +1376.668287 +1376.768387 +1376.867920 +1376.868453 +1376.968453 +1377.068353 +1377.168286 +1377.268253 +1377.367753 +1377.468286 +1377.668020 +1378.068752 +1378.268752 +1378.368652 +1378.468385 +1378.469284 +1378.768218 +1379.168617 +1379.468051 +1379.668684 +1379.768850 +1379.868517 +1379.868817 +1379.968483 +1380.168883 +1380.268683 +1380.368050 +1380.368749 +1380.568283 +1380.568616 +1380.568916 +1380.768716 +1380.868449 +1380.968682 +1380.968849 +1386.301910 +1386.382130 +1386.528750 +1386.562783 +1386.669542 +1386.958720 +1387.063748 +1387.220791 +1387.370974 +1387.453957 +1387.557953 +1387.707104 +1387.756987 +1387.794316 +1387.840237 +1387.869475 +1387.936607 +1388.065345 +1388.140703 +1388.313197 +1388.313530 +1388.360749 +1388.404872 +1388.420656 +1388.472571 +1388.485724 +1388.529980 +1388.582527 +1388.608035 +1388.608934 +1388.663846 +1388.686856 +1388.723786 +1388.755687 +1388.822854 +1388.834009 +1388.851325 +1388.880030 +1388.905870 +1388.959883 +1388.960582 +1389.001408 +1389.018458 +1389.059483 +1389.074635 +1389.092584 +1389.136306 +1389.239270 +1389.283892 +1389.314062 +1389.382560 +1389.428614 +1389.457052 +1389.499010 +1389.529013 +1389.566509 +1389.638137 +1389.677565 +1389.688654 +1389.703106 +1389.731577 +1389.792050 +1389.820155 +1389.944131 +1389.958750 +1390.017358 +1390.051457 +1390.082060 +1390.095546 +1390.187721 +1390.199143 +1390.215859 +1390.332942 +1390.349059 +1390.362379 +1390.375233 +1390.403671 +1390.434940 +1390.482259 +1390.580727 +1390.598976 +1390.613428 +1390.617124 +1390.655452 +1390.685189 +1390.734740 +1390.736371 +1390.781060 +1390.781759 +1390.795712 +1390.813694 +1390.828446 +1390.854753 +1390.859348 +1390.900374 +1390.903338 +1390.932908 +1390.934074 +1400.967097 +1403.968193 +1411.067587 +1411.168019 +1411.368385 +1411.569018 +1411.668751 +1412.269317 +1412.368817 +1412.868917 +1412.869283 +1413.268983 +1413.269316 +1413.369349 +1413.568949 +1413.569182 +1413.768816 +1414.569481 +1414.669281 +1414.869148 +1415.369181 +1415.469214 +1415.668881 +1415.669547 +1415.769380 +1415.869180 +1415.969213 +1417.453195 +1421.034077 +1421.150227 +1421.356554 +1421.598012 +1421.862281 +1421.930146 +1422.050992 +1422.162281 +1422.185458 +1422.208801 +1422.310399 +1422.384458 +1422.431278 +1422.498677 +1422.537305 +1422.563246 +1422.640136 +1422.692450 +1422.777265 +1422.862580 +1422.913562 +1422.943066 +1422.994148 +1423.098377 +1423.099210 +1423.139669 +1423.191584 +1423.192583 +1423.337571 +1423.337937 +1423.361547 +1423.432709 +1423.578763 +1423.605236 +1423.606135 +1423.685623 +1423.686122 +1423.750891 +1423.833574 +1423.865509 +1424.098143 +1424.169338 +1424.226215 +1424.255852 +1424.323551 +1424.335938 +1424.420687 +1424.489518 +1424.529411 +1424.560081 +1424.642165 +1424.711629 +1424.760913 +1424.774932 +1424.819454 +1424.848092 +1424.857749 +1424.871469 +1424.871735 +1424.903503 +1424.935705 +1424.936071 +1424.973733 +1425.002504 +1425.003770 +1425.014959 +1425.053487 +1425.056051 +1425.129943 +1425.139534 +1425.141465 +1425.170170 +1425.170803 +1425.202837 +1425.227945 +1425.230609 +1425.260213 +1425.269803 +1425.291881 +1425.306600 +1425.321685 +1425.332907 +1425.334805 +1425.376896 +1425.407166 +1425.409364 +1425.482291 +1425.491781 +1425.492647 +1425.509663 +1425.523350 +1425.525115 +1425.536137 +1425.564542 +1425.581225 +1425.594345 +1425.595877 +1425.625348 +1425.626180 +1425.639933 +1425.641398 +1425.667139 +1425.698674 +1425.713093 +1425.713326 +1425.762843 +1425.763309 +1425.779793 +1425.780492 +1425.795644 +1425.809696 +1425.838234 +1425.850988 +1425.868870 +1425.884288 +1425.885154 +1425.896243 +1425.896876 +1425.931042 +1425.939533 +1425.939999 +1425.963309 +1435.968361 +1435.968927 +1436.969259 +1439.968890 +1439.969422 +1446.070116 +1446.370249 +1446.370648 +1446.470681 +1446.571614 +1446.671780 +1446.969682 +1447.071014 +1447.071646 +1447.170714 +1447.171680 +1447.371879 +1447.472012 +1447.572112 +1447.672012 +1447.672179 +1447.772112 +1447.871346 +1447.871546 +1447.971745 +1448.171679 +1448.371579 +1448.471878 +1448.571878 +1448.771745 +1448.772178 +1448.872311 +1448.971978 +1448.972277 +1449.071911 +1449.072177 +1449.072410 +1449.172344 +1449.272377 +1449.372377 +1449.472210 +1449.671977 +1449.771977 +1449.871577 +1449.971943 +1450.071677 +1450.071976 +1450.072243 +1450.172209 +1450.272043 +1450.272343 +1450.371410 +1450.471710 +1450.571976 +1450.671676 +1450.772409 +1450.972508 +1455.969340 +1456.101175 +1456.175300 +1456.176366 +1456.270805 +1456.323785 +1456.348860 +1456.349792 +1456.489619 +1456.516259 +1456.638503 +1456.800075 +1456.929046 +1456.983292 +1456.983958 +1456.996312 +1457.073568 +1457.086422 +1457.146795 +1457.238236 +1457.311596 +1457.372435 +1457.373701 +1457.408666 +1457.543298 +1457.592482 +1457.621619 +1457.692315 +1457.793347 +1457.970936 +1458.056218 +1458.086554 +1458.099141 +1458.160313 +1458.214825 +1458.287120 +1458.351855 +1458.378462 +1458.414159 +1458.437836 +1458.482757 +1458.537336 +1458.590683 +1458.634339 +1458.685354 +1458.735371 +1458.736104 +1458.878395 +1458.944495 +1458.959647 +1459.003369 +1459.154851 +1459.232407 +1459.321717 +1459.322883 +1459.477561 +1459.478960 +1459.563642 +1459.590615 +1459.592080 +1459.696243 +1459.711028 +1459.735204 +1459.788517 +1459.789483 +1459.815124 +1459.866172 +1459.888816 +1459.923682 +1459.949023 +1459.949722 +1460.048190 +1460.063508 +1460.066405 +1460.083855 +1460.112026 +1460.132273 +1460.132872 +1460.160012 +1460.229376 +1460.256448 +1460.257048 +1460.307331 +1460.347890 +1460.373398 +1460.414723 +1460.519552 +1460.534204 +1460.588516 +1460.599805 +1460.600437 +1460.647490 +1460.675396 +1460.705732 +1460.716854 +1460.746525 +1460.792678 +1460.809328 +1460.823481 +1460.823980 +1460.824180 +1460.871666 +1460.897940 +1460.943461 +1460.955815 +1470.971489 +1471.970389 +1472.971154 +1474.971319 +1474.971785 +1480.970713 +1481.172245 +1481.472811 +1481.672544 +1481.672944 +1481.673210 +1482.173010 +1482.273409 +1482.373210 +1482.672343 +1482.674208 +1482.773842 +1483.072843 +1483.073142 +1483.073675 +1483.473775 +1483.572875 +1483.673508 +1483.674007 +1483.972842 +1483.973474 +1484.073041 +1484.172708 +1484.273974 +1484.473241 +1484.473707 +1484.573840 +1484.673241 +1484.773940 +1484.873540 +1484.873873 +1484.874073 +1484.974139 +1485.073906 +1485.173906 +1485.272807 +1485.473739 +1485.573273 +1485.673872 +1485.773806 +1485.873939 +1485.973339 +1485.974005 +1490.971536 +1490.978695 +1491.022751 +1491.094213 +1491.227580 +1491.406434 +1491.459581 +1491.515625 +1491.620786 +1491.709198 +1491.824549 +1491.958215 +1492.038235 +1492.081059 +1492.082824 +1492.118588 +1492.174199 +1492.262810 +1492.343563 +1492.381058 +1492.436636 +1492.437402 +1492.586919 +1492.664375 +1492.720785 +1492.838201 +1492.890682 +1493.050755 +1493.092446 +1493.117055 +1493.164974 +1493.228710 +1493.267305 +1493.305200 +1493.538500 +1493.648057 +1493.662376 +1493.732572 +1493.789848 +1493.804467 +1493.948756 +1493.964340 +1494.029575 +1494.113324 +1494.213557 +1494.250687 +1494.336168 +1494.394077 +1494.450420 +1494.584852 +1494.586517 +1494.637766 +1494.652784 +1494.676694 +1494.788215 +1494.838998 +1494.856614 +1494.871066 +1494.904066 +1494.942128 +1494.956114 +1494.969834 +1495.018552 +1495.046590 +1495.048621 +1495.108528 +1495.149787 +1495.158511 +1495.161009 +1495.183320 +1495.184452 +1495.211525 +1495.244792 +1495.248122 +1495.301901 +1495.345691 +1495.372630 +1495.373763 +1495.386683 +1495.426343 +1495.426909 +1495.442061 +1495.452917 +1495.476193 +1495.477759 +1495.519783 +1495.521981 +1495.588315 +1495.614588 +1495.628374 +1495.643326 +1495.666703 +1495.666936 +1495.680922 +1495.695840 +1495.696273 +1495.710825 +1495.722913 +1495.737865 +1495.738498 +1495.753849 +1495.815554 +1495.839397 +1495.868567 +1495.877658 +1495.881454 +1495.909127 +1495.966836 +1497.637497 +1497.657710 +1498.875324 +1505.971787 +1508.972350 +1509.972216 +1510.972348 +1515.856726 +1515.971444 +1516.171677 +1516.273176 +1516.873508 +1516.974107 +1517.073974 +1517.273141 +1517.373541 +1517.374140 +1517.473641 +1517.573474 +1517.773274 +1518.073940 +1518.174006 +1518.273806 +1518.373540 +1518.474239 +1518.674172 +1518.873639 +1519.172873 +1519.373705 +1519.474038 +1519.574138 +1519.673805 +1519.674138 +1520.073238 +1520.073638 +1520.073938 +1520.173372 +1520.173738 +1520.174038 +1520.473638 +1520.573604 +1520.673771 +1520.774004 +1520.974270 +1525.443230 +1525.971001 +1525.984488 +1525.986253 +1526.082457 +1526.238767 +1526.289749 +1526.339100 +1526.397774 +1526.399040 +1526.508230 +1526.615390 +1526.703801 +1526.723948 +1526.777594 +1526.816089 +1526.857481 +1526.997940 +1527.024980 +1527.204800 +1527.242995 +1527.267437 +1527.332738 +1527.347990 +1527.425179 +1527.518186 +1527.564673 +1527.617786 +1527.702801 +1527.745459 +1527.781656 +1527.959511 +1528.096174 +1528.096607 +1528.138132 +1528.179258 +1528.219151 +1528.300470 +1528.349754 +1528.401602 +1528.438731 +1528.439197 +1528.465971 +1528.479890 +1528.521781 +1528.580722 +1528.620283 +1528.726010 +1528.829041 +1528.842860 +1528.868035 +1528.913889 +1528.926676 +1528.969766 +1528.980955 +1529.062107 +1529.120782 +1529.123746 +1529.163639 +1529.177625 +1529.242860 +1529.284784 +1529.285484 +1529.286216 +1529.314288 +1529.340196 +1529.388048 +1529.401967 +1529.426010 +1529.484285 +1529.515720 +1529.516053 +1529.561907 +1529.564071 +1529.612923 +1529.627774 +1529.695640 +1529.696439 +1529.749120 +1529.800635 +1529.824677 +1529.853881 +1529.862373 +1529.863705 +1529.864471 +1529.893908 +1529.923079 +1529.983385 +1529.983851 +1529.998636 +1530.051983 +1530.052849 +1530.054880 +1530.095140 +1530.100368 +1530.116885 +1530.133668 +1530.140561 +1530.184950 +1530.186582 +1530.216319 +1530.217584 +1530.240128 +1530.242959 +1530.274327 +1530.275226 +1530.287914 +1530.301800 +1530.317184 +1530.330538 +1530.331870 +1530.372662 +1530.373162 +1530.373395 +1530.415786 +1530.416685 +1530.446621 +1530.461640 +1530.474793 +1530.475226 +1530.475825 +1530.484384 +1530.487947 +1530.499768 +1530.515919 +1530.536864 +1530.539795 +1530.567700 +1530.590877 +1530.636331 +1530.651416 +1530.651716 +1530.679422 +1530.681386 +1530.681786 +1530.710357 +1530.739362 +1530.739828 +1530.755779 +1530.768466 +1530.783751 +1530.799302 +1530.845289 +1530.849618 +1530.851216 +1530.864137 +1530.865369 +1530.880254 +1530.906128 +1530.917617 +1530.937497 +1530.967866 +1530.968532 +1531.212954 +1540.972085 +1540.972318 +1541.971685 +1541.972417 +1550.971909 +1551.273807 +1551.373141 +1551.373873 +1551.573706 +1551.774372 +1551.974039 +1552.173739 +1552.274072 +1552.574205 +1552.774171 +1552.874571 +1552.974737 +1552.975104 +1553.074604 +1553.274171 +1553.374770 +1553.474737 +1553.673838 +1553.873105 +1553.874137 +1554.274103 +1554.574536 +1554.774236 +1554.974469 +1555.073736 +1555.074036 +1555.074602 +1555.173237 +1555.174669 +1555.274702 +1555.574368 +1555.674635 +1555.773935 +1555.774535 +1557.438136 +1560.142363 +1560.972065 +1561.059844 +1561.244859 +1561.321349 +1561.423214 +1561.439331 +1561.501369 +1561.536367 +1561.601102 +1561.660210 +1561.850852 +1561.876060 +1562.007529 +1562.037732 +1562.161641 +1562.203599 +1562.247855 +1562.282953 +1562.308761 +1562.455214 +1562.455614 +1562.552417 +1562.593975 +1562.652783 +1562.737665 +1562.769832 +1562.806762 +1562.858044 +1562.952150 +1563.077458 +1563.170198 +1563.194374 +1563.221047 +1563.265336 +1563.323745 +1563.591776 +1563.662439 +1563.692043 +1563.717317 +1563.778889 +1563.793741 +1563.820281 +1563.871163 +1564.010923 +1564.034866 +1564.086914 +1564.125142 +1564.225409 +1564.286514 +1564.328039 +1564.355778 +1564.410657 +1564.411689 +1564.426774 +1564.458908 +1564.578256 +1564.578688 +1564.615485 +1564.642291 +1564.643191 +1564.731535 +1564.735465 +1564.761106 +1564.802764 +1564.840726 +1564.854979 +1564.857609 +1564.894273 +1564.907692 +1564.914119 +1564.958908 +1564.967266 +1565.030636 +1565.044655 +1565.089710 +1565.144522 +1565.174092 +1565.219813 +1565.233566 +1565.262004 +1565.294072 +1565.337928 +1565.339560 +1565.362903 +1565.379087 +1565.414718 +1565.418781 +1565.428171 +1565.430003 +1565.487945 +1565.488777 +1565.532667 +1565.540359 +1565.570263 +1565.584282 +1565.584781 +1565.614885 +1565.645887 +1565.656310 +1565.681418 +1565.683682 +1565.704761 +1565.705694 +1565.706626 +1565.738661 +1565.767765 +1565.794172 +1565.796636 +1565.811288 +1565.827538 +1565.855444 +1565.855810 +1565.867898 +1565.881584 +1565.883016 +1565.909889 +1565.948484 +1565.966599 +1566.963634 +1575.972483 +1576.972183 +1576.972649 +1577.972315 +1578.972414 +1578.972913 +1579.972446 +1579.972646 +1579.972879 +1580.973011 +1586.273838 +1587.074004 +1587.074304 +1587.274237 +1587.374170 +1587.374437 +1587.474103 +1587.474603 +1587.773770 +1587.774370 +1587.873271 +1587.873570 +1588.074003 +1588.074269 +1588.174469 +1588.374402 +1588.374635 +1588.775268 +1588.974402 +1589.174268 +1589.374168 +1589.375434 +1589.474767 +1589.574368 +1589.673835 +1589.774467 +1589.874301 +1589.974367 +1589.974600 +1590.074600 +1590.174267 +1590.175499 +1590.374400 +1590.474600 +1590.574866 +1590.773834 +1595.971631 +1595.971897 +1595.978957 +1596.030039 +1596.106762 +1596.160608 +1596.181521 +1596.233002 +1596.287481 +1596.397671 +1596.434201 +1596.562972 +1596.589113 +1596.694407 +1596.738064 +1596.739029 +1596.772762 +1596.821913 +1596.987014 +1597.059775 +1597.073428 +1597.112455 +1597.112822 +1597.225842 +1597.260241 +1597.286781 +1597.369165 +1597.383451 +1597.547420 +1597.560307 +1597.663670 +1597.884449 +1597.885215 +1597.933134 +1597.966667 +1597.968832 +1598.039727 +1598.090077 +1598.104629 +1598.193007 +1598.215318 +1598.313020 +1598.368898 +1598.492274 +1598.493207 +1598.522178 +1598.555911 +1598.593107 +1598.626507 +1598.640726 +1598.681951 +1598.712121 +1598.758774 +1598.774925 +1598.799034 +1598.864835 +1598.867698 +1598.976989 +1599.004761 +1599.043989 +1599.159706 +1599.242224 +1599.258940 +1599.323476 +1599.334931 +1599.337328 +1599.390908 +1599.434731 +1599.511554 +1599.572227 +1599.602063 +1599.641590 +1599.680185 +1599.752846 +1599.753345 +1599.811853 +1599.813152 +1599.837461 +1599.864467 +1599.867398 +1599.867897 +1599.895603 +1599.908490 +1599.976655 +1600.084247 +1600.102829 +1600.103328 +1600.104494 +1600.114950 +1600.146319 +1600.250814 +1600.261836 +1600.277421 +1600.306625 +1600.334797 +1600.362802 +1600.390441 +1600.426638 +1600.456808 +1600.457574 +1600.535962 +1600.537161 +1600.565233 +1600.567097 +1600.568363 +1600.613784 +1600.614550 +1600.633065 +1600.647450 +1600.676521 +1600.690374 +1600.710054 +1600.724573 +1600.767130 +1600.781316 +1600.781849 +1600.795535 +1600.825639 +1600.865765 +1600.906591 +1600.908156 +1600.936927 +1600.950447 +1610.972182 +1610.972581 +1612.973079 +1613.972046 +1613.972512 +1615.973975 +1621.072705 +1621.173104 +1621.273404 +1621.373137 +1621.473703 +1621.773370 +1621.773636 +1621.773769 +1621.773869 +1621.774036 +1621.873836 +1621.973902 +1622.173969 +1622.174368 +1622.274568 +1622.374135 +1622.474435 +1622.674168 +1622.774235 +1622.774501 +1622.874334 +1622.973369 +1623.374500 +1623.674200 +1623.873967 +1623.874467 +1624.073900 +1624.074267 +1624.274500 +1624.374599 +1624.474266 +1624.474732 +1624.574732 +1624.772601 +1624.773700 +1624.774199 +1624.873900 +1624.873999 +1625.074199 +1625.074532 +1625.174765 +1625.274765 +1625.473699 +1625.774332 +1625.974198 +1625.974598 +1630.971696 +1630.979355 +1630.995305 +1631.223111 +1631.246521 +1631.460173 +1631.508891 +1631.534466 +1631.741958 +1631.791575 +1631.818848 +1631.855944 +1631.958341 +1632.026307 +1632.129870 +1632.141658 +1632.162937 +1632.278920 +1632.530868 +1632.589809 +1632.703962 +1632.704827 +1632.788244 +1632.823309 +1632.823642 +1632.884148 +1632.897868 +1632.916982 +1633.058074 +1633.072459 +1633.109722 +1633.170262 +1633.232399 +1633.286978 +1633.290441 +1633.317581 +1633.368496 +1633.410155 +1633.450514 +1633.477154 +1633.502762 +1633.504927 +1633.531000 +1633.572126 +1633.647118 +1633.676721 +1633.678353 +1633.705459 +1633.750914 +1633.751779 +1633.790807 +1633.793704 +1633.903028 +1633.915715 +1633.955908 +1633.984979 +1634.094170 +1634.127936 +1634.128269 +1634.171759 +1634.228902 +1634.251413 +1634.281449 +1634.319178 +1634.349048 +1634.430500 +1634.431366 +1634.479318 +1634.535628 +1634.553710 +1634.617113 +1634.648682 +1634.649581 +1634.711552 +1634.747683 +1634.838691 +1634.849114 +1634.860303 +1634.890007 +1634.890373 +1634.947216 +1634.976220 +1635.026637 +1635.077519 +1635.102361 +1635.117945 +1635.159504 +1635.226570 +1635.249946 +1635.270160 +1635.296433 +1635.351678 +1635.388841 +1635.456806 +1635.457139 +1635.457905 +1635.486610 +1635.582647 +1635.628867 +1635.656306 +1635.658704 +1635.691471 +1635.721608 +1635.739556 +1635.796999 +1635.835527 +1635.836593 +1635.843119 +1635.879749 +1635.897532 +1635.910519 +1635.941521 +1635.956706 +1645.971647 +1647.971312 +1647.971845 +1648.971944 +1649.971044 +1649.971277 +1649.971643 +1655.970605 +1655.971171 +1656.071005 +1656.071770 +1656.172470 +1656.272236 +1656.372469 +1656.472536 +1656.473102 +1656.573535 +1656.873368 +1656.972769 +1657.073235 +1657.073434 +1657.172902 +1657.173468 +1657.273767 +1657.373567 +1657.472868 +1657.573068 +1657.973567 +1658.073567 +1658.173267 +1658.173433 +1658.273100 +1658.273400 +1658.372601 +1658.373167 +1658.473566 +1658.773066 +1658.972933 +1658.973433 +1658.973699 +1659.173366 +1659.173665 +1659.373199 +1659.373532 +1659.473565 +1659.673032 +1659.673598 +1659.773731 +1659.973032 +1660.073032 +1660.173598 +1660.472998 +1660.473564 +1660.572965 +1660.772965 +1660.773264 +1660.773564 +1660.873064 +1660.972931 +1666.012620 +1666.060605 +1666.118813 +1666.280751 +1666.314151 +1666.357841 +1666.552712 +1666.701097 +1666.832432 +1666.901929 +1666.976788 +1666.993837 +1667.026272 +1667.037560 +1667.070594 +1667.131733 +1667.184313 +1667.288110 +1667.333864 +1667.373324 +1667.409588 +1667.544520 +1667.571126 +1667.572725 +1667.660004 +1667.690041 +1667.772525 +1667.773457 +1667.800397 +1667.827903 +1667.904526 +1667.942821 +1667.970427 +1668.037293 +1668.065598 +1668.132231 +1668.146717 +1668.215548 +1668.242188 +1668.320576 +1668.332464 +1668.332830 +1668.418345 +1668.457406 +1668.517579 +1668.550712 +1668.551012 +1668.551878 +1668.688641 +1668.718378 +1668.743819 +1668.772890 +1668.811684 +1668.838891 +1668.872990 +1668.960036 +1669.042620 +1669.072657 +1669.073522 +1669.102493 +1669.142220 +1669.145717 +1669.205290 +1669.246616 +1669.260602 +1669.287941 +1669.323406 +1669.325337 +1669.365097 +1669.375620 +1669.376086 +1669.400428 +1669.429932 +1669.480715 +1669.575620 +1669.596399 +1669.599296 +1669.615247 +1669.631431 +1669.635094 +1669.692436 +1669.752443 +1669.763465 +1669.777151 +1669.777984 +1669.790038 +1669.879249 +1669.893735 +1669.895500 +1669.940455 +1669.985976 +1670.000328 +1670.000661 +1670.045350 +1670.046448 +1670.047514 +1670.105556 +1670.134527 +1670.148047 +1670.164330 +1670.191104 +1670.192003 +1670.239555 +1670.285742 +1670.316745 +1670.348413 +1670.375519 +1670.407753 +1670.438090 +1670.465429 +1670.511716 +1670.618409 +1670.631796 +1670.645249 +1670.674220 +1670.674953 +1670.704856 +1670.720507 +1670.721007 +1670.753008 +1670.782012 +1670.842951 +1670.861100 +1670.903391 +1670.904390 +1670.934127 +1670.934759 +1670.957869 +1681.971944 +1682.971544 +1682.972043 +1683.972042 +1684.972108 +1685.971907 +1690.971369 +1691.071702 +1691.072135 +1691.072401 +1691.272867 +1691.473800 +1692.074099 +1692.174199 +1692.273932 +1692.474331 +1692.573432 +1692.573965 +1692.673332 +1693.074198 +1693.174231 +1693.374364 +1693.474397 +1693.573598 +1693.574297 +1693.674364 +1693.773831 +1693.974430 +1694.074396 +1694.274130 +1694.574329 +1694.773497 +1694.773930 +1694.774429 +1694.874163 +1695.074529 +1695.174795 +1695.273796 +1695.574495 +1700.051946 +1700.069096 +1700.178020 +1700.824972 +1700.970960 +1700.979418 +1701.056874 +1701.085645 +1701.087143 +1701.183780 +1701.207190 +1701.319111 +1701.431332 +1701.501295 +1701.601262 +1701.603460 +1701.733963 +1701.856873 +1701.914748 +1701.954675 +1702.026004 +1702.055407 +1702.094635 +1702.190605 +1702.228234 +1702.280515 +1702.348547 +1702.400129 +1702.463033 +1702.471225 +1702.524405 +1702.573789 +1702.715080 +1702.716612 +1702.741088 +1702.768027 +1702.791404 +1702.829732 +1702.938157 +1702.977385 +1703.029233 +1703.109785 +1703.164264 +1703.189539 +1703.244883 +1703.268693 +1703.320042 +1703.443784 +1703.458869 +1703.510717 +1703.537524 +1703.656039 +1703.657304 +1703.723338 +1703.779482 +1703.807187 +1703.866594 +1703.899528 +1703.925469 +1703.978482 +1703.979981 +1703.980181 +1703.980913 +1704.078216 +1704.146614 +1704.161732 +1704.192635 +1704.216078 +1704.249445 +1704.249977 +1704.306221 +1704.365995 +1704.424969 +1704.450776 +1704.479947 +1704.490736 +1704.517143 +1704.518342 +1704.574586 +1704.575585 +1704.633560 +1704.661132 +1704.704223 +1704.705655 +1704.823870 +1704.880846 +1704.922071 +1705.005654 +1705.009051 +1705.046813 +1705.064362 +1705.116477 +1705.131162 +1705.185907 +1705.246380 +1705.338121 +1705.368391 +1705.381611 +1705.428265 +1705.524801 +1705.525534 +1705.559333 +1705.600958 +1705.602757 +1705.645847 +1705.670455 +1705.698461 +1705.727065 +1705.728930 +1705.774418 +1705.802157 +1705.817075 +1705.833925 +1705.846612 +1705.874451 +1705.889470 +1705.923469 +1705.950475 +1705.964694 +1705.967292 +1709.932689 +1711.034752 +1713.012173 +1714.368915 +1714.385831 +1715.971977 +1716.972709 +1718.973040 +1719.972739 +1720.972305 +1725.971501 +1726.072866 +1726.273332 +1726.373332 +1726.473365 +1726.473831 +1726.474198 +1726.573731 +1726.574331 +1726.674464 +1726.674730 +1726.675463 +1726.874230 +1726.874497 +1727.074563 +1727.173864 +1727.174164 +1727.273564 +1727.474763 +1727.674096 +1727.674396 +1727.674629 +1727.874762 +1728.174096 +1728.273929 +1728.274029 +1728.374395 +1728.474329 +1728.674761 +1728.874561 +1729.374295 +1729.474661 +1729.574561 +1729.574860 +1729.674328 +1730.074360 +1730.174527 +1730.474127 +1730.474693 +1730.574993 +1730.873794 +1730.874559 +1730.974126 +1730.974659 +1735.972423 +1736.106456 +1736.160302 +1736.258037 +1736.356272 +1736.395733 +1736.542186 +1736.653208 +1736.795666 +1736.873188 +1737.059035 +1737.106821 +1737.213880 +1737.264064 +1737.290071 +1737.291003 +1737.422738 +1737.468659 +1737.470690 +1737.509418 +1737.646914 +1737.707420 +1737.756670 +1737.852341 +1737.897696 +1737.939088 +1737.940253 +1737.986074 +1738.065794 +1738.129131 +1738.191435 +1738.275884 +1738.371821 +1738.432294 +1738.528831 +1738.545181 +1738.555937 +1738.594365 +1738.594998 +1738.634359 +1738.662697 +1738.847479 +1738.876216 +1738.949610 +1738.979113 +1738.991101 +1739.031761 +1739.089403 +1739.143316 +1739.170722 +1739.193799 +1739.224701 +1739.293865 +1739.321038 +1739.333525 +1739.378947 +1739.379912 +1739.406419 +1739.486905 +1739.500858 +1739.565493 +1739.636655 +1739.664694 +1739.756868 +1739.786738 +1739.814011 +1739.842016 +1739.882209 +1739.921071 +1739.943715 +1739.985106 +1739.986272 +1740.073818 +1740.097327 +1740.126298 +1740.165859 +1740.276914 +1740.288703 +1740.319638 +1740.358433 +1740.359332 +1740.410481 +1740.411080 +1740.411346 +1740.428929 +1740.436321 +1740.462728 +1740.479145 +1740.504287 +1740.515875 +1740.585139 +1740.601356 +1740.603887 +1740.616275 +1740.630294 +1740.653937 +1740.693964 +1740.711912 +1740.752605 +1740.753371 +1740.771186 +1740.796461 +1740.845079 +1740.845612 +1740.886471 +1740.888569 +1740.918339 +1740.920903 +1740.921403 +1740.951939 +1751.973206 +1753.972405 +1753.972905 +1753.973104 +1754.155955 +1754.807836 +1755.669040 +1755.974235 +1761.072798 +1761.574862 +1761.975228 +1762.474561 +1762.475127 +1762.675194 +1762.875094 +1763.075093 +1763.174727 +1763.175260 +1763.275260 +1763.874560 +1763.874859 +1763.875259 +1763.974260 +1764.074293 +1764.074926 +1764.174726 +1764.175159 +1764.275159 +1764.374892 +1764.375159 +1764.474959 +1764.475292 +1764.574825 +1764.675192 +1764.774825 +1764.875058 +1764.974226 +1765.275224 +1765.374725 +1765.474991 +1765.475124 +1765.475257 +1765.575058 +1765.774258 +1770.995099 +1771.006254 +1771.141219 +1771.263963 +1771.315212 +1771.467160 +1771.534026 +1771.632094 +1771.772953 +1771.824069 +1771.863330 +1771.903123 +1771.953106 +1772.006153 +1772.073752 +1772.191168 +1772.277182 +1772.318441 +1772.376283 +1772.427099 +1772.455404 +1772.529263 +1772.530928 +1772.574551 +1772.640851 +1772.654571 +1772.755770 +1772.807485 +1772.913312 +1773.029296 +1773.099725 +1773.139952 +1773.200058 +1773.209715 +1773.247844 +1773.289702 +1773.386139 +1773.455170 +1773.493964 +1773.575982 +1773.758999 +1773.759265 +1773.790234 +1773.890600 +1773.932658 +1774.105519 +1774.163294 +1774.206917 +1774.234589 +1774.284673 +1774.310780 +1774.327663 +1774.384972 +1774.385505 +1774.410780 +1774.422102 +1774.450606 +1774.482475 +1774.625465 +1774.664825 +1774.744213 +1774.775681 +1774.830793 +1774.847209 +1774.879544 +1774.894063 +1774.953836 +1774.966324 +1774.997792 +1775.011245 +1775.044146 +1775.114608 +1775.150339 +1775.151338 +1775.152171 +1775.226030 +1775.270452 +1775.312144 +1775.324765 +1775.351971 +1775.399290 +1775.413576 +1775.442181 +1775.442946 +1775.459796 +1775.471418 +1775.478977 +1775.493396 +1775.536420 +1775.646443 +1775.698457 +1775.728161 +1775.743645 +1775.760728 +1775.832024 +1775.832790 +1775.834421 +1775.883439 +1775.887035 +1775.915374 +1775.944478 +1778.649470 +1785.110003 +1786.429915 +1787.973437 +1788.972703 +1788.973269 +1789.973202 +1790.973467 +1796.173961 +1796.374327 +1796.874627 +1797.074227 +1797.574892 +1797.575125 +1797.674459 +1797.674792 +1797.875258 +1797.975425 +1798.075391 +1798.275058 +1798.374525 +1798.574858 +1798.674192 +1798.674558 +1798.674925 +1798.675191 +1798.774791 +1798.775291 +1798.874891 +1798.975324 +1799.174624 +1799.476356 +1799.574591 +1799.575456 +1799.575923 +1799.774624 +1799.775290 +1799.874790 +1799.975290 +1800.275089 +1800.374590 +1800.475123 +1800.775422 +1800.875455 +1805.971720 +1805.987205 +1806.084208 +1806.219539 +1806.254537 +1806.330894 +1806.416342 +1806.540518 +1806.632392 +1806.633325 +1806.755836 +1806.882409 +1806.982109 +1807.136554 +1807.213944 +1807.278745 +1807.279445 +1807.333191 +1807.448209 +1807.470720 +1807.518039 +1807.619771 +1807.658232 +1807.707217 +1807.733757 +1807.834522 +1807.913776 +1807.997359 +1808.070220 +1808.098558 +1808.113110 +1808.173450 +1808.206017 +1808.234489 +1808.259530 +1808.260096 +1808.327129 +1808.369054 +1808.483173 +1808.522334 +1808.548774 +1808.643746 +1808.693962 +1808.710312 +1808.711045 +1808.725464 +1808.796859 +1808.850272 +1808.908081 +1808.938617 +1808.981275 +1809.088134 +1809.116339 +1809.164325 +1809.202953 +1809.256266 +1809.272283 +1809.302886 +1809.320102 +1809.329593 +1809.362160 +1809.453102 +1809.453469 +1809.487768 +1809.548906 +1809.583505 +1809.594527 +1809.625829 +1809.637451 +1809.738916 +1809.763425 +1809.765356 +1809.807914 +1809.822599 +1809.840415 +1809.854500 +1809.891663 +1809.892795 +1809.907114 +1809.949938 +1809.966721 +1810.073348 +1810.109911 +1810.156398 +1810.158496 +1810.183937 +1810.256065 +1810.310910 +1810.311476 +1810.385735 +1810.427227 +1810.494859 +1810.504750 +1810.578243 +1810.578609 +1810.607613 +1810.639015 +1810.654833 +1810.678609 +1810.683670 +1810.712342 +1810.725262 +1810.742012 +1810.821599 +1810.833820 +1810.847506 +1810.877843 +1810.892495 +1810.893361 +1811.281805 +1811.444742 +1816.548200 +1816.650964 +1816.655459 +1819.382962 +1819.455357 +1820.972338 +1821.972537 +1822.972603 +1822.973335 +1822.974201 +1823.973301 +1825.973299 +1830.972961 +1831.273860 +1831.274193 +1831.274559 +1831.374126 +1831.474825 +1831.575158 +1831.774891 +1831.874592 +1831.974225 +1832.074192 +1832.173293 +1832.173959 +1832.174658 +1832.374325 +1832.374624 +1832.374924 +1832.474358 +1832.574125 +1832.574591 +1832.674458 +1832.674724 +1832.774358 +1832.775057 +1832.874790 +1832.875223 +1832.974624 +1832.975023 +1833.075356 +1833.274823 +1833.275456 +1833.374857 +1833.375456 +1833.474956 +1833.674656 +1833.674923 +1833.773957 +1833.774656 +1833.874157 +1833.874923 +1833.974656 +1833.974923 +1834.074190 +1834.074856 +1834.175056 +1834.375189 +1834.474656 +1834.475222 +1834.575055 +1834.575421 +1834.675421 +1835.074988 +1835.274222 +1835.374688 +1835.375421 +1835.473789 +1835.474788 +1835.574155 +1835.574854 +1835.774554 +1835.774821 +1835.874121 +1835.874821 +1835.974588 +1840.972318 +1840.988136 +1841.010713 +1841.144246 +1841.215142 +1841.268622 +1841.359930 +1841.406084 +1841.429161 +1841.431891 +1841.463327 +1841.500556 +1841.501688 +1841.556700 +1841.606217 +1841.660563 +1841.775081 +1841.818138 +1841.955734 +1842.105451 +1842.155068 +1842.156133 +1842.183506 +1842.210612 +1842.213542 +1842.264491 +1842.359829 +1842.461694 +1842.485437 +1842.537451 +1842.625630 +1842.711044 +1842.723732 +1842.781707 +1842.836319 +1842.895593 +1842.898324 +1842.914574 +1843.051737 +1843.090631 +1843.139382 +1843.217171 +1843.274047 +1843.304717 +1843.325862 +1843.411976 +1843.438516 +1843.466888 +1843.491730 +1843.545143 +1843.641013 +1843.653967 +1843.683937 +1843.907280 +1843.936884 +1844.010643 +1844.037783 +1844.067087 +1844.081506 +1844.142312 +1844.167253 +1844.233853 +1844.265821 +1844.292761 +1844.308645 +1844.320766 +1844.381872 +1844.407147 +1844.441113 +1844.441845 +1844.471316 +1844.502751 +1844.531156 +1844.607046 +1844.610610 +1844.620466 +1844.667586 +1844.710110 +1844.732254 +1844.759794 +1844.789497 +1844.846107 +1844.943510 +1845.006147 +1845.032287 +1845.072947 +1845.088365 +1845.146939 +1845.161258 +1845.179207 +1845.220932 +1845.236050 +1845.263190 +1845.295924 +1845.296789 +1845.353799 +1845.394758 +1845.395391 +1845.421698 +1845.450702 +1845.497322 +1845.498021 +1845.500752 +1845.571281 +1845.572547 +1845.638680 +1845.653699 +1845.678307 +1845.697522 +1845.756296 +1845.786965 +1845.805014 +1845.825061 +1845.852433 +1845.880105 +1845.895790 +1845.908910 +1856.973235 +1857.973200 +1859.973232 +1860.050754 +1860.972864 +1865.972759 +1866.173525 +1866.274058 +1866.474024 +1866.573425 +1866.573991 +1866.574624 +1866.774190 +1866.774257 +1866.874590 +1866.973624 +1867.074024 +1867.174490 +1867.174789 +1867.374523 +1867.774156 +1867.975155 +1868.075155 +1868.274755 +1868.374056 +1868.374355 +1868.374688 +1868.475154 +1868.574355 +1868.574921 +1868.674588 +1868.774588 +1868.774888 +1868.775054 +1868.875054 +1869.074455 +1869.074621 +1869.174654 +1869.174987 +1869.274787 +1869.474621 +1869.474887 +1869.674554 +1869.675020 +1869.974520 +1870.075186 +1870.275186 +1870.375086 +1870.774619 +1870.775152 +1870.974519 +1876.047441 +1876.069719 +1876.085437 +1876.158097 +1876.447807 +1876.483671 +1876.509978 +1876.690631 +1876.783804 +1876.797857 +1876.891829 +1877.326494 +1877.438882 +1877.497789 +1877.500420 +1877.539781 +1877.578675 +1877.637483 +1877.737216 +1877.804083 +1877.832887 +1877.834952 +1877.908612 +1877.970416 +1877.971449 +1878.026827 +1878.055331 +1878.091895 +1878.170416 +1878.287532 +1878.355531 +1878.486067 +1878.488298 +1878.513040 +1878.607179 +1878.665687 +1878.812041 +1878.859227 +1878.888031 +1878.961025 +1878.961891 +1879.046439 +1879.061824 +1879.076076 +1879.089430 +1879.118767 +1879.157362 +1879.187764 +1879.234784 +1879.235417 +1879.264221 +1879.280971 +1879.305380 +1879.337448 +1879.352733 +1879.398653 +1879.428790 +1879.441744 +1879.459726 +1879.518300 +1879.526525 +1879.527458 +1879.559259 +1879.587298 +1879.623628 +1879.650934 +1879.662156 +1879.662955 +1879.708377 +1879.730754 +1879.743175 +1879.746205 +1879.789995 +1879.821796 +1879.877441 +1879.903415 +1879.915403 +1879.960458 +1880.021463 +1880.023694 +1880.091660 +1880.094024 +1880.143608 +1880.157327 +1880.204280 +1880.243941 +1880.272545 +1880.330587 +1880.331686 +1880.364786 +1880.379039 +1880.426025 +1880.439145 +1880.531986 +1880.560024 +1880.636914 +1880.664153 +1880.664586 +1880.696121 +1880.739844 +1880.754796 +1880.771046 +1880.783534 +1880.784599 +1880.815402 +1880.844772 +1880.878838 +1880.909907 +1880.923427 +1880.940410 +1880.940843 +1890.972601 +1891.972800 +1893.972232 +1893.972765 +1894.972098 +1894.972630 +1895.972596 +1901.072957 +1901.172924 +1901.373556 +1901.374089 +1901.474089 +1901.573656 +1901.574156 +1901.673856 +1901.773656 +1901.774322 +1901.873989 +1901.874522 +1901.974588 +1902.274654 +1902.373988 +1902.374521 +1902.374688 +1902.474155 +1902.574588 +1902.674754 +1902.874088 +1902.974121 +1903.073988 +1903.074654 +1903.374587 +1903.574387 +1903.674187 +1903.774486 +1904.074186 +1904.174186 +1904.274386 +1904.374686 +1904.574552 +1904.674252 +1904.674519 +1904.674685 +1904.874519 +1904.874785 +1904.974552 +1905.174119 +1905.174652 +1905.473985 +1905.674118 +1905.874251 +1905.874851 +1910.971948 +1910.986700 +1911.009910 +1911.134286 +1911.207579 +1911.261292 +1911.261525 +1911.395425 +1911.433853 +1911.470150 +1911.543943 +1911.546307 +1911.584102 +1911.584802 +1911.620299 +1911.652467 +1911.687266 +1911.688298 +1911.701618 +1911.727459 +1911.794891 +1911.829590 +1911.865954 +1911.931055 +1912.055131 +1912.183935 +1912.197089 +1912.221697 +1912.310209 +1912.375310 +1912.403216 +1912.485733 +1912.529956 +1912.565753 +1912.604548 +1912.641211 +1912.693792 +1912.713605 +1912.818567 +1912.896955 +1912.910308 +1912.949536 +1912.978740 +1913.029123 +1913.042309 +1913.081170 +1913.110241 +1913.112006 +1913.165086 +1913.176741 +1913.202749 +1913.203015 +1913.232053 +1913.257627 +1913.269682 +1913.312572 +1913.396488 +1913.409209 +1913.424260 +1913.449369 +1913.464453 +1913.516501 +1913.574976 +1913.600584 +1913.630188 +1913.657993 +1913.671713 +1913.685099 +1913.698253 +1913.755362 +1913.808276 +1913.839911 +1913.892492 +1914.021995 +1914.066418 +1914.111606 +1914.138479 +1914.167083 +1914.181502 +1914.183933 +1914.196954 +1914.254662 +1914.300450 +1914.340010 +1914.383167 +1914.413104 +1914.534782 +1914.546837 +1914.636214 +1914.650200 +1914.666417 +1914.710706 +1914.726690 +1914.755994 +1914.783034 +1914.803580 +1914.871012 +1914.884499 +1914.884865 +1914.952397 +1914.981701 +1914.997552 +1915.012071 +1915.026690 +1915.069613 +1915.128787 +1915.177306 +1915.208341 +1915.251831 +1915.252231 +1915.268215 +1915.271378 +1915.284398 +1915.298384 +1915.328954 +1915.329919 +1915.358058 +1915.358924 +1915.370579 +1915.418964 +1915.473176 +1915.475440 +1915.476639 +1915.492290 +1915.578104 +1915.608008 +1915.638178 +1915.666283 +1915.698684 +1915.726090 +1915.757325 +1915.772310 +1915.808141 +1915.853296 +1915.913968 +1915.914667 +1915.931817 +1915.956692 +1926.973431 +1928.972230 +1928.972463 +1929.972229 +1929.972462 +1936.072256 +1936.173222 +1936.273522 +1936.573555 +1936.574121 +1936.673921 +1936.974220 +1937.074387 +1937.274187 +1937.373987 +1937.474320 +1937.573720 +1937.574220 +1937.773953 +1937.874286 +1938.074119 +1938.074386 +1938.272987 +1938.273220 +1938.273753 +1938.274252 +1938.473519 +1938.473986 +1938.574119 +1939.072387 +1939.073086 +1939.073619 +1939.172153 +1939.273485 +1939.372186 +1939.474184 +1939.573851 +1939.774351 +1939.873585 +1939.874317 +1940.173884 +1940.474217 +1940.573884 +1940.574450 +1940.673883 +1940.872551 +1946.158993 +1946.298220 +1946.333818 +1946.346971 +1946.442542 +1946.444873 +1946.485100 +1946.498486 +1946.583734 +1946.620331 +1946.736648 +1946.832985 +1946.916135 +1947.026758 +1947.096221 +1947.136781 +1947.188629 +1947.309142 +1947.415169 +1947.455562 +1947.575908 +1947.577806 +1947.641143 +1947.703547 +1947.744905 +1947.778505 +1947.816534 +1947.973543 +1948.010806 +1948.011205 +1948.038245 +1948.094389 +1948.136180 +1948.176873 +1948.239477 +1948.275641 +1948.367382 +1948.381501 +1948.418531 +1948.421761 +1948.461421 +1948.496087 +1948.521595 +1948.619696 +1948.646003 +1948.676007 +1948.781767 +1948.863386 +1948.899383 +1948.989892 +1949.000715 +1949.028720 +1949.057591 +1949.099916 +1949.127754 +1949.165650 +1949.179902 +1949.215666 +1949.231784 +1949.274041 +1949.316565 +1949.372609 +1949.374807 +1949.404844 +1949.417365 +1949.459089 +1949.459889 +1949.558423 +1949.631583 +1949.661354 +1949.716698 +1949.775573 +1949.858257 +1949.886861 +1949.903811 +1949.922992 +1949.947667 +1949.993721 +1950.033914 +1950.050164 +1950.076338 +1950.100814 +1950.124357 +1950.149632 +1950.195319 +1950.205909 +1950.206641 +1950.207274 +1950.229485 +1950.273341 +1950.333714 +1950.385795 +1950.415732 +1950.445569 +1950.464450 +1950.522059 +1950.573474 +1950.585862 +1950.628519 +1950.644103 +1950.688059 +1950.730450 +1950.761186 +1950.761519 +1950.776604 +1950.792688 +1950.833447 +1950.833880 +1950.857456 +1950.875305 +1950.904076 +1950.920227 +1950.944136 +1950.955092 +1950.957256 +1960.971432 +1960.971965 +1961.971198 +1961.971931 +1962.972063 +1962.972762 +1963.971762 +1964.971595 +1964.972161 +1970.970590 +1971.071922 +1971.171722 +1971.172288 +1971.372854 +1971.473453 +1971.573619 +1971.673386 +1971.673753 +1971.873719 +1972.073885 +1972.173419 +1972.273053 +1972.273286 +1972.373053 +1972.473019 +1972.573485 +1972.573852 +1972.773518 +1972.774018 +1972.973252 +1972.974084 +1973.073385 +1973.074084 +1973.173518 +1973.174184 +1973.273751 +1973.573118 +1973.673484 +1973.673651 +1973.772751 +1973.773517 +1973.773684 +1973.873417 +1973.873784 +1973.972785 +1973.973550 +1973.973950 +1974.073517 +1974.073983 +1974.173384 +1974.173683 +1974.173983 +1974.273284 +1974.273950 +1974.373816 +1974.473883 +1974.573250 +1974.573616 +1974.673350 +1974.673683 +1974.773650 +1974.873849 +1974.972983 +1974.973583 +1974.973882 +1975.073849 +1975.174149 +1975.273616 +1975.273915 +1975.274182 +1975.373915 +1975.374115 +1975.473682 +1975.473949 +1975.474115 +1975.773549 +1975.973349 +1975.973615 +1975.973881 +1979.847337 +1980.335249 +1981.039311 +1981.039744 +1981.182701 +1981.231985 +1981.280636 +1981.319197 +1981.370313 +1981.397086 +1981.411372 +1981.473310 +1981.498751 +1981.606909 +1981.644006 +1981.680103 +1981.777605 +1981.820929 +1981.848767 +1981.904112 +1982.027355 +1982.148634 +1982.257891 +1982.305277 +1982.393122 +1982.424924 +1982.448733 +1982.449999 +1982.475773 +1982.527222 +1982.580335 +1982.598883 +1982.668047 +1982.696086 +1982.876772 +1982.938676 +1982.976805 +1983.084997 +1983.301247 +1983.337810 +1983.386395 +1983.429518 +1983.472942 +1983.516232 +1983.548766 +1983.550630 +1983.610737 +1983.639741 +1983.665482 +1983.707507 +1983.746801 +1983.748066 +1983.804043 +1983.818063 +1983.835146 +1983.860187 +1983.863684 +1983.905009 +1984.075006 +1984.109038 +1984.109837 +1984.187626 +1984.211469 +1984.248798 +1984.284396 +1984.319994 +1984.358855 +1984.386227 +1984.413300 +1984.454392 +1984.510270 +1984.521226 +1984.550063 +1984.575505 +1984.599614 +1984.603843 +1984.664282 +1984.664982 +1984.690856 +1984.756990 +1984.785295 +1984.797882 +1984.799747 +1984.824122 +1984.849797 +1984.861918 +1984.931348 +1984.997915 +1984.999047 +1985.013966 +1985.089390 +1985.102011 +1985.155024 +1985.200579 +1985.214798 +1985.270709 +1985.326852 +1985.351894 +1985.378467 +1985.379233 +1985.405307 +1985.406306 +1985.467279 +1985.546366 +1985.630482 +1985.630548 +1985.659120 +1985.675437 +1985.702676 +1985.713599 +1985.725520 +1985.738740 +1985.766079 +1985.806206 +1985.834877 +1985.889689 +1985.914398 +1985.954324 +1985.955157 +1995.970931 +1995.972163 +1996.970431 +1996.972029 +1997.972594 +1998.972060 +2000.971059 +2000.971892 +2000.972624 +2005.971321 +2005.971787 +2006.072919 +2006.172852 +2006.373551 +2006.373918 +2006.473751 +2006.573784 +2006.774117 +2006.774450 +2006.973517 +2006.974383 +2006.974550 +2007.074283 +2007.173584 +2007.173983 +2007.274150 +2007.274816 +2007.374516 +2007.474050 +2007.573650 +2007.774516 +2007.873916 +2007.874149 +2007.874615 +2007.874682 +2007.974216 +2008.074748 +2008.174116 +2008.274415 +2008.274848 +2008.374282 +2008.374648 +2008.474848 +2008.674015 +2008.674415 +2008.774082 +2008.974748 +2009.074514 +2009.174314 +2009.274081 +2009.274381 +2009.373748 +2009.374048 +2009.473249 +2009.474414 +2009.474647 +2009.574847 +2009.874547 +2009.874780 +2010.174547 +2010.174946 +2010.474247 +2010.574413 +2010.674946 +2010.874912 +2010.974446 +2010.974845 +2015.973708 +2015.984964 +2016.074341 +2016.139176 +2016.204311 +2016.255360 +2016.280768 +2016.398483 +2016.484930 +2016.587827 +2016.688759 +2016.731583 +2016.871576 +2016.946301 +2016.946634 +2016.986461 +2017.007340 +2017.036178 +2017.061020 +2017.124789 +2017.176937 +2017.242372 +2017.278036 +2017.414033 +2017.467113 +2017.504343 +2017.518196 +2017.650297 +2017.688958 +2017.715431 +2017.809104 +2017.862018 +2017.927286 +2017.988625 +2018.103443 +2018.125521 +2018.156923 +2018.225554 +2018.260519 +2018.291854 +2018.353393 +2018.394618 +2018.443536 +2018.513766 +2018.597915 +2018.643935 +2018.732613 +2018.816729 +2018.819693 +2018.848231 +2018.933579 +2018.934811 +2018.991854 +2019.041770 +2019.080765 +2019.081730 +2019.158920 +2019.190522 +2019.212400 +2019.268610 +2019.348130 +2019.392619 +2019.421957 +2019.518926 +2019.563815 +2019.566612 +2019.613265 +2019.642203 +2019.644234 +2019.672506 +2019.702975 +2019.784061 +2019.820657 +2019.844933 +2019.915629 +2019.967510 +2020.015829 +2020.016861 +2020.038872 +2020.080298 +2020.125386 +2020.169142 +2020.196148 +2020.260018 +2020.278932 +2020.324220 +2020.369575 +2020.380430 +2020.395915 +2020.411366 +2020.451892 +2020.452358 +2020.560250 +2020.616095 +2020.643001 +2020.643667 +2020.706870 +2020.732378 +2020.807336 +2020.808136 +2020.809667 +2020.861815 +2020.874569 +2020.883893 +2020.886024 +2020.886890 +2020.925185 +2030.973527 +2031.973359 +2031.973492 +2032.972326 +2032.973625 +2033.972358 +2034.973789 +2035.972656 +2035.973255 +2035.973555 +2040.972951 +2040.973184 +2040.980143 +2041.274249 +2041.374682 +2041.474748 +2041.575148 +2041.675181 +2041.775447 +2041.875514 +2042.075480 +2042.174281 +2042.174614 +2042.375147 +2042.375547 +2042.574847 +2042.675680 +2042.774880 +2042.775779 +2042.875380 +2042.975413 +2042.975846 +2043.075280 +2043.176012 +2043.475379 +2043.575146 +2043.575479 +2043.675712 +2043.775812 +2043.874613 +2043.875545 +2043.974779 +2043.975412 +2044.075645 +2044.175212 +2044.175745 +2044.376011 +2044.475611 +2044.575544 +2044.576011 +2044.774845 +2044.875877 +2045.074279 +2045.074612 +2045.075377 +2045.075644 +2045.175211 +2045.275677 +2045.575577 +2045.675210 +2045.775876 +2045.874944 +2045.974810 +2045.975243 +2045.975410 +2045.975510 +2050.973107 +2051.026787 +2051.133880 +2051.246400 +2051.294619 +2051.330416 +2051.331149 +2051.381698 +2051.462284 +2051.521325 +2051.575005 +2051.685927 +2051.723090 +2051.757455 +2051.829517 +2051.982031 +2052.034978 +2052.088457 +2052.138074 +2052.163449 +2052.218227 +2052.276669 +2052.305507 +2052.391820 +2052.403176 +2052.493285 +2052.579766 +2052.614697 +2052.732546 +2052.848830 +2052.914031 +2052.952626 +2052.979565 +2053.019392 +2053.048896 +2053.072372 +2053.148097 +2053.227084 +2053.280065 +2053.318293 +2053.333511 +2053.388489 +2053.416361 +2053.469042 +2053.534843 +2053.577434 +2053.671772 +2053.698679 +2053.781363 +2053.834876 +2053.920257 +2053.971706 +2054.000610 +2054.041769 +2054.042235 +2054.083927 +2054.125818 +2054.137706 +2054.152924 +2054.205705 +2054.219125 +2054.262248 +2054.262614 +2054.291186 +2054.416027 +2054.426417 +2054.456753 +2054.496613 +2054.539670 +2054.542767 +2054.570373 +2054.618059 +2054.620156 +2054.621155 +2054.683027 +2054.712331 +2054.741102 +2054.770439 +2054.786024 +2054.816260 +2054.859850 +2054.862514 +2054.885557 +2054.942134 +2054.952890 +2054.969473 +2054.992184 +2055.086323 +2055.099943 +2055.110998 +2055.188687 +2055.190153 +2055.229213 +2055.257452 +2055.258151 +2055.282127 +2055.296346 +2055.341002 +2055.356653 +2055.372403 +2055.388387 +2055.418524 +2055.470372 +2055.514261 +2055.553555 +2055.657585 +2055.668940 +2055.684325 +2055.704138 +2055.761747 +2055.790418 +2055.806968 +2055.863945 +2055.885523 +2055.959349 +2055.960148 +2066.973990 +2066.974157 +2067.974023 +2069.973088 +2069.973721 +2069.973954 +2069.974120 +2069.974986 +2070.974053 +2072.682643 +2075.154701 +2075.187435 +2075.972949 +2075.973282 +2076.374780 +2076.575013 +2076.675113 +2076.775645 +2076.875579 +2077.274812 +2077.375578 +2077.575378 +2077.675178 +2077.775145 +2077.875311 +2077.875544 +2077.975478 +2078.175045 +2078.175478 +2078.474678 +2078.475178 +2078.575477 +2078.775510 +2078.775677 +2078.875843 +2078.975344 +2078.975810 +2079.075510 +2079.275443 +2079.375443 +2079.375909 +2079.475609 +2079.475809 +2079.675509 +2079.775509 +2079.875176 +2079.875742 +2080.075143 +2080.175442 +2080.275209 +2080.275775 +2080.475375 +2080.675442 +2080.775608 +2080.775941 +2085.980465 +2085.996216 +2086.213698 +2086.288190 +2086.333411 +2086.462216 +2086.580031 +2086.841236 +2086.843334 +2086.869508 +2086.961449 +2087.004307 +2087.058053 +2087.082229 +2087.121256 +2087.121955 +2087.206504 +2087.304106 +2087.315628 +2087.347263 +2087.538239 +2087.562814 +2087.626484 +2087.684992 +2087.778565 +2087.832478 +2088.028182 +2088.048295 +2088.080929 +2088.184558 +2088.204305 +2088.288921 +2088.330745 +2088.359084 +2088.385624 +2088.455820 +2088.499044 +2088.512963 +2088.524385 +2088.567608 +2088.567975 +2088.671671 +2088.683626 +2088.735007 +2088.737105 +2088.767075 +2088.792983 +2088.898244 +2088.951158 +2089.028147 +2089.049160 +2089.086789 +2089.126282 +2089.214527 +2089.267275 +2089.283625 +2089.297544 +2089.339536 +2089.390718 +2089.418224 +2089.421221 +2089.444364 +2089.507834 +2089.519089 +2089.591017 +2089.611563 +2089.641400 +2089.668440 +2089.668806 +2089.736905 +2089.765809 +2089.767241 +2089.781826 +2089.797211 +2089.824017 +2089.847727 +2089.892882 +2089.910764 +2089.967107 +2090.013794 +2090.025915 +2090.050790 +2090.052022 +2090.066441 +2090.080993 +2090.082692 +2090.134373 +2090.163344 +2090.164044 +2090.230843 +2090.258516 +2090.320321 +2090.321486 +2090.360913 +2090.393714 +2090.394446 +2090.424483 +2090.443630 +2090.475798 +2090.492382 +2090.520820 +2090.550590 +2090.588319 +2090.632908 +2090.660513 +2090.703104 +2090.710930 +2090.711929 +2090.740467 +2090.755618 +2090.756684 +2090.770370 +2090.798808 +2090.813460 +2090.814759 +2090.845994 +2090.878062 +2090.903537 +2090.904403 +2090.936637 +2090.968305 +2100.973856 +2101.972890 +2103.973887 +2103.974120 +2104.974019 +2110.972781 +2111.174479 +2111.275012 +2111.374545 +2111.474545 +2111.675044 +2111.775511 +2111.875444 +2111.975144 +2111.975677 +2112.275277 +2112.375976 +2112.475976 +2112.575243 +2112.575976 +2112.675110 +2112.774877 +2112.875809 +2112.975343 +2112.975543 +2113.075210 +2113.175642 +2113.375209 +2113.375775 +2113.475109 +2113.575176 +2113.675209 +2113.675575 +2113.675875 +2113.874876 +2113.875708 +2113.974876 +2114.075342 +2114.075641 +2114.175175 +2114.175475 +2114.175675 +2114.275608 +2114.375308 +2114.475075 +2114.575208 +2114.575807 +2114.774941 +2114.775241 +2114.775508 +2114.974941 +2114.975507 +2115.174874 +2115.275807 +2115.474808 +2115.575274 +2115.775174 +2115.875407 +2115.974907 +2115.975773 +2120.972904 +2120.973670 +2120.996813 +2121.157552 +2121.182794 +2121.198944 +2121.229081 +2121.360283 +2121.384325 +2121.437339 +2121.492151 +2121.657585 +2121.726716 +2121.858351 +2121.984125 +2122.038437 +2122.131244 +2122.281827 +2122.309266 +2122.455487 +2122.558384 +2122.651823 +2122.652789 +2122.705703 +2122.865443 +2122.865876 +2122.923019 +2122.923551 +2122.990951 +2123.051323 +2123.080927 +2123.093182 +2123.147094 +2123.187720 +2123.296645 +2123.365076 +2123.576498 +2123.649458 +2123.662945 +2123.712129 +2123.767706 +2123.795545 +2123.841199 +2123.857949 +2123.914126 +2123.914693 +2123.944130 +2123.955185 +2124.157916 +2124.217689 +2124.291116 +2124.338868 +2124.434938 +2124.526380 +2124.528611 +2124.559247 +2124.663110 +2124.755318 +2124.756084 +2124.842064 +2124.857249 +2124.910063 +2124.940999 +2124.974099 +2125.017256 +2125.029244 +2125.108864 +2125.114525 +2125.134671 +2125.193812 +2125.195111 +2125.211128 +2125.225847 +2125.274298 +2125.303802 +2125.342696 +2125.355617 +2125.446193 +2125.461677 +2125.555117 +2125.569270 +2125.569869 +2125.599306 +2125.629409 +2125.663875 +2125.700205 +2125.701604 +2125.752220 +2125.793812 +2125.807298 +2125.884554 +2125.910894 +2125.966106 +2125.966639 +2135.972290 +2136.972189 +2140.973084 +2145.972313 +2146.273911 +2146.474277 +2146.673877 +2146.773977 +2146.774543 +2147.174010 +2147.174609 +2147.274343 +2147.274543 +2147.374609 +2147.474376 +2147.574409 +2147.674609 +2147.774143 +2147.774509 +2147.874109 +2147.874575 +2148.074708 +2148.173509 +2148.174642 +2148.274309 +2148.374275 +2148.374608 +2148.375574 +2148.773908 +2148.874341 +2148.874608 +2149.074241 +2149.174041 +2149.373708 +2149.374474 +2149.474141 +2149.474474 +2149.574674 +2149.674440 +2149.774340 +2149.874307 +2149.974140 +2150.074273 +2150.274273 +2150.374240 +2150.473973 +2150.574073 +2150.873973 +2150.874572 +2155.971703 +2156.023685 +2156.109865 +2156.217491 +2156.278530 +2156.371437 +2156.476298 +2156.476964 +2156.671037 +2156.729378 +2157.192914 +2157.279428 +2157.325082 +2157.366241 +2157.470803 +2157.512428 +2157.612628 +2157.621019 +2157.661878 +2157.738601 +2157.789883 +2157.890050 +2157.914792 +2157.953453 +2157.964975 +2158.026114 +2158.089817 +2158.144895 +2158.216789 +2158.273966 +2158.325947 +2158.386053 +2158.449823 +2158.471501 +2158.633439 +2158.679526 +2158.773033 +2158.773599 +2158.832506 +2158.834305 +2158.861577 +2158.862543 +2158.910895 +2158.930675 +2158.945726 +2158.948524 +2159.003535 +2159.069036 +2159.101471 +2159.121750 +2159.136402 +2159.151820 +2159.166705 +2159.219586 +2159.260545 +2159.282789 +2159.283721 +2159.312959 +2159.313691 +2159.365906 +2159.403968 +2159.414058 +2159.453851 +2159.454351 +2159.482789 +2159.520385 +2159.548623 +2159.577061 +2159.614357 +2159.644760 +2159.645226 +2159.703634 +2159.704534 +2159.733505 +2159.791114 +2159.791780 +2159.805066 +2159.836735 +2159.863941 +2159.876128 +2159.876928 +2159.904633 +2159.944160 +2159.945426 +2159.958712 +2159.986018 +2160.046325 +2160.060577 +2160.094876 +2160.124213 +2160.137467 +2160.163075 +2160.224746 +2160.255116 +2160.269302 +2160.367037 +2160.393644 +2160.425046 +2160.439664 +2160.440996 +2160.463008 +2160.478825 +2160.479991 +2160.520783 +2160.550087 +2160.560577 +2160.576694 +2160.637866 +2160.666337 +2160.682288 +2160.744925 +2160.774729 +2160.882188 +2160.941495 +2160.941862 +2170.970556 +2171.971721 +2172.971520 +2173.971419 +2174.971751 +2180.969680 +2180.970247 +2181.070746 +2181.071512 +2181.071845 +2181.172311 +2181.272078 +2181.573343 +2181.773110 +2181.773443 +2181.971944 +2181.972543 +2181.973243 +2182.074042 +2182.172710 +2182.272709 +2182.273209 +2182.673475 +2182.873508 +2182.972109 +2183.272908 +2183.372675 +2183.373474 +2183.473075 +2183.673208 +2183.873107 +2184.171409 +2184.273240 +2184.273607 +2184.373540 +2184.473506 +2184.573007 +2184.673573 +2184.771308 +2184.873240 +2184.973206 +2185.273006 +2185.273506 +2185.373272 +2185.472773 +2185.473339 +2185.573472 +2185.772173 +2185.872706 +2185.873039 +2185.873239 +2190.985788 +2191.178328 +2191.282990 +2191.345761 +2191.383556 +2191.576263 +2191.666340 +2191.780825 +2191.783056 +2192.011195 +2192.063209 +2192.191081 +2192.260945 +2192.406765 +2192.455084 +2192.514890 +2192.583821 +2192.716389 +2192.840598 +2192.854917 +2192.904567 +2192.980957 +2193.019119 +2193.076495 +2193.128143 +2193.130474 +2193.238066 +2193.289149 +2193.359378 +2193.372299 +2193.396042 +2193.450387 +2193.453751 +2193.509162 +2193.558446 +2193.827277 +2193.871133 +2193.885452 +2193.955382 +2194.060576 +2194.171965 +2194.199038 +2194.240996 +2194.265838 +2194.279124 +2194.332038 +2194.358778 +2194.376460 +2194.376960 +2194.479624 +2194.522048 +2194.565538 +2194.595674 +2194.652717 +2194.711591 +2194.728941 +2194.743892 +2194.770632 +2194.803666 +2194.817053 +2194.831538 +2194.858078 +2194.880356 +2194.967768 +2195.007062 +2195.021548 +2195.047156 +2195.090446 +2195.091311 +2195.119583 +2195.146623 +2195.190346 +2195.204531 +2195.248854 +2195.301068 +2195.329639 +2195.521048 +2195.545990 +2195.548420 +2195.549153 +2195.584484 +2195.611357 +2195.612090 +2195.626509 +2195.637398 +2195.647688 +2195.650219 +2195.696772 +2195.697804 +2195.772596 +2195.785483 +2195.786582 +2195.802233 +2195.827375 +2195.843825 +2195.857811 +2195.886582 +2195.920881 +2195.960075 +2195.961207 +2202.871657 +2206.700424 +2207.623500 +2207.700223 +2207.810479 +2207.851105 +2207.993430 +2208.076746 +2208.700788 +2208.705583 +2209.393661 +2209.844577 +2210.700520 +2210.700786 +2210.708012 +2211.700985 +2211.701351 +2211.701718 +2216.700314 +2216.706042 +2216.706508 +2217.101979 +2217.902444 +2219.003042 +2219.102709 +2219.503508 +2219.702675 +2219.802409 +2220.303141 +2221.002841 +2221.102774 +2226.217354 +2226.712492 +2226.961975 +2227.012125 +2227.012891 +2227.058179 +2227.365139 +2227.390114 +2227.442161 +2227.550919 +2227.740063 +2227.814389 +2227.894509 +2228.086849 +2228.099803 +2228.125944 +2228.220882 +2228.245990 +2228.259177 +2228.333136 +2228.357612 +2228.418118 +2228.473729 +2228.526310 +2228.570099 +2228.596273 +2228.597405 +2228.620249 +2228.656313 +2228.681388 +2228.695041 +2228.746156 +2228.772463 +2228.774228 +2228.798803 +2228.826576 +2228.866402 +2228.891644 +2228.931337 +2228.970265 +2228.972763 +2229.011624 +2229.052316 +2229.055846 +2229.071797 +2229.085383 +2229.138663 +2229.168800 +2229.210258 +2229.223845 +2229.252016 +2229.331570 +2229.356012 +2229.381420 +2229.410191 +2229.437065 +2229.450385 +2229.479822 +2229.515553 +2229.578290 +2229.594340 +2229.595906 +2229.652449 +2229.680854 +2229.707261 +2229.735632 +2229.754613 +2229.767900 +2229.794973 +2229.806961 +2229.844390 +2229.867767 +2229.869265 +2229.882652 +2229.909725 +2229.913421 +2229.953514 +2229.965169 +2230.068632 +2230.094440 +2230.138030 +2230.152282 +2230.180520 +2230.220281 +2230.238129 +2230.253048 +2230.269065 +2230.297803 +2230.324410 +2230.353947 +2230.378123 +2230.378988 +2230.379621 +2230.396371 +2230.409358 +2230.417683 +2230.439261 +2230.465768 +2230.482318 +2230.484416 +2230.499135 +2230.499501 +2230.527440 +2230.558242 +2230.588279 +2230.601466 +2230.647386 +2230.659741 +2230.689511 +2230.718682 +2230.721179 +2230.752847 +2230.766800 +2230.780387 +2230.782718 +2230.795938 +2230.810856 +2230.843657 +2230.887113 +2230.890543 +2230.891242 +2230.921978 +2230.936863 +2230.937163 +2230.951049 +2230.953547 +2230.982984 +2231.013087 +2231.013453 +2231.014153 +2231.040759 +2231.041159 +2231.046853 +2231.122711 +2231.123077 +2231.136164 +2231.139927 +2231.151249 +2231.167632 +2231.168565 +2231.212321 +2231.214419 +2231.240959 +2231.268132 +2231.271462 +2231.282284 +2231.284482 +2231.285048 +2231.316283 +2231.329637 +2231.359573 +2231.374891 +2231.390276 +2231.391109 +2231.404362 +2231.406127 +2231.421445 +2231.450216 +2231.453613 +2231.466966 +2231.483683 +2231.498235 +2231.510922 +2231.528305 +2231.530802 +2231.545954 +2231.562903 +2231.589643 +2231.590143 +2231.608558 +2231.618414 +2231.618581 +2231.625208 +2231.638994 +2231.652114 +2231.668098 +2231.681651 +2231.683516 +2231.696303 +2231.697768 +2234.241622 +2239.204787 +2241.706516 +2242.702619 +2243.708945 +2245.701584 +2245.702216 +2246.703547 +2251.037143 +2252.004441 +2252.103675 +2252.104408 +2252.304374 +2253.003375 +2253.104607 +2253.204340 +2254.103640 +2254.104472 +2254.503839 +2254.705438 +2254.803739 +2254.804239 +2255.004105 +2255.304538 +2255.704637 +2255.804437 +2256.004004 +2256.204370 +2256.404570 +2256.504637 +2256.704403 +2258.818087 +2261.702966 +2261.708394 +2261.838397 +2261.888914 +2261.986949 +2261.999203 +2262.059576 +2262.090578 +2262.124644 +2262.147088 +2262.260641 +2262.262107 +2262.359143 +2262.372696 +2262.426808 +2262.492376 +2262.520748 +2262.594541 +2262.682952 +2262.725077 +2262.769565 +2262.840228 +2262.878556 +2262.973694 +2263.025542 +2263.117617 +2263.138796 +2263.151683 +2263.173328 +2263.197171 +2263.260541 +2263.276192 +2263.296038 +2263.298935 +2263.327374 +2263.341626 +2263.353847 +2263.404530 +2263.406494 +2263.437397 +2263.459142 +2263.474193 +2263.545855 +2263.605429 +2263.630537 +2263.658276 +2263.659974 +2263.684150 +2263.763970 +2263.801532 +2263.814653 +2263.894706 +2263.923011 +2263.932435 +2263.985182 +2264.008592 +2264.011622 +2264.049184 +2264.095871 +2264.137629 +2264.176857 +2264.179154 +2264.233400 +2264.262404 +2264.271229 +2264.301898 +2264.329271 +2264.356843 +2264.397935 +2264.451815 +2264.479487 +2264.507925 +2264.535031 +2264.551082 +2264.591741 +2264.606194 +2264.619847 +2264.661072 +2264.672993 +2264.729537 +2264.757109 +2264.783683 +2264.784815 +2264.811255 +2264.826673 +2264.868131 +2264.869330 +2264.910855 +2264.964135 +2265.007725 +2265.022377 +2265.037129 +2265.053446 +2265.065367 +2265.065933 +2265.110722 +2265.122843 +2265.135530 +2265.150515 +2265.180152 +2265.195370 +2265.221211 +2265.237994 +2265.250349 +2265.266399 +2265.267698 +2265.338427 +2265.340126 +2265.367565 +2265.394904 +2265.408224 +2265.409423 +2265.411188 +2265.439126 +2265.440858 +2265.468297 +2265.469796 +2265.497235 +2265.510588 +2265.523908 +2265.526606 +2265.552380 +2265.555310 +2265.583715 +2265.599066 +2265.613319 +2265.641524 +2265.652080 +2265.656675 +2265.669562 +2265.696069 +2265.697268 +2265.698101 +2265.740824 +2265.741157 +2265.756409 +2265.783515 +2265.814684 +2265.866965 +2265.879486 +2265.904927 +2265.967498 +2265.967764 +2265.982283 +2265.996369 +2266.038360 +2266.049449 +2266.050082 +2266.063202 +2266.089775 +2266.090741 +2266.104460 +2266.107890 +2266.117514 +2266.121477 +2266.138360 +2266.168796 +2266.182416 +2266.204261 +2266.206758 +2266.207591 +2266.221377 +2266.223308 +2266.224440 +2266.234397 +2266.239925 +2266.247018 +2266.248416 +2266.260038 +2266.278986 +2266.305959 +2266.308889 +2266.333098 +2266.335396 +2266.335796 +2266.362602 +2266.364800 +2266.375722 +2266.393205 +2266.416548 +2266.441490 +2266.453777 +2266.454443 +2266.480451 +2266.495602 +2266.496834 +2266.497334 +2266.510587 +2266.522375 +2266.524673 +2266.540824 +2266.550347 +2266.573990 +2266.574590 +2266.575322 +2266.576055 +2266.588975 +2266.593005 +2266.606724 +2266.629901 +2266.632499 +2266.689941 +2276.710510 +2278.710908 +2280.703713 +2281.703546 +2281.704212 +2281.704212 +2286.708969 +2286.804973 +2287.205239 +2287.205505 +2287.305338 +2287.505338 +2287.705837 +2287.905471 +2288.005704 +2288.205870 +2288.605504 +2289.105603 +2289.105936 +2289.306002 +2289.306269 +2289.405736 +2289.605636 +2289.705502 +2289.805602 +2289.805902 +2290.105868 +2290.205502 +2290.505868 +2290.605835 +2290.805868 +2290.906034 +2291.005501 +2291.105867 +2291.205334 +2291.205967 +2291.305667 +2291.506000 +2296.789245 +2296.851749 +2296.923810 +2297.031702 +2297.046820 +2297.100600 +2297.140560 +2297.204796 +2297.249251 +2297.397203 +2297.472727 +2297.493973 +2297.538961 +2297.574392 +2297.771662 +2297.798868 +2297.859307 +2297.901232 +2297.916949 +2297.921212 +2297.970363 +2297.993373 +2298.020179 +2298.035797 +2298.096903 +2298.147086 +2298.173892 +2298.244888 +2298.245620 +2298.294904 +2298.319047 +2298.332933 +2298.333766 +2298.351914 +2298.361338 +2298.373892 +2298.502330 +2298.512187 +2298.571061 +2298.603529 +2298.625707 +2298.700798 +2298.701198 +2298.728870 +2298.750848 +2298.785180 +2298.833632 +2298.853512 +2298.875923 +2298.897335 +2298.933998 +2298.934797 +2298.960305 +2298.984448 +2299.006026 +2299.026505 +2299.059972 +2299.070528 +2299.113485 +2299.136562 +2299.168663 +2299.203295 +2299.248550 +2299.284680 +2299.299299 +2299.310488 +2299.335929 +2299.337028 +2299.411354 +2299.423275 +2299.434830 +2299.449982 +2299.488243 +2299.515216 +2299.527737 +2299.554477 +2299.554877 +2299.566665 +2299.583082 +2299.612985 +2299.649215 +2299.664700 +2299.675756 +2299.689442 +2299.701163 +2299.732532 +2299.742788 +2299.825805 +2299.840524 +2299.907191 +2299.944653 +2299.982282 +2299.998233 +2299.998999 +2300.073957 +2300.074623 +2300.115316 +2300.141056 +2300.150813 +2300.154077 +2300.166831 +2300.189075 +2300.216747 +2300.240657 +2300.252012 +2300.265998 +2300.281349 +2300.306125 +2300.308689 +2300.322042 +2300.322541 +2300.322808 +2300.334829 +2300.374057 +2300.398565 +2300.412352 +2300.422608 +2300.423440 +2300.438825 +2300.450380 +2300.452145 +2300.465865 +2300.466464 +2300.481815 +2300.482714 +2300.492205 +2300.510686 +2300.521109 +2300.521875 +2300.535495 +2300.538658 +2300.550746 +2300.563733 +2300.578319 +2300.605924 +2300.630700 +2300.634829 +2300.646817 +2300.650014 +2300.675222 +2300.676487 +2300.689574 +2300.690173 +2300.715415 +2300.728069 +2300.730466 +2300.742255 +2300.746384 +2300.755908 +2300.757240 +2300.757739 +2300.772158 +2300.784346 +2300.789041 +2300.801595 +2300.815448 +2300.816047 +2300.841955 +2300.842321 +2300.844119 +2300.845518 +2300.856174 +2300.856740 +2300.856940 +2300.915581 +2300.942454 +2300.969261 +2300.972391 +2300.981648 +2300.982614 +2300.994968 +2301.020576 +2301.021775 +2301.035461 +2301.051179 +2301.051845 +2301.076820 +2301.096400 +2301.098332 +2301.111885 +2301.127702 +2301.138991 +2301.139757 +2301.141555 +2301.154209 +2301.167096 +2301.180383 +2301.180916 +2301.181482 +2301.193603 +2301.203326 +2301.221242 +2301.222141 +2301.226570 +2301.248481 +2301.262667 +2301.264998 +2301.291904 +2301.316447 +2301.317246 +2301.329533 +2301.354275 +2301.361202 +2301.369860 +2301.370226 +2301.383479 +2301.397232 +2301.398131 +2301.415148 +2301.421441 +2301.422807 +2301.428201 +2301.437326 +2301.440889 +2301.465331 +2301.478851 +2301.485810 +2301.499330 +2301.502827 +2301.503126 +2301.528068 +2301.554675 +2301.557505 +2301.557772 +2301.569493 +2301.570792 +2301.572091 +2301.584245 +2301.584878 +2301.598431 +2301.598831 +2301.599596 +2301.601361 +2301.614049 +2301.614548 +2301.615081 +2301.637925 +2301.638890 +2301.645484 +2301.661634 +2301.662034 +2301.662800 +2301.678051 +2301.689706 +2301.690306 +2301.702360 +2311.703949 +2311.704548 +2314.704712 +2315.704844 +2316.704210 +2316.704710 +2321.703506 +2321.704138 +2321.805370 +2322.005903 +2322.106003 +2322.205736 +2322.305836 +2322.405769 +2322.506169 +2322.606269 +2323.006235 +2323.306168 +2323.406268 +2323.505835 +2323.506368 +2323.706268 +2323.805901 +2323.905868 +2324.005934 +2324.006534 +2324.305801 +2324.306300 +2324.405867 +2324.506200 +2324.606267 +2324.706367 +2324.805834 +2324.806067 +2325.006333 +2325.306366 +2325.406333 +2325.505700 +2325.506266 +2325.605633 +2325.605966 +2325.606266 +2325.705866 +2325.706266 +2325.806332 +2326.005799 +2326.006299 +2326.105832 +2326.106398 +2326.206332 +2326.306332 +2326.505832 +2326.605799 +2326.706065 +2329.942925 +2331.722510 +2331.785281 +2331.786113 +2331.869163 +2332.051081 +2332.063569 +2332.165333 +2332.316216 +2332.316782 +2332.445586 +2332.529236 +2332.567231 +2332.605926 +2332.712586 +2332.750881 +2332.800797 +2332.823341 +2332.863102 +2332.901996 +2332.954743 +2333.068663 +2333.139991 +2333.167663 +2333.231133 +2333.231699 +2333.284580 +2333.363934 +2333.374257 +2333.399165 +2333.456275 +2333.492771 +2333.494703 +2333.593071 +2333.606491 +2333.607090 +2333.658539 +2333.673757 +2333.750513 +2333.751845 +2333.789974 +2333.801829 +2333.827436 +2333.909221 +2333.948981 +2333.958205 +2334.026437 +2334.073090 +2334.113483 +2334.180250 +2334.206524 +2334.233164 +2334.247249 +2334.357706 +2334.384212 +2334.408588 +2334.454176 +2334.454442 +2334.482581 +2334.509021 +2334.522541 +2334.541954 +2334.581981 +2334.591438 +2334.614116 +2334.615681 +2334.675288 +2334.677352 +2334.701728 +2334.743786 +2334.772657 +2334.780682 +2334.816779 +2334.844085 +2334.869726 +2334.916113 +2334.981981 +2335.052643 +2335.083546 +2335.109686 +2335.165630 +2335.182214 +2335.223739 +2335.240056 +2335.268960 +2335.281581 +2335.296865 +2335.340788 +2335.351378 +2335.368161 +2335.437192 +2335.466529 +2335.481547 +2335.482213 +2335.495234 +2335.510452 +2335.539056 +2335.539622 +2335.568161 +2335.582679 +2335.608220 +2335.639689 +2335.665197 +2335.665796 +2335.684111 +2335.725403 +2335.728234 +2335.759269 +2335.772290 +2335.799795 +2335.804391 +2335.832230 +2335.848880 +2335.861467 +2335.877384 +2335.919442 +2335.920408 +2335.932562 +2335.950012 +2335.964331 +2335.965063 +2336.020141 +2336.022606 +2336.053242 +2336.081014 +2336.170691 +2336.215546 +2336.246515 +2336.295366 +2336.309618 +2336.339222 +2336.352542 +2336.366728 +2336.397331 +2336.412815 +2336.427301 +2336.428200 +2336.441453 +2336.443018 +2336.444517 +2336.457937 +2336.473488 +2336.474020 +2336.505855 +2336.516977 +2336.519941 +2336.532961 +2336.533761 +2336.547181 +2336.561200 +2336.577184 +2336.582379 +2336.611383 +2336.642319 +2336.655705 +2336.658203 +2336.671956 +2336.673421 +2336.700261 +2339.070155 +2341.202221 +2346.704280 +2346.705179 +2347.704645 +2348.705610 +2348.710572 +2349.706242 +2349.711769 +2350.711435 +2351.706140 +2356.804936 +2357.206467 +2357.406667 +2357.606900 +2357.706200 +2357.707000 +2357.906600 +2358.006700 +2358.106799 +2358.206766 +2358.306599 +2358.606466 +2358.606865 +2358.806799 +2359.106266 +2359.206832 +2359.506565 +2359.606398 +2359.606798 +2359.706731 +2359.806498 +2359.806931 +2359.906598 +2360.106398 +2360.307996 +2360.406730 +2360.606530 +2360.706863 +2360.906563 +2360.906863 +2361.006697 +2361.106963 +2361.606263 +2366.705159 +2366.746618 +2366.927170 +2366.929368 +2366.975955 +2367.029601 +2367.053610 +2367.064699 +2367.123340 +2367.244086 +2367.302661 +2367.395335 +2367.417280 +2367.500696 +2367.530799 +2367.531598 +2367.577619 +2367.694136 +2367.716447 +2367.787542 +2367.867695 +2367.916813 +2367.949347 +2368.019943 +2368.021075 +2368.093170 +2368.103193 +2368.128201 +2368.128901 +2368.228967 +2368.278018 +2368.279516 +2368.332297 +2368.356306 +2368.378484 +2368.445350 +2368.497532 +2368.537725 +2368.538657 +2368.609087 +2368.623039 +2368.644984 +2368.669693 +2368.770958 +2368.889206 +2368.889672 +2368.913782 +2368.993269 +2369.007121 +2369.020275 +2369.034261 +2369.061134 +2369.074154 +2369.099029 +2369.123272 +2369.137824 +2369.164997 +2369.177418 +2369.274720 +2369.275120 +2369.311117 +2369.312949 +2369.313914 +2369.351477 +2369.352309 +2369.420341 +2369.457670 +2369.533761 +2369.547481 +2369.563298 +2369.689538 +2369.716312 +2369.725369 +2369.749811 +2369.751776 +2369.798230 +2369.799029 +2369.801659 +2369.812915 +2369.836758 +2369.837857 +2369.851709 +2369.864730 +2369.891902 +2369.904190 +2369.904923 +2369.932429 +2369.960001 +2369.974853 +2369.975485 +2369.987806 +2370.026967 +2370.042985 +2370.043850 +2370.057603 +2370.103790 +2370.116811 +2370.188139 +2370.216011 +2370.230830 +2370.245981 +2370.260833 +2370.261433 +2370.275119 +2370.289837 +2370.305289 +2370.345848 +2370.346647 +2370.348112 +2370.348845 +2370.376717 +2370.378682 +2370.407353 +2370.423470 +2370.438056 +2370.452275 +2370.452808 +2370.467160 +2370.480713 +2370.498162 +2370.524103 +2370.568592 +2370.582112 +2370.582911 +2370.599161 +2370.610683 +2370.627266 +2370.642018 +2370.655771 +2370.658768 +2370.670257 +2370.699827 +2370.700426 +2370.702791 +2370.718475 +2370.733294 +2370.777316 +2370.778049 +2370.791136 +2370.793666 +2370.853140 +2370.879481 +2370.881978 +2370.897063 +2370.910350 +2370.925834 +2370.927199 +2370.940220 +2370.971222 +2370.972920 +2370.986440 +2371.017109 +2371.028831 +2371.033626 +2371.063396 +2371.084076 +2371.085574 +2371.120006 +2371.120739 +2371.144016 +2371.152607 +2371.153140 +2371.177149 +2371.178148 +2371.179247 +2371.193899 +2371.208218 +2371.208818 +2371.224269 +2371.225035 +2371.239287 +2371.241085 +2371.267392 +2371.268658 +2371.281944 +2371.284708 +2371.299360 +2371.329830 +2371.344282 +2371.358235 +2371.375584 +2371.389770 +2371.406020 +2371.434592 +2371.435990 +2371.449510 +2371.464795 +2371.483909 +2371.496530 +2371.497262 +2371.527299 +2371.528031 +2371.543816 +2371.547812 +2371.579713 +2371.623369 +2371.639520 +2371.658101 +2371.669989 +2371.670788 +2371.673253 +2371.688404 +2381.705710 +2381.705910 +2381.709673 +2383.705242 +2383.706008 +2386.705505 +2386.706138 +2386.706305 +2391.705833 +2391.709463 +2391.709696 +2391.806566 +2391.906999 +2392.006499 +2392.207498 +2392.308031 +2392.407265 +2393.007597 +2393.407264 +2393.507164 +2393.507730 +2393.607430 +2394.207629 +2394.307363 +2394.307662 +2394.407662 +2395.006762 +2395.207495 +2395.207728 +2395.507395 +2395.707394 +2395.808327 +2396.207660 +2396.307361 +2396.407261 +2396.407693 +2396.607527 +2396.707227 +2401.715647 +2401.732430 +2401.798531 +2401.940289 +2401.974221 +2402.087341 +2402.155340 +2402.324504 +2402.347881 +2402.489272 +2402.513881 +2402.587874 +2402.639855 +2402.675986 +2402.714081 +2402.768460 +2402.804091 +2402.870791 +2402.882146 +2402.959435 +2403.012149 +2403.013614 +2403.025735 +2403.053208 +2403.112648 +2403.130064 +2403.211216 +2403.254273 +2403.332129 +2403.345349 +2403.397930 +2403.435126 +2403.462731 +2403.502591 +2403.504623 +2403.544516 +2403.604822 +2403.643684 +2403.667160 +2403.724836 +2403.725035 +2403.763264 +2403.792535 +2403.816777 +2403.854239 +2403.883011 +2403.934592 +2403.958302 +2403.971389 +2403.997196 +2404.036124 +2404.088805 +2404.101359 +2404.138255 +2404.209917 +2404.237622 +2404.265328 +2404.278948 +2404.294865 +2404.295464 +2404.378415 +2404.433393 +2404.448811 +2404.474685 +2404.486240 +2404.487472 +2404.515178 +2404.558035 +2404.644049 +2404.645381 +2404.672287 +2404.701258 +2404.730762 +2404.773985 +2404.864029 +2404.901558 +2404.903989 +2404.988238 +2405.000392 +2405.021005 +2405.022204 +2405.046579 +2405.057968 +2405.103089 +2405.103755 +2405.138021 +2405.139020 +2405.152540 +2405.177815 +2405.189869 +2405.190635 +2405.191601 +2405.228930 +2405.242883 +2405.245580 +2405.284241 +2405.295497 +2405.309416 +2405.320039 +2405.333559 +2405.378813 +2405.390535 +2405.390901 +2405.393798 +2405.421271 +2405.437088 +2405.438021 +2405.461597 +2405.465293 +2405.508650 +2405.525367 +2405.539319 +2405.582043 +2405.582776 +2405.643049 +2405.672153 +2405.674251 +2405.687737 +2405.688137 +2405.716509 +2405.717508 +2405.759199 +2405.760065 +2405.788803 +2405.790868 +2405.807784 +2405.821870 +2405.837254 +2405.849476 +2405.884374 +2405.898393 +2405.928896 +2405.941883 +2405.944747 +2405.958666 +2405.987604 +2406.002223 +2406.033425 +2406.047844 +2406.063928 +2406.080111 +2406.095696 +2406.096528 +2406.110514 +2406.124600 +2406.126765 +2406.154370 +2406.172819 +2406.186039 +2406.200191 +2406.216275 +2406.217241 +2406.226531 +2406.233025 +2406.260664 +2406.261929 +2406.274450 +2406.277813 +2406.341050 +2406.351406 +2406.368822 +2406.383508 +2406.400757 +2406.416508 +2406.432658 +2406.446744 +2406.477580 +2406.494796 +2406.496828 +2406.523368 +2406.571020 +2406.573351 +2406.586971 +2406.601223 +2406.603254 +2406.618106 +2406.633324 +2406.647044 +2406.650274 +2406.665725 +2418.200978 +2419.706038 +2420.705305 +2420.705738 +2426.705365 +2427.006397 +2427.307130 +2427.406863 +2427.407163 +2427.606697 +2427.607263 +2427.907063 +2428.206796 +2428.606795 +2428.607128 +2428.706729 +2428.807395 +2429.107761 +2429.306528 +2429.306662 +2429.506761 +2429.706694 +2429.707194 +2429.806694 +2429.807127 +2430.006594 +2430.007194 +2430.107160 +2430.206727 +2430.306727 +2430.407127 +2430.606627 +2430.607160 +2430.806693 +2431.206959 +2431.407026 +2431.506793 +2431.607225 +2436.711916 +2436.821606 +2436.908519 +2436.932994 +2437.016544 +2437.167926 +2437.231296 +2437.270656 +2437.323304 +2437.422604 +2437.458901 +2437.500160 +2437.502791 +2437.576150 +2437.624202 +2437.624868 +2437.685641 +2437.711681 +2437.763396 +2437.826633 +2437.908285 +2437.945248 +2437.957835 +2437.969756 +2438.043383 +2438.067026 +2438.067658 +2438.081345 +2438.104555 +2438.144914 +2438.170422 +2438.170888 +2438.208651 +2438.261298 +2438.286007 +2438.317109 +2438.355770 +2438.415677 +2438.454571 +2438.455137 +2438.550242 +2438.597528 +2438.598294 +2438.635790 +2438.683575 +2438.685307 +2438.717308 +2438.717941 +2438.757235 +2438.783042 +2438.797062 +2438.809116 +2438.823202 +2438.871088 +2438.934091 +2438.948044 +2438.961730 +2439.035789 +2439.036688 +2439.048443 +2439.086971 +2439.101990 +2439.114277 +2439.204520 +2439.287770 +2439.327597 +2439.356502 +2439.423035 +2439.450108 +2439.476515 +2439.490035 +2439.503821 +2439.504487 +2439.505852 +2439.530694 +2439.557134 +2439.572419 +2439.600457 +2439.628296 +2439.641749 +2439.668656 +2439.671486 +2439.685073 +2439.685905 +2439.700724 +2439.712379 +2439.753205 +2439.809681 +2439.809914 +2439.882342 +2439.923001 +2439.923601 +2439.953504 +2439.953904 +2439.967157 +2439.980377 +2439.981110 +2440.007650 +2440.017307 +2440.030760 +2440.042348 +2440.067723 +2440.081043 +2440.097127 +2440.122135 +2440.124599 +2440.140151 +2440.140983 +2440.183707 +2440.187170 +2440.200523 +2440.212012 +2440.215242 +2440.228529 +2440.242548 +2440.271652 +2440.272118 +2440.302322 +2440.302754 +2440.303321 +2440.331892 +2440.333224 +2440.334090 +2440.334389 +2440.391932 +2440.405851 +2440.408249 +2440.437220 +2440.462261 +2440.482574 +2440.485971 +2440.528861 +2440.540516 +2440.556467 +2440.556833 +2440.586404 +2440.586637 +2440.586870 +2440.587736 +2440.604419 +2440.617473 +2440.617772 +2440.632458 +2440.677613 +2440.707583 +2440.719637 +2440.751006 +2440.782807 +2440.783240 +2440.799590 +2440.815175 +2440.831126 +2440.842714 +2440.859031 +2440.873716 +2440.890999 +2440.892198 +2440.919371 +2440.938352 +2440.952071 +2440.952271 +2440.981408 +2440.984605 +2441.013210 +2441.043113 +2441.057066 +2441.090000 +2441.092231 +2441.108348 +2441.119703 +2441.124032 +2441.135554 +2441.136720 +2441.151472 +2441.152271 +2441.178211 +2441.178811 +2441.207349 +2441.208181 +2441.240582 +2441.256433 +2441.271285 +2441.288434 +2441.301022 +2441.314708 +2441.333889 +2441.347142 +2441.348008 +2441.379543 +2441.394661 +2441.408781 +2441.410013 +2441.427495 +2441.438684 +2441.455334 +2441.470053 +2441.472317 +2441.486703 +2441.487635 +2441.488168 +2441.502753 +2441.517339 +2441.518238 +2441.518504 +2441.534488 +2441.551471 +2441.553702 +2441.583572 +2441.584272 +2441.612510 +2441.613975 +2441.632024 +2441.633089 +2441.664225 +2441.696493 +2451.704608 +2451.710602 +2452.704873 +2453.704206 +2453.704672 +2453.705072 +2454.704805 +2455.704071 +2455.704804 +2455.705070 +2456.520354 +2459.776694 +2461.015155 +2461.098871 +2461.133936 +2461.196273 +2461.342161 +2462.006629 +2462.705696 +2462.805962 +2462.806661 +2462.906128 +2463.006062 +2463.106295 +2463.206195 +2463.306927 +2463.406861 +2463.806694 +2464.106427 +2464.306094 +2464.306593 +2464.406893 +2464.506460 +2464.506926 +2464.606160 +2464.806859 +2464.906360 +2465.005793 +2465.006659 +2465.206126 +2465.206759 +2465.406459 +2465.506625 +2466.007024 +2466.106791 +2466.206092 +2466.306824 +2466.406325 +2466.406824 +2466.506391 +2466.506891 +2466.606924 +2466.706524 +2466.706891 +2471.714678 +2471.814511 +2471.837188 +2471.837588 +2471.902223 +2471.924268 +2471.987005 +2472.030395 +2472.082709 +2472.199792 +2472.210948 +2472.288137 +2472.288836 +2472.374084 +2472.410748 +2472.435856 +2472.446212 +2472.480112 +2472.507351 +2472.518573 +2472.586305 +2472.610714 +2472.628197 +2472.653205 +2472.697960 +2472.699991 +2472.719405 +2472.758300 +2472.800091 +2472.905719 +2472.964393 +2473.117807 +2473.223701 +2473.291966 +2473.348942 +2473.370953 +2473.385472 +2473.453271 +2473.463427 +2473.489701 +2473.524166 +2473.525165 +2473.589568 +2473.591066 +2473.665292 +2473.682208 +2473.693330 +2473.728995 +2473.731392 +2473.732758 +2473.782241 +2473.809814 +2473.834622 +2473.845245 +2473.896893 +2473.909614 +2473.910180 +2473.919904 +2473.951639 +2474.005551 +2474.035088 +2474.143946 +2474.173317 +2474.199757 +2474.201821 +2474.258898 +2474.259430 +2474.287136 +2474.327695 +2474.397559 +2474.436020 +2474.454136 +2474.467988 +2474.491598 +2474.510146 +2474.523067 +2474.523733 +2474.579510 +2474.637785 +2474.651371 +2474.721335 +2474.735021 +2474.748308 +2474.749407 +2474.778744 +2474.807848 +2474.837019 +2474.852304 +2474.853736 +2474.882374 +2474.912410 +2474.924132 +2474.940216 +2474.954401 +2474.955001 +2474.969486 +2474.984538 +2474.999756 +2475.000922 +2475.042547 +2475.059063 +2475.133023 +2475.133456 +2475.133955 +2475.148008 +2475.162127 +2475.178510 +2475.207481 +2475.220935 +2475.248973 +2475.251970 +2475.267621 +2475.341581 +2475.355666 +2475.355999 +2475.359030 +2475.400189 +2475.415140 +2475.415873 +2475.444844 +2475.459895 +2475.478177 +2475.490232 +2475.493462 +2475.522666 +2475.522966 +2475.552603 +2475.555000 +2475.568487 +2475.569452 +2475.598856 +2475.614308 +2475.644377 +2475.644611 +2475.661860 +2475.676678 +2475.703751 +2475.732955 +2475.733488 +2475.733821 +2475.749206 +2475.750871 +2475.794028 +2475.809312 +2475.837351 +2475.875446 +2475.876778 +2475.889266 +2475.891463 +2475.905616 +2475.906615 +2475.919336 +2475.934820 +2475.951370 +2475.962725 +2475.992629 +2476.002619 +2476.003818 +2476.036119 +2476.036585 +2476.038083 +2476.069485 +2476.084104 +2476.096392 +2476.099022 +2476.145176 +2476.162892 +2476.174813 +2476.208213 +2476.219801 +2476.223032 +2476.235885 +2476.248539 +2476.266588 +2476.293994 +2476.352335 +2476.363990 +2476.366854 +2476.368919 +2476.380341 +2476.381906 +2476.410877 +2476.426861 +2476.453534 +2476.469252 +2476.470317 +2476.486168 +2476.500088 +2476.530790 +2476.532155 +2476.549771 +2476.563491 +2476.566121 +2476.577976 +2476.581040 +2476.605049 +2476.619468 +2476.631623 +2476.635319 +2476.658429 +2476.659561 +2476.667620 +2476.695226 +2481.829553 +2486.705705 +2487.705771 +2487.711065 +2488.705437 +2488.712396 +2489.706634 +2490.711961 +2496.709192 +2497.006527 +2497.307160 +2497.507193 +2497.607326 +2497.707226 +2498.006992 +2498.007359 +2498.307425 +2498.507358 +2498.607491 +2498.707458 +2498.807158 +2498.907358 +2499.006991 +2499.107424 +2499.207191 +2499.407590 +2499.507091 +2499.607091 +2499.707091 +2499.707390 +2499.907423 +2500.006957 +2500.007457 +2500.106990 +2500.107423 +2500.206990 +2500.207423 +2500.407356 +2500.507423 +2500.807123 +2500.807456 +2500.906990 +2501.307455 +2501.407422 +2501.507488 +2501.607488 +2501.707488 +2506.746444 +2506.811879 +2506.822035 +2506.913211 +2506.975948 +2507.141715 +2507.151605 +2507.159830 +2507.176747 +2507.244479 +2507.274283 +2507.293197 +2507.395295 +2507.468122 +2507.532857 +2507.544079 +2507.594728 +2507.594995 +2507.662727 +2507.695960 +2507.696959 +2507.762494 +2507.796493 +2507.857166 +2507.870486 +2507.895294 +2507.906350 +2507.945744 +2508.000356 +2508.015507 +2508.026496 +2508.039084 +2508.078244 +2508.089733 +2508.100655 +2508.102986 +2508.113010 +2508.152104 +2508.201954 +2508.215008 +2508.249806 +2508.277578 +2508.290532 +2508.328261 +2508.330459 +2508.354368 +2508.402786 +2508.428927 +2508.429593 +2508.454135 +2508.455667 +2508.480908 +2508.481441 +2508.519303 +2508.519736 +2508.582739 +2508.594061 +2508.603086 +2508.624065 +2508.625663 +2508.651937 +2508.678111 +2508.691264 +2508.731191 +2508.756865 +2508.780775 +2508.794527 +2508.830025 +2508.830591 +2508.865756 +2508.872549 +2508.904551 +2508.935453 +2509.013142 +2509.014474 +2509.065922 +2509.090831 +2509.120834 +2509.159129 +2509.160395 +2509.184271 +2509.201021 +2509.240115 +2509.252969 +2509.266821 +2509.292562 +2509.320867 +2509.335886 +2509.376878 +2509.377610 +2509.392462 +2509.442545 +2509.444044 +2509.469885 +2509.497923 +2509.526994 +2509.540581 +2509.568453 +2509.581140 +2509.595226 +2509.625229 +2509.625596 +2509.639115 +2509.652968 +2509.666954 +2509.693594 +2509.704750 +2509.720034 +2509.733488 +2509.762059 +2509.764124 +2509.790098 +2509.790830 +2509.805149 +2509.816837 +2509.817071 +2509.817903 +2509.859262 +2509.859661 +2509.859928 +2509.884903 +2509.900853 +2509.911509 +2509.925828 +2509.977676 +2510.025395 +2510.029225 +2510.045142 +2510.072581 +2510.086035 +2510.099554 +2510.102651 +2510.112109 +2510.170517 +2510.183670 +2510.184070 +2510.209811 +2510.223464 +2510.225262 +2510.265755 +2510.295592 +2510.307080 +2510.333953 +2510.360094 +2510.385868 +2510.399854 +2510.401918 +2510.420300 +2510.428825 +2510.432055 +2510.447972 +2510.461026 +2510.503250 +2510.503517 +2510.505715 +2510.530856 +2510.532688 +2510.533354 +2510.593393 +2510.602784 +2510.603816 +2510.630523 +2510.656364 +2510.669118 +2510.669650 +2510.684469 +2510.685268 +2510.739580 +2510.741146 +2510.741545 +2510.768318 +2510.769118 +2510.796457 +2510.799587 +2510.815438 +2510.839048 +2510.869650 +2510.886966 +2510.887566 +2510.901618 +2510.927492 +2510.929757 +2510.931821 +2510.945774 +2510.961925 +2510.974012 +2510.991095 +2511.018235 +2511.051169 +2511.066253 +2511.092594 +2511.094126 +2511.094725 +2511.126260 +2511.140512 +2511.151102 +2511.168385 +2511.170982 +2511.197589 +2511.198954 +2511.201685 +2511.216303 +2511.231055 +2511.247672 +2511.261724 +2511.262723 +2511.274512 +2511.279673 +2511.293293 +2511.305314 +2511.319333 +2511.321232 +2511.332820 +2511.365188 +2511.392360 +2511.395757 +2511.407911 +2511.428191 +2511.440645 +2511.456496 +2511.470382 +2511.497255 +2511.499919 +2511.508611 +2511.514272 +2511.526926 +2511.531221 +2511.542943 +2511.545341 +2511.546073 +2511.561791 +2511.589463 +2511.602950 +2511.607878 +2511.616369 +2511.630722 +2511.644142 +2511.656096 +2511.656563 +2511.658993 +2511.666852 +2511.679706 +2511.681604 +2511.696656 +2511.697488 +2511.698387 +2520.023787 +2521.705137 +2521.705770 +2523.705335 +2526.704833 +2526.711959 +2531.906059 +2532.106492 +2532.206992 +2532.507158 +2532.606725 +2532.607058 +2533.107091 +2533.207224 +2533.607223 +2533.806690 +2534.006990 +2534.207123 +2534.706789 +2534.807355 +2535.107255 +2535.406755 +2535.407221 +2535.507188 +2535.806622 +2535.907021 +2536.006688 +2536.207021 +2536.607120 +2541.781174 +2541.809613 +2541.874981 +2541.909313 +2541.998623 +2542.080009 +2542.122200 +2542.164624 +2542.261793 +2542.331990 +2542.441613 +2542.451071 +2542.494327 +2542.625629 +2542.648207 +2542.681773 +2542.753068 +2542.753934 +2542.805516 +2542.831456 +2542.938849 +2542.949938 +2542.988466 +2543.014373 +2543.014740 +2543.027460 +2543.052635 +2543.078176 +2543.104750 +2543.154966 +2543.188765 +2543.189465 +2543.226761 +2543.277443 +2543.312941 +2543.322298 +2543.333754 +2543.353634 +2543.366787 +2543.469484 +2543.471216 +2543.496424 +2543.523131 +2543.547706 +2543.548172 +2543.548639 +2543.586934 +2543.599121 +2543.648672 +2543.659761 +2543.661792 +2543.715871 +2543.716271 +2543.730823 +2543.743510 +2543.770816 +2543.824030 +2543.825095 +2543.825461 +2543.873713 +2543.915804 +2543.928225 +2543.964689 +2543.990063 +2543.990629 +2544.015205 +2544.067652 +2544.069517 +2544.095058 +2544.107346 +2544.108944 +2544.147972 +2544.158695 +2544.234785 +2544.235418 +2544.235618 +2544.271881 +2544.296523 +2544.308878 +2544.331222 +2544.346507 +2544.396124 +2544.401452 +2544.425927 +2544.438548 +2544.439613 +2544.464422 +2544.487732 +2544.513007 +2544.547405 +2544.558261 +2544.571881 +2544.605547 +2544.640879 +2544.641478 +2544.669184 +2544.673379 +2544.685201 +2544.725594 +2544.726226 +2544.749303 +2544.775477 +2544.778274 +2544.794158 +2544.795524 +2544.841977 +2544.844575 +2544.895923 +2544.909310 +2544.936649 +2544.959326 +2544.973645 +2544.998354 +2545.012806 +2545.030222 +2545.039613 +2545.068384 +2545.070282 +2545.094325 +2545.106779 +2545.117768 +2545.132919 +2545.144941 +2545.200485 +2545.214438 +2545.229523 +2545.251767 +2545.264887 +2545.279906 +2545.315204 +2545.340811 +2545.341477 +2545.352000 +2545.355929 +2545.377874 +2545.379672 +2545.382170 +2545.406945 +2545.418067 +2545.430621 +2545.445740 +2545.468084 +2545.469649 +2545.484834 +2545.486132 +2545.500185 +2545.500685 +2545.525293 +2545.537581 +2545.538180 +2545.566619 +2545.567584 +2545.593125 +2545.609809 +2545.633984 +2545.636882 +2545.647005 +2545.663022 +2545.674411 +2545.674777 +2545.697587 +2545.725426 +2545.765320 +2545.789296 +2545.790861 +2545.792992 +2545.829689 +2545.841077 +2545.854397 +2545.865752 +2545.882569 +2545.896655 +2545.951333 +2545.962988 +2545.965719 +2545.980837 +2545.982069 +2545.997820 +2546.021363 +2546.024061 +2546.024727 +2546.039812 +2546.051633 +2546.067950 +2546.068882 +2546.094290 +2546.095023 +2546.109175 +2546.139545 +2546.152066 +2546.152898 +2546.178473 +2546.180038 +2546.193025 +2546.194290 +2546.209275 +2546.223328 +2546.223961 +2546.236048 +2546.248769 +2546.262555 +2546.263954 +2546.265019 +2546.279139 +2546.289728 +2546.305213 +2546.320164 +2546.321962 +2546.335282 +2546.337780 +2546.348736 +2546.352066 +2546.374676 +2546.375675 +2546.377673 +2546.429022 +2546.454097 +2546.468083 +2546.469248 +2546.471446 +2546.498219 +2546.522428 +2546.524426 +2546.525858 +2546.565619 +2546.567084 +2546.581869 +2546.594123 +2546.610873 +2546.627057 +2546.638312 +2546.641942 +2546.656061 +2546.658859 +2546.668649 +2546.671612 +2546.684133 +2546.702815 +2558.704035 +2558.705367 +2560.704898 +2560.705165 +2560.705465 +2560.705764 +2566.805392 +2567.106157 +2567.307023 +2567.507089 +2567.706989 +2567.806889 +2567.906656 +2568.106689 +2568.107022 +2568.306423 +2568.507222 +2568.606456 +2568.607055 +2568.806589 +2568.906622 +2569.007021 +2569.106422 +2569.107055 +2569.207154 +2569.306555 +2569.307088 +2569.407187 +2569.706554 +2569.806654 +2569.806954 +2569.907020 +2570.006954 +2570.207087 +2570.307153 +2570.407153 +2570.506687 +2570.507086 +2570.606887 +2570.706553 +2571.006520 +2571.206686 +2571.407252 +2571.507085 +2571.607318 +2576.705215 +2576.709311 +2576.821566 +2576.835285 +2576.883171 +2576.932588 +2576.965555 +2577.039914 +2577.091828 +2577.113940 +2577.149271 +2577.172947 +2577.174313 +2577.174612 +2577.218368 +2577.239547 +2577.254998 +2577.316770 +2577.325428 +2577.327259 +2577.387166 +2577.417369 +2577.437949 +2577.459827 +2577.544242 +2577.657163 +2577.692261 +2577.744941 +2577.789364 +2577.832154 +2577.832687 +2577.845374 +2577.870482 +2577.903283 +2577.904215 +2577.966120 +2577.987665 +2578.007778 +2578.061658 +2578.222563 +2578.223429 +2578.276609 +2578.379040 +2578.439846 +2578.465653 +2578.558960 +2578.559959 +2578.626026 +2578.626825 +2578.650768 +2578.651201 +2578.677441 +2578.710575 +2578.761091 +2578.786932 +2578.857061 +2578.958760 +2578.984933 +2579.010241 +2579.071547 +2579.072246 +2579.083501 +2579.124827 +2579.191460 +2579.216735 +2579.218966 +2579.244074 +2579.270847 +2579.271946 +2579.272812 +2579.298886 +2579.314603 +2579.356561 +2579.382502 +2579.408576 +2579.480804 +2579.481903 +2579.509442 +2579.548303 +2579.562256 +2579.614969 +2579.616335 +2579.616734 +2579.641843 +2579.670913 +2579.694124 +2579.732452 +2579.754530 +2579.779105 +2579.779571 +2579.779804 +2579.803015 +2579.828889 +2579.847037 +2579.858725 +2579.859724 +2579.896488 +2579.907010 +2579.921563 +2579.935882 +2579.945272 +2579.958759 +2579.980537 +2579.980903 +2580.008143 +2580.008975 +2580.036448 +2580.094423 +2580.106477 +2580.177673 +2580.178605 +2580.180703 +2580.219098 +2580.220996 +2580.247436 +2580.251133 +2580.277306 +2580.362455 +2580.436580 +2580.437246 +2580.465918 +2580.479071 +2580.482168 +2580.509707 +2580.554263 +2580.569680 +2580.582901 +2580.639577 +2580.696653 +2580.699317 +2580.816667 +2580.830653 +2580.858891 +2580.874409 +2580.887695 +2580.916200 +2580.918065 +2580.961288 +2580.976740 +2580.992291 +2581.036780 +2581.040542 +2581.063786 +2581.065817 +2581.083533 +2581.099117 +2581.115068 +2581.141874 +2581.155061 +2581.169147 +2581.186097 +2581.187062 +2581.187662 +2581.204045 +2581.246370 +2581.261721 +2581.279636 +2581.308674 +2581.334548 +2581.335614 +2581.339010 +2581.362620 +2581.393156 +2581.408774 +2581.409673 +2581.421894 +2581.435014 +2581.450033 +2581.474408 +2581.479203 +2581.505677 +2581.507475 +2581.509140 +2581.524425 +2581.554828 +2581.564918 +2581.566383 +2581.610272 +2581.614235 +2581.626456 +2581.629853 +2581.644571 +2581.671577 +2581.686729 +2581.697918 +2581.700116 +2581.702047 +2586.738106 +2586.771839 +2586.813464 +2587.651458 +2587.671338 +2588.823485 +2591.709396 +2592.712858 +2594.705963 +2596.706894 +2601.704724 +2601.705690 +2602.107255 +2602.206122 +2602.206922 +2602.606954 +2602.707321 +2603.407153 +2603.407753 +2603.707586 +2604.007053 +2604.007353 +2604.307486 +2604.507485 +2604.707252 +2604.807452 +2604.907518 +2605.207152 +2605.307118 +2605.407618 +2605.507018 +2605.507618 +2605.606985 +2605.607651 +2605.707118 +2605.707418 +2606.007251 +2606.207417 +2606.307017 +2606.407483 +2606.507550 +2606.508516 +2606.607450 +2611.705813 +2611.710409 +2611.715870 +2611.757695 +2611.789030 +2611.824461 +2611.857428 +2611.994291 +2612.026592 +2612.038946 +2612.093392 +2612.156995 +2612.206712 +2612.238946 +2612.280138 +2612.331520 +2612.414870 +2612.505146 +2612.610041 +2612.639212 +2612.680071 +2612.700484 +2612.745239 +2612.756961 +2612.776042 +2612.874044 +2612.915069 +2612.996754 +2613.062855 +2613.186098 +2613.207044 +2613.260923 +2613.274843 +2613.275608 +2613.313138 +2613.324659 +2613.362988 +2613.414336 +2613.415335 +2613.477107 +2613.520030 +2613.605045 +2613.709741 +2613.711306 +2613.734949 +2613.778006 +2613.816867 +2613.856660 +2613.868015 +2613.896953 +2613.918332 +2613.972777 +2613.984232 +2614.012171 +2614.026124 +2614.037113 +2614.090060 +2614.102481 +2614.146070 +2614.198718 +2614.239410 +2614.267749 +2614.293490 +2614.320929 +2614.347569 +2614.374209 +2614.386130 +2614.412537 +2614.414402 +2614.440043 +2614.460289 +2614.462487 +2614.488095 +2614.488794 +2614.513336 +2614.540409 +2614.564552 +2614.578438 +2614.603779 +2614.604145 +2614.617399 +2614.643939 +2614.673176 +2614.698950 +2614.700449 +2614.701714 +2614.729953 +2614.730918 +2614.758124 +2614.784931 +2614.785763 +2614.812903 +2614.815667 +2614.827422 +2614.839476 +2614.842040 +2614.870579 +2614.910838 +2614.923692 +2614.937778 +2614.938211 +2614.953862 +2614.980802 +2615.009872 +2615.025890 +2615.038644 +2615.048301 +2615.060555 +2615.063885 +2615.107242 +2615.145270 +2615.146369 +2615.157924 +2615.193788 +2615.233582 +2615.234081 +2615.234747 +2615.262320 +2615.265117 +2615.277838 +2615.278803 +2615.290691 +2615.306209 +2615.306842 +2615.317698 +2615.319429 +2615.334048 +2615.361187 +2615.361387 +2615.442373 +2615.442839 +2615.443838 +2615.460721 +2615.472543 +2615.500481 +2615.527887 +2615.540175 +2615.558723 +2615.571177 +2615.584364 +2615.593322 +2615.594154 +2615.621161 +2615.638010 +2615.638477 +2615.652263 +2615.664018 +2615.664717 +2615.679136 +2615.709472 +2615.712036 +2615.752562 +2615.752829 +2615.764284 +2615.820328 +2615.830351 +2615.831450 +2615.846335 +2615.846602 +2615.860554 +2615.876039 +2615.902446 +2615.919828 +2615.961253 +2615.972709 +2615.988726 +2616.027121 +2616.058789 +2616.062086 +2616.069645 +2616.084264 +2616.100181 +2616.113434 +2616.134480 +2616.162852 +2616.171843 +2616.188526 +2616.201513 +2616.203378 +2616.204477 +2616.217330 +2616.217897 +2616.220261 +2616.247966 +2616.292189 +2616.305276 +2616.307407 +2616.318363 +2616.348566 +2616.360853 +2616.364050 +2616.380467 +2616.394486 +2616.411436 +2616.426554 +2616.454959 +2616.486861 +2616.496851 +2616.499581 +2616.516564 +2616.532981 +2616.547000 +2616.549032 +2616.576005 +2616.579468 +2616.590191 +2616.592855 +2616.607773 +2616.608605 +2616.621726 +2616.669744 +2616.670410 +2626.712525 +2628.706828 +2636.704989 +2636.705688 +2636.805888 +2636.806221 +2636.806720 +2637.207719 +2637.207886 +2637.307519 +2637.607552 +2637.707619 +2637.807685 +2637.907552 +2637.907718 +2638.007718 +2638.107718 +2638.207318 +2638.207651 +2638.607651 +2638.807318 +2639.007418 +2639.107251 +2639.207351 +2639.907683 +2640.008083 +2640.107716 +2640.207516 +2640.307283 +2640.607915 +2640.707616 +2640.708049 +2640.907549 +2641.107948 +2641.207149 +2641.207915 +2641.307515 +2641.507582 +2641.607448 +2641.707448 +2646.722328 +2646.912704 +2646.935648 +2646.974809 +2646.976108 +2647.033617 +2647.046404 +2647.090693 +2647.133883 +2647.165951 +2647.198185 +2647.307975 +2647.406743 +2647.426457 +2647.477839 +2647.599983 +2647.632151 +2647.662587 +2647.689593 +2647.770346 +2647.863419 +2647.883599 +2647.986196 +2647.998717 +2648.244471 +2648.256026 +2648.289559 +2648.319862 +2648.430019 +2648.452097 +2648.478237 +2648.559756 +2648.595586 +2648.649066 +2648.670978 +2648.714834 +2648.753229 +2648.766116 +2648.791390 +2648.885163 +2648.909938 +2648.936345 +2648.937544 +2649.071410 +2649.163518 +2649.178803 +2649.193721 +2649.221260 +2649.248799 +2649.276072 +2649.287461 +2649.318330 +2649.343937 +2649.396685 +2649.418729 +2649.442106 +2649.443971 +2649.492855 +2649.497750 +2649.537410 +2649.549465 +2649.585063 +2649.614333 +2649.640241 +2649.640807 +2649.678403 +2649.705742 +2649.706974 +2649.733414 +2649.747300 +2649.750930 +2649.779268 +2649.808139 +2649.809471 +2649.823058 +2649.836911 +2649.837643 +2649.851063 +2649.866048 +2649.893254 +2649.946534 +2649.989558 +2650.004176 +2650.005275 +2650.032282 +2650.045468 +2650.089524 +2650.122258 +2650.148798 +2650.149031 +2650.177836 +2650.179201 +2650.208838 +2650.262085 +2650.291689 +2650.321292 +2650.336977 +2650.362218 +2650.363284 +2650.363950 +2650.416331 +2650.424323 +2650.480566 +2650.536477 +2650.537742 +2650.562851 +2650.591722 +2650.601312 +2650.601978 +2650.603643 +2650.604143 +2650.630450 +2650.657189 +2650.710603 +2650.737010 +2650.766114 +2650.779567 +2650.782364 +2650.808338 +2650.838641 +2650.868445 +2650.869510 +2650.901478 +2650.916164 +2650.932481 +2650.974738 +2651.017695 +2651.040539 +2651.067412 +2651.082031 +2651.111535 +2651.126287 +2651.141038 +2651.165680 +2651.169144 +2651.196083 +2651.207172 +2651.219593 +2651.245933 +2651.246733 +2651.247166 +2651.284395 +2651.285227 +2651.327086 +2651.330948 +2651.346133 +2651.375437 +2651.390356 +2651.391521 +2651.403043 +2651.433146 +2651.466180 +2651.524721 +2651.536110 +2651.548597 +2651.604441 +2651.614498 +2651.617861 +2651.643868 +2651.669709 +2651.670309 +2651.687225 +2654.612264 +2654.817192 +2655.563711 +2663.706361 +2663.706660 +2664.706027 +2665.706558 +2666.706091 +2666.706524 +2671.713179 +2671.805953 +2671.806652 +2671.806852 +2671.906286 +2672.006885 +2672.107784 +2672.207817 +2672.407484 +2672.407750 +2672.408816 +2672.606785 +2672.607018 +2672.807717 +2672.907850 +2673.007583 +2673.007783 +2673.107617 +2673.107816 +2673.207250 +2673.207616 +2673.207850 +2673.407783 +2673.607150 +2674.307316 +2674.507482 +2674.907948 +2675.007848 +2675.308913 +2675.807647 +2676.007114 +2676.107713 +2676.307647 +2676.407813 +2676.607846 +2676.707413 +2681.714135 +2681.794921 +2681.838610 +2681.926389 +2681.926988 +2681.937678 +2682.025989 +2682.027721 +2682.141074 +2682.209306 +2682.282999 +2682.294953 +2682.354460 +2682.390491 +2682.431383 +2682.450831 +2682.537810 +2682.550831 +2682.562785 +2682.633015 +2682.671809 +2682.685929 +2682.686794 +2682.710138 +2682.766182 +2682.789958 +2682.852096 +2682.878170 +2682.892622 +2682.920261 +2683.007573 +2683.007873 +2683.008339 +2683.034213 +2683.096451 +2683.175439 +2683.202911 +2683.215965 +2683.291889 +2683.305442 +2683.342372 +2683.366015 +2683.391023 +2683.391522 +2683.434946 +2683.460587 +2683.486394 +2683.498748 +2683.501046 +2683.526920 +2683.550963 +2683.602445 +2683.614599 +2683.624423 +2683.728685 +2683.779634 +2683.829051 +2683.855192 +2683.858355 +2683.873773 +2683.898748 +2683.912900 +2683.935311 +2683.987093 +2684.040007 +2684.066347 +2684.092487 +2684.106473 +2684.118528 +2684.169177 +2684.222058 +2684.305474 +2684.320359 +2684.361784 +2684.377336 +2684.391088 +2684.406173 +2684.448831 +2684.477935 +2684.478468 +2684.545401 +2684.615464 +2684.616330 +2684.639806 +2684.641971 +2684.654059 +2684.655357 +2684.717662 +2684.795683 +2684.816796 +2684.910635 +2684.926552 +2684.938474 +2684.940205 +2684.954391 +2684.968977 +2684.984128 +2684.997348 +2684.997748 +2685.027751 +2685.042836 +2685.068743 +2685.070342 +2685.097781 +2685.127518 +2685.140705 +2685.173339 +2685.197548 +2685.211767 +2685.223788 +2685.237674 +2685.252260 +2685.281797 +2685.309702 +2685.323289 +2685.338973 +2685.408237 +2685.422356 +2685.436742 +2685.440272 +2685.466046 +2685.478034 +2685.523821 +2685.525386 +2685.537974 +2685.539239 +2685.578966 +2685.579432 +2685.610568 +2685.626285 +2685.628050 +2685.652726 +2685.653691 +2685.654757 +2685.692386 +2685.695416 +2685.728283 +2685.752592 +2685.754657 +2685.756988 +2685.805339 +2685.805539 +2685.863348 +2685.876502 +2685.894184 +2685.907271 +2685.933278 +2685.934011 +2685.950827 +2686.008636 +2686.081363 +2686.081963 +2686.082629 +2686.095682 +2686.124520 +2686.125452 +2686.157021 +2686.187157 +2686.205239 +2686.215462 +2686.234177 +2686.234610 +2686.246997 +2686.292452 +2686.294816 +2686.324886 +2686.327017 +2686.354490 +2686.355422 +2686.370374 +2686.371406 +2686.387324 +2686.427084 +2686.455755 +2686.497080 +2686.504906 +2686.521456 +2686.551293 +2686.562715 +2686.566145 +2686.580763 +2686.581196 +2686.591253 +2686.593784 +2686.640836 +2686.654656 +2686.670407 +2686.685625 +2686.697080 +2686.697946 +2695.341061 +2696.706394 +2697.706027 +2700.706790 +2706.807183 +2707.208082 +2707.408015 +2707.507948 +2707.708448 +2707.807848 +2708.007582 +2708.108281 +2708.208381 +2708.307814 +2708.308281 +2708.408247 +2708.508247 +2708.608147 +2708.608414 +2708.708347 +2708.807947 +2709.008047 +2709.208280 +2709.308446 +2709.907879 +2710.107946 +2710.108445 +2710.207946 +2710.208479 +2710.408512 +2710.708645 +2710.908278 +2711.008278 +2711.207945 +2711.208378 +2711.308078 +2711.308477 +2711.408111 +2711.408444 +2711.508544 +2716.713634 +2716.862784 +2716.907473 +2716.959754 +2716.960353 +2717.035778 +2717.078701 +2717.128119 +2717.196484 +2717.261818 +2717.302944 +2717.392121 +2717.449131 +2717.527752 +2717.624722 +2717.657089 +2717.694119 +2717.771441 +2717.811102 +2717.811601 +2717.879933 +2717.915830 +2717.948964 +2718.015464 +2718.043902 +2718.093985 +2718.137808 +2718.177402 +2718.235177 +2718.267278 +2718.268610 +2718.329616 +2718.356656 +2718.383196 +2718.384295 +2718.420125 +2718.442436 +2718.470641 +2718.502310 +2718.526719 +2718.540938 +2718.555490 +2718.579899 +2718.643868 +2718.673638 +2718.695017 +2718.754391 +2718.769709 +2718.822589 +2718.873172 +2718.874038 +2718.911767 +2718.924321 +2718.990654 +2719.059718 +2719.059952 +2719.083761 +2719.135509 +2719.149695 +2719.150994 +2719.232579 +2719.234377 +2719.284160 +2719.300078 +2719.340171 +2719.394883 +2719.395349 +2719.408536 +2719.436674 +2719.450461 +2719.493551 +2719.495982 +2719.534310 +2719.554257 +2719.614796 +2719.616428 +2719.633577 +2719.678932 +2719.694483 +2719.709068 +2719.724719 +2719.739305 +2719.754023 +2719.780730 +2719.819991 +2719.821389 +2719.833744 +2719.864879 +2719.893018 +2719.957353 +2720.030613 +2720.032645 +2720.057187 +2720.085292 +2720.085725 +2720.086058 +2720.111765 +2720.134876 +2720.158652 +2720.160683 +2720.186391 +2720.187756 +2720.267176 +2720.285691 +2720.298279 +2720.325118 +2720.340603 +2720.341369 +2720.368841 +2720.371272 +2720.413030 +2720.436607 +2720.473403 +2720.499411 +2720.502674 +2720.577433 +2720.607569 +2720.609134 +2720.649127 +2720.681329 +2720.711865 +2720.728881 +2720.739604 +2720.741269 +2720.787589 +2720.808934 +2720.811964 +2720.825151 +2720.851125 +2720.867109 +2720.867908 +2720.868341 +2720.894349 +2720.909334 +2720.922254 +2720.923786 +2720.955587 +2720.965744 +2720.998178 +2721.022087 +2721.038338 +2721.046530 +2721.058285 +2721.061282 +2721.072770 +2721.100942 +2721.116060 +2721.142633 +2721.159184 +2721.162780 +2721.174601 +2721.205837 +2721.218890 +2721.232810 +2721.233709 +2721.247462 +2721.248061 +2721.293050 +2721.325517 +2721.338704 +2721.365477 +2721.387555 +2721.425317 +2721.448860 +2721.459550 +2721.471371 +2721.483093 +2721.495547 +2721.496313 +2721.497145 +2721.507202 +2721.533242 +2721.546529 +2721.572969 +2721.574568 +2721.611597 +2721.614028 +2721.628947 +2721.642200 +2721.668307 +2721.668840 +2726.971765 +2727.013024 +2731.705993 +2734.706822 +2734.707289 +2741.906782 +2742.208180 +2742.507747 +2742.807613 +2742.807946 +2742.907647 +2743.007880 +2743.008079 +2743.207680 +2743.807479 +2744.007912 +2744.107879 +2744.207645 +2744.307645 +2744.308045 +2744.907711 +2745.007844 +2745.107678 +2745.407644 +2745.407977 +2745.507677 +2745.607644 +2745.607910 +2745.707611 +2745.807677 +2745.807977 +2745.907910 +2746.007644 +2746.107976 +2746.207677 +2746.407843 +2746.507210 +2746.707443 +2751.705673 +2751.716929 +2751.786825 +2751.825553 +2751.826086 +2751.890621 +2751.891454 +2751.933545 +2752.014098 +2752.051460 +2752.121057 +2752.137807 +2752.138640 +2752.265047 +2752.299712 +2752.359452 +2752.399279 +2752.448996 +2752.500777 +2752.526218 +2752.569076 +2752.771839 +2752.857087 +2752.931280 +2752.933477 +2753.007237 +2753.096814 +2753.232278 +2753.245598 +2753.269308 +2753.269674 +2753.294683 +2753.332411 +2753.347396 +2753.410900 +2753.435741 +2753.483760 +2753.484093 +2753.518325 +2753.600377 +2753.628082 +2753.679164 +2753.752558 +2753.801176 +2753.815162 +2753.844532 +2753.857719 +2753.883293 +2753.938705 +2753.939371 +2753.971538 +2753.972604 +2754.016960 +2754.044166 +2754.078465 +2754.117759 +2754.131944 +2754.169174 +2754.197712 +2754.210366 +2754.212031 +2754.239803 +2754.266543 +2754.294781 +2754.321255 +2754.322287 +2754.375567 +2754.376533 +2754.377232 +2754.405571 +2754.433842 +2754.445830 +2754.515560 +2754.516127 +2754.528148 +2754.559583 +2754.586656 +2754.613196 +2754.615028 +2754.629613 +2754.644265 +2754.699043 +2754.715594 +2754.768174 +2754.813229 +2754.825650 +2754.843832 +2754.856852 +2754.868674 +2754.897278 +2754.912896 +2754.913262 +2754.942300 +2754.955287 +2754.973169 +2755.000342 +2755.027748 +2755.057884 +2755.073735 +2755.086755 +2755.118424 +2755.134841 +2755.146629 +2755.148560 +2755.163745 +2755.176665 +2755.194048 +2755.266076 +2755.268440 +2755.364910 +2755.396845 +2755.425350 +2755.426216 +2755.441966 +2755.485123 +2755.517557 +2755.530711 +2755.531044 +2755.561014 +2755.578530 +2755.579296 +2755.636871 +2755.698310 +2755.698676 +2755.698943 +2755.712695 +2755.745096 +2755.774933 +2755.788453 +2755.803738 +2755.805836 +2755.836438 +2755.865742 +2755.866808 +2755.882292 +2755.898043 +2755.911230 +2755.940534 +2755.942565 +2755.959215 +2755.972269 +2755.988253 +2756.000774 +2756.002972 +2756.030977 +2756.032109 +2756.032575 +2756.048459 +2756.064477 +2756.079528 +2756.094180 +2756.108166 +2756.137204 +2756.153021 +2756.192349 +2756.226415 +2756.241033 +2756.256917 +2756.297144 +2756.300873 +2756.331110 +2756.357350 +2756.371869 +2756.372868 +2756.403770 +2756.416458 +2756.420154 +2756.442798 +2756.450890 +2756.466408 +2756.505968 +2756.509165 +2756.509564 +2756.537636 +2756.547593 +2756.576164 +2756.607367 +2756.621752 +2756.648758 +2756.685422 +2756.699308 +2759.207397 +2766.705392 +2766.705592 +2768.705590 +2770.705687 +2771.705453 +2776.905581 +2777.106780 +2777.306813 +2777.406347 +2777.506680 +2777.506913 +2777.806779 +2777.906779 +2777.906979 +2778.006479 +2778.106846 +2778.206346 +2778.206812 +2778.206979 +2778.306845 +2778.406379 +2778.406812 +2778.706845 +2778.806945 +2779.106445 +2779.206878 +2779.306578 +2779.606911 +2779.706544 +2779.806444 +2779.906910 +2780.006477 +2780.106943 +2780.507076 +2780.706377 +2781.106410 +2781.106809 +2781.306942 +2781.406909 +2781.606576 +2781.706509 +2786.704206 +2786.704806 +2786.715562 +2787.151359 +2787.151991 +2787.215927 +2787.415161 +2787.462680 +2787.463147 +2787.511964 +2787.651625 +2787.652257 +2787.691951 +2787.729080 +2787.756686 +2787.802440 +2787.919723 +2787.976200 +2787.992184 +2788.040402 +2788.075733 +2788.161547 +2788.173402 +2788.205836 +2788.242966 +2788.266975 +2788.290685 +2788.343032 +2788.408400 +2788.430711 +2788.485956 +2788.550491 +2788.578297 +2788.643831 +2788.656052 +2788.668140 +2788.680728 +2788.734108 +2788.808000 +2788.942366 +2788.968473 +2788.969272 +2788.969738 +2788.994247 +2789.048926 +2789.050491 +2789.061979 +2789.073834 +2789.113528 +2789.186954 +2789.221720 +2789.222985 +2789.246628 +2789.247394 +2789.260114 +2789.313727 +2789.326282 +2789.352688 +2789.366008 +2789.391883 +2789.392782 +2789.407234 +2789.419821 +2789.431942 +2789.436105 +2789.461546 +2789.529678 +2789.572369 +2789.584456 +2789.614593 +2789.642265 +2789.684257 +2789.712595 +2789.724050 +2789.752655 +2789.780027 +2789.780560 +2789.810064 +2789.864476 +2789.865209 +2789.880194 +2789.892848 +2789.893347 +2789.950756 +2789.951522 +2789.979028 +2790.004236 +2790.059548 +2790.091749 +2790.121186 +2790.131975 +2790.161312 +2790.177596 +2790.189784 +2790.203970 +2790.218056 +2790.232474 +2790.248092 +2790.262844 +2790.276897 +2790.304969 +2790.306134 +2790.307100 +2790.380526 +2790.382225 +2790.410563 +2790.429144 +2790.451555 +2790.452221 +2790.468705 +2790.498208 +2790.511795 +2790.539267 +2790.568871 +2790.585321 +2790.598475 +2790.600839 +2790.614126 +2790.644828 +2790.716557 +2790.716956 +2790.733373 +2790.746460 +2790.787419 +2790.830476 +2790.844861 +2790.845727 +2790.872134 +2790.897109 +2790.925980 +2790.964408 +2790.967905 +2790.993379 +2791.006999 +2791.007732 +2791.034472 +2791.036403 +2791.064741 +2791.080326 +2791.080725 +2791.083090 +2791.108364 +2791.122683 +2791.123483 +2791.124248 +2791.153186 +2791.182790 +2791.183023 +2791.198374 +2791.200872 +2791.229044 +2791.231408 +2791.258581 +2791.260112 +2791.285354 +2791.302603 +2791.311461 +2791.326446 +2791.338367 +2791.343329 +2791.378694 +2791.380159 +2791.407964 +2791.408397 +2791.447225 +2791.464108 +2791.480459 +2791.494944 +2791.497175 +2791.506066 +2791.506699 +2791.519886 +2791.522916 +2791.549922 +2791.561444 +2791.564941 +2791.565940 +2791.602470 +2791.609196 +2791.651621 +2791.652253 +2791.661944 +2791.692913 +2795.074494 +2795.175993 +2795.183552 +2801.704657 +2801.710352 +2802.705522 +2802.711783 +2803.711282 +2804.705587 +2811.704714 +2811.705180 +2812.106812 +2812.306578 +2812.306878 +2812.406711 +2812.407178 +2812.507078 +2812.806711 +2812.807044 +2812.907011 +2813.507210 +2813.606677 +2813.907043 +2814.107109 +2814.206210 +2814.206643 +2814.207342 +2814.306643 +2814.307242 +2814.406743 +2814.407076 +2814.507242 +2814.607342 +2814.706876 +2814.707408 +2814.906809 +2814.907108 +2814.907342 +2815.107108 +2815.107308 +2815.206775 +2815.207408 +2815.407408 +2815.507341 +2815.907407 +2816.007374 +2816.207207 +2816.407340 +2821.710099 +2821.889586 +2821.905803 +2821.945829 +2821.969372 +2822.154221 +2822.258616 +2822.354853 +2822.456918 +2822.488486 +2822.599142 +2822.635872 +2822.651823 +2822.671803 +2822.693814 +2822.742166 +2822.821919 +2822.842665 +2822.858016 +2822.918023 +2822.970337 +2823.098043 +2823.127047 +2823.159381 +2823.181293 +2823.203637 +2823.229278 +2823.268306 +2823.278795 +2823.406501 +2823.485355 +2823.559614 +2823.584256 +2823.604069 +2823.705501 +2823.739434 +2823.780693 +2823.805901 +2823.828511 +2823.903137 +2823.920053 +2823.956150 +2823.983656 +2824.007066 +2824.009530 +2824.052021 +2824.064742 +2824.128045 +2824.155617 +2824.166407 +2824.181292 +2824.206100 +2824.231941 +2824.257515 +2824.273433 +2824.296976 +2824.310729 +2824.379160 +2824.402837 +2824.423915 +2824.456716 +2824.480026 +2824.492480 +2824.505334 +2824.508364 +2824.534005 +2824.562443 +2824.627545 +2824.654918 +2824.707265 +2824.733006 +2824.746659 +2824.787984 +2824.803469 +2824.843462 +2824.871534 +2824.873665 +2824.929842 +2824.930242 +2824.969603 +2824.986552 +2825.028510 +2825.043895 +2825.056349 +2825.127578 +2825.130541 +2825.157714 +2825.181490 +2825.182323 +2825.194677 +2825.212060 +2825.226778 +2825.266605 +2825.282156 +2825.323515 +2825.338000 +2825.350954 +2825.380358 +2825.406365 +2825.420684 +2825.456016 +2825.533638 +2825.557814 +2825.572166 +2825.573065 +2825.586352 +2825.601204 +2825.613458 +2825.629808 +2825.641097 +2825.670068 +2825.699572 +2825.714324 +2825.716455 +2825.742995 +2825.743761 +2825.745359 +2825.772865 +2825.785786 +2825.803168 +2825.816055 +2825.846491 +2825.862908 +2825.876561 +2825.892778 +2825.921483 +2825.922549 +2825.935935 +2825.939931 +2825.967137 +2825.979292 +2826.006232 +2826.048190 +2826.116754 +2826.119119 +2826.145992 +2826.152685 +2826.164506 +2826.164939 +2826.178859 +2826.181789 +2826.193810 +2826.209628 +2826.221549 +2826.233937 +2826.236867 +2826.252518 +2826.263641 +2826.265605 +2826.279358 +2826.280557 +2826.281856 +2826.296275 +2826.297107 +2826.309961 +2826.322382 +2826.349088 +2826.359212 +2826.364739 +2826.382488 +2826.397606 +2826.413957 +2826.438166 +2826.441895 +2826.452785 +2826.497873 +2826.512192 +2826.524246 +2826.538432 +2826.566437 +2826.579591 +2826.594742 +2826.595642 +2826.611126 +2826.612158 +2826.643094 +2826.645292 +2826.659378 +2826.672132 +2826.672764 +2826.674796 +2826.688082 +2826.688782 +2833.550946 +2834.880482 +2834.884611 +2835.101927 +2835.884677 +2836.879947 +2836.887206 +2837.880212 +2837.886939 +2838.884574 +2839.880044 +2845.182103 +2845.381437 +2845.682602 +2846.482435 +2846.682535 +2846.882668 +2854.997511 +2855.019656 +2855.233309 +2855.442466 +2855.454421 +2855.521354 +2855.522985 +2855.524051 +2855.615126 +2855.670671 +2855.739136 +2855.826082 +2855.889518 +2855.906535 +2855.930211 +2855.987221 +2856.050824 +2856.073501 +2856.079894 +2856.205569 +2856.241633 +2856.304003 +2856.304903 +2856.371170 +2856.371669 +2856.421319 +2856.453454 +2856.476997 +2856.508599 +2856.566241 +2856.567207 +2856.580993 +2856.633873 +2856.700773 +2856.714226 +2856.751988 +2856.767373 +2856.791282 +2856.833673 +2856.845062 +2856.889651 +2856.977196 +2857.032508 +2857.033307 +2857.071402 +2857.098475 +2857.121452 +2857.153819 +2857.166041 +2857.191948 +2857.269104 +2857.296144 +2857.321951 +2857.362111 +2857.387119 +2857.410163 +2857.410696 +2857.507033 +2857.517489 +2857.547159 +2857.562777 +2857.632873 +2857.715923 +2857.755517 +2857.757915 +2857.770436 +2857.780825 +2857.797309 +2857.824981 +2857.837702 +2857.864508 +2857.876962 +2857.878128 +2857.893113 +2857.915823 +2857.941031 +2857.981924 +2858.092080 +2858.117055 +2858.142130 +2858.155084 +2858.218687 +2858.257948 +2858.300239 +2858.344128 +2858.357481 +2858.400105 +2858.403901 +2858.447025 +2858.458780 +2858.472100 +2858.490715 +2858.504967 +2858.516955 +2858.562043 +2858.562676 +2858.627744 +2858.638267 +2858.654051 +2858.655083 +2858.667338 +2858.696042 +2858.697574 +2858.698040 +2858.725180 +2858.753218 +2858.780924 +2858.820618 +2858.821184 +2858.848090 +2858.862343 +2858.884087 +2858.898706 +2858.909629 +2858.924980 +2858.938300 +2858.939632 +2858.954151 +2858.955949 +2858.967937 +2858.982256 +2858.982922 +2859.008296 +2859.009295 +2859.037634 +2859.067271 +2859.082689 +2859.096009 +2859.096575 +2859.112659 +2859.126611 +2859.127544 +2859.139365 +2859.140631 +2859.143295 +2859.169269 +2859.184687 +2859.216621 +2859.218320 +2859.226312 +2859.243994 +2859.260211 +2859.303534 +2859.304600 +2859.334170 +2859.349621 +2859.351520 +2859.376661 +2859.378692 +2859.393478 +2859.418719 +2859.419318 +2859.424014 +2859.449388 +2859.453118 +2859.469002 +2859.482488 +2859.508496 +2859.511226 +2859.525479 +2859.525812 +2859.526877 +2859.527244 +2859.541163 +2859.542462 +2859.552119 +2859.556847 +2859.586051 +2859.586584 +2859.586984 +2859.603800 +2859.613591 +2859.615922 +2859.630274 +2859.646358 +2859.662475 +2859.675728 +2859.705132 +2859.719884 +2859.733604 +2859.734869 +2859.735535 +2859.746557 +2859.750121 +2859.750487 +2859.763341 +2859.779491 +2859.806131 +2859.808162 +2859.825612 +2859.839165 +2859.850054 +2859.853251 +2859.853917 +2859.865871 +2870.881811 +2872.881010 +2872.881443 +2872.889302 +2873.881875 +2874.881607 +2874.882440 +2879.882401 +2879.983101 +2879.983733 +2880.083434 +2880.084000 +2880.183700 +2880.283300 +2880.384366 +2880.584032 +2880.784898 +2881.684331 +2881.884164 +2882.384097 +2882.784829 +2883.684529 +2883.884862 +2884.085661 +2889.969504 +2889.978662 +2890.048792 +2890.072867 +2890.335871 +2890.338835 +2890.366740 +2890.367672 +2890.416890 +2890.612094 +2890.680226 +2890.690882 +2890.701771 +2890.759347 +2890.820186 +2890.842597 +2890.887419 +2890.933373 +2890.954518 +2890.964675 +2891.044961 +2891.071301 +2891.146459 +2891.148424 +2891.160479 +2891.212127 +2891.247925 +2891.248924 +2891.290249 +2891.372700 +2891.406199 +2891.433838 +2891.446093 +2891.485687 +2891.511061 +2891.555950 +2891.593579 +2891.642430 +2891.643295 +2891.668537 +2891.695110 +2891.708697 +2891.743695 +2891.745726 +2891.769602 +2891.810328 +2891.837734 +2891.838433 +2891.877295 +2891.988517 +2892.014158 +2892.027478 +2892.042363 +2892.055749 +2892.096375 +2892.108963 +2892.148823 +2892.173598 +2892.212126 +2892.213824 +2892.214490 +2892.239898 +2892.290081 +2892.305866 +2892.317154 +2892.319818 +2892.342462 +2892.389915 +2892.414723 +2892.438466 +2892.454217 +2892.480524 +2892.491746 +2892.505666 +2892.507797 +2892.570134 +2892.594876 +2892.659079 +2892.704833 +2892.705632 +2892.733837 +2892.734037 +2892.757247 +2892.757647 +2892.785086 +2892.824979 +2892.867370 +2892.868136 +2892.897906 +2892.912192 +2892.925345 +2892.939764 +2892.953817 +2892.966404 +2892.968269 +2892.980357 +2892.991846 +2893.047257 +2893.047690 +2893.064573 +2893.088582 +2893.089448 +2893.100903 +2893.124546 +2893.172498 +2893.172931 +2893.175162 +2893.190780 +2893.212758 +2893.213723 +2893.234036 +2893.235135 +2893.236700 +2893.288049 +2893.290580 +2893.302568 +2893.315455 +2893.317253 +2893.344326 +2893.371199 +2893.384752 +2893.385718 +2893.411858 +2893.421815 +2893.463473 +2893.484952 +2893.509261 +2893.534935 +2893.546424 +2893.548322 +2893.576194 +2893.589647 +2893.590413 +2893.603367 +2893.606930 +2893.631971 +2893.633370 +2893.634302 +2893.659544 +2893.661076 +2893.674695 +2893.674995 +2893.675994 +2893.717253 +2893.756147 +2893.757113 +2893.801635 +2893.830539 +2893.831771 +2893.842727 +2893.860409 +2893.869900 +2893.888781 +2893.902034 +2893.902534 +2893.946923 +2893.957645 +2893.959077 +2893.973363 +2893.988548 +2894.002267 +2894.002467 +2894.018551 +2894.030972 +2894.031971 +2894.057079 +2894.061741 +2894.074928 +2894.086650 +2894.129473 +2894.145025 +2894.173762 +2894.186183 +2894.210992 +2894.214455 +2894.239430 +2894.254881 +2894.267302 +2894.275394 +2894.279224 +2894.294841 +2894.304865 +2894.318384 +2894.374928 +2894.375361 +2894.388614 +2894.399803 +2894.402700 +2894.403865 +2894.418884 +2894.447488 +2894.461474 +2894.462973 +2894.475627 +2894.475860 +2894.490645 +2894.509759 +2894.519916 +2894.520682 +2894.549753 +2894.574361 +2894.584551 +2894.598038 +2894.611491 +2894.625177 +2894.637498 +2894.638064 +2894.651617 +2894.668234 +2894.678657 +2894.684351 +2894.692776 +2894.707561 +2894.721514 +2894.722080 +2894.722247 +2894.737465 +2894.738064 +2894.752250 +2894.753515 +2894.754215 +2894.766203 +2894.782486 +2894.797771 +2894.799136 +2894.800235 +2894.812756 +2894.814055 +2894.831737 +2894.875360 +2900.894368 +2901.141921 +2901.368827 +2904.891767 +2907.892896 +2909.886401 +2914.890492 +2914.987395 +2915.087861 +2915.387860 +2915.488293 +2916.288093 +2916.587426 +2916.887726 +2917.087692 +2917.388258 +2917.487825 +2918.287924 +2918.687691 +2918.688390 +2918.988490 +2919.287357 +2919.287623 +2919.487224 +2919.888056 +2924.960645 +2925.094511 +2925.139333 +2925.246559 +2925.290381 +2925.331707 +2925.526045 +2925.590381 +2925.591280 +2925.654583 +2925.702269 +2925.732972 +2925.838033 +2925.874863 +2925.915223 +2925.949788 +2925.984620 +2926.014690 +2926.059511 +2926.072132 +2926.109595 +2926.158146 +2926.159645 +2926.198805 +2926.215822 +2926.228975 +2926.278459 +2926.335036 +2926.335768 +2926.348489 +2926.396907 +2926.397440 +2926.415022 +2926.438932 +2926.451419 +2926.464373 +2926.568302 +2926.604932 +2926.617919 +2926.641895 +2926.680989 +2926.714855 +2926.736500 +2926.740763 +2926.757180 +2926.758212 +2926.850586 +2926.862874 +2926.875128 +2926.888648 +2926.913956 +2926.952784 +2926.953816 +2926.967736 +2926.993010 +2927.006264 +2927.006863 +2927.018984 +2927.031971 +2927.048222 +2927.071698 +2927.071965 +2927.083520 +2927.113490 +2927.139297 +2927.164938 +2927.178192 +2927.178658 +2927.204632 +2927.217785 +2927.247322 +2927.272564 +2927.285751 +2927.340662 +2927.365870 +2927.366270 +2927.405298 +2927.406064 +2927.419284 +2927.445790 +2927.514055 +2927.524212 +2927.569433 +2927.580422 +2927.604998 +2927.619317 +2927.631305 +2927.644492 +2927.681055 +2927.682886 +2927.694242 +2927.748254 +2927.751052 +2927.766503 +2927.792310 +2927.804731 +2927.846856 +2927.860242 +2927.886882 +2927.899736 +2927.913755 +2927.939729 +2927.964671 +2927.991910 +2927.992643 +2928.016120 +2928.041761 +2928.096273 +2928.122380 +2928.135766 +2928.160941 +2928.162073 +2928.184917 +2928.188314 +2928.200935 +2928.214987 +2928.215487 +2928.239896 +2928.276193 +2928.276792 +2928.290811 +2928.305130 +2928.317884 +2928.320115 +2928.345956 +2928.373096 +2928.373828 +2928.401101 +2928.430871 +2928.441527 +2928.445257 +2928.457145 +2928.499735 +2928.521847 +2928.524477 +2928.551051 +2928.590045 +2928.590644 +2928.605563 +2928.641027 +2928.653981 +2928.654281 +2928.675360 +2928.676225 +2928.691377 +2928.702666 +2928.716885 +2928.734401 +2928.745489 +2928.788180 +2928.816418 +2928.819182 +2928.829772 +2928.830604 +2928.846788 +2928.859942 +2928.861440 +2928.871630 +2928.899069 +2928.915819 +2928.928773 +2928.943291 +2928.955446 +2928.969032 +2928.997371 +2929.001067 +2929.015253 +2929.041959 +2929.043558 +2929.044091 +2929.086581 +2929.088679 +2929.113654 +2929.140128 +2929.141160 +2929.142758 +2929.153814 +2929.164736 +2929.181553 +2929.188313 +2929.190377 +2929.209858 +2929.220314 +2929.221513 +2929.224177 +2929.245855 +2929.260840 +2929.270198 +2929.295572 +2929.296172 +2929.297870 +2929.312389 +2929.313887 +2929.334899 +2929.338862 +2929.417916 +2929.419814 +2929.445522 +2929.446321 +2929.446987 +2929.477190 +2929.512455 +2929.528239 +2929.543357 +2929.544057 +2929.545788 +2929.558842 +2929.607393 +2929.608426 +2929.609791 +2929.640127 +2929.641892 +2929.653614 +2929.666201 +2929.667733 +2929.703464 +2929.715951 +2929.745921 +2929.761672 +2929.762571 +2929.774593 +2929.776790 +2929.792841 +2929.803564 +2929.819981 +2929.834799 +2929.836464 +2929.851749 +2929.860873 +2939.891699 +2940.893896 +2941.887001 +2941.887601 +2943.886933 +2943.887632 +2944.887065 +2944.887664 +2949.892022 +2949.987293 +2949.987559 +2950.188225 +2950.488358 +2950.688025 +2950.888491 +2951.088025 +2951.088391 +2951.688091 +2951.788457 +2953.288588 +2953.388655 +2953.888055 +2954.287988 +2959.965738 +2959.999404 +2960.054549 +2960.156347 +2960.324512 +2960.332604 +2960.402800 +2960.403666 +2960.447256 +2960.478125 +2960.510326 +2960.594309 +2960.641428 +2960.712524 +2960.731571 +2960.804465 +2960.843692 +2960.892211 +2960.929573 +2960.940962 +2960.976293 +2961.052517 +2961.149120 +2961.202633 +2961.253982 +2961.313389 +2961.352250 +2961.436832 +2961.437998 +2961.543026 +2961.567967 +2961.582087 +2961.620082 +2961.620781 +2961.644890 +2961.671431 +2961.723778 +2961.794141 +2961.818150 +2961.866735 +2961.887448 +2961.888114 +2961.932702 +2961.944957 +2961.957344 +2961.969865 +2962.017850 +2962.041760 +2962.055746 +2962.066468 +2962.088680 +2962.112023 +2962.138929 +2962.165136 +2962.198170 +2962.209858 +2962.229672 +2962.247454 +2962.268633 +2962.302166 +2962.350751 +2962.387314 +2962.415819 +2962.455313 +2962.490477 +2962.523511 +2962.523744 +2962.523944 +2962.602099 +2962.603964 +2962.644823 +2962.697936 +2962.698636 +2962.722678 +2962.750850 +2962.789012 +2962.826707 +2962.841593 +2962.851083 +2962.904296 +2962.918149 +2962.929405 +2962.929804 +2962.932135 +2962.979221 +2962.992675 +2963.014420 +2963.054613 +2963.057510 +2963.058709 +2963.085249 +2963.134233 +2963.162638 +2963.189378 +2963.226041 +2963.226307 +2963.248785 +2963.296604 +2963.338528 +2963.382817 +2963.393507 +2963.450283 +2963.462571 +2963.463370 +2963.479288 +2963.490277 +2963.518781 +2963.552647 +2963.557309 +2963.581718 +2963.597802 +2963.610356 +2963.611688 +2963.624908 +2963.654013 +2963.694406 +2963.708591 +2963.763670 +2963.777522 +2963.790443 +2963.847253 +2963.862038 +2963.874259 +2963.887679 +2963.902231 +2963.929504 +2963.946753 +2963.959507 +2963.975524 +2964.016949 +2964.020013 +2964.048118 +2964.058175 +2964.073426 +2964.126773 +2964.141958 +2964.198035 +2964.212254 +2964.238727 +2964.240859 +2964.265600 +2964.306093 +2964.321678 +2964.336962 +2964.349783 +2964.351648 +2964.362803 +2964.366999 +2964.389643 +2964.405294 +2964.406393 +2964.423775 +2964.426206 +2964.429037 +2964.440126 +2964.449616 +2964.466999 +2964.476556 +2964.478854 +2964.481851 +2964.492540 +2964.507725 +2964.520479 +2964.535763 +2964.548384 +2964.572127 +2964.604728 +2964.614851 +2964.616816 +2964.618647 +2964.632433 +2964.644754 +2964.673259 +2964.687611 +2964.688544 +2964.703795 +2964.717748 +2964.744887 +2964.746819 +2964.761904 +2964.814185 +2964.815084 +2964.863036 +2964.876089 +2964.878387 +2964.879652 +2974.891098 +2976.886867 +2985.087358 +2985.187558 +2985.287624 +2986.087423 +2986.787656 +2987.587788 +2987.686756 +2987.887189 +2988.087621 +2988.587887 +2988.687221 +2988.987654 +2989.287154 +2989.487853 +2994.889080 +2994.896139 +2994.961840 +2995.040761 +2995.049586 +2995.097071 +2995.174128 +2995.240162 +2995.282819 +2995.283452 +2995.337964 +2995.347354 +2995.465270 +2995.502732 +2995.526475 +2995.592809 +2995.613488 +2995.672828 +2995.756578 +2995.757577 +2995.791676 +2995.860341 +2995.861540 +2995.892808 +2995.912122 +2995.948020 +2995.959508 +2995.982585 +2996.063637 +2996.076291 +2996.098835 +2996.150550 +2996.174859 +2996.176125 +2996.307793 +2996.308892 +2996.361273 +2996.384549 +2996.409025 +2996.446687 +2996.485748 +2996.486780 +2996.499334 +2996.512022 +2996.563337 +2996.602897 +2996.613653 +2996.626540 +2996.676757 +2996.713487 +2996.722511 +2996.725208 +2996.763903 +2996.825808 +2996.848119 +2996.894406 +2996.907459 +2996.932201 +2996.940626 +2996.952481 +2996.954579 +2996.977789 +2996.978089 +2997.018515 +2997.020013 +2997.050816 +2997.125841 +2997.127972 +2997.154545 +2997.176656 +2997.251681 +2997.252414 +2997.278488 +2997.278754 +2997.297103 +2997.333300 +2997.355777 +2997.433133 +2997.472594 +2997.474991 +2997.513786 +2997.526939 +2997.552880 +2997.554079 +2997.605727 +2997.630735 +2997.646087 +2997.659540 +2997.672593 +2997.687645 +2997.687911 +2997.713020 +2997.713319 +2997.726939 +2997.740559 +2997.762403 +2997.762670 +2997.772160 +2997.786213 +2997.787378 +2997.835564 +2997.861304 +2997.863036 +2997.888511 +2997.932899 +2997.943755 +2997.958940 +2998.014551 +2998.027871 +2998.028470 +2998.052080 +2998.054744 +2998.055244 +2998.109290 +2998.110622 +2998.122610 +2998.149016 +2998.149416 +2998.186679 +2998.208057 +2998.210322 +2998.248384 +2998.272460 +2998.294904 +2998.322210 +2998.322842 +2998.336928 +2998.359739 +2998.372459 +2998.421544 +2998.426439 +2998.440125 +2998.468463 +2998.495969 +2998.496602 +2998.511387 +2998.525073 +2998.567498 +2998.609156 +2998.624441 +2998.625240 +2998.638060 +2998.638693 +2998.652779 +2998.680784 +2998.695802 +2998.708756 +2998.709289 +2998.737094 +2998.751447 +2998.765633 +2998.808023 +2998.837194 +2998.837760 +2998.847484 +2998.850714 +2998.862269 +2998.863868 +2998.878153 +2998.878986 +2998.880917 +2998.895602 +2998.923574 +2998.936395 +2998.980085 +2998.980684 +2998.993604 +2998.995203 +2999.022242 +2999.035596 +2999.066565 +2999.067231 +2999.094970 +2999.109322 +2999.123608 +2999.124440 +2999.125939 +2999.150148 +2999.153444 +2999.168496 +2999.181083 +2999.182049 +2999.212685 +2999.227970 +2999.235063 +2999.237560 +2999.253877 +2999.255076 +2999.282182 +2999.296335 +2999.306624 +2999.307024 +2999.320977 +2999.339625 +2999.349481 +2999.352978 +2999.366464 +2999.378985 +2999.420410 +2999.434130 +2999.448149 +2999.451946 +2999.478019 +2999.480750 +2999.497766 +2999.503294 +2999.506291 +2999.519345 +2999.520510 +2999.561769 +2999.563900 +2999.565465 +2999.574689 +2999.579551 +2999.617347 +2999.629002 +2999.676055 +2999.689275 +2999.702362 +2999.745019 +2999.746218 +2999.761636 +2999.774623 +2999.777287 +2999.789108 +2999.799997 +2999.804426 +2999.828502 +2999.828835 +2999.843087 +2999.855109 +2999.857073 +3000.977252 +3001.984910 +3005.695429 +3008.879542 +3008.899489 +3009.885402 +3009.891429 +3010.885667 +3011.217335 +3019.985958 +3020.086324 +3020.186490 +3020.287189 +3020.287456 +3020.586989 +3020.686656 +3020.987222 +3021.187222 +3021.287188 +3021.587255 +3021.687255 +3021.786888 +3021.787221 +3021.886622 +3021.887088 +3021.986755 +3022.886821 +3022.987054 +3023.386753 +3024.887285 +3025.823714 +3029.889278 +3029.938029 +3030.011755 +3030.062604 +3030.115418 +3030.176524 +3030.176790 +3030.269997 +3030.361072 +3030.585814 +3030.658874 +3030.775224 +3030.840459 +3031.004894 +3031.027472 +3031.028870 +3031.029536 +3031.103029 +3031.142024 +3031.168098 +3031.191874 +3031.222243 +3031.239626 +3031.283515 +3031.295370 +3031.296103 +3031.347585 +3031.399633 +3031.410122 +3031.471561 +3031.484115 +3031.562836 +3031.598134 +3031.634065 +3031.648517 +3031.710122 +3031.800931 +3031.814018 +3031.845020 +3031.933765 +3031.958273 +3031.970827 +3031.982316 +3032.019912 +3032.044753 +3032.118879 +3032.120711 +3032.147284 +3032.185546 +3032.195569 +3032.209422 +3032.237527 +3032.261869 +3032.276721 +3032.288942 +3032.314883 +3032.355143 +3032.383081 +3032.420844 +3032.448349 +3032.448882 +3032.449082 +3032.529435 +3032.569462 +3032.599065 +3032.611786 +3032.612885 +3032.639924 +3032.665299 +3032.666931 +3032.667996 +3032.705059 +3032.707890 +3032.722775 +3032.748915 +3032.763467 +3032.764067 +3032.803028 +3032.803927 +3032.817114 +3032.830167 +3032.861336 +3032.864100 +3032.881116 +3032.909088 +3032.919611 +3032.943187 +3032.977919 +3032.992671 +3033.032998 +3033.034263 +3033.062668 +3033.107323 +3033.118812 +3033.163134 +3033.175655 +3033.190507 +3033.207090 +3033.237127 +3033.248881 +3033.278485 +3033.307956 +3033.322375 +3033.351679 +3033.352078 +3033.366064 +3033.378385 +3033.379784 +3033.408555 +3033.409121 +3033.436727 +3033.497366 +3033.525971 +3033.539357 +3033.540090 +3033.540490 +3033.555641 +3033.569627 +3033.584379 +3033.598698 +3033.612551 +3033.614216 +3033.615548 +3033.629833 +3033.641089 +3033.641755 +3033.670326 +3033.672324 +3033.686976 +3033.716380 +3033.733130 +3033.733796 +3033.758571 +3033.787875 +3033.791305 +3033.803393 +3033.805025 +3033.818178 +3033.846150 +3033.846883 +3033.848914 +3033.849514 +3033.876054 +3033.877186 +3033.879783 +3033.893603 +3033.936094 +3033.969993 +3033.981715 +3033.986809 +3033.999996 +3034.015581 +3034.031531 +3034.042087 +3034.057872 +3034.087375 +3034.104225 +3034.104392 +3034.116346 +3034.120442 +3034.135261 +3034.148980 +3034.164598 +3034.178085 +3034.179184 +3034.181281 +3034.192703 +3034.193303 +3034.195434 +3034.205457 +3034.210386 +3034.221641 +3034.231564 +3034.261335 +3034.286110 +3034.287608 +3034.314748 +3034.327668 +3034.330832 +3034.343952 +3034.346083 +3034.354841 +3034.359037 +3034.359969 +3034.385044 +3034.387175 +3034.401694 +3034.428068 +3034.459037 +3034.459769 +3034.473223 +3034.484744 +3034.498630 +3034.512983 +3034.528367 +3034.529400 +3034.541221 +3034.545450 +3034.556572 +3034.572956 +3034.586243 +3034.601328 +3034.610718 +3034.611284 +3034.611884 +3034.624371 +3034.627102 +3034.627402 +3034.652077 +3034.668527 +3034.685810 +3034.716546 +3034.729533 +3034.730099 +3034.732430 +3034.746849 +3034.760668 +3034.773788 +3034.776153 +3034.776752 +3034.788174 +3034.821174 +3034.835460 +3034.865164 +3034.865896 +3034.879582 +3040.632157 +3054.885956 +3054.890318 +3055.087088 +3055.487587 +3055.487887 +3055.587887 +3055.687787 +3055.788286 +3055.887653 +3055.887986 +3055.888319 +3056.087620 +3056.088286 +3056.287553 +3056.587486 +3056.787586 +3056.887885 +3056.888352 +3057.288018 +3057.387985 +3057.987918 +3058.188384 +3058.288117 +3058.388483 +3058.488450 +3058.788017 +3058.888117 +3059.288449 +3063.726906 +3064.975523 +3065.033998 +3065.079985 +3065.157508 +3065.177221 +3065.242423 +3065.323741 +3065.333964 +3065.449915 +3065.451979 +3065.508889 +3065.529302 +3065.562802 +3065.669295 +3065.687011 +3065.687810 +3065.738160 +3065.739825 +3065.786878 +3065.797900 +3065.835196 +3065.880018 +3065.894370 +3065.918979 +3065.944686 +3065.982615 +3066.006624 +3066.034929 +3066.066831 +3066.190740 +3066.191306 +3066.215315 +3066.258139 +3066.296501 +3066.310920 +3066.338592 +3066.339191 +3066.339658 +3066.375821 +3066.376820 +3066.377353 +3066.408888 +3066.474689 +3066.493603 +3066.520177 +3066.570893 +3066.571359 +3066.586044 +3066.625838 +3066.639924 +3066.640323 +3066.667629 +3066.694402 +3066.721875 +3066.750713 +3066.763200 +3066.764133 +3066.789174 +3066.789674 +3066.829434 +3066.830766 +3066.856041 +3066.856873 +3066.906057 +3066.907156 +3066.907522 +3066.932098 +3066.957539 +3066.958272 +3066.973123 +3066.985711 +3066.999331 +3067.035961 +3067.036327 +3067.059337 +3067.071958 +3067.121974 +3067.145584 +3067.185145 +3067.213150 +3067.213616 +3067.239890 +3067.283679 +3067.285344 +3067.297699 +3067.313250 +3067.323906 +3067.378951 +3067.394968 +3067.408388 +3067.451345 +3067.502194 +3067.530898 +3067.542187 +3067.545883 +3067.568627 +3067.578850 +3067.611751 +3067.622640 +3067.649313 +3067.650745 +3067.667828 +3067.693802 +3067.764465 +3067.764764 +3067.767295 +3067.820342 +3067.833562 +3067.860169 +3067.863033 +3067.872124 +3067.901627 +3067.931264 +3067.944984 +3067.970858 +3067.972789 +3067.999230 +3068.015480 +3068.030532 +3068.042686 +3068.058237 +3068.070125 +3068.070825 +3068.098697 +3068.099296 +3068.127435 +3068.127768 +3068.141820 +3068.167828 +3068.168227 +3068.183379 +3068.197964 +3068.198830 +3068.213016 +3068.223705 +3068.241387 +3068.269026 +3068.293335 +3068.307721 +3068.323505 +3068.333828 +3068.358736 +3068.388940 +3068.404957 +3068.433229 +3068.433928 +3068.447881 +3068.462666 +3068.463598 +3068.479382 +3068.506322 +3068.506955 +3068.507521 +3068.551943 +3068.567228 +3068.580115 +3068.594634 +3068.609053 +3068.639322 +3068.650744 +3068.681147 +3068.681713 +3068.711184 +3068.726801 +3068.728267 +3068.755939 +3068.757471 +3068.774420 +3068.789572 +3068.802625 +3068.813981 +3068.828366 +3068.830631 +3068.842985 +3068.844350 +3068.858370 +3068.873421 +3068.888473 +3068.900061 +3068.917510 +3068.930164 +3068.946515 +3068.959202 +3068.995432 +3069.009985 +3069.025502 +3069.040820 +3069.055606 +3069.057071 +3069.085742 +3069.105089 +3069.116112 +3069.134660 +3069.136325 +3069.149512 +3069.182112 +3069.212282 +3069.212881 +3069.213081 +3069.213647 +3069.242652 +3069.262199 +3069.275286 +3069.293967 +3069.305988 +3069.309118 +3069.319608 +3069.337990 +3069.352075 +3069.354340 +3069.355306 +3069.356538 +3069.369991 +3069.371423 +3069.384110 +3069.385642 +3069.404590 +3069.418875 +3069.431529 +3069.448579 +3069.462931 +3069.490570 +3069.507087 +3069.507553 +3069.508785 +3069.510450 +3069.525968 +3069.554073 +3069.554639 +3069.570257 +3069.583877 +3069.587040 +3069.615545 +3069.634193 +3069.661832 +3069.663264 +3069.665562 +3069.679881 +3069.696331 +3069.710250 +3069.712348 +3069.724869 +3069.741652 +3069.769091 +3069.772055 +3069.784076 +3069.784576 +3069.786674 +3069.788139 +3069.814346 +3069.815179 +3069.829864 +3069.830896 +3069.846014 +3069.858036 +3069.858901 +3073.631458 +3079.886397 +3080.886862 +3080.894155 +3081.886262 +3082.886261 +3089.886154 +3089.886387 +3089.886620 +3090.087186 +3090.487918 +3090.888151 +3090.888517 +3091.188217 +3091.487818 +3091.488517 +3091.687784 +3091.688184 +3091.888483 +3091.988017 +3092.487617 +3092.487883 +3092.588149 +3092.988116 +3092.988449 +3093.187383 +3093.687782 +3093.888281 +3094.288514 +3094.388148 +3094.487315 +3094.688314 +3094.787814 +3094.887914 +3096.047920 +3099.886544 +3099.943886 +3099.944119 +3099.963966 +3100.025338 +3100.037026 +3100.037859 +3100.198265 +3100.199131 +3100.312950 +3100.410020 +3100.439390 +3100.439956 +3100.440523 +3100.475821 +3100.561834 +3100.586743 +3100.597699 +3100.648381 +3100.674355 +3100.724805 +3100.805191 +3100.854175 +3100.855940 +3100.879050 +3100.894202 +3100.968827 +3100.996566 +3101.023073 +3101.025437 +3101.073522 +3101.089207 +3101.099197 +3101.114548 +3101.125603 +3101.150345 +3101.175720 +3101.187641 +3101.199163 +3101.214581 +3101.215081 +3101.254441 +3101.264365 +3101.266129 +3101.278450 +3101.342919 +3101.343385 +3101.355640 +3101.355940 +3101.369759 +3101.392237 +3101.394201 +3101.442486 +3101.443452 +3101.469792 +3101.529366 +3101.556106 +3101.579283 +3101.592070 +3101.608553 +3101.633795 +3101.635127 +3101.662732 +3101.675453 +3101.724937 +3101.726369 +3101.738490 +3101.753974 +3101.830331 +3101.871890 +3101.883678 +3101.883911 +3101.911750 +3101.912516 +3101.936758 +3101.976652 +3101.977484 +3102.060301 +3102.072889 +3102.085376 +3102.100661 +3102.102059 +3102.169126 +3102.182712 +3102.208420 +3102.223438 +3102.250178 +3102.250611 +3102.262699 +3102.291103 +3102.316212 +3102.333361 +3102.347314 +3102.362465 +3102.388206 +3102.390071 +3102.415645 +3102.441453 +3102.442985 +3102.444616 +3102.486907 +3102.556171 +3102.567727 +3102.569591 +3102.596897 +3102.598929 +3102.627533 +3102.628799 +3102.642585 +3102.683710 +3102.725602 +3102.740454 +3102.766394 +3102.818775 +3102.819475 +3102.830497 +3102.846414 +3102.847846 +3102.848679 +3102.901559 +3102.935525 +3102.960300 +3102.962531 +3102.991636 +3103.021206 +3103.033261 +3103.036124 +3103.051476 +3103.080979 +3103.108419 +3103.110317 +3103.110816 +3103.126800 +3103.139587 +3103.154106 +3103.183210 +3103.213047 +3103.245981 +3103.259834 +3103.273920 +3103.276484 +3103.289238 +3103.319274 +3103.320207 +3103.360733 +3103.362631 +3103.363896 +3103.378715 +3103.394332 +3103.407453 +3103.423303 +3103.423803 +3103.437556 +3103.452274 +3103.467626 +3103.483543 +3103.494299 +3103.513946 +3103.527166 +3103.527865 +3103.574186 +3103.575251 +3103.589038 +3103.606587 +3103.618641 +3103.618974 +3103.619274 +3103.621805 +3103.649344 +3103.683077 +3103.711448 +3103.726234 +3103.744216 +3103.745814 +3103.774752 +3103.788505 +3103.790103 +3103.790802 +3103.804755 +3103.806253 +3103.835990 +3103.878581 +3103.879647 +3103.893666 +3103.894465 +3103.910216 +3103.923869 +3103.937356 +3103.955238 +3103.968325 +3103.970123 +3104.027698 +3104.028631 +3104.041585 +3104.043849 +3104.056370 +3104.067592 +3104.071155 +3104.071987 +3104.072653 +3104.086773 +3104.088438 +3104.096962 +3104.115644 +3104.116476 +3104.132860 +3104.144082 +3104.144648 +3104.159933 +3104.188837 +3104.205354 +3104.219740 +3104.220705 +3104.233492 +3104.249044 +3104.250309 +3104.261365 +3104.276416 +3104.279613 +3104.291301 +3104.293932 +3104.305054 +3104.306519 +3104.341285 +3104.353506 +3104.370522 +3104.372653 +3104.380046 +3104.384408 +3104.385074 +3104.399759 +3104.414212 +3104.428098 +3104.431128 +3104.432260 +3104.446779 +3104.458700 +3104.459500 +3104.476183 +3104.492200 +3104.492600 +3104.503589 +3104.507452 +3104.520272 +3104.535923 +3104.556569 +3104.569523 +3104.599393 +3104.602190 +3104.614178 +3104.661231 +3104.663962 +3104.664727 +3104.692366 +3104.693132 +3104.696695 +3104.711181 +3104.723802 +3104.725167 +3104.739686 +3104.752573 +3104.754338 +3104.756269 +3104.770455 +3104.771021 +3104.771454 +3104.782077 +3104.798960 +3104.799226 +3104.799592 +3104.816742 +3104.816908 +3104.830462 +3104.835024 +3104.845846 +3104.859865 +3104.860398 +3104.862829 +3104.864794 +3104.875450 +3104.878447 +3104.880711 +3114.885663 +3116.885961 +3116.886460 +3116.886593 +3116.886826 +3119.886923 +3124.987118 +3125.888083 +3126.688015 +3127.387549 +3127.588414 +3128.287414 +3128.888180 +3134.954974 +3134.992869 +3135.048247 +3135.134427 +3135.218710 +3135.256405 +3135.313781 +3135.420807 +3135.475819 +3135.554573 +3135.582745 +3135.585243 +3135.676451 +3135.680714 +3135.722772 +3135.801526 +3135.885376 +3135.946115 +3135.966794 +3136.029631 +3136.042518 +3136.065196 +3136.076118 +3136.089271 +3136.114813 +3136.115578 +3136.139188 +3136.163697 +3136.164729 +3136.224836 +3136.237523 +3136.304290 +3136.355105 +3136.380047 +3136.395432 +3136.416710 +3136.480546 +3136.481579 +3136.529697 +3136.530696 +3136.542984 +3136.583077 +3136.611082 +3136.612814 +3136.625401 +3136.637956 +3136.666394 +3136.692301 +3136.693167 +3136.694399 +3136.718841 +3136.734259 +3136.735058 +3136.801059 +3136.801692 +3136.827799 +3136.851675 +3136.852474 +3136.877616 +3136.904089 +3136.918175 +3136.932461 +3136.960033 +3136.973020 +3136.985707 +3137.025201 +3137.025834 +3137.102624 +3137.142717 +3137.143949 +3137.169190 +3137.192600 +3137.195031 +3137.195864 +3137.221272 +3137.235691 +3137.236490 +3137.248478 +3137.262763 +3137.276150 +3137.290935 +3137.302590 +3137.304588 +3137.330596 +3137.332760 +3137.358901 +3137.359733 +3137.375451 +3137.389903 +3137.430496 +3137.444648 +3137.459533 +3137.487938 +3137.517309 +3137.541451 +3137.556669 +3137.558368 +3137.558934 +3137.584941 +3137.601091 +3137.601325 +3137.630062 +3137.630329 +3137.656636 +3137.686439 +3137.725334 +3137.754838 +3137.770022 +3137.782943 +3137.798294 +3137.811647 +3137.825067 +3137.826100 +3137.841218 +3137.855237 +3137.868191 +3137.882776 +3137.883475 +3137.910182 +3137.912746 +3137.940319 +3137.967991 +3137.969323 +3137.997428 +3138.012213 +3138.013445 +3138.025067 +3138.039486 +3138.070388 +3138.099259 +3138.127165 +3138.128064 +3138.129329 +3138.173152 +3138.173951 +3138.200392 +3138.203189 +3138.214977 +3138.215943 +3138.247944 +3138.261231 +3138.277248 +3138.291933 +3138.303155 +3138.323302 +3138.335223 +3138.352539 +3138.364960 +3138.383142 +3138.410215 +3138.423169 +3138.424900 +3138.453771 +3138.455603 +3138.485340 +3138.502223 +3138.502756 +3138.517241 +3138.529795 +3138.531460 +3138.547511 +3138.560098 +3138.589702 +3138.590867 +3138.608150 +3138.620005 +3138.621237 +3138.621670 +3138.636289 +3138.665193 +3138.680777 +3138.682509 +3138.697860 +3138.698360 +3138.711613 +3138.711979 +3138.714144 +3138.727864 +3138.741750 +3138.743914 +3138.756868 +3138.759931 +3138.771786 +3138.772918 +3138.789102 +3138.802689 +3138.804187 +3138.830194 +3138.832192 +3138.833158 +3138.849642 +3138.862396 +3138.890967 +3138.905985 +3138.911147 +3138.940617 +3138.952772 +3138.953571 +3138.967890 +3138.969122 +3139.001523 +3139.030927 +3139.031659 +3139.045579 +3139.049009 +3139.063361 +3139.092998 +3139.093264 +3139.095229 +3139.109448 +3139.123101 +3139.124733 +3139.139884 +3139.153537 +3139.181643 +3139.200590 +3139.218139 +3139.249941 +3139.252239 +3139.279078 +3139.279578 +3139.279878 +3139.280244 +3139.295862 +3139.305352 +3139.306318 +3139.324300 +3139.351473 +3139.352738 +3139.367890 +3139.407084 +3139.407683 +3139.424666 +3139.435755 +3139.436654 +3139.465592 +3139.467556 +3139.510680 +3139.511746 +3139.512312 +3139.554003 +3139.554703 +3139.571719 +3139.595029 +3139.597526 +3139.610480 +3139.610713 +3139.625199 +3139.653171 +3139.653404 +3139.667556 +3139.680776 +3139.696694 +3139.709215 +3139.709914 +3139.723134 +3139.735788 +3139.736254 +3139.787703 +3139.791799 +3139.807017 +3139.818139 +3139.835755 +3139.849840 +3139.861629 +3139.863194 +3142.672648 +3142.706015 +3142.717470 +3143.589464 +3143.602884 +3146.449334 +3148.978603 +3149.029518 +3149.885994 +3149.886094 +3149.886560 +3150.399247 +3151.213366 +3151.313465 +3151.441903 +3152.128250 +3153.886989 +3159.885984 +3159.886317 +3159.891146 +3159.987083 +3159.987250 +3160.287449 +3163.087813 +3163.387912 +3163.588212 +3163.787978 +3164.288344 +3164.388277 +3170.005688 +3170.006320 +3170.037589 +3170.038988 +3170.137056 +3170.178248 +3170.222238 +3170.421871 +3170.479813 +3170.501558 +3170.583409 +3170.596829 +3170.640685 +3170.670189 +3170.788204 +3170.851441 +3170.887205 +3170.911481 +3171.024368 +3171.061564 +3171.090002 +3171.130961 +3171.144881 +3171.170189 +3171.233026 +3171.248144 +3171.272253 +3171.296396 +3171.307884 +3171.308117 +3171.319106 +3171.343682 +3171.358367 +3171.369423 +3171.402090 +3171.453205 +3171.465460 +3171.517341 +3171.556402 +3171.594331 +3171.635356 +3171.659765 +3171.686638 +3171.739852 +3171.776981 +3171.777747 +3171.817408 +3171.818573 +3171.819272 +3171.871953 +3171.873418 +3171.940484 +3171.953405 +3171.976615 +3172.039485 +3172.061430 +3172.100125 +3172.100857 +3172.133957 +3172.164427 +3172.176548 +3172.203621 +3172.204453 +3172.246944 +3172.261197 +3172.287004 +3172.307650 +3172.334823 +3172.372352 +3172.411280 +3172.411679 +3172.438186 +3172.439418 +3172.440883 +3172.455769 +3172.456035 +3172.498026 +3172.498959 +3172.539651 +3172.540384 +3172.615842 +3172.637387 +3172.647743 +3172.658899 +3172.674550 +3172.701289 +3172.735622 +3172.748908 +3172.775315 +3172.789468 +3172.815708 +3172.832059 +3172.843913 +3172.846045 +3172.895728 +3172.933357 +3172.961729 +3173.049607 +3173.065059 +3173.080743 +3173.096794 +3173.108249 +3173.110979 +3173.152771 +3173.154602 +3173.155002 +3173.183007 +3173.213943 +3173.214975 +3173.230460 +3173.243347 +3173.244712 +3173.303520 +3173.303753 +3173.319071 +3173.331858 +3173.347076 +3173.362095 +3173.391066 +3173.392631 +3173.393130 +3173.409181 +3173.409447 +3173.452204 +3173.468155 +3173.495561 +3173.509780 +3173.527729 +3173.541715 +3173.542048 +3173.615574 +3173.616373 +3173.629327 +3173.646910 +3173.647842 +3173.659397 +3173.689067 +3173.705917 +3173.720969 +3173.761628 +3173.761961 +3173.762694 +3173.763759 +3173.780942 +3173.793862 +3173.794595 +3173.820669 +3173.839284 +3173.869420 +3173.869986 +3173.897425 +3173.911112 +3173.911844 +3173.927995 +3173.944245 +3173.944512 +3173.971418 +3173.989666 +3174.014708 +3174.017738 +3174.030059 +3174.034588 +3174.060762 +3174.062727 +3174.090799 +3174.107149 +3174.107715 +3174.134755 +3174.135987 +3174.137086 +3174.177046 +3174.191964 +3174.202820 +3174.205617 +3174.208447 +3174.230992 +3174.232324 +3174.259130 +3174.260262 +3174.272783 +3174.276013 +3174.303153 +3174.316772 +3174.330692 +3174.331191 +3174.332157 +3174.347042 +3174.364325 +3174.376246 +3174.377312 +3174.391498 +3174.391997 +3174.419736 +3174.420602 +3174.430725 +3174.431624 +3174.448174 +3174.458664 +3174.460195 +3174.462127 +3174.487834 +3174.501321 +3174.518137 +3174.534288 +3174.547941 +3174.587768 +3174.588567 +3174.603152 +3174.617804 +3174.632989 +3174.644578 +3174.661794 +3174.664791 +3174.678976 +3174.705283 +3174.706249 +3174.707881 +3174.725230 +3174.741880 +3174.769686 +3174.787967 +3174.799656 +3174.816406 +3174.842646 +3174.856798 +3174.857631 +3174.857931 +3174.858463 +3174.885636 +3186.891785 +3187.891251 +3188.886555 +3189.885754 +3189.886221 +3189.886587 +3195.487614 +3195.586948 +3195.587281 +3195.687114 +3195.887613 +3196.287313 +3196.986979 +3196.987679 +3198.187944 +3198.387478 +3198.487078 +3198.587111 +3198.687610 +3198.787144 +3198.788010 +3199.387943 +3199.688009 +3204.892866 +3204.966825 +3205.025999 +3205.219639 +3205.250674 +3205.281910 +3205.358966 +3205.469955 +3205.548842 +3205.551040 +3205.603954 +3205.642382 +3205.710947 +3205.737454 +3205.738919 +3205.748542 +3205.799059 +3205.920670 +3205.958566 +3206.000990 +3206.036055 +3206.109681 +3206.173351 +3206.208449 +3206.243813 +3206.292331 +3206.292531 +3206.319238 +3206.352838 +3206.393364 +3206.480010 +3206.492198 +3206.530660 +3206.558099 +3206.582041 +3206.646810 +3206.647809 +3206.659497 +3206.716041 +3206.716240 +3206.740749 +3206.741615 +3206.782374 +3206.793496 +3206.815108 +3206.829694 +3206.840916 +3206.864892 +3206.949474 +3206.987203 +3207.012844 +3207.039650 +3207.041648 +3207.042847 +3207.066823 +3207.069320 +3207.095361 +3207.107316 +3207.140149 +3207.155767 +3207.194562 +3207.194861 +3207.220969 +3207.260096 +3207.261661 +3207.286869 +3207.288001 +3207.313975 +3207.338151 +3207.339250 +3207.339816 +3207.363959 +3207.364558 +3207.388001 +3207.423999 +3207.424631 +3207.449706 +3207.463159 +3207.475714 +3207.512910 +3207.577811 +3207.599023 +3207.599989 +3207.600322 +3207.623932 +3207.638184 +3207.652370 +3207.690465 +3207.691031 +3207.704651 +3207.742380 +3207.743146 +3207.809979 +3207.818903 +3207.820435 +3207.833222 +3207.846809 +3207.871617 +3207.897958 +3207.898390 +3207.900322 +3207.923865 +3207.924464 +3207.953069 +3207.953535 +3208.021101 +3208.034021 +3208.034687 +3208.060728 +3208.061028 +3208.087368 +3208.102087 +3208.113642 +3208.128127 +3208.166122 +3208.180541 +3208.194661 +3208.195493 +3208.207081 +3208.219735 +3208.220468 +3208.235819 +3208.264824 +3208.275380 +3208.275946 +3208.306815 +3208.309679 +3208.319003 +3208.342945 +3208.357997 +3208.358763 +3208.370718 +3208.384404 +3208.385137 +3208.395793 +3208.414407 +3208.417937 +3208.431557 +3208.432789 +3208.447008 +3208.457564 +3208.474381 +3208.499322 +3208.499555 +3208.514041 +3208.514840 +3208.527827 +3208.599888 +3208.614041 +3208.624996 +3208.678310 +3208.679142 +3208.705349 +3208.705616 +3208.718470 +3208.719335 +3208.721300 +3208.734653 +3208.736119 +3208.748173 +3208.777044 +3208.791397 +3208.804384 +3208.806315 +3208.822166 +3208.834087 +3208.834354 +3208.835119 +3208.862525 +3208.873448 +3208.906282 +3208.914040 +3208.918469 +3208.920667 +3208.933321 +3208.941613 +3208.944343 +3208.946674 +3208.970684 +3208.973081 +3209.009911 +3209.025129 +3209.055033 +3209.067753 +3209.068453 +3209.070550 +3209.086468 +3209.101586 +3209.102618 +3209.111043 +3209.127260 +3209.141846 +3209.154333 +3209.168885 +3209.169918 +3209.183604 +3209.204050 +3209.207946 +3209.210211 +3209.222132 +3209.253134 +3209.253334 +3209.265822 +3209.303617 +3209.305549 +3209.321965 +3209.336584 +3209.347507 +3209.347706 +3209.348639 +3209.349971 +3209.362591 +3209.376045 +3209.380041 +3209.402685 +3209.405349 +3209.408412 +3209.433421 +3209.447973 +3209.449504 +3209.460560 +3209.465355 +3209.476211 +3209.492095 +3209.504083 +3209.505515 +3209.517670 +3209.519568 +3209.536151 +3209.544210 +3209.572282 +3209.584669 +3209.600453 +3209.604250 +3209.641512 +3209.643643 +3209.657230 +3209.687999 +3209.702385 +3209.716970 +3209.744842 +3209.758895 +3209.779840 +3209.789697 +3209.791595 +3209.793160 +3209.806847 +3209.821732 +3209.837316 +3209.854732 +3209.863224 +3209.864989 +3209.877643 +3219.885225 +3219.890353 +3220.885424 +3222.885955 +3224.890748 +3224.891480 +3229.890809 +3230.187313 +3230.687245 +3231.086845 +3231.487478 +3232.087610 +3233.086577 +3234.487608 +3237.027565 +3239.961495 +3239.962727 +3239.963360 +3239.982108 +3240.168022 +3240.315241 +3240.389001 +3240.433123 +3240.443479 +3240.532657 +3240.562660 +3240.582207 +3240.582474 +3240.644278 +3240.664192 +3240.675647 +3240.735187 +3240.825797 +3240.845710 +3240.948008 +3240.974814 +3240.998923 +3241.092363 +3241.105117 +3241.106083 +3241.143246 +3241.192297 +3241.215840 +3241.224964 +3241.248141 +3241.297624 +3241.320235 +3241.332323 +3241.356998 +3241.367055 +3241.381674 +3241.434721 +3241.445543 +3241.459163 +3241.460761 +3241.544044 +3241.569519 +3241.584604 +3241.675147 +3241.707847 +3241.720168 +3241.733621 +3241.744377 +3241.758397 +3241.771184 +3241.783571 +3241.828193 +3241.862492 +3241.910677 +3241.946508 +3241.948806 +3241.974514 +3242.012276 +3242.038849 +3242.080541 +3242.094593 +3242.147973 +3242.175046 +3242.210444 +3242.211277 +3242.237617 +3242.267620 +3242.292562 +3242.320700 +3242.346974 +3242.361160 +3242.387234 +3242.427094 +3242.465156 +3242.465888 +3242.519568 +3242.548073 +3242.549205 +3242.601153 +3242.601852 +3242.603850 +3242.630790 +3242.632155 +3242.686001 +3242.710310 +3242.723064 +3242.724230 +3242.748139 +3242.779275 +3242.791562 +3242.806248 +3242.818802 +3242.845642 +3242.874513 +3242.902585 +3242.904150 +3242.915605 +3242.959994 +3242.985568 +3243.000054 +3243.023430 +3243.023930 +3243.025029 +3243.051202 +3243.052734 +3243.065688 +3243.092028 +3243.116470 +3243.143743 +3243.156664 +3243.157729 +3243.184269 +3243.184702 +3243.212175 +3243.213806 +3243.239980 +3243.255631 +3243.257096 +3243.282771 +3243.297190 +3243.298588 +3243.298855 +3243.341379 +3243.355398 +3243.356763 +3243.369650 +3243.382271 +3243.382504 +3243.427526 +3243.470583 +3243.485634 +3243.488964 +3243.497789 +3243.502517 +3243.514339 +3243.541145 +3243.569317 +3243.569484 +3243.580939 +3243.594725 +3243.609910 +3243.610676 +3243.636450 +3243.665121 +3243.666953 +3243.676643 +3243.695724 +3243.719001 +3243.721198 +3243.736283 +3243.737482 +3243.748405 +3243.751435 +3243.763356 +3243.805614 +3243.821198 +3243.830822 +3243.831588 +3243.834352 +3243.847539 +3243.849770 +3243.862224 +3243.878108 +3243.891328 +3243.901018 +3243.901684 +3243.902783 +3243.916703 +3243.958960 +3243.975910 +3243.977375 +3244.004182 +3244.020133 +3244.045207 +3244.047272 +3244.060492 +3244.087665 +3244.088364 +3244.131488 +3244.193992 +3244.197522 +3244.218601 +3244.220832 +3244.247771 +3244.261691 +3244.275144 +3244.302883 +3244.305447 +3244.329756 +3244.346606 +3244.348737 +3244.358727 +3244.374511 +3244.390329 +3244.390528 +3244.431188 +3244.434118 +3244.446739 +3244.448470 +3244.460991 +3244.462923 +3244.463356 +3244.491794 +3244.503682 +3244.576842 +3244.588863 +3244.605280 +3244.620432 +3244.620831 +3244.629989 +3244.645240 +3244.647105 +3244.675177 +3244.686998 +3244.687265 +3244.688763 +3244.703249 +3244.704647 +3244.729223 +3244.732120 +3244.734384 +3244.746006 +3244.748470 +3244.760425 +3244.776709 +3244.777208 +3244.779339 +3244.792759 +3244.793192 +3244.794624 +3244.809043 +3244.810508 +3244.821830 +3244.833785 +3244.834251 +3244.836748 +3244.847871 +3244.859759 +3244.879372 +3256.333773 +3257.891048 +3258.885352 +3258.885619 +3258.885852 +3259.885851 +3259.891579 +3265.187311 +3265.986511 +3266.087044 +3266.287177 +3266.987176 +3267.287309 +3267.387175 +3267.387742 +3267.487009 +3267.586742 +3267.587408 +3267.787142 +3267.887375 +3268.287774 +3268.887074 +3269.486707 +3269.587540 +3274.903418 +3274.962060 +3275.007181 +3275.159895 +3275.208813 +3275.222599 +3275.285369 +3275.286035 +3275.315872 +3275.358196 +3275.370085 +3275.444543 +3275.459928 +3275.481606 +3275.548173 +3275.573081 +3275.643478 +3275.672016 +3275.696391 +3275.726961 +3275.760460 +3275.783371 +3275.873114 +3275.874679 +3275.934187 +3275.936684 +3275.957130 +3276.042178 +3276.042944 +3276.065089 +3276.161159 +3276.162625 +3276.175878 +3276.210543 +3276.223097 +3276.274979 +3276.300353 +3276.333487 +3276.348072 +3276.368352 +3276.397489 +3276.416570 +3276.416937 +3276.417869 +3276.450237 +3276.472747 +3276.484236 +3276.522165 +3276.574046 +3276.601285 +3276.679074 +3276.727825 +3276.739480 +3276.766021 +3276.766320 +3276.792494 +3276.831888 +3276.846040 +3276.857862 +3276.907779 +3276.934885 +3276.959527 +3276.962091 +3276.989597 +3277.002018 +3277.041978 +3277.055098 +3277.066886 +3277.081039 +3277.109110 +3277.109643 +3277.136450 +3277.188531 +3277.203216 +3277.242577 +3277.284901 +3277.310509 +3277.338781 +3277.380239 +3277.421431 +3277.450435 +3277.491861 +3277.502417 +3277.529956 +3277.557961 +3277.600385 +3277.618001 +3277.644907 +3277.673446 +3277.689130 +3277.689962 +3277.700485 +3277.729689 +3277.730322 +3277.746239 +3277.773545 +3277.785866 +3277.800119 +3277.811441 +3277.829989 +3277.842277 +3277.857295 +3277.883269 +3277.884401 +3277.912406 +3277.928757 +3277.942776 +3277.958127 +3277.959259 +3277.974311 +3277.985999 +3278.000285 +3278.015303 +3278.028091 +3278.029090 +3278.043442 +3278.045407 +3278.074711 +3278.089596 +3278.090029 +3278.105846 +3278.131720 +3278.134884 +3278.148204 +3278.177141 +3278.191327 +3278.193159 +3278.234151 +3278.234484 +3278.264188 +3278.273678 +3278.274411 +3278.290162 +3278.301450 +3278.303515 +3278.348437 +3278.360924 +3278.375709 +3278.403581 +3278.435350 +3278.449069 +3278.451067 +3278.463621 +3278.477874 +3278.478406 +3278.506345 +3278.507944 +3278.552499 +3278.568217 +3278.581537 +3278.582968 +3278.594890 +3278.609808 +3278.624460 +3278.627091 +3278.655762 +3278.671746 +3278.688496 +3278.700817 +3278.701816 +3278.716535 +3278.717301 +3278.747137 +3278.762422 +3278.776042 +3278.803381 +3278.803881 +3278.805279 +3278.821163 +3278.831553 +3278.833851 +3278.849235 +3278.862955 +3278.877840 +3278.903548 +3278.918699 +3278.919232 +3278.920797 +3278.979505 +3278.979971 +3278.993291 +3278.995023 +3279.022828 +3279.050134 +3279.066151 +3279.078106 +3279.080504 +3279.091892 +3279.095089 +3279.109774 +3279.122295 +3279.137913 +3279.147037 +3279.148869 +3279.149568 +3279.174343 +3279.188396 +3279.190860 +3279.206777 +3279.217633 +3279.247537 +3279.274576 +3279.275509 +3279.288562 +3279.302315 +3279.302781 +3279.303481 +3279.305678 +3279.331752 +3279.345672 +3279.346204 +3279.347636 +3279.371046 +3279.384533 +3279.412738 +3279.414436 +3279.427956 +3279.440710 +3279.453197 +3279.455462 +3279.468082 +3279.484233 +3279.496987 +3279.512272 +3279.512804 +3279.528589 +3279.544506 +3279.544972 +3279.559524 +3279.571879 +3279.575808 +3279.603480 +3279.636947 +3279.637480 +3279.649867 +3279.653963 +3279.664086 +3279.697686 +3279.699617 +3279.701915 +3279.713903 +3279.714269 +3279.729820 +3279.732151 +3279.746404 +3279.759224 +3279.774209 +3279.791758 +3279.793856 +3279.827023 +3279.838012 +3279.851032 +3279.852398 +3279.856560 +3279.868482 +3279.884299 +3285.513331 +3289.886154 +3289.890916 +3291.885186 +3291.885752 +3292.885651 +3293.027310 +3293.885784 +3293.893210 +3294.892842 +3300.187143 +3300.287575 +3300.487342 +3300.886776 +3301.987374 +3302.087141 +3302.387806 +3302.587806 +3302.787140 +3302.887340 +3302.986707 +3303.187373 +3303.486673 +3303.487506 +3303.687006 +3303.786673 +3303.787405 +3303.987039 +3304.187838 +3304.287805 +3304.387771 +3304.686739 +3304.885773 +3309.909977 +3310.018834 +3310.168085 +3310.219966 +3310.283270 +3310.360126 +3310.428558 +3310.451601 +3310.464222 +3310.528458 +3310.553832 +3310.554765 +3310.603216 +3310.619999 +3310.821931 +3310.872114 +3310.966319 +3311.038913 +3311.039546 +3311.071381 +3311.094491 +3311.118234 +3311.195224 +3311.204314 +3311.255097 +3311.280039 +3311.282336 +3311.317035 +3311.341244 +3311.353698 +3311.365720 +3311.389829 +3311.452333 +3311.475343 +3311.515503 +3311.525293 +3311.527258 +3311.541743 +3311.577907 +3311.615536 +3311.641643 +3311.656628 +3311.671014 +3311.709575 +3311.749102 +3311.776542 +3311.788063 +3311.816668 +3311.843541 +3311.854730 +3311.855995 +3311.894157 +3311.934916 +3311.977108 +3312.017301 +3312.081103 +3312.097953 +3312.109142 +3312.122296 +3312.233318 +3312.246072 +3312.284067 +3312.312439 +3312.314470 +3312.339611 +3312.368050 +3312.415768 +3312.446771 +3312.458159 +3312.469681 +3312.483501 +3312.509608 +3312.536015 +3312.592691 +3312.621396 +3312.635382 +3312.650134 +3312.650900 +3312.663587 +3312.678206 +3312.706078 +3312.708575 +3312.732718 +3312.757660 +3312.795522 +3312.813837 +3312.828289 +3312.844040 +3312.859424 +3312.884266 +3312.884932 +3312.896720 +3312.911206 +3312.922228 +3312.922794 +3312.977340 +3312.991792 +3312.992225 +3313.048502 +3313.074875 +3313.075142 +3313.090426 +3313.102315 +3313.105911 +3313.119964 +3313.132817 +3313.159158 +3313.162887 +3313.188661 +3313.192258 +3313.218698 +3313.275808 +3313.278105 +3313.321795 +3313.340643 +3313.351066 +3313.352997 +3313.368148 +3313.395221 +3313.399117 +3313.439977 +3313.456660 +3313.485764 +3313.487029 +3313.515068 +3313.560989 +3313.575108 +3313.590592 +3313.593157 +3313.605644 +3313.607309 +3313.634349 +3313.650466 +3313.722560 +3313.723060 +3313.723926 +3313.756293 +3313.830685 +3313.832117 +3313.864019 +3313.889160 +3313.934049 +3313.936380 +3313.965617 +3313.966483 +3313.983599 +3313.995088 +3313.996087 +3314.012803 +3314.026756 +3314.028721 +3314.056459 +3314.073842 +3314.088594 +3314.090958 +3314.120362 +3314.146969 +3314.147668 +3314.148800 +3314.149267 +3314.166549 +3314.178337 +3314.178770 +3314.181368 +3314.195121 +3314.196220 +3314.212969 +3314.223958 +3314.240275 +3314.241241 +3314.242507 +3314.259423 +3314.272110 +3314.272776 +3314.274341 +3314.301880 +3314.302546 +3314.331950 +3314.346103 +3314.359922 +3314.363053 +3314.388294 +3314.390658 +3314.405976 +3314.406676 +3314.418630 +3314.432783 +3314.449633 +3314.451697 +3314.489726 +3314.536812 +3314.552330 +3314.596785 +3314.601580 +3314.628387 +3314.629586 +3314.631717 +3314.645869 +3314.646602 +3314.659223 +3314.661354 +3314.662819 +3314.678470 +3314.688693 +3314.689293 +3314.705643 +3314.706542 +3314.715766 +3314.720461 +3314.733315 +3314.760155 +3314.775673 +3314.776239 +3314.778470 +3314.789293 +3314.791657 +3314.792889 +3314.818730 +3314.832649 +3314.847235 +3314.849599 +3314.860521 +3314.875540 +3314.877005 +3314.877571 +3324.885420 +3324.886086 +3324.886252 +3325.885852 +3325.886418 +3325.891579 +3327.886549 +3328.891942 +3329.885748 +3329.886181 +3329.886647 +3331.912419 +3334.885743 +3335.671523 +3335.686108 +3335.687240 +3335.688040 +3335.887606 +3336.586906 +3336.787805 +3336.887106 +3336.887605 +3337.087239 +3337.387505 +3337.687205 +3338.887104 +3339.587137 +3344.885466 +3344.991527 +3345.074277 +3345.074610 +3345.155662 +3345.177907 +3345.232252 +3345.244474 +3345.254996 +3345.311506 +3345.338946 +3345.361923 +3345.402415 +3345.413038 +3345.525659 +3345.549568 +3345.551033 +3345.605279 +3345.643341 +3345.659824 +3345.707910 +3345.708209 +3345.764053 +3345.777673 +3345.839545 +3345.839778 +3345.851533 +3345.867250 +3345.878139 +3345.903314 +3345.916900 +3345.959225 +3345.973677 +3345.983567 +3345.997087 +3346.010440 +3346.010707 +3346.032618 +3346.083334 +3346.095289 +3346.098219 +3346.121529 +3346.134416 +3346.183267 +3346.195688 +3346.219264 +3346.243207 +3346.255961 +3346.293257 +3346.328555 +3346.340377 +3346.352464 +3346.376440 +3346.390293 +3346.402448 +3346.438245 +3346.474342 +3346.476940 +3346.501815 +3346.502215 +3346.526257 +3346.527622 +3346.541109 +3346.564552 +3346.576773 +3346.603147 +3346.617100 +3346.630020 +3346.643140 +3346.656427 +3346.692857 +3346.693556 +3346.746936 +3346.747236 +3346.747702 +3346.774708 +3346.801149 +3346.840742 +3346.868848 +3346.881535 +3346.930586 +3346.955361 +3346.956993 +3347.009873 +3347.022793 +3347.077472 +3347.133283 +3347.159357 +3347.185664 +3347.214402 +3347.240742 +3347.266583 +3347.282134 +3347.283399 +3347.336646 +3347.337578 +3347.338244 +3347.393589 +3347.422027 +3347.436346 +3347.449300 +3347.488794 +3347.515567 +3347.538511 +3347.539510 +3347.552563 +3347.563619 +3347.577039 +3347.626955 +3347.641907 +3347.644038 +3347.656559 +3347.695886 +3347.696119 +3347.697218 +3347.752430 +3347.755660 +3347.794421 +3347.809206 +3347.809806 +3347.836645 +3347.865983 +3347.876839 +3347.893788 +3347.905010 +3347.905377 +3347.933748 +3347.962153 +3347.975906 +3347.976339 +3348.004311 +3348.053462 +3348.068280 +3348.080302 +3348.080768 +3348.096119 +3348.118996 +3348.119829 +3348.121161 +3348.148134 +3348.160754 +3348.215699 +3348.259888 +3348.275173 +3348.286329 +3348.358290 +3348.398883 +3348.420361 +3348.423458 +3348.424224 +3348.444271 +3348.447367 +3348.487960 +3348.514101 +3348.540108 +3348.540974 +3348.584064 +3348.625356 +3348.650830 +3348.663351 +3348.664583 +3348.665249 +3348.680301 +3348.692755 +3348.693022 +3348.711203 +3348.724523 +3348.751530 +3348.752296 +3348.782732 +3348.811669 +3348.813434 +3348.830784 +3348.846368 +3348.871376 +3348.891589 +3348.903777 +3348.934513 +3348.949598 +3348.950564 +3348.964117 +3348.980867 +3349.012568 +3349.037277 +3349.039075 +3349.057290 +3349.071543 +3349.084430 +3349.101013 +3349.143204 +3349.148299 +3349.161319 +3349.161952 +3349.208639 +3349.220960 +3349.223923 +3349.238609 +3349.251329 +3349.268013 +3349.300114 +3349.316830 +3349.333014 +3349.375771 +3349.391089 +3349.392788 +3349.393454 +3349.457656 +3349.467280 +3349.472741 +3349.501712 +3349.529085 +3349.546168 +3349.560653 +3349.562152 +3349.587593 +3349.593420 +3349.622025 +3349.622558 +3349.625888 +3349.639641 +3349.652461 +3349.652994 +3349.666780 +3349.686094 +3349.689324 +3349.715798 +3349.747799 +3349.792687 +3349.795318 +3349.809704 +3349.823390 +3349.839807 +3359.885318 +3359.885851 +3360.394209 +3360.410259 +3360.885517 +3360.886616 +3360.886982 +3360.893775 +3361.886282 +3361.886615 +3361.886914 +3361.891843 +3362.838029 +3362.886514 +3364.886545 +3369.472222 +3369.550810 +3369.986873 +3370.988204 +3371.388037 +3371.888270 +3372.288070 +3372.688102 +3373.688601 +3374.588067 +3374.788533 +3379.886663 +3379.972644 +3380.141575 +3380.187229 +3380.226323 +3380.247103 +3380.248168 +3380.371645 +3380.383732 +3380.413070 +3380.494322 +3380.504811 +3380.570612 +3380.587895 +3380.590426 +3380.636846 +3380.674974 +3380.708974 +3380.709240 +3380.754128 +3380.782433 +3380.822726 +3380.838377 +3380.877305 +3380.927288 +3380.972343 +3381.001048 +3381.001481 +3381.021694 +3381.023359 +3381.080002 +3381.106875 +3381.168813 +3381.207408 +3381.220994 +3381.234647 +3381.245037 +3381.258623 +3381.317664 +3381.363885 +3381.364984 +3381.452995 +3381.480601 +3381.547734 +3381.559655 +3381.623158 +3381.623891 +3381.676472 +3381.678170 +3381.689292 +3381.729019 +3381.753561 +3381.808340 +3381.835046 +3381.836412 +3381.861586 +3381.885130 +3381.913268 +3381.925789 +3381.964051 +3381.964883 +3381.979435 +3381.989558 +3382.040407 +3382.050464 +3382.063884 +3382.078170 +3382.099348 +3382.099781 +3382.100281 +3382.123591 +3382.124656 +3382.189425 +3382.202778 +3382.214766 +3382.216598 +3382.297284 +3382.382498 +3382.437543 +3382.453161 +3382.478968 +3382.493254 +3382.495019 +3382.522991 +3382.536145 +3382.549631 +3382.562452 +3382.591256 +3382.620327 +3382.621293 +3382.648199 +3382.650297 +3382.693620 +3382.705309 +3382.732148 +3382.758056 +3382.783197 +3382.785195 +3382.816764 +3382.830017 +3382.844236 +3382.869611 +3382.881532 +3382.911069 +3382.913234 +3382.924556 +3382.937043 +3382.975571 +3383.006674 +3383.006907 +3383.018961 +3383.032648 +3383.046234 +3383.058322 +3383.115565 +3383.145401 +3383.145868 +3383.175172 +3383.203643 +3383.204842 +3383.293320 +3383.334246 +3383.351329 +3383.393853 +3383.407572 +3383.437076 +3383.466380 +3383.467246 +3383.527885 +3383.555091 +3383.568678 +3383.584828 +3383.586193 +3383.612700 +3383.628118 +3383.656057 +3383.656323 +3383.672640 +3383.688458 +3383.730249 +3383.731515 +3383.763316 +3383.792021 +3383.805807 +3383.807305 +3383.821425 +3383.823190 +3383.836743 +3383.864315 +3383.924921 +3383.942404 +3383.954158 +3383.994252 +3384.010669 +3384.024721 +3384.036842 +3384.065214 +3384.078734 +3384.091954 +3384.094585 +3384.119793 +3384.122423 +3384.152527 +3384.180232 +3384.183163 +3384.195051 +3384.211268 +3384.211634 +3384.224421 +3384.235410 +3384.253426 +3384.266845 +3384.268044 +3384.280931 +3384.294251 +3384.310768 +3384.326119 +3384.334877 +3384.339273 +3384.341504 +3384.368777 +3384.441937 +3384.455323 +3384.457288 +3384.486059 +3384.487658 +3384.501111 +3384.542569 +3384.543002 +3384.572073 +3384.572939 +3384.588990 +3384.589622 +3384.615563 +3384.631347 +3384.634045 +3384.656988 +3384.673538 +3384.689422 +3384.717228 +3384.718793 +3384.720924 +3384.766512 +3384.793885 +3384.809203 +3384.827950 +3384.839938 +3384.841603 +3384.855356 +3384.868943 +3384.869775 +3384.871174 +3384.871773 +3395.887080 +3395.887447 +3395.887780 +3396.886713 +3397.887445 +3397.887877 +3398.886744 +3398.887310 +3398.887610 +3404.987171 +3405.488103 +3405.488569 +3406.188635 +3406.288102 +3406.488102 +3406.588069 +3406.688601 +3406.788168 +3406.888068 +3406.988335 +3407.087535 +3407.288068 +3407.588167 +3407.588634 +3407.688167 +3407.788667 +3407.888167 +3407.988100 +3408.188200 +3408.188633 +3408.287501 +3408.288600 +3409.188066 +3409.388199 +3409.588165 +3414.904411 +3414.989858 +3415.174041 +3415.174807 +3415.199515 +3415.246501 +3415.258889 +3415.387860 +3415.455592 +3415.500481 +3415.540474 +3415.590058 +3415.626155 +3415.641173 +3415.673907 +3415.696951 +3415.698149 +3415.745968 +3415.834113 +3415.835345 +3415.895086 +3415.930250 +3415.931782 +3416.026188 +3416.060587 +3416.098782 +3416.149897 +3416.226754 +3416.240740 +3416.342871 +3416.356690 +3416.454725 +3416.498881 +3416.573340 +3416.598049 +3416.626453 +3416.638575 +3416.719027 +3416.719294 +3416.743669 +3416.770276 +3416.812234 +3416.823423 +3416.825521 +3416.848864 +3416.908704 +3416.926253 +3416.926886 +3416.949397 +3417.003543 +3417.032947 +3417.049930 +3417.075238 +3417.127119 +3417.151095 +3417.179300 +3417.232880 +3417.265281 +3417.276103 +3417.290389 +3417.291688 +3417.326519 +3417.342503 +3417.396383 +3417.439107 +3417.449363 +3417.479599 +3417.507805 +3417.534178 +3417.577768 +3417.604308 +3417.631181 +3417.674305 +3417.687558 +3417.730015 +3417.731148 +3417.786392 +3417.815530 +3417.829183 +3417.872107 +3417.885793 +3417.901344 +3417.928217 +3417.959319 +3417.986492 +3418.013898 +3418.015696 +3418.028716 +3418.030681 +3418.058220 +3418.060351 +3418.084960 +3418.102343 +3418.143169 +3418.172040 +3418.190388 +3418.201643 +3418.230648 +3418.248996 +3418.259585 +3418.275902 +3418.292319 +3418.349862 +3418.350461 +3418.378000 +3418.434510 +3418.436175 +3418.450394 +3418.464280 +3418.524087 +3418.553058 +3418.555123 +3418.583861 +3418.597547 +3418.611034 +3418.625985 +3418.628849 +3418.641237 +3418.656421 +3418.657520 +3418.671073 +3418.698213 +3418.698613 +3418.728682 +3418.730614 +3418.758453 +3418.787324 +3418.817893 +3418.847297 +3418.906471 +3418.936108 +3418.964979 +3418.965812 +3418.985659 +3418.996614 +3418.997247 +3419.014263 +3419.028116 +3419.044267 +3419.059451 +3419.072905 +3419.076434 +3419.086857 +3419.090720 +3419.117360 +3419.119591 +3419.178399 +3419.182561 +3419.213064 +3419.226351 +3419.238605 +3419.241269 +3419.255555 +3419.269241 +3419.284093 +3419.302042 +3419.313597 +3419.329115 +3419.346930 +3419.358019 +3419.359551 +3419.376601 +3419.377267 +3419.390387 +3419.391186 +3419.421422 +3419.449727 +3419.467476 +3419.468509 +3419.482894 +3419.510999 +3419.512631 +3419.526717 +3419.542801 +3419.571172 +3419.575435 +3419.585824 +3419.616460 +3419.616727 +3419.634809 +3419.680963 +3419.681495 +3419.693483 +3419.709034 +3419.754356 +3419.758352 +3419.771971 +3419.800809 +3419.801475 +3419.815095 +3419.830713 +3419.846963 +3419.849794 +3429.885781 +3429.886114 +3430.886479 +3430.886979 +3431.886079 +3433.886743 +3434.885876 +3434.886342 +3439.986237 +3440.387935 +3440.687602 +3440.987335 +3442.087567 +3442.387300 +3442.887133 +3442.987200 +3443.187233 +3443.787199 +3443.987465 +3444.587198 +3444.687198 +3444.787797 +3449.890323 +3449.921392 +3449.956024 +3450.059354 +3450.139740 +3450.141838 +3450.195551 +3450.196983 +3450.381898 +3450.443103 +3450.462151 +3450.471608 +3450.478634 +3450.508271 +3450.540872 +3450.575071 +3450.582963 +3450.593319 +3450.712300 +3450.759153 +3450.779466 +3450.877435 +3450.925453 +3450.927818 +3450.951561 +3450.976003 +3451.012733 +3451.023289 +3451.056056 +3451.092919 +3451.130248 +3451.166712 +3451.221890 +3451.224221 +3451.262283 +3451.308437 +3451.310435 +3451.374904 +3451.385992 +3451.436042 +3451.485593 +3451.532512 +3451.567144 +3451.623521 +3451.682929 +3451.769808 +3451.786192 +3451.812066 +3451.823388 +3451.835143 +3451.872372 +3451.886558 +3451.906938 +3451.926418 +3451.967577 +3451.991320 +3452.015496 +3452.024986 +3452.075536 +3452.088689 +3452.112732 +3452.177400 +3452.191986 +3452.192851 +3452.217493 +3452.242702 +3452.268309 +3452.269042 +3452.329015 +3452.350027 +3452.350560 +3452.350727 +3452.372572 +3452.418992 +3452.472039 +3452.482062 +3452.496015 +3452.507770 +3452.520523 +3452.555888 +3452.567543 +3452.569574 +3452.604173 +3452.604506 +3452.604706 +3452.629781 +3452.654523 +3452.669341 +3452.696248 +3452.696714 +3452.711332 +3452.747929 +3452.748495 +3452.773870 +3452.774569 +3452.800876 +3452.827216 +3452.827616 +3452.842568 +3452.881795 +3452.891519 +3452.906870 +3452.919191 +3452.920456 +3452.946430 +3452.970973 +3452.971239 +3452.985625 +3452.987290 +3453.013896 +3453.053357 +3453.053823 +3453.056986 +3453.079031 +3453.091885 +3453.101808 +3453.130213 +3453.178398 +3453.191618 +3453.229813 +3453.244898 +3453.245698 +3453.255921 +3453.266277 +3453.279031 +3453.292018 +3453.292617 +3453.293683 +3453.317692 +3453.320123 +3453.334242 +3453.347929 +3453.362647 +3453.373636 +3453.402441 +3453.411598 +3453.412198 +3453.426217 +3453.440136 +3453.442367 +3453.465244 +3453.465910 +3453.478864 +3453.479197 +3453.492184 +3453.504205 +3453.505071 +3453.505438 +3453.524352 +3453.536673 +3453.539970 +3453.540669 +3453.553789 +3453.579763 +3453.622054 +3453.634275 +3453.647196 +3453.649294 +3453.663712 +3453.688687 +3453.705304 +3453.728881 +3453.744798 +3453.753456 +3453.781628 +3453.783726 +3453.792817 +3453.808234 +3453.811897 +3453.820322 +3453.822021 +3453.835774 +3453.865078 +3453.921121 +3453.923486 +3453.933775 +3453.948427 +3453.950259 +3453.973969 +3453.975234 +3454.011198 +3454.024085 +3454.025917 +3454.051358 +3454.065444 +3454.093482 +3454.094814 +3454.095081 +3454.095280 +3454.136872 +3454.147395 +3454.147628 +3454.148993 +3454.159683 +3454.161914 +3454.175034 +3454.175833 +3454.179829 +3454.189919 +3454.192050 +3454.204604 +3454.214661 +3454.221354 +3454.227948 +3454.229080 +3454.252656 +3454.271071 +3454.293615 +3454.296446 +3454.300275 +3454.315160 +3454.318324 +3454.330012 +3454.357818 +3454.368074 +3454.369772 +3454.383559 +3454.384225 +3454.396213 +3454.420688 +3454.438703 +3454.448727 +3454.464045 +3454.477564 +3454.479496 +3454.479929 +3454.491883 +3454.505170 +3454.505803 +3454.517358 +3454.519090 +3454.541900 +3454.545596 +3454.561114 +3454.562313 +3454.575466 +3454.592083 +3454.603638 +3454.617358 +3454.630878 +3454.634241 +3454.648893 +3454.659449 +3454.662779 +3454.674501 +3454.677331 +3454.688920 +3454.691717 +3454.701940 +3454.707101 +3454.720122 +3454.731277 +3454.733575 +3454.747294 +3454.773368 +3454.774234 +3454.774534 +3454.774767 +3454.787488 +3454.805370 +3454.823052 +3454.825083 +3454.838936 +3454.842766 +3454.854187 +3454.861747 +3454.882226 +; +48.850467 +50.999250 +60.055984 +62.857213 +88.087291 +88.109469 +88.199612 +88.209702 +88.288223 +88.316129 +90.749260 +107.081811 +112.998488 +120.302044 +124.751091 +124.802006 +124.854520 +125.598043 +131.184984 +131.992342 +132.574959 +133.554612 +134.282749 +190.602906 +190.775567 +190.787755 +229.904565 +235.053711 +235.384080 +239.962630 +249.394955 +250.623625 +253.871075 +253.998714 +254.026985 +254.041271 +254.098147 +254.139340 +254.152293 +254.204541 +254.221524 +254.228450 +255.560517 +257.298910 +257.427948 +260.498774 +261.216955 +261.242363 +268.491506 +268.597267 +268.610687 +268.627071 +268.704293 +268.710687 +269.695368 +269.732597 +288.316029 +288.999778 +289.801642 +289.882727 +289.980862 +290.026583 +293.508697 +293.564675 +294.040365 +294.047458 +294.072466 +294.103302 +297.605563 +305.244683 +305.606155 +305.741486 +305.750976 +305.840653 +305.850543 +305.997097 +306.559467 +306.981378 +314.609542 +314.679872 +316.010173 +317.420562 +323.000776 +336.224472 +336.256540 +340.144049 +340.360166 +343.604651 +351.822492 +410.036087 +458.410730 +458.450957 +459.257083 +459.998075 +460.168105 +468.946584 +470.566962 +470.596599 +480.764654 +482.156927 +484.725756 +500.836529 +500.864767 +503.797831 +508.697860 +517.562586 +517.580102 +517.660788 +519.816530 +524.414161 +526.956882 +526.977062 +527.009363 +527.081624 +527.910161 +527.919585 +527.932805 +528.004767 +560.469703 +560.528477 +589.385191 +601.568096 +604.181880 +606.684708 +620.176469 +620.223322 +621.722755 +622.605937 +622.648195 +623.660082 +624.542332 +637.028301 +637.029433 +643.028195 +643.029394 +643.128394 +643.228627 +643.229327 +643.327395 +643.328627 +643.329193 +643.428394 +643.429193 +643.529859 +643.530092 +643.630492 +643.830925 +644.930824 +645.028892 +645.030524 +645.331023 +645.331289 +645.632288 +645.732355 +646.028125 +646.030723 +646.231821 +646.329590 +646.429690 +646.431521 +646.833552 +647.032786 +647.529289 +647.731420 +647.831786 +647.931320 +648.030221 +654.006406 +654.669508 +655.356088 +656.310233 +656.374901 +656.702473 +662.050154 +670.029633 +670.030033 +673.029663 +677.016239 +678.030624 +678.430857 +678.631855 +678.833287 +678.934386 +679.033054 +679.132721 +679.531055 +680.034118 +680.134318 +680.432753 +681.033085 +681.333451 +681.933184 +682.233484 +682.333483 +682.533383 +682.633350 +682.731785 +688.700943 +689.862980 +690.222720 +691.179495 +691.782758 +691.918755 +692.126181 +692.418755 +692.687020 +692.973466 +702.308555 +702.339124 +704.031131 +708.032226 +713.331754 +713.935183 +714.033452 +714.096355 +714.107944 +714.233019 +714.833884 +715.334483 +716.135814 +716.334049 +716.532916 +717.033316 +717.634147 +717.734580 +723.837338 +724.009666 +724.821619 +724.884157 +725.595112 +725.933373 +726.128178 +726.207932 +726.372833 +726.717655 +726.944261 +727.001138 +727.081457 +727.172433 +727.505167 +727.506931 +727.699439 +727.835236 +727.937167 +727.957081 +737.843485 +737.861367 +737.887108 +738.028033 +738.030397 +739.030829 +740.029829 +743.028961 +748.029921 +748.330987 +748.331519 +748.431786 +748.532119 +748.831452 +749.032618 +749.132784 +749.531685 +749.732617 +750.132816 +750.431917 +750.932383 +751.232515 +751.432515 +752.033847 +752.333080 +752.532614 +756.654255 +759.174066 +759.960279 +760.330009 +761.231673 +761.344094 +761.487450 +761.775995 +762.107530 +762.157912 +762.192744 +762.371299 +762.767669 +773.029164 +774.028597 +775.029461 +777.029493 +783.129387 +783.230186 +783.330419 +783.631517 +783.731351 +784.031883 +784.131284 +784.331583 +784.532382 +784.632316 +784.732449 +785.232415 +785.431849 +785.531249 +785.631549 +786.032214 +786.132614 +786.232547 +786.931681 +787.831846 +787.832679 +787.932046 +788.032812 +794.166205 +795.227243 +796.222114 +796.521015 +797.269765 +808.030427 +809.029860 +812.030290 +813.030189 +818.028286 +818.230284 +818.230783 +818.431349 +818.632082 +818.831815 +818.832082 +818.932747 +819.132448 +819.232481 +819.332248 +819.432314 +819.733146 +819.832913 +820.432979 +820.532413 +820.832879 +820.932512 +821.032579 +821.132878 +821.332112 +822.333044 +822.631845 +822.733310 +823.033110 +828.030108 +828.136435 +828.935401 +829.269933 +829.481122 +830.159809 +831.089146 +831.158776 +831.834733 +832.088345 +832.266467 +832.511821 +832.687412 +832.769430 +846.030489 +848.030121 +853.029816 +854.232945 +854.333345 +854.733211 +855.033577 +857.233242 +857.532875 +857.633575 +857.733641 +857.833841 +857.834107 +857.933941 +858.033374 +858.033907 +863.031271 +863.938896 +864.616818 +865.299867 +865.461439 +866.191242 +866.801231 +866.905393 +867.205393 +867.392872 +867.515882 +867.926838 +878.030457 +879.030623 +879.606946 +880.029623 +880.030355 +888.130714 +888.733344 +888.934109 +889.233576 +889.331145 +889.533276 +889.833809 +890.031811 +890.333875 +890.434174 +890.633941 +891.034240 +891.133408 +891.334007 +891.534739 +891.830776 +891.933340 +892.131575 +892.132674 +892.229278 +892.330543 +892.434106 +892.535604 +892.832207 +892.931941 +892.933040 +893.033539 +898.030437 +898.055179 +898.449185 +899.298435 +900.471227 +901.064467 +901.114850 +901.191007 +901.258772 +901.357673 +901.532898 +902.221475 +902.368095 +902.656273 +906.320306 +910.589699 +911.354600 +911.453834 +911.517270 +912.213973 +912.234019 +912.257529 +912.265055 +912.303150 +913.147638 +913.267285 +913.306579 +915.030720 +917.030352 +917.030984 +923.028048 +923.029780 +923.129047 +923.129913 +923.229613 +923.230012 +923.431378 +923.632243 +924.432542 +924.433574 +924.531476 +924.833907 +924.933574 +925.134340 +925.630077 +925.630976 +925.731142 +925.833273 +926.033373 +926.033806 +926.133806 +926.232007 +926.631441 +926.732973 +926.933339 +927.233172 +927.534570 +927.633738 +927.829508 +928.033005 +931.172029 +931.401566 +933.030336 +933.848383 +934.050415 +934.390075 +934.827270 +935.031433 +935.419311 +935.997932 +936.238924 +936.564365 +936.705923 +937.350345 +937.530997 +937.626934 +937.943418 +937.956338 +949.029421 +949.030453 +951.031750 +953.029949 +958.029778 +958.030044 +958.129744 +958.231309 +958.331676 +958.532341 +958.633107 +958.833207 +959.033506 +959.134039 +959.333739 +959.833372 +960.033505 +961.032505 +961.332738 +961.533937 +961.632705 +961.733770 +961.833004 +962.134169 +962.833203 +968.121143 +969.809953 +969.864065 +970.182180 +971.196265 +971.272555 +971.410084 +971.581579 +971.995665 +972.106720 +972.347812 +972.591102 +972.726000 +972.858601 +973.363662 +973.428464 +974.756235 +974.773717 +974.800624 +974.854270 +983.030452 +983.030785 +984.030351 +986.032014 +987.031381 +987.637873 +988.029748 +988.030347 +993.031907 +993.331174 +994.235136 +994.334537 +994.832572 +995.234369 +995.433936 +995.534302 +995.934535 +995.934901 +996.035268 +996.233236 +996.331871 +996.332936 +996.432437 +996.532337 +996.533269 +996.632570 +996.633935 +996.934101 +997.134501 +997.632902 +997.833701 +998.033334 +1003.030732 +1003.108954 +1003.121441 +1003.275320 +1003.447681 +1004.681346 +1005.466527 +1005.791701 +1006.227032 +1006.359233 +1006.932127 +1007.211580 +1007.358267 +1007.485573 +1007.560298 +1007.834989 +1007.937021 +1017.530551 +1018.629551 +1019.544202 +1021.031180 +1023.032443 +1028.131106 +1028.131606 +1028.733836 +1029.134602 +1029.934301 +1030.134401 +1031.733733 +1032.334965 +1032.732334 +1038.031496 +1039.395164 +1040.011747 +1040.096695 +1040.517208 +1040.749209 +1041.357866 +1041.795961 +1042.151305 +1042.271385 +1042.519304 +1042.960063 +1054.031447 +1058.031509 +1063.029773 +1063.030339 +1063.331571 +1063.831837 +1063.932269 +1064.133002 +1064.332469 +1064.432569 +1065.432534 +1065.432767 +1065.532401 +1065.532767 +1066.033399 +1066.133100 +1066.133399 +1066.232900 +1066.233632 +1066.432633 +1066.629503 +1066.932466 +1067.133165 +1067.233132 +1067.333065 +1067.532432 +1067.632632 +1067.732932 +1067.733165 +1067.932865 +1073.028830 +1073.058101 +1073.067592 +1073.160931 +1073.274884 +1075.174316 +1076.055667 +1076.200722 +1076.611178 +1076.866356 +1077.220867 +1077.516605 +1077.674746 +1077.975412 +1079.498821 +1080.135117 +1084.392222 +1089.028515 +1089.029014 +1093.028910 +1098.530536 +1099.031102 +1099.531501 +1099.931501 +1100.231134 +1100.331434 +1100.431367 +1100.531567 +1100.730568 +1101.030867 +1101.131633 +1101.231533 +1101.431899 +1101.831732 +1102.131199 +1102.531265 +1102.631165 +1102.631998 +1102.831165 +1108.113277 +1108.176581 +1108.403087 +1108.967855 +1109.724498 +1110.090532 +1110.683738 +1111.655565 +1111.973647 +1112.152401 +1112.514239 +1112.957262 +1113.002850 +1123.028780 +1123.029147 +1126.028977 +1126.030376 +1127.029342 +1133.830801 +1133.930668 +1134.031567 +1134.232599 +1134.632731 +1134.633830 +1134.932764 +1135.032664 +1135.229767 +1136.030499 +1136.234062 +1136.433362 +1136.433795 +1136.631864 +1136.931963 +1137.032063 +1137.832961 +1143.029093 +1143.112810 +1143.206649 +1143.484371 +1144.495892 +1144.853201 +1145.398388 +1145.554699 +1146.011242 +1146.178541 +1146.371581 +1146.509743 +1146.756862 +1146.892293 +1147.184467 +1147.446405 +1147.718599 +1147.954030 +1156.023486 +1157.321087 +1158.029744 +1161.030108 +1162.028741 +1162.030073 +1163.028973 +1163.029706 +1165.670329 +1168.229268 +1168.331199 +1168.631599 +1168.632131 +1169.330899 +1169.930865 +1170.131797 +1170.432729 +1170.732529 +1170.933195 +1170.933727 +1171.033927 +1171.333760 +1171.730896 +1171.830397 +1172.533260 +1172.633459 +1173.031761 +1178.029558 +1178.363457 +1178.629091 +1178.757829 +1179.418001 +1179.713572 +1179.913272 +1180.691493 +1180.914903 +1181.057260 +1181.172878 +1181.304846 +1181.509474 +1182.119963 +1182.399384 +1182.463852 +1182.652530 +1182.905910 +1183.004711 +1183.024858 +1196.029007 +1196.029939 +1197.029339 +1198.028805 +1203.031231 +1204.031730 +1204.132229 +1204.231896 +1205.131329 +1205.330962 +1205.632361 +1205.832727 +1206.230096 +1206.330262 +1206.430429 +1206.531294 +1206.832426 +1206.833026 +1207.033292 +1207.133292 +1207.231493 +1213.050402 +1213.063289 +1213.111075 +1213.270482 +1213.496888 +1213.568517 +1213.890095 +1214.137447 +1214.416768 +1215.314869 +1215.689094 +1215.764485 +1216.311371 +1216.475607 +1217.008906 +1217.583997 +1217.805409 +1217.895219 +1217.907673 +1217.959222 +1217.977670 +1229.029274 +1231.029571 +1231.030637 +1231.328972 +1231.366667 +1231.398535 +1231.621113 +1231.671662 +1231.855411 +1231.896770 +1231.931835 +1232.025341 +1238.331262 +1238.431429 +1238.632394 +1238.732527 +1238.829031 +1239.034059 +1239.133160 +1239.633059 +1239.731860 +1240.032826 +1240.232493 +1240.432492 +1241.033258 +1241.431492 +1241.730193 +1241.831326 +1241.831992 +1241.931559 +1242.033090 +1242.232258 +1242.333356 +1242.533656 +1242.933689 +1244.989498 +1245.161126 +1248.026924 +1248.039078 +1248.073411 +1248.105445 +1249.469213 +1249.758091 +1251.204210 +1251.391289 +1251.967313 +1252.276237 +1252.565880 +1252.672540 +1252.689057 +1252.735244 +1252.798481 +1252.884262 +1254.898112 +1263.031471 +1265.030403 +1265.031269 +1266.030036 +1266.031468 +1268.031166 +1273.032826 +1273.231960 +1273.434491 +1273.935223 +1274.231060 +1274.332425 +1274.434123 +1274.733291 +1274.734423 +1274.930660 +1275.031825 +1275.130893 +1275.333623 +1275.434722 +1275.532924 +1275.733123 +1275.833956 +1275.933722 +1275.934422 +1276.135121 +1276.334854 +1276.435653 +1276.735853 +1277.234853 +1277.334154 +1277.534320 +1277.732955 +1277.834686 +1277.835186 +1277.935019 +1278.033654 +1283.031917 +1283.055460 +1283.067715 +1283.085830 +1283.216266 +1284.198050 +1286.077835 +1286.434178 +1286.966812 +1287.224853 +1287.598712 +1287.599012 +1287.678433 +1287.716528 +1287.853591 +1287.891686 +1287.958519 +1288.009002 +1300.031800 +1308.030926 +1308.031592 +1308.633523 +1308.933023 +1308.933423 +1309.034155 +1309.534488 +1309.734255 +1309.833822 +1310.034121 +1310.734354 +1311.234286 +1311.534053 +1311.633753 +1311.834719 +1312.034619 +1312.131388 +1312.133886 +1312.234519 +1312.434418 +1312.635384 +1313.033952 +1318.031449 +1318.965880 +1320.261517 +1320.684893 +1321.572638 +1322.114928 +1322.644998 +1322.660882 +1322.790385 +1325.975930 +1333.031168 +1336.031198 +1343.030392 +1343.231757 +1343.531723 +1343.832422 +1343.932056 +1343.932789 +1344.033521 +1344.432955 +1344.433354 +1344.629425 +1344.833653 +1345.033753 +1345.433653 +1345.532554 +1345.633053 +1345.733086 +1346.133652 +1346.233918 +1346.234285 +1346.733152 +1346.733518 +1347.034117 +1347.234084 +1347.634217 +1347.733717 +1353.030615 +1354.336608 +1355.379497 +1355.801208 +1355.863213 +1356.060249 +1356.616492 +1356.844131 +1357.016292 +1357.172869 +1357.479328 +1357.644163 +1357.970304 +1358.007633 +1370.967860 +1376.167322 +1376.267688 +1376.468021 +1376.967920 +1377.168420 +1377.268519 +1377.568552 +1377.668552 +1378.068585 +1378.168652 +1378.268552 +1378.668651 +1378.968651 +1379.068551 +1379.068817 +1379.168684 +1379.268584 +1379.368651 +1379.568617 +1379.668684 +1379.768683 +1379.868683 +1380.068117 +1380.168750 +1380.268883 +1380.368450 +1380.468649 +1380.568683 +1380.668716 +1380.768150 +1380.867950 +1380.868449 +1386.464148 +1386.582196 +1386.752593 +1386.919126 +1387.026685 +1387.244334 +1387.369142 +1387.469875 +1387.560018 +1387.612898 +1387.656454 +1387.738006 +1387.841269 +1387.895648 +1387.985359 +1388.038539 +1388.091186 +1388.166277 +1388.271872 +1388.374702 +1388.432611 +1388.579131 +1388.664179 +1388.756154 +1388.798711 +1388.867675 +1388.944931 +1389.044965 +1389.105937 +1389.179863 +1389.310765 +1389.386023 +1389.412663 +1389.483292 +1389.509599 +1389.542367 +1389.595946 +1389.637172 +1389.687921 +1389.731910 +1389.879529 +1389.973235 +1390.004238 +1390.047394 +1390.065243 +1390.094880 +1390.184357 +1390.218590 +1390.259482 +1390.309132 +1390.346828 +1390.418090 +1390.452356 +1390.480228 +1390.540101 +1390.585023 +1390.629578 +1390.702539 +1390.733574 +1390.763944 +1390.782559 +1390.827780 +1390.858283 +1390.904070 +1390.962245 +1401.974089 +1404.968325 +1411.167686 +1411.268219 +1411.368086 +1411.368585 +1411.468785 +1411.568885 +1411.668418 +1411.668985 +1411.869118 +1411.968451 +1411.968884 +1412.069151 +1412.169151 +1412.369117 +1412.469150 +1412.569250 +1412.668584 +1412.669117 +1412.969150 +1413.068517 +1413.068950 +1413.169150 +1413.669249 +1413.869249 +1413.969115 +1414.068982 +1414.269148 +1414.368649 +1414.369115 +1414.469415 +1414.569248 +1414.769181 +1414.969447 +1415.168815 +1415.268581 +1415.268914 +1415.269181 +1415.569447 +1415.669380 +1421.099911 +1421.357220 +1421.505205 +1421.597746 +1421.688388 +1421.807203 +1421.876234 +1422.023886 +1422.091418 +1422.206503 +1422.269440 +1422.383959 +1422.546896 +1422.602240 +1422.691251 +1422.764411 +1422.826849 +1422.889420 +1423.021854 +1423.072470 +1423.155586 +1423.259283 +1423.363012 +1423.555852 +1423.672869 +1423.735906 +1423.792715 +1423.864310 +1423.928812 +1424.006834 +1424.085156 +1424.111696 +1424.182625 +1424.224916 +1424.280727 +1424.351123 +1424.432608 +1424.488719 +1424.529378 +1424.587387 +1424.640667 +1424.641765 +1424.724583 +1424.798142 +1424.873200 +1424.916257 +1424.973600 +1425.014759 +1425.055218 +1425.085721 +1425.099607 +1425.154452 +1425.216956 +1425.259347 +1425.304469 +1425.373400 +1425.420752 +1425.450589 +1425.493879 +1425.566906 +1425.686753 +1425.790782 +1425.840599 +1425.909563 +1428.713756 +1430.114254 +1435.968894 +1436.969026 +1437.968692 +1437.969391 +1440.969222 +1446.170548 +1446.471148 +1446.571381 +1446.671580 +1446.771613 +1446.871580 +1447.071513 +1447.171313 +1447.271580 +1448.071845 +1448.171779 +1448.569480 +1448.671478 +1448.872211 +1448.972144 +1449.172210 +1449.971943 +1450.072076 +1450.171943 +1450.272209 +1450.672076 +1455.977365 +1456.076832 +1456.174235 +1456.199876 +1456.336639 +1456.516692 +1456.597211 +1456.673535 +1456.739602 +1456.855919 +1456.907168 +1456.970737 +1457.060281 +1457.173335 +1457.212462 +1457.309365 +1457.409232 +1457.444164 +1457.517623 +1457.609098 +1457.690350 +1457.743730 +1457.866108 +1457.943963 +1457.983857 +1458.064876 +1458.111695 +1458.175398 +1458.263743 +1458.282658 +1458.399108 +1458.454785 +1458.500839 +1458.589817 +1458.632141 +1458.711595 +1458.787819 +1458.889350 +1458.905101 +1459.010596 +1459.084422 +1459.126879 +1459.231141 +1459.300872 +1459.348724 +1459.420385 +1459.476729 +1459.538767 +1459.599972 +1459.655783 +1459.734338 +1459.774531 +1459.844694 +1459.888650 +1459.948523 +1459.977961 +1460.033239 +1460.129642 +1460.214391 +1460.303601 +1460.346958 +1460.370834 +1460.403168 +1460.465073 +1460.478726 +1460.491813 +1460.531673 +1460.572465 +1460.587617 +1460.631873 +1460.674730 +1460.704100 +1460.731406 +1460.755849 +1460.896408 +1460.940430 +1471.970356 +1472.971720 +1473.971853 +1480.970547 +1481.071679 +1481.272878 +1481.373077 +1481.472311 +1481.473011 +1481.572844 +1481.973643 +1482.073843 +1482.173609 +1482.273210 +1482.472444 +1482.473076 +1482.573276 +1482.873942 +1482.973742 +1483.073575 +1483.273009 +1483.273475 +1483.373542 +1483.573508 +1483.773774 +1484.073574 +1484.173574 +1484.373074 +1484.373541 +1484.573740 +1484.673707 +1484.773773 +1485.372474 +1485.373007 +1485.473073 +1485.473573 +1485.573706 +1491.188952 +1491.306268 +1491.395745 +1491.575332 +1491.709331 +1491.749291 +1491.824016 +1491.889251 +1491.937169 +1492.022917 +1492.129777 +1492.262610 +1492.379527 +1492.414825 +1492.484022 +1492.613226 +1492.727978 +1492.789649 +1492.861711 +1492.889782 +1492.969136 +1493.090015 +1493.215090 +1493.254018 +1493.303935 +1493.448790 +1493.464640 +1493.567937 +1493.734770 +1493.791946 +1493.854583 +1493.905066 +1494.029342 +1494.112292 +1494.163807 +1494.249555 +1494.306997 +1494.407363 +1494.474030 +1494.516154 +1494.570933 +1494.651419 +1494.730273 +1494.773031 +1494.856347 +1494.899005 +1495.108029 +1495.160243 +1495.197972 +1495.440463 +1495.478358 +1495.573363 +1495.751851 +1495.782653 +1495.795907 +1495.868201 +1495.936732 +1495.951618 +1498.816683 +1505.971288 +1509.972083 +1515.970579 +1515.978271 +1516.272976 +1516.473608 +1516.573042 +1516.673408 +1516.773042 +1517.173241 +1517.174074 +1517.273108 +1517.673874 +1517.772475 +1517.772941 +1519.173472 +1519.374138 +1519.573805 +1519.674071 +1519.874005 +1519.972473 +1520.073438 +1520.373904 +1520.874103 +1520.974170 +1525.985221 +1526.037468 +1526.181158 +1526.214558 +1526.273032 +1526.412926 +1526.521018 +1526.596142 +1526.725080 +1526.826412 +1526.895210 +1526.958879 +1527.038400 +1527.110294 +1527.151753 +1527.255649 +1527.344793 +1527.396008 +1527.465073 +1527.554150 +1527.618119 +1527.677293 +1527.703667 +1527.756681 +1527.853151 +1527.901136 +1528.027443 +1528.064239 +1528.150453 +1528.193510 +1528.268069 +1528.348322 +1528.426210 +1528.493710 +1528.519151 +1528.566170 +1528.619783 +1528.710226 +1528.757479 +1528.807196 +1528.853449 +1528.867036 +1528.927442 +1528.944592 +1529.046723 +1529.122280 +1529.163239 +1529.243559 +1529.340695 +1529.389413 +1529.455414 +1529.500702 +1529.563572 +1529.587948 +1529.644990 +1529.695507 +1529.737365 +1529.748320 +1529.789313 +1529.908593 +1530.024377 +1530.200335 +1530.240295 +1530.346222 +1530.388879 +1530.498703 +1530.604696 +1530.632569 +1530.724177 +1530.754513 +1530.829971 +1530.889678 +1530.934600 +1530.965069 +1541.971918 +1544.971748 +1545.971847 +1550.861186 +1550.970810 +1551.072109 +1551.072775 +1551.473274 +1551.473973 +1551.574006 +1551.673773 +1551.774039 +1551.873939 +1552.273672 +1552.873639 +1553.173405 +1554.174170 +1555.674035 +1555.874068 +1555.972903 +1561.221283 +1561.280290 +1561.384719 +1561.524879 +1561.586950 +1561.659577 +1561.736500 +1561.780057 +1561.897006 +1562.036333 +1562.087649 +1562.175194 +1562.222181 +1562.497339 +1562.551351 +1562.654947 +1562.758011 +1562.794108 +1562.890578 +1562.954947 +1562.982886 +1563.028540 +1563.080055 +1563.169099 +1563.194707 +1563.265769 +1563.323112 +1563.346156 +1563.433501 +1563.521846 +1563.548986 +1563.605596 +1563.648886 +1563.679588 +1563.730904 +1563.778123 +1563.858509 +1563.910124 +1563.971962 +1564.009358 +1564.061007 +1564.138096 +1564.210224 +1564.241859 +1564.298302 +1564.298935 +1564.365668 +1564.412288 +1564.487147 +1564.555279 +1564.589844 +1564.700034 +1564.825974 +1564.915485 +1565.003330 +1565.174459 +1565.203130 +1565.248185 +1565.263869 +1565.323310 +1565.386913 +1565.458241 +1565.567365 +1565.644322 +1565.894738 +1565.934165 +1565.935131 +1575.972017 +1578.972613 +1578.972813 +1579.972046 +1579.972746 +1586.072906 +1586.173472 +1586.274071 +1586.374138 +1586.474338 +1586.574471 +1586.874370 +1586.974137 +1586.974470 +1587.074237 +1587.174470 +1587.374770 +1587.574503 +1587.673704 +1587.674137 +1587.674470 +1587.774336 +1587.873637 +1587.974136 +1588.074103 +1588.174203 +1588.274336 +1588.274602 +1588.473803 +1588.474336 +1588.574269 +1588.673603 +1588.773936 +1588.873736 +1589.173735 +1589.174068 +1589.374534 +1589.674567 +1590.473867 +1590.774666 +1590.974899 +1595.971564 +1595.985817 +1596.084185 +1596.220115 +1596.287115 +1596.355347 +1596.513222 +1596.669332 +1596.752283 +1596.795639 +1596.845256 +1596.909492 +1596.974827 +1597.085815 +1597.124477 +1597.203864 +1597.260474 +1597.495405 +1597.615985 +1597.651116 +1597.680387 +1597.742924 +1597.895638 +1597.981319 +1598.062171 +1598.115285 +1598.187513 +1598.234732 +1598.274359 +1598.285814 +1598.299767 +1598.353613 +1598.442790 +1598.492441 +1598.522977 +1598.557875 +1598.642291 +1598.683283 +1598.726540 +1598.863869 +1598.911222 +1598.977489 +1599.028937 +1599.072793 +1599.159573 +1599.230635 +1599.284415 +1599.390475 +1599.462237 +1599.571228 +1599.601664 +1599.679786 +1599.727571 +1599.772626 +1599.798200 +1599.852946 +1599.908090 +1600.069229 +1600.131533 +1600.204527 +1600.236362 +1600.277720 +1600.344154 +1600.404627 +1600.485845 +1600.539059 +1600.603095 +1600.648882 +1600.691406 +1600.724906 +1600.752911 +1600.792805 +1600.824839 +1600.864933 +1600.893670 +1600.923407 +1600.950147 +1602.573622 +1602.598730 +1611.972647 +1612.972579 +1613.972079 +1615.972743 +1620.972338 +1621.173470 +1621.273537 +1621.474036 +1621.673670 +1621.674103 +1621.874236 +1621.974235 +1622.074302 +1622.374402 +1622.474601 +1622.574568 +1622.674468 +1622.774434 +1622.973935 +1623.074434 +1623.474500 +1623.674567 +1623.774500 +1623.874234 +1624.073168 +1624.174433 +1624.474566 +1624.674433 +1624.773234 +1624.873400 +1625.074399 +1625.374598 +1625.574332 +1625.674332 +1625.874365 +1625.973965 +1625.974465 +1630.995139 +1631.459940 +1631.545721 +1631.658541 +1631.766733 +1631.996403 +1632.038794 +1632.120679 +1632.175424 +1632.230935 +1632.321045 +1632.412653 +1632.475457 +1632.574591 +1632.682417 +1632.765467 +1632.809090 +1632.846019 +1632.948683 +1632.975656 +1633.070029 +1633.124374 +1633.195336 +1633.209156 +1633.259772 +1633.315183 +1633.369928 +1633.488343 +1633.547018 +1633.610554 +1633.649482 +1633.721576 +1633.813751 +1633.890241 +1633.957007 +1633.985312 +1634.041556 +1634.111952 +1634.170727 +1634.227437 +1634.305758 +1634.349581 +1634.392804 +1634.433630 +1634.502361 +1634.618445 +1634.675755 +1634.847682 +1634.888974 +1634.949814 +1635.039357 +1635.076753 +1635.116580 +1635.160603 +1635.187476 +1635.269161 +1635.349014 +1635.392071 +1635.441754 +1635.512350 +1635.596833 +1635.629333 +1635.659470 +1635.817112 +1635.859803 +1635.911284 +1635.955773 +1645.971681 +1646.971780 +1647.971878 +1648.971977 +1650.971842 +1656.071937 +1656.072237 +1656.172403 +1656.372902 +1656.673069 +1656.773235 +1657.173334 +1657.373334 +1657.473301 +1657.573367 +1657.673534 +1657.773267 +1657.873400 +1658.073433 +1658.172834 +1658.473366 +1658.573433 +1658.672833 +1658.673400 +1658.773366 +1658.873399 +1659.073199 +1659.073466 +1659.373399 +1659.473266 +1659.673332 +1659.773232 +1659.873532 +1659.973398 +1660.073398 +1660.373365 +1660.473464 +1660.573398 +1660.773431 +1660.873531 +1660.973364 +1665.977089 +1666.162503 +1666.600231 +1666.738327 +1666.798799 +1666.890208 +1666.964667 +1667.081650 +1667.158939 +1667.258073 +1667.319811 +1667.384213 +1667.484247 +1667.557806 +1667.750547 +1667.799131 +1667.871725 +1667.932931 +1668.009021 +1668.038692 +1668.162434 +1668.202394 +1668.277286 +1668.321575 +1668.384812 +1668.453143 +1668.549447 +1668.602227 +1668.661768 +1668.730366 +1668.800029 +1668.871425 +1668.907855 +1668.934994 +1669.001827 +1669.071991 +1669.113616 +1669.144918 +1669.231398 +1669.290439 +1669.325870 +1669.387541 +1669.428900 +1669.469792 +1669.515247 +1669.574954 +1669.647748 +1669.709452 +1669.751877 +1669.833828 +1669.923705 +1669.986409 +1670.016478 +1670.088373 +1670.129066 +1670.188972 +1670.223471 +1670.285010 +1670.315379 +1670.358836 +1670.390537 +1670.437757 +1670.465895 +1670.526701 +1670.554906 +1670.600161 +1670.660767 +1670.691636 +1670.721906 +1670.753374 +1670.783611 +1670.809684 +1670.843084 +1670.874853 +1670.922838 +1682.972143 +1684.971941 +1691.072302 +1691.273101 +1691.372934 +1691.373367 +1691.373600 +1691.473134 +1691.774032 +1692.173999 +1692.274165 +1692.374265 +1692.673532 +1693.073665 +1693.073965 +1693.174064 +1693.573498 +1693.774497 +1694.374363 +1694.773297 +1694.974429 +1695.374262 +1695.674362 +1695.774095 +1695.973662 +1695.974128 +1695.974328 +1701.308522 +1701.413583 +1701.514183 +1701.591938 +1701.695801 +1701.756740 +1701.783080 +1701.900762 +1701.953842 +1702.175587 +1702.227069 +1702.256539 +1702.280815 +1702.347615 +1702.399963 +1702.627135 +1702.679283 +1702.742553 +1702.803559 +1702.891071 +1702.976685 +1703.136658 +1703.227667 +1703.283345 +1703.367594 +1703.420208 +1703.442985 +1703.484810 +1703.538356 +1703.594134 +1703.643451 +1703.695466 +1703.753108 +1703.842319 +1703.947780 +1703.981013 +1704.030697 +1704.092935 +1704.107187 +1704.148579 +1704.191802 +1704.232994 +1704.276318 +1704.305422 +1704.365329 +1704.423637 +1704.462065 +1704.558768 +1704.606720 +1704.634659 +1704.705888 +1704.779980 +1704.823603 +1704.866760 +1704.894632 +1704.922537 +1704.975118 +1705.005954 +1705.130762 +1705.145681 +1705.202857 +1705.304255 +1705.355504 +1705.383609 +1705.426899 +1705.456803 +1705.498927 +1705.541185 +1705.585474 +1705.652607 +1705.696563 +1705.741651 +1705.831627 +1705.877315 +1705.908584 +1716.972775 +1720.971273 +1720.971805 +1721.762847 +1725.972100 +1726.072133 +1726.373132 +1726.373931 +1726.674097 +1726.873465 +1727.073964 +1727.174563 +1727.673763 +1727.774130 +1727.774896 +1727.874596 +1727.974762 +1728.074695 +1728.174462 +1728.273596 +1728.274595 +1728.374662 +1728.574329 +1728.673330 +1728.774295 +1729.074062 +1729.274528 +1730.174027 +1730.174494 +1730.372928 +1730.674793 +1730.873993 +1730.974360 +1736.115780 +1736.170758 +1736.341487 +1736.445316 +1736.541021 +1736.694034 +1736.728566 +1736.794234 +1736.980747 +1737.056505 +1737.148146 +1737.160367 +1737.215346 +1737.304323 +1737.378083 +1737.469791 +1737.561965 +1737.645748 +1737.729031 +1737.783643 +1737.837922 +1737.898562 +1737.986507 +1738.026767 +1738.102291 +1738.180480 +1738.206054 +1738.289437 +1738.329897 +1738.397695 +1738.459434 +1738.492001 +1738.543117 +1738.634592 +1738.664961 +1738.704622 +1738.772320 +1738.800159 +1738.849377 +1738.923303 +1738.991335 +1739.053705 +1739.100525 +1739.142616 +1739.194731 +1739.236756 +1739.281078 +1739.349543 +1739.431594 +1739.504088 +1739.563295 +1739.609083 +1739.667291 +1739.717508 +1739.771320 +1739.828064 +1739.880544 +1739.907517 +1739.945479 +1740.014111 +1740.056135 +1740.096728 +1740.126731 +1740.165226 +1740.216741 +1740.260864 +1740.321636 +1740.348976 +1740.409315 +1740.433757 +1740.514643 +1740.544047 +1740.600590 +1740.630694 +1740.681310 +1740.738253 +1740.770587 +1740.796994 +1740.859032 +1740.905885 +1740.962395 +1742.721967 +1742.747575 +1750.971975 +1752.973305 +1755.973202 +1760.978192 +1761.374596 +1761.474163 +1761.574495 +1762.474694 +1762.674328 +1762.674694 +1762.874894 +1763.774493 +1764.374426 +1764.374659 +1764.874592 +1764.974659 +1765.175025 +1765.875091 +1770.987240 +1771.139421 +1771.261499 +1771.453939 +1771.565827 +1771.672521 +1771.717309 +1771.827366 +1771.899727 +1772.015344 +1772.049543 +1772.152007 +1772.216376 +1772.290136 +1772.375750 +1772.451241 +1772.504654 +1772.587505 +1772.653206 +1772.740285 +1772.783675 +1772.847578 +1772.887438 +1772.938620 +1773.014677 +1773.055037 +1773.163761 +1773.187737 +1773.247711 +1773.275882 +1773.289935 +1773.398693 +1773.454237 +1773.507717 +1773.537620 +1773.608616 +1773.665093 +1773.733524 +1773.774616 +1773.832092 +1773.873584 +1773.931160 +1774.019971 +1774.061563 +1774.202588 +1774.232791 +1774.272784 +1774.311546 +1774.383574 +1774.437986 +1774.467123 +1774.509581 +1774.565924 +1774.638885 +1774.712744 +1774.743813 +1774.773716 +1774.818072 +1774.843313 +1774.893829 +1774.908481 +1774.937486 +1774.979677 +1774.998058 +1775.071851 +1775.114009 +1775.162660 +1775.195627 +1775.239717 +1775.270785 +1775.324998 +1775.351205 +1775.382740 +1775.412976 +1775.475214 +1775.519437 +1775.538551 +1775.552737 +1775.600888 +1775.618404 +1775.670152 +1775.697791 +1775.725797 +1775.757232 +1775.804518 +1775.832257 +1775.900155 +1775.944777 +1786.972705 +1786.973171 +1787.973570 +1790.973667 +1795.971298 +1795.972696 +1796.173695 +1796.174128 +1796.274527 +1796.374827 +1796.574960 +1796.675026 +1796.774926 +1796.874893 +1797.074593 +1797.175093 +1797.275126 +1797.475126 +1797.675025 +1797.774959 +1797.975292 +1798.175358 +1798.275358 +1798.574692 +1798.575091 +1798.876390 +1799.074591 +1799.075191 +1799.275423 +1799.375523 +1799.473259 +1799.573425 +1800.175189 +1800.374723 +1800.375056 +1800.375389 +1800.475222 +1800.575389 +1800.674656 +1800.674956 +1800.775156 +1800.875189 +1800.975155 +1805.986406 +1806.038487 +1806.255337 +1806.687038 +1806.793664 +1806.831393 +1806.906485 +1806.967291 +1807.053238 +1807.109681 +1807.190734 +1807.249408 +1807.292165 +1807.347443 +1807.388369 +1807.458266 +1807.501056 +1807.533091 +1807.630693 +1807.671019 +1807.747543 +1807.863893 +1807.939517 +1807.986604 +1808.025964 +1808.097759 +1808.186737 +1808.248974 +1808.367722 +1808.439983 +1808.496127 +1808.589500 +1808.630159 +1808.669020 +1808.709813 +1808.768188 +1808.811245 +1808.880076 +1808.937452 +1808.981741 +1809.038118 +1809.097858 +1809.163126 +1809.203552 +1809.231624 +1809.256732 +1809.328560 +1809.388800 +1809.389799 +1809.426429 +1809.485736 +1809.537751 +1809.580941 +1809.622333 +1809.666855 +1809.782406 +1809.906349 +1809.938883 +1809.980508 +1810.010344 +1810.070984 +1810.109512 +1810.157264 +1810.197590 +1810.240381 +1810.240847 +1810.323198 +1810.413707 +1810.442479 +1810.506015 +1810.577244 +1810.624330 +1810.638249 +1810.669918 +1810.708679 +1810.741180 +1810.834120 +1810.903817 +1810.937083 +1824.973433 +1831.073627 +1831.174060 +1831.274459 +1831.975191 +1832.173992 +1832.174358 +1832.874358 +1833.175256 +1833.974190 +1834.675122 +1834.875188 +1834.875488 +1835.573489 +1835.574655 +1835.674987 +1835.774255 +1835.774921 +1835.975320 +1840.986837 +1841.145811 +1841.214509 +1841.347776 +1841.455734 +1841.657332 +1841.747675 +1841.815408 +1841.897758 +1841.976413 +1842.015174 +1842.092230 +1842.155700 +1842.198890 +1842.343612 +1842.402986 +1842.447941 +1842.472283 +1842.524631 +1842.584171 +1842.614275 +1842.733022 +1842.811244 +1842.835020 +1842.927095 +1842.974714 +1843.024963 +1843.070551 +1843.134287 +1843.180441 +1843.246875 +1843.288833 +1843.342279 +1843.410577 +1843.479475 +1843.519369 +1843.597490 +1843.660727 +1843.717404 +1843.744643 +1843.805549 +1843.848006 +1843.875712 +1843.936085 +1843.970117 +1844.022798 +1844.066621 +1844.098555 +1844.141246 +1844.192262 +1844.233554 +1844.306980 +1844.334819 +1844.368052 +1844.439647 +1844.501452 +1844.593993 +1844.621266 +1844.655997 +1844.711409 +1844.790563 +1844.833553 +1844.881971 +1844.928358 +1845.007379 +1845.032620 +1845.074112 +1845.119167 +1845.193626 +1845.296223 +1845.351202 +1845.381604 +1845.436882 +1845.485734 +1845.529956 +1845.571548 +1845.595957 +1845.639513 +1845.679207 +1845.709643 +1845.772713 +1845.817601 +1845.866852 +1845.915237 +1845.931188 +1845.932420 +1857.973234 +1865.972293 +1865.972593 +1866.072426 +1866.274024 +1866.474424 +1866.774690 +1866.774956 +1866.873258 +1867.274856 +1867.374889 +1867.474956 +1867.574789 +1867.773424 +1867.874689 +1868.374322 +1868.674988 +1869.174355 +1869.274121 +1869.374920 +1869.574920 +1869.674787 +1869.874587 +1869.974920 +1870.074853 +1870.174853 +1870.474953 +1870.674486 +1870.674886 +1870.874952 +1870.974919 +1875.987268 +1876.085137 +1876.267421 +1876.347141 +1876.484004 +1876.534054 +1876.751037 +1876.798656 +1876.909412 +1876.996957 +1877.074846 +1877.132322 +1877.286867 +1877.398789 +1877.451303 +1877.524130 +1877.601719 +1877.732654 +1877.816137 +1877.882438 +1877.920566 +1878.025994 +1878.089797 +1878.127060 +1878.185068 +1878.228458 +1878.286400 +1878.363323 +1878.434552 +1878.500419 +1878.564355 +1878.604981 +1878.639247 +1878.678641 +1878.723329 +1878.756097 +1878.783669 +1878.842011 +1878.917535 +1878.974878 +1879.073745 +1879.119200 +1879.188131 +1879.230855 +1879.276442 +1879.323628 +1879.353698 +1879.425193 +1879.460658 +1879.530288 +1879.620065 +1879.649236 +1879.708843 +1879.742143 +1879.821031 +1879.834550 +1879.902649 +1879.931054 +1879.960990 +1880.015902 +1880.037614 +1880.095356 +1880.155129 +1880.202049 +1880.246704 +1880.288030 +1880.304313 +1880.348503 +1880.405279 +1880.438279 +1880.501150 +1880.518666 +1880.558992 +1880.604180 +1880.631952 +1880.660623 +1880.707277 +1880.709907 +1880.738812 +1880.787263 +1880.817300 +1880.861989 +1880.908142 +1892.973065 +1893.972532 +1894.972764 +1895.972663 +1895.972962 +1900.971759 +1901.073024 +1901.173457 +1901.273723 +1901.473590 +1901.474222 +1901.674222 +1902.074555 +1902.274521 +1902.674621 +1902.874487 +1902.974487 +1903.274587 +1903.474487 +1903.574487 +1903.674520 +1903.774453 +1903.874553 +1903.974453 +1904.074486 +1904.774419 +1905.074552 +1905.274418 +1905.374418 +1905.574585 +1905.974551 +1911.132288 +1911.284968 +1911.354765 +1911.544942 +1911.630922 +1911.698721 +1911.827925 +1911.854798 +1911.966619 +1912.021831 +1912.095990 +1912.182803 +1912.310742 +1912.390395 +1912.438414 +1912.603349 +1912.677508 +1912.748204 +1912.830188 +1912.896289 +1912.924427 +1912.991161 +1913.058160 +1913.177308 +1913.202449 +1913.244374 +1913.337547 +1913.367284 +1913.445805 +1913.506012 +1913.560258 +1913.628156 +1913.683434 +1913.757727 +1913.827756 +1913.863654 +1913.993124 +1914.067750 +1914.139145 +1914.195655 +1914.225925 +1914.256194 +1914.330253 +1914.387363 +1914.414203 +1914.471112 +1914.518831 +1914.560623 +1914.605345 +1914.635182 +1914.665285 +1914.709407 +1914.769680 +1914.814935 +1914.908741 +1914.940276 +1914.994156 +1915.037978 +1915.083699 +1915.102447 +1915.159190 +1915.189393 +1915.237012 +1915.279403 +1915.327588 +1915.357459 +1915.386563 +1915.477105 +1915.547402 +1915.578471 +1915.607209 +1915.636279 +1915.666549 +1915.712503 +1915.740941 +1915.798584 +1915.824358 +1915.885264 +1915.914368 +1915.941973 +1935.971257 +1936.072589 +1936.373055 +1936.373455 +1936.373755 +1936.573921 +1936.674087 +1936.774021 +1936.874087 +1937.074253 +1937.473620 +1937.674219 +1937.773986 +1937.874086 +1937.974153 +1938.172654 +1938.173153 +1938.273153 +1938.273853 +1938.373653 +1939.072753 +1939.173019 +1939.173652 +1939.274051 +1939.673751 +1939.974151 +1940.073451 +1940.274150 +1940.373717 +1940.574283 +1940.674117 +1940.771386 +1940.773351 +1940.974183 +1945.971780 +1945.978107 +1945.992027 +1946.038946 +1946.159725 +1946.226126 +1946.499485 +1946.593225 +1946.687431 +1946.750001 +1946.845672 +1946.999019 +1947.084833 +1947.148869 +1947.199618 +1947.256394 +1947.367883 +1947.460457 +1947.513004 +1947.549801 +1947.637380 +1947.754496 +1947.827389 +1947.855761 +1947.944672 +1948.008442 +1948.095022 +1948.138411 +1948.190626 +1948.261488 +1948.326024 +1948.366616 +1948.421961 +1948.494322 +1948.568514 +1948.634482 +1948.675008 +1948.704578 +1948.766283 +1948.822693 +1948.874375 +1948.924058 +1948.964485 +1949.002313 +1949.031018 +1949.086496 +1949.139842 +1949.191524 +1949.217964 +1949.272909 +1949.300082 +1949.345070 +1949.403778 +1949.457125 +1949.499649 +1949.557957 +1949.586262 +1949.631250 +1949.661087 +1949.703478 +1949.818763 +1949.857524 +1949.871577 +1949.937211 +1949.975806 +1950.033415 +1950.062519 +1950.090657 +1950.135912 +1950.272309 +1950.329085 +1950.384929 +1950.444436 +1950.493221 +1950.520660 +1950.546667 +1950.585462 +1950.628286 +1950.670377 +1950.716231 +1950.760154 +1950.875805 +1950.945202 +1962.971164 +1962.972030 +1963.740427 +1963.972129 +1964.808292 +1964.856477 +1964.885181 +1964.970995 +1971.573586 +1971.673919 +1971.773986 +1971.873952 +1972.673885 +1972.972919 +1973.073718 +1973.373917 +1973.473851 +1973.672918 +1973.673218 +1973.872885 +1974.273517 +1974.373317 +1974.373650 +1974.573816 +1974.673550 +1974.873649 +1974.973283 +1975.073017 +1975.074049 +1975.173916 +1975.573449 +1975.573682 +1975.773782 +1980.984266 +1980.984499 +1981.023127 +1981.184099 +1981.356593 +1981.370446 +1981.473743 +1981.546237 +1981.557459 +1981.606110 +1981.668581 +1981.746337 +1981.848235 +1981.931584 +1982.016832 +1982.074941 +1982.170812 +1982.218497 +1982.293023 +1982.437178 +1982.567581 +1982.642340 +1982.719496 +1982.772210 +1982.821360 +1982.877271 +1982.949898 +1983.006076 +1983.084630 +1983.119562 +1983.189525 +1983.247467 +1983.287194 +1983.368679 +1983.473641 +1983.501879 +1983.584730 +1983.638143 +1983.679302 +1983.707374 +1983.749831 +1983.818596 +1983.862085 +1983.921259 +1983.970843 +1984.010071 +1984.086661 +1984.135878 +1984.246700 +1984.334146 +1984.337676 +1984.388325 +1984.401346 +1984.492887 +1984.520526 +1984.602211 +1984.637343 +1984.744935 +1984.832914 +1984.860652 +1984.895384 +1984.953293 +1985.076903 +1985.113566 +1985.186027 +1985.215431 +1985.258088 +1985.300146 +1985.339873 +1985.422224 +1985.492920 +1985.518960 +1985.557422 +1985.579400 +1985.631148 +1985.661817 +1985.687392 +1985.765214 +1985.781298 +1985.816462 +1985.864781 +1985.924155 +1985.940971 +1997.971762 +1998.972493 +2005.972153 +2006.072419 +2006.374117 +2006.574250 +2006.673285 +2006.673584 +2006.673884 +2006.773384 +2006.874050 +2007.173950 +2007.174583 +2007.474250 +2007.574116 +2007.874016 +2008.074615 +2008.573849 +2008.574315 +2008.674049 +2008.774115 +2008.774548 +2008.874581 +2008.974381 +2009.374148 +2009.674913 +2010.074480 +2010.274513 +2010.574713 +2010.774779 +2016.069346 +2016.374241 +2016.398716 +2016.438709 +2016.525023 +2016.653328 +2016.722525 +2016.799615 +2016.886395 +2016.943870 +2017.033414 +2017.138675 +2017.214500 +2017.320860 +2017.384596 +2017.466614 +2017.588692 +2017.637210 +2017.704409 +2017.769777 +2017.834912 +2017.875505 +2017.943869 +2017.988125 +2018.038308 +2018.126520 +2018.157855 +2018.184595 +2018.211435 +2018.280799 +2018.326353 +2018.408638 +2018.440672 +2018.491055 +2018.582930 +2018.622890 +2018.642936 +2018.679666 +2018.733979 +2018.776469 +2018.818161 +2018.878667 +2019.002077 +2019.039639 +2019.095650 +2019.121258 +2019.162550 +2019.238840 +2019.267911 +2019.294584 +2019.334977 +2019.408370 +2019.462483 +2019.504973 +2019.622589 +2019.640205 +2019.700444 +2019.784760 +2019.821523 +2019.888490 +2019.929848 +2019.967111 +2020.050394 +2020.094983 +2020.155389 +2020.182262 +2020.232112 +2020.292685 +2020.368010 +2020.411799 +2020.452791 +2020.478399 +2020.536141 +2020.588655 +2020.658985 +2020.691353 +2020.733943 +2020.762515 +2020.822222 +2020.874103 +2020.940403 +2029.728839 +2029.735399 +2029.744557 +2029.757810 +2029.771197 +2033.973191 +2034.973290 +2040.972385 +2041.073716 +2041.174416 +2041.374382 +2041.375048 +2041.574748 +2041.575348 +2042.175147 +2042.575646 +2043.272715 +2043.275179 +2043.675246 +2043.975112 +2044.275545 +2044.575611 +2044.675811 +2044.775078 +2044.874778 +2044.875544 +2044.975144 +2045.075111 +2045.175744 +2045.275011 +2045.374811 +2045.375577 +2045.475477 +2045.875010 +2045.875377 +2050.971675 +2050.987093 +2051.005675 +2051.119694 +2051.474206 +2051.522890 +2051.617529 +2051.698581 +2051.755324 +2051.841571 +2051.968111 +2052.087059 +2052.124321 +2052.189689 +2052.301477 +2052.403609 +2052.434511 +2052.522423 +2052.581264 +2052.628650 +2052.668177 +2052.730215 +2052.798613 +2052.876868 +2052.927850 +2052.980531 +2053.031813 +2053.127983 +2053.197947 +2053.216162 +2053.306838 +2053.348396 +2053.414330 +2053.448263 +2053.565013 +2053.605705 +2053.672805 +2053.711033 +2053.807170 +2053.863381 +2053.891786 +2053.959251 +2053.985825 +2054.028715 +2054.069841 +2054.094416 +2054.151326 +2054.205904 +2054.248728 +2054.318492 +2054.360483 +2054.402041 +2054.470007 +2054.513696 +2054.584392 +2054.618392 +2054.682727 +2054.728048 +2054.787156 +2054.840769 +2054.861382 +2054.886357 +2054.949160 +2054.993449 +2055.009866 +2055.049793 +2055.108268 +2055.137672 +2055.148927 +2055.225084 +2055.307835 +2055.342034 +2055.415760 +2055.466909 +2055.498977 +2055.526582 +2055.564744 +2055.601441 +2055.667208 +2055.695880 +2055.735773 +2055.788387 +2055.833076 +2055.846695 +2055.883259 +2055.916459 +2055.917325 +2066.974024 +2070.254973 +2074.835887 +2075.101621 +2075.150539 +2076.173548 +2076.174081 +2076.475313 +2076.575346 +2076.675479 +2076.775279 +2076.775512 +2076.975778 +2077.175479 +2077.374046 +2077.374546 +2077.474579 +2077.475045 +2077.674379 +2077.674912 +2077.675445 +2077.774879 +2077.874379 +2077.874812 +2077.875445 +2078.075444 +2078.075711 +2078.275844 +2078.475277 +2078.875244 +2079.375110 +2079.875642 +2079.974843 +2079.975309 +2080.075609 +2080.574276 +2080.574809 +2080.575475 +2080.675675 +2080.875408 +2085.972473 +2086.037574 +2086.114963 +2086.138906 +2086.190255 +2086.239938 +2086.310135 +2086.372839 +2086.410568 +2086.473172 +2086.579132 +2086.782096 +2086.806838 +2086.842568 +2086.975136 +2087.024320 +2087.079898 +2087.181130 +2087.232412 +2087.344666 +2087.381795 +2087.434742 +2087.495415 +2087.609934 +2087.766943 +2087.792651 +2087.820356 +2087.894083 +2087.947629 +2088.002141 +2088.092084 +2088.140602 +2088.206270 +2088.309933 +2088.385124 +2088.454954 +2088.511764 +2088.627615 +2088.671271 +2088.839003 +2088.864478 +2088.909366 +2088.990885 +2089.026083 +2089.089086 +2089.127881 +2089.142266 +2089.176066 +2089.216659 +2089.294647 +2089.324084 +2089.367441 +2089.417691 +2089.473402 +2089.518390 +2089.578963 +2089.639502 +2089.681060 +2089.751357 +2089.794347 +2089.849725 +2089.894114 +2089.936904 +2090.012029 +2090.051323 +2090.097710 +2090.175632 +2090.176931 +2090.228246 +2090.244330 +2090.304803 +2090.345728 +2090.376298 +2090.437270 +2090.477430 +2090.523484 +2090.574200 +2090.659481 +2090.659781 +2090.725115 +2090.782791 +2090.844696 +2090.845228 +2090.921485 +2090.954452 +2105.974084 +2111.073580 +2111.375045 +2111.475078 +2111.575178 +2111.675178 +2111.775311 +2112.075677 +2112.175710 +2112.275776 +2112.574977 +2112.875243 +2113.074877 +2113.274776 +2113.275143 +2113.475575 +2113.575609 +2114.074809 +2114.375475 +2114.674609 +2114.675041 +2114.675541 +2114.774742 +2114.975241 +2115.075041 +2115.474708 +2115.575740 +2115.874940 +2121.169607 +2121.216727 +2121.383560 +2121.436706 +2121.530879 +2121.629780 +2121.686390 +2121.812164 +2121.910299 +2121.986090 +2122.038770 +2122.142633 +2122.307934 +2122.332676 +2122.377664 +2122.468640 +2122.581594 +2122.689153 +2122.762379 +2122.823185 +2122.866575 +2122.923918 +2122.989552 +2123.079828 +2123.159648 +2123.234007 +2123.296611 +2123.389452 +2123.455186 +2123.529911 +2123.576997 +2123.629778 +2123.734639 +2123.768173 +2123.840633 +2123.886454 +2123.927713 +2123.982824 +2124.038335 +2124.067639 +2124.134772 +2124.310430 +2124.353853 +2124.384955 +2124.452454 +2124.499407 +2124.524182 +2124.558448 +2124.587519 +2124.647592 +2124.692014 +2124.731142 +2124.782524 +2124.799773 +2124.841032 +2124.912194 +2124.954885 +2124.986020 +2125.067439 +2125.103636 +2125.147026 +2125.211661 +2125.253819 +2125.341964 +2125.413126 +2125.445327 +2125.488317 +2125.525647 +2125.570169 +2125.615623 +2125.689216 +2125.716256 +2125.766772 +2125.854351 +2125.882023 +2125.913925 +2135.972889 +2135.979449 +2136.973021 +2137.973253 +2146.173478 +2146.374011 +2146.573811 +2146.574210 +2146.674410 +2146.774377 +2146.874410 +2148.473842 +2148.774508 +2149.773907 +2149.774374 +2149.873974 +2149.974640 +2150.074540 +2150.174273 +2150.274506 +2150.574040 +2150.574373 +2150.674473 +2155.986355 +2156.005803 +2156.022453 +2156.168173 +2156.302705 +2156.383325 +2156.437304 +2156.533108 +2156.625982 +2156.683757 +2156.777031 +2156.861380 +2156.944863 +2157.009298 +2157.159514 +2157.241999 +2157.338569 +2157.364975 +2157.414426 +2157.578262 +2157.736071 +2157.790949 +2157.841432 +2157.928112 +2157.999607 +2158.073333 +2158.131575 +2158.193346 +2158.274232 +2158.341565 +2158.437935 +2158.508797 +2158.546126 +2158.603536 +2158.604668 +2158.690915 +2158.708764 +2158.771201 +2158.833439 +2158.892047 +2158.946825 +2159.044195 +2159.122216 +2159.149989 +2159.196309 +2159.246659 +2159.312426 +2159.336902 +2159.404767 +2159.442696 +2159.507631 +2159.519885 +2159.547557 +2159.603168 +2159.660411 +2159.735935 +2159.764573 +2159.791513 +2159.877127 +2159.906098 +2159.944360 +2159.986851 +2160.018852 +2160.020084 +2160.135735 +2160.150387 +2160.180091 +2160.211659 +2160.277427 +2160.317720 +2160.381056 +2160.438898 +2160.573331 +2160.607197 +2160.651652 +2160.680590 +2160.742961 +2160.775129 +2160.834702 +2160.878758 +2160.911259 +2160.924279 +2160.957546 +2170.971122 +2172.971154 +2172.971520 +2174.971585 +2180.969847 +2181.372977 +2181.472610 +2181.473143 +2181.572644 +2181.772777 +2181.773276 +2181.872910 +2181.972343 +2182.173043 +2182.472443 +2183.072809 +2183.572575 +2183.972341 +2183.973074 +2184.671608 +2184.672174 +2184.772740 +2184.972540 +2184.972907 +2185.073140 +2185.173206 +2185.373672 +2185.573372 +2185.871507 +2185.973239 +2186.700910 +2186.720124 +2190.983989 +2191.176896 +2191.283789 +2191.384189 +2191.525414 +2191.576829 +2191.728411 +2191.784255 +2191.808697 +2191.888917 +2191.957582 +2192.131507 +2192.206199 +2192.266739 +2192.352553 +2192.406332 +2192.467504 +2192.543428 +2192.677627 +2192.804034 +2192.856249 +2192.917354 +2192.979425 +2193.125546 +2193.168136 +2193.225279 +2193.250554 +2193.292046 +2193.332971 +2193.396508 +2193.439365 +2193.507164 +2193.570933 +2193.622482 +2193.672598 +2193.715389 +2193.774829 +2193.854150 +2193.884619 +2193.964606 +2194.015821 +2194.059511 +2194.146291 +2194.186284 +2194.251818 +2194.318885 +2194.359344 +2194.377359 +2194.433536 +2194.464139 +2194.523247 +2194.552218 +2194.609394 +2194.637632 +2194.695408 +2194.741894 +2194.785917 +2194.830339 +2194.877092 +2194.939097 +2194.968068 +2195.021381 +2195.061142 +2195.105264 +2195.144858 +2195.206096 +2195.233902 +2195.276226 +2195.315920 +2195.374594 +2195.449087 +2195.506263 +2195.546289 +2195.583519 +2195.694774 +2195.801201 +2195.842693 +2195.871630 +2195.929206 +2206.704686 +2207.700756 +2207.707882 +2209.655599 +2211.705447 +2212.026126 +2216.701180 +2216.901679 +2217.702478 +2218.402543 +2218.502610 +2219.002543 +2220.702841 +2226.706531 +2226.887383 +2226.950154 +2227.130374 +2227.205132 +2227.404399 +2227.455415 +2227.552951 +2227.619184 +2227.682821 +2227.870300 +2227.927576 +2227.998371 +2228.036367 +2228.101701 +2228.126476 +2228.170999 +2228.219417 +2228.245424 +2228.284785 +2228.331571 +2228.406163 +2228.445957 +2228.512790 +2228.645191 +2228.721481 +2228.744724 +2228.797705 +2228.825477 +2228.852949 +2228.904831 +2228.956479 +2228.958943 +2229.014687 +2229.070065 +2229.112623 +2229.140428 +2229.154015 +2229.195673 +2229.235267 +2229.304364 +2229.345123 +2229.356112 +2229.380754 +2229.435733 +2229.490777 +2229.513821 +2229.538630 +2229.594707 +2229.620081 +2229.650717 +2229.652183 +2229.679222 +2229.708160 +2229.793508 +2229.844124 +2229.856678 +2229.894107 +2229.925875 +2229.952449 +2229.980620 +2229.995073 +2230.009725 +2230.022545 +2230.052082 +2230.068566 +2230.081686 +2230.137530 +2230.166368 +2230.194906 +2230.222478 +2230.268033 +2230.285948 +2230.324776 +2230.356211 +2230.419714 +2230.452648 +2230.481819 +2230.513354 +2230.556311 +2230.571562 +2230.586347 +2230.603430 +2230.633167 +2230.660040 +2230.689211 +2230.736797 +2230.812155 +2230.829704 +2230.842491 +2230.862038 +2230.873194 +2230.904562 +2230.967732 +2230.998002 +2231.029071 +2231.075258 +2231.076224 +2231.092108 +2231.121079 +2231.138828 +2231.153580 +2231.227639 +2231.270696 +2231.314818 +2231.331668 +2231.360506 +2231.391342 +2231.403996 +2231.435964 +2231.480919 +2231.512321 +2231.542291 +2231.559640 +2231.576689 +2231.605427 +2231.632833 +2231.651148 +2231.667199 +2231.698201 +2234.184179 +2234.201662 +2234.230799 +2241.707548 +2242.708480 +2244.702417 +2245.708643 +2246.702415 +2246.702782 +2251.803576 +2252.004241 +2252.704507 +2252.904640 +2253.004074 +2253.403907 +2253.804806 +2254.004006 +2254.004406 +2254.203906 +2255.003406 +2255.304038 +2255.604837 +2256.003671 +2256.103372 +2256.106801 +2256.203871 +2256.404703 +2256.504803 +2256.604303 +2261.708527 +2261.989313 +2262.135367 +2262.349286 +2262.371963 +2262.481753 +2262.533102 +2262.546555 +2262.595806 +2262.737198 +2262.805663 +2262.840494 +2262.937431 +2262.986015 +2263.025975 +2263.117817 +2263.139895 +2263.198170 +2263.289911 +2263.326574 +2263.425709 +2263.485715 +2263.591642 +2263.618049 +2263.696637 +2263.737097 +2263.790876 +2263.829804 +2263.867933 +2263.892774 +2263.894573 +2263.959807 +2264.023477 +2264.095405 +2264.122811 +2264.167433 +2264.192008 +2264.246887 +2264.274892 +2264.340693 +2264.370063 +2264.423743 +2264.467033 +2264.493839 +2264.535997 +2264.562937 +2264.617948 +2264.647752 +2264.687579 +2264.716683 +2264.755977 +2264.812054 +2264.855677 +2264.882517 +2264.922677 +2264.950649 +2264.979653 +2265.039260 +2265.079020 +2265.108258 +2265.123109 +2265.166366 +2265.196436 +2265.236030 +2265.297202 +2265.312320 +2265.338061 +2265.366832 +2265.397402 +2265.450748 +2265.480019 +2265.509389 +2265.553046 +2265.582683 +2265.625407 +2265.653578 +2265.682749 +2265.712220 +2265.758540 +2265.783748 +2265.784614 +2265.837561 +2265.853112 +2265.879752 +2265.907125 +2265.964401 +2265.995902 +2266.010221 +2266.025140 +2266.076688 +2266.106325 +2266.149449 +2266.166665 +2266.247884 +2266.263435 +2266.291340 +2266.318446 +2266.377021 +2266.415716 +2266.451979 +2266.467997 +2266.482349 +2266.508489 +2266.536694 +2266.562136 +2266.591540 +2266.616515 +2266.631899 +2266.657906 +2266.675356 +2266.691473 +2277.704216 +2278.709776 +2281.704511 +2281.711671 +2286.703874 +2286.804839 +2286.905272 +2287.205605 +2287.305771 +2287.405771 +2287.605871 +2287.805771 +2287.905837 +2288.005904 +2288.105770 +2288.205870 +2288.305903 +2288.405903 +2288.605870 +2288.705870 +2288.806003 +2289.005969 +2289.105536 +2289.205470 +2289.405969 +2289.606002 +2289.905968 +2290.006002 +2290.106068 +2290.306001 +2290.506101 +2290.605934 +2290.706101 +2290.905934 +2291.005934 +2291.205934 +2291.306067 +2291.406167 +2291.606033 +2291.706000 +2296.709858 +2296.851349 +2297.082718 +2297.182318 +2297.295971 +2297.365701 +2297.541492 +2297.551349 +2297.613653 +2297.708758 +2297.771961 +2297.797469 +2297.911755 +2297.968065 +2298.034199 +2298.109290 +2298.122477 +2298.160839 +2298.183849 +2298.186213 +2298.307692 +2298.372593 +2298.396103 +2298.482950 +2298.535763 +2298.604528 +2298.626439 +2298.673992 +2298.761970 +2298.784548 +2298.851181 +2298.896469 +2298.946785 +2298.983382 +2299.026106 +2299.060705 +2299.111021 +2299.136262 +2299.180018 +2299.214884 +2299.284181 +2299.313385 +2299.336628 +2299.373225 +2299.399332 +2299.434031 +2299.474457 +2299.500731 +2299.541390 +2299.554244 +2299.579618 +2299.601263 +2299.624440 +2299.650514 +2299.676521 +2299.722142 +2299.744354 +2299.772659 +2299.827104 +2299.867897 +2299.892672 +2299.918812 +2299.954310 +2299.982915 +2300.009988 +2300.026072 +2300.060670 +2300.097267 +2300.125306 +2300.151712 +2300.188542 +2300.267996 +2300.296301 +2300.334996 +2300.375455 +2300.439658 +2300.576121 +2300.603926 +2300.622641 +2300.648116 +2300.700696 +2300.774256 +2300.788475 +2300.814749 +2300.830433 +2300.883180 +2300.886011 +2300.900696 +2300.924539 +2300.926104 +2300.941522 +2300.954509 +2300.967030 +2301.008621 +2301.037026 +2301.064865 +2301.079584 +2301.111552 +2301.127136 +2301.141122 +2301.155041 +2301.193869 +2301.208521 +2301.252444 +2301.278285 +2301.315214 +2301.384745 +2301.398464 +2301.425837 +2301.468961 +2301.501162 +2301.513949 +2301.514515 +2301.529833 +2301.630066 +2301.651478 +2301.675021 +2311.709776 +2312.710308 +2313.704946 +2314.704945 +2321.704238 +2321.904904 +2322.006036 +2322.206169 +2322.306269 +2322.406302 +2322.506402 +2322.705836 +2322.706302 +2322.806302 +2322.906302 +2323.006435 +2323.106335 +2323.206368 +2323.305302 +2323.406168 +2323.506235 +2323.606268 +2323.705968 +2323.806367 +2323.906434 +2324.006334 +2324.106467 +2324.206434 +2324.406300 +2324.505767 +2324.605601 +2324.906000 +2324.906533 +2325.106033 +2325.106466 +2325.305966 +2325.405633 +2325.406099 +2325.506099 +2325.606166 +2325.806032 +2325.906332 +2326.106265 +2331.708391 +2331.803962 +2331.868231 +2331.961537 +2332.130868 +2332.131967 +2332.167331 +2332.337894 +2332.444154 +2332.494104 +2332.531534 +2332.584314 +2332.608457 +2332.714617 +2332.750381 +2332.790141 +2332.823741 +2332.875556 +2332.946984 +2332.977853 +2333.031300 +2333.069428 +2333.117647 +2333.154910 +2333.191440 +2333.232499 +2333.335928 +2333.374923 +2333.454709 +2333.455708 +2333.481116 +2333.516980 +2333.605459 +2333.620543 +2333.670960 +2333.723574 +2333.750247 +2333.790274 +2333.828535 +2333.908422 +2333.919577 +2333.945485 +2333.986078 +2334.059770 +2334.084313 +2334.140723 +2334.206091 +2334.247516 +2334.302794 +2334.342587 +2334.396766 +2334.430433 +2334.481715 +2334.543187 +2334.559337 +2334.610253 +2334.638758 +2334.651745 +2334.688574 +2334.744252 +2334.790705 +2334.818311 +2334.869493 +2334.889273 +2334.914548 +2334.940056 +2334.993103 +2335.037525 +2335.039823 +2335.053010 +2335.109087 +2335.124005 +2335.166496 +2335.181581 +2335.209553 +2335.251544 +2335.266329 +2335.310885 +2335.339057 +2335.354141 +2335.381814 +2335.408154 +2335.454008 +2335.479916 +2335.525070 +2335.555906 +2335.581214 +2335.597265 +2335.626336 +2335.681847 +2335.723871 +2335.741420 +2335.768460 +2335.816012 +2335.844917 +2335.874287 +2335.891370 +2335.904690 +2335.932196 +2335.962366 +2335.978317 +2335.993402 +2336.007721 +2336.021074 +2336.052409 +2336.079615 +2336.139589 +2336.156771 +2336.171357 +2336.189272 +2336.217511 +2336.234827 +2336.261100 +2336.288872 +2336.308586 +2336.336458 +2336.352076 +2336.369059 +2336.397131 +2336.425169 +2336.472922 +2336.488506 +2336.507187 +2336.532062 +2336.549445 +2336.576485 +2336.592402 +2336.610650 +2336.637157 +2336.639422 +2336.683111 +2336.699128 +2341.124166 +2341.161562 +2341.238351 +2341.591997 +2346.708742 +2346.710540 +2349.705742 +2349.711103 +2350.708871 +2351.711434 +2354.047762 +2356.704969 +2356.708399 +2356.805868 +2356.905835 +2357.006701 +2357.806633 +2357.806999 +2358.106533 +2358.306699 +2358.506533 +2358.506932 +2359.006366 +2359.106432 +2359.106832 +2359.107031 +2359.207065 +2359.506898 +2359.606831 +2360.106631 +2360.206897 +2361.507096 +2361.606729 +2361.706996 +2366.710287 +2366.808489 +2366.883514 +2366.986844 +2367.145651 +2367.209321 +2367.301296 +2367.440689 +2367.489307 +2367.532631 +2367.566563 +2367.656340 +2367.730433 +2367.763999 +2367.806157 +2367.869394 +2368.050812 +2368.103493 +2368.177552 +2368.219110 +2368.267162 +2368.294468 +2368.354874 +2368.378717 +2368.419277 +2368.485643 +2368.497865 +2368.537924 +2368.642586 +2368.668993 +2368.719776 +2368.771724 +2368.808154 +2368.850778 +2368.900894 +2368.951710 +2369.019343 +2369.048147 +2369.097265 +2369.161600 +2369.204890 +2369.325503 +2369.353508 +2369.379182 +2369.445150 +2369.482779 +2369.617377 +2369.647514 +2369.675985 +2369.700294 +2369.777850 +2369.811117 +2369.836192 +2369.864996 +2369.918842 +2369.959501 +2370.001593 +2370.056638 +2370.116078 +2370.128899 +2370.145116 +2370.157403 +2370.171656 +2370.186974 +2370.199261 +2370.229631 +2370.288006 +2370.318209 +2370.348479 +2370.376318 +2370.405355 +2370.495665 +2370.522738 +2370.540020 +2370.553141 +2370.715478 +2370.758935 +2370.808119 +2370.820473 +2370.822804 +2370.852408 +2370.881678 +2370.898561 +2370.912081 +2370.939754 +2370.999394 +2371.032194 +2371.057203 +2371.107053 +2371.139254 +2371.166393 +2371.192501 +2371.206753 +2371.221738 +2371.252241 +2371.270922 +2371.297662 +2371.314412 +2371.325334 +2371.342883 +2371.361398 +2371.376683 +2371.405654 +2371.432960 +2371.462564 +2371.479646 +2371.512880 +2371.531195 +2371.575051 +2371.593499 +2371.607752 +2371.688238 +2381.710605 +2382.710604 +2382.712402 +2383.705675 +2384.712667 +2386.706438 +2391.709230 +2391.806799 +2391.811428 +2391.907232 +2392.007132 +2392.107365 +2392.207531 +2392.707697 +2393.407696 +2393.507164 +2393.907663 +2394.107563 +2394.507962 +2394.707262 +2394.707529 +2395.307661 +2395.707894 +2395.807960 +2396.707327 +2401.714048 +2401.800562 +2401.886476 +2402.031830 +2402.122540 +2402.203192 +2402.277651 +2402.392936 +2402.446981 +2402.524237 +2402.574021 +2402.650977 +2402.690671 +2402.715879 +2402.767094 +2402.803425 +2402.815146 +2402.895799 +2403.012948 +2403.039688 +2403.128233 +2403.214180 +2403.254839 +2403.329465 +2403.357270 +2403.424103 +2403.489838 +2403.529365 +2403.556338 +2403.631263 +2403.691269 +2403.736657 +2403.777816 +2403.804456 +2403.855438 +2403.883310 +2403.922638 +2403.958169 +2404.008951 +2404.035125 +2404.060233 +2404.100992 +2404.136690 +2404.208019 +2404.237456 +2404.264096 +2404.293333 +2404.322338 +2404.351142 +2404.404688 +2404.432627 +2404.461332 +2404.527366 +2404.587872 +2404.644948 +2404.661165 +2404.675084 +2404.702324 +2404.745248 +2404.776217 +2404.816576 +2404.848011 +2404.874019 +2404.915078 +2404.946946 +2405.045480 +2405.073885 +2405.101724 +2405.115310 +2405.153439 +2405.226899 +2405.256935 +2405.305753 +2405.331361 +2405.360132 +2405.377415 +2405.409016 +2405.467957 +2405.496129 +2405.523668 +2405.568623 +2405.597927 +2405.629862 +2405.669123 +2405.688403 +2405.746612 +2405.775516 +2405.803089 +2405.833625 +2405.863295 +2405.896029 +2405.914377 +2405.942516 +2405.959565 +2405.973718 +2406.004620 +2406.018640 +2406.050707 +2406.079046 +2406.110115 +2406.128063 +2406.170488 +2406.187837 +2406.204787 +2406.230261 +2406.260231 +2406.305319 +2406.365859 +2406.385239 +2406.418506 +2406.448376 +2406.464793 +2406.493831 +2406.524866 +2406.542049 +2406.557167 +2406.574450 +2406.603721 +2406.632592 +2406.662895 +2406.678879 +2416.705442 +2417.712634 +2418.712699 +2419.711899 +2420.711299 +2421.712064 +2425.027245 +2426.709028 +2427.207196 +2427.306763 +2427.507163 +2427.607063 +2427.807329 +2428.006963 +2428.106863 +2428.207229 +2428.406962 +2428.707062 +2428.807195 +2429.107394 +2429.307061 +2429.507161 +2429.607294 +2429.906827 +2430.006761 +2430.106794 +2430.207094 +2430.506760 +2430.606993 +2430.706860 +2431.006993 +2431.107059 +2431.707192 +2436.710950 +2436.864763 +2436.908952 +2436.955638 +2437.146814 +2437.174253 +2437.241752 +2437.311149 +2437.357569 +2437.434059 +2437.499760 +2437.595698 +2437.623536 +2437.635824 +2437.658734 +2437.684509 +2437.786007 +2437.837922 +2437.891801 +2437.892267 +2437.921471 +2437.944382 +2438.013446 +2438.056570 +2438.094265 +2438.193433 +2438.221738 +2438.262597 +2438.296929 +2438.327798 +2438.356070 +2438.395564 +2438.442949 +2438.469123 +2438.517641 +2438.559300 +2438.623469 +2438.658667 +2438.660199 +2438.685740 +2438.731061 +2438.770089 +2438.808683 +2438.834491 +2438.879512 +2438.900791 +2438.933625 +2438.962629 +2439.006186 +2439.022569 +2439.059599 +2439.088004 +2439.115043 +2439.139652 +2439.180644 +2439.233991 +2439.273884 +2439.313178 +2439.341650 +2439.367890 +2439.408849 +2439.449642 +2439.477847 +2439.492565 +2439.531260 +2439.569389 +2439.626265 +2439.657400 +2439.684540 +2439.765059 +2439.781143 +2439.794230 +2439.808483 +2439.836255 +2439.877713 +2439.938719 +2439.965958 +2440.005818 +2440.027963 +2440.055369 +2440.065459 +2440.094996 +2440.111646 +2440.150607 +2440.182342 +2440.214276 +2440.253670 +2440.273117 +2440.301556 +2440.330926 +2440.362095 +2440.393297 +2440.421336 +2440.451106 +2440.484339 +2440.510080 +2440.542881 +2440.557633 +2440.646544 +2440.647076 +2440.677046 +2440.722068 +2440.753503 +2440.781309 +2440.809614 +2440.829627 +2440.877912 +2440.905318 +2440.932691 +2440.965458 +2440.983273 +2440.994529 +2441.043713 +2441.076447 +2441.104885 +2441.166923 +2441.240982 +2441.255534 +2441.301721 +2441.330259 +2441.360229 +2441.378877 +2441.394295 +2441.423732 +2441.441148 +2441.471884 +2441.535054 +2441.553136 +2441.567921 +2441.601454 +2441.629027 +2441.647342 +2441.649007 +2441.664625 +2441.693795 +2453.704406 +2456.711929 +2461.710359 +2461.811557 +2461.906363 +2462.006729 +2462.106862 +2462.207028 +2462.406828 +2462.606362 +2462.705629 +2462.706495 +2462.806029 +2462.906128 +2462.906561 +2463.005462 +2463.006128 +2463.106328 +2463.106694 +2463.306361 +2463.306761 +2463.506927 +2463.707093 +2463.906394 +2463.906827 +2464.006261 +2464.006494 +2464.105594 +2464.106427 +2464.606660 +2464.706526 +2464.706859 +2464.906693 +2465.106459 +2465.306592 +2465.406692 +2465.406892 +2465.507025 +2465.807125 +2465.907158 +2466.007158 +2466.106392 +2466.305959 +2466.306425 +2466.306625 +2471.709283 +2471.714378 +2471.803555 +2471.945713 +2472.051108 +2472.128464 +2472.223202 +2472.244980 +2472.286139 +2472.396995 +2472.434058 +2472.479246 +2472.494497 +2472.585306 +2472.597860 +2472.650308 +2472.708083 +2472.746112 +2472.835855 +2472.873884 +2472.933624 +2472.941250 +2472.969522 +2473.014643 +2473.042149 +2473.131659 +2473.171053 +2473.202522 +2473.225732 +2473.349242 +2473.385705 +2473.437786 +2473.502488 +2473.537620 +2473.614443 +2473.639418 +2473.680144 +2473.717806 +2473.771452 +2473.796227 +2473.834456 +2473.858598 +2473.860163 +2473.895362 +2473.935555 +2473.965458 +2474.006084 +2474.035388 +2474.063693 +2474.088402 +2474.117040 +2474.146610 +2474.202521 +2474.229161 +2474.257732 +2474.285371 +2474.313110 +2474.339017 +2474.383240 +2474.412311 +2474.437685 +2474.466556 +2474.494262 +2474.521635 +2474.579677 +2474.609846 +2474.648807 +2474.666689 +2474.709114 +2474.736053 +2474.779210 +2474.806982 +2474.836786 +2474.866689 +2474.892463 +2474.911345 +2474.953902 +2474.971584 +2475.000655 +2475.029193 +2475.030292 +2475.056965 +2475.075980 +2475.102919 +2475.104085 +2475.161761 +2475.222233 +2475.264424 +2475.325030 +2475.354201 +2475.385337 +2475.386502 +2475.413775 +2475.428660 +2475.462160 +2475.489399 +2475.508014 +2475.535886 +2475.554534 +2475.582007 +2475.613975 +2475.630192 +2475.662326 +2475.675846 +2475.689332 +2475.707414 +2475.748773 +2475.777278 +2475.821001 +2475.861993 +2475.935286 +2475.962259 +2475.977944 +2476.003018 +2476.067587 +2476.085403 +2476.099855 +2476.126661 +2476.173148 +2476.191197 +2476.206348 +2476.221999 +2476.251703 +2476.292296 +2476.306881 +2476.352569 +2476.377077 +2476.393727 +2476.411243 +2476.439415 +2476.487567 +2476.516771 +2476.548506 +2476.564823 +2476.590164 +2476.616837 +2476.679308 +2486.710867 +2489.712295 +2490.712561 +2491.706266 +2496.711223 +2496.806328 +2497.006960 +2497.107193 +2497.207360 +2497.407259 +2497.507359 +2497.807392 +2498.107492 +2498.407525 +2498.807524 +2498.907524 +2499.007391 +2499.107224 +2499.206891 +2499.407424 +2499.507424 +2499.607524 +2500.107457 +2500.307390 +2500.407456 +2500.507489 +2500.707622 +2501.007289 +2501.207455 +2501.407588 +2501.707388 +2506.710480 +2506.800657 +2506.931692 +2506.994563 +2507.061762 +2507.154136 +2507.200190 +2507.294529 +2507.362627 +2507.394562 +2507.458798 +2507.480509 +2507.581941 +2507.643247 +2507.672650 +2507.685571 +2507.741881 +2507.774382 +2507.797625 +2507.830992 +2507.831425 +2507.904685 +2507.946709 +2507.973316 +2508.015241 +2508.070685 +2508.152770 +2508.188967 +2508.200156 +2508.239483 +2508.278111 +2508.315840 +2508.355034 +2508.389766 +2508.428061 +2508.453569 +2508.495127 +2508.542446 +2508.568587 +2508.583405 +2508.665190 +2508.703052 +2508.727395 +2508.730358 +2508.780208 +2508.818936 +2508.841980 +2508.889166 +2508.946908 +2509.001221 +2509.052869 +2509.079242 +2509.132789 +2509.186269 +2509.237750 +2509.253135 +2509.293528 +2509.316272 +2509.356432 +2509.430224 +2509.455899 +2509.484170 +2509.511510 +2509.555832 +2509.596658 +2509.597424 +2509.635619 +2509.664856 +2509.694360 +2509.733121 +2509.774147 +2509.856564 +2509.899055 +2509.924230 +2509.951669 +2510.007247 +2510.031156 +2510.072282 +2510.098689 +2510.126727 +2510.195625 +2510.222931 +2510.252734 +2510.279807 +2510.306514 +2510.346041 +2510.384070 +2510.416004 +2510.445508 +2510.460393 +2510.475212 +2510.504915 +2510.531988 +2510.550203 +2510.574979 +2510.620699 +2510.655931 +2510.672148 +2510.698255 +2510.723330 +2510.741345 +2510.798821 +2510.814372 +2510.841512 +2510.868152 +2510.870183 +2510.895125 +2510.915038 +2510.930822 +2510.959594 +2510.974212 +2511.031755 +2511.050869 +2511.079174 +2511.095125 +2511.110875 +2511.124795 +2511.152700 +2511.184502 +2511.215437 +2511.229790 +2511.260592 +2511.287166 +2511.303849 +2511.320099 +2511.350635 +2511.379174 +2511.409077 +2511.481604 +2511.497855 +2511.527225 +2511.573679 +2511.586666 +2511.588531 +2511.640279 +2511.678940 +2511.697755 +2521.710832 +2522.709998 +2523.710363 +2524.705933 +2531.710955 +2531.806093 +2532.106992 +2532.306991 +2532.707124 +2532.807124 +2532.907124 +2533.007124 +2533.307124 +2533.407124 +2533.507090 +2533.807123 +2533.907090 +2534.007123 +2534.307123 +2534.406756 +2534.607156 +2534.707222 +2534.807255 +2534.809753 +2534.907055 +2535.007189 +2535.207122 +2535.307222 +2535.607121 +2535.707155 +2536.007254 +2536.010051 +2536.107354 +2536.207221 +2536.407320 +2536.507154 +2536.707187 +2541.713476 +2541.744178 +2541.829892 +2542.035586 +2542.079542 +2542.174081 +2542.272682 +2542.308014 +2542.392463 +2542.421267 +2542.470884 +2542.519935 +2542.544577 +2542.555666 +2542.592795 +2542.671650 +2542.709112 +2542.769219 +2542.889798 +2542.913075 +2542.938083 +2542.988666 +2542.989765 +2543.015339 +2543.051603 +2543.126328 +2543.152668 +2543.278109 +2543.344909 +2543.367054 +2543.404649 +2543.430190 +2543.431356 +2543.466454 +2543.497823 +2543.521965 +2543.561526 +2543.611442 +2543.647306 +2543.692794 +2543.717836 +2543.742678 +2543.794492 +2543.845908 +2543.861159 +2543.938915 +2543.962158 +2543.977409 +2544.016037 +2544.055265 +2544.081239 +2544.123030 +2544.194825 +2544.234519 +2544.258262 +2544.283370 +2544.319900 +2544.356796 +2544.402217 +2544.426826 +2544.464988 +2544.535251 +2544.577975 +2544.605114 +2544.631222 +2544.654199 +2544.684601 +2544.725194 +2544.738081 +2544.779473 +2544.795790 +2544.896889 +2544.921897 +2544.945707 +2544.984501 +2545.014838 +2545.081837 +2545.106080 +2545.130355 +2545.145840 +2545.174411 +2545.199919 +2545.226959 +2545.254231 +2545.281104 +2545.305780 +2545.315004 +2545.329389 +2545.352400 +2545.378873 +2545.445207 +2545.470115 +2545.485400 +2545.512140 +2545.553665 +2545.580238 +2545.608843 +2545.621597 +2545.649069 +2545.676908 +2545.709009 +2545.709409 +2545.723228 +2545.753365 +2545.790328 +2545.816635 +2545.840211 +2545.864787 +2545.891493 +2545.921963 +2545.955429 +2545.980238 +2546.024960 +2546.049901 +2546.064753 +2546.081803 +2546.096388 +2546.123361 +2546.150434 +2546.175676 +2546.192525 +2546.222362 +2546.238413 +2546.279738 +2546.321463 +2546.335549 +2546.362522 +2546.386065 +2546.401849 +2546.402848 +2546.416901 +2546.441376 +2546.467117 +2546.521796 +2546.538113 +2546.564520 +2546.580837 +2546.596454 +2546.626324 +2546.654230 +2546.670280 +2546.700783 +2556.712029 +2557.705634 +2558.712060 +2561.706030 +2566.805858 +2566.906291 +2567.006191 +2567.006757 +2567.106724 +2567.206857 +2567.306490 +2567.406990 +2567.607156 +2567.707089 +2567.807122 +2567.907122 +2568.106523 +2568.106922 +2568.206956 +2568.306955 +2568.406989 +2568.507055 +2568.606955 +2568.706622 +2568.807022 +2568.907021 +2569.106855 +2569.207021 +2569.507021 +2569.607221 +2569.706987 +2570.006887 +2570.107120 +2570.206920 +2570.707053 +2571.106620 +2571.207119 +2571.407119 +2571.707218 +2576.774713 +2576.867386 +2576.988665 +2577.072048 +2577.148905 +2577.203417 +2577.277509 +2577.365022 +2577.436717 +2577.484402 +2577.586833 +2577.656896 +2577.703549 +2577.777342 +2577.843942 +2577.892960 +2578.009810 +2578.074745 +2578.112840 +2578.122896 +2578.201251 +2578.213739 +2578.263889 +2578.325993 +2578.380605 +2578.427558 +2578.429423 +2578.453865 +2578.511407 +2578.572047 +2578.590195 +2578.628490 +2578.653132 +2578.677641 +2578.709875 +2578.734318 +2578.855630 +2578.880405 +2578.957261 +2579.009209 +2579.038380 +2579.071846 +2579.097254 +2579.136881 +2579.192026 +2579.230055 +2579.313305 +2579.367950 +2579.383002 +2579.435183 +2579.481070 +2579.518999 +2579.558526 +2579.588163 +2579.638712 +2579.640544 +2579.682635 +2579.751566 +2579.766085 +2579.790294 +2579.846138 +2579.882801 +2579.945638 +2579.980171 +2580.006478 +2580.034749 +2580.079038 +2580.093524 +2580.148835 +2580.164986 +2580.192092 +2580.219864 +2580.262321 +2580.276640 +2580.292658 +2580.305711 +2580.306777 +2580.333983 +2580.375109 +2580.408642 +2580.423760 +2580.464586 +2580.492791 +2580.524359 +2580.554396 +2580.581302 +2580.610739 +2580.641675 +2580.699084 +2580.726956 +2580.742374 +2580.771279 +2580.798618 +2580.826090 +2580.843140 +2580.870013 +2580.887995 +2580.917199 +2580.946803 +2580.961788 +2580.990859 +2581.020529 +2581.038245 +2581.053063 +2581.067349 +2581.096020 +2581.125424 +2581.155261 +2581.172277 +2581.200249 +2581.216733 +2581.232883 +2581.260556 +2581.292690 +2581.308008 +2581.349566 +2581.376906 +2581.394255 +2581.421395 +2581.446836 +2581.476772 +2581.504112 +2581.522993 +2581.538677 +2581.553929 +2581.609873 +2581.626289 +2591.708897 +2593.705498 +2595.709559 +2596.705928 +2601.709653 +2601.906922 +2602.306988 +2602.407321 +2602.507254 +2602.607554 +2602.707554 +2602.907587 +2603.007420 +2603.107087 +2603.407220 +2603.807486 +2603.907619 +2604.807552 +2605.507584 +2605.607151 +2606.507084 +2606.707084 +2606.707650 +2611.714038 +2611.857628 +2611.916369 +2611.996489 +2612.118733 +2612.157394 +2612.218900 +2612.296322 +2612.379372 +2612.431087 +2612.519932 +2612.582702 +2612.638613 +2612.690361 +2612.754430 +2612.833118 +2612.885799 +2612.985232 +2613.022795 +2613.076441 +2613.142275 +2613.183934 +2613.219165 +2613.255995 +2613.275142 +2613.363920 +2613.390360 +2613.447903 +2613.511073 +2613.581835 +2613.619065 +2613.656527 +2613.697586 +2613.721828 +2613.762621 +2613.803047 +2613.829221 +2613.896520 +2613.909607 +2613.947269 +2614.024592 +2614.089294 +2614.105211 +2614.158691 +2614.212537 +2614.240110 +2614.269480 +2614.295554 +2614.319230 +2614.321062 +2614.360522 +2614.384066 +2614.413703 +2614.459490 +2614.501015 +2614.538977 +2614.576972 +2614.643606 +2614.669846 +2614.715833 +2614.731418 +2614.756959 +2614.810139 +2614.840242 +2614.868680 +2614.896952 +2614.924025 +2614.951331 +2614.953063 +2614.994554 +2615.026722 +2615.062853 +2615.095154 +2615.131850 +2615.133282 +2615.158157 +2615.221794 +2615.245636 +2615.332416 +2615.376406 +2615.441307 +2615.470511 +2615.498550 +2615.547401 +2615.609772 +2615.634647 +2615.663485 +2615.694953 +2615.738110 +2615.790691 +2615.858490 +2615.876205 +2615.933381 +2615.958789 +2615.975339 +2616.013967 +2616.052429 +2616.083797 +2616.133648 +2616.174706 +2616.234380 +2616.249565 +2616.273907 +2616.290158 +2616.321060 +2616.350098 +2616.365049 +2616.379135 +2616.396917 +2616.439974 +2616.457024 +2616.485162 +2616.512102 +2616.544470 +2616.563684 +2616.587693 +2616.624290 +2616.653827 +2616.665149 +2616.684463 +2616.698649 +2628.712822 +2630.706294 +2631.706592 +2635.016945 +2635.091271 +2635.286409 +2637.107120 +2637.107653 +2637.407486 +2638.007185 +2638.206586 +2638.307818 +2638.807251 +2638.906319 +2639.207684 +2639.307650 +2639.507750 +2639.708083 +2639.808116 +2640.407749 +2640.707749 +2641.207615 +2641.307249 +2641.307748 +2641.610712 +2646.709708 +2646.716667 +2646.722262 +2646.841842 +2646.974010 +2647.123127 +2647.165418 +2647.222095 +2647.318165 +2647.328022 +2647.368548 +2647.488361 +2647.529787 +2647.652764 +2647.823926 +2647.862887 +2647.931651 +2647.974342 +2648.047635 +2648.153129 +2648.203179 +2648.244671 +2648.268580 +2648.309473 +2648.367848 +2648.449832 +2648.477738 +2648.527555 +2648.558191 +2648.595387 +2648.659123 +2648.704411 +2648.738277 +2648.777837 +2648.803778 +2648.804411 +2648.846335 +2648.896285 +2648.923924 +2648.958723 +2649.014900 +2649.043238 +2649.071743 +2649.096918 +2649.123758 +2649.162919 +2649.192622 +2649.248133 +2649.264051 +2649.288360 +2649.315699 +2649.344270 +2649.382632 +2649.467580 +2649.493621 +2649.547867 +2649.596385 +2649.638676 +2649.667114 +2649.688992 +2649.717796 +2649.749998 +2649.776005 +2649.805942 +2649.837843 +2649.877969 +2649.918795 +2649.946867 +2649.962485 +2649.990024 +2650.018329 +2650.075272 +2650.102178 +2650.134146 +2650.165182 +2650.179434 +2650.206341 +2650.234446 +2650.235145 +2650.264416 +2650.293054 +2650.321858 +2650.362518 +2650.398715 +2650.421092 +2650.449897 +2650.477702 +2650.549431 +2650.624555 +2650.645734 +2650.680033 +2650.696317 +2650.722890 +2650.778368 +2650.807739 +2650.825021 +2650.851928 +2650.885827 +2650.899713 +2650.915464 +2650.931581 +2650.947432 +2650.958521 +2650.989990 +2651.014665 +2651.052127 +2651.076070 +2651.136676 +2651.180366 +2651.194452 +2651.256223 +2651.273706 +2651.303376 +2651.314298 +2651.345967 +2651.377335 +2651.401511 +2651.418894 +2651.461218 +2651.478567 +2651.493053 +2651.520392 +2651.549896 +2651.576503 +2651.602743 +2651.627851 +2651.657455 +2651.699146 +2661.705064 +2661.705130 +2661.705663 +2665.706425 +2668.078184 +2668.197765 +2668.327768 +2669.103691 +2671.907152 +2672.007518 +2672.207384 +2672.507284 +2672.607251 +2673.307650 +2673.407749 +2673.507716 +2674.107316 +2674.207749 +2674.307815 +2674.407682 +2674.507848 +2674.607748 +2674.807815 +2675.207348 +2675.207714 +2675.407814 +2675.507381 +2675.707114 +2675.807181 +2676.207347 +2676.207747 +2676.507913 +2676.607646 +2676.707280 +2676.707746 +2681.711404 +2681.753762 +2681.785996 +2681.849399 +2682.018730 +2682.062153 +2682.107941 +2682.178636 +2682.232016 +2682.316831 +2682.389126 +2682.451197 +2682.510171 +2682.583997 +2682.607907 +2682.671377 +2682.709838 +2682.766615 +2682.851163 +2682.974007 +2683.033514 +2683.046767 +2683.093954 +2683.122691 +2683.163884 +2683.199947 +2683.214433 +2683.265449 +2683.292322 +2683.330950 +2683.362851 +2683.411103 +2683.436211 +2683.502045 +2683.537143 +2683.589857 +2683.638109 +2683.691689 +2683.740973 +2683.779434 +2683.818495 +2683.856124 +2683.896817 +2683.924156 +2683.948498 +2683.999447 +2684.038741 +2684.065315 +2684.090856 +2684.118794 +2684.144502 +2684.178468 +2684.195551 +2684.278135 +2684.374738 +2684.461118 +2684.463682 +2684.505541 +2684.545600 +2684.573273 +2684.615630 +2684.641604 +2684.668977 +2684.682463 +2684.721458 +2684.721824 +2684.746999 +2684.782497 +2684.816529 +2684.841105 +2684.870242 +2684.897348 +2684.922357 +2684.953725 +2684.983629 +2685.012034 +2685.037608 +2685.066279 +2685.096449 +2685.110602 +2685.139006 +2685.167711 +2685.187025 +2685.209536 +2685.237375 +2685.267644 +2685.296416 +2685.319259 +2685.339139 +2685.364114 +2685.435077 +2685.506006 +2685.537041 +2685.551993 +2685.581230 +2685.641037 +2685.669142 +2685.683861 +2685.708203 +2685.740737 +2685.755356 +2685.769209 +2685.793651 +2685.819725 +2685.851227 +2685.864014 +2685.891686 +2685.920125 +2685.936608 +2685.963381 +2685.991320 +2686.033444 +2686.067144 +2686.096714 +2686.124054 +2686.141336 +2686.172772 +2686.199545 +2686.218160 +2686.246465 +2686.264913 +2686.294516 +2686.325652 +2686.340637 +2686.368676 +2686.388556 +2686.417094 +2686.443201 +2686.455389 +2686.484127 +2686.510733 +2686.536574 +2686.549894 +2686.565379 +2686.595715 +2686.609168 +2686.624253 +2686.669175 +2686.684226 +2686.698479 +2696.706061 +2696.706261 +2696.712688 +2697.706826 +2697.712321 +2698.706925 +2706.706384 +2706.907683 +2707.008049 +2707.808248 +2707.907782 +2707.908115 +2709.008513 +2709.107980 +2710.308145 +2710.808545 +2711.608610 +2716.706274 +2716.712268 +2716.715432 +2716.748932 +2716.802977 +2716.852328 +2716.935678 +2716.948598 +2716.991988 +2717.081099 +2717.196051 +2717.249264 +2717.320093 +2717.383563 +2717.495451 +2717.562417 +2717.635611 +2717.669577 +2717.708471 +2717.770609 +2717.823190 +2717.879034 +2717.927951 +2717.950895 +2718.014098 +2718.044868 +2718.138774 +2718.188923 +2718.246433 +2718.280066 +2718.316795 +2718.357322 +2718.430382 +2718.488191 +2718.514165 +2718.566079 +2718.620824 +2718.657521 +2718.706139 +2718.727651 +2718.783462 +2718.823222 +2718.861783 +2718.897880 +2718.968210 +2718.992885 +2719.028749 +2719.084460 +2719.150195 +2719.179532 +2719.249662 +2719.283494 +2719.311766 +2719.354590 +2719.381729 +2719.409202 +2719.479099 +2719.520857 +2719.575802 +2719.589521 +2719.591686 +2719.644466 +2719.692618 +2719.725785 +2719.752858 +2719.792452 +2719.821822 +2719.848862 +2719.893217 +2719.928216 +2719.955655 +2720.015229 +2720.045632 +2720.071006 +2720.122688 +2720.159884 +2720.188189 +2720.211599 +2720.214629 +2720.271672 +2720.285891 +2720.311299 +2720.343733 +2720.371006 +2720.399611 +2720.412298 +2720.444699 +2720.471206 +2720.498445 +2720.531545 +2720.561848 +2720.590453 +2720.620123 +2720.651259 +2720.682128 +2720.710899 +2720.757419 +2720.786457 +2720.811265 +2720.837306 +2720.853756 +2720.896746 +2720.992584 +2721.021555 +2721.047895 +2721.074169 +2721.101908 +2721.130213 +2721.157552 +2721.189786 +2721.219856 +2721.303373 +2721.326716 +2721.327815 +2721.351358 +2721.376466 +2721.401308 +2721.447129 +2721.469340 +2721.520855 +2721.532576 +2721.575300 +2721.600275 +2721.615893 +2721.627715 +2721.641701 +2721.681994 +2721.693848 +2730.921012 +2731.706326 +2735.706555 +2735.713082 +2741.711777 +2741.807148 +2741.907614 +2742.007914 +2742.308180 +2742.408180 +2743.108046 +2743.208046 +2743.308046 +2743.408112 +2743.508212 +2743.608145 +2743.707479 +2743.708079 +2744.408111 +2744.508045 +2744.608178 +2744.708178 +2744.808178 +2745.008077 +2745.207911 +2745.407977 +2745.608044 +2745.808143 +2745.908110 +2746.008143 +2746.108143 +2746.308043 +2746.408143 +2746.507776 +2751.711434 +2751.838007 +2751.891121 +2751.983162 +2752.153525 +2752.238873 +2752.319958 +2752.355589 +2752.436442 +2752.484926 +2752.566878 +2752.646831 +2752.660084 +2752.721523 +2752.769941 +2752.807437 +2752.856388 +2752.931812 +2752.970207 +2752.995116 +2753.030547 +2753.082994 +2753.148562 +2753.204206 +2753.231546 +2753.289621 +2753.320956 +2753.367243 +2753.422388 +2753.471306 +2753.536407 +2753.557986 +2753.611366 +2753.627449 +2753.666710 +2753.716727 +2753.743300 +2753.775768 +2753.816094 +2753.856520 +2753.882960 +2753.957885 +2753.989753 +2754.031345 +2754.058152 +2754.099144 +2754.170040 +2754.197579 +2754.240502 +2754.281894 +2754.307935 +2754.334908 +2754.350992 +2754.405271 +2754.405604 +2754.446596 +2754.457752 +2754.483493 +2754.513596 +2754.543033 +2754.572603 +2754.611365 +2754.657818 +2754.686123 +2754.728581 +2754.755487 +2754.770206 +2754.780429 +2754.812663 +2754.841667 +2754.869406 +2754.898177 +2754.955620 +2754.998943 +2755.029413 +2755.074734 +2755.118690 +2755.146962 +2755.177698 +2755.206835 +2755.236039 +2755.265343 +2755.267208 +2755.281527 +2755.340168 +2755.379196 +2755.424884 +2755.453522 +2755.468440 +2755.471237 +2755.501906 +2755.516891 +2755.545330 +2755.575067 +2755.608367 +2755.668173 +2755.683158 +2755.728213 +2755.758550 +2755.789685 +2755.819921 +2755.848160 +2755.866042 +2755.893348 +2755.911929 +2755.940068 +2756.002872 +2756.020421 +2756.048326 +2756.066175 +2756.093681 +2756.121087 +2756.151490 +2756.175865 +2756.176431 +2756.200108 +2756.254120 +2756.269471 +2756.298909 +2756.315825 +2756.357816 +2756.373900 +2756.401872 +2756.435339 +2756.452189 +2756.478296 +2756.493014 +2756.522052 +2756.548592 +2756.578362 +2756.593947 +2756.619621 +2756.645562 +2756.677863 +2769.705955 +2769.709485 +2776.709977 +2776.906247 +2777.006514 +2777.206780 +2777.406780 +2777.606913 +2777.706946 +2778.006946 +2778.206979 +2778.306945 +2778.506845 +2778.606845 +2778.706945 +2778.906878 +2779.006978 +2779.106911 +2779.206678 +2779.407011 +2779.606977 +2779.706944 +2779.807010 +2780.006844 +2780.207077 +2780.406943 +2780.506876 +2780.607076 +2780.907009 +2781.006943 +2781.106976 +2781.206976 +2781.707042 +2786.731512 +2786.759151 +2786.776634 +2786.797280 +2786.837440 +2786.870839 +2787.012065 +2787.051159 +2787.122221 +2787.213996 +2787.252890 +2787.335408 +2787.380929 +2787.451591 +2787.533143 +2787.564778 +2787.651625 +2787.667575 +2787.716393 +2787.778564 +2787.813895 +2787.882460 +2788.027115 +2788.052057 +2788.100941 +2788.132210 +2788.204738 +2788.228947 +2788.291417 +2788.317092 +2788.354088 +2788.432476 +2788.484724 +2788.551191 +2788.577831 +2788.614994 +2788.642233 +2788.668706 +2788.716858 +2788.758783 +2788.786056 +2788.834574 +2788.874001 +2788.955286 +2788.992682 +2789.049559 +2789.098276 +2789.126448 +2789.154087 +2789.221120 +2789.256851 +2789.284690 +2789.312629 +2789.351157 +2789.378995 +2789.420554 +2789.458716 +2789.487520 +2789.543231 +2789.569804 +2789.613827 +2789.638935 +2789.656151 +2789.684889 +2789.724250 +2789.751589 +2789.768139 +2789.836837 +2789.867107 +2789.889718 +2789.936138 +2789.962245 +2789.990450 +2790.058648 +2790.091183 +2790.132907 +2790.162145 +2790.185854 +2790.205568 +2790.233906 +2790.261412 +2790.278229 +2790.308099 +2790.321485 +2790.335505 +2790.367240 +2790.382491 +2790.408931 +2790.453986 +2790.482824 +2790.510829 +2790.528278 +2790.555584 +2790.585921 +2790.613027 +2790.628878 +2790.658615 +2790.688052 +2790.743296 +2790.760479 +2790.790216 +2790.843529 +2790.869503 +2790.896576 +2790.938468 +2790.966806 +2791.006733 +2791.034572 +2791.067305 +2791.090016 +2791.110063 +2791.123582 +2791.184089 +2791.198541 +2791.213526 +2791.243063 +2791.270802 +2791.310795 +2791.327911 +2791.365274 +2791.393246 +2791.408664 +2791.426513 +2791.450222 +2791.468604 +2791.491148 +2791.533372 +2791.547392 +2791.564275 +2791.592680 +2791.606765 +2791.622483 +2791.648257 +2791.664041 +2791.689283 +2801.710751 +2802.709052 +2811.705280 +2811.806179 +2811.906579 +2812.107011 +2812.407111 +2812.607244 +2812.706778 +2812.907177 +2813.107110 +2813.207143 +2813.307243 +2813.406744 +2813.407243 +2813.506977 +2813.607143 +2813.707043 +2813.807209 +2813.907276 +2814.406843 +2814.506842 +2814.807242 +2815.307341 +2815.607274 +2815.807407 +2815.907274 +2816.207473 +2816.406974 +2816.407240 +2816.706740 +2816.707340 +2821.704804 +2821.715460 +2821.723385 +2821.742233 +2821.904204 +2821.986422 +2822.042066 +2822.103039 +2822.154787 +2822.201140 +2822.234873 +2822.319855 +2822.450058 +2822.544264 +2822.575765 +2822.624417 +2822.673767 +2822.731576 +2822.785855 +2822.833041 +2822.880161 +2822.940900 +2822.983191 +2823.014859 +2823.051256 +2823.106401 +2823.159714 +2823.191016 +2823.232108 +2823.268505 +2823.302871 +2823.370537 +2823.408465 +2823.433940 +2823.484323 +2823.523450 +2823.583290 +2823.627513 +2823.653653 +2823.683723 +2823.738601 +2823.780826 +2823.839034 +2823.918188 +2823.955251 +2824.065841 +2824.085621 +2824.129910 +2824.154086 +2824.191581 +2824.218155 +2824.293946 +2824.308298 +2824.345627 +2824.403036 +2824.436569 +2824.466573 +2824.494045 +2824.532673 +2824.572933 +2824.598807 +2824.642796 +2824.694977 +2824.718254 +2824.734704 +2824.772433 +2824.802037 +2824.832107 +2824.899273 +2824.938367 +2824.972366 +2825.042363 +2825.069569 +2825.141264 +2825.183455 +2825.226945 +2825.242330 +2825.281324 +2825.305866 +2825.325380 +2825.378293 +2825.421550 +2825.455117 +2825.479426 +2825.503668 +2825.531840 +2825.559146 +2825.585919 +2825.615290 +2825.654917 +2825.671367 +2825.728276 +2825.757347 +2825.788916 +2825.804700 +2825.848390 +2825.876761 +2825.962309 +2825.991646 +2826.006831 +2826.035869 +2826.088716 +2826.102802 +2826.145326 +2826.179758 +2826.196708 +2826.225545 +2826.250520 +2826.277493 +2826.308129 +2826.334969 +2826.341529 +2826.369002 +2826.383754 +2826.399105 +2826.400270 +2826.426711 +2826.453417 +2826.483787 +2826.539265 +2826.568202 +2826.596341 +2826.627676 +2826.642728 +2826.668069 +2826.685052 +2834.879383 +2834.888274 +2835.137591 +2835.880447 +2835.880681 +2836.880713 +2836.886107 +2837.880878 +2839.880910 +2844.880605 +2844.981637 +2844.984268 +2845.082137 +2845.281437 +2845.582303 +2845.881670 +2845.981736 +2846.081536 +2846.181802 +2846.281736 +2846.481769 +2846.581735 +2846.681902 +2846.981902 +2847.081768 +2847.181835 +2847.281768 +2847.481768 +2847.581834 +2847.681868 +2847.881967 +2847.981867 +2848.082467 +2848.181734 +2848.281767 +2848.581800 +2848.681833 +2848.781933 +2848.881933 +2849.081666 +2849.082199 +2849.181666 +2849.281866 +2849.385362 +2849.481832 +2849.485262 +2854.883992 +2854.997278 +2855.019722 +2855.152723 +2855.221787 +2855.269206 +2855.315227 +2855.420188 +2855.476998 +2855.535939 +2855.568173 +2855.652356 +2855.728879 +2855.793814 +2855.847560 +2855.920454 +2855.970837 +2856.036838 +2856.050391 +2856.086221 +2856.110797 +2856.153754 +2856.189385 +2856.217956 +2856.276997 +2856.303504 +2856.343264 +2856.408765 +2856.432575 +2856.464543 +2856.509831 +2856.555918 +2856.594246 +2856.635405 +2856.672102 +2856.698608 +2856.726081 +2856.764110 +2856.764909 +2856.791915 +2856.831309 +2856.889251 +2856.922418 +2856.966574 +2857.020919 +2857.043230 +2857.070603 +2857.110896 +2857.152388 +2857.178262 +2857.217489 +2857.269570 +2857.297342 +2857.322384 +2857.347925 +2857.398708 +2857.420486 +2857.462344 +2857.476796 +2857.519254 +2857.547958 +2857.574032 +2857.631175 +2857.647925 +2857.688351 +2857.703269 +2857.729443 +2857.757215 +2857.781558 +2857.807931 +2857.835404 +2857.861877 +2857.902970 +2857.929510 +2857.954018 +2858.008830 +2858.046859 +2858.065007 +2858.089882 +2858.115024 +2858.131707 +2858.177661 +2858.191581 +2858.206233 +2858.216755 +2858.232207 +2858.271567 +2858.302203 +2858.328310 +2858.356849 +2858.372333 +2858.396942 +2858.413991 +2858.430442 +2858.456049 +2858.472832 +2858.488983 +2858.500438 +2858.515923 +2858.529775 +2858.543662 +2858.561011 +2858.601437 +2858.637801 +2858.669536 +2858.695077 +2858.723615 +2858.739832 +2858.767105 +2858.794144 +2858.808663 +2858.835203 +2858.862076 +2858.884587 +2858.898440 +2858.963741 +2858.980458 +2859.006232 +2859.037201 +2859.054350 +2859.080458 +2859.109495 +2859.166471 +2859.197474 +2859.200038 +2859.214257 +2859.230541 +2859.260577 +2859.286984 +2859.301869 +2859.331406 +2859.346158 +2859.361909 +2859.392179 +2859.452685 +2859.482722 +2859.570400 +2859.571899 +2859.641696 +2859.643427 +2859.659045 +2859.673897 +2859.704766 +2859.719518 +2859.762874 +2859.776761 +2859.792079 +2859.825379 +2859.837400 +2859.851586 +2859.878592 +2861.788713 +2869.884409 +2869.887406 +2871.884840 +2873.885071 +2874.888634 +2879.882801 +2879.887530 +2879.986531 +2880.184333 +2880.284399 +2880.483999 +2880.684565 +2880.784565 +2880.984698 +2881.184698 +2881.284798 +2881.384764 +2881.484598 +2881.584598 +2881.784664 +2881.984597 +2882.885062 +2882.985129 +2883.184330 +2883.584296 +2884.085361 +2884.285327 +2884.384894 +2884.584961 +2884.784728 +2889.969737 +2890.105668 +2890.301872 +2890.339034 +2890.408065 +2890.432774 +2890.521219 +2890.592148 +2890.655551 +2890.691448 +2890.761045 +2890.818688 +2891.043396 +2891.080992 +2891.120885 +2891.161345 +2891.211794 +2891.277262 +2891.311061 +2891.336236 +2891.380592 +2891.433172 +2891.497641 +2891.510662 +2891.568770 +2891.617788 +2891.628610 +2891.667371 +2891.694411 +2891.733039 +2891.770069 +2891.783855 +2891.823082 +2891.863175 +2891.865040 +2891.879725 +2891.918653 +2891.956549 +2892.001603 +2892.013725 +2892.027977 +2892.055150 +2892.082722 +2892.120085 +2892.160844 +2892.188749 +2892.212426 +2892.250454 +2892.264307 +2892.306498 +2892.345493 +2892.366571 +2892.413025 +2892.425979 +2892.464207 +2892.467870 +2892.492379 +2892.531040 +2892.543295 +2892.565406 +2892.593644 +2892.619785 +2892.633637 +2892.702302 +2892.745326 +2892.771999 +2892.823048 +2892.840564 +2892.854050 +2892.880757 +2892.910827 +2892.939065 +2892.964673 +2892.993744 +2893.019451 +2893.047523 +2893.049588 +2893.102535 +2893.159744 +2893.175395 +2893.200903 +2893.232605 +2893.263274 +2893.286784 +2893.316587 +2893.343760 +2893.384519 +2893.419118 +2893.437300 +2893.492877 +2893.520117 +2893.520883 +2893.531872 +2893.548988 +2893.575561 +2893.589814 +2893.616853 +2893.644226 +2893.672264 +2893.686650 +2893.703666 +2893.728874 +2893.769833 +2893.797572 +2893.812757 +2893.815887 +2893.844226 +2893.861142 +2893.886050 +2893.900569 +2893.917685 +2893.929773 +2893.955548 +2893.986583 +2894.014588 +2894.059011 +2894.116686 +2894.145691 +2894.172231 +2894.187982 +2894.199703 +2894.212790 +2894.226510 +2894.250386 +2894.266403 +2894.292244 +2894.314855 +2894.415587 +2894.430772 +2894.448288 +2894.506962 +2894.566036 +2894.582220 +2894.622380 +2894.640395 +2894.665837 +2894.696073 +2894.737665 +2894.779723 +2894.797372 +2894.815420 +2894.858677 +2904.889070 +2907.889966 +2908.886502 +2908.893295 +2909.886068 +2909.886567 +2914.886396 +2914.889692 +2915.086995 +2915.087728 +2915.288094 +2915.588127 +2915.688027 +2915.788060 +2915.887993 +2915.988093 +2916.088093 +2916.187993 +2916.287660 +2916.487426 +2916.687326 +2916.786927 +2916.787526 +2916.790690 +2916.888092 +2916.988125 +2917.088158 +2917.188225 +2917.288092 +2917.290822 +2917.488291 +2917.688358 +2917.788324 +2918.588090 +2918.687757 +2918.887757 +2918.987757 +2919.487057 +2919.687024 +2919.887689 +2924.135238 +2924.889549 +2924.989516 +2925.137468 +2925.214091 +2925.319852 +2925.355183 +2925.432439 +2925.523615 +2925.572665 +2925.620917 +2925.654217 +2925.679026 +2925.734270 +2925.760644 +2925.822149 +2925.871966 +2925.913724 +2925.961876 +2925.998772 +2926.058279 +2926.085419 +2926.105932 +2926.134570 +2926.170667 +2926.242861 +2926.268369 +2926.329341 +2926.364606 +2926.412092 +2926.438865 +2926.504166 +2926.528076 +2926.538232 +2926.565605 +2926.603833 +2926.615655 +2926.641429 +2926.690546 +2926.742461 +2926.780357 +2926.808895 +2926.809994 +2926.823713 +2926.862508 +2926.899870 +2926.927809 +2926.968069 +2926.990946 +2927.042294 +2927.086217 +2927.099371 +2927.099637 +2927.126310 +2927.151185 +2927.204865 +2927.231671 +2927.258578 +2927.284219 +2927.323380 +2927.353150 +2927.380522 +2927.417319 +2927.444359 +2927.482887 +2927.511425 +2927.547256 +2927.548155 +2927.570399 +2927.593742 +2927.618551 +2927.643859 +2927.669600 +2927.696673 +2927.735634 +2927.751917 +2927.791211 +2927.817585 +2927.844292 +2927.871664 +2927.900702 +2927.939430 +2927.977691 +2928.002333 +2928.017418 +2928.029306 +2928.058510 +2928.110026 +2928.122613 +2928.134568 +2928.161574 +2928.190079 +2928.203898 +2928.226542 +2928.248853 +2928.276459 +2928.303665 +2928.333102 +2928.348587 +2928.372263 +2928.401367 +2928.443259 +2928.458144 +2928.469333 +2928.497305 +2928.512223 +2928.550252 +2928.577591 +2928.616019 +2928.639795 +2928.675593 +2928.702100 +2928.716652 +2928.746755 +2928.761707 +2928.804564 +2928.847321 +2928.888746 +2928.911157 +2928.981653 +2928.985949 +2929.027407 +2929.070564 +2929.114687 +2929.137963 +2929.165269 +2929.182619 +2929.208393 +2929.258309 +2929.281187 +2929.323344 +2929.352049 +2929.365902 +2929.391210 +2929.403431 +2929.417150 +2929.432402 +2929.474227 +2929.474526 +2929.488646 +2929.501300 +2929.527973 +2929.582518 +2929.625009 +2929.639028 +2929.668932 +2929.687713 +2929.701632 +2929.714220 +2929.729471 +2929.789877 +2929.821546 +2929.875725 +2939.891532 +2942.893394 +2944.891094 +2949.886294 +2949.886794 +2949.890190 +2950.088092 +2950.188292 +2950.388458 +2950.588491 +2950.788424 +2950.988058 +2951.187991 +2951.188491 +2951.288024 +2951.288557 +2951.388490 +2951.488424 +2951.688024 +2951.788057 +2951.888523 +2952.188323 +2952.288490 +2952.388057 +2952.587990 +2952.588323 +2952.788456 +2952.987956 +2953.188455 +2953.388022 +2953.587889 +2953.687889 +2953.688288 +2953.788355 +2954.088421 +2954.188354 +2954.388421 +2954.488387 +2954.588287 +2954.688354 +2954.788321 +2954.887854 +2954.888254 +2954.888520 +2959.926910 +2959.965971 +2960.053550 +2960.136434 +2960.213224 +2960.263440 +2960.332504 +2960.445991 +2960.488448 +2960.594142 +2960.688348 +2960.712724 +2960.783386 +2960.805664 +2960.854515 +2960.903266 +2960.954015 +2961.005164 +2961.053749 +2961.099736 +2961.123912 +2961.180389 +2961.215454 +2961.235733 +2961.264571 +2961.301834 +2961.349919 +2961.399703 +2961.427508 +2961.486915 +2961.510592 +2961.542293 +2961.569566 +2961.595074 +2961.657245 +2961.692110 +2961.732736 +2961.755846 +2961.814288 +2961.851117 +2961.887181 +2961.931670 +2961.932669 +2961.954647 +2962.002899 +2962.004863 +2962.029972 +2962.042459 +2962.087980 +2962.123844 +2962.161573 +2962.198603 +2962.231770 +2962.270231 +2962.301333 +2962.339995 +2962.361040 +2962.392742 +2962.430671 +2962.454846 +2962.479322 +2962.501833 +2962.534800 +2962.571363 +2962.633301 +2962.656778 +2962.682252 +2962.709591 +2962.738263 +2962.762205 +2962.776325 +2962.788712 +2962.805595 +2962.851716 +2962.891543 +2962.919082 +2962.942991 +2962.967533 +2963.002631 +2963.054047 +2963.098369 +2963.121812 +2963.147653 +2963.148252 +2963.188312 +2963.212888 +2963.249118 +2963.272495 +2963.297669 +2963.322778 +2963.336431 +2963.352315 +2963.379221 +2963.405461 +2963.432901 +2963.461605 +2963.487712 +2963.504429 +2963.527439 +2963.555245 +2963.557110 +2963.584282 +2963.608092 +2963.623410 +2963.692807 +2963.709624 +2963.730902 +2963.776823 +2963.792474 +2963.805428 +2963.821012 +2963.834798 +2963.844688 +2963.900233 +2963.904429 +2963.914119 +2963.931135 +2963.957209 +2963.973759 +2963.987246 +2964.002031 +2964.029470 +2964.033400 +2964.044655 +2964.072760 +2964.086213 +2964.098767 +2964.101831 +2964.127672 +2964.153313 +2964.194938 +2964.210123 +2964.223010 +2964.251914 +2964.277289 +2964.278987 +2964.295304 +2964.347818 +2964.365634 +2964.377655 +2964.392473 +2964.420945 +2964.435664 +2964.438661 +2964.493506 +2964.548717 +2964.589143 +2964.601331 +2964.615184 +2964.659340 +2964.690375 +2964.761437 +2964.762070 +2974.886602 +2974.889466 +2975.890397 +2978.890528 +2979.886630 +2984.889423 +2984.986858 +2985.086625 +2985.087291 +2985.387624 +2985.487524 +2985.687457 +2985.787490 +2985.887457 +2986.087523 +2986.187457 +2986.287523 +2986.387456 +2986.487023 +2986.487523 +2986.587589 +2986.687523 +2986.887523 +2987.087123 +2987.187589 +2987.190253 +2987.287589 +2987.387589 +2987.587156 +2987.787555 +2987.887588 +2987.987521 +2988.287155 +2988.587621 +2988.687721 +2988.787621 +2988.987088 +2989.087554 +2989.187087 +2989.290384 +2989.387553 +2989.487553 +2989.587620 +2994.889979 +2994.961241 +2995.104431 +2995.199069 +2995.327441 +2995.399868 +2995.445523 +2995.503598 +2995.593475 +2995.643857 +2995.674427 +2995.756345 +2995.813488 +2995.857610 +2995.914820 +2995.946455 +2995.991410 +2996.052781 +2996.075059 +2996.099235 +2996.136498 +2996.222378 +2996.262871 +2996.360840 +2996.386214 +2996.410390 +2996.448952 +2996.472628 +2996.510989 +2996.549118 +2996.610323 +2996.637063 +2996.647886 +2996.673593 +2996.700167 +2996.750516 +2996.786281 +2996.813820 +2996.848885 +2996.882284 +2996.939893 +2996.975058 +2997.017582 +2997.050283 +2997.076690 +2997.101898 +2997.138728 +2997.177289 +2997.200899 +2997.229104 +2997.254578 +2997.295904 +2997.351648 +2997.379021 +2997.403996 +2997.432167 +2997.459940 +2997.498667 +2997.538594 +2997.566000 +2997.593106 +2997.619846 +2997.645853 +2997.685447 +2997.700266 +2997.750482 +2997.773725 +2997.796736 +2997.820978 +2997.847085 +2997.890542 +2997.905427 +2997.916649 +2997.929137 +2997.946586 +2997.986080 +2998.000898 +2998.027405 +2998.041224 +2998.095370 +2998.122177 +2998.148184 +2998.162270 +2998.187311 +2998.221744 +2998.234464 +2998.244121 +2998.270528 +2998.296136 +2998.320711 +2998.335896 +2998.370794 +2998.398034 +2998.411887 +2998.425640 +2998.452213 +2998.495503 +2998.522642 +2998.537428 +2998.565233 +2998.594637 +2998.649349 +2998.680251 +2998.706958 +2998.721377 +2998.777787 +2998.794737 +2998.821477 +2998.862635 +2998.907224 +2998.937094 +2998.952279 +2998.996468 +2999.022509 +2999.083681 +2999.150414 +2999.168163 +2999.196368 +2999.208989 +2999.236761 +2999.252379 +2999.281350 +2999.382149 +2999.393604 +2999.462169 +2999.535529 +2999.549914 +2999.588675 +2999.602495 +2999.644519 +2999.661602 +2999.674090 +2999.687909 +2999.716348 +2999.731765 +2999.761935 +3005.633025 +3009.890763 +3010.891195 +3012.885465 +3012.886165 +3019.889821 +3019.986490 +3020.086990 +3020.387289 +3020.687256 +3020.787256 +3020.887222 +3021.087255 +3021.186456 +3021.187089 +3021.287455 +3021.290086 +3021.486988 +3021.587421 +3021.687521 +3021.787388 +3021.887121 +3022.087254 +3022.186954 +3022.387387 +3022.486821 +3022.487287 +3022.687254 +3022.786754 +3023.087187 +3023.186887 +3023.387186 +3023.487486 +3023.587419 +3023.787452 +3024.087286 +3024.187186 +3024.286952 +3024.287385 +3024.387418 +3024.487385 +3024.586819 +3024.587252 +3024.687318 +3024.886519 +3029.937629 +3029.938229 +3029.982351 +3030.011955 +3030.094905 +3030.165768 +3030.291242 +3030.338262 +3030.408292 +3030.469963 +3030.502497 +3030.597236 +3030.668897 +3030.726540 +3030.763170 +3030.830203 +3030.878388 +3030.909923 +3030.945520 +3031.003196 +3031.042090 +3031.102430 +3031.128904 +3031.156776 +3031.221611 +3031.272826 +3031.296736 +3031.332300 +3031.360372 +3031.373192 +3031.420845 +3031.484348 +3031.498500 +3031.561471 +3031.563169 +3031.575490 +3031.599233 +3031.645253 +3031.684681 +3031.735263 +3031.761670 +3031.799166 +3031.834464 +3031.904694 +3031.932199 +3031.968996 +3032.032432 +3032.069828 +3032.095403 +3032.132932 +3032.158639 +3032.186545 +3032.222342 +3032.260438 +3032.288443 +3032.315616 +3032.353145 +3032.393771 +3032.395103 +3032.420977 +3032.448716 +3032.474956 +3032.501896 +3032.528236 +3032.557673 +3032.568995 +3032.598499 +3032.626338 +3032.652179 +3032.680517 +3032.720943 +3032.748283 +3032.761369 +3032.790474 +3032.815682 +3032.862302 +3032.909887 +3032.963534 +3032.991772 +3033.033897 +3033.061902 +3033.090174 +3033.105225 +3033.146784 +3033.177286 +3033.191605 +3033.219045 +3033.247516 +3033.266331 +3033.291705 +3033.309587 +3033.336394 +3033.350180 +3033.392571 +3033.407323 +3033.438125 +3033.467796 +3033.496534 +3033.523040 +3033.685711 +3033.714848 +3033.744319 +3033.790006 +3033.804525 +3033.875754 +3033.893836 +3033.921042 +3033.935960 +3033.936859 +3033.986143 +3034.013749 +3034.028335 +3034.045784 +3034.073856 +3034.103726 +3034.119543 +3034.146916 +3034.148781 +3034.208188 +3034.222940 +3034.255740 +3034.258571 +3034.288441 +3034.302194 +3034.330132 +3034.395867 +3034.442853 +3034.472024 +3034.485777 +3034.512050 +3034.569992 +3034.643053 +3034.653109 +3034.710751 +3034.802626 +3034.819609 +3034.850145 +3034.863166 +3044.890561 +3045.886598 +3045.893125 +3049.886660 +3055.387887 +3055.787953 +3055.988086 +3056.287986 +3056.387586 +3056.487919 +3056.687952 +3056.888185 +3056.890882 +3056.988152 +3057.088152 +3057.188251 +3057.288218 +3057.388218 +3057.488118 +3057.687918 +3057.787485 +3057.987951 +3058.087784 +3058.188084 +3058.488184 +3058.587684 +3058.588084 +3058.688350 +3058.788250 +3058.887451 +3059.287650 +3059.288050 +3059.388049 +3059.488183 +3059.587417 +3059.587849 +3064.889309 +3064.890075 +3064.955943 +3065.013918 +3065.156708 +3065.301863 +3065.332965 +3065.410654 +3065.438493 +3065.530068 +3065.631766 +3065.699132 +3065.738826 +3065.771360 +3065.796568 +3065.834497 +3065.880717 +3065.958373 +3066.005492 +3066.053910 +3066.103627 +3066.157540 +3066.180783 +3066.202228 +3066.254709 +3066.281449 +3066.310520 +3066.388742 +3066.407223 +3066.481482 +3066.492638 +3066.519544 +3066.569128 +3066.585412 +3066.613284 +3066.641256 +3066.692804 +3066.749747 +3066.774755 +3066.803493 +3066.843553 +3066.907756 +3066.949780 +3066.984778 +3067.034962 +3067.095601 +3067.121275 +3067.133829 +3067.157938 +3067.184379 +3067.226503 +3067.252544 +3067.281581 +3067.325304 +3067.350779 +3067.380249 +3067.408021 +3067.436160 +3067.463366 +3067.540322 +3067.566097 +3067.602593 +3067.637125 +3067.665730 +3067.694068 +3067.695167 +3067.721308 +3067.751378 +3067.767062 +3067.807288 +3067.859703 +3067.914148 +3067.943785 +3067.955873 +3067.969559 +3067.998364 +3068.015247 +3068.041521 +3068.056339 +3068.126835 +3068.143186 +3068.155207 +3068.182313 +3068.198397 +3068.225536 +3068.254674 +3068.267195 +3068.269825 +3068.308687 +3068.345583 +3068.360768 +3068.368793 +3068.390904 +3068.414714 +3068.462932 +3068.476918 +3068.537824 +3068.565463 +3068.624337 +3068.653641 +3068.668626 +3068.684410 +3068.700261 +3068.743185 +3068.770558 +3068.800761 +3068.830031 +3068.861800 +3068.899462 +3068.927867 +3068.975286 +3068.977617 +3068.992402 +3069.040254 +3069.056238 +3069.087507 +3069.116445 +3069.136058 +3069.152009 +3069.181413 +3069.226967 +3069.245049 +3069.261266 +3069.278649 +3069.335692 +3069.387240 +3069.414546 +3069.476984 +3069.491003 +3069.535325 +3069.584576 +3069.600693 +3069.617110 +3069.645415 +3069.675585 +3069.694000 +3069.725169 +3069.765162 +3069.811749 +3069.828832 +3079.889661 +3080.886896 +3081.886728 +3082.886960 +3083.887159 +3083.890855 +3084.890621 +3089.885888 +3090.087786 +3090.188019 +3090.188285 +3090.588151 +3090.788185 +3090.888318 +3090.988318 +3091.187851 +3091.388350 +3091.588117 +3091.787751 +3091.888217 +3092.087684 +3092.088050 +3092.487617 +3092.587384 +3092.587950 +3092.688083 +3092.888316 +3093.287982 +3093.387882 +3093.488182 +3093.987649 +3094.087682 +3094.088015 +3094.288181 +3094.388014 +3094.488048 +3094.688114 +3094.787581 +3094.788147 +3099.890240 +3099.926504 +3100.098065 +3100.200163 +3100.302361 +3100.378218 +3100.452977 +3100.571924 +3100.610319 +3100.695967 +3100.738158 +3100.767029 +3100.804858 +3100.805257 +3100.852976 +3100.906390 +3100.932730 +3100.997965 +3101.023805 +3101.073223 +3101.147149 +3101.186975 +3101.226602 +3101.265796 +3101.305190 +3101.330165 +3101.342686 +3101.381148 +3101.418211 +3101.465730 +3101.483312 +3101.517045 +3101.541853 +3101.543918 +3101.591637 +3101.620941 +3101.661500 +3101.711384 +3101.806355 +3101.844251 +3101.908453 +3101.924504 +3101.973655 +3101.988573 +3102.019209 +3102.043385 +3102.045016 +3102.060035 +3102.084777 +3102.115279 +3102.153741 +3102.181180 +3102.207953 +3102.236858 +3102.276052 +3102.319009 +3102.348579 +3102.387607 +3102.417244 +3102.445116 +3102.472422 +3102.497230 +3102.513947 +3102.540787 +3102.542219 +3102.567427 +3102.597896 +3102.625569 +3102.655738 +3102.724436 +3102.764330 +3102.790370 +3102.792035 +3102.814713 +3102.845748 +3102.875452 +3102.886208 +3102.903324 +3102.903957 +3102.930164 +3102.932162 +3102.959701 +3103.019408 +3103.063397 +3103.093633 +3103.123204 +3103.138489 +3103.184209 +3103.210616 +3103.214546 +3103.228598 +3103.242151 +3103.271988 +3103.302591 +3103.330496 +3103.349344 +3103.418175 +3103.436224 +3103.481412 +3103.509384 +3103.544116 +3103.602391 +3103.648844 +3103.696130 +3103.707852 +3103.728565 +3103.755338 +3103.759201 +3103.833926 +3103.907286 +3103.924768 +3103.951941 +3103.967792 +3103.968658 +3103.996030 +3104.054771 +3104.113546 +3104.142850 +3104.161198 +3104.175351 +3104.204488 +3104.262663 +3104.337255 +3104.351641 +3104.398993 +3104.490535 +3104.537688 +3104.552939 +3104.569223 +3104.583908 +3104.615643 +3104.630928 +3104.678614 +3104.708683 +3104.738986 +3104.784274 +3104.831660 +3104.847811 +3114.892256 +3115.890024 +3116.886793 +3117.886626 +3124.886219 +3125.087684 +3125.187884 +3125.387983 +3125.488083 +3126.588282 +3127.488081 +3127.588148 +3127.788314 +3127.888314 +3128.088314 +3128.188314 +3128.288147 +3128.587780 +3128.687947 +3128.988180 +3129.088180 +3129.288313 +3129.388046 +3129.788012 +3134.937358 +3135.037424 +3135.123372 +3135.208453 +3135.245350 +3135.363132 +3135.517544 +3135.555106 +3135.653641 +3135.692935 +3135.712549 +3135.789538 +3135.801626 +3135.884443 +3135.945482 +3135.992335 +3136.065462 +3136.102958 +3136.137024 +3136.162631 +3136.176617 +3136.235925 +3136.263264 +3136.328266 +3136.367393 +3136.393300 +3136.468858 +3136.502758 +3136.503856 +3136.542518 +3136.585475 +3136.609917 +3136.665228 +3136.719640 +3136.761532 +3136.798362 +3136.826767 +3136.876184 +3136.916710 +3136.946613 +3136.972654 +3137.010183 +3137.037822 +3137.072987 +3137.116077 +3137.140053 +3137.168591 +3137.191968 +3137.219573 +3137.273386 +3137.315877 +3137.332294 +3137.372154 +3137.404155 +3137.417742 +3137.429164 +3137.458801 +3137.498960 +3137.530729 +3137.572154 +3137.601724 +3137.640952 +3137.670222 +3137.699426 +3137.714012 +3137.726333 +3137.741251 +3137.784241 +3137.811980 +3137.853139 +3137.906819 +3137.927065 +3137.998027 +3138.024235 +3138.056136 +3138.070288 +3138.083009 +3138.126266 +3138.156635 +3138.172819 +3138.186938 +3138.200691 +3138.243448 +3138.275916 +3138.304720 +3138.349442 +3138.379113 +3138.396362 +3138.421204 +3138.440518 +3138.470255 +3138.470654 +3138.499026 +3138.530894 +3138.557867 +3138.575849 +3138.604221 +3138.653005 +3138.678446 +3138.694197 +3138.712745 +3138.728097 +3138.757068 +3138.815409 +3138.849175 +3138.888869 +3138.907883 +3138.924667 +3138.970254 +3139.014543 +3139.060564 +3139.090501 +3139.107650 +3139.139551 +3139.165725 +3139.198126 +3139.224866 +3139.247810 +3139.264393 +3139.295429 +3139.322402 +3139.337686 +3139.338985 +3139.380377 +3139.393997 +3139.409148 +3139.422468 +3139.449275 +3139.480610 +3139.522168 +3139.538985 +3139.554070 +3139.580743 +3139.619771 +3139.637586 +3139.650074 +3139.679844 +3139.695861 +3139.716940 +3139.760963 +3139.791266 +3139.806217 +3139.819737 +3139.847143 +3139.875049 +3149.886427 +3150.886126 +3150.892420 +3151.890821 +3159.891479 +3160.487416 +3160.587948 +3160.687815 +3160.887848 +3160.987848 +3161.387914 +3161.687947 +3162.188146 +3162.288213 +3162.388246 +3162.487813 +3162.687979 +3163.088112 +3163.287946 +3163.487945 +3163.491042 +3163.587945 +3163.887479 +3163.987878 +3164.188078 +3164.387978 +3170.006354 +3170.120340 +3170.157236 +3170.253040 +3170.299627 +3170.374252 +3170.420373 +3170.492101 +3170.528964 +3170.598095 +3170.641518 +3170.711048 +3170.750143 +3170.824069 +3170.851541 +3171.033792 +3171.077615 +3171.115111 +3171.157768 +3171.195130 +3171.232127 +3171.293399 +3171.328131 +3171.366925 +3171.380412 +3171.416242 +3171.515210 +3171.528230 +3171.568057 +3171.596462 +3171.622969 +3171.648343 +3171.710148 +3171.737521 +3171.765193 +3171.803655 +3171.832026 +3171.859066 +3171.872819 +3171.938819 +3171.964760 +3172.003155 +3172.047344 +3172.061830 +3172.110581 +3172.132359 +3172.175982 +3172.232492 +3172.260597 +3172.286538 +3172.322402 +3172.358766 +3172.386338 +3172.425432 +3172.484873 +3172.512911 +3172.591200 +3172.628729 +3172.659065 +3172.686138 +3172.712112 +3172.775548 +3172.803620 +3172.818306 +3172.846477 +3172.870553 +3172.906684 +3172.932724 +3172.962561 +3172.992365 +3173.019171 +3173.049141 +3173.080310 +3173.107416 +3173.138485 +3173.155834 +3173.182375 +3173.184306 +3173.212578 +3173.244113 +3173.272051 +3173.300556 +3173.330227 +3173.346743 +3173.378045 +3173.406450 +3173.437652 +3173.508948 +3173.526597 +3173.554269 +3173.572984 +3173.598125 +3173.618038 +3173.646244 +3173.676247 +3173.704219 +3173.734622 +3173.780209 +3173.809946 +3173.824265 +3173.851538 +3173.892497 +3173.911278 +3173.940382 +3173.957166 +3173.972484 +3173.973183 +3174.001255 +3174.033922 +3174.076979 +3174.078577 +3174.135487 +3174.189400 +3174.226862 +3174.258597 +3174.290565 +3174.314175 +3174.374315 +3174.404984 +3174.446809 +3174.486269 +3174.486835 +3174.532490 +3174.561794 +3174.575347 +3174.601887 +3174.618271 +3174.646609 +3174.677911 +3174.723765 +3174.726629 +3174.758930 +3174.772083 +3174.786502 +3174.800921 +3174.827428 +3174.872449 +3184.886126 +3184.889855 +3188.890251 +3189.885821 +3189.886321 +3190.188618 +3194.986915 +3195.087448 +3195.187647 +3195.287814 +3195.387747 +3195.487214 +3195.587047 +3195.587547 +3195.687547 +3195.787713 +3195.987214 +3195.987547 +3196.087613 +3196.187713 +3196.587746 +3196.787579 +3197.687179 +3197.787145 +3197.787578 +3197.790342 +3198.190541 +3198.387011 +3198.487411 +3198.587544 +3198.787544 +3198.887644 +3198.987211 +3199.087244 +3199.387177 +3199.687243 +3204.894198 +3204.904454 +3205.059865 +3205.185007 +3205.210181 +3205.328396 +3205.370221 +3205.429595 +3205.468856 +3205.528829 +3205.566724 +3205.631127 +3205.713244 +3205.749874 +3205.809814 +3205.857067 +3206.011612 +3206.034290 +3206.060697 +3206.084939 +3206.134922 +3206.160297 +3206.185605 +3206.221236 +3206.278845 +3206.305751 +3206.329594 +3206.379311 +3206.406284 +3206.439651 +3206.466324 +3206.505252 +3206.543713 +3206.568355 +3206.622734 +3206.632857 +3206.658665 +3206.688502 +3206.729760 +3206.755701 +3206.791532 +3206.793097 +3206.817706 +3206.864092 +3206.905484 +3206.936520 +3206.973250 +3207.013210 +3207.055001 +3207.081675 +3207.106916 +3207.142114 +3207.168454 +3207.182041 +3207.235854 +3207.261028 +3207.288301 +3207.313443 +3207.352770 +3207.399490 +3207.448641 +3207.471418 +3207.498557 +3207.524298 +3207.550772 +3207.575347 +3207.598591 +3207.623699 +3207.649939 +3207.676746 +3207.704784 +3207.731358 +3207.756632 +3207.794395 +3207.794927 +3207.819336 +3207.846376 +3207.872483 +3207.899090 +3207.926063 +3207.954168 +3207.978943 +3208.006016 +3208.032823 +3208.071217 +3208.125829 +3208.177977 +3208.205883 +3208.235153 +3208.246575 +3208.260928 +3208.288000 +3208.393728 +3208.416805 +3208.444810 +3208.470684 +3208.488000 +3208.525862 +3208.540448 +3208.554867 +3208.568919 +3208.595459 +3208.665856 +3208.746342 +3208.762659 +3208.792795 +3208.818236 +3208.887434 +3208.917837 +3208.945243 +3208.997357 +3209.012342 +3209.096957 +3209.167254 +3209.182372 +3209.209212 +3209.234753 +3209.238083 +3209.249505 +3209.265122 +3209.277910 +3209.292262 +3209.320067 +3209.365189 +3209.392628 +3209.573114 +3209.628725 +3209.686267 +3209.702152 +3209.729058 +3209.745841 +3209.761326 +3209.822198 +3209.834452 +3220.886123 +3221.886455 +3221.891184 +3223.891648 +3229.986547 +3230.086946 +3230.287246 +3230.787279 +3231.087378 +3231.387345 +3231.587411 +3231.687444 +3231.887377 +3232.287510 +3232.387277 +3232.486844 +3232.487477 +3232.587410 +3232.686910 +3232.787510 +3232.887110 +3232.987310 +3233.086610 +3233.087043 +3233.287376 +3233.587009 +3233.587442 +3233.687043 +3233.890372 +3233.986143 +3233.987009 +3233.989373 +3234.087375 +3234.587008 +3234.687008 +3239.951539 +3240.001688 +3240.216806 +3240.254069 +3240.340416 +3240.388135 +3240.459963 +3240.581275 +3240.625797 +3240.719004 +3240.749440 +3240.784372 +3240.810679 +3240.896826 +3240.937685 +3240.961927 +3241.022400 +3241.053935 +3241.091664 +3241.156699 +3241.179376 +3241.222866 +3241.259396 +3241.297325 +3241.297924 +3241.343279 +3241.366955 +3241.432889 +3241.471084 +3241.497691 +3241.545410 +3241.570718 +3241.620468 +3241.675513 +3241.697591 +3241.719136 +3241.745243 +3241.768786 +3241.804950 +3241.815373 +3241.838816 +3241.887101 +3241.934687 +3241.962059 +3241.987068 +3242.009412 +3242.040181 +3242.068153 +3242.130790 +3242.161160 +3242.211476 +3242.238083 +3242.263724 +3242.291763 +3242.320101 +3242.345009 +3242.372782 +3242.453035 +3242.480873 +3242.508612 +3242.535985 +3242.575279 +3242.603284 +3242.618036 +3242.658163 +3242.658829 +3242.682771 +3242.699122 +3242.722798 +3242.749438 +3242.778043 +3242.831189 +3242.847373 +3242.861426 +3242.875678 +3242.916271 +3242.972048 +3242.987833 +3243.037283 +3243.076910 +3243.130090 +3243.171382 +3243.199787 +3243.225262 +3243.227559 +3243.239647 +3243.269018 +3243.295991 +3243.312940 +3243.325395 +3243.339214 +3243.355065 +3243.399221 +3243.413473 +3243.439214 +3243.456064 +3243.469384 +3243.525961 +3243.554898 +3243.568751 +3243.581805 +3243.596357 +3243.635617 +3243.636184 +3243.651268 +3243.679906 +3243.778474 +3243.846906 +3243.862624 +3243.874845 +3243.918135 +3243.931754 +3243.943776 +3243.960426 +3243.987898 +3244.002217 +3244.032420 +3244.059393 +3244.075344 +3244.091594 +3244.130222 +3244.167818 +3244.169650 +3244.184435 +3244.207578 +3244.232587 +3244.246573 +3244.258427 +3244.273546 +3244.288164 +3244.301717 +3244.316836 +3244.330755 +3244.359027 +3244.387498 +3244.402117 +3244.416602 +3244.446572 +3244.475710 +3244.477142 +3244.518500 +3244.532819 +3244.533119 +3244.549669 +3244.560825 +3244.590528 +3244.591993 +3244.604980 +3244.631987 +3244.748137 +3244.762589 +3244.792160 +3244.820132 +3244.873012 +3254.885356 +3255.886421 +3255.889818 +3256.889151 +3258.885253 +3258.885919 +3258.891746 +3264.992706 +3265.086978 +3265.287144 +3265.387277 +3265.487277 +3265.686911 +3265.886944 +3266.387210 +3266.487276 +3266.587010 +3266.787409 +3266.887376 +3267.187442 +3267.287542 +3267.687242 +3267.787342 +3267.987441 +3268.087508 +3268.487341 +3268.586708 +3268.587074 +3268.687374 +3268.886741 +3268.887141 +3269.086974 +3269.087473 +3269.187540 +3269.287540 +3269.487173 +3269.587273 +3274.986002 +3275.096958 +3275.212476 +3275.313008 +3275.369885 +3275.425096 +3275.492928 +3275.493894 +3275.559928 +3275.657097 +3275.694993 +3275.726328 +3275.771882 +3275.809012 +3275.848439 +3275.920201 +3275.945742 +3276.009345 +3276.065655 +3276.098689 +3276.125428 +3276.272914 +3276.287633 +3276.332221 +3276.383137 +3276.417236 +3276.449537 +3276.472448 +3276.508045 +3276.546940 +3276.561525 +3276.602284 +3276.628125 +3276.666487 +3276.711475 +3276.714006 +3276.739747 +3276.766021 +3276.790762 +3276.817636 +3276.857362 +3276.881738 +3276.906513 +3276.947272 +3276.973679 +3277.069084 +3277.096323 +3277.120765 +3277.135984 +3277.161391 +3277.202650 +3277.228691 +3277.271581 +3277.298155 +3277.338148 +3277.365720 +3277.391761 +3277.420266 +3277.476543 +3277.504315 +3277.570782 +3277.586766 +3277.615903 +3277.643975 +3277.688697 +3277.716669 +3277.730389 +3277.758993 +3277.785134 +3277.799453 +3277.868750 +3277.896689 +3277.899386 +3277.927358 +3277.944508 +3277.985034 +3278.014238 +3278.046106 +3278.071014 +3278.101117 +3278.118833 +3278.174744 +3278.220598 +3278.247205 +3278.261157 +3278.302816 +3278.318666 +3278.330421 +3278.346905 +3278.373445 +3278.402716 +3278.417967 +3278.434018 +3278.449535 +3278.504680 +3278.524294 +3278.538979 +3278.550235 +3278.581037 +3278.610075 +3278.626358 +3278.654364 +3278.669648 +3278.686531 +3278.713971 +3278.733418 +3278.745206 +3278.760391 +3278.790760 +3278.835216 +3278.861390 +3278.890028 +3278.934150 +3278.948602 +3278.961356 +3278.991093 +3279.017866 +3279.034783 +3279.067816 +3279.094057 +3279.108143 +3279.135482 +3279.162322 +3279.175775 +3279.231419 +3279.259658 +3279.289261 +3279.330720 +3279.369981 +3279.383800 +3279.400617 +3279.412438 +3279.439777 +3279.454862 +3279.482102 +3279.515735 +3279.544706 +3279.589727 +3279.621296 +3279.651266 +3279.666351 +3279.682102 +3279.727390 +3279.744772 +3279.804679 +3279.832018 +3279.850533 +3279.865718 +3279.882068 +3289.889950 +3289.891515 +3292.886451 +3292.890547 +3294.891910 +3299.889507 +3300.087143 +3300.886343 +3300.887042 +3301.087675 +3301.387674 +3301.487508 +3301.686975 +3301.787074 +3302.087041 +3302.387074 +3302.387440 +3302.487573 +3302.587107 +3302.587540 +3302.687673 +3302.787640 +3302.887240 +3302.887673 +3302.986940 +3303.086307 +3303.087007 +3303.287140 +3303.487073 +3303.586939 +3303.587206 +3303.687006 +3303.687406 +3303.787106 +3304.387438 +3304.487471 +3304.587538 +3304.686972 +3304.687205 +3304.787005 +3304.887338 +3309.888565 +3310.046440 +3310.154066 +3310.283303 +3310.347006 +3310.385767 +3310.438847 +3310.569816 +3310.619267 +3310.675277 +3310.747372 +3310.782637 +3310.824395 +3310.899020 +3310.936849 +3311.005314 +3311.059759 +3311.082670 +3311.203449 +3311.230855 +3311.267451 +3311.338846 +3311.402483 +3311.441077 +3311.488397 +3311.513971 +3311.540811 +3311.603115 +3311.656895 +3311.681570 +3311.710208 +3311.737348 +3311.773145 +3311.815070 +3311.854231 +3311.882069 +3311.950601 +3311.987197 +3312.042842 +3312.108243 +3312.139012 +3312.163687 +3312.203714 +3312.230454 +3312.258493 +3312.285765 +3312.313937 +3312.336914 +3312.396954 +3312.432985 +3312.459058 +3312.508576 +3312.537513 +3312.550367 +3312.591293 +3312.620197 +3312.666085 +3312.694789 +3312.745905 +3312.772744 +3312.803147 +3312.827090 +3312.871845 +3312.948069 +3312.975175 +3313.002681 +3313.032917 +3313.048169 +3313.075841 +3313.103147 +3313.133184 +3313.148935 +3313.190793 +3313.220530 +3313.247403 +3313.264352 +3313.321062 +3313.380669 +3313.409474 +3313.442074 +3313.470046 +3313.486530 +3313.513669 +3313.544006 +3313.546070 +3313.560456 +3313.577872 +3313.633882 +3313.663852 +3313.679370 +3313.694322 +3313.709007 +3313.739244 +3313.755394 +3313.770646 +3313.782767 +3313.801515 +3313.831751 +3313.843573 +3313.906776 +3313.920129 +3313.952397 +3314.042174 +3314.058824 +3314.075174 +3314.088261 +3314.117332 +3314.182234 +3314.207508 +3314.227888 +3314.255360 +3314.288128 +3314.329320 +3314.346669 +3314.361554 +3314.377172 +3314.389360 +3314.435114 +3314.465450 +3314.481567 +3314.493888 +3314.509872 +3314.523492 +3314.552663 +3314.570179 +3314.584697 +3314.599616 +3314.615300 +3314.645503 +3314.705044 +3314.718796 +3314.745137 +3314.760455 +3314.862819 +3324.885919 +3324.889482 +3325.891113 +3327.892443 +3328.889611 +3329.891275 +3331.873258 +3331.950814 +3334.889539 +3335.087208 +3335.187574 +3335.387674 +3335.787773 +3335.987806 +3336.586873 +3336.587373 +3336.687472 +3336.787472 +3336.987106 +3336.987439 +3337.087738 +3337.187139 +3337.187539 +3337.287472 +3337.487505 +3337.787238 +3337.787771 +3337.887804 +3337.987904 +3338.087871 +3338.687504 +3338.787537 +3338.887570 +3344.889795 +3344.895956 +3344.981537 +3345.011673 +3345.051833 +3345.125859 +3345.126991 +3345.178739 +3345.266119 +3345.327391 +3345.389662 +3345.452532 +3345.492325 +3345.538846 +3345.568616 +3345.604546 +3345.673544 +3345.707144 +3345.729588 +3345.764953 +3345.849468 +3345.914603 +3345.959591 +3346.008376 +3346.032252 +3346.071379 +3346.119897 +3346.173477 +3346.193723 +3346.242075 +3346.329055 +3346.351432 +3346.376674 +3346.391059 +3346.426257 +3346.451232 +3346.475808 +3346.514469 +3346.563220 +3346.604712 +3346.631152 +3346.653829 +3346.670213 +3346.695155 +3346.719763 +3346.759557 +3346.772977 +3346.798951 +3346.827089 +3346.853496 +3346.903879 +3346.929054 +3346.943273 +3346.969247 +3346.994755 +3347.021961 +3347.047802 +3347.077772 +3347.105244 +3347.131918 +3347.200416 +3347.200948 +3347.239543 +3347.279803 +3347.293090 +3347.309873 +3347.321894 +3347.349566 +3347.377572 +3347.405743 +3347.448168 +3347.476672 +3347.500815 +3347.527255 +3347.552763 +3347.586662 +3347.625257 +3347.751164 +3347.779103 +3347.809273 +3347.835114 +3347.862753 +3347.889626 +3347.906242 +3347.948067 +3347.973575 +3348.040708 +3348.068347 +3348.082200 +3348.107974 +3348.147701 +3348.217264 +3348.232150 +3348.257391 +3348.287428 +3348.343638 +3348.398983 +3348.434780 +3348.460021 +3348.485296 +3348.501480 +3348.552329 +3348.595919 +3348.623291 +3348.647134 +3348.691856 +3348.722659 +3348.751696 +3348.784963 +3348.812569 +3348.830517 +3348.859588 +3348.919761 +3348.965016 +3348.979168 +3349.052029 +3349.070177 +3349.159122 +3349.220061 +3349.299847 +3349.313634 +3349.357856 +3349.375305 +3349.439374 +3349.470676 +3349.560020 +3349.578269 +3349.684862 +3349.727886 +3349.779334 +3349.839607 +3349.854059 +3349.870443 +3359.890047 +3360.360409 +3360.889979 +3361.887048 +3361.892276 +3363.890775 +3369.886141 +3369.891802 +3369.986773 +3370.287739 +3370.387539 +3370.387972 +3370.487705 +3370.587638 +3370.687605 +3370.787572 +3370.788038 +3370.987638 +3371.088071 +3371.187671 +3371.188104 +3371.287338 +3371.287671 +3371.387538 +3371.487604 +3371.587304 +3371.687604 +3371.688037 +3371.787837 +3372.187437 +3372.487903 +3372.787969 +3372.987936 +3373.087836 +3373.187869 +3373.988567 +3374.088634 +3374.288001 +3374.288434 +3374.488534 +3374.587901 +3374.887900 +3374.888067 +3374.888367 +3379.903979 +3379.926490 +3379.991192 +3379.992691 +3380.068615 +3380.110206 +3380.112437 +3380.225224 +3380.246503 +3380.300050 +3380.310139 +3380.322527 +3380.357492 +3380.359790 +3380.412504 +3380.454395 +3380.547768 +3380.590525 +3380.613070 +3380.637945 +3380.708474 +3380.756393 +3380.839876 +3380.901281 +3380.952363 +3381.012603 +3381.066116 +3381.092756 +3381.157491 +3381.193056 +3381.218563 +3381.245237 +3381.315899 +3381.338943 +3381.389159 +3381.403911 +3381.478204 +3381.506342 +3381.531350 +3381.560455 +3381.598417 +3381.637411 +3381.663818 +3381.688693 +3381.728886 +3381.769012 +3381.805176 +3381.823458 +3381.874540 +3381.953761 +3381.991590 +3382.026188 +3382.062885 +3382.124190 +3382.159488 +3382.212469 +3382.241972 +3382.268246 +3382.297384 +3382.325056 +3382.352462 +3382.380301 +3382.408572 +3382.453427 +3382.523790 +3382.560220 +3382.590823 +3382.647133 +3382.676937 +3382.706308 +3382.731649 +3382.761119 +3382.782931 +3382.818196 +3382.843903 +3382.883131 +3382.923224 +3382.949697 +3382.977869 +3383.005841 +3383.045668 +3383.073740 +3383.100213 +3383.114832 +3383.145934 +3383.162051 +3383.188392 +3383.229883 +3383.290589 +3383.307306 +3383.336543 +3383.363483 +3383.410070 +3383.438674 +3383.466080 +3383.508971 +3383.526120 +3383.553826 +3383.571541 +3383.598248 +3383.628251 +3383.654125 +3383.684995 +3383.702344 +3383.732214 +3383.803776 +3383.835744 +3383.850329 +3383.881065 +3383.895351 +3383.911534 +3383.953925 +3383.984295 +3383.996516 +3384.037675 +3384.063616 +3384.077502 +3384.091521 +3384.107771 +3384.134644 +3384.151228 +3384.264648 +3384.293352 +3384.339073 +3384.355723 +3384.370841 +3384.383562 +3384.410668 +3384.426885 +3384.444135 +3384.470575 +3384.512633 +3384.527518 +3384.542736 +3384.572240 +3384.601710 +3384.629349 +3384.661217 +3384.687125 +3384.703075 +3384.761850 +3384.792020 +3384.809003 +3384.838939 +3384.855689 +3384.871407 +3394.887115 +3394.891344 +3396.887179 +3397.891407 +3398.890740 +3404.886605 +3404.890501 +3405.088203 +3405.188470 +3405.388469 +3405.588602 +3405.788635 +3405.888635 +3405.988635 +3406.088602 +3406.188102 +3406.188535 +3406.288602 +3406.488601 +3406.588568 +3406.688235 +3406.788701 +3406.888701 +3406.988201 +3407.088701 +3407.188135 +3407.188667 +3407.288134 +3407.288634 +3407.488667 +3407.888667 +3407.988633 +3408.788666 +3408.888666 +3409.288732 +3409.488598 +3409.888198 +3409.888665 +3414.989925 +3415.155759 +3415.197584 +3415.296518 +3415.400714 +3415.467480 +3415.518529 +3415.577237 +3415.628486 +3415.684297 +3415.709371 +3415.757057 +3415.796784 +3415.834213 +3415.870943 +3415.954926 +3416.016531 +3416.049198 +3416.119661 +3416.149264 +3416.186294 +3416.239441 +3416.262118 +3416.303077 +3416.382265 +3416.405341 +3416.482797 +3416.520360 +3416.559187 +3416.574505 +3416.611169 +3416.638342 +3416.664049 +3416.691888 +3416.769544 +3416.823157 +3416.850196 +3416.893153 +3416.948231 +3416.987892 +3417.015264 +3417.038208 +3417.085594 +3417.114631 +3417.151961 +3417.178634 +3417.231581 +3417.276836 +3417.314498 +3417.341804 +3417.380732 +3417.421291 +3417.438674 +3417.477069 +3417.506839 +3417.533412 +3417.560052 +3417.588324 +3417.614897 +3417.645900 +3417.657821 +3417.675270 +3417.698947 +3417.717028 +3417.744568 +3417.785293 +3417.816029 +3417.840971 +3417.858054 +3417.884994 +3417.914864 +3417.929915 +3417.957088 +3417.986492 +3418.014830 +3418.072772 +3418.073405 +3418.099579 +3418.115863 +3418.145100 +3418.173139 +3418.198813 +3418.230348 +3418.289655 +3418.318660 +3418.349762 +3418.375503 +3418.405240 +3418.448530 +3418.465013 +3418.478733 +3418.496482 +3418.507970 +3418.525852 +3418.553258 +3418.569175 +3418.597714 +3418.626851 +3418.641936 +3418.685692 +3418.700377 +3418.759185 +3418.789621 +3418.817693 +3418.847797 +3418.863814 +3418.879332 +3418.894450 +3418.938439 +3418.967610 +3419.013697 +3419.041003 +3419.085092 +3419.149295 +3419.164480 +3419.194583 +3419.208202 +3419.224420 +3419.240870 +3419.257153 +3419.285592 +3419.301209 +3419.329614 +3419.343800 +3419.419058 +3419.478565 +3419.482728 +3419.495715 +3419.526517 +3419.555755 +3419.569308 +3419.615561 +3419.633244 +3419.645631 +3419.664712 +3419.692618 +3419.706803 +3419.724652 +3419.756653 +3419.787856 +3419.803440 +3419.817692 +3419.876567 +3429.889977 +3430.886812 +3431.886811 +3432.886843 +3434.892036 +3439.889767 +3439.986903 +3440.087336 +3440.187602 +3440.587602 +3440.687202 +3440.787668 +3440.887202 +3440.887568 +3440.987635 +3441.087035 +3441.087468 +3441.687667 +3441.787634 +3441.790398 +3441.987167 +3442.187667 +3442.287167 +3442.487167 +3442.687699 +3442.887699 +3443.387133 +3443.387466 +3443.687565 +3443.987765 +3444.087065 +3444.087498 +3444.187065 +3444.287098 +3444.387132 +3444.387565 +3444.787564 +3444.887497 +3449.893087 +3449.901978 +3450.030882 +3450.171908 +3450.218794 +3450.258421 +3450.307239 +3450.341238 +3450.442903 +3450.550429 +3450.602910 +3450.710802 +3450.756789 +3450.781864 +3450.827185 +3450.868211 +3450.889156 +3450.948497 +3450.975403 +3451.022989 +3451.056822 +3451.092187 +3451.129582 +3451.152559 +3451.188257 +3451.235310 +3451.259353 +3451.323455 +3451.359785 +3451.384860 +3451.410868 +3451.470574 +3451.508170 +3451.595316 +3451.637141 +3451.669475 +3451.720458 +3451.768543 +3451.795782 +3451.883827 +3451.947930 +3451.979132 +3452.060084 +3452.139105 +3452.177966 +3452.241936 +3452.267677 +3452.302475 +3452.330047 +3452.383927 +3452.406138 +3452.432911 +3452.457686 +3452.469042 +3452.495449 +3452.496081 +3452.508103 +3452.530347 +3452.554989 +3452.569008 +3452.591486 +3452.656221 +3452.668575 +3452.693983 +3452.721289 +3452.760117 +3452.798479 +3452.815928 +3452.825818 +3452.853657 +3452.890153 +3452.906204 +3452.946730 +3452.972438 +3452.987656 +3453.012731 +3453.026284 +3453.027383 +3453.053124 +3453.065378 +3453.067876 +3453.091352 +3453.103240 +3453.153889 +3453.165378 +3453.188022 +3453.218392 +3453.277999 +3453.305205 +3453.345065 +3453.360616 +3453.385624 +3453.438072 +3453.489687 +3453.550193 +3453.567342 +3453.593350 +3453.619257 +3453.635641 +3453.661282 +3453.676533 +3453.692017 +3453.714362 +3453.728681 +3453.754688 +3453.791818 +3453.797345 +3453.832876 +3453.878231 +3453.893849 +3453.907935 +3453.977365 +3453.989386 +3454.049726 +3454.051757 +3454.065211 +3454.105737 +3454.120955 +3454.268540 +3454.299776 +3454.314861 +3454.342833 +3454.356319 +3454.381527 +3454.398877 +3454.424651 +3454.601773 +3454.675733 +3454.735073 +3454.803205 +; +1277.934053 +1298.031902 +1302.032031 +1308.332991 +1308.733157 +1344.033088 +1346.933418 +1360.970667 +1360.970833 +1360.971033 +1360.971233 +1367.966065 +1368.966896 +1375.966123 +1376.167222 +1376.167522 +1376.267455 +1376.567654 +1377.268220 +1377.368220 +1377.368586 +1377.468186 +1377.568253 +1377.568752 +1378.168452 +1378.268518 +1378.368618 +1378.668485 +1379.368484 +1379.568517 +1379.668750 +1379.768017 +1379.868783 +1379.968617 +1380.067784 +1380.168683 +1380.268050 +1380.668716 +1380.768849 +1380.869082 +1380.968749 +1386.005107 +1386.569609 +1386.805673 +1387.208803 +1387.405472 +1387.456088 +1387.546298 +1387.658719 +1387.708602 +1387.883194 +1387.960317 +1388.027117 +1388.193250 +1388.391252 +1388.430513 +1388.675934 +1388.756254 +1388.930446 +1388.974335 +1389.105304 +1389.164445 +1389.269340 +1389.686755 +1389.717525 +1389.774834 +1389.804937 +1389.835107 +1389.852423 +1389.881061 +1389.911664 +1390.111064 +1390.127314 +1390.219222 +1390.245097 +1390.272935 +1390.345629 +1390.374067 +1390.388520 +1390.404803 +1390.435972 +1390.450125 +1390.466075 +1390.482093 +1390.508500 +1390.527214 +1390.583258 +1390.604437 +1390.629345 +1390.658716 +1390.722785 +1390.764943 +1390.809665 +1390.826448 +1390.857417 +1390.875066 +1390.935739 +1400.967064 +1401.967662 +1411.268685 +1411.468885 +1411.668785 +1411.669184 +1411.769018 +1412.569217 +1413.069250 +1413.169150 +1413.869482 +1414.469348 +1414.768782 +1415.069414 +1415.069647 +1415.269314 +1415.969446 +1421.272471 +1421.466044 +1421.713097 +1421.779131 +1422.310765 +1422.364845 +1422.546996 +1422.665910 +1422.839137 +1422.978197 +1423.350924 +1423.477264 +1423.512163 +1423.631943 +1423.723485 +1423.764910 +1423.831843 +1423.990318 +1424.057251 +1424.154320 +1424.198443 +1424.281493 +1424.391316 +1424.475665 +1424.529511 +1424.614759 +1424.792115 +1424.846694 +1424.870936 +1424.916657 +1424.962977 +1425.198808 +1425.479993 +1425.537902 +1425.565840 +1425.668105 +1425.794079 +1425.823682 +1425.838268 +1425.926146 +1439.969955 +1446.270948 +1446.470981 +1446.571347 +1447.270547 +1447.271180 +1447.572145 +1447.671979 +1448.071945 +1448.171878 +1448.172145 +1448.371945 +1448.570047 +1448.671279 +1448.872244 +1449.172344 +1449.871843 +1449.972343 +1450.072409 +1450.571643 +1450.772176 +1450.972309 +1455.969107 +1455.983459 +1456.010665 +1456.475800 +1456.569872 +1456.672669 +1456.842965 +1457.023018 +1457.110031 +1457.213494 +1457.331043 +1457.443697 +1457.607700 +1457.971103 +1458.110863 +1458.202871 +1458.236371 +1458.314392 +1458.440500 +1458.604202 +1458.696610 +1458.854385 +1458.945960 +1459.001272 +1459.140366 +1459.202470 +1459.445693 +1459.490748 +1459.601437 +1459.801237 +1459.857115 +1459.962742 +1460.030308 +1460.128810 +1460.426112 +1460.493445 +1460.544660 +1460.742262 +1460.849388 +1460.955948 +1471.970956 +1474.972185 +1481.673144 +1481.773310 +1482.073843 +1482.173643 +1482.174109 +1482.273609 +1482.673309 +1482.873942 +1483.073608 +1483.473608 +1483.573741 +1483.773874 +1483.975672 +1484.173341 +1484.374007 +1484.773074 +1484.774506 +1485.174073 +1485.573606 +1485.774205 +1485.974072 +1490.971270 +1490.985122 +1491.054986 +1491.382691 +1491.489784 +1491.759880 +1491.863077 +1491.994745 +1492.143296 +1492.522683 +1492.751388 +1492.903669 +1492.968404 +1493.090448 +1493.164807 +1493.203302 +1493.387251 +1493.552386 +1493.661543 +1493.719752 +1493.791646 +1493.934304 +1494.162675 +1494.295309 +1494.322382 +1494.449921 +1494.570966 +1494.623347 +1494.664339 +1494.726710 +1494.772798 +1494.802801 +1494.852984 +1495.159744 +1495.259810 +1495.505098 +1495.630739 +1495.668468 +1495.710292 +1495.753216 +1495.810792 +1495.852284 +1495.897105 +1495.937132 +1516.272643 +1516.373242 +1516.774640 +1517.073674 +1517.674140 +1518.073906 +1518.172907 +1518.273940 +1518.474272 +1518.674139 +1518.973273 +1519.073040 +1519.774238 +1519.973072 +1520.774104 +1520.874303 +1520.974003 +1526.324980 +1526.626812 +1526.724847 +1526.804101 +1527.292812 +1527.398040 +1527.518419 +1527.655349 +1527.988782 +1528.072132 +1528.256081 +1528.879657 +1528.954082 +1528.990546 +1529.192710 +1529.300136 +1529.398237 +1529.499469 +1529.686183 +1529.773695 +1529.813655 +1530.154880 +1530.214454 +1530.417184 +1530.680854 +1530.768899 +1530.864736 +1530.890710 +1530.936997 +1530.967933 +1544.972947 +1551.573140 +1551.774206 +1551.974305 +1552.774571 +1553.474737 +1554.474636 +1554.673936 +1554.674702 +1554.974669 +1555.074469 +1555.274735 +1555.574602 +1555.774934 +1555.874468 +1555.874934 +1561.309294 +1561.536767 +1561.670466 +1561.726377 +1561.897273 +1562.324278 +1562.656479 +1562.748187 +1562.795740 +1562.939762 +1563.053082 +1563.335067 +1563.361673 +1563.548320 +1563.702099 +1563.845855 +1563.909758 +1563.984616 +1564.111190 +1564.152815 +1564.294972 +1564.471629 +1564.513354 +1564.555312 +1564.601932 +1564.702897 +1564.899268 +1564.931535 +1565.029304 +1565.201132 +1565.385248 +1565.641391 +1565.682450 +1565.853579 +1565.921045 +1565.950282 +1580.972745 +1580.973344 +1585.972473 +1586.474138 +1586.674271 +1586.874537 +1586.974470 +1586.990721 +1587.074770 +1587.274670 +1587.374570 +1587.475102 +1587.574636 +1587.793517 +1588.175068 +1588.175335 +1588.274735 +1588.474802 +1588.574868 +1588.974768 +1589.374701 +1589.474668 +1589.974800 +1590.075100 +1590.274733 +1590.674533 +1590.774733 +1596.342892 +1596.795473 +1597.006628 +1597.137297 +1597.261306 +1597.371763 +1597.522911 +1597.614286 +1597.679355 +1597.994073 +1598.051282 +1598.100866 +1598.177323 +1598.218382 +1598.581385 +1598.606560 +1598.667865 +1598.725274 +1598.840492 +1598.963969 +1599.042623 +1599.057841 +1599.172660 +1599.270728 +1599.446985 +1599.585014 +1599.640858 +1599.692206 +1599.827105 +1600.021044 +1600.114450 +1600.249049 +1600.317447 +1600.708855 +1600.823041 +1600.863667 +1600.908089 +1600.963634 +1610.973281 +1620.972838 +1621.073038 +1621.173437 +1621.373803 +1621.474036 +1621.573237 +1621.574469 +1621.773969 +1621.774502 +1622.074402 +1622.174635 +1622.274701 +1622.674634 +1622.874767 +1623.074800 +1623.174667 +1623.874666 +1623.973701 +1624.074400 +1624.274633 +1624.374067 +1624.374799 +1624.773800 +1624.774000 +1625.274698 +1625.374698 +1625.473799 +1625.974531 +1631.729737 +1632.279786 +1632.423642 +1632.489476 +1632.603695 +1632.833232 +1633.134364 +1633.664367 +1633.723441 +1633.791440 +1633.913751 +1633.954377 +1634.041956 +1634.184080 +1634.292438 +1634.318246 +1634.418645 +1634.551479 +1634.763267 +1634.804759 +1635.143986 +1635.213350 +1635.441388 +1635.541654 +1635.570692 +1635.644918 +1635.719177 +1635.796000 +1635.836326 +1635.868461 +1635.956806 +1646.972246 +1647.972145 +1655.970838 +1656.272403 +1656.572869 +1657.273268 +1657.772468 +1657.773600 +1658.473633 +1658.873666 +1658.973566 +1659.073299 +1659.373465 +1659.473765 +1659.973698 +1660.173731 +1660.473664 +1660.773331 +1666.358806 +1666.539492 +1666.600864 +1667.069062 +1667.352312 +1667.411586 +1667.559038 +1667.610720 +1667.645086 +1667.736128 +1667.919078 +1668.013217 +1668.066597 +1668.370393 +1668.482514 +1668.563100 +1668.611951 +1668.661701 +1668.715947 +1668.756706 +1668.813250 +1669.131564 +1669.174754 +1669.274488 +1669.366030 +1669.454874 +1669.588540 +1669.693069 +1669.878017 +1669.910351 +1669.954241 +1670.060368 +1670.091170 +1670.223704 +1670.256438 +1670.285609 +1670.346648 +1670.375586 +1670.462865 +1670.571090 +1670.629365 +1670.659535 +1670.688572 +1670.720973 +1670.737856 +1670.750311 +1670.782378 +1670.811316 +1670.829198 +1670.860300 +1670.933627 +1670.958402 +1681.972078 +1681.972277 +1684.972408 +1690.978096 +1691.172901 +1691.473567 +1691.673933 +1692.474232 +1692.974098 +1692.974697 +1693.173831 +1693.474131 +1694.174363 +1694.274463 +1694.574463 +1694.674329 +1694.974296 +1695.074362 +1695.273996 +1695.574328 +1700.971892 +1700.978419 +1701.002395 +1701.195502 +1701.207090 +1701.364632 +1701.527170 +1701.770226 +1701.843686 +1702.484212 +1702.655707 +1702.769193 +1702.876819 +1702.991670 +1703.149213 +1703.284277 +1703.353575 +1703.430464 +1703.617677 +1703.841020 +1703.900028 +1703.947880 +1704.005822 +1704.079315 +1704.262465 +1704.436857 +1704.488405 +1704.545914 +1704.792801 +1704.880480 +1705.048711 +1705.091635 +1705.130862 +1705.162464 +1705.190170 +1705.290502 +1705.368258 +1705.426133 +1705.568458 +1705.614212 +1705.742650 +1705.831727 +1705.907185 +1705.950409 +1717.972208 +1725.971467 +1726.073365 +1726.173499 +1726.273598 +1726.473931 +1726.574164 +1726.874164 +1726.974796 +1727.274463 +1728.074895 +1728.774495 +1729.274794 +1729.474894 +1730.074327 +1730.574859 +1730.774826 +1730.775159 +1735.972123 +1735.999429 +1736.007988 +1736.506955 +1736.793734 +1737.003258 +1737.227833 +1737.355372 +1737.634459 +1737.821472 +1737.877150 +1737.952141 +1738.013780 +1738.165994 +1738.207652 +1738.421671 +1738.567825 +1738.745880 +1738.810149 +1738.873985 +1738.911148 +1739.156869 +1739.222170 +1739.294431 +1739.350042 +1739.448011 +1739.607951 +1739.637721 +1739.690601 +1739.799992 +1739.842616 +1740.026998 +1740.151540 +1740.360730 +1740.490401 +1740.556501 +1740.587170 +1740.630227 +1740.656201 +1740.711746 +1761.173563 +1761.273996 +1761.574562 +1762.274062 +1762.375127 +1762.875160 +1763.075227 +1763.275226 +1763.375193 +1763.875126 +1764.275192 +1764.373893 +1764.475392 +1764.875092 +1764.974659 +1765.275224 +1765.475191 +1765.575391 +1765.675024 +1770.986641 +1770.994766 +1771.250310 +1771.493899 +1771.633360 +1771.672387 +1771.815711 +1772.127232 +1772.226033 +1772.453173 +1772.560165 +1772.783842 +1772.900358 +1772.952706 +1773.099825 +1773.201024 +1773.329728 +1773.469289 +1773.537387 +1773.611913 +1773.651606 +1773.859731 +1774.008249 +1774.032858 +1774.119471 +1774.162428 +1774.233357 +1774.398492 +1774.439284 +1774.522734 +1774.580410 +1774.704319 +1774.743613 +1774.875614 +1775.149840 +1775.254169 +1775.284638 +1775.552071 +1775.804251 +1775.913176 +1775.943778 +1775.969886 +1795.972230 +1795.973096 +1796.173928 +1796.374161 +1796.374394 +1796.973761 +1797.275559 +1797.575125 +1797.575525 +1797.775358 +1798.374192 +1798.974625 +1799.175424 +1799.275257 +1799.375224 +1799.974990 +1799.975523 +1800.175423 +1800.275056 +1800.375422 +1800.474989 +1800.775622 +1806.330295 +1806.930461 +1807.176015 +1807.216108 +1807.276781 +1807.487104 +1807.733091 +1807.795661 +1807.851206 +1807.952205 +1808.024432 +1808.173450 +1808.442381 +1808.482973 +1808.575847 +1808.767489 +1808.835787 +1808.893462 +1808.953835 +1808.997392 +1809.143179 +1809.487834 +1809.550272 +1809.595893 +1809.992662 +1809.993328 +1810.211377 +1810.282272 +1810.340248 +1810.412176 +1810.442412 +1810.608579 +1810.695958 +1810.936584 +1820.973271 +1822.973402 +1824.973833 +1825.973698 +1831.274093 +1831.274492 +1831.374492 +1831.474525 +1831.674525 +1831.674892 +1832.574791 +1832.875057 +1833.275389 +1833.774390 +1833.975022 +1834.175155 +1834.575322 +1834.775654 +1835.274921 +1835.275321 +1835.375188 +1835.574688 +1841.516440 +1841.645911 +1841.806183 +1841.988734 +1842.070286 +1842.211511 +1842.569986 +1842.643678 +1842.747275 +1842.915240 +1843.053435 +1843.165523 +1843.519435 +1843.610710 +1843.664989 +1843.728759 +1843.834453 +1843.894293 +1843.981806 +1844.308312 +1844.546107 +1844.638748 +1844.700819 +1844.805015 +1845.031921 +1845.073613 +1845.177276 +1845.208078 +1845.286033 +1845.327792 +1845.367086 +1845.462990 +1845.500885 +1845.543875 +1845.611474 +1845.681438 +1865.973026 +1866.873957 +1866.875123 +1867.074490 +1867.074923 +1867.374623 +1867.474989 +1867.574789 +1868.375254 +1868.475254 +1868.775187 +1868.875121 +1869.074854 +1869.274454 +1869.275020 +1869.474687 +1869.975319 +1870.175119 +1870.675252 +1870.974886 +1876.196092 +1877.134720 +1877.177177 +1877.396724 +1877.601253 +1877.678575 +1877.872381 +1878.026926 +1878.044442 +1878.171282 +1878.227659 +1878.287299 +1878.422431 +1878.453666 +1878.563123 +1878.651168 +1878.843243 +1878.961424 +1879.030655 +1879.089896 +1879.158161 +1879.248437 +1879.323229 +1879.367917 +1879.517401 +1879.574311 +1879.634617 +1879.715103 +1879.876975 +1879.927957 +1880.021430 +1880.157127 +1880.175942 +1880.246804 +1880.377107 +1880.503780 +1880.693324 +1880.770946 +1880.845938 +1880.877973 +1880.956161 +1891.972867 +1893.972964 +1894.972797 +1900.972525 +1901.373790 +1901.473889 +1901.573989 +1901.574289 +1901.673989 +1901.774255 +1901.974455 +1902.174388 +1902.274421 +1902.575054 +1902.675720 +1902.874454 +1902.974454 +1903.374687 +1903.474520 +1903.574387 +1903.774520 +1903.874353 +1903.874653 +1904.074519 +1904.074753 +1904.174486 +1904.574119 +1904.574552 +1904.874519 +1904.974519 +1905.274485 +1905.374785 +1905.774451 +1910.978375 +1911.537016 +1911.665654 +1911.713273 +1911.805314 +1912.003349 +1912.068984 +1912.198554 +1912.279573 +1912.349003 +1912.415137 +1912.538913 +1912.829689 +1912.868217 +1912.909542 +1913.111973 +1913.138347 +1913.177174 +1913.217334 +1913.311706 +1913.367184 +1913.408609 +1913.599119 +1913.645039 +1913.709974 +1913.754463 +1913.893224 +1913.936148 +1914.066384 +1914.111306 +1914.125125 +1914.152731 +1914.182568 +1914.182868 +1914.241742 +1914.386630 +1914.413737 +1914.474542 +1914.533017 +1914.562288 +1914.590393 +1914.619264 +1914.755295 +1914.840676 +1914.857359 +1914.882601 +1914.907975 +1914.982900 +1915.010306 +1915.058092 +1915.085964 +1915.206143 +1915.252630 +1915.268414 +1915.297152 +1915.343239 +1915.387029 +1915.476839 +1915.506376 +1915.549033 +1915.576839 +1915.605910 +1915.622227 +1915.681501 +1915.713968 +1915.739743 +1915.757658 +1915.797618 +1915.824458 +1915.839409 +1915.854861 +1915.929519 +1915.957058 +1927.972797 +1928.972663 +1930.972994 +1935.972723 +1936.072956 +1936.172756 +1936.172989 +1936.173488 +1936.273222 +1936.373422 +1936.473588 +1937.274386 +1937.374020 +1937.574286 +1938.774485 +1939.372186 +1939.372753 +1939.474218 +1939.874284 +1940.574283 +1940.674483 +1945.971614 +1946.224394 +1946.332253 +1946.385266 +1946.661024 +1946.772945 +1946.834716 +1946.900551 +1946.998386 +1947.013204 +1947.296621 +1947.442441 +1947.562255 +1947.741675 +1947.880237 +1948.021695 +1948.095321 +1948.124292 +1948.162154 +1948.325458 +1948.366117 +1948.533549 +1948.593955 +1948.634315 +1948.647901 +1948.675873 +1948.740176 +1948.779303 +1948.943506 +1949.043139 +1949.070512 +1949.100182 +1949.128087 +1949.217531 +1949.273608 +1949.328054 +1949.431151 +1949.472110 +1949.501647 +1949.555426 +1949.643971 +1949.660521 +1949.703145 +1949.747434 +1949.886029 +1950.021127 +1950.179901 +1950.272442 +1950.318729 +1950.360987 +1950.479601 +1950.506141 +1950.571309 +1950.628918 +1950.656757 +1950.745535 +1950.775105 +1950.805175 +1950.873107 +1950.903377 +1950.969111 +1961.971265 +1961.971864 +1962.971930 +1971.973752 +1972.173752 +1972.573485 +1973.173784 +1973.373751 +1973.474050 +1973.572852 +1973.773517 +1973.974316 +1974.073617 +1974.074583 +1974.373583 +1974.874082 +1975.672750 +1981.606776 +1981.874775 +1982.667614 +1982.775406 +1982.950431 +1983.210871 +1983.246934 +1983.285829 +1983.360021 +1983.428419 +1983.462985 +1983.549831 +1983.662618 +1983.875705 +1984.236411 +1984.334679 +1984.387293 +1984.522258 +1984.786294 +1984.824589 +1984.884628 +1985.037043 +1985.140606 +1985.171042 +1985.228318 +1985.340073 +1985.377235 +1985.407738 +1985.556822 +1985.592986 +1985.631381 +1985.659686 +1985.806572 +1985.847598 +1997.972960 +1998.972793 +2000.971825 +2000.973190 +2005.971853 +2005.972420 +2006.274317 +2006.473984 +2006.474417 +2006.490068 +2006.574450 +2006.774350 +2007.474716 +2007.874482 +2007.974182 +2008.073983 +2008.074415 +2008.174948 +2009.074348 +2009.674813 +2009.774747 +2010.174680 +2010.374979 +2010.574779 +2010.575212 +2010.675079 +2010.774080 +2016.498283 +2016.663984 +2016.761087 +2016.844570 +2016.960054 +2017.031982 +2017.203977 +2017.371010 +2017.542937 +2017.661985 +2017.755791 +2017.809138 +2017.914033 +2018.102444 +2018.157056 +2018.262184 +2018.490156 +2018.584295 +2018.679533 +2018.691987 +2018.804541 +2018.891521 +2018.973838 +2019.213099 +2019.239772 +2019.421657 +2019.489422 +2019.760751 +2019.955756 +2019.991287 +2020.095016 +2020.153990 +2020.195882 +2020.229515 +2020.259751 +2020.323088 +2020.338706 +2020.367710 +2020.452192 +2020.601276 +2020.671439 +2020.775568 +2020.820523 +2020.873603 +2030.974093 +2032.973824 +2041.073950 +2041.775148 +2042.175181 +2042.375314 +2042.475713 +2042.575680 +2042.974514 +2042.975646 +2043.075579 +2043.076079 +2043.175979 +2043.875279 +2043.975012 +2043.975345 +2044.075778 +2044.275611 +2044.276411 +2044.676177 +2044.774345 +2044.974412 +2045.575477 +2045.875110 +2045.975576 +2051.011735 +2051.416563 +2051.486293 +2051.673173 +2051.790889 +2051.916130 +2052.076869 +2052.176969 +2052.244468 +2052.534577 +2052.691287 +2052.862183 +2052.914464 +2053.183661 +2053.403175 +2053.525519 +2053.724287 +2053.836374 +2053.904739 +2053.945199 +2054.123354 +2054.218991 +2054.428881 +2054.540902 +2054.671738 +2054.783992 +2054.874235 +2055.086057 +2055.125517 +2055.310932 +2055.388321 +2055.602673 +2055.682593 +2055.704937 +2055.793382 +2055.864178 +2055.943465 +2068.974255 +2070.974419 +2078.074812 +2078.675810 +2078.976143 +2079.275243 +2080.475242 +2086.447797 +2086.538206 +2086.757653 +2086.908636 +2087.303640 +2087.380563 +2087.461516 +2087.743766 +2087.792518 +2087.857419 +2087.921122 +2088.014595 +2088.386290 +2088.890652 +2089.142200 +2089.253821 +2089.308167 +2089.654154 +2089.695346 +2089.849858 +2089.893814 +2089.910231 +2089.964210 +2089.999109 +2090.149924 +2090.176631 +2090.227347 +2090.306201 +2090.449192 +2090.536571 +2090.738169 +2090.829511 +2090.845295 +2100.974223 +2110.973780 +2111.374878 +2111.474845 +2111.675444 +2112.175710 +2112.275610 +2112.674377 +2112.975609 +2112.976042 +2113.075709 +2113.475476 +2114.075941 +2114.175608 +2114.375974 +2114.675574 +2115.075541 +2115.275973 +2115.775573 +2120.986857 +2121.128415 +2121.216260 +2121.361249 +2121.631411 +2121.911298 +2122.306935 +2122.556086 +2122.557385 +2122.718590 +2122.850391 +2123.039402 +2123.092349 +2123.148060 +2123.519988 +2123.941366 +2123.982125 +2124.147226 +2124.558248 +2124.587219 +2124.741765 +2124.842098 +2124.925514 +2125.000705 +2125.123383 +2125.177895 +2125.342696 +2125.385387 +2125.415091 +2125.525147 +2125.553352 +2125.585953 +2125.677828 +2125.713525 +2125.793312 +2125.840998 +2125.898573 +2125.953319 +2139.972419 +2145.972213 +2146.373478 +2146.473844 +2146.974143 +2147.173710 +2147.274443 +2147.774376 +2147.973976 +2147.974209 +2148.074142 +2148.174575 +2148.274642 +2148.473975 +2148.574508 +2148.674541 +2148.774574 +2148.974141 +2148.974474 +2149.074341 +2149.074807 +2149.274341 +2149.374074 +2149.374640 +2149.574341 +2149.574740 +2149.674507 +2150.074107 +2150.074373 +2150.174140 +2150.474073 +2150.474639 +2150.574473 +2150.674140 +2150.674339 +2155.971504 +2155.972003 +2156.131943 +2156.132509 +2156.984456 +2157.082891 +2157.320120 +2157.443464 +2157.622584 +2157.803037 +2158.146526 +2158.302370 +2158.339866 +2158.492047 +2158.730109 +2158.795577 +2159.004068 +2159.019619 +2159.089116 +2159.123315 +2159.135503 +2159.166106 +2159.166439 +2159.268870 +2159.390848 +2159.441630 +2159.519619 +2159.589415 +2159.672499 +2159.748023 +2159.834470 +2159.930974 +2160.033304 +2160.267470 +2160.436434 +2160.464340 +2160.607829 +2160.637067 +2160.681422 +2160.682055 +2160.712225 +2160.836700 +2160.852584 +2160.880456 +2160.925911 +2160.957113 +2170.970823 +2170.971722 +2173.971885 +2174.971651 +2181.272344 +2181.372211 +2181.572877 +2181.773309 +2181.972943 +2183.173175 +2183.773241 +2184.072508 +2184.872807 +2184.973040 +2185.173539 +2185.273606 +2185.373106 +2185.773006 +2185.972839 +2190.970636 +2190.971302 +2190.993380 +2191.383756 +2191.691581 +2191.770735 +2192.082623 +2192.335137 +2192.467338 +2192.556748 +2192.611893 +2192.803968 +2192.943361 +2192.994044 +2193.116155 +2193.167137 +2193.236701 +2193.397740 +2193.508496 +2193.557613 +2193.775096 +2193.882721 +2193.910926 +2194.095408 +2194.227276 +2194.277060 +2194.318851 +2194.432438 +2194.608128 +2194.650120 +2194.755714 +2194.787815 +2194.816953 +2195.047622 +2195.132437 +2195.161408 +2195.204998 +2195.248487 +2195.289846 +2195.330372 +2195.359843 +2195.418084 +2195.518617 +2195.668300 +2195.857711 +2195.918617 +2201.715447 +2201.715680 +2207.706517 +2211.701085 +2216.700580 +2216.801413 +2217.502544 +2217.602544 +2218.702743 +2218.802710 +2219.102842 +2219.202709 +2219.402742 +2219.502809 +2219.602842 +2220.202875 +2220.402808 +2220.502774 +2220.602874 +2220.702874 +2220.902841 +2221.302840 +2221.402774 +2226.711360 +2226.950787 +2227.068669 +2227.130140 +2227.176661 +2227.389681 +2227.464406 +2227.598372 +2227.631838 +2227.741262 +2227.782221 +2227.813989 +2227.915521 +2228.022547 +2228.087915 +2228.125744 +2228.180689 +2228.355847 +2228.381854 +2228.459643 +2228.558444 +2228.644691 +2228.681654 +2228.719283 +2228.746656 +2228.838863 +2228.983918 +2229.027941 +2229.069000 +2229.096739 +2229.153881 +2229.182353 +2229.223212 +2229.250252 +2229.266069 +2229.331004 +2229.356612 +2229.383352 +2229.577857 +2229.608127 +2229.636032 +2229.694607 +2229.746355 +2229.764970 +2229.779988 +2229.794540 +2229.807028 +2229.843591 +2229.869498 +2229.883784 +2229.907893 +2229.936798 +2229.954447 +2229.980154 +2230.023278 +2230.039894 +2230.082652 +2230.096205 +2230.124044 +2230.137663 +2230.153148 +2230.167433 +2230.193974 +2230.221712 +2230.269098 +2230.284816 +2230.328905 +2230.340693 +2230.369298 +2230.382884 +2230.408525 +2230.438096 +2230.465535 +2230.482085 +2230.499534 +2230.514752 +2230.529671 +2230.573360 +2230.630736 +2230.646521 +2230.676824 +2230.692708 +2230.752082 +2230.783217 +2230.798668 +2230.843257 +2231.122311 +2231.152581 +2231.167066 +2231.182018 +2231.197935 +2231.543056 +2231.562204 +2244.701685 +2251.702643 +2252.404141 +2252.604307 +2252.804207 +2253.504706 +2253.804439 +2253.904439 +2254.604405 +2254.921321 +2255.304505 +2255.704171 +2255.804271 +2255.920288 +2256.304570 +2261.703199 +2261.775727 +2261.919316 +2261.986949 +2262.168534 +2262.229706 +2262.359409 +2262.622779 +2262.725343 +2262.781820 +2262.927674 +2262.973661 +2263.022978 +2263.104796 +2263.138663 +2263.313521 +2263.366934 +2263.393108 +2263.497570 +2263.522345 +2263.562971 +2263.603630 +2263.657943 +2263.708958 +2263.778589 +2263.854280 +2263.960140 +2264.033667 +2264.049318 +2264.107959 +2264.123144 +2264.165401 +2264.178988 +2264.206560 +2264.315218 +2264.384249 +2264.493506 +2264.520080 +2264.548218 +2264.578621 +2264.659607 +2264.700000 +2264.714518 +2264.729570 +2264.783050 +2264.798801 +2264.853779 +2264.910622 +2264.937928 +2264.981951 +2265.009124 +2265.023576 +2265.037662 +2265.054212 +2265.083016 +2265.096136 +2265.123842 +2265.151248 +2265.164368 +2265.179686 +2265.209889 +2265.223276 +2265.264568 +2265.298600 +2265.326772 +2265.352580 +2265.368264 +2265.381617 +2265.409689 +2265.424541 +2265.440958 +2265.454444 +2265.482350 +2265.495903 +2265.512553 +2265.554744 +2265.568397 +2265.599066 +2265.611720 +2265.669096 +2265.695703 +2265.710188 +2265.740425 +2265.770029 +2265.824574 +2265.838294 +2265.868463 +2265.905227 +2265.921211 +2265.934797 +2265.953778 +2265.969895 +2266.038993 +2266.148317 +2276.710444 +2277.709311 +2278.704315 +2280.704179 +2286.904873 +2287.105272 +2287.205372 +2287.305438 +2287.505571 +2287.605505 +2287.705638 +2287.706071 +2287.805604 +2288.205637 +2288.405670 +2288.505670 +2288.605637 +2288.705670 +2289.005703 +2289.105703 +2289.205170 +2289.205703 +2289.305703 +2289.405703 +2289.705835 +2290.105735 +2290.206168 +2290.405801 +2290.605801 +2290.705768 +2290.805768 +2291.005634 +2291.105767 +2291.205068 +2291.205801 +2291.505734 +2291.605700 +2291.705800 +2296.704064 +2296.715019 +2297.010523 +2297.058542 +2297.462038 +2297.494739 +2297.542891 +2297.580420 +2297.745421 +2297.771662 +2297.798035 +2297.846653 +2297.983183 +2298.034565 +2298.084382 +2298.208591 +2298.260039 +2298.320745 +2298.342923 +2298.421511 +2298.434998 +2298.472127 +2298.509290 +2298.590608 +2298.674491 +2298.727671 +2298.761970 +2298.796869 +2298.820978 +2298.821278 +2298.852080 +2298.873758 +2298.945686 +2298.969529 +2298.982749 +2299.028470 +2299.051247 +2299.108890 +2299.179519 +2299.212819 +2299.275390 +2299.322542 +2299.337328 +2299.360671 +2299.385113 +2299.433531 +2299.461670 +2299.462269 +2299.475090 +2299.585679 +2299.600364 +2299.649748 +2299.662202 +2299.676188 +2299.700930 +2299.718446 +2299.744320 +2299.758772 +2299.772459 +2299.823641 +2299.839625 +2299.853111 +2299.917913 +2299.931666 +2299.969462 +2299.995968 +2300.062135 +2300.075189 +2300.086345 +2300.099398 +2300.114916 +2300.126105 +2300.139758 +2300.153078 +2300.178386 +2300.238426 +2300.373890 +2300.388842 +2300.437027 +2300.507689 +2315.704777 +2321.704405 +2321.805437 +2322.205803 +2322.206203 +2322.406036 +2322.706036 +2322.806069 +2323.206035 +2323.406101 +2323.407034 +2323.506168 +2323.906168 +2324.005834 +2325.106166 +2325.206100 +2325.605500 +2326.306099 +2326.306631 +2331.775690 +2331.985414 +2332.062370 +2332.166832 +2332.315516 +2332.433165 +2332.565899 +2332.595902 +2332.645120 +2332.713685 +2332.780218 +2332.874723 +2332.936661 +2332.977887 +2333.128369 +2333.165932 +2333.261703 +2333.323075 +2333.362169 +2333.421609 +2333.454110 +2333.582182 +2333.606424 +2333.670427 +2333.698898 +2333.725638 +2333.800097 +2333.815015 +2333.880949 +2333.908555 +2333.933730 +2333.960969 +2333.987176 +2334.059204 +2334.073324 +2334.100896 +2334.128102 +2334.152178 +2334.217945 +2334.368362 +2334.430100 +2334.495301 +2334.556740 +2334.590706 +2334.602993 +2334.640156 +2334.663799 +2334.713516 +2334.766530 +2334.791971 +2334.816580 +2334.843919 +2334.903193 +2334.952044 +2334.967062 +2334.994768 +2335.025137 +2335.039423 +2335.138357 +2335.154808 +2335.169426 +2335.183179 +2335.224571 +2335.251877 +2335.322706 +2335.366795 +2335.380848 +2335.407455 +2335.422806 +2335.466063 +2335.512250 +2335.540522 +2335.568061 +2335.582613 +2335.609486 +2335.625137 +2335.639622 +2335.666162 +2335.681514 +2335.709519 +2335.726036 +2335.741087 +2335.757871 +2335.787941 +2335.804124 +2335.818410 +2335.858870 +2335.874387 +2335.890172 +2335.906322 +2335.920974 +2335.992070 +2336.009585 +2336.024038 +2336.024371 +2336.039788 +2336.067960 +2336.084044 +2336.095766 +2336.112482 +2336.126801 +2336.170791 +2336.188340 +2336.202492 +2336.216478 +2336.235060 +2336.248213 +2336.261666 +2336.277351 +2336.295000 +2336.308020 +2336.323804 +2336.338623 +2336.385576 +2336.411849 +2336.428633 +2336.441753 +2336.459535 +2336.473288 +2336.488206 +2336.504823 +2336.530397 +2336.562898 +2336.577350 +2336.609185 +2336.638289 +2336.652775 +2336.687140 +2336.699695 +2346.705013 +2347.705211 +2349.705309 +2356.705036 +2356.706135 +2357.006234 +2357.106434 +2357.206567 +2357.306567 +2357.507100 +2357.706766 +2358.306766 +2358.406399 +2358.606699 +2358.906099 +2358.906499 +2359.206765 +2359.207231 +2359.306165 +2360.206797 +2360.306764 +2360.806730 +2360.906763 +2361.006896 +2361.106863 +2361.206830 +2366.716215 +2366.773457 +2367.040257 +2367.098832 +2367.145452 +2367.301828 +2367.372458 +2367.683347 +2367.743287 +2367.775987 +2367.828901 +2367.941588 +2367.999597 +2368.164065 +2368.280749 +2368.432264 +2368.482846 +2368.549513 +2368.564298 +2368.643119 +2368.718211 +2368.757505 +2368.796366 +2368.822806 +2368.900495 +2368.939989 +2368.978517 +2369.124437 +2369.151044 +2369.177284 +2369.191803 +2369.313781 +2369.380048 +2369.454907 +2369.482146 +2369.517943 +2369.536358 +2369.712615 +2369.851010 +2369.878249 +2369.917510 +2369.946281 +2369.973188 +2370.057803 +2370.072022 +2370.099528 +2370.155738 +2370.184776 +2370.289771 +2370.332928 +2370.391169 +2370.480846 +2370.568225 +2370.595432 +2370.626334 +2370.670556 +2370.700660 +2370.745481 +2370.761765 +2370.794466 +2370.808285 +2370.925601 +2370.942617 +2371.016377 +2371.031362 +2371.074452 +2371.131129 +2371.177449 +2371.192367 +2371.269623 +2371.344715 +2371.377316 +2381.705843 +2382.706142 +2391.906666 +2392.006965 +2392.007132 +2392.107132 +2392.307032 +2392.307398 +2392.407398 +2392.507464 +2393.007597 +2393.107564 +2393.207563 +2393.307530 +2393.407530 +2394.007629 +2394.107529 +2394.307496 +2394.407529 +2394.607462 +2394.807529 +2394.907429 +2394.907928 +2395.007995 +2395.207495 +2395.607594 +2395.907561 +2396.207560 +2396.607527 +2396.607960 +2396.707527 +2401.983445 +2402.054308 +2402.291137 +2402.359136 +2402.359802 +2402.396099 +2402.524737 +2402.617944 +2402.777084 +2402.869991 +2402.913881 +2402.957803 +2402.987074 +2403.128533 +2403.154640 +2403.229365 +2403.540087 +2403.616844 +2403.691702 +2403.724869 +2403.763231 +2403.883677 +2403.906853 +2403.944016 +2404.037656 +2404.062697 +2404.099128 +2404.126134 +2404.153873 +2404.263996 +2404.349843 +2404.416443 +2404.543250 +2404.572620 +2404.588271 +2404.701858 +2404.718941 +2404.743716 +2404.803523 +2404.831927 +2404.874052 +2404.902623 +2404.933293 +2404.990169 +2405.011981 +2405.127831 +2405.154305 +2405.190702 +2405.257202 +2405.284175 +2405.363429 +2405.392267 +2405.409916 +2405.437188 +2405.483076 +2405.496229 +2405.541750 +2405.555903 +2405.598727 +2405.614111 +2405.656435 +2405.671654 +2405.674717 +2405.704354 +2405.717574 +2405.747178 +2405.775616 +2405.834724 +2405.868656 +2405.896429 +2405.911680 +2405.988303 +2406.004354 +2406.033658 +2406.049775 +2406.094131 +2406.143814 +2406.158000 +2406.187337 +2406.231693 +2406.249508 +2406.293331 +2406.309315 +2406.325133 +2406.339951 +2406.385606 +2406.433891 +2406.479611 +2406.510181 +2406.527497 +2406.558699 +2406.573651 +2406.603154 +2406.663760 +2406.680111 +2406.696861 +2417.706040 +2421.705870 +2426.906231 +2427.106697 +2427.306930 +2427.406963 +2427.706996 +2427.807063 +2427.907196 +2428.206862 +2428.306996 +2428.307495 +2428.507129 +2428.606929 +2428.706795 +2428.707028 +2428.907028 +2429.107028 +2429.408393 +2429.506961 +2429.606961 +2429.707094 +2430.206994 +2430.507060 +2431.107026 +2431.506859 +2431.607026 +2431.706992 +2436.863730 +2436.933527 +2437.126434 +2437.206953 +2437.299561 +2437.469124 +2437.502990 +2437.699327 +2437.999860 +2438.078714 +2438.130928 +2438.309983 +2438.331128 +2438.395131 +2438.417908 +2438.573352 +2438.635024 +2438.706086 +2438.770655 +2438.784508 +2438.859433 +2438.899959 +2438.934025 +2438.961264 +2438.997228 +2439.074317 +2439.218407 +2439.298893 +2439.327864 +2439.343348 +2439.370421 +2439.450707 +2439.465892 +2439.574084 +2439.585639 +2439.601690 +2439.685839 +2439.713478 +2439.740517 +2439.767124 +2439.795862 +2439.821236 +2439.880011 +2439.955302 +2439.981010 +2440.026731 +2440.067290 +2440.082974 +2440.110547 +2440.154203 +2440.183940 +2440.212511 +2440.242814 +2440.272518 +2440.288136 +2440.318372 +2440.333057 +2440.380177 +2440.408082 +2440.450440 +2440.499524 +2440.556667 +2440.572817 +2440.630360 +2440.647576 +2440.768522 +2440.783174 +2440.813210 +2440.862494 +2440.922168 +2440.999823 +2441.060729 +2441.076447 +2441.136720 +2441.199057 +2441.334522 +2441.363992 +2441.396493 +2441.470552 +2441.516673 +2441.536519 +2441.569020 +2441.614075 +2441.663725 +2441.681308 +2451.705141 +2452.705473 +2461.805497 +2462.006396 +2462.019183 +2462.106629 +2462.206562 +2462.606262 +2463.306228 +2463.306661 +2463.406727 +2463.506661 +2463.706827 +2463.806794 +2463.906827 +2464.406693 +2464.506793 +2464.606726 +2464.906726 +2465.106426 +2465.207059 +2465.406759 +2465.606792 +2465.706159 +2465.706792 +2465.906825 +2466.006825 +2466.106791 +2466.506724 +2471.705087 +2471.987038 +2472.309382 +2472.469089 +2472.542549 +2472.586205 +2472.706951 +2472.953338 +2473.015576 +2473.053238 +2473.142482 +2473.170187 +2473.213477 +2473.282975 +2473.462228 +2473.525965 +2473.574516 +2473.613644 +2473.640816 +2473.705085 +2473.757566 +2473.796028 +2473.820603 +2473.905951 +2473.962761 +2473.978978 +2474.144046 +2474.198991 +2474.229694 +2474.286670 +2474.301588 +2474.410046 +2474.521402 +2474.581441 +2474.597425 +2474.679676 +2474.734888 +2474.806117 +2474.952803 +2474.972184 +2474.999723 +2475.028427 +2475.088534 +2475.133522 +2475.162193 +2475.179376 +2475.223532 +2475.298490 +2475.342879 +2475.358930 +2475.416372 +2475.460062 +2475.478510 +2475.507115 +2475.540581 +2475.571051 +2475.597391 +2475.616972 +2475.673249 +2475.707947 +2475.722832 +2475.766422 +2475.793328 +2475.850371 +2476.008080 +2476.067154 +2476.130657 +2476.145709 +2476.162226 +2476.236252 +2476.265089 +2476.291763 +2476.323398 +2476.340114 +2476.409711 +2476.428326 +2476.504783 +2476.520567 +2476.536385 +2476.578143 +2476.592961 +2476.678775 +2476.696091 +2488.705936 +2489.705769 +2496.705229 +2496.806128 +2497.106993 +2497.307160 +2497.507193 +2497.707126 +2497.807226 +2497.907226 +2498.007159 +2498.107259 +2498.307292 +2498.407325 +2498.607058 +2498.607225 +2498.707291 +2498.807291 +2498.907258 +2499.207624 +2499.507191 +2499.706957 +2500.207257 +2500.307257 +2500.507256 +2500.707223 +2500.907189 +2501.007223 +2501.107189 +2501.207122 +2501.307256 +2501.407255 +2501.507255 +2507.108682 +2507.153670 +2507.275781 +2507.422934 +2507.544445 +2507.829160 +2507.856200 +2507.934788 +2508.140682 +2508.173682 +2508.300655 +2508.329360 +2508.365490 +2508.378111 +2508.416339 +2508.469020 +2508.494994 +2508.572350 +2508.611444 +2508.691797 +2508.768753 +2508.903951 +2508.959829 +2508.988400 +2509.012143 +2509.079642 +2509.105716 +2509.186069 +2509.212076 +2509.239216 +2509.290431 +2509.326628 +2509.343911 +2509.378576 +2509.428360 +2509.444077 +2509.468786 +2509.485569 +2509.499855 +2509.553967 +2509.570218 +2509.584070 +2509.652635 +2509.719768 +2509.749405 +2509.802119 +2509.844277 +2509.860227 +2509.913541 +2509.944476 +2509.978009 +2509.992295 +2510.020034 +2510.071449 +2510.100220 +2510.155931 +2510.171815 +2510.198289 +2510.252868 +2510.309011 +2510.360793 +2510.373214 +2510.387266 +2510.403583 +2510.430556 +2510.445541 +2510.459394 +2510.474546 +2510.491029 +2510.505881 +2510.533254 +2510.547639 +2510.578442 +2510.605082 +2510.618102 +2510.644942 +2510.671216 +2510.684402 +2510.696124 +2510.711209 +2510.726627 +2510.740646 +2510.755231 +2510.770183 +2510.783836 +2510.840879 +2510.870649 +2510.899287 +2510.914872 +2511.035851 +2511.050303 +2511.064289 +2511.079773 +2511.108178 +2511.140313 +2511.155930 +2511.171248 +2511.185201 +2511.230422 +2511.275810 +2511.304681 +2511.349803 +2511.424761 +2511.441844 +2511.456296 +2511.470382 +2511.482836 +2511.496223 +2522.705869 +2523.705968 +2524.711961 +2526.705865 +2531.805893 +2532.006426 +2532.106659 +2532.206958 +2532.306858 +2532.406891 +2532.706891 +2532.806958 +2532.906924 +2533.006957 +2533.206991 +2533.306957 +2533.406924 +2533.506957 +2533.606990 +2533.806923 +2533.906923 +2534.006956 +2534.206990 +2534.306956 +2534.506423 +2534.506923 +2534.606889 +2534.706856 +2534.707056 +2534.720009 +2534.906922 +2535.006922 +2535.106922 +2535.121274 +2535.206955 +2535.307022 +2535.406922 +2535.506988 +2535.606922 +2535.618577 +2535.706888 +2535.806955 +2536.006855 +2536.106954 +2536.120907 +2536.206921 +2536.506954 +2536.606987 +2536.706987 +2541.705117 +2542.121267 +2542.331057 +2542.451870 +2542.740714 +2542.854833 +2542.975845 +2543.013741 +2543.225029 +2543.251270 +2543.377377 +2543.418469 +2543.470450 +2543.587333 +2543.703350 +2543.742145 +2543.769351 +2543.807613 +2543.861492 +2543.887200 +2543.975345 +2544.002318 +2544.027925 +2544.054998 +2544.068918 +2544.159727 +2544.194692 +2544.236550 +2544.270316 +2544.296457 +2544.345075 +2544.358728 +2544.387532 +2544.412041 +2544.437382 +2544.451069 +2544.474545 +2544.511908 +2544.554365 +2544.643676 +2544.667186 +2544.712207 +2544.736616 +2544.749104 +2544.764688 +2544.792727 +2544.843343 +2544.894258 +2544.922130 +2544.984934 +2545.013239 +2545.040412 +2545.054631 +2545.092760 +2545.116036 +2545.143009 +2545.202117 +2545.228224 +2545.243209 +2545.266519 +2545.279772 +2545.293858 +2545.368084 +2545.431754 +2545.448037 +2545.466619 +2545.527291 +2545.540411 +2545.553798 +2545.566252 +2545.706312 +2545.722096 +2545.735616 +2545.764654 +2545.778939 +2545.841776 +2545.923062 +2545.939146 +2545.980338 +2546.009509 +2546.191793 +2546.204180 +2546.220997 +2546.263088 +2546.334483 +2556.705402 +2557.705468 +2557.705801 +2566.805758 +2566.916680 +2567.006357 +2567.206790 +2567.406823 +2567.506823 +2567.507123 +2567.606923 +2567.706856 +2567.806889 +2567.906923 +2568.006856 +2568.306389 +2568.506922 +2568.507388 +2568.706922 +2569.306788 +2569.706688 +2569.806854 +2570.006887 +2570.106854 +2570.406920 +2570.506920 +2570.606853 +2570.706820 +2570.906886 +2571.006919 +2571.206886 +2571.306986 +2576.715372 +2576.766121 +2576.810377 +2577.484236 +2577.532854 +2577.746806 +2577.831555 +2577.856929 +2577.976376 +2578.060026 +2578.098721 +2578.146173 +2578.211974 +2578.312906 +2578.360159 +2578.453432 +2578.478607 +2578.546406 +2578.562223 +2578.625626 +2578.651267 +2578.651700 +2578.827025 +2578.892260 +2578.918733 +2578.933352 +2578.958959 +2578.984034 +2579.011940 +2579.037081 +2579.070181 +2579.121863 +2579.217867 +2579.245040 +2579.299718 +2579.328856 +2579.354264 +2579.382635 +2579.421097 +2579.483235 +2579.534617 +2579.614337 +2579.645539 +2579.741976 +2579.765818 +2579.792592 +2579.844307 +2579.859691 +2579.873477 +2579.910574 +2579.992225 +2580.035848 +2580.179471 +2580.208375 +2580.233950 +2580.249834 +2580.276707 +2580.291859 +2580.304945 +2580.335115 +2580.361988 +2580.408575 +2580.423094 +2580.479138 +2580.510107 +2580.527123 +2580.568348 +2580.594622 +2580.653896 +2580.668981 +2580.684932 +2580.711405 +2580.725991 +2580.801482 +2580.814635 +2580.829987 +2580.890093 +2580.934082 +2580.978105 +2580.994056 +2581.008674 +2581.038178 +2581.067682 +2581.083266 +2581.097286 +2581.126090 +2581.143140 +2581.159157 +2581.188994 +2581.232151 +2581.274841 +2581.323259 +2581.394954 +2581.420296 +2581.462953 +2581.508507 +2581.524491 +2581.598218 +2581.625357 +2581.641807 +2581.670279 +2593.705964 +2595.705996 +2601.705690 +2602.006789 +2602.013082 +2602.206089 +2602.407188 +2602.707287 +2602.807221 +2603.207353 +2603.406754 +2603.606487 +2603.907286 +2604.007219 +2604.307352 +2604.407286 +2604.507385 +2604.607352 +2604.706719 +2604.707219 +2604.906819 +2605.107352 +2605.207252 +2605.507318 +2605.807218 +2606.007384 +2606.107351 +2606.307017 +2606.407317 +2606.606651 +2606.607283 +2606.707350 +2611.834318 +2612.015370 +2612.524294 +2612.585932 +2612.638413 +2612.776009 +2612.925792 +2613.086098 +2613.145272 +2613.245039 +2613.446371 +2613.511173 +2613.575775 +2613.631386 +2613.658259 +2613.687296 +2613.734216 +2613.772977 +2613.840543 +2613.906410 +2613.960723 +2613.997120 +2614.038378 +2614.117466 +2614.171711 +2614.198784 +2614.240476 +2614.268015 +2614.357359 +2614.386763 +2614.474142 +2614.500915 +2614.527189 +2614.644438 +2614.685863 +2614.758824 +2614.923426 +2615.011604 +2615.038644 +2615.066949 +2615.092656 +2615.120362 +2615.209206 +2615.247468 +2615.278071 +2615.305443 +2615.350198 +2615.376272 +2615.431351 +2615.503678 +2615.584031 +2615.607807 +2615.622659 +2615.638443 +2615.681034 +2615.738044 +2615.790957 +2615.817064 +2615.833681 +2615.919529 +2615.944270 +2616.042339 +2616.057757 +2616.085995 +2616.116265 +2616.138776 +2616.160787 +2616.234280 +2616.250397 +2616.276771 +2616.303544 +2616.351696 +2616.380234 +2616.396651 +2616.426055 +2616.456325 +2616.501546 +2616.532781 +2616.550797 +2616.578003 +2616.606707 +2616.653227 +2628.706096 +2630.706826 +2631.706426 +2636.906920 +2637.007087 +2637.019341 +2637.507419 +2638.307718 +2638.507718 +2638.607751 +2638.708284 +2638.807917 +2639.307584 +2639.607317 +2639.707717 +2639.807716 +2639.907683 +2640.007650 +2640.208515 +2640.223367 +2640.407583 +2640.507549 +2640.607183 +2640.607616 +2641.207615 +2643.686267 +2646.705811 +2646.716201 +2646.793890 +2646.842242 +2647.004746 +2647.341642 +2647.404878 +2647.477039 +2647.527456 +2647.577972 +2647.651265 +2647.687895 +2647.802747 +2647.845004 +2647.965351 +2648.088627 +2648.267548 +2648.343639 +2648.380568 +2648.501847 +2648.542373 +2648.582466 +2648.635879 +2648.871344 +2648.960821 +2649.000614 +2649.030151 +2649.057191 +2649.109106 +2649.232982 +2649.291024 +2649.315199 +2649.430184 +2649.480800 +2649.516764 +2649.538043 +2649.559954 +2649.599415 +2649.640840 +2649.678203 +2649.706974 +2649.733547 +2649.793654 +2649.836378 +2649.865682 +2649.936444 +2649.988958 +2650.016964 +2650.043870 +2650.061486 +2650.090790 +2650.178136 +2650.219428 +2650.248732 +2650.265848 +2650.293121 +2650.362185 +2650.389224 +2650.434379 +2650.451362 +2650.493154 +2650.509870 +2650.579700 +2650.616697 +2650.630649 +2650.659354 +2650.684296 +2650.736643 +2650.780999 +2650.809637 +2650.840672 +2650.886660 +2650.915131 +2650.945534 +2650.975837 +2651.003476 +2651.053759 +2651.066913 +2651.096516 +2651.111102 +2651.127186 +2651.139773 +2651.208904 +2651.235311 +2651.274571 +2651.315464 +2651.318594 +2651.330815 +2651.360685 +2651.377135 +2651.391688 +2651.418061 +2651.435011 +2651.462250 +2651.492387 +2651.508870 +2651.534911 +2651.565514 +2651.644734 +2651.690455 +2661.705663 +2661.707195 +2664.706393 +2665.706558 +2666.706358 +2671.710981 +2671.806386 +2671.917907 +2672.007052 +2672.018740 +2672.120205 +2672.207384 +2672.220238 +2672.607550 +2672.823401 +2672.907583 +2673.207583 +2673.507649 +2673.607649 +2673.707683 +2674.007749 +2674.207615 +2674.707682 +2674.808048 +2675.406882 +2675.607714 +2675.807347 +2676.107614 +2676.207580 +2676.407713 +2676.507713 +2676.607680 +2681.705510 +2681.715034 +2682.329785 +2682.619628 +2682.867647 +2682.918296 +2683.096285 +2683.160620 +2683.176371 +2683.226854 +2683.291223 +2683.410637 +2683.461386 +2683.524456 +2683.553593 +2683.590323 +2683.665215 +2683.717629 +2683.857856 +2683.885328 +2683.975871 +2683.999547 +2684.131681 +2684.156457 +2684.209270 +2684.332913 +2684.359720 +2684.418794 +2684.503975 +2684.531947 +2684.547232 +2684.626886 +2684.708371 +2684.786026 +2684.857821 +2684.897515 +2684.925853 +2684.969243 +2684.999546 +2685.038207 +2685.113732 +2685.139639 +2685.156755 +2685.170608 +2685.183062 +2685.199180 +2685.223822 +2685.267544 +2685.310368 +2685.325387 +2685.366878 +2685.394584 +2685.422023 +2685.466612 +2685.494983 +2685.583062 +2685.610634 +2685.640005 +2685.697681 +2685.712932 +2685.741903 +2685.780598 +2685.807870 +2685.850161 +2685.890787 +2685.920624 +2685.935209 +2685.949795 +2685.976202 +2686.008869 +2686.032679 +2686.080231 +2686.110501 +2686.140637 +2686.144567 +2686.173871 +2686.203341 +2686.219192 +2686.234876 +2686.294084 +2686.312465 +2686.340537 +2686.358686 +2686.386358 +2686.415429 +2686.430680 +2686.457054 +2686.549128 +2686.564679 +2696.706361 +2696.706894 +2707.007616 +2707.207549 +2707.708348 +2708.608047 +2708.808114 +2709.308146 +2709.408180 +2709.508313 +2709.608246 +2709.708346 +2709.908113 +2710.108279 +2710.208279 +2710.307679 +2710.308312 +2710.408212 +2710.508345 +2710.608278 +2710.708278 +2710.907745 +2710.908178 +2711.007978 +2711.008245 +2711.108111 +2711.308278 +2711.508311 +2711.608344 +2716.706374 +2717.058155 +2717.117230 +2717.510636 +2717.560752 +2717.730649 +2717.832414 +2717.859353 +2717.891887 +2717.937875 +2717.977069 +2718.029217 +2718.083462 +2718.164515 +2718.225121 +2718.258620 +2718.514398 +2718.578533 +2718.607405 +2718.715330 +2718.741837 +2718.861517 +2718.897514 +2718.964547 +2718.991487 +2719.128816 +2719.194217 +2719.233345 +2719.274337 +2719.311433 +2719.354790 +2719.369042 +2719.408669 +2719.508103 +2719.561183 +2719.590421 +2719.655822 +2719.680530 +2719.709368 +2719.737840 +2719.794183 +2719.821356 +2719.877467 +2719.918159 +2719.987856 +2720.016161 +2720.072505 +2720.134376 +2720.212098 +2720.299577 +2720.342401 +2720.370973 +2720.384426 +2720.437339 +2720.488022 +2720.502541 +2720.593683 +2720.683426 +2720.711465 +2720.744599 +2720.760383 +2720.786190 +2720.813330 +2720.897079 +2720.911531 +2720.939936 +2721.009533 +2721.047728 +2721.101774 +2721.163879 +2721.206270 +2721.232777 +2721.262014 +2721.292883 +2721.353722 +2721.375667 +2721.412597 +2721.508034 +2721.530312 +2721.545497 +2721.616892 +2721.628647 +2721.681028 +2741.806682 +2741.907015 +2742.007281 +2742.007514 +2742.019336 +2742.307614 +2742.407747 +2742.507780 +2742.508380 +2742.607714 +2743.007813 +2743.307913 +2743.407813 +2743.507912 +2743.607879 +2744.107845 +2744.307712 +2744.407778 +2744.507845 +2744.607878 +2744.707478 +2744.707845 +2745.007778 +2745.107511 +2745.207744 +2745.307744 +2745.507877 +2745.807777 +2746.007877 +2746.107810 +2746.207777 +2751.705373 +2752.498646 +2752.568976 +2752.830014 +2752.868509 +2752.932279 +2753.006937 +2753.192651 +2753.243833 +2753.345765 +2753.411732 +2753.537506 +2753.626750 +2753.665911 +2753.763480 +2753.909234 +2754.015961 +2754.143999 +2754.196879 +2754.320889 +2754.361948 +2754.405004 +2754.458884 +2754.486390 +2754.499676 +2754.613795 +2754.643233 +2754.700542 +2754.755587 +2754.783692 +2754.811731 +2754.927781 +2754.943465 +2755.014128 +2755.057485 +2755.074801 +2755.133842 +2755.161780 +2755.179796 +2755.208300 +2755.310964 +2755.338104 +2755.394547 +2755.395646 +2755.412463 +2755.455486 +2755.485090 +2755.564344 +2755.592383 +2755.636771 +2755.653655 +2755.696345 +2755.714061 +2755.775499 +2755.819588 +2755.850491 +2755.895346 +2755.910731 +2755.942299 +2755.971237 +2755.989918 +2756.020854 +2756.048393 +2756.079095 +2756.094313 +2756.124850 +2756.184390 +2756.224450 +2756.269072 +2756.299741 +2756.316824 +2756.345662 +2756.375798 +2756.389252 +2756.418322 +2756.438402 +2756.479828 +2756.493847 +2756.522518 +2756.537836 +2756.554087 +2756.606467 +2756.623351 +2756.636837 +2756.681392 +2766.705425 +2776.805482 +2776.905981 +2777.006047 +2777.106280 +2777.205881 +2777.206513 +2777.306613 +2777.406547 +2777.506613 +2777.606613 +2777.706613 +2777.806613 +2777.906646 +2778.006546 +2778.106646 +2778.206646 +2778.306679 +2778.406645 +2778.606645 +2778.706712 +2778.806545 +2778.906645 +2779.006678 +2779.107078 +2779.406711 +2779.706544 +2780.206677 +2780.306644 +2780.406777 +2780.506710 +2780.606643 +2780.706643 +2780.906676 +2781.006743 +2781.106643 +2781.206143 +2781.206676 +2781.606676 +2781.706675 +2786.704506 +2786.776134 +2786.929814 +2787.024186 +2787.061415 +2787.131612 +2787.190553 +2787.235708 +2787.335008 +2787.452158 +2787.554289 +2787.766809 +2787.853056 +2787.892517 +2788.008934 +2788.038670 +2788.087588 +2788.173169 +2788.227581 +2788.354321 +2788.459216 +2788.538603 +2788.563112 +2788.588520 +2788.630578 +2788.653921 +2788.706702 +2788.772503 +2788.806269 +2788.901640 +2788.994147 +2789.038003 +2789.062046 +2789.113361 +2789.188586 +2789.233974 +2789.378995 +2789.432808 +2789.501939 +2789.517224 +2789.598442 +2789.614127 +2789.640334 +2789.667673 +2789.724949 +2789.725415 +2789.752855 +2789.821186 +2789.836171 +2789.891116 +2789.905702 +2789.932375 +2789.976031 +2789.992048 +2790.045695 +2790.061879 +2790.089118 +2790.105069 +2790.147959 +2790.163144 +2790.189184 +2790.220753 +2790.308232 +2790.323916 +2790.384156 +2790.412960 +2790.452887 +2790.468938 +2790.482957 +2790.569770 +2790.586387 +2790.614492 +2790.631109 +2790.661978 +2790.686953 +2790.717655 +2790.760446 +2790.778594 +2790.868205 +2790.882724 +2790.912394 +2790.940899 +2790.953686 +2790.980559 +2791.009330 +2791.035970 +2791.051455 +2791.076230 +2791.093313 +2791.138201 +2791.153353 +2791.168637 +2791.184954 +2791.200372 +2791.217222 +2791.231974 +2791.258181 +2791.287918 +2791.302070 +2791.317322 +2791.337202 +2791.377928 +2791.408963 +2791.451654 +2791.466273 +2791.508697 +2791.535304 +2791.549889 +2791.563642 +2791.624115 +2791.652220 +2801.705290 +2811.705313 +2811.710941 +2811.906146 +2812.006445 +2812.106678 +2812.206712 +2812.406811 +2812.506911 +2812.812705 +2812.906944 +2813.006911 +2813.306977 +2813.406977 +2813.507410 +2813.606943 +2813.807476 +2813.907043 +2813.907209 +2814.006943 +2814.106976 +2814.206909 +2814.306143 +2814.507242 +2814.607042 +2814.706975 +2814.707675 +2814.807042 +2814.907042 +2815.006376 +2815.307041 +2815.706875 +2815.707074 +2815.807041 +2815.807474 +2815.907207 +2816.407174 +2816.607107 +2816.707040 +2821.705403 +2821.957285 +2822.029912 +2822.211830 +2822.488653 +2822.546528 +2822.611996 +2822.844197 +2822.918056 +2823.015159 +2823.239767 +2823.290583 +2823.381159 +2823.434439 +2823.510496 +2823.535971 +2823.626947 +2823.653020 +2823.705168 +2823.791215 +2823.849690 +2823.920253 +2823.944296 +2824.054319 +2824.089217 +2824.103703 +2824.128611 +2824.191715 +2824.243796 +2824.285154 +2824.285454 +2824.308065 +2824.321718 +2824.404035 +2824.425747 +2824.505267 +2824.533239 +2824.589816 +2824.601704 +2824.656050 +2824.708231 +2824.761178 +2824.816356 +2824.844894 +2824.929543 +2824.944161 +2824.971434 +2824.999739 +2825.041497 +2825.113459 +2825.158547 +2825.213259 +2825.242463 +2825.267704 +2825.281424 +2825.306865 +2825.337035 +2825.366305 +2825.382489 +2825.435037 +2825.452186 +2825.467404 +2825.506865 +2825.520418 +2825.535303 +2825.669735 +2825.700771 +2825.728743 +2825.759445 +2825.804234 +2825.819685 +2825.834770 +2825.908330 +2825.923181 +2825.966105 +2826.020584 +2826.049488 +2826.076095 +2826.120351 +2826.196708 +2826.252319 +2826.309761 +2826.441629 +2826.469135 +2826.527576 +2826.581656 +2826.624946 +2826.640796 +2826.658046 +2829.894839 +2829.895006 +2829.895239 +2834.879616 +2834.880115 +2835.880081 +2839.880044 +2844.834718 +2844.885200 +2845.181770 +2845.381936 +2845.881803 +2845.981903 +2846.181902 +2846.281869 +2846.381902 +2846.481869 +2846.581902 +2846.681968 +2846.781935 +2846.881902 +2846.981902 +2847.081935 +2847.182001 +2847.281935 +2847.381968 +2847.481968 +2847.581901 +2847.781967 +2847.882001 +2847.982067 +2848.082034 +2848.281967 +2848.482033 +2848.697085 +2849.081999 +2849.381999 +2849.582032 +2849.897150 +2854.880728 +2854.891251 +2854.998477 +2855.138104 +2855.185889 +2855.222886 +2855.257584 +2855.325217 +2855.477298 +2855.546029 +2855.642233 +2855.717158 +2855.857450 +2855.918523 +2855.940467 +2856.101573 +2856.136371 +2856.191749 +2856.216857 +2856.252655 +2856.292348 +2856.443564 +2856.484323 +2856.508099 +2856.542332 +2856.660380 +2856.818555 +2856.833074 +2856.900140 +2856.911296 +2856.967073 +2857.044995 +2857.071435 +2857.096910 +2857.123616 +2857.179860 +2857.242464 +2857.347026 +2857.462344 +2857.477129 +2857.503303 +2857.530775 +2857.619520 +2857.646793 +2857.676430 +2857.700572 +2857.744462 +2857.795277 +2857.808531 +2857.834638 +2857.892713 +2857.930142 +2857.957448 +2857.982357 +2857.998108 +2858.011128 +2858.025280 +2858.040332 +2858.063043 +2858.086919 +2858.102636 +2858.117022 +2858.131840 +2858.167305 +2858.181224 +2858.204801 +2858.230841 +2858.246659 +2858.259346 +2858.272699 +2858.299972 +2858.445027 +2858.458081 +2858.460711 +2858.504834 +2858.518354 +2858.532406 +2858.573565 +2858.590082 +2858.602303 +2858.614457 +2858.628044 +2858.655217 +2858.682722 +2858.696309 +2858.725813 +2858.739932 +2858.794744 +2859.255682 +2869.881213 +2872.881243 +2872.881643 +2879.887829 +2880.083667 +2880.183833 +2880.195788 +2880.784232 +2880.884232 +2881.184298 +2881.284398 +2881.384265 +2881.484365 +2881.684298 +2881.784497 +2881.884331 +2882.084364 +2882.184497 +2882.284497 +2882.684563 +2882.784530 +2882.884630 +2882.984696 +2883.084729 +2883.184729 +2883.284662 +2883.384596 +2883.584729 +2883.784762 +2883.884762 +2883.984895 +2884.084895 +2884.184861 +2884.284961 +2884.584894 +2884.585494 +2884.684894 +2884.784927 +2884.885027 +2889.884223 +2889.887986 +2889.895678 +2889.986854 +2890.231842 +2890.311395 +2890.442964 +2890.690416 +2890.723882 +2890.910995 +2891.008198 +2891.173666 +2891.267771 +2891.310429 +2891.324315 +2891.346792 +2891.407298 +2891.594045 +2891.639732 +2891.669469 +2891.695177 +2891.756149 +2891.797474 +2891.863375 +2891.890615 +2891.945293 +2891.965839 +2892.038899 +2892.105999 +2892.133505 +2892.302968 +2892.319918 +2892.451153 +2892.480424 +2892.493777 +2892.518419 +2892.542995 +2892.581623 +2892.606964 +2892.630241 +2892.680957 +2892.694210 +2892.744893 +2892.839132 +2892.940097 +2892.965039 +2892.980290 +2892.995708 +2893.006864 +2893.020883 +2893.104533 +2893.116487 +2893.131606 +2893.162841 +2893.174296 +2893.275262 +2893.344060 +2893.356381 +2893.370833 +2893.385818 +2893.423913 +2893.450986 +2893.519717 +2893.546923 +2893.647622 +2893.801036 +2893.901801 +2893.944991 +2894.029673 +2894.046057 +2894.751218 +2904.885773 +2905.886371 +2908.886169 +2915.300481 +2915.787827 +2915.887860 +2915.987793 +2916.087860 +2916.287826 +2916.387793 +2916.587826 +2916.687793 +2916.887826 +2916.987859 +2917.087892 +2917.187925 +2917.287859 +2917.387825 +2917.487892 +2917.587958 +2917.687925 +2917.787925 +2918.187824 +2918.387891 +2918.501077 +2918.687890 +2918.787924 +2918.987923 +2919.187857 +2919.402608 +2919.687956 +2919.787956 +2919.887956 +2924.930974 +2925.039133 +2925.258746 +2925.364540 +2925.413258 +2925.571700 +2925.611926 +2925.643594 +2925.871433 +2926.071000 +2926.228409 +2926.253884 +2926.337800 +2926.375995 +2926.414456 +2926.439531 +2926.497873 +2926.514623 +2926.591146 +2926.665638 +2926.733270 +2926.757213 +2926.850287 +2926.899437 +2926.941562 +2926.978924 +2927.206863 +2927.232670 +2927.259044 +2927.326643 +2927.366170 +2927.419184 +2927.547089 +2927.581721 +2927.591545 +2927.606030 +2927.629640 +2927.655281 +2927.697705 +2927.722114 +2927.738631 +2927.817985 +2927.833469 +2927.848188 +2927.913489 +2927.964937 +2928.003932 +2928.030772 +2928.072363 +2928.096339 +2928.135167 +2928.150618 +2928.190678 +2928.226276 +2928.262506 +2928.275227 +2928.289846 +2928.335000 +2928.373861 +2928.388613 +2928.416053 +2928.444724 +2928.458876 +2928.472196 +2928.485350 +2928.500068 +2928.511957 +2928.536365 +2928.552016 +2928.577957 +2928.616785 +2928.639163 +2928.687647 +2928.704064 +2928.718583 +2928.734634 +2928.774560 +2928.844857 +2928.859775 +2928.914087 +2928.969365 +2928.985349 +2929.000767 +2929.084084 +2929.126774 +2929.246821 +2929.698269 +2941.887468 +2943.887299 +2950.087693 +2950.287959 +2950.388025 +2950.588092 +2950.688125 +2950.788158 +2950.788458 +2950.888158 +2950.988224 +2951.188158 +2951.288158 +2951.388157 +2951.488224 +2951.688157 +2951.788157 +2951.888157 +2951.988223 +2952.088190 +2952.188090 +2952.388156 +2952.488156 +2952.688189 +2952.788189 +2952.888089 +2952.988089 +2953.088122 +2953.188089 +2953.200210 +2953.288122 +2953.388122 +2953.488055 +2953.588089 +2953.688055 +2953.788088 +2953.888055 +2953.988088 +2954.088022 +2954.188055 +2954.288055 +2954.388055 +2954.488054 +2954.588021 +2954.688054 +2954.788021 +2954.888021 +2960.283220 +2960.425311 +2960.464605 +2960.521182 +2960.701268 +2960.782987 +2960.881188 +2960.904631 +2960.952916 +2960.985118 +2961.027675 +2961.122447 +2961.339130 +2961.449486 +2961.499802 +2961.532003 +2961.542626 +2961.567401 +2961.594175 +2961.621414 +2961.669133 +2961.693342 +2961.722479 +2961.768367 +2961.781820 +2961.866236 +2961.931903 +2961.957844 +2961.990578 +2962.016285 +2962.028939 +2962.111723 +2962.126475 +2962.198203 +2962.257477 +2962.270198 +2962.315120 +2962.340328 +2962.375526 +2962.393541 +2962.405962 +2962.444324 +2962.455979 +2962.478523 +2962.523478 +2962.536431 +2962.548852 +2962.561972 +2962.620148 +2962.644856 +2962.658975 +2962.683284 +2962.697370 +2962.712022 +2962.724576 +2962.738396 +2962.751449 +2962.789944 +2962.815519 +2962.879521 +2962.916651 +2962.942825 +2962.979288 +2962.991842 +2963.055911 +2963.070863 +2963.083251 +2963.111256 +2963.123977 +2963.163104 +2963.175891 +2963.187946 +2963.201166 +2963.213454 +2963.225974 +2963.273260 +2963.285548 +2963.297370 +2963.310124 +2963.323344 +2963.350983 +2963.420313 +2963.433600 +2963.446887 +2963.462171 +2963.491542 +2963.580919 +2963.594739 +2963.623477 +2963.872294 +2976.886167 +2985.487191 +2985.587224 +2985.687224 +2985.787224 +2985.887191 +2985.987190 +2986.087157 +2986.187190 +2986.287190 +2986.387257 +2986.587223 +2986.687190 +2986.787190 +2986.887256 +2986.987223 +2987.106703 +2987.187156 +2987.287222 +2987.402707 +2987.487222 +2987.587255 +2987.687155 +2987.787189 +2987.798910 +2987.887189 +2988.187155 +2988.287155 +2988.387188 +2988.487188 +2988.587188 +2988.687221 +2988.787254 +2988.987187 +2989.087154 +2989.187154 +2989.287187 +2989.387187 +2989.487187 +2989.499242 +2989.587154 +2989.687153 +2989.787187 +2989.887187 +2995.019749 +2995.239928 +2995.304431 +2995.356578 +2995.407927 +2995.455679 +2995.539828 +2995.592509 +2995.673295 +2995.960207 +2996.005362 +2996.110723 +2996.162105 +2996.275492 +2996.309092 +2996.339228 +2996.359241 +2996.373261 +2996.407426 +2996.422611 +2996.498369 +2996.550117 +2996.562138 +2996.689711 +2996.738895 +2996.787613 +2996.837263 +2996.905028 +2996.951948 +2996.975458 +2997.000233 +2997.018914 +2997.039560 +2997.075158 +2997.129370 +2997.151815 +2997.216650 +2997.241591 +2997.266300 +2997.287978 +2997.310456 +2997.367832 +2997.433266 +2997.460506 +2997.497902 +2997.513752 +2997.576823 +2997.604328 +2997.633133 +2997.646852 +2997.701598 +2997.726173 +2997.752480 +2997.773359 +2997.795637 +2997.821911 +2997.836596 +2997.860239 +2997.877455 +2997.889743 +2997.904927 +2997.917448 +2997.944155 +2997.958074 +2997.959739 +2997.975091 +2998.000532 +2998.016283 +2998.027405 +2998.056276 +2998.083049 +2998.095736 +2998.109756 +2998.122376 +2998.162037 +2998.174857 +2998.189143 +2998.209756 +2998.222609 +2998.233798 +2998.246452 +2998.272360 +2998.285946 +2998.297168 +2998.310022 +2998.322643 +2998.334897 +2998.348517 +2998.371560 +2998.411021 +2998.424441 +2998.438660 +2998.454644 +2998.480185 +2998.495336 +2998.523475 +2998.806758 +2999.008356 +3010.885734 +3011.885932 +3019.986524 +3020.186690 +3020.187123 +3020.286790 +3020.486423 +3020.888121 +3021.287388 +3021.487022 +3022.087021 +3022.387454 +3022.587021 +3022.686954 +3022.786488 +3022.886987 +3022.986954 +3023.086954 +3023.187020 +3023.287053 +3023.386987 +3023.486953 +3023.587020 +3023.686986 +3023.887119 +3023.987019 +3024.086986 +3024.187052 +3024.387019 +3024.486985 +3024.587019 +3024.686985 +3024.787018 +3029.885515 +3030.094472 +3030.331635 +3030.395438 +3030.442191 +3030.548951 +3030.634132 +3030.678787 +3030.727039 +3030.842290 +3030.876756 +3031.018314 +3031.069297 +3031.092940 +3031.143722 +3031.156409 +3031.248784 +3031.348517 +3031.409722 +3031.420545 +3031.520911 +3031.574291 +3031.634830 +3031.696502 +3031.710388 +3031.799399 +3031.858673 +3031.880451 +3031.903861 +3031.969162 +3031.985846 +3032.032799 +3032.067564 +3032.092273 +3032.147218 +3032.160704 +3032.185746 +3032.208623 +3032.235329 +3032.262769 +3032.312519 +3032.448283 +3032.489575 +3032.528170 +3032.569195 +3032.585212 +3032.598433 +3032.627037 +3032.641057 +3032.666298 +3032.707157 +3032.776021 +3032.791539 +3032.819112 +3032.849881 +3032.871026 +3032.895069 +3032.909754 +3032.931532 +3032.952112 +3032.964533 +3032.978219 +3033.021509 +3033.036661 +3033.106158 +3033.121842 +3033.137160 +3033.163067 +3033.192138 +3033.234696 +3033.294303 +3033.338758 +3033.363600 +3033.421609 +3033.451845 +3033.482514 +3033.513184 +3033.525804 +3033.541122 +3033.572890 +3033.588009 +3033.611785 +3033.631165 +3033.733496 +3033.759404 +3033.775155 +3033.790672 +3033.953842 +3033.998698 +3034.029034 +3034.057738 +3045.886598 +3046.886330 +3047.886496 +3054.986655 +3055.087088 +3055.387521 +3055.387987 +3055.487554 +3055.587654 +3055.687354 +3055.787720 +3055.887720 +3056.187154 +3056.187620 +3056.288053 +3056.488086 +3056.587619 +3056.687719 +3056.787752 +3056.887652 +3056.987619 +3056.988052 +3057.087752 +3057.187785 +3057.388085 +3057.487652 +3057.587552 +3057.687652 +3057.787651 +3057.887651 +3057.987651 +3058.087684 +3058.187651 +3058.287751 +3058.387651 +3058.487717 +3058.587717 +3058.687684 +3058.787750 +3058.801537 +3058.887617 +3058.987650 +3059.002602 +3059.087683 +3059.187817 +3059.287717 +3059.387783 +3059.487683 +3059.587683 +3059.687749 +3059.787716 +3059.800570 +3059.887783 +3065.035729 +3065.047551 +3065.167364 +3065.347351 +3065.496468 +3065.552412 +3065.574257 +3065.659505 +3065.705026 +3065.738126 +3065.783947 +3065.834730 +3066.021076 +3066.066897 +3066.103860 +3066.141689 +3066.232765 +3066.270061 +3066.376820 +3066.409021 +3066.457207 +3066.640223 +3066.667330 +3066.693304 +3066.719644 +3066.761735 +3066.893636 +3066.959837 +3066.986677 +3067.022840 +3067.082980 +3067.108288 +3067.146383 +3067.198065 +3067.226237 +3067.240289 +3067.269294 +3067.353776 +3067.378884 +3067.405557 +3067.511917 +3067.527036 +3067.566430 +3067.611318 +3067.637758 +3067.767595 +3067.819909 +3067.833496 +3067.871624 +3067.887675 +3067.958537 +3067.983878 +3068.000595 +3068.014081 +3068.029566 +3068.114947 +3068.128267 +3068.167661 +3068.242053 +3068.359169 +3068.406455 +3068.434993 +3068.465363 +3068.609885 +3068.640588 +3068.728000 +3068.759302 +3068.842752 +3068.899096 +3068.976951 +3069.009618 +3069.043251 +3069.165829 +3069.198263 +3069.335492 +3080.886529 +3082.886727 +3082.887127 +3083.886959 +3089.886387 +3090.287686 +3090.387819 +3090.587918 +3090.600805 +3090.688018 +3090.787951 +3090.887985 +3090.987918 +3091.088251 +3091.187984 +3091.387851 +3091.487851 +3091.587851 +3091.687884 +3091.887917 +3091.987850 +3092.087884 +3092.287783 +3092.299139 +3092.487850 +3092.687850 +3092.787850 +3092.800970 +3092.887949 +3093.087883 +3093.187882 +3093.288049 +3093.387749 +3093.487882 +3093.587682 +3093.587815 +3093.602401 +3093.687849 +3093.787882 +3093.887815 +3093.899703 +3094.087782 +3094.187848 +3094.287881 +3094.387848 +3099.886177 +3099.890074 +3100.075921 +3100.288475 +3100.536260 +3100.622540 +3100.673156 +3100.725937 +3100.768028 +3100.842454 +3100.917645 +3100.967828 +3100.995367 +3101.011917 +3101.085177 +3101.112050 +3101.252143 +3101.341987 +3101.418710 +3101.471690 +3101.516512 +3101.529100 +3101.579582 +3101.607887 +3101.645716 +3101.767561 +3101.793202 +3101.845649 +3101.870225 +3101.895333 +3101.936092 +3101.975952 +3101.990671 +3102.016711 +3102.127467 +3102.153175 +3102.193734 +3102.330864 +3102.385875 +3102.400461 +3102.416411 +3102.441187 +3102.555239 +3102.568626 +3102.682079 +3102.724703 +3102.739255 +3102.780514 +3102.833394 +3102.875518 +3102.890270 +3102.904057 +3103.035658 +3103.096564 +3103.111049 +3103.138355 +3103.186108 +3103.333393 +3103.363996 +3103.467892 +3103.515245 +3103.559267 +3103.744149 +3103.848578 +3103.881245 +3104.039620 +3104.115943 +3104.321305 +3114.886396 +3116.886227 +3116.886627 +3118.886691 +3119.886757 +3125.187451 +3125.199972 +3125.287617 +3125.387650 +3125.487684 +3125.587750 +3125.687817 +3125.787783 +3125.887850 +3125.987750 +3126.087816 +3126.187783 +3126.287783 +3126.587782 +3126.687849 +3126.787749 +3126.887849 +3126.987715 +3127.087749 +3127.187749 +3127.287815 +3127.387715 +3127.487748 +3127.587781 +3127.687748 +3127.787781 +3127.887715 +3127.987781 +3128.087748 +3128.187781 +3128.287681 +3128.487681 +3128.587714 +3128.601234 +3128.687747 +3128.787747 +3128.887747 +3128.987713 +3129.087747 +3129.187680 +3129.287713 +3129.387713 +3129.400800 +3129.587779 +3129.687713 +3129.787713 +3129.887779 +3134.896465 +3135.091304 +3135.159569 +3135.231730 +3135.303025 +3135.364397 +3135.385543 +3135.553674 +3135.587141 +3135.606854 +3135.682612 +3135.790970 +3135.837324 +3135.945982 +3136.028332 +3136.149944 +3136.198129 +3136.302558 +3136.454939 +3136.503723 +3136.570789 +3136.597363 +3136.624203 +3136.679780 +3136.705987 +3136.744815 +3136.786407 +3136.838655 +3136.877149 +3136.902824 +3137.010816 +3137.036656 +3137.087639 +3137.155704 +3137.197429 +3137.318308 +3137.527998 +3137.559899 +3137.585973 +3137.601424 +3137.616343 +3137.658567 +3137.698727 +3137.713712 +3137.740552 +3137.755337 +3137.783542 +3137.810449 +3137.825500 +3137.841018 +3137.869356 +3137.924401 +3137.941417 +3137.968524 +3138.082177 +3138.159566 +3138.186805 +3138.202156 +3138.245979 +3138.262596 +3138.348244 +3138.363828 +3138.379879 +3138.424600 +3138.470421 +3138.485906 +3138.498360 +3138.546845 +3138.563894 +3138.607218 +3138.651706 +3139.015975 +3139.124733 +3139.420071 +3150.886493 +3153.886490 +3159.986617 +3160.187249 +3160.287449 +3160.387482 +3160.487515 +3160.502800 +3160.587549 +3160.787615 +3160.887615 +3160.987615 +3161.087615 +3161.187581 +3161.287415 +3161.387614 +3161.487614 +3161.587681 +3161.687581 +3161.787481 +3161.887614 +3161.987647 +3162.087647 +3162.187580 +3162.287614 +3162.387580 +3162.487647 +3162.587580 +3162.687580 +3162.787646 +3162.803297 +3162.887580 +3162.987613 +3163.187613 +3163.287613 +3163.387579 +3163.487579 +3163.587579 +3163.687579 +3163.787612 +3163.887612 +3164.087612 +3164.187612 +3164.287612 +3164.387611 +3164.487545 +3164.587511 +3164.601098 +3164.687578 +3164.787544 +3164.887611 +3169.885974 +3169.890203 +3169.918875 +3170.005788 +3170.164962 +3170.252574 +3170.301791 +3170.324835 +3170.482078 +3170.539587 +3170.608851 +3170.713679 +3170.775351 +3170.861598 +3170.899660 +3170.923902 +3170.973785 +3171.002157 +3171.050142 +3171.078947 +3171.168590 +3171.258234 +3171.308051 +3171.319173 +3171.343582 +3171.366725 +3171.404721 +3171.439353 +3171.489802 +3171.595463 +3171.622802 +3171.687504 +3171.791533 +3171.871453 +3171.912579 +3171.913345 +3171.939319 +3171.963628 +3171.990235 +3172.164693 +3172.220005 +3172.273584 +3172.320937 +3172.345346 +3172.372086 +3172.425232 +3172.453171 +3172.483907 +3172.526065 +3172.661729 +3172.698492 +3172.699025 +3172.724133 +3172.751772 +3172.775215 +3172.804986 +3172.856301 +3172.870920 +3172.920637 +3172.948542 +3172.977247 +3173.037020 +3173.067123 +3173.125598 +3173.228062 +3173.288102 +3173.333856 +3173.408715 +3173.436820 +3173.469054 +3173.630726 +3173.721601 +3173.871218 +3173.942880 +3173.990266 +3174.018704 +3174.121834 +3174.328594 +3174.477278 +3174.531457 +3174.602719 +3184.885959 +3186.886423 +3187.886389 +3194.986315 +3195.086815 +3195.187081 +3195.287214 +3195.387381 +3195.487281 +3195.587181 +3195.687347 +3195.787347 +3195.987313 +3196.087347 +3196.187347 +3196.287346 +3196.587346 +3196.687346 +3196.787346 +3196.887346 +3196.987213 +3197.087379 +3197.187379 +3197.287379 +3197.387412 +3197.487312 +3197.587412 +3197.687312 +3197.787345 +3197.987378 +3198.087311 +3198.187345 +3198.287344 +3198.487344 +3198.587377 +3198.687344 +3198.787277 +3198.887311 +3198.987344 +3199.087377 +3199.187377 +3199.287410 +3199.587410 +3199.687343 +3199.701595 +3199.787410 +3205.160165 +3205.209615 +3205.327131 +3205.395096 +3205.772818 +3205.858366 +3206.033957 +3206.134423 +3206.328529 +3206.466890 +3206.491565 +3206.566690 +3206.647043 +3206.792464 +3206.864792 +3206.880876 +3206.915574 +3206.938285 +3206.959497 +3206.984872 +3207.027462 +3207.069121 +3207.108215 +3207.129560 +3207.206916 +3207.248907 +3207.273782 +3207.300256 +3207.314741 +3207.387235 +3207.473815 +3207.497192 +3207.536320 +3207.549806 +3207.562627 +3207.587169 +3207.614042 +3207.638384 +3207.677811 +3207.707049 +3207.729726 +3207.759929 +3207.784704 +3207.809113 +3207.845743 +3207.859962 +3207.885437 +3207.913808 +3207.937884 +3207.952270 +3207.967688 +3207.980242 +3207.993529 +3208.021600 +3208.034454 +3208.117771 +3208.221267 +3208.235453 +3208.330291 +3208.345310 +3208.416006 +3208.445010 +3208.459462 +3208.568719 +3208.582739 +3208.747141 +3220.885524 +3229.986081 +3230.086414 +3230.186647 +3230.286746 +3230.286946 +3230.386913 +3230.486979 +3230.487346 +3230.586979 +3230.686912 +3230.786946 +3230.887045 +3231.087079 +3231.186979 +3231.287045 +3231.387045 +3231.486878 +3231.586878 +3231.686945 +3231.787078 +3231.887078 +3231.987044 +3232.087011 +3232.186944 +3232.286977 +3232.386977 +3232.486977 +3232.586977 +3232.686877 +3232.786977 +3232.886777 +3233.086510 +3233.287010 +3233.386976 +3233.398665 +3233.487010 +3233.587009 +3233.786976 +3233.886943 +3233.986809 +3234.086942 +3234.186942 +3234.387042 +3234.487009 +3234.586942 +3234.886942 +3239.962195 +3240.181908 +3240.218371 +3240.287902 +3240.421934 +3240.483506 +3240.564225 +3240.723566 +3240.772717 +3240.847408 +3240.998491 +3241.130259 +3241.155766 +3241.169186 +3241.194161 +3241.296592 +3241.407048 +3241.432556 +3241.472017 +3241.541514 +3241.675946 +3241.695360 +3241.757065 +3241.838483 +3241.922199 +3241.987101 +3242.001586 +3242.038616 +3242.132289 +3242.147973 +3242.172715 +3242.198689 +3242.225562 +3242.253068 +3242.280008 +3242.294327 +3242.359495 +3242.386901 +3242.399821 +3242.414007 +3242.437184 +3242.453767 +3242.520667 +3242.562059 +3242.603917 +3242.658928 +3242.687134 +3242.709644 +3242.738848 +3242.764390 +3242.805548 +3242.820067 +3242.845908 +3242.888365 +3242.903017 +3242.957962 +3243.011409 +3243.051902 +3243.064489 +3243.156963 +3243.208179 +3243.386667 +3243.595025 +3243.678175 +3243.777475 +3243.849037 +3259.885951 +3264.986112 +3265.086445 +3265.098466 +3265.186745 +3265.202529 +3265.286811 +3265.386911 +3265.487011 +3265.687011 +3265.787377 +3265.986577 +3266.086844 +3266.586976 +3266.687010 +3266.687409 +3266.787010 +3266.787409 +3266.886976 +3266.887442 +3266.986976 +3267.086543 +3267.087009 +3267.187042 +3267.286976 +3267.387042 +3267.486976 +3267.586942 +3267.686942 +3267.786975 +3267.887008 +3267.986975 +3268.087042 +3268.186975 +3268.287008 +3268.386975 +3268.487008 +3268.686908 +3268.787041 +3268.887007 +3268.986941 +3269.087007 +3269.187040 +3269.287040 +3269.386940 +3269.486907 +3269.586973 +3269.686973 +3269.787040 +3269.887006 +3275.222266 +3275.266222 +3275.495126 +3275.506282 +3275.546941 +3275.608313 +3275.859794 +3275.945009 +3275.996291 +3276.110776 +3276.149771 +3276.236417 +3276.274013 +3276.346574 +3276.370550 +3276.436617 +3276.546640 +3276.628192 +3276.651435 +3276.677975 +3276.714439 +3276.739847 +3276.764855 +3276.805448 +3276.842710 +3276.920999 +3276.933753 +3277.014572 +3277.041178 +3277.109643 +3277.176110 +3277.202217 +3277.216470 +3277.241545 +3277.270349 +3277.284468 +3277.310176 +3277.392693 +3277.464721 +3277.529257 +3277.588963 +3277.615737 +3277.645573 +3277.675077 +3277.732686 +3277.758394 +3277.773845 +3277.801484 +3277.843042 +3277.866919 +3278.058460 +3278.072879 +3278.232419 +3278.305979 +3278.377208 +3278.433651 +3278.493658 +3278.509609 +3278.626225 +3278.747770 +3278.916901 +3278.993224 +3291.885486 +3294.886016 +3299.885611 +3300.086543 +3300.096500 +3300.186810 +3300.286876 +3300.301628 +3300.386909 +3300.487042 +3300.503359 +3300.587109 +3300.687109 +3300.886975 +3301.087142 +3301.287108 +3301.387141 +3301.587008 +3301.687041 +3301.887041 +3301.987074 +3302.087107 +3302.187107 +3302.287141 +3302.387107 +3302.487140 +3302.587207 +3302.687140 +3302.787140 +3302.887207 +3302.986940 +3302.987173 +3303.087140 +3303.187006 +3303.387106 +3303.487106 +3303.587173 +3303.687206 +3303.787039 +3303.887172 +3303.987172 +3304.087172 +3304.187172 +3304.487138 +3304.587105 +3304.687138 +3304.787071 +3304.887138 +3309.901985 +3309.909677 +3310.039147 +3310.137349 +3310.201119 +3310.284069 +3310.371781 +3310.509843 +3310.565620 +3310.626260 +3310.767452 +3310.860325 +3310.968983 +3311.071114 +3311.094991 +3311.168717 +3311.268017 +3311.293792 +3311.363488 +3311.400085 +3311.426326 +3311.464987 +3311.512672 +3311.553332 +3311.602749 +3311.640311 +3311.656029 +3311.694457 +3311.709542 +3311.724527 +3311.751001 +3311.776242 +3311.803182 +3311.856029 +3311.923528 +3311.949402 +3312.123394 +3312.190794 +3312.259492 +3312.338979 +3312.416501 +3312.507177 +3312.549868 +3312.593191 +3312.619598 +3312.666051 +3312.691093 +3312.744639 +3312.770846 +3312.910207 +3312.935748 +3312.990726 +3313.019464 +3313.048702 +3313.116767 +3313.251399 +3313.681302 +3313.698185 +3313.862554 +3313.923060 +3314.043139 +3314.117798 +3324.890581 +3328.886315 +3329.886314 +3334.885676 +3335.096731 +3335.187074 +3335.287241 +3335.387341 +3335.487340 +3335.787373 +3335.886874 +3335.887407 +3335.987407 +3336.087406 +3336.187440 +3336.287373 +3336.387406 +3336.487373 +3336.687406 +3337.087405 +3337.187305 +3337.387339 +3337.487372 +3337.587372 +3337.687372 +3337.787438 +3337.887405 +3337.987438 +3338.087404 +3338.187371 +3338.487337 +3338.587371 +3338.687371 +3338.787404 +3338.887370 +3338.987337 +3339.087437 +3339.101423 +3339.287370 +3339.387403 +3339.487436 +3339.587370 +3339.687103 +3339.887436 +3344.889762 +3344.896688 +3344.902316 +3344.902582 +3345.032519 +3345.042676 +3345.096255 +3345.116668 +3345.166185 +3345.290128 +3345.402116 +3345.453897 +3345.570747 +3345.629954 +3345.827157 +3345.839911 +3345.909774 +3345.948735 +3345.970647 +3346.121929 +3346.191625 +3346.218299 +3346.243540 +3346.268482 +3346.324892 +3346.352664 +3346.400983 +3346.450233 +3346.487662 +3346.667216 +3346.692790 +3346.747602 +3346.783666 +3346.853396 +3346.904612 +3346.919164 +3346.944738 +3347.021728 +3347.035348 +3347.049700 +3347.075940 +3347.104112 +3347.128787 +3347.156992 +3347.174009 +3347.227655 +3347.242274 +3347.279470 +3347.295687 +3347.350066 +3347.379536 +3347.476439 +3347.526256 +3347.550532 +3347.585330 +3347.610439 +3347.628554 +3347.683199 +3347.697918 +3347.753928 +3347.780135 +3347.811970 +3347.865050 +3347.893022 +3347.908207 +3347.948500 +3348.016632 +3348.055393 +3348.109672 +3348.134581 +3348.187627 +3348.261454 +3348.286096 +3348.317065 +3348.398683 +3348.449166 +3348.474407 +3348.500881 +3348.530684 +3348.652862 +3348.677870 +3348.742972 +3348.814333 +3348.832016 +3348.859222 +3348.889825 +3348.905609 +3348.918962 +3348.937111 +3348.979735 +3349.010637 +3349.053461 +3349.102279 +3349.131849 +3349.191323 +3349.332481 +3349.346534 +3349.393554 +3349.408239 +3349.457290 +3349.471842 +3349.532814 +3349.619860 +3349.651895 +3360.886516 +3361.886781 +3363.886113 +3363.886679 +3364.892106 +3369.986740 +3369.987073 +3370.098295 +3370.287905 +3370.502590 +3370.604089 +3370.788337 +3370.888004 +3370.988071 +3371.088071 +3371.188004 +3371.487937 +3371.587771 +3371.687970 +3372.087937 +3372.287770 +3372.487936 +3372.788069 +3372.988069 +3373.088002 +3373.188002 +3373.288135 +3373.488135 +3373.788101 +3373.988101 +3374.188168 +3374.288167 +3374.388101 +3379.890992 +3380.130919 +3380.463952 +3380.485597 +3380.568814 +3380.649666 +3380.661155 +3380.686829 +3380.743606 +3380.829786 +3380.912237 +3380.913835 +3380.940109 +3381.031318 +3381.139276 +3381.193855 +3381.219562 +3381.232982 +3381.281134 +3381.349432 +3381.480202 +3381.494088 +3381.518763 +3381.560022 +3381.623225 +3381.637611 +3381.728919 +3381.769512 +3381.807640 +3381.834147 +3381.935812 +3381.976938 +3382.049332 +3382.203111 +3382.284829 +3382.367746 +3382.395286 +3382.421559 +3382.550830 +3382.619195 +3382.634047 +3382.704809 +3382.721326 +3382.783297 +3382.816231 +3382.857922 +3382.894319 +3382.964749 +3383.020260 +3383.033746 +3383.086693 +3383.101978 +3383.128818 +3383.159021 +3383.204409 +3383.290190 +3383.319993 +3383.335744 +3383.410436 +3383.425221 +3383.450529 +3383.468078 +3383.482997 +3383.557522 +3383.568644 +3383.580166 +3383.655324 +3383.658721 +3383.675271 +3383.718428 +3383.762251 +3383.790356 +3383.820492 +3383.836809 +3383.866979 +3383.927252 +3383.940772 +3383.969410 +3384.010535 +3384.024421 +3384.052060 +3384.080299 +3384.135310 +3384.395184 +3384.456922 +3384.689456 +3384.793885 +3384.808703 +3404.987404 +3405.188037 +3405.200025 +3405.288203 +3405.388270 +3405.488303 +3405.588303 +3405.688369 +3405.788336 +3405.888402 +3405.988336 +3406.188402 +3406.288369 +3406.388335 +3406.488368 +3406.588335 +3406.688401 +3407.088368 +3407.288334 +3407.388268 +3407.588334 +3407.688334 +3407.788300 +3407.988367 +3408.288267 +3408.388300 +3408.488366 +3408.588766 +3408.788299 +3408.888299 +3408.988366 +3409.088399 +3409.188332 +3409.288332 +3409.388332 +3409.488299 +3409.588332 +3409.688332 +3409.788365 +3414.903045 +3414.930285 +3415.020128 +3415.060488 +3415.307840 +3415.359788 +3415.455026 +3415.498316 +3415.589392 +3415.673774 +3415.745702 +3415.895119 +3415.966547 +3415.986794 +3416.036944 +3416.061153 +3416.124223 +3416.148166 +3416.186993 +3416.291189 +3416.317296 +3416.433347 +3416.471775 +3416.533646 +3416.585295 +3416.743636 +3416.771142 +3416.823922 +3416.883363 +3416.908704 +3416.937442 +3416.963649 +3417.013499 +3417.047432 +3417.112633 +3417.128051 +3417.166679 +3417.192653 +3417.207072 +3417.285227 +3417.326719 +3417.355657 +3417.408737 +3417.452260 +3417.477635 +3417.519726 +3417.574771 +3417.618327 +3417.660751 +3417.687558 +3417.716263 +3417.757754 +3417.786526 +3417.815563 +3417.842803 +3417.898880 +3417.914431 +3417.958487 +3417.985327 +3418.013232 +3418.055989 +3418.072739 +3418.101477 +3418.128383 +3418.173072 +3418.217061 +3418.247597 +3418.273372 +3418.291054 +3418.393285 +3418.437474 +3418.497614 +3418.670008 +3418.700178 +3418.716861 +3418.732146 +3418.836375 +3418.982562 +3419.027850 +3419.087057 +3419.116927 +3419.134676 +3419.152392 +3419.181862 +3419.194416 +3419.226118 +3419.257054 +3419.269741 +3419.497613 +3419.512831 +3419.572904 +3419.605039 +3419.662981 +3419.693184 +3419.709401 +3430.886612 +3431.886611 +3432.886610 +3439.986437 +3440.086836 +3440.098291 +3440.187069 +3440.302920 +3440.387169 +3440.587335 +3440.687368 +3440.787368 +3440.887368 +3440.987302 +3441.087335 +3441.187301 +3441.287335 +3441.387334 +3441.487368 +3441.587301 +3441.687268 +3441.787334 +3441.887301 +3441.987301 +3442.086834 +3442.087334 +3442.187334 +3442.287267 +3442.387333 +3442.487267 +3442.687300 +3442.787266 +3442.802684 +3442.887200 +3442.987233 +3443.087266 +3443.287233 +3443.387233 +3443.487232 +3443.587199 +3443.601052 +3443.687232 +3443.787265 +3443.887232 +3443.987232 +3444.087199 +3444.187232 +3444.287198 +3444.387198 +3444.487231 +3444.587198 +3444.600019 +3444.687265 +3444.787198 +3444.887164 +3449.907872 +3449.956657 +3450.050230 +3450.194019 +3450.282164 +3450.305374 +3450.365281 +3450.506240 +3450.518860 +3450.563016 +3450.573006 +3450.709703 +3450.756989 +3450.779167 +3450.804974 +3450.878567 +3450.914331 +3450.964281 +3451.022689 +3451.064747 +3451.066279 +3451.093152 +3451.163948 +3451.187724 +3451.247664 +3451.272972 +3451.297814 +3451.332613 +3451.360684 +3451.385526 +3451.409036 +3451.459286 +3451.536508 +3451.647364 +3451.660817 +3451.707537 +3451.757154 +3451.823255 +3451.918759 +3451.934110 +3451.956854 +3451.968476 +3452.048096 +3452.073438 +3452.086558 +3452.164613 +3452.165246 +3452.213997 +3452.229948 +3452.252425 +3452.292685 +3452.350494 +3452.420890 +3452.443068 +3452.481229 +3452.495215 +3452.603840 +3452.617127 +3452.655122 +3452.721156 +3452.735741 +3452.773437 +3452.852025 +3452.865245 +3452.879731 +3452.917759 +3452.931812 +3452.957886 +3453.318325 +3453.331845 +; +12.790830 +13.904115 +14.516269 +15.119632 +17.466882 +17.600415 +18.174474 +19.849930 +23.946763 +25.072269 +26.778028 +26.790816 +27.547891 +27.569370 +27.575464 +27.616356 +28.534504 +28.543495 +28.563541 +28.623481 +30.147822 +30.207729 +30.360343 +30.376060 +33.399234 +33.432367 +33.446986 +33.591275 +38.348347 +40.623536 +40.632960 +43.665624 +43.685338 +44.833855 +48.519598 +48.521030 +48.581869 +49.819830 +49.827589 +50.996985 +51.120695 +51.802113 +52.806674 +52.820094 +54.003842 +60.030376 +60.053786 +60.168538 +60.206533 +61.139999 +61.254850 +63.827808 +64.082020 +64.115254 +64.160242 +64.287914 +67.044488 +67.119280 +69.690739 +69.972990 +70.519343 +70.612250 +72.031496 +72.035626 +72.168293 +72.844816 +77.478644 +77.491531 +77.588068 +82.856560 +82.890260 +84.462220 +92.189551 +93.271502 +93.278794 +93.391748 +95.126911 +96.770433 +96.804265 +100.584148 +100.591075 +100.615117 +111.428427 +120.100712 +121.102709 +121.204874 +123.403240 +124.958083 +129.124213 +129.310527 +130.042161 +131.389745 +131.748919 +131.902232 +131.915286 +131.930604 +132.562871 +132.669764 +132.693540 +132.717183 +132.755245 +132.801565 +133.475557 +133.485714 +133.520113 +134.223009 +134.353479 +134.411421 +137.456739 +140.211248 +143.790399 +143.812244 +143.953303 +145.105416 +145.153135 +145.161027 +147.101418 +147.130089 +147.140179 +147.169183 +147.488530 +152.060820 +152.394686 +152.403144 +152.546601 +152.557456 +152.570477 +152.583497 +152.597383 +152.696184 +153.944734 +153.966046 +165.033301 +165.061007 +165.169698 +165.224077 +165.293974 +165.346788 +165.420747 +165.510058 +165.598602 +165.670297 +165.747753 +165.818582 +165.911722 +165.979654 +166.089344 +166.173660 +166.248319 +166.313187 +166.385048 +166.470196 +166.549750 +166.691075 +166.794372 +166.896503 +167.003762 +167.095670 +167.190209 +167.448750 +167.627138 +167.904328 +168.063235 +168.303861 +168.469395 +168.685279 +168.866498 +168.982215 +169.164200 +169.412085 +169.904459 +190.981094 +200.020612 +200.089810 +200.137962 +200.298268 +200.379753 +200.437262 +200.522876 +200.617582 +200.790875 +200.873792 +201.061004 +201.150681 +201.258274 +201.330568 +201.435097 +201.524207 +201.638626 +201.745519 +201.971793 +202.049415 +202.173890 +202.265032 +202.371026 +202.644486 +202.752578 +203.070293 +203.191905 +203.393836 +203.529766 +203.888074 +204.251411 +204.590605 +204.769059 +204.968260 +206.329198 +210.936419 +210.950671 +210.960195 +210.965024 +210.986502 +211.021634 +211.064890 +211.149206 +211.170851 +211.243911 +211.855133 +211.944843 +212.157264 +214.906179 +215.028956 +215.720530 +215.725758 +215.739278 +215.822894 +215.829921 +215.837680 +215.935149 +215.948102 +216.853463 +220.139707 +223.085957 +227.482690 +227.502503 +227.517721 +227.570468 +227.592513 +227.593645 +227.597541 +227.704434 +229.002402 +235.040458 +235.066265 +235.079851 +235.090907 +235.135696 +235.196435 +235.227970 +235.369928 +236.170426 +238.722205 +238.791569 +246.258262 +248.549901 +248.618699 +248.642142 +250.228354 +250.263386 +250.283133 +250.291458 +250.299017 +254.043003 +255.542435 +260.421451 +260.439966 +261.302103 +261.943661 +261.949888 +261.969801 +264.964270 +264.999202 +266.351648 +268.602529 +268.922841 +270.798331 +270.837958 +270.962167 +272.366960 +272.423004 +273.796130 +273.867891 +273.942816 +274.019140 +274.777947 +274.798693 +274.868090 +274.877314 +274.983741 +275.011846 +275.049475 +275.242482 +275.279645 +275.859598 +275.898425 +277.616406 +277.641381 +277.674947 +277.738950 +278.323032 +278.948073 +282.105778 +282.201016 +282.295389 +282.999550 +285.228786 +286.842071 +288.355423 +291.031044 +292.720953 +305.049245 +305.584643 +305.806720 +305.860100 +305.907120 +305.953407 +305.962431 +306.926366 +308.412845 +309.164126 +309.306084 +314.637414 +315.987596 +316.000983 +316.043473 +316.106111 +318.686528 +318.820494 +318.823990 +320.385727 +321.357654 +322.688488 +332.621046 +334.498267 +334.502096 +334.503928 +338.908685 +340.413546 +340.440352 +340.483109 +340.576249 +341.533358 +341.687604 +342.638252 +343.060496 +343.214375 +355.987123 +358.998509 +363.101335 +372.737656 +372.750709 +372.755272 +375.033258 +375.091633 +375.157067 +375.216375 +375.308349 +375.385472 +375.517507 +375.536754 +375.716241 +375.793464 +375.921236 +376.002388 +376.274316 +376.373516 +376.473283 +376.622500 +376.815674 +376.940316 +377.200622 +377.526496 +377.810212 +379.198588 +379.217936 +379.323597 +390.305570 +391.919521 +392.455119 +393.300273 +410.020902 +410.052803 +410.071784 +410.096793 +410.146776 +410.216839 +410.379343 +410.445943 +410.701021 +410.788733 +410.859929 +410.916972 +411.150105 +411.227461 +411.328560 +411.604983 +411.726095 +411.861160 +411.947840 +412.107547 +412.234719 +412.395758 +412.532022 +413.045308 +413.223763 +413.494558 +414.037948 +414.200019 +414.292459 +414.630388 +414.934150 +439.601958 +445.031523 +445.082305 +445.104750 +445.349172 +445.984103 +446.171215 +446.362024 +446.441212 +446.593360 +449.962087 +451.499515 +462.478392 +462.632871 +470.569226 +478.207714 +478.378210 +478.434919 +478.463458 +479.199088 +480.032620 +480.064455 +480.070849 +480.090129 +480.105414 +480.159626 +480.813838 +484.257458 +484.679435 +485.646168 +490.526183 +490.567974 +492.399008 +493.858414 +493.885953 +495.471133 +497.000868 +497.027841 +497.035534 +497.079423 +501.909355 +505.180514 +505.196664 +507.005487 +508.655036 +509.819170 +509.826197 +509.839850 +509.980309 +509.984938 +513.929623 +515.347803 +515.425925 +515.474310 +515.501116 +515.576074 +515.619831 +515.659558 +516.625924 +516.653429 +516.666283 +516.701981 +516.710073 +516.755128 +516.841807 +516.887695 +516.920895 +517.745236 +518.478769 +518.688326 +518.825988 +519.001679 +519.834478 +520.724388 +520.743102 +520.876602 +520.881297 +520.976236 +522.147197 +523.186856 +523.220955 +530.997937 +539.454739 +539.463197 +539.516144 +539.708784 +540.598061 +540.818374 +542.001989 +545.486268 +546.190629 +550.055261 +550.659589 +552.544769 +552.646733 +552.707006 +553.776203 +553.800745 +562.162575 +564.082020 +566.728771 +566.799633 +571.803224 +571.945782 +573.547545 +579.102118 +582.159791 +582.181902 +582.989960 +585.630983 +586.327186 +587.331114 +587.526752 +587.961150 +588.012499 +588.263448 +589.391785 +589.490220 +589.553023 +590.377465 +601.077088 +601.935295 +612.280307 +620.013699 +620.041005 +620.126453 +620.158288 +620.295284 +621.551127 +621.811233 +621.954490 +622.569874 +622.741402 +630.054382 +630.061841 +631.225776 +631.323478 +631.342625 +633.029437 +633.030436 +635.030700 +636.027969 +636.029434 +636.770692 +641.592299 +643.136220 +643.228794 +643.229660 +643.428661 +643.729126 +643.830492 +643.930691 +643.931124 +644.031058 +644.131957 +644.331856 +644.831623 +644.930224 +645.130657 +645.231289 +645.430590 +645.531156 +645.931455 +646.231055 +646.328891 +646.529756 +646.631321 +646.632054 +646.832254 +646.833253 +647.032220 +647.431953 +647.533352 +647.729356 +647.730987 +647.933118 +649.168049 +649.383799 +649.429587 +649.529587 +649.541841 +649.692457 +649.970346 +651.954826 +653.041804 +653.059820 +653.090822 +653.165947 +653.180765 +653.207372 +653.248864 +653.317861 +653.343935 +653.415131 +653.444102 +653.487691 +653.518427 +653.564681 +653.601311 +653.643302 +653.676303 +653.689356 +653.731547 +653.823089 +653.870009 +653.925253 +653.959319 +654.001610 +654.152126 +654.202176 +654.246032 +654.279199 +654.332179 +654.371174 +654.425153 +654.461883 +654.514663 +654.549062 +654.596482 +654.655189 +654.684460 +654.719125 +654.766012 +654.797380 +654.841536 +654.891420 +654.954856 +654.985426 +655.045299 +655.100111 +655.134676 +655.179864 +655.220657 +655.302142 +655.353990 +655.366810 +655.382528 +655.412332 +655.443567 +655.476334 +655.534676 +655.593384 +655.658518 +655.695049 +655.743866 +655.814529 +655.871605 +655.918758 +655.964446 +656.016327 +656.061648 +656.113996 +656.212464 +656.256154 +656.291751 +656.344066 +656.373469 +656.385358 +656.406969 +656.456253 +656.507735 +656.554288 +656.586922 +656.626050 +656.664844 +656.739270 +656.773902 +656.799277 +656.835773 +656.866576 +656.902407 +656.916592 +656.983426 +657.013928 +657.080329 +657.189419 +657.194181 +657.231311 +657.432210 +657.443265 +657.462280 +657.498277 +657.499675 +657.502739 +657.540468 +657.573235 +657.644197 +657.703538 +657.773668 +657.775832 +657.791250 +657.845396 +657.894214 +658.012129 +659.918088 +660.081358 +660.718687 +661.987883 +667.122077 +667.224141 +667.395636 +668.030201 +668.030501 +669.031399 +670.227302 +672.640120 +673.331028 +674.035823 +674.060398 +675.418772 +675.476814 +675.557067 +675.570586 +675.691266 +675.713144 +676.666856 +676.729893 +676.735887 +676.749540 +676.840382 +677.928326 +678.028826 +678.029725 +678.035319 +678.129225 +678.218836 +678.330324 +678.330857 +678.429991 +678.431623 +678.532122 +678.631722 +678.632122 +678.633654 +678.733454 +678.833920 +679.132721 +679.227925 +679.430190 +679.431222 +679.631422 +679.728757 +679.934119 +680.133719 +680.233885 +680.430688 +680.933884 +681.133418 +681.134817 +681.233118 +681.233951 +681.333651 +681.433085 +681.433951 +681.932385 +682.133683 +682.334649 +682.532884 +682.633250 +682.730053 +687.282396 +687.304341 +687.349363 +688.063781 +688.095482 +688.135376 +688.164247 +688.192785 +688.221423 +688.258353 +688.296881 +688.345932 +688.396381 +688.397247 +688.442701 +688.488422 +688.575102 +688.603307 +688.717959 +688.757420 +688.837173 +688.886524 +688.918225 +689.019491 +689.051925 +689.115095 +689.131312 +689.175701 +689.236640 +689.268042 +689.299211 +689.331179 +689.367742 +689.401175 +689.443500 +689.478531 +689.565577 +689.693150 +689.735308 +689.783359 +689.832277 +689.860183 +689.882194 +689.954521 +690.011764 +690.044398 +690.123019 +690.173069 +690.218824 +690.266742 +690.333908 +690.369739 +690.427248 +690.475267 +690.509533 +690.574301 +690.630012 +690.698011 +690.744098 +690.789652 +690.831244 +690.875566 +690.950957 +690.999575 +691.038170 +691.072636 +691.114394 +691.151224 +691.205736 +691.235539 +691.281260 +691.329079 +691.438836 +691.543997 +691.586588 +691.658949 +691.727047 +691.766841 +691.832175 +691.834007 +691.873501 +691.919088 +692.069837 +692.100873 +692.126747 +692.147659 +692.183157 +692.246694 +692.491682 +692.571668 +692.607832 +692.653020 +692.771468 +692.789750 +692.837436 +692.889084 +692.925448 +692.956516 +693.003569 +693.024448 +699.513020 +701.171527 +701.178653 +701.193771 +701.205692 +701.211320 +703.032031 +703.032297 +703.032863 +705.032295 +705.032728 +706.891734 +709.609147 +709.840282 +709.858264 +710.339083 +711.835086 +712.028925 +712.035319 +713.229989 +713.231188 +713.432786 +713.933585 +714.332719 +714.433751 +714.533551 +714.834017 +715.234516 +715.333917 +715.334216 +715.598052 +715.667116 +715.683966 +715.689860 +715.728988 +715.879870 +715.931219 +716.034715 +716.234648 +716.333216 +716.529786 +716.731751 +716.933582 +717.034448 +717.232616 +717.234081 +717.334081 +717.433382 +717.434680 +717.435413 +717.534281 +717.733348 +717.735446 +717.932149 +718.032948 +721.950527 +722.583493 +723.031645 +723.038937 +723.061681 +723.188721 +723.202973 +723.235174 +723.252923 +723.291884 +723.309233 +723.324984 +723.336073 +723.371638 +723.399909 +723.418258 +723.439303 +723.482060 +723.483292 +723.567808 +723.656819 +723.682826 +723.711797 +723.742333 +723.768307 +723.801940 +723.923119 +723.939203 +723.994348 +724.045030 +724.092016 +724.109932 +724.125250 +724.193182 +724.206702 +724.283725 +724.361114 +724.405802 +724.423618 +724.460814 +724.594946 +724.644896 +724.698409 +724.731476 +724.807367 +724.852988 +724.917523 +725.005669 +725.049724 +725.096011 +725.181259 +725.182758 +725.232675 +725.347759 +725.422018 +725.452588 +725.467073 +725.532941 +725.598642 +725.612528 +725.627180 +725.672701 +725.744795 +725.812228 +725.813060 +725.847459 +725.891482 +725.904003 +725.937103 +725.983190 +726.008531 +726.052154 +726.086587 +726.101538 +726.174798 +726.226280 +726.272301 +726.338701 +726.374432 +726.404801 +726.451321 +726.499140 +726.561211 +726.591614 +726.655384 +726.799473 +726.885154 +726.945394 +726.948357 +727.098074 +727.160778 +727.191281 +727.237568 +727.277361 +727.392013 +727.407265 +727.455949 +727.470768 +727.487185 +727.523981 +727.596042 +727.624980 +727.647591 +727.751953 +727.771267 +727.813391 +727.818919 +727.834337 +727.875662 +727.877028 +727.937933 +727.941530 +727.946258 +727.981823 +728.008496 +728.009362 +728.398306 +736.224139 +736.330432 +739.030696 +740.453539 +740.475650 +741.626531 +748.230754 +748.231420 +748.531919 +748.532651 +748.932984 +749.232551 +749.732151 +749.833050 +749.833982 +749.932850 +750.332317 +750.433049 +750.531684 +750.630784 +751.332316 +751.332715 +751.433081 +751.633348 +751.634580 +751.732448 +751.932348 +751.934013 +752.132315 +752.132681 +752.231049 +752.432514 +752.832647 +756.697445 +758.028613 +758.068506 +758.092116 +758.156318 +758.185089 +758.213527 +758.241266 +758.269505 +758.315825 +758.317024 +758.347627 +758.353088 +758.396911 +758.453787 +758.484223 +758.544763 +758.591915 +758.629444 +758.645761 +758.691249 +758.729677 +758.793181 +758.942165 +758.974832 +759.018255 +759.099907 +759.115391 +759.170436 +759.294778 +759.367339 +759.402138 +759.417522 +759.469171 +759.503902 +759.542264 +759.606200 +759.637402 +759.726247 +759.778861 +759.836103 +759.897309 +759.945793 +759.989083 +760.036036 +760.130442 +760.178660 +760.205334 +760.268704 +760.343728 +760.376695 +760.436369 +760.515457 +760.544761 +760.627045 +760.653518 +760.697441 +760.712593 +760.740098 +760.776562 +760.805599 +760.850022 +760.902802 +760.946458 +760.972865 +761.052219 +761.085786 +761.142729 +761.178260 +761.193411 +761.214357 +761.216788 +761.231673 +761.266438 +761.310927 +761.342495 +761.358113 +761.415722 +761.440231 +761.492245 +761.521949 +761.537101 +761.631439 +761.741063 +761.742195 +761.776594 +761.832571 +761.850687 +761.866404 +761.897873 +761.912059 +761.932238 +761.933237 +762.042295 +762.142961 +762.172764 +762.210027 +762.275728 +762.306664 +762.308129 +762.308895 +762.454982 +762.500902 +762.502101 +762.547589 +762.578292 +762.595042 +762.614222 +762.646157 +762.675161 +762.765571 +762.768002 +762.768601 +762.860875 +763.067802 +763.080922 +773.030296 +773.030962 +774.219006 +774.258267 +775.030061 +778.030091 +783.129786 +783.631118 +783.729886 +783.830685 +784.031783 +784.131550 +784.331450 +784.732216 +784.832315 +785.132348 +785.132781 +785.330783 +785.631116 +785.931249 +785.931615 +786.132447 +786.232181 +786.332014 +786.630882 +786.732280 +786.733312 +786.932014 +787.431247 +787.531180 +787.931413 +793.037569 +793.054618 +793.096343 +793.162810 +793.200039 +793.216922 +793.307698 +793.396409 +793.420485 +793.481291 +793.511794 +793.553286 +793.585653 +793.635370 +793.684021 +793.834837 +793.878960 +793.915789 +793.965307 +794.010728 +794.039932 +794.095443 +794.148257 +794.225646 +794.268070 +794.341363 +794.408663 +794.451986 +794.536901 +794.568236 +794.603068 +794.630740 +794.676195 +794.760111 +794.792945 +794.823547 +794.885252 +794.942395 +794.991712 +795.035435 +795.053917 +795.073198 +795.119218 +795.153850 +795.194077 +795.316654 +795.364839 +795.398772 +795.421316 +795.471199 +795.508096 +795.559844 +795.596074 +795.640496 +795.683920 +795.762108 +795.907429 +795.946190 +796.019251 +796.066337 +796.103966 +796.139497 +796.315954 +796.383486 +796.403632 +796.420682 +796.469666 +796.501967 +796.548554 +796.577392 +796.634401 +796.679023 +796.682353 +796.717485 +796.734002 +796.780822 +796.888880 +796.890945 +796.928174 +796.931704 +796.963639 +796.995906 +797.033702 +797.070232 +797.118317 +797.164637 +797.199969 +797.249985 +797.340894 +797.403298 +797.458909 +797.509825 +797.662939 +797.724910 +797.758443 +797.820781 +797.854880 +797.945656 +797.978456 +808.029462 +808.029795 +818.130517 +818.230850 +818.231449 +818.431383 +818.531316 +818.631815 +819.131881 +819.332248 +819.432214 +819.532514 +819.832380 +819.832747 +819.932380 +820.032613 +820.333046 +820.432579 +820.931946 +820.932379 +821.032113 +821.032845 +821.132978 +821.231879 +821.634476 +821.832578 +821.833144 +821.932445 +822.033144 +822.232111 +822.332511 +823.032610 +823.033143 +828.037567 +828.044860 +828.108329 +828.164473 +828.192412 +828.220550 +828.222781 +828.249588 +828.277826 +828.279525 +828.279791 +828.293278 +828.307230 +828.322049 +828.335502 +828.361043 +828.361842 +828.373098 +828.388715 +828.432405 +828.449588 +828.474463 +828.536168 +828.576461 +828.597673 +828.679358 +828.711725 +828.743627 +828.775095 +828.789880 +828.790680 +828.807030 +828.874229 +828.906564 +828.950320 +828.982354 +829.030473 +829.048155 +829.081788 +829.155448 +829.156247 +829.172697 +829.189680 +829.202534 +829.205731 +829.266670 +829.270333 +829.304399 +829.330106 +829.376293 +829.416820 +829.448088 +829.494009 +829.539563 +829.574062 +829.605331 +829.638797 +829.700103 +829.751751 +829.769633 +829.771398 +829.783253 +829.811824 +829.828308 +829.859243 +829.909926 +829.962906 +829.998770 +830.049919 +830.090312 +830.124811 +830.187515 +830.215120 +830.248987 +830.281254 +830.330638 +830.348187 +830.364304 +830.386282 +830.448986 +830.568900 +830.595973 +830.607528 +830.640961 +830.690744 +830.716585 +830.798903 +830.826475 +830.912556 +830.941826 +831.018649 +831.031337 +831.046155 +831.072129 +831.086881 +831.101600 +831.172129 +831.217917 +831.235599 +831.300301 +831.357710 +831.393874 +831.444124 +831.530271 +831.592009 +831.671363 +831.705129 +831.755745 +831.798835 +831.831003 +831.865435 +831.893707 +831.912055 +832.196637 +832.248085 +832.365435 +832.396337 +832.443623 +832.461239 +832.476990 +832.568498 +832.634099 +832.656610 +832.682750 +832.769264 +832.803330 +832.887346 +836.686975 +838.197230 +846.029290 +846.030389 +847.031088 +853.030482 +853.131281 +853.231581 +853.432047 +853.732346 +853.733978 +853.832280 +853.832679 +853.833179 +854.433045 +854.632812 +854.733045 +854.833311 +855.133177 +855.233044 +855.233277 +855.533943 +856.233576 +856.332943 +856.333642 +856.833376 +856.933642 +857.434041 +857.434940 +857.533075 +857.633275 +857.933541 +858.033441 +859.313693 +860.608430 +863.046623 +863.054648 +863.075760 +863.108794 +863.135967 +863.166236 +863.200302 +863.219749 +863.247089 +863.262140 +863.288614 +863.318950 +863.348454 +863.387881 +863.419982 +863.505164 +863.577058 +863.622580 +863.667634 +863.695973 +863.740595 +863.833735 +863.886016 +864.015886 +864.060608 +864.108593 +864.163771 +864.199635 +864.310957 +864.381220 +864.461040 +864.510324 +864.571230 +864.614786 +864.648519 +864.707993 +864.727940 +864.760141 +864.804996 +864.858143 +864.898969 +864.947287 +865.037397 +865.072728 +865.107493 +865.156078 +865.192908 +865.207493 +865.245588 +865.363504 +865.391442 +865.443357 +865.480720 +865.514086 +865.632667 +865.667266 +865.716017 +865.749784 +865.786880 +865.878888 +865.929770 +865.983783 +866.025607 +866.107892 +866.151581 +866.191575 +866.229137 +866.274192 +866.358208 +866.443090 +866.490076 +866.540725 +866.589410 +866.639393 +866.674924 +866.722843 +866.771428 +866.804628 +866.851381 +866.869629 +866.921178 +866.961238 +866.999033 +867.050548 +867.116349 +867.184614 +867.243255 +867.287811 +867.405992 +867.423541 +867.468363 +867.528636 +867.567897 +867.606059 +867.648383 +867.752146 +867.798733 +867.839492 +867.873225 +867.909255 +867.944587 +873.000326 +873.019673 +875.845411 +875.898125 +877.435220 +877.531956 +877.639182 +878.031456 +879.031022 +880.725226 +883.032983 +886.317828 +886.530815 +886.673539 +888.135642 +888.432745 +888.633177 +888.833144 +888.833743 +888.932644 +888.933543 +888.934276 +889.232577 +889.336906 +890.030612 +890.134275 +890.433675 +890.732642 +890.831410 +890.933008 +891.032675 +891.433774 +891.434140 +891.740866 +891.776331 +891.933007 +892.035372 +892.132175 +892.433173 +892.535571 +892.830909 +895.947322 +897.704230 +897.709725 +897.915785 +897.950451 +898.029005 +898.045456 +898.086914 +898.135432 +898.147387 +898.165269 +898.177890 +898.219381 +898.233534 +898.278456 +898.364170 +898.404263 +898.481353 +898.538995 +898.582984 +898.659741 +898.709524 +898.742957 +898.844489 +898.879720 +898.997369 +899.038961 +899.085181 +899.149783 +899.181385 +899.207159 +899.249584 +899.297536 +899.316184 +899.329404 +899.378255 +899.424475 +899.483150 +899.515617 +899.565168 +899.595437 +899.639293 +899.696037 +899.731435 +899.807925 +899.854911 +899.902663 +899.975124 +899.976556 +900.012986 +900.061105 +900.097468 +900.141591 +900.230801 +900.273325 +900.379186 +900.407191 +900.454178 +900.556042 +900.576422 +900.630568 +900.690874 +900.726405 +900.770794 +900.806325 +900.853012 +900.880684 +900.931467 +900.985679 +901.002762 +901.130368 +901.208190 +901.355242 +901.374423 +901.432565 +901.634130 +901.662535 +901.711752 +901.727536 +901.752711 +901.823640 +901.827403 +901.861602 +901.917779 +901.920543 +902.003394 +902.005525 +902.036760 +902.153344 +902.200430 +902.216947 +902.256041 +902.290040 +902.303793 +902.348648 +902.382448 +902.433730 +902.446384 +902.476087 +902.493969 +902.519311 +902.580782 +902.595268 +902.722774 +902.819177 +902.852843 +902.867795 +902.869393 +902.997665 +903.000862 +903.330598 +903.404957 +903.535826 +904.812582 +906.343316 +908.971419 +909.405318 +910.317604 +910.350538 +914.031420 +915.030553 +915.542474 +915.554362 +916.032784 +918.030883 +918.031150 +921.459918 +921.487390 +921.567077 +921.619425 +921.622288 +921.724420 +921.725285 +921.732711 +923.027482 +923.094248 +923.105104 +923.128447 +923.137971 +923.162680 +923.177798 +923.234608 +923.371438 +923.404271 +923.534041 +923.632343 +923.632776 +923.732476 +923.733209 +923.833309 +923.934707 +924.225682 +924.276964 +924.298343 +924.329978 +924.467840 +924.477064 +924.485123 +924.491317 +924.531077 +924.539269 +924.633774 +924.734640 +924.933973 +925.033374 +925.133574 +925.403437 +925.423717 +925.428911 +925.435105 +925.503270 +925.529577 +925.582891 +925.611196 +925.628578 +925.630909 +925.730576 +926.033440 +926.433805 +926.632540 +927.033572 +927.133672 +927.134338 +927.533738 +927.633505 +927.727744 +927.730208 +927.730940 +927.735269 +927.831273 +927.834237 +928.709794 +928.748488 +928.827443 +928.923114 +928.992378 +929.959643 +929.999803 +931.605395 +932.958041 +933.037595 +933.082317 +933.148517 +933.162836 +933.163303 +933.246386 +933.248584 +933.277522 +933.278188 +933.281684 +933.295603 +933.311521 +933.313086 +933.351481 +933.385480 +933.420445 +933.424608 +933.454644 +933.481717 +933.501331 +933.538027 +933.598767 +933.611121 +933.656942 +933.662736 +933.704294 +933.730135 +933.732166 +933.767897 +933.830002 +933.870461 +933.880418 +933.903761 +933.956875 +934.031067 +934.061404 +934.193072 +934.295036 +934.343788 +934.404460 +934.446685 +934.492772 +934.535429 +934.585079 +934.645619 +934.692938 +934.767064 +934.800530 +934.848183 +934.893970 +934.929035 +934.968762 +935.013384 +935.061169 +935.106591 +935.140490 +935.171859 +935.234862 +935.463400 +935.584512 +935.622574 +935.669128 +935.706124 +935.752244 +935.789407 +935.842088 +935.893736 +935.943952 +935.997632 +936.029001 +936.081848 +936.162334 +936.223506 +936.295867 +936.323772 +936.368494 +936.407189 +936.564997 +936.720409 +936.785843 +936.836659 +936.891970 +936.911351 +936.950245 +937.039023 +937.122273 +937.150178 +937.187041 +937.234860 +937.415313 +937.482279 +937.532396 +937.575286 +937.643518 +937.680281 +937.718276 +937.753641 +937.805123 +937.859135 +937.942352 +937.979482 +940.079146 +940.125100 +940.155270 +947.606878 +947.862222 +948.030454 +949.028921 +949.029920 +949.290925 +949.296253 +950.223259 +950.260788 +950.308773 +950.435546 +951.032749 +951.672375 +951.841639 +952.032415 +952.917995 +958.029012 +958.031543 +958.129411 +958.135439 +958.135972 +958.833007 +958.933240 +959.234339 +959.334838 +959.634405 +959.732240 +959.933472 +959.934238 +959.934904 +960.335170 +961.031773 +961.232838 +961.331706 +961.533171 +961.631339 +961.631739 +961.633038 +961.733604 +961.831739 +961.833337 +962.034669 +962.233403 +962.234169 +962.433237 +962.732937 +962.831938 +967.046419 +968.037327 +968.045219 +968.046551 +968.055542 +968.077753 +968.086611 +968.104693 +968.120377 +968.148016 +968.189708 +968.190141 +968.212651 +968.222641 +968.279651 +968.310087 +968.327004 +968.364932 +968.390607 +968.403760 +968.421176 +968.436994 +968.569594 +968.580683 +968.584879 +968.609954 +968.659204 +968.676620 +968.835528 +968.897999 +968.943220 +968.955907 +968.997233 +969.039524 +969.059237 +969.118744 +969.170226 +969.212517 +969.257905 +969.301861 +969.354575 +969.398931 +969.432064 +969.477619 +969.511684 +969.545917 +969.604092 +969.661668 +969.696832 +969.768261 +969.779217 +969.796466 +969.809886 +969.904724 +969.907555 +969.912783 +969.935161 +969.950345 +969.984678 +970.016046 +970.029699 +970.057871 +970.089939 +970.107222 +970.137591 +970.177818 +970.238357 +970.276086 +970.352176 +970.384777 +970.487275 +970.532762 +970.593668 +970.609918 +970.639389 +970.666029 +970.772656 +970.810917 +970.864397 +970.901160 +970.949645 +970.971756 +971.002026 +971.068626 +971.132995 +971.206588 +971.286308 +971.329165 +971.359968 +971.405522 +971.443351 +971.504390 +971.580147 +971.581846 +971.598762 +971.640687 +971.693900 +971.813747 +971.874985 +971.978615 +972.029597 +972.062564 +972.107186 +972.168292 +972.209251 +972.255604 +972.319840 +972.391668 +972.448744 +972.496064 +972.574818 +972.689104 +972.724835 +972.789403 +972.927865 +972.991568 +980.407411 +981.638779 +983.030252 +984.007940 +984.031517 +984.841006 +987.725186 +988.031979 +990.130811 +990.342266 +990.487887 +993.031774 +993.132074 +993.332506 +993.332806 +993.532906 +993.832806 +994.234870 +994.334603 +994.336335 +994.434970 +994.534204 +994.534803 +994.634470 +994.738366 +995.033770 +995.234436 +995.535435 +995.631205 +995.632637 +995.833603 +996.330672 +996.331205 +996.733169 +996.733702 +996.832903 +997.433801 +997.458610 +997.932568 +997.933334 +998.031669 +1000.729702 +1003.065930 +1003.066663 +1003.118810 +1003.133695 +1003.222107 +1003.237591 +1003.250112 +1003.330332 +1003.351111 +1003.364165 +1003.397998 +1003.429566 +1003.465130 +1003.514015 +1003.549113 +1003.550611 +1003.578717 +1003.666162 +1003.685277 +1003.752409 +1003.829799 +1003.833129 +1003.859103 +1003.910751 +1003.961933 +1004.022506 +1004.060335 +1004.126735 +1004.166994 +1004.292502 +1004.344983 +1004.385043 +1004.401160 +1004.495732 +1004.560001 +1004.651210 +1004.802825 +1004.853973 +1004.904123 +1005.109351 +1005.163930 +1005.195831 +1005.245282 +1005.291336 +1005.341152 +1005.388039 +1005.435258 +1005.470257 +1005.519874 +1005.561632 +1005.596763 +1005.736290 +1005.983376 +1006.101758 +1006.128031 +1006.186839 +1006.212580 +1006.213546 +1006.284408 +1006.313779 +1006.328098 +1006.396063 +1006.481311 +1006.501924 +1006.559566 +1006.603123 +1006.618607 +1006.640152 +1006.653972 +1006.714944 +1006.750342 +1006.755270 +1006.799193 +1006.818207 +1006.844081 +1006.879113 +1006.982776 +1006.993931 +1007.020338 +1007.026865 +1007.041684 +1007.131360 +1007.143382 +1007.160098 +1007.216142 +1007.274917 +1007.347477 +1007.381443 +1007.436622 +1007.453371 +1007.484340 +1007.505852 +1007.521037 +1007.579678 +1007.632259 +1007.723801 +1007.757634 +1007.767890 +1007.803654 +1007.836888 +1007.857900 +1007.886138 +1007.935655 +1007.971020 +1008.000590 +1008.497793 +1008.548875 +1011.013741 +1011.028393 +1011.265123 +1011.308246 +1012.718168 +1012.759793 +1013.842243 +1013.965519 +1015.850732 +1015.861288 +1017.391157 +1018.032115 +1018.675671 +1018.692921 +1018.772075 +1018.781898 +1019.032148 +1019.526187 +1019.742004 +1020.031847 +1020.600744 +1020.614963 +1022.032245 +1026.521085 +1026.544594 +1026.595477 +1028.131240 +1028.131906 +1028.231273 +1028.232072 +1028.634003 +1029.135867 +1029.334768 +1029.432470 +1029.633070 +1029.733602 +1029.933868 +1030.034401 +1030.535100 +1031.033901 +1031.034567 +1031.533501 +1032.233733 +1032.934432 +1033.034598 +1038.055505 +1038.065196 +1038.073987 +1038.086275 +1038.217477 +1038.247280 +1038.273720 +1038.287307 +1038.306487 +1038.321173 +1038.347513 +1038.569424 +1038.655438 +1038.751409 +1038.842018 +1038.890037 +1038.921205 +1038.951608 +1039.041585 +1039.138754 +1039.204322 +1039.247312 +1039.312480 +1039.352207 +1039.435657 +1039.461165 +1039.477748 +1039.511981 +1039.556836 +1039.603323 +1039.649743 +1039.725367 +1039.726999 +1039.761931 +1039.851508 +1039.904854 +1039.941584 +1040.010215 +1040.061264 +1040.157168 +1040.190868 +1040.241517 +1040.298027 +1040.327165 +1040.374318 +1040.444381 +1040.480112 +1040.570588 +1040.613312 +1040.707251 +1040.721703 +1040.763062 +1040.796062 +1040.829062 +1040.861430 +1040.896362 +1040.949209 +1041.042415 +1041.099791 +1041.159698 +1041.225799 +1041.270920 +1041.360564 +1041.408283 +1041.465292 +1041.580177 +1041.581010 +1041.628862 +1041.659631 +1041.728296 +1041.795961 +1041.864526 +1041.910380 +1041.942082 +1041.972551 +1042.001023 +1042.164958 +1042.194729 +1042.221802 +1042.252637 +1042.284206 +1042.315774 +1042.330992 +1042.376480 +1042.409813 +1042.450173 +1042.512144 +1042.572484 +1042.608248 +1042.665724 +1042.738684 +1042.786903 +1042.843679 +1042.875814 +1042.913676 +1042.963859 +1043.019436 +1048.506544 +1051.581433 +1057.030678 +1058.029778 +1058.030810 +1061.727809 +1061.764672 +1062.211692 +1063.231271 +1063.431737 +1063.531504 +1063.533635 +1063.731703 +1063.932269 +1064.031570 +1064.132769 +1064.232369 +1064.232702 +1064.332269 +1064.332868 +1064.533035 +1064.533701 +1064.632735 +1064.732768 +1064.832135 +1065.032002 +1065.033267 +1065.132668 +1065.332568 +1065.832101 +1066.131901 +1066.232101 +1066.233000 +1066.432700 +1066.631534 +1066.832999 +1067.232832 +1067.432665 +1067.732698 +1067.831733 +1067.832798 +1067.833231 +1067.931966 +1067.932698 +1073.029163 +1073.029330 +1073.029530 +1073.038288 +1073.044948 +1073.057435 +1073.087771 +1073.137522 +1073.169789 +1073.196562 +1073.254937 +1073.257202 +1073.273852 +1073.289203 +1073.325167 +1073.353838 +1073.355304 +1073.355703 +1073.356802 +1073.380878 +1073.398760 +1073.410948 +1073.433325 +1073.461364 +1073.498294 +1073.525899 +1073.559499 +1073.559799 +1073.587038 +1073.598427 +1073.627797 +1073.674651 +1073.690168 +1073.757667 +1073.830295 +1073.890068 +1073.940551 +1073.971620 +1074.005453 +1074.042815 +1074.105486 +1074.139852 +1074.171253 +1074.197394 +1074.265959 +1074.291700 +1074.322169 +1074.385339 +1074.418206 +1074.517474 +1074.551906 +1074.643248 +1074.710081 +1074.745012 +1074.760464 +1074.803820 +1074.836121 +1074.854037 +1074.909748 +1074.976747 +1074.992598 +1075.010314 +1075.050407 +1075.082808 +1075.122268 +1075.235755 +1075.329094 +1075.372318 +1075.419238 +1075.460163 +1075.496727 +1075.535921 +1075.629627 +1075.676713 +1075.703819 +1075.776846 +1075.808048 +1075.840915 +1075.869287 +1075.942147 +1075.961894 +1076.051371 +1076.056633 +1076.084205 +1076.151005 +1076.214342 +1076.291398 +1076.292197 +1076.355167 +1076.416106 +1076.444378 +1076.476979 +1076.526762 +1076.593828 +1076.607781 +1076.715773 +1076.734687 +1076.816206 +1076.851604 +1076.895060 +1076.926795 +1077.004651 +1077.049905 +1077.093328 +1077.126295 +1077.160694 +1077.218503 +1077.279142 +1077.310511 +1077.346775 +1077.365822 +1077.382572 +1077.416338 +1077.453967 +1077.494860 +1077.533554 +1077.566555 +1077.597690 +1077.641047 +1077.673315 +1077.724696 +1077.784170 +1077.819868 +1077.820867 +1077.854100 +1077.925429 +1077.971350 +1077.991163 +1079.051335 +1079.057429 +1079.986000 +1082.650033 +1082.761688 +1083.423359 +1083.846435 +1083.858790 +1084.602179 +1088.028715 +1088.029015 +1088.029048 +1089.028781 +1090.029146 +1093.027778 +1093.029376 +1098.029038 +1098.329904 +1098.330870 +1098.730669 +1098.831668 +1099.130935 +1099.328105 +1099.331302 +1099.431002 +1099.729037 +1100.231034 +1100.630701 +1100.930001 +1101.231433 +1101.331466 +1101.431200 +1101.831466 +1102.032198 +1102.131199 +1102.226737 +1102.429201 +1102.931331 +1108.027763 +1108.034789 +1108.042382 +1108.053904 +1108.075382 +1108.162195 +1108.247976 +1108.289235 +1108.335089 +1108.351872 +1108.367290 +1108.384739 +1108.417972 +1108.486038 +1108.487270 +1108.518905 +1108.547876 +1108.587270 +1108.700590 +1108.742181 +1108.770952 +1108.814609 +1108.875614 +1108.910313 +1108.951105 +1108.982874 +1109.013143 +1109.046943 +1109.091465 +1109.123200 +1109.154435 +1109.249274 +1109.322534 +1109.358831 +1109.414209 +1109.443712 +1109.490765 +1109.522467 +1109.564858 +1109.601521 +1109.636519 +1109.706616 +1109.708248 +1109.742080 +1109.781374 +1109.829926 +1109.859396 +1109.936819 +1109.982440 +1110.104518 +1110.137418 +1110.170052 +1110.212709 +1110.249539 +1110.282340 +1110.379875 +1110.408480 +1110.455433 +1110.511377 +1110.545010 +1110.582539 +1110.613308 +1110.696625 +1110.699256 +1110.714141 +1110.729392 +1110.765056 +1110.795925 +1110.842612 +1110.936984 +1111.040248 +1111.080241 +1111.204883 +1111.256631 +1111.289531 +1111.361859 +1111.414340 +1111.461526 +1111.478775 +1111.525961 +1111.575778 +1111.613341 +1111.654433 +1111.705548 +1111.708445 +1111.772548 +1111.812508 +1111.918036 +1111.972081 +1112.005781 +1112.069084 +1112.167053 +1112.219167 +1112.333020 +1112.394026 +1112.463223 +1112.480672 +1112.546240 +1112.567286 +1112.614205 +1112.703949 +1112.740812 +1112.777042 +1112.809810 +1112.827392 +1112.846173 +1112.846606 +1112.880772 +1112.918368 +1112.955697 +1113.505979 +1117.757457 +1117.765316 +1117.817930 +1122.987155 +1124.031144 +1125.029544 +1125.601372 +1127.030175 +1128.031040 +1128.598738 +1133.232167 +1133.532000 +1133.632266 +1133.731933 +1133.732133 +1134.031999 +1134.132266 +1134.132599 +1134.232599 +1134.432499 +1134.433065 +1134.532665 +1134.632798 +1134.932498 +1134.932898 +1135.032198 +1135.032964 +1135.132764 +1135.228735 +1135.427869 +1135.931665 +1136.232830 +1136.532963 +1137.532729 +1137.633028 +1137.734327 +1138.030464 +1139.992566 +1140.130894 +1140.148277 +1141.317140 +1143.030958 +1143.043612 +1143.045743 +1143.053003 +1143.065290 +1143.099889 +1143.111611 +1143.134688 +1143.162460 +1143.236186 +1143.250239 +1143.280841 +1143.314208 +1143.357531 +1143.406582 +1143.439016 +1143.483106 +1143.485037 +1143.502353 +1143.522966 +1143.542280 +1143.544644 +1143.613841 +1143.655366 +1143.691730 +1143.718170 +1143.814074 +1143.936285 +1143.990764 +1144.037850 +1144.050371 +1144.068719 +1144.134087 +1144.213574 +1144.247873 +1144.305849 +1144.339915 +1144.458929 +1144.530257 +1144.591962 +1144.628392 +1144.656697 +1144.690264 +1144.738116 +1144.768885 +1144.786401 +1144.820533 +1144.881339 +1144.916371 +1144.945808 +1144.994959 +1145.044809 +1145.092195 +1145.140014 +1145.171882 +1145.184536 +1145.223264 +1145.253567 +1145.288465 +1145.453600 +1145.512974 +1145.556463 +1145.637216 +1145.670782 +1145.699287 +1145.745341 +1145.861658 +1145.893759 +1145.965954 +1146.013573 +1146.057495 +1146.107079 +1146.157362 +1146.199220 +1146.236216 +1146.295157 +1146.346639 +1146.387931 +1146.453366 +1146.538947 +1146.601417 +1146.651534 +1146.702883 +1146.742343 +1146.776642 +1146.844308 +1146.910308 +1146.924361 +1146.954164 +1146.992326 +1147.039046 +1147.058194 +1147.094957 +1147.142476 +1147.199286 +1147.238513 +1147.298753 +1147.338213 +1147.407078 +1147.443441 +1147.500617 +1147.549335 +1147.583801 +1147.822162 +1147.875276 +1147.949601 +1148.005146 +1148.532917 +1148.550733 +1148.573277 +1148.579604 +1148.782001 +1148.822128 +1150.134115 +1158.030477 +1158.377197 +1160.030675 +1160.030908 +1160.031674 +1162.029141 +1162.233869 +1163.030072 +1168.228768 +1168.330833 +1168.430267 +1168.530999 +1168.631798 +1168.730433 +1168.730999 +1168.832331 +1169.231265 +1170.432429 +1170.532529 +1170.533794 +1170.933428 +1171.333028 +1171.632228 +1171.831229 +1171.832095 +1172.132627 +1172.332194 +1172.930462 +1172.931561 +1174.147411 +1175.594529 +1176.915073 +1177.004617 +1177.264690 +1178.030024 +1178.052402 +1178.062358 +1178.063391 +1178.083903 +1178.094859 +1178.116138 +1178.174812 +1178.271382 +1178.283903 +1178.330856 +1178.348638 +1178.349438 +1178.378908 +1178.405881 +1178.410177 +1178.411709 +1178.451169 +1178.490297 +1178.546374 +1178.687732 +1178.729058 +1178.801951 +1178.849604 +1178.883403 +1178.916936 +1178.982204 +1179.021132 +1179.067752 +1179.096090 +1179.138215 +1179.155131 +1179.171681 +1179.219866 +1179.310009 +1179.341811 +1179.386866 +1179.435384 +1179.468651 +1179.545341 +1179.624728 +1179.669383 +1179.728524 +1179.772247 +1179.788697 +1179.827358 +1179.870215 +1179.943742 +1179.989629 +1180.026559 +1180.064121 +1180.115004 +1180.163455 +1180.227591 +1180.294624 +1180.343375 +1180.459759 +1180.504114 +1180.586831 +1180.651533 +1180.734184 +1180.777108 +1180.837647 +1180.870081 +1180.879505 +1180.924993 +1180.967350 +1181.023328 +1181.057360 +1181.076508 +1181.121796 +1181.155529 +1181.190560 +1181.236714 +1181.288629 +1181.319165 +1181.366051 +1181.396088 +1181.490627 +1181.550866 +1181.590627 +1181.632252 +1181.727989 +1181.831053 +1181.905045 +1181.962554 +1182.086430 +1182.152830 +1182.185564 +1182.243773 +1182.296553 +1182.296920 +1182.350133 +1182.381335 +1182.430219 +1182.479737 +1182.549700 +1182.634748 +1182.683732 +1182.739044 +1182.774974 +1182.889526 +1183.002080 +1183.023725 +1183.276739 +1193.027378 +1193.030342 +1193.030908 +1194.031007 +1194.704533 +1194.726777 +1196.029407 +1197.029139 +1197.433701 +1197.601167 +1202.207056 +1202.298165 +1203.230965 +1203.231264 +1203.331963 +1203.530998 +1203.627534 +1203.628666 +1204.131530 +1204.331829 +1204.532928 +1204.633194 +1205.028798 +1205.087306 +1205.105521 +1205.232061 +1205.232328 +1205.432594 +1205.632594 +1205.732527 +1205.833060 +1206.033026 +1206.129263 +1206.129929 +1206.532027 +1206.627331 +1206.631494 +1206.832326 +1207.132959 +1207.231993 +1207.329495 +1207.530194 +1207.632026 +1207.733025 +1208.032658 +1208.033724 +1210.641347 +1210.649006 +1211.400320 +1211.407613 +1211.513507 +1211.529957 +1211.658429 +1213.052966 +1213.097455 +1213.109643 +1213.165587 +1213.167085 +1213.167418 +1213.238447 +1213.272846 +1213.345473 +1213.434451 +1213.463555 +1213.481704 +1213.503648 +1213.554597 +1213.604680 +1213.661157 +1213.676009 +1213.704081 +1213.736415 +1213.768550 +1213.799885 +1213.829256 +1213.920131 +1213.953065 +1213.983568 +1214.012106 +1214.072845 +1214.105579 +1214.170547 +1214.201683 +1214.296788 +1214.325792 +1214.386564 +1214.418499 +1214.433484 +1214.454263 +1214.544007 +1214.572645 +1214.620197 +1214.659525 +1214.742974 +1214.869581 +1214.892691 +1214.958958 +1214.992358 +1215.025625 +1215.073244 +1215.229720 +1215.281935 +1215.471645 +1215.533516 +1215.583233 +1215.634116 +1215.653097 +1215.671179 +1215.731518 +1215.775075 +1215.820795 +1215.841608 +1215.872710 +1215.920596 +1215.972144 +1215.973309 +1216.036579 +1216.070878 +1216.119330 +1216.166782 +1216.279003 +1216.308640 +1216.425224 +1216.630685 +1216.693455 +1216.741973 +1216.790325 +1216.847634 +1216.894088 +1216.964317 +1217.077970 +1217.110238 +1217.218363 +1217.233814 +1217.260354 +1217.293088 +1217.311969 +1217.430984 +1217.486395 +1217.529652 +1217.580834 +1217.584397 +1217.621992 +1217.647234 +1217.697850 +1217.743671 +1217.785362 +1217.804310 +1217.811703 +1217.825722 +1217.842871 +1217.879068 +1217.937643 +1217.989758 +1218.003311 +1218.021026 +1218.268845 +1218.314333 +1218.473607 +1218.505408 +1218.607706 +1226.031574 +1230.492975 +1231.030704 +1237.130997 +1238.035925 +1238.232894 +1238.242951 +1238.431495 +1238.632428 +1238.632894 +1238.732527 +1238.830696 +1239.332827 +1239.632293 +1239.647478 +1239.832859 +1239.933525 +1240.031827 +1240.133292 +1240.134058 +1240.529595 +1240.530228 +1240.933524 +1241.931692 +1242.033723 +1242.130826 +1242.333123 +1242.433223 +1242.533056 +1242.733556 +1242.933789 +1242.943046 +1246.269050 +1248.029355 +1248.030187 +1248.037879 +1248.051566 +1248.059391 +1248.117999 +1248.146104 +1248.185798 +1248.230686 +1248.269048 +1248.315235 +1248.357360 +1248.388961 +1248.480603 +1248.499551 +1248.514735 +1248.529820 +1248.592291 +1248.620629 +1248.683000 +1248.730486 +1248.760589 +1248.790526 +1248.863886 +1248.951298 +1248.993789 +1249.025491 +1249.058025 +1249.179770 +1249.268614 +1249.402147 +1249.453496 +1249.496653 +1249.532783 +1249.575174 +1249.623592 +1249.654794 +1249.699583 +1249.802580 +1249.842839 +1249.887195 +1250.053029 +1250.094654 +1250.232316 +1250.296319 +1250.328586 +1250.384231 +1250.446868 +1250.493022 +1250.515300 +1250.580368 +1250.606908 +1250.662652 +1250.820394 +1250.931683 +1251.051729 +1251.099948 +1251.187793 +1251.356258 +1251.421026 +1251.532115 +1251.570843 +1251.629551 +1251.690457 +1251.742604 +1251.819561 +1251.871276 +1251.934512 +1252.012135 +1252.047666 +1252.097050 +1252.244102 +1252.341372 +1252.405341 +1252.461784 +1252.566280 +1252.600845 +1252.735677 +1252.815963 +1252.871175 +1252.981264 +1253.527851 +1264.030471 +1264.159841 +1265.030703 +1265.627739 +1265.709124 +1265.727805 +1265.799733 +1265.805194 +1265.914052 +1267.031067 +1268.032198 +1273.132160 +1273.333658 +1273.433458 +1273.433958 +1273.834524 +1273.934357 +1274.034390 +1274.232858 +1274.734256 +1275.032591 +1275.034023 +1275.134689 +1275.234489 +1275.534622 +1275.834022 +1276.335920 +1276.535220 +1276.932989 +1277.334787 +1277.349772 +1277.436085 +1277.533754 +1277.534653 +1277.634120 +1277.634853 +1277.834020 +1277.834819 +1278.035419 +1278.851435 +1283.047701 +1283.077005 +1283.084365 +1283.087695 +1283.099449 +1283.125457 +1283.147668 +1283.163885 +1283.172543 +1283.202080 +1283.232250 +1283.275573 +1283.340242 +1283.419696 +1283.477904 +1283.505776 +1283.525423 +1283.560754 +1283.578137 +1283.595553 +1283.641906 +1283.675340 +1283.706009 +1283.735479 +1283.830618 +1283.869778 +1283.957158 +1284.028986 +1284.065316 +1284.094720 +1284.146202 +1284.179002 +1284.230551 +1284.282665 +1284.298982 +1284.349731 +1284.382265 +1284.413467 +1284.458389 +1284.488559 +1284.545069 +1284.651363 +1284.680833 +1284.729451 +1284.756657 +1284.788858 +1284.834912 +1284.868479 +1284.957390 +1285.052395 +1285.103710 +1285.151595 +1285.176903 +1285.207706 +1285.317696 +1285.352494 +1285.386493 +1285.417995 +1285.506373 +1285.574539 +1285.639507 +1285.670842 +1285.744169 +1285.791421 +1285.834878 +1285.868178 +1285.916596 +1285.949830 +1285.983496 +1286.015963 +1286.124022 +1286.157622 +1286.208038 +1286.238973 +1286.274871 +1286.308570 +1286.349929 +1286.385127 +1286.419959 +1286.450628 +1286.500845 +1286.559652 +1286.610268 +1286.658587 +1286.694218 +1286.756888 +1286.785926 +1286.857754 +1286.920791 +1286.950794 +1286.985193 +1287.042769 +1287.110135 +1287.168876 +1287.255156 +1287.268942 +1287.300611 +1287.337008 +1287.376468 +1287.463781 +1287.484960 +1287.530114 +1287.563714 +1287.646831 +1287.730913 +1287.746165 +1287.778000 +1287.795549 +1287.806971 +1287.843900 +1287.854190 +1287.887590 +1287.924420 +1287.990354 +1288.008369 +1298.032268 +1301.032132 +1303.031531 +1303.031830 +1308.132058 +1308.434223 +1308.533024 +1308.632424 +1308.733889 +1308.734289 +1308.832890 +1308.833823 +1309.033090 +1309.033756 +1309.035121 +1309.235221 +1309.334155 +1309.632989 +1310.033622 +1310.333155 +1310.533022 +1310.535519 +1310.833288 +1311.134786 +1311.234020 +1311.433187 +1311.634253 +1311.635718 +1311.834352 +1311.934419 +1312.033486 +1312.034885 +1312.334119 +1312.434185 +1312.833952 +1313.033286 +1313.033752 +1313.375143 +1314.055096 +1314.095922 +1315.262055 +1318.047000 +1318.057024 +1318.073274 +1318.081865 +1318.095918 +1318.110004 +1318.120460 +1318.136244 +1318.160720 +1318.189158 +1318.218429 +1318.281865 +1318.321925 +1318.433080 +1318.476604 +1318.507306 +1318.537343 +1318.566047 +1318.625388 +1318.680633 +1318.712134 +1318.764482 +1318.827419 +1318.871641 +1318.892454 +1318.934245 +1318.976936 +1319.011402 +1319.130149 +1319.165780 +1319.261218 +1319.287725 +1319.336743 +1319.338408 +1319.353093 +1319.378767 +1319.380299 +1319.414431 +1319.481631 +1319.546133 +1319.588890 +1319.742503 +1319.755390 +1319.786426 +1319.815430 +1319.852393 +1319.893951 +1319.916995 +1319.993585 +1320.019492 +1320.051760 +1320.085127 +1320.101710 +1320.132080 +1320.179765 +1320.212333 +1320.258886 +1320.292219 +1320.339672 +1320.417927 +1320.487024 +1320.560484 +1320.579832 +1320.628516 +1320.667577 +1320.731347 +1320.811533 +1320.852625 +1320.890854 +1320.924919 +1320.926118 +1320.959718 +1321.025152 +1321.062215 +1321.211399 +1321.243034 +1321.275735 +1321.307670 +1321.394583 +1321.486624 +1321.535109 +1321.654522 +1321.692151 +1321.743034 +1321.776467 +1321.814063 +1321.879164 +1321.911432 +1321.945398 +1321.987589 +1322.035941 +1322.097612 +1322.132311 +1322.224252 +1322.255421 +1322.300576 +1322.348827 +1322.394415 +1322.411132 +1322.437539 +1322.468974 +1322.499710 +1322.522154 +1322.522420 +1322.523952 +1322.538837 +1322.554855 +1322.570639 +1322.586123 +1322.618125 +1322.678065 +1322.678864 +1322.769706 +1322.788254 +1322.838571 +1322.856819 +1322.890718 +1322.891018 +1322.985757 +1323.017958 +1323.018724 +1338.031529 +1343.029693 +1343.031358 +1343.131790 +1343.431424 +1343.432290 +1343.532789 +1343.633555 +1343.830891 +1344.033954 +1344.233920 +1344.235319 +1344.530524 +1344.531556 +1345.035185 +1345.432954 +1346.033053 +1346.033752 +1346.132920 +1346.332220 +1346.933751 +1347.134850 +1347.433118 +1347.831319 +1347.833151 +1349.069047 +1349.079870 +1350.196752 +1350.384963 +1350.413268 +1350.468047 +1352.001145 +1353.067378 +1353.089889 +1353.101244 +1353.161950 +1353.186859 +1353.216629 +1353.285760 +1353.313265 +1353.315097 +1353.403342 +1353.429782 +1353.470108 +1353.501344 +1353.516795 +1353.546399 +1353.588290 +1353.705406 +1353.791220 +1353.859252 +1353.893118 +1353.928383 +1353.993484 +1354.025652 +1354.047264 +1354.080164 +1354.101743 +1354.152325 +1354.200577 +1354.228982 +1354.262981 +1354.308336 +1354.335675 +1354.367377 +1354.398612 +1354.413830 +1354.432711 +1354.463914 +1354.500877 +1354.588389 +1354.623221 +1354.653024 +1354.687257 +1354.720357 +1354.766944 +1354.810866 +1354.812398 +1354.845165 +1354.910100 +1354.945032 +1354.983460 +1355.021489 +1355.058552 +1355.130080 +1355.148795 +1355.164412 +1355.179098 +1355.209234 +1355.261315 +1355.311299 +1355.345498 +1355.377832 +1355.413496 +1355.454522 +1355.507469 +1355.554555 +1355.591085 +1355.692018 +1355.724452 +1355.802973 +1355.895947 +1355.928248 +1355.943799 +1355.959883 +1356.010665 +1356.043832 +1356.075800 +1356.106869 +1356.159516 +1356.206336 +1356.241301 +1356.333542 +1356.402073 +1356.440002 +1356.475800 +1356.514861 +1356.614527 +1356.652889 +1356.750358 +1356.762812 +1356.779562 +1356.829312 +1356.914461 +1356.963012 +1357.045862 +1357.092049 +1357.214161 +1357.250957 +1357.325183 +1357.358949 +1357.392915 +1357.431077 +1357.507867 +1357.518123 +1357.533508 +1357.565342 +1357.685589 +1357.713827 +1357.742432 +1357.780560 +1357.835705 +1357.837004 +1357.870104 +1357.942465 +1357.948759 +1358.022418 +1358.337070 +1358.342598 +1365.970529 +1366.970728 +1367.970826 +1368.966197 +1368.967229 +1375.970685 +1375.970985 +1376.073116 +1376.273282 +1376.468587 +1376.767255 +1376.767887 +1376.768853 +1376.867854 +1376.967388 +1376.968486 +1377.067354 +1377.168686 +1377.171550 +1377.267454 +1377.368153 +1378.169451 +1378.469184 +1378.567419 +1378.568884 +1378.569517 +1378.667652 +1378.768485 +1378.868152 +1378.969384 +1379.067718 +1379.167652 +1379.368484 +1379.569017 +1379.668484 +1379.767651 +1379.869183 +1380.068983 +1380.169216 +1380.569415 +1380.767917 +1380.967750 +1380.969615 +1380.970480 +1385.966513 +1385.972540 +1385.995850 +1386.013999 +1386.022923 +1386.034245 +1386.044701 +1386.066613 +1386.087825 +1386.110735 +1386.133945 +1386.144568 +1386.157954 +1386.193819 +1386.205174 +1386.256323 +1386.265347 +1386.275603 +1386.290389 +1386.291154 +1386.325753 +1386.346432 +1386.431814 +1386.443835 +1386.516229 +1386.517728 +1386.609902 +1386.618560 +1386.619626 +1386.643735 +1386.668044 +1386.682263 +1386.716229 +1386.717228 +1386.766079 +1386.778500 +1386.791887 +1386.803908 +1386.815097 +1386.870241 +1386.878866 +1386.893218 +1386.917328 +1386.932679 +1386.959419 +1386.972639 +1386.982296 +1387.004707 +1387.005439 +1387.023621 +1387.064247 +1387.075036 +1387.109169 +1387.129249 +1387.132013 +1387.154324 +1387.220324 +1387.242868 +1387.244700 +1387.264580 +1387.319192 +1387.339572 +1387.343368 +1387.377334 +1387.392352 +1387.402942 +1387.418593 +1387.485093 +1387.493917 +1387.508869 +1387.597913 +1387.623554 +1387.636608 +1387.709268 +1387.728949 +1387.768009 +1387.793184 +1387.794150 +1387.829614 +1387.853690 +1387.882195 +1387.896614 +1387.905871 +1387.923088 +1387.937074 +1387.949128 +1387.981795 +1387.995049 +1388.035242 +1388.064313 +1388.065079 +1388.117693 +1388.141369 +1388.153124 +1388.154023 +1388.176933 +1388.233111 +1388.235741 +1388.258352 +1388.315162 +1388.377133 +1388.388888 +1388.390586 +1388.415628 +1388.428315 +1388.471439 +1388.495981 +1388.514229 +1388.519357 +1388.528748 +1388.606836 +1388.620456 +1388.622188 +1388.635075 +1388.649094 +1388.673969 +1388.675601 +1388.709833 +1388.739803 +1388.799410 +1388.820955 +1388.866110 +1388.905870 +1388.931112 +1388.973669 +1388.989021 +1389.000709 +1389.018291 +1389.027482 +1389.076466 +1389.133210 +1389.148861 +1389.163912 +1389.165178 +1389.165877 +1389.177965 +1389.192583 +1389.195114 +1389.195547 +1389.208834 +1389.282394 +1389.283259 +1389.298211 +1389.310565 +1389.342700 +1389.384491 +1389.398477 +1389.399243 +1389.424651 +1389.425983 +1389.440668 +1389.468274 +1389.484391 +1389.529946 +1389.553822 +1389.624584 +1389.664378 +1389.673569 +1389.685457 +1389.733142 +1389.760548 +1389.761814 +1389.791617 +1389.806469 +1389.820055 +1389.834574 +1389.849526 +1389.851091 +1389.894081 +1389.909399 +1389.925583 +1389.927548 +1389.939236 +1389.960115 +1389.987288 +1390.016659 +1390.030178 +1390.050525 +1390.062080 +1390.080861 +1390.107468 +1390.122453 +1390.154387 +1390.173901 +1390.187021 +1390.200108 +1390.200341 +1390.232143 +1390.255919 +1390.268873 +1390.272103 +1390.281460 +1390.307900 +1390.320854 +1390.329812 +1390.331643 +1390.349925 +1390.359349 +1390.371270 +1390.375333 +1390.385356 +1390.417757 +1390.419455 +1390.431543 +1390.443931 +1390.462179 +1390.479662 +1390.480328 +1390.491483 +1390.495846 +1390.519788 +1390.521487 +1390.536238 +1390.555120 +1390.556818 +1390.616392 +1390.640800 +1390.658916 +1390.675266 +1390.675865 +1390.691183 +1390.702405 +1390.716924 +1390.718856 +1390.730511 +1390.734473 +1390.748060 +1390.838203 +1390.844164 +1390.900640 +1390.914193 +1390.925915 +1390.937970 +1397.338529 +1398.308159 +1398.336997 +1402.973722 +1403.967261 +1403.967927 +1403.973388 +1404.974486 +1405.973119 +1411.468052 +1411.468618 +1411.469251 +1411.568019 +1411.768185 +1411.768818 +1411.868218 +1411.869650 +1411.968451 +1412.170116 +1412.569716 +1412.668184 +1412.768551 +1412.768983 +1412.969749 +1413.170282 +1413.368450 +1413.669149 +1413.969548 +1414.068316 +1414.069315 +1415.268681 +1415.468681 +1415.470413 +1415.770346 +1415.868514 +1420.967976 +1420.974337 +1420.981929 +1421.038805 +1421.051726 +1421.075702 +1421.098446 +1421.111133 +1421.135275 +1421.172805 +1421.196081 +1421.210600 +1421.223354 +1421.236041 +1421.258119 +1421.297380 +1421.318825 +1421.353557 +1421.356288 +1421.391053 +1421.402108 +1421.414563 +1421.440070 +1421.452525 +1421.464246 +1421.503307 +1421.508002 +1421.545631 +1421.571306 +1421.611332 +1421.620057 +1421.649228 +1421.686624 +1421.701842 +1421.712131 +1421.764745 +1421.790586 +1421.816460 +1421.829014 +1421.901775 +1421.929847 +1421.948595 +1422.051059 +1422.062714 +1422.078132 +1422.091951 +1422.105637 +1422.118192 +1422.131944 +1422.174169 +1422.184891 +1422.185624 +1422.229780 +1422.247329 +1422.310399 +1422.347728 +1422.361948 +1422.385457 +1422.411465 +1422.424518 +1422.442633 +1422.497412 +1422.511231 +1422.572770 +1422.588621 +1422.604005 +1422.627382 +1422.652390 +1422.679230 +1422.728647 +1422.741568 +1422.751624 +1422.772870 +1422.824085 +1422.837705 +1422.838237 +1422.852723 +1422.912297 +1422.954554 +1422.956419 +1422.989519 +1422.994481 +1423.006835 +1423.035207 +1423.082926 +1423.094181 +1423.094714 +1423.141201 +1423.167907 +1423.188387 +1423.208001 +1423.219955 +1423.222286 +1423.254254 +1423.257285 +1423.279196 +1423.306236 +1423.316958 +1423.361347 +1423.425683 +1423.426981 +1423.428613 +1423.447128 +1423.448227 +1423.524850 +1423.535373 +1423.540068 +1423.565243 +1423.577797 +1423.590118 +1423.670438 +1423.711530 +1423.821187 +1423.835040 +1423.874367 +1423.898043 +1423.943065 +1423.955852 +1423.967707 +1423.989052 +1424.005369 +1424.030844 +1424.042765 +1424.043231 +1424.069605 +1424.071503 +1424.072069 +1424.122419 +1424.126947 +1424.137504 +1424.152289 +1424.163378 +1424.168539 +1424.182492 +1424.197210 +1424.199375 +1424.209032 +1424.251889 +1424.269838 +1424.311296 +1424.319255 +1424.375432 +1424.406035 +1424.407067 +1424.447027 +1424.457650 +1424.500906 +1424.511762 +1424.544063 +1424.584390 +1424.610397 +1424.625382 +1424.639002 +1424.639335 +1424.654286 +1424.668972 +1424.683224 +1424.719554 +1424.731742 +1424.773467 +1424.776364 +1424.777197 +1424.787386 +1424.833307 +1424.846394 +1424.868605 +1424.869970 +1424.873334 +1424.903970 +1424.929777 +1424.948225 +1424.974765 +1425.017989 +1425.036803 +1425.055918 +1425.084223 +1425.099208 +1425.102604 +1425.116091 +1425.131708 +1425.141332 +1425.170603 +1425.185588 +1425.202304 +1425.212461 +1425.227080 +1425.257449 +1425.259547 +1425.270969 +1425.294579 +1425.306067 +1425.347059 +1425.375564 +1425.393546 +1425.406367 +1425.449024 +1425.462877 +1425.494412 +1425.494878 +1425.578761 +1425.582590 +1425.610596 +1425.624448 +1425.653752 +1425.761378 +1425.810229 +1425.818354 +1425.825547 +1425.836503 +1425.852287 +1425.872400 +1425.894911 +1425.908764 +1425.964675 +1435.976153 +1436.969392 +1436.975453 +1437.969724 +1438.968957 +1438.969457 +1438.970522 +1439.969123 +1439.975583 +1440.968922 +1442.152104 +1442.221934 +1442.265124 +1445.974944 +1446.170981 +1446.371314 +1446.471714 +1447.171846 +1447.272612 +1447.371080 +1447.871812 +1448.071179 +1448.273077 +1448.472844 +1448.773077 +1449.173176 +1449.271345 +1449.273276 +1449.372477 +1449.471844 +1449.472177 +1449.670279 +1449.771344 +1450.171344 +1450.173075 +1450.470478 +1450.673175 +1450.971376 +1451.862684 +1454.316528 +1454.399844 +1454.408569 +1454.510300 +1454.533943 +1454.696181 +1455.992916 +1456.112164 +1456.136672 +1456.198044 +1456.223419 +1456.234807 +1456.245896 +1456.256785 +1456.280495 +1456.295913 +1456.296313 +1456.322586 +1456.324384 +1456.337938 +1456.360382 +1456.384524 +1456.386123 +1456.400741 +1456.423552 +1456.447794 +1456.450358 +1456.475666 +1456.476266 +1456.514028 +1456.528047 +1456.553955 +1456.581194 +1456.607568 +1456.608833 +1456.696778 +1456.726249 +1456.761580 +1456.785789 +1456.786255 +1456.812329 +1456.842000 +1456.856785 +1456.881760 +1456.904704 +1456.928380 +1456.942932 +1456.979695 +1456.996978 +1457.023451 +1457.059515 +1457.072569 +1457.083458 +1457.085056 +1457.108433 +1457.157650 +1457.160914 +1457.185622 +1457.199142 +1457.199442 +1457.212129 +1457.212662 +1457.259016 +1457.272669 +1457.284224 +1457.285855 +1457.308466 +1457.319222 +1457.395978 +1457.468239 +1457.482392 +1457.502505 +1457.555419 +1457.568539 +1457.593214 +1457.607334 +1457.631742 +1457.632608 +1457.657916 +1457.658915 +1457.671070 +1457.692382 +1457.728612 +1457.790117 +1457.803804 +1457.841333 +1457.863477 +1457.879761 +1457.901805 +1457.931109 +1457.969138 +1458.024449 +1458.025015 +1458.065142 +1458.098941 +1458.158815 +1458.189418 +1458.200973 +1458.213627 +1458.235938 +1458.263310 +1458.275798 +1458.290716 +1458.315658 +1458.327013 +1458.385821 +1458.386520 +1458.412261 +1458.462178 +1458.469071 +1458.524882 +1458.564376 +1458.578761 +1458.588685 +1458.603370 +1458.631408 +1458.633506 +1458.649457 +1458.674932 +1458.711562 +1458.771635 +1458.889750 +1458.900506 +1458.902237 +1458.916623 +1458.916889 +1458.930109 +1458.960912 +1458.971435 +1458.999240 +1458.999906 +1459.027579 +1459.097275 +1459.108364 +1459.114292 +1459.138534 +1459.164708 +1459.181491 +1459.258048 +1459.270735 +1459.272200 +1459.321984 +1459.334272 +1459.360812 +1459.362610 +1459.387685 +1459.403735 +1459.505533 +1459.535836 +1459.537268 +1459.548490 +1459.560978 +1459.600472 +1459.643762 +1459.667238 +1459.708897 +1459.721617 +1459.736036 +1459.773265 +1459.828111 +1459.844061 +1459.897974 +1459.931008 +1459.976928 +1459.985620 +1460.003635 +1460.005133 +1460.046325 +1460.088650 +1460.098706 +1460.099739 +1460.111993 +1460.116455 +1460.155416 +1460.156948 +1460.174197 +1460.215523 +1460.219019 +1460.219818 +1460.256182 +1460.271500 +1460.294743 +1460.295709 +1460.318153 +1460.318919 +1460.334271 +1460.348323 +1460.356681 +1460.360411 +1460.402069 +1460.412359 +1460.415622 +1460.422982 +1460.424946 +1460.426645 +1460.452918 +1460.463408 +1460.492079 +1460.502935 +1460.507730 +1460.545259 +1460.548356 +1460.583654 +1460.601536 +1460.615556 +1460.616788 +1460.674097 +1460.687051 +1460.718985 +1460.729275 +1460.741263 +1460.743994 +1460.772931 +1460.788283 +1460.789781 +1460.790980 +1460.791613 +1460.822948 +1460.823581 +1460.837200 +1460.863041 +1460.882056 +1460.895709 +1460.912059 +1460.924946 +1460.956914 +1460.966671 +1467.718945 +1467.737860 +1467.763367 +1467.783647 +1467.817780 +1470.977483 +1471.970223 +1474.971419 +1475.977645 +1475.978278 +1477.559162 +1478.959327 +1480.977973 +1481.172878 +1481.272112 +1481.473610 +1481.672578 +1481.772611 +1481.973909 +1482.372710 +1482.472044 +1482.674375 +1482.872976 +1483.073442 +1483.074541 +1483.172543 +1483.172876 +1483.174741 +1483.272709 +1483.372876 +1483.374807 +1483.472909 +1483.473941 +1483.972942 +1483.974773 +1484.072975 +1484.374739 +1484.472941 +1484.572841 +1484.872974 +1485.074339 +1485.373573 +1485.474072 +1485.573273 +1485.673473 +1485.773040 +1485.774838 +1490.991349 +1491.012661 +1491.082225 +1491.141832 +1491.188619 +1491.203038 +1491.214260 +1491.240866 +1491.330810 +1491.345395 +1491.370137 +1491.407733 +1491.433940 +1491.456917 +1491.501239 +1491.522817 +1491.523950 +1491.547526 +1491.574632 +1491.596044 +1491.659181 +1491.683723 +1491.707533 +1491.736903 +1491.759414 +1491.793780 +1491.834439 +1491.887253 +1491.911129 +1491.924549 +1491.925348 +1491.956650 +1491.982757 +1491.993480 +1491.993846 +1492.021585 +1492.038301 +1492.052521 +1492.053187 +1492.078261 +1492.142197 +1492.142664 +1492.158814 +1492.186486 +1492.249723 +1492.273200 +1492.276363 +1492.286386 +1492.299540 +1492.312827 +1492.326113 +1492.355517 +1492.401937 +1492.435071 +1492.451355 +1492.496376 +1492.522084 +1492.638034 +1492.674598 +1492.685287 +1492.699506 +1492.707199 +1492.739100 +1492.749656 +1492.764408 +1492.805067 +1492.845593 +1492.849323 +1492.850189 +1492.916389 +1492.927778 +1492.941298 +1492.980425 +1493.048091 +1493.076129 +1493.085620 +1493.103735 +1493.117954 +1493.137834 +1493.200638 +1493.215223 +1493.228011 +1493.239899 +1493.241897 +1493.266905 +1493.305766 +1493.314757 +1493.319486 +1493.320684 +1493.350055 +1493.360411 +1493.365040 +1493.401437 +1493.434804 +1493.448490 +1493.462143 +1493.502303 +1493.504301 +1493.532839 +1493.541996 +1493.629542 +1493.644094 +1493.645992 +1493.685686 +1493.703801 +1493.718053 +1493.742995 +1493.771533 +1493.790814 +1493.792179 +1493.813824 +1493.876561 +1493.891313 +1493.904034 +1493.919085 +1493.920451 +1493.967537 +1494.028543 +1494.037933 +1494.054616 +1494.067037 +1494.069102 +1494.099505 +1494.102402 +1494.187017 +1494.210127 +1494.226045 +1494.238266 +1494.260577 +1494.292612 +1494.305199 +1494.335668 +1494.362442 +1494.365738 +1494.379525 +1494.391679 +1494.422515 +1494.434969 +1494.448689 +1494.473397 +1494.489981 +1494.503167 +1494.525545 +1494.557080 +1494.569701 +1494.582921 +1494.665305 +1494.674263 +1494.699604 +1494.757480 +1494.814955 +1494.828508 +1494.841462 +1494.856414 +1494.904000 +1494.904899 +1494.956647 +1494.969967 +1495.001702 +1495.018984 +1495.061475 +1495.131871 +1495.161708 +1495.260310 +1495.289614 +1495.299803 +1495.358511 +1495.375161 +1495.388015 +1495.389480 +1495.412923 +1495.429540 +1495.464239 +1495.490746 +1495.507462 +1495.545124 +1495.560276 +1495.572797 +1495.667902 +1495.708228 +1495.722847 +1495.768434 +1495.837865 +1495.839430 +1495.867702 +1495.934002 +1495.949153 +1495.952383 +1497.618616 +1497.630870 +1497.636131 +1497.642059 +1501.351446 +1503.472789 +1504.933460 +1505.033760 +1508.972850 +1508.978644 +1509.680675 +1510.972515 +1510.978076 +1511.845508 +1516.073009 +1516.170279 +1516.182999 +1516.273176 +1516.373742 +1516.472842 +1516.673542 +1516.774707 +1516.972775 +1517.274973 +1517.372808 +1517.473907 +1517.671876 +1517.672608 +1517.773207 +1517.773507 +1517.773973 +1518.273007 +1518.474172 +1518.575238 +1518.873806 +1518.874838 +1518.971308 +1519.071974 +1519.172806 +1519.173706 +1519.174138 +1519.273406 +1519.374271 +1519.375304 +1519.473239 +1519.475170 +1519.572340 +1519.573705 +1519.574371 +1519.874537 +1520.071074 +1520.072473 +1520.073105 +1520.078566 +1520.371906 +1520.373238 +1520.475369 +1520.574437 +1520.873304 +1521.701009 +1521.786823 +1521.795415 +1525.971801 +1525.984754 +1525.985021 +1525.986153 +1526.017588 +1526.048624 +1526.103935 +1526.127045 +1526.180125 +1526.202170 +1526.203169 +1526.215057 +1526.236069 +1526.260412 +1526.263076 +1526.275430 +1526.309929 +1526.323482 +1526.353452 +1526.354351 +1526.363076 +1526.373965 +1526.398940 +1526.400139 +1526.412726 +1526.426912 +1526.461710 +1526.467571 +1526.479492 +1526.491647 +1526.508397 +1526.544527 +1526.559246 +1526.582523 +1526.607065 +1526.623748 +1526.638367 +1526.664507 +1526.679426 +1526.699339 +1526.724148 +1526.735836 +1526.749156 +1526.760977 +1526.777794 +1526.816222 +1526.827444 +1526.838200 +1526.856815 +1526.857248 +1526.882689 +1526.884454 +1526.895076 +1526.955882 +1526.956482 +1526.971600 +1526.999505 +1527.008863 +1527.010428 +1527.021017 +1527.048290 +1527.059645 +1527.086918 +1527.099139 +1527.115389 +1527.128909 +1527.139032 +1527.177760 +1527.186418 +1527.230607 +1527.252519 +1527.266738 +1527.294577 +1527.319452 +1527.369035 +1527.397540 +1527.412292 +1527.452652 +1527.464273 +1527.502069 +1527.502935 +1527.529941 +1527.576394 +1527.589248 +1527.652618 +1527.674263 +1527.688649 +1527.716454 +1527.743294 +1527.757946 +1527.767903 +1527.793477 +1527.795242 +1527.841229 +1527.871699 +1527.886218 +1527.902834 +1527.914456 +1527.924313 +1527.950120 +1527.988182 +1527.996074 +1528.001436 +1528.027510 +1528.041962 +1528.069867 +1528.085485 +1528.095408 +1528.105432 +1528.149687 +1528.177559 +1528.193310 +1528.215754 +1528.252584 +1528.349854 +1528.401469 +1528.424079 +1528.434702 +1528.493377 +1528.544492 +1528.552917 +1528.579424 +1528.581155 +1528.581455 +1528.605564 +1528.647855 +1528.706696 +1528.711292 +1528.728808 +1528.778658 +1528.795108 +1528.827542 +1528.838764 +1528.891245 +1528.955514 +1528.988015 +1529.032104 +1529.049120 +1529.062041 +1529.063106 +1529.085217 +1529.098371 +1529.159143 +1529.164971 +1529.202800 +1529.217085 +1529.218684 +1529.230372 +1529.326243 +1529.372363 +1529.372696 +1529.386782 +1529.409426 +1529.453083 +1529.454015 +1529.467635 +1529.481754 +1529.499336 +1529.532203 +1529.556412 +1529.559976 +1529.577358 +1529.587015 +1529.654148 +1529.655713 +1529.682353 +1529.722446 +1529.747221 +1529.789512 +1529.800635 +1529.815087 +1529.864038 +1529.864637 +1529.893442 +1529.982886 +1530.009958 +1530.037597 +1530.104830 +1530.116019 +1530.142659 +1530.156745 +1530.169998 +1530.185250 +1530.186215 +1530.245922 +1530.256512 +1530.303831 +1530.373428 +1530.383917 +1530.432069 +1530.432635 +1530.458576 +1530.458842 +1530.484983 +1530.552682 +1530.564470 +1530.565669 +1530.589212 +1530.599801 +1530.603331 +1530.618083 +1530.629172 +1530.648253 +1530.678223 +1530.754247 +1530.778756 +1530.783284 +1530.797503 +1530.801400 +1530.816151 +1530.859874 +1530.921879 +1530.923977 +1540.971952 +1540.978379 +1541.971585 +1541.977879 +1542.973349 +1543.972882 +1544.973313 +1544.979541 +1545.978507 +1550.971476 +1551.274140 +1551.573307 +1551.975671 +1552.274272 +1552.275271 +1552.275604 +1552.375437 +1552.473905 +1552.773838 +1552.774305 +1552.874971 +1553.274371 +1553.275503 +1553.375403 +1553.474038 +1553.575503 +1553.673138 +1554.074536 +1554.274037 +1554.274936 +1554.374769 +1554.773737 +1554.874769 +1555.073736 +1555.074502 +1555.274036 +1555.574768 +1555.574868 +1555.775500 +1555.873802 +1555.972636 +1555.975400 +1560.986351 +1560.994243 +1561.018486 +1561.034869 +1561.045192 +1561.071865 +1561.094776 +1561.104433 +1561.129941 +1561.143394 +1561.180457 +1561.180823 +1561.220150 +1561.234003 +1561.244160 +1561.265272 +1561.280690 +1561.307563 +1561.331572 +1561.345059 +1561.373563 +1561.375195 +1561.397073 +1561.417886 +1561.465838 +1561.476061 +1561.490047 +1561.513224 +1561.609061 +1561.629208 +1561.658145 +1561.683154 +1561.696540 +1561.722947 +1561.726011 +1561.774662 +1561.816320 +1561.816920 +1561.861508 +1561.876227 +1561.895741 +1561.922181 +1561.944658 +1561.954815 +1562.004732 +1562.016586 +1562.037232 +1562.038132 +1562.062374 +1562.111558 +1562.124245 +1562.178824 +1562.268135 +1562.269034 +1562.294808 +1562.296440 +1562.320549 +1562.334268 +1562.380123 +1562.394342 +1562.425444 +1562.427109 +1562.494808 +1562.495773 +1562.524045 +1562.550385 +1562.568834 +1562.594242 +1562.617119 +1562.639796 +1562.641428 +1562.680921 +1562.683086 +1562.709593 +1562.722846 +1562.759509 +1562.770032 +1562.781654 +1562.794974 +1562.795374 +1562.806229 +1562.845124 +1562.867901 +1562.891078 +1562.905097 +1562.926143 +1562.949053 +1562.952183 +1562.979356 +1563.003798 +1563.017984 +1563.018550 +1563.077325 +1563.101434 +1563.106462 +1563.142393 +1563.169632 +1563.179922 +1563.191577 +1563.221014 +1563.304231 +1563.332802 +1563.385250 +1563.398703 +1563.431370 +1563.442293 +1563.523678 +1563.545290 +1563.546522 +1563.547088 +1563.548087 +1563.572462 +1563.616318 +1563.676758 +1563.687880 +1563.729472 +1563.742093 +1563.765602 +1563.776525 +1563.789245 +1563.844290 +1563.870697 +1563.909059 +1563.924144 +1563.947154 +1563.997171 +1564.021080 +1564.031803 +1564.096638 +1564.109758 +1564.138129 +1564.152349 +1564.167966 +1564.197170 +1564.210557 +1564.264603 +1564.312422 +1564.325975 +1564.383550 +1564.406561 +1564.457943 +1564.470197 +1564.498635 +1564.526840 +1564.527906 +1564.541026 +1564.585915 +1564.589777 +1564.616451 +1564.626807 +1564.652814 +1564.671928 +1564.688745 +1564.689777 +1564.777589 +1564.788145 +1564.789111 +1564.842091 +1564.868299 +1564.870363 +1564.890277 +1564.902298 +1564.956610 +1564.970496 +1564.988645 +1565.018248 +1565.028338 +1565.030070 +1565.045088 +1565.069031 +1565.082085 +1565.093540 +1565.118182 +1565.130336 +1565.145255 +1565.161006 +1565.174059 +1565.202631 +1565.236064 +1565.249317 +1565.291475 +1565.351515 +1565.399134 +1565.410855 +1565.443789 +1565.531568 +1565.584748 +1565.656410 +1565.707225 +1565.728537 +1565.750815 +1565.892773 +1565.894571 +1565.950615 +1565.963635 +1571.349677 +1574.250274 +1575.979243 +1577.971715 +1577.972215 +1577.992062 +1578.972247 +1580.426858 +1580.973377 +1580.978839 +1583.468513 +1583.469579 +1584.634879 +1585.972640 +1586.072773 +1586.078900 +1586.273139 +1586.274571 +1586.275170 +1586.373505 +1586.374637 +1586.473705 +1586.474904 +1586.573871 +1587.274969 +1587.474137 +1587.474836 +1587.774936 +1587.873470 +1588.475068 +1588.575667 +1588.674868 +1589.074035 +1589.175034 +1589.274168 +1589.375833 +1589.474335 +1589.675899 +1589.774068 +1589.775100 +1589.874201 +1590.274067 +1590.974266 +1594.106797 +1596.010958 +1596.040029 +1596.084718 +1596.098071 +1596.119483 +1596.139096 +1596.180089 +1596.218950 +1596.233569 +1596.300435 +1596.315253 +1596.344125 +1596.371098 +1596.396539 +1596.477891 +1596.515087 +1596.562839 +1596.585483 +1596.586182 +1596.602466 +1596.627641 +1596.651484 +1596.666901 +1596.679655 +1596.693208 +1596.709592 +1596.725376 +1596.739495 +1596.762139 +1596.782253 +1596.782919 +1596.808526 +1596.860408 +1596.884883 +1596.910691 +1596.944091 +1596.945023 +1596.956944 +1596.983185 +1597.005829 +1597.045522 +1597.059708 +1597.084250 +1597.086581 +1597.137730 +1597.138862 +1597.255779 +1597.270031 +1597.284184 +1597.285715 +1597.298369 +1597.309258 +1597.434633 +1597.457210 +1597.458509 +1597.460341 +1597.460740 +1597.639994 +1597.690044 +1597.718016 +1597.777257 +1597.826641 +1597.838196 +1597.846154 +1597.858009 +1597.869897 +1597.872395 +1597.882784 +1597.895372 +1597.951049 +1597.967133 +1597.995205 +1597.995405 +1598.047153 +1598.049817 +1598.092075 +1598.112288 +1598.116251 +1598.128738 +1598.139794 +1598.190709 +1598.272561 +1598.298568 +1598.310889 +1598.339094 +1598.368365 +1598.379787 +1598.421811 +1598.466267 +1598.493873 +1598.504928 +1598.534332 +1598.617915 +1598.652847 +1598.667599 +1598.720812 +1598.786080 +1598.809590 +1598.838528 +1598.841958 +1598.865068 +1598.893872 +1598.910456 +1598.951814 +1598.975990 +1598.990276 +1599.002164 +1599.016649 +1599.043123 +1599.056743 +1599.078987 +1599.158341 +1599.174092 +1599.185447 +1599.226339 +1599.242790 +1599.269163 +1599.292840 +1599.321311 +1599.323342 +1599.363169 +1599.376656 +1599.420046 +1599.430269 +1599.471994 +1599.476556 +1599.499866 +1599.519879 +1599.520911 +1599.548017 +1599.597535 +1599.652779 +1599.653678 +1599.704261 +1599.706459 +1599.748617 +1599.768031 +1599.826072 +1599.852912 +1599.877821 +1599.879319 +1599.880385 +1599.889875 +1599.932466 +1599.933698 +1599.990275 +1600.101830 +1600.110754 +1600.112053 +1600.113285 +1600.116249 +1600.129369 +1600.145186 +1600.147384 +1600.161970 +1600.162303 +1600.176721 +1600.203528 +1600.204427 +1600.220777 +1600.222675 +1600.304494 +1600.319412 +1600.320178 +1600.334963 +1600.375822 +1600.389209 +1600.405825 +1600.431733 +1600.441090 +1600.454044 +1600.468929 +1600.499465 +1600.534297 +1600.536495 +1600.549582 +1600.603361 +1600.633531 +1600.633930 +1600.641723 +1600.673358 +1600.678786 +1600.693038 +1600.705059 +1600.707990 +1600.717913 +1600.722808 +1600.727170 +1600.740790 +1600.751246 +1600.780450 +1600.794969 +1600.806624 +1600.809155 +1600.833364 +1600.840291 +1600.850014 +1600.861836 +1600.888975 +1600.893337 +1600.904426 +1600.905758 +1600.908622 +1602.076153 +1607.938652 +1608.050506 +1610.973347 +1611.978641 +1614.978405 +1615.972077 +1615.979936 +1620.978632 +1621.374336 +1621.473204 +1621.473537 +1621.673437 +1621.674902 +1621.675568 +1621.773070 +1621.973969 +1621.974102 +1622.075201 +1622.475167 +1622.775034 +1623.075200 +1623.175600 +1623.275133 +1623.373768 +1623.473568 +1623.575066 +1623.675299 +1623.873368 +1623.973867 +1624.273467 +1624.474599 +1624.873866 +1625.074965 +1625.173433 +1625.472733 +1625.473366 +1625.474365 +1625.573666 +1625.575564 +1625.773266 +1625.774198 +1625.875630 +1625.975697 +1630.972062 +1630.978855 +1630.985082 +1631.013421 +1631.033334 +1631.065602 +1631.078089 +1631.103131 +1631.104030 +1631.149451 +1631.163737 +1631.187113 +1631.234732 +1631.259241 +1631.390510 +1631.414286 +1631.425708 +1631.457609 +1631.471728 +1631.472461 +1631.493873 +1631.521479 +1631.531302 +1631.534432 +1631.556444 +1631.571062 +1631.584516 +1631.610157 +1631.622711 +1631.657443 +1631.681252 +1631.694805 +1631.708425 +1631.740393 +1631.816084 +1631.855078 +1631.855844 +1631.886347 +1631.909290 +1631.932600 +1631.943256 +1631.945654 +1631.997835 +1632.071961 +1632.080785 +1632.082284 +1632.108424 +1632.129836 +1632.204961 +1632.275191 +1632.290742 +1632.306426 +1632.331468 +1632.390908 +1632.411355 +1632.422843 +1632.436063 +1632.460972 +1632.461837 +1632.462170 +1632.488444 +1632.500332 +1632.564634 +1632.573226 +1632.646053 +1632.657908 +1632.700931 +1632.785180 +1632.820645 +1632.830635 +1632.858740 +1632.883915 +1632.884814 +1632.900298 +1632.910988 +1632.914784 +1632.960805 +1632.990242 +1633.003229 +1633.003762 +1633.035030 +1633.046619 +1633.055010 +1633.081584 +1633.095903 +1633.147917 +1633.168497 +1633.219479 +1633.219812 +1633.230235 +1633.270994 +1633.275456 +1633.302363 +1633.316282 +1633.316715 +1633.340824 +1633.342656 +1633.365067 +1633.370594 +1633.381583 +1633.404261 +1633.408423 +1633.463135 +1633.531267 +1633.585546 +1633.597267 +1633.611187 +1633.621477 +1633.649981 +1633.664733 +1633.721543 +1633.737294 +1633.751113 +1633.765299 +1633.813884 +1633.850347 +1633.864467 +1633.865732 +1633.901197 +1633.924240 +1633.954044 +1633.967797 +1633.970028 +1633.985113 +1634.011519 +1634.041623 +1634.052978 +1634.056841 +1634.081882 +1634.112818 +1634.127703 +1634.172425 +1634.183914 +1634.198665 +1634.214316 +1634.253044 +1634.290607 +1634.318812 +1634.374723 +1634.376288 +1634.389308 +1634.419045 +1634.434996 +1634.453743 +1634.456507 +1634.491106 +1634.502794 +1634.530200 +1634.574856 +1634.577853 +1634.587443 +1634.600530 +1634.618312 +1634.634130 +1634.648016 +1634.734030 +1634.747250 +1634.777653 +1634.788209 +1634.792238 +1634.818578 +1634.829101 +1634.835761 +1634.858905 +1634.874522 +1634.904625 +1634.919178 +1634.963467 +1634.975854 +1634.986177 +1635.009387 +1635.049114 +1635.051212 +1635.114415 +1635.147083 +1635.158804 +1635.213050 +1635.226470 +1635.257672 +1635.307589 +1635.323539 +1635.353543 +1635.353909 +1635.363733 +1635.377319 +1635.378185 +1635.455874 +1635.456506 +1635.483213 +1635.497532 +1635.498897 +1635.527302 +1635.529833 +1635.541055 +1635.597399 +1635.614348 +1635.655774 +1635.673389 +1635.722773 +1635.749446 +1635.779583 +1635.809620 +1635.824671 +1635.825737 +1635.851245 +1635.867928 +1635.880349 +1635.880915 +1635.908387 +1635.910885 +1635.924638 +1635.938158 +1646.971447 +1646.978373 +1647.972478 +1647.978106 +1648.977805 +1648.979137 +1655.970672 +1655.971438 +1655.972503 +1656.473502 +1656.572236 +1656.573701 +1656.672236 +1656.773734 +1656.974134 +1657.374267 +1657.474600 +1657.973234 +1658.274033 +1658.274599 +1658.372501 +1658.472700 +1658.573566 +1658.774532 +1658.973299 +1659.174498 +1659.472566 +1659.572533 +1659.673265 +1659.874531 +1660.072566 +1660.073198 +1660.074464 +1660.173331 +1660.574297 +1660.774563 +1660.873397 +1664.811855 +1664.859674 +1665.971028 +1665.977755 +1665.978054 +1665.985347 +1665.985846 +1666.029270 +1666.030768 +1666.032799 +1666.040159 +1666.086146 +1666.128104 +1666.163136 +1666.172393 +1666.183016 +1666.249083 +1666.254444 +1666.256009 +1666.279719 +1666.291840 +1666.311554 +1666.324840 +1666.326272 +1666.326772 +1666.368697 +1666.383815 +1666.393738 +1666.447951 +1666.462436 +1666.474291 +1666.496802 +1666.505659 +1666.541524 +1666.563368 +1666.613818 +1666.635829 +1666.649249 +1666.650148 +1666.669795 +1666.701164 +1666.713585 +1666.737594 +1666.739392 +1666.773991 +1666.795636 +1666.808356 +1666.834064 +1666.876522 +1666.938360 +1666.952379 +1666.966099 +1667.004460 +1667.029702 +1667.039825 +1667.055642 +1667.083115 +1667.092472 +1667.196934 +1667.220943 +1667.222708 +1667.224640 +1667.247051 +1667.260171 +1667.272991 +1667.298865 +1667.328070 +1667.360870 +1667.374523 +1667.383447 +1667.437993 +1667.459938 +1667.471959 +1667.544420 +1667.557806 +1667.572525 +1667.586011 +1667.658472 +1667.671459 +1667.687676 +1667.696900 +1667.702228 +1667.808389 +1667.814816 +1667.831632 +1667.839591 +1667.885278 +1667.896434 +1667.906857 +1667.945718 +1667.954809 +1667.968995 +1668.011319 +1668.025738 +1668.036793 +1668.050580 +1668.065598 +1668.078552 +1668.079784 +1668.089840 +1668.119644 +1668.133030 +1668.164166 +1668.187642 +1668.215947 +1668.255275 +1668.266097 +1668.291738 +1668.306424 +1668.357672 +1668.393370 +1668.430266 +1668.442387 +1668.477652 +1668.494369 +1668.507589 +1668.517745 +1668.554608 +1668.574622 +1668.574921 +1668.598531 +1668.621874 +1668.649214 +1668.673223 +1668.674655 +1668.716380 +1668.759803 +1668.798131 +1668.826237 +1668.837026 +1668.870625 +1668.892404 +1668.907089 +1668.946783 +1668.973589 +1668.985977 +1669.014914 +1669.029233 +1669.043686 +1669.072490 +1669.087875 +1669.101827 +1669.115680 +1669.144818 +1669.159803 +1669.160569 +1669.176253 +1669.204425 +1669.215980 +1669.245317 +1669.274821 +1669.290272 +1669.297798 +1669.336626 +1669.338857 +1669.341121 +1669.372956 +1669.375453 +1669.386143 +1669.387774 +1669.411917 +1669.414781 +1669.442853 +1669.443918 +1669.468960 +1669.488374 +1669.501727 +1669.502826 +1669.517411 +1669.519975 +1669.530232 +1669.532596 +1669.572123 +1669.573089 +1669.588307 +1669.613782 +1669.677351 +1669.701860 +1669.715446 +1669.734960 +1669.748380 +1669.787374 +1669.803758 +1669.818310 +1669.832396 +1669.850178 +1669.859436 +1669.862000 +1669.938656 +1669.939056 +1669.952642 +1670.016012 +1670.059302 +1670.078317 +1670.091803 +1670.105256 +1670.107321 +1670.161600 +1670.191936 +1670.206522 +1670.207154 +1670.209385 +1670.220008 +1670.225170 +1670.284643 +1670.329698 +1670.374886 +1670.390371 +1670.418143 +1670.433628 +1670.435725 +1670.465296 +1670.482246 +1670.492402 +1670.512382 +1670.523704 +1670.524104 +1670.555472 +1670.555705 +1670.643384 +1670.658736 +1670.670857 +1670.685808 +1670.703391 +1670.718775 +1670.734993 +1670.763497 +1670.766095 +1670.782045 +1670.808119 +1670.828266 +1670.842085 +1670.853807 +1670.869325 +1670.884177 +1670.904090 +1670.944483 +1670.956471 +1680.972245 +1681.972610 +1681.978405 +1682.979136 +1683.971743 +1683.979268 +1684.971875 +1684.977436 +1689.812130 +1690.972501 +1690.977230 +1690.978795 +1691.271569 +1691.272701 +1691.373234 +1691.473400 +1691.773200 +1691.775198 +1692.174931 +1692.674198 +1692.772133 +1692.875097 +1693.174531 +1693.272632 +1693.273232 +1693.574530 +1694.072931 +1694.473364 +1694.474163 +1694.574796 +1694.873330 +1694.974895 +1695.272863 +1695.374761 +1695.475228 +1695.574129 +1695.575261 +1695.675327 +1695.773829 +1699.978553 +1700.978086 +1701.011253 +1701.019744 +1701.064899 +1701.094902 +1701.107789 +1701.109021 +1701.121276 +1701.148149 +1701.182914 +1701.184446 +1701.205492 +1701.207290 +1701.207823 +1701.208555 +1701.219411 +1701.232498 +1701.258572 +1701.269827 +1701.270793 +1701.329934 +1701.342921 +1701.377253 +1701.390473 +1701.430899 +1701.456174 +1701.498865 +1701.499730 +1701.513283 +1701.538625 +1701.551445 +1701.564799 +1701.579784 +1701.580516 +1701.603760 +1701.631465 +1701.646250 +1701.671192 +1701.708721 +1701.709820 +1701.733929 +1701.745917 +1701.782847 +1701.806057 +1701.857506 +1701.890073 +1701.940189 +1701.953476 +1702.024605 +1702.054209 +1702.066663 +1702.067629 +1702.093669 +1702.137459 +1702.152111 +1702.173822 +1702.187176 +1702.214781 +1702.216813 +1702.256706 +1702.279483 +1702.281215 +1702.307289 +1702.329833 +1702.346616 +1702.373456 +1702.387775 +1702.426636 +1702.484112 +1702.497998 +1702.515647 +1702.538690 +1702.547215 +1702.599496 +1702.650712 +1702.690239 +1702.716779 +1702.728067 +1702.741487 +1702.767395 +1702.791138 +1702.803292 +1702.851810 +1702.875253 +1702.890838 +1702.911917 +1702.934927 +1702.935327 +1702.945417 +1702.950944 +1703.001494 +1703.001927 +1703.029199 +1703.041520 +1703.071124 +1703.097897 +1703.098430 +1703.122506 +1703.136525 +1703.147514 +1703.173522 +1703.175020 +1703.256106 +1703.305989 +1703.307854 +1703.351377 +1703.360301 +1703.389306 +1703.419242 +1703.442486 +1703.469325 +1703.482612 +1703.497830 +1703.521507 +1703.523804 +1703.581546 +1703.604856 +1703.657870 +1703.683977 +1703.692469 +1703.709818 +1703.721739 +1703.735892 +1703.764230 +1703.791836 +1703.792935 +1703.820774 +1703.840021 +1703.853807 +1703.912582 +1703.926435 +1703.974187 +1703.990604 +1704.133327 +1704.146714 +1704.158869 +1704.163730 +1704.190004 +1704.206388 +1704.261566 +1704.292002 +1704.348679 +1704.365761 +1704.410617 +1704.434260 +1704.450144 +1704.476284 +1704.500993 +1704.503357 +1704.515112 +1704.529398 +1704.558136 +1704.576550 +1704.602524 +1704.648079 +1704.734026 +1704.765395 +1704.781745 +1704.822138 +1704.836290 +1704.920573 +1704.951475 +1704.962131 +1704.991335 +1704.991768 +1705.021072 +1705.034259 +1705.078981 +1705.090969 +1705.114146 +1705.129730 +1705.145115 +1705.200925 +1705.227565 +1705.244149 +1705.248045 +1705.262564 +1705.331262 +1705.367359 +1705.379880 +1705.381778 +1705.423303 +1705.438787 +1705.451108 +1705.455571 +1705.468424 +1705.485740 +1705.524435 +1705.526566 +1705.554172 +1705.556403 +1705.570422 +1705.585674 +1705.608551 +1705.628930 +1705.669756 +1705.671055 +1705.694332 +1705.697029 +1705.711081 +1705.711581 +1705.725067 +1705.785307 +1705.787905 +1705.815177 +1705.875617 +1705.887272 +1705.890235 +1705.892134 +1705.917342 +1705.920439 +1705.922570 +1705.963562 +1705.965260 +1708.947442 +1708.995694 +1711.535485 +1711.618834 +1711.659094 +1712.544907 +1716.550065 +1717.972008 +1717.979800 +1718.979367 +1719.973138 +1719.978933 +1719.980931 +1720.972705 +1720.973171 +1720.978499 +1720.978932 +1720.979464 +1726.473498 +1726.673198 +1726.774963 +1726.875396 +1727.175729 +1727.373864 +1727.374463 +1727.474330 +1727.475795 +1727.773830 +1727.775728 +1728.073796 +1728.074362 +1728.075794 +1728.273130 +1728.474229 +1728.475794 +1728.675427 +1729.173795 +1729.174561 +1729.275527 +1729.373962 +1729.473928 +1729.975160 +1730.073928 +1730.076125 +1730.474293 +1730.475725 +1730.575858 +1730.675392 +1730.773894 +1730.774626 +1730.973960 +1733.946018 +1734.702128 +1735.991604 +1735.998963 +1736.017778 +1736.043519 +1736.065230 +1736.093069 +1736.139556 +1736.154341 +1736.181114 +1736.193136 +1736.194068 +1736.216779 +1736.232363 +1736.233096 +1736.245183 +1736.257405 +1736.294834 +1736.342386 +1736.344118 +1736.355073 +1736.368593 +1736.379949 +1736.395799 +1736.418443 +1736.433162 +1736.457504 +1736.491770 +1736.493868 +1736.505789 +1736.529366 +1736.553442 +1736.553841 +1736.579449 +1736.616412 +1736.639622 +1736.682313 +1736.743684 +1736.768326 +1736.792236 +1736.807387 +1736.832695 +1736.849146 +1736.871124 +1736.894800 +1736.907221 +1736.919409 +1736.934793 +1736.957803 +1736.958869 +1736.972222 +1736.982212 +1736.999528 +1737.001460 +1737.003624 +1737.016744 +1737.043285 +1737.056338 +1737.079781 +1737.117444 +1737.159335 +1737.172622 +1737.185742 +1737.215046 +1737.237157 +1737.275485 +1737.297930 +1737.315612 +1737.367760 +1737.375152 +1737.411050 +1737.442285 +1737.445981 +1737.457370 +1737.458069 +1737.487873 +1737.488339 +1737.536058 +1737.576184 +1737.592601 +1737.606887 +1737.618808 +1737.620906 +1737.633127 +1737.647946 +1737.648379 +1737.661199 +1737.705721 +1737.743084 +1737.768159 +1737.823370 +1737.862265 +1737.895731 +1737.913480 +1737.987206 +1738.011149 +1738.051708 +1738.078815 +1738.129297 +1738.152940 +1738.178515 +1738.190636 +1738.205821 +1738.248545 +1738.250243 +1738.263530 +1738.325168 +1738.328165 +1738.355837 +1738.370989 +1738.394599 +1738.395598 +1738.409750 +1738.420506 +1738.432527 +1738.444449 +1738.446214 +1738.490869 +1738.503922 +1738.516876 +1738.529064 +1738.567359 +1738.594565 +1738.617542 +1738.631561 +1738.633959 +1738.648877 +1738.704955 +1738.705421 +1738.719873 +1738.731295 +1738.743616 +1738.757402 +1738.795464 +1738.862830 +1738.870922 +1738.920505 +1738.921371 +1738.934691 +1739.019140 +1739.026200 +1739.042883 +1739.065061 +1739.098461 +1739.112913 +1739.124135 +1739.153206 +1739.182843 +1739.195364 +1739.219906 +1739.279646 +1739.291301 +1739.334391 +1739.374851 +1739.417841 +1739.447911 +1739.471554 +1739.486372 +1739.525833 +1739.546612 +1739.548643 +1739.563895 +1739.564328 +1739.573319 +1739.605153 +1739.622236 +1739.634457 +1739.638120 +1739.652839 +1739.665660 +1739.691767 +1739.787371 +1739.813845 +1739.816142 +1739.865626 +1739.904620 +1739.929895 +1739.956535 +1739.982676 +1739.997694 +1740.010481 +1740.038153 +1740.052206 +1740.058000 +1740.095862 +1740.109715 +1740.147877 +1740.150241 +1740.163661 +1740.165193 +1740.189335 +1740.203554 +1740.216475 +1740.255403 +1740.260098 +1740.273684 +1740.284440 +1740.287870 +1740.327464 +1740.333325 +1740.345512 +1740.347044 +1740.372086 +1740.388036 +1740.400224 +1740.413877 +1740.423268 +1740.436421 +1740.445779 +1740.449608 +1740.463095 +1740.502355 +1740.503687 +1740.517973 +1740.539685 +1740.553371 +1740.570487 +1740.584473 +1740.602555 +1740.616874 +1740.618472 +1740.641782 +1740.655402 +1740.765325 +1740.781210 +1740.783474 +1740.785039 +1740.796994 +1740.826431 +1740.843913 +1740.885072 +1740.951373 +1749.387262 +1749.474308 +1749.537711 +1749.550032 +1749.591524 +1749.619063 +1750.966714 +1750.970543 +1750.973574 +1750.978202 +1750.979767 +1753.634177 +1753.972538 +1753.973604 +1753.979265 +1754.972404 +1754.979164 +1755.215694 +1755.227016 +1755.229513 +1755.235807 +1755.980129 +1758.047526 +1758.063010 +1758.158149 +1758.231742 +1758.294945 +1758.442930 +1759.068204 +1759.111727 +1759.173066 +1759.198074 +1760.402102 +1760.978459 +1761.072864 +1761.073730 +1761.081955 +1761.174296 +1761.375028 +1761.475495 +1762.473862 +1762.874827 +1763.075526 +1763.174327 +1763.174960 +1763.376025 +1764.074560 +1764.176058 +1764.275925 +1764.375925 +1764.574159 +1764.674126 +1764.776124 +1764.776890 +1764.874226 +1764.973959 +1765.475890 +1765.476523 +1765.575857 +1765.774458 +1765.874258 +1770.974053 +1770.980047 +1771.025035 +1771.033394 +1771.055938 +1771.069724 +1771.079448 +1771.157703 +1771.191635 +1771.212315 +1771.237023 +1771.274419 +1771.287939 +1771.313447 +1771.359700 +1771.372288 +1771.387772 +1771.400027 +1771.410450 +1771.429131 +1771.468492 +1771.506354 +1771.531129 +1771.555604 +1771.564662 +1771.578282 +1771.592334 +1771.618408 +1771.629630 +1771.646147 +1771.661865 +1771.670323 +1771.758734 +1771.759633 +1771.784009 +1771.798994 +1771.815278 +1771.863130 +1771.874752 +1771.887172 +1771.927865 +1771.941318 +1771.942384 +1771.954572 +1771.954905 +1772.039220 +1772.061898 +1772.075484 +1772.113612 +1772.124934 +1772.149510 +1772.188637 +1772.238021 +1772.240852 +1772.290369 +1772.304555 +1772.331661 +1772.370455 +1772.387039 +1772.411581 +1772.413312 +1772.426999 +1772.452473 +1772.516010 +1772.530795 +1772.533259 +1772.558500 +1772.574418 +1772.588803 +1772.599826 +1772.600525 +1772.614511 +1772.639819 +1772.663429 +1772.679446 +1772.704021 +1772.716709 +1772.732360 +1772.743782 +1772.756336 +1772.781078 +1772.796662 +1772.808817 +1772.833991 +1772.844781 +1772.875583 +1772.886872 +1772.964328 +1772.976016 +1772.999159 +1773.012479 +1773.110981 +1773.160964 +1773.197994 +1773.199026 +1773.200225 +1773.248476 +1773.261297 +1773.263928 +1773.272819 +1773.291533 +1773.315409 +1773.349975 +1773.350974 +1773.385706 +1773.423401 +1773.427131 +1773.464993 +1773.483042 +1773.504220 +1773.520138 +1773.562695 +1773.609082 +1773.611280 +1773.622968 +1773.652239 +1773.665193 +1773.701889 +1773.707251 +1773.731060 +1773.744480 +1773.773318 +1773.831826 +1773.833458 +1773.872285 +1773.888003 +1773.956235 +1773.972185 +1774.074683 +1774.091466 +1774.116341 +1774.118572 +1774.132991 +1774.148309 +1774.193497 +1774.202255 +1774.231393 +1774.260430 +1774.273284 +1774.295395 +1774.367123 +1774.369255 +1774.424433 +1774.450673 +1774.464659 +1774.479844 +1774.488901 +1774.522401 +1774.537886 +1774.550740 +1774.552171 +1774.575681 +1774.577679 +1774.602954 +1774.619671 +1774.636620 +1774.647343 +1774.680976 +1774.727662 +1774.729028 +1774.740783 +1774.745644 +1774.774316 +1774.860463 +1774.921069 +1774.922967 +1774.934289 +1774.966790 +1775.012611 +1775.025364 +1775.041515 +1775.112644 +1775.130826 +1775.135121 +1775.146543 +1775.176546 +1775.225398 +1775.240749 +1775.251105 +1775.285071 +1775.297159 +1775.299790 +1775.313676 +1775.348241 +1775.426530 +1775.427529 +1775.460362 +1775.475814 +1775.506050 +1775.517638 +1775.538584 +1775.590299 +1775.612976 +1775.617871 +1775.633323 +1775.644711 +1775.667222 +1775.710179 +1775.744245 +1775.772283 +1775.785004 +1775.803552 +1775.815274 +1775.844211 +1775.861894 +1775.872084 +1775.882307 +1775.888600 +1775.898557 +1775.911877 +1775.917205 +1781.468948 +1781.483134 +1781.561155 +1781.588961 +1781.669380 +1781.679237 +1781.696753 +1783.033315 +1783.058956 +1783.110105 +1783.236445 +1784.418928 +1784.445002 +1785.979466 +1786.973504 +1787.973970 +1787.979031 +1790.979161 +1795.971797 +1795.979223 +1796.476126 +1796.574627 +1796.576225 +1797.075725 +1797.374326 +1797.574693 +1798.174858 +1798.274226 +1798.373826 +1798.374359 +1798.374991 +1798.476290 +1798.572860 +1798.674425 +1798.676157 +1798.774858 +1798.775491 +1798.874758 +1799.076056 +1799.174924 +1799.274325 +1799.474724 +1799.674291 +1799.773425 +1799.975090 +1800.274124 +1800.275722 +1800.575089 +1800.675355 +1800.775056 +1805.979579 +1805.994464 +1806.003256 +1806.012613 +1806.057734 +1806.069523 +1806.095530 +1806.122869 +1806.137721 +1806.162063 +1806.162330 +1806.162729 +1806.197827 +1806.218773 +1806.241351 +1806.279745 +1806.289735 +1806.303622 +1806.318240 +1806.343315 +1806.377048 +1806.402289 +1806.427897 +1806.428363 +1806.530494 +1806.551940 +1806.566425 +1806.605819 +1806.645613 +1806.698593 +1806.713012 +1806.726698 +1806.780211 +1806.788270 +1806.793631 +1806.818739 +1806.821104 +1806.833391 +1806.857134 +1806.871353 +1806.871653 +1806.908050 +1806.918706 +1806.928196 +1806.954137 +1806.966658 +1806.980278 +1806.991699 +1806.993764 +1806.994230 +1807.033191 +1807.033791 +1807.052472 +1807.097693 +1807.120970 +1807.150707 +1807.151706 +1807.164393 +1807.202921 +1807.214310 +1807.230294 +1807.261363 +1807.278412 +1807.305785 +1807.317840 +1807.331459 +1807.344913 +1807.385272 +1807.399824 +1807.454037 +1807.456534 +1807.471919 +1807.501889 +1807.527763 +1807.557400 +1807.606251 +1807.627996 +1807.694163 +1807.707516 +1807.748642 +1807.771952 +1807.810047 +1807.833990 +1807.848975 +1807.861729 +1807.863394 +1807.925098 +1807.927696 +1807.985904 +1808.058765 +1808.071319 +1808.071885 +1808.082707 +1808.124965 +1808.249274 +1808.310413 +1808.311545 +1808.324332 +1808.363793 +1808.379677 +1808.416507 +1808.443080 +1808.467589 +1808.468455 +1808.482674 +1808.534821 +1808.549340 +1808.611078 +1808.626097 +1808.655900 +1808.680509 +1808.693762 +1808.708481 +1808.723899 +1808.769187 +1808.795594 +1808.824198 +1808.837285 +1808.905450 +1808.908947 +1808.920435 +1808.922400 +1808.923133 +1808.936186 +1808.952670 +1808.964358 +1808.983639 +1809.009446 +1809.023366 +1809.040715 +1809.065657 +1809.081607 +1809.098457 +1809.099623 +1809.127295 +1809.187335 +1809.188101 +1809.215640 +1809.217172 +1809.267555 +1809.269286 +1809.308181 +1809.329226 +1809.346176 +1809.373116 +1809.392396 +1809.402919 +1809.415507 +1809.454001 +1809.470119 +1809.486702 +1809.500555 +1809.503252 +1809.523831 +1809.524930 +1809.549006 +1809.610278 +1809.635386 +1809.636385 +1809.637684 +1809.650272 +1809.652303 +1809.667921 +1809.705716 +1809.715806 +1809.728959 +1809.739982 +1809.751970 +1809.764923 +1809.779143 +1809.780075 +1809.781640 +1809.863891 +1809.865057 +1809.874780 +1809.903418 +1809.919569 +1809.939016 +1809.947108 +1809.948640 +1809.949905 +1809.951703 +1810.024530 +1810.032556 +1810.034853 +1810.053235 +1810.136252 +1810.168420 +1810.172848 +1810.185935 +1810.196525 +1810.238782 +1810.251237 +1810.266421 +1810.267520 +1810.308446 +1810.342046 +1810.353501 +1810.379841 +1810.411709 +1810.412375 +1810.424896 +1810.439049 +1810.439914 +1810.441946 +1810.519202 +1810.544743 +1810.545242 +1810.577810 +1810.605316 +1810.607014 +1810.639948 +1810.650870 +1810.694959 +1810.712342 +1810.721632 +1810.725695 +1810.739182 +1810.741479 +1810.754466 +1810.772615 +1810.801286 +1810.803817 +1810.819701 +1810.846041 +1810.847806 +1810.848639 +1810.862691 +1810.873048 +1810.883504 +1810.890896 +1810.904416 +1810.905881 +1810.937050 +1810.949338 +1810.963690 +1810.970650 +1814.362555 +1816.448733 +1820.972771 +1820.978632 +1821.979330 +1822.972902 +1824.972667 +1825.473932 +1825.615024 +1825.630142 +1825.700339 +1825.737035 +1826.554950 +1826.611627 +1826.819918 +1828.114622 +1828.136500 +1828.162541 +1828.217519 +1828.311125 +1829.102533 +1829.159576 +1829.175593 +1830.543657 +1830.558376 +1830.760640 +1830.972561 +1831.173260 +1831.274925 +1831.474026 +1831.474559 +1831.576057 +1831.673893 +1831.875091 +1831.973060 +1831.973959 +1831.974358 +1832.080918 +1832.273026 +1832.775889 +1832.873791 +1833.075789 +1833.174590 +1833.174923 +1833.176855 +1833.374324 +1833.375090 +1833.376322 +1833.573724 +1833.674723 +1833.773791 +1833.875755 +1833.974223 +1833.976121 +1834.073724 +1834.074922 +1834.174390 +1834.176121 +1834.274223 +1834.574922 +1834.774289 +1834.875088 +1834.974355 +1835.075121 +1835.076353 +1835.175121 +1835.176287 +1835.474555 +1835.573722 +1835.775087 +1835.874754 +1835.874787 +1840.992265 +1841.001223 +1841.002355 +1841.011213 +1841.012178 +1841.042914 +1841.052638 +1841.083540 +1841.095262 +1841.130193 +1841.144679 +1841.179910 +1841.190000 +1841.212877 +1841.243080 +1841.267056 +1841.280543 +1841.291099 +1841.303986 +1841.320536 +1841.345844 +1841.361762 +1841.375015 +1841.388568 +1841.428994 +1841.472850 +1841.499291 +1841.554669 +1841.682474 +1841.706250 +1841.722700 +1841.762760 +1841.789067 +1841.804485 +1841.841581 +1841.849840 +1841.869054 +1841.922301 +1841.945011 +1841.946943 +1841.960795 +1842.089566 +1842.091431 +1842.116639 +1842.131025 +1842.144212 +1842.178045 +1842.196826 +1842.197159 +1842.211145 +1842.250139 +1842.274282 +1842.301687 +1842.335454 +1842.357132 +1842.370052 +1842.388367 +1842.425730 +1842.461827 +1842.484571 +1842.511844 +1842.597292 +1842.640715 +1842.644411 +1842.659096 +1842.683206 +1842.710478 +1842.731524 +1842.768920 +1842.770452 +1842.794627 +1842.802286 +1842.823931 +1842.833089 +1842.847441 +1842.862459 +1842.884404 +1842.885337 +1842.895227 +1842.900588 +1842.915839 +1842.938916 +1842.973315 +1842.985803 +1842.999522 +1843.001753 +1843.037884 +1843.067454 +1843.093495 +1843.104051 +1843.126495 +1843.150871 +1843.152336 +1843.152736 +1843.192962 +1843.206382 +1843.259229 +1843.316338 +1843.329292 +1843.368619 +1843.382139 +1843.425263 +1843.451070 +1843.454101 +1843.467187 +1843.503984 +1843.544177 +1843.588133 +1843.595959 +1843.626162 +1843.635952 +1843.673215 +1843.688033 +1843.688299 +1843.715472 +1843.726461 +1843.754833 +1843.768885 +1843.818070 +1843.819268 +1843.848006 +1843.849438 +1843.861226 +1843.875412 +1843.888499 +1843.894027 +1843.951303 +1843.954866 +1843.996025 +1844.008312 +1844.024996 +1844.038615 +1844.050171 +1844.065355 +1844.092029 +1844.112009 +1844.153301 +1844.153634 +1844.155498 +1844.232088 +1844.234153 +1844.277443 +1844.279974 +1844.304682 +1844.320600 +1844.322798 +1844.334353 +1844.335951 +1844.365688 +1844.367753 +1844.424096 +1844.438582 +1844.457496 +1844.471016 +1844.497123 +1844.530423 +1844.571649 +1844.580673 +1844.587732 +1844.607046 +1844.619401 +1844.639181 +1844.652734 +1844.680373 +1844.684735 +1844.698588 +1844.723263 +1844.735451 +1844.754432 +1844.777043 +1844.786400 +1844.804216 +1844.861725 +1844.869650 +1844.898555 +1844.912940 +1844.938948 +1844.984768 +1845.004981 +1845.018535 +1845.018868 +1845.045607 +1845.047073 +1845.057329 +1845.083170 +1845.086500 +1845.110209 +1845.110842 +1845.132287 +1845.146107 +1845.169517 +1845.215837 +1845.219633 +1845.251601 +1845.272314 +1845.300186 +1845.326959 +1845.340179 +1845.364921 +1845.448804 +1845.452101 +1845.462723 +1845.472414 +1845.500485 +1845.513506 +1845.529690 +1845.554065 +1845.579073 +1845.589097 +1845.594358 +1845.609243 +1845.650502 +1845.653832 +1845.693259 +1845.696922 +1845.724361 +1845.757928 +1845.773878 +1845.784601 +1845.798920 +1845.825260 +1845.847904 +1845.864654 +1845.880172 +1845.883569 +1845.892227 +1845.900518 +1845.929190 +1845.944075 +1845.964687 +1855.520988 +1855.529946 +1855.539303 +1855.972536 +1857.581825 +1857.612994 +1857.725382 +1857.973766 +1857.980793 +1858.971767 +1858.972700 +1858.978894 +1860.790047 +1860.859045 +1866.574357 +1866.873424 +1866.973358 +1866.975422 +1867.274390 +1867.275822 +1867.375422 +1867.474623 +1867.575022 +1867.974622 +1867.976054 +1868.275121 +1868.474988 +1868.574189 +1868.973922 +1868.974654 +1868.975420 +1869.174821 +1869.375420 +1869.474055 +1869.676485 +1869.874021 +1870.074320 +1870.473754 +1870.575186 +1870.675818 +1870.974852 +1875.972283 +1876.004284 +1876.011744 +1876.021168 +1876.035786 +1876.095360 +1876.121534 +1876.132656 +1876.182240 +1876.183105 +1876.208413 +1876.231723 +1876.242812 +1876.266022 +1876.288833 +1876.395460 +1876.421434 +1876.436252 +1876.456632 +1876.482539 +1876.519269 +1876.520235 +1876.533455 +1876.593162 +1876.594394 +1876.608180 +1876.618003 +1876.635153 +1876.654767 +1876.678310 +1876.726761 +1876.736951 +1876.739116 +1876.749638 +1876.784737 +1876.807147 +1876.808346 +1876.810511 +1876.832655 +1876.842579 +1876.866488 +1876.878409 +1876.891663 +1876.932489 +1876.934686 +1876.958496 +1876.983271 +1876.995193 +1876.996158 +1877.023897 +1877.035918 +1877.059029 +1877.102485 +1877.114806 +1877.144776 +1877.203950 +1877.233521 +1877.287167 +1877.325029 +1877.325762 +1877.392428 +1877.437150 +1877.461526 +1877.484270 +1877.497989 +1877.538349 +1877.561492 +1877.577709 +1877.578675 +1877.614273 +1877.648638 +1877.661426 +1877.708578 +1877.721232 +1877.744742 +1877.746274 +1877.772748 +1877.785601 +1877.803717 +1877.871382 +1877.893194 +1877.920833 +1877.932188 +1877.943943 +1877.968851 +1877.993560 +1878.025927 +1878.050503 +1878.055098 +1878.076710 +1878.100286 +1878.123163 +1878.139514 +1878.140047 +1878.182071 +1878.194858 +1878.198621 +1878.239247 +1878.239547 +1878.276543 +1878.301385 +1878.303217 +1878.312341 +1878.315171 +1878.343876 +1878.354332 +1878.388764 +1878.421964 +1878.446573 +1878.453433 +1878.476410 +1878.477675 +1878.514372 +1878.536683 +1878.562291 +1878.577808 +1878.592527 +1878.637948 +1878.660958 +1878.680439 +1878.723796 +1878.750202 +1878.754631 +1878.780372 +1878.781171 +1878.796423 +1878.888064 +1878.931488 +1878.972813 +1878.987432 +1879.075677 +1879.113372 +1879.117768 +1879.142876 +1879.172580 +1879.217468 +1879.245640 +1879.247904 +1879.258094 +1879.261824 +1879.335383 +1879.345507 +1879.367684 +1879.414837 +1879.423662 +1879.429423 +1879.443542 +1879.456595 +1879.459892 +1879.488597 +1879.500418 +1879.517068 +1879.557128 +1879.559892 +1879.572812 +1879.586032 +1879.587031 +1879.610575 +1879.619998 +1879.632619 +1879.701717 +1879.713671 +1879.759759 +1879.760524 +1879.791260 +1879.801384 +1879.803481 +1879.817634 +1879.846738 +1879.848736 +1879.889828 +1879.913571 +1879.914604 +1879.931853 +1879.944740 +1879.947071 +1879.976542 +1879.989795 +1879.990794 +1880.019832 +1880.037980 +1880.051233 +1880.052832 +1880.054464 +1880.081203 +1880.081536 +1880.094024 +1880.106745 +1880.111640 +1880.124527 +1880.128589 +1880.142808 +1880.187697 +1880.213638 +1880.231786 +1880.273178 +1880.314803 +1880.348336 +1880.364020 +1880.392392 +1880.410041 +1880.422029 +1880.437680 +1880.453664 +1880.468416 +1880.469748 +1880.485432 +1880.487530 +1880.503281 +1880.518666 +1880.541776 +1880.543407 +1880.556261 +1880.575242 +1880.588229 +1880.591559 +1880.650633 +1880.651632 +1880.680270 +1880.682202 +1880.708143 +1880.740477 +1880.754463 +1880.802015 +1880.814503 +1880.830021 +1880.832718 +1880.860423 +1880.890493 +1880.969148 +1890.979528 +1890.979794 +1891.973233 +1891.979926 +1893.979924 +1894.972797 +1894.981055 +1895.972130 +1900.972758 +1901.073357 +1901.172791 +1901.173723 +1901.574722 +1901.674322 +1902.075287 +1902.474255 +1902.874887 +1902.974188 +1903.275752 +1903.375486 +1903.375719 +1903.773587 +1903.774220 +1903.973654 +1903.975285 +1904.174086 +1904.374752 +1904.375718 +1904.474452 +1904.875384 +1905.074419 +1905.075584 +1905.374285 +1905.574618 +1905.575683 +1908.174982 +1908.245111 +1908.414275 +1909.644810 +1910.217604 +1910.993593 +1911.010810 +1911.050470 +1911.062691 +1911.073880 +1911.109444 +1911.133587 +1911.153866 +1911.173813 +1911.283736 +1911.309577 +1911.317636 +1911.382671 +1911.385534 +1911.397189 +1911.407879 +1911.409677 +1911.419101 +1911.426660 +1911.446240 +1911.491995 +1911.493593 +1911.555065 +1911.593893 +1911.622497 +1911.652134 +1911.687366 +1911.711442 +1911.726493 +1911.726793 +1911.749570 +1911.750502 +1911.782704 +1911.797455 +1911.814938 +1911.879174 +1911.953632 +1911.954498 +1911.991461 +1912.002950 +1912.044109 +1912.098388 +1912.151335 +1912.173712 +1912.184801 +1912.208777 +1912.211275 +1912.222230 +1912.245940 +1912.277708 +1912.287765 +1912.334818 +1912.336383 +1912.390096 +1912.448470 +1912.450135 +1912.576875 +1912.577275 +1912.640811 +1912.653532 +1912.692926 +1912.712573 +1912.713505 +1912.740445 +1912.752999 +1912.774178 +1912.805047 +1912.816669 +1912.908277 +1912.946705 +1912.963355 +1913.003049 +1913.017867 +1913.040445 +1913.042576 +1913.054464 +1913.056662 +1913.081770 +1913.110141 +1913.175443 +1913.190694 +1913.205979 +1913.215936 +1913.218067 +1913.255862 +1913.285466 +1913.312039 +1913.338912 +1913.353331 +1913.381070 +1913.395922 +1913.421696 +1913.435149 +1913.448503 +1913.449635 +1913.477607 +1913.490927 +1913.505879 +1913.531886 +1913.558326 +1913.573145 +1913.587597 +1913.629688 +1913.657227 +1913.657827 +1913.671013 +1913.697187 +1913.723095 +1913.743707 +1913.799551 +1913.800051 +1913.800450 +1913.827190 +1913.848003 +1913.848469 +1913.863754 +1913.905579 +1913.934949 +1913.950500 +1913.994090 +1914.009641 +1914.110740 +1914.124693 +1914.167150 +1914.180637 +1914.209241 +1914.240543 +1914.270613 +1914.326124 +1914.340876 +1914.355828 +1914.427523 +1914.428522 +1914.457093 +1914.487463 +1914.487896 +1914.503413 +1914.518165 +1914.520530 +1914.531452 +1914.545871 +1914.560323 +1914.573577 +1914.575308 +1914.590260 +1914.604113 +1914.616966 +1914.619897 +1914.632251 +1914.679204 +1914.709041 +1914.768781 +1914.814469 +1914.816267 +1914.828355 +1914.868648 +1914.893356 +1914.907243 +1914.921595 +1914.935947 +1914.954329 +1914.966017 +1914.993656 +1915.038445 +1915.040243 +1915.056060 +1915.071345 +1915.072177 +1915.085131 +1915.102381 +1915.111804 +1915.115168 +1915.126024 +1915.143106 +1915.158757 +1915.190159 +1915.220296 +1915.253163 +1915.266550 +1915.296320 +1915.342906 +1915.343073 +1915.357092 +1915.370878 +1915.372344 +1915.386696 +1915.414468 +1915.418731 +1915.459590 +1915.463752 +1915.475107 +1915.546369 +1915.562320 +1915.565217 +1915.590692 +1915.619396 +1915.635447 +1915.664684 +1915.680069 +1915.710472 +1915.725856 +1915.754128 +1915.771810 +1915.782766 +1915.784598 +1915.808807 +1915.822260 +1915.853229 +1915.855493 +1915.867381 +1915.886029 +1915.895287 +1915.899116 +1915.911437 +1915.925923 +1915.955593 +1923.578762 +1923.605103 +1923.946461 +1925.172567 +1925.204402 +1925.214891 +1925.706766 +1925.719786 +1925.748957 +1925.978194 +1926.891213 +1926.972998 +1926.973597 +1927.971432 +1927.973596 +1927.979524 +1928.971597 +1928.979290 +1929.577291 +1929.972962 +1930.973260 +1930.974026 +1930.977922 +1930.979621 +1932.334997 +1935.971957 +1936.272389 +1936.372722 +1936.374154 +1936.472889 +1936.773121 +1936.874820 +1937.373720 +1938.075052 +1938.173853 +1938.179647 +1938.274752 +1938.675317 +1938.773652 +1939.073952 +1939.474251 +1939.573718 +1939.874983 +1939.974350 +1940.074683 +1940.175216 +1940.273451 +1940.273651 +1940.273984 +1940.374683 +1940.474650 +1940.574083 +1940.674183 +1940.750374 +1940.771652 +1940.774350 +1940.778778 +1940.973550 +1941.511212 +1942.375946 +1945.984667 +1946.007511 +1946.013405 +1946.014737 +1946.024361 +1946.058593 +1946.070448 +1946.081604 +1946.105946 +1946.146072 +1946.181837 +1946.193758 +1946.202116 +1946.222096 +1946.224028 +1946.224561 +1946.237847 +1946.260258 +1946.260957 +1946.262323 +1946.332919 +1946.371747 +1946.385999 +1946.420764 +1946.434317 +1946.511373 +1946.567950 +1946.646538 +1946.650135 +1946.661623 +1946.723428 +1946.747104 +1946.757960 +1946.760391 +1946.818433 +1946.821097 +1946.953564 +1946.989029 +1947.036914 +1947.046904 +1947.084999 +1947.112372 +1947.123261 +1947.160091 +1947.199684 +1947.213637 +1947.238845 +1947.279871 +1947.294623 +1947.333084 +1947.353431 +1947.353797 +1947.368948 +1947.383600 +1947.407876 +1947.427257 +1947.459091 +1947.482668 +1947.501582 +1947.516401 +1947.546471 +1947.613803 +1947.655195 +1947.667083 +1947.668548 +1947.703846 +1947.704246 +1947.728222 +1947.750400 +1947.751865 +1947.765984 +1947.778205 +1947.789927 +1947.827056 +1947.846570 +1947.853264 +1947.855495 +1947.875908 +1947.879238 +1947.902048 +1947.915734 +1947.917100 +1947.945538 +1947.946537 +1947.973110 +1948.010340 +1948.020097 +1948.023127 +1948.024858 +1948.121761 +1948.124026 +1948.137612 +1948.160423 +1948.205478 +1948.216200 +1948.218198 +1948.231119 +1948.274109 +1948.339843 +1948.379137 +1948.390759 +1948.447369 +1948.504612 +1948.507675 +1948.579770 +1948.594655 +1948.595088 +1948.629653 +1948.689493 +1948.692723 +1948.716799 +1948.727788 +1948.740709 +1948.778937 +1948.790326 +1948.820196 +1948.870845 +1948.872676 +1948.874175 +1948.909739 +1948.922826 +1948.944971 +1948.948034 +1948.974075 +1948.978371 +1949.000782 +1949.053562 +1949.055693 +1949.069912 +1949.126256 +1949.141441 +1949.190525 +1949.202380 +1949.203878 +1949.216066 +1949.270944 +1949.287228 +1949.316133 +1949.330685 +1949.372210 +1949.415933 +1949.444271 +1949.457691 +1949.483032 +1949.541540 +1949.556226 +1949.569113 +1949.597451 +1949.628786 +1949.630618 +1949.643272 +1949.674241 +1949.702779 +1949.712736 +1949.717764 +1949.749366 +1949.761920 +1949.801880 +1949.815000 +1949.831250 +1949.832216 +1949.869079 +1949.887494 +1949.926522 +1950.051130 +1950.062918 +1950.099448 +1950.107207 +1950.129319 +1950.161220 +1950.181999 +1950.194353 +1950.219661 +1950.229418 +1950.242072 +1950.257923 +1950.258622 +1950.274107 +1950.275073 +1950.297850 +1950.315732 +1950.330484 +1950.360387 +1950.362119 +1950.375472 +1950.399948 +1950.455226 +1950.470477 +1950.535545 +1950.546135 +1950.599781 +1950.603011 +1950.657490 +1950.682898 +1950.685828 +1950.716930 +1950.758788 +1950.776537 +1950.790523 +1950.792122 +1950.804909 +1950.819061 +1950.820660 +1950.835279 +1950.857623 +1950.885029 +1950.902311 +1950.930949 +1950.944103 +1950.968545 +1951.283730 +1956.404104 +1957.221752 +1958.605700 +1958.723782 +1958.747525 +1958.761944 +1960.972265 +1960.973530 +1962.971430 +1962.972696 +1963.977623 +1970.971123 +1970.978016 +1971.071655 +1971.072688 +1971.272221 +1971.373653 +1971.374552 +1971.572687 +1971.574852 +1971.873719 +1972.073086 +1972.273386 +1972.373552 +1972.473885 +1972.675017 +1972.773152 +1972.774784 +1972.775117 +1972.972552 +1973.074917 +1973.573384 +1973.873118 +1974.074949 +1974.173051 +1974.174916 +1974.272951 +1974.473750 +1974.774582 +1974.873217 +1974.972850 +1975.075081 +1975.275114 +1975.473915 +1975.671717 +1975.774181 +1975.873582 +1975.974314 +1979.891726 +1980.523061 +1980.971379 +1980.978139 +1980.978538 +1980.991692 +1980.999451 +1980.999850 +1981.004146 +1981.037846 +1981.039711 +1981.082701 +1981.105511 +1981.116134 +1981.127023 +1981.160723 +1981.170313 +1981.171512 +1981.182601 +1981.218265 +1981.244006 +1981.257659 +1981.294222 +1981.316833 +1981.340876 +1981.357159 +1981.358025 +1981.383100 +1981.397119 +1981.411239 +1981.446570 +1981.448268 +1981.513070 +1981.584132 +1981.642141 +1981.654728 +1981.668215 +1981.678504 +1981.701481 +1981.737912 +1981.776307 +1981.803579 +1981.819863 +1981.845104 +1981.915600 +1981.930319 +1981.932051 +1981.956093 +1981.958125 +1981.993223 +1982.028554 +1982.041907 +1982.110938 +1982.176972 +1982.201548 +1982.217199 +1982.242840 +1982.256559 +1982.268114 +1982.292390 +1982.318197 +1982.339643 +1982.360788 +1982.425590 +1982.460055 +1982.475274 +1982.527555 +1982.552263 +1982.556859 +1982.568081 +1982.596386 +1982.614900 +1982.626189 +1982.654527 +1982.665883 +1982.680535 +1982.720761 +1982.759789 +1982.784331 +1982.807275 +1982.835513 +1982.874241 +1982.876505 +1982.914467 +1982.977537 +1983.003145 +1983.005410 +1983.020395 +1983.031417 +1983.035546 +1983.058590 +1983.059023 +1983.080168 +1983.083764 +1983.120827 +1983.133648 +1983.134014 +1983.159222 +1983.189092 +1983.244037 +1983.273741 +1983.312069 +1983.314500 +1983.327587 +1983.355825 +1983.402545 +1983.423291 +1983.473807 +1983.501679 +1983.524490 +1983.547434 +1983.550164 +1983.561653 +1983.586461 +1983.596651 +1983.623890 +1983.692056 +1983.717297 +1983.732848 +1983.761386 +1983.776305 +1983.791589 +1983.819894 +1983.847800 +1983.859888 +1983.902278 +1983.905442 +1984.023690 +1984.041406 +1984.050630 +1984.052428 +1984.059688 +1984.086527 +1984.111036 +1984.148665 +1984.194786 +1984.237276 +1984.260919 +1984.271409 +1984.282165 +1984.285095 +1984.316730 +1984.327087 +1984.346867 +1984.413600 +1984.454426 +1984.469278 +1984.492155 +1984.492887 +1984.521525 +1984.549564 +1984.572807 +1984.588625 +1984.612268 +1984.614066 +1984.663483 +1984.689058 +1984.690756 +1984.727552 +1984.744835 +1984.757556 +1984.772774 +1984.795851 +1984.811102 +1984.823656 +1984.823989 +1984.847665 +1984.870443 +1984.885627 +1984.915964 +1984.944901 +1984.965514 +1984.976004 +1984.991355 +1985.011468 +1985.074771 +1985.077502 +1985.090389 +1985.113533 +1985.137642 +1985.153759 +1985.198548 +1985.225054 +1985.253160 +1985.283696 +1985.352926 +1985.353193 +1985.390089 +1985.392154 +1985.392620 +1985.436676 +1985.479067 +1985.520525 +1985.539739 +1985.558221 +1985.578301 +1985.592520 +1985.616030 +1985.616229 +1985.630116 +1985.687558 +1985.699246 +1985.709536 +1985.765547 +1985.777701 +1985.780065 +1985.793252 +1985.845833 +1985.877235 +1985.901943 +1991.670736 +1992.828710 +1992.851620 +1994.292911 +1994.323180 +1996.957310 +1996.978389 +1998.972726 +1999.972892 +2000.623840 +2000.635595 +2000.644852 +2000.802162 +2000.825205 +2000.886078 +2000.961769 +2000.971192 +2000.971825 +2001.676253 +2002.660335 +2004.747412 +2004.837356 +2005.972153 +2005.978913 +2006.173085 +2006.173984 +2006.374550 +2006.472586 +2006.474151 +2006.475316 +2006.573418 +2006.772219 +2007.273784 +2007.374616 +2007.375781 +2007.376248 +2007.474216 +2007.474916 +2007.573450 +2007.773716 +2007.774582 +2008.075681 +2008.173949 +2008.174682 +2008.274615 +2008.475014 +2008.573549 +2008.775813 +2008.974048 +2009.074648 +2009.171684 +2009.372949 +2009.472250 +2009.574081 +2009.674747 +2009.774114 +2009.873981 +2009.874580 +2009.975679 +2010.075912 +2010.274846 +2010.275845 +2010.373847 +2010.675678 +2010.770517 +2011.233820 +2011.245175 +2011.297356 +2011.657895 +2011.700519 +2012.455730 +2014.012205 +2015.185997 +2015.235614 +2015.973142 +2016.025090 +2016.092356 +2016.116665 +2016.117398 +2016.152196 +2016.161121 +2016.206875 +2016.240175 +2016.242106 +2016.254760 +2016.288593 +2016.327354 +2016.373108 +2016.386095 +2016.400747 +2016.452229 +2016.453128 +2016.474540 +2016.496585 +2016.574873 +2016.599382 +2016.613701 +2016.636944 +2016.661120 +2016.663784 +2016.711736 +2016.746468 +2016.747201 +2016.758722 +2016.784996 +2016.821293 +2016.854560 +2016.859721 +2016.871676 +2016.897650 +2016.932415 +2017.010071 +2017.033980 +2017.075505 +2017.138509 +2017.193188 +2017.227453 +2017.238942 +2017.254226 +2017.292488 +2017.303211 +2017.357190 +2017.383264 +2017.395518 +2017.402212 +2017.427919 +2017.466814 +2017.488858 +2017.530517 +2017.542871 +2017.543504 +2017.565881 +2017.586494 +2017.610803 +2017.661019 +2017.715431 +2017.730816 +2017.756357 +2017.793953 +2017.807872 +2017.898215 +2017.927552 +2017.928718 +2018.012268 +2018.101412 +2018.127053 +2018.127685 +2018.168012 +2018.171009 +2018.183796 +2018.210070 +2018.252927 +2018.263849 +2018.317162 +2018.440139 +2018.465614 +2018.487658 +2018.523389 +2018.536210 +2018.539973 +2018.572240 +2018.582064 +2018.584795 +2018.585061 +2018.623389 +2018.632980 +2018.654525 +2018.690589 +2018.720725 +2018.745933 +2018.762883 +2018.778034 +2018.790089 +2018.802676 +2018.831115 +2018.847265 +2018.875837 +2018.906006 +2018.917761 +2018.971208 +2018.989523 +2019.051028 +2019.064881 +2019.083262 +2019.106273 +2019.130915 +2019.159752 +2019.174771 +2019.212500 +2019.252260 +2019.265480 +2019.266945 +2019.281530 +2019.298347 +2019.324787 +2019.337807 +2019.361484 +2019.391420 +2019.393918 +2019.408070 +2019.469209 +2019.506738 +2019.516395 +2019.521690 +2019.547597 +2019.560518 +2019.567644 +2019.582596 +2019.595183 +2019.596948 +2019.622256 +2019.641404 +2019.652093 +2019.682762 +2019.686425 +2019.726418 +2019.742436 +2019.771207 +2019.796948 +2019.858886 +2019.860384 +2019.886059 +2019.899745 +2019.915629 +2019.964713 +2019.978300 +2019.981097 +2020.000045 +2020.051227 +2020.067410 +2020.093218 +2020.094583 +2020.109135 +2020.123854 +2020.124853 +2020.148962 +2020.151027 +2020.195149 +2020.222455 +2020.244267 +2020.260018 +2020.261982 +2020.276601 +2020.321356 +2020.338339 +2020.351926 +2020.352259 +2020.413597 +2020.425685 +2020.427217 +2020.450893 +2020.466011 +2020.467843 +2020.481563 +2020.522954 +2020.547663 +2020.561383 +2020.561949 +2020.611333 +2020.613264 +2020.638872 +2020.681163 +2020.713430 +2020.716661 +2020.744566 +2020.757586 +2020.790487 +2020.804739 +2020.819091 +2020.821322 +2020.835608 +2020.859584 +2020.861116 +2020.898778 +2020.913397 +2020.925651 +2020.937107 +2020.955488 +2020.956787 +2024.889117 +2030.973094 +2031.972993 +2032.972825 +2034.972257 +2034.973090 +2034.973822 +2040.979378 +2041.275348 +2041.474882 +2041.774249 +2041.874914 +2041.974481 +2041.975014 +2042.274748 +2042.374781 +2042.375480 +2042.576679 +2042.676612 +2042.874514 +2042.975879 +2043.274347 +2043.774113 +2043.875612 +2043.876411 +2043.876677 +2044.374912 +2044.375645 +2044.973213 +2045.373213 +2045.374844 +2045.474811 +2045.476043 +2045.775910 +2045.876109 +2050.972907 +2050.979767 +2051.026620 +2051.059954 +2051.081599 +2051.120160 +2051.154326 +2051.155158 +2051.157190 +2051.178868 +2051.189724 +2051.215531 +2051.217429 +2051.219161 +2051.245035 +2051.247832 +2051.248232 +2051.270676 +2051.292987 +2051.293253 +2051.306107 +2051.367579 +2051.369710 +2051.394086 +2051.472674 +2051.474905 +2051.485428 +2051.510869 +2051.559886 +2051.588225 +2051.604475 +2051.671708 +2051.699247 +2051.734778 +2051.765381 +2051.776170 +2051.785627 +2051.790622 +2051.791188 +2051.814765 +2051.817628 +2051.829483 +2051.872807 +2051.893786 +2051.926386 +2051.954625 +2051.965947 +2051.966346 +2051.981298 +2051.994085 +2052.005940 +2052.051561 +2052.063949 +2052.099846 +2052.100712 +2052.111001 +2052.148830 +2052.218594 +2052.264348 +2052.302077 +2052.318760 +2052.343036 +2052.360552 +2052.363349 +2052.375304 +2052.435010 +2052.459053 +2052.492386 +2052.562250 +2052.580198 +2052.604940 +2052.614631 +2052.642636 +2052.654391 +2052.654957 +2052.665879 +2052.690521 +2052.715163 +2052.717961 +2052.747531 +2052.773538 +2052.812999 +2052.832712 +2052.847198 +2052.874804 +2052.876335 +2052.889789 +2052.934610 +2052.964447 +2052.979599 +2052.991853 +2053.031147 +2053.034677 +2053.072406 +2053.072772 +2053.127317 +2053.146099 +2053.146698 +2053.170241 +2053.171573 +2053.196415 +2053.199012 +2053.238240 +2053.280331 +2053.307038 +2053.333078 +2053.343934 +2053.386724 +2053.438373 +2053.456721 +2053.482029 +2053.497280 +2053.498912 +2053.523554 +2053.575269 +2053.615162 +2053.615595 +2053.698479 +2053.710733 +2053.737640 +2053.739638 +2053.763514 +2053.795582 +2053.809734 +2053.820124 +2053.834676 +2053.879465 +2053.904240 +2053.904906 +2053.918392 +2053.943001 +2053.944566 +2053.959584 +2053.972238 +2053.973670 +2053.999311 +2054.041469 +2054.083294 +2054.136640 +2054.164846 +2054.192984 +2054.206104 +2054.261749 +2054.318692 +2054.360317 +2054.375035 +2054.388588 +2054.414096 +2054.441902 +2054.481262 +2054.482028 +2054.537506 +2054.569008 +2054.610599 +2054.628615 +2054.660982 +2054.709700 +2054.721921 +2054.726650 +2054.753157 +2054.779097 +2054.871005 +2054.899011 +2054.941035 +2054.954255 +2054.970539 +2055.006103 +2055.018658 +2055.076333 +2055.124951 +2055.171571 +2055.186523 +2055.213562 +2055.269074 +2055.294148 +2055.297179 +2055.309167 +2055.328081 +2055.369040 +2055.412796 +2055.413662 +2055.415427 +2055.429946 +2055.467808 +2055.494281 +2055.523352 +2055.541900 +2055.551591 +2055.565077 +2055.579696 +2055.600708 +2055.615960 +2055.628780 +2055.641634 +2055.667308 +2055.681194 +2055.681794 +2055.722586 +2055.730112 +2055.758284 +2055.760215 +2055.763179 +2055.799376 +2055.803905 +2055.832043 +2055.833509 +2055.861747 +2055.864145 +2055.873069 +2055.874634 +2055.885024 +2055.929246 +2055.959782 +2059.406665 +2060.646124 +2060.663107 +2060.671965 +2062.107562 +2062.145524 +2063.581852 +2064.446187 +2064.494605 +2067.980017 +2068.974155 +2068.980881 +2074.860662 +2075.974281 +2075.978610 +2076.072483 +2076.074181 +2076.174414 +2076.275346 +2076.375712 +2076.376412 +2076.574580 +2076.674980 +2076.676145 +2076.875312 +2076.974946 +2076.975246 +2076.975445 +2076.976877 +2077.075312 +2077.276311 +2077.331289 +2077.375478 +2077.474679 +2077.875178 +2077.975111 +2077.975711 +2078.174212 +2078.475910 +2078.776876 +2078.876975 +2079.075277 +2079.075910 +2079.075910 +2079.376708 +2079.675909 +2079.775975 +2079.974477 +2079.976641 +2079.977074 +2080.275675 +2080.376841 +2080.474776 +2080.475275 +2080.476674 +2080.775808 +2080.776907 +2080.975575 +2085.971074 +2085.972806 +2085.986392 +2086.004641 +2086.058553 +2086.081464 +2086.092985 +2086.152659 +2086.200944 +2086.226752 +2086.263415 +2086.276668 +2086.298546 +2086.309968 +2086.322089 +2086.333112 +2086.358453 +2086.395150 +2086.409802 +2086.436375 +2086.447064 +2086.447597 +2086.471473 +2086.497414 +2086.513198 +2086.536541 +2086.553258 +2086.562449 +2086.591520 +2086.636941 +2086.638673 +2086.647630 +2086.674304 +2086.705705 +2086.723055 +2086.757354 +2086.790820 +2086.807870 +2086.818526 +2086.825053 +2086.852259 +2086.866045 +2086.867310 +2086.884160 +2086.909268 +2086.921956 +2086.934943 +2086.935342 +2086.972172 +2087.019758 +2087.032512 +2087.033977 +2087.079864 +2087.107270 +2087.121622 +2087.134077 +2087.148229 +2087.232645 +2087.258918 +2087.289887 +2087.326750 +2087.357986 +2087.379931 +2087.410999 +2087.451226 +2087.480763 +2087.493450 +2087.520490 +2087.585691 +2087.709401 +2087.742334 +2087.754822 +2087.764712 +2087.804705 +2087.813563 +2087.854822 +2087.905604 +2087.916693 +2087.935408 +2087.961915 +2088.000909 +2088.012064 +2088.028848 +2088.031212 +2088.071871 +2088.089487 +2088.117326 +2088.118658 +2088.191951 +2088.216660 +2088.237639 +2088.248261 +2088.298811 +2088.330246 +2088.339703 +2088.343966 +2088.370972 +2088.385890 +2088.409866 +2088.427815 +2088.441135 +2088.453323 +2088.456386 +2088.469906 +2088.494948 +2088.535174 +2088.536739 +2088.565977 +2088.578864 +2088.590952 +2088.630246 +2088.711631 +2088.721454 +2088.724218 +2088.764678 +2088.804271 +2088.805803 +2088.830545 +2088.863945 +2088.890219 +2088.911164 +2088.923852 +2088.930179 +2088.990885 +2089.024651 +2089.050492 +2089.156186 +2089.174001 +2089.189519 +2089.199909 +2089.202306 +2089.214228 +2089.226216 +2089.297777 +2089.310098 +2089.339402 +2089.350758 +2089.390618 +2089.405237 +2089.406036 +2089.420588 +2089.422652 +2089.480561 +2089.481360 +2089.521687 +2089.531444 +2089.578763 +2089.593049 +2089.642000 +2089.663711 +2089.719189 +2089.722952 +2089.724017 +2089.793148 +2089.795313 +2089.824151 +2089.836005 +2089.876765 +2089.894747 +2089.987121 +2089.988020 +2090.010164 +2090.036571 +2090.037903 +2090.049758 +2090.066841 +2090.081859 +2090.108333 +2090.135739 +2090.151623 +2090.176798 +2090.215759 +2090.216225 +2090.231143 +2090.244730 +2090.259348 +2090.271902 +2090.272402 +2090.287220 +2090.343964 +2090.347893 +2090.374766 +2090.377230 +2090.419288 +2090.431776 +2090.446994 +2090.477197 +2090.493680 +2090.508499 +2090.538169 +2090.596977 +2090.646461 +2090.659315 +2090.688685 +2090.711196 +2090.722951 +2090.782192 +2090.813094 +2090.859115 +2090.904103 +2090.939001 +2090.939867 +2090.955052 +2090.967306 +2097.071063 +2098.093073 +2098.098668 +2100.221842 +2100.973357 +2102.972689 +2103.973520 +2103.974486 +2104.973386 +2104.974485 +2105.527332 +2108.125564 +2111.073780 +2111.275444 +2111.375578 +2111.474312 +2111.475078 +2111.674978 +2111.774545 +2111.775244 +2111.874678 +2111.875144 +2112.274844 +2112.374777 +2112.375577 +2112.674111 +2112.674877 +2112.675077 +2112.775609 +2113.175176 +2113.376674 +2114.074409 +2114.075342 +2114.376973 +2114.475375 +2114.476340 +2114.477239 +2114.675408 +2114.875607 +2114.975208 +2115.275374 +2115.375174 +2115.474108 +2115.676606 +2115.874907 +2118.029983 +2118.071275 +2118.086926 +2118.114598 +2118.142471 +2120.978998 +2120.980330 +2121.003906 +2121.005038 +2121.023820 +2121.034875 +2121.083060 +2121.095981 +2121.159151 +2121.169374 +2121.196613 +2121.203706 +2121.214762 +2121.215461 +2121.249594 +2121.262248 +2121.274269 +2121.312964 +2121.326883 +2121.339437 +2121.380995 +2121.396114 +2121.476367 +2121.516693 +2121.531345 +2121.570373 +2121.641701 +2121.657785 +2121.683992 +2121.762314 +2121.886223 +2121.894082 +2121.910366 +2121.936140 +2121.960449 +2122.024318 +2122.065144 +2122.066110 +2122.095713 +2122.128347 +2122.166776 +2122.265277 +2122.267208 +2122.293682 +2122.320622 +2122.322553 +2122.346562 +2122.376233 +2122.452922 +2122.468274 +2122.481061 +2122.496412 +2122.524418 +2122.555287 +2122.597045 +2122.598410 +2122.611730 +2122.622320 +2122.622752 +2122.638670 +2122.663179 +2122.675999 +2122.703638 +2122.717458 +2122.728247 +2122.741234 +2122.761247 +2122.777731 +2122.802206 +2122.849825 +2122.867075 +2122.893115 +2122.908233 +2122.909998 +2122.988253 +2123.003272 +2123.017890 +2123.029612 +2123.048626 +2123.052522 +2123.066708 +2123.094147 +2123.135173 +2123.162046 +2123.185989 +2123.207134 +2123.231410 +2123.243897 +2123.265076 +2123.265376 +2123.288986 +2123.299841 +2123.320920 +2123.362179 +2123.402405 +2123.506268 +2123.519288 +2123.529778 +2123.574566 +2123.603338 +2123.634440 +2123.643264 +2123.658582 +2123.687853 +2123.736271 +2123.736904 +2123.810763 +2123.884123 +2123.885355 +2123.913028 +2123.923417 +2123.954752 +2123.969671 +2123.981492 +2124.022152 +2124.024982 +2124.039101 +2124.054852 +2124.149025 +2124.160347 +2124.216590 +2124.260680 +2124.261645 +2124.277829 +2124.288152 +2124.291182 +2124.307832 +2124.309964 +2124.323483 +2124.363510 +2124.378229 +2124.396777 +2124.398342 +2124.439967 +2124.452155 +2124.480193 +2124.492647 +2124.522784 +2124.542897 +2124.573533 +2124.582224 +2124.617989 +2124.661578 +2124.662710 +2124.690749 +2124.741498 +2124.766507 +2124.768338 +2124.769237 +2124.813193 +2124.828711 +2124.840699 +2124.842963 +2124.867705 +2124.882191 +2124.897209 +2124.928211 +2124.944961 +2124.954918 +2124.997642 +2124.999140 +2125.026013 +2125.054285 +2125.131375 +2125.156882 +2125.164109 +2125.177429 +2125.192580 +2125.209630 +2125.224581 +2125.264408 +2125.278594 +2125.283755 +2125.293279 +2125.314125 +2125.329610 +2125.340365 +2125.357482 +2125.368104 +2125.381291 +2125.414458 +2125.472833 +2125.475730 +2125.489683 +2125.503935 +2125.536769 +2125.538600 +2125.569070 +2125.581091 +2125.615224 +2125.652886 +2125.666539 +2125.675064 +2125.698707 +2125.698973 +2125.714624 +2125.727944 +2125.728444 +2125.778727 +2125.806998 +2125.868104 +2125.909596 +2125.965207 +2130.995904 +2136.980713 +2137.978848 +2139.972219 +2139.979578 +2140.973550 +2146.475676 +2146.673178 +2146.875509 +2147.173344 +2147.274210 +2147.574309 +2147.973476 +2147.974009 +2148.073576 +2148.174475 +2148.372810 +2148.373176 +2148.473542 +2148.975573 +2149.173875 +2149.174174 +2149.273309 +2149.274607 +2149.275340 +2149.774240 +2149.774973 +2150.274307 +2150.275006 +2150.874239 +2150.973940 +2152.075703 +2152.886392 +2155.977364 +2155.984291 +2156.012030 +2156.012563 +2156.044231 +2156.056052 +2156.088653 +2156.107801 +2156.147361 +2156.177298 +2156.189219 +2156.218590 +2156.240934 +2156.243598 +2156.287654 +2156.325549 +2156.348160 +2156.377531 +2156.396179 +2156.435106 +2156.462812 +2156.488919 +2156.572036 +2156.597277 +2156.639468 +2156.693714 +2156.718656 +2156.727480 +2156.775432 +2156.801440 +2156.816291 +2156.873134 +2156.921386 +2156.931043 +2156.945862 +2156.956451 +2156.983091 +2156.996777 +2156.997410 +2157.022352 +2157.060647 +2157.071136 +2157.098109 +2157.121586 +2157.135172 +2157.156617 +2157.181692 +2157.204037 +2157.229178 +2157.291849 +2157.306834 +2157.309631 +2157.319088 +2157.337869 +2157.346993 +2157.365641 +2157.390550 +2157.391049 +2157.402971 +2157.457549 +2157.484156 +2157.495112 +2157.509830 +2157.511362 +2157.544396 +2157.556184 +2157.611362 +2157.619221 +2157.631109 +2157.660213 +2157.675664 +2157.688252 +2157.702138 +2157.713160 +2157.737469 +2157.738768 +2157.763377 +2157.774799 +2157.839767 +2157.840000 +2157.880992 +2157.914292 +2157.938235 +2157.938868 +2157.963576 +2157.995777 +2158.000106 +2158.014226 +2158.025448 +2158.026979 +2158.060213 +2158.075098 +2158.104102 +2158.117189 +2158.129943 +2158.170303 +2158.171368 +2158.189550 +2158.204269 +2158.215790 +2158.228311 +2158.273966 +2158.283356 +2158.300073 +2158.314259 +2158.326879 +2158.328045 +2158.354052 +2158.366773 +2158.408331 +2158.410962 +2158.436370 +2158.446393 +2158.448324 +2158.459213 +2158.469170 +2158.470069 +2158.506033 +2158.540199 +2158.566273 +2158.615890 +2158.657015 +2158.669603 +2158.705001 +2158.706333 +2158.729843 +2158.743662 +2158.773266 +2158.782989 +2158.793279 +2158.808830 +2158.848857 +2158.885087 +2158.934005 +2158.954618 +2158.972899 +2158.982290 +2158.991814 +2159.075696 +2159.077694 +2159.089749 +2159.109662 +2159.136336 +2159.137268 +2159.152253 +2159.165773 +2159.219619 +2159.221018 +2159.230441 +2159.233472 +2159.245693 +2159.270002 +2159.294544 +2159.311527 +2159.313092 +2159.335403 +2159.347957 +2159.364507 +2159.389049 +2159.391181 +2159.430874 +2159.431374 +2159.453651 +2159.467737 +2159.468104 +2159.482289 +2159.505733 +2159.577994 +2159.587984 +2159.601204 +2159.601403 +2159.643561 +2159.644560 +2159.645992 +2159.672865 +2159.686119 +2159.703634 +2159.718453 +2159.790880 +2159.820384 +2159.847091 +2159.850354 +2159.877793 +2159.890015 +2159.919119 +2159.929408 +2159.942795 +2159.943428 +2159.957281 +2159.957580 +2159.984587 +2159.986485 +2160.002968 +2160.048123 +2160.071133 +2160.077926 +2160.078792 +2160.108263 +2160.122848 +2160.163541 +2160.193378 +2160.194743 +2160.209262 +2160.210694 +2160.225912 +2160.240164 +2160.253750 +2160.304133 +2160.316221 +2160.340031 +2160.356081 +2160.394576 +2160.395908 +2160.451053 +2160.451586 +2160.453251 +2160.463341 +2160.465305 +2160.562142 +2160.562774 +2160.577926 +2160.588016 +2160.591579 +2160.605165 +2160.619384 +2160.635435 +2160.677992 +2160.696008 +2160.710427 +2160.711292 +2160.742062 +2160.777160 +2160.789814 +2160.822448 +2160.863307 +2160.893610 +2160.912624 +2160.924079 +2160.940530 +2160.954249 +2160.957213 +2165.258574 +2165.274491 +2165.311221 +2166.341856 +2166.357507 +2166.367730 +2166.755742 +2167.558771 +2167.610486 +2170.970656 +2170.971988 +2170.972554 +2171.972287 +2171.977515 +2172.426366 +2173.970986 +2173.977047 +2175.970651 +2175.976645 +2180.977073 +2181.071079 +2181.172577 +2181.272377 +2181.873942 +2182.072576 +2182.174241 +2182.273009 +2182.274275 +2182.974340 +2183.272375 +2183.273208 +2183.371043 +2183.472941 +2183.674473 +2184.170943 +2184.172541 +2184.372141 +2184.474039 +2184.771208 +2184.771941 +2184.873073 +2185.374405 +2185.574338 +2185.672473 +2185.673239 +2185.773538 +2185.873006 +2191.054952 +2191.067606 +2191.080160 +2191.102471 +2191.140433 +2191.153054 +2191.165208 +2191.174299 +2191.178029 +2191.204669 +2191.218521 +2191.254086 +2191.266973 +2191.282757 +2191.303803 +2191.322118 +2191.357216 +2191.380892 +2191.396676 +2191.420286 +2191.434605 +2191.458981 +2191.487985 +2191.499407 +2191.523782 +2191.563010 +2191.614825 +2191.642330 +2191.690416 +2191.703403 +2191.729576 +2191.745327 +2191.755151 +2191.820252 +2191.859879 +2191.874665 +2191.897209 +2191.957015 +2192.022650 +2192.023382 +2192.038667 +2192.067571 +2192.081791 +2192.082723 +2192.094644 +2192.117455 +2192.131507 +2192.152020 +2192.163709 +2192.190182 +2192.191148 +2192.192613 +2192.216989 +2192.250955 +2192.259379 +2192.278627 +2192.304568 +2192.323748 +2192.336502 +2192.349922 +2192.365240 +2192.390781 +2192.419186 +2192.433439 +2192.443295 +2192.482090 +2192.487052 +2192.514724 +2192.515490 +2192.529409 +2192.556582 +2192.568970 +2192.582623 +2192.598873 +2192.623981 +2192.650355 +2192.674397 +2192.698373 +2192.715023 +2192.730541 +2192.754251 +2192.765539 +2192.787551 +2192.826345 +2192.853585 +2192.866838 +2192.871134 +2192.894677 +2192.943661 +2192.968436 +2193.019219 +2193.030108 +2193.045792 +2193.061510 +2193.128876 +2193.129275 +2193.155582 +2193.167803 +2193.179259 +2193.235769 +2193.236202 +2193.237867 +2193.274430 +2193.317454 +2193.325179 +2193.358013 +2193.360244 +2193.383920 +2193.435702 +2193.493644 +2193.494277 +2193.535569 +2193.584187 +2193.609528 +2193.643960 +2193.675029 +2193.713690 +2193.771732 +2193.801602 +2193.814323 +2193.825345 +2193.841562 +2193.898306 +2193.912491 +2193.938132 +2193.960876 +2193.962208 +2193.977227 +2193.992245 +2194.014423 +2194.026477 +2194.027776 +2194.029274 +2194.037466 +2194.082321 +2194.094975 +2194.106497 +2194.123014 +2194.133670 +2194.169268 +2194.223813 +2194.224979 +2194.251019 +2194.288815 +2194.303567 +2194.319284 +2194.360243 +2194.361042 +2194.390246 +2194.417552 +2194.433503 +2194.509394 +2194.532171 +2194.562341 +2194.564872 +2194.579624 +2194.606763 +2194.634968 +2194.653083 +2194.665071 +2194.669267 +2194.683952 +2194.696207 +2194.721815 +2194.727942 +2194.728841 +2194.755414 +2194.767436 +2194.771864 +2194.828874 +2194.842061 +2194.867003 +2194.882420 +2194.882787 +2194.935101 +2194.941195 +2194.965870 +2195.020282 +2195.091178 +2195.091911 +2195.117352 +2195.162906 +2195.188514 +2195.216553 +2195.232736 +2195.263239 +2195.303233 +2195.303799 +2195.318051 +2195.403166 +2195.432203 +2195.449919 +2195.464338 +2195.491944 +2195.492909 +2195.516952 +2195.533902 +2195.547388 +2195.548254 +2195.559476 +2195.583419 +2195.584051 +2195.598504 +2195.611557 +2195.624444 +2195.632969 +2195.635600 +2195.695806 +2195.698603 +2195.712756 +2195.744091 +2195.771064 +2195.772130 +2195.772829 +2195.787115 +2195.802533 +2195.840828 +2195.872063 +2195.886016 +2195.887414 +2195.915486 +2195.963005 +2202.849146 +2202.877984 +2202.979682 +2203.353408 +2203.432495 +2207.699424 +2207.854435 +2208.700955 +2208.705017 +2209.700687 +2209.902519 +2211.707479 +2212.089529 +2212.200618 +2212.239313 +2212.261124 +2212.943075 +2214.513237 +2216.701047 +2216.706941 +2216.801946 +2216.902345 +2217.108572 +2217.203011 +2217.802711 +2218.202477 +2218.402976 +2219.902176 +2220.014696 +2220.202575 +2222.566642 +2222.744431 +2226.323248 +2226.706298 +2226.726445 +2226.726778 +2226.741030 +2226.752319 +2226.770101 +2226.815888 +2226.845792 +2226.846991 +2226.895942 +2226.949721 +2226.962342 +2227.001369 +2227.011992 +2227.022248 +2227.036201 +2227.036967 +2227.056214 +2227.090314 +2227.104333 +2227.104832 +2227.126311 +2227.140430 +2227.173197 +2227.211426 +2227.212724 +2227.224046 +2227.237633 +2227.247390 +2227.250087 +2227.273830 +2227.284053 +2227.298072 +2227.315988 +2227.329341 +2227.330174 +2227.342894 +2227.343693 +2227.344726 +2227.356680 +2227.366604 +2227.389547 +2227.414489 +2227.456147 +2227.474030 +2227.492877 +2227.538299 +2227.553517 +2227.585651 +2227.587083 +2227.598172 +2227.619151 +2227.630340 +2227.640097 +2227.691712 +2227.709860 +2227.729274 +2227.739497 +2227.751285 +2227.783054 +2227.796407 +2227.834535 +2227.846490 +2227.848122 +2227.904365 +2227.960343 +2227.988448 +2227.999837 +2228.034535 +2228.062774 +2228.074728 +2228.088415 +2228.168035 +2228.218351 +2228.242860 +2228.256047 +2228.268634 +2228.306363 +2228.380755 +2228.381288 +2228.407495 +2228.458944 +2228.487781 +2228.497672 +2228.511724 +2228.556646 +2228.568800 +2228.584718 +2228.631704 +2228.668367 +2228.680888 +2228.709326 +2228.732603 +2228.735833 +2228.759410 +2228.772796 +2228.798704 +2228.800468 +2228.826010 +2228.851584 +2228.864338 +2228.904598 +2228.906063 +2228.916153 +2228.930005 +2228.931004 +2228.944058 +2228.971531 +2228.985716 +2228.998337 +2229.000402 +2229.011024 +2229.053615 +2229.054681 +2229.055513 +2229.069865 +2229.111191 +2229.112889 +2229.154714 +2229.167101 +2229.181254 +2229.225343 +2229.238230 +2229.251617 +2229.277591 +2229.291277 +2229.292776 +2229.303964 +2229.370931 +2229.394607 +2229.463971 +2229.477757 +2229.525842 +2229.575026 +2229.577957 +2229.580221 +2229.589079 +2229.634767 +2229.650418 +2229.652582 +2229.692609 +2229.706495 +2229.733834 +2229.764537 +2229.817184 +2229.831103 +2229.832569 +2229.833101 +2229.855446 +2229.870064 +2229.918316 +2229.939295 +2229.940827 +2229.952482 +2229.981919 +2230.019748 +2230.021713 +2230.033900 +2230.037963 +2230.078389 +2230.091909 +2230.133967 +2230.147886 +2230.164270 +2230.175392 +2230.189078 +2230.205262 +2230.237796 +2230.250251 +2230.282885 +2230.357177 +2230.381120 +2230.394606 +2230.423211 +2230.449018 +2230.453147 +2230.467233 +2230.469997 +2230.482784 +2230.496271 +2230.513354 +2230.541559 +2230.573594 +2230.589611 +2230.605029 +2230.617849 +2230.632668 +2230.677423 +2230.717882 +2230.722078 +2230.749251 +2230.752581 +2230.797636 +2230.798835 +2230.813087 +2230.813587 +2230.844689 +2230.859641 +2230.890110 +2230.921079 +2230.923177 +2230.950217 +2230.951715 +2230.965268 +2231.047319 +2231.077622 +2231.124609 +2231.138162 +2231.167266 +2231.182218 +2231.198102 +2231.199600 +2231.209490 +2231.212021 +2231.252248 +2231.254479 +2231.268365 +2231.285181 +2231.286080 +2231.388644 +2231.432800 +2231.448484 +2231.484249 +2231.528737 +2231.530003 +2231.545621 +2231.605827 +2231.636596 +2231.666233 +2231.670529 +2233.003128 +2233.022842 +2233.040491 +2241.702653 +2242.701354 +2242.702020 +2242.708247 +2243.707613 +2244.708578 +2250.240773 +2251.146134 +2251.703043 +2251.707139 +2251.708204 +2251.803709 +2251.909103 +2252.204474 +2252.904873 +2253.004640 +2253.303374 +2253.404740 +2253.604773 +2254.403906 +2254.504938 +2254.604971 +2254.905271 +2255.305104 +2255.404405 +2255.904604 +2256.105070 +2256.205036 +2256.305103 +2256.404903 +2256.504670 +2260.159312 +2261.714988 +2261.721847 +2261.728541 +2261.729273 +2261.738098 +2261.747255 +2261.774228 +2261.774661 +2261.784352 +2261.793842 +2261.805031 +2261.824778 +2261.826476 +2261.874994 +2261.898404 +2261.930405 +2261.938198 +2261.959676 +2261.970332 +2262.020715 +2262.058644 +2262.077958 +2262.102666 +2262.123612 +2262.125610 +2262.181054 +2262.193642 +2262.214221 +2262.217085 +2262.228840 +2262.261541 +2262.262506 +2262.263339 +2262.272863 +2262.274761 +2262.299503 +2262.315187 +2262.347688 +2262.393042 +2262.393875 +2262.395540 +2262.403732 +2262.426409 +2262.456845 +2262.458344 +2262.477857 +2262.506629 +2262.506995 +2262.520948 +2262.532636 +2262.545057 +2262.557844 +2262.570431 +2262.570931 +2262.593142 +2262.593675 +2262.654347 +2262.683352 +2262.703232 +2262.714187 +2262.724910 +2262.735466 +2262.737198 +2262.747254 +2262.757411 +2262.770165 +2262.771264 +2262.789812 +2262.817218 +2262.850085 +2262.862506 +2262.899002 +2262.910558 +2262.947454 +2262.957977 +2262.982918 +2263.008360 +2263.013288 +2263.014121 +2263.025809 +2263.060607 +2263.085283 +2263.104430 +2263.106262 +2263.161340 +2263.184683 +2263.198403 +2263.228606 +2263.237330 +2263.300867 +2263.326441 +2263.327673 +2263.336864 +2263.366168 +2263.374427 +2263.424710 +2263.449685 +2263.461939 +2263.484217 +2263.497204 +2263.508992 +2263.510524 +2263.534200 +2263.537097 +2263.563504 +2263.564636 +2263.592042 +2263.592741 +2263.630270 +2263.631003 +2263.646754 +2263.669598 +2263.671096 +2263.685449 +2263.696338 +2263.722545 +2263.723311 +2263.724043 +2263.735332 +2263.802531 +2263.811955 +2263.828372 +2263.831003 +2263.839727 +2263.879654 +2263.880054 +2263.892641 +2263.894506 +2263.933500 +2263.933867 +2263.974093 +2263.985748 +2263.996604 +2263.998702 +2264.010889 +2264.047053 +2264.058908 +2264.060473 +2264.106427 +2264.124676 +2264.137796 +2264.165901 +2264.174492 +2264.247786 +2264.298668 +2264.301099 +2264.326773 +2264.369863 +2264.424609 +2264.436064 +2264.508658 +2264.533200 +2264.547719 +2264.577855 +2264.603663 +2264.607725 +2264.675158 +2264.685381 +2264.698235 +2264.700133 +2264.727006 +2264.729803 +2264.742391 +2264.758075 +2264.781884 +2264.800333 +2264.810656 +2264.856543 +2264.868997 +2264.869597 +2264.879020 +2264.909956 +2264.935164 +2264.948384 +2264.962004 +2264.977722 +2264.991075 +2264.992174 +2265.009690 +2265.035197 +2265.040326 +2265.048884 +2265.050016 +2265.051448 +2265.064934 +2265.068131 +2265.134798 +2265.162703 +2265.190176 +2265.196736 +2265.236563 +2265.265334 +2265.266266 +2265.275357 +2265.310955 +2265.379852 +2265.396036 +2265.407325 +2265.408058 +2265.423043 +2265.456176 +2265.465667 +2265.479120 +2265.492140 +2265.497002 +2265.542023 +2265.568597 +2265.596902 +2265.609989 +2265.638194 +2265.665200 +2265.694637 +2265.724341 +2265.728170 +2265.740924 +2265.754511 +2265.772027 +2265.783448 +2265.891673 +2265.936462 +2266.008989 +2266.024474 +2266.101663 +2266.136662 +2266.150814 +2266.164967 +2266.219379 +2266.260837 +2266.274324 +2266.290008 +2266.305892 +2266.375989 +2266.490308 +2266.493005 +2266.506758 +2266.613984 +2266.641390 +2266.690807 +2277.703983 +2277.704848 +2277.705481 +2277.709777 +2278.704581 +2278.709210 +2278.709676 +2280.704612 +2281.704611 +2288.005937 +2288.106037 +2288.205904 +2288.505737 +2288.605970 +2288.607235 +2289.405669 +2289.606002 +2289.706069 +2290.005136 +2290.506134 +2290.906034 +2291.406100 +2296.708825 +2296.714420 +2296.715885 +2296.722811 +2296.737164 +2296.769132 +2296.777657 +2296.851882 +2296.891576 +2296.908193 +2296.971130 +2297.010157 +2297.021146 +2297.030170 +2297.044390 +2297.046354 +2297.070064 +2297.120713 +2297.144356 +2297.173827 +2297.205961 +2297.217450 +2297.227972 +2297.248852 +2297.259374 +2297.260174 +2297.270263 +2297.317316 +2297.341892 +2297.342724 +2297.351515 +2297.368332 +2297.388112 +2297.405395 +2297.452281 +2297.481585 +2297.506327 +2297.514419 +2297.601365 +2297.709490 +2297.711355 +2297.732800 +2297.745255 +2297.746154 +2297.797902 +2297.809091 +2297.843090 +2297.845454 +2297.859340 +2297.879953 +2297.881885 +2297.893173 +2297.908624 +2297.919380 +2297.919880 +2297.933067 +2297.955944 +2297.995904 +2298.029004 +2298.046187 +2298.067965 +2298.083283 +2298.084149 +2298.172261 +2298.184715 +2298.196869 +2298.209590 +2298.283616 +2298.294005 +2298.308657 +2298.331501 +2298.371328 +2298.383915 +2298.395437 +2298.470762 +2298.482716 +2298.510489 +2298.535164 +2298.562204 +2298.572560 +2298.573426 +2298.583449 +2298.601231 +2298.602430 +2298.674558 +2298.686146 +2298.689942 +2298.701298 +2298.726106 +2298.749050 +2298.895570 +2298.908457 +2298.909356 +2298.921777 +2298.957541 +2298.969862 +2298.992506 +2299.015883 +2299.038960 +2299.049516 +2299.050515 +2299.092906 +2299.094071 +2299.107658 +2299.111820 +2299.134631 +2299.190608 +2299.210688 +2299.212053 +2299.237095 +2299.247917 +2299.273225 +2299.285047 +2299.288077 +2299.297567 +2299.310355 +2299.311587 +2299.369995 +2299.382949 +2299.419978 +2299.445353 +2299.460971 +2299.472426 +2299.488510 +2299.512419 +2299.513951 +2299.530534 +2299.613018 +2299.672992 +2299.714084 +2299.741090 +2299.799665 +2299.808589 +2299.823108 +2299.854743 +2299.864200 +2299.867164 +2299.915183 +2299.941223 +2299.953311 +2299.955309 +2299.965898 +2300.006358 +2300.011952 +2300.021343 +2300.034130 +2300.047384 +2300.058239 +2300.071593 +2300.082615 +2300.098632 +2300.114017 +2300.125905 +2300.141356 +2300.149548 +2300.177820 +2300.190141 +2300.225172 +2300.238159 +2300.251646 +2300.319877 +2300.348016 +2300.358406 +2300.359504 +2300.363101 +2300.385179 +2300.424106 +2300.451412 +2300.455042 +2300.465165 +2300.481582 +2300.509354 +2300.520676 +2300.616514 +2300.619444 +2300.699564 +2300.743220 +2300.755009 +2300.755408 +2300.853177 +2300.857806 +2300.867629 +2300.908355 +2300.938991 +2300.981016 +2301.063966 +2301.247649 +2301.303626 +2301.358471 +2301.468295 +2301.703259 +2311.710176 +2313.710340 +2313.711040 +2314.705477 +2315.704444 +2316.705209 +2316.711669 +2321.710099 +2321.805337 +2321.905770 +2321.906136 +2322.006536 +2322.007168 +2322.305470 +2322.606469 +2323.306368 +2323.506601 +2323.605968 +2323.906534 +2324.406633 +2324.605900 +2324.606633 +2324.705601 +2324.706733 +2324.805667 +2325.106799 +2325.306499 +2325.407531 +2325.505333 +2325.506532 +2325.906665 +2326.006632 +2326.206598 +2326.406864 +2326.706797 +2331.704428 +2331.709490 +2331.721711 +2331.737695 +2331.887478 +2331.918680 +2331.949916 +2332.005061 +2332.005993 +2332.015916 +2332.040259 +2332.084148 +2332.094771 +2332.117182 +2332.117615 +2332.151381 +2332.177721 +2332.179652 +2332.203262 +2332.240658 +2332.261437 +2332.284248 +2332.336662 +2332.386445 +2332.407624 +2332.457841 +2332.479519 +2332.494704 +2332.515583 +2332.529136 +2332.578553 +2332.592672 +2332.631767 +2332.645619 +2332.693039 +2332.738993 +2332.777654 +2332.850647 +2332.871560 +2332.887111 +2332.912386 +2332.935862 +2332.954310 +2332.965066 +2332.977088 +2332.991440 +2333.028603 +2333.051413 +2333.052013 +2333.089941 +2333.115216 +2333.115582 +2333.116615 +2333.153278 +2333.154710 +2333.162902 +2333.178819 +2333.188309 +2333.208123 +2333.216947 +2333.240324 +2333.261070 +2333.273557 +2333.273857 +2333.325139 +2333.373890 +2333.374223 +2333.396468 +2333.420177 +2333.422475 +2333.442089 +2333.465599 +2333.480717 +2333.491606 +2333.506558 +2333.529901 +2333.555142 +2333.568196 +2333.581183 +2333.619411 +2333.633863 +2333.673124 +2333.698898 +2333.739458 +2333.787709 +2333.813717 +2333.827237 +2333.828002 +2333.838991 +2333.856074 +2333.867563 +2333.894070 +2333.907390 +2333.920909 +2333.945352 +2333.946917 +2334.038359 +2334.059704 +2334.087709 +2334.098998 +2334.101562 +2334.113816 +2334.139624 +2334.150879 +2334.177519 +2334.194269 +2334.218545 +2334.259537 +2334.271891 +2334.287076 +2334.314482 +2334.355308 +2334.356374 +2334.383879 +2334.396001 +2334.466597 +2334.481548 +2334.491172 +2334.494169 +2334.509587 +2334.518178 +2334.531465 +2334.556273 +2334.568295 +2334.599630 +2334.601129 +2334.614382 +2334.625005 +2334.649114 +2334.700196 +2334.735994 +2334.737459 +2334.754408 +2334.801528 +2334.828334 +2334.938458 +2334.953709 +2334.963732 +2334.996300 +2335.008487 +2335.021508 +2335.024871 +2335.037791 +2335.038557 +2335.048547 +2335.053143 +2335.068994 +2335.109686 +2335.164831 +2335.167428 +2335.167994 +2335.183512 +2335.192537 +2335.238058 +2335.254008 +2335.268760 +2335.350578 +2335.368560 +2335.395500 +2335.395900 +2335.410352 +2335.410951 +2335.449879 +2335.481547 +2335.507455 +2335.526302 +2335.541920 +2335.554374 +2335.566729 +2335.580315 +2335.580914 +2335.598430 +2335.606755 +2335.626202 +2335.708753 +2335.714947 +2335.724338 +2335.738690 +2335.743285 +2335.770125 +2335.774154 +2335.859236 +2335.890904 +2335.901793 +2335.949379 +2335.966495 +2336.022606 +2336.068560 +2336.098430 +2336.108220 +2336.124470 +2336.139688 +2336.156172 +2336.171057 +2336.190371 +2336.215113 +2336.243385 +2336.248613 +2336.304557 +2336.337923 +2336.380880 +2336.410750 +2336.412449 +2336.456038 +2336.532062 +2336.564896 +2336.577883 +2336.594999 +2336.622938 +2336.640421 +2336.642585 +2336.658103 +2336.685509 +2339.067158 +2347.711938 +2348.705710 +2348.710405 +2349.705676 +2350.710769 +2356.249725 +2356.807034 +2356.906534 +2357.106367 +2357.406967 +2357.606667 +2357.607199 +2357.805901 +2358.008032 +2358.105667 +2358.207166 +2358.306266 +2358.307299 +2358.507265 +2358.607332 +2358.905666 +2358.906799 +2359.006932 +2359.106632 +2359.206232 +2359.307164 +2359.405533 +2359.405832 +2359.406065 +2359.606631 +2359.608196 +2359.706631 +2359.707064 +2359.808329 +2359.907330 +2360.306098 +2360.306697 +2360.307097 +2360.406597 +2360.407130 +2360.408196 +2360.508329 +2360.608262 +2360.706730 +2360.806730 +2360.808162 +2361.308428 +2361.407762 +2361.606230 +2361.608228 +2361.707062 +2365.478687 +2366.745752 +2366.816647 +2366.827870 +2366.871726 +2366.882382 +2366.893337 +2366.905925 +2366.928835 +2366.930567 +2366.974589 +2366.985545 +2367.026371 +2367.026937 +2367.085145 +2367.120543 +2367.164932 +2367.189108 +2367.221942 +2367.267962 +2367.278618 +2367.291039 +2367.303360 +2367.312085 +2367.314149 +2367.335528 +2367.356807 +2367.371226 +2367.384113 +2367.416014 +2367.425238 +2367.453776 +2367.489607 +2367.490573 +2367.512185 +2367.563633 +2367.635128 +2367.637659 +2367.675188 +2367.682114 +2367.718312 +2367.729301 +2367.765265 +2367.793137 +2367.795967 +2367.805324 +2367.816746 +2367.842587 +2367.854941 +2367.869027 +2367.891005 +2367.892271 +2367.906457 +2367.929134 +2367.940189 +2367.961668 +2367.962267 +2367.963200 +2367.986510 +2368.023240 +2368.040256 +2368.041921 +2368.104725 +2368.125704 +2368.136393 +2368.164631 +2368.177951 +2368.197532 +2368.215247 +2368.225937 +2368.241921 +2368.267961 +2368.282347 +2368.291238 +2368.313349 +2368.331032 +2368.342254 +2368.344451 +2368.355907 +2368.386643 +2368.398830 +2368.433729 +2368.434428 +2368.456872 +2368.486110 +2368.496866 +2368.505524 +2368.507588 +2368.517778 +2368.533995 +2368.535527 +2368.536160 +2368.561501 +2368.588873 +2368.589573 +2368.644185 +2368.689506 +2368.719576 +2368.782679 +2368.874021 +2368.875353 +2368.885743 +2368.911950 +2368.924804 +2368.952643 +2368.966529 +2368.967494 +2369.005789 +2369.020042 +2369.061267 +2369.061833 +2369.073322 +2369.086775 +2369.109352 +2369.123438 +2369.150045 +2369.150411 +2369.163165 +2369.174854 +2369.178084 +2369.190072 +2369.206655 +2369.214714 +2369.217677 +2369.243318 +2369.245816 +2369.246349 +2369.286175 +2369.299662 +2369.309685 +2369.312516 +2369.324704 +2369.349445 +2369.364697 +2369.365996 +2369.378017 +2369.390904 +2369.429732 +2369.442419 +2369.452942 +2369.455573 +2369.536258 +2369.549212 +2369.560501 +2369.561733 +2369.589871 +2369.646182 +2369.674653 +2369.687374 +2369.688473 +2369.700261 +2369.714314 +2369.738689 +2369.739089 +2369.776451 +2369.805789 +2369.833761 +2369.836391 +2369.861366 +2369.874520 +2369.888939 +2369.892568 +2369.901726 +2369.906488 +2369.917044 +2369.920008 +2369.930364 +2369.932462 +2369.960101 +2369.970490 +2369.971256 +2369.983511 +2370.042718 +2370.100094 +2370.101393 +2370.187440 +2370.201393 +2370.218442 +2370.227766 +2370.246148 +2370.275718 +2370.288672 +2370.304989 +2370.320873 +2370.364096 +2370.376051 +2370.407486 +2370.408385 +2370.421739 +2370.438822 +2370.480746 +2370.482411 +2370.497230 +2370.541219 +2370.554006 +2370.567360 +2370.569657 +2370.599028 +2370.599694 +2370.671156 +2370.684542 +2370.748911 +2370.763064 +2370.776450 +2370.793533 +2370.822438 +2370.834292 +2370.884476 +2370.910616 +2370.912348 +2370.927766 +2370.928565 +2370.971755 +2370.985075 +2370.987040 +2371.028431 +2371.056304 +2371.070190 +2371.116577 +2371.128898 +2371.130862 +2371.131295 +2371.165061 +2371.179214 +2371.239154 +2371.272354 +2371.298561 +2371.314046 +2371.344881 +2371.361165 +2371.406153 +2371.418508 +2371.420439 +2371.478881 +2371.480079 +2371.481378 +2371.497995 +2371.580346 +2371.686007 +2373.328296 +2373.351573 +2373.375682 +2373.461163 +2374.750772 +2374.794928 +2374.980942 +2377.105448 +2377.120700 +2377.143477 +2378.708677 +2378.718867 +2378.820998 +2378.828956 +2378.929423 +2379.542242 +2380.241609 +2380.344373 +2381.237446 +2381.328721 +2381.706443 +2382.706442 +2382.711936 +2383.022758 +2383.705808 +2383.712468 +2386.706338 +2386.711499 +2387.210067 +2387.229348 +2388.381461 +2391.707265 +2391.807964 +2391.907165 +2392.207764 +2392.307931 +2392.407864 +2392.508064 +2392.508530 +2392.605799 +2392.807963 +2393.208030 +2393.307796 +2393.407963 +2393.606997 +2393.607730 +2393.807696 +2394.207196 +2394.208095 +2394.807895 +2395.007595 +2395.008461 +2395.008994 +2395.308094 +2395.508027 +2395.608227 +2396.206928 +2396.408426 +2396.506927 +2401.710552 +2401.731498 +2401.768993 +2401.788574 +2401.789173 +2401.840755 +2401.872923 +2401.972723 +2401.973722 +2401.993602 +2402.007888 +2402.016979 +2402.018144 +2402.051078 +2402.052809 +2402.086442 +2402.108887 +2402.109319 +2402.123638 +2402.143818 +2402.170591 +2402.212849 +2402.243851 +2402.265330 +2402.266495 +2402.279616 +2402.288374 +2402.312949 +2402.371690 +2402.408753 +2402.432995 +2402.457404 +2402.467927 +2402.469459 +2402.540721 +2402.552143 +2402.563432 +2402.574720 +2402.576951 +2402.627701 +2402.628566 +2402.639056 +2402.662432 +2402.664464 +2402.687208 +2402.701360 +2402.702526 +2402.726568 +2402.740787 +2402.759569 +2402.775952 +2402.776418 +2402.777451 +2402.816512 +2402.827001 +2402.838356 +2402.839522 +2402.869792 +2402.881014 +2402.895100 +2402.903891 +2402.911417 +2402.946914 +2402.956971 +2403.011583 +2403.012748 +2403.025436 +2403.026302 +2403.038922 +2403.052808 +2403.099595 +2403.112415 +2403.168959 +2403.193867 +2403.220674 +2403.264896 +2403.299128 +2403.300261 +2403.317610 +2403.330331 +2403.345116 +2403.384077 +2403.397963 +2403.420807 +2403.435159 +2403.459068 +2403.459268 +2403.490071 +2403.490970 +2403.516711 +2403.568093 +2403.568659 +2403.581313 +2403.594000 +2403.606055 +2403.629298 +2403.654772 +2403.668092 +2403.689737 +2403.701725 +2403.750010 +2403.776917 +2403.790370 +2403.791103 +2403.842451 +2403.854439 +2403.868392 +2403.875851 +2403.920939 +2403.942651 +2403.955971 +2403.969890 +2403.995565 +2403.997196 +2404.009151 +2404.019541 +2404.022005 +2404.084609 +2404.112248 +2404.125501 +2404.139287 +2404.140187 +2404.166627 +2404.167426 +2404.177882 +2404.180313 +2404.209384 +2404.221305 +2404.262697 +2404.265628 +2404.292334 +2404.321072 +2404.336756 +2404.337323 +2404.363829 +2404.375917 +2404.390170 +2404.390736 +2404.392800 +2404.404822 +2404.432927 +2404.483976 +2404.502224 +2404.514778 +2404.526766 +2404.542118 +2404.557968 +2404.584309 +2404.587505 +2404.615045 +2404.642217 +2404.657702 +2404.670522 +2404.687838 +2404.745248 +2404.760899 +2404.774418 +2404.775950 +2404.817176 +2404.831028 +2404.889403 +2404.901891 +2404.903223 +2404.945480 +2404.945847 +2404.973752 +2404.976583 +2405.022370 +2405.071288 +2405.113612 +2405.116975 +2405.200825 +2405.203655 +2405.216542 +2405.229130 +2405.242417 +2405.271288 +2405.293432 +2405.297195 +2405.331028 +2405.334591 +2405.418707 +2405.435690 +2405.452873 +2405.480278 +2405.481211 +2405.482709 +2405.495263 +2405.507218 +2405.521704 +2405.566359 +2405.598227 +2405.623735 +2405.640485 +2405.641384 +2405.668956 +2405.704088 +2405.746046 +2405.759366 +2405.774983 +2405.789003 +2405.808517 +2405.821570 +2405.836788 +2405.853904 +2405.864461 +2405.930395 +2405.990101 +2406.020038 +2406.062296 +2406.159698 +2406.199492 +2406.199958 +2406.203155 +2406.228529 +2406.229429 +2406.247843 +2406.270987 +2406.307817 +2406.309748 +2406.336655 +2406.341516 +2406.370854 +2406.383275 +2406.402256 +2406.447677 +2406.478879 +2406.511047 +2406.528762 +2406.589368 +2406.600823 +2406.631992 +2406.632858 +2406.661396 +2409.760494 +2409.781073 +2416.710537 +2418.707338 +2418.712167 +2419.705472 +2419.706305 +2420.711965 +2421.267742 +2421.312097 +2422.990517 +2424.898141 +2424.921651 +2424.938201 +2425.790881 +2426.710061 +2426.805698 +2427.007063 +2427.106597 +2427.107263 +2427.407429 +2427.507496 +2427.607429 +2427.907396 +2428.107362 +2428.507362 +2428.706929 +2429.307694 +2429.415985 +2429.507061 +2429.507494 +2429.607028 +2429.807027 +2429.807494 +2430.207760 +2430.507559 +2430.606361 +2430.607360 +2430.707060 +2430.807393 +2431.207492 +2431.306393 +2436.704190 +2436.722305 +2436.773654 +2436.774120 +2436.802458 +2436.831396 +2436.842651 +2436.843351 +2436.852442 +2436.864263 +2436.895965 +2436.932262 +2436.933261 +2436.943684 +2436.976018 +2436.986141 +2437.035125 +2437.035758 +2437.037623 +2437.056204 +2437.069724 +2437.156371 +2437.195831 +2437.206487 +2437.216510 +2437.229031 +2437.229797 +2437.241286 +2437.251009 +2437.261765 +2437.279681 +2437.298961 +2437.375751 +2437.395465 +2437.414246 +2437.414845 +2437.416310 +2437.457569 +2437.468525 +2437.489937 +2437.501991 +2437.539754 +2437.576051 +2437.615311 +2437.635158 +2437.644049 +2437.649077 +2437.658168 +2437.670956 +2437.709750 +2437.711115 +2437.744049 +2437.764295 +2437.764928 +2437.783443 +2437.795098 +2437.795597 +2437.828365 +2437.869523 +2437.881212 +2437.905887 +2437.980179 +2438.001491 +2438.021638 +2438.032460 +2438.055904 +2438.093566 +2438.103889 +2438.154072 +2438.158234 +2438.168857 +2438.221471 +2438.228830 +2438.234358 +2438.243316 +2438.250975 +2438.311648 +2438.342950 +2438.354938 +2438.364461 +2438.366126 +2438.405653 +2438.442783 +2438.466293 +2438.480778 +2438.481378 +2438.585107 +2438.597162 +2438.610249 +2438.644648 +2438.660165 +2438.682743 +2438.738121 +2438.757901 +2438.771387 +2438.783642 +2438.809016 +2438.822536 +2438.868623 +2438.898360 +2438.912380 +2439.043382 +2439.048710 +2439.061097 +2439.071820 +2439.098460 +2439.113944 +2439.129029 +2439.155736 +2439.219572 +2439.247211 +2439.256335 +2439.301557 +2439.314077 +2439.329629 +2439.382509 +2439.406052 +2439.422169 +2439.431793 +2439.434524 +2439.449742 +2439.451773 +2439.464527 +2439.504420 +2439.570854 +2439.584407 +2439.612312 +2439.614344 +2439.626798 +2439.629295 +2439.697860 +2439.699558 +2439.740018 +2439.765825 +2439.793364 +2439.806984 +2439.835822 +2439.849608 +2439.895229 +2439.909814 +2439.910913 +2439.924999 +2439.966924 +2439.994330 +2439.996028 +2440.006418 +2440.017673 +2440.066191 +2440.109348 +2440.140417 +2440.155602 +2440.172585 +2440.211246 +2440.213810 +2440.240417 +2440.259298 +2440.286837 +2440.288302 +2440.288968 +2440.317140 +2440.349408 +2440.350240 +2440.424233 +2440.437886 +2440.448808 +2440.450507 +2440.452038 +2440.497360 +2440.515109 +2440.525065 +2440.539351 +2440.557333 +2440.571818 +2440.616674 +2440.619404 +2440.632591 +2440.676813 +2440.678711 +2440.739517 +2440.766557 +2440.843680 +2440.845411 +2440.935288 +2440.936920 +2440.965291 +2441.042414 +2441.044379 +2441.046110 +2441.090599 +2441.122001 +2441.135354 +2441.152570 +2441.164825 +2441.179677 +2441.193729 +2441.225331 +2441.254768 +2441.286203 +2441.348441 +2441.426929 +2441.429094 +2441.457532 +2441.518671 +2441.566656 +2441.586936 +2441.616140 +2441.666556 +2441.679876 +2441.681508 +2448.116266 +2448.154928 +2448.172044 +2448.182567 +2448.204345 +2451.705574 +2451.710535 +2452.705839 +2452.706139 +2452.711333 +2452.711800 +2453.705738 +2455.703738 +2456.711463 +2462.006063 +2462.605396 +2462.907294 +2463.006961 +2463.106594 +2463.107161 +2463.207160 +2463.406694 +2463.407094 +2463.706128 +2463.807226 +2463.907326 +2464.106494 +2464.306926 +2464.507226 +2464.607126 +2464.806759 +2464.907125 +2465.106759 +2465.305627 +2465.606026 +2465.606758 +2465.607325 +2466.006825 +2466.008556 +2466.106225 +2466.107191 +2466.205992 +2466.306158 +2466.306391 +2466.307057 +2466.407224 +2469.387208 +2469.399961 +2469.404990 +2470.904322 +2471.714078 +2471.715643 +2471.772586 +2471.783309 +2471.802190 +2471.935657 +2471.945314 +2471.955337 +2471.977981 +2471.997295 +2472.008817 +2472.039220 +2472.080811 +2472.106652 +2472.130328 +2472.153272 +2472.163129 +2472.166059 +2472.210748 +2472.243815 +2472.245247 +2472.268723 +2472.286306 +2472.322303 +2472.335756 +2472.399159 +2472.399426 +2472.421737 +2472.435223 +2472.446379 +2472.456935 +2472.457634 +2472.481011 +2472.507551 +2472.518007 +2472.519572 +2472.521370 +2472.544647 +2472.545646 +2472.606851 +2472.610315 +2472.620038 +2472.637487 +2472.719206 +2472.733358 +2472.744314 +2472.767957 +2472.812013 +2472.835289 +2472.836455 +2472.871919 +2472.884107 +2472.884507 +2472.895729 +2472.908982 +2472.930527 +2472.932492 +2472.953737 +2472.963295 +2472.980311 +2473.001889 +2473.003221 +2473.028596 +2473.041383 +2473.119039 +2473.143348 +2473.166125 +2473.226598 +2473.235888 +2473.238885 +2473.271719 +2473.281676 +2473.318273 +2473.328629 +2473.356068 +2473.397959 +2473.426364 +2473.448809 +2473.460230 +2473.462695 +2473.488502 +2473.525665 +2473.577080 +2473.639151 +2473.653404 +2473.653637 +2473.729061 +2473.743913 +2473.769954 +2473.771785 +2473.781609 +2473.810014 +2473.831892 +2473.871019 +2473.882841 +2473.908215 +2473.936887 +2474.020303 +2474.032058 +2474.033390 +2474.062827 +2474.090999 +2474.143713 +2474.185504 +2474.201189 +2474.216007 +2474.227229 +2474.229793 +2474.256900 +2474.258132 +2474.284938 +2474.325997 +2474.327462 +2474.405384 +2474.436353 +2474.480875 +2474.491765 +2474.535254 +2474.565358 +2474.577046 +2474.581841 +2474.594229 +2474.664858 +2474.678777 +2474.691198 +2474.707382 +2474.733223 +2474.751305 +2474.752104 +2474.777379 +2474.808547 +2474.822500 +2474.854601 +2474.867788 +2474.912044 +2474.926762 +2474.940182 +2474.956966 +2474.969819 +2474.985504 +2475.014008 +2475.026896 +2475.029460 +2475.044878 +2475.055833 +2475.089067 +2475.101587 +2475.105217 +2475.118870 +2475.133489 +2475.145610 +2475.148807 +2475.193662 +2475.251204 +2475.298224 +2475.310212 +2475.311211 +2475.312976 +2475.313708 +2475.357098 +2475.384171 +2475.402286 +2475.429959 +2475.433122 +2475.460129 +2475.462859 +2475.505883 +2475.509346 +2475.524331 +2475.584271 +2475.676412 +2475.721101 +2475.736618 +2475.738716 +2475.748407 +2475.776345 +2475.790631 +2475.794860 +2475.806049 +2475.818936 +2475.875246 +2475.875613 +2475.878710 +2475.946808 +2475.988666 +2476.021400 +2476.051104 +2476.055266 +2476.066688 +2476.068286 +2476.084071 +2476.204583 +2476.207780 +2476.234753 +2476.279275 +2476.306914 +2476.397490 +2476.427893 +2476.453934 +2476.471683 +2476.489931 +2476.576345 +2476.694293 +2477.387832 +2478.377641 +2478.414005 +2478.469882 +2478.688064 +2478.715237 +2479.712006 +2479.749801 +2481.093423 +2483.973107 +2483.983463 +2484.052461 +2484.098082 +2485.486825 +2485.512666 +2485.515297 +2486.706837 +2487.707036 +2487.711665 +2488.706269 +2490.705501 +2490.707266 +2491.705567 +2495.486249 +2495.494674 +2496.711323 +2496.805662 +2496.905995 +2497.006627 +2497.007326 +2497.206361 +2497.706926 +2498.106526 +2498.206593 +2498.207825 +2498.407025 +2498.706592 +2498.806625 +2499.007791 +2499.106558 +2499.306592 +2499.307824 +2499.506491 +2499.606591 +2499.906591 +2500.006591 +2500.007823 +2500.106624 +2500.506557 +2500.606590 +2501.006490 +2501.208088 +2501.406589 +2501.508154 +2501.606290 +2501.607921 +2501.708088 +2506.705352 +2506.738585 +2506.798625 +2506.819171 +2506.830327 +2506.841549 +2506.876214 +2506.905552 +2506.906251 +2506.922635 +2506.924699 +2506.934489 +2506.990234 +2506.990533 +2507.003820 +2507.020936 +2507.024299 +2507.042848 +2507.059897 +2507.085505 +2507.098425 +2507.109115 +2507.141515 +2507.161029 +2507.186937 +2507.213843 +2507.255302 +2507.273583 +2507.304153 +2507.304919 +2507.386570 +2507.410413 +2507.422001 +2507.434655 +2507.443546 +2507.455768 +2507.457832 +2507.468089 +2507.481708 +2507.491931 +2507.531359 +2507.532324 +2507.570120 +2507.592564 +2507.595794 +2507.647509 +2507.658531 +2507.673217 +2507.721069 +2507.742381 +2507.763859 +2507.777412 +2507.786936 +2507.795627 +2507.796360 +2507.894795 +2507.915541 +2507.999623 +2508.024698 +2508.025697 +2508.026396 +2508.037419 +2508.063826 +2508.097525 +2508.101221 +2508.126097 +2508.150672 +2508.176713 +2508.178477 +2508.197159 +2508.198824 +2508.211411 +2508.226296 +2508.260995 +2508.275247 +2508.291664 +2508.316040 +2508.388600 +2508.391831 +2508.493562 +2508.531524 +2508.579876 +2508.624065 +2508.624631 +2508.636652 +2508.663359 +2508.675413 +2508.702853 +2508.716306 +2508.730758 +2508.754934 +2508.780308 +2508.806815 +2508.829492 +2508.890198 +2508.903618 +2508.947574 +2508.960461 +2508.978377 +2508.989133 +2509.000921 +2509.026762 +2509.038084 +2509.065223 +2509.078243 +2509.091031 +2509.106049 +2509.118969 +2509.172249 +2509.198257 +2509.225962 +2509.239615 +2509.263791 +2509.265223 +2509.266855 +2509.343345 +2509.355399 +2509.363791 +2509.390964 +2509.391430 +2509.404550 +2509.428959 +2509.457364 +2509.513841 +2509.541646 +2509.542046 +2509.552102 +2509.568386 +2509.625429 +2509.638250 +2509.640347 +2509.691296 +2509.705682 +2509.717470 +2509.748439 +2509.774846 +2509.791663 +2509.828925 +2509.842778 +2509.898622 +2509.908845 +2509.912908 +2509.974946 +2509.980207 +2510.045808 +2510.046408 +2510.054833 +2510.082671 +2510.124663 +2510.127993 +2510.129724 +2510.140280 +2510.143411 +2510.170217 +2510.207913 +2510.223497 +2510.250703 +2510.254200 +2510.293261 +2510.305515 +2510.307180 +2510.319501 +2510.332088 +2510.348305 +2510.358029 +2510.361925 +2510.383370 +2510.385069 +2510.387633 +2510.445242 +2510.472781 +2510.501552 +2510.518135 +2510.546507 +2510.564456 +2510.577343 +2510.620267 +2510.724129 +2510.753067 +2510.754133 +2510.755864 +2510.768318 +2510.813473 +2510.825428 +2510.853966 +2510.898322 +2510.911775 +2510.916337 +2510.930023 +2510.991462 +2511.005215 +2511.090529 +2511.120599 +2511.217202 +2511.261958 +2511.291028 +2511.303882 +2511.321032 +2511.347938 +2511.394658 +2511.426060 +2511.440046 +2511.467752 +2511.500985 +2511.558361 +2511.585267 +2511.602550 +2511.613739 +2511.667885 +2521.707069 +2521.711731 +2522.705436 +2522.707134 +2524.884055 +2525.712093 +2526.705332 +2526.711792 +2526.712192 +2531.811021 +2531.906859 +2532.307358 +2532.407324 +2532.506625 +2533.007457 +2533.307290 +2533.507423 +2534.808721 +2535.415780 +2536.707620 +2540.627662 +2541.710645 +2541.715074 +2541.744611 +2541.759296 +2541.773316 +2541.781341 +2541.841880 +2541.862260 +2541.863792 +2541.886003 +2541.920269 +2541.952003 +2541.953402 +2541.986802 +2542.044611 +2542.044877 +2542.045410 +2542.105317 +2542.131923 +2542.143512 +2542.151437 +2542.161327 +2542.198557 +2542.207448 +2542.211211 +2542.223432 +2542.235986 +2542.271251 +2542.272449 +2542.281640 +2542.295460 +2542.296192 +2542.318770 +2542.332056 +2542.356432 +2542.380341 +2542.395193 +2542.442446 +2542.442712 +2542.453335 +2542.468620 +2542.480008 +2542.481207 +2542.494227 +2542.520434 +2542.529525 +2542.530458 +2542.567820 +2542.591830 +2542.603618 +2542.611910 +2542.634520 +2542.646675 +2542.659628 +2542.680508 +2542.717537 +2542.741080 +2542.780341 +2542.827327 +2542.841680 +2542.853201 +2542.854134 +2542.876112 +2542.912708 +2542.913441 +2542.914407 +2542.951070 +2542.962892 +2542.963824 +2542.976644 +2543.016238 +2543.039914 +2543.050471 +2543.052036 +2543.066754 +2543.078243 +2543.078776 +2543.088766 +2543.127427 +2543.141047 +2543.175612 +2543.178176 +2543.202518 +2543.215805 +2543.225695 +2543.238715 +2543.300787 +2543.301652 +2543.310577 +2543.311975 +2543.330224 +2543.344576 +2543.353201 +2543.390430 +2543.404216 +2543.430590 +2543.469118 +2543.481606 +2543.496291 +2543.524163 +2543.559594 +2543.586934 +2543.599687 +2543.611276 +2543.612108 +2543.648572 +2543.675578 +2543.676144 +2543.685568 +2543.691229 +2543.715671 +2543.716038 +2543.731289 +2543.744110 +2543.781905 +2543.784136 +2543.819701 +2543.828425 +2543.874979 +2543.900786 +2543.911475 +2543.924063 +2543.928259 +2543.948272 +2543.949904 +2543.964089 +2543.965055 +2544.017136 +2544.055997 +2544.056597 +2544.067719 +2544.082937 +2544.106314 +2544.147006 +2544.171582 +2544.198188 +2544.198721 +2544.200053 +2544.209777 +2544.268518 +2544.282204 +2544.283403 +2544.283903 +2544.306547 +2544.314672 +2544.316870 +2544.343143 +2544.369284 +2544.371581 +2544.372714 +2544.408778 +2544.409777 +2544.426027 +2544.460726 +2544.462624 +2544.513406 +2544.522664 +2544.523862 +2544.567585 +2544.569950 +2544.579140 +2544.590429 +2544.605114 +2544.657995 +2544.679373 +2544.723130 +2544.734452 +2544.746939 +2544.761258 +2544.791694 +2544.815038 +2544.830622 +2544.856596 +2544.872014 +2544.880772 +2544.892826 +2544.919600 +2544.931787 +2544.945873 +2544.957661 +2544.959626 +2544.986799 +2545.011874 +2545.026526 +2545.030588 +2545.056363 +2545.078607 +2545.104581 +2545.119000 +2545.129156 +2545.143309 +2545.145274 +2545.158327 +2545.197388 +2545.227058 +2545.227924 +2545.254265 +2545.317501 +2545.338514 +2545.367251 +2545.419699 +2545.456029 +2545.457628 +2545.480005 +2545.482003 +2545.514737 +2545.537448 +2545.538580 +2545.539979 +2545.551500 +2545.578340 +2545.581104 +2545.592792 +2545.619166 +2545.636515 +2545.651167 +2545.689296 +2545.711041 +2545.725027 +2545.750401 +2545.767085 +2545.790994 +2545.798486 +2545.862955 +2545.877641 +2545.882236 +2545.892559 +2545.953198 +2545.993291 +2546.049036 +2546.050068 +2546.066718 +2546.134517 +2546.153664 +2546.176974 +2546.218433 +2546.249402 +2546.303048 +2546.323128 +2546.361523 +2546.363055 +2546.373378 +2546.441476 +2546.469581 +2546.520497 +2546.598219 +2546.610107 +2546.613870 +2546.623993 +2546.637946 +2546.653531 +2556.375832 +2556.387753 +2556.706767 +2558.704867 +2558.711960 +2559.705399 +2559.706365 +2561.706363 +2561.706962 +2561.712124 +2565.040692 +2565.113352 +2565.125873 +2565.131368 +2566.806158 +2566.807123 +2567.207256 +2567.407256 +2567.507556 +2567.806323 +2568.007255 +2568.106456 +2568.606589 +2568.707355 +2568.807521 +2568.907421 +2569.206821 +2569.507321 +2569.907453 +2570.007287 +2570.207386 +2570.306654 +2571.007319 +2571.207352 +2571.406353 +2571.707185 +2576.715039 +2576.735419 +2576.736817 +2576.807313 +2576.820800 +2576.833287 +2576.845175 +2576.891562 +2576.893227 +2576.914573 +2576.941512 +2577.091329 +2577.115372 +2577.136783 +2577.173980 +2577.218135 +2577.231089 +2577.257329 +2577.266320 +2577.291062 +2577.300220 +2577.304149 +2577.326527 +2577.347639 +2577.357829 +2577.388032 +2577.432587 +2577.470350 +2577.483703 +2577.496956 +2577.520366 +2577.521831 +2577.533353 +2577.545508 +2577.556597 +2577.569817 +2577.597755 +2577.645041 +2577.681405 +2577.703183 +2577.723563 +2577.756297 +2577.788365 +2577.799453 +2577.807978 +2577.820299 +2577.830023 +2577.842977 +2577.892061 +2577.917502 +2577.954398 +2577.988298 +2578.021931 +2578.032953 +2578.060858 +2578.088597 +2578.110575 +2578.123762 +2578.194092 +2578.195624 +2578.210808 +2578.211141 +2578.263522 +2578.264055 +2578.275244 +2578.311175 +2578.311707 +2578.347705 +2578.349236 +2578.350802 +2578.398754 +2578.409609 +2578.440945 +2578.480538 +2578.491128 +2578.492826 +2578.548071 +2578.573345 +2578.610641 +2578.616869 +2578.625993 +2578.638847 +2578.678307 +2578.688497 +2578.708444 +2578.735350 +2578.759692 +2578.774877 +2578.824261 +2578.836848 +2578.878274 +2578.879139 +2578.891660 +2578.906279 +2578.919366 +2578.945606 +2578.959226 +2578.972679 +2578.985200 +2578.997488 +2579.034617 +2579.046838 +2579.056795 +2579.082969 +2579.085366 +2579.095989 +2579.097421 +2579.110208 +2579.121563 +2579.123362 +2579.124760 +2579.135849 +2579.148303 +2579.150634 +2579.161290 +2579.175643 +2579.188496 +2579.217534 +2579.229722 +2579.244307 +2579.253565 +2579.258992 +2579.269948 +2579.310541 +2579.323628 +2579.327690 +2579.366951 +2579.367484 +2579.408876 +2579.422462 +2579.433451 +2579.448336 +2579.471546 +2579.471879 +2579.507077 +2579.518832 +2579.562489 +2579.574310 +2579.587830 +2579.588929 +2579.626724 +2579.637514 +2579.639345 +2579.655462 +2579.658026 +2579.708010 +2579.717600 +2579.728256 +2579.738879 +2579.753131 +2579.777573 +2579.792392 +2579.814736 +2579.872145 +2579.873144 +2579.882169 +2579.896255 +2579.922562 +2579.943574 +2579.958492 +2579.980037 +2580.005046 +2580.006844 +2580.022095 +2580.035482 +2580.062721 +2580.064353 +2580.078306 +2580.119065 +2580.132085 +2580.204346 +2580.208009 +2580.222328 +2580.233017 +2580.273943 +2580.319098 +2580.332784 +2580.376807 +2580.432751 +2580.466584 +2580.478805 +2580.497220 +2580.511039 +2580.536480 +2580.538711 +2580.607343 +2580.626257 +2580.680137 +2580.729221 +2580.786663 +2580.810872 +2580.826357 +2580.827389 +2580.855128 +2580.857359 +2580.870679 +2580.889793 +2580.929154 +2580.930786 +2580.946337 +2580.978904 +2580.989061 +2581.022294 +2581.049767 +2581.092257 +2581.112803 +2581.128288 +2581.139110 +2581.185930 +2581.216933 +2581.229853 +2581.276340 +2581.293589 +2581.302580 +2581.321761 +2581.346936 +2581.351897 +2581.376573 +2581.378870 +2581.391058 +2581.405977 +2581.408374 +2581.422327 +2581.432051 +2581.434215 +2581.444305 +2581.459590 +2581.460322 +2581.465084 +2581.480369 +2581.507875 +2581.524125 +2581.538777 +2581.551431 +2581.581301 +2581.608774 +2581.687062 +2581.695387 +2581.701448 +2591.706899 +2591.710762 +2595.705629 +2595.705763 +2595.712389 +2596.706294 +2599.597300 +2601.705124 +2601.806522 +2601.906988 +2602.008254 +2602.407454 +2602.507654 +2602.707953 +2603.107786 +2603.207320 +2603.207920 +2603.307886 +2603.407919 +2603.506121 +2603.506720 +2603.507786 +2603.508519 +2603.707686 +2603.708618 +2604.207286 +2604.307419 +2604.307819 +2604.407319 +2604.607752 +2605.008051 +2605.107418 +2605.107784 +2605.207285 +2605.207651 +2605.307884 +2605.406818 +2605.407917 +2605.607851 +2605.707884 +2605.807850 +2605.809116 +2605.906785 +2606.006751 +2606.107850 +2606.208782 +2606.307783 +2606.308083 +2606.308549 +2606.406618 +2606.407284 +2606.408849 +2606.507816 +2606.607883 +2606.617074 +2606.706751 +2611.716502 +2611.731121 +2611.746206 +2611.748204 +2611.755730 +2611.788797 +2611.835916 +2611.858094 +2611.890062 +2611.898287 +2611.898587 +2611.899886 +2611.916702 +2611.935716 +2611.938214 +2611.948470 +2611.959826 +2611.971281 +2611.996422 +2612.016369 +2612.035816 +2612.048570 +2612.097022 +2612.108677 +2612.119399 +2612.129356 +2612.145973 +2612.218300 +2612.256995 +2612.266019 +2612.268184 +2612.295423 +2612.306345 +2612.332219 +2612.345906 +2612.365919 +2612.388963 +2612.391826 +2612.423228 +2612.451400 +2612.465653 +2612.477441 +2612.486632 +2612.497887 +2612.509176 +2612.511540 +2612.523395 +2612.543674 +2612.573878 +2612.586398 +2612.609176 +2612.635849 +2612.651200 +2612.663788 +2612.672878 +2612.722362 +2612.789828 +2612.797487 +2612.832718 +2612.834517 +2612.861057 +2612.894523 +2612.913271 +2612.948869 +2612.958359 +2612.983567 +2612.996288 +2613.024193 +2613.062788 +2613.087697 +2613.100084 +2613.119831 +2613.143840 +2613.155928 +2613.194023 +2613.205212 +2613.215968 +2613.230254 +2613.231786 +2613.287363 +2613.349967 +2613.388229 +2613.401083 +2613.402382 +2613.425259 +2613.436581 +2613.468082 +2613.478472 +2613.540643 +2613.543340 +2613.566784 +2613.591825 +2613.628822 +2613.653797 +2613.676873 +2613.678305 +2613.698518 +2613.763354 +2613.775908 +2613.789594 +2613.802581 +2613.803280 +2613.816600 +2613.817166 +2613.855295 +2613.889627 +2613.919963 +2613.921828 +2613.931086 +2613.944839 +2613.960523 +2613.984732 +2613.998884 +2614.010739 +2614.011439 +2614.025558 +2614.050766 +2614.051265 +2614.076107 +2614.077639 +2614.198418 +2614.240876 +2614.253729 +2614.280536 +2614.281102 +2614.295055 +2614.308042 +2614.309340 +2614.343872 +2614.360689 +2614.411671 +2614.423360 +2614.425158 +2614.462720 +2614.551032 +2614.575507 +2614.615467 +2614.672310 +2614.686430 +2614.687762 +2614.702913 +2614.714268 +2614.756160 +2614.772410 +2614.809973 +2614.869679 +2614.909873 +2614.936579 +2614.994821 +2615.011371 +2615.023659 +2615.026423 +2615.050965 +2615.104711 +2615.105976 +2615.107009 +2615.174641 +2615.208940 +2615.220295 +2615.223092 +2615.264018 +2615.279136 +2615.321028 +2615.335780 +2615.361221 +2615.377971 +2615.428920 +2615.458956 +2615.474940 +2615.500115 +2615.516932 +2615.542140 +2615.554527 +2615.569446 +2615.596152 +2615.608640 +2615.620461 +2615.650798 +2615.693854 +2615.697284 +2615.708340 +2615.723059 +2615.738143 +2615.767814 +2615.858856 +2615.888460 +2615.928020 +2615.931750 +2615.944703 +2615.961253 +2615.998583 +2616.002712 +2616.086595 +2616.099149 +2616.109372 +2616.204177 +2616.219928 +2616.231117 +2616.291922 +2616.302046 +2616.365715 +2616.367247 +2616.382099 +2616.399015 +2616.410637 +2616.426421 +2616.471010 +2616.485029 +2616.497883 +2616.513101 +2616.545369 +2616.560687 +2616.605509 +2616.651929 +2616.654693 +2616.667780 +2616.671010 +2616.680467 +2619.754956 +2619.764513 +2621.153589 +2621.339237 +2626.706298 +2626.707996 +2627.993110 +2628.706828 +2628.707195 +2631.707791 +2635.096233 +2635.116479 +2635.134361 +2635.278717 +2636.906454 +2637.007619 +2637.208119 +2637.407952 +2637.707019 +2637.708052 +2638.007152 +2638.008018 +2638.206220 +2638.207718 +2638.906219 +2638.907817 +2639.107051 +2639.208183 +2639.708316 +2639.807383 +2640.207783 +2640.307749 +2640.607216 +2640.607416 +2640.807782 +2640.809147 +2640.907582 +2640.908182 +2641.008181 +2641.009114 +2641.109147 +2641.208115 +2641.308980 +2641.708114 +2643.678109 +2643.759061 +2643.767519 +2643.913107 +2644.814904 +2644.932387 +2646.711506 +2646.715635 +2646.722128 +2646.723460 +2646.730420 +2646.738013 +2646.774576 +2646.820297 +2646.820597 +2646.829854 +2646.843574 +2646.866617 +2646.902848 +2646.956361 +2646.977773 +2647.005811 +2647.039810 +2647.042841 +2647.053297 +2647.077806 +2647.088595 +2647.142408 +2647.164386 +2647.175641 +2647.186097 +2647.224492 +2647.243140 +2647.266683 +2647.338212 +2647.343140 +2647.349767 +2647.392491 +2647.458924 +2647.475175 +2647.530486 +2647.555694 +2647.577406 +2647.590259 +2647.601282 +2647.622361 +2647.644871 +2647.659557 +2647.696686 +2647.715168 +2647.737912 +2647.739976 +2647.762121 +2647.769080 +2647.769680 +2647.791858 +2647.802214 +2647.885297 +2647.894055 +2647.898318 +2647.905344 +2647.944671 +2647.953529 +2647.976539 +2647.988527 +2648.033649 +2648.048434 +2648.049034 +2648.074808 +2648.088228 +2648.140675 +2648.164385 +2648.173909 +2648.179836 +2648.201980 +2648.204411 +2648.225257 +2648.231284 +2648.278770 +2648.290225 +2648.307775 +2648.319996 +2648.342207 +2648.356526 +2648.366149 +2648.390791 +2648.416099 +2648.427854 +2648.430485 +2648.462320 +2648.513535 +2648.540941 +2648.555327 +2648.569812 +2648.570978 +2648.581501 +2648.583698 +2648.595187 +2648.625024 +2648.668147 +2648.704011 +2648.709939 +2648.736679 +2648.763685 +2648.779602 +2648.802946 +2648.806609 +2648.815633 +2648.831584 +2648.924224 +2648.924757 +2648.934214 +2648.935147 +2648.962186 +2648.972609 +2648.980335 +2649.014700 +2649.042173 +2649.056725 +2649.069978 +2649.071677 +2649.081700 +2649.095719 +2649.096385 +2649.107574 +2649.121560 +2649.219628 +2649.221293 +2649.246568 +2649.248999 +2649.275772 +2649.290624 +2649.303678 +2649.317297 +2649.331183 +2649.331883 +2649.395419 +2649.404110 +2649.406075 +2649.407241 +2649.478902 +2649.493021 +2649.494986 +2649.517330 +2649.548666 +2649.625389 +2649.628786 +2649.637777 +2649.640374 +2649.665515 +2649.666648 +2649.735279 +2649.748932 +2649.762652 +2649.780467 +2649.791556 +2649.807407 +2649.821892 +2649.824956 +2649.877803 +2649.890590 +2649.905575 +2649.918729 +2649.920394 +2649.945335 +2649.988459 +2649.999914 +2650.001979 +2650.032082 +2650.033980 +2650.061186 +2650.062185 +2650.088092 +2650.089658 +2650.101079 +2650.146201 +2650.149198 +2650.236777 +2650.249231 +2650.251362 +2650.277470 +2650.279967 +2650.290556 +2650.292921 +2650.294586 +2650.307773 +2650.323057 +2650.323890 +2650.334080 +2650.350130 +2650.388192 +2650.401379 +2650.421492 +2650.461952 +2650.506773 +2650.507073 +2650.508671 +2650.522691 +2650.549630 +2650.616963 +2650.630250 +2650.643636 +2650.645235 +2650.656224 +2650.656690 +2650.668445 +2650.695185 +2650.697782 +2650.722990 +2650.748898 +2650.767146 +2650.782564 +2650.812268 +2650.823956 +2650.852660 +2650.856323 +2650.885328 +2650.902610 +2650.933113 +2650.944702 +2650.961651 +2650.990955 +2651.030149 +2651.038008 +2651.043403 +2651.062484 +2651.063782 +2651.094618 +2651.096317 +2651.122524 +2651.126520 +2651.179800 +2651.183629 +2651.205640 +2651.220093 +2651.234545 +2651.236143 +2651.247632 +2651.288757 +2651.289690 +2651.344402 +2651.346733 +2651.375470 +2651.392453 +2651.402810 +2651.406073 +2651.432746 +2651.436709 +2651.448298 +2651.452194 +2651.475237 +2651.477235 +2651.537475 +2651.546999 +2651.561484 +2651.575770 +2651.588024 +2651.604308 +2651.605041 +2651.642969 +2651.655790 +2651.656922 +2651.674638 +2651.688490 +2651.701477 +2658.523582 +2661.704797 +2661.711457 +2661.711790 +2662.707127 +2662.711456 +2671.705220 +2671.706153 +2672.208117 +2672.308084 +2672.507251 +2672.507884 +2672.508117 +2672.606884 +2672.807317 +2672.807917 +2672.808250 +2672.908216 +2673.307317 +2673.708548 +2673.908581 +2674.008215 +2674.408248 +2674.607249 +2674.708015 +2675.108114 +2675.308280 +2675.408214 +2675.506915 +2675.508313 +2675.608213 +2675.908413 +2676.208279 +2681.211338 +2681.245870 +2681.314402 +2681.716532 +2681.737145 +2681.738044 +2681.746602 +2681.763219 +2681.784931 +2681.785763 +2681.813535 +2681.816965 +2681.837212 +2681.861121 +2681.884431 +2681.893955 +2681.905177 +2681.928387 +2682.018530 +2682.028453 +2682.040375 +2682.074141 +2682.077971 +2682.128920 +2682.186529 +2682.189625 +2682.190225 +2682.210738 +2682.220495 +2682.281134 +2682.302879 +2682.361254 +2682.378270 +2682.392123 +2682.441940 +2682.472875 +2682.497817 +2682.522059 +2682.537511 +2682.562053 +2682.571477 +2682.605076 +2682.607041 +2682.633048 +2682.642539 +2682.652962 +2682.684530 +2682.685862 +2682.709705 +2682.710837 +2682.733714 +2682.757357 +2682.848233 +2682.867247 +2682.892655 +2682.903777 +2682.916231 +2682.930351 +2682.944237 +2682.968546 +2682.984430 +2682.995252 +2683.022791 +2683.059954 +2683.082598 +2683.097383 +2683.109072 +2683.131649 +2683.148832 +2683.150231 +2683.187560 +2683.189125 +2683.189491 +2683.241006 +2683.251929 +2683.254992 +2683.265149 +2683.288592 +2683.314133 +2683.316564 +2683.328818 +2683.342538 +2683.351962 +2683.394320 +2683.433713 +2683.434946 +2683.499947 +2683.500613 +2683.551429 +2683.590923 +2683.623390 +2683.625422 +2683.653227 +2683.690690 +2683.716430 +2683.766980 +2683.830982 +2683.831482 +2683.857389 +2683.872374 +2683.898282 +2683.911002 +2683.975038 +2683.998848 +2684.000280 +2684.009470 +2684.013300 +2684.024422 +2684.106307 +2684.131015 +2684.143736 +2684.166713 +2684.167379 +2684.234245 +2684.236077 +2684.250729 +2684.251795 +2684.276570 +2684.277835 +2684.331515 +2684.363383 +2684.390223 +2684.463083 +2684.505674 +2684.545800 +2684.559487 +2684.560519 +2684.629949 +2684.640172 +2684.695217 +2684.719160 +2684.721857 +2684.731914 +2684.735610 +2684.735943 +2684.749130 +2684.772673 +2684.773406 +2684.794684 +2684.804275 +2684.806606 +2684.817462 +2684.910768 +2684.941271 +2684.969976 +2684.970675 +2684.985094 +2684.997082 +2685.054691 +2685.083329 +2685.098447 +2685.111268 +2685.112899 +2685.158087 +2685.183295 +2685.184095 +2685.185094 +2685.198480 +2685.210035 +2685.240172 +2685.251694 +2685.252460 +2685.324354 +2685.325120 +2685.335543 +2685.352360 +2685.378900 +2685.392286 +2685.392819 +2685.436142 +2685.465380 +2685.479665 +2685.492752 +2685.508070 +2685.554158 +2685.566412 +2685.576735 +2685.579033 +2685.583561 +2685.610301 +2685.638773 +2685.668576 +2685.680464 +2685.696249 +2685.708703 +2685.713132 +2685.724287 +2685.821057 +2685.835876 +2685.850361 +2685.890088 +2685.892486 +2685.916928 +2685.936009 +2685.946032 +2686.019325 +2686.036475 +2686.110867 +2686.125153 +2686.128516 +2686.186658 +2686.230547 +2686.236208 +2686.266345 +2686.275236 +2686.279132 +2686.311200 +2686.327483 +2686.338772 +2686.341370 +2686.342369 +2686.411699 +2686.443301 +2686.468009 +2686.486324 +2686.512831 +2686.522821 +2686.535808 +2686.579398 +2686.581196 +2686.596814 +2686.613464 +2686.628182 +2686.657986 +2686.659651 +2687.200043 +2687.216360 +2687.285957 +2687.370639 +2687.415628 +2687.447029 +2689.295845 +2697.706759 +2697.707425 +2698.706292 +2698.713485 +2699.602628 +2699.672858 +2699.706924 +2700.712351 +2701.061934 +2701.705956 +2701.712017 +2704.707851 +2705.460964 +2706.705885 +2706.712445 +2706.906883 +2707.007483 +2707.108282 +2707.208415 +2707.306750 +2707.308481 +2707.308981 +2707.508681 +2708.208714 +2708.308780 +2708.408214 +2708.408680 +2708.607814 +2708.808746 +2709.008213 +2709.507980 +2709.708879 +2710.308245 +2710.808977 +2710.908544 +2711.308944 +2711.408877 +2715.245403 +2715.270145 +2716.449864 +2716.740007 +2716.787093 +2716.830517 +2716.841073 +2716.862884 +2716.873374 +2716.896317 +2716.906607 +2716.935711 +2717.012901 +2717.022058 +2717.035511 +2717.057689 +2717.078468 +2717.116031 +2717.117096 +2717.128751 +2717.147832 +2717.186527 +2717.203177 +2717.221692 +2717.239207 +2717.272541 +2717.290689 +2717.333380 +2717.391955 +2717.406740 +2717.450529 +2717.464116 +2717.484662 +2717.497982 +2717.509903 +2717.537476 +2717.548065 +2717.571275 +2717.585761 +2717.608171 +2717.622757 +2717.679234 +2717.693653 +2717.718295 +2717.740173 +2717.756856 +2717.818927 +2717.819227 +2717.842137 +2717.855357 +2717.855724 +2717.901944 +2717.915664 +2717.935677 +2717.948597 +2717.964481 +2717.973239 +2717.977768 +2718.002110 +2718.015697 +2718.041704 +2718.065813 +2718.070875 +2718.104275 +2718.115097 +2718.135277 +2718.137741 +2718.166080 +2718.175737 +2718.211434 +2718.212467 +2718.222856 +2718.236010 +2718.245467 +2718.289190 +2718.300046 +2718.354791 +2718.355590 +2718.370675 +2718.380265 +2718.391088 +2718.394951 +2718.417095 +2718.420425 +2718.449230 +2718.473638 +2718.488757 +2718.499013 +2718.539239 +2718.565380 +2718.568477 +2718.607771 +2718.653259 +2718.670974 +2718.681231 +2718.714597 +2718.768044 +2718.793318 +2718.820391 +2718.823322 +2718.834244 +2718.873938 +2718.874171 +2718.939539 +2718.952159 +2718.966545 +2718.977534 +2719.038806 +2719.068610 +2719.094417 +2719.107138 +2719.118093 +2719.130980 +2719.162815 +2719.193285 +2719.229482 +2719.247397 +2719.258852 +2719.268343 +2719.273504 +2719.284926 +2719.296715 +2719.366178 +2719.391220 +2719.392818 +2719.423221 +2719.423854 +2719.450161 +2719.493284 +2719.495249 +2719.546198 +2719.562582 +2719.590720 +2719.604573 +2719.616428 +2719.632712 +2719.705072 +2719.708003 +2719.722055 +2719.752525 +2719.778665 +2719.835142 +2719.861383 +2719.874902 +2719.892751 +2719.956987 +2719.957953 +2720.002408 +2720.016627 +2720.059451 +2720.071439 +2720.084826 +2720.085525 +2720.095382 +2720.135009 +2720.222421 +2720.227749 +2720.235442 +2720.237240 +2720.251525 +2720.254822 +2720.263747 +2720.280230 +2720.296014 +2720.297213 +2720.356454 +2720.384825 +2720.458352 +2720.468275 +2720.470473 +2720.472604 +2720.486057 +2720.499610 +2720.501575 +2720.515062 +2720.534009 +2720.603606 +2720.607436 +2720.609334 +2720.618958 +2720.621888 +2720.637839 +2720.665744 +2720.697079 +2720.710799 +2720.740336 +2720.743766 +2720.753856 +2720.759783 +2720.771938 +2720.798311 +2720.801275 +2720.822454 +2720.837239 +2720.854389 +2720.866843 +2720.880562 +2720.892584 +2720.894282 +2720.896846 +2720.941868 +2720.992983 +2720.994415 +2721.035241 +2721.049660 +2721.070805 +2721.089254 +2721.113396 +2721.115627 +2721.143965 +2721.173602 +2721.175367 +2721.203905 +2721.204771 +2721.206936 +2721.249094 +2721.261015 +2721.263945 +2721.264412 +2721.277165 +2721.300009 +2721.363679 +2721.508967 +2721.545330 +2721.642034 +2721.644797 +2721.664877 +2721.668041 +2723.999540 +2730.600766 +2730.749850 +2730.818848 +2730.844555 +2731.706126 +2731.712520 +2732.706092 +2732.706358 +2732.707057 +2732.712086 +2732.712519 +2733.713284 +2735.132496 +2735.170025 +2736.712981 +2739.947943 +2741.806649 +2741.807115 +2742.207947 +2742.408513 +2742.607381 +2742.906981 +2742.908512 +2743.107513 +2743.108546 +2743.208679 +2743.407180 +2743.408545 +2743.508479 +2744.407046 +2744.907079 +2745.007012 +2745.307078 +2745.308310 +2745.407011 +2745.707477 +2745.808443 +2746.107044 +2746.307876 +2746.308442 +2746.408576 +2746.507243 +2746.508376 +2746.607476 +2746.708409 +2751.706339 +2751.716562 +2751.730049 +2751.731814 +2751.740239 +2751.740671 +2751.750728 +2751.760285 +2751.779000 +2751.812333 +2751.848064 +2751.857654 +2751.860352 +2751.871008 +2751.892120 +2751.892420 +2751.922256 +2751.922989 +2751.944634 +2751.957055 +2751.957421 +2751.991820 +2752.005673 +2752.026918 +2752.078433 +2752.112832 +2752.113765 +2752.175170 +2752.211334 +2752.261916 +2752.274137 +2752.274937 +2752.319725 +2752.335143 +2752.348263 +2752.355722 +2752.370874 +2752.436575 +2752.473105 +2752.474270 +2752.497381 +2752.498413 +2752.513265 +2752.524953 +2752.535343 +2752.546665 +2752.557387 +2752.567810 +2752.617627 +2752.625952 +2752.656954 +2752.670374 +2752.683261 +2752.693684 +2752.696182 +2752.719458 +2752.730614 +2752.743801 +2752.759185 +2752.806704 +2752.865545 +2752.867543 +2752.880897 +2752.917893 +2752.931646 +2752.933511 +2752.945599 +2752.970740 +2752.994350 +2753.008402 +2753.020957 +2753.021756 +2753.034043 +2753.042502 +2753.044200 +2753.056954 +2753.095815 +2753.160550 +2753.189554 +2753.191786 +2753.231346 +2753.239837 +2753.254889 +2753.265778 +2753.291119 +2753.319624 +2753.331013 +2753.348162 +2753.356088 +2753.357386 +2753.400910 +2753.422854 +2753.434176 +2753.446764 +2753.457586 +2753.506104 +2753.527882 +2753.539804 +2753.546997 +2753.547596 +2753.583860 +2753.597313 +2753.611965 +2753.651792 +2753.678731 +2753.679198 +2753.693983 +2753.704206 +2753.704705 +2753.706604 +2753.727383 +2753.743234 +2753.751159 +2753.761715 +2753.775168 +2753.812731 +2753.841602 +2753.851558 +2753.868675 +2753.880896 +2753.881895 +2753.895881 +2753.910033 +2753.946530 +2753.948628 +2753.949893 +2753.980263 +2754.001009 +2754.015095 +2754.029547 +2754.030646 +2754.042867 +2754.056154 +2754.064445 +2754.074602 +2754.090686 +2754.128814 +2754.141568 +2754.171638 +2754.184159 +2754.185258 +2754.200143 +2754.253290 +2754.307735 +2754.320156 +2754.362580 +2754.374435 +2754.392650 +2754.457285 +2754.472837 +2754.542833 +2754.543932 +2754.559217 +2754.571937 +2754.629413 +2754.659217 +2754.683559 +2754.742034 +2754.755454 +2754.796146 +2754.825350 +2754.841401 +2754.854554 +2754.882826 +2754.925550 +2754.940702 +2754.970039 +2754.985756 +2754.995746 +2755.011797 +2755.045663 +2755.055853 +2755.056253 +2755.057951 +2755.085656 +2755.089086 +2755.100575 +2755.103938 +2755.118923 +2755.146928 +2755.161381 +2755.176932 +2755.221187 +2755.248593 +2755.252356 +2755.267141 +2755.280761 +2755.283891 +2755.324484 +2755.340102 +2755.365177 +2755.375966 +2755.392949 +2755.397344 +2755.411663 +2755.421986 +2755.472003 +2755.498243 +2755.529779 +2755.533009 +2755.534807 +2755.545097 +2755.562046 +2755.590784 +2755.604337 +2755.638903 +2755.682226 +2755.725749 +2755.726049 +2755.758183 +2755.772336 +2755.786921 +2755.788819 +2755.802639 +2755.817724 +2755.850990 +2755.863345 +2755.867307 +2755.894480 +2755.927114 +2755.941633 +2755.985256 +2755.986655 +2756.015093 +2756.031809 +2756.094180 +2756.095479 +2756.121653 +2756.134240 +2756.149325 +2756.194513 +2756.208199 +2756.226814 +2756.227513 +2756.271503 +2756.314193 +2756.374566 +2756.376098 +2756.404037 +2756.415758 +2756.430211 +2756.462512 +2756.505302 +2756.522052 +2756.523650 +2756.538169 +2756.539634 +2756.606201 +2756.618189 +2766.706757 +2768.712016 +2769.706987 +2770.710150 +2771.706019 +2776.710310 +2777.607046 +2777.707079 +2778.007145 +2778.107212 +2778.307411 +2778.407212 +2778.706179 +2779.106745 +2779.206645 +2779.307144 +2779.806378 +2779.905945 +2779.908142 +2780.106677 +2780.307110 +2780.407309 +2780.607043 +2780.807242 +2781.007176 +2781.305544 +2781.406176 +2781.506076 +2786.715495 +2786.720557 +2786.735542 +2786.759085 +2786.809334 +2786.818625 +2786.820090 +2786.842201 +2786.869308 +2786.903473 +2786.903873 +2786.914962 +2786.937839 +2786.961116 +2786.988022 +2787.049061 +2787.060383 +2787.072138 +2787.081196 +2787.091452 +2787.104406 +2787.130246 +2787.141568 +2787.161449 +2787.162181 +2787.190053 +2787.226217 +2787.236407 +2787.243500 +2787.253157 +2787.265644 +2787.273603 +2787.292018 +2787.356686 +2787.358585 +2787.369241 +2787.370373 +2787.382361 +2787.402507 +2787.415994 +2787.437772 +2787.473603 +2787.520423 +2787.522620 +2787.531811 +2787.542734 +2787.555687 +2787.565344 +2787.587855 +2787.598478 +2787.601575 +2787.615061 +2787.627682 +2787.660049 +2787.665411 +2787.679663 +2787.690153 +2787.691551 +2787.704039 +2787.740436 +2787.754288 +2787.789453 +2787.816160 +2787.816693 +2787.853156 +2787.876233 +2787.893116 +2787.919823 +2787.952823 +2787.955554 +2787.956153 +2787.977332 +2787.979097 +2787.991085 +2788.010166 +2788.010499 +2788.039137 +2788.073968 +2788.085357 +2788.119523 +2788.150792 +2788.160349 +2788.162047 +2788.174501 +2788.193915 +2788.197312 +2788.205237 +2788.228081 +2788.255453 +2788.267275 +2788.303206 +2788.314994 +2788.317724 +2788.341667 +2788.353422 +2788.366709 +2788.393515 +2788.406436 +2788.419556 +2788.458250 +2788.458583 +2788.459116 +2788.602639 +2788.616492 +2788.618024 +2788.642732 +2788.642966 +2788.667608 +2788.730878 +2788.760781 +2788.820754 +2788.848826 +2788.861114 +2788.913794 +2788.937870 +2788.955986 +2788.956618 +2788.967008 +2788.993548 +2788.995146 +2789.006801 +2789.047061 +2789.060115 +2789.072469 +2789.086721 +2789.113628 +2789.113794 +2789.114760 +2789.134773 +2789.140834 +2789.151390 +2789.233042 +2789.246961 +2789.258782 +2789.270904 +2789.271869 +2789.298310 +2789.322485 +2789.391217 +2789.418356 +2789.448060 +2789.460114 +2789.515259 +2789.528379 +2789.530444 +2789.541599 +2789.556418 +2789.557017 +2789.583224 +2789.586321 +2789.597410 +2789.600440 +2789.611030 +2789.627880 +2789.653254 +2789.655385 +2789.669938 +2789.683224 +2789.695112 +2789.709798 +2789.724849 +2789.727613 +2789.769038 +2789.866940 +2789.878296 +2789.879694 +2789.894280 +2789.903604 +2789.921586 +2789.931409 +2789.948592 +2789.950423 +2789.959015 +2789.962212 +2790.035438 +2790.046860 +2790.050290 +2790.106201 +2790.116524 +2790.117589 +2790.130377 +2790.132907 +2790.161146 +2790.178162 +2790.214792 +2790.234706 +2790.246094 +2790.263876 +2790.264642 +2790.293214 +2790.339334 +2790.381159 +2790.396177 +2790.396843 +2790.399441 +2790.424016 +2790.427646 +2790.494113 +2790.508898 +2790.526247 +2790.553653 +2790.567373 +2790.573533 +2790.584622 +2790.587852 +2790.615691 +2790.655984 +2790.657482 +2790.672634 +2790.674099 +2790.704236 +2790.714925 +2790.719587 +2790.734439 +2790.787519 +2790.828644 +2790.843629 +2790.857116 +2790.868538 +2790.878894 +2790.883556 +2790.907465 +2790.951421 +2790.962444 +2790.967372 +2790.980093 +2791.008464 +2791.024015 +2791.046326 +2791.061844 +2791.105734 +2791.121018 +2791.125414 +2791.151954 +2791.155750 +2791.212061 +2791.241897 +2791.338800 +2791.406133 +2791.418953 +2791.423249 +2791.433705 +2791.449490 +2791.533372 +2791.561311 +2791.577828 +2791.579260 +2791.636502 +2791.638500 +2791.648124 +2791.673266 +2791.678027 +2795.071198 +2795.119483 +2795.183019 +2801.705723 +2802.705123 +2802.705589 +2802.706721 +2805.705752 +2805.713145 +2806.706118 +2806.710946 +2811.705846 +2812.107111 +2812.307577 +2812.507277 +2812.511040 +2812.606411 +2812.708476 +2812.807244 +2812.907344 +2812.908376 +2813.006911 +2813.207277 +2813.307310 +2813.606710 +2813.807043 +2813.907676 +2814.306543 +2814.506476 +2814.607675 +2814.807508 +2814.907541 +2815.107574 +2815.407041 +2815.707407 +2816.006475 +2816.307573 +2816.407606 +2816.607606 +2821.704804 +2821.766309 +2821.798477 +2821.839669 +2821.851058 +2821.857851 +2821.869139 +2821.893682 +2821.905070 +2821.906003 +2821.924151 +2821.945996 +2821.946329 +2821.985323 +2821.988620 +2822.020821 +2822.041500 +2822.073302 +2822.100341 +2822.113528 +2822.137371 +2822.149592 +2822.164411 +2822.188253 +2822.200308 +2822.200774 +2822.211230 +2822.234907 +2822.235673 +2822.258350 +2822.317724 +2822.329845 +2822.376032 +2822.388220 +2822.399375 +2822.458616 +2822.487154 +2822.501473 +2822.524483 +2822.553887 +2822.574833 +2822.624450 +2822.635139 +2822.660314 +2822.694014 +2822.717757 +2822.743331 +2822.759015 +2822.807400 +2822.821186 +2822.856185 +2822.856584 +2822.869871 +2822.881093 +2822.918456 +2822.941100 +2822.949558 +2822.981959 +2823.003038 +2823.014593 +2823.027480 +2823.041266 +2823.064110 +2823.066075 +2823.095645 +2823.099275 +2823.126048 +2823.139268 +2823.191183 +2823.201373 +2823.218023 +2823.218855 +2823.317090 +2823.406267 +2823.446627 +2823.458981 +2823.473300 +2823.511362 +2823.522185 +2823.524782 +2823.534839 +2823.547027 +2823.548825 +2823.571502 +2823.602504 +2823.638235 +2823.669304 +2823.676231 +2823.690250 +2823.692847 +2823.726447 +2823.753487 +2823.767872 +2823.814925 +2823.864775 +2823.868105 +2823.971502 +2823.995644 +2824.007899 +2824.032174 +2824.052587 +2824.077729 +2824.103103 +2824.115557 +2824.127745 +2824.166240 +2824.230343 +2824.242097 +2824.243529 +2824.272001 +2824.273333 +2824.285121 +2824.307266 +2824.309363 +2824.321351 +2824.332773 +2824.368404 +2824.422817 +2824.424348 +2824.459513 +2824.493945 +2824.532540 +2824.560479 +2824.588351 +2824.598308 +2824.612793 +2824.614025 +2824.640998 +2824.669503 +2824.682623 +2824.684721 +2824.693645 +2824.705400 +2824.759546 +2824.787019 +2824.788184 +2824.800538 +2824.815657 +2824.828111 +2824.843662 +2824.859513 +2824.870668 +2824.910062 +2824.927045 +2824.927978 +2824.955550 +2824.969369 +2824.985420 +2825.014025 +2825.039366 +2825.041098 +2825.041797 +2825.056083 +2825.071800 +2825.142696 +2825.168503 +2825.225913 +2825.228077 +2825.265739 +2825.324914 +2825.336236 +2825.338733 +2825.427145 +2825.427744 +2825.434737 +2825.463408 +2825.465373 +2825.480092 +2825.503801 +2825.516422 +2825.533172 +2825.557614 +2825.609762 +2825.624614 +2825.628077 +2825.637001 +2825.667537 +2825.683022 +2825.698906 +2825.700637 +2825.714457 +2825.726645 +2825.741563 +2825.743361 +2825.771000 +2825.774264 +2825.786951 +2825.801503 +2825.803135 +2825.803834 +2825.833804 +2825.860178 +2825.894743 +2825.904300 +2825.919352 +2825.935902 +2825.938266 +2825.946558 +2825.962309 +2825.989415 +2826.018752 +2826.020151 +2826.045859 +2826.047757 +2826.049089 +2826.061510 +2826.088849 +2826.105166 +2826.136235 +2826.209195 +2826.222515 +2826.383254 +2826.412458 +2826.415522 +2826.425445 +2826.428542 +2826.458246 +2826.511659 +2826.513291 +2826.524746 +2826.555448 +2826.568635 +2826.578592 +2826.580523 +2826.594776 +2826.596074 +2826.641462 +2826.655948 +2826.686717 +2826.699871 +2826.703334 +2832.224540 +2833.493104 +2833.523607 +2833.649048 +2834.028834 +2834.890072 +2835.420475 +2835.431930 +2835.884577 +2836.282312 +2836.784809 +2836.878981 +2836.884809 +2836.885841 +2838.623169 +2839.885805 +2844.885567 +2844.885900 +2845.081071 +2845.086565 +2845.181271 +2845.287265 +2845.382103 +2845.581470 +2845.582236 +2845.682203 +2845.888496 +2846.087896 +2846.388229 +2847.088029 +2847.182134 +2849.882198 +2854.396879 +2854.881094 +2854.890951 +2854.891351 +2854.930245 +2854.948161 +2854.958783 +2854.998177 +2854.999143 +2855.007235 +2855.049393 +2855.063079 +2855.084591 +2855.095946 +2855.127181 +2855.163945 +2855.184557 +2855.195713 +2855.197711 +2855.219589 +2855.277997 +2855.280295 +2855.289319 +2855.312796 +2855.313895 +2855.337138 +2855.358117 +2855.372869 +2855.417824 +2855.440534 +2855.464577 +2855.487221 +2855.498177 +2855.509033 +2855.545496 +2855.555786 +2855.568373 +2855.623918 +2855.629878 +2855.643032 +2855.661580 +2855.706768 +2855.715160 +2855.757118 +2855.769372 +2855.814893 +2855.836338 +2855.855186 +2855.867607 +2855.879362 +2855.889851 +2855.896911 +2855.916491 +2855.920454 +2855.949592 +2855.971103 +2855.988419 +2856.015159 +2856.021020 +2856.036937 +2856.038769 +2856.039368 +2856.082159 +2856.088819 +2856.098709 +2856.112562 +2856.123850 +2856.165609 +2856.178795 +2856.190417 +2856.215592 +2856.217290 +2856.231210 +2856.240367 +2856.276065 +2856.289751 +2856.303138 +2856.305369 +2856.316291 +2856.318089 +2856.340367 +2856.371070 +2856.418689 +2856.485022 +2856.485788 +2856.506501 +2856.566541 +2856.569404 +2856.595079 +2856.620886 +2856.634040 +2856.698509 +2856.712328 +2856.726980 +2856.737170 +2856.738102 +2856.739468 +2856.790317 +2856.804103 +2856.805901 +2856.843264 +2856.845029 +2856.877596 +2856.897576 +2856.920553 +2856.947659 +2856.965674 +2856.966673 +2856.975298 +2856.986787 +2857.006534 +2857.009397 +2857.018788 +2857.031542 +2857.056017 +2857.082890 +2857.150423 +2857.177795 +2857.188451 +2857.204802 +2857.240300 +2857.254319 +2857.255684 +2857.295677 +2857.306500 +2857.347392 +2857.373067 +2857.419720 +2857.477695 +2857.515857 +2857.518721 +2857.530542 +2857.547159 +2857.559180 +2857.574065 +2857.587119 +2857.616057 +2857.630143 +2857.644495 +2857.671168 +2857.672367 +2857.698241 +2857.729643 +2857.741764 +2857.753453 +2857.754651 +2857.767672 +2857.805101 +2857.809030 +2857.832240 +2857.845494 +2857.858847 +2857.872933 +2857.879060 +2857.905833 +2857.968404 +2857.980958 +2858.007598 +2858.010162 +2858.026712 +2858.057648 +2858.071834 +2858.075963 +2858.085587 +2858.087218 +2858.090182 +2858.101438 +2858.103436 +2858.113259 +2858.114258 +2858.115091 +2858.130742 +2858.142896 +2858.152720 +2858.179559 +2858.246293 +2858.260778 +2858.268903 +2858.284421 +2858.286086 +2858.327545 +2858.329476 +2858.331041 +2858.331840 +2858.343462 +2858.376695 +2858.385653 +2858.396542 +2858.445493 +2858.475163 +2858.476495 +2858.486852 +2858.502536 +2858.515623 +2858.516156 +2858.517987 +2858.531674 +2858.547724 +2858.558447 +2858.560978 +2858.576562 +2858.588950 +2858.599539 +2858.628910 +2858.654750 +2858.678793 +2858.692413 +2858.764540 +2858.791314 +2858.847790 +2858.860678 +2858.873898 +2858.924680 +2858.937501 +2858.944527 +2859.010960 +2859.025479 +2859.067903 +2859.111760 +2859.189648 +2859.217087 +2859.227044 +2859.242029 +2859.273498 +2859.291779 +2859.335902 +2859.393211 +2859.415822 +2859.453517 +2859.554583 +2859.599904 +2859.674896 +2859.736900 +2869.881279 +2869.886707 +2872.171786 +2872.212646 +2872.250807 +2872.364693 +2872.448110 +2873.246244 +2873.886470 +2873.887369 +2875.284837 +2875.298989 +2877.539746 +2877.553832 +2877.642710 +2879.882435 +2880.084233 +2881.084698 +2881.184798 +2881.784298 +2882.384264 +2882.384996 +2883.384995 +2883.685128 +2883.885128 +2884.485460 +2884.584628 +2884.785493 +2889.895279 +2889.924549 +2889.978162 +2890.006967 +2890.016257 +2890.039268 +2890.083890 +2890.114792 +2890.123750 +2890.145695 +2890.230676 +2890.231542 +2890.252654 +2890.273267 +2890.297376 +2890.312294 +2890.344928 +2890.345428 +2890.374332 +2890.408665 +2890.430709 +2890.431175 +2890.465075 +2890.472101 +2890.495111 +2890.555751 +2890.579760 +2890.580593 +2890.603669 +2890.635438 +2890.711129 +2890.723583 +2890.734172 +2890.760712 +2890.810096 +2890.820686 +2890.899074 +2890.910396 +2890.921718 +2890.922717 +2890.932207 +2890.962177 +2890.974532 +2891.007565 +2891.030908 +2891.040865 +2891.054119 +2891.080659 +2891.082190 +2891.104002 +2891.116523 +2891.194178 +2891.221151 +2891.268571 +2891.298907 +2891.321950 +2891.383522 +2891.406066 +2891.431607 +2891.528910 +2891.542863 +2891.554751 +2891.582856 +2891.605999 +2891.678161 +2891.707531 +2891.721850 +2891.729809 +2891.743395 +2891.755816 +2891.768870 +2891.836569 +2891.889616 +2891.904601 +2891.977328 +2891.978194 +2892.025513 +2892.068703 +2892.107697 +2892.109229 +2892.120651 +2892.122349 +2892.239266 +2892.239765 +2892.249988 +2892.303401 +2892.305200 +2892.319485 +2892.403301 +2892.413824 +2892.414590 +2892.425479 +2892.479925 +2892.519818 +2892.520218 +2892.556215 +2892.556981 +2892.569635 +2892.570434 +2892.580624 +2892.605299 +2892.702102 +2892.704733 +2892.718552 +2892.744094 +2892.770401 +2892.782455 +2892.797440 +2892.881523 +2892.896974 +2892.910960 +2892.912458 +2892.922582 +2892.937666 +2892.940597 +2892.951453 +2892.953617 +2892.963041 +2892.966904 +2892.993910 +2893.018386 +2893.022382 +2893.111026 +2893.118386 +2893.119418 +2893.185518 +2893.201602 +2893.215089 +2893.224613 +2893.236834 +2893.272764 +2893.277460 +2893.313956 +2893.316521 +2893.342861 +2893.345092 +2893.369567 +2893.386284 +2893.434436 +2893.450187 +2893.464006 +2893.474729 +2893.503766 +2893.521748 +2893.573896 +2893.605598 +2893.616554 +2893.644492 +2893.671132 +2893.716087 +2893.730606 +2893.759943 +2893.830539 +2893.857346 +2893.888581 +2893.905165 +2893.917019 +2893.971931 +2894.044459 +2894.075927 +2894.087915 +2894.128208 +2894.416453 +2894.522180 +2894.707362 +2894.726143 +2894.751517 +2896.955678 +2899.842921 +2900.624539 +2903.530063 +2903.673919 +2907.887901 +2914.893089 +2915.098883 +2915.106875 +2915.588293 +2915.588593 +2915.988293 +2916.388326 +2916.587626 +2916.787726 +2917.197183 +2917.288291 +2917.788224 +2917.888357 +2918.487891 +2919.387956 +2922.658483 +2924.897641 +2924.904168 +2924.905267 +2924.930641 +2924.931507 +2924.969602 +2924.988117 +2924.999106 +2925.009862 +2925.010362 +2925.060212 +2925.060678 +2925.082390 +2925.094810 +2925.115956 +2925.148523 +2925.170068 +2925.200804 +2925.254850 +2925.257714 +2925.276828 +2925.300604 +2925.301870 +2925.354917 +2925.381424 +2925.393678 +2925.413025 +2925.430208 +2925.442329 +2925.468203 +2925.475330 +2925.508163 +2925.523481 +2925.553485 +2925.554850 +2925.578992 +2925.611427 +2925.630341 +2925.656115 +2925.676195 +2925.711859 +2925.719985 +2925.734737 +2925.736635 +2925.758513 +2925.769801 +2925.781323 +2925.792079 +2925.801736 +2925.822316 +2925.823281 +2925.884886 +2925.905865 +2925.907264 +2925.933105 +2925.946591 +2925.949422 +2925.995209 +2926.005732 +2926.007930 +2926.020317 +2926.032039 +2926.059778 +2926.144493 +2926.197140 +2926.205266 +2926.267070 +2926.278958 +2926.347723 +2926.347956 +2926.374996 +2926.400670 +2926.403467 +2926.452451 +2926.464406 +2926.476594 +2926.498306 +2926.514456 +2926.565538 +2926.577227 +2926.587217 +2926.639398 +2926.652551 +2926.654183 +2926.678259 +2926.679424 +2926.701103 +2926.713823 +2926.722315 +2926.735168 +2926.746690 +2926.769767 +2926.771465 +2926.783054 +2926.799138 +2926.824013 +2926.848189 +2926.849820 +2926.889014 +2926.927742 +2926.940396 +2927.018019 +2927.030673 +2927.031772 +2927.040063 +2927.056880 +2927.112524 +2927.137233 +2927.149520 +2927.177825 +2927.192178 +2927.218152 +2927.219650 +2927.230672 +2927.257179 +2927.273130 +2927.284485 +2927.323946 +2927.364538 +2927.366670 +2927.376826 +2927.380090 +2927.392344 +2927.404798 +2927.406430 +2927.418251 +2927.432870 +2927.433270 +2927.469367 +2927.480489 +2927.482321 +2927.535201 +2927.547156 +2927.547855 +2927.558145 +2927.604731 +2927.614921 +2927.669134 +2927.694641 +2927.697006 +2927.708761 +2927.710759 +2927.723845 +2927.737898 +2927.764971 +2927.802567 +2927.815787 +2927.832403 +2927.870665 +2927.886583 +2927.912390 +2927.914155 +2927.952084 +2927.966469 +2927.976060 +2927.980089 +2927.991844 +2928.003665 +2928.013888 +2928.015920 +2928.041361 +2928.059243 +2928.107595 +2928.133269 +2928.135766 +2928.146123 +2928.166103 +2928.201967 +2928.214421 +2928.225410 +2928.248354 +2928.291710 +2928.316985 +2928.330971 +2928.360308 +2928.383552 +2928.399369 +2928.413022 +2928.415819 +2928.428174 +2928.468800 +2928.512290 +2928.522812 +2928.523645 +2928.524577 +2928.562106 +2928.577824 +2928.590911 +2928.649985 +2928.732636 +2928.802599 +2928.997237 +2928.999768 +2929.112222 +2929.155179 +2929.193308 +2929.246888 +2929.282718 +2939.890833 +2940.887469 +2940.893429 +2942.893361 +2943.893227 +2944.893392 +2949.890590 +2949.891422 +2949.898315 +2949.987892 +2950.389590 +2951.388557 +2951.688124 +2951.688557 +2952.388390 +2952.488423 +2953.494549 +2954.288454 +2959.896607 +2959.910060 +2959.926544 +2959.962907 +2959.991212 +2960.040297 +2960.053683 +2960.054183 +2960.072698 +2960.118918 +2960.137433 +2960.173164 +2960.175461 +2960.187116 +2960.221482 +2960.221948 +2960.230107 +2960.251485 +2960.272930 +2960.282454 +2960.302734 +2960.320583 +2960.321249 +2960.332837 +2960.341628 +2960.342061 +2960.373496 +2960.383187 +2960.394675 +2960.437166 +2960.445691 +2960.464106 +2960.466803 +2960.474029 +2960.488115 +2960.508694 +2960.509161 +2960.543393 +2960.556813 +2960.578858 +2960.592044 +2960.629474 +2960.640130 +2960.654182 +2960.666337 +2960.679657 +2960.699970 +2960.700636 +2960.744825 +2960.747555 +2960.756946 +2960.780722 +2960.793310 +2960.804299 +2960.813290 +2960.817452 +2960.818151 +2960.831371 +2960.892777 +2960.903433 +2960.915720 +2960.952250 +2960.974795 +2960.985650 +2961.053882 +2961.066037 +2961.086982 +2961.097871 +2961.155480 +2961.158411 +2961.201667 +2961.214421 +2961.226476 +2961.252084 +2961.278590 +2961.325477 +2961.363073 +2961.400435 +2961.411591 +2961.498970 +2961.570032 +2961.582786 +2961.658244 +2961.682220 +2961.693642 +2961.701933 +2961.730771 +2961.741760 +2961.754214 +2961.754814 +2961.780854 +2961.829572 +2961.830638 +2961.844391 +2961.866535 +2961.887980 +2961.943558 +2961.990977 +2961.992875 +2961.993708 +2962.005629 +2962.015719 +2962.028074 +2962.038896 +2962.041560 +2962.041993 +2962.054880 +2962.087015 +2962.089545 +2962.100668 +2962.113988 +2962.138330 +2962.152582 +2962.173495 +2962.210824 +2962.221247 +2962.224177 +2962.235066 +2962.243391 +2962.243957 +2962.246255 +2962.247787 +2962.255979 +2962.303698 +2962.314587 +2962.328906 +2962.349752 +2962.352416 +2962.385982 +2962.391177 +2962.427840 +2962.455845 +2962.466435 +2962.477324 +2962.479322 +2962.510724 +2962.534400 +2962.604397 +2962.620847 +2962.656544 +2962.658642 +2962.667966 +2962.682785 +2962.684750 +2962.685515 +2962.698369 +2962.787680 +2962.830104 +2962.845022 +2962.869798 +2962.879788 +2962.904197 +2962.914952 +2962.916351 +2962.918282 +2962.953414 +2962.967733 +2962.979588 +2963.016684 +2963.039295 +2963.058309 +2963.068499 +2963.094806 +2963.109957 +2963.120280 +2963.136697 +2963.160507 +2963.189844 +2963.216018 +2963.224110 +2963.249617 +2963.271362 +2963.272828 +2963.273494 +2963.297569 +2963.298868 +2963.307493 +2963.308292 +2963.320413 +2963.322544 +2963.336830 +2963.377656 +2963.434333 +2963.461206 +2963.515551 +2963.593273 +2963.608425 +2963.613253 +2963.704828 +2963.731668 +2963.776357 +2963.860040 +2963.886547 +2963.975724 +2963.976157 +2964.006460 +2964.030902 +2964.126373 +2964.169730 +2964.196436 +2964.337961 +2974.033090 +2974.125231 +2974.152737 +2974.651371 +2974.761194 +2974.890665 +2974.891164 +2974.891497 +2975.140848 +2975.885902 +2975.891663 +2976.890230 +2977.714638 +2977.728824 +2977.886133 +2978.125427 +2978.891160 +2984.229017 +2984.736909 +2984.769909 +2984.890288 +2984.986059 +2984.986925 +2984.990821 +2985.086459 +2985.088190 +2985.186625 +2985.287458 +2985.393385 +2985.487524 +2985.687990 +2985.987357 +2986.387556 +2986.487590 +2987.387122 +2987.687655 +2988.286289 +2988.487554 +2988.887587 +2988.987520 +2989.187554 +2989.787786 +2992.959012 +2993.642994 +2994.888946 +2994.908127 +2994.915786 +2994.923745 +2995.029606 +2995.082153 +2995.126942 +2995.138896 +2995.163272 +2995.174627 +2995.185683 +2995.197404 +2995.209925 +2995.229239 +2995.258643 +2995.283152 +2995.283452 +2995.295440 +2995.337464 +2995.406928 +2995.453282 +2995.455379 +2995.476625 +2995.486815 +2995.502932 +2995.537064 +2995.539229 +2995.551583 +2995.559908 +2995.563738 +2995.611390 +2995.670930 +2995.673794 +2995.683751 +2995.702399 +2995.716418 +2995.719349 +2995.729938 +2995.743857 +2995.755546 +2995.767700 +2995.780188 +2995.800367 +2995.802898 +2995.816252 +2995.829005 +2995.841493 +2995.851649 +2995.869998 +2995.879222 +2995.900401 +2995.912156 +2995.946521 +2995.981619 +2996.030371 +2996.041160 +2996.085116 +2996.099601 +2996.123411 +2996.162505 +2996.174659 +2996.185049 +2996.186980 +2996.199934 +2996.222445 +2996.230970 +2996.241259 +2996.276224 +2996.305628 +2996.307693 +2996.319082 +2996.347586 +2996.349718 +2996.385049 +2996.423044 +2996.447220 +2996.499068 +2996.510190 +2996.511789 +2996.536963 +2996.537663 +2996.548086 +2996.576724 +2996.587113 +2996.588545 +2996.615218 +2996.626441 +2996.648385 +2996.675092 +2996.688745 +2996.699434 +2996.712754 +2996.776057 +2996.778289 +2996.787379 +2996.798535 +2996.835531 +2996.882318 +2996.896037 +2996.930370 +2996.999434 +2997.008225 +2997.050882 +2997.051482 +2997.077089 +2997.114785 +2997.124942 +2997.153147 +2997.165734 +2997.174858 +2997.187645 +2997.202031 +2997.204062 +2997.226973 +2997.243689 +2997.254312 +2997.309657 +2997.311155 +2997.344855 +2997.365967 +2997.406360 +2997.418081 +2997.420779 +2997.447519 +2997.456709 +2997.526273 +2997.538028 +2997.563769 +2997.575291 +2997.577389 +2997.591075 +2997.659273 +2997.723842 +2997.739793 +2997.759773 +2997.785647 +2997.793905 +2997.818947 +2997.820878 +2997.832666 +2997.848184 +2997.891341 +2997.902397 +2997.917848 +2997.930069 +2997.944887 +2997.955777 +2997.967931 +2997.969563 +2997.974158 +2997.982616 +2998.040325 +2998.042423 +2998.071294 +2998.079653 +2998.081850 +2998.096369 +2998.145287 +2998.186645 +2998.189476 +2998.198400 +2998.212386 +2998.245320 +2998.257308 +2998.270994 +2998.272759 +2998.394604 +2998.397901 +2998.439193 +2998.452013 +2998.478420 +2998.481584 +2998.524041 +2998.539825 +2998.563968 +2998.566965 +2998.579918 +2998.582882 +2998.594937 +2998.707291 +2998.722742 +2998.735962 +2998.792972 +2998.822476 +2998.864500 +2999.111753 +2999.223874 +2999.250947 +2999.807023 +3005.695296 +3009.890363 +3010.886466 +3012.885099 +3019.885159 +3019.890320 +3020.186290 +3020.386457 +3020.494016 +3020.787389 +3021.087355 +3021.186323 +3021.787388 +3021.787954 +3021.788553 +3021.987421 +3022.087454 +3022.587454 +3022.887453 +3023.087353 +3023.387353 +3024.087519 +3024.187519 +3024.187852 +3024.487452 +3024.587518 +3024.687451 +3024.787418 +3024.788517 +3024.886585 +3025.840264 +3029.603797 +3029.901765 +3029.910024 +3029.917516 +3029.936397 +3029.947286 +3029.972694 +3029.981752 +3030.032534 +3030.072494 +3030.092974 +3030.104596 +3030.105595 +3030.123776 +3030.187612 +3030.202631 +3030.259041 +3030.279387 +3030.311755 +3030.346254 +3030.358009 +3030.358808 +3030.379087 +3030.394006 +3030.397602 +3030.455111 +3030.513719 +3030.534665 +3030.546020 +3030.547552 +3030.561272 +3030.583716 +3030.595371 +3030.617349 +3030.631002 +3030.655644 +3030.657609 +3030.667465 +3030.679287 +3030.699300 +3030.726140 +3030.788977 +3030.790243 +3030.817648 +3030.840859 +3030.884448 +3030.896803 +3030.906593 +3030.908424 +3030.929636 +3030.967132 +3030.967565 +3030.993706 +3031.004128 +3031.006859 +3031.028404 +3031.056243 +3031.079053 +3031.128937 +3031.130169 +3031.142457 +3031.154411 +3031.166699 +3031.181284 +3031.201065 +3031.212653 +3031.220379 +3031.229370 +3031.260871 +3031.269596 +3031.271727 +3031.296602 +3031.309390 +3031.357841 +3031.361071 +3031.370995 +3031.384481 +3031.408357 +3031.459872 +3031.469896 +3031.484980 +3031.485713 +3031.497435 +3031.522776 +3031.533832 +3031.541724 +3031.561337 +3031.585646 +3031.587045 +3031.597435 +3031.622809 +3031.631267 +3031.645620 +3031.647218 +3031.658440 +3031.671927 +3031.709289 +3031.720878 +3031.734564 +3031.760172 +3031.775123 +3031.813152 +3031.847484 +3031.857141 +3031.858507 +3031.870694 +3031.893605 +3031.904128 +3031.932766 +3032.017780 +3032.030168 +3032.030568 +3032.057174 +3032.092572 +3032.118979 +3032.131600 +3032.145253 +3032.158107 +3032.195469 +3032.197168 +3032.248416 +3032.272759 +3032.300797 +3032.339525 +3032.353911 +3032.379985 +3032.420311 +3032.445852 +3032.446651 +3032.458073 +3032.460437 +3032.500897 +3032.514783 +3032.527137 +3032.528469 +3032.556175 +3032.568662 +3032.595569 +3032.597267 +3032.622608 +3032.625372 +3032.651180 +3032.664600 +3032.692006 +3032.705792 +3032.718279 +3032.746518 +3032.787210 +3032.790740 +3032.800763 +3032.813950 +3032.841056 +3032.861136 +3032.897899 +3032.921576 +3032.923474 +3032.930667 +3032.942954 +3032.974190 +3033.034729 +3033.047416 +3033.088109 +3033.121442 +3033.146784 +3033.174989 +3033.179384 +3033.206957 +3033.209321 +3033.221942 +3033.252278 +3033.265598 +3033.278652 +3033.291306 +3033.319477 +3033.394103 +3033.426137 +3033.437959 +3033.440290 +3033.482647 +3033.497766 +3033.508921 +3033.510320 +3033.556940 +3033.586210 +3033.702094 +3033.704026 +3033.714282 +3033.746184 +3033.866263 +3033.938924 +3033.954042 +3034.013083 +3034.015514 +3034.027569 +3034.030299 +3034.043486 +3034.061335 +3034.117812 +3034.132697 +3034.163266 +3034.259936 +3034.272290 +3034.457905 +3034.526869 +3034.700195 +3034.727768 +3038.787138 +3041.546476 +3042.219102 +3042.409045 +3044.885833 +3044.886532 +3045.887896 +3047.886995 +3047.887961 +3048.885196 +3049.892221 +3054.891151 +3054.986389 +3054.988154 +3054.991917 +3055.788053 +3056.189251 +3056.388086 +3056.688185 +3057.088052 +3057.288151 +3057.988184 +3058.787218 +3058.988150 +3059.187117 +3063.542158 +3063.565934 +3063.907292 +3064.570528 +3064.655543 +3064.895903 +3064.926705 +3064.935663 +3064.954511 +3064.984181 +3064.994837 +3065.013452 +3065.015250 +3065.044787 +3065.069362 +3065.115749 +3065.116382 +3065.135530 +3065.146119 +3065.148616 +3065.166931 +3065.188909 +3065.193638 +3065.217414 +3065.219046 +3065.285246 +3065.286778 +3065.300464 +3065.322942 +3065.323342 +3065.346818 +3065.367531 +3065.382982 +3065.437660 +3065.449449 +3065.451447 +3065.474990 +3065.484047 +3065.516248 +3065.517647 +3065.541223 +3065.550681 +3065.587810 +3065.608822 +3065.621909 +3065.646185 +3065.669761 +3065.699798 +3065.711986 +3065.715349 +3065.716381 +3065.727803 +3065.760571 +3065.785312 +3065.796435 +3065.798066 +3065.806525 +3065.859571 +3065.956941 +3066.007390 +3066.034763 +3066.044886 +3066.101896 +3066.119611 +3066.143054 +3066.144187 +3066.152745 +3066.164433 +3066.176454 +3066.177720 +3066.192472 +3066.232831 +3066.244053 +3066.257506 +3066.297533 +3066.308788 +3066.311652 +3066.320743 +3066.333231 +3066.338725 +3066.373857 +3066.387376 +3066.457573 +3066.465631 +3066.468795 +3066.505458 +3066.532098 +3066.545252 +3066.547549 +3066.572325 +3066.585245 +3066.598465 +3066.707290 +3066.708355 +3066.720676 +3066.762268 +3066.787043 +3066.788109 +3066.789874 +3066.854775 +3066.868029 +3066.880949 +3066.894535 +3066.920643 +3066.932398 +3066.933530 +3066.984845 +3066.986144 +3066.996633 +3067.022541 +3067.073723 +3067.083513 +3067.095634 +3067.096766 +3067.117679 +3067.120676 +3067.132664 +3067.156973 +3067.283846 +3067.310452 +3067.322474 +3067.323839 +3067.340289 +3067.352510 +3067.364632 +3067.394635 +3067.435894 +3067.447382 +3067.461102 +3067.501095 +3067.565564 +3067.620043 +3067.694668 +3067.695933 +3067.736659 +3067.777718 +3067.793136 +3067.808221 +3067.858770 +3067.870492 +3067.941254 +3067.968560 +3067.972856 +3067.987108 +3068.026969 +3068.028534 +3068.071258 +3068.072856 +3068.115080 +3068.152676 +3068.154141 +3068.166329 +3068.167794 +3068.177951 +3068.198763 +3068.209719 +3068.224238 +3068.255373 +3068.266862 +3068.279016 +3068.345650 +3068.359236 +3068.388174 +3068.403791 +3068.492336 +3068.537657 +3068.552110 +3068.567194 +3068.584044 +3068.594201 +3068.610817 +3068.653475 +3068.699562 +3068.742952 +3068.772722 +3068.846815 +3068.856938 +3068.960601 +3068.992802 +3069.023704 +3069.105655 +3069.117477 +3069.276518 +3069.277317 +3069.294400 +3069.310018 +3069.431030 +3069.463431 +3069.492468 +3069.537390 +3069.632695 +3069.814945 +3078.591693 +3078.653665 +3078.685766 +3078.764720 +3078.789995 +3078.791826 +3078.796189 +3078.811440 +3078.818200 +3078.999685 +3080.693556 +3080.724791 +3080.890559 +3082.892255 +3084.887025 +3084.892020 +3084.892386 +3089.885422 +3089.886054 +3089.891049 +3090.588151 +3090.988251 +3091.288317 +3091.488250 +3091.788283 +3091.797641 +3091.888317 +3092.188316 +3092.888382 +3093.188349 +3093.287283 +3093.488382 +3093.788315 +3093.888381 +3094.288314 +3094.388281 +3094.486882 +3094.687148 +3094.689280 +3094.788347 +3094.889346 +3096.424010 +3099.886610 +3099.910253 +3099.916847 +3099.935195 +3099.954010 +3099.983180 +3100.045684 +3100.066797 +3100.084146 +3100.084412 +3100.154309 +3100.166430 +3100.233463 +3100.265864 +3100.275621 +3100.298898 +3100.324972 +3100.360036 +3100.373889 +3100.398798 +3100.409653 +3100.464099 +3100.464798 +3100.475188 +3100.497732 +3100.499197 +3100.550313 +3100.620875 +3100.635960 +3100.658837 +3100.674089 +3100.682181 +3100.777052 +3100.779883 +3100.806057 +3100.830199 +3100.853809 +3100.879816 +3100.905624 +3100.906689 +3100.931864 +3100.955540 +3100.969959 +3101.011251 +3101.012350 +3101.023639 +3101.024272 +3101.073622 +3101.099796 +3101.122873 +3101.161368 +3101.188041 +3101.252510 +3101.291238 +3101.329166 +3101.341387 +3101.366129 +3101.394901 +3101.495999 +3101.567728 +3101.607621 +3101.632063 +3101.646882 +3101.661267 +3101.671757 +3101.675520 +3101.688174 +3101.710984 +3101.740288 +3101.766096 +3101.778816 +3101.806355 +3101.856538 +3101.857371 +3101.859369 +3101.898363 +3101.905889 +3101.906422 +3101.921740 +3102.140388 +3102.141453 +3102.142386 +3102.155339 +3102.155939 +3102.180181 +3102.221407 +3102.223571 +3102.236392 +3102.249845 +3102.305089 +3102.359502 +3102.375419 +3102.376551 +3102.400527 +3102.402692 +3102.430464 +3102.485642 +3102.486142 +3102.511516 +3102.527800 +3102.567560 +3102.584277 +3102.654207 +3102.683910 +3102.725036 +3102.726734 +3102.727067 +3102.727600 +3102.727766 +3102.752908 +3102.780680 +3102.802392 +3102.829065 +3102.833361 +3102.847347 +3102.860866 +3102.887440 +3102.890603 +3102.978182 +3103.022538 +3103.062498 +3103.094066 +3103.094433 +3103.153374 +3103.168592 +3103.170024 +3103.185442 +3103.186008 +3103.242185 +3103.256504 +3103.260566 +3103.317443 +3103.379048 +3103.392168 +3103.423070 +3103.436357 +3103.483077 +3103.499960 +3103.542451 +3103.593400 +3103.605321 +3103.683110 +3103.744282 +3103.773819 +3103.789637 +3103.818808 +3103.849943 +3103.851242 +3103.865128 +3103.909517 +3103.923802 +3104.028697 +3104.115377 +3104.130029 +3104.174785 +3104.275251 +3104.306153 +3104.342650 +3104.447978 +3104.519406 +3105.696761 +3105.709315 +3105.761430 +3105.770287 +3105.777114 +3105.838286 +3105.873917 +3107.341215 +3107.417838 +3107.540749 +3107.545644 +3107.558131 +3107.819370 +3108.824430 +3108.877277 +3109.090031 +3114.885663 +3114.892057 +3115.887460 +3115.888159 +3117.892054 +3117.892520 +3118.885792 +3118.886192 +3118.886558 +3119.887290 +3119.887523 +3119.892684 +3123.440100 +3123.588751 +3123.761312 +3124.891381 +3124.987251 +3125.187351 +3125.188050 +3126.488215 +3126.788182 +3126.988148 +3127.687215 +3128.188380 +3128.388646 +3128.487214 +3128.688213 +3132.448849 +3134.897098 +3134.954740 +3134.975453 +3134.985876 +3135.068926 +3135.080415 +3135.122406 +3135.143052 +3135.159069 +3135.182013 +3135.192536 +3135.208220 +3135.219975 +3135.232063 +3135.244617 +3135.253342 +3135.266229 +3135.292036 +3135.303625 +3135.326668 +3135.328966 +3135.350444 +3135.362399 +3135.442386 +3135.462266 +3135.509685 +3135.533328 +3135.541220 +3135.564530 +3135.586375 +3135.632595 +3135.643518 +3135.670058 +3135.722305 +3135.731363 +3135.790304 +3135.814114 +3135.835559 +3135.836491 +3135.837057 +3135.847513 +3135.857970 +3135.870590 +3135.906921 +3135.921206 +3135.989938 +3135.990937 +3136.026967 +3136.027766 +3136.042019 +3136.052308 +3136.052675 +3136.102192 +3136.199661 +3136.237523 +3136.251109 +3136.303291 +3136.429930 +3136.480713 +3136.489604 +3136.637423 +3136.651908 +3136.689404 +3136.694799 +3136.719740 +3136.732594 +3136.786640 +3136.799527 +3136.812947 +3136.852308 +3136.852907 +3136.889437 +3136.929064 +3136.945514 +3137.024768 +3137.062131 +3137.089004 +3137.101891 +3137.168058 +3137.170989 +3137.182943 +3137.222470 +3137.222770 +3137.249510 +3137.273519 +3137.274385 +3137.301724 +3137.386173 +3137.388538 +3137.389370 +3137.501358 +3137.559400 +3137.571321 +3137.642483 +3137.645214 +3137.714012 +3137.738121 +3137.738687 +3137.740419 +3137.782210 +3137.840718 +3137.939986 +3137.941717 +3137.951707 +3137.956236 +3137.982077 +3137.984374 +3138.012113 +3138.025933 +3138.057634 +3138.058201 +3138.067525 +3138.100325 +3138.170288 +3138.199626 +3138.230428 +3138.232792 +3138.244581 +3138.262996 +3138.276649 +3138.321337 +3138.337887 +3138.378913 +3138.393831 +3138.425466 +3138.456702 +3138.469156 +3138.503621 +3138.516142 +3138.518273 +3138.519239 +3138.532393 +3138.559998 +3138.562629 +3138.592199 +3138.593565 +3138.606152 +3138.620937 +3138.621370 +3138.639385 +3138.651940 +3138.682875 +3138.698027 +3138.714177 +3138.818972 +3138.821203 +3138.834057 +3138.865426 +3139.081476 +3139.096461 +3139.124333 +3139.166658 +3139.183574 +3139.184873 +3139.235589 +3139.251106 +3139.253204 +3139.322002 +3139.411546 +3139.450906 +3139.470187 +3139.568922 +3139.570320 +3139.580943 +3139.652405 +3146.452132 +3149.885828 +3149.892554 +3150.885594 +3150.893153 +3151.136542 +3151.199413 +3151.274271 +3152.556554 +3152.575003 +3152.602442 +3152.648196 +3152.727250 +3152.733211 +3152.745665 +3152.762448 +3153.891718 +3159.655981 +3159.660310 +3160.586983 +3160.687948 +3160.788148 +3160.888081 +3160.987548 +3161.088647 +3161.187515 +3161.388047 +3161.688114 +3161.787980 +3162.088147 +3162.187081 +3162.387081 +3163.288112 +3163.488112 +3163.588078 +3164.188045 +3169.890370 +3169.937889 +3169.948445 +3170.017742 +3170.081745 +3170.118941 +3170.126267 +3170.162298 +3170.188238 +3170.197129 +3170.210383 +3170.220872 +3170.231961 +3170.250443 +3170.325568 +3170.345015 +3170.360366 +3170.362231 +3170.371888 +3170.373320 +3170.409717 +3170.502324 +3170.528098 +3170.538721 +3170.572387 +3170.619274 +3170.630762 +3170.641318 +3170.652174 +3170.685241 +3170.693666 +3170.698861 +3170.735257 +3170.736490 +3170.747878 +3170.810449 +3170.822537 +3170.832793 +3170.833026 +3170.840419 +3170.851508 +3170.874485 +3170.883742 +3170.895963 +3170.924468 +3170.936489 +3170.937022 +3170.948944 +3170.959633 +3170.960465 +3170.974918 +3171.025234 +3171.026299 +3171.065127 +3171.076616 +3171.090802 +3171.103655 +3171.105587 +3171.126766 +3171.143715 +3171.182410 +3171.194298 +3171.209283 +3171.220305 +3171.221371 +3171.245980 +3171.256802 +3171.272020 +3171.305154 +3171.319506 +3171.342883 +3171.380512 +3171.424035 +3171.451540 +3171.464261 +3171.503522 +3171.515443 +3171.569755 +3171.610481 +3171.646412 +3171.647744 +3171.648144 +3171.673318 +3171.698094 +3171.761597 +3171.790834 +3171.792100 +3171.814777 +3171.831527 +3171.832226 +3171.859066 +3171.871953 +3171.912379 +3171.949409 +3171.961130 +3171.978346 +3172.036189 +3172.059066 +3172.060364 +3172.085506 +3172.141084 +3172.163461 +3172.164394 +3172.204453 +3172.218040 +3172.244880 +3172.296961 +3172.297327 +3172.309482 +3172.310081 +3172.332892 +3172.344313 +3172.345046 +3172.356235 +3172.386971 +3172.396495 +3172.437986 +3172.453771 +3172.484273 +3172.495695 +3172.539618 +3172.563061 +3172.612778 +3172.619571 +3172.647144 +3172.661263 +3172.673051 +3172.685971 +3172.686737 +3172.726764 +3172.763394 +3172.765592 +3172.766025 +3172.775648 +3172.777846 +3172.789102 +3172.791433 +3172.816507 +3172.906517 +3172.917073 +3172.932625 +3172.933257 +3172.974982 +3173.004686 +3173.007117 +3173.018039 +3173.036854 +3173.048409 +3173.050540 +3173.064160 +3173.138319 +3173.139917 +3173.152604 +3173.169987 +3173.186337 +3173.198925 +3173.200357 +3173.258365 +3173.273084 +3173.290233 +3173.303920 +3173.345744 +3173.346910 +3173.347543 +3173.392864 +3173.408981 +3173.436620 +3173.453370 +3173.478844 +3173.529394 +3173.557965 +3173.574615 +3173.602854 +3173.749307 +3173.750506 +3173.777346 +3173.809447 +3173.912943 +3173.927928 +3173.975614 +3173.987968 +3174.001821 +3174.059497 +3174.091465 +3174.120769 +3174.139183 +3174.165790 +3174.362860 +3174.390332 +3174.391964 +3174.559829 +3174.785770 +3174.813975 +3176.120400 +3176.174746 +3176.206547 +3180.592357 +3184.890688 +3185.885292 +3187.886755 +3188.887054 +3188.891117 +3192.893444 +3195.098770 +3195.387780 +3195.587713 +3195.686848 +3195.687713 +3195.987313 +3195.987746 +3196.086880 +3196.087846 +3196.088212 +3196.287779 +3196.787879 +3197.087712 +3197.187745 +3198.187744 +3198.287744 +3198.387011 +3198.786645 +3198.787810 +3198.886711 +3198.887810 +3199.287910 +3199.486810 +3199.686910 +3199.887409 +3204.901957 +3204.903222 +3204.910948 +3204.926199 +3204.938220 +3204.956435 +3204.976282 +3204.987038 +3204.996928 +3205.057401 +3205.069922 +3205.081976 +3205.092199 +3205.116109 +3205.117607 +3205.129129 +3205.149009 +3205.159898 +3205.160764 +3205.180578 +3205.182642 +3205.207384 +3205.239685 +3205.259332 +3205.270921 +3205.293132 +3205.307151 +3205.307950 +3205.326199 +3205.342349 +3205.420038 +3205.431893 +3205.467590 +3205.467923 +3205.468190 +3205.482509 +3205.502955 +3205.505353 +3205.537487 +3205.561463 +3205.590401 +3205.626065 +3205.677114 +3205.734124 +3205.747510 +3205.774283 +3205.798226 +3205.823601 +3205.834656 +3205.883774 +3205.884773 +3205.906784 +3205.920670 +3205.944180 +3205.994163 +3205.998059 +3206.035788 +3206.046977 +3206.047810 +3206.070354 +3206.097060 +3206.109947 +3206.161462 +3206.174549 +3206.195728 +3206.197193 +3206.199558 +3206.209181 +3206.254303 +3206.279078 +3206.279877 +3206.318172 +3206.339917 +3206.406684 +3206.465691 +3206.478312 +3206.566590 +3206.567423 +3206.569421 +3206.607982 +3206.635455 +3206.659431 +3206.700889 +3206.739983 +3206.752038 +3206.754436 +3206.765791 +3206.792897 +3206.815608 +3206.816041 +3206.818804 +3206.881242 +3206.901255 +3206.903253 +3206.926230 +3206.936886 +3206.937719 +3207.026796 +3207.055701 +3207.067722 +3207.106084 +3207.107316 +3207.166690 +3207.180676 +3207.236620 +3207.337985 +3207.352171 +3207.387668 +3207.389067 +3207.390033 +3207.401621 +3207.423532 +3207.437918 +3207.449906 +3207.471851 +3207.586336 +3207.597525 +3207.598391 +3207.600022 +3207.610312 +3207.623599 +3207.651038 +3207.676646 +3207.691997 +3207.705417 +3207.719303 +3207.720069 +3207.729992 +3207.746942 +3207.771884 +3207.795793 +3207.808181 +3207.818937 +3207.830991 +3207.847042 +3207.856932 +3207.886036 +3207.922899 +3207.924331 +3207.926562 +3207.949772 +3207.964824 +3207.967222 +3207.978877 +3208.021001 +3208.036186 +3208.046675 +3208.113375 +3208.115240 +3208.128260 +3208.128560 +3208.153302 +3208.179076 +3208.207115 +3208.208147 +3208.318337 +3208.355466 +3208.371617 +3208.382706 +3208.461926 +3208.485936 +3208.513075 +3208.540581 +3208.568886 +3208.570817 +3208.598057 +3208.600088 +3208.611843 +3208.623465 +3208.627594 +3208.733887 +3208.804650 +3208.820634 +3208.995592 +3209.012875 +3209.321566 +3209.352169 +3209.657263 +3209.779008 +3221.890684 +3222.885488 +3223.884788 +3229.986747 +3230.186613 +3230.387279 +3230.587212 +3230.687245 +3230.887378 +3231.186912 +3231.196169 +3231.287345 +3231.487245 +3231.587378 +3232.087344 +3232.387444 +3232.687277 +3233.087276 +3233.186843 +3233.187443 +3233.486477 +3233.487343 +3233.586410 +3233.686543 +3233.687109 +3233.787475 +3233.986010 +3234.287009 +3234.487208 +3239.885371 +3239.889734 +3239.917206 +3239.932424 +3239.941815 +3239.951838 +3239.981675 +3239.991565 +3240.001322 +3240.002388 +3240.012910 +3240.031392 +3240.156766 +3240.159164 +3240.182308 +3240.216573 +3240.218072 +3240.251105 +3240.261628 +3240.264092 +3240.288335 +3240.300489 +3240.340416 +3240.363926 +3240.365824 +3240.388035 +3240.399124 +3240.407982 +3240.422933 +3240.481774 +3240.496227 +3240.518937 +3240.531691 +3240.541814 +3240.551571 +3240.624099 +3240.644578 +3240.644911 +3240.675514 +3240.696626 +3240.760396 +3240.760928 +3240.783639 +3240.797125 +3240.823865 +3240.835687 +3240.838784 +3240.895727 +3240.896959 +3240.923899 +3240.936053 +3240.973516 +3240.986902 +3241.007715 +3241.021934 +3241.077878 +3241.078644 +3241.090732 +3241.143679 +3241.167921 +3241.180408 +3241.213475 +3241.235753 +3241.270352 +3241.296326 +3241.321101 +3241.343279 +3241.366456 +3241.391397 +3241.408980 +3241.418703 +3241.446509 +3241.484804 +3241.496592 +3241.510245 +3241.530758 +3241.542280 +3241.568587 +3241.620668 +3241.644078 +3241.644810 +3241.657165 +3241.666156 +3241.677211 +3241.696692 +3241.705749 +3241.721733 +3241.743278 +3241.816771 +3241.824331 +3241.837817 +3241.839449 +3241.850371 +3241.850904 +3241.864690 +3241.873348 +3241.895726 +3241.946442 +3241.947874 +3241.983771 +3241.997657 +3241.999222 +3242.027161 +3242.064923 +3242.078942 +3242.090864 +3242.092729 +3242.104816 +3242.119202 +3242.120068 +3242.143678 +3242.172515 +3242.173481 +3242.185902 +3242.213175 +3242.237950 +3242.306048 +3242.369085 +3242.385169 +3242.396624 +3242.425162 +3242.440547 +3242.449838 +3242.451003 +3242.464690 +3242.466488 +3242.491762 +3242.492129 +3242.550737 +3242.560827 +3242.564023 +3242.586901 +3242.631123 +3242.657630 +3242.668985 +3242.696358 +3242.762292 +3242.764889 +3242.807613 +3242.818935 +3242.844010 +3242.872448 +3242.914639 +3242.916804 +3242.947207 +3242.986401 +3243.023297 +3243.025928 +3243.026860 +3243.035951 +3243.052102 +3243.061692 +3243.076244 +3243.091396 +3243.119168 +3243.144176 +3243.154333 +3243.158462 +3243.168152 +3243.170683 +3243.186201 +3243.213673 +3243.267952 +3243.308878 +3243.311142 +3243.338282 +3243.354632 +3243.355065 +3243.412974 +3243.424362 +3243.440579 +3243.497189 +3243.552667 +3243.638281 +3243.707113 +3243.732121 +3243.736050 +3243.749537 +3243.760526 +3243.766553 +3243.792927 +3243.822131 +3243.914538 +3243.916403 +3243.932087 +3243.974711 +3243.992161 +3244.059193 +3244.115604 +3244.129856 +3244.144042 +3244.197055 +3244.232387 +3244.445806 +3244.658460 +3244.764754 +3244.807311 +3252.908902 +3254.886888 +3254.889119 +3254.890585 +3257.892147 +3258.884820 +3259.888415 +3264.885913 +3264.890508 +3264.995370 +3265.587244 +3265.587477 +3265.786911 +3265.985845 +3266.187210 +3266.486910 +3266.586810 +3266.587276 +3267.086943 +3267.187375 +3267.687308 +3267.787342 +3267.887308 +3268.086442 +3268.787341 +3268.987440 +3269.087340 +3269.687539 +3272.568023 +3274.909679 +3274.919502 +3274.965256 +3275.008646 +3275.018536 +3275.028693 +3275.030025 +3275.040481 +3275.049739 +3275.061993 +3275.073248 +3275.084071 +3275.103884 +3275.106915 +3275.127061 +3275.129925 +3275.150538 +3275.167987 +3275.211910 +3275.277544 +3275.297158 +3275.325929 +3275.326462 +3275.348107 +3275.359129 +3275.392795 +3275.432755 +3275.471749 +3275.494527 +3275.494726 +3275.494960 +3275.506981 +3275.507747 +3275.547340 +3275.557797 +3275.570917 +3275.582572 +3275.594826 +3275.672215 +3275.696591 +3275.709711 +3275.719035 +3275.726095 +3275.734686 +3275.746774 +3275.771683 +3275.791163 +3275.805082 +3275.820201 +3275.848606 +3275.860394 +3275.884436 +3275.898422 +3275.921033 +3275.934753 +3275.969818 +3275.971416 +3275.983537 +3276.008446 +3276.019634 +3276.041579 +3276.086900 +3276.096491 +3276.098955 +3276.132655 +3276.173580 +3276.223064 +3276.262192 +3276.321532 +3276.358462 +3276.436417 +3276.460759 +3276.495724 +3276.506980 +3276.532754 +3276.545941 +3276.547406 +3276.560959 +3276.572814 +3276.575012 +3276.615604 +3276.627626 +3276.639447 +3276.664256 +3276.752567 +3276.763656 +3276.777309 +3276.791828 +3276.802950 +3276.831422 +3276.841811 +3276.844409 +3276.844708 +3276.857529 +3276.870816 +3276.882837 +3276.894226 +3276.905980 +3276.948338 +3276.948971 +3276.958561 +3276.971082 +3276.976044 +3277.026460 +3277.027392 +3277.027958 +3277.053100 +3277.094325 +3277.095191 +3277.121198 +3277.135051 +3277.146806 +3277.158827 +3277.175677 +3277.188398 +3277.199587 +3277.201818 +3277.253732 +3277.267852 +3277.268584 +3277.294358 +3277.336150 +3277.338980 +3277.351634 +3277.353033 +3277.377608 +3277.390895 +3277.422330 +3277.448970 +3277.460625 +3277.472813 +3277.503449 +3277.514704 +3277.531488 +3277.555930 +3277.559393 +3277.571647 +3277.588131 +3277.599853 +3277.617402 +3277.619100 +3277.644208 +3277.670548 +3277.672813 +3277.674711 +3277.688464 +3277.699353 +3277.701418 +3277.717501 +3277.718833 +3277.773346 +3277.784767 +3277.797421 +3277.801817 +3277.812340 +3277.815237 +3277.826226 +3277.853299 +3277.854098 +3277.858527 +3277.868750 +3277.880905 +3277.898287 +3277.944141 +3277.959160 +3277.969416 +3277.973612 +3277.983535 +3277.987098 +3277.999985 +3278.015303 +3278.059692 +3278.074544 +3278.119899 +3278.191194 +3278.206945 +3278.207711 +3278.233718 +3278.304647 +3278.358360 +3278.360458 +3278.389429 +3278.390195 +3278.418633 +3278.478307 +3278.489662 +3278.597321 +3278.640411 +3278.642009 +3278.656062 +3278.702116 +3278.718499 +3278.804080 +3278.805845 +3278.880471 +3278.921263 +3278.975875 +3278.978739 +3278.994257 +3279.024127 +3279.065952 +3279.121063 +3279.192458 +3279.235349 +3279.304646 +3279.356361 +3279.381969 +3279.438312 +3279.453164 +3279.530320 +3279.560956 +3279.606744 +3279.772045 +3279.823094 +3282.196618 +3282.247300 +3285.558553 +3286.354156 +3289.890350 +3290.233873 +3290.247392 +3290.340399 +3290.885587 +3291.099739 +3292.891745 +3293.889780 +3293.890879 +3299.885878 +3300.487409 +3300.686976 +3300.887508 +3301.587441 +3301.687474 +3301.787441 +3303.187406 +3303.487339 +3304.187538 +3304.387638 +3304.487571 +3304.687538 +3305.444214 +3306.915408 +3306.922834 +3308.269252 +3309.890197 +3309.909044 +3309.925728 +3309.926427 +3309.945674 +3309.967319 +3309.978908 +3309.987299 +3309.999387 +3310.007612 +3310.030023 +3310.038248 +3310.051369 +3310.063390 +3310.154599 +3310.155498 +3310.166653 +3310.178308 +3310.221232 +3310.227892 +3310.239247 +3310.271781 +3310.283569 +3310.304315 +3310.323896 +3310.333186 +3310.335184 +3310.359160 +3310.360126 +3310.380373 +3310.392927 +3310.393792 +3310.437682 +3310.475844 +3310.514605 +3310.528125 +3310.579773 +3310.591894 +3310.603516 +3310.612673 +3310.665487 +3310.704148 +3310.714804 +3310.746206 +3310.756896 +3310.766919 +3310.790229 +3310.834851 +3310.847771 +3310.872880 +3310.883302 +3310.885400 +3310.923529 +3310.944008 +3310.957162 +3310.980272 +3311.028690 +3311.061324 +3311.069749 +3311.070781 +3311.091494 +3311.105946 +3311.134884 +3311.144774 +3311.167318 +3311.216869 +3311.230388 +3311.278707 +3311.295157 +3311.306612 +3311.327924 +3311.328357 +3311.329189 +3311.339912 +3311.352499 +3311.377308 +3311.438047 +3311.463988 +3311.475543 +3311.486698 +3311.540611 +3311.590028 +3311.614737 +3311.693525 +3311.708543 +3311.720964 +3311.736182 +3311.737481 +3311.790295 +3311.802649 +3311.827690 +3311.842509 +3311.855929 +3311.866019 +3311.881237 +3311.922595 +3311.934450 +3311.946605 +3311.948902 +3311.962222 +3311.973911 +3311.974643 +3311.986232 +3312.003115 +3312.029588 +3312.030221 +3312.056994 +3312.120164 +3312.136581 +3312.148969 +3312.244207 +3312.283567 +3312.298919 +3312.312272 +3312.403880 +3312.444473 +3312.469381 +3312.492492 +3312.493690 +3312.494523 +3312.547670 +3312.549268 +3312.561689 +3312.574276 +3312.593790 +3312.604246 +3312.608009 +3312.609208 +3312.619798 +3312.622495 +3312.635449 +3312.645805 +3312.664653 +3312.678539 +3312.689494 +3312.704380 +3312.707776 +3312.743374 +3312.744140 +3312.768848 +3312.769714 +3312.782668 +3312.785898 +3312.795721 +3312.826657 +3312.841709 +3312.871179 +3312.899018 +3312.922295 +3312.935648 +3312.960989 +3313.034349 +3313.119830 +3313.133950 +3313.175908 +3313.177639 +3313.206177 +3313.279637 +3313.293823 +3313.310473 +3313.321861 +3313.367982 +3313.398218 +3313.440976 +3313.457126 +3313.531718 +3313.533416 +3313.576640 +3313.621728 +3313.622694 +3313.649700 +3313.651298 +3313.693789 +3313.757392 +3313.787229 +3313.845737 +3313.908041 +3314.011904 +3314.026856 +3314.029720 +3314.056393 +3314.058957 +3314.106476 +3314.164784 +3314.255960 +3314.286329 +3314.346103 +3314.391624 +3314.404411 +3314.420162 +3314.461421 +3314.496419 +3314.508574 +3314.524324 +3315.804610 +3318.779998 +3320.256886 +3321.031644 +3321.046929 +3321.088154 +3321.104171 +3325.887583 +3325.891113 +3326.890779 +3327.885916 +3328.891809 +3334.886409 +3335.085842 +3335.187208 +3335.886907 +3336.096431 +3336.487906 +3336.587006 +3337.087872 +3338.787870 +3339.888335 +3341.840614 +3342.017004 +3342.164956 +3344.901517 +3345.106012 +3345.145473 +3345.156062 +3345.188063 +3345.199652 +3345.339645 +3345.433118 +3345.480138 +3345.517234 +3345.559924 +3345.581103 +3345.582635 +3345.590227 +3345.604746 +3345.617500 +3345.728556 +3345.776341 +3345.776974 +3345.825259 +3345.839411 +3345.865985 +3345.866617 +3345.901882 +3345.902914 +3345.923094 +3345.924826 +3345.932651 +3345.934216 +3345.949834 +3345.981502 +3345.995855 +3346.009708 +3346.021696 +3346.033584 +3346.044439 +3346.058559 +3346.071279 +3346.083567 +3346.097586 +3346.110007 +3346.122195 +3346.132718 +3346.156960 +3346.180570 +3346.181935 +3346.193757 +3346.230653 +3346.314636 +3346.388162 +3346.412771 +3346.426291 +3346.438678 +3346.462021 +3346.463054 +3346.463786 +3346.577706 +3346.579071 +3346.616434 +3346.630286 +3346.641542 +3346.652298 +3346.667383 +3346.693123 +3346.720596 +3346.732950 +3346.814236 +3346.880236 +3346.903713 +3346.906876 +3346.916933 +3346.920296 +3346.968048 +3346.968814 +3347.006909 +3347.022494 +3347.119264 +3347.131018 +3347.145004 +3347.159623 +3347.185497 +3347.198817 +3347.393822 +3347.420296 +3347.422260 +3347.449966 +3347.460322 +3347.503579 +3347.514435 +3347.538377 +3347.575440 +3347.601947 +3347.639609 +3347.642107 +3347.669146 +3347.780901 +3347.783332 +3347.791857 +3347.796019 +3347.808973 +3347.823059 +3347.849200 +3347.875640 +3347.949766 +3347.962186 +3347.973242 +3348.000082 +3348.001580 +3348.004944 +3348.018297 +3348.028187 +3348.069879 +3348.120095 +3348.159589 +3348.199416 +3348.207308 +3348.229985 +3348.248367 +3348.286362 +3348.314734 +3348.369545 +3348.382632 +3348.397884 +3348.410171 +3348.458290 +3348.473175 +3348.484397 +3348.528187 +3348.539442 +3348.553128 +3348.579402 +3348.593621 +3348.708273 +3348.724124 +3348.736778 +3348.771177 +3348.827554 +3348.846634 +3348.875272 +3348.890757 +3348.903711 +3348.906941 +3348.923125 +3348.976638 +3348.977537 +3349.012369 +3349.040840 +3349.069611 +3349.085262 +3349.112768 +3349.127520 +3349.145569 +3349.157523 +3349.162219 +3349.169844 +3349.179035 +3349.207440 +3349.221459 +3349.223890 +3349.225455 +3349.237743 +3349.238775 +3349.241905 +3349.286428 +3349.328585 +3349.332115 +3349.342705 +3349.361586 +3349.376437 +3349.392721 +3349.395385 +3349.424290 +3349.455891 +3349.487859 +3349.515565 +3349.591722 +3349.637509 +3349.639541 +3349.640773 +3349.669477 +3349.700313 +3349.734679 +3349.807672 +3349.827553 +3352.174603 +3352.222056 +3355.520720 +3358.340365 +3358.362243 +3360.891910 +3361.886548 +3361.887247 +3362.887546 +3362.892375 +3363.892141 +3364.446519 +3364.892239 +3369.891968 +3370.787771 +3371.088537 +3371.188404 +3371.388170 +3371.388570 +3371.588337 +3372.588436 +3372.788002 +3373.188335 +3373.587169 +3374.188134 +3374.188667 +3374.588034 +3374.589666 +3374.888267 +3374.889932 +3379.866783 +3379.875408 +3379.885365 +3379.897253 +3379.911239 +3379.927090 +3379.991758 +3380.012338 +3380.057026 +3380.098551 +3380.107942 +3380.141442 +3380.185631 +3380.224459 +3380.331718 +3380.347269 +3380.384698 +3380.405044 +3380.422127 +3380.463319 +3380.482966 +3380.514235 +3380.515667 +3380.547302 +3380.601814 +3380.637312 +3380.650066 +3380.684898 +3380.696986 +3380.719063 +3380.729853 +3380.781867 +3380.816100 +3380.830419 +3380.840775 +3380.841541 +3380.860455 +3380.900881 +3380.911371 +3380.950199 +3380.962486 +3380.979669 +3380.990658 +3381.040575 +3381.055627 +3381.139676 +3381.156559 +3381.165550 +3381.181767 +3381.233482 +3381.258657 +3381.268813 +3381.290891 +3381.299982 +3381.390625 +3381.415566 +3381.427821 +3381.452796 +3381.460921 +3381.479536 +3381.492856 +3381.493155 +3381.520328 +3381.546136 +3381.557890 +3381.558956 +3381.595320 +3381.611304 +3381.624124 +3381.638243 +3381.689525 +3381.703045 +3381.743138 +3381.767847 +3381.769012 +3381.793122 +3381.807407 +3381.834014 +3381.846235 +3381.860121 +3381.874840 +3381.899648 +3381.940774 +3382.027554 +3382.038609 +3382.048932 +3382.050298 +3382.062452 +3382.095519 +3382.109239 +3382.110837 +3382.187760 +3382.200514 +3382.202312 +3382.202845 +3382.229019 +3382.230317 +3382.253794 +3382.255059 +3382.269445 +3382.283830 +3382.310704 +3382.322825 +3382.323790 +3382.337610 +3382.352662 +3382.378203 +3382.378935 +3382.393154 +3382.396151 +3382.424257 +3382.425688 +3382.448799 +3382.463950 +3382.478735 +3382.481166 +3382.491456 +3382.505076 +3382.520294 +3382.522858 +3382.534180 +3382.536278 +3382.560687 +3382.565615 +3382.578602 +3382.579967 +3382.580833 +3382.594253 +3382.605275 +3382.633147 +3382.635978 +3382.649198 +3382.650364 +3382.664949 +3382.706874 +3382.718495 +3382.720793 +3382.731815 +3382.745402 +3382.756624 +3382.782232 +3382.829418 +3382.833280 +3382.858355 +3382.870610 +3382.881665 +3382.884496 +3382.919361 +3382.936044 +3382.938442 +3382.964549 +3382.979767 +3383.020526 +3383.055891 +3383.059820 +3383.098315 +3383.113100 +3383.127619 +3383.157856 +3383.189990 +3383.231016 +3383.244502 +3383.262584 +3383.334379 +3383.347000 +3383.351795 +3383.376603 +3383.380666 +3383.422857 +3383.425454 +3383.437076 +3383.448631 +3383.468311 +3383.481032 +3383.509770 +3383.583030 +3383.596550 +3383.597749 +3383.609670 +3383.688524 +3383.701445 +3383.704009 +3383.730283 +3383.790755 +3383.808071 +3383.874405 +3383.880898 +3383.892354 +3383.895484 +3383.895850 +3383.927585 +3384.053259 +3384.078134 +3384.090822 +3384.093619 +3384.110668 +3384.119027 +3384.132413 +3384.178767 +3384.180832 +3384.195883 +3384.321691 +3384.355823 +3384.368477 +3384.413765 +3384.486792 +3384.559419 +3384.572939 +3384.602276 +3384.645300 +3384.646998 +3384.676569 +3384.747165 +3384.749729 +3384.762616 +3384.795616 +3384.858087 +3394.891244 +3397.892373 +3398.887210 +3399.888841 +3399.892138 +3399.892704 +3400.582747 +3404.891267 +3404.988070 +3405.092665 +3405.588935 +3405.887869 +3405.988935 +3406.187603 +3406.388935 +3406.687802 +3406.688801 +3406.689867 +3406.789966 +3406.888834 +3406.889833 +3406.987802 +3406.988301 +3407.088867 +3407.089866 +3407.297725 +3407.388234 +3407.389866 +3407.488434 +3407.489833 +3407.589932 +3407.787401 +3407.788334 +3407.788800 +3407.789932 +3407.889832 +3407.988334 +3407.989865 +3408.089799 +3408.187701 +3408.188333 +3408.188866 +3408.289865 +3408.487767 +3408.488799 +3408.589365 +3408.589898 +3408.689898 +3408.787767 +3408.887800 +3408.988932 +3409.088299 +3409.088799 +3409.188898 +3409.388765 +3409.688232 +3409.688931 +3409.888898 +3414.897551 +3414.915499 +3414.916099 +3414.928886 +3414.929519 +3414.947201 +3414.977704 +3415.009539 +3415.017231 +3415.030784 +3415.081200 +3415.101813 +3415.114800 +3415.144204 +3415.145769 +3415.153828 +3415.156858 +3415.185529 +3415.198583 +3415.234314 +3415.290857 +3415.295785 +3415.338143 +3415.406142 +3415.416032 +3415.418329 +3415.418662 +3415.452762 +3415.465948 +3415.477370 +3415.486195 +3415.486994 +3415.508173 +3415.518063 +3415.519561 +3415.574973 +3415.590857 +3415.602878 +3415.614333 +3415.637110 +3415.695818 +3415.708639 +3415.733248 +3415.743437 +3415.832282 +3415.870643 +3415.902611 +3415.906707 +3415.918029 +3415.942039 +3415.953261 +3415.966281 +3416.004909 +3416.025988 +3416.048199 +3416.113101 +3416.135778 +3416.186694 +3416.214033 +3416.225854 +3416.249231 +3416.249830 +3416.272241 +3416.280367 +3416.290590 +3416.329517 +3416.341106 +3416.342404 +3416.353593 +3416.365481 +3416.380100 +3416.402977 +3416.431482 +3416.432481 +3416.442771 +3416.482231 +3416.498815 +3416.508305 +3416.542038 +3416.600013 +3416.610603 +3416.718861 +3416.730483 +3416.782497 +3416.848831 +3416.861618 +3416.862184 +3416.882930 +3416.883829 +3416.907306 +3416.933213 +3416.948498 +3416.963116 +3416.978268 +3417.013233 +3417.013766 +3417.025754 +3417.060885 +3417.073273 +3417.111601 +3417.114731 +3417.114898 +3417.139573 +3417.141238 +3417.178634 +3417.193120 +3417.243669 +3417.252926 +3417.264315 +3417.276103 +3417.296549 +3417.314998 +3417.340339 +3417.343369 +3417.394018 +3417.422790 +3417.424022 +3417.505507 +3417.574504 +3417.618760 +3417.629982 +3417.631081 +3417.672540 +3417.684961 +3417.700079 +3417.713932 +3417.743402 +3417.754990 +3417.785194 +3417.801311 +3417.812266 +3417.854724 +3417.857788 +3417.898580 +3417.926752 +3417.940005 +3417.956622 +3417.972439 +3417.973205 +3418.030615 +3418.044601 +3418.084894 +3418.101610 +3418.126918 +3418.202676 +3418.203508 +3418.214764 +3418.246798 +3418.262482 +3418.288723 +3418.307005 +3418.320757 +3418.333078 +3418.350594 +3418.361250 +3418.390454 +3418.403941 +3418.434410 +3418.451959 +3418.467178 +3418.477967 +3418.480498 +3418.482296 +3418.497181 +3418.507504 +3418.565213 +3418.580164 +3418.593185 +3418.669175 +3418.684860 +3418.697181 +3418.699811 +3418.714896 +3418.730581 +3418.757820 +3418.760917 +3418.817294 +3418.832845 +3418.849828 +3418.864713 +3418.877533 +3418.893085 +3418.908636 +3418.920890 +3418.923887 +3418.939238 +3418.951659 +3418.985559 +3418.999345 +3419.014596 +3419.015595 +3419.075236 +3419.102275 +3419.119125 +3419.149361 +3419.196448 +3419.210234 +3419.240470 +3419.243201 +3419.257720 +3419.267976 +3419.272372 +3419.284892 +3419.286091 +3419.301143 +3419.301642 +3419.317360 +3419.346397 +3419.356421 +3419.421289 +3419.450293 +3419.452924 +3419.469508 +3419.538772 +3419.557686 +3425.274330 +3429.890676 +3429.891475 +3430.886979 +3430.891041 +3431.886245 +3431.891173 +3432.887077 +3434.886975 +3434.891770 +3439.887103 +3440.186936 +3440.287768 +3440.487768 +3440.587735 +3440.687701 +3440.695893 +3440.787735 +3440.987701 +3441.487634 +3441.787867 +3441.987800 +3442.387733 +3442.487600 +3442.587833 +3442.796124 +3443.487732 +3444.586699 +3449.935544 +3449.968611 +3450.018828 +3450.049197 +3450.087193 +3450.095284 +3450.160952 +3450.182897 +3450.229017 +3450.237675 +3450.268911 +3450.328884 +3450.341671 +3450.364681 +3450.385694 +3450.399880 +3450.400279 +3450.439540 +3450.463316 +3450.470409 +3450.481331 +3450.530749 +3450.531115 +3450.538441 +3450.603176 +3450.673073 +3450.746433 +3450.757355 +3450.791088 +3450.817994 +3450.842936 +3450.843502 +3450.854458 +3450.867079 +3450.867944 +3450.899380 +3450.937641 +3450.950329 +3450.963848 +3451.021890 +3451.032313 +3451.054424 +3451.090122 +3451.105473 +3451.153192 +3451.153825 +3451.174371 +3451.272739 +3451.286292 +3451.310435 +3451.359752 +3451.386392 +3451.409402 +3451.436475 +3451.484727 +3451.495150 +3451.507870 +3451.508503 +3451.567611 +3451.585826 +3451.598746 +3451.622955 +3451.669542 +3451.681363 +3451.683794 +3451.693085 +3451.708270 +3451.718260 +3451.757687 +3451.794916 +3451.809901 +3451.858786 +3451.894117 +3451.914031 +3451.918393 +3451.931680 +3451.990521 +3452.035809 +3452.061083 +3452.084826 +3452.127117 +3452.151426 +3452.189055 +3452.191053 +3452.203474 +3452.215063 +3452.226618 +3452.266311 +3452.291719 +3452.302708 +3452.306071 +3452.375502 +3452.377900 +3452.431279 +3452.440570 +3452.442202 +3452.454356 +3452.454823 +3452.482761 +3452.494183 +3452.495848 +3452.541902 +3452.565978 +3452.578066 +3452.602741 +3452.617327 +3452.630713 +3452.642901 +3452.643400 +3452.682028 +3452.709568 +3452.735941 +3452.747696 +3452.750693 +3452.800776 +3452.813397 +3452.824885 +3452.837373 +3452.838871 +3452.867210 +3452.877666 +3452.955588 +3452.959950 +3452.999777 +3453.013097 +3453.042667 +3453.051625 +3453.054289 +3453.101375 +3453.126184 +3453.128282 +3453.216493 +3453.245564 +3453.276067 +3453.347229 +3453.357752 +3453.427516 +3453.452757 +3453.479197 +3453.592184 +3453.594249 +3453.610765 +3453.688987 +3453.704372 +; +0.228072 +0.842423 +0.845420 +0.875357 +0.992173 +1.605493 +1.607458 +2.850413 +2.859105 +2.874689 +2.882048 +3.046251 +3.095568 +4.022041 +4.054275 +5.982545 +7.407485 +7.468457 +8.814710 +8.899059 +8.923135 +10.291432 +10.353170 +11.767587 +11.908912 +11.914474 +13.569883 +14.547271 +16.055395 +16.224992 +17.503512 +20.360253 +20.376869 +20.428851 +20.678601 +22.112632 +23.834675 +23.902573 +23.942667 +23.975001 +24.986422 +26.231875 +26.281126 +26.343330 +28.550121 +28.631606 +28.641496 +30.076726 +30.098638 +30.121382 +30.150419 +30.191911 +30.204332 +30.213323 +30.237599 +30.266703 +30.270366 +30.298038 +30.313822 +30.341695 +30.436400 +30.440596 +30.451052 +30.458511 +30.461874 +30.526976 +31.819882 +31.914354 +31.953814 +31.961373 +33.321745 +33.359241 +33.506860 +33.545121 +34.751780 +34.785979 +36.225938 +36.283347 +37.701627 +37.711517 +37.749379 +38.417710 +40.501724 +41.622536 +42.824533 +43.558964 +43.757632 +48.345539 +48.408476 +48.436382 +48.497521 +48.544107 +48.669482 +48.684334 +48.696455 +48.780171 +48.811240 +48.826791 +48.827257 +48.879405 +49.811772 +51.913601 +52.864483 +55.224553 +55.238539 +55.253591 +55.411300 +64.096739 +64.117518 +64.156479 +64.201900 +65.305895 +65.362472 +65.465336 +65.545389 +65.588812 +65.850317 +66.804928 +66.829304 +66.942124 +66.979220 +67.005328 +67.020945 +67.350848 +68.471660 +69.765098 +70.082780 +70.547682 +72.080614 +72.115612 +72.911882 +72.989604 +73.024502 +73.863796 +74.458334 +74.481411 +74.541217 +74.548543 +74.577548 +75.016109 +75.340184 +75.429462 +75.440983 +75.507051 +75.637953 +76.897692 +76.915474 +76.954735 +77.011878 +77.056433 +77.071351 +77.113909 +77.161062 +77.285704 +77.359463 +77.364225 +77.386136 +77.434321 +77.438784 +77.532790 +77.538550 +77.588933 +78.025630 +78.121400 +78.135253 +78.478410 +78.485569 +78.495093 +78.528093 +78.584437 +79.937316 +79.959560 +79.994958 +80.069584 +80.103316 +81.322862 +81.339479 +81.386032 +81.428323 +81.499452 +81.535716 +81.567284 +81.672446 +81.690927 +82.739644 +82.932151 +82.957792 +84.354827 +87.615597 +87.796549 +87.916462 +90.465277 +90.522620 +90.526150 +90.542900 +90.552324 +90.602906 +90.611664 +90.630179 +90.857884 +92.084257 +92.085389 +92.138503 +92.152921 +92.171703 +92.172668 +92.190284 +92.196711 +92.209498 +92.234340 +92.244163 +92.252755 +92.268339 +92.283724 +93.273200 +93.290216 +93.352321 +93.357782 +93.396776 +93.400639 +94.827677 +94.932905 +96.754882 +96.787615 +96.851918 +96.904399 +100.427272 +100.470229 +100.472094 +100.476989 +100.482450 +100.498867 +100.501331 +100.517315 +100.543189 +100.596403 +100.786313 +100.808024 +100.873026 +100.894238 +100.897968 +100.903262 +102.312119 +102.331300 +102.409654 +102.504193 +103.732564 +104.573522 +104.620075 +104.713348 +104.745982 +104.768593 +104.792769 +104.796465 +105.140621 +105.147114 +105.209851 +105.237923 +106.700326 +106.720839 +106.744449 +106.886074 +106.949810 +107.552207 +107.559033 +107.559366 +107.574052 +107.635257 +107.705886 +107.718407 +109.314842 +109.332591 +109.350074 +109.391566 +109.466990 +109.489834 +109.589035 +111.157032 +111.395127 +111.411144 +111.531457 +111.531823 +112.757962 +112.782604 +112.823097 +112.849371 +113.035585 +115.009342 +115.505878 +115.587497 +115.624493 +115.688163 +115.714370 +116.936813 +116.964052 +116.976706 +117.007942 +117.052430 +117.056360 +117.126423 +117.798583 +118.134081 +118.141973 +118.150897 +118.153328 +118.159422 +118.241640 +118.254127 +118.283665 +118.299216 +119.407140 +119.415332 +119.421126 +119.501545 +119.589757 +119.601912 +119.606241 +119.664416 +119.681798 +119.684962 +119.743703 +119.757989 +119.811935 +122.680830 +122.747296 +122.851858 +122.855821 +122.910200 +123.827082 +123.831877 +123.908467 +123.914994 +124.014928 +124.062380 +124.109733 +124.110099 +124.121854 +124.732309 +124.832875 +125.289518 +125.302439 +125.326648 +125.331776 +125.337903 +125.426581 +125.431609 +125.436704 +126.368405 +126.369904 +127.696742 +128.086818 +128.087351 +128.100704 +128.105433 +128.106099 +128.134670 +129.046857 +129.058379 +129.126378 +129.139897 +129.150520 +131.899468 +132.675325 +132.684116 +132.713221 +132.780453 +132.838861 +133.494772 +133.539493 +133.546020 +133.599766 +133.629936 +134.459206 +134.584447 +135.290041 +135.484746 +135.549382 +136.024106 +136.096334 +136.930699 +137.458171 +137.497998 +137.623738 +137.756339 +137.777285 +137.851277 +137.884378 +138.227634 +138.245483 +138.247381 +138.255040 +138.303325 +138.314047 +138.320175 +138.322539 +138.337457 +138.396898 +138.420641 +138.488972 +138.518476 +138.606555 +138.624537 +138.644184 +138.700228 +138.741453 +138.805822 +138.905056 +140.019707 +140.034925 +140.039720 +140.054305 +140.055205 +140.071488 +140.109817 +140.189703 +140.214911 +140.246779 +142.106784 +143.646443 +143.762527 +143.901022 +143.961228 +143.962127 +144.859262 +145.193761 +145.214107 +147.126193 +148.672645 +148.743108 +149.091426 +149.107310 +149.246837 +150.024725 +150.189493 +150.283033 +151.376738 +151.625489 +151.679269 +152.126188 +152.439308 +152.457057 +152.501213 +152.539175 +152.575172 +152.664449 +153.384862 +153.615331 +153.875604 +153.970309 +154.019926 +154.069310 +155.217427 +155.229482 +155.229848 +155.362315 +156.667009 +156.686257 +156.741635 +156.810932 +156.820356 +156.909367 +156.910266 +156.912231 +157.212164 +157.228581 +157.262147 +157.317458 +157.411531 +157.423219 +157.609066 +157.732743 +157.811897 +157.829646 +158.016492 +158.148593 +158.171037 +158.198643 +158.211164 +158.236039 +158.309865 +158.310797 +158.326149 +158.329412 +158.410464 +158.516824 +158.610497 +158.911663 +158.915226 +159.128212 +159.219787 +159.256584 +159.313460 +159.364443 +159.410963 +159.503204 +159.506667 +159.510064 +159.510563 +159.723117 +159.913526 +159.915724 +159.965408 +160.033173 +160.187985 +160.232474 +160.270735 +160.287918 +160.305367 +160.306167 +160.336636 +160.397908 +160.548657 +160.567605 +160.661344 +160.844861 +160.875963 +160.895510 +160.908464 +160.926546 +160.936069 +160.973698 +160.990249 +161.019652 +161.067738 +161.093512 +161.094011 +161.119619 +161.140565 +161.149223 +161.159712 +161.187151 +161.196342 +161.223482 +161.250521 +161.270302 +161.285187 +161.360012 +161.370967 +161.372200 +161.413325 +161.463541 +161.485453 +161.486252 +161.497907 +161.509529 +161.539132 +161.540964 +161.563808 +161.589182 +161.602069 +161.631940 +161.658646 +161.680724 +161.912059 +161.920984 +161.940098 +162.025612 +162.046791 +162.102768 +162.138000 +162.215089 +162.242095 +162.274696 +162.285286 +162.307030 +162.332838 +162.353517 +162.380257 +162.392245 +162.449588 +162.468003 +162.558745 +162.587383 +162.625945 +162.636767 +162.675129 +162.737266 +162.750154 +162.851386 +162.858445 +162.860410 +162.868568 +162.885485 +162.897173 +162.908528 +162.927110 +162.948955 +162.959644 +162.971365 +162.980556 +162.982554 +163.002934 +163.033070 +163.033636 +163.062208 +163.079058 +163.114822 +163.153117 +163.166603 +163.199437 +163.210526 +163.258711 +163.307695 +163.326377 +163.358844 +163.376560 +163.388614 +163.389414 +163.405498 +163.479557 +163.487649 +163.504099 +163.538431 +163.547289 +163.620416 +163.647855 +163.667968 +163.687582 +163.699470 +163.743393 +163.806196 +163.829906 +163.847821 +163.897272 +164.010192 +164.032969 +164.046389 +164.071897 +164.076193 +164.155946 +164.177491 +164.187548 +164.197871 +164.227275 +164.231204 +164.240162 +164.269166 +164.280555 +164.337065 +164.387082 +164.405530 +164.416619 +164.444757 +164.461873 +164.481687 +164.497604 +164.512856 +164.555913 +164.579622 +164.585050 +164.646156 +164.651950 +164.716951 +164.756745 +164.771630 +164.791477 +164.794374 +164.802632 +164.862206 +164.869532 +164.873328 +164.954281 +164.961174 +164.970031 +165.008260 +165.133335 +165.200534 +165.231037 +165.296538 +165.346321 +165.400201 +165.439462 +165.473827 +165.496405 +165.537563 +165.565102 +165.576491 +165.580920 +165.628106 +165.631936 +165.658775 +165.667300 +165.732601 +165.742891 +165.752382 +165.817949 +166.580686 +166.842124 +168.081450 +168.096568 +168.126505 +168.149515 +168.159039 +168.183315 +168.223108 +168.247118 +168.325772 +168.361803 +168.420844 +168.472792 +168.520045 +168.538892 +168.686911 +168.726904 +168.728869 +168.737593 +168.759438 +168.800697 +168.817747 +168.845719 +168.868529 +168.907856 +168.927304 +168.940324 +168.964933 +169.168329 +169.187676 +169.230900 +169.236094 +169.268262 +169.288276 +169.321043 +169.359571 +169.406557 +169.431632 +169.644552 +169.699264 +169.723840 +169.737026 +169.753377 +169.762834 +169.786843 +169.880516 +169.894902 +169.950280 +170.219377 +170.226004 +170.346616 +171.308986 +171.322772 +171.366262 +171.473322 +171.490138 +171.525802 +171.538357 +171.560168 +171.606688 +171.636658 +171.666129 +171.705789 +171.717610 +171.729798 +171.751610 +171.787441 +171.804024 +171.823305 +171.839355 +171.943518 +171.954340 +171.982345 +171.994600 +172.021040 +172.043817 +172.091902 +172.113081 +172.136425 +172.169791 +172.181013 +172.185043 +172.188639 +172.232295 +172.274919 +172.299361 +172.334693 +172.403091 +172.419142 +172.568026 +173.186607 +173.248711 +173.271189 +173.284242 +173.688338 +173.699793 +173.754838 +173.818174 +174.192200 +174.227398 +174.243382 +174.260598 +174.670488 +174.684774 +175.095096 +175.114044 +175.130294 +175.166858 +175.465392 +175.493398 +175.509015 +175.546711 +175.550374 +175.565758 +175.698093 +175.715575 +175.737586 +175.744746 +175.769987 +175.837553 +175.859431 +175.878845 +175.924966 +175.938019 +175.986904 +176.334722 +176.351971 +176.371618 +176.389168 +176.399990 +176.412811 +176.448442 +176.499424 +176.564026 +176.588435 +176.599124 +176.696227 +176.725597 +176.757898 +176.791498 +176.801555 +176.824132 +176.866190 +176.901688 +176.949274 +176.991964 +177.003020 +177.010912 +177.198158 +177.203919 +177.313909 +177.358531 +177.373282 +177.424098 +177.439416 +177.458331 +177.487501 +177.497824 +177.531258 +177.598224 +177.646276 +177.727261 +177.748240 +177.772216 +177.780575 +177.805217 +177.825796 +177.844677 +178.022233 +178.036519 +178.100987 +178.132023 +178.143178 +178.158829 +178.168720 +178.194494 +178.235986 +178.295759 +178.316305 +178.353035 +178.368253 +178.382272 +178.398190 +178.420368 +178.504617 +178.601586 +178.609012 +178.620934 +178.627560 +178.676811 +178.698856 +178.724363 +178.770717 +178.805915 +178.825029 +178.840747 +178.854133 +178.946774 +178.959728 +179.014540 +179.029192 +179.045009 +179.071016 +179.085901 +179.660992 +179.680573 +179.722231 +179.957562 +179.985001 +179.994658 +180.013573 +180.138248 +180.161891 +180.185068 +180.199553 +180.211508 +180.247405 +180.267752 +180.324495 +180.341611 +180.366853 +180.379640 +180.409077 +180.447305 +180.494691 +180.511974 +180.518301 +180.573779 +180.584934 +180.641977 +180.758227 +180.769050 +180.792593 +180.825926 +180.840945 +180.886865 +180.911041 +180.958993 +180.984368 +182.011107 +182.256095 +182.355762 +182.390360 +182.454130 +182.569348 +182.623627 +182.655595 +182.681369 +183.018165 +186.655824 +186.697249 +186.860785 +186.869643 +186.908504 +187.112800 +187.132214 +187.132613 +187.145467 +187.170176 +187.203942 +187.226286 +187.275037 +187.319493 +187.386259 +187.445367 +187.454691 +187.479633 +187.497182 +187.533445 +187.594351 +187.662416 +187.694351 +187.704607 +187.723489 +187.730015 +187.760918 +187.778034 +187.802609 +187.879765 +187.921557 +187.935976 +187.948863 +187.966279 +187.985593 +188.010002 +188.017927 +188.097547 +188.158120 +188.249029 +188.273538 +188.274104 +188.324420 +188.343435 +188.356155 +188.373438 +188.383927 +188.404440 +188.466045 +190.656286 +190.721055 +190.815493 +191.597810 +191.814993 +191.842965 +191.909032 +191.921320 +191.933807 +192.011496 +192.612761 +194.312593 +194.408930 +194.512859 +194.607831 +194.711061 +194.808463 +194.810594 +194.908130 +194.928243 +195.011260 +195.139931 +195.151253 +195.169635 +195.173598 +195.197307 +195.223081 +195.247224 +195.247590 +195.284120 +195.301703 +195.316488 +195.316921 +195.337101 +195.383155 +195.408096 +195.466771 +195.481556 +195.492645 +195.512392 +195.519252 +195.535469 +195.570967 +195.571599 +195.625312 +195.646791 +195.663241 +195.682522 +195.695908 +195.708296 +195.740230 +195.768935 +195.789215 +195.804766 +195.829241 +195.860677 +195.874130 +195.888748 +195.918785 +195.960876 +195.998805 +196.014123 +196.047756 +196.067902 +196.100370 +196.129507 +196.151086 +196.195908 +196.211459 +196.237599 +196.242827 +196.263373 +196.315122 +196.342661 +196.399604 +196.422148 +196.434202 +196.496240 +196.523779 +196.563007 +196.592611 +196.643859 +196.647755 +196.690879 +196.715221 +196.735567 +196.752883 +196.800103 +196.840462 +196.860975 +196.886183 +196.906929 +196.939030 +196.961774 +196.997605 +197.015521 +197.041361 +197.047355 +197.068934 +197.118551 +197.186982 +197.225044 +197.245590 +197.273862 +197.332570 +197.340928 +197.384018 +197.396839 +197.423512 +197.442593 +197.480988 +197.505896 +197.527475 +197.543625 +197.554747 +197.577591 +197.609726 +197.677558 +197.723479 +197.735300 +197.785417 +197.793708 +197.794741 +197.822346 +197.855147 +197.868034 +197.905696 +197.941660 +197.955446 +197.964004 +197.978190 +198.032136 +198.053781 +198.093242 +198.103964 +198.133168 +198.147487 +198.165336 +198.227974 +198.238230 +198.258210 +198.313088 +198.356079 +198.397770 +198.407727 +198.438763 +198.477590 +198.529139 +198.565602 +198.615919 +198.683917 +198.695739 +198.703631 +198.739994 +198.804397 +198.811756 +198.829505 +198.909391 +198.938895 +198.977690 +198.993241 +198.998669 +199.101066 +199.118948 +199.155212 +199.219514 +199.238229 +199.245655 +199.280620 +199.303697 +199.311955 +199.330736 +199.352881 +199.405395 +199.459274 +199.497270 +199.552015 +199.597836 +199.702031 +199.729570 +199.752015 +199.775291 +199.793773 +199.801865 +199.876956 +199.893007 +199.925175 +199.944089 +199.979487 +199.990409 +200.006593 +200.347818 +200.521345 +200.599133 +200.679719 +200.753978 +200.861737 +200.890309 +200.939293 +200.981650 +201.002430 +201.469662 +201.542955 +201.589875 +201.642256 +201.706958 +201.724973 +201.803461 +202.000098 +202.080584 +202.323407 +202.492538 +202.520610 +202.554143 +202.570893 +202.584246 +202.600730 +202.666497 +202.719844 +202.727336 +202.774889 +202.806524 +202.824006 +203.067496 +203.163233 +203.204226 +203.226037 +203.373356 +203.404925 +203.456706 +203.552644 +203.794135 +204.241121 +204.683445 +205.226701 +207.176449 +207.519140 +207.652073 +208.474217 +208.692532 +208.942648 +210.144279 +210.872949 +210.895327 +210.951171 +210.988700 +211.154101 +211.941813 +212.073281 +212.104017 +214.344674 +214.954597 +215.107177 +216.788661 +216.951664 +217.959489 +218.786494 +218.936977 +218.939075 +220.103842 +220.218494 +221.683994 +221.690055 +225.730410 +225.758815 +227.434138 +227.452786 +227.481025 +227.533072 +227.609363 +227.609862 +227.639433 +227.668670 +227.680159 +227.701804 +227.735237 +227.751920 +227.817821 +227.818154 +227.923848 +228.986751 +229.109661 +229.214756 +230.662007 +230.669167 +230.748154 +236.967795 +238.605855 +238.704457 +238.711716 +238.724270 +238.745482 +238.912881 +239.871755 +240.052840 +240.089137 +240.181611 +240.413446 +240.724901 +241.966092 +242.013877 +244.735153 +244.856432 +245.017804 +246.187932 +246.197589 +246.264322 +246.269118 +246.465721 +246.509011 +247.849069 +248.497953 +248.521097 +248.599685 +249.183767 +251.307108 +252.389458 +252.428685 +252.448465 +252.449098 +253.050829 +253.528251 +253.845534 +253.953792 +254.055657 +255.516594 +256.240769 +256.295281 +256.902607 +256.914761 +258.335939 +258.359315 +258.430744 +261.251620 +261.294144 +261.294577 +261.532472 +262.023115 +262.419052 +263.538431 +264.661307 +264.750018 +264.969399 +264.981686 +265.213354 +265.284650 +265.289278 +265.307061 +265.329105 +265.338329 +266.087346 +266.118881 +266.119314 +266.333300 +266.336197 +267.671294 +267.672759 +268.630534 +268.664999 +268.739558 +268.756641 +274.728630 +274.744381 +274.829895 +274.898793 +274.927664 +274.994164 +275.004154 +275.040318 +275.097694 +275.149708 +275.173384 +275.225632 +275.260897 +275.283408 +275.286871 +275.333657 +275.369155 +275.397194 +275.399758 +275.459631 +275.505252 +275.507184 +275.515942 +275.882341 +275.948808 +277.203019 +277.411544 +277.508014 +277.515640 +277.543645 +277.583539 +277.660661 +277.758796 +277.820668 +277.846542 +278.936917 +279.437782 +279.459827 +279.503284 +279.505781 +279.550636 +280.735117 +280.765187 +280.809176 +280.855264 +280.856429 +280.923062 +280.931188 +280.943808 +280.964488 +281.016535 +281.023096 +281.080505 +281.982835 +282.004780 +282.087430 +282.887729 +284.999215 +285.244370 +285.247367 +285.261386 +285.297084 +285.299415 +286.021625 +286.023024 +286.767512 +286.783096 +286.783529 +286.849863 +286.880865 +287.131981 +288.358653 +288.387391 +288.402542 +288.438406 +288.502276 +288.540937 +288.557254 +293.705401 +295.437167 +295.615888 +295.712958 +295.813390 +295.924812 +298.979288 +299.076025 +299.105362 +300.432567 +300.438494 +300.450582 +300.483982 +300.487978 +300.490842 +300.545454 +300.644654 +300.658640 +300.717881 +302.287044 +302.843686 +302.875022 +302.902528 +302.907523 +302.915315 +303.004492 +303.278285 +304.223805 +304.267861 +304.270292 +304.277884 +304.294434 +304.355906 +304.358737 +304.428766 +310.203919 +310.234655 +310.237885 +310.260562 +310.266490 +310.296659 +310.360629 +310.367222 +310.384305 +310.388834 +310.405983 +310.451804 +310.470419 +310.525830 +310.592630 +310.598058 +310.601521 +310.672183 +311.045976 +311.077444 +311.100388 +311.140448 +311.157031 +311.185903 +311.232256 +311.496259 +312.424996 +312.435552 +312.690430 +312.700187 +312.702784 +312.712075 +312.833753 +313.056064 +313.103483 +313.118701 +313.135018 +313.644608 +314.460225 +314.475443 +314.482303 +314.492293 +314.522929 +314.531487 +314.624194 +314.646505 +314.694091 +314.720997 +314.740012 +314.789362 +314.804114 +314.862322 +315.189828 +315.956128 +315.960024 +316.117799 +316.252464 +317.313202 +317.398684 +317.628753 +317.651963 +317.736945 +317.768047 +317.768513 +317.773109 +317.794154 +318.609705 +318.682765 +318.740374 +318.782398 +318.832415 +318.859488 +319.036244 +320.019727 +320.025354 +320.244601 +320.296916 +320.344235 +320.375337 +320.390922 +320.483529 +320.509303 +320.520059 +320.552094 +320.635244 +321.412299 +321.529282 +322.343767 +322.405805 +322.443867 +322.449761 +322.466844 +322.550427 +322.574236 +322.666311 +322.802374 +322.815861 +323.624618 +323.712197 +323.715427 +323.736539 +323.739170 +323.762180 +323.827748 +323.855653 +323.890618 +323.931711 +323.943865 +323.949593 +323.979363 +324.025317 +324.151924 +324.162580 +324.185623 +324.231311 +324.281760 +324.319589 +324.585723 +324.618823 +324.663511 +324.693814 +325.197610 +325.301107 +325.387087 +325.395146 +325.408299 +325.520554 +325.554819 +325.577563 +325.590350 +325.596478 +325.969304 +326.002571 +326.016157 +326.060713 +326.506433 +326.527779 +326.568871 +327.364108 +327.486819 +327.487718 +328.162276 +328.181923 +328.191147 +328.208729 +328.223814 +328.226978 +328.350987 +328.802701 +328.810194 +328.824313 +328.854217 +329.304799 +329.318385 +329.326444 +329.405332 +329.418185 +329.600969 +329.606697 +330.120516 +330.126376 +330.310759 +330.313689 +330.318051 +330.319150 +330.338464 +330.514921 +330.518750 +330.720448 +330.815287 +330.822080 +330.918350 +331.012656 +331.016252 +331.019616 +331.114421 +331.115553 +331.116718 +331.120415 +331.215220 +331.215819 +331.217185 +331.219382 +332.544056 +332.545621 +332.623177 +332.734532 +332.744489 +332.833134 +332.891742 +332.905594 +332.906593 +332.907759 +332.914552 +333.016184 +333.112054 +333.209790 +333.212254 +333.322111 +333.328338 +333.408424 +333.636330 +333.652114 +333.676390 +333.722011 +333.730602 +333.822643 +333.923376 +334.012953 +334.026406 +334.128337 +334.214817 +334.317847 +334.419279 +334.438860 +334.487045 +334.530068 +334.612819 +334.713451 +334.716349 +334.728969 +334.816582 +334.818879 +334.821343 +334.826472 +335.027038 +335.205892 +335.360470 +335.382648 +335.495002 +335.503294 +335.507290 +335.518179 +335.522708 +336.077852 +336.087043 +336.101395 +336.107689 +336.110386 +336.248848 +336.301495 +336.394768 +336.478085 +336.612384 +336.703027 +336.941887 +336.953809 +336.968128 +336.986476 +337.057006 +337.058404 +337.608454 +337.619110 +337.628334 +337.638024 +337.671257 +337.769959 +337.774654 +337.776119 +337.776852 +337.920708 +338.068160 +338.072089 +338.073255 +338.218310 +338.227501 +338.372089 +338.390338 +338.403258 +338.404224 +338.415512 +338.490204 +338.525336 +338.531363 +338.541253 +338.645948 +338.661799 +338.668393 +338.674420 +338.692568 +338.804756 +338.811116 +338.834693 +338.874853 +338.907653 +339.006787 +339.012448 +339.128299 +339.142252 +339.197663 +339.233860 +339.310616 +339.316144 +339.327333 +339.489937 +339.492601 +339.502058 +339.566294 +339.654439 +339.660499 +339.992634 +340.011548 +340.675816 +341.467058 +341.468356 +341.477114 +341.496195 +341.553338 +341.663261 +341.677081 +342.188036 +342.229162 +342.381642 +342.392598 +342.491799 +342.497227 +342.505585 +342.590267 +342.866990 +342.898991 +342.926497 +343.040716 +343.045444 +343.162261 +343.269087 +343.279843 +343.303886 +343.556699 +343.755134 +343.761628 +343.780076 +344.762426 +344.775746 +344.884104 +344.889732 +345.346341 +345.351370 +345.354766 +345.369918 +345.373980 +345.469684 +345.498955 +345.598156 +345.602718 +345.606914 +345.612775 +345.627959 +345.656797 +345.722964 +345.839747 +345.845741 +345.856730 +345.860760 +345.867520 +345.987100 +345.988532 +345.995991 +346.000153 +346.003084 +346.101785 +346.112141 +346.166454 +346.194093 +346.458894 +346.459660 +346.471415 +346.523330 +346.562890 +346.674245 +346.678075 +346.681238 +346.798354 +346.805481 +346.828125 +346.833319 +346.849770 +346.859127 +346.880472 +347.047538 +347.049203 +347.055464 +347.067818 +347.154365 +347.300885 +347.309942 +347.327491 +347.332919 +347.343209 +347.368517 +347.371114 +347.378707 +347.427425 +347.528524 +347.531221 +347.533252 +347.536349 +347.540545 +347.686998 +347.692559 +347.696955 +347.700518 +347.707611 +348.475609 +348.523661 +348.552332 +348.554996 +348.685599 +348.696588 +348.697687 +348.900683 +348.908342 +348.941576 +348.948735 +348.963787 +349.105145 +349.590360 +349.614136 +349.644539 +349.728421 +349.771345 +349.778138 +349.826989 +349.835814 +349.840309 +350.010972 +350.042607 +350.300083 +350.313070 +350.319363 +350.339143 +350.344838 +350.476906 +350.886762 +350.898683 +351.090458 +351.125290 +351.172509 +351.275040 +351.396152 +351.600281 +351.863584 +351.872109 +351.884363 +351.886162 +351.895352 +352.074873 +352.076338 +352.088925 +352.321159 +352.338775 +352.614166 +352.623790 +352.630750 +352.698349 +352.830816 +352.836810 +352.842404 +352.885761 +352.890256 +353.030516 +353.147066 +353.151095 +353.307039 +353.316430 +353.329184 +353.643369 +353.791088 +353.797315 +353.944268 +354.225886 +354.227218 +354.235210 +354.373638 +354.391720 +354.403642 +354.531747 +354.534977 +354.595683 +354.603375 +354.772805 +354.788490 +354.794650 +354.803175 +354.812432 +354.902376 +355.027450 +355.033444 +355.083661 +355.102908 +355.336042 +355.342069 +355.498712 +355.503740 +355.525186 +355.653823 +355.659851 +355.660084 +355.701143 +356.004539 +356.012298 +356.019857 +356.028915 +356.085658 +356.096680 +356.152891 +356.423886 +356.446597 +356.526583 +356.559683 +356.607669 +356.656320 +356.710632 +356.738205 +356.742267 +356.932444 +357.012963 +357.022054 +357.022520 +357.038537 +357.383192 +357.395214 +357.398077 +357.473635 +357.542666 +357.556419 +357.746662 +357.879196 +358.035606 +358.051590 +358.140901 +358.305236 +358.328413 +358.400774 +358.446428 +358.450357 +358.455619 +358.465409 +358.467707 +358.470471 +358.474234 +358.544863 +358.904170 +359.030410 +359.033074 +359.037570 +359.201339 +359.207266 +359.213860 +359.214193 +359.218455 +359.349224 +359.372301 +359.887552 +359.889783 +360.024948 +360.030742 +360.441764 +362.716520 +362.718152 +362.721549 +362.731472 +362.732038 +362.874029 +362.876827 +362.877626 +362.886717 +363.071498 +363.074062 +363.082587 +363.253350 +363.331705 +363.340296 +363.368501 +363.401968 +363.421481 +363.687881 +363.694841 +363.700369 +363.955513 +363.958477 +363.970066 +363.973762 +363.975926 +364.104531 +364.115187 +364.117252 +364.137664 +364.257311 +364.291777 +364.588780 +364.985283 +364.997504 +364.999468 +365.006561 +365.021480 +365.217983 +365.219715 +365.229105 +365.316684 +365.316951 +365.318516 +365.319581 +365.322712 +366.524475 +366.648151 +366.698468 +366.703729 +366.710622 +366.711122 +366.713120 +366.717349 +366.797835 +366.812320 +366.821611 +370.787475 +370.794701 +370.810485 +370.896166 +371.538023 +372.207353 +373.381811 +373.443116 +373.561498 +373.596330 +373.641251 +373.650242 +374.599858 +374.618606 +374.917774 +374.951340 +374.978280 +377.895826 +379.186800 +379.239214 +379.286534 +379.314239 +379.410876 +379.887565 +379.913340 +385.118929 +385.119728 +385.163051 +385.256591 +385.283531 +386.155058 +386.193187 +386.331781 +386.954425 +386.973572 +387.087159 +387.102377 +387.139107 +387.239306 +387.354558 +387.384494 +387.428917 +387.566545 +387.697681 +387.717095 +387.770175 +387.873005 +387.882229 +387.961284 +388.005439 +388.042969 +388.822488 +388.858885 +388.911233 +388.927084 +388.952824 +388.956954 +389.076967 +389.089488 +389.106837 +389.114629 +389.216827 +389.218459 +389.247829 +389.275601 +389.400410 +389.433810 +389.500343 +389.551292 +389.566743 +389.603273 +389.650226 +389.699610 +389.833709 +389.843400 +389.864578 +389.887888 +389.924385 +389.940403 +390.291984 +390.344465 +390.378531 +390.442134 +390.448760 +390.474435 +390.485224 +390.542400 +390.566243 +390.619689 +390.651358 +390.710565 +390.744598 +390.751024 +390.763845 +390.815626 +390.908334 +390.999076 +391.006402 +391.300774 +391.405170 +391.427447 +391.491217 +391.568007 +391.589252 +391.608366 +391.643731 +391.667174 +391.685855 +391.723051 +391.746961 +391.758549 +391.790084 +391.793681 +391.836471 +391.852255 +391.895212 +391.913394 +391.969072 +392.388352 +392.439368 +392.523617 +392.553087 +392.558482 +392.570903 +392.587386 +392.654219 +392.751822 +392.784223 +392.807899 +392.817689 +392.828512 +392.846560 +392.904535 +392.949890 +392.986753 +392.992880 +393.384422 +393.462943 +393.483922 +393.501038 +393.528045 +393.533239 +393.558214 +393.586719 +393.623915 +393.660712 +393.669103 +393.728777 +393.761311 +393.822150 +393.846792 +393.879726 +393.893878 +393.918520 +393.930242 +393.959146 +393.960745 +394.007198 +394.008331 +394.284521 +394.314491 +394.373998 +394.383821 +394.440232 +394.453885 +394.477394 +394.478227 +394.517254 +394.534271 +394.575563 +394.628610 +394.658014 +394.806032 +394.829409 +394.839665 +394.891813 +394.915855 +395.003568 +395.015422 +395.261043 +395.278259 +395.295975 +395.311260 +395.334903 +395.362242 +395.427144 +395.457114 +395.493677 +395.645558 +395.652252 +395.669568 +395.720517 +395.731273 +395.777193 +395.777826 +395.848222 +395.906464 +395.930273 +395.973796 +396.009128 +396.020716 +396.025878 +396.165505 +396.180856 +396.262707 +396.421482 +396.448222 +396.466303 +396.520316 +396.542061 +396.580023 +396.659044 +396.740329 +396.749320 +396.772330 +396.862873 +396.897305 +396.920249 +396.957945 +396.977059 +397.097005 +397.110658 +397.121081 +397.154781 +397.171231 +397.220748 +397.241994 +397.275127 +397.293376 +397.314155 +397.328674 +397.356412 +397.381820 +397.389779 +397.406329 +397.444391 +397.463372 +397.596672 +397.824577 +397.840428 +397.895639 +397.918217 +398.041627 +398.072529 +398.081154 +398.104430 +398.130238 +398.160341 +398.205729 +398.220980 +398.248220 +398.291843 +398.342026 +398.407993 +398.561206 +398.679421 +398.712755 +398.728539 +398.780354 +398.806761 +398.836298 +398.865335 +398.924743 +398.955445 +399.005861 +399.013454 +399.025975 +399.069031 +399.155345 +399.192508 +399.222744 +399.244456 +399.286181 +399.334166 +399.402498 +399.570063 +399.586747 +399.598901 +399.616850 +399.651748 +399.676657 +399.686813 +399.738694 +399.793107 +399.888112 +399.945820 +399.961305 +399.986380 +400.015684 +400.107192 +400.420678 +400.510089 +400.516549 +400.709223 +400.719246 +401.016915 +401.111920 +401.316349 +401.408523 +401.428603 +401.518546 +401.626138 +402.013084 +402.024007 +402.208256 +402.307889 +402.316381 +402.411519 +402.510586 +402.810653 +403.012318 +403.219777 +403.320010 +403.392604 +403.511185 +403.709287 +404.011517 +404.106889 +404.210218 +404.211584 +404.314780 +404.526036 +404.609186 +404.715213 +404.777051 +404.920774 +405.008619 +405.123904 +405.146981 +405.177450 +405.196798 +405.243784 +405.279182 +405.292135 +405.296098 +405.342918 +405.382578 +405.383144 +405.398662 +405.419175 +405.435991 +405.449311 +405.481346 +405.522871 +405.523937 +405.546547 +405.547014 +405.559634 +405.627100 +405.653807 +405.658569 +405.688972 +405.708685 +405.743084 +405.762764 +405.782511 +405.857636 +405.869291 +405.901992 +405.948279 +405.975152 +406.001525 +406.030896 +406.104156 +406.128265 +406.168192 +406.223969 +406.302091 +406.318541 +406.329364 +406.347679 +406.368325 +406.381878 +406.462497 +406.568158 +406.602357 +406.617875 +406.696330 +406.752041 +406.789503 +406.870023 +406.877782 +406.913013 +406.924635 +407.070455 +407.093998 +407.130096 +407.169723 +407.281378 +407.355870 +407.402956 +407.420605 +407.479612 +407.511514 +407.550675 +407.577281 +407.605486 +407.635556 +407.663195 +407.705420 +407.764128 +407.820937 +407.875649 +407.908217 +407.982076 +408.034690 +408.042116 +408.078446 +408.100957 +408.180577 +408.246378 +408.270121 +408.298360 +408.320537 +408.355902 +408.400457 +408.442249 +408.464993 +408.508549 +408.563194 +408.589035 +408.627697 +408.683574 +408.698925 +408.857633 +408.957167 +409.000923 +409.019737 +409.050940 +409.246444 +409.364925 +409.429294 +409.497659 +410.012111 +410.310445 +410.367455 +410.626096 +410.683872 +410.928294 +410.997424 +410.998423 +411.034754 +411.061693 +411.136285 +411.297158 +411.338317 +411.850071 +411.872648 +412.730323 +412.771282 +412.821199 +413.204149 +413.222830 +413.297922 +413.452267 +413.531488 +413.794192 +413.836150 +413.912207 +413.992826 +414.085067 +414.123695 +414.161824 +414.187731 +414.326758 +414.361457 +414.426758 +414.493059 +414.521364 +414.524960 +414.658826 +414.680371 +414.732885 +414.780604 +414.792326 +414.827923 +414.836448 +414.848569 +414.908143 +414.933817 +415.337746 +415.501516 +415.664253 +415.700383 +415.730686 +415.761955 +415.785565 +415.794989 +415.840710 +415.881169 +415.909308 +415.928389 +415.956061 +416.010406 +416.026890 +416.047403 +416.099983 +416.180902 +416.200916 +416.211106 +416.220862 +416.271945 +416.399117 +416.416800 +416.452397 +416.485264 +416.493223 +416.539610 +416.575774 +416.594255 +416.613503 +416.633350 +416.686297 +416.710905 +416.723593 +416.813902 +419.032015 +419.048365 +419.069744 +419.086028 +419.087992 +419.162718 +419.183996 +419.254626 +419.281932 +419.319361 +419.382598 +419.414765 +419.469677 +419.525321 +419.581732 +419.626387 +419.715731 +419.735045 +419.761318 +419.806606 +419.837542 +419.888458 +419.969477 +420.025887 +420.140672 +420.193319 +420.221125 +420.224255 +420.263383 +420.300412 +420.307072 +420.447232 +420.501811 +420.533845 +420.561118 +420.577168 +420.624954 +420.634045 +420.665214 +420.757654 +420.767045 +420.814631 +420.887691 +420.957221 +421.011500 +421.024554 +421.111833 +421.166345 +421.174970 +421.186991 +421.243435 +421.308769 +421.324620 +421.351493 +421.401310 +421.449595 +421.491620 +421.561816 +421.622023 +421.730248 +421.774370 +421.810301 +421.837007 +421.870074 +421.888922 +421.927250 +421.994217 +422.045099 +422.062149 +422.133844 +422.141236 +422.191419 +422.234576 +422.235442 +422.251726 +422.295448 +422.332545 +422.357420 +422.466943 +422.507070 +422.575601 +422.612931 +422.669974 +422.718458 +422.732411 +422.777266 +422.799777 +422.822155 +422.843600 +422.868874 +422.899843 +422.969008 +423.042101 +423.118824 +423.235141 +423.270339 +423.298644 +423.342434 +423.437139 +423.477332 +423.496147 +423.579030 +423.607002 +423.635141 +423.644165 +423.757918 +423.811597 +423.825850 +423.863912 +423.885224 +423.932343 +423.990785 +424.033975 +424.039836 +424.059316 +424.097811 +424.124651 +424.162480 +424.192050 +424.273202 +424.302173 +424.347827 +424.370804 +424.382892 +424.438803 +424.464610 +424.468007 +424.575999 +424.596811 +424.600275 +424.648227 +424.665076 +424.750424 +424.772236 +424.775033 +424.843764 +424.904637 +424.990417 +425.197876 +425.253854 +425.343164 +425.486954 +425.530177 +425.552222 +425.592282 +425.601339 +425.643564 +425.885755 +425.906034 +425.930443 +425.954053 +425.985055 +426.319454 +426.331109 +426.415990 +426.539833 +426.566939 +426.590183 +426.613027 +426.652720 +426.675331 +426.692880 +426.734771 +426.777995 +426.853952 +426.861744 +426.947958 +426.999007 +427.005600 +427.301371 +427.333439 +427.353619 +427.403935 +427.430009 +427.498940 +427.687318 +427.719785 +431.057977 +432.160973 +432.219581 +432.275325 +432.313187 +432.383950 +432.393873 +432.413287 +432.623743 +432.665368 +432.753347 +432.803663 +432.819780 +432.882351 +432.917782 +433.610389 +433.640392 +433.701731 +433.840725 +434.011154 +434.049982 +434.136396 +434.156875 +434.163335 +434.227072 +434.244288 +434.317781 +434.387911 +434.446785 +434.484680 +434.527138 +434.766265 +434.857441 +434.972858 +435.311619 +435.908788 +436.114682 +436.308455 +436.610952 +437.020109 +437.617744 +438.131064 +438.209851 +438.412216 +439.425768 +439.437423 +441.423501 +441.680577 +444.565057 +444.629359 +446.555264 +446.630622 +447.248004 +447.249569 +448.117867 +449.381635 +449.713903 +449.738212 +449.895920 +449.924825 +449.968414 +450.284698 +450.576805 +454.648297 +455.242535 +455.261250 +457.226582 +457.720987 +459.191416 +460.149323 +460.707997 +460.753219 +460.786386 +460.871500 +460.888317 +461.761376 +462.419451 +462.445258 +463.244758 +463.273363 +465.326741 +465.381952 +465.394040 +466.386180 +466.497968 +466.498301 +466.548151 +466.608891 +466.628837 +468.367197 +469.031233 +471.751942 +472.756903 +472.791835 +472.923103 +475.891166 +475.930293 +475.931159 +478.201387 +478.221600 +478.241546 +478.286868 +478.287967 +478.339315 +478.363990 +483.581101 +483.604778 +484.723458 +484.785030 +484.785895 +485.246335 +485.318562 +485.419461 +485.440807 +485.465016 +485.769211 +486.138175 +488.762215 +488.763214 +488.788289 +488.795715 +488.799811 +488.872072 +488.941802 +490.269939 +490.296180 +490.350625 +490.486656 +490.661314 +492.505135 +492.517889 +492.524915 +492.561179 +493.744128 +493.780192 +493.871501 +493.883722 +493.943062 +493.979659 +494.037601 +494.628809 +495.410593 +495.469002 +497.058344 +497.065171 +497.112057 +497.124078 +498.082252 +498.110791 +498.133102 +498.216751 +498.248519 +498.267967 +498.291110 +498.304297 +498.339795 +499.330503 +499.366966 +499.398635 +499.490143 +499.551715 +500.499433 +500.599366 +500.668197 +502.005559 +502.029002 +502.064300 +502.171326 +502.224173 +502.886677 +506.872120 +506.894631 +506.933892 +507.122237 +509.524898 +509.527862 +509.693596 +509.713709 +509.829760 +510.531724 +510.585703 +510.633988 +510.639016 +510.641847 +510.720468 +510.776013 +510.856199 +510.871351 +512.112808 +517.513135 +517.762153 +518.496085 +518.573374 +518.690490 +518.734280 +518.735712 +518.762685 +518.797183 +519.862684 +520.482363 +520.620125 +520.636842 +520.750795 +520.772939 +520.870741 +520.884994 +520.889855 +520.963015 +521.004541 +521.029083 +522.023021 +522.035509 +522.051526 +522.059285 +522.230513 +522.243800 +522.248329 +522.261815 +523.217692 +523.227782 +523.250959 +523.292184 +523.326316 +523.342933 +523.346563 +523.421521 +524.331877 +524.364844 +524.383958 +525.679128 +525.698642 +525.735072 +526.824481 +526.839833 +526.880958 +527.847990 +527.850321 +529.398538 +529.405265 +530.770731 +532.234033 +532.247819 +532.312055 +532.332934 +532.391975 +532.426041 +532.427173 +532.460240 +533.579386 +533.588411 +533.657708 +534.965799 +534.983015 +535.033897 +535.053544 +535.072991 +535.095469 +536.362534 +536.481648 +538.054041 +538.059435 +538.147048 +538.154274 +538.190504 +538.221673 +539.084443 +539.162598 +539.182311 +539.205155 +539.224536 +539.243317 +539.390003 +539.470756 +539.528565 +539.564129 +539.607985 +539.641785 +539.691402 +539.723636 +539.776816 +539.847279 +541.542649 +541.574017 +541.588003 +541.647277 +541.675516 +541.686871 +541.717640 +541.727563 +541.729095 +541.762429 +541.765825 +541.952671 +542.012179 +543.135354 +543.149707 +543.151971 +543.181108 +543.187902 +543.502354 +544.750671 +544.796325 +544.813974 +544.923631 +544.970284 +545.952934 +545.975678 +545.989098 +546.008611 +546.012574 +546.012841 +546.030956 +546.076377 +546.098688 +546.105381 +546.105714 +546.124396 +546.197323 +546.198788 +546.199454 +546.212374 +546.291462 +546.328125 +546.388731 +546.545108 +547.617235 +547.650668 +547.684600 +549.039577 +549.255328 +552.633680 +554.185460 +554.238640 +555.187357 +555.187623 +555.250827 +555.342302 +555.410833 +555.431346 +555.443767 +555.515062 +555.598345 +555.696014 +555.747663 +555.867909 +561.084987 +561.130641 +561.163641 +563.393642 +563.424844 +564.136865 +564.534600 +564.569032 +564.569399 +564.593508 +564.599569 +564.624377 +564.633035 +564.635233 +564.713754 +565.029638 +565.279854 +565.323277 +565.352914 +565.362871 +565.409991 +565.420214 +565.427240 +566.723776 +566.781151 +566.790709 +566.808491 +566.842956 +566.863203 +567.014385 +567.018214 +567.480984 +567.567165 +567.582616 +567.727771 +569.205625 +571.749378 +571.749944 +571.802259 +571.833261 +572.387773 +572.772621 +572.820639 +573.200492 +573.281112 +573.599626 +574.270122 +574.447844 +574.466858 +574.486771 +576.031558 +576.076180 +577.130325 +577.233855 +578.834186 +578.924862 +578.963357 +579.070017 +579.085202 +579.414572 +580.555630 +580.575743 +580.587265 +580.666852 +580.673179 +582.174276 +582.264886 +582.282868 +582.676540 +582.799684 +583.110772 +584.116599 +584.837444 +585.712068 +586.345301 +587.335010 +589.047663 +590.265277 +590.267308 +590.438437 +590.470971 +590.483292 +590.564145 +590.642366 +590.652789 +590.723685 +590.748560 +592.366607 +592.379428 +592.423916 +592.437236 +592.455185 +592.463577 +592.472734 +592.546560 +593.442463 +593.500639 +593.521018 +593.536902 +593.611894 +594.100338 +594.123881 +594.147225 +594.147691 +594.209562 +594.218087 +594.251986 +594.314890 +594.328310 +596.938364 +596.996572 +597.048221 +597.051051 +597.077658 +600.140159 +600.499066 +601.066232 +601.100032 +601.505193 +601.518912 +602.416447 +602.431632 +602.481948 +602.483846 +603.749446 +603.752177 +603.765064 +603.869792 +603.963898 +603.973089 +604.862965 +604.913914 +604.932828 +604.939288 +604.956438 +605.038090 +605.120307 +605.131729 +605.157470 +605.232295 +605.264663 +605.295865 +605.344683 +606.150676 +606.241385 +606.246713 +606.253073 +606.258368 +606.269857 +606.273320 +606.291835 +606.355571 +606.394632 +606.407752 +606.424935 +606.445381 +606.463829 +606.558801 +606.622171 +607.217841 +607.924966 +607.961630 +607.969655 +608.344746 +608.351639 +608.353771 +608.362828 +608.366524 +608.374616 +608.378612 +608.392532 +608.449874 +608.455768 +608.596095 +608.600091 +608.607283 +608.621802 +608.632358 +608.663294 +608.671852 +608.719105 +609.262394 +609.312111 +609.324166 +609.352604 +609.363460 +609.456400 +609.464326 +609.464592 +609.507516 +609.612277 +610.023166 +610.032590 +612.086035 +612.241013 +612.293627 +612.294592 +612.311709 +612.322398 +612.351535 +612.360993 +612.388265 +612.389697 +612.441212 +612.463024 +612.463490 +612.513140 +612.513440 +612.561792 +612.564322 +612.574246 +612.629058 +612.836750 +613.300186 +613.315171 +613.413539 +613.417169 +613.424128 +613.512007 +613.515737 +613.602750 +613.612074 +613.614305 +613.614937 +613.707878 +613.711840 +613.810775 +613.813972 +613.922230 +614.018134 +615.012672 +615.179205 +615.193158 +615.203414 +615.313804 +615.358625 +615.373644 +615.396920 +615.494556 +615.520730 +616.372277 +616.373077 +616.403446 +616.420762 +616.445704 +616.793556 +616.933782 +616.948667 +616.959789 +617.071278 +617.710438 +617.712636 +617.720861 +618.641173 +618.664283 +618.698549 +618.717963 +618.809471 +622.600843 +622.714862 +623.994381 +624.127015 +625.126281 +625.267507 +625.297810 +625.706933 +625.993480 +626.010063 +626.010629 +626.049391 +626.146060 +626.240499 +626.254485 +626.269104 +626.338934 +626.344029 +626.348491 +626.448091 +626.451188 +626.451754 +626.560279 +626.565274 +627.449855 +627.489815 +627.501071 +627.527378 +627.588550 +627.608197 +627.651220 +627.690548 +627.808996 +627.818020 +627.916055 +627.926878 +627.943861 +627.954317 +627.988383 +628.012759 +628.021217 +628.074697 +629.045025 +630.056979 +630.059743 +630.073129 +631.110857 +631.148120 +631.193941 +631.211790 +631.224277 +631.292742 +631.316185 +631.460774 +632.361772 +633.274258 +633.289310 +635.445718 +635.500164 +636.165831 +636.782913 +636.810852 +636.813616 +636.895933 +638.040421 +638.064996 +638.140054 +638.335192 +639.642917 +639.672121 +639.672587 +639.721471 +640.876815 +641.062096 +641.062462 +641.643214 +641.693897 +642.060996 +642.109148 +642.907282 +643.008148 +643.040283 +643.040882 +643.043213 +643.841980 +644.244011 +644.341580 +644.493894 +644.510877 +645.842744 +648.780237 +648.794822 +648.845938 +648.927290 +649.126324 +649.139477 +649.172844 +649.233750 +649.285764 +649.436746 +649.462687 +649.569147 +649.620862 +650.490025 +650.609173 +651.845236 +651.924689 +651.975638 +652.032515 +658.277197 +658.309298 +658.460747 +658.461679 +658.637670 +658.639401 +658.643664 +658.746361 +658.751489 +659.658215 +659.784322 +659.903669 +659.938434 +660.002670 +660.125114 +660.141697 +660.634604 +660.656449 +660.683422 +660.993178 +661.864739 +662.075295 +662.111892 +662.932570 +664.605063 +665.726307 +665.734099 +665.739794 +665.801365 +665.969197 +667.066133 +667.083415 +667.123276 +667.167598 +667.236229 +667.262969 +667.349815 +667.407391 +668.782814 +668.862901 +668.879185 +669.536293 +669.835427 +669.927568 +670.273222 +671.323904 +671.342386 +671.347680 +672.546680 +672.671655 +672.672521 +672.766160 +672.769723 +673.360366 +674.591533 +675.443081 +675.802921 +676.555434 +676.649007 +676.804185 +677.843212 +677.866721 +677.902585 +677.957364 +677.962059 +677.968919 +677.970717 +677.971117 +678.079309 +678.090830 +678.116205 +678.338516 +678.437217 +678.539814 +678.540813 +678.541113 +678.639748 +679.042111 +679.141712 +679.183570 +679.226360 +679.701218 +680.240146 +680.340678 +680.540678 +680.645806 +680.745806 +680.746505 +680.841077 +680.846672 +680.940811 +681.041110 +681.041743 +681.044773 +681.142076 +681.242043 +681.442808 +683.286529 +685.675172 +686.131781 +686.190589 +687.243302 +687.309669 +687.379599 +687.502809 +687.621690 +693.240898 +693.281658 +693.458547 +693.526146 +693.628510 +693.628777 +693.762476 +693.784921 +693.790948 +693.902936 +693.961144 +693.983222 +696.448321 +698.083285 +699.412820 +699.418148 +699.525474 +700.058474 +700.081051 +700.100532 +700.113685 +701.122909 +701.123208 +701.316481 +701.358673 +702.448515 +702.458272 +703.043986 +704.649545 +704.805556 +705.680680 +706.877515 +706.899326 +706.934025 +707.039919 +708.287836 +709.587769 +709.635787 +709.914342 +709.942147 +710.099257 +711.024331 +711.108513 +711.309345 +711.324663 +711.337251 +711.349538 +711.406481 +711.886068 +711.892062 +711.899887 +711.901120 +711.978309 +712.016071 +712.107346 +712.137982 +712.156997 +712.286334 +712.515937 +712.824129 +712.930922 +712.991728 +713.001918 +713.006979 +713.020266 +713.051368 +713.142410 +713.239780 +713.340312 +713.341478 +713.342277 +713.342410 +713.440545 +713.441245 +713.444708 +713.449736 +713.545141 +713.547272 +713.741411 +713.848504 +713.941277 +713.946006 +714.042076 +714.141544 +714.252033 +714.344807 +714.441443 +714.442376 +714.443108 +714.446805 +714.541277 +714.640944 +714.743608 +714.846138 +714.846671 +715.048103 +715.142542 +715.143407 +715.242841 +715.443440 +715.447769 +715.641675 +715.646470 +715.647236 +715.740543 +715.741342 +715.844073 +715.945038 +716.143639 +716.341941 +716.441508 +716.840975 +716.841474 +716.844505 +716.943805 +716.948567 +717.144637 +717.147535 +717.241973 +717.242939 +717.347201 +717.442672 +717.542006 +717.643138 +717.644870 +717.845602 +717.943005 +718.041773 +718.046335 +718.796983 +718.826987 +718.942738 +718.951662 +719.266580 +719.413533 +719.426420 +719.433513 +719.528285 +719.544535 +719.633846 +720.297948 +720.482729 +720.630082 +720.759486 +720.771241 +720.924987 +720.935110 +721.050361 +721.071873 +721.078233 +721.165546 +721.827850 +721.916095 +721.971239 +722.006404 +722.007869 +722.012298 +722.019191 +722.096614 +722.649261 +722.659284 +722.776467 +722.964046 +722.971138 +722.982793 +723.380429 +724.416059 +725.422418 +725.430410 +725.430643 +725.443597 +725.637769 +725.650223 +725.692648 +725.771668 +725.838601 +726.791048 +727.184587 +727.253918 +727.516489 +727.555383 +727.691880 +727.831107 +728.281090 +728.365705 +728.400204 +728.415056 +728.480024 +728.517154 +728.628442 +728.656880 +728.733737 +728.745825 +728.895142 +728.932072 +729.065571 +729.443027 +729.493876 +729.532138 +729.700935 +729.912157 +729.924412 +730.238131 +730.257778 +730.261607 +730.270132 +730.298038 +730.371031 +730.383286 +730.473429 +730.490711 +730.502400 +730.551817 +730.833768 +731.565202 +731.580587 +731.606794 +731.618116 +731.752482 +731.770663 +731.922478 +731.929371 +731.942458 +731.944756 +731.955245 +732.175292 +732.626440 +732.632101 +732.648818 +732.813253 +732.838395 +733.063436 +733.217981 +733.220279 +733.229403 +733.236962 +733.348484 +733.353712 +733.581051 +733.585480 +733.607325 +733.630968 +733.693106 +733.694105 +733.720645 +733.959572 +733.989809 +734.019679 +734.219212 +734.668696 +734.697800 +734.704593 +734.725106 +734.731899 +734.803627 +734.822076 +734.833564 +734.890940 +734.983980 +735.010953 +735.021643 +735.126438 +735.135262 +735.155409 +735.457573 +735.540823 +735.582215 +735.586411 +735.625039 +735.634629 +735.683047 +736.219810 +736.232830 +736.241821 +736.246217 +736.305258 +736.314548 +736.358538 +736.370892 +736.395101 +736.405890 +736.506556 +736.516313 +737.056039 +737.059769 +737.165896 +737.261401 +737.286409 +737.310485 +737.449812 +737.457205 +737.739688 +737.744750 +737.868626 +737.880081 +737.975319 +738.039222 +738.042752 +738.224170 +738.235892 +738.240121 +738.265595 +738.327866 +738.365229 +738.372788 +738.418243 +738.488506 +738.490703 +738.492335 +738.494666 +738.495166 +738.500161 +738.612681 +738.620207 +738.702092 +738.706088 +738.716877 +738.908585 +738.909051 +738.914413 +738.915578 +738.926567 +738.926933 +738.931296 +739.039587 +739.045381 +739.045948 +739.253873 +739.255738 +739.263730 +739.278015 +739.286607 +739.479081 +739.598794 +739.619573 +739.643316 +739.702124 +739.702590 +739.728198 +739.834025 +739.849210 +739.867059 +740.040918 +740.044548 +740.292400 +740.308783 +740.310915 +740.363029 +740.367691 +740.395264 +740.413046 +740.490435 +740.492999 +740.568757 +740.578047 +740.585273 +740.664661 +740.862596 +740.870388 +740.882909 +740.910881 +740.997128 +741.002289 +741.004920 +741.013045 +741.041284 +741.257267 +741.263761 +741.269455 +741.282009 +741.304420 +741.601822 +741.657200 +741.745512 +741.749908 +741.758399 +741.888336 +741.893431 +741.895495 +741.901489 +741.901756 +741.912045 +741.989701 +741.991066 +742.039618 +742.043447 +742.050240 +742.154802 +742.158032 +742.717239 +742.718305 +742.722634 +742.731458 +742.732224 +742.734422 +742.734988 +742.737286 +742.766923 +742.770919 +742.863693 +742.948474 +743.036686 +743.037019 +743.038984 +743.039750 +743.041781 +743.184605 +743.189333 +743.212743 +743.287768 +743.293030 +743.381441 +743.383972 +743.395261 +743.497691 +743.995360 +744.071850 +744.082373 +744.116572 +744.167254 +744.179176 +744.593295 +744.594493 +744.595692 +744.613241 +744.624930 +744.627494 +744.631157 +744.638649 +744.697124 +744.725795 +744.788299 +744.792862 +744.950004 +744.955898 +744.963191 +745.083371 +745.103650 +745.106881 +745.210111 +745.233820 +745.235785 +745.376278 +745.377510 +745.532188 +745.541745 +745.551769 +745.809477 +745.814372 +745.816703 +745.824262 +745.824562 +745.825461 +745.925561 +746.252167 +746.286733 +746.289697 +746.302284 +746.319234 +746.320832 +746.351435 +746.572880 +746.719600 +747.447171 +747.722163 +748.242608 +748.339778 +748.346704 +748.443574 +748.640310 +748.646304 +748.743640 +748.745871 +748.840543 +748.842275 +748.940809 +748.952764 +749.140809 +749.141542 +749.145538 +749.241642 +749.246670 +749.341741 +749.347636 +749.354462 +749.440676 +749.440876 +749.445904 +749.541075 +749.544205 +749.642307 +749.653096 +749.842607 +749.847469 +749.941008 +749.941541 +749.944372 +749.944571 +750.041574 +750.043006 +750.044105 +750.044638 +750.046736 +750.140375 +750.140908 +750.242640 +750.243938 +750.540741 +750.541840 +750.546236 +750.639975 +750.941740 +750.945370 +751.045236 +751.145669 +751.241273 +751.341939 +751.346202 +751.346968 +751.347667 +751.443671 +751.542705 +751.640807 +751.641906 +751.642838 +751.841672 +751.945202 +752.142838 +752.143337 +752.150064 +752.340207 +752.343004 +752.640906 +752.645368 +752.843303 +752.940672 +752.942371 +752.943403 +752.946267 +753.044069 +753.044535 +753.047365 +753.049397 +753.501378 +753.748231 +753.749130 +753.762583 +753.923089 +754.125153 +754.166245 +754.243768 +754.367244 +754.375003 +754.763348 +754.769009 +754.847097 +754.847963 +755.139405 +755.144966 +755.155921 +755.238472 +755.242435 +755.255089 +755.261982 +755.474536 +755.495215 +755.505238 +755.889953 +755.896880 +755.902408 +755.903806 +755.912098 +755.916160 +756.100642 +756.107702 +756.151825 +756.158718 +756.164678 +756.182794 +756.275201 +756.277599 +756.454721 +756.456586 +756.465377 +756.492017 +756.519523 +756.526716 +756.779296 +756.870738 +756.903372 +757.039403 +757.043765 +757.167408 +757.875766 +757.905036 +758.043464 +758.621386 +758.727613 +758.773434 +758.801073 +759.239567 +759.319853 +759.440033 +759.470203 +759.496643 +759.753985 +760.323615 +760.812792 +760.993178 +761.041097 +761.070534 +761.128043 +761.188383 +761.656514 +761.672032 +761.733004 +761.737866 +761.751519 +761.848789 +761.855615 +761.875762 +761.876328 +761.924912 +761.925512 +762.085085 +762.150420 +762.265671 +762.304765 +762.448921 +762.622148 +762.823080 +762.836700 +762.882853 +762.909294 +762.926576 +762.990446 +763.100536 +763.170565 +763.644291 +763.702333 +763.721148 +763.782220 +764.066535 +764.129572 +764.154880 +764.248686 +764.293408 +764.299069 +764.326275 +764.703764 +764.716618 +764.763737 +764.775592 +764.909192 +764.916318 +764.924776 +764.927340 +765.057410 +765.138462 +765.139028 +765.149385 +765.402764 +765.439561 +765.579554 +765.583284 +765.584149 +765.590976 +765.761971 +765.780553 +766.114785 +766.134998 +766.524142 +766.728371 +766.891974 +766.898833 +767.167431 +767.218081 +767.228970 +767.242589 +768.339391 +768.510154 +768.614683 +768.636294 +768.848782 +768.892738 +768.917579 +768.974522 +768.997832 +769.319410 +769.504891 +769.717812 +770.226403 +770.296832 +770.302826 +770.319443 +770.322506 +770.604757 +770.606655 +770.610285 +770.618377 +770.636126 +771.082779 +771.091303 +771.094600 +771.518476 +771.866960 +771.990070 +771.997929 +772.152142 +772.152841 +772.164096 +772.166927 +772.170656 +772.505088 +772.523969 +772.682877 +773.038288 +773.200625 +773.204721 +773.205853 +773.251075 +773.261165 +773.833325 +773.842017 +773.842450 +774.038420 +774.038853 +774.171087 +774.183941 +774.240351 +774.245013 +774.258034 +774.418972 +774.466492 +774.481876 +774.986904 +775.150607 +775.155169 +775.239052 +775.249042 +775.261995 +775.300923 +776.657698 +776.689000 +776.703586 +776.740815 +779.681538 +779.739380 +780.351134 +781.584833 +786.646999 +789.814095 +791.077431 +791.105702 +791.120521 +798.465602 +800.193406 +800.292573 +800.453245 +800.461504 +800.498667 +800.500864 +803.069160 +803.106689 +803.131897 +803.195567 +803.270292 +803.294435 +803.303059 +803.396766 +803.407189 +803.442220 +803.495300 +803.509020 +803.550845 +803.637858 +803.665730 +803.666462 +803.722306 +803.749180 +803.790671 +803.821108 +803.835826 +803.882180 +803.890438 +803.918677 +803.948247 +804.056206 +804.098796 +804.101194 +804.143751 +804.160002 +804.194001 +804.297764 +804.322839 +804.371490 +804.372556 +804.383844 +804.448713 +804.518476 +804.565529 +804.594067 +804.647114 +804.688606 +804.724037 +804.741686 +804.821773 +804.871989 +804.889971 +804.936025 +804.967427 +805.008952 +805.067593 +805.128865 +805.162432 +805.190270 +805.214613 +805.257137 +807.512779 +807.536289 +807.563295 +807.670821 +807.735456 +807.755869 +807.843847 +807.866258 +807.884507 +807.912212 +807.966192 +807.992898 +808.251007 +808.350907 +808.397393 +808.435489 +808.454636 +808.498192 +808.592898 +808.643347 +808.731859 +808.782075 +808.920436 +808.925465 +808.938885 +809.009914 +809.011279 +809.199757 +809.221169 +809.265491 +809.300656 +809.504119 +809.565624 +809.583639 +809.627928 +809.678744 +809.783972 +809.806716 +810.259296 +810.831490 +811.374846 +811.394393 +811.398056 +811.434120 +811.447440 +811.478376 +811.497290 +811.521366 +811.541846 +811.553567 +811.582638 +811.612142 +811.628293 +811.758595 +811.857663 +811.916837 +811.970184 +812.040214 +812.426793 +812.437782 +812.511309 +812.542178 +812.576344 +812.705115 +812.762590 +812.796889 +812.904149 +813.246673 +813.302517 +813.363655 +813.592127 +813.604648 +813.619799 +813.668051 +813.703715 +813.782769 +813.822696 +813.938247 +813.942942 +813.961524 +814.143375 +814.183934 +814.237048 +814.284234 +814.291993 +814.356062 +814.382036 +814.517301 +814.592459 +814.623361 +814.713704 +814.866817 +814.920664 +814.971812 +815.042708 +815.162888 +815.220130 +815.296887 +815.369481 +815.480070 +815.534782 +815.578172 +815.604979 +815.639677 +815.700783 +815.741342 +815.784366 +815.810806 +815.824992 +815.851665 +815.865151 +815.894489 +815.912637 +815.919997 +815.938978 +815.942940 +815.984665 +816.038778 +816.106277 +816.144938 +816.211039 +816.377339 +816.424558 +816.459590 +816.525790 +816.914601 +817.968213 +818.138909 +818.337810 +818.339108 +818.341306 +818.437976 +818.638975 +818.940440 +819.339407 +821.541902 +824.883457 +824.942565 +825.253154 +826.719819 +826.835903 +826.880891 +826.892047 +826.983788 +826.991680 +827.017421 +827.053119 +827.115856 +827.233738 +827.244527 +827.323548 +827.355483 +827.387351 +827.463375 +827.528643 +827.557681 +827.608763 +827.649322 +827.666139 +827.696575 +827.894410 +833.304228 +833.368664 +833.704095 +838.221872 +838.624636 +838.864762 +838.939154 +839.026267 +839.072121 +839.094366 +839.135724 +839.188338 +839.204955 +839.310616 +839.396263 +839.406353 +839.473386 +839.525634 +839.532760 +839.632494 +839.668458 +839.668691 +839.749776 +839.812880 +839.813546 +839.955537 +839.978081 +840.015477 +840.075717 +840.076150 +840.135990 +840.234225 +840.364661 +840.395896 +840.422470 +840.545813 +840.588037 +840.630228 +840.637488 +840.711280 +840.857734 +840.906052 +840.940817 +840.972086 +841.054270 +841.212812 +841.234490 +841.251373 +841.273784 +841.308050 +841.370088 +841.423634 +841.549042 +841.562129 +841.587170 +841.727929 +841.738619 +841.766158 +841.777380 +841.809981 +841.869421 +841.944613 +841.975448 +842.030726 +842.047609 +842.081376 +842.108082 +842.154236 +842.196627 +842.221768 +842.249641 +842.279511 +842.314043 +842.326064 +842.338219 +842.355701 +846.764987 +846.809643 +846.900585 +846.920265 +846.977042 +847.308943 +847.363022 +847.464853 +847.522596 +847.580305 +847.657561 +847.685166 +847.733718 +847.829455 +848.003814 +848.020564 +848.200584 +848.219132 +848.323960 +848.358392 +848.418432 +848.582268 +848.750733 +848.844506 +850.287794 +853.241571 +853.242037 +853.339173 +853.539706 +853.840205 +853.941670 +854.043235 +854.140604 +857.044131 +858.554819 +859.280826 +859.356716 +859.379394 +860.664174 +860.709795 +861.375129 +861.394776 +861.406032 +862.263573 +868.344586 +868.421376 +868.586877 +868.618745 +868.653810 +868.816514 +868.938625 +868.939124 +870.535027 +870.618943 +872.973353 +874.093232 +875.828828 +875.856034 +875.912344 +875.918771 +875.959464 +877.368820 +877.546375 +878.118769 +878.205815 +878.809444 +880.016203 +883.311737 +886.337608 +886.435477 +886.449097 +886.608437 +886.768977 +887.203841 +887.223255 +887.231147 +888.027916 +888.101509 +888.128782 +889.275834 +889.410699 +891.778229 +891.788252 +891.828612 +892.056817 +892.189051 +892.944195 +895.140663 +895.145125 +896.189746 +896.259610 +897.649885 +903.195500 +903.361601 +903.391105 +903.513449 +903.603525 +903.612117 +904.763564 +904.801659 +904.843750 +904.981513 +906.306087 +906.314911 +906.356736 +906.370156 +907.715110 +907.715909 +907.716375 +907.781943 +907.853205 +909.065658 +910.172017 +910.172849 +910.237718 +910.247175 +910.247708 +910.299756 +910.342246 +910.348707 +914.618133 +914.621729 +914.633384 +914.671646 +914.892658 +915.051832 +915.504912 +915.525425 +915.540310 +915.585631 +915.609740 +915.653830 +917.681333 +918.519295 +918.743004 +918.759388 +918.797483 +920.291487 +920.356622 +921.410500 +921.428982 +921.435043 +921.440004 +921.453524 +921.473537 +921.479198 +921.518959 +921.581429 +921.717260 +921.781429 +921.781696 +921.840703 +923.005770 +923.029347 +923.071771 +923.111431 +925.394013 +925.481326 +927.718453 +927.728410 +927.802202 +928.725778 +928.853617 +928.866004 +928.911059 +928.977060 +929.012657 +929.072897 +929.754082 +929.811957 +929.841694 +929.843459 +929.845291 +929.851717 +929.857045 +929.875993 +929.882653 +929.906396 +931.126641 +931.225176 +931.314187 +931.364104 +932.760373 +932.767632 +932.768531 +932.893106 +932.925840 +932.944055 +932.973126 +938.239621 +938.291569 +938.317343 +938.396797 +938.559334 +938.871888 +938.919174 +938.921672 +938.993433 +938.993933 +939.195631 +939.208018 +940.076649 +940.218740 +940.381111 +941.480377 +941.662095 +943.389733 +943.427595 +943.468687 +944.617304 +944.625795 +944.790331 +944.910177 +947.486632 +947.503148 +947.534584 +947.589695 +947.685566 +947.701283 +947.706112 +947.837813 +947.839845 +947.925659 +948.961156 +948.978904 +949.154795 +949.168481 +949.260922 +949.262321 +949.425757 +950.173875 +950.221361 +950.352996 +950.456226 +951.527720 +951.567979 +951.568246 +951.721393 +951.752295 +951.800147 +951.813967 +951.848199 +951.866614 +951.888192 +951.900347 +952.784662 +952.791521 +952.810702 +952.851361 +952.858621 +953.012134 +953.802809 +953.899612 +953.991187 +954.030947 +954.054124 +954.066678 +954.067078 +954.100911 +954.113764 +954.129582 +954.167311 +954.630780 +956.407036 +956.428514 +958.067007 +958.079461 +958.098076 +958.338302 +958.540234 +958.640500 +958.841532 +959.042830 +959.341731 +962.533570 +962.555281 +962.592344 +962.599404 +962.748288 +962.845690 +963.413156 +963.428008 +965.341059 +966.811221 +967.085979 +967.754410 +973.336589 +973.349176 +973.372353 +973.441018 +973.447844 +973.449310 +973.555204 +973.601857 +973.815443 +973.820605 +973.953571 +974.026032 +974.967257 +974.968955 +975.625897 +975.663493 +975.725298 +975.795428 +975.808648 +975.809214 +977.055300 +978.710976 +980.280838 +980.282803 +980.283335 +980.357661 +980.358127 +980.393392 +980.473978 +981.537846 +981.573111 +981.706111 +982.854229 +982.866316 +982.876406 +982.921328 +982.952597 +983.960921 +983.961553 +984.003811 +984.004244 +984.095353 +984.767780 +986.139107 +986.274971 +986.293153 +987.629915 +987.656821 +987.714430 +987.811267 +987.833078 +987.848263 +987.853291 +987.891586 +987.916128 +988.157553 +988.175269 +988.263014 +988.653357 +990.147461 +990.192217 +990.249226 +990.275333 +990.282559 +990.322653 +990.399809 +990.444697 +992.179327 +992.180227 +992.195278 +993.140266 +993.145527 +993.338401 +993.438567 +993.539200 +993.639732 +993.740764 +993.941763 +994.344893 +994.446591 +994.742129 +994.841729 +997.849119 +997.945389 +998.548186 +998.574459 +999.173959 +999.186646 +999.195205 +999.231801 +999.236363 +999.247319 +999.253546 +999.254046 +999.281685 +999.315617 +1000.549682 +1000.574824 +1000.577288 +1000.634897 +1000.769895 +1000.773425 +1002.786310 +1002.824871 +1002.842753 +1002.859703 +1002.872823 +1006.253339 +1008.155668 +1008.275482 +1008.276115 +1008.337786 +1008.365159 +1008.379245 +1008.447010 +1008.489301 +1008.537520 +1008.543580 +1008.552704 +1008.575914 +1008.657133 +1008.696993 +1008.700090 +1008.846410 +1008.861995 +1008.888102 +1009.051405 +1009.694228 +1009.774415 +1010.041547 +1010.989598 +1011.008846 +1011.040614 +1011.111809 +1011.125362 +1011.130124 +1011.154467 +1011.246441 +1011.247141 +1011.310044 +1011.467387 +1011.529058 +1011.584836 +1011.586900 +1012.474246 +1012.514372 +1012.563922 +1012.566187 +1012.587998 +1012.624795 +1012.649770 +1012.671748 +1012.723429 +1012.728325 +1012.813173 +1012.856596 +1012.881538 +1012.918767 +1012.931954 +1013.325993 +1013.765786 +1013.802716 +1013.926292 +1014.572079 +1014.573145 +1014.654663 +1014.833917 +1014.864753 +1015.650266 +1015.658059 +1015.697119 +1015.738611 +1015.752730 +1015.765251 +1015.865584 +1017.285929 +1017.329752 +1017.431150 +1017.445736 +1017.512069 +1018.755391 +1018.824322 +1019.239840 +1019.393286 +1019.402144 +1019.503376 +1019.850362 +1020.664813 +1020.717361 +1020.733911 +1021.572205 +1023.222786 +1023.226982 +1023.231711 +1023.293316 +1024.322719 +1025.197243 +1025.198675 +1026.529343 +1026.829642 +1028.138566 +1028.241363 +1028.338299 +1031.493141 +1032.446653 +1032.453846 +1032.753213 +1036.595500 +1042.972350 +1043.198191 +1043.218937 +1043.281741 +1043.286369 +1043.288867 +1043.294028 +1043.418903 +1043.459196 +1043.468420 +1043.612643 +1046.311008 +1047.264720 +1047.932518 +1048.257493 +1048.596820 +1048.664752 +1048.712571 +1050.394121 +1050.905842 +1050.919062 +1050.955859 +1051.036245 +1051.050098 +1051.078669 +1051.138476 +1051.152196 +1051.316331 +1051.369112 +1051.442905 +1051.547233 +1051.562452 +1051.647267 +1051.660453 +1051.671209 +1051.685129 +1051.747400 +1051.761486 +1051.774273 +1051.807273 +1051.852828 +1051.898082 +1051.898482 +1051.962085 +1051.963317 +1051.982664 +1052.034945 +1052.065048 +1052.543703 +1052.603976 +1052.604575 +1052.655857 +1052.734711 +1052.776103 +1052.782031 +1052.813766 +1052.839307 +1052.883229 +1052.928085 +1052.929217 +1052.967712 +1052.996083 +1053.176436 +1053.189689 +1053.254957 +1054.177401 +1055.613696 +1058.457283 +1058.504303 +1058.760446 +1058.811395 +1058.839567 +1058.875798 +1058.913094 +1058.918688 +1059.020986 +1059.040633 +1059.114592 +1059.339100 +1059.358381 +1059.401105 +1059.446992 +1059.483955 +1059.528244 +1059.568304 +1059.590382 +1059.595877 +1059.844395 +1060.881057 +1060.932572 +1061.840963 +1061.892178 +1062.226610 +1062.323946 +1062.388881 +1062.464239 +1062.503400 +1062.511725 +1062.572630 +1062.592277 +1062.677858 +1063.638663 +1064.240161 +1064.640327 +1064.839894 +1065.039727 +1065.139761 +1065.437662 +1065.439461 +1065.540393 +1065.638961 +1065.839793 +1065.939560 +1066.238994 +1066.339327 +1066.439460 +1066.538960 +1066.741424 +1066.840591 +1066.940658 +1067.039226 +1067.139692 +1069.682480 +1069.710385 +1071.554173 +1071.565695 +1071.589338 +1071.658935 +1071.694966 +1071.710383 +1071.759967 +1071.780180 +1071.834293 +1071.879947 +1071.947446 +1071.972155 +1071.990670 +1072.018242 +1072.054339 +1072.074319 +1072.080946 +1072.123770 +1072.154639 +1072.197196 +1072.221838 +1072.327366 +1072.338555 +1072.358135 +1072.389071 +1072.413779 +1072.424702 +1072.425168 +1072.454272 +1072.490269 +1072.585075 +1072.627765 +1072.705621 +1072.746779 +1072.799793 +1072.838787 +1072.874851 +1072.908817 +1072.911714 +1072.962796 +1073.005520 +1073.567425 +1073.868823 +1074.736288 +1075.061662 +1075.164959 +1075.411812 +1075.477413 +1076.286370 +1078.244176 +1078.371149 +1078.414706 +1078.456464 +1081.482135 +1081.560790 +1082.690559 +1082.725291 +1083.453895 +1083.499782 +1083.518763 +1083.645636 +1084.483464 +1084.489858 +1084.515366 +1084.524124 +1084.693987 +1084.699082 +1084.706141 +1084.777803 +1085.102278 +1085.181166 +1086.223656 +1086.248631 +1086.311934 +1086.380432 +1086.470642 +1086.591787 +1086.621790 +1086.769642 +1086.806272 +1086.820991 +1086.857022 +1086.892919 +1086.931547 +1086.936276 +1087.139839 +1087.148363 +1087.185193 +1087.203874 +1087.274737 +1087.300944 +1087.343468 +1087.361084 +1087.391020 +1087.524853 +1087.533445 +1087.557620 +1087.589821 +1087.593385 +1087.605539 +1087.624287 +1087.625419 +1087.633511 +1087.665612 +1087.680531 +1087.760850 +1087.779631 +1087.797014 +1087.869109 +1087.973904 +1088.007936 +1088.178232 +1088.237207 +1088.423320 +1088.462781 +1088.474569 +1088.603307 +1088.615661 +1088.634509 +1088.734276 +1088.808901 +1088.827416 +1088.876533 +1088.931712 +1088.959351 +1088.976567 +1089.008701 +1089.178564 +1089.401275 +1089.421255 +1089.575034 +1089.609466 +1089.672004 +1089.680495 +1089.797911 +1089.838637 +1089.896812 +1089.934974 +1089.947728 +1090.038637 +1090.190718 +1090.350458 +1090.357717 +1090.404471 +1090.659249 +1090.675499 +1090.737571 +1090.800607 +1090.815592 +1090.825150 +1090.873368 +1090.904337 +1090.995945 +1091.003671 +1091.390983 +1091.445029 +1091.488086 +1091.547127 +1091.613061 +1091.664343 +1091.716258 +1091.745528 +1091.836970 +1091.848292 +1091.871702 +1091.886887 +1091.928312 +1091.953653 +1092.010963 +1092.193879 +1092.261179 +1092.320586 +1092.349557 +1092.408365 +1092.428112 +1092.554985 +1092.646227 +1092.671801 +1092.728511 +1092.778328 +1092.860412 +1092.868970 +1092.957382 +1093.216023 +1093.221451 +1093.298507 +1093.340465 +1093.438833 +1093.466139 +1093.532340 +1093.598507 +1093.674397 +1093.705633 +1093.820718 +1093.871101 +1093.893645 +1094.002236 +1094.033471 +1094.080657 +1094.091979 +1094.113391 +1094.176062 +1094.285319 +1094.349655 +1094.395609 +1094.418786 +1094.512159 +1094.529575 +1094.577527 +1094.638199 +1094.657813 +1094.669035 +1094.689448 +1094.693477 +1094.711126 +1094.722582 +1094.774530 +1094.802535 +1094.967170 +1095.140397 +1095.208229 +1095.318951 +1095.377226 +1095.421915 +1095.497672 +1098.239128 +1098.535998 +1098.537663 +1098.637363 +1098.937895 +1099.238728 +1099.339627 +1099.439094 +1100.238227 +1100.338660 +1100.439259 +1113.300718 +1113.382070 +1113.656862 +1117.716165 +1117.735079 +1117.742106 +1117.750264 +1119.237376 +1119.313666 +1120.638773 +1120.646731 +1120.744933 +1122.843266 +1122.866276 +1122.924085 +1123.207735 +1124.663544 +1124.831809 +1124.845861 +1124.923817 +1125.834339 +1126.995010 +1127.026212 +1127.073631 +1127.100205 +1127.125080 +1127.167238 +1128.427376 +1129.589446 +1129.609060 +1129.624112 +1129.661308 +1129.663339 +1129.764138 +1129.795474 +1131.714053 +1137.445050 +1138.607952 +1138.655338 +1139.917874 +1139.960065 +1139.971254 +1139.987938 +1140.132759 +1140.158600 +1140.170954 +1141.211513 +1141.215209 +1141.224633 +1141.261063 +1141.430394 +1148.290094 +1148.291725 +1148.453896 +1148.482901 +1148.511306 +1148.520530 +1148.578472 +1148.659058 +1148.698685 +1148.716134 +1148.718232 +1148.720130 +1148.732051 +1148.733050 +1148.740376 +1148.755395 +1148.776240 +1148.787762 +1148.804845 +1148.812837 +1148.991825 +1149.100682 +1150.114301 +1151.152295 +1152.236277 +1152.236577 +1152.268245 +1152.358088 +1155.317160 +1155.351892 +1155.411099 +1156.038671 +1156.137305 +1157.263178 +1157.287121 +1157.301407 +1157.617257 +1158.175831 +1158.431742 +1158.710463 +1159.368238 +1159.409130 +1160.728510 +1160.751353 +1160.823181 +1160.823381 +1161.926244 +1161.959011 +1162.149853 +1163.040862 +1163.041228 +1163.146323 +1163.217418 +1163.233968 +1163.270731 +1163.602499 +1165.637529 +1165.643456 +1165.652314 +1165.752680 +1165.789543 +1166.047918 +1166.841923 +1166.842623 +1166.849016 +1166.852746 +1166.870062 +1166.888377 +1166.922643 +1166.926672 +1166.969829 +1167.143222 +1168.042122 +1168.129801 +1168.136994 +1168.235995 +1168.236294 +1168.238359 +1168.239125 +1168.323307 +1168.639557 +1168.739257 +1169.138891 +1169.543020 +1169.649746 +1169.746050 +1169.841121 +1169.944051 +1170.044551 +1170.240222 +1171.245349 +1171.345549 +1171.444383 +1171.445182 +1171.470557 +1171.596431 +1171.647746 +1171.943916 +1172.643416 +1172.740719 +1172.747945 +1172.780212 +1173.988969 +1174.042349 +1174.145013 +1174.160364 +1175.322934 +1175.339451 +1175.405485 +1175.437219 +1175.561795 +1175.698691 +1175.750173 +1175.751072 +1175.757066 +1176.760362 +1177.101254 +1177.192762 +1183.274241 +1183.289126 +1183.309639 +1183.314967 +1183.370578 +1183.388494 +1183.392256 +1183.402047 +1183.415533 +1183.419762 +1183.432383 +1183.511404 +1183.515933 +1183.518963 +1183.602413 +1183.618264 +1183.624657 +1183.632583 +1183.636778 +1183.778403 +1183.813701 +1183.818230 +1183.820428 +1183.825523 +1183.934414 +1183.937710 +1183.969212 +1184.025822 +1184.026721 +1184.076039 +1184.242039 +1184.407906 +1184.822858 +1184.832914 +1184.905675 +1185.363450 +1185.702377 +1185.740040 +1186.537608 +1186.568943 +1186.574771 +1186.600911 +1186.605340 +1186.629583 +1186.733379 +1186.737907 +1186.834777 +1187.284294 +1187.288490 +1187.311267 +1187.372839 +1187.405972 +1187.433445 +1187.440271 +1187.480964 +1188.189754 +1188.218858 +1188.394915 +1189.405804 +1189.420189 +1189.438171 +1189.441668 +1189.441867 +1189.444665 +1189.467342 +1189.628081 +1189.672204 +1189.744631 +1190.657750 +1190.690118 +1190.746528 +1190.756618 +1190.841000 +1190.965909 +1191.032176 +1191.045995 +1191.669504 +1191.688252 +1191.732375 +1191.807200 +1191.809464 +1191.810097 +1191.820686 +1191.824449 +1191.825215 +1191.892614 +1192.012461 +1192.016557 +1192.022551 +1192.122551 +1192.608731 +1192.732540 +1192.738434 +1192.747192 +1193.039033 +1193.042563 +1193.160145 +1194.293811 +1194.310894 +1194.345992 +1194.375429 +1194.402169 +1194.417953 +1194.433737 +1194.476728 +1194.512325 +1194.634137 +1194.649555 +1194.654250 +1194.685718 +1194.747257 +1194.759611 +1194.851086 +1194.878559 +1194.884353 +1194.888882 +1194.894809 +1194.921682 +1195.197906 +1195.227576 +1195.254083 +1195.303866 +1195.323114 +1195.323846 +1195.333870 +1195.347389 +1195.347955 +1195.378625 +1195.440196 +1195.440663 +1195.451785 +1195.471598 +1195.578425 +1195.647655 +1195.668601 +1195.672664 +1195.705930 +1195.723346 +1195.726443 +1195.727242 +1195.900502 +1196.038731 +1196.040762 +1196.185850 +1196.196040 +1196.210858 +1196.226409 +1196.250818 +1196.251418 +1196.258844 +1196.352250 +1196.359743 +1196.450385 +1196.481221 +1196.876725 +1196.878723 +1196.940828 +1196.950884 +1196.967901 +1197.036732 +1197.041094 +1197.152416 +1197.184117 +1197.193974 +1197.196072 +1197.197604 +1197.306495 +1197.337397 +1197.341660 +1197.522745 +1197.529172 +1197.818449 +1198.002265 +1198.007160 +1198.023877 +1198.207327 +1198.225975 +1198.233434 +1198.267666 +1198.314519 +1198.342824 +1198.375325 +1198.377423 +1198.383550 +1198.384349 +1198.388146 +1198.397936 +1198.725874 +1198.727273 +1198.729804 +1198.730936 +1198.736297 +1198.743024 +1198.755578 +1198.765135 +1198.779520 +1198.825208 +1198.831402 +1198.848085 +1199.172460 +1199.173626 +1199.176157 +1199.205461 +1199.213153 +1199.223776 +1199.253180 +1199.264935 +1199.271595 +1199.275491 +1199.286979 +1199.329070 +1199.345920 +1199.422710 +1199.469796 +1199.529969 +1200.068464 +1200.549016 +1200.563002 +1200.620777 +1200.647817 +1200.659672 +1200.660304 +1200.669329 +1200.672159 +1200.681650 +1200.686012 +1200.689342 +1200.690208 +1200.711820 +1200.745752 +1200.751780 +1200.755043 +1200.777088 +1200.996468 +1201.022142 +1202.073989 +1202.089307 +1202.108288 +1202.121076 +1202.123640 +1202.128535 +1202.141222 +1202.146950 +1202.184379 +1202.213816 +1202.255041 +1202.279484 +1202.313117 +1203.139556 +1203.339489 +1203.438623 +1203.566029 +1203.737691 +1203.750378 +1203.838623 +1203.839289 +1204.040488 +1204.140920 +1204.980114 +1205.007420 +1205.014746 +1205.023370 +1205.441219 +1206.541884 +1206.746312 +1207.540484 +1207.543581 +1207.740983 +1207.939185 +1207.939684 +1208.040217 +1208.705818 +1209.794361 +1209.801154 +1209.818137 +1209.964524 +1209.964924 +1209.971218 +1210.082340 +1210.092962 +1211.533121 +1211.760160 +1211.765921 +1211.914805 +1212.015205 +1212.080673 +1212.200320 +1212.202417 +1212.205981 +1212.213573 +1212.240679 +1212.421531 +1212.471715 +1213.035883 +1213.655097 +1214.067251 +1214.210974 +1214.556994 +1214.753597 +1214.768549 +1214.786098 +1214.849002 +1215.085432 +1215.119131 +1215.172145 +1215.200816 +1215.418365 +1215.494922 +1215.899050 +1215.963985 +1216.177139 +1216.239077 +1216.320129 +1216.670278 +1216.957424 +1217.098217 +1217.147767 +1217.148333 +1217.200281 +1217.256125 +1217.407008 +1217.422792 +1217.484730 +1217.508340 +1217.524723 +1217.586761 +1218.282265 +1218.286794 +1218.298449 +1218.306874 +1218.342072 +1218.362118 +1218.471109 +1218.490590 +1218.554592 +1218.570310 +1218.585528 +1218.717929 +1218.754559 +1218.764349 +1218.781498 +1218.858921 +1218.864149 +1218.875338 +1218.979001 +1218.996483 +1218.997416 +1219.106040 +1219.111601 +1219.516363 +1219.613466 +1219.637142 +1219.747831 +1219.841437 +1219.856855 +1219.971807 +1219.983762 +1220.033445 +1220.353558 +1220.877933 +1220.883827 +1220.890121 +1221.009835 +1221.163647 +1221.171772 +1221.307303 +1221.764413 +1222.520156 +1222.595847 +1222.608334 +1222.717192 +1222.730179 +1223.381161 +1223.388220 +1223.423785 +1223.778829 +1224.435439 +1224.464210 +1224.565742 +1224.639168 +1224.656584 +1224.679994 +1224.685855 +1224.774067 +1224.783624 +1224.798908 +1224.931109 +1224.972634 +1224.975831 +1224.985855 +1225.008032 +1225.108931 +1225.113360 +1225.121818 +1225.982091 +1226.004535 +1226.014125 +1226.095277 +1226.097542 +1226.225414 +1226.231674 +1226.236836 +1226.311694 +1226.314991 +1226.318887 +1226.428244 +1226.450255 +1226.451055 +1226.456749 +1226.464874 +1226.471601 +1226.477362 +1226.581457 +1226.675530 +1226.715856 +1226.725979 +1226.864807 +1227.236135 +1227.241530 +1227.243928 +1227.313525 +1227.326278 +1227.382123 +1227.386252 +1227.392679 +1227.395476 +1227.696175 +1228.210660 +1228.228675 +1228.229408 +1228.257513 +1228.290746 +1228.296740 +1228.302102 +1228.303167 +1228.437000 +1228.442062 +1228.446091 +1228.455548 +1228.546324 +1228.555148 +1228.594342 +1228.600336 +1228.822780 +1229.037765 +1229.041495 +1229.236133 +1229.269100 +1229.282487 +1229.288747 +1229.419183 +1229.422380 +1229.432637 +1229.643958 +1229.668634 +1229.680389 +1229.694375 +1229.769866 +1229.779423 +1230.039463 +1230.042093 +1230.050152 +1230.220215 +1230.221414 +1230.234534 +1230.319149 +1230.433834 +1230.439828 +1230.506195 +1230.519649 +1230.520681 +1230.667534 +1230.700567 +1230.713721 +1230.734300 +1232.038395 +1232.225707 +1233.037262 +1233.044554 +1233.206859 +1233.207958 +1233.218447 +1233.221078 +1233.365633 +1233.378187 +1233.518114 +1233.522443 +1233.551580 +1233.566365 +1233.586645 +1233.587911 +1233.596935 +1233.925606 +1233.946418 +1234.000797 +1234.014017 +1234.025639 +1234.189042 +1234.238792 +1234.317114 +1234.608755 +1234.610554 +1234.668829 +1234.684912 +1234.693104 +1234.698266 +1234.860104 +1234.873124 +1234.875721 +1234.876521 +1234.917679 +1235.817945 +1235.834295 +1235.840656 +1235.857838 +1235.982946 +1236.139523 +1236.146583 +1236.151544 +1236.368727 +1236.374122 +1236.402327 +1236.415014 +1236.427735 +1236.444185 +1236.563832 +1236.656839 +1237.110085 +1237.113182 +1237.114680 +1237.273122 +1237.285543 +1237.427367 +1237.435592 +1237.456438 +1237.929065 +1237.941652 +1237.951709 +1238.241119 +1238.341219 +1238.353174 +1238.442851 +1238.444449 +1238.445148 +1238.540153 +1238.540553 +1238.544249 +1238.839654 +1238.940220 +1238.942417 +1239.138887 +1239.140219 +1239.140552 +1239.142517 +1239.242051 +1239.246713 +1239.246913 +1239.339553 +1239.340585 +1239.344948 +1239.345714 +1239.440419 +1239.446380 +1239.545947 +1239.546246 +1239.743615 +1239.749743 +1239.941151 +1240.044714 +1240.141517 +1240.143815 +1240.147245 +1240.148110 +1240.240884 +1240.341484 +1240.344847 +1240.442815 +1240.589902 +1240.641517 +1240.649908 +1240.742582 +1240.744647 +1240.847044 +1240.938519 +1240.940184 +1240.940517 +1240.942682 +1240.945579 +1241.141849 +1241.145112 +1241.241283 +1241.246711 +1241.341016 +1241.445046 +1241.547543 +1241.642248 +1241.644313 +1241.744679 +1241.748076 +1241.843513 +1241.941182 +1242.040450 +1242.140183 +1242.145045 +1242.145644 +1242.146310 +1242.344079 +1242.344745 +1242.541148 +1242.542547 +1242.639983 +1242.642747 +1242.741348 +1242.840682 +1242.943945 +1242.947075 +1243.040249 +1243.042646 +1243.044178 +1243.044778 +1243.300721 +1243.333555 +1243.348041 +1243.357798 +1243.427095 +1243.457664 +1243.554034 +1244.023931 +1244.043611 +1244.048972 +1244.205815 +1244.225362 +1244.461293 +1244.478209 +1244.592129 +1244.607946 +1244.668319 +1244.697889 +1244.737183 +1244.854766 +1245.013507 +1245.045308 +1245.225461 +1245.227826 +1245.233254 +1245.515604 +1245.632820 +1245.646107 +1245.800619 +1245.851734 +1245.865887 +1245.940179 +1246.082370 +1246.098621 +1246.410575 +1246.568151 +1246.739512 +1246.740045 +1246.922762 +1246.933718 +1246.938247 +1247.148670 +1247.301250 +1247.308976 +1247.972578 +1248.003081 +1248.004480 +1248.031186 +1248.032152 +1248.428222 +1248.440610 +1248.585165 +1248.677206 +1249.099883 +1249.128022 +1249.214335 +1249.260755 +1249.278837 +1249.309773 +1249.370579 +1249.465018 +1249.494355 +1250.104244 +1250.195620 +1250.408107 +1250.615466 +1250.705209 +1251.060920 +1251.144936 +1251.177970 +1251.268179 +1251.333647 +1251.348599 +1251.525522 +1251.556557 +1251.607073 +1251.611602 +1251.620660 +1251.654126 +1251.655225 +1251.751629 +1251.881066 +1251.881832 +1251.978368 +1252.073773 +1252.188991 +1252.254825 +1252.449597 +1252.450263 +1252.576237 +1252.592387 +1252.593486 +1252.644468 +1252.698381 +1252.734844 +1252.743336 +1252.925320 +1252.960552 +1253.021557 +1253.022390 +1253.262083 +1253.266013 +1253.267078 +1253.287258 +1253.467578 +1253.526219 +1253.528350 +1253.529849 +1253.540971 +1253.554524 +1253.781830 +1253.999512 +1254.034444 +1254.042003 +1254.108303 +1254.517826 +1254.542102 +1254.583927 +1254.967543 +1255.010833 +1255.031146 +1255.268675 +1255.414795 +1255.508302 +1255.526350 +1255.536740 +1255.543966 +1255.624685 +1255.937405 +1256.190685 +1256.645430 +1256.764144 +1256.951191 +1256.958450 +1257.285589 +1257.292382 +1257.393548 +1257.398976 +1257.548959 +1257.652222 +1257.812861 +1257.820387 +1257.839635 +1257.982358 +1258.000573 +1258.246061 +1258.338102 +1258.464809 +1258.979061 +1258.992381 +1259.157449 +1259.201038 +1259.213326 +1259.340599 +1259.360579 +1259.380659 +1259.381325 +1259.642097 +1259.666439 +1259.683256 +1259.699972 +1259.836436 +1259.839133 +1259.840398 +1259.853752 +1259.858514 +1260.039000 +1260.180391 +1260.187884 +1260.188383 +1260.211960 +1260.247691 +1260.253851 +1260.472765 +1260.474697 +1260.502769 +1260.510594 +1260.575230 +1260.669635 +1260.704234 +1261.132971 +1261.142495 +1261.345958 +1261.358712 +1261.369768 +1261.528009 +1261.531139 +1261.552152 +1261.692844 +1261.710726 +1261.737966 +1262.252417 +1262.252950 +1262.276626 +1262.954714 +1262.966503 +1263.188614 +1263.192976 +1263.197138 +1263.307628 +1263.311590 +1263.333402 +1263.959242 +1263.966069 +1263.979022 +1264.024876 +1264.039096 +1264.238563 +1264.263271 +1264.559674 +1264.579222 +1264.585249 +1264.589012 +1264.593407 +1264.598003 +1264.608825 +1264.617350 +1264.847187 +1264.970497 +1265.038795 +1265.039527 +1265.041892 +1265.042358 +1265.044090 +1265.260140 +1265.298235 +1265.336397 +1265.362604 +1265.424076 +1265.449450 +1265.496437 +1265.584016 +1265.600266 +1265.660206 +1266.049983 +1266.475923 +1266.480718 +1266.489609 +1266.497368 +1266.614851 +1266.622177 +1266.625740 +1266.789742 +1266.791674 +1266.797601 +1266.889709 +1266.895536 +1267.043455 +1267.199665 +1267.219246 +1267.596501 +1267.626904 +1267.734963 +1267.735762 +1267.753744 +1267.904127 +1267.908522 +1267.916015 +1267.924140 +1268.038759 +1268.250513 +1268.262535 +1268.368995 +1268.369361 +1268.373856 +1268.376654 +1268.389008 +1268.398165 +1268.542321 +1268.571259 +1268.618545 +1268.619544 +1269.073556 +1269.086809 +1269.100696 +1269.193936 +1269.206956 +1269.286476 +1269.356007 +1269.396899 +1269.529167 +1269.594734 +1269.664032 +1269.674821 +1269.687175 +1270.016645 +1270.045450 +1270.123105 +1270.132130 +1270.308353 +1270.317977 +1270.341054 +1270.657504 +1270.763131 +1271.008985 +1272.173020 +1272.201991 +1272.243250 +1272.480146 +1272.511948 +1272.537955 +1273.041584 +1273.044181 +1273.143882 +1273.154771 +1273.239186 +1273.242982 +1273.243149 +1273.341251 +1273.345613 +1273.443282 +1273.541817 +1273.543881 +1273.546712 +1273.643948 +1273.743814 +1273.841850 +1273.941850 +1273.943415 +1273.945279 +1274.047510 +1274.241749 +1274.245579 +1274.341616 +1274.346811 +1274.443847 +1274.445878 +1274.446911 +1274.539984 +1274.546844 +1274.642315 +1274.642781 +1274.746011 +1274.843047 +1274.849175 +1275.144412 +1275.349274 +1275.442581 +1275.442980 +1275.445278 +1275.448841 +1275.541615 +1275.543646 +1275.545311 +1275.547009 +1275.642547 +1275.744645 +1275.842880 +1275.845244 +1275.848508 +1275.849174 +1275.941947 +1276.052537 +1276.142247 +1276.143146 +1276.145177 +1276.146609 +1276.345976 +1276.346276 +1276.643712 +1277.044044 +1277.142346 +1277.246042 +1277.342346 +1277.343012 +1277.347441 +1277.542179 +1277.543911 +1277.642212 +1277.649971 +1277.844443 +1277.846108 +1277.943777 +1278.043011 +1278.830556 +1278.870682 +1278.876044 +1280.190828 +1281.618499 +1281.773443 +1281.825425 +1282.764651 +1282.768181 +1282.874375 +1282.886762 +1282.944771 +1288.330213 +1289.279230 +1289.308068 +1289.325950 +1290.816225 +1290.860447 +1290.873901 +1290.900874 +1290.945895 +1291.017723 +1291.061380 +1291.108099 +1291.234473 +1294.357980 +1294.394843 +1294.990813 +1295.318785 +1295.353783 +1295.430906 +1295.530206 +1295.571332 +1295.815421 +1295.850486 +1295.923180 +1295.966969 +1296.059610 +1296.153815 +1296.250618 +1296.325310 +1296.362273 +1296.428207 +1296.606595 +1296.660808 +1298.169764 +1298.224909 +1298.225775 +1298.303131 +1298.613753 +1298.616084 +1298.680320 +1298.709957 +1298.795271 +1298.845388 +1298.867066 +1298.889943 +1298.914152 +1299.212254 +1299.276057 +1299.313086 +1299.368164 +1299.427538 +1299.511155 +1299.522044 +1299.565001 +1299.589809 +1299.788610 +1299.893505 +1300.230901 +1300.348849 +1300.361703 +1300.408357 +1300.455709 +1300.495469 +1300.522842 +1300.580851 +1300.656175 +1301.459238 +1302.902194 +1302.956439 +1303.198630 +1303.246249 +1303.321374 +1303.433029 +1303.461700 +1303.533129 +1303.649545 +1303.667927 +1303.753042 +1303.832429 +1303.875186 +1303.968493 +1304.083411 +1304.146548 +1304.403990 +1304.665029 +1304.820407 +1304.865528 +1304.934493 +1305.012847 +1305.039254 +1305.131229 +1305.200759 +1305.269491 +1305.323437 +1305.452008 +1305.473586 +1305.502158 +1305.619107 +1305.627299 +1305.653939 +1305.677016 +1305.726067 +1305.811215 +1305.813280 +1305.857435 +1305.888438 +1305.929663 +1306.082277 +1306.115044 +1306.147212 +1306.168391 +1306.198594 +1306.243049 +1306.330195 +1306.372520 +1306.419606 +1306.465094 +1306.527398 +1306.537321 +1306.554471 +1306.578114 +1306.596462 +1306.627098 +1306.694597 +1306.732626 +1306.818706 +1306.861397 +1306.983675 +1307.031327 +1307.060398 +1307.101224 +1307.140285 +1307.160997 +1307.302389 +1307.406585 +1307.412679 +1307.559565 +1307.694929 +1307.720137 +1307.768955 +1307.787304 +1307.835522 +1307.868589 +1307.873917 +1307.982275 +1308.139884 +1308.239484 +1308.640450 +1308.739684 +1308.841515 +1309.040949 +1309.140482 +1309.240615 +1309.340349 +1309.440415 +1309.445977 +1309.539749 +1309.641681 +1309.740149 +1309.841181 +1310.341647 +1310.440881 +1310.640781 +1310.841546 +1310.940547 +1311.145409 +1311.240314 +1311.541013 +1311.844742 +1311.940979 +1312.041179 +1312.343976 +1312.641012 +1312.840179 +1312.941577 +1313.040512 +1313.358793 +1313.402316 +1313.418367 +1313.459992 +1313.501184 +1313.515736 +1313.559159 +1313.606812 +1313.618267 +1313.855563 +1313.898686 +1313.973112 +1314.074843 +1314.172612 +1314.191027 +1314.226624 +1314.260757 +1314.365918 +1314.434350 +1314.481902 +1314.529555 +1314.603247 +1314.688029 +1314.761289 +1314.816934 +1314.829821 +1314.862821 +1314.933550 +1314.989161 +1315.011539 +1315.234682 +1315.328222 +1315.461888 +1315.543040 +1315.558525 +1315.694821 +1315.711938 +1315.751498 +1315.850799 +1315.880735 +1315.924658 +1315.965317 +1315.975241 +1315.996986 +1316.034315 +1316.072310 +1316.210805 +1316.260122 +1316.294055 +1316.375340 +1316.531084 +1316.605044 +1316.619196 +1316.628154 +1316.873675 +1316.932083 +1316.980934 +1317.053295 +1317.085529 +1317.101980 +1317.288626 +1317.306641 +1317.315865 +1317.382732 +1317.452362 +1317.508573 +1317.591856 +1317.772342 +1317.836877 +1317.959887 +1317.995219 +1318.154726 +1318.374972 +1319.297782 +1319.985027 +1320.508903 +1322.686756 +1322.832976 +1323.299909 +1323.311364 +1323.311764 +1323.325816 +1323.349892 +1323.357385 +1324.888019 +1326.508597 +1326.547724 +1326.574198 +1326.575097 +1326.596276 +1326.626013 +1326.708763 +1326.723115 +1326.751321 +1326.783755 +1326.794044 +1326.829709 +1329.070532 +1329.091944 +1329.098105 +1329.152151 +1329.176526 +1329.229273 +1329.296140 +1329.300902 +1329.355247 +1329.362773 +1329.397938 +1329.427209 +1329.473096 +1329.484118 +1329.527542 +1329.568700 +1329.656113 +1329.760808 +1329.811557 +1329.867335 +1329.896639 +1329.912023 +1329.955846 +1329.988647 +1330.016985 +1330.017817 +1330.101267 +1330.122280 +1330.123079 +1330.172463 +1330.223578 +1330.244424 +1330.292642 +1330.305063 +1330.312522 +1330.314387 +1330.330405 +1330.365370 +1330.479988 +1330.518316 +1330.544390 +1330.599102 +1330.624444 +1330.651916 +1330.664004 +1330.673794 +1330.704497 +1330.756411 +1330.819948 +1330.867101 +1330.897936 +1330.939561 +1331.102099 +1331.130637 +1331.177890 +1331.206861 +1331.252615 +1331.285282 +1331.303997 +1331.391010 +1331.555079 +1331.646021 +1331.751582 +1331.781385 +1331.824542 +1331.853480 +1332.017549 +1332.034299 +1332.089910 +1332.178321 +1332.216583 +1332.238728 +1332.254146 +1332.371561 +1332.437928 +1332.464335 +1332.477755 +1332.485914 +1332.546286 +1332.625407 +1332.697668 +1332.739393 +1332.816116 +1332.869097 +1332.904428 +1332.958041 +1332.997635 +1333.233965 +1333.321177 +1333.547518 +1333.602862 +1333.627937 +1333.768630 +1333.792739 +1333.991506 +1334.013651 +1334.346185 +1334.465765 +1334.511819 +1334.538226 +1334.562601 +1334.653977 +1334.782848 +1334.870460 +1334.903194 +1334.939158 +1334.942155 +1334.997633 +1335.222974 +1335.463400 +1335.505125 +1337.808186 +1337.923637 +1338.177450 +1338.805188 +1338.963363 +1339.008484 +1339.036723 +1339.057935 +1339.112980 +1339.291834 +1339.305154 +1339.400192 +1339.468957 +1339.506020 +1339.555970 +1339.578481 +1339.642583 +1339.654072 +1339.727665 +1340.134624 +1340.139019 +1340.205952 +1340.234957 +1340.266392 +1340.426598 +1340.468390 +1341.088735 +1341.282208 +1341.313810 +1341.338053 +1341.351406 +1341.391233 +1341.443480 +1341.682108 +1341.804552 +1341.904685 +1341.997393 +1342.032058 +1342.103719 +1342.185970 +1342.230992 +1342.865424 +1343.139749 +1343.339716 +1343.639915 +1343.740048 +1343.741746 +1344.042013 +1344.240980 +1344.246408 +1344.341812 +1344.445808 +1344.841845 +1345.142245 +1345.241012 +1345.940412 +1346.040645 +1346.275244 +1346.543375 +1346.742243 +1349.064319 +1350.262353 +1352.295817 +1352.392387 +1352.472940 +1352.556190 +1352.587991 +1358.254353 +1358.310530 +1358.359980 +1358.376697 +1358.411129 +1358.518222 +1358.613560 +1358.614292 +1358.653054 +1360.188517 +1360.310161 +1363.448320 +1364.412488 +1365.401265 +1365.468032 +1365.558574 +1365.589743 +1365.650183 +1365.686680 +1365.709856 +1365.716716 +1365.810789 +1366.138394 +1366.202830 +1366.226173 +1366.308157 +1367.124840 +1367.129735 +1367.141057 +1367.195536 +1367.283115 +1367.974090 +1368.117213 +1368.123274 +1368.127403 +1368.205092 +1368.275388 +1368.801595 +1369.132797 +1369.145784 +1369.163166 +1369.202593 +1369.254708 +1370.133162 +1370.139256 +1370.143385 +1370.184844 +1370.186675 +1370.197498 +1370.243119 +1370.265663 +1370.285476 +1370.330398 +1370.344217 +1370.837690 +1370.865595 +1370.872355 +1371.127766 +1371.132328 +1371.141053 +1371.148779 +1371.193600 +1371.206454 +1371.274786 +1371.378449 +1371.431496 +1371.639987 +1371.697196 +1371.756803 +1371.790869 +1371.828365 +1371.851509 +1371.876317 +1371.926533 +1372.400259 +1372.453706 +1372.512980 +1372.531594 +1372.711348 +1372.796030 +1373.030395 +1373.046279 +1373.123402 +1373.143648 +1373.205154 +1373.221337 +1373.238820 +1373.294731 +1373.309482 +1373.323102 +1373.357268 +1373.363662 +1373.383142 +1373.401191 +1373.429296 +1373.461797 +1373.486039 +1373.512146 +1373.540651 +1373.623402 +1373.650974 +1373.728363 +1373.739052 +1373.778346 +1373.871420 +1373.950574 +1373.971520 +1374.024766 +1374.035456 +1374.043381 +1374.101323 +1374.121636 +1374.185173 +1374.196694 +1374.201589 +1374.255702 +1374.285372 +1374.306351 +1374.337054 +1374.409515 +1374.702388 +1374.772252 +1374.823567 +1374.831759 +1374.982141 +1375.005818 +1375.028662 +1375.060197 +1375.070986 +1375.084872 +1375.092797 +1375.118538 +1375.140849 +1375.168954 +1375.217706 +1375.234922 +1375.235521 +1375.236553 +1375.260230 +1375.284872 +1375.507282 +1375.520003 +1375.539683 +1375.571218 +1375.584838 +1375.885271 +1375.904418 +1375.910279 +1375.934188 +1375.952936 +1375.968188 +1376.072950 +1376.175480 +1376.375980 +1376.473682 +1376.776845 +1376.874347 +1377.074114 +1377.277144 +1377.673847 +1377.674713 +1377.676578 +1377.974313 +1378.077976 +1378.172947 +1378.275578 +1378.278342 +1378.278642 +1378.374246 +1378.474079 +1378.574246 +1378.575345 +1378.677975 +1378.774279 +1378.974945 +1379.078674 +1379.277175 +1379.376609 +1379.377009 +1379.575210 +1379.978140 +1380.178973 +1380.274377 +1380.275709 +1380.375576 +1380.376642 +1380.475143 +1380.575076 +1380.778273 +1382.905011 +1383.330918 +1383.351197 +1383.366615 +1383.535480 +1384.807207 +1385.369177 +1385.497582 +1385.585994 +1385.708937 +1385.830582 +1385.891388 +1385.942204 +1385.963016 +1386.062517 +1386.335643 +1386.427518 +1386.496183 +1386.588657 +1386.603542 +1386.877068 +1386.939938 +1386.968876 +1386.982129 +1387.045966 +1387.061017 +1387.126485 +1387.127218 +1387.188023 +1387.216062 +1387.249995 +1387.263048 +1387.315363 +1387.340604 +1387.412132 +1387.462016 +1387.478766 +1387.492086 +1387.515595 +1387.554590 +1387.581196 +1387.607637 +1387.620990 +1387.738406 +1387.784659 +1387.859251 +1387.903640 +1388.033644 +1388.046064 +1388.098845 +1388.140437 +1388.226317 +1388.257020 +1388.291419 +1388.307669 +1388.343933 +1388.352957 +1388.410833 +1388.426450 +1388.440137 +1388.534675 +1388.616560 +1388.655721 +1388.775901 +1388.803173 +1388.827016 +1388.827982 +1388.843033 +1388.871671 +1388.885924 +1388.886523 +1388.966710 +1389.037872 +1389.157685 +1389.171505 +1389.306902 +1389.347395 +1389.361015 +1389.404738 +1389.417691 +1389.433642 +1389.461947 +1389.491451 +1389.553489 +1389.568174 +1389.574268 +1389.647128 +1389.694215 +1389.708767 +1389.723918 +1389.753122 +1389.769073 +1389.799509 +1389.815127 +1389.829046 +1389.859249 +1389.872569 +1389.934174 +1390.072503 +1390.148427 +1390.210598 +1390.225716 +1390.398443 +1390.429545 +1390.488386 +1390.503971 +1390.564177 +1390.654986 +1390.697777 +1390.822552 +1390.882525 +1398.234266 +1398.865268 +1399.409523 +1401.260870 +1402.189340 +1402.207755 +1403.136093 +1403.141687 +1404.127800 +1404.187007 +1404.197963 +1405.188005 +1405.203090 +1405.767226 +1405.975117 +1406.226799 +1406.911147 +1408.023034 +1408.186071 +1408.224566 +1408.252571 +1409.411511 +1409.556699 +1409.580475 +1409.611844 +1409.866156 +1411.076944 +1411.174513 +1411.575345 +1411.580107 +1411.774945 +1411.975911 +1411.976377 +1412.278941 +1412.279507 +1412.374378 +1412.376643 +1412.473712 +1412.476476 +1412.775344 +1412.779906 +1412.876010 +1412.976010 +1413.075210 +1413.175144 +1413.177608 +1413.275310 +1413.276409 +1413.475343 +1413.575110 +1413.576642 +1414.375542 +1414.475608 +1415.075808 +1415.175608 +1415.476007 +1415.675740 +1415.676506 +1415.875574 +1415.975607 +1423.187388 +1423.314128 +1423.519456 +1423.534241 +1423.610897 +1423.909665 +1423.926315 +1423.997677 +1424.119588 +1424.134373 +1424.162179 +1424.289984 +1424.290417 +1424.306468 +1424.438436 +1424.735139 +1424.781392 +1424.828712 +1424.850190 +1424.850989 +1424.895711 +1424.925881 +1424.956284 +1425.078994 +1425.094745 +1425.124915 +1425.195977 +1425.265774 +1425.266540 +1425.292980 +1425.316523 +1425.328278 +1425.383556 +1425.431042 +1425.502271 +1425.502637 +1425.506866 +1425.546094 +1425.547925 +1425.562444 +1425.562644 +1425.595378 +1425.635471 +1425.648791 +1425.679260 +1425.784888 +1425.785454 +1425.799840 +1425.800672 +1425.832041 +1425.847292 +1425.847925 +1425.848424 +1425.881325 +1425.937768 +1426.383355 +1435.490473 +1436.207288 +1437.229299 +1437.232096 +1437.772621 +1437.978515 +1440.626531 +1440.658033 +1440.663727 +1440.713711 +1440.715276 +1440.870687 +1440.900857 +1440.978912 +1442.129860 +1442.192863 +1442.195061 +1442.222201 +1442.268288 +1442.326963 +1443.598723 +1443.758396 +1446.577241 +1447.377174 +1447.378906 +1447.478872 +1447.479571 +1447.878239 +1448.378905 +1448.476274 +1448.478272 +1448.879970 +1449.279736 +1449.379170 +1449.779003 +1449.878537 +1449.979036 +1449.979869 +1450.178936 +1450.579435 +1450.580001 +1451.805974 +1451.811635 +1452.486060 +1452.621924 +1452.763416 +1452.961817 +1454.203075 +1454.341103 +1454.464546 +1454.475535 +1454.671572 +1455.878864 +1455.923253 +1459.044828 +1459.091914 +1459.107598 +1459.163076 +1459.293313 +1459.648857 +1459.753319 +1460.010661 +1460.056882 +1460.110728 +1460.124014 +1460.126812 +1460.167138 +1460.195842 +1460.196642 +1460.198307 +1460.212726 +1460.226911 +1460.238233 +1460.252652 +1460.280824 +1460.317787 +1460.354650 +1460.370468 +1460.382089 +1460.395942 +1460.423015 +1460.436102 +1460.462442 +1460.484420 +1460.499805 +1460.529042 +1460.555482 +1460.570001 +1460.570934 +1460.640331 +1460.699172 +1460.709562 +1460.735968 +1460.749655 +1460.753218 +1460.771566 +1460.782655 +1460.783488 +1460.797240 +1460.802735 +1460.828909 +1460.845858 +1460.876395 +1460.876894 +1460.893444 +1460.934636 +1460.950221 +1460.951120 +1461.462208 +1464.534533 +1468.046950 +1468.839557 +1473.369189 +1473.980111 +1473.987570 +1474.451040 +1474.459664 +1474.484639 +1475.956932 +1476.040515 +1477.628159 +1477.667553 +1477.777710 +1477.818702 +1479.681870 +1480.043608 +1480.050535 +1480.056329 +1481.176840 +1481.177473 +1481.380969 +1481.383300 +1481.479471 +1481.480237 +1481.481402 +1481.578871 +1481.879737 +1481.980136 +1482.079903 +1482.579270 +1482.580102 +1482.880702 +1483.182133 +1483.280435 +1483.381201 +1483.381467 +1483.479069 +1483.480368 +1483.580335 +1483.680301 +1483.780801 +1483.880434 +1483.981733 +1484.080900 +1484.279035 +1484.781232 +1484.880766 +1484.981765 +1485.080500 +1485.280766 +1485.379434 +1485.379633 +1485.480632 +1485.485761 +1485.486427 +1485.679167 +1485.680632 +1485.981464 +1488.587522 +1489.915060 +1491.989917 +1492.541698 +1492.542230 +1492.787318 +1492.885187 +1493.042696 +1493.198940 +1493.797241 +1493.891846 +1494.036868 +1494.065772 +1494.277593 +1494.328576 +1494.374896 +1494.375728 +1494.376528 +1494.482655 +1494.497107 +1494.609694 +1494.860410 +1494.914056 +1494.995408 +1495.026810 +1495.027742 +1495.053883 +1495.054183 +1495.068002 +1495.126011 +1495.152085 +1495.180023 +1495.221415 +1495.254415 +1495.268801 +1495.272764 +1495.330839 +1495.367369 +1495.368068 +1495.384785 +1495.445591 +1495.475361 +1495.512091 +1495.513456 +1495.526843 +1495.531105 +1495.582853 +1495.626510 +1495.669966 +1495.680855 +1495.688614 +1495.729273 +1495.744425 +1495.758711 +1495.788148 +1495.788747 +1495.824745 +1495.838631 +1495.858144 +1495.871464 +1495.903133 +1495.903999 +1495.919083 +1495.943725 +1495.959210 +1497.660340 +1498.894472 +1498.939826 +1500.687211 +1500.719512 +1500.719878 +1500.744820 +1500.761503 +1500.849548 +1500.877620 +1500.905592 +1500.993937 +1501.380217 +1502.006723 +1503.540521 +1504.862598 +1504.886907 +1504.899361 +1505.088139 +1505.218475 +1506.131061 +1509.256666 +1509.649639 +1509.686669 +1510.979774 +1511.154666 +1511.193760 +1514.291726 +1514.300417 +1514.357826 +1514.366384 +1514.443274 +1516.079669 +1516.183932 +1516.279936 +1516.282600 +1516.382233 +1516.383931 +1516.479103 +1516.479536 +1516.481800 +1516.482566 +1516.581767 +1516.679569 +1516.680002 +1516.681334 +1516.683398 +1516.779902 +1516.783698 +1516.880201 +1516.883232 +1516.980501 +1517.280001 +1517.280567 +1517.281000 +1517.579102 +1517.679301 +1517.680067 +1517.879201 +1517.979667 +1518.086061 +1518.179867 +1518.280833 +1518.380300 +1518.380799 +1518.381132 +1518.680899 +1518.780466 +1518.880832 +1519.078401 +1519.080232 +1519.180632 +1519.180898 +1519.278734 +1519.379433 +1519.679699 +1519.680265 +1520.179266 +1520.280331 +1520.379965 +1520.479265 +1520.479831 +1520.579099 +1521.873936 +1524.557183 +1526.718953 +1526.813192 +1526.864440 +1527.305133 +1527.792312 +1528.358445 +1528.358978 +1528.372131 +1528.373397 +1528.488182 +1528.491978 +1528.543060 +1528.573563 +1528.574196 +1528.618152 +1528.632904 +1528.683320 +1529.009527 +1529.041661 +1529.054615 +1529.130406 +1529.159243 +1529.174328 +1529.184451 +1529.216320 +1529.230705 +1529.305730 +1529.324445 +1529.381388 +1529.424578 +1529.523812 +1529.524511 +1529.553216 +1529.561574 +1529.650352 +1529.679922 +1529.693142 +1529.779323 +1529.843858 +1529.871530 +1529.913655 +1529.914254 +1529.929739 +1529.946655 +1529.962639 +1529.976026 +1530.008460 +1530.019982 +1530.031437 +1530.032669 +1530.036432 +1530.049918 +1530.112090 +1530.167434 +1530.209692 +1530.224843 +1530.225476 +1530.267101 +1530.268566 +1530.281320 +1530.297238 +1530.356112 +1530.376159 +1530.381353 +1530.382486 +1530.382819 +1530.394507 +1530.410091 +1530.413621 +1530.448952 +1530.472096 +1530.531536 +1530.546421 +1530.546988 +1530.563671 +1530.579955 +1530.584350 +1530.594007 +1530.594274 +1530.594840 +1530.609425 +1530.635332 +1530.687547 +1530.702898 +1530.730304 +1530.806228 +1530.822911 +1530.839495 +1530.840427 +1530.856078 +1530.856844 +1530.871496 +1530.871729 +1530.919781 +1530.921479 +1530.943524 +1530.973561 +1531.646287 +1531.661572 +1531.920080 +1532.139693 +1532.462437 +1532.517981 +1534.094703 +1534.654909 +1534.753044 +1535.768694 +1536.011185 +1536.061934 +1536.452509 +1536.466662 +1536.481281 +1536.749346 +1538.474119 +1538.498528 +1538.545215 +1539.162563 +1539.306686 +1539.318807 +1539.334291 +1539.365593 +1539.367891 +1539.368757 +1539.713245 +1539.716043 +1539.824967 +1540.590501 +1540.591033 +1540.607950 +1541.208082 +1541.259031 +1541.272185 +1541.279977 +1541.282641 +1541.286471 +1541.362927 +1541.367889 +1542.134855 +1542.140449 +1542.165724 +1542.208181 +1542.227229 +1542.285337 +1542.286803 +1542.979975 +1543.167155 +1543.213908 +1543.230092 +1543.477011 +1543.485203 +1543.492696 +1543.629059 +1543.731090 +1543.736718 +1543.866288 +1543.873881 +1543.883205 +1543.887933 +1544.158263 +1544.167786 +1544.259628 +1544.277077 +1544.326594 +1544.426328 +1544.599188 +1544.979008 +1544.980673 +1545.188665 +1545.200453 +1545.255098 +1545.267119 +1545.284802 +1545.297322 +1545.343310 +1545.366853 +1545.480972 +1545.567052 +1545.648837 +1545.978507 +1545.979173 +1545.979739 +1545.980239 +1546.165820 +1546.251034 +1546.262190 +1546.330988 +1546.749769 +1546.767018 +1546.772479 +1546.979206 +1547.500184 +1547.979205 +1548.430919 +1548.501349 +1548.963386 +1548.976939 +1549.216466 +1549.220296 +1550.132749 +1550.166016 +1550.171943 +1550.797783 +1550.807174 +1550.815299 +1550.815832 +1550.831583 +1551.078802 +1551.080300 +1551.281865 +1551.381133 +1551.382098 +1551.485561 +1551.487859 +1551.880433 +1551.882431 +1551.883630 +1551.980433 +1551.984462 +1552.079467 +1552.080599 +1552.085661 +1552.088658 +1552.280432 +1552.380299 +1552.380765 +1552.382497 +1552.580865 +1552.781697 +1552.983795 +1553.080631 +1553.081197 +1553.084860 +1553.184028 +1553.281996 +1553.481763 +1553.587158 +1553.680764 +1553.781397 +1553.983095 +1554.083494 +1554.086558 +1554.280630 +1554.481329 +1554.489022 +1554.680796 +1554.781962 +1554.980563 +1554.985491 +1555.084659 +1555.185325 +1555.681694 +1555.780495 +1555.981494 +1557.298110 +1557.306901 +1557.349558 +1557.519488 +1557.690151 +1557.694280 +1558.153753 +1558.165974 +1558.355251 +1558.734772 +1559.238101 +1559.349223 +1559.919852 +1559.927977 +1560.064441 +1560.077561 +1560.094644 +1560.251387 +1560.265439 +1561.044959 +1561.229774 +1561.416021 +1561.654316 +1561.721415 +1561.800569 +1561.862208 +1561.872764 +1562.061009 +1562.158345 +1562.198937 +1562.319084 +1562.379956 +1562.647755 +1562.679123 +1562.732636 +1562.786183 +1562.817884 +1562.888214 +1562.898337 +1562.975959 +1563.114055 +1563.202999 +1563.216619 +1563.217251 +1563.230871 +1563.385416 +1563.471197 +1563.545223 +1563.801267 +1563.874094 +1563.890311 +1564.004696 +1564.037164 +1564.051816 +1564.065202 +1564.121846 +1564.164137 +1564.177190 +1564.359375 +1564.481186 +1564.523244 +1564.583717 +1564.620447 +1564.624576 +1564.680154 +1564.681585 +1564.696371 +1564.711622 +1564.769697 +1564.879654 +1564.894705 +1564.937696 +1565.007992 +1565.036064 +1565.052281 +1565.068032 +1565.093473 +1565.109590 +1565.123077 +1565.141925 +1565.211788 +1565.224542 +1565.225907 +1565.255078 +1565.271395 +1565.302864 +1565.378288 +1565.394905 +1565.409790 +1565.437462 +1565.482983 +1565.528105 +1565.529870 +1565.607592 +1565.608757 +1565.622743 +1565.656077 +1565.699999 +1565.742657 +1565.758741 +1565.771594 +1565.788844 +1565.789809 +1565.835697 +1565.851781 +1565.891807 +1565.904395 +1565.904794 +1565.944788 +1565.972726 +1567.644586 +1567.657507 +1568.300197 +1568.325871 +1568.330999 +1568.421342 +1568.423040 +1569.755407 +1569.769293 +1569.817578 +1569.827168 +1570.076951 +1570.086575 +1570.471956 +1571.128499 +1571.519907 +1572.121671 +1572.570788 +1572.595297 +1572.634758 +1572.641751 +1573.095863 +1573.107651 +1573.149442 +1573.156635 +1573.377015 +1573.377448 +1574.091033 +1574.108649 +1574.177913 +1574.848408 +1574.856800 +1574.859830 +1575.623799 +1575.745411 +1575.935387 +1575.936220 +1575.946143 +1575.979976 +1575.980708 +1576.189033 +1576.213342 +1576.284371 +1576.329160 +1576.372250 +1576.981140 +1577.222132 +1577.363258 +1578.273979 +1578.302751 +1578.374779 +1578.980672 +1579.180972 +1579.181737 +1579.185367 +1579.216636 +1579.237249 +1579.806745 +1579.882136 +1579.979272 +1580.271413 +1581.211572 +1581.222461 +1581.233284 +1581.434316 +1581.481868 +1581.683433 +1581.684199 +1581.864385 +1582.772643 +1582.871810 +1583.236146 +1583.337045 +1583.539475 +1583.549998 +1583.584930 +1583.657857 +1583.800614 +1584.549231 +1584.567113 +1584.719428 +1584.771209 +1584.782897 +1584.896783 +1584.907173 +1585.061818 +1585.706306 +1585.726986 +1585.738974 +1585.945334 +1585.951861 +1585.958720 +1585.966513 +1585.981664 +1586.079400 +1586.181730 +1586.181964 +1586.183362 +1586.279965 +1586.282829 +1586.382330 +1586.383762 +1586.480232 +1586.481231 +1586.781297 +1586.785959 +1586.883428 +1586.886092 +1586.986558 +1587.083128 +1587.181496 +1587.185126 +1587.281696 +1587.282362 +1587.283095 +1587.286358 +1587.386325 +1587.481962 +1587.485326 +1587.588988 +1587.780930 +1587.880796 +1587.883993 +1587.980863 +1587.985159 +1587.985591 +1588.080397 +1588.080829 +1588.083926 +1588.181462 +1588.281129 +1588.281695 +1588.383327 +1588.481162 +1588.485558 +1588.580596 +1588.681961 +1588.782694 +1588.783926 +1588.984858 +1588.988521 +1589.082160 +1589.184824 +1589.186756 +1589.280628 +1589.281095 +1589.383159 +1589.385257 +1589.482260 +1589.581061 +1589.680994 +1589.881194 +1589.883025 +1589.886955 +1589.983258 +1589.983758 +1589.986588 +1590.280761 +1590.387487 +1590.387887 +1590.481060 +1590.483658 +1590.485356 +1590.581027 +1590.583591 +1590.685922 +1590.986221 +1593.143428 +1593.149789 +1593.345859 +1594.037467 +1594.123514 +1594.483354 +1594.585818 +1594.765705 +1594.774562 +1594.934502 +1595.091745 +1595.585551 +1595.607828 +1595.690113 +1595.723313 +1595.908660 +1595.979423 +1596.177758 +1596.202333 +1596.312523 +1596.380455 +1596.596072 +1596.733069 +1596.881287 +1597.035266 +1597.107361 +1597.133701 +1597.198403 +1597.329472 +1597.331436 +1597.391343 +1597.391842 +1597.406095 +1597.557910 +1597.634666 +1597.773660 +1597.879321 +1597.909324 +1597.949051 +1597.987546 +1598.125641 +1598.137896 +1598.268532 +1598.433666 +1598.434232 +1598.518515 +1598.533300 +1598.533999 +1598.648018 +1598.688511 +1598.792773 +1598.793739 +1598.808491 +1598.918081 +1598.946986 +1598.959373 +1598.973859 +1599.120512 +1599.158740 +1599.208957 +1599.221245 +1599.328903 +1599.437994 +1599.528870 +1599.605693 +1599.674291 +1599.721544 +1599.740325 +1599.780118 +1599.805426 +1599.806059 +1599.849782 +1599.911320 +1599.925340 +1599.926172 +1599.970661 +1599.986545 +1599.999133 +1599.999898 +1600.015649 +1600.030867 +1600.091307 +1600.091840 +1600.095136 +1600.170694 +1600.171960 +1600.183948 +1600.212619 +1600.243488 +1600.244387 +1600.336528 +1600.398866 +1600.432099 +1600.436994 +1600.544920 +1600.560637 +1600.575822 +1600.590208 +1600.671160 +1600.672026 +1600.684313 +1600.733198 +1600.763035 +1600.793271 +1600.841290 +1600.882715 +1600.912019 +1602.063366 +1604.735958 +1604.951275 +1605.131195 +1605.404222 +1607.372518 +1608.009348 +1608.013510 +1608.145511 +1608.204919 +1608.284406 +1608.691232 +1608.691765 +1609.030525 +1609.039217 +1609.439216 +1609.714408 +1609.736918 +1610.373548 +1610.466388 +1610.615006 +1610.661526 +1611.193560 +1611.234652 +1611.248039 +1612.127958 +1612.137615 +1612.640878 +1612.656562 +1612.759659 +1612.981537 +1613.134617 +1613.147404 +1613.307311 +1613.317867 +1614.180104 +1614.979104 +1616.696285 +1620.570507 +1620.581729 +1621.079531 +1621.178299 +1621.278965 +1621.379497 +1621.578931 +1621.880995 +1622.180829 +1622.280396 +1622.281228 +1622.880362 +1623.480461 +1623.680494 +1623.980560 +1624.080094 +1624.280860 +1624.380727 +1624.779261 +1624.981259 +1625.080426 +1625.580059 +1625.581125 +1625.780092 +1625.879193 +1625.980958 +1627.153917 +1627.166538 +1627.890180 +1629.252483 +1629.303799 +1629.351018 +1629.555547 +1629.622213 +1629.634135 +1629.650718 +1631.555245 +1631.991675 +1632.006094 +1632.297768 +1632.385580 +1632.570162 +1632.709856 +1632.814917 +1632.882683 +1632.980385 +1633.164068 +1633.216415 +1633.323109 +1633.335463 +1633.446485 +1633.484680 +1633.536628 +1633.582016 +1633.616015 +1633.644121 +1633.684613 +1633.699199 +1633.714450 +1633.717014 +1633.881250 +1633.922975 +1633.976088 +1634.064666 +1634.078020 +1634.163834 +1634.180317 +1634.235662 +1634.274057 +1634.287144 +1634.357273 +1634.388043 +1634.443753 +1634.478119 +1634.560670 +1634.593770 +1634.842421 +1634.857173 +1634.915148 +1634.928502 +1634.955408 +1635.002927 +1635.016913 +1635.017612 +1635.136760 +1635.171392 +1635.191705 +1635.237759 +1635.284212 +1635.299830 +1635.344752 +1635.361834 +1635.390472 +1635.419144 +1635.465198 +1635.506789 +1635.507922 +1635.521708 +1635.535361 +1635.728268 +1635.758870 +1635.790672 +1635.838591 +1635.871857 +1635.886842 +1635.919809 +1635.934994 +1635.948714 +1635.950012 +1635.965963 +1640.076349 +1640.077114 +1640.926198 +1641.054203 +1641.067024 +1641.114842 +1641.287370 +1642.186137 +1642.300755 +1642.388301 +1642.414841 +1642.444911 +1642.614641 +1642.776912 +1642.806882 +1642.829659 +1643.055999 +1643.118770 +1643.163925 +1643.241580 +1643.285503 +1643.318503 +1643.378576 +1643.395693 +1643.461493 +1643.496192 +1643.549572 +1643.604517 +1643.620767 +1643.647507 +1643.713474 +1643.721167 +1643.953867 +1644.085136 +1644.144476 +1644.201985 +1644.234286 +1644.384070 +1644.453134 +1644.481872 +1644.546840 +1644.576111 +1644.582671 +1644.780273 +1644.805581 +1644.857196 +1644.874546 +1644.890263 +1644.910310 +1644.926693 +1645.040779 +1645.123430 +1645.159027 +1645.184802 +1645.216370 +1645.263656 +1645.337682 +1645.384269 +1645.426959 +1645.457795 +1645.492460 +1645.695890 +1645.735750 +1645.797688 +1645.843143 +1645.874911 +1645.911707 +1645.966319 +1645.980705 +1646.112273 +1646.820531 +1646.865419 +1647.118033 +1647.127557 +1647.443974 +1647.668515 +1647.980803 +1648.116534 +1648.136114 +1649.120162 +1649.125291 +1649.191391 +1652.114365 +1652.369077 +1652.526952 +1652.744668 +1652.767411 +1652.804241 +1652.905806 +1652.924721 +1653.020192 +1653.195816 +1653.239206 +1653.304873 +1653.356788 +1653.451493 +1653.527784 +1653.646465 +1653.659718 +1653.745466 +1653.765579 +1653.827950 +1653.929348 +1653.934543 +1653.964080 +1654.383694 +1654.503907 +1654.524386 +1654.695814 +1654.885624 +1654.921222 +1654.995215 +1655.037006 +1655.050093 +1655.117892 +1655.191352 +1655.229014 +1655.531311 +1655.610732 +1655.808767 +1655.837705 +1655.933242 +1656.278197 +1656.279296 +1656.480994 +1656.579163 +1656.678197 +1656.679862 +1656.878996 +1656.879562 +1656.880028 +1657.178796 +1657.378862 +1657.480460 +1657.579561 +1657.778995 +1657.780127 +1657.879594 +1657.880293 +1657.979994 +1658.078961 +1658.079594 +1658.179760 +1658.181692 +1658.378861 +1658.379527 +1658.582491 +1658.780293 +1658.781858 +1658.982124 +1659.078794 +1659.079027 +1659.179560 +1659.181524 +1659.279959 +1659.282124 +1659.378594 +1659.381691 +1659.478993 +1659.680791 +1659.878793 +1659.979792 +1660.179825 +1660.280524 +1660.379925 +1660.383688 +1660.581356 +1660.681889 +1660.782721 +1660.982355 +1664.626307 +1664.896936 +1664.983150 +1665.309923 +1665.323609 +1665.362171 +1665.853279 +1665.932633 +1665.965400 +1666.058008 +1666.147152 +1666.237395 +1666.378254 +1666.622875 +1666.794703 +1666.880484 +1666.895036 +1667.327071 +1667.525439 +1667.538292 +1667.581516 +1667.638392 +1667.725039 +1667.865032 +1667.880683 +1667.937526 +1667.938192 +1667.939224 +1668.207656 +1668.235661 +1668.270992 +1668.285045 +1668.296733 +1668.297766 +1668.314049 +1668.352877 +1668.365531 +1668.366064 +1668.445584 +1668.476220 +1668.511851 +1668.512351 +1668.525771 +1668.599197 +1668.630433 +1668.707322 +1668.764965 +1668.830432 +1668.831065 +1668.878451 +1668.955074 +1669.062900 +1669.108720 +1669.194268 +1669.240089 +1669.281281 +1669.296965 +1669.312916 +1669.357005 +1669.405923 +1669.467062 +1669.468261 +1669.509886 +1669.524538 +1669.540055 +1669.568094 +1669.581214 +1669.594101 +1669.626003 +1669.627168 +1669.654607 +1669.741454 +1669.796432 +1669.842053 +1669.961700 +1669.975952 +1669.977318 +1669.991637 +1670.069126 +1670.098696 +1670.115979 +1670.141753 +1670.185110 +1670.213947 +1670.215879 +1670.231230 +1670.262699 +1670.277650 +1670.307787 +1670.322972 +1670.354107 +1670.369991 +1670.414647 +1670.429465 +1670.577317 +1670.599661 +1670.668393 +1670.745449 +1670.805955 +1670.868825 +1679.972179 +1681.136281 +1681.216401 +1682.227855 +1683.151597 +1684.979833 +1685.131582 +1685.202910 +1687.691219 +1690.064477 +1691.077929 +1691.780692 +1691.978827 +1692.179760 +1693.279426 +1693.379292 +1693.581257 +1693.881723 +1693.980957 +1693.981656 +1694.081090 +1694.181389 +1694.281123 +1694.481689 +1694.679391 +1694.681555 +1694.979757 +1694.981355 +1695.181488 +1695.181921 +1695.481621 +1695.581022 +1695.679723 +1695.780622 +1695.780888 +1695.781288 +1695.880389 +1695.880688 +1695.981254 +1697.135599 +1700.918246 +1701.922973 +1703.093135 +1703.706388 +1703.747580 +1703.920873 +1703.953874 +1703.972855 +1704.000094 +1704.113014 +1704.171323 +1704.183877 +1704.200627 +1704.229331 +1704.241453 +1704.316144 +1704.374286 +1704.524969 +1704.574852 +1704.614779 +1704.645382 +1704.725235 +1704.948012 +1704.999527 +1705.102124 +1705.139154 +1705.153173 +1705.167492 +1705.243050 +1705.286340 +1705.374985 +1705.390536 +1705.424035 +1705.507385 +1705.580079 +1705.594198 +1705.637455 +1705.663829 +1705.870222 +1705.913912 +1705.934524 +1706.368723 +1709.029327 +1711.403783 +1711.410676 +1711.425328 +1711.429424 +1711.449970 +1711.472980 +1711.513873 +1711.545808 +1711.555698 +1711.656064 +1711.702784 +1712.453299 +1712.461324 +1712.472080 +1712.473213 +1712.479706 +1712.492060 +1712.500352 +1712.605547 +1715.361022 +1715.369480 +1715.418498 +1715.445304 +1716.982832 +1719.154058 +1720.827949 +1720.947197 +1724.578861 +1724.586520 +1726.179093 +1726.480758 +1726.481290 +1726.881523 +1727.480990 +1727.681256 +1727.979391 +1727.981322 +1728.081888 +1728.179923 +1728.580855 +1728.582787 +1728.680722 +1728.780256 +1728.780722 +1729.481154 +1729.781420 +1729.981587 +1730.481586 +1730.481986 +1730.681519 +1730.880587 +1730.880986 +1730.918149 +1730.981353 +1732.459839 +1732.471727 +1732.479919 +1733.830434 +1733.874290 +1733.879951 +1737.181480 +1737.296831 +1737.982544 +1738.197962 +1738.335624 +1738.406054 +1738.711548 +1738.794798 +1739.010316 +1739.106086 +1739.230695 +1739.243549 +1739.357135 +1739.374484 +1739.398027 +1739.543582 +1739.603389 +1739.617308 +1739.675183 +1739.735223 +1739.766059 +1739.807018 +1739.825433 +1739.910814 +1739.962129 +1739.962895 +1740.018240 +1740.157534 +1740.184407 +1740.194930 +1740.195396 +1740.209415 +1740.215010 +1740.399492 +1740.412579 +1740.430694 +1740.444480 +1740.472885 +1740.486238 +1740.671986 +1740.702855 +1740.734190 +1740.817140 +1740.883674 +1740.957966 +1741.301788 +1741.649707 +1741.657033 +1741.657832 +1741.662328 +1749.435746 +1749.465716 +1749.555760 +1749.568147 +1749.569579 +1749.569779 +1749.712769 +1750.935212 +1750.957823 +1750.960054 +1755.134842 +1755.268441 +1755.305870 +1755.310066 +1755.332577 +1757.389285 +1758.024949 +1758.046693 +1758.061279 +1758.062711 +1758.089717 +1758.184855 +1758.201472 +1758.229910 +1759.032373 +1759.060412 +1759.075231 +1759.083023 +1759.114858 +1759.189250 +1761.079291 +1761.080057 +1761.179491 +1761.279457 +1761.286484 +1761.379657 +1761.380023 +1761.480290 +1761.580290 +1761.881089 +1762.187482 +1762.381554 +1762.581154 +1762.680888 +1762.681754 +1762.781587 +1762.882087 +1763.081154 +1763.081354 +1763.181720 +1763.581187 +1763.781886 +1764.181486 +1764.181985 +1764.282418 +1764.381086 +1764.782218 +1764.881652 +1764.882085 +1764.882984 +1764.981585 +1765.480286 +1765.481518 +1765.482583 +1765.582550 +1765.682250 +1765.781651 +1765.782050 +1765.981551 +1769.057572 +1770.492369 +1770.493201 +1770.540554 +1771.489038 +1771.724435 +1772.298261 +1772.463329 +1772.526199 +1772.931127 +1773.185040 +1773.253971 +1773.438653 +1773.569089 +1773.631360 +1773.738886 +1773.827364 +1773.924167 +1773.941616 +1774.054137 +1774.067423 +1774.067923 +1774.294729 +1774.318206 +1774.363094 +1774.513843 +1774.528895 +1774.544113 +1774.585405 +1774.613277 +1774.675048 +1774.734256 +1774.765291 +1774.768788 +1774.824932 +1774.854269 +1774.885338 +1774.918605 +1774.960163 +1774.991065 +1775.016373 +1775.017139 +1775.021368 +1775.101921 +1775.145145 +1775.145611 +1775.175248 +1775.217705 +1775.252038 +1775.320069 +1775.357499 +1775.362027 +1775.371718 +1775.406816 +1775.434821 +1775.468488 +1775.499790 +1775.597425 +1775.624332 +1775.686336 +1775.701921 +1775.750272 +1775.765823 +1775.780076 +1775.780908 +1775.812477 +1775.830891 +1775.849107 +1775.878344 +1775.924098 +1775.939383 +1775.966389 +1781.467416 +1781.611771 +1781.721628 +1781.758991 +1781.759390 +1782.933981 +1783.123292 +1783.139908 +1783.184164 +1783.350764 +1784.223490 +1784.404942 +1784.455625 +1784.532514 +1788.330846 +1789.663445 +1790.463611 +1792.954018 +1793.908829 +1796.181121 +1796.181221 +1796.384384 +1796.481753 +1796.880787 +1796.881087 +1796.881786 +1796.982186 +1797.081020 +1797.081753 +1797.681153 +1797.681652 +1798.081419 +1798.181552 +1798.480453 +1798.481951 +1798.581818 +1798.681018 +1798.781584 +1798.782317 +1799.181517 +1799.281684 +1799.380585 +1800.282149 +1800.381649 +1800.382082 +1800.482482 +1800.485645 +1800.581982 +1800.582781 +1800.681716 +1800.781449 +1800.882182 +1800.981616 +1802.530965 +1802.555240 +1802.594035 +1802.634228 +1802.646116 +1802.647748 +1802.665630 +1806.974816 +1807.144680 +1807.509548 +1807.728628 +1808.105385 +1808.281975 +1808.377479 +1808.426563 +1808.490599 +1808.641615 +1808.691465 +1808.805118 +1808.870386 +1808.871351 +1808.930492 +1808.945011 +1808.961228 +1809.112576 +1809.168987 +1809.182873 +1809.210445 +1809.224498 +1809.225397 +1809.280175 +1809.337052 +1809.369786 +1809.371717 +1809.399789 +1809.446542 +1809.510245 +1809.556665 +1809.590565 +1809.591197 +1809.659296 +1809.678010 +1809.735553 +1809.788200 +1809.855233 +1809.884837 +1809.902885 +1809.945376 +1809.945842 +1809.959995 +1810.003152 +1810.031523 +1810.064823 +1810.096791 +1810.119968 +1810.166621 +1810.248772 +1810.303851 +1810.349638 +1810.359362 +1810.373414 +1810.434120 +1810.479775 +1810.523398 +1810.525229 +1810.582838 +1810.586634 +1810.629824 +1810.634120 +1810.662658 +1810.680773 +1810.718702 +1810.762558 +1810.824529 +1810.885468 +1810.912541 +1810.916071 +1810.929724 +1810.932022 +1810.946474 +1810.949171 +1814.377140 +1814.766017 +1814.768448 +1816.357491 +1816.371643 +1818.551894 +1818.655524 +1819.456655 +1819.538973 +1820.116994 +1820.185060 +1821.225518 +1821.979497 +1822.869439 +1822.979729 +1824.225049 +1825.422250 +1825.491581 +1825.573865 +1825.620985 +1825.668104 +1825.721851 +1825.766040 +1825.795543 +1825.980358 +1826.530075 +1826.558147 +1826.599106 +1826.602203 +1826.612825 +1826.659778 +1826.707164 +1826.709295 +1826.802069 +1826.844227 +1826.972898 +1828.071565 +1828.072564 +1828.077026 +1828.083620 +1828.092910 +1828.141795 +1828.228741 +1828.235801 +1828.305498 +1828.337699 +1828.352151 +1829.695440 +1829.742759 +1829.775693 +1830.464936 +1830.538096 +1830.674160 +1830.774127 +1830.979721 +1830.981586 +1831.079155 +1831.080886 +1831.181619 +1831.281086 +1831.481252 +1831.580419 +1831.681518 +1831.786480 +1831.880053 +1832.679819 +1832.982150 +1833.081450 +1833.481283 +1833.881216 +1834.081016 +1834.082548 +1834.281249 +1834.381416 +1834.481449 +1834.582081 +1834.881648 +1835.181615 +1835.580449 +1835.580848 +1835.581614 +1835.785710 +1835.881314 +1835.885943 +1835.981048 +1836.910118 +1839.497661 +1839.501490 +1839.531361 +1839.548876 +1839.573818 +1839.652306 +1839.656369 +1839.698527 +1839.715376 +1840.795895 +1840.938685 +1841.716373 +1841.849840 +1842.733355 +1842.793961 +1842.907747 +1843.021101 +1843.078377 +1843.227494 +1843.268087 +1843.353335 +1843.525030 +1843.544011 +1843.583504 +1843.635419 +1843.824330 +1843.915272 +1843.928326 +1843.928925 +1844.043777 +1844.073980 +1844.090364 +1844.356331 +1844.374246 +1844.523896 +1844.768452 +1844.782904 +1844.904848 +1844.919634 +1845.024662 +1845.052234 +1845.108911 +1845.124828 +1845.156730 +1845.174145 +1845.213806 +1845.230456 +1845.244408 +1845.292194 +1845.307379 +1845.308511 +1845.400153 +1845.415604 +1845.506979 +1845.569583 +1845.574611 +1845.619433 +1845.620166 +1845.674744 +1845.675277 +1845.690495 +1845.702283 +1845.766286 +1845.766885 +1845.844608 +1845.845174 +1845.879473 +1845.880805 +1845.920998 +1845.936749 +1851.103044 +1854.498245 +1855.499310 +1855.585823 +1855.678730 +1857.979627 +1858.933006 +1858.947458 +1859.145926 +1859.247525 +1859.255383 +1860.778825 +1860.857280 +1860.860044 +1860.868835 +1862.267402 +1862.286516 +1862.343692 +1862.386582 +1862.449186 +1862.455980 +1864.888844 +1864.927872 +1864.935531 +1864.967965 +1865.032467 +1866.180352 +1866.280085 +1866.281850 +1866.380851 +1866.680551 +1867.080750 +1867.382149 +1867.680483 +1867.681049 +1867.981016 +1867.981815 +1868.281382 +1868.380682 +1868.581381 +1868.680749 +1868.780848 +1869.080548 +1869.280348 +1869.280848 +1869.482080 +1869.485177 +1869.684011 +1869.685043 +1869.778849 +1870.079382 +1870.179415 +1870.481313 +1870.582612 +1870.685409 +1870.779714 +1870.880613 +1872.408317 +1873.291700 +1874.151872 +1874.164493 +1874.172352 +1875.736453 +1875.754235 +1875.879509 +1875.933788 +1876.162593 +1876.273881 +1876.407814 +1876.685736 +1876.698157 +1876.758529 +1876.850937 +1876.878243 +1876.900521 +1876.915073 +1877.197756 +1877.252368 +1877.253168 +1877.281906 +1877.392295 +1877.457163 +1877.481939 +1877.619634 +1877.871882 +1877.872414 +1877.976910 +1877.977842 +1878.032821 +1878.119001 +1878.148072 +1878.190363 +1878.298721 +1878.312008 +1878.340213 +1878.415571 +1878.519467 +1878.536117 +1878.625028 +1878.688364 +1878.704182 +1878.731088 +1878.760459 +1878.761724 +1878.775044 +1878.775444 +1878.878940 +1878.896523 +1878.924028 +1879.082636 +1879.166819 +1879.224261 +1879.243042 +1879.256096 +1879.301151 +1879.404647 +1879.450501 +1879.480205 +1879.495989 +1879.496356 +1879.510009 +1879.538147 +1879.602882 +1879.618600 +1879.695390 +1879.696655 +1879.713438 +1879.751767 +1879.752932 +1879.753631 +1879.828057 +1879.841577 +1879.900551 +1879.909309 +1880.058759 +1880.087797 +1880.150035 +1880.150734 +1880.180371 +1880.221263 +1880.225059 +1880.237447 +1880.251300 +1880.267251 +1880.314636 +1880.353331 +1880.385166 +1880.401050 +1880.416634 +1880.447503 +1880.477707 +1880.494024 +1880.509541 +1880.578705 +1880.580637 +1880.657860 +1880.686664 +1880.717467 +1880.718432 +1880.762422 +1880.807943 +1880.859291 +1880.870347 +1880.900517 +1880.901083 +1880.952764 +1884.614965 +1884.730916 +1886.049995 +1886.466978 +1886.695316 +1886.705439 +1887.107537 +1887.429415 +1887.459618 +1887.500776 +1887.570007 +1887.622055 +1887.658052 +1887.708335 +1887.747529 +1887.777966 +1887.806038 +1887.824719 +1887.847563 +1887.861415 +1887.916227 +1887.934709 +1887.949927 +1888.073903 +1888.130679 +1888.144898 +1888.168475 +1888.174535 +1888.182927 +1888.203640 +1888.222887 +1888.264312 +1888.279630 +1888.294182 +1888.439237 +1888.463380 +1888.483226 +1888.488954 +1888.552490 +1888.605870 +1888.625617 +1888.661415 +1888.696779 +1888.708434 +1888.733309 +1888.760848 +1888.919523 +1888.944198 +1888.965976 +1888.987022 +1888.995014 +1889.013862 +1889.098510 +1889.105237 +1889.143765 +1889.166176 +1889.190252 +1889.204804 +1889.259716 +1889.301740 +1889.314228 +1889.386123 +1889.447428 +1889.474601 +1889.496379 +1889.514794 +1889.555320 +1889.587454 +1889.620987 +1889.666775 +1889.693781 +1889.698909 +1889.716991 +1889.761513 +1889.779828 +1889.814094 +1889.823252 +1889.864843 +1889.885789 +1889.907900 +1889.925782 +1889.948560 +1889.976099 +1889.994613 +1890.005136 +1890.043897 +1890.108133 +1890.140101 +1890.149925 +1890.184756 +1890.205935 +1890.294580 +1890.309432 +1890.360347 +1890.405769 +1890.440401 +1890.464676 +1890.483091 +1890.504004 +1890.510630 +1890.526714 +1890.559082 +1890.617989 +1890.647460 +1890.659648 +1890.681326 +1890.690184 +1890.690750 +1890.730777 +1890.747560 +1890.784223 +1890.796744 +1890.816890 +1890.860647 +1890.918955 +1890.947060 +1891.118189 +1891.131575 +1891.184722 +1891.375365 +1891.432241 +1891.531042 +1891.578661 +1891.628145 +1891.696943 +1891.713992 +1891.729310 +1891.736736 +1891.790516 +1891.825248 +1891.836803 +1891.893346 +1891.923716 +1891.938701 +1891.981092 +1892.116556 +1892.293945 +1892.418720 +1892.452087 +1892.494211 +1892.590615 +1892.627844 +1892.697208 +1892.720152 +1892.737102 +1892.755716 +1892.801204 +1892.835736 +1892.880691 +1892.920185 +1892.940098 +1892.976995 +1892.980758 +1893.123481 +1893.134137 +1893.199039 +1893.315190 +1893.350787 +1893.362709 +1893.470900 +1893.526878 +1893.548023 +1893.558946 +1893.646591 +1893.806464 +1893.829175 +1893.889748 +1893.909395 +1893.937034 +1894.117919 +1894.122248 +1894.359944 +1894.465938 +1894.560443 +1894.585684 +1894.597573 +1894.679990 +1894.753883 +1894.828774 +1894.852484 +1894.907529 +1894.923946 +1894.963806 +1894.980156 +1895.202733 +1895.287715 +1895.323180 +1895.411857 +1895.480289 +1895.513556 +1895.525044 +1895.551285 +1895.575027 +1895.600202 +1895.618151 +1895.634501 +1895.681521 +1895.698903 +1895.760275 +1895.830305 +1895.846089 +1895.866169 +1895.913622 +1895.923745 +1895.977092 +1895.980655 +1896.126009 +1896.130938 +1896.312423 +1896.330804 +1896.344091 +1896.377957 +1896.428373 +1896.500268 +1896.519216 +1896.636132 +1896.695106 +1896.721114 +1896.736531 +1896.803265 +1896.822679 +1896.875392 +1896.911856 +1896.920814 +1896.987280 +1897.024144 +1897.049485 +1897.120147 +1897.164536 +1897.167567 +1897.203164 +1897.233268 +1897.262838 +1897.399035 +1897.451149 +1897.488712 +1897.576124 +1897.597836 +1897.629238 +1897.653514 +1897.671429 +1897.732435 +1897.759940 +1897.847486 +1897.862571 +1897.910123 +1897.943423 +1897.976690 +1898.002930 +1898.010789 +1898.032035 +1898.054745 +1898.103829 +1898.179587 +1898.236696 +1898.250516 +1898.288545 +1898.332034 +1898.382883 +1898.410156 +1898.458441 +1898.483882 +1898.513653 +1898.773426 +1898.797135 +1898.820346 +1898.856310 +1898.910089 +1899.005727 +1899.062303 +1899.063302 +1899.110022 +1899.235164 +1899.240425 +1899.311754 +1899.341224 +1899.441690 +1899.491274 +1899.549882 +1899.558140 +1899.604028 +1899.626638 +1899.648217 +1899.695103 +1899.729968 +1899.754577 +1899.764534 +1899.910721 +1899.929835 +1899.974823 +1899.988177 +1900.106924 +1900.142755 +1900.183381 +1900.216282 +1900.272092 +1900.283514 +1900.334164 +1900.477720 +1900.572858 +1900.573690 +1900.594470 +1900.696268 +1900.747483 +1900.819078 +1900.832365 +1900.860936 +1900.880417 +1900.939158 +1901.179451 +1901.181449 +1901.282714 +1901.379817 +1901.380649 +1901.580383 +1901.979883 +1902.282513 +1902.283246 +1902.581214 +1902.680015 +1902.778983 +1902.783112 +1903.181580 +1903.183678 +1903.280081 +1903.282412 +1903.380714 +1903.480081 +1903.681147 +1903.682545 +1903.880014 +1903.880547 +1903.983411 +1904.181546 +1904.380613 +1904.480247 +1904.481312 +1904.579847 +1904.780146 +1904.782477 +1904.783077 +1904.880812 +1904.980146 +1905.083376 +1905.084808 +1905.180679 +1905.280013 +1905.379979 +1905.384874 +1905.983342 +1907.768955 +1908.076247 +1908.141648 +1908.179743 +1908.216840 +1908.269753 +1908.407083 +1908.424665 +1908.456866 +1908.649140 +1908.687635 +1908.717505 +1909.319669 +1909.503185 +1909.517105 +1909.564058 +1909.682273 +1909.683605 +1909.717404 +1909.807214 +1909.837184 +1909.867154 +1909.923365 +1909.926362 +1909.963192 +1910.010644 +1910.024397 +1910.156398 +1910.198456 +1910.342212 +1910.478742 +1910.495525 +1910.512775 +1910.553068 +1910.564956 +1910.613474 +1910.799022 +1910.846174 +1910.877976 +1910.896857 +1910.963790 +1911.128458 +1911.269884 +1911.452567 +1911.465821 +1911.521898 +1911.592494 +1911.616303 +1911.660792 +1911.720832 +1911.849170 +1912.159227 +1912.160026 +1912.270715 +1912.491727 +1912.582869 +1912.624694 +1912.625826 +1912.711407 +1912.722629 +1912.768517 +1912.983502 +1913.050368 +1913.104081 +1913.144507 +1913.195589 +1913.196988 +1913.237680 +1913.253198 +1913.277674 +1913.290694 +1913.317667 +1913.430521 +1913.497987 +1913.524427 +1913.593591 +1913.622529 +1913.705279 +1913.719998 +1913.732152 +1913.747836 +1913.762056 +1913.806644 +1913.857360 +1913.874177 +1913.957660 +1914.001016 +1914.016101 +1914.046371 +1914.102515 +1914.130620 +1914.187796 +1914.217733 +1914.217999 +1914.231985 +1914.261988 +1914.262455 +1914.275142 +1914.276807 +1914.380070 +1914.466184 +1914.511838 +1914.523960 +1914.611938 +1914.656993 +1914.687596 +1914.703380 +1914.733183 +1914.733949 +1914.874009 +1914.915434 +1914.943939 +1914.959524 +1915.032351 +1915.063353 +1915.214901 +1915.232184 +1925.351388 +1925.351821 +1925.432041 +1925.718820 +1926.203968 +1928.291012 +1929.149519 +1929.155547 +1931.136863 +1931.202298 +1932.286146 +1932.454678 +1936.280048 +1936.281214 +1936.284144 +1936.380814 +1937.080514 +1937.081313 +1937.380047 +1937.480180 +1937.480913 +1937.981079 +1938.679946 +1938.680812 +1939.780944 +1939.980111 +1940.282442 +1940.380277 +1940.381276 +1940.579878 +1940.580777 +1940.581276 +1940.679245 +1940.680277 +1940.980144 +1941.648708 +1944.694392 +1946.166718 +1946.519599 +1947.365585 +1947.571312 +1948.668747 +1948.681235 +1948.866749 +1949.135214 +1949.294920 +1949.323225 +1949.410072 +1949.411038 +1949.426189 +1949.426955 +1949.470678 +1949.508640 +1949.522060 +1949.539542 +1949.608174 +1949.652429 +1949.670178 +1949.699549 +1949.741041 +1949.849732 +1949.863618 +1949.892322 +1949.933981 +1950.025722 +1950.030018 +1950.156625 +1950.267913 +1950.295819 +1950.324024 +1950.339242 +1950.401613 +1950.439009 +1950.468845 +1950.469112 +1950.516331 +1950.550863 +1950.560454 +1950.592222 +1950.681532 +1950.695086 +1950.724856 +1950.787193 +1950.799015 +1950.859954 +1950.893087 +1950.893454 +1950.912868 +1950.938309 +1950.953327 +1950.954093 +1952.206173 +1958.531142 +1958.588684 +1958.653819 +1958.779993 +1963.979155 +1971.076317 +1971.283144 +1971.481245 +1971.579280 +1971.980379 +1972.379146 +1972.680079 +1972.880644 +1973.080511 +1973.479845 +1973.480444 +1973.480810 +1973.980111 +1974.181642 +1974.380776 +1974.679377 +1975.180509 +1975.280542 +1975.282507 +1975.380575 +1975.880109 +1975.980242 +1977.252934 +1977.253667 +1977.264823 +1977.297856 +1980.980503 +1982.050599 +1982.239843 +1982.497252 +1982.637811 +1983.382898 +1983.394187 +1983.725322 +1983.740207 +1984.156957 +1984.294519 +1984.295152 +1984.501112 +1984.711668 +1984.738908 +1984.829017 +1984.869410 +1984.931082 +1984.959886 +1984.989390 +1985.005674 +1985.071908 +1985.150562 +1985.204109 +1985.252194 +1985.416629 +1985.459053 +1985.522357 +1985.551261 +1985.637808 +1985.682197 +1985.721857 +1985.745100 +1985.771974 +1985.799579 +1985.842536 +1985.857754 +1985.889289 +1985.904008 +1985.963215 +1985.964414 +1986.552992 +1986.571473 +1986.720557 +1991.566540 +1991.727079 +1991.727978 +1991.728578 +1992.784088 +1992.845260 +1992.859479 +1992.888916 +1992.942429 +1992.971367 +1992.985420 +1993.047191 +1993.056182 +1993.087151 +1993.207564 +1994.264739 +1994.323347 +1994.364739 +1994.374629 +1994.390913 +1994.440863 +1994.465072 +1994.465571 +1994.470500 +1994.513457 +1994.609394 +1995.849719 +1995.899436 +1995.914887 +1995.978890 +1996.121913 +1996.136565 +1996.201733 +1996.253049 +1997.978888 +1999.580385 +2000.491106 +2000.491473 +2000.533564 +2000.589907 +2000.639558 +2000.673091 +2000.673657 +2000.723773 +2000.732998 +2000.807723 +2000.882082 +2000.900164 +2000.928136 +2001.556174 +2001.670293 +2001.780416 +2001.790805 +2001.810519 +2002.591804 +2002.639423 +2002.677151 +2002.727368 +2002.812150 +2004.777149 +2004.846014 +2006.178646 +2006.379978 +2006.384507 +2006.484174 +2006.685606 +2007.080577 +2007.183607 +2007.381542 +2007.479977 +2007.480577 +2007.882774 +2007.885038 +2007.980343 +2008.183273 +2008.480909 +2008.879043 +2008.879576 +2009.280442 +2009.282306 +2009.580441 +2009.581340 +2009.780974 +2009.881640 +2009.886901 +2010.180707 +2010.181073 +2010.183371 +2010.184803 +2010.283071 +2010.380840 +2010.381206 +2010.384170 +2010.480907 +2010.485702 +2010.580973 +2010.596890 +2010.680806 +2010.780840 +2010.785602 +2011.761525 +2012.472280 +2014.066284 +2015.228554 +2015.231584 +2015.237512 +2015.244738 +2015.284998 +2015.365883 +2017.284430 +2017.654759 +2017.923956 +2018.120759 +2018.179400 +2018.324788 +2018.325388 +2018.325920 +2018.545900 +2018.608271 +2018.729017 +2018.743236 +2018.756356 +2018.773472 +2018.870309 +2018.926952 +2019.126386 +2019.246432 +2019.681264 +2019.681963 +2019.758320 +2020.023721 +2020.101476 +2020.162981 +2020.287923 +2020.420091 +2020.515129 +2020.527417 +2020.528049 +2020.542502 +2020.606138 +2020.650227 +2020.697746 +2020.712232 +2020.737806 +2020.784892 +2020.859884 +2020.861715 +2020.872571 +2020.884259 +2020.900710 +2020.902441 +2020.903174 +2020.929847 +2020.930380 +2020.932178 +2020.946997 +2020.961715 +2020.976301 +2020.977100 +2021.838637 +2021.909467 +2024.818921 +2025.958513 +2031.148452 +2032.221244 +2033.165100 +2034.160969 +2035.126003 +2035.135794 +2035.139323 +2035.980681 +2036.231697 +2036.283578 +2036.395499 +2038.666926 +2038.852007 +2038.964728 +2039.694530 +2039.754770 +2040.829994 +2040.830560 +2040.956001 +2041.380742 +2041.383107 +2041.481009 +2041.585571 +2041.681142 +2041.782207 +2041.979543 +2042.382107 +2042.583139 +2042.782206 +2043.180508 +2043.481873 +2043.483704 +2043.686068 +2044.182038 +2044.381905 +2044.880539 +2044.881571 +2044.980406 +2045.080539 +2045.281837 +2045.481371 +2045.781337 +2045.881038 +2046.218333 +2046.249902 +2047.920430 +2048.706742 +2048.866682 +2049.099050 +2049.102180 +2049.201913 +2051.141539 +2051.198049 +2051.596550 +2051.785427 +2051.949630 +2052.037908 +2052.132480 +2052.144035 +2052.385294 +2052.622057 +2052.740871 +2052.961117 +2053.109902 +2053.425452 +2053.602841 +2053.651326 +2053.666478 +2053.679998 +2053.681330 +2053.871339 +2053.937606 +2054.160117 +2054.175668 +2054.202874 +2054.228881 +2054.229348 +2054.354289 +2054.463547 +2054.706304 +2054.720689 +2054.759550 +2054.777865 +2054.808967 +2054.825817 +2054.855521 +2054.868408 +2054.869074 +2054.937572 +2054.988055 +2054.988521 +2055.003273 +2055.091518 +2055.116693 +2055.169606 +2055.196912 +2055.303106 +2055.364844 +2055.394381 +2055.424618 +2055.550092 +2055.564944 +2055.653023 +2055.757518 +2055.827048 +2055.829812 +2055.912929 +2056.544530 +2059.465739 +2060.614889 +2060.728509 +2060.789481 +2062.174095 +2062.192843 +2062.218484 +2062.294341 +2062.367135 +2062.414321 +2063.566268 +2063.766401 +2064.509690 +2064.828804 +2065.060972 +2065.562370 +2065.674191 +2065.731401 +2065.732366 +2065.766632 +2065.801730 +2065.829669 +2066.152513 +2066.168497 +2066.184514 +2066.227371 +2066.255543 +2066.302795 +2066.342356 +2066.981050 +2067.166498 +2067.178685 +2067.185412 +2067.186211 +2067.191706 +2067.230633 +2067.291472 +2067.300930 +2067.331133 +2067.331599 +2067.407356 +2067.408922 +2067.619644 +2067.983113 +2068.217113 +2068.218012 +2068.834961 +2068.847482 +2068.868427 +2068.890638 +2069.120974 +2069.145017 +2069.981480 +2070.122638 +2070.129831 +2070.190704 +2070.289338 +2071.113680 +2071.125568 +2072.767391 +2072.787538 +2073.574716 +2074.842980 +2076.079309 +2076.380707 +2076.381074 +2076.384271 +2076.387034 +2076.485303 +2076.581873 +2076.685569 +2076.782239 +2077.081273 +2077.082305 +2077.085335 +2077.185935 +2077.281373 +2077.482105 +2077.986001 +2078.181938 +2078.380239 +2078.481405 +2078.585833 +2078.682004 +2078.985267 +2079.084101 +2079.084734 +2079.282236 +2079.481670 +2079.881170 +2079.981103 +2080.182502 +2080.183068 +2080.382635 +2080.387996 +2080.483201 +2080.483734 +2080.682568 +2080.782901 +2082.848733 +2082.890491 +2082.891557 +2082.966715 +2082.972476 +2083.071810 +2084.784362 +2085.241305 +2085.272440 +2085.304908 +2085.430349 +2085.441737 +2085.500678 +2085.526985 +2085.917395 +2085.965680 +2086.481030 +2086.801410 +2086.861017 +2086.996747 +2087.089355 +2087.213064 +2087.240670 +2087.324419 +2087.390453 +2087.488722 +2087.588222 +2087.603973 +2087.620889 +2087.662981 +2087.872304 +2087.872937 +2087.943966 +2087.971372 +2087.985191 +2088.010599 +2088.026084 +2088.054256 +2088.055321 +2088.159350 +2088.201142 +2088.308634 +2088.353822 +2088.369473 +2088.393849 +2088.460849 +2088.462114 +2088.478131 +2088.493915 +2088.545497 +2088.557518 +2088.625151 +2088.639769 +2088.680895 +2088.719889 +2088.745597 +2088.799410 +2089.050525 +2089.107568 +2089.122087 +2089.122553 +2089.151690 +2089.180362 +2089.181161 +2089.225383 +2089.261048 +2089.261880 +2089.292116 +2089.329912 +2089.586655 +2089.603904 +2089.619689 +2089.662912 +2089.702839 +2089.703771 +2089.720854 +2089.773768 +2089.808333 +2089.834407 +2089.885656 +2090.029911 +2090.042432 +2090.075665 +2090.089052 +2090.106834 +2090.139835 +2090.153521 +2090.154087 +2090.189918 +2090.297876 +2090.314360 +2090.342698 +2090.355119 +2090.418189 +2090.485722 +2090.485955 +2090.500906 +2090.562844 +2090.595079 +2090.595512 +2090.595845 +2090.607966 +2090.609131 +2090.636970 +2090.714260 +2090.728379 +2090.744296 +2090.747926 +2090.763777 +2090.777729 +2090.778096 +2090.792248 +2090.793114 +2090.808066 +2090.822851 +2090.866540 +2090.882857 +2090.912228 +2090.914393 +2090.930510 +2093.472365 +2095.560275 +2095.579822 +2095.666069 +2095.801834 +2095.822113 +2096.165836 +2096.173761 +2096.195440 +2096.249053 +2097.085948 +2098.020180 +2098.028538 +2098.049017 +2098.088944 +2098.111821 +2098.131402 +2098.181352 +2098.187179 +2098.210622 +2098.253313 +2099.135230 +2099.160205 +2099.215050 +2099.243189 +2099.292007 +2099.304894 +2100.092039 +2100.099032 +2100.198466 +2100.263401 +2100.346717 +2100.362502 +2100.503993 +2101.143886 +2101.234229 +2101.249913 +2101.398898 +2101.426703 +2101.540356 +2101.980482 +2103.167594 +2103.313581 +2103.410584 +2103.423404 +2104.120973 +2104.982077 +2105.981477 +2106.578812 +2107.971685 +2108.048841 +2108.096626 +2109.304084 +2109.334454 +2111.185934 +2111.279274 +2111.286500 +2111.380306 +2111.382138 +2111.585401 +2111.981671 +2111.982104 +2112.181904 +2112.881537 +2112.882403 +2113.182735 +2113.281703 +2113.382002 +2113.482269 +2113.581802 +2113.783001 +2113.882002 +2113.982235 +2114.281835 +2114.482734 +2114.682367 +2114.683799 +2114.782434 +2114.982267 +2115.082633 +2115.182733 +2115.281834 +2115.582899 +2115.682566 +2115.880701 +2115.982100 +2115.982499 +2117.948731 +2117.977369 +2118.025821 +2118.057922 +2118.088058 +2118.108405 +2118.134146 +2121.296380 +2121.445264 +2121.665544 +2122.492383 +2122.578330 +2122.669639 +2122.670205 +2122.859249 +2122.876199 +2122.944997 +2123.129512 +2123.586255 +2123.760114 +2123.760514 +2124.004170 +2124.272601 +2124.332641 +2124.449890 +2124.484755 +2124.497676 +2124.539500 +2124.566140 +2124.624116 +2124.640399 +2124.671935 +2124.822118 +2124.967272 +2124.979860 +2124.994545 +2125.052986 +2125.069670 +2125.084655 +2125.128145 +2125.154951 +2125.202503 +2125.306799 +2125.453785 +2125.465740 +2125.514558 +2125.515124 +2125.547358 +2125.561644 +2125.592113 +2125.623782 +2125.707565 +2125.776695 +2125.812360 +2125.861577 +2125.950488 +2128.607428 +2129.122147 +2129.752849 +2129.771330 +2129.795373 +2129.850318 +2129.896405 +2129.919448 +2129.938962 +2129.979988 +2130.088046 +2130.150850 +2130.179155 +2130.275925 +2130.303631 +2130.357077 +2130.658975 +2130.700900 +2130.723976 +2130.746787 +2130.765535 +2130.845888 +2130.915984 +2130.943756 +2130.965068 +2131.010590 +2131.017549 +2131.046054 +2131.069564 +2131.108924 +2131.145954 +2131.149317 +2131.186547 +2131.201132 +2131.259008 +2131.273693 +2131.342191 +2131.380053 +2131.406160 +2131.409657 +2131.458341 +2131.530802 +2131.577589 +2131.597968 +2131.614951 +2131.631002 +2131.654811 +2131.669397 +2131.711388 +2132.150315 +2132.223209 +2132.243988 +2132.288743 +2132.353778 +2132.375357 +2132.426705 +2132.463635 +2132.485846 +2132.488643 +2132.567265 +2132.615450 +2132.637061 +2132.738227 +2132.745520 +2132.761570 +2132.787378 +2132.805693 +2132.851613 +2132.855976 +2133.050514 +2133.064800 +2133.075156 +2133.077987 +2133.087644 +2133.183448 +2133.201263 +2133.233098 +2133.253611 +2133.269062 +2133.297167 +2133.312086 +2133.357940 +2133.392505 +2134.076754 +2134.099864 +2134.125472 +2134.146684 +2134.220576 +2134.240989 +2134.266064 +2134.309621 +2134.359171 +2134.370992 +2134.413017 +2134.521775 +2134.546550 +2134.559937 +2134.648415 +2134.673257 +2134.777952 +2134.884612 +2134.894735 +2134.924705 +2134.946883 +2134.987242 +2135.024671 +2135.058771 +2135.153409 +2135.163100 +2135.163599 +2135.225737 +2135.235893 +2135.267129 +2135.308121 +2135.336926 +2135.364365 +2135.365231 +2135.380815 +2135.404924 +2135.421408 +2135.456273 +2135.585210 +2135.598797 +2135.633695 +2135.660768 +2136.119043 +2136.194800 +2137.123770 +2137.133327 +2137.188739 +2137.978115 +2138.122337 +2138.199327 +2138.527565 +2138.545680 +2138.579080 +2138.624335 +2138.980179 +2139.202756 +2139.223568 +2140.139252 +2140.141483 +2140.268123 +2140.296694 +2140.314476 +2140.373118 +2140.979144 +2141.124565 +2141.136953 +2141.297792 +2141.739583 +2142.533588 +2142.541680 +2142.609379 +2142.692796 +2142.758397 +2142.768420 +2142.804351 +2142.958496 +2143.196591 +2143.406748 +2143.437983 +2143.449771 +2143.481073 +2143.492695 +2143.512875 +2143.530890 +2143.572915 +2143.744243 +2145.874311 +2145.894224 +2146.080038 +2146.381903 +2146.483235 +2146.580071 +2146.779771 +2147.079271 +2147.080104 +2147.084200 +2147.578771 +2147.980236 +2148.080269 +2148.080969 +2148.084765 +2148.184798 +2148.280169 +2148.281035 +2148.380069 +2148.480136 +2148.480469 +2148.580369 +2148.586962 +2148.681035 +2148.879503 +2149.480867 +2149.580301 +2149.680101 +2149.680368 +2149.780201 +2150.079835 +2150.279834 +2150.280600 +2150.479867 +2150.780233 +2150.881499 +2150.983863 +2156.378363 +2156.569205 +2156.783258 +2156.965242 +2157.076697 +2157.359048 +2157.478961 +2157.642098 +2157.658681 +2157.709697 +2157.847426 +2157.935937 +2157.948125 +2158.047126 +2158.082757 +2158.094279 +2158.095544 +2158.108564 +2158.109730 +2158.137236 +2158.266873 +2158.347525 +2158.363543 +2158.418488 +2158.453652 +2158.480725 +2158.524648 +2158.554585 +2158.596976 +2158.637768 +2158.678860 +2158.752154 +2158.766839 +2158.782490 +2158.839166 +2158.855184 +2158.964841 +2158.981324 +2159.012393 +2159.025746 +2159.132173 +2159.143762 +2159.147291 +2159.171534 +2159.200438 +2159.270568 +2159.284920 +2159.297741 +2159.345393 +2159.386685 +2159.451820 +2159.510195 +2159.586385 +2159.607797 +2159.664773 +2159.666572 +2159.680025 +2159.695975 +2159.709995 +2159.724680 +2159.725146 +2159.801636 +2159.827910 +2159.844194 +2159.893611 +2159.937034 +2159.977727 +2160.008196 +2160.053451 +2160.173198 +2160.202002 +2160.220783 +2160.230840 +2160.246857 +2160.300770 +2160.329242 +2160.378326 +2160.404200 +2160.404799 +2160.417919 +2160.447190 +2160.448356 +2160.470001 +2160.486984 +2160.529874 +2160.612125 +2160.632238 +2160.687083 +2160.719051 +2160.720017 +2160.781489 +2160.801103 +2160.843926 +2160.888948 +2160.919184 +2164.456710 +2164.510023 +2164.538628 +2164.542491 +2167.522375 +2167.640889 +2167.646017 +2168.459370 +2168.562633 +2169.639489 +2169.773788 +2169.790870 +2171.124269 +2171.195298 +2171.244982 +2172.134658 +2172.188570 +2172.189136 +2172.195397 +2172.197728 +2172.286339 +2172.310182 +2172.347511 +2172.376882 +2172.385207 +2173.127464 +2173.136954 +2173.187570 +2173.194930 +2173.197727 +2173.201456 +2174.142881 +2175.901554 +2177.711309 +2177.729224 +2177.761725 +2177.829757 +2177.864555 +2177.884702 +2177.919467 +2177.943410 +2181.179704 +2181.479204 +2181.583266 +2181.683299 +2181.779570 +2181.881201 +2181.978271 +2182.179503 +2182.579969 +2182.580635 +2182.679702 +2183.079502 +2183.179835 +2183.279435 +2183.280367 +2183.579202 +2183.579468 +2183.579934 +2184.778601 +2184.979467 +2184.980832 +2185.079400 +2185.281231 +2185.578700 +2185.979199 +2191.274798 +2191.867105 +2192.258947 +2192.552186 +2193.040697 +2193.187217 +2193.338899 +2193.430474 +2193.459112 +2193.972864 +2194.036501 +2194.117819 +2194.261009 +2194.384119 +2194.470699 +2194.618651 +2194.779823 +2194.780323 +2194.866969 +2195.052051 +2195.096473 +2195.098005 +2195.153449 +2195.456812 +2195.575860 +2195.592010 +2195.616319 +2195.678024 +2195.720815 +2195.721614 +2195.754214 +2195.840961 +2195.877824 +2195.879622 +2195.910924 +2195.954314 +2195.971064 +2196.373894 +2196.432036 +2196.432669 +2196.842592 +2200.089608 +2200.299898 +2201.813516 +2201.829566 +2201.919177 +2202.182846 +2202.223905 +2202.254608 +2202.318144 +2202.902592 +2203.203225 +2203.223238 +2203.238056 +2203.245849 +2203.327800 +2203.507720 +2203.866561 +2203.898395 +2203.918875 +2203.923370 +2203.926068 +2203.987706 +2204.945714 +2204.951974 +2206.099126 +2206.111447 +2206.122070 +2206.131893 +2206.138320 +2206.869921 +2206.887403 +2206.905186 +2206.925898 +2206.999758 +2207.563860 +2207.669620 +2207.706650 +2207.708315 +2207.848941 +2207.855235 +2207.856933 +2207.858232 +2207.871319 +2207.919970 +2207.971552 +2208.905517 +2208.930125 +2208.936719 +2209.013009 +2209.868653 +2209.880241 +2209.884670 +2209.891496 +2209.987633 +2210.006748 +2210.850936 +2210.862291 +2210.870350 +2210.878142 +2210.889864 +2210.972781 +2211.707046 +2211.868484 +2211.882836 +2211.892227 +2211.904615 +2211.911508 +2211.915037 +2211.988764 +2212.031654 +2212.059460 +2212.067052 +2212.164454 +2212.241710 +2212.254598 +2212.268584 +2212.368717 +2212.391694 +2212.414904 +2212.417068 +2212.748170 +2214.905844 +2215.577771 +2215.591591 +2215.772410 +2215.796053 +2216.543604 +2216.707440 +2216.708140 +2217.010370 +2217.010970 +2217.108872 +2217.111802 +2217.207973 +2217.208439 +2217.209038 +2217.212035 +2217.311902 +2217.312468 +2217.412668 +2217.510536 +2217.513100 +2217.710303 +2217.808904 +2217.810303 +2217.812035 +2218.108072 +2218.114399 +2218.208205 +2218.210402 +2218.210835 +2218.409736 +2218.414731 +2218.511068 +2218.610302 +2218.713266 +2218.808371 +2218.810435 +2218.910735 +2219.010502 +2219.208370 +2219.313565 +2219.410068 +2219.415296 +2219.909668 +2220.010867 +2220.109735 +2220.209868 +2220.210600 +2220.513997 +2220.809967 +2220.810833 +2220.909068 +2220.909900 +2220.910666 +2221.112597 +2221.210433 +2221.213729 +2221.310433 +2221.510765 +2221.512297 +2224.345361 +2225.988050 +2226.807397 +2226.843827 +2227.113157 +2227.233370 +2227.305199 +2227.317719 +2227.423913 +2227.587682 +2227.627975 +2227.674129 +2227.689214 +2227.815088 +2227.841761 +2227.920816 +2227.985617 +2228.004565 +2228.030606 +2228.092710 +2228.106230 +2228.153782 +2228.202001 +2228.249920 +2228.322880 +2228.374062 +2228.386450 +2228.518651 +2228.541361 +2228.576260 +2228.604232 +2228.617918 +2228.618684 +2228.659410 +2228.665603 +2228.677292 +2228.725943 +2228.753549 +2228.754315 +2228.765304 +2228.766103 +2228.766536 +2228.778823 +2228.832070 +2228.936699 +2228.981154 +2228.981620 +2228.992410 +2229.021814 +2229.034168 +2229.046988 +2229.060775 +2229.089746 +2229.104664 +2229.105263 +2229.117584 +2229.121181 +2229.203032 +2229.217384 +2229.234667 +2229.285982 +2229.312756 +2229.338763 +2229.343758 +2229.364471 +2229.375759 +2229.390544 +2229.419182 +2229.430171 +2229.459176 +2229.474760 +2229.486615 +2229.601766 +2229.659409 +2229.674494 +2229.715919 +2229.761040 +2229.800800 +2229.801833 +2229.817617 +2229.947620 +2229.960640 +2229.961040 +2230.005296 +2230.191310 +2230.262039 +2230.277157 +2230.320414 +2230.350284 +2230.461905 +2230.550850 +2230.566934 +2230.581486 +2230.611655 +2230.685581 +2230.790377 +2230.821013 +2230.836664 +2230.867133 +2230.945455 +2230.946221 +2230.989810 +2231.005994 +2231.037463 +2231.053213 +2231.116617 +2231.222377 +2231.281452 +2231.383783 +2231.399733 +2231.441059 +2231.504562 +2231.505561 +2231.520945 +2231.537262 +2231.553712 +2231.600133 +2231.600832 +2231.646320 +2231.660272 +2231.661471 +2231.677389 +2232.813551 +2233.017314 +2233.087377 +2233.284979 +2233.325506 +2233.336128 +2233.352612 +2241.913709 +2241.977845 +2242.933987 +2242.957064 +2242.964324 +2242.965423 +2243.940713 +2244.945740 +2244.950203 +2244.952434 +2244.965354 +2244.981072 +2245.116603 +2245.260825 +2245.307545 +2245.709576 +2245.710175 +2245.938513 +2245.950668 +2245.955896 +2245.964854 +2245.974477 +2246.111607 +2246.133685 +2246.278939 +2246.380371 +2246.709675 +2246.932452 +2246.954463 +2246.987297 +2246.990893 +2247.121163 +2247.274909 +2248.040642 +2248.125358 +2248.290159 +2248.294555 +2248.299949 +2248.559257 +2249.051897 +2249.065417 +2249.301314 +2249.306575 +2249.310471 +2249.327920 +2249.332349 +2249.353761 +2249.820261 +2249.836245 +2250.030217 +2250.033148 +2250.040407 +2250.051596 +2250.164383 +2250.178369 +2250.183064 +2250.296251 +2250.614999 +2251.022324 +2251.090256 +2251.146034 +2251.153893 +2251.179900 +2251.331648 +2251.709603 +2251.710535 +2251.811668 +2251.912966 +2251.913566 +2252.110335 +2252.111101 +2252.111967 +2252.210069 +2252.213132 +2252.309935 +2252.310668 +2252.510202 +2252.510701 +2252.517761 +2252.610268 +2252.613532 +2252.615596 +2252.616462 +2252.617861 +2252.916595 +2253.010801 +2253.212532 +2253.310168 +2253.415928 +2253.710434 +2253.713197 +2253.715795 +2254.115695 +2254.310200 +2254.312398 +2254.712564 +2254.812930 +2254.909700 +2254.912597 +2255.110266 +2255.110898 +2255.217925 +2255.410432 +2255.511131 +2255.611697 +2255.711064 +2255.910864 +2255.912662 +2256.011597 +2256.111796 +2256.414327 +2256.510264 +2256.516391 +2256.709232 +2260.932604 +2261.746190 +2261.895973 +2262.096805 +2262.176792 +2262.235333 +2262.333768 +2262.452017 +2262.501301 +2262.592543 +2262.764071 +2262.827807 +2262.839495 +2262.873128 +2263.117450 +2263.131769 +2263.159309 +2263.234500 +2263.255446 +2263.268932 +2263.269199 +2263.306927 +2263.319382 +2263.361440 +2263.464037 +2263.515718 +2263.527240 +2263.580753 +2263.612821 +2263.638196 +2263.664503 +2263.664902 +2263.678189 +2263.690777 +2263.692142 +2263.717117 +2263.743757 +2263.810423 +2263.835798 +2263.859974 +2263.871995 +2263.953780 +2264.042025 +2264.050983 +2264.063836 +2264.117083 +2264.186081 +2264.199434 +2264.214519 +2264.226507 +2264.378288 +2264.431668 +2264.499667 +2264.571029 +2264.613952 +2264.627039 +2264.640093 +2264.641825 +2264.682750 +2264.708791 +2264.722177 +2264.736663 +2264.806227 +2264.989976 +2265.003196 +2265.045987 +2265.231867 +2265.437761 +2265.577321 +2265.622043 +2266.083581 +2266.096968 +2266.113052 +2276.860960 +2276.939748 +2276.986268 +2277.710743 +2277.870383 +2278.940179 +2278.961923 +2279.709941 +2279.712006 +2279.922329 +2280.711339 +2280.875441 +2281.710239 +2281.877438 +2281.885464 +2284.987092 +2285.055424 +2285.142370 +2285.170842 +2286.296881 +2286.373438 +2286.430614 +2286.448862 +2286.489688 +2286.810034 +2286.810833 +2286.912931 +2287.011333 +2287.012198 +2287.012698 +2287.113430 +2287.213530 +2287.217293 +2287.412331 +2287.413397 +2287.414462 +2287.509934 +2287.513930 +2287.613030 +2287.711865 +2287.713896 +2287.812331 +2287.911498 +2288.114395 +2288.313030 +2288.413662 +2288.511831 +2288.512230 +2288.712763 +2288.812496 +2288.814461 +2288.818990 +2289.114461 +2289.310631 +2289.514194 +2289.913927 +2289.919255 +2290.012029 +2290.410164 +2290.511429 +2290.614060 +2290.711962 +2290.714093 +2290.715325 +2290.913693 +2291.217622 +2291.313693 +2291.612027 +2291.613592 +2291.616490 +2295.270598 +2296.710890 +2296.817550 +2296.818316 +2296.926308 +2296.956211 +2296.970497 +2296.980354 +2297.041060 +2297.078256 +2297.109258 +2297.124043 +2297.267033 +2297.314819 +2297.326341 +2297.599534 +2297.694073 +2297.694872 +2297.706660 +2297.729171 +2297.741159 +2297.764502 +2297.916583 +2297.938561 +2298.028271 +2298.066133 +2298.091108 +2298.128138 +2298.141758 +2298.152813 +2298.178388 +2298.240892 +2298.265401 +2298.288244 +2298.327439 +2298.363935 +2298.416916 +2298.426606 +2298.465167 +2298.477855 +2298.478820 +2298.517748 +2298.529170 +2298.695237 +2298.788843 +2298.817115 +2298.867664 +2298.880918 +2298.999233 +2299.154710 +2299.246885 +2301.300662 +2301.730665 +2301.742687 +2311.240646 +2311.870216 +2311.906746 +2311.919599 +2311.931721 +2311.937815 +2312.712439 +2312.920165 +2312.945539 +2312.958493 +2313.711672 +2313.881735 +2313.903813 +2313.938512 +2314.709940 +2314.711438 +2314.891758 +2315.710172 +2315.885929 +2315.910738 +2315.958357 +2316.886228 +2316.932914 +2316.943038 +2316.963251 +2321.620189 +2321.810565 +2321.812930 +2321.816493 +2322.115527 +2322.116093 +2322.213662 +2322.316559 +2322.711497 +2322.712629 +2322.715193 +2322.811763 +2322.912396 +2323.011896 +2323.114127 +2323.212362 +2323.312795 +2323.314227 +2323.411663 +2323.415026 +2323.515325 +2323.713161 +2323.714659 +2323.815159 +2324.012794 +2324.015858 +2324.213393 +2324.413093 +2324.611661 +2324.612227 +2324.613193 +2324.614525 +2324.615091 +2324.619187 +2324.812727 +2324.813359 +2324.912027 +2325.112660 +2325.120785 +2325.313825 +2325.411760 +2325.412193 +2325.510395 +2325.612226 +2325.811827 +2325.812626 +2325.911926 +2325.915856 +2326.112159 +2326.113125 +2326.311726 +2326.317687 +2326.412392 +2326.414057 +2326.514557 +2326.515123 +2326.618919 +2326.711892 +2326.713258 +2326.714989 +2326.715489 +2329.988013 +2330.015485 +2332.162470 +2332.354477 +2332.407325 +2332.550781 +2332.602196 +2332.629302 +2332.642756 +2332.808523 +2332.961170 +2333.088643 +2333.175156 +2333.211886 +2333.239225 +2333.311020 +2333.318812 +2333.330134 +2333.356241 +2333.367763 +2333.395236 +2333.435462 +2333.472259 +2333.499664 +2333.523208 +2333.548882 +2333.576021 +2333.625672 +2333.769228 +2333.820044 +2333.875522 +2333.912152 +2333.925904 +2333.938825 +2333.952145 +2333.991539 +2334.018678 +2334.053077 +2334.148049 +2334.213417 +2334.240556 +2334.296101 +2334.322241 +2334.340822 +2334.350779 +2334.462034 +2334.475454 +2334.476120 +2334.503093 +2334.654575 +2334.683280 +2334.705790 +2334.733563 +2334.881781 +2335.046549 +2335.161201 +2335.217845 +2335.488740 +2335.502426 +2335.726102 +2336.017777 +2336.166928 +2336.242619 +2336.407953 +2339.112646 +2345.649136 +2346.953764 +2347.713170 +2347.714402 +2349.277105 +2349.469645 +2350.429418 +2356.187654 +2356.199775 +2356.303005 +2356.343065 +2356.810863 +2356.811796 +2356.911229 +2356.912295 +2356.912894 +2356.913594 +2357.012828 +2357.112495 +2357.414659 +2357.512960 +2357.812394 +2357.912128 +2357.913393 +2358.012727 +2358.313459 +2358.513892 +2358.613326 +2358.812992 +2358.815856 +2359.213758 +2359.813990 +2359.817054 +2359.915655 +2360.111992 +2360.414889 +2360.612458 +2360.614855 +2360.812391 +2360.814755 +2361.117253 +2361.313390 +2361.512357 +2361.512923 +2361.612257 +2361.613889 +2361.712923 +2363.082052 +2364.242125 +2364.257476 +2364.259307 +2365.593039 +2367.423973 +2367.609620 +2367.689207 +2367.737026 +2367.898598 +2367.982281 +2368.007389 +2368.248614 +2368.369327 +2368.414981 +2368.426836 +2368.439090 +2368.571557 +2368.583346 +2368.583912 +2368.662566 +2368.676020 +2368.676552 +2368.677285 +2368.702027 +2368.738224 +2368.828101 +2368.844451 +2368.904924 +2368.959136 +2368.972856 +2368.985876 +2369.012183 +2369.025769 +2369.026336 +2369.067861 +2369.091670 +2369.183478 +2369.198064 +2369.224737 +2369.307887 +2369.360135 +2369.463132 +2369.516645 +2369.542985 +2369.555306 +2369.555672 +2369.569026 +2369.640321 +2369.682545 +2369.705522 +2369.719375 +2369.731130 +2369.746648 +2369.790071 +2369.841819 +2369.855572 +2369.910550 +2369.925535 +2370.007520 +2370.035792 +2370.064630 +2370.080081 +2370.122338 +2370.151176 +2370.166594 +2370.224736 +2370.237690 +2370.267293 +2370.283843 +2370.354872 +2370.531662 +2370.560700 +2370.575851 +2370.589737 +2370.590437 +2370.605788 +2370.620373 +2370.620606 +2370.635392 +2370.680080 +2370.695898 +2370.741152 +2370.784842 +2370.860133 +2370.875152 +2370.905854 +2370.966127 +2371.383909 +2371.385208 +2371.432061 +2371.520805 +2371.553806 +2371.585674 +2371.601191 +2371.665793 +2371.681045 +2372.157967 +2372.181977 +2373.346544 +2373.410647 +2373.525199 +2373.527796 +2373.582042 +2373.632758 +2374.760762 +2374.774915 +2374.784205 +2374.811378 +2374.827595 +2374.856666 +2374.861861 +2377.082904 +2378.789496 +2378.964421 +2379.073045 +2380.248602 +2380.287829 +2380.370447 +2381.295920 +2381.405511 +2385.711267 +2386.713664 +2386.713997 +2386.714496 +2389.643331 +2389.663245 +2391.714491 +2391.811927 +2391.812693 +2391.813159 +2391.818454 +2391.918554 +2392.012560 +2392.012859 +2392.612692 +2392.813791 +2392.814191 +2393.013258 +2393.112092 +2393.417720 +2393.513191 +2393.714123 +2394.116653 +2394.313257 +2394.316687 +2394.915987 +2395.113189 +2395.113889 +2395.115287 +2395.117285 +2395.213888 +2395.214055 +2395.214554 +2395.312057 +2395.313322 +2395.313822 +2395.413355 +2395.613422 +2395.713588 +2396.013854 +2396.315419 +2396.412455 +2396.413288 +2396.513388 +2396.513821 +2396.516917 +2396.612522 +2396.613288 +2398.779486 +2400.380983 +2400.401729 +2400.459937 +2400.474456 +2402.661400 +2402.910118 +2402.954440 +2402.993734 +2402.994234 +2403.017977 +2403.088140 +2403.088906 +2403.138656 +2403.164630 +2403.250877 +2403.285209 +2403.313547 +2403.363497 +2403.376817 +2403.430464 +2403.431030 +2403.483144 +2403.537856 +2403.548745 +2403.585908 +2403.609751 +2403.716244 +2403.769491 +2403.796198 +2403.808852 +2403.823037 +2403.863297 +2403.874286 +2403.886973 +2403.900859 +2403.939721 +2403.950277 +2403.961765 +2403.975751 +2403.976151 +2403.989204 +2404.003224 +2404.072255 +2404.159401 +2404.188938 +2404.203457 +2404.272154 +2404.343017 +2404.356437 +2404.369457 +2404.398028 +2404.425268 +2404.481911 +2404.608817 +2404.638754 +2404.681545 +2404.768191 +2404.781911 +2404.796962 +2404.853606 +2404.924834 +2404.983010 +2404.999426 +2405.026633 +2405.067592 +2405.195097 +2405.195863 +2405.210116 +2405.223569 +2405.237388 +2405.317275 +2405.459766 +2405.591201 +2405.619472 +2405.666026 +2405.679679 +2405.694098 +2405.798959 +2405.813412 +2405.874983 +2405.889635 +2405.890268 +2405.905786 +2405.920671 +2405.996695 +2406.042016 +2406.103987 +2406.119272 +2406.135722 +2406.151340 +2406.346911 +2406.362129 +2406.426232 +2406.488669 +2406.504087 +2406.535356 +2406.536155 +2406.550973 +2406.581876 +2406.596228 +2406.612845 +2406.703288 +2409.569385 +2409.810311 +2409.810977 +2409.827560 +2409.888166 +2416.711003 +2417.714032 +2418.237442 +2419.712299 +2420.190553 +2420.218159 +2420.219724 +2420.291086 +2420.712697 +2424.941265 +2425.832972 +2426.811626 +2427.012491 +2427.112658 +2427.113091 +2427.113790 +2427.311592 +2427.615221 +2427.715155 +2427.812624 +2427.912624 +2427.913290 +2428.012823 +2428.013423 +2428.513189 +2428.513755 +2428.814254 +2428.816252 +2428.912223 +2429.113388 +2429.319216 +2429.413355 +2429.915319 +2429.915619 +2430.313420 +2430.411489 +2430.412022 +2430.512588 +2430.613653 +2430.812521 +2430.813120 +2430.815851 +2431.012587 +2431.112620 +2431.116283 +2431.215451 +2431.315118 +2431.413086 +2431.512653 +2431.513186 +2431.614185 +2431.615051 +2431.616616 +2431.617249 +2431.619513 +2431.715084 +2431.716749 +2435.031997 +2437.109151 +2437.330330 +2437.422138 +2437.546880 +2437.866293 +2437.887705 +2437.966260 +2437.977249 +2438.074751 +2438.111648 +2438.138754 +2438.153373 +2438.240386 +2438.291301 +2438.350276 +2438.435524 +2438.448078 +2438.489736 +2438.500192 +2438.533992 +2438.545047 +2438.578447 +2438.579113 +2438.630162 +2438.713345 +2438.714278 +2438.736622 +2438.766259 +2438.838487 +2438.841850 +2438.855203 +2438.867691 +2438.868357 +2438.869056 +2438.882676 +2438.905786 +2438.919805 +2438.920438 +2438.956036 +2438.988170 +2439.002190 +2439.032326 +2439.054271 +2439.080977 +2439.121470 +2439.176215 +2439.180944 +2439.188903 +2439.201057 +2439.212979 +2439.251973 +2439.252206 +2439.252772 +2439.321570 +2439.402522 +2439.415543 +2439.457267 +2439.485373 +2439.552039 +2439.564727 +2439.579778 +2439.663261 +2439.731826 +2439.732459 +2439.746545 +2439.773518 +2439.788536 +2439.815975 +2439.830128 +2439.830294 +2439.887137 +2439.946078 +2439.961063 +2439.989335 +2440.003321 +2440.033124 +2440.046578 +2440.059831 +2440.078779 +2440.104753 +2440.192065 +2440.208782 +2440.252205 +2440.265125 +2440.281143 +2440.296561 +2440.310647 +2440.341482 +2440.386104 +2440.386937 +2440.415608 +2440.490433 +2440.504952 +2440.520303 +2440.535155 +2440.578811 +2440.609614 +2440.610147 +2440.625964 +2440.715008 +2440.990399 +2441.006150 +2441.007416 +2441.021335 +2441.053470 +2441.069021 +2441.309813 +2441.387835 +2441.465657 +2441.513143 +2441.527928 +2441.577778 +2441.592996 +2441.639783 +2441.657532 +2441.704618 +2448.214135 +2451.526619 +2452.711533 +2453.710234 +2453.710900 +2454.711298 +2454.714029 +2455.711164 +2456.711030 +2458.149823 +2459.656415 +2460.976826 +2461.038997 +2462.011158 +2462.012290 +2462.016019 +2462.017018 +2462.112023 +2462.712389 +2462.714054 +2462.812456 +2462.812888 +2463.017084 +2463.113021 +2463.212389 +2463.420713 +2463.615319 +2463.713487 +2463.714053 +2463.719647 +2463.813920 +2464.011788 +2464.112321 +2464.212587 +2464.315518 +2464.412587 +2464.612420 +2464.614985 +2464.712387 +2464.912120 +2464.914451 +2464.914818 +2464.919080 +2465.014152 +2465.115317 +2465.116849 +2465.420578 +2465.512286 +2465.712419 +2465.915183 +2465.916315 +2466.012685 +2466.114717 +2466.115083 +2466.315049 +2466.712385 +2466.713084 +2469.233095 +2469.476685 +2469.499728 +2469.520741 +2469.536125 +2470.516544 +2470.537123 +2470.719707 +2470.752974 +2470.806021 +2470.863663 +2470.877682 +2470.908818 +2472.179080 +2472.477015 +2472.477914 +2472.500991 +2472.577148 +2472.659932 +2472.856901 +2472.987204 +2472.989035 +2473.024666 +2473.036654 +2473.060730 +2473.099425 +2473.125832 +2473.217140 +2473.268323 +2473.288602 +2473.326065 +2473.353737 +2473.366857 +2473.392199 +2473.468389 +2473.482109 +2473.567456 +2473.582441 +2473.595329 +2473.631359 +2473.648209 +2473.817906 +2473.887669 +2473.888568 +2473.914109 +2473.942814 +2473.958165 +2473.969987 +2473.999857 +2474.013910 +2474.057333 +2474.097026 +2474.110679 +2474.111279 +2474.123000 +2474.137852 +2474.163993 +2474.178345 +2474.193330 +2474.206583 +2474.206950 +2474.221202 +2474.251072 +2474.279044 +2474.320669 +2474.360496 +2474.419470 +2474.445444 +2474.446210 +2474.644478 +2474.714708 +2474.729160 +2474.814708 +2474.829360 +2474.859563 +2474.917871 +2474.947941 +2474.977412 +2474.977845 +2475.007781 +2475.021667 +2475.022200 +2475.065823 +2475.111444 +2475.139549 +2475.154934 +2475.156066 +2475.185670 +2475.229027 +2475.258763 +2475.290365 +2475.319802 +2475.394428 +2475.531291 +2475.562126 +2475.577444 +2475.608180 +2475.621933 +2475.653202 +2475.670285 +2475.758230 +2475.910511 +2476.012143 +2476.012909 +2476.045210 +2476.059862 +2476.107414 +2476.300121 +2476.314973 +2476.358363 +2476.403051 +2476.418869 +2476.527527 +2476.559228 +2477.541478 +2478.423562 +2478.449103 +2478.526293 +2481.210472 +2484.018295 +2484.029018 +2485.583861 +2485.588190 +2489.711729 +2490.713860 +2491.711994 +2494.513123 +2494.542294 +2496.811822 +2496.813820 +2497.013853 +2497.112288 +2497.114020 +2497.119214 +2497.214519 +2497.412521 +2497.517383 +2497.912820 +2497.913419 +2498.113419 +2498.313452 +2498.315850 +2498.612819 +2498.614318 +2498.713019 +2498.813352 +2499.011753 +2499.014284 +2499.112786 +2499.118147 +2499.312819 +2499.414217 +2499.513351 +2499.516248 +2499.614184 +2499.712951 +2499.914416 +2500.013451 +2500.113517 +2500.114117 +2500.215615 +2500.314183 +2500.519211 +2500.614782 +2500.814182 +2501.113316 +2501.312950 +2501.313416 +2501.613349 +2505.668224 +2505.705420 +2506.710081 +2506.782175 +2506.794496 +2506.858798 +2506.940783 +2507.020370 +2507.030593 +2507.092631 +2507.158965 +2507.207083 +2507.245844 +2507.269521 +2507.310313 +2507.322434 +2507.381808 +2507.443014 +2507.500922 +2507.562927 +2507.564392 +2507.564758 +2507.577579 +2507.589334 +2507.667955 +2507.703020 +2507.736287 +2507.737386 +2507.751205 +2507.782574 +2507.806084 +2507.837352 +2507.850672 +2507.865291 +2507.876446 +2507.889600 +2507.909280 +2507.929460 +2507.952637 +2507.966290 +2507.979410 +2508.031991 +2508.043779 +2508.085304 +2508.145377 +2508.145710 +2508.182074 +2508.182407 +2508.184372 +2508.234488 +2508.270585 +2508.361128 +2508.399423 +2508.408547 +2508.408780 +2508.460695 +2508.473882 +2508.499822 +2508.512676 +2508.526229 +2508.539849 +2508.578477 +2508.591631 +2508.617971 +2508.643212 +2508.656699 +2508.800155 +2508.848607 +2508.870252 +2508.909979 +2508.933721 +2508.983905 +2509.019869 +2509.033255 +2509.047841 +2509.086335 +2509.153501 +2509.259562 +2509.273415 +2509.301220 +2509.314507 +2509.428460 +2509.450038 +2509.476278 +2509.477477 +2509.519369 +2509.617204 +2509.630890 +2509.687467 +2509.729225 +2509.771083 +2509.815739 +2509.936551 +2510.246274 +2510.382505 +2510.456530 +2510.481739 +2510.497456 +2510.557063 +2510.600253 +2510.793593 +2510.822164 +2510.954365 +2510.969950 +2511.073946 +2511.101452 +2511.163290 +2511.178741 +2511.313240 +2511.328558 +2511.372613 +2511.555097 +2511.585134 +2521.947062 +2521.958151 +2523.713793 +2523.972334 +2524.869536 +2525.710062 +2525.711793 +2525.872066 +2526.710360 +2526.711959 +2526.883354 +2526.916021 +2526.939364 +2530.336997 +2531.811021 +2531.812453 +2531.913652 +2532.013951 +2532.114284 +2532.213285 +2532.314018 +2532.417181 +2532.618846 +2532.713018 +2532.717314 +2532.814916 +2532.815882 +2533.012685 +2533.016748 +2533.114650 +2533.520011 +2533.612551 +2533.614782 +2533.714616 +2534.013084 +2534.013916 +2534.014948 +2534.114582 +2534.314582 +2534.317978 +2534.411385 +2534.614748 +2534.616613 +2534.714015 +2534.717179 +2534.718811 +2534.814748 +2534.817379 +2535.015747 +2535.118477 +2535.214548 +2535.313049 +2535.314647 +2535.412949 +2535.413815 +2535.514814 +2535.612283 +2535.715180 +2535.716778 +2535.718177 +2535.812882 +2535.814414 +2536.012948 +2536.018177 +2536.114747 +2536.314513 +2536.415179 +2536.717010 +2540.530793 +2540.548808 +2540.564359 +2540.677612 +2541.708980 +2541.743013 +2541.769986 +2541.825630 +2541.835986 +2541.836586 +2541.894095 +2541.917405 +2541.937185 +2542.019503 +2542.073615 +2542.087002 +2542.100355 +2542.100588 +2542.191897 +2542.192330 +2542.204417 +2542.229825 +2542.268420 +2542.301387 +2542.312509 +2542.365756 +2542.399622 +2542.474014 +2542.538416 +2542.620401 +2542.641513 +2542.655133 +2542.676378 +2542.723198 +2542.776345 +2542.776645 +2542.788333 +2542.859062 +2542.871450 +2542.982039 +2542.994360 +2543.008246 +2543.033155 +2543.123531 +2543.174313 +2543.183471 +2543.195625 +2543.330057 +2543.336518 +2543.349405 +2543.350670 +2543.399022 +2543.400454 +2543.438382 +2543.449971 +2543.464057 +2543.504083 +2543.530057 +2543.554166 +2543.579841 +2543.630856 +2543.656864 +2543.685069 +2543.698355 +2543.803450 +2543.868319 +2543.882305 +2543.908811 +2543.921332 +2543.984869 +2544.035385 +2544.050769 +2544.220300 +2544.351768 +2544.379407 +2544.497755 +2544.600186 +2544.811441 +2545.164588 +2545.165187 +2545.535483 +2545.630821 +2546.515369 +2546.572745 +2546.618499 +2546.732651 +2555.108001 +2555.145863 +2557.977695 +2558.710661 +2559.710794 +2560.915687 +2560.960409 +2560.972897 +2561.043726 +2561.063673 +2561.069434 +2561.711857 +2561.712790 +2565.135064 +2565.319612 +2566.912751 +2566.913251 +2567.214149 +2567.311352 +2567.314449 +2567.614582 +2567.615681 +2567.712883 +2567.913349 +2567.914981 +2568.013150 +2568.216379 +2568.414448 +2568.617744 +2568.813548 +2568.819509 +2568.824804 +2568.916012 +2569.020408 +2569.117211 +2569.712682 +2569.719408 +2569.812615 +2569.911316 +2570.015245 +2570.113980 +2570.215845 +2570.217243 +2570.314879 +2570.912481 +2570.917143 +2571.012580 +2571.014945 +2571.114612 +2571.115178 +2571.312547 +2571.511714 +2571.620106 +2573.897659 +2573.926497 +2573.967856 +2573.982674 +2573.994695 +2573.999624 +2575.624397 +2576.030324 +2576.667686 +2576.712541 +2576.712808 +2577.276544 +2577.288265 +2577.333087 +2577.371116 +2577.664722 +2577.829890 +2577.922464 +2577.934751 +2577.948871 +2577.999253 +2578.017901 +2578.120066 +2578.152733 +2578.180272 +2578.194625 +2578.243675 +2578.270282 +2578.282936 +2578.294591 +2578.345540 +2578.356895 +2578.420965 +2578.459293 +2578.459826 +2578.472247 +2578.526293 +2578.540445 +2578.607944 +2578.608710 +2578.620865 +2578.644907 +2578.648104 +2578.726392 +2578.781570 +2578.794790 +2578.834850 +2578.852699 +2578.861257 +2578.952133 +2579.016735 +2579.071913 +2579.104747 +2579.170148 +2579.238713 +2579.251567 +2579.277141 +2579.292559 +2579.333651 +2579.401983 +2579.458260 +2579.499319 +2579.513771 +2579.527224 +2579.596555 +2579.609875 +2579.624194 +2579.637181 +2579.652299 +2579.757793 +2579.777673 +2579.799651 +2579.800251 +2579.839078 +2579.853664 +2579.944473 +2580.106910 +2580.115968 +2580.143873 +2580.157293 +2580.157893 +2580.171279 +2580.186930 +2580.272578 +2580.301349 +2580.371545 +2580.389161 +2580.429920 +2580.459391 +2580.460290 +2580.465285 +2580.531718 +2580.547103 +2580.577273 +2580.606677 +2580.722561 +2580.867116 +2580.882434 +2580.986929 +2581.505943 +2583.355825 +2583.357057 +2583.382198 +2583.479568 +2590.140100 +2594.712457 +2596.711256 +2598.895969 +2598.908290 +2598.913485 +2598.929103 +2601.812650 +2601.912616 +2602.013715 +2602.014314 +2602.412949 +2602.417278 +2602.517278 +2602.612882 +2602.615080 +2602.619176 +2603.113547 +2603.213081 +2603.412049 +2603.616211 +2603.617776 +2603.714879 +2603.815345 +2603.919640 +2604.116077 +2604.513080 +2604.711847 +2604.716743 +2604.813412 +2604.817142 +2604.915077 +2604.916509 +2605.019606 +2605.121204 +2605.214578 +2605.313612 +2605.515177 +2605.813411 +2605.912312 +2605.913311 +2605.913711 +2605.915476 +2606.013211 +2606.013511 +2606.013944 +2606.016075 +2606.113145 +2606.114011 +2606.213145 +2606.213744 +2606.215276 +2606.413011 +2606.414510 +2606.415376 +2606.415808 +2606.513044 +2606.613311 +2606.614310 +2606.714443 +2611.711241 +2611.730455 +2612.300818 +2612.327757 +2612.605346 +2612.672346 +2612.697254 +2612.796655 +2612.832652 +2612.968516 +2612.990327 +2613.056728 +2613.069681 +2613.179238 +2613.190594 +2613.236414 +2613.238845 +2613.370913 +2613.462655 +2613.476507 +2613.487430 +2613.487963 +2613.498685 +2613.562188 +2613.627456 +2613.740343 +2613.754696 +2613.768815 +2613.785165 +2613.822161 +2613.835015 +2613.835981 +2613.940576 +2613.954795 +2613.968515 +2613.994289 +2614.056826 +2614.057393 +2614.124958 +2614.191592 +2614.204179 +2614.251065 +2614.260489 +2614.299850 +2614.317865 +2614.365184 +2614.454728 +2614.556293 +2614.569680 +2614.582534 +2614.596853 +2614.610605 +2614.648900 +2614.665251 +2614.722460 +2614.735714 +2614.791458 +2614.852130 +2614.861954 +2614.875374 +2614.946436 +2614.959989 +2614.974241 +2615.074108 +2615.117565 +2615.173176 +2615.288227 +2615.312137 +2615.317897 +2615.327321 +2615.342573 +2615.385730 +2615.435680 +2615.451197 +2615.510305 +2615.680934 +2615.688660 +2615.732982 +2615.896219 +2615.932249 +2616.019262 +2616.033748 +2616.124257 +2616.284963 +2616.357357 +2616.372875 +2616.570310 +2616.585062 +2616.616398 +2617.353793 +2617.380666 +2618.475137 +2619.781762 +2619.800544 +2621.084891 +2621.117259 +2621.161981 +2621.215394 +2621.312264 +2621.323519 +2626.596175 +2626.712525 +2627.950685 +2628.714554 +2629.714353 +2630.713953 +2631.712919 +2631.714618 +2634.447649 +2635.093435 +2635.153042 +2635.275953 +2635.284711 +2635.318277 +2635.580448 +2636.612581 +2636.627467 +2636.709884 +2636.712515 +2636.812515 +2637.517942 +2637.714445 +2637.814745 +2637.914745 +2638.014478 +2638.319440 +2638.416043 +2638.513579 +2638.613279 +2638.715710 +2638.716808 +2638.912779 +2638.913445 +2638.915443 +2639.013145 +2639.015509 +2639.016042 +2639.413411 +2639.419705 +2639.513944 +2639.515809 +2639.719605 +2639.816574 +2640.016075 +2640.019405 +2640.214076 +2640.316274 +2640.413610 +2640.414343 +2640.417373 +2640.518172 +2640.715708 +2640.813210 +2640.816873 +2640.818205 +2640.915674 +2641.012111 +2641.015374 +2641.015641 +2641.113676 +2641.114209 +2641.315907 +2641.413809 +2641.415307 +2641.415907 +2641.520069 +2641.615906 +2641.616939 +2641.713609 +2643.823996 +2644.857994 +2645.687264 +2646.861289 +2647.254163 +2647.285831 +2647.563919 +2647.645404 +2647.661721 +2647.682933 +2647.749900 +2647.845271 +2647.855161 +2647.927921 +2647.942374 +2647.994222 +2647.994888 +2648.018098 +2648.069113 +2648.096086 +2648.123592 +2648.148168 +2648.199716 +2648.223859 +2648.350998 +2648.388161 +2648.401114 +2648.429486 +2648.456126 +2648.469080 +2648.550964 +2648.578770 +2648.615700 +2648.642939 +2648.708873 +2648.732516 +2648.824690 +2648.837544 +2648.850764 +2648.879369 +2648.902746 +2648.942506 +2648.973208 +2648.974207 +2648.995519 +2649.009539 +2649.077704 +2649.101613 +2649.113102 +2649.170278 +2649.227254 +2649.240974 +2649.254494 +2649.269279 +2649.324623 +2649.325156 +2649.325822 +2649.353228 +2649.381300 +2649.486661 +2649.585362 +2649.670577 +2649.683897 +2649.699981 +2649.741206 +2649.742039 +2649.801546 +2649.942072 +2649.967114 +2650.024423 +2650.175538 +2650.185195 +2650.185928 +2650.364849 +2650.442471 +2650.470943 +2650.485262 +2650.515065 +2650.592721 +2650.759221 +2650.774572 +2650.789024 +2650.817629 +2650.877369 +2650.877869 +2650.893553 +2650.983596 +2651.182996 +2651.384495 +2651.458887 +2651.608304 +2658.481624 +2658.566539 +2659.947357 +2660.012092 +2660.040663 +2660.123880 +2660.160177 +2660.183920 +2661.571764 +2661.636832 +2661.667868 +2661.939729 +2663.010590 +2663.331036 +2663.404096 +2663.444190 +2663.711722 +2664.712087 +2664.712420 +2664.929503 +2665.714384 +2665.714817 +2666.712685 +2667.220210 +2668.119476 +2668.234428 +2668.285510 +2668.412583 +2668.445250 +2668.471258 +2668.474921 +2668.629266 +2668.662400 +2668.783678 +2668.916678 +2670.378215 +2670.389604 +2670.480879 +2670.497862 +2671.000759 +2671.553772 +2671.566925 +2671.911414 +2671.914644 +2672.114211 +2672.114710 +2672.214777 +2672.313212 +2672.717773 +2672.718073 +2672.914576 +2672.915509 +2672.916774 +2673.015808 +2673.115808 +2673.213977 +2673.313477 +2673.412312 +2673.514076 +2673.516407 +2673.518638 +2673.613910 +2673.713410 +2673.714176 +2673.715575 +2673.715941 +2673.815575 +2673.914176 +2674.013476 +2674.016041 +2674.113443 +2674.414075 +2674.415874 +2674.515008 +2674.515973 +2674.613609 +2674.622267 +2674.716073 +2674.815074 +2674.914008 +2674.915573 +2674.916140 +2675.013475 +2675.018704 +2675.112110 +2675.113509 +2675.315973 +2675.415340 +2675.514874 +2675.614640 +2675.614973 +2675.715140 +2675.715606 +2675.720901 +2675.914773 +2676.118836 +2676.215106 +2676.217004 +2676.315605 +2676.515772 +2676.618569 +2676.714240 +2677.153467 +2677.164223 +2680.602248 +2680.611505 +2680.651532 +2680.772577 +2681.630019 +2681.649499 +2681.710838 +2681.738344 +2681.867148 +2681.867981 +2681.935513 +2682.037311 +2682.057624 +2682.185629 +2682.261986 +2682.324424 +2682.337078 +2682.384697 +2682.409206 +2682.420861 +2682.479069 +2682.556092 +2682.569945 +2682.771510 +2682.794953 +2682.806208 +2682.819462 +2682.847833 +2682.886261 +2682.901380 +2682.951862 +2682.953561 +2682.965915 +2682.980700 +2682.994287 +2683.039808 +2683.065449 +2683.112968 +2683.147567 +2683.181666 +2683.194220 +2683.207107 +2683.257956 +2683.312868 +2683.326121 +2683.352495 +2683.387859 +2683.400547 +2683.428452 +2683.441772 +2683.454359 +2683.479901 +2683.480567 +2683.519528 +2683.545069 +2683.545701 +2683.571609 +2683.597483 +2683.621026 +2683.644669 +2683.657057 +2683.697583 +2683.710004 +2683.712934 +2683.751096 +2683.784795 +2683.786893 +2683.810703 +2683.862384 +2683.949331 +2683.967945 +2683.994952 +2684.057989 +2684.083696 +2684.085095 +2684.138641 +2684.177069 +2684.186194 +2684.201412 +2684.240373 +2684.312534 +2684.326187 +2684.354725 +2684.382297 +2684.383363 +2684.483163 +2684.539174 +2684.580799 +2684.594585 +2684.598214 +2684.609270 +2684.649064 +2684.676136 +2684.689590 +2684.703143 +2684.716696 +2684.730116 +2684.730782 +2684.736043 +2684.744368 +2684.802044 +2684.814331 +2684.836276 +2684.850862 +2684.877435 +2684.961817 +2685.004774 +2685.019759 +2685.048430 +2685.118993 +2685.163016 +2685.260751 +2685.276569 +2685.281664 +2685.359186 +2685.372772 +2685.386226 +2685.401610 +2685.431847 +2685.544068 +2685.546132 +2685.648530 +2685.678200 +2685.816562 +2685.830215 +2685.857088 +2685.991453 +2686.046431 +2686.060051 +2686.088090 +2686.242269 +2686.257787 +2686.272838 +2686.319791 +2686.334243 +2686.348829 +2686.410234 +2686.455056 +2686.468476 +2686.495582 +2686.527550 +2686.585059 +2686.600277 +2686.601376 +2686.633810 +2686.649328 +2686.665112 +2687.276533 +2687.990053 +2689.158483 +2689.199242 +2691.488251 +2695.252749 +2695.904031 +2696.073261 +2696.963870 +2697.067266 +2698.044588 +2698.148484 +2698.713119 +2698.924574 +2699.008257 +2699.011920 +2699.632265 +2699.658706 +2699.711386 +2699.713151 +2699.954543 +2700.000830 +2700.081083 +2700.165565 +2700.311818 +2700.712684 +2700.977152 +2701.004225 +2701.008288 +2701.014548 +2701.026470 +2701.026969 +2701.037592 +2701.042420 +2701.045018 +2701.052211 +2701.221042 +2701.342254 +2702.020641 +2702.052210 +2702.195466 +2702.249812 +2703.827433 +2704.614312 +2704.624801 +2704.734591 +2704.883742 +2705.341450 +2705.443315 +2705.734923 +2706.443647 +2706.713810 +2706.813310 +2706.814409 +2706.914143 +2707.014875 +2707.015441 +2707.116407 +2707.117939 +2707.714075 +2707.814308 +2707.914009 +2708.012677 +2708.016506 +2708.116173 +2708.116439 +2708.117239 +2708.214441 +2708.215474 +2708.315107 +2708.316139 +2708.414508 +2708.416739 +2708.715007 +2708.914640 +2708.916006 +2708.916605 +2708.922233 +2709.014174 +2709.114773 +2709.116405 +2709.212809 +2709.314540 +2709.512775 +2709.513874 +2709.514973 +2709.618502 +2709.619901 +2709.713474 +2709.714540 +2709.714973 +2709.716671 +2709.913707 +2709.916138 +2710.114506 +2710.115905 +2710.120067 +2710.213540 +2710.516470 +2710.615471 +2710.815138 +2710.823163 +2710.917702 +2711.114771 +2711.213539 +2711.214438 +2711.414405 +2711.614538 +2711.715337 +2711.716136 +2715.166649 +2715.288560 +2715.341574 +2716.713267 +2716.849031 +2717.471741 +2717.592953 +2717.686227 +2717.701445 +2718.023656 +2718.036409 +2718.077035 +2718.108704 +2718.121158 +2718.172573 +2718.185427 +2718.226186 +2718.323156 +2718.389556 +2718.457088 +2718.492719 +2718.573472 +2718.599612 +2718.625054 +2718.693485 +2718.749163 +2718.788590 +2718.813698 +2718.842602 +2718.878899 +2718.904274 +2718.904674 +2718.905240 +2718.933478 +2718.959885 +2718.960484 +2718.997148 +2719.002409 +2719.036675 +2719.041803 +2719.077567 +2719.091387 +2719.104340 +2719.158886 +2719.200577 +2719.214797 +2719.239938 +2719.245033 +2719.318226 +2719.361783 +2719.389122 +2719.518126 +2719.576435 +2719.597813 +2719.624686 +2719.661649 +2719.764913 +2719.884593 +2720.055289 +2720.139970 +2720.284626 +2720.308635 +2720.335142 +2720.392851 +2720.407769 +2720.450659 +2720.466044 +2720.509667 +2720.540403 +2720.585391 +2720.674735 +2720.693716 +2720.845398 +2720.859017 +2720.875767 +2720.902873 +2720.932910 +2720.948961 +2720.964445 +2721.010432 +2721.213762 +2721.227915 +2721.275068 +2721.451791 +2721.464911 +2721.490319 +2721.535274 +2721.667541 +2721.686123 +2721.697744 +2724.162943 +2730.573193 +2730.575624 +2731.628537 +2731.933598 +2732.085646 +2733.025405 +2733.048149 +2733.713084 +2733.713716 +2733.982214 +2734.712284 +2734.901860 +2734.905657 +2734.964564 +2734.984278 +2735.153708 +2735.712815 +2735.713381 +2735.964463 +2736.026834 +2736.712148 +2736.939754 +2736.943217 +2736.968991 +2736.983776 +2737.029131 +2737.101292 +2738.853139 +2739.621037 +2740.024000 +2740.068089 +2741.169453 +2741.181608 +2741.301188 +2741.375147 +2741.456899 +2741.465257 +2741.817571 +2741.914108 +2742.115806 +2742.217804 +2742.514640 +2742.615706 +2742.618270 +2742.715039 +2742.914506 +2743.117470 +2743.315006 +2743.315605 +2743.318835 +2743.414739 +2744.212307 +2744.314006 +2744.415670 +2744.515071 +2744.715837 +2745.014971 +2745.213405 +2745.215936 +2745.616169 +2745.714037 +2745.715902 +2745.819865 +2745.913871 +2745.915702 +2746.015869 +2746.113471 +2746.114969 +2746.215835 +2746.314603 +2746.514236 +2746.515469 +2746.516567 +2746.614603 +2746.619398 +2746.713870 +2746.715768 +2746.718166 +2749.775971 +2750.033913 +2751.106306 +2751.136909 +2751.710901 +2751.765913 +2751.766612 +2751.768477 +2752.085626 +2752.256788 +2752.431180 +2752.442835 +2752.508103 +2752.555522 +2752.556921 +2752.601210 +2752.665479 +2752.713664 +2752.903241 +2753.066278 +2753.077200 +2753.115196 +2753.129481 +2753.312964 +2753.417260 +2753.417859 +2753.605938 +2753.631279 +2753.631845 +2753.644699 +2753.658618 +2753.684492 +2753.734476 +2753.756021 +2753.799078 +2753.835042 +2753.848029 +2753.874569 +2753.943200 +2753.952990 +2753.954322 +2754.008435 +2754.008901 +2754.009467 +2754.021888 +2754.071372 +2754.150060 +2754.175368 +2754.175934 +2754.179630 +2754.190752 +2754.216193 +2754.217059 +2754.276966 +2754.286656 +2754.327082 +2754.356187 +2754.383026 +2754.594115 +2754.664645 +2754.707901 +2754.735707 +2754.750026 +2754.764178 +2754.791151 +2754.804638 +2754.848028 +2754.862846 +2754.948527 +2754.949326 +2754.962979 +2754.992949 +2755.021954 +2755.051924 +2755.214494 +2755.230412 +2755.249026 +2755.260082 +2755.304271 +2755.432543 +2755.463278 +2755.524584 +2755.569872 +2755.584324 +2755.644264 +2755.675066 +2755.704903 +2755.796978 +2755.813195 +2755.875399 +2756.041033 +2756.041966 +2756.057817 +2756.086954 +2756.088652 +2756.103404 +2756.233707 +2756.262478 +2756.277663 +2756.323351 +2756.323917 +2756.472235 +2756.604103 +2756.619321 +2756.655119 +2756.665908 +2756.667640 +2765.734164 +2766.862867 +2766.912784 +2766.929068 +2767.710053 +2767.713583 +2767.924105 +2767.987275 +2768.003792 +2768.085710 +2768.710585 +2768.952809 +2768.966662 +2768.975952 +2769.107620 +2769.112183 +2769.133028 +2769.282545 +2769.924703 +2770.709484 +2770.710649 +2771.709549 +2771.896262 +2772.946345 +2773.058466 +2773.726863 +2773.968322 +2776.713407 +2776.911775 +2776.913740 +2777.012408 +2777.113240 +2777.113673 +2777.213839 +2777.412474 +2777.414305 +2777.514106 +2777.814105 +2777.912607 +2777.912806 +2778.013306 +2778.414904 +2778.614371 +2778.714637 +2778.812772 +2778.815203 +2779.014537 +2779.211140 +2779.214570 +2779.313205 +2779.313904 +2779.513105 +2779.619665 +2779.717134 +2779.812139 +2779.813804 +2779.814503 +2780.019031 +2780.213570 +2780.214736 +2780.512704 +2780.614768 +2780.712804 +2780.713003 +2780.811805 +2780.813403 +2780.814069 +2780.814602 +2780.912803 +2781.111172 +2781.212836 +2781.315567 +2781.414135 +2781.512437 +2781.514668 +2781.518197 +2781.612237 +2781.614501 +2781.614734 +2785.964014 +2785.990021 +2786.018926 +2786.708935 +2786.709301 +2786.711732 +2786.728615 +2786.794183 +2786.998079 +2787.029547 +2787.126717 +2787.197746 +2787.211798 +2787.221755 +2787.223886 +2787.296946 +2787.297213 +2787.508834 +2787.659150 +2787.684625 +2787.786823 +2787.824152 +2787.833942 +2787.847628 +2787.887155 +2788.058950 +2788.168907 +2788.209366 +2788.220455 +2788.233109 +2788.311730 +2788.335107 +2788.412796 +2788.529612 +2788.530145 +2788.582826 +2788.635440 +2788.636306 +2788.738503 +2788.739103 +2788.909232 +2788.963811 +2789.082526 +2789.094314 +2789.121686 +2789.133774 +2789.135439 +2789.173102 +2789.264743 +2789.291816 +2789.306701 +2789.345296 +2789.371869 +2789.386455 +2789.482126 +2789.537703 +2789.565142 +2789.579828 +2789.580560 +2789.593314 +2789.605835 +2789.663377 +2789.704303 +2789.717989 +2789.732575 +2789.746561 +2789.829678 +2789.871369 +2789.886587 +2789.901706 +2789.945362 +2789.959315 +2790.000407 +2790.169171 +2790.213627 +2790.241499 +2790.300773 +2790.330177 +2790.343963 +2790.374899 +2790.403503 +2790.580326 +2790.723516 +2790.902237 +2790.985920 +2791.146193 +2791.176929 +2791.192613 +2791.253952 +2791.645593 +2801.865929 +2801.945683 +2802.880547 +2802.932129 +2803.893999 +2803.932328 +2804.709883 +2804.710615 +2804.870056 +2805.711846 +2805.868290 +2805.917474 +2806.868455 +2806.887003 +2810.084702 +2811.713172 +2811.912206 +2812.014371 +2812.212739 +2812.213205 +2812.315136 +2812.319898 +2812.416934 +2812.613038 +2812.813071 +2812.916901 +2813.212039 +2813.215235 +2813.313970 +2813.413770 +2813.414836 +2813.415535 +2813.517033 +2813.612871 +2813.615268 +2813.616101 +2813.713070 +2813.815501 +2813.911705 +2813.913237 +2814.015001 +2814.214868 +2814.312470 +2814.312703 +2814.314768 +2814.315168 +2814.412670 +2814.413303 +2814.414535 +2814.512637 +2814.913202 +2815.113269 +2815.214101 +2815.215433 +2815.511570 +2815.514334 +2815.514867 +2815.611437 +2815.614967 +2815.812502 +2815.815865 +2815.819096 +2815.819762 +2816.013701 +2816.114633 +2816.214933 +2816.215432 +2816.414966 +2816.416997 +2816.517596 +2816.617330 +2821.730079 +2821.774001 +2822.122453 +2822.135872 +2822.171870 +2822.228746 +2822.521653 +2822.619522 +2822.997577 +2823.172235 +2823.198709 +2823.212628 +2823.288519 +2823.289151 +2823.348658 +2823.563976 +2823.578495 +2823.622151 +2823.675731 +2823.713626 +2823.740533 +2823.808598 +2823.845261 +2823.952188 +2824.029344 +2824.094678 +2824.108798 +2824.144861 +2824.182957 +2824.356383 +2824.418554 +2824.582290 +2824.637002 +2824.742863 +2824.755883 +2824.795477 +2824.920185 +2824.936136 +2825.022117 +2825.036669 +2825.049856 +2825.122316 +2825.136769 +2825.166838 +2825.210395 +2825.236402 +2825.316555 +2825.447125 +2825.554850 +2825.568869 +2825.723015 +2825.795942 +2825.855882 +2825.964307 +2826.194776 +2826.231007 +2826.353051 +2826.387350 +2826.466338 +2826.509761 +2826.523181 +2826.633837 +2826.683054 +2829.575459 +2829.593940 +2829.603397 +2830.620413 +2831.072294 +2831.923808 +2831.927571 +2831.939392 +2831.950981 +2831.963069 +2832.091374 +2832.199366 +2832.503428 +2832.663634 +2833.357406 +2833.365132 +2833.460337 +2833.467263 +2833.494969 +2833.543820 +2833.587509 +2833.628302 +2833.657240 +2834.088408 +2834.108521 +2834.131365 +2834.151378 +2834.179550 +2834.754974 +2834.768594 +2834.774854 +2834.805590 +2835.072589 +2835.081114 +2835.103359 +2835.116312 +2835.144551 +2835.149113 +2835.172356 +2835.193535 +2835.198763 +2835.225936 +2835.256072 +2835.286975 +2835.302859 +2835.382612 +2836.064630 +2836.067627 +2836.069591 +2836.070324 +2836.082212 +2836.094233 +2836.118909 +2836.147713 +2836.157337 +2836.161433 +2836.208286 +2836.222205 +2836.830929 +2836.885774 +2837.059301 +2837.073320 +2837.133060 +2837.150410 +2837.160466 +2837.169790 +2837.188272 +2837.203190 +2837.222937 +2837.231662 +2837.299427 +2837.886706 +2837.888038 +2838.150409 +2838.171954 +2838.182343 +2838.182943 +2838.201857 +2838.234325 +2838.244814 +2838.251840 +2838.519439 +2838.522902 +2838.559666 +2838.590468 +2839.066225 +2839.080378 +2839.098793 +2839.117740 +2839.133191 +2839.150441 +2840.047276 +2840.073151 +2840.080909 +2840.095462 +2840.109847 +2840.192065 +2840.211512 +2841.169653 +2841.267289 +2842.212576 +2842.235819 +2842.318336 +2843.117869 +2843.802850 +2844.522197 +2844.530788 +2844.696822 +2844.797821 +2844.986899 +2844.992326 +2845.396489 +2845.488263 +2845.491094 +2845.587364 +2845.789595 +2845.889861 +2845.987330 +2845.990028 +2846.694456 +2846.789494 +2846.888162 +2846.888861 +2846.987529 +2846.989461 +2847.187529 +2847.191825 +2847.289827 +2847.388694 +2847.391492 +2847.687628 +2848.095920 +2848.191358 +2848.489026 +2848.689559 +2848.690192 +2848.788893 +2848.993788 +2849.087660 +2849.090125 +2849.190957 +2849.292555 +2849.389891 +2849.591423 +2849.596185 +2849.890457 +2849.891489 +2849.891855 +2852.279565 +2852.350594 +2854.268941 +2854.398344 +2854.516892 +2855.048260 +2855.147128 +2855.206735 +2855.253422 +2855.354787 +2855.367141 +2855.732076 +2855.744031 +2855.776365 +2855.867740 +2855.933674 +2855.962512 +2856.106435 +2856.118256 +2856.171636 +2856.238269 +2856.273934 +2856.296178 +2856.300540 +2856.459048 +2856.481226 +2856.537636 +2856.551589 +2856.693147 +2856.786587 +2856.825315 +2856.866207 +2856.932175 +2856.959347 +2857.079927 +2857.104535 +2857.159147 +2857.210762 +2857.223350 +2857.237369 +2857.247459 +2857.259813 +2857.289217 +2857.317489 +2857.330143 +2857.429410 +2857.475631 +2857.512494 +2857.568671 +2857.583556 +2857.610229 +2857.611628 +2857.681391 +2857.712194 +2857.725214 +2857.738101 +2857.781225 +2857.793712 +2857.861544 +2857.878294 +2857.989949 +2858.023349 +2858.096343 +2858.147125 +2858.160612 +2858.174598 +2858.211627 +2858.252953 +2858.299173 +2858.353951 +2858.368570 +2858.481690 +2858.554051 +2858.568870 +2858.703701 +2858.892679 +2858.918287 +2858.945559 +2858.946025 +2858.973431 +2858.988383 +2859.017454 +2859.149488 +2859.225912 +2859.238799 +2859.283354 +2859.401936 +2859.430707 +2859.431673 +2859.447124 +2859.477160 +2859.493777 +2859.537067 +2859.554683 +2859.612525 +2859.728009 +2859.830240 +2870.144449 +2870.163397 +2871.173053 +2872.100125 +2872.154770 +2872.158000 +2872.180744 +2872.886671 +2872.889368 +2873.115708 +2873.154836 +2873.888135 +2874.108714 +2874.163226 +2874.168787 +2874.231791 +2874.280775 +2874.890132 +2875.092163 +2875.099156 +2875.213375 +2875.232356 +2876.315339 +2876.758262 +2877.689830 +2878.256096 +2878.298720 +2878.344807 +2879.988662 +2880.093590 +2880.192991 +2880.289627 +2880.289860 +2880.290360 +2880.291425 +2880.391026 +2880.395255 +2880.397619 +2880.489793 +2880.490093 +2880.590759 +2880.593456 +2880.690726 +2880.692391 +2880.789960 +2880.792391 +2880.990559 +2881.094022 +2881.097685 +2881.490758 +2881.492823 +2881.590558 +2881.592689 +2881.592856 +2881.593522 +2881.691024 +2881.692823 +2881.990724 +2881.997984 +2882.092622 +2882.093022 +2882.192323 +2882.192822 +2882.290424 +2882.391124 +2882.392722 +2882.493188 +2882.596085 +2882.691723 +2882.693055 +2882.792855 +2882.890224 +2882.891023 +2882.893021 +2882.990524 +2883.092055 +2883.292621 +2883.294486 +2883.394186 +2883.691855 +2883.697816 +2883.795584 +2883.996150 +2883.996783 +2884.093186 +2884.096783 +2884.195318 +2884.292887 +2884.390456 +2884.392087 +2884.693053 +2884.695417 +2884.790688 +2884.792653 +2889.167074 +2889.202139 +2890.045162 +2890.205235 +2890.308065 +2890.344262 +2890.406900 +2890.537969 +2890.563143 +2890.578295 +2890.768305 +2891.052121 +2891.147059 +2891.240698 +2891.241398 +2891.318021 +2891.451887 +2891.535270 +2891.548390 +2891.562643 +2891.575064 +2891.598141 +2891.625447 +2891.700505 +2891.714890 +2891.741963 +2891.776129 +2891.803302 +2891.816489 +2891.830708 +2891.831973 +2891.925113 +2891.951554 +2891.966072 +2892.007031 +2892.020185 +2892.032806 +2892.060711 +2892.074331 +2892.074564 +2892.103368 +2892.114124 +2892.114690 +2892.182089 +2892.194943 +2892.217920 +2892.219419 +2892.298273 +2892.313425 +2892.472665 +2892.487950 +2892.500338 +2892.525745 +2892.538033 +2892.615889 +2892.776261 +2892.809328 +2892.846524 +2892.861043 +2892.875562 +2892.889381 +2892.918685 +2892.946258 +2892.959012 +2892.959611 +2892.987916 +2893.001036 +2893.021316 +2893.028542 +2893.085219 +2893.111592 +2893.125712 +2893.143161 +2893.153051 +2893.167803 +2893.268569 +2893.294443 +2893.309261 +2893.473330 +2893.514722 +2893.528175 +2893.570333 +2893.598505 +2893.611059 +2893.611658 +2893.668035 +2893.695808 +2893.710293 +2893.739331 +2893.767469 +2893.810493 +2893.882687 +2893.911159 +2893.926177 +2894.083519 +2894.112557 +2894.155414 +2894.244958 +2894.261774 +2894.288514 +2894.382420 +2894.453249 +2894.467735 +2894.498404 +2894.516320 +2894.531271 +2894.547721 +2894.579956 +2894.714588 +2894.744791 +2894.758078 +2894.774195 +2894.790811 +2894.792643 +2894.822047 +2894.868900 +2895.607327 +2899.911153 +2903.845548 +2904.059500 +2904.082777 +2904.131528 +2905.115843 +2905.127831 +2905.168024 +2905.203622 +2905.210215 +2905.576149 +2905.625866 +2905.651673 +2906.141350 +2906.175116 +2906.206618 +2907.093263 +2907.093763 +2907.106384 +2907.179943 +2907.205851 +2907.216473 +2908.190898 +2909.196924 +2909.201187 +2909.250537 +2909.253701 +2909.892561 +2910.104749 +2910.107246 +2910.119734 +2910.120966 +2910.132188 +2910.143144 +2910.214006 +2910.215205 +2913.147470 +2913.195821 +2913.204246 +2913.236914 +2913.706543 +2913.724226 +2913.907009 +2914.326390 +2914.343106 +2914.455494 +2914.892889 +2915.094388 +2915.094887 +2915.096985 +2915.193089 +2915.193888 +2915.393888 +2915.496918 +2915.593721 +2915.595752 +2915.796052 +2915.896485 +2915.995719 +2915.996251 +2916.000014 +2916.095152 +2916.096118 +2916.293254 +2916.293787 +2916.296085 +2916.299315 +2916.301879 +2916.694353 +2916.694919 +2916.894519 +2916.900013 +2916.996051 +2917.195884 +2917.196284 +2917.196583 +2917.197749 +2917.395085 +2917.397948 +2917.595884 +2917.796216 +2917.999846 +2918.194917 +2918.294817 +2918.295383 +2918.394418 +2918.395616 +2918.598014 +2918.695949 +2918.795083 +2918.796049 +2918.798047 +2919.197780 +2919.294850 +2919.296581 +2919.394949 +2919.395515 +2919.594982 +2919.894982 +2921.076666 +2921.628114 +2921.648161 +2921.655487 +2921.703672 +2921.706602 +2921.727115 +2921.774867 +2923.642464 +2923.887286 +2924.834471 +2924.836336 +2924.932373 +2925.080958 +2925.102103 +2925.266072 +2925.328710 +2925.364807 +2925.551686 +2925.651020 +2925.678393 +2925.728609 +2925.741929 +2925.774863 +2925.842029 +2925.843428 +2925.855715 +2925.868469 +2925.880124 +2925.932139 +2925.967870 +2926.077693 +2926.152385 +2926.152885 +2926.222981 +2926.247157 +2926.357014 +2926.381522 +2926.407796 +2926.443793 +2926.456914 +2926.457846 +2926.469468 +2926.558046 +2926.571865 +2926.585019 +2926.611259 +2926.645525 +2926.659910 +2926.671632 +2926.695408 +2926.752551 +2926.765438 +2926.779191 +2926.807396 +2926.831605 +2926.869467 +2926.882588 +2926.908095 +2926.921748 +2926.934536 +2926.948888 +2926.985751 +2927.013157 +2927.065005 +2927.071132 +2927.091712 +2927.092910 +2927.104332 +2927.144459 +2927.184485 +2927.197772 +2927.265504 +2927.292277 +2927.304732 +2927.333070 +2927.399104 +2927.411491 +2927.412724 +2927.439064 +2927.479190 +2927.569600 +2927.612390 +2927.648155 +2927.673396 +2927.769633 +2927.797239 +2927.810259 +2927.994841 +2928.007928 +2928.036632 +2928.051151 +2928.065204 +2928.107228 +2928.204564 +2928.350818 +2928.393175 +2928.423645 +2928.478623 +2928.494074 +2928.635666 +2928.636931 +2928.646655 +2928.661207 +2928.755413 +2928.769532 +2928.783984 +2928.827108 +2928.842326 +2928.859609 +2928.967467 +2929.036298 +2929.111123 +2929.186548 +2929.240627 +2929.313687 +2929.358875 +2929.373294 +2929.399102 +2929.426441 +2929.532102 +2929.575958 +2929.604097 +2929.785981 +2933.672058 +2938.270721 +2940.130859 +2942.227327 +2942.261160 +2942.330391 +2942.370184 +2942.374147 +2942.464057 +2942.613274 +2942.895226 +2943.129991 +2943.892161 +2944.078574 +2944.138048 +2945.127591 +2945.162889 +2949.173508 +2949.205442 +2949.227287 +2950.395451 +2950.396150 +2950.694086 +2950.896383 +2950.998148 +2951.001045 +2951.096150 +2951.194252 +2951.194851 +2951.196216 +2951.294185 +2951.701943 +2951.793618 +2951.993585 +2951.994251 +2951.995849 +2952.193718 +2952.197714 +2952.396082 +2952.398746 +2952.495016 +2952.693950 +2952.695316 +2952.795216 +2952.894083 +2952.895815 +2952.896248 +2952.896781 +2953.100743 +2953.195015 +2953.302375 +2953.394149 +2953.395548 +2953.495748 +2953.498212 +2953.592851 +2953.595515 +2953.597379 +2953.696613 +2953.794948 +2953.797712 +2953.798944 +2953.900942 +2953.997312 +2954.294149 +2954.295447 +2954.695647 +2954.801774 +2954.893981 +2954.894381 +2960.103400 +2960.116454 +2960.129341 +2960.181489 +2960.342095 +2960.461741 +2960.573863 +2960.658544 +2960.789980 +2960.800969 +2960.812457 +2960.947722 +2961.024978 +2961.195973 +2961.295074 +2961.295873 +2961.333669 +2961.358444 +2961.455946 +2961.468434 +2961.486216 +2961.512989 +2961.602333 +2961.615986 +2961.627008 +2961.631537 +2961.663938 +2961.675859 +2961.688247 +2961.702899 +2961.714787 +2961.748254 +2961.773728 +2961.788280 +2961.799236 +2961.825510 +2961.864238 +2961.876392 +2961.925243 +2961.938030 +2961.960475 +2961.973295 +2961.986249 +2962.069066 +2962.080221 +2962.085949 +2962.094907 +2962.095406 +2962.134234 +2962.145123 +2962.256145 +2962.322246 +2962.409758 +2962.461506 +2962.511257 +2962.557410 +2962.598403 +2962.611123 +2962.656311 +2962.703398 +2962.782152 +2962.797137 +2962.851316 +2963.050084 +2963.077290 +2963.147287 +2963.305195 +2963.403597 +2964.273659 +2964.289077 +2964.332234 +2964.941224 +2974.148941 +2975.053036 +2975.060628 +2975.071917 +2975.089765 +2975.100455 +2975.135020 +2975.161261 +2976.068652 +2976.082705 +2976.108712 +2976.123730 +2977.049304 +2977.060892 +2977.776776 +2978.060292 +2978.075910 +2978.132253 +2978.890361 +2979.060957 +2979.107843 +2980.055794 +2980.066351 +2980.132285 +2982.314833 +2984.991587 +2985.091920 +2985.193252 +2985.292386 +2985.394417 +2985.492586 +2985.495016 +2985.497581 +2985.595716 +2985.793618 +2985.895449 +2985.993784 +2985.995316 +2986.094017 +2986.095016 +2986.099045 +2986.195315 +2986.295049 +2986.395082 +2986.397080 +2986.495448 +2986.593250 +2986.596880 +2986.795115 +2986.799844 +2986.894183 +2986.895381 +2986.995481 +2987.193250 +2987.193716 +2987.293716 +2987.297146 +2987.392251 +2987.492650 +2987.493250 +2987.495447 +2987.591584 +2987.592151 +2987.592817 +2987.697512 +2987.698877 +2987.794681 +2987.895314 +2987.996379 +2988.000508 +2988.099276 +2988.392283 +2988.395280 +2988.595113 +2988.598576 +2988.694780 +2988.792149 +2988.794680 +2988.795246 +2988.894147 +2988.899575 +2988.991550 +2988.994580 +2989.199375 +2989.399009 +2989.494846 +2989.495379 +2989.596311 +2989.693147 +2989.697543 +2994.902133 +2995.159675 +2995.160575 +2995.193675 +2995.290944 +2995.606828 +2995.682086 +2995.740328 +2995.772962 +2995.773328 +2995.786048 +2995.798536 +2995.809592 +2995.823011 +2995.836098 +2995.836731 +2995.837830 +2995.895805 +2995.964869 +2996.057011 +2996.069931 +2996.080987 +2996.180021 +2996.184250 +2996.250450 +2996.270131 +2996.281919 +2996.415452 +2996.427739 +2996.441059 +2996.454013 +2996.505994 +2996.518582 +2996.556910 +2996.581486 +2996.632568 +2996.633367 +2996.637529 +2996.645255 +2996.657410 +2996.658009 +2996.668665 +2996.721479 +2996.757809 +2996.770763 +2996.807926 +2996.820913 +2996.842591 +2996.854379 +2996.877822 +2996.916683 +2996.994672 +2997.020846 +2997.033533 +2997.045787 +2997.109557 +2997.161039 +2997.249384 +2997.263603 +2997.330869 +2997.371029 +2997.399467 +2997.426440 +2997.439493 +2997.466833 +2997.480486 +2997.547585 +2997.561871 +2997.600932 +2997.708691 +2997.828770 +2997.841791 +2997.856409 +2997.884115 +2997.884781 +2997.925807 +2998.036496 +2998.091074 +2998.305959 +2998.489775 +2998.503495 +2998.518147 +2999.973590 +3001.824837 +3001.996099 +3002.314114 +3002.902392 +3003.570623 +3011.891727 +3011.892093 +3012.894157 +3019.891086 +3019.893051 +3019.991585 +3019.992385 +3020.092584 +3020.093284 +3020.096747 +3020.097313 +3020.192651 +3020.193250 +3020.292351 +3020.294216 +3020.297246 +3020.297979 +3020.394382 +3020.591618 +3020.694548 +3020.993116 +3021.097279 +3021.099709 +3021.193482 +3021.297511 +3021.393216 +3021.394914 +3021.395380 +3021.497145 +3021.593715 +3021.694581 +3021.894381 +3021.899675 +3021.995280 +3022.093182 +3022.094047 +3022.094713 +3022.096578 +3022.194980 +3022.292615 +3022.299042 +3022.393847 +3022.593481 +3022.598809 +3022.692748 +3022.693214 +3022.792382 +3022.896244 +3022.994113 +3022.995345 +3023.193613 +3023.195079 +3023.293480 +3023.295511 +3023.394745 +3023.695078 +3023.697642 +3023.794345 +3023.797775 +3023.994878 +3023.997675 +3024.092414 +3024.094512 +3024.097409 +3024.105800 +3024.493146 +3024.494212 +3024.495810 +3024.696909 +3024.698274 +3024.795277 +3024.892846 +3024.893345 +3024.895010 +3025.856415 +3028.281021 +3029.522445 +3029.639894 +3029.746887 +3029.901499 +3030.185947 +3030.221745 +3030.354945 +3030.520313 +3030.594871 +3030.673193 +3030.732667 +3030.770163 +3030.796170 +3031.023309 +3031.049749 +3031.099267 +3031.110788 +3031.124641 +3031.137095 +3031.203862 +3031.218514 +3031.226073 +3031.264934 +3031.277155 +3031.290775 +3031.491174 +3031.528870 +3031.550815 +3031.588810 +3031.614351 +3031.626272 +3031.639459 +3031.679153 +3031.693305 +3031.717448 +3031.768130 +3031.780918 +3031.785979 +3031.832166 +3031.859406 +3031.874357 +3031.886745 +3031.912053 +3031.977954 +3032.086312 +3032.098666 +3032.138260 +3032.152079 +3032.179319 +3032.309655 +3032.322109 +3032.347883 +3032.388876 +3032.401729 +3032.481583 +3032.536028 +3032.578153 +3032.647417 +3032.729801 +3032.741889 +3032.783647 +3032.826737 +3032.916714 +3032.998932 +3033.057140 +3033.128302 +3033.170393 +3033.171093 +3033.171359 +3033.344552 +3033.359770 +3033.373657 +3033.418412 +3033.447583 +3033.476287 +3033.504992 +3033.562234 +3033.622907 +3033.695601 +3033.769261 +3033.769494 +3033.813150 +3033.886110 +3033.901628 +3033.916380 +3034.008454 +3034.100296 +3034.174089 +3034.321807 +3034.472923 +3034.632297 +3034.646349 +3034.662966 +3034.678650 +3034.693968 +3034.858603 +3037.041219 +3037.079913 +3037.331728 +3038.786305 +3038.868157 +3041.580308 +3042.262426 +3042.346275 +3042.430357 +3042.447807 +3042.498223 +3042.595126 +3042.604883 +3042.638016 +3043.986367 +3044.082770 +3044.088897 +3044.189263 +3044.891794 +3045.113239 +3045.158260 +3046.892358 +3047.486763 +3047.892390 +3047.892623 +3048.891989 +3048.892489 +3048.893321 +3049.758522 +3049.892321 +3051.704574 +3052.904107 +3054.372803 +3054.993582 +3055.091417 +3055.093182 +3055.192716 +3055.194547 +3055.297577 +3055.394514 +3055.495446 +3055.498709 +3055.700308 +3055.798476 +3055.800074 +3055.993481 +3056.092548 +3056.098342 +3056.193414 +3056.193913 +3056.294280 +3056.495012 +3056.594146 +3056.695678 +3056.995478 +3056.997276 +3057.094012 +3057.096277 +3057.098275 +3057.100306 +3057.195777 +3057.295744 +3057.398041 +3057.592180 +3057.993445 +3057.999373 +3058.095443 +3058.196442 +3058.294045 +3058.294711 +3058.496042 +3058.795942 +3058.796109 +3058.896375 +3058.896608 +3058.993611 +3059.096008 +3059.293944 +3059.503267 +3059.595642 +3059.793277 +3064.379453 +3064.390775 +3064.391075 +3064.468963 +3064.703795 +3064.723342 +3064.891973 +3065.431400 +3065.443621 +3065.457141 +3065.593504 +3065.607690 +3065.757174 +3065.818712 +3065.888343 +3066.011752 +3066.040157 +3066.110554 +3066.137527 +3066.145452 +3066.146418 +3066.194902 +3066.248282 +3066.249914 +3066.275389 +3066.290041 +3066.302994 +3066.317247 +3066.318279 +3066.330001 +3066.330500 +3066.355575 +3066.381949 +3066.394902 +3066.395269 +3066.476121 +3066.487443 +3066.511619 +3066.552944 +3066.579384 +3066.591672 +3066.591905 +3066.618079 +3066.618778 +3066.685378 +3066.714382 +3066.727136 +3066.742255 +3066.756041 +3066.821975 +3066.900896 +3066.911252 +3066.926470 +3066.965431 +3066.979018 +3066.996067 +3067.016147 +3067.068028 +3067.097366 +3067.112717 +3067.124505 +3067.138325 +3067.162900 +3067.178052 +3067.261402 +3067.290539 +3067.303393 +3067.330133 +3067.330632 +3067.335561 +3067.387742 +3067.443686 +3067.457006 +3067.491405 +3067.558471 +3067.572257 +3067.615048 +3067.628934 +3067.629966 +3067.688974 +3067.744518 +3067.867262 +3067.906423 +3067.947282 +3067.963166 +3067.976719 +3067.991870 +3068.052043 +3068.126968 +3068.177751 +3068.220641 +3068.340055 +3068.386942 +3068.396299 +3068.471723 +3068.634893 +3068.708620 +3068.741720 +3068.877684 +3068.892269 +3068.907321 +3068.969525 +3069.001660 +3069.016811 +3069.032296 +3069.048479 +3069.190237 +3069.206455 +3069.221606 +3069.269192 +3069.285076 +3069.316478 +3069.394400 +3069.425469 +3069.516145 +3069.593867 +3069.610150 +3069.641619 +3069.687506 +3069.720107 +3069.767127 +3073.674149 +3077.120200 +3078.593858 +3078.661756 +3078.696222 +3078.708543 +3078.710707 +3078.824460 +3078.855429 +3078.885932 +3078.892492 +3078.893158 +3078.909875 +3078.961656 +3080.497785 +3080.543806 +3080.741641 +3081.858357 +3081.891457 +3082.891822 +3084.218328 +3084.625886 +3086.336374 +3086.427649 +3086.621955 +3087.429313 +3087.447196 +3087.471138 +3089.891982 +3089.893880 +3089.894279 +3089.992215 +3089.997576 +3090.093880 +3090.194579 +3090.195345 +3090.297975 +3090.395378 +3090.495278 +3090.499707 +3090.596310 +3090.695544 +3090.696210 +3091.397275 +3091.595943 +3091.600238 +3091.795909 +3091.796176 +3091.796375 +3091.894910 +3092.296075 +3092.296508 +3092.594809 +3092.595376 +3092.597307 +3092.695042 +3092.896241 +3092.898139 +3093.095175 +3093.195941 +3093.395075 +3093.696340 +3093.796473 +3093.993909 +3094.001734 +3094.195507 +3094.393476 +3094.395207 +3094.395440 +3094.400169 +3094.492277 +3094.495773 +3094.498870 +3094.593509 +3094.695673 +3094.697804 +3094.893675 +3095.442326 +3095.462539 +3095.555845 +3096.118282 +3096.161972 +3096.259241 +3097.493140 +3097.626739 +3097.663003 +3097.664768 +3097.676989 +3097.754245 +3098.103695 +3098.955576 +3099.910187 +3100.259837 +3100.296400 +3100.296567 +3100.431998 +3100.445950 +3100.493736 +3100.569593 +3100.592004 +3100.602993 +3100.641488 +3100.654841 +3100.667862 +3100.703126 +3100.756673 +3100.938790 +3100.953010 +3100.965797 +3101.004425 +3101.017279 +3101.041421 +3101.041721 +3101.121208 +3101.136959 +3101.192869 +3101.218111 +3101.219909 +3101.222007 +3101.245217 +3101.257671 +3101.283945 +3101.285044 +3101.310085 +3101.334761 +3101.360502 +3101.386442 +3101.414381 +3101.450112 +3101.450611 +3101.502260 +3101.535859 +3101.549146 +3101.600095 +3101.600628 +3101.626669 +3101.640255 +3101.691504 +3101.704091 +3101.759536 +3101.764198 +3101.786775 +3101.852076 +3101.916145 +3101.996065 +3102.015146 +3102.051210 +3102.066961 +3102.079216 +3102.160834 +3102.176185 +3102.189638 +3102.201127 +3102.214880 +3102.229066 +3102.269958 +3102.298396 +3102.311050 +3102.366228 +3102.381313 +3102.436125 +3102.454606 +3102.465595 +3102.533627 +3102.547314 +3102.591503 +3102.619441 +3102.689605 +3102.718542 +3102.840187 +3102.855272 +3102.898029 +3102.984676 +3102.999228 +3103.018142 +3103.028665 +3103.042884 +3103.102858 +3103.161466 +3103.191436 +3103.222804 +3103.249677 +3103.250643 +3103.251609 +3103.257136 +3103.341119 +3103.354206 +3103.370123 +3103.400360 +3103.429364 +3103.475318 +3103.506121 +3103.521239 +3103.596563 +3103.611881 +3103.612414 +3103.719607 +3103.720506 +3103.751475 +3103.766460 +3103.827865 +3103.842184 +3103.858601 +3103.887739 +3103.946047 +3103.960999 +3103.976083 +3103.989503 +3104.125168 +3104.197961 +3104.213712 +3104.346080 +3104.376749 +3104.545780 +3104.546213 +3104.562130 +3104.594065 +3104.888170 +3105.806851 +3105.912612 +3107.373416 +3107.461195 +3107.594495 +3107.673649 +3107.684738 +3108.731024 +3108.736052 +3108.742745 +3108.924930 +3108.978143 +3109.009312 +3114.891124 +3114.891357 +3115.892355 +3115.892921 +3116.892121 +3116.894019 +3117.892020 +3117.892620 +3117.894684 +3118.891586 +3118.891786 +3119.894882 +3120.159151 +3120.212331 +3120.528714 +3120.627948 +3123.463743 +3123.479261 +3123.538535 +3123.552088 +3123.611628 +3123.685221 +3124.002071 +3124.893612 +3124.993079 +3124.993445 +3124.994044 +3125.092146 +3125.092513 +3125.198606 +3125.394444 +3125.395409 +3125.400471 +3125.895609 +3125.900604 +3125.996341 +3126.094543 +3126.296807 +3126.495541 +3126.600270 +3126.694143 +3126.694842 +3126.795974 +3126.995541 +3127.094642 +3127.194642 +3127.195507 +3127.197406 +3127.399603 +3127.595574 +3127.696140 +3127.795007 +3127.796306 +3127.993808 +3128.098504 +3128.394807 +3128.396172 +3128.397105 +3128.495539 +3128.597304 +3128.694740 +3128.998003 +3129.595771 +3129.795538 +3129.898402 +3133.679817 +3133.711984 +3134.002960 +3134.891937 +3135.299995 +3135.439122 +3135.485476 +3135.527101 +3135.550711 +3135.613448 +3135.627167 +3135.691070 +3135.788040 +3135.821340 +3135.835292 +3135.856405 +3135.879215 +3135.880780 +3135.892202 +3135.905489 +3135.906821 +3135.918576 +3135.930164 +3135.985375 +3136.009451 +3136.046847 +3136.058069 +3136.070557 +3136.096031 +3136.096098 +3136.108119 +3136.146115 +3136.168825 +3136.203490 +3136.229564 +3136.246614 +3136.269458 +3136.282012 +3136.361899 +3136.386441 +3136.399861 +3136.438688 +3136.449244 +3136.450010 +3136.483510 +3136.495332 +3136.495864 +3136.508252 +3136.512614 +3136.521772 +3136.526301 +3136.535092 +3136.548612 +3136.565728 +3136.576417 +3136.577383 +3136.604622 +3136.635225 +3136.659201 +3136.685774 +3136.711049 +3136.725801 +3136.766893 +3136.779414 +3136.779980 +3136.821039 +3136.845681 +3136.898994 +3136.937622 +3136.951442 +3136.992501 +3137.019407 +3137.044848 +3137.057402 +3137.068791 +3137.163996 +3137.176084 +3137.242217 +3137.257169 +3137.295631 +3137.338188 +3137.407818 +3137.438787 +3137.465294 +3137.484375 +3137.552074 +3137.606752 +3137.636456 +3137.662830 +3137.676816 +3137.704654 +3137.709716 +3137.732926 +3137.761531 +3137.775450 +3137.847145 +3137.889236 +3137.904188 +3137.946313 +3137.961564 +3137.988937 +3138.019706 +3138.048310 +3138.105886 +3138.150208 +3138.230295 +3138.238786 +3138.269656 +3138.284074 +3138.296728 +3138.313412 +3138.313911 +3138.328563 +3138.343149 +3138.358567 +3138.374451 +3138.389369 +3138.449043 +3138.463095 +3138.463528 +3138.510015 +3138.552839 +3138.569489 +3138.614710 +3138.644580 +3138.645246 +3138.689902 +3138.704121 +3138.735190 +3138.735722 +3138.750108 +3138.811913 +3138.857401 +3138.902822 +3138.916908 +3138.917807 +3138.947777 +3138.979312 +3139.010014 +3139.040451 +3139.101623 +3139.102355 +3139.118239 +3139.192798 +3139.331959 +3139.506651 +3139.581309 +3139.754003 +3139.813344 +3143.742877 +3149.890856 +3150.891022 +3152.281130 +3152.641636 +3159.891778 +3160.196041 +3160.199504 +3160.399270 +3160.493176 +3160.499337 +3160.597639 +3160.893909 +3160.895973 +3160.993276 +3161.093775 +3161.099636 +3161.196406 +3161.396938 +3161.493775 +3161.593908 +3161.693708 +3161.695839 +3161.794740 +3161.795406 +3161.995639 +3162.193774 +3162.197171 +3162.392176 +3162.396105 +3162.696005 +3162.895838 +3162.899201 +3162.993440 +3163.097170 +3163.197270 +3163.197836 +3163.293240 +3163.397036 +3163.495238 +3163.796237 +3163.893706 +3163.894705 +3163.998334 +3164.393905 +3164.394671 +3164.396669 +3164.495037 +3164.495770 +3164.693772 +3164.696869 +3164.897401 +3170.347845 +3170.426467 +3170.628398 +3170.706053 +3170.719140 +3170.720006 +3170.767292 +3170.781145 +3170.894998 +3170.895264 +3170.918074 +3170.931861 +3171.021171 +3171.070555 +3171.122969 +3171.123535 +3171.312013 +3171.336123 +3171.373585 +3171.386639 +3171.409582 +3171.418474 +3171.435690 +3171.460099 +3171.548244 +3171.574218 +3171.589735 +3171.628530 +3171.654304 +3171.691633 +3171.703555 +3171.733924 +3171.744114 +3171.769222 +3171.809948 +3171.837721 +3171.863428 +3171.892499 +3171.919239 +3171.919472 +3171.984507 +3172.010514 +3172.023102 +3172.033258 +3172.101823 +3172.114011 +3172.127497 +3172.142416 +3172.157068 +3172.170221 +3172.197660 +3172.239352 +3172.267957 +3172.336321 +3172.349741 +3172.394530 +3172.418772 +3172.446977 +3172.505053 +3172.534823 +3172.561663 +3172.628163 +3172.667090 +3172.679378 +3172.692598 +3172.692931 +3172.748242 +3172.798059 +3172.840450 +3172.847044 +3172.868389 +3172.898226 +3173.013177 +3173.073184 +3173.102954 +3173.176547 +3173.190833 +3173.206251 +3173.206917 +3173.236121 +3173.237086 +3173.369820 +3173.416041 +3173.475348 +3173.505385 +3173.563826 +3173.623566 +3173.652337 +3173.683639 +3173.832424 +3173.880709 +3173.919304 +3173.933789 +3174.012943 +3174.164059 +3174.222267 +3174.237618 +3174.424132 +3174.437518 +3174.468254 +3174.483572 +3174.543579 +3174.563059 +3174.579576 +3174.592496 +3174.639716 +3174.640215 +3174.655633 +3174.671917 +3174.686968 +3174.765989 +3174.778643 +3184.891654 +3185.893584 +3185.893917 +3186.894382 +3187.892083 +3188.891050 +3188.892982 +3189.135505 +3189.890749 +3189.893380 +3194.491211 +3194.890511 +3194.890778 +3195.397437 +3195.593075 +3195.593774 +3195.692775 +3195.792009 +3195.797237 +3195.797803 +3195.896305 +3196.092109 +3196.095638 +3196.097370 +3196.294972 +3196.592241 +3196.694106 +3196.699700 +3196.791841 +3196.794972 +3196.893207 +3196.895438 +3196.897569 +3196.899567 +3196.993373 +3197.001964 +3197.099067 +3197.194405 +3197.195005 +3197.294871 +3197.796602 +3197.799166 +3197.892839 +3197.894771 +3198.193538 +3198.294038 +3198.301064 +3198.493471 +3198.595403 +3198.697367 +3198.699665 +3198.795303 +3198.798366 +3198.800497 +3198.893404 +3198.894503 +3198.896968 +3198.995169 +3199.095535 +3199.192905 +3199.194370 +3199.196634 +3199.393437 +3199.396468 +3199.697466 +3199.893370 +3204.859965 +3204.889236 +3204.892133 +3205.179745 +3205.356568 +3205.415576 +3205.465060 +3205.548876 +3205.583308 +3205.623068 +3205.649142 +3205.662495 +3205.686937 +3205.708016 +3205.806884 +3205.855036 +3205.875682 +3205.902089 +3205.926331 +3205.953004 +3205.966458 +3205.979311 +3205.992099 +3206.044413 +3206.050773 +3206.077946 +3206.089335 +3206.093764 +3206.140717 +3206.180776 +3206.211446 +3206.223733 +3206.225665 +3206.234456 +3206.234989 +3206.260197 +3206.298259 +3206.334156 +3206.346610 +3206.359664 +3206.411479 +3206.422468 +3206.434123 +3206.498259 +3206.536687 +3206.548608 +3206.549241 +3206.574416 +3206.599657 +3206.680843 +3206.693929 +3206.771352 +3206.771918 +3206.796993 +3206.811645 +3206.851705 +3206.872318 +3206.922234 +3206.933456 +3206.980110 +3207.021768 +3207.034822 +3207.061462 +3207.127262 +3207.139384 +3207.187469 +3207.201055 +3207.255201 +3207.294462 +3207.308048 +3207.321535 +3207.334322 +3207.410246 +3207.427229 +3207.476846 +3207.492330 +3207.502953 +3207.543346 +3207.609879 +3207.619070 +3207.631657 +3207.656433 +3207.710012 +3207.725197 +3207.766256 +3207.836219 +3207.882040 +3207.981208 +3208.043712 +3208.189233 +3208.243478 +3208.509745 +3208.523365 +3208.591363 +3208.662659 +3208.803984 +3208.858762 +3209.047474 +3209.121233 +3209.471482 +3209.501552 +3209.650870 +3209.680540 +3209.712708 +3209.726927 +3209.802118 +3209.935285 +3220.097746 +3220.108135 +3223.893446 +3224.059247 +3224.110795 +3224.893678 +3225.068936 +3225.122383 +3225.177028 +3227.538730 +3227.573795 +3228.555146 +3228.834167 +3229.889677 +3229.892741 +3230.093506 +3230.193973 +3230.594605 +3230.696769 +3230.993073 +3230.993938 +3230.995770 +3231.098634 +3231.192973 +3231.193572 +3231.297335 +3231.392673 +3231.394704 +3231.493039 +3231.593005 +3231.692772 +3231.794104 +3231.891440 +3231.892972 +3231.995003 +3231.995569 +3232.092039 +3232.194037 +3232.295036 +3232.600430 +3232.691972 +3232.693038 +3232.697134 +3233.093936 +3233.294069 +3233.397832 +3233.493037 +3233.495002 +3233.597832 +3233.692437 +3233.697232 +3233.892870 +3233.897565 +3233.999263 +3234.194535 +3234.194768 +3234.394901 +3234.601727 +3234.694767 +3234.893002 +3239.492298 +3240.141548 +3240.228994 +3240.346077 +3240.418471 +3240.632990 +3240.671052 +3240.700222 +3240.854501 +3240.866223 +3240.866556 +3240.944311 +3240.966722 +3240.979609 +3241.057531 +3241.071384 +3241.085437 +3241.088167 +3241.136286 +3241.150072 +3241.187135 +3241.254867 +3241.255400 +3241.276179 +3241.288733 +3241.302353 +3241.360561 +3241.372949 +3241.373315 +3241.387368 +3241.400089 +3241.401720 +3241.413908 +3241.465423 +3241.476712 +3241.490431 +3241.590065 +3241.653635 +3241.664524 +3241.854001 +3241.878010 +3241.890531 +3241.966422 +3242.033654 +3242.046808 +3242.074147 +3242.099955 +3242.112842 +3242.166621 +3242.180907 +3242.194660 +3242.233687 +3242.260727 +3242.289165 +3242.300754 +3242.313341 +3242.391496 +3242.437184 +3242.527760 +3242.542378 +3242.569618 +3242.598256 +3242.652069 +3242.693294 +3242.842578 +3242.859861 +3242.924896 +3243.012808 +3243.095758 +3243.246540 +3243.247706 +3243.334486 +3243.435951 +3243.450669 +3244.680738 +3244.695623 +3244.911340 +3244.911707 +3244.916602 +3249.065316 +3250.380865 +3251.913498 +3252.899711 +3252.916194 +3252.928515 +3252.977000 +3253.590086 +3253.611565 +3255.891516 +3256.362045 +3256.399807 +3256.433473 +3256.505168 +3256.521619 +3256.737935 +3257.347425 +3257.363542 +3257.710229 +3257.893912 +3258.306432 +3258.321916 +3258.869768 +3258.890447 +3258.893511 +3259.178592 +3259.184719 +3263.101199 +3264.547451 +3264.570928 +3264.611887 +3264.627937 +3265.195636 +3265.291573 +3265.296934 +3265.299199 +3265.392838 +3265.497334 +3265.694969 +3265.892538 +3265.899498 +3266.095402 +3266.193037 +3266.396933 +3266.593204 +3266.695135 +3266.795534 +3266.799164 +3267.194768 +3267.399197 +3267.795167 +3267.898830 +3268.093169 +3268.295566 +3268.295966 +3268.394634 +3268.492769 +3268.694467 +3268.696432 +3268.794667 +3268.799995 +3269.093101 +3269.299861 +3269.300593 +3269.495232 +3269.594832 +3269.694732 +3269.894066 +3269.894732 +3270.492500 +3272.499658 +3272.605652 +3273.577346 +3273.591132 +3274.891064 +3274.892429 +3274.910411 +3275.421233 +3275.488599 +3275.677077 +3275.716604 +3275.742046 +3275.853434 +3275.938116 +3276.016471 +3276.106314 +3276.144942 +3276.157297 +3276.170084 +3276.171083 +3276.184569 +3276.207879 +3276.210177 +3276.314972 +3276.390563 +3276.391396 +3276.449770 +3276.461792 +3276.492861 +3276.512907 +3276.541279 +3276.567686 +3276.606780 +3276.646074 +3276.667985 +3276.721399 +3276.771149 +3276.784569 +3276.797722 +3276.837982 +3276.867019 +3276.878308 +3276.912374 +3276.925261 +3276.944042 +3276.966986 +3277.048171 +3277.088997 +3277.168551 +3277.196157 +3277.207878 +3277.222430 +3277.248238 +3277.262457 +3277.276743 +3277.290562 +3277.317702 +3277.343975 +3277.418834 +3277.427225 +3277.456063 +3277.511308 +3277.539679 +3277.553665 +3277.581171 +3277.609476 +3277.666952 +3277.738714 +3277.753399 +3277.865953 +3277.994224 +3278.009476 +3278.036649 +3278.051734 +3278.096023 +3278.111474 +3278.126459 +3278.169416 +3278.226958 +3278.281837 +3278.354897 +3278.367850 +3278.412439 +3278.455296 +3278.485200 +3278.530787 +3278.619965 +3278.753398 +3278.783734 +3278.888929 +3278.929155 +3278.987663 +3279.019631 +3279.031986 +3279.062755 +3279.167816 +3279.353564 +3279.366184 +3279.366617 +3279.415635 +3279.476507 +3279.679338 +3279.691992 +3279.867816 +3279.906444 +3282.209705 +3285.351726 +3285.353291 +3285.380531 +3285.441370 +3286.589620 +3286.737206 +3288.934007 +3289.891848 +3290.512627 +3290.892014 +3293.891878 +3294.891677 +3294.892010 +3294.892376 +3296.853380 +3296.855311 +3297.441524 +3298.185280 +3298.220345 +3299.992171 +3299.996334 +3300.097999 +3300.695134 +3300.794834 +3300.993535 +3301.093202 +3301.094668 +3301.197698 +3301.294201 +3301.294734 +3301.295400 +3301.494134 +3301.595366 +3301.695599 +3301.792469 +3301.793135 +3301.796132 +3301.798763 +3302.192935 +3302.195299 +3302.295033 +3302.395499 +3302.493467 +3302.496165 +3302.599028 +3302.794399 +3302.994766 +3302.998295 +3303.098795 +3303.193000 +3303.394699 +3303.597362 +3303.697762 +3303.797529 +3303.993299 +3303.998361 +3304.196896 +3304.200858 +3304.594930 +3304.598161 +3304.692466 +3304.793132 +3304.794098 +3305.437254 +3306.839850 +3306.848608 +3306.874415 +3306.884838 +3306.931691 +3307.007549 +3307.031025 +3307.076879 +3307.086436 +3307.096893 +3307.191465 +3307.262394 +3307.318171 +3308.188300 +3308.188933 +3308.231690 +3308.277811 +3308.286269 +3308.295027 +3308.347474 +3308.372949 +3309.355365 +3309.419068 +3310.248105 +3310.299287 +3310.411774 +3310.446839 +3310.469217 +3310.483036 +3310.574678 +3310.586433 +3310.664055 +3310.686100 +3310.721365 +3310.754065 +3310.762890 +3310.801351 +3310.867651 +3310.868284 +3311.001584 +3311.011008 +3311.125926 +3311.150235 +3311.161957 +3311.201084 +3311.223895 +3311.300385 +3311.386033 +3311.392826 +3311.433418 +3311.455097 +3311.479472 +3311.518567 +3311.533818 +3311.573745 +3311.611141 +3311.620398 +3311.634384 +3311.690161 +3311.717334 +3311.782602 +3311.798386 +3311.822829 +3311.839079 +3311.849802 +3311.901616 +3311.966385 +3312.009409 +3312.022828 +3312.036348 +3312.089262 +3312.103414 +3312.172079 +3312.196621 +3312.332785 +3312.429355 +3312.477906 +3312.517234 +3312.546837 +3312.585232 +3312.657327 +3312.676174 +3312.687463 +3312.700517 +3312.713604 +3312.788529 +3312.837013 +3312.851599 +3312.865418 +3312.949601 +3313.003414 +3313.018898 +3313.141342 +3313.157093 +3313.167449 +3313.195954 +3313.240110 +3313.241675 +3313.270446 +3313.344505 +3313.448035 +3313.448535 +3313.464252 +3313.523193 +3313.583866 +3313.584399 +3313.689027 +3313.703313 +3313.734082 +3313.794022 +3313.824858 +3313.869813 +3314.006709 +3314.021028 +3314.068181 +3314.158790 +3314.223093 +3314.440575 +3314.469479 +3314.610904 +3314.933515 +3316.524056 +3318.492519 +3318.678699 +3320.265544 +3321.119190 +3324.891214 +3326.891445 +3328.892509 +3329.892441 +3329.894339 +3332.823973 +3334.992636 +3335.092702 +3335.094167 +3335.400594 +3335.493101 +3335.495299 +3335.598995 +3335.794400 +3335.797363 +3335.799328 +3335.895299 +3335.898496 +3335.993234 +3335.994233 +3336.093301 +3336.096830 +3336.293101 +3336.298129 +3336.395931 +3336.694965 +3336.695398 +3336.895731 +3336.995331 +3337.195730 +3337.293532 +3337.395364 +3337.397761 +3337.595131 +3337.894631 +3337.898360 +3338.099259 +3338.295396 +3338.296129 +3338.393465 +3338.394297 +3338.495829 +3338.499625 +3338.596761 +3338.599692 +3338.695096 +3338.795063 +3338.895063 +3338.898259 +3339.095362 +3339.396860 +3339.494463 +3339.495062 +3339.498858 +3339.594463 +3339.798159 +3341.861260 +3341.896258 +3341.930591 +3341.980441 +3342.023065 +3342.042379 +3342.043544 +3342.053035 +3342.065489 +3342.170617 +3342.193461 +3342.213641 +3342.239548 +3343.547506 +3343.571315 +3343.616969 +3343.783802 +3343.839880 +3343.853433 +3344.892659 +3345.060424 +3345.241810 +3345.320164 +3345.335183 +3345.357361 +3345.358060 +3345.396988 +3345.409975 +3345.438013 +3345.487364 +3345.577607 +3345.648536 +3345.684766 +3345.696055 +3345.768349 +3345.805146 +3345.818865 +3345.831719 +3345.845971 +3345.885732 +3345.977540 +3345.977839 +3346.067150 +3346.076940 +3346.089394 +3346.089927 +3346.102948 +3346.127423 +3346.129288 +3346.152498 +3346.165751 +3346.211406 +3346.223926 +3346.248901 +3346.261622 +3346.322228 +3346.331685 +3346.344406 +3346.357826 +3346.370413 +3346.408475 +3346.431552 +3346.468448 +3346.472411 +3346.482135 +3346.495888 +3346.520496 +3346.534749 +3346.535415 +3346.558492 +3346.583700 +3346.584632 +3346.597153 +3346.601615 +3346.673177 +3346.687163 +3346.753796 +3346.793523 +3346.860689 +3346.861488 +3346.885930 +3346.925458 +3346.963453 +3347.000549 +3347.056293 +3347.068981 +3347.096686 +3347.110672 +3347.124092 +3347.179969 +3347.205877 +3347.246336 +3347.246636 +3347.361954 +3347.372344 +3347.413203 +3347.455827 +3347.512004 +3347.529386 +3347.610672 +3347.691124 +3347.704411 +3347.724524 +3347.733182 +3347.748101 +3347.801581 +3347.932383 +3347.965417 +3348.173708 +3348.243072 +3348.263884 +3348.296885 +3348.353029 +3348.410371 +3348.469512 +3348.484897 +3348.515100 +3348.648166 +3348.686628 +3348.700614 +3348.701347 +3348.717131 +3348.787460 +3348.791923 +3348.838176 +3348.973974 +3349.189125 +3349.216331 +3349.247134 +3349.344403 +3349.432182 +3349.448698 +3349.479701 +3349.508705 +3349.524190 +3349.555425 +3349.585228 +3352.155422 +3352.205639 +3356.776463 +3358.151887 +3358.353385 +3358.405233 +3359.893110 +3359.894209 +3360.161808 +3360.241761 +3361.251750 +3361.268533 +3362.205196 +3362.221480 +3362.892608 +3362.895139 +3363.891674 +3363.892307 +3364.210255 +3364.361737 +3364.488710 +3364.714617 +3365.197201 +3365.949015 +3366.036228 +3366.090906 +3366.116148 +3366.126804 +3367.243852 +3367.775553 +3368.433095 +3368.440687 +3368.448147 +3368.684011 +3369.528299 +3369.682078 +3369.993600 +3369.993933 +3370.093699 +3370.094299 +3370.196630 +3370.295964 +3370.693799 +3371.097361 +3371.197428 +3371.393765 +3371.496196 +3371.593531 +3371.696062 +3371.699492 +3371.995129 +3372.094397 +3372.195163 +3372.500224 +3372.596128 +3372.695728 +3372.795895 +3372.894496 +3373.094196 +3373.095128 +3373.198059 +3373.295062 +3373.301921 +3373.394529 +3373.397892 +3373.495861 +3373.595128 +3373.595860 +3373.695760 +3373.795228 +3374.094228 +3374.395327 +3374.595859 +3374.697791 +3375.588599 +3375.615772 +3375.631556 +3378.964553 +3378.990927 +3379.030321 +3379.224926 +3379.250067 +3379.890659 +3379.892424 +3380.029487 +3380.075541 +3380.184066 +3380.230752 +3380.242108 +3380.315434 +3380.340809 +3380.489893 +3380.504845 +3380.544971 +3380.633050 +3380.643306 +3380.666250 +3380.692723 +3380.705677 +3380.716832 +3380.729120 +3380.741441 +3380.906076 +3380.945204 +3380.980002 +3380.991557 +3381.037212 +3381.038177 +3381.061654 +3381.087328 +3381.174674 +3381.237578 +3381.250498 +3381.264018 +3381.310405 +3381.372709 +3381.421427 +3381.435813 +3381.448800 +3381.462586 +3381.493155 +3381.525356 +3381.526855 +3381.551863 +3381.604677 +3381.605609 +3381.683365 +3381.683764 +3381.695952 +3381.696485 +3381.709306 +3381.714600 +3381.736845 +3381.763152 +3381.788027 +3381.830284 +3381.841673 +3381.843005 +3381.855925 +3381.892522 +3381.921027 +3381.933714 +3381.939142 +3381.973175 +3382.019528 +3382.029518 +3382.040407 +3382.041706 +3382.055592 +3382.131383 +3382.139242 +3382.181500 +3382.193787 +3382.262951 +3382.277204 +3382.304476 +3382.318629 +3382.336145 +3382.345868 +3382.364383 +3382.415998 +3382.457790 +3382.471809 +3382.501446 +3382.530250 +3382.570377 +3382.585662 +3382.699315 +3382.713234 +3382.790756 +3382.811169 +3382.850430 +3382.863184 +3382.893354 +3382.904742 +3382.929617 +3382.933447 +3382.949797 +3382.958155 +3382.971908 +3383.113800 +3383.136144 +3383.209903 +3383.240206 +3383.240972 +3383.301478 +3383.343270 +3383.357922 +3383.392887 +3383.402377 +3383.459953 +3383.579600 +3383.594052 +3383.621758 +3383.725720 +3383.788225 +3383.830649 +3383.920492 +3383.984162 +3384.040072 +3384.084794 +3384.126852 +3384.141571 +3384.156323 +3384.200645 +3384.230382 +3384.246532 +3384.288690 +3384.377734 +3384.394285 +3384.542669 +3384.557654 +3384.656356 +3384.668710 +3384.782962 +3384.786758 +3384.833079 +3384.846732 +3384.862982 +3384.878833 +3384.879799 +3384.943368 +3392.155749 +3392.205799 +3393.387649 +3393.442727 +3393.874428 +3393.895341 +3393.953682 +3394.893242 +3395.181853 +3395.266335 +3395.272129 +3395.301533 +3396.181752 +3396.895005 +3397.146586 +3397.156243 +3397.172893 +3397.257142 +3397.893205 +3398.239059 +3398.466865 +3398.892871 +3399.893603 +3400.678251 +3405.093964 +3405.299125 +3405.394197 +3405.694963 +3405.797660 +3405.994396 +3405.995229 +3405.995795 +3406.198558 +3406.299691 +3406.397260 +3406.496094 +3406.694529 +3406.794129 +3406.794429 +3406.796626 +3406.893829 +3406.894262 +3406.896260 +3406.994329 +3407.092863 +3407.094495 +3407.194428 +3407.198358 +3407.295660 +3407.296526 +3407.394295 +3407.492963 +3407.494295 +3407.495926 +3407.593962 +3407.594395 +3407.596426 +3407.694428 +3407.795260 +3407.796925 +3407.894028 +3407.894461 +3407.898823 +3407.994394 +3407.995893 +3407.996659 +3408.094461 +3408.096259 +3408.096592 +3408.100455 +3408.193195 +3408.194394 +3408.194827 +3408.195393 +3408.196059 +3408.294194 +3408.296059 +3408.296558 +3408.297757 +3408.298756 +3408.298989 +3408.394027 +3408.394394 +3408.395992 +3408.398856 +3408.493228 +3408.495060 +3408.495925 +3408.597191 +3408.694360 +3408.794327 +3408.798722 +3408.894460 +3408.898289 +3409.094227 +3409.295991 +3409.296324 +3409.396091 +3409.494959 +3409.596657 +3409.694392 +3409.696324 +3409.895991 +3414.909972 +3415.438376 +3415.534713 +3415.779335 +3415.787327 +3415.801879 +3415.960753 +3416.010603 +3416.020926 +3416.033947 +3416.104942 +3416.116697 +3416.116764 +3416.117396 +3416.130983 +3416.166214 +3416.166614 +3416.220027 +3416.261719 +3416.267513 +3416.285228 +3416.311069 +3416.337043 +3416.375205 +3416.387193 +3416.436544 +3416.448698 +3416.504342 +3416.553526 +3416.578601 +3416.591655 +3416.592154 +3416.632114 +3416.644469 +3416.683197 +3416.696550 +3416.724655 +3416.725155 +3416.788791 +3416.816863 +3416.829850 +3416.842737 +3416.942504 +3416.969810 +3417.022191 +3417.035477 +3417.069876 +3417.096250 +3417.121991 +3417.131714 +3417.136776 +3417.172740 +3417.185161 +3417.199879 +3417.200412 +3417.254192 +3417.361551 +3417.374371 +3417.401344 +3417.443069 +3417.472007 +3417.527318 +3417.554491 +3417.568843 +3417.595550 +3417.652959 +3417.666246 +3417.693286 +3417.694118 +3417.708437 +3417.736975 +3417.807904 +3417.836209 +3417.864681 +3417.892586 +3418.049263 +3418.080398 +3418.094251 +3418.152459 +3418.167478 +3418.180764 +3418.197048 +3418.209835 +3418.225153 +3418.239838 +3418.282762 +3418.297880 +3418.327484 +3418.456422 +3418.503175 +3418.530747 +3418.603774 +3418.604540 +3418.664114 +3418.694683 +3418.737973 +3418.797380 +3418.825352 +3418.856721 +3418.886191 +3418.914730 +3418.915629 +3418.931080 +3418.945798 +3418.991286 +3419.036574 +3419.052125 +3419.096181 +3419.111433 +3419.171939 +3419.232245 +3419.248529 +3419.323753 +3419.414529 +3419.430713 +3419.565711 +3419.702441 +3419.764412 +3425.291746 +3430.891408 +3430.894571 +3431.891540 +3432.891106 +3432.891672 +3433.890838 +3434.066629 +3434.102760 +3434.118910 +3435.066029 +3438.301057 +3439.893730 +3440.193696 +3440.193862 +3440.194429 +3440.294462 +3440.592796 +3440.595527 +3440.894794 +3440.904518 +3440.992463 +3440.994761 +3441.493029 +3441.495726 +3441.593528 +3441.594028 +3441.694394 +3441.992395 +3441.995059 +3442.192861 +3442.195059 +3442.299288 +3442.395259 +3442.397257 +3442.493128 +3442.495126 +3442.595259 +3442.796724 +3442.894692 +3442.994925 +3442.995325 +3443.093327 +3443.194159 +3443.194958 +3443.493426 +3443.499254 +3443.593226 +3443.794758 +3443.797722 +3443.893659 +3443.897422 +3443.899120 +3443.993259 +3443.994691 +3443.997622 +3444.197621 +3444.293226 +3444.296955 +3444.300385 +3444.599785 +3444.698087 +3444.797021 +3449.889357 +3449.892121 +3449.902844 +3449.908705 +3449.961319 +3450.025721 +3450.026020 +3450.104775 +3450.117163 +3450.128751 +3450.165314 +3450.202943 +3450.223423 +3450.257589 +3450.280499 +3450.420892 +3450.433146 +3450.446233 +3450.481198 +3450.582530 +3450.596916 +3450.620725 +3450.670142 +3450.682763 +3450.741937 +3450.848297 +3450.848764 +3450.861451 +3450.885926 +3450.897914 +3450.907605 +3450.920259 +3450.923822 +3450.970342 +3450.996949 +3451.086526 +3451.108337 +3451.110069 +3451.114531 +3451.122789 +3451.123289 +3451.123921 +3451.162250 +3451.174438 +3451.194651 +3451.228683 +3451.241604 +3451.314930 +3451.328950 +3451.393651 +3451.441803 +3451.477900 +3451.516262 +3451.543069 +3451.554524 +3451.568243 +3451.661050 +3451.681563 +3451.766412 +3451.918959 +3451.960451 +3451.964147 +3452.042036 +3452.093884 +3452.117960 +3452.144666 +3452.163348 +3452.185725 +3452.211499 +3452.266844 +3452.389455 +3452.451792 +3452.466011 +3452.563647 +3452.610300 +3452.665279 +3452.770606 +3452.822188 +3453.137339 +3453.328315 +3453.356220 +3453.589420 +3453.603772 +3453.844032 +3453.870838 +3453.887355 +3453.945197 +3454.088920 +3454.116992 +3454.656685 +3454.921487 +; +0.952247 +8.792898 +10.268022 +13.248172 +17.497485 +19.145702 +20.407505 +20.632314 +23.721388 +23.727882 +25.001673 +27.408164 +27.412726 +27.708197 +28.478426 +28.623348 +30.077925 +30.082288 +30.292411 +30.305031 +30.527742 +31.817484 +33.311122 +39.402691 +39.414180 +48.481703 +48.549735 +49.780703 +52.754060 +55.253691 +62.635369 +62.645159 +64.325244 +66.959940 +67.088211 +67.226440 +68.466232 +68.587677 +70.561401 +72.956670 +75.306551 +77.146643 +78.583538 +79.919167 +81.371281 +81.423362 +81.450368 +82.708242 +84.353662 +84.365783 +84.460621 +92.106135 +94.907697 +94.973465 +96.713223 +96.872264 +102.342322 +104.591970 +109.413244 +119.417796 +119.473906 +119.484496 +125.301173 +125.307267 +125.312296 +126.433973 +129.226744 +131.863904 +137.446716 +138.542552 +138.743484 +138.751609 +139.093534 +139.105355 +140.045548 +140.051675 +140.134825 +140.139320 +140.155404 +140.159600 +143.613643 +143.618704 +143.628228 +148.730554 +148.743208 +161.003102 +164.802599 +168.729002 +180.276043 +182.452565 +195.233105 +221.690554 +225.721519 +227.433739 +227.464574 +227.609829 +227.806898 +228.932205 +229.021216 +236.919177 +243.012777 +243.221102 +243.227829 +244.798690 +244.858996 +246.214606 +246.443976 +246.522531 +246.611741 +266.060839 +274.724101 +274.725832 +275.070288 +275.275349 +275.285339 +278.925096 +278.929058 +278.933854 +278.942412 +279.653000 +280.818667 +282.011773 +282.093591 +282.136814 +283.069514 +283.076274 +285.031450 +285.066115 +285.304543 +295.443294 +298.994440 +300.455344 +302.245951 +302.254243 +314.840344 +315.925558 +318.765915 +322.459518 +323.721621 +328.710028 +329.293843 +333.219647 +333.322710 +334.016716 +334.420045 +335.532432 +338.416445 +338.879115 +338.888372 +338.896597 +339.230263 +339.234359 +339.572188 +342.188369 +342.395229 +342.400623 +342.981975 +343.753136 +345.475445 +345.724363 +351.279302 +352.894552 +355.675002 +356.020290 +356.511065 +356.525384 +356.714928 +356.724552 +356.827082 +356.830779 +356.835740 +357.452623 +358.282426 +361.631040 +363.066703 +363.892943 +364.115353 +365.322645 +369.730233 +373.357768 +374.749176 +374.841783 +374.935289 +376.731724 +376.742114 +376.894961 +376.950838 +379.317636 +379.405415 +389.912630 +391.865509 +395.580757 +404.743585 +404.773255 +404.789672 +405.396797 +405.791369 +407.377981 +414.523961 +425.259748 +425.269671 +426.345927 +426.694112 +427.409662 +431.385150 +431.388846 +431.440328 +431.454314 +432.392242 +434.178687 +448.078972 +460.683722 +460.697741 +460.735070 +460.831207 +460.840731 +460.848357 +461.689781 +461.741563 +461.790381 +461.874563 +462.415189 +462.418985 +462.426411 +463.272131 +463.300636 +465.235898 +476.068288 +478.277710 +478.287434 +478.326428 +478.366588 +478.513974 +478.894526 +478.899088 +478.905149 +478.982338 +479.050303 +479.054466 +479.060760 +479.161392 +479.178442 +479.182937 +479.191762 +479.246540 +483.568314 +483.576906 +484.732682 +485.224889 +488.827483 +490.625716 +492.444662 +493.747292 +494.662842 +510.617038 +510.630458 +510.635720 +510.720468 +512.101519 +512.315438 +515.612272 +520.465347 +520.809169 +520.813032 +520.836209 +522.054157 +522.218259 +526.819986 +529.412324 +530.776858 +532.251715 +532.367300 +538.054207 +538.094134 +538.137490 +539.098129 +539.185908 +539.384109 +539.387905 +544.600454 +544.604584 +544.610777 +546.201751 +546.343909 +546.362657 +546.384602 +564.621746 +564.666002 +569.101562 +569.107623 +571.981812 +573.477315 +574.442050 +574.484274 +574.515476 +574.533258 +574.595163 +576.051971 +577.165923 +592.338602 +607.960264 +608.677147 +608.690500 +608.931659 +608.936587 +613.609177 +613.714604 +625.268306 +626.092447 +626.097709 +627.471134 +627.501171 +627.514524 +627.609129 +627.808763 +627.876362 +628.041763 +632.361505 +649.611238 +650.577172 +650.675074 +650.684964 +651.613334 +651.618629 +651.793288 +651.931782 +654.934810 +655.014030 +655.142069 +655.254290 +655.314163 +655.790586 +655.963613 +656.650126 +656.750792 +658.283058 +659.765174 +659.784522 +660.719286 +660.762643 +660.770768 +662.018552 +662.296041 +662.327842 +662.392045 +662.523347 +665.710190 +665.769997 +667.131101 +669.761501 +677.997524 +678.439914 +679.711974 +680.845473 +681.683434 +681.687763 +681.687963 +681.695922 +687.603641 +688.548496 +688.608935 +688.885325 +689.007136 +689.061116 +689.382827 +689.449594 +689.520989 +694.972865 +694.977627 +694.982056 +700.083582 +701.276954 +701.283148 +703.305524 +711.346974 +711.788133 +711.791962 +711.941612 +712.013341 +712.055165 +713.445174 +713.652034 +713.744374 +713.744907 +713.945839 +714.744473 +715.042009 +717.145770 +717.245603 +718.042239 +721.960350 +722.825584 +724.458849 +724.514893 +724.542199 +724.636705 +724.659182 +724.666375 +724.681826 +724.691616 +724.696844 +724.739935 +724.831510 +724.863478 +724.875832 +724.979362 +725.041666 +725.073767 +725.135172 +725.205435 +725.310563 +725.342365 +725.401606 +725.419421 +725.439734 +725.484323 +725.491116 +725.507366 +725.541332 +725.737236 +725.742498 +725.750023 +725.755585 +725.794779 +725.936004 +726.005002 +726.078761 +726.115591 +726.171901 +726.299374 +726.602370 +726.648391 +726.695011 +727.611260 +728.547823 +728.555848 +728.560510 +729.190513 +729.194875 +734.626804 +734.710454 +735.442821 +739.280413 +739.291235 +739.300926 +739.640452 +739.685607 +739.717642 +739.772121 +739.997428 +740.019307 +740.022770 +740.033326 +740.296163 +740.299393 +740.331094 +740.543782 +740.662762 +742.711978 +742.752604 +742.779910 +742.946044 +742.957366 +743.037652 +744.075413 +744.588599 +746.225694 +746.312440 +746.320865 +746.324961 +746.331322 +746.349237 +746.359527 +746.368551 +746.376310 +746.386167 +746.404582 +747.720464 +748.344473 +748.344706 +748.346071 +748.645105 +748.646238 +748.742175 +748.743440 +748.841575 +748.843207 +748.844506 +748.847703 +748.848935 +748.851299 +748.949467 +749.044606 +749.142274 +749.144972 +749.241875 +749.242441 +749.243273 +749.340776 +749.342341 +749.344605 +749.346570 +749.348202 +749.356593 +749.442707 +749.445138 +749.445771 +749.542341 +749.543872 +749.545371 +749.548601 +749.642607 +749.646004 +749.648401 +749.746669 +749.941708 +749.949466 +749.950166 +749.951398 +750.042340 +750.046736 +750.141674 +750.141807 +750.143506 +750.144005 +750.150965 +750.245637 +750.247435 +750.342440 +750.440308 +750.445303 +750.446236 +750.447268 +750.449233 +750.542906 +750.643538 +750.647734 +750.743072 +750.744504 +750.748200 +750.841107 +751.042306 +751.148533 +751.244370 +751.246268 +751.247467 +751.251330 +751.346468 +751.347367 +751.352196 +751.451230 +751.543804 +751.548666 +751.643937 +751.646601 +751.648099 +751.743271 +751.743737 +751.746135 +751.746434 +751.747467 +751.748865 +751.851429 +751.945502 +752.041606 +752.042438 +752.045535 +752.054293 +752.147866 +752.245268 +752.344169 +752.344502 +752.444369 +752.445834 +752.543936 +752.546533 +752.644003 +752.655791 +752.741172 +752.743203 +752.747632 +752.748098 +752.850030 +752.949264 +753.044402 +753.051528 +754.848063 +756.749626 +756.761381 +758.044397 +758.391882 +758.403537 +758.430677 +758.460580 +758.464343 +758.475798 +758.479927 +758.513028 +758.524216 +758.531443 +758.589618 +758.723883 +758.756051 +758.759248 +758.763377 +758.798875 +758.815691 +758.838768 +758.866607 +758.934639 +759.012328 +759.037869 +759.044729 +759.058615 +759.073700 +759.103104 +759.188618 +759.212161 +761.975129 +762.367702 +763.281688 +763.482520 +763.566436 +763.714954 +764.085583 +764.695106 +764.714686 +764.780321 +764.788146 +764.858676 +765.134799 +765.138662 +765.761139 +765.764635 +770.322906 +774.232692 +776.627362 +776.632923 +776.638817 +778.458729 +784.140375 +784.340707 +785.046667 +785.552561 +785.640806 +794.182023 +798.357210 +798.415186 +798.415951 +805.476217 +805.487206 +813.676975 +813.995223 +818.442105 +818.536711 +818.541972 +818.739408 +818.838342 +818.841306 +818.938242 +818.942737 +819.038641 +819.039807 +819.441272 +820.038973 +820.445733 +821.838805 +829.440096 +829.549820 +829.636233 +829.697805 +829.781854 +829.855347 +830.207928 +830.476093 +830.621447 +830.788047 +831.022346 +831.107128 +831.229139 +831.298136 +831.415819 +831.493741 +831.811023 +832.280453 +832.351482 +832.531202 +832.669231 +832.964801 +833.252147 +833.258041 +833.313819 +833.317881 +833.717048 +839.247379 +839.563596 +843.029327 +849.444672 +851.494287 +853.341837 +853.439206 +853.639140 +853.642869 +853.838906 +853.943335 +854.138473 +854.141437 +854.339539 +854.342669 +854.740271 +854.839538 +854.842668 +854.939172 +855.042568 +860.779226 +862.528841 +863.425210 +863.480888 +863.533469 +863.600135 +863.696938 +863.927075 +864.029739 +864.192775 +866.611121 +867.233265 +867.919079 +868.334263 +868.400064 +868.509155 +872.948344 +872.950975 +875.959497 +877.215340 +883.310938 +892.128112 +897.593108 +898.351050 +898.509524 +898.745155 +898.909624 +902.482614 +903.188407 +903.271258 +903.282180 +903.318977 +903.410285 +904.767460 +907.830827 +913.152533 +915.524392 +915.554629 +920.109669 +921.412165 +921.428716 +928.749887 +928.952151 +932.723476 +932.730502 +932.755910 +932.765035 +932.768864 +932.805594 +937.141321 +937.457870 +937.525902 +937.993667 +938.271922 +938.275119 +938.277217 +938.279182 +938.405056 +938.676151 +938.688405 +938.941485 +938.993966 +939.024469 +947.457028 +949.137279 +951.829018 +954.112499 +957.983857 +958.741499 +960.341664 +962.553649 +966.825373 +971.508819 +971.637057 +971.692668 +971.918176 +972.038522 +972.138055 +972.304322 +972.689470 +972.837455 +972.934858 +972.998028 +973.264828 +973.281611 +973.717441 +975.670886 +975.687835 +977.032656 +982.848334 +982.855161 +986.062950 +990.092450 +990.180029 +990.252356 +999.180020 +1002.784179 +1002.794402 +1008.564493 +1008.586171 +1011.165622 +1011.188466 +1011.543111 +1012.667952 +1012.717902 +1012.758195 +1015.700716 +1019.851561 +1026.444428 +1026.449390 +1026.454218 +1026.527512 +1026.574098 +1026.590782 +1026.670135 +1032.715950 +1036.543585 +1043.368753 +1048.524326 +1048.539544 +1051.508039 +1051.598149 +1051.924989 +1052.725521 +1052.844102 +1052.927918 +1054.350661 +1055.036840 +1055.539570 +1055.610233 +1055.649560 +1055.938604 +1055.942600 +1056.607868 +1056.614761 +1056.618857 +1056.630845 +1057.769838 +1059.200373 +1059.204635 +1063.138364 +1064.540627 +1068.355142 +1068.361935 +1068.667529 +1068.763600 +1068.767729 +1069.039224 +1069.085877 +1069.631664 +1069.643286 +1069.659103 +1069.718577 +1070.022973 +1070.055407 +1070.262699 +1070.266262 +1070.804324 +1070.813182 +1070.817511 +1070.923904 +1070.932396 +1070.936858 +1071.267427 +1071.780480 +1071.784143 +1072.240186 +1083.874441 +1084.524956 +1084.548799 +1084.555825 +1084.569378 +1084.574939 +1084.585928 +1084.597517 +1086.380166 +1086.512034 +1086.521491 +1086.535210 +1087.109069 +1087.320524 +1087.339139 +1087.704307 +1087.712365 +1087.719458 +1088.543733 +1088.670073 +1089.006170 +1089.734408 +1090.305170 +1090.313495 +1091.839301 +1091.852688 +1092.404136 +1092.411362 +1092.417922 +1092.672567 +1092.871235 +1092.875764 +1092.881491 +1092.969237 +1092.972667 +1092.979526 +1093.664541 +1093.789749 +1094.035669 +1095.711325 +1096.323646 +1098.436730 +1098.439494 +1098.535631 +1098.544889 +1098.638295 +1098.639960 +1098.741792 +1099.037662 +1099.237729 +1099.241358 +1099.739826 +1100.236995 +1105.317509 +1106.063230 +1106.112280 +1106.135990 +1106.835690 +1106.843548 +1106.882976 +1106.887105 +1107.528396 +1107.992365 +1117.782632 +1135.375488 +1136.617678 +1139.920472 +1139.978580 +1140.021171 +1142.532091 +1148.434516 +1148.444406 +1148.544206 +1148.757826 +1148.808741 +1150.184231 +1151.249332 +1151.284829 +1157.193615 +1157.209366 +1157.266375 +1160.738866 +1169.106856 +1169.122407 +1171.656637 +1175.331758 +1177.025929 +1177.075113 +1178.541079 +1178.693926 +1178.872081 +1178.926826 +1178.999920 +1179.081172 +1179.115071 +1179.175944 +1179.320199 +1179.589463 +1179.723196 +1179.812939 +1179.953032 +1180.162889 +1180.169482 +1180.369516 +1180.433119 +1180.484434 +1180.535649 +1180.576109 +1183.269613 +1183.970677 +1186.629583 +1189.442667 +1189.465910 +1191.731009 +1194.254483 +1194.258679 +1194.465672 +1194.473997 +1194.477860 +1194.950154 +1195.265738 +1195.429108 +1195.433836 +1195.439231 +1195.540796 +1195.541928 +1195.543793 +1197.514387 +1203.339922 +1203.564331 +1203.839389 +1205.002058 +1208.667789 +1208.676913 +1208.685405 +1213.402083 +1213.547771 +1213.654031 +1213.660791 +1213.721464 +1213.762123 +1213.820331 +1214.128256 +1214.205579 +1214.209342 +1214.263954 +1214.337713 +1214.462455 +1214.481136 +1214.647237 +1214.768049 +1214.832851 +1214.850367 +1214.866984 +1214.920796 +1214.947170 +1215.003613 +1215.020796 +1215.038445 +1215.157992 +1215.165085 +1215.198552 +1215.252464 +1215.319963 +1215.370413 +1215.395621 +1215.425225 +1215.466317 +1215.467016 +1215.509141 +1215.559024 +1215.690459 +1215.769047 +1215.897785 +1216.202780 +1216.299450 +1216.304112 +1216.317964 +1216.544538 +1216.574175 +1216.594255 +1216.636113 +1216.643106 +1216.681134 +1216.686396 +1216.701780 +1216.753662 +1216.860788 +1216.870744 +1216.939243 +1216.954228 +1217.145336 +1217.148400 +1217.172676 +1217.181766 +1217.198217 +1217.275439 +1217.321260 +1217.414500 +1217.457291 +1217.478536 +1217.482898 +1217.519728 +1217.529219 +1217.553128 +1217.609072 +1218.353460 +1218.363117 +1218.373374 +1218.763949 +1220.371807 +1228.141662 +1228.145658 +1228.163607 +1228.446224 +1229.282520 +1231.272728 +1232.224509 +1232.347086 +1232.939460 +1233.321744 +1233.329136 +1235.734861 +1237.447780 +1237.947946 +1238.141020 +1238.141985 +1238.240986 +1238.242884 +1238.244449 +1238.341119 +1238.343017 +1238.347546 +1238.541552 +1238.542018 +1238.544449 +1238.546047 +1238.552941 +1238.643883 +1238.741718 +1238.742384 +1238.743017 +1238.942451 +1238.943616 +1239.045015 +1239.143616 +1239.144149 +1239.242317 +1239.244049 +1239.245181 +1239.250709 +1239.339986 +1239.343616 +1239.344981 +1239.346446 +1239.346879 +1239.444182 +1239.544881 +1239.545547 +1239.545880 +1239.549143 +1239.549843 +1239.550875 +1239.641851 +1239.742550 +1239.745680 +1239.844381 +1239.941551 +1239.946779 +1240.147777 +1240.344814 +1240.346745 +1240.440817 +1240.443648 +1240.541916 +1240.743348 +1240.744846 +1240.844047 +1240.845546 +1240.850907 +1241.042548 +1241.042881 +1241.050840 +1241.144680 +1241.147077 +1241.147643 +1241.148143 +1241.151007 +1241.240084 +1241.241949 +1241.242448 +1241.243581 +1241.250407 +1241.349907 +1241.447110 +1241.451173 +1241.550640 +1241.642448 +1241.649408 +1241.655235 +1241.750107 +1241.945711 +1242.243047 +1242.244678 +1242.245411 +1242.544012 +1242.640682 +1242.743779 +1242.844645 +1243.043945 +1243.573648 +1247.167184 +1247.176642 +1248.425991 +1248.439577 +1248.505511 +1248.546204 +1248.583400 +1248.611372 +1248.716434 +1248.751199 +1249.002148 +1249.034748 +1249.109074 +1249.126590 +1249.181768 +1249.231052 +1249.238911 +1249.306276 +1249.327855 +1249.335847 +1249.379070 +1249.423293 +1249.429320 +1249.435014 +1249.463985 +1249.597019 +1249.614701 +1249.824058 +1249.959822 +1250.064218 +1250.117431 +1250.176539 +1250.230085 +1250.320961 +1250.370711 +1250.375806 +1250.381900 +1250.406009 +1250.453528 +1250.636778 +1250.971776 +1251.059355 +1251.076072 +1251.124590 +1251.145003 +1251.160354 +1251.175938 +1251.251030 +1251.308073 +1251.469811 +1251.510803 +1251.558489 +1251.584563 +1251.610936 +1251.612868 +1251.653660 +1251.668245 +1251.713034 +1251.756757 +1251.760853 +1251.766680 +1251.775338 +1251.817696 +1251.829617 +1251.878868 +1251.882598 +1251.926820 +1252.066513 +1252.073673 +1252.105375 +1252.171741 +1252.187792 +1252.224955 +1252.251129 +1252.438241 +1252.449830 +1252.497782 +1252.497982 +1252.548897 +1252.592653 +1252.609703 +1252.625321 +1253.233379 +1253.239639 +1253.317628 +1253.451261 +1253.454724 +1253.462849 +1253.477767 +1253.549995 +1257.308533 +1257.314860 +1257.405669 +1260.518420 +1261.538532 +1263.849619 +1263.866235 +1264.039429 +1264.227640 +1265.045521 +1268.032332 +1268.038825 +1268.258938 +1269.088774 +1269.286143 +1269.673023 +1270.319675 +1271.336391 +1271.341552 +1272.145381 +1272.148844 +1272.155138 +1272.197263 +1272.470389 +1273.647378 +1274.545978 +1274.548376 +1274.742715 +1274.844146 +1275.043047 +1275.144346 +1275.244779 +1275.249774 +1275.347343 +1275.348208 +1275.443613 +1275.448075 +1275.448841 +1275.545511 +1275.645478 +1275.645944 +1275.648808 +1275.743979 +1275.845211 +1275.847542 +1275.849040 +1276.143313 +1276.248507 +1276.249306 +1276.250539 +1276.340315 +1276.348041 +1277.047341 +1277.148073 +1277.246841 +1277.249072 +1277.345742 +1280.228490 +1281.677706 +1281.730387 +1281.786364 +1281.796787 +1281.860590 +1282.855993 +1290.979661 +1291.018156 +1296.360908 +1299.560505 +1299.588677 +1299.668630 +1300.398100 +1302.701161 +1307.042283 +1307.603221 +1307.612911 +1310.941679 +1310.943910 +1311.338382 +1313.360591 +1313.377008 +1313.381371 +1313.612806 +1313.620564 +1313.886365 +1313.899319 +1313.955429 +1314.047803 +1314.394290 +1314.420830 +1314.528156 +1314.539278 +1314.548269 +1314.558026 +1314.782968 +1314.791326 +1315.069880 +1315.073710 +1315.096920 +1315.103647 +1315.111472 +1315.290926 +1315.295688 +1316.261821 +1317.482066 +1319.389656 +1319.676003 +1321.803307 +1321.950759 +1323.035473 +1326.592813 +1327.934037 +1328.320883 +1328.334070 +1328.600603 +1328.687516 +1328.793310 +1328.805331 +1329.920382 +1330.358243 +1330.363205 +1334.638759 +1334.982581 +1335.833230 +1335.931831 +1336.726569 +1338.786573 +1338.837023 +1339.050842 +1339.212081 +1339.218408 +1340.987770 +1340.993964 +1341.359131 +1343.340881 +1343.741380 +1344.538249 +1346.040046 +1346.441211 +1347.139978 +1347.540078 +1349.026656 +1349.049866 +1349.065151 +1349.079270 +1350.252895 +1350.260155 +1350.375473 +1350.429086 +1350.433481 +1358.261745 +1358.365075 +1358.532241 +1359.277395 +1360.971000 +1360.971200 +1360.971333 +1360.971433 +1360.971566 +1364.462671 +1366.157974 +1373.495763 +1374.233224 +1374.236987 +1376.174548 +1376.377711 +1376.378610 +1376.476146 +1376.779076 +1376.874148 +1377.075879 +1377.475612 +1377.973414 +1377.974180 +1377.974579 +1378.278542 +1378.472681 +1378.473114 +1378.473813 +1378.573713 +1378.679074 +1379.174711 +1379.177342 +1379.179340 +1379.276310 +1379.276809 +1379.376476 +1379.473546 +1379.676442 +1379.773845 +1379.774245 +1380.076309 +1380.376775 +1380.775942 +1380.781270 +1384.829751 +1384.870477 +1384.882598 +1385.861884 +1386.088690 +1386.125287 +1386.273739 +1386.357288 +1386.370642 +1386.437774 +1386.496349 +1386.684028 +1386.733045 +1386.745300 +1386.759186 +1386.861017 +1386.875470 +1386.887890 +1386.935410 +1386.939039 +1386.951061 +1386.952759 +1386.979565 +1387.018526 +1387.024987 +1387.045699 +1387.058320 +1387.085692 +1387.100045 +1387.119692 +1387.187424 +1387.212699 +1387.227484 +1387.339605 +1387.377367 +1387.412532 +1387.435309 +1387.449961 +1387.462482 +1387.516428 +1387.544067 +1387.547164 +1387.565845 +1387.608336 +1387.611133 +1387.668576 +1387.696914 +1387.725519 +1387.746731 +1387.816494 +1387.841203 +1387.871972 +1387.887357 +1387.906771 +1388.006904 +1388.016994 +1388.018725 +1388.032511 +1388.036441 +1388.086990 +1388.227383 +1388.345165 +1388.352924 +1388.357220 +1388.365611 +1388.398845 +1388.410167 +1388.488155 +1388.489887 +1388.519824 +1388.520922 +1388.527649 +1388.547862 +1388.592151 +1388.641102 +1388.680063 +1388.706936 +1388.719823 +1388.749227 +1388.761981 +1388.815561 +1388.857053 +1388.860050 +1388.899943 +1388.902207 +1388.930546 +1388.950726 +1388.953190 +1388.954155 +1389.008468 +1389.008901 +1389.081428 +1389.096913 +1389.099177 +1389.124452 +1389.139969 +1389.171571 +1389.203772 +1389.223219 +1389.246097 +1389.289553 +1389.359516 +1389.386989 +1389.415960 +1389.434774 +1389.463679 +1389.491284 +1389.520056 +1389.569440 +1389.573336 +1389.606769 +1389.618724 +1389.679063 +1389.694148 +1389.708001 +1389.769539 +1389.782326 +1389.785823 +1389.814161 +1389.817624 +1389.856319 +1389.875333 +1389.918124 +1389.980295 +1390.070172 +1390.162279 +1390.192782 +1390.207468 +1390.255819 +1390.297744 +1390.300874 +1390.325949 +1390.355519 +1390.388953 +1390.442266 +1390.502339 +1390.539136 +1390.549059 +1390.577364 +1390.599941 +1390.640867 +1390.670271 +1390.695612 +1390.711929 +1390.740667 +1390.804437 +1390.804836 +1390.837270 +1390.868406 +1390.996777 +1395.569533 +1395.754948 +1396.585583 +1397.312655 +1398.271928 +1398.316484 +1398.329404 +1398.334299 +1398.339594 +1398.350783 +1398.578588 +1398.589544 +1398.879354 +1398.888877 +1398.895571 +1398.904229 +1399.021478 +1400.945885 +1400.960371 +1401.914549 +1401.946617 +1406.659632 +1407.971785 +1408.053337 +1409.392896 +1409.475414 +1409.478943 +1409.485304 +1409.514574 +1409.660262 +1411.375612 +1411.876111 +1411.877076 +1412.175211 +1412.277342 +1412.279840 +1412.375344 +1412.476043 +1412.575411 +1412.676742 +1412.776876 +1412.777308 +1413.175876 +1413.279739 +1413.676875 +1413.776375 +1414.174510 +1414.378472 +1414.475509 +1414.477174 +1414.576641 +1414.774642 +1414.976674 +1415.579237 +1420.994516 +1421.180763 +1421.288755 +1421.353790 +1421.411732 +1421.744799 +1421.795015 +1422.007236 +1422.085824 +1422.133410 +1422.333310 +1422.385990 +1422.450925 +1422.621188 +1422.637705 +1422.711065 +1422.760182 +1422.784291 +1422.889919 +1422.919489 +1422.992616 +1423.088986 +1423.105470 +1423.125616 +1423.180828 +1423.231644 +1423.516225 +1423.546762 +1423.666209 +1423.691750 +1423.709032 +1423.739968 +1423.768673 +1423.802539 +1423.908100 +1423.999575 +1424.080194 +1424.161380 +1424.176631 +1424.207034 +1424.305435 +1424.364210 +1424.440534 +1424.582625 +1424.596477 +1424.604603 +1424.666940 +1424.668905 +1424.683324 +1424.718256 +1424.826847 +1424.844562 +1424.911828 +1424.925914 +1424.927313 +1424.986321 +1424.987486 +1425.064176 +1425.078994 +1425.079993 +1425.095245 +1425.163077 +1425.196144 +1425.389550 +1425.428844 +1425.503070 +1425.507166 +1425.604335 +1425.648891 +1425.649457 +1425.680792 +1425.694612 +1425.848358 +1425.849257 +1425.882690 +1434.772758 +1435.405258 +1435.428668 +1435.444052 +1435.448947 +1435.458771 +1435.486810 +1438.930263 +1440.671287 +1440.932125 +1442.136387 +1442.147176 +1442.157033 +1442.170552 +1442.181775 +1442.190433 +1442.207482 +1442.220469 +1442.391898 +1443.669086 +1444.860293 +1447.921263 +1449.512470 +1449.534115 +1449.540708 +1449.548833 +1449.980335 +1452.562750 +1452.609703 +1452.616629 +1452.667045 +1455.858484 +1457.840633 +1457.885222 +1458.012694 +1458.295744 +1458.379028 +1458.437336 +1458.510796 +1458.611795 +1458.612228 +1458.613160 +1458.627612 +1458.833739 +1458.984089 +1459.009563 +1459.107565 +1459.207399 +1459.266173 +1459.338834 +1459.370735 +1459.412127 +1459.470868 +1459.499806 +1459.531441 +1459.627545 +1459.693612 +1459.780558 +1459.837168 +1459.869269 +1459.951154 +1459.974631 +1459.984254 +1459.985853 +1460.010661 +1460.168969 +1460.224514 +1460.226712 +1460.570068 +1460.590747 +1460.766671 +1460.965239 +1460.965805 +1472.454472 +1477.679808 +1477.732954 +1477.739814 +1477.769684 +1481.078972 +1481.177906 +1481.180970 +1481.280437 +1481.480503 +1482.680569 +1482.978271 +1483.081767 +1483.281134 +1483.381600 +1483.781566 +1485.280133 +1485.481864 +1489.892017 +1491.281093 +1491.325448 +1491.541299 +1491.605235 +1491.717423 +1491.856750 +1491.905901 +1491.919554 +1492.006966 +1492.015591 +1492.059913 +1492.135271 +1492.195378 +1492.210163 +1492.266373 +1492.271668 +1492.306833 +1492.353486 +1492.396909 +1492.470535 +1492.686453 +1492.758980 +1492.893246 +1493.002703 +1493.056116 +1493.105000 +1493.109929 +1493.231141 +1493.235803 +1493.372699 +1493.406798 +1493.500704 +1493.610228 +1493.668669 +1493.811826 +1493.815955 +1493.876461 +1493.915089 +1493.959911 +1493.991313 +1494.007197 +1494.026778 +1494.092645 +1494.147057 +1494.309395 +1494.330740 +1494.445658 +1494.451885 +1494.483387 +1494.498239 +1494.603634 +1494.609694 +1494.671099 +1494.698705 +1494.709794 +1494.751652 +1494.781622 +1494.820050 +1494.880090 +1495.125977 +1495.165338 +1495.205731 +1495.218551 +1495.221715 +1495.255414 +1495.285518 +1495.326244 +1495.444159 +1495.460409 +1495.498271 +1495.511591 +1495.512391 +1495.554049 +1495.583553 +1495.584219 +1495.670199 +1495.716320 +1495.773929 +1495.838631 +1495.871431 +1495.876226 +1495.891844 +1495.934401 +1495.945024 +1497.656078 +1498.770596 +1498.884215 +1500.720144 +1504.869091 +1504.888105 +1504.907386 +1506.154604 +1509.582739 +1509.658763 +1516.285563 +1516.380735 +1516.383066 +1516.383931 +1516.780768 +1516.783432 +1516.881433 +1516.886295 +1516.981700 +1517.181133 +1517.580367 +1518.581998 +1520.081230 +1520.980464 +1525.731941 +1526.313425 +1526.660778 +1526.836468 +1526.952086 +1526.965240 +1527.007098 +1527.351486 +1527.392812 +1527.404333 +1527.432638 +1527.469735 +1527.490447 +1527.514090 +1527.560810 +1527.638199 +1527.687450 +1527.697939 +1527.740164 +1527.791246 +1527.827143 +1527.855615 +1527.881755 +1527.896507 +1527.908462 +1527.971865 +1528.020850 +1528.090380 +1528.291878 +1528.334069 +1528.371099 +1528.434935 +1528.444559 +1528.471199 +1528.561042 +1528.574329 +1528.603400 +1528.649753 +1528.684086 +1528.737266 +1528.749820 +1528.782820 +1528.942594 +1528.955248 +1529.039497 +1529.053982 +1529.055880 +1529.070898 +1529.136566 +1529.158444 +1529.160975 +1529.186816 +1529.260875 +1529.281021 +1529.307295 +1529.307761 +1529.382087 +1529.405064 +1529.408727 +1529.554847 +1529.556812 +1529.608327 +1529.611124 +1529.623778 +1529.681521 +1529.692243 +1529.779955 +1529.781953 +1529.795140 +1529.811957 +1529.900335 +1529.977591 +1530.064837 +1530.136232 +1530.195739 +1530.211024 +1530.269365 +1530.269832 +1530.284117 +1530.410158 +1530.438130 +1530.533501 +1530.547354 +1530.565003 +1530.609425 +1530.686914 +1530.699768 +1530.715319 +1530.746288 +1530.747820 +1530.761739 +1530.778023 +1530.823977 +1530.857277 +1530.887813 +1530.931569 +1530.942025 +1534.750380 +1539.230895 +1540.666092 +1543.204617 +1543.282406 +1544.271283 +1544.587799 +1545.204116 +1545.207646 +1545.519467 +1546.745206 +1546.754098 +1548.067583 +1548.390959 +1548.399018 +1551.079435 +1551.179168 +1551.280134 +1551.282098 +1551.484196 +1551.680932 +1551.683896 +1551.685528 +1551.783696 +1551.783996 +1551.878734 +1551.880832 +1551.888525 +1551.980200 +1551.983763 +1552.084528 +1552.085161 +1552.180000 +1552.282996 +1552.381764 +1552.385194 +1552.482963 +1552.484561 +1552.488191 +1552.489690 +1552.584761 +1552.681065 +1552.681398 +1552.682263 +1552.684828 +1552.685593 +1552.779932 +1552.782330 +1552.784095 +1552.884095 +1552.980099 +1552.984261 +1552.984861 +1552.985227 +1553.284860 +1553.287657 +1553.388290 +1553.483428 +1553.682063 +1553.682695 +1553.887457 +1553.985026 +1553.989821 +1554.087024 +1554.088955 +1554.182229 +1554.283161 +1554.285525 +1554.287090 +1554.287357 +1554.289188 +1554.386591 +1554.387490 +1554.389421 +1554.482395 +1554.484659 +1554.487123 +1554.584126 +1554.685025 +1554.688755 +1554.881728 +1554.885058 +1554.980163 +1554.983460 +1554.983826 +1555.379996 +1555.383326 +1555.479563 +1555.483193 +1555.485424 +1555.580862 +1555.583326 +1555.589320 +1555.681661 +1555.683093 +1555.686057 +1555.782693 +1555.784158 +1555.884724 +1555.979962 +1555.981494 +1555.983093 +1555.985357 +1561.652684 +1562.170965 +1562.278458 +1562.535267 +1562.574228 +1562.578124 +1562.590112 +1562.629873 +1562.648454 +1562.730905 +1562.775360 +1562.801701 +1562.885150 +1562.959276 +1563.003099 +1563.046089 +1563.074428 +1563.124711 +1563.128440 +1563.170831 +1563.184351 +1563.187215 +1563.228806 +1563.258610 +1563.291677 +1563.383685 +1563.399469 +1563.426175 +1563.443658 +1563.471863 +1563.499968 +1563.546721 +1563.556112 +1563.695939 +1563.721580 +1563.733768 +1563.751250 +1563.792076 +1563.839428 +1563.883451 +1563.917450 +1563.982951 +1564.051516 +1564.066201 +1564.078756 +1564.109991 +1564.132901 +1564.143524 +1564.160873 +1564.176424 +1564.189278 +1564.262005 +1564.280320 +1564.282019 +1564.333034 +1564.374093 +1564.408192 +1564.423044 +1564.450816 +1564.452148 +1564.581186 +1564.695205 +1564.711522 +1564.980187 +1564.992874 +1565.009058 +1565.039161 +1565.054346 +1565.097835 +1565.098668 +1565.109224 +1565.169630 +1565.173526 +1565.181652 +1565.194705 +1565.225108 +1565.238994 +1565.303030 +1565.318182 +1565.319081 +1565.332034 +1565.378654 +1565.379254 +1565.395038 +1565.452181 +1565.498901 +1565.546386 +1565.575657 +1565.608125 +1565.609323 +1565.891208 +1565.959373 +1565.974824 +1571.575052 +1571.586607 +1573.277881 +1573.531627 +1574.157833 +1575.585337 +1575.591431 +1575.599590 +1575.980375 +1576.365223 +1582.781800 +1583.244371 +1583.254427 +1583.261221 +1583.268147 +1583.624191 +1583.630617 +1584.458256 +1584.706341 +1585.956589 +1586.081631 +1586.082430 +1586.281597 +1586.383628 +1586.384294 +1586.484561 +1586.583761 +1586.585393 +1586.684194 +1586.785027 +1586.785459 +1586.786359 +1586.882562 +1586.982795 +1586.984360 +1586.988689 +1587.082196 +1587.082729 +1587.084560 +1587.184693 +1587.385426 +1587.479232 +1587.583028 +1587.682561 +1587.685558 +1587.686391 +1587.687790 +1587.688023 +1587.782561 +1587.783061 +1587.885059 +1587.885725 +1588.082328 +1588.083693 +1588.088189 +1588.285092 +1588.285924 +1588.290486 +1588.382794 +1588.385225 +1588.385991 +1588.481628 +1588.486523 +1588.580662 +1588.585524 +1588.589254 +1588.683293 +1588.685358 +1588.687822 +1588.882793 +1588.888787 +1588.980962 +1588.982360 +1588.986390 +1588.987755 +1589.086456 +1589.184891 +1589.282726 +1589.385290 +1589.386123 +1589.389220 +1589.483226 +1589.487055 +1589.583359 +1589.585024 +1589.592949 +1589.686389 +1589.687122 +1589.779129 +1589.785889 +1589.792583 +1589.881860 +1589.884957 +1589.987088 +1589.988686 +1589.990085 +1590.086555 +1590.184424 +1590.185190 +1590.185523 +1590.188520 +1590.189052 +1590.283624 +1590.387853 +1590.581526 +1590.582325 +1590.585089 +1590.586821 +1590.586987 +1590.588086 +1590.682725 +1590.685555 +1590.780460 +1590.784956 +1590.786454 +1590.882125 +1590.885722 +1590.886155 +1590.888452 +1595.516486 +1597.316751 +1597.505296 +1597.544689 +1597.571329 +1597.610457 +1597.633334 +1597.668133 +1597.672129 +1597.810224 +1597.830503 +1597.881119 +1597.923610 +1597.947020 +1597.989045 +1598.002298 +1598.024409 +1598.074459 +1598.136763 +1598.206793 +1598.306294 +1598.320879 +1598.345355 +1598.360939 +1598.417716 +1598.436264 +1598.448085 +1598.505528 +1598.549817 +1598.574126 +1598.587845 +1598.616949 +1598.704595 +1598.706826 +1598.812254 +1598.822510 +1598.860472 +1598.903329 +1598.945554 +1598.983083 +1599.038994 +1599.075590 +1599.132567 +1599.160805 +1599.234631 +1599.236030 +1599.276190 +1599.307059 +1599.317115 +1599.328903 +1599.344221 +1599.401298 +1599.560971 +1599.574591 +1599.590708 +1599.634331 +1599.741124 +1600.028736 +1600.336828 +1600.496035 +1600.685412 +1600.733198 +1600.971592 +1609.044711 +1609.048474 +1615.595654 +1616.710638 +1621.279098 +1621.479531 +1621.682028 +1621.981661 +1622.281228 +1622.282061 +1622.583059 +1622.779729 +1630.337164 +1630.745855 +1630.801732 +1630.913854 +1630.952315 +1631.159841 +1631.281652 +1631.298269 +1631.376923 +1631.411589 +1631.619314 +1631.678388 +1631.687812 +1631.725941 +1631.757376 +1631.794172 +1631.862104 +1631.878688 +1632.006660 +1632.007359 +1632.145854 +1632.170596 +1632.181684 +1632.228671 +1632.292440 +1632.298867 +1632.313286 +1632.378388 +1632.385580 +1632.459440 +1632.510489 +1632.568497 +1632.735430 +1632.813019 +1632.827804 +1632.840758 +1632.880185 +1632.908457 +1632.914518 +1632.920711 +1632.952846 +1632.965966 +1633.023941 +1633.068197 +1633.075823 +1633.093472 +1633.141757 +1633.206559 +1633.215017 +1633.242056 +1633.242889 +1633.255876 +1633.364301 +1633.410521 +1633.429402 +1633.445952 +1633.496868 +1633.498033 +1633.508956 +1633.535796 +1633.551813 +1633.615849 +1633.730068 +1633.828902 +1633.859105 +1633.895236 +1633.908256 +1633.960237 +1634.059971 +1634.133364 +1634.135495 +1634.150913 +1634.165965 +1634.222308 +1634.232798 +1634.297500 +1634.311619 +1634.412418 +1634.476454 +1634.478818 +1634.479584 +1634.532864 +1634.669494 +1634.685844 +1634.704093 +1634.770460 +1634.785178 +1634.799497 +1634.827170 +1634.829367 +1634.857872 +1634.987576 +1635.001395 +1635.002627 +1635.003027 +1635.031099 +1635.090906 +1635.165897 +1635.220942 +1635.251145 +1635.283480 +1635.285278 +1635.313283 +1635.316080 +1635.376054 +1635.376919 +1635.406323 +1635.436227 +1635.437059 +1635.450213 +1635.450812 +1635.456906 +1635.581082 +1635.591438 +1635.637059 +1635.639756 +1635.695001 +1635.743519 +1635.766996 +1635.773223 +1635.776253 +1635.791404 +1635.806256 +1635.807522 +1635.855440 +1635.902693 +1643.226862 +1645.421931 +1651.298881 +1651.308472 +1651.917429 +1651.954225 +1652.005241 +1652.761517 +1656.179995 +1656.380262 +1656.479929 +1656.882392 +1656.882892 +1656.978430 +1656.978896 +1657.080394 +1657.080860 +1657.183990 +1657.280993 +1657.480360 +1657.579361 +1657.683424 +1657.878362 +1657.878828 +1657.883690 +1657.886820 +1658.179261 +1658.378894 +1658.678894 +1658.781625 +1659.079526 +1659.180459 +1659.181891 +1659.288684 +1659.380991 +1659.480392 +1659.481091 +1659.780858 +1659.785586 +1659.979692 +1660.182589 +1660.380591 +1660.382788 +1660.579558 +1660.583388 +1660.887250 +1664.650150 +1664.721812 +1664.743823 +1665.391441 +1665.806226 +1666.054678 +1666.162203 +1666.276622 +1666.379086 +1666.445253 +1666.459306 +1666.530501 +1666.638360 +1666.688776 +1666.843854 +1666.865433 +1666.907424 +1666.909655 +1666.930368 +1667.016382 +1667.068862 +1667.204293 +1667.221043 +1667.252046 +1667.341723 +1667.348383 +1667.420910 +1667.511220 +1667.525039 +1667.605459 +1667.645319 +1667.791439 +1667.851479 +1667.868395 +1667.949681 +1667.964899 +1667.967796 +1668.046251 +1668.101529 +1668.144919 +1668.161902 +1668.179118 +1668.194635 +1668.209687 +1668.248581 +1668.272458 +1668.296833 +1668.297233 +1668.364465 +1668.377353 +1668.447216 +1668.502361 +1668.539557 +1668.553177 +1668.598798 +1668.627069 +1668.657406 +1668.680982 +1668.704059 +1668.720942 +1668.790472 +1668.832397 +1668.856972 +1668.903126 +1668.931265 +1668.950912 +1668.956273 +1668.969193 +1668.983279 +1669.022041 +1669.022374 +1669.034162 +1669.048947 +1669.080715 +1669.094435 +1669.124272 +1669.125304 +1669.153342 +1669.153809 +1669.196599 +1669.239789 +1669.264798 +1669.279583 +1669.297298 +1669.312383 +1669.385277 +1669.391870 +1669.423738 +1669.424271 +1669.539689 +1669.541088 +1669.562932 +1669.580548 +1669.666562 +1669.668227 +1669.682746 +1669.742020 +1669.754341 +1669.781780 +1669.811950 +1669.825969 +1669.841587 +1669.872922 +1669.932130 +1669.947414 +1669.976185 +1670.023638 +1670.037857 +1670.039689 +1670.054507 +1670.127601 +1670.214647 +1670.230264 +1670.245849 +1670.275652 +1670.323571 +1670.337590 +1670.370058 +1670.378316 +1670.386108 +1670.443884 +1670.519009 +1670.538256 +1670.561067 +1670.578749 +1670.579615 +1670.696598 +1670.697164 +1670.701260 +1670.761100 +1670.774420 +1670.807453 +1670.809451 +1670.852508 +1670.943217 +1679.922296 +1690.101540 +1691.178928 +1691.181193 +1691.183890 +1691.379394 +1691.479128 +1691.479427 +1691.480992 +1691.579627 +1692.181258 +1692.281191 +1692.678061 +1693.481224 +1693.679325 +1693.979292 +1694.081523 +1694.379325 +1694.480590 +1694.682355 +1695.180523 +1695.779789 +1698.441791 +1702.428101 +1703.053175 +1703.136525 +1703.234227 +1703.311184 +1703.389139 +1703.574420 +1703.757304 +1703.817843 +1703.891270 +1703.953441 +1703.997630 +1704.035792 +1704.085609 +1704.105755 +1704.186774 +1704.190770 +1704.231130 +1704.342185 +1704.368259 +1704.509418 +1704.787906 +1704.804256 +1704.962964 +1705.480046 +1705.493366 +1705.507285 +1705.592500 +1705.637155 +1705.705254 +1705.751408 +1705.809849 +1705.825001 +1705.841584 +1705.870389 +1705.915177 +1709.027062 +1709.077345 +1711.363490 +1711.473780 +1711.522231 +1711.555065 +1718.074606 +1718.209804 +1726.280625 +1735.107489 +1735.109720 +1736.122373 +1736.187042 +1736.487707 +1736.626435 +1736.707854 +1736.945383 +1737.063864 +1737.830863 +1738.072321 +1738.334925 +1738.538921 +1738.794831 +1738.856203 +1739.137755 +1739.243049 +1739.341018 +1739.374451 +1739.399226 +1739.620538 +1739.666792 +1739.734591 +1739.806452 +1739.900125 +1740.004487 +1740.035090 +1740.036289 +1740.037787 +1740.201323 +1740.211413 +1740.240351 +1740.254237 +1740.458133 +1740.487104 +1740.494663 +1740.519272 +1740.535389 +1740.576281 +1740.608949 +1740.641017 +1740.644646 +1740.685072 +1740.690400 +1740.702555 +1740.702921 +1740.707583 +1740.718639 +1740.733757 +1740.751206 +1740.765126 +1740.823734 +1740.824167 +1740.867523 +1740.894296 +1740.942715 +1740.957966 +1740.960097 +1749.591124 +1749.655560 +1750.916631 +1750.920061 +1758.014359 +1758.229910 +1758.275598 +1759.208264 +1761.178692 +1761.380057 +1761.383986 +1761.480689 +1761.680356 +1764.682618 +1765.083516 +1771.172521 +1771.578648 +1771.862497 +1771.961931 +1771.978215 +1773.726898 +1773.979478 +1774.066957 +1774.215342 +1774.294163 +1774.393264 +1774.393797 +1774.463027 +1774.568722 +1774.675481 +1774.676081 +1774.701322 +1774.735222 +1774.770719 +1774.797060 +1774.836287 +1774.857000 +1774.948375 +1774.959331 +1774.978411 +1775.035521 +1775.037053 +1775.050173 +1775.052304 +1775.067988 +1775.143779 +1775.221268 +1775.275015 +1775.309114 +1775.313676 +1775.437219 +1775.437585 +1775.484738 +1775.554735 +1775.569153 +1775.623499 +1775.625364 +1775.662360 +1775.705817 +1775.706216 +1775.719203 +1775.735887 +1775.812177 +1775.814808 +1775.878377 +1775.905850 +1775.906949 +1784.215299 +1784.223424 +1784.279201 +1784.393653 +1785.605907 +1786.952925 +1786.958153 +1786.962382 +1786.968676 +1789.640235 +1789.643965 +1789.928946 +1796.281387 +1796.282086 +1796.282952 +1796.285650 +1796.382186 +1796.382619 +1797.581153 +1798.080753 +1802.501161 +1802.506722 +1806.286572 +1806.389036 +1806.462829 +1806.471387 +1806.916142 +1808.515774 +1809.383505 +1809.556699 +1809.749039 +1809.777244 +1809.973848 +1809.987967 +1810.032356 +1810.291430 +1810.374680 +1810.378709 +1810.582871 +1810.615605 +1810.629425 +1810.778109 +1817.358655 +1822.814561 +1825.678261 +1825.753985 +1826.540498 +1826.581157 +1826.653185 +1826.657814 +1826.900504 +1826.914390 +1828.163207 +1828.178292 +1828.214289 +1828.382121 +1829.092110 +1830.735066 +1830.754113 +1830.762538 +1830.817317 +1830.821146 +1831.082018 +1831.082351 +1831.185615 +1831.284083 +1831.381885 +1833.082416 +1835.782313 +1839.531460 +1842.136553 +1842.244811 +1842.448640 +1842.795593 +1842.829492 +1842.880841 +1843.046109 +1843.090997 +1843.134953 +1843.159895 +1843.242945 +1843.255599 +1843.333888 +1843.444077 +1843.498656 +1843.552169 +1843.635352 +1843.825928 +1843.840247 +1843.865655 +1843.886101 +1843.942645 +1843.961992 +1844.254732 +1844.256131 +1844.256797 +1844.342378 +1844.405615 +1844.462558 +1844.478742 +1844.493893 +1844.494492 +1844.508712 +1844.540580 +1844.558162 +1844.644975 +1844.646340 +1844.663190 +1844.752834 +1844.849870 +1844.888931 +1844.919700 +1844.982004 +1845.079340 +1845.091328 +1845.092927 +1845.124695 +1845.142877 +1845.201551 +1845.275644 +1845.308611 +1845.309676 +1845.310276 +1845.323396 +1845.384502 +1845.414671 +1845.435750 +1845.586766 +1845.603749 +1845.634085 +1845.660026 +1845.664055 +1845.718467 +1845.832054 +1845.873379 +1845.875377 +1845.905480 +1845.924061 +1845.938114 +1845.938980 +1845.952866 +1854.498911 +1855.412297 +1855.422254 +1855.461015 +1855.479596 +1855.493149 +1856.538103 +1857.547260 +1858.914391 +1858.921418 +1859.189916 +1859.200871 +1866.181783 +1867.581149 +1867.881815 +1869.179250 +1869.480615 +1870.383078 +1870.882245 +1875.213443 +1875.742080 +1876.064158 +1876.285936 +1876.298823 +1876.304784 +1876.488766 +1876.540548 +1876.602685 +1876.626395 +1876.759861 +1876.916438 +1876.981739 +1877.030757 +1877.110777 +1877.196491 +1877.197790 +1877.211909 +1877.219768 +1877.251469 +1877.255132 +1877.307680 +1877.336351 +1877.365888 +1877.618802 +1877.671116 +1877.672115 +1877.687067 +1877.714206 +1877.772748 +1877.795891 +1877.844109 +1877.853966 +1878.022131 +1878.035052 +1878.051435 +1878.120366 +1878.133087 +1878.133819 +1878.159127 +1878.204715 +1878.217469 +1878.234885 +1878.416170 +1878.429657 +1878.460359 +1878.491695 +1878.538148 +1878.647805 +1878.674645 +1878.675311 +1878.683935 +1878.704382 +1878.761092 +1878.761824 +1878.762757 +1878.790729 +1878.804948 +1878.820166 +1878.921864 +1878.940545 +1879.192859 +1879.451001 +1879.656995 +1879.722229 +1879.953232 +1879.985832 +1880.013405 +1880.267917 +1880.340777 +1880.541942 +1880.614370 +1880.886764 +1880.918166 +1880.918732 +1880.934283 +1880.934716 +1892.132507 +1893.123681 +1901.078818 +1901.382214 +1901.682947 +1901.979750 +1902.180382 +1902.181548 +1902.581581 +1902.879749 +1902.981514 +1902.982046 +1903.083278 +1903.381780 +1903.582012 +1903.781613 +1903.783677 +1903.784410 +1903.787307 +1904.781445 +1904.787206 +1904.788338 +1904.882011 +1904.883610 +1904.982444 +1904.984875 +1905.083909 +1905.281611 +1905.281977 +1905.282610 +1905.284375 +1905.381112 +1905.687638 +1905.780445 +1905.788770 +1908.142847 +1908.157499 +1908.217006 +1908.222401 +1908.405218 +1909.524298 +1909.589899 +1909.593428 +1909.752169 +1909.883205 +1910.188000 +1910.268386 +1911.408578 +1911.451402 +1911.735218 +1911.832920 +1911.912041 +1912.254498 +1912.447605 +1912.581937 +1912.597355 +1912.611740 +1912.625860 +1912.685566 +1912.820332 +1912.901450 +1912.914670 +1913.035749 +1913.064054 +1913.092526 +1913.156928 +1913.387497 +1913.443508 +1913.511040 +1913.592259 +1913.689295 +1913.718399 +1913.779705 +1913.867883 +1913.929222 +1913.946371 +1913.947703 +1913.975842 +1913.978073 +1914.000683 +1914.003780 +1914.029188 +1914.047636 +1914.074043 +1914.116667 +1914.171879 +1914.201516 +1914.231352 +1914.277972 +1914.334716 +1914.347836 +1914.438245 +1914.444472 +1914.612238 +1914.643373 +1914.708142 +1914.748402 +1914.778338 +1914.884166 +1914.930586 +1914.969813 +1915.064219 +1915.077639 +1915.093523 +1915.196819 +1915.289993 +1915.337612 +1915.381401 +1915.527322 +1915.659922 +1915.689992 +1915.735247 +1915.861887 +1915.906942 +1915.953196 +1915.971744 +1923.576165 +1923.584323 +1923.587853 +1923.594247 +1923.604270 +1925.154552 +1925.161478 +1925.166240 +1925.173433 +1925.180859 +1925.189450 +1925.199573 +1925.390848 +1925.404934 +1925.682656 +1925.691348 +1925.745127 +1926.893078 +1926.938899 +1929.315420 +1929.361940 +1929.370265 +1929.378457 +1929.466202 +1929.481687 +1929.623678 +1932.268897 +1932.306592 +1932.312453 +1932.372993 +1932.379886 +1932.393872 +1932.412753 +1936.279682 +1936.281680 +1936.479415 +1936.781646 +1936.881480 +1936.981646 +1937.181579 +1937.481313 +1937.880679 +1938.178714 +1938.281745 +1939.581310 +1939.581910 +1939.679545 +1940.081410 +1940.086405 +1945.720498 +1945.729123 +1945.768983 +1946.768782 +1946.977873 +1947.247936 +1947.553597 +1947.772378 +1947.777839 +1947.939444 +1948.058092 +1948.255461 +1948.325258 +1948.347602 +1948.445304 +1948.471145 +1948.526523 +1948.669979 +1948.846403 +1948.908208 +1948.995454 +1949.063885 +1949.221727 +1949.223092 +1949.238710 +1949.253262 +1949.282033 +1949.306842 +1949.339742 +1949.399582 +1949.539909 +1949.652995 +1949.666815 +1949.681933 +1949.725390 +1949.741041 +1949.742472 +1949.848933 +1949.891157 +1949.893155 +1950.009305 +1950.068812 +1950.147334 +1950.188826 +1950.203877 +1950.235346 +1950.409039 +1950.500414 +1950.505509 +1950.543004 +1950.553860 +1950.580067 +1950.618862 +1950.634513 +1950.711403 +1950.787460 +1950.790823 +1950.800147 +1950.800680 +1950.814366 +1950.876670 +1950.912701 +1950.938675 +1951.269211 +1951.343770 +1952.175570 +1972.201624 +1973.082010 +1973.381610 +1974.781941 +1975.668520 +1977.246541 +1977.269851 +1980.316534 +1980.371946 +1981.588128 +1981.927888 +1982.093056 +1982.114102 +1982.141807 +1982.155793 +1982.349899 +1982.392690 +1982.443772 +1982.447035 +1982.497551 +1982.606509 +1982.656126 +1982.713702 +1983.013368 +1983.062686 +1983.078070 +1983.158689 +1983.180468 +1983.272276 +1983.282399 +1983.350198 +1983.425656 +1983.475905 +1983.534946 +1983.727387 +1983.812502 +1983.825722 +1983.854426 +1983.857290 +1983.912069 +1983.913767 +1984.100314 +1984.205475 +1984.206141 +1984.236078 +1984.296251 +1984.337210 +1984.354459 +1984.426187 +1984.549764 +1984.554359 +1984.870143 +1984.974205 +1984.988458 +1985.005707 +1985.056290 +1985.073273 +1985.121691 +1985.158787 +1985.159653 +1985.206506 +1985.234778 +1985.292387 +1985.413765 +1985.420858 +1985.430415 +1985.473306 +1985.506006 +1985.523056 +1985.692586 +1985.694584 +1985.756656 +1985.858687 +1985.859686 +1985.864281 +1985.888224 +1985.905007 +1985.916862 +1986.585692 +1986.616428 +1986.660384 +1991.462044 +1991.727612 +1991.782157 +1991.790283 +1992.905699 +1994.226011 +1994.234802 +1994.238099 +1994.246624 +1994.385851 +2000.545585 +2000.589441 +2000.636461 +2000.674223 +2000.691273 +2001.737858 +2001.774921 +2006.081044 +2006.081810 +2006.284474 +2006.385007 +2006.481377 +2006.485073 +2006.587770 +2006.783608 +2007.581975 +2007.886637 +2008.280842 +2009.080309 +2010.179841 +2010.287500 +2010.982305 +2011.555930 +2013.846671 +2013.847004 +2013.956727 +2015.111305 +2015.244272 +2015.283299 +2018.548098 +2018.689390 +2018.726419 +2018.730915 +2018.741038 +2018.925820 +2019.146332 +2019.180698 +2019.181997 +2019.207738 +2019.237408 +2019.257688 +2019.315163 +2019.321957 +2019.384461 +2019.497714 +2019.588223 +2019.591820 +2019.605806 +2019.606772 +2019.678533 +2019.758919 +2019.865579 +2019.956355 +2019.995083 +2020.129648 +2020.162848 +2020.163881 +2020.254923 +2020.313631 +2020.345699 +2020.381729 +2020.402275 +2020.420624 +2020.501609 +2020.516594 +2020.518759 +2020.549828 +2020.559751 +2020.619058 +2020.637939 +2020.649794 +2020.668542 +2020.683960 +2020.754722 +2023.197644 +2031.348352 +2032.882982 +2033.186012 +2041.081842 +2043.184104 +2043.185669 +2043.481040 +2043.982105 +2044.281705 +2046.217767 +2046.441277 +2046.487397 +2052.062683 +2052.740804 +2053.614097 +2053.639372 +2053.843667 +2053.873937 +2053.934410 +2053.967243 +2053.994050 +2054.065079 +2054.089354 +2054.106537 +2054.115661 +2054.146198 +2054.160517 +2054.202375 +2054.276434 +2054.329348 +2054.354889 +2054.410466 +2054.460816 +2054.500876 +2054.531445 +2054.560183 +2054.562181 +2054.630979 +2054.639903 +2054.641302 +2054.665877 +2054.705238 +2054.790852 +2054.838838 +2054.907769 +2054.988554 +2055.018225 +2055.044965 +2055.074935 +2055.090086 +2055.101674 +2055.292417 +2055.318857 +2055.348760 +2055.349393 +2055.540935 +2055.599643 +2055.610132 +2055.628580 +2055.641534 +2055.656919 +2055.686056 +2055.701208 +2055.758517 +2055.928414 +2059.317255 +2062.384318 +2062.399569 +2063.481786 +2063.490777 +2063.496105 +2063.608093 +2063.656844 +2063.663604 +2064.554446 +2065.711954 +2065.834264 +2065.934464 +2066.414817 +2076.180308 +2076.285569 +2076.382273 +2076.385503 +2076.483405 +2076.784170 +2076.785003 +2077.981339 +2078.583269 +2078.583802 +2078.585167 +2078.888031 +2078.891594 +2078.985034 +2079.485999 +2080.183068 +2083.067481 +2084.604242 +2084.620027 +2085.873239 +2085.879532 +2085.907604 +2086.340571 +2086.381563 +2086.395016 +2086.496015 +2086.558286 +2086.575003 +2086.630447 +2086.694284 +2086.701143 +2086.745532 +2086.798579 +2086.879964 +2087.011366 +2087.025718 +2087.050893 +2087.054323 +2087.066777 +2087.117160 +2087.184593 +2087.192918 +2087.211366 +2087.240737 +2087.294516 +2087.297713 +2087.322954 +2087.354623 +2087.391286 +2087.402974 +2087.417493 +2087.444899 +2087.485958 +2087.488921 +2087.546431 +2087.602375 +2087.637007 +2087.646664 +2087.664779 +2087.700310 +2087.769008 +2087.905604 +2087.941835 +2087.943700 +2087.976500 +2088.007602 +2088.023853 +2088.036940 +2088.222620 +2088.229447 +2088.285691 +2088.338371 +2088.340602 +2088.342534 +2088.345864 +2088.391085 +2088.431411 +2088.492550 +2089.223452 +2089.277631 +2089.574234 +2089.586722 +2089.702905 +2089.759748 +2089.929978 +2089.984823 +2090.168140 +2090.198542 +2090.309398 +2090.370404 +2090.639734 +2090.744729 +2090.760014 +2090.777696 +2090.807833 +2090.809131 +2090.852288 +2090.867406 +2090.872235 +2090.882191 +2090.886321 +2090.896244 +2090.915192 +2090.947360 +2091.870236 +2094.577792 +2095.819216 +2100.163867 +2102.874454 +2104.101992 +2104.250243 +2104.253973 +2105.448144 +2105.455437 +2105.641284 +2107.974049 +2108.112910 +2109.113375 +2113.382968 +2113.482502 +2113.681736 +2113.683234 +2113.781170 +2114.880769 +2115.983432 +2120.900510 +2123.475665 +2123.586221 +2123.878029 +2124.549291 +2124.580027 +2124.594812 +2124.656383 +2124.890083 +2125.264741 +2125.341564 +2125.764108 +2129.897271 +2132.166366 +2134.371126 +2135.341954 +2139.189736 +2143.239049 +2146.081504 +2146.278240 +2146.279006 +2146.581170 +2146.781503 +2146.781969 +2146.881536 +2147.682101 +2147.781835 +2148.181601 +2148.281701 +2148.782533 +2150.181067 +2150.281832 +2150.683031 +2154.190187 +2156.255086 +2156.293515 +2156.621886 +2156.666908 +2156.681127 +2156.784390 +2156.865842 +2157.021286 +2157.069871 +2157.153154 +2157.213494 +2157.238835 +2157.257783 +2157.358515 +2157.496677 +2157.623084 +2157.642498 +2157.680560 +2157.720586 +2157.818954 +2157.892647 +2157.908365 +2157.920419 +2157.977296 +2158.031209 +2158.095711 +2158.196876 +2158.212294 +2158.266706 +2158.291282 +2158.349024 +2158.521651 +2158.539866 +2158.564941 +2158.579393 +2158.721717 +2158.826413 +2158.827245 +2158.856083 +2158.896176 +2158.896742 +2158.909563 +2158.910662 +2158.925047 +2158.941331 +2158.952220 +2158.965973 +2158.996476 +2159.001737 +2159.012826 +2159.013559 +2159.025313 +2159.050855 +2159.068936 +2159.199839 +2159.200338 +2159.200904 +2159.228410 +2159.258613 +2159.282989 +2159.298440 +2159.420584 +2159.421817 +2159.449888 +2159.512492 +2159.527045 +2159.586052 +2159.607864 +2159.682655 +2159.729209 +2159.758213 +2159.801603 +2159.811793 +2159.828643 +2159.878426 +2159.922982 +2159.926411 +2159.937201 +2159.952485 +2159.965239 +2159.998240 +2160.024413 +2160.025945 +2160.053551 +2160.099005 +2160.129575 +2160.176894 +2160.187084 +2160.201469 +2160.203634 +2160.230374 +2160.235635 +2160.344127 +2160.364739 +2160.389182 +2160.450287 +2160.487017 +2160.487317 +2160.515355 +2160.516654 +2160.658345 +2160.779824 +2160.875595 +2164.397536 +2164.420313 +2164.431535 +2165.267032 +2165.301997 +2165.306593 +2165.313552 +2166.313818 +2166.330368 +2166.397001 +2166.736994 +2166.745519 +2166.757540 +2172.377681 +2172.390135 +2172.397028 +2174.759197 +2175.889133 +2175.900988 +2177.759461 +2177.766121 +2177.926427 +2182.578304 +2183.180268 +2183.678402 +2183.980966 +2184.480233 +2185.081631 +2185.280865 +2185.712799 +2187.259285 +2187.288189 +2191.156317 +2191.274632 +2191.382890 +2191.594845 +2191.817122 +2191.831608 +2191.902370 +2191.991015 +2192.032340 +2192.102869 +2192.158880 +2192.168970 +2192.214891 +2192.342729 +2192.427378 +2192.476629 +2192.627544 +2192.842696 +2192.904467 +2192.961310 +2192.986518 +2193.025479 +2193.264074 +2193.322049 +2193.337534 +2193.346724 +2193.356082 +2193.430441 +2193.507630 +2193.971732 +2193.986451 +2194.046457 +2194.067370 +2194.100636 +2194.116520 +2194.179491 +2194.354349 +2194.430872 +2194.486117 +2194.543859 +2194.545491 +2194.562241 +2194.746923 +2194.778391 +2194.796706 +2194.855148 +2194.913722 +2195.066836 +2195.067136 +2195.068234 +2195.100269 +2195.112457 +2195.154948 +2195.155381 +2195.167868 +2195.168334 +2195.168634 +2195.216886 +2195.300902 +2195.329673 +2195.369000 +2195.515720 +2195.516952 +2195.676859 +2195.693342 +2195.708560 +2195.740462 +2195.780721 +2195.842593 +2195.894041 +2195.894407 +2195.898936 +2195.926875 +2195.941527 +2197.921945 +2197.957509 +2199.082483 +2201.715680 +2201.715880 +2201.716113 +2209.886002 +2210.874612 +2212.346306 +2217.011236 +2217.012568 +2217.219328 +2217.307306 +2217.412301 +2217.415898 +2217.510736 +2217.512068 +2217.512434 +2217.512801 +2217.607972 +2217.609404 +2217.810802 +2218.014598 +2218.210735 +2218.211102 +2218.214831 +2218.214965 +2218.215597 +2218.610668 +2218.611401 +2218.614931 +2218.812200 +2219.109736 +2219.208137 +2219.311134 +2219.512865 +2219.610634 +2219.613664 +2219.711733 +2220.107936 +2220.211100 +2220.411299 +2220.612331 +2221.308435 +2221.311665 +2226.399705 +2226.766871 +2226.841196 +2226.923714 +2226.944959 +2227.027743 +2227.054749 +2227.095508 +2227.161376 +2227.182288 +2227.219085 +2227.258612 +2227.335035 +2227.408795 +2227.448755 +2227.471832 +2227.474030 +2227.487949 +2227.540563 +2227.562608 +2227.598705 +2227.690080 +2227.705964 +2227.762707 +2227.802401 +2227.844692 +2227.864206 +2227.876393 +2227.908694 +2227.935334 +2227.949653 +2227.986583 +2228.019217 +2228.054315 +2228.068368 +2228.069434 +2228.105697 +2228.126443 +2228.148688 +2228.186217 +2228.188481 +2228.189280 +2228.201401 +2228.214189 +2228.238131 +2228.311391 +2228.324412 +2228.336866 +2228.362906 +2228.373229 +2228.386250 +2228.398637 +2228.426243 +2228.464804 +2228.477825 +2228.479290 +2228.483419 +2228.530672 +2228.562773 +2228.575927 +2228.604898 +2228.660109 +2228.674062 +2228.686416 +2228.689513 +2228.739097 +2228.741328 +2228.742393 +2228.778657 +2228.832037 +2228.845956 +2228.861674 +2228.871664 +2228.898537 +2228.923012 +2229.001101 +2229.022380 +2229.061041 +2229.076825 +2229.102533 +2229.132536 +2229.158044 +2229.161540 +2229.200401 +2229.216385 +2229.229772 +2229.230538 +2229.259709 +2229.272662 +2229.339096 +2229.339562 +2229.373129 +2229.374560 +2229.390977 +2229.459509 +2229.474460 +2229.475593 +2229.487714 +2229.557777 +2229.585349 +2229.614387 +2229.630871 +2229.688846 +2229.689512 +2229.702599 +2229.761273 +2229.889545 +2229.900967 +2230.020347 +2230.064603 +2230.145622 +2230.202065 +2230.275958 +2230.314753 +2230.320713 +2230.333534 +2230.626108 +2231.053913 +2231.414319 +2231.458175 +2231.567732 +2232.487844 +2233.357407 +2233.396468 +2233.403194 +2233.409788 +2240.334989 +2240.337253 +2243.949904 +2244.977275 +2245.104182 +2245.110642 +2245.185900 +2245.264122 +2245.272147 +2245.948936 +2245.952499 +2251.086294 +2251.910569 +2251.913665 +2252.016296 +2252.114864 +2252.212067 +2252.214398 +2252.216462 +2252.311201 +2252.411767 +2252.413532 +2252.513299 +2252.514830 +2252.515863 +2252.611067 +2252.614431 +2252.614630 +2252.618160 +2252.712932 +2252.719192 +2252.812965 +2252.814530 +2252.913664 +2252.914464 +2252.916328 +2253.013731 +2253.014397 +2253.014630 +2253.109635 +2253.114463 +2253.115329 +2253.117327 +2253.212332 +2253.318026 +2253.412399 +2253.414630 +2253.511533 +2253.515229 +2253.612132 +2253.717460 +2253.812731 +2253.816028 +2253.816727 +2253.911566 +2253.914563 +2254.016461 +2254.110300 +2254.214529 +2254.215928 +2254.312165 +2254.315261 +2254.513829 +2254.518658 +2254.611032 +2254.614728 +2254.710233 +2254.716926 +2254.810899 +2255.015394 +2255.016093 +2255.113263 +2255.210932 +2255.215327 +2255.311065 +2255.312763 +2255.314661 +2255.413862 +2255.809899 +2255.812496 +2256.216092 +2256.312729 +2256.313927 +2256.410997 +2256.711230 +2256.717024 +2257.035106 +2257.330909 +2257.334173 +2260.966903 +2261.376193 +2262.133069 +2262.161641 +2262.187615 +2262.410625 +2262.414487 +2262.451251 +2262.464970 +2262.512323 +2262.536898 +2262.545157 +2262.628939 +2262.714520 +2262.774127 +2262.826442 +2262.855213 +2262.947421 +2262.979422 +2263.007094 +2263.031570 +2263.070830 +2263.072995 +2263.192109 +2263.268000 +2263.269398 +2263.299169 +2263.404197 +2263.410091 +2263.410690 +2263.464436 +2263.488512 +2263.489012 +2263.490843 +2263.502532 +2263.509591 +2263.528439 +2263.533234 +2263.691276 +2263.704629 +2263.743890 +2263.755745 +2263.773627 +2263.834732 +2263.850250 +2263.900433 +2263.901432 +2263.941093 +2263.977057 +2263.989577 +2264.041625 +2264.042191 +2264.076524 +2264.089744 +2264.144189 +2264.160073 +2264.186147 +2264.187080 +2264.226973 +2264.333800 +2264.372261 +2264.380120 +2264.420546 +2264.736796 +2264.738295 +2264.749683 +2264.793106 +2264.806793 +2264.835597 +2264.849017 +2265.044355 +2265.232067 +2265.348917 +2265.711354 +2266.096801 +2275.799556 +2276.004850 +2276.072516 +2286.263215 +2286.271207 +2286.279465 +2286.513764 +2286.627117 +2286.676035 +2286.680897 +2287.311232 +2287.411565 +2287.511698 +2287.514929 +2287.517326 +2287.918325 +2288.113030 +2288.515027 +2288.515560 +2288.914095 +2289.013295 +2289.518656 +2289.612928 +2289.812495 +2289.815792 +2290.015359 +2290.114560 +2290.215825 +2290.315225 +2290.613427 +2290.618289 +2290.714226 +2290.811895 +2290.816557 +2291.110996 +2291.412460 +2291.412893 +2291.416123 +2291.511595 +2291.511961 +2291.513026 +2291.516723 +2291.610662 +2291.615824 +2295.952915 +2295.985416 +2296.084550 +2296.280488 +2296.471163 +2296.597504 +2296.804596 +2296.817883 +2296.818349 +2296.820813 +2296.924343 +2296.954280 +2296.979521 +2297.040294 +2297.041093 +2297.136897 +2297.163970 +2297.190044 +2297.191043 +2297.214619 +2297.260640 +2297.266933 +2297.309990 +2297.348452 +2297.362937 +2297.401898 +2297.423976 +2297.436197 +2297.454446 +2297.563004 +2297.585415 +2297.594406 +2297.630203 +2297.630503 +2297.643357 +2297.657642 +2297.681518 +2297.693806 +2297.695438 +2297.708425 +2297.739294 +2297.753979 +2297.779753 +2297.790409 +2297.794039 +2297.815085 +2297.865135 +2297.891508 +2297.925674 +2297.949583 +2297.964668 +2297.990443 +2298.000466 +2298.037529 +2298.051148 +2298.055777 +2298.057808 +2298.090875 +2298.116183 +2298.117316 +2298.129537 +2298.141092 +2298.157808 +2298.163469 +2298.190775 +2298.191308 +2298.202430 +2298.228504 +2298.252414 +2298.302630 +2298.314984 +2298.374392 +2298.387911 +2298.388744 +2298.427139 +2298.451614 +2298.479386 +2298.492307 +2298.530169 +2298.548284 +2298.555777 +2298.604594 +2298.608790 +2298.617914 +2298.660372 +2298.695703 +2298.706626 +2298.742157 +2298.755044 +2298.757208 +2298.792939 +2298.818047 +2298.996968 +2299.038160 +2299.076156 +2299.090375 +2299.129336 +2299.130102 +2299.205793 +2299.262036 +2299.587777 +2299.889542 +2300.691705 +2313.070681 +2315.886229 +2321.915294 +2322.315393 +2322.715493 +2322.818290 +2323.113428 +2323.215193 +2323.315759 +2323.616557 +2324.011396 +2324.113327 +2324.212994 +2324.316357 +2324.511795 +2324.713393 +2324.812161 +2324.813359 +2325.216589 +2325.219020 +2325.413259 +2325.613192 +2326.014624 +2326.017188 +2326.211693 +2326.613824 +2332.072193 +2332.160905 +2332.257708 +2332.340625 +2332.368364 +2332.370228 +2332.442156 +2332.463102 +2332.495303 +2332.514584 +2332.549715 +2332.600864 +2332.653811 +2332.713551 +2332.821443 +2332.821643 +2332.946252 +2332.985313 +2332.998000 +2333.133198 +2333.135462 +2333.239991 +2333.271460 +2333.303761 +2333.374190 +2333.383414 +2333.446285 +2333.458972 +2333.460703 +2333.463268 +2333.471926 +2333.511952 +2333.549515 +2333.561869 +2333.586977 +2333.598466 +2333.626038 +2333.626771 +2333.652844 +2333.666564 +2333.717513 +2333.752145 +2333.769694 +2333.794303 +2333.815382 +2333.821309 +2333.851546 +2333.861436 +2333.862135 +2333.875355 +2333.925805 +2333.937093 +2333.952778 +2333.980849 +2333.982048 +2333.991239 +2334.023607 +2334.032564 +2334.038825 +2334.053410 +2334.088275 +2334.106291 +2334.144519 +2334.148482 +2334.156440 +2334.171425 +2334.173190 +2334.224605 +2334.238458 +2334.269327 +2334.307090 +2334.309787 +2334.312917 +2334.338558 +2334.362967 +2334.365931 +2334.378784 +2334.398831 +2334.404992 +2334.431831 +2334.460136 +2334.474122 +2334.489007 +2334.505824 +2334.517046 +2334.517346 +2334.528068 +2334.552044 +2334.579151 +2334.610453 +2334.628102 +2334.684179 +2334.700163 +2334.706989 +2334.747282 +2334.760436 +2334.950545 +2334.986876 +2335.032264 +2335.045983 +2345.329523 +2346.229755 +2346.329089 +2347.044772 +2348.237878 +2348.241175 +2356.911096 +2358.613459 +2359.015357 +2359.311793 +2359.312459 +2360.312958 +2360.817686 +2361.117785 +2361.314422 +2361.412557 +2364.202930 +2366.725272 +2366.825272 +2366.948049 +2367.002328 +2367.571592 +2367.711851 +2367.789407 +2367.898764 +2367.955141 +2367.984012 +2368.215148 +2368.261801 +2368.406156 +2368.426503 +2368.428068 +2368.441288 +2368.640555 +2368.646316 +2368.648714 +2368.662999 +2368.677851 +2368.695300 +2368.701461 +2368.725803 +2368.726536 +2368.753975 +2368.812716 +2368.856339 +2368.886875 +2368.945217 +2368.948414 +2368.963432 +2368.969492 +2368.972023 +2368.987807 +2369.012250 +2369.025636 +2369.039656 +2369.054874 +2369.065929 +2369.105756 +2369.184111 +2369.197797 +2369.213082 +2369.222173 +2369.239056 +2369.265363 +2369.268293 +2369.268726 +2369.294867 +2369.318643 +2369.322139 +2369.334627 +2369.372789 +2369.389206 +2369.415046 +2369.442819 +2369.461633 +2369.473621 +2369.584777 +2369.638456 +2369.655106 +2369.788173 +2369.799628 +2369.814480 +2369.853607 +2369.883677 +2369.887640 +2369.894700 +2369.936291 +2370.108419 +2370.123104 +2370.136058 +2370.136791 +2370.151576 +2370.213647 +2370.326368 +2370.326934 +2370.493067 +2370.648612 +2370.696264 +2371.368724 +2371.553772 +2372.132693 +2372.152373 +2372.163628 +2372.171953 +2372.201524 +2372.207818 +2373.275549 +2373.279145 +2373.283807 +2373.604753 +2374.724898 +2374.729060 +2374.825397 +2378.739113 +2381.406709 +2392.017388 +2392.115323 +2392.713758 +2392.714291 +2392.913558 +2393.115689 +2393.614556 +2393.815788 +2394.913156 +2395.413256 +2395.515886 +2396.315785 +2396.715119 +2398.778953 +2398.873625 +2401.848214 +2402.002526 +2402.198164 +2402.212583 +2402.382479 +2402.468826 +2402.521074 +2402.547481 +2402.674287 +2402.709785 +2402.759302 +2402.930764 +2402.942585 +2403.043018 +2403.047014 +2403.060001 +2403.112549 +2403.150011 +2403.180980 +2403.303258 +2403.312815 +2403.335425 +2403.389704 +2403.418576 +2403.418909 +2403.443351 +2403.486374 +2403.523537 +2403.534060 +2403.534593 +2403.535592 +2403.561999 +2403.624969 +2403.728632 +2403.742784 +2403.758668 +2403.783044 +2403.785442 +2403.892135 +2403.964562 +2403.987839 +2403.988272 +2403.988638 +2404.028665 +2404.084276 +2404.144183 +2404.170756 +2404.174452 +2404.175551 +2404.270256 +2404.298428 +2404.315811 +2404.355671 +2404.379214 +2404.465861 +2404.467925 +2404.509650 +2404.520473 +2404.536323 +2404.568025 +2404.609217 +2404.650576 +2404.722304 +2404.737522 +2404.751142 +2404.768924 +2404.771521 +2404.780812 +2404.782544 +2404.795497 +2404.799427 +2404.811481 +2404.854638 +2404.867026 +2404.900259 +2404.922437 +2404.939120 +2404.997428 +2405.012280 +2405.065693 +2405.067525 +2405.093832 +2405.094931 +2405.167159 +2405.196196 +2405.222603 +2405.242150 +2405.416276 +2405.489869 +2405.490502 +2405.530661 +2405.533525 +2405.547511 +2405.578214 +2405.621237 +2405.707917 +2405.724900 +2405.982509 +2406.042283 +2406.061830 +2406.072952 +2406.119206 +2406.124334 +2406.210214 +2406.241383 +2406.255935 +2406.332625 +2406.346545 +2406.377014 +2406.382775 +2406.411013 +2406.458000 +2406.612878 +2406.703454 +2409.514573 +2409.592129 +2419.712998 +2420.181862 +2420.405538 +2421.225151 +2426.910793 +2426.916654 +2427.315122 +2427.814122 +2428.013123 +2428.411891 +2428.412490 +2429.214121 +2429.617883 +2430.613820 +2430.614286 +2430.819580 +2431.014019 +2431.014352 +2431.117516 +2431.212887 +2431.314518 +2431.314851 +2431.417615 +2431.417815 +2431.516250 +2431.714185 +2431.714418 +2437.169857 +2437.387273 +2437.461232 +2437.472687 +2437.474918 +2437.497329 +2437.552174 +2437.620939 +2437.673886 +2437.693899 +2437.900992 +2437.938088 +2437.952008 +2438.074119 +2438.086706 +2438.086972 +2438.137655 +2438.201624 +2438.213479 +2438.215244 +2438.227532 +2438.254305 +2438.255371 +2438.293799 +2438.343582 +2438.387172 +2438.424501 +2438.425833 +2438.448111 +2438.460532 +2438.546080 +2438.554105 +2438.569156 +2438.620139 +2438.629663 +2438.665760 +2438.700292 +2438.727431 +2438.736722 +2438.742450 +2438.750475 +2438.774817 +2438.778680 +2438.790601 +2438.856569 +2438.896762 +2438.906286 +2438.912047 +2438.918840 +2438.933891 +2438.954238 +2439.027931 +2439.043049 +2439.081477 +2439.121504 +2439.136289 +2439.148543 +2439.212712 +2439.253172 +2439.265459 +2439.278213 +2439.283774 +2439.292233 +2439.306019 +2439.373585 +2439.390534 +2439.390901 +2439.416775 +2439.424201 +2439.487970 +2439.512845 +2439.523501 +2439.571253 +2439.702688 +2439.731926 +2439.787404 +2439.828562 +2439.829195 +2439.903654 +2439.960697 +2440.078013 +2440.135089 +2440.178479 +2440.264959 +2440.326664 +2440.518905 +2440.806983 +2440.836320 +2440.884139 +2440.900856 +2440.915008 +2441.037552 +2441.130060 +2441.130592 +2441.403453 +2441.466556 +2441.578111 +2441.608947 +2441.623732 +2451.513233 +2451.559187 +2456.712462 +2461.814188 +2461.914921 +2461.915620 +2462.413122 +2462.612456 +2462.812722 +2462.912189 +2463.115918 +2463.314120 +2463.412888 +2463.416418 +2463.613087 +2463.817383 +2464.315984 +2464.613819 +2466.114850 +2466.115582 +2466.212818 +2466.414716 +2466.415083 +2466.419245 +2466.518845 +2466.615449 +2469.637257 +2473.138253 +2473.280877 +2473.378912 +2473.419038 +2473.541549 +2473.554736 +2473.645179 +2473.699458 +2473.841549 +2473.850740 +2473.863727 +2473.931026 +2474.162228 +2474.164059 +2474.176780 +2474.361728 +2474.501222 +2474.505085 +2474.829593 +2474.873716 +2474.904218 +2474.917072 +2474.932756 +2474.990599 +2475.007448 +2475.037452 +2475.111244 +2475.127095 +2475.155667 +2475.168587 +2475.273748 +2475.276313 +2475.348274 +2475.348540 +2475.368820 +2475.381374 +2475.409246 +2475.422133 +2475.484704 +2475.546442 +2475.546842 +2475.561993 +2475.562959 +2475.598756 +2475.657664 +2475.688567 +2475.773548 +2476.012842 +2476.028759 +2476.043678 +2476.059395 +2476.074014 +2476.090498 +2476.300521 +2476.373314 +2476.402852 +2476.463291 +2477.455165 +2477.471515 +2477.526160 +2477.539181 +2481.142474 +2485.446366 +2485.456822 +2485.557321 +2489.712562 +2492.866904 +2492.870434 +2494.401468 +2494.406830 +2496.910956 +2496.916917 +2497.017350 +2497.512687 +2497.613153 +2497.614319 +2497.615051 +2497.718348 +2497.814352 +2497.816650 +2497.817282 +2497.818181 +2498.116749 +2498.614817 +2498.616449 +2498.713785 +2498.913518 +2499.114650 +2499.115150 +2499.214550 +2499.313351 +2499.814916 +2500.312818 +2500.313317 +2500.319411 +2500.418012 +2500.613383 +2500.614416 +2500.618279 +2500.814615 +2501.014515 +2501.016080 +2501.113516 +2501.119810 +2501.515214 +2501.614581 +2501.615514 +2501.712683 +2504.140819 +2504.227566 +2506.807816 +2506.861129 +2506.987936 +2507.031093 +2507.056800 +2507.172651 +2507.186570 +2507.255668 +2507.321069 +2507.373750 +2507.489967 +2507.501222 +2507.538052 +2507.551971 +2507.601388 +2507.612477 +2507.653336 +2507.690499 +2507.715108 +2507.767755 +2507.780909 +2507.783107 +2507.806883 +2507.823466 +2507.837918 +2507.890066 +2507.966756 +2508.026996 +2508.043080 +2508.043612 +2508.056699 +2508.060296 +2508.088601 +2508.098058 +2508.132424 +2508.180376 +2508.182407 +2508.187069 +2508.219670 +2508.258497 +2508.270818 +2508.297392 +2508.336120 +2508.350239 +2508.350938 +2508.373382 +2508.385470 +2508.413575 +2508.447009 +2508.447375 +2508.461794 +2508.462160 +2508.476246 +2508.486269 +2508.512243 +2508.513009 +2508.540349 +2508.565124 +2508.589566 +2508.603319 +2508.630991 +2508.686236 +2508.697092 +2508.708747 +2508.712942 +2508.749406 +2508.773116 +2508.799223 +2508.803252 +2508.824964 +2508.842679 +2508.859729 +2508.918637 +2508.992030 +2509.114407 +2509.125962 +2509.137451 +2509.142379 +2509.154068 +2509.194028 +2509.247574 +2509.299422 +2509.361427 +2509.390930 +2509.449339 +2509.568586 +2509.588799 +2509.656598 +2509.675279 +2509.815439 +2509.838649 +2509.868153 +2509.960693 +2509.975146 +2510.355631 +2510.482138 +2510.497889 +2510.528225 +2510.823530 +2510.894359 +2510.984602 +2511.000686 +2511.088964 +2511.131954 +2511.223130 +2511.298754 +2511.343642 +2511.406313 +2511.426426 +2531.912620 +2531.913019 +2531.917748 +2532.013186 +2532.111987 +2532.114085 +2532.117048 +2532.214651 +2532.217315 +2532.219013 +2532.317681 +2532.318247 +2532.414384 +2532.418180 +2532.612519 +2532.812552 +2532.812918 +2532.814816 +2532.914383 +2532.917713 +2532.919279 +2533.013917 +2533.015815 +2533.019045 +2533.020011 +2533.112752 +2533.118579 +2533.213950 +2533.214283 +2533.214916 +2533.313983 +2533.314283 +2533.314883 +2533.414816 +2533.512252 +2533.522075 +2533.615648 +2533.713317 +2533.812518 +2533.813017 +2533.817246 +2533.911818 +2533.912751 +2533.914482 +2533.920743 +2533.921609 +2534.014316 +2534.016713 +2534.117546 +2534.119477 +2534.215181 +2534.216513 +2534.216813 +2534.313017 +2534.315714 +2534.411884 +2534.414715 +2534.415581 +2534.416447 +2534.517146 +2534.517412 +2534.612617 +2534.617246 +2534.618578 +2534.618977 +2534.718344 +2534.812617 +2534.814481 +2534.817445 +2534.818611 +2534.915281 +2534.917145 +2534.917345 +2535.013049 +2535.117012 +2535.119077 +2535.214714 +2535.216179 +2535.319409 +2535.412516 +2535.412882 +2535.512749 +2535.614581 +2535.616179 +2535.616579 +2535.616745 +2535.617245 +2535.716379 +2535.718177 +2535.720608 +2535.816845 +2535.921773 +2536.013881 +2536.016678 +2536.018876 +2536.019742 +2536.111916 +2536.112948 +2536.119675 +2536.214713 +2536.217644 +2536.313115 +2536.313847 +2536.316311 +2536.318509 +2536.414546 +2536.516811 +2536.518775 +2536.611749 +2536.612681 +2536.614513 +2536.616811 +2536.617776 +2536.618842 +2536.619042 +2536.619475 +2536.713014 +2536.713347 +2536.714513 +2536.717710 +2536.721073 +2540.573950 +2540.599591 +2541.708747 +2541.731691 +2541.825264 +2541.881141 +2541.918071 +2542.177478 +2542.217871 +2542.268720 +2542.313741 +2542.338350 +2542.399655 +2542.400788 +2542.539082 +2542.539649 +2542.575413 +2542.607081 +2542.607481 +2542.621300 +2542.640714 +2542.655200 +2542.665789 +2542.676278 +2542.701353 +2542.704617 +2542.737517 +2542.738350 +2542.751270 +2542.778476 +2542.789365 +2542.836252 +2542.840048 +2542.849006 +2542.905782 +2542.908679 +2542.919835 +2542.994593 +2543.000454 +2543.020334 +2543.023597 +2543.024064 +2543.032056 +2543.056764 +2543.107846 +2543.123331 +2543.157996 +2543.159295 +2543.182605 +2543.206681 +2543.222798 +2543.231523 +2543.236384 +2543.245342 +2543.258562 +2543.260960 +2543.284803 +2543.315772 +2543.330524 +2543.338382 +2543.359794 +2543.366088 +2543.371982 +2543.373148 +2543.412608 +2543.414639 +2543.415072 +2543.436917 +2543.448838 +2543.467320 +2543.632122 +2543.643444 +2543.648971 +2543.655631 +2543.657130 +2543.684170 +2543.866387 +2543.921998 +2543.958628 +2543.996390 +2544.009078 +2544.088265 +2544.169917 +2544.256164 +2544.363956 +2544.419833 +2544.446873 +2544.450702 +2544.481871 +2544.544009 +2544.577575 +2544.585234 +2544.692960 +2544.733719 +2545.348637 +2545.408111 +2546.665785 +2555.090552 +2555.107901 +2555.122453 +2555.129013 +2555.163346 +2556.961612 +2558.651221 +2565.147851 +2565.190375 +2566.813184 +2566.917613 +2567.116714 +2567.312118 +2567.515781 +2567.517912 +2567.617546 +2567.618012 +2567.713849 +2568.016346 +2568.416213 +2568.514847 +2568.612217 +2568.614881 +2568.616246 +2568.616879 +2568.617278 +2568.714514 +2568.715546 +2568.915846 +2569.016712 +2569.114214 +2569.219609 +2569.314514 +2570.517210 +2570.914479 +2571.014479 +2571.016510 +2571.111615 +2571.118275 +2571.119707 +2571.216643 +2571.217209 +2571.311947 +2571.316876 +2571.414811 +2571.415510 +2571.513313 +2571.514778 +2571.515477 +2571.617142 +2571.714911 +2573.866324 +2577.617735 +2577.742011 +2577.797888 +2578.017102 +2578.030489 +2578.081338 +2578.152034 +2578.166586 +2578.167518 +2578.168118 +2578.180838 +2578.193326 +2578.194092 +2578.194458 +2578.195990 +2578.208444 +2578.292693 +2578.304182 +2578.330822 +2578.356030 +2578.369783 +2578.395990 +2578.458361 +2578.461158 +2578.473146 +2578.486566 +2578.527458 +2578.555430 +2578.631620 +2578.636416 +2578.646206 +2578.657961 +2578.698220 +2578.712773 +2578.834651 +2578.848936 +2578.856529 +2578.872746 +2578.883701 +2578.909476 +2578.910974 +2578.911207 +2578.936082 +2578.968750 +2579.043608 +2579.057827 +2579.090861 +2579.133318 +2579.156995 +2579.170148 +2579.182069 +2579.197654 +2579.249802 +2579.265786 +2579.276608 +2579.345639 +2579.349435 +2579.389262 +2579.456029 +2579.513538 +2579.524327 +2579.529022 +2579.540977 +2579.555163 +2579.582369 +2579.635615 +2579.691393 +2579.758026 +2579.778572 +2579.784899 +2579.810274 +2579.825126 +2579.839611 +2579.853031 +2580.061156 +2580.073244 +2580.097819 +2580.116401 +2580.129921 +2580.134383 +2580.142774 +2580.156994 +2580.190560 +2580.272911 +2580.293390 +2580.344606 +2580.350134 +2580.382901 +2580.420097 +2580.532651 +2580.565851 +2580.621828 +2580.722061 +2580.763054 +2580.794988 +2580.872511 +2580.881235 +2580.881768 +2580.883600 +2580.969847 +2581.153296 +2581.180802 +2581.182234 +2581.254994 +2583.520027 +2589.943897 +2591.451754 +2594.717985 +2595.712855 +2596.448785 +2597.628172 +2601.812716 +2601.918377 +2602.016512 +2602.313482 +2602.412416 +2602.414014 +2602.614214 +2602.814513 +2603.312681 +2603.815212 +2603.817210 +2603.914346 +2604.513180 +2604.713046 +2604.814811 +2604.918008 +2605.215144 +2605.219406 +2605.315310 +2605.317241 +2606.016475 +2606.314343 +2606.514709 +2606.715275 +2606.717540 +2611.713039 +2611.965154 +2612.054497 +2612.133618 +2612.201850 +2612.214471 +2612.580637 +2612.666651 +2612.830854 +2612.868116 +2612.881103 +2612.908476 +2612.956894 +2612.988662 +2613.057127 +2613.224493 +2613.235515 +2613.239578 +2613.333917 +2613.344639 +2613.356694 +2613.357593 +2613.358426 +2613.437946 +2613.477540 +2613.511439 +2613.638945 +2613.665951 +2613.677506 +2613.678239 +2613.685898 +2613.691892 +2613.695854 +2613.706644 +2613.740476 +2613.796654 +2613.808908 +2613.820863 +2613.825625 +2613.834349 +2613.848335 +2613.861222 +2613.876007 +2613.925658 +2613.955328 +2613.979171 +2613.994356 +2613.997719 +2614.003213 +2614.124059 +2614.217932 +2614.234149 +2614.259890 +2614.300283 +2614.337645 +2614.381135 +2614.495054 +2614.544039 +2614.570213 +2614.596353 +2614.599883 +2614.678537 +2614.693256 +2614.693689 +2614.736146 +2614.738078 +2614.751331 +2614.792357 +2614.820229 +2614.844771 +2614.875174 +2614.888061 +2614.945837 +2615.310971 +2615.313469 +2615.318131 +2615.397451 +2615.407141 +2615.466216 +2615.510405 +2615.523125 +2615.689825 +2615.697318 +2615.707541 +2615.733481 +2615.854993 +2615.866981 +2615.868913 +2615.897251 +2616.023425 +2616.032249 +2616.356058 +2616.600047 +2619.681563 +2619.685126 +2619.867310 +2619.871339 +2619.947696 +2621.079497 +2621.087289 +2621.173369 +2621.252424 +2623.640100 +2623.719021 +2625.069769 +2625.100438 +2635.085677 +2635.461833 +2635.475719 +2636.649711 +2636.815578 +2637.017143 +2637.114879 +2637.117509 +2637.317942 +2637.416910 +2637.421205 +2637.613413 +2637.617043 +2638.013346 +2638.019773 +2638.019973 +2638.113213 +2638.118274 +2638.514178 +2638.520239 +2638.918606 +2639.112979 +2639.213744 +2639.216209 +2639.216941 +2639.316175 +2639.415209 +2639.515809 +2639.716341 +2639.818006 +2639.917806 +2640.215941 +2640.220470 +2640.313077 +2640.314742 +2640.419870 +2640.615508 +2640.818005 +2640.819171 +2641.019703 +2641.117639 +2641.213476 +2641.219636 +2641.415241 +2645.763155 +2646.978205 +2647.077972 +2647.131818 +2647.522894 +2647.623027 +2647.721894 +2647.744339 +2647.793056 +2647.890725 +2647.898351 +2647.918364 +2647.942041 +2647.980469 +2647.982467 +2647.993922 +2648.017465 +2648.021128 +2648.108308 +2648.125157 +2648.134015 +2648.135281 +2648.238411 +2648.305244 +2648.336879 +2648.337545 +2648.375707 +2648.419729 +2648.430252 +2648.521394 +2648.536312 +2648.545770 +2648.551630 +2648.576073 +2648.579602 +2648.604278 +2648.710405 +2648.737711 +2648.745869 +2648.758623 +2648.772409 +2648.810838 +2648.864717 +2648.895786 +2648.903645 +2648.916199 +2648.918497 +2648.996585 +2649.010072 +2649.112802 +2649.113668 +2649.156358 +2649.160155 +2649.187860 +2649.200148 +2649.216931 +2649.281800 +2649.298350 +2649.310171 +2649.312402 +2649.324224 +2649.434913 +2649.516198 +2649.527920 +2649.543671 +2649.603111 +2649.626355 +2649.629152 +2649.654593 +2649.683631 +2649.684896 +2649.714300 +2649.754759 +2649.758922 +2649.771476 +2649.816098 +2649.828286 +2649.829684 +2649.849232 +2649.898083 +2649.899082 +2649.954992 +2649.967114 +2650.037743 +2650.069811 +2650.080300 +2650.164982 +2650.198549 +2650.217962 +2650.344769 +2650.345135 +2650.556990 +2650.701578 +2650.818162 +2650.831748 +2650.865448 +2650.878135 +2650.892953 +2650.923656 +2651.103443 +2651.354791 +2651.533479 +2659.952185 +2659.975628 +2670.416011 +2670.433826 +2670.437223 +2670.442584 +2671.813345 +2671.814011 +2671.919140 +2672.017208 +2672.120538 +2672.316375 +2672.415210 +2672.418307 +2672.618306 +2672.813744 +2672.913744 +2672.915709 +2672.921669 +2673.016241 +2673.018373 +2673.116641 +2673.118006 +2673.320170 +2673.412811 +2673.615575 +2673.615974 +2673.620403 +2673.717306 +2673.719937 +2673.720570 +2673.721935 +2673.814009 +2673.820603 +2673.916307 +2673.922301 +2673.922967 +2674.016041 +2674.017672 +2674.020136 +2674.117606 +2674.118038 +2674.120203 +2674.123000 +2674.215707 +2674.217372 +2674.315541 +2674.315840 +2674.319670 +2674.414508 +2674.419070 +2674.516140 +2674.518238 +2674.520203 +2674.522001 +2674.615141 +2674.616240 +2674.617439 +2674.619703 +2674.715740 +2674.716173 +2674.815440 +2674.818337 +2674.819603 +2674.915640 +2674.919669 +2675.013775 +2675.017471 +2675.019603 +2675.023565 +2675.118837 +2675.119103 +2675.214075 +2675.215107 +2675.215706 +2675.220135 +2675.313675 +2675.314041 +2675.317305 +2675.318104 +2675.416972 +2675.417504 +2675.512975 +2675.513442 +2675.715906 +2675.716771 +2675.717537 +2675.719669 +2675.815306 +2675.914673 +2675.915106 +2675.915639 +2675.916005 +2676.014407 +2676.017237 +2676.019968 +2676.115972 +2676.119535 +2676.217703 +2676.313374 +2676.314207 +2676.315705 +2676.317703 +2676.320267 +2676.324197 +2676.417237 +2676.515405 +2676.614173 +2676.615638 +2676.713407 +2676.716338 +2676.718868 +2680.669714 +2681.935846 +2682.239775 +2682.309605 +2682.382532 +2682.385096 +2682.419362 +2682.479469 +2682.528053 +2682.542506 +2682.613534 +2682.669179 +2682.678436 +2682.680734 +2682.792822 +2682.794620 +2682.819229 +2682.859455 +2682.889425 +2682.928453 +2682.940008 +2682.953194 +2682.954193 +2682.972742 +2682.993587 +2683.016131 +2683.017264 +2683.064749 +2683.088725 +2683.101879 +2683.110970 +2683.140074 +2683.151662 +2683.170144 +2683.170810 +2683.181999 +2683.283664 +2683.297217 +2683.298049 +2683.298382 +2683.311636 +2683.338875 +2683.352894 +2683.367446 +2683.382065 +2683.389757 +2683.429451 +2683.444936 +2683.559188 +2683.597816 +2683.620460 +2683.684596 +2683.701812 +2683.709937 +2683.721292 +2683.799647 +2683.834279 +2683.835178 +2683.854026 +2683.862384 +2683.877369 +2683.881166 +2683.917329 +2683.918228 +2683.918828 +2683.966647 +2683.993686 +2684.020027 +2684.057089 +2684.095384 +2684.149797 +2684.161485 +2684.173506 +2684.186959 +2684.255957 +2684.259287 +2684.282664 +2684.283996 +2684.299247 +2684.326287 +2684.328385 +2684.356756 +2684.369344 +2684.396849 +2684.440572 +2684.441605 +2684.442004 +2684.452327 +2684.485194 +2684.502277 +2684.552460 +2684.568844 +2684.610469 +2684.652094 +2684.692320 +2684.729916 +2684.802377 +2684.815364 +2684.835943 +2684.853592 +2684.864281 +2684.936143 +2684.951228 +2684.967378 +2685.047365 +2685.048730 +2685.133012 +2685.233479 +2685.263615 +2685.277435 +2685.545433 +2685.677334 +2685.944334 +2686.104540 +2686.118226 +2686.126252 +2686.133245 +2686.194750 +2686.196182 +2686.210700 +2686.211766 +2686.227916 +2686.334809 +2686.386058 +2686.436774 +2687.997645 +2688.071937 +2689.115426 +2689.398976 +2689.402405 +2689.410131 +2691.461944 +2691.487318 +2691.746226 +2698.969529 +2699.608955 +2699.616381 +2699.683614 +2699.696135 +2700.060603 +2700.961468 +2700.970026 +2701.035494 +2701.066496 +2701.079950 +2702.055406 +2702.061067 +2702.066262 +2704.725767 +2704.855936 +2706.714210 +2706.818072 +2706.918339 +2707.015908 +2707.219704 +2707.421035 +2707.616373 +2707.620935 +2707.814608 +2707.919903 +2708.019936 +2708.020968 +2708.120402 +2708.218737 +2708.316173 +2708.413442 +2708.416805 +2708.418104 +2708.420468 +2708.514508 +2708.515806 +2708.518504 +2708.519003 +2708.614174 +2708.614674 +2708.617704 +2708.618304 +2708.716272 +2708.815806 +2708.816439 +2708.821201 +2708.919302 +2709.021100 +2709.118803 +2709.119136 +2709.216871 +2709.218137 +2709.218836 +2709.313574 +2709.316305 +2709.418436 +2709.418869 +2709.616771 +2709.717703 +2709.815938 +2709.818069 +2709.918336 +2709.919867 +2710.018402 +2710.020200 +2710.218868 +2710.316271 +2710.418635 +2710.420633 +2710.520067 +2710.614406 +2710.620733 +2710.716703 +2710.815871 +2710.816803 +2710.919700 +2710.920832 +2711.017469 +2711.116669 +2711.314838 +2711.316103 +2711.317801 +2711.414205 +2711.420798 +2711.514238 +2711.614205 +2711.714604 +2711.718267 +2711.721064 +2713.548835 +2713.607176 +2713.650700 +2715.086263 +2715.089992 +2715.097418 +2715.113102 +2716.404443 +2717.087193 +2717.186427 +2717.283197 +2717.531348 +2717.544169 +2717.544768 +2717.593486 +2717.615864 +2717.685827 +2717.686959 +2717.726919 +2717.789190 +2717.855391 +2717.899447 +2717.933479 +2717.960252 +2718.107538 +2718.109836 +2718.211168 +2718.279233 +2718.294817 +2718.309303 +2718.322490 +2718.337608 +2718.375004 +2718.457854 +2718.506839 +2718.507072 +2718.522323 +2718.572972 +2718.588057 +2718.599479 +2718.652193 +2718.706572 +2718.759785 +2718.789223 +2718.829249 +2718.882862 +2718.890887 +2718.893918 +2718.920891 +2718.959852 +2718.973638 +2718.987524 +2719.037407 +2719.047930 +2719.105006 +2719.115063 +2719.131513 +2719.133145 +2719.610967 +2719.690420 +2720.166111 +2720.451525 +2721.427582 +2721.475500 +2721.490519 +2721.491118 +2721.710099 +2724.113726 +2730.850416 +2734.875121 +2734.885643 +2735.007155 +2735.089406 +2735.205823 +2735.221407 +2737.039787 +2739.957067 +2740.002255 +2741.208481 +2741.208847 +2741.212677 +2741.224165 +2741.913508 +2741.917638 +2742.114740 +2742.216805 +2742.218104 +2742.415473 +2742.517071 +2742.617171 +2742.618569 +2742.917304 +2743.018436 +2743.414573 +2743.713940 +2743.715105 +2743.715804 +2743.716237 +2743.814439 +2744.018302 +2744.018601 +2744.118934 +2744.215637 +2744.313906 +2744.613206 +2744.815737 +2744.914105 +2744.918334 +2745.115870 +2745.216302 +2745.418700 +2745.815336 +2745.815935 +2745.818133 +2746.115136 +2746.320164 +2746.413571 +2746.519431 +2746.613770 +2752.085560 +2752.258087 +2752.456355 +2752.508769 +2752.518493 +2752.632845 +2752.665013 +2752.784460 +2752.888889 +2753.027317 +2753.050827 +2753.062748 +2753.129481 +2753.224786 +2753.264446 +2753.340104 +2753.379364 +2753.392551 +2753.473570 +2753.512365 +2753.564346 +2753.581196 +2753.686390 +2753.688255 +2753.713830 +2753.766244 +2753.808468 +2753.875768 +2753.876667 +2753.887722 +2753.902840 +2753.965311 +2754.022920 +2754.035408 +2754.049560 +2754.060283 +2754.086190 +2754.112131 +2754.203406 +2754.258618 +2754.326683 +2754.382127 +2754.385924 +2754.396213 +2754.412730 +2754.466743 +2754.478298 +2754.539170 +2754.638571 +2754.665177 +2754.723286 +2754.735640 +2754.740369 +2754.779396 +2754.790419 +2754.792217 +2754.849160 +2754.860782 +2754.889753 +2754.893083 +2754.949659 +2754.991484 +2755.099509 +2755.113295 +2755.123385 +2755.173968 +2755.202240 +2755.289552 +2755.388720 +2755.400575 +2755.416492 +2755.433508 +2755.446995 +2755.462979 +2755.464977 +2755.483292 +2755.539336 +2755.574767 +2755.631776 +2755.642699 +2755.688153 +2755.703871 +2755.733874 +2755.795912 +2755.828513 +2755.910964 +2755.917990 +2755.920687 +2756.025349 +2756.040268 +2756.087554 +2756.133075 +2756.147727 +2756.178163 +2756.292182 +2756.297244 +2756.321353 +2769.081313 +2769.152542 +2773.005419 +2776.913973 +2777.010876 +2777.217369 +2777.219267 +2777.315571 +2777.412707 +2777.613539 +2777.712640 +2778.012706 +2778.012906 +2778.112673 +2778.115837 +2778.214904 +2778.512273 +2778.612906 +2778.812739 +2779.316468 +2779.512538 +2779.514437 +2779.712305 +2779.913104 +2780.112438 +2780.117200 +2780.416767 +2780.612671 +2780.713736 +2780.718831 +2780.815900 +2780.816300 +2780.916933 +2781.013869 +2781.214235 +2781.216932 +2781.220995 +2781.413536 +2781.414102 +2781.414335 +2781.612403 +2781.618197 +2781.712836 +2781.713169 +2781.716299 +2787.042301 +2787.097979 +2787.128082 +2787.184625 +2787.185791 +2787.248961 +2787.367642 +2787.410366 +2787.419490 +2787.422521 +2787.487655 +2787.516526 +2787.576400 +2787.634209 +2787.645098 +2787.717559 +2787.758950 +2787.782560 +2787.808900 +2787.835374 +2787.859883 +2787.884625 +2787.898511 +2787.936906 +2787.991185 +2788.004704 +2788.019723 +2788.103406 +2788.147728 +2788.158950 +2788.174468 +2788.194981 +2788.261081 +2788.324651 +2788.346229 +2788.387155 +2788.406968 +2788.530178 +2788.543232 +2788.555853 +2788.557917 +2788.570172 +2788.578663 +2788.585590 +2788.636139 +2788.661647 +2788.673169 +2788.711231 +2788.724018 +2788.750425 +2788.750624 +2788.825916 +2788.826815 +2788.840801 +2788.841866 +2788.852656 +2788.874001 +2788.907667 +2788.936538 +2788.949159 +2788.987987 +2788.999808 +2789.027780 +2789.068140 +2789.106135 +2789.174001 +2789.306635 +2789.387620 +2789.424883 +2789.455719 +2789.495745 +2789.563877 +2789.578263 +2789.590850 +2789.620287 +2789.678429 +2789.696078 +2789.717024 +2789.773567 +2789.789285 +2789.793148 +2789.803171 +2789.893813 +2789.899741 +2789.928579 +2789.948292 +2789.962878 +2790.167573 +2790.198209 +2790.271902 +2790.283890 +2790.301272 +2790.328578 +2790.345328 +2790.373933 +2790.405368 +2790.524016 +2790.753020 +2790.986553 +2791.208131 +2791.268937 +2791.484554 +2791.497541 +2791.587518 +2797.457675 +2799.334763 +2799.605192 +2799.779451 +2803.711515 +2804.712713 +2808.360828 +2808.375646 +2808.403552 +2808.407781 +2810.077110 +2810.090696 +2810.163723 +2810.168352 +2812.011907 +2812.212939 +2812.516302 +2813.013104 +2813.016201 +2813.414736 +2813.513104 +2813.516334 +2813.613137 +2813.813303 +2813.814169 +2813.814868 +2813.817799 +2813.920230 +2814.013203 +2814.215301 +2814.315900 +2814.419896 +2814.516333 +2814.713536 +2814.821594 +2814.912803 +2815.012836 +2815.016099 +2815.116965 +2815.219263 +2815.416432 +2815.717131 +2815.812802 +2815.913401 +2815.914167 +2816.019029 +2816.113201 +2816.213001 +2816.213401 +2816.214200 +2818.444567 +2818.450095 +2821.924218 +2822.228247 +2822.283125 +2822.520188 +2822.547061 +2822.567940 +2822.615692 +2822.650224 +2822.669538 +2822.809365 +2822.879395 +2822.943331 +2822.946028 +2822.958749 +2822.962911 +2822.996711 +2823.034240 +2823.034506 +2823.074633 +2823.110963 +2823.155152 +2823.198842 +2823.212128 +2823.213194 +2823.243264 +2823.250557 +2823.251522 +2823.252688 +2823.262345 +2823.336904 +2823.352921 +2823.441599 +2823.479095 +2823.479428 +2823.566873 +2823.574666 +2823.606800 +2823.607166 +2823.608532 +2823.650989 +2823.700839 +2823.724149 +2823.768938 +2823.769304 +2823.806966 +2823.832141 +2823.846926 +2823.860646 +2823.873133 +2823.910929 +2823.951089 +2823.964342 +2823.975831 +2823.978128 +2823.991115 +2824.052188 +2824.080226 +2824.096343 +2824.107432 +2824.108831 +2824.132507 +2824.146060 +2824.167705 +2824.208131 +2824.276729 +2824.291748 +2824.305900 +2824.364974 +2824.403802 +2824.418254 +2824.439134 +2824.458281 +2824.514025 +2824.540932 +2824.558747 +2824.570202 +2824.578561 +2824.624148 +2824.633439 +2824.637302 +2824.648990 +2824.656949 +2824.691881 +2824.697775 +2824.705134 +2824.767538 +2824.780359 +2824.781924 +2824.796509 +2824.800305 +2824.811994 +2824.895743 +2824.935537 +2824.965240 +2824.992879 +2825.006532 +2825.020585 +2825.032473 +2825.035870 +2825.122616 +2825.135736 +2825.151987 +2825.164141 +2825.181724 +2825.221051 +2825.247957 +2825.259945 +2825.277961 +2825.288950 +2825.301903 +2825.314924 +2825.318120 +2825.329509 +2825.341630 +2825.345393 +2825.371101 +2825.387617 +2825.400305 +2825.460278 +2825.493278 +2825.530275 +2825.598873 +2825.750055 +2825.854550 +2825.916954 +2825.928709 +2825.959079 +2825.990747 +2826.130307 +2829.494407 +2829.634366 +2829.895239 +2829.895438 +2829.895638 +2829.895838 +2833.372558 +2836.158602 +2836.850676 +2836.886174 +2836.887007 +2844.991128 +2845.090262 +2845.091128 +2845.091461 +2845.289063 +2845.291660 +2845.493691 +2845.494490 +2845.794424 +2845.794590 +2845.893424 +2845.894257 +2845.993824 +2846.091326 +2846.093757 +2846.094390 +2846.186764 +2846.194357 +2846.288329 +2846.288662 +2846.289661 +2846.387497 +2846.489661 +2846.490394 +2846.589694 +2846.593057 +2846.593357 +2846.594889 +2846.687896 +2846.692258 +2846.693424 +2846.787896 +2846.887096 +2846.892325 +2846.894123 +2846.990193 +2846.992258 +2847.091159 +2847.093590 +2847.293556 +2847.488295 +2847.691391 +2847.693589 +2847.794089 +2847.893922 +2847.990292 +2847.990792 +2848.090991 +2848.190425 +2848.191491 +2848.192856 +2848.390025 +2848.488560 +2848.586928 +2848.593422 +2848.594154 +2848.691490 +2848.695187 +2848.795586 +2848.796352 +2848.994254 +2849.091290 +2849.094087 +2849.190924 +2849.293687 +2849.389858 +2849.391589 +2849.492722 +2849.493587 +2849.592222 +2849.686994 +2849.688126 +2849.692189 +2849.793554 +2852.290088 +2854.927182 +2855.102373 +2855.468240 +2855.483225 +2855.642865 +2855.683791 +2855.738703 +2855.892882 +2855.899475 +2855.996145 +2855.998010 +2856.037936 +2856.044064 +2856.117923 +2856.119155 +2856.143664 +2856.210497 +2856.213860 +2856.236371 +2856.266974 +2856.283557 +2856.295312 +2856.319654 +2856.336671 +2856.340167 +2856.401772 +2856.441266 +2856.458349 +2856.539468 +2856.562345 +2856.601805 +2856.606834 +2856.667706 +2856.693181 +2856.812062 +2856.934273 +2857.117223 +2857.611461 +2858.294944 +2858.380025 +2858.905166 +2859.048856 +2859.064540 +2859.165206 +2859.431073 +2859.446291 +2859.582988 +2859.861243 +2874.083206 +2876.364889 +2876.425695 +2876.432488 +2877.596889 +2880.188828 +2880.196187 +2880.397552 +2880.790093 +2880.795154 +2880.796520 +2880.890059 +2881.092723 +2881.098118 +2881.189426 +2881.195654 +2881.290492 +2881.292457 +2881.293123 +2881.293889 +2881.295287 +2881.394821 +2881.395420 +2881.491291 +2881.493855 +2881.590625 +2881.590991 +2881.795020 +2881.795819 +2881.796053 +2881.892623 +2881.893622 +2881.896918 +2881.991524 +2881.992722 +2882.092589 +2882.095919 +2882.192922 +2882.193888 +2882.293321 +2882.296951 +2882.298616 +2882.389558 +2882.391090 +2882.391556 +2882.392023 +2882.392422 +2882.393488 +2882.397084 +2882.397284 +2882.493022 +2882.495486 +2882.498549 +2882.590624 +2882.592489 +2882.694853 +2882.696385 +2882.696851 +2882.792622 +2882.798849 +2882.892122 +2882.893254 +2882.895152 +2882.994686 +2882.995319 +2883.090124 +2883.090490 +2883.093654 +2883.094186 +2883.197117 +2883.392987 +2883.490789 +2883.491122 +2883.494819 +2883.496917 +2883.592721 +2883.595418 +2883.693653 +2883.696550 +2883.697083 +2883.893953 +2883.989890 +2883.993819 +2883.994419 +2883.995551 +2884.094185 +2884.095085 +2884.097016 +2884.098281 +2884.193353 +2884.202111 +2884.293353 +2884.294685 +2884.392820 +2884.395151 +2884.492786 +2884.493353 +2884.498614 +2884.592320 +2884.593286 +2884.692820 +2884.693219 +2884.694917 +2884.791421 +2884.793552 +2884.794718 +2884.797415 +2884.892786 +2884.894218 +2884.894584 +2884.896016 +2889.108666 +2889.194980 +2889.363478 +2890.179561 +2890.226347 +2890.307266 +2890.361312 +2890.993945 +2891.028111 +2891.052487 +2891.053219 +2891.092147 +2891.168404 +2891.216922 +2891.217821 +2891.296343 +2891.306566 +2891.319320 +2891.601038 +2891.625114 +2891.674331 +2891.686785 +2891.689050 +2891.789849 +2891.819053 +2891.870435 +2891.870968 +2891.966072 +2891.994244 +2892.208130 +2892.218686 +2892.272832 +2892.433871 +2892.462442 +2892.473265 +2892.501403 +2892.550987 +2892.589848 +2892.725246 +2892.750454 +2892.819285 +2892.831140 +2892.904533 +2892.959112 +2892.960144 +2893.029142 +2893.044926 +2893.126211 +2893.166537 +2893.172998 +2893.297207 +2893.334170 +2893.343327 +2893.349521 +2893.394509 +2893.406797 +2893.419418 +2893.433337 +2893.519617 +2893.583220 +2893.667469 +2893.683886 +2893.797406 +2893.956413 +2894.498604 +2899.826704 +2899.885845 +2903.689038 +2903.820673 +2903.845348 +2907.007882 +2907.094529 +2907.112910 +2908.209912 +2915.194387 +2915.400381 +2915.495020 +2915.693788 +2915.699782 +2915.700614 +2915.701746 +2915.892988 +2915.897750 +2915.899648 +2915.994120 +2915.995719 +2916.293820 +2916.300480 +2916.393021 +2916.396584 +2916.495352 +2916.501845 +2916.595452 +2916.600547 +2916.693687 +2916.696217 +2916.697183 +2916.697616 +2916.798648 +2916.896017 +2916.898482 +2916.900247 +2916.900613 +2916.996450 +2917.096450 +2917.194019 +2917.196383 +2917.293952 +2917.295717 +2917.297782 +2917.395384 +2917.397615 +2917.399946 +2917.400446 +2917.594751 +2917.595351 +2917.595917 +2917.596350 +2917.597782 +2917.600213 +2917.600512 +2917.600779 +2917.698214 +2917.896849 +2917.900445 +2917.900712 +2918.001278 +2918.196915 +2918.597614 +2918.696215 +2918.800511 +2919.199778 +2919.500510 +2919.896014 +2919.897346 +2919.899911 +2921.657152 +2921.661081 +2921.692649 +2921.723752 +2922.766474 +2925.919718 +2926.051486 +2926.078093 +2926.153850 +2926.326844 +2926.382255 +2926.408928 +2926.545658 +2926.573164 +2926.684686 +2926.751019 +2926.792078 +2926.806164 +2926.809294 +2926.922847 +2927.103034 +2927.104166 +2927.109993 +2927.292277 +2927.400303 +2927.401501 +2927.410592 +2927.439730 +2927.568268 +2927.605897 +2927.679390 +2927.769100 +2928.036699 +2928.037998 +2928.283285 +2928.311224 +2928.380155 +2929.241193 +2929.446022 +2939.041783 +2940.895427 +2950.293720 +2950.398615 +2950.599147 +2950.799513 +2950.895051 +2950.895717 +2951.396383 +2951.495683 +2951.600478 +2951.695283 +2951.793751 +2951.797381 +2951.802443 +2951.896049 +2951.897048 +2951.900145 +2951.995716 +2951.997414 +2952.096115 +2952.098946 +2952.193884 +2952.195316 +2952.297247 +2952.298879 +2952.393484 +2952.400011 +2952.495749 +2952.499778 +2952.597181 +2952.599645 +2952.600344 +2952.698746 +2952.798446 +2952.801076 +2952.801842 +2952.895682 +2952.902542 +2952.993084 +2952.995881 +2953.000743 +2953.100410 +2953.193017 +2953.197113 +2953.197779 +2953.198479 +2953.204839 +2953.293517 +2953.294383 +2953.396447 +2953.398978 +2953.494949 +2953.498045 +2953.498478 +2953.500043 +2953.592950 +2953.598578 +2953.696280 +2953.794082 +2953.897446 +2953.897745 +2953.994415 +2954.194948 +2954.198911 +2954.297379 +2954.298511 +2954.299477 +2954.393749 +2954.395480 +2954.398311 +2954.402806 +2954.497512 +2954.593449 +2954.595647 +2954.599876 +2954.694814 +2954.695580 +2954.795513 +2954.798111 +2954.894881 +2954.895646 +2954.896279 +2954.897644 +2954.898244 +2956.907599 +2959.719085 +2959.889514 +2959.891945 +2960.152018 +2960.157379 +2960.194076 +2960.219218 +2960.259444 +2960.377159 +2960.393343 +2960.585418 +2960.622381 +2960.636600 +2960.645890 +2960.823846 +2960.833170 +2960.860609 +2960.908627 +2960.934335 +2961.015121 +2961.034402 +2961.059044 +2961.059643 +2961.061241 +2961.071631 +2961.097771 +2961.108627 +2961.117951 +2961.164272 +2961.171731 +2961.185417 +2961.311624 +2961.347788 +2961.479190 +2961.577891 +2961.607661 +2961.625776 +2961.655447 +2961.738796 +2961.747554 +2961.749053 +2961.876758 +2961.914188 +2962.049519 +2962.082319 +2962.093741 +2962.134034 +2962.145956 +2962.183018 +2962.235799 +2962.306462 +2962.411123 +2962.419948 +2962.483051 +2962.483984 +2962.523677 +2962.562772 +2962.575625 +2962.611623 +2962.689778 +2962.770430 +2962.782518 +2962.851516 +2962.893507 +2963.009991 +2963.049817 +2963.066634 +2963.147719 +2963.292774 +2973.097859 +2973.124366 +2973.124732 +2973.158032 +2973.974948 +2973.993596 +2973.999057 +2974.123399 +2975.890397 +2977.761891 +2981.111471 +2982.173008 +2982.375439 +2982.379002 +2984.186726 +2984.992453 +2985.194251 +2985.394450 +2985.491986 +2985.593518 +2985.597214 +2985.597913 +2985.694883 +2985.696581 +2985.793285 +2985.796548 +2985.895782 +2985.896548 +2985.997946 +2986.001410 +2986.293251 +2986.298579 +2986.299311 +2986.394250 +2986.394949 +2986.398679 +2986.399711 +2986.492984 +2986.494016 +2986.494283 +2986.594882 +2986.597779 +2986.693483 +2986.699910 +2986.799278 +2986.801442 +2986.892418 +2986.993084 +2986.998045 +2987.094049 +2987.097379 +2987.097945 +2987.194082 +2987.195814 +2987.293549 +2987.294116 +2987.396280 +2987.396713 +2987.595547 +2987.599576 +2987.600043 +2987.692117 +2987.698844 +2987.796546 +2987.797811 +2987.799143 +2987.994148 +2988.093216 +2988.094947 +2988.095413 +2988.096313 +2988.098244 +2988.098410 +2988.193382 +2988.293082 +2988.293482 +2988.294647 +2988.294914 +2988.296679 +2988.398077 +2988.402106 +2988.596878 +2988.599009 +2988.795546 +2988.995712 +2988.996911 +2989.000108 +2989.096578 +2989.192848 +2989.193548 +2989.194180 +2989.198176 +2989.294080 +2989.296811 +2989.300141 +2989.392016 +2989.393481 +2989.492082 +2989.494147 +2989.499175 +2989.596711 +2989.599042 +2989.698875 +2989.797110 +2989.799408 +2989.895179 +2989.897709 +2989.899807 +2994.890878 +2995.680154 +2996.107260 +2996.107560 +2996.144756 +2996.245622 +2996.303530 +2996.304862 +2996.381253 +2996.390443 +2996.391576 +2996.430637 +2996.454546 +2996.480220 +2996.520413 +2996.531169 +2996.544256 +2996.555179 +2996.581652 +2996.587746 +2996.620780 +2996.633067 +2996.644689 +2996.658375 +2996.680653 +2996.682584 +2996.696071 +2996.782851 +2996.821812 +2996.863936 +2996.904595 +2996.995205 +2997.236397 +2997.253313 +2997.265301 +2997.277988 +2997.289244 +2997.302197 +2997.331368 +2997.454845 +2997.522510 +2997.575224 +2997.598101 +2997.616882 +2997.682417 +2997.708324 +2997.735397 +2997.875191 +2997.924008 +2997.953046 +2998.037328 +2998.119513 +2998.298667 +2998.534531 +2998.608556 +2999.006059 +2999.648049 +3005.970354 +3020.191186 +3021.792616 +3022.593181 +3022.699042 +3022.794413 +3022.799042 +3022.894613 +3023.094879 +3023.097976 +3023.293114 +3023.295778 +3023.400839 +3023.599407 +3023.694046 +3023.694912 +3023.798774 +3023.895478 +3023.896010 +3023.896976 +3023.994845 +3024.003236 +3024.093779 +3024.094145 +3024.098474 +3024.195710 +3024.196343 +3024.295144 +3024.298341 +3024.398507 +3024.493845 +3024.495410 +3024.695177 +3024.896975 +3027.127775 +3027.135901 +3028.336232 +3028.405530 +3029.684949 +3030.137896 +3030.208891 +3030.326407 +3030.388178 +3030.448718 +3030.512754 +3030.598002 +3030.782683 +3030.850249 +3030.860439 +3030.934132 +3030.939493 +3031.000432 +3031.022876 +3031.037628 +3031.060039 +3031.170562 +3031.201997 +3031.303462 +3031.303995 +3031.352446 +3031.365600 +3031.366000 +3031.416216 +3031.479319 +3031.490741 +3031.639526 +3031.757608 +3031.767864 +3031.768830 +3031.781051 +3031.792739 +3031.857041 +3031.885047 +3031.891607 +3031.925107 +3031.990541 +3032.003728 +3032.079818 +3032.098633 +3032.139092 +3032.202995 +3032.226805 +3032.227737 +3032.240757 +3032.351413 +3032.360404 +3032.365099 +3032.408356 +3032.445819 +3032.466898 +3032.476588 +3032.535695 +3032.562469 +3032.647783 +3032.673224 +3032.714450 +3032.746951 +3032.757473 +3032.768462 +3032.795602 +3032.820077 +3032.826504 +3032.838492 +3032.855509 +3032.918113 +3033.056674 +3033.058006 +3033.069494 +3033.071659 +3033.084379 +3033.101596 +3033.169861 +3033.258372 +3033.360137 +3033.372591 +3033.389108 +3033.404859 +3033.449048 +3033.860003 +3033.947915 +3034.042753 +3034.262966 +3034.621208 +3034.789506 +3034.858970 +3038.875249 +3051.606905 +3052.806138 +3054.994048 +3055.096146 +3055.097711 +3055.494114 +3055.494547 +3055.594513 +3055.692382 +3055.693248 +3055.697177 +3056.700473 +3056.901006 +3056.994212 +3057.300273 +3057.497109 +3057.497708 +3057.498208 +3057.593446 +3057.600772 +3057.692813 +3057.799906 +3057.895377 +3057.992779 +3057.994111 +3057.995743 +3057.999772 +3058.096576 +3058.197508 +3058.300671 +3058.301970 +3058.393512 +3058.393645 +3058.498773 +3058.499239 +3058.593711 +3058.595609 +3058.600371 +3058.694244 +3058.699672 +3058.900238 +3058.994011 +3059.000371 +3059.395009 +3059.397040 +3059.499771 +3059.594842 +3059.597240 +3059.600037 +3059.697406 +3059.700403 +3059.793377 +3065.663101 +3065.743987 +3065.874457 +3065.925406 +3066.158106 +3066.170260 +3066.283547 +3066.290440 +3066.304559 +3066.344086 +3066.369528 +3066.395069 +3066.476454 +3066.539191 +3066.580117 +3066.674722 +3066.770726 +3066.808222 +3066.899197 +3066.901928 +3066.929534 +3066.980416 +3067.016647 +3067.056840 +3067.113982 +3067.123673 +3067.182281 +3067.262001 +3067.305524 +3067.309154 +3067.470526 +3067.597965 +3067.600096 +3067.620009 +3067.643086 +3067.745484 +3067.800728 +3067.866229 +3067.909653 +3067.938823 +3068.008121 +3068.022873 +3068.052143 +3068.248713 +3068.294601 +3068.455573 +3068.696032 +3068.773222 +3068.881746 +3068.893035 +3068.909152 +3068.909585 +3069.016511 +3069.048846 +3069.394666 +3069.412115 +3069.734526 +3077.135351 +3080.892157 +3084.551594 +3090.098442 +3090.300406 +3090.394479 +3090.397043 +3090.398275 +3090.400040 +3090.492514 +3090.696410 +3090.701205 +3090.797142 +3090.799640 +3090.997309 +3091.199706 +3091.200638 +3091.301537 +3091.393812 +3091.394744 +3091.395676 +3091.397075 +3091.495044 +3091.497541 +3091.598773 +3091.699372 +3091.699872 +3091.795443 +3091.798573 +3091.997141 +3092.094777 +3092.193578 +3092.194876 +3092.300038 +3092.495209 +3092.496574 +3092.599804 +3092.600570 +3092.694310 +3092.797007 +3092.894077 +3092.894443 +3092.994243 +3092.995542 +3092.996074 +3092.997373 +3092.997939 +3093.092844 +3093.096973 +3093.097639 +3093.193843 +3093.200137 +3093.291945 +3093.298272 +3093.299904 +3093.300603 +3093.393244 +3093.393610 +3093.498372 +3093.599637 +3093.696340 +3093.696773 +3093.698838 +3093.892744 +3093.894275 +3093.897006 +3093.994275 +3093.996007 +3094.000402 +3094.094308 +3094.195474 +3094.197372 +3094.200369 +3094.299636 +3094.497538 +3094.498637 +3094.499669 +3094.693142 +3094.698104 +3094.699702 +3097.449850 +3097.937029 +3097.961371 +3099.890973 +3099.910054 +3100.296533 +3100.331665 +3100.493736 +3100.615348 +3101.055107 +3101.096666 +3101.107788 +3101.155274 +3101.168128 +3101.192869 +3101.209087 +3101.258337 +3101.364931 +3101.398630 +3101.425770 +3101.438823 +3101.503425 +3101.536992 +3101.603259 +3101.614248 +3101.681680 +3101.692669 +3101.718144 +3101.786775 +3101.812816 +3101.840022 +3101.865463 +3101.927434 +3102.010851 +3102.028100 +3102.052009 +3102.065529 +3102.068793 +3102.079249 +3102.093634 +3102.214513 +3102.257204 +3102.448879 +3102.479049 +3102.533594 +3102.546148 +3102.580281 +3102.698496 +3102.718609 +3102.882511 +3102.883011 +3102.956437 +3102.985775 +3102.987140 +3103.042618 +3103.117010 +3103.206154 +3103.223104 +3103.327066 +3103.504855 +3103.536424 +3103.551841 +3103.582644 +3103.612547 +3103.843117 +3103.964195 +3103.976916 +3104.111182 +3104.520805 +3104.609982 +3104.731894 +3107.528994 +3107.558731 +3107.602420 +3107.734888 +3108.765356 +3108.905549 +3116.893253 +3118.813731 +3118.882629 +3120.081229 +3120.532577 +3120.567442 +3120.674202 +3121.744364 +3121.756519 +3123.337736 +3123.342831 +3123.348292 +3124.891414 +3124.993845 +3124.994511 +3124.995976 +3124.996276 +3125.097341 +3125.299672 +3125.500671 +3125.594011 +3125.594677 +3125.694610 +3125.699239 +3125.699938 +3125.793444 +3126.194709 +3126.198938 +3126.396940 +3126.495708 +3126.594076 +3126.601102 +3126.693776 +3126.696074 +3126.793243 +3126.800070 +3127.197972 +3127.294075 +3127.298571 +3127.400402 +3127.493642 +3127.495307 +3127.497472 +3127.599103 +3127.696639 +3127.697239 +3127.892743 +3127.893575 +3127.896373 +3127.896905 +3127.995840 +3127.998537 +3128.099636 +3128.193775 +3128.195806 +3128.196139 +3128.197038 +3128.296339 +3128.395173 +3128.498603 +3128.503698 +3128.596172 +3128.600235 +3128.697770 +3128.700235 +3128.795672 +3128.799935 +3128.897271 +3128.900301 +3129.095539 +3129.096305 +3129.293574 +3129.294107 +3129.299901 +3129.394240 +3129.398336 +3129.400167 +3129.497570 +3129.593540 +3129.693807 +3129.694106 +3129.797470 +3129.799168 +3129.800367 +3133.848714 +3135.130964 +3135.349512 +3135.440088 +3135.484677 +3135.603691 +3135.728632 +3135.799661 +3135.823071 +3135.880913 +3135.897430 +3135.907953 +3135.931163 +3135.998063 +3135.999262 +3136.023138 +3136.071589 +3136.157104 +3136.169225 +3136.180813 +3136.183910 +3136.193467 +3136.204023 +3136.220773 +3136.243517 +3136.259235 +3136.271456 +3136.294000 +3136.309351 +3136.338722 +3136.349178 +3136.370290 +3136.396597 +3136.409551 +3136.411382 +3136.435325 +3136.435625 +3136.436590 +3136.496231 +3136.586141 +3136.780846 +3136.806953 +3136.910683 +3136.937289 +3137.031462 +3137.069191 +3137.081445 +3137.187772 +3137.190136 +3137.203356 +3137.384142 +3137.579580 +3137.612147 +3137.719440 +3137.760965 +3137.808051 +3137.845980 +3137.888803 +3137.932959 +3137.946779 +3137.990002 +3138.018474 +3138.092932 +3138.153239 +3138.238021 +3138.477481 +3138.478946 +3138.495929 +3138.539719 +3138.553838 +3138.599292 +3138.615276 +3138.615576 +3138.645879 +3138.721070 +3138.767124 +3138.947410 +3139.026398 +3139.490034 +3139.677047 +3139.737386 +3151.135111 +3153.892351 +3158.194810 +3159.993876 +3160.093277 +3160.197872 +3160.296673 +3160.496373 +3160.496640 +3160.593976 +3160.800269 +3161.094541 +3161.099403 +3161.100901 +3161.193342 +3161.198104 +3161.198903 +3161.401434 +3161.493775 +3161.498004 +3161.498637 +3161.500402 +3161.501101 +3161.600168 +3161.695806 +3161.793342 +3161.794740 +3161.893641 +3161.899236 +3161.993974 +3161.998603 +3161.998969 +3161.999469 +3162.093708 +3162.095373 +3162.194640 +3162.198636 +3162.292609 +3162.295339 +3162.392608 +3162.395506 +3162.399868 +3162.596105 +3162.695905 +3162.700833 +3162.795205 +3162.900500 +3162.999568 +3163.096604 +3163.100766 +3163.198702 +3163.203031 +3163.495571 +3163.495904 +3163.498335 +3163.499367 +3163.592740 +3163.593440 +3163.594572 +3163.599767 +3163.700466 +3163.995138 +3164.093406 +3164.094605 +3164.095471 +3164.196003 +3164.293306 +3164.400132 +3164.401398 +3164.493938 +3164.500132 +3164.593505 +3164.595870 +3164.600665 +3164.697301 +3164.699732 +3164.795803 +3164.799699 +3164.893572 +3164.893938 +3164.895836 +3164.897767 +3170.382710 +3170.753905 +3170.756003 +3170.853006 +3170.926499 +3170.933492 +3170.946946 +3171.058900 +3171.071254 +3171.176449 +3171.240185 +3171.278780 +3171.314677 +3171.336123 +3171.337321 +3171.432959 +3171.436789 +3171.484408 +3171.485007 +3171.522769 +3171.548210 +3171.564927 +3171.589469 +3171.654304 +3171.958033 +3171.984673 +3172.114976 +3172.127564 +3172.654303 +3173.178046 +3173.311345 +3173.325764 +3173.369754 +3173.386370 +3173.446044 +3173.520469 +3173.667123 +3173.861162 +3173.980342 +3174.297791 +3174.437751 +3174.642813 +3174.656599 +3174.824298 +3176.165855 +3176.226494 +3195.091444 +3195.094374 +3195.096072 +3195.297804 +3195.394707 +3195.397471 +3195.502199 +3195.594407 +3195.597604 +3195.598969 +3195.796571 +3195.796837 +3195.892642 +3195.996171 +3196.095305 +3196.098302 +3196.194073 +3196.194673 +3196.300333 +3196.301799 +3196.492141 +3196.494939 +3196.496437 +3196.600999 +3196.692807 +3196.697403 +3196.699001 +3196.794639 +3196.895704 +3196.896370 +3196.902397 +3196.993140 +3196.995304 +3196.999933 +3197.094971 +3197.100299 +3197.196769 +3197.292340 +3197.293306 +3197.296436 +3197.301398 +3197.396403 +3197.495970 +3197.498401 +3197.599366 +3197.599766 +3197.692240 +3197.695171 +3197.800032 +3197.896469 +3197.898201 +3197.993172 +3198.101064 +3198.294371 +3198.299199 +3198.301397 +3198.395403 +3198.396169 +3198.592106 +3198.599399 +3198.694337 +3198.698100 +3198.795469 +3198.798999 +3198.893171 +3198.895003 +3198.895602 +3198.997933 +3198.998932 +3199.099964 +3199.196335 +3199.199665 +3199.395635 +3199.396634 +3199.493004 +3199.599797 +3199.694935 +3199.697300 +3199.792738 +3199.796334 +3199.796734 +3199.800829 +3199.892937 +3199.895635 +3199.897166 +3204.902456 +3204.985240 +3205.341850 +3205.583474 +3205.754470 +3205.876681 +3205.912445 +3206.042548 +3206.153604 +3206.155335 +3206.250873 +3206.259231 +3206.260064 +3206.297293 +3206.298159 +3206.311213 +3206.365392 +3206.372618 +3206.373717 +3206.385072 +3206.399591 +3206.400257 +3206.411013 +3206.417606 +3206.433157 +3206.447709 +3206.472917 +3206.498925 +3206.561728 +3206.574815 +3206.614476 +3206.639784 +3206.640916 +3206.641149 +3206.653836 +3206.655102 +3206.706051 +3206.774249 +3206.798059 +3206.811145 +3206.899657 +3207.051405 +3207.111645 +3207.117406 +3207.140083 +3207.151072 +3207.175314 +3207.188701 +3207.201055 +3207.296127 +3207.296859 +3207.306616 +3207.398058 +3207.478045 +3207.503952 +3207.539050 +3207.631191 +3207.725297 +3207.807315 +3207.828261 +3207.917438 +3207.918470 +3208.064591 +3208.080775 +3208.118437 +3208.512975 +3208.610511 +3208.663158 +3220.857552 +3220.873569 +3220.877698 +3220.887055 +3222.845362 +3223.890715 +3225.196408 +3225.228310 +3225.277361 +3227.537698 +3228.538996 +3228.582552 +3228.590944 +3228.595972 +3228.619582 +3228.738063 +3229.995571 +3230.094406 +3230.197103 +3230.198768 +3230.297669 +3230.399833 +3230.499567 +3230.593073 +3230.694538 +3230.700232 +3230.792940 +3230.794605 +3230.795071 +3230.797335 +3231.093905 +3231.095370 +3231.101531 +3231.292939 +3231.301364 +3231.400165 +3231.494704 +3231.592573 +3231.596202 +3231.598500 +3231.599166 +3231.692706 +3231.697634 +3231.698034 +3231.992772 +3231.994737 +3232.094037 +3232.096168 +3232.098000 +3232.195303 +3232.197667 +3232.299332 +3232.392971 +3232.394070 +3232.395336 +3232.395702 +3232.396301 +3232.495336 +3232.496135 +3232.497400 +3232.498199 +3232.595668 +3232.597433 +3232.692705 +3232.693071 +3232.695202 +3232.695469 +3232.797067 +3232.797566 +3232.799331 +3232.891805 +3232.895368 +3232.900097 +3232.992738 +3232.994602 +3233.093803 +3233.094702 +3233.195102 +3233.294602 +3233.300463 +3233.498598 +3233.692404 +3233.696034 +3233.696433 +3233.698564 +3233.797798 +3233.799697 +3233.892870 +3233.893303 +3233.894535 +3234.094135 +3234.194601 +3234.195101 +3234.195534 +3234.391837 +3234.394934 +3234.396233 +3234.492536 +3234.492703 +3234.496299 +3234.500062 +3234.599995 +3234.696732 +3234.792869 +3234.793235 +3234.799030 +3234.895333 +3234.896998 +3240.304752 +3240.308714 +3240.332624 +3240.416107 +3240.430359 +3240.478544 +3240.587069 +3240.752370 +3240.778411 +3240.791931 +3240.804718 +3240.818737 +3240.829959 +3240.832690 +3240.843712 +3240.918004 +3240.919470 +3240.920502 +3240.944778 +3240.995360 +3241.007182 +3241.020702 +3241.046476 +3241.058264 +3241.071850 +3241.074914 +3241.087668 +3241.108747 +3241.109280 +3241.124298 +3241.135920 +3241.159962 +3241.162693 +3241.229093 +3241.254901 +3241.264458 +3241.276213 +3241.280875 +3241.316106 +3241.361128 +3241.373349 +3241.425596 +3241.427161 +3241.465856 +3241.479176 +3241.502220 +3241.530991 +3241.550438 +3241.614307 +3241.676079 +3241.791896 +3241.812642 +3241.813441 +3241.901453 +3241.966255 +3242.073947 +3242.077111 +3242.077977 +3242.126395 +3242.140381 +3242.166088 +3242.169618 +3242.192329 +3242.194493 +3242.205249 +3242.217304 +3242.221999 +3242.246208 +3242.248206 +3242.250937 +3242.260594 +3242.313441 +3242.333488 +3242.350537 +3242.365522 +3242.409212 +3242.410644 +3242.568619 +3242.581972 +3242.582738 +3242.584137 +3242.587167 +3242.624396 +3242.666488 +3242.692228 +3242.981439 +3242.983204 +3243.191429 +3243.218668 +3243.292195 +3243.449104 +3243.884235 +3244.680505 +3244.787631 +3250.354259 +3250.368544 +3257.461078 +3257.659679 +3258.270601 +3264.545620 +3264.546319 +3264.994970 +3265.093838 +3265.097101 +3265.194404 +3265.198200 +3265.299299 +3265.395835 +3265.495402 +3265.596068 +3265.597534 +3265.699198 +3265.893970 +3265.896135 +3265.899298 +3266.096234 +3266.195668 +3266.493470 +3266.595967 +3266.696067 +3266.697266 +3266.791838 +3267.001795 +3267.096300 +3267.096899 +3267.100462 +3267.197066 +3267.297032 +3267.299130 +3267.299763 +3267.393469 +3267.395034 +3267.395467 +3267.395867 +3267.396166 +3267.397265 +3267.398031 +3267.398597 +3267.399596 +3267.493336 +3267.498864 +3267.592470 +3267.792869 +3267.795567 +3267.796932 +3267.801527 +3267.896865 +3267.993568 +3267.999296 +3268.097298 +3268.196765 +3268.199529 +3268.294967 +3268.393069 +3268.393435 +3268.394034 +3268.399529 +3268.593868 +3268.696931 +3268.794001 +3268.794600 +3268.795366 +3268.798696 +3268.892935 +3268.994000 +3269.092235 +3269.093035 +3269.102492 +3269.194133 +3269.196631 +3269.292801 +3269.293134 +3269.294599 +3269.295665 +3269.296431 +3269.298629 +3269.399028 +3269.492401 +3269.499528 +3269.592734 +3269.593067 +3269.597363 +3269.694632 +3269.696597 +3269.797729 +3269.799294 +3269.896730 +3269.901792 +3270.201525 +3272.485306 +3273.530093 +3273.542880 +3273.567156 +3273.602887 +3274.889732 +3275.343278 +3275.488699 +3275.513707 +3275.742245 +3275.754300 +3275.854500 +3275.866288 +3275.928825 +3276.005682 +3276.092861 +3276.118502 +3276.131989 +3276.157563 +3276.184802 +3276.212641 +3276.327493 +3276.448871 +3276.484902 +3276.514306 +3276.582171 +3276.583270 +3276.671215 +3276.708145 +3276.709377 +3276.732854 +3276.746307 +3276.770782 +3276.783037 +3276.902184 +3276.902983 +3276.910543 +3276.927026 +3276.938881 +3276.966753 +3277.035051 +3277.045274 +3277.088065 +3277.141744 +3277.143842 +3277.161525 +3277.166386 +3277.179673 +3277.193060 +3277.218068 +3277.222330 +3277.250702 +3277.260925 +3277.262490 +3277.288831 +3277.390063 +3277.411907 +3277.427858 +3277.439546 +3277.445607 +3277.471081 +3277.482304 +3277.483835 +3277.516103 +3277.539480 +3277.565221 +3277.584235 +3277.609510 +3277.623396 +3277.626126 +3277.635151 +3277.664788 +3277.721830 +3277.737715 +3277.740945 +3277.767585 +3277.794191 +3277.823096 +3277.997455 +3278.038580 +3278.110641 +3278.126226 +3278.127325 +3278.170681 +3278.172513 +3278.198387 +3278.309875 +3278.354863 +3278.500951 +3278.602882 +3278.616934 +3278.707843 +3278.708410 +3278.929488 +3279.275542 +3279.542408 +3279.816267 +3283.845401 +3285.329615 +3285.339239 +3286.656620 +3286.680929 +3286.684292 +3286.719657 +3299.993503 +3300.096733 +3300.395134 +3300.395701 +3300.599730 +3300.695167 +3300.698131 +3300.794068 +3300.797731 +3300.893735 +3300.900362 +3300.993336 +3301.094335 +3301.194634 +3301.197398 +3301.197798 +3301.498064 +3301.499662 +3301.595599 +3301.692902 +3301.693235 +3301.693901 +3301.793868 +3301.799062 +3301.994800 +3301.998363 +3302.000294 +3302.100094 +3302.101759 +3302.193534 +3302.197397 +3302.199295 +3302.295033 +3302.300227 +3302.393001 +3302.394999 +3302.496631 +3302.599095 +3302.600727 +3302.692135 +3302.693367 +3302.694166 +3302.700627 +3302.795598 +3302.894266 +3303.095332 +3303.097330 +3303.099294 +3303.195731 +3303.199494 +3303.292867 +3303.293500 +3303.299527 +3303.395564 +3303.397263 +3303.399960 +3303.493033 +3303.494032 +3303.494965 +3303.497762 +3303.598828 +3303.599394 +3303.696030 +3303.697695 +3303.794965 +3303.799826 +3303.895597 +3303.993133 +3304.000292 +3304.195530 +3304.294764 +3304.295430 +3304.297695 +3304.395896 +3304.399992 +3304.596895 +3304.601091 +3304.698893 +3304.795363 +3304.796196 +3304.797228 +3304.803788 +3307.104019 +3307.170286 +3307.242980 +3307.264558 +3309.443544 +3309.889730 +3309.959927 +3310.411774 +3310.431588 +3310.483836 +3310.497322 +3310.531555 +3310.587698 +3310.636183 +3310.662690 +3310.675311 +3310.752633 +3310.763156 +3310.828391 +3310.854997 +3310.866053 +3311.060392 +3311.111474 +3311.115836 +3311.125793 +3311.137215 +3311.149836 +3311.203282 +3311.250635 +3311.263921 +3311.276442 +3311.287664 +3311.315203 +3311.319133 +3311.327491 +3311.343475 +3311.354331 +3311.356562 +3311.367118 +3311.393991 +3311.400851 +3311.405014 +3311.405546 +3311.431987 +3311.432819 +3311.445906 +3311.457195 +3311.490461 +3311.519432 +3311.633751 +3311.660258 +3311.662789 +3311.664987 +3311.674977 +3311.688696 +3311.703681 +3311.716568 +3311.720398 +3311.757161 +3311.767750 +3311.784034 +3311.862855 +3311.901383 +3311.941343 +3311.964787 +3311.978872 +3312.009375 +3312.027224 +3312.047570 +3312.050134 +3312.115069 +3312.158293 +3312.169482 +3312.170680 +3312.173278 +3312.181769 +3312.184167 +3312.195289 +3312.211806 +3312.244706 +3312.251033 +3312.251833 +3312.281170 +3312.290694 +3312.317767 +3312.362056 +3312.500783 +3312.516334 +3312.534183 +3312.569515 +3312.583700 +3312.585998 +3312.598819 +3312.613870 +3312.698119 +3312.777606 +3312.797287 +3312.809341 +3312.835981 +3312.836847 +3312.924060 +3313.271112 +3313.359257 +3313.448068 +3313.614302 +3313.642774 +3313.732817 +3313.793756 +3313.870279 +3314.039676 +3314.341075 +3314.871943 +3318.662749 +3318.670674 +3320.214295 +3320.229380 +3320.258984 +3320.266576 +3327.089713 +3334.991137 +3334.995999 +3334.997597 +3335.093068 +3335.096798 +3335.195100 +3335.195899 +3335.200294 +3335.292103 +3335.295299 +3335.394633 +3335.396998 +3335.399329 +3335.599761 +3335.600727 +3335.602092 +3335.696664 +3335.700793 +3335.793367 +3335.898429 +3335.900294 +3335.993967 +3336.094732 +3336.095798 +3336.192601 +3336.198096 +3336.296364 +3336.299594 +3336.300360 +3336.396464 +3336.397563 +3336.400327 +3336.493433 +3336.493800 +3336.495565 +3336.497130 +3336.500060 +3336.594366 +3336.597496 +3336.692268 +3336.693433 +3336.694332 +3336.700293 +3336.797329 +3336.895264 +3336.895631 +3336.898594 +3336.898927 +3336.899827 +3336.992367 +3336.992734 +3337.001458 +3337.093366 +3337.097362 +3337.200592 +3337.298228 +3337.398694 +3337.398860 +3337.399726 +3337.597295 +3337.599892 +3337.693332 +3337.797495 +3337.891967 +3337.995863 +3337.998127 +3338.098160 +3338.192899 +3338.197128 +3338.198194 +3338.198560 +3338.296229 +3338.298393 +3338.301457 +3338.494430 +3338.499525 +3338.594330 +3338.598826 +3338.694397 +3338.699292 +3338.793231 +3338.793531 +3338.793931 +3338.795862 +3338.800324 +3338.893298 +3339.099658 +3339.192565 +3339.195229 +3339.196694 +3339.295329 +3339.395761 +3339.495728 +3339.592331 +3339.593763 +3339.597593 +3339.599990 +3339.693497 +3339.792398 +3339.897026 +3339.897426 +3339.900256 +3342.092962 +3343.633420 +3343.721098 +3343.739214 +3343.744975 +3343.746007 +3343.766120 +3343.875078 +3344.586565 +3344.838846 +3344.891194 +3344.892493 +3345.177374 +3345.648935 +3345.696121 +3345.711573 +3345.805712 +3345.817267 +3345.818832 +3345.861989 +3345.976774 +3346.014503 +3346.091526 +3346.119464 +3346.139444 +3346.141076 +3346.141642 +3346.212937 +3346.216234 +3346.224692 +3346.225125 +3346.288395 +3346.312171 +3346.348335 +3346.355728 +3346.356760 +3346.371778 +3346.387563 +3346.496287 +3346.533949 +3346.559391 +3346.587529 +3346.701149 +3346.726124 +3346.740676 +3346.804379 +3346.820629 +3346.899384 +3346.936646 +3346.955228 +3346.974009 +3346.987795 +3347.058791 +3347.193056 +3347.220928 +3347.391924 +3347.414535 +3347.731018 +3347.733316 +3347.762087 +3347.784131 +3347.918730 +3347.934647 +3347.945137 +3348.006775 +3348.066249 +3348.105277 +3348.108074 +3348.133315 +3348.145070 +3348.159123 +3348.287194 +3348.310405 +3348.326522 +3348.411503 +3348.424590 +3348.439975 +3348.441573 +3348.469279 +3348.551896 +3348.608007 +3348.656958 +3348.663851 +3348.700814 +3348.730284 +3348.732282 +3348.761586 +3348.826721 +3348.837777 +3348.838576 +3348.911470 +3348.945136 +3349.080767 +3349.186161 +3349.201979 +3349.294886 +3349.418762 +3349.508472 +3349.617929 +3349.619894 +3349.722658 +3349.724056 +3349.726554 +3349.755625 +3349.838075 +3349.881998 +3355.482226 +3355.486888 +3365.952478 +3366.014283 +3369.895365 +3369.993733 +3369.995864 +3369.996430 +3369.999161 +3370.097995 +3370.100160 +3370.198328 +3370.294632 +3370.295797 +3370.296064 +3370.299727 +3370.300559 +3370.400193 +3370.494865 +3370.498827 +3370.501824 +3370.595697 +3370.693765 +3370.694132 +3370.898194 +3370.900792 +3370.998960 +3371.095896 +3371.099126 +3371.099892 +3371.100991 +3371.198494 +3371.199992 +3371.299992 +3371.397894 +3371.494630 +3371.496395 +3371.499725 +3371.501191 +3371.595463 +3371.598526 +3371.602756 +3371.693032 +3371.801423 +3371.801623 +3371.896495 +3372.097927 +3372.396494 +3372.593331 +3372.697793 +3372.697959 +3372.798425 +3372.800290 +3372.897959 +3373.094229 +3373.293963 +3373.297892 +3373.495794 +3373.496826 +3373.593263 +3373.600156 +3374.100522 +3374.399789 +3375.600554 +3375.603917 +3379.258925 +3379.440443 +3379.643340 +3379.647936 +3379.707343 +3379.731985 +3379.734516 +3380.556593 +3380.556959 +3380.629986 +3380.716732 +3380.815334 +3380.843106 +3380.878604 +3380.909839 +3380.967182 +3381.015433 +3381.063852 +3381.116998 +3381.175973 +3381.186729 +3381.199116 +3381.214867 +3381.238277 +3381.239709 +3381.242739 +3381.251697 +3381.266116 +3381.276572 +3381.277238 +3381.278071 +3381.299849 +3381.327554 +3381.333482 +3381.359689 +3381.373042 +3381.396652 +3381.407275 +3381.447534 +3381.449299 +3381.487061 +3381.499948 +3381.513535 +3381.517031 +3381.538743 +3381.582899 +3381.642506 +3381.643471 +3381.670611 +3381.684131 +3381.741274 +3381.775306 +3381.802845 +3381.819895 +3381.860254 +3381.867481 +3381.937977 +3382.001846 +3382.005975 +3382.016098 +3382.041806 +3382.070810 +3382.124257 +3382.165416 +3382.168246 +3382.197384 +3382.220294 +3382.238576 +3382.261952 +3382.277004 +3382.316365 +3382.318363 +3382.324190 +3382.332748 +3382.386794 +3382.449298 +3382.490890 +3382.499115 +3382.531216 +3382.543138 +3382.583863 +3382.587027 +3382.587793 +3382.603344 +3382.612901 +3382.653993 +3382.669777 +3382.716397 +3382.798748 +3382.957956 +3382.985295 +3383.016530 +3383.052461 +3383.164482 +3383.166480 +3383.182664 +3383.184829 +3383.194985 +3383.331648 +3383.343237 +3383.400013 +3383.403643 +3383.433313 +3383.611435 +3383.651661 +3383.713866 +3383.726919 +3383.799613 +3383.904541 +3383.965381 +3384.140905 +3384.249196 +3384.287258 +3384.556888 +3384.656555 +3384.697115 +3384.697481 +3384.703142 +3392.126778 +3392.172765 +3393.272531 +3393.442461 +3393.905131 +3394.238664 +3394.246090 +3395.117817 +3395.227241 +3397.211987 +3398.220511 +3399.440124 +3399.892970 +3400.509487 +3401.854873 +3401.858902 +3401.862632 +3401.876318 +3401.917244 +3403.713013 +3403.718408 +3404.893665 +3405.092399 +3405.094397 +3405.097128 +3405.296728 +3405.396761 +3405.496461 +3405.594929 +3405.598992 +3405.894263 +3406.098692 +3406.101189 +3406.196227 +3406.295262 +3406.295894 +3406.497459 +3406.497925 +3406.598125 +3406.598958 +3407.097925 +3407.996059 +3408.098224 +3408.100788 +3408.195892 +3408.497158 +3408.498789 +3408.600854 +3408.894726 +3408.896724 +3408.994227 +3409.002552 +3409.094326 +3409.095958 +3409.097623 +3409.196125 +3409.200121 +3409.201153 +3409.300920 +3409.393993 +3409.395925 +3409.396324 +3409.496257 +3409.598955 +3409.694326 +3409.696157 +3409.698322 +3409.796024 +3409.797156 +3409.799820 +3409.801086 +3409.896057 +3409.896856 +3409.900053 +3415.151929 +3415.233947 +3415.236645 +3415.312902 +3415.373741 +3415.537743 +3415.563284 +3415.622325 +3415.766115 +3415.816498 +3415.830117 +3415.903044 +3415.981166 +3416.055791 +3416.065348 +3416.069977 +3416.140307 +3416.228518 +3416.232947 +3416.284895 +3416.289491 +3416.361319 +3416.363950 +3416.375804 +3416.436444 +3416.449031 +3416.487060 +3416.502611 +3416.527120 +3416.528019 +3416.541272 +3416.571575 +3416.579800 +3416.581066 +3416.591655 +3416.617596 +3416.620260 +3416.630283 +3416.634745 +3416.682264 +3416.711235 +3416.776636 +3416.829117 +3416.830449 +3416.841372 +3416.893386 +3416.911168 +3416.928618 +3416.981098 +3416.981431 +3416.995018 +3417.056556 +3417.070043 +3417.120059 +3417.145667 +3417.158721 +3417.159986 +3417.185128 +3417.333179 +3417.351661 +3417.359819 +3417.372473 +3417.375737 +3417.418594 +3417.484361 +3417.498414 +3417.524455 +3417.552626 +3417.664281 +3417.667245 +3417.720292 +3417.763715 +3417.769210 +3417.834644 +3417.851494 +3417.967544 +3417.977468 +3417.991820 +3418.036042 +3418.179299 +3418.207637 +3418.326052 +3418.344767 +3418.370374 +3418.471273 +3418.515463 +3418.560684 +3418.607038 +3418.678166 +3418.782562 +3418.811833 +3419.036741 +3419.100943 +3419.156920 +3419.178366 +3419.201542 +3419.279065 +3419.294849 +3419.309268 +3419.353557 +3419.369841 +3419.399211 +3419.414829 +3419.458752 +3419.461649 +3419.491719 +3419.492551 +3419.524453 +3419.701509 +3419.748928 +3439.891199 +3440.092297 +3440.096527 +3440.097392 +3440.196859 +3440.394861 +3440.395294 +3440.493496 +3440.494761 +3440.496559 +3440.596493 +3440.694861 +3440.796692 +3440.893396 +3440.896459 +3440.896759 +3440.992297 +3440.994261 +3441.092863 +3441.096326 +3441.100588 +3441.195760 +3441.293329 +3441.294261 +3441.294960 +3441.295626 +3441.392263 +3441.394794 +3441.395160 +3441.496425 +3441.496958 +3441.499922 +3441.594860 +3441.596392 +3441.598456 +3441.693128 +3441.698023 +3441.796325 +3441.895492 +3441.896525 +3441.898156 +3441.898456 +3442.193294 +3442.200321 +3442.294193 +3442.295425 +3442.296158 +3442.392295 +3442.495225 +3442.499321 +3442.794892 +3442.893227 +3442.993660 +3443.093293 +3443.095824 +3443.096290 +3443.097856 +3443.195358 +3443.295591 +3443.499187 +3443.500286 +3443.599587 +3443.600053 +3443.696123 +3443.699387 +3443.699920 +3443.798854 +3443.894758 +3443.895124 +3443.900053 +3443.993159 +3443.995624 +3443.995957 +3444.192227 +3444.193026 +3444.200052 +3444.200818 +3444.394824 +3444.492959 +3444.495124 +3444.496589 +3444.595690 +3444.600218 +3444.692892 +3444.694024 +3444.694890 +3444.695257 +3444.697321 +3444.698487 +3444.794890 +3444.796322 +3444.799352 +3444.802016 +3444.896588 +3444.897088 +3444.899452 +3449.888425 +3449.962651 +3450.026620 +3450.129284 +3450.245534 +3450.313033 +3450.361085 +3450.494651 +3450.515131 +3450.609403 +3450.643469 +3450.683729 +3450.785727 +3450.787092 +3450.862383 +3450.920259 +3450.982630 +3451.038807 +3451.059952 +3451.098913 +3451.174105 +3451.185293 +3451.194251 +3451.194617 +3451.230215 +3451.606239 +3451.692652 +3451.703708 +3451.866178 +3452.171706 +3452.608935 +3452.917060 +3453.073703 +3453.180663 +3453.327949 +3454.117691 +3454.556585 +; +0.267532 +0.875257 +0.898700 +1.028870 +1.048084 +1.097701 +1.107192 +1.642622 +1.694803 +1.743055 +2.836760 +2.840090 +2.954409 +3.048382 +3.090873 +3.106424 +3.118945 +3.927069 +4.006190 +4.047016 +4.054908 +4.836059 +4.875120 +4.910851 +4.946582 +4.970857 +6.073454 +6.771821 +6.841352 +6.878215 +7.504588 +7.561664 +9.039252 +10.386570 +10.405884 +10.486170 +13.245841 +14.616702 +14.731820 +15.121330 +16.079071 +16.208242 +16.214503 +16.801815 +17.520029 +17.529320 +18.164750 +18.205743 +19.865115 +19.905441 +19.917229 +20.467978 +23.758717 +23.783826 +23.819357 +23.895947 +23.942600 +23.968341 +23.998278 +26.305834 +27.461011 +27.478094 +27.536503 +27.571334 +27.595810 +27.647092 +27.670602 +27.715157 +27.742063 +27.753585 +27.791647 +27.852919 +27.866272 +27.882589 +28.409828 +28.447191 +28.487650 +28.518220 +28.534304 +28.610860 +28.649788 +28.712525 +28.766338 +28.800770 +30.105531 +30.121049 +30.150985 +30.157712 +30.166603 +30.199837 +30.217552 +30.237832 +30.239963 +30.252584 +30.253283 +30.304565 +30.308894 +30.313090 +30.374329 +30.385351 +30.406363 +30.407895 +30.440462 +30.447089 +30.469034 +30.479090 +30.534368 +30.538930 +30.559576 +30.569633 +30.577259 +30.604032 +31.866801 +31.874194 +31.890444 +31.934733 +31.984717 +32.096238 +33.384216 +33.406960 +33.414619 +33.415717 +33.541658 +33.551748 +33.570263 +33.598235 +33.630969 +35.035663 +36.311985 +36.380716 +37.765130 +37.853142 +38.301893 +38.326602 +38.406721 +39.405721 +41.497095 +41.613478 +41.680478 +42.913510 +43.571485 +43.587935 +43.626763 +43.701022 +43.708015 +43.718737 +43.725664 +43.756899 +43.769254 +43.881574 +44.866988 +48.498120 +48.549302 +48.593258 +48.594357 +48.624360 +48.647737 +48.652366 +48.685066 +48.702948 +48.740344 +48.781170 +51.048234 +52.809071 +52.828652 +55.223921 +56.686357 +56.695481 +56.737306 +56.800343 +56.819257 +58.113695 +58.242499 +58.752755 +58.791083 +58.827181 +58.847061 +59.591416 +59.608465 +59.644129 +59.674033 +59.713027 +61.166372 +62.743261 +62.786684 +62.833903 +62.936201 +63.789280 +63.823479 +63.869600 +63.881554 +63.899770 +64.090312 +64.106696 +64.140595 +64.156346 +64.190079 +64.221314 +64.649652 +65.354680 +65.553448 +65.756744 +65.783884 +65.796637 +65.849751 +65.880287 +66.899400 +66.963336 +66.970196 +67.013786 +67.043989 +67.063303 +67.088411 +67.126906 +67.180619 +67.190509 +67.202330 +67.239693 +68.389242 +68.391440 +68.423242 +68.451147 +68.473425 +68.526039 +68.588909 +68.616382 +69.742588 +70.511684 +70.530565 +70.553376 +70.596932 +70.663399 +70.789173 +70.806856 +72.032162 +72.105089 +72.230697 +72.296265 +72.955471 +72.971422 +72.986574 +73.016277 +73.075851 +74.437155 +74.446679 +74.514910 +74.550242 +74.567358 +75.381943 +75.497527 +75.618139 +75.932258 +75.991233 +76.969520 +77.002920 +77.058997 +77.144012 +77.157732 +77.252337 +77.392397 +77.437885 +77.483272 +77.536719 +77.557332 +77.560762 +77.597924 +77.615473 +78.032989 +78.532422 +79.928791 +79.946107 +80.002051 +81.310508 +81.368483 +81.373811 +81.419166 +81.453398 +81.513571 +81.623461 +81.675210 +82.763554 +82.802415 +82.827589 +82.843540 +82.897686 +82.908775 +82.941942 +83.046004 +84.155693 +84.224092 +84.298184 +84.323525 +84.478504 +84.529919 +87.472407 +87.704075 +87.770308 +87.785360 +87.809969 +88.257521 +88.278899 +88.847464 +90.534475 +90.652057 +90.725017 +90.802107 +90.850126 +92.095446 +92.181526 +92.222052 +92.232142 +92.277697 +92.300773 +92.313594 +93.264076 +93.335371 +93.366973 +93.380359 +93.413693 +93.416157 +94.842829 +94.864840 +94.883655 +94.899172 +94.980558 +95.081224 +97.039963 +97.063206 +97.911157 +98.400168 +98.419582 +98.506495 +98.545922 +98.615286 +98.667700 +99.073894 +99.741092 +100.393539 +100.447718 +100.461271 +100.584481 +100.683083 +100.685081 +100.788644 +100.797601 +100.800898 +100.813053 +100.999999 +101.064734 +101.168230 +101.171128 +102.313784 +102.331832 +102.384147 +103.700895 +104.606356 +104.686009 +104.765463 +105.229831 +105.604190 +105.745116 +106.699261 +106.728098 +106.825634 +106.829297 +106.895497 +107.839286 +109.289401 +109.427596 +109.493131 +109.525032 +109.555768 +109.691698 +109.766191 +111.429958 +111.547940 +112.822331 +112.902917 +112.939081 +112.951502 +112.976244 +113.095325 +113.286933 +115.683268 +116.548701 +117.149400 +118.164084 +118.295486 +119.479168 +119.499214 +119.619394 +119.687992 +119.700846 +119.703510 +119.760053 +119.823590 +119.860120 +119.876270 +120.130982 +120.135244 +120.932680 +120.936043 +121.002976 +121.019692 +121.050528 +121.061884 +121.069243 +121.102210 +121.207571 +121.614297 +122.717859 +123.256753 +123.826083 +124.021321 +124.120955 +124.327748 +124.835107 +124.928180 +125.019788 +125.437071 +125.493348 +125.526814 +126.385088 +128.053052 +129.103967 +129.197407 +129.319384 +129.374829 +131.168134 +131.221147 +131.254947 +131.750085 +131.795273 +131.821813 +131.829172 +131.925476 +131.946222 +132.619714 +132.733767 +132.770197 +132.792774 +132.827440 +133.408158 +133.457176 +133.516450 +133.612554 +133.615884 +133.662037 +133.727405 +133.730835 +134.554777 +135.219245 +135.410421 +135.416648 +135.490241 +135.548915 +135.556008 +135.930533 +136.026937 +136.029667 +136.097033 +136.113250 +136.131133 +137.018911 +137.122940 +137.445850 +137.473156 +137.500861 +137.607155 +137.620042 +137.673156 +137.741221 +137.747248 +137.768327 +138.244783 +138.279715 +138.326502 +138.341853 +138.388773 +138.398263 +138.471623 +138.493235 +138.518676 +138.644750 +138.667094 +138.812482 +138.815246 +138.896698 +138.900494 +138.907254 +140.117675 +140.300426 +142.785538 +142.808648 +143.707482 +143.835587 +143.872916 +143.932756 +143.936053 +143.947741 +143.957332 +143.962826 +144.040482 +144.046010 +145.161626 +145.194560 +145.225962 +146.917302 +146.963523 +146.980239 +146.982404 +147.067552 +147.125960 +147.252100 +147.528890 +148.441576 +148.453631 +148.472978 +148.594523 +148.605213 +148.640710 +148.673311 +149.038013 +149.123128 +149.246271 +150.052597 +150.216966 +150.260989 +150.295720 +150.299517 +150.324192 +150.344272 +151.609306 +151.632915 +151.696119 +152.421459 +152.430051 +152.462751 +152.521226 +152.558189 +152.570344 +152.600980 +152.628619 +152.632681 +152.656657 +153.607539 +153.702743 +153.938940 +154.029083 +156.729447 +159.413327 +159.510730 +159.712361 +159.814525 +159.827179 +160.403436 +160.411461 +160.568038 +160.859413 +160.918087 +160.975264 +161.123648 +161.197275 +161.252153 +161.304734 +161.367737 +161.581956 +161.623048 +161.715256 +162.095709 +162.215622 +162.226444 +162.293011 +162.327610 +162.422881 +162.759444 +162.843727 +162.917020 +163.487582 +163.547422 +163.573762 +163.586550 +163.619683 +163.870099 +164.059743 +164.085583 +164.240761 +164.384351 +164.429572 +164.478890 +164.502466 +164.527275 +164.568567 +164.656379 +164.813688 +164.918083 +165.009425 +165.260574 +165.282985 +165.299868 +165.371463 +165.485682 +165.625708 +165.672162 +165.709858 +165.754213 +165.839295 +165.854013 +165.909158 +166.000333 +166.062937 +166.161172 +166.194373 +166.226074 +166.377955 +166.424409 +166.444988 +166.554745 +166.564902 +166.610822 +166.659707 +166.700266 +166.718148 +166.748385 +166.843256 +166.849217 +166.871328 +166.884182 +166.952847 +166.997102 +167.007259 +167.199600 +167.216749 +167.279653 +167.305594 +167.352880 +167.390908 +167.416516 +167.521444 +167.622077 +167.682450 +167.727838 +167.740691 +167.783415 +167.817381 +167.870228 +167.917947 +168.086012 +168.103628 +168.120544 +168.277454 +168.308190 +168.724440 +168.779385 +168.841156 +168.943054 +169.198699 +169.253810 +169.355175 +169.404826 +169.700496 +169.739890 +169.769028 +169.867662 +170.201994 +170.208921 +170.237259 +170.250379 +170.261368 +170.267629 +170.337825 +171.684277 +171.729598 +171.886608 +171.949045 +172.005489 +172.126734 +172.430930 +173.265128 +174.269456 +174.557268 +175.064993 +175.966790 +176.339084 +176.415841 +176.728295 +176.783440 +176.801788 +177.024298 +177.100922 +177.439017 +177.628194 +177.659995 +177.784804 +178.195060 +178.289665 +178.566621 +178.771916 +178.846441 +178.852235 +178.921033 +179.025828 +179.066587 +180.153733 +180.225294 +180.510975 +180.612806 +180.812207 +180.877475 +180.914904 +180.969416 +181.007445 +182.370314 +182.449701 +182.552698 +182.749867 +186.710203 +186.767878 +187.307505 +187.603509 +187.764381 +187.972306 +187.998347 +188.115030 +188.347264 +188.363048 +188.455556 +188.952858 +189.091752 +189.723220 +190.674435 +190.715394 +190.822153 +191.463312 +191.484257 +192.112362 +192.410530 +192.518722 +192.557317 +192.712495 +192.715025 +192.813360 +193.212194 +193.310729 +193.520885 +193.611794 +193.811794 +194.011328 +194.110062 +194.131907 +194.411893 +194.608830 +194.725746 +194.811627 +194.909695 +195.012492 +195.266938 +195.407930 +195.418020 +195.457014 +195.517520 +195.626677 +195.686817 +195.695176 +195.780623 +195.818485 +195.861709 +195.951153 +196.062574 +196.214755 +196.339764 +196.375961 +196.426310 +196.524212 +196.585984 +196.597173 +196.622647 +196.660010 +196.673796 +196.786750 +196.823080 +196.861941 +197.028607 +197.123912 +197.163905 +197.188148 +197.232270 +197.273562 +197.396672 +197.515753 +197.555280 +197.622047 +197.658877 +197.686982 +197.698870 +197.734468 +197.822946 +197.942826 +197.996938 +198.065836 +198.069998 +198.174427 +198.186682 +198.260175 +198.294440 +198.331969 +198.378123 +198.415086 +198.454980 +198.592042 +198.713954 +198.773261 +198.844024 +198.868366 +198.961240 +198.995705 +199.092775 +199.254280 +199.278722 +199.353147 +199.531535 +199.592041 +199.678522 +199.775891 +199.817416 +199.980752 +199.998701 +200.015418 +200.174458 +200.393606 +200.523209 +200.565301 +200.595870 +200.680385 +200.721311 +200.759939 +200.791208 +200.840092 +200.924008 +201.064135 +201.202796 +201.384081 +201.470594 +201.591107 +201.645286 +201.876388 +201.885512 +201.914184 +202.120610 +202.174789 +202.372225 +202.557706 +202.601596 +202.643820 +202.684579 +202.729234 +202.763267 +202.805758 +202.903227 +202.922874 +203.033996 +203.071725 +203.113483 +203.163899 +203.347915 +203.487942 +203.863366 +204.221974 +204.466995 +204.711983 +204.795932 +205.300427 +205.304623 +205.314347 +205.353208 +205.359169 +207.535956 +210.976579 +211.029193 +211.049872 +211.070884 +211.077844 +211.106149 +211.172017 +211.260228 +211.863391 +211.867620 +211.890997 +211.978709 +211.988999 +212.020900 +212.062625 +212.117836 +214.322097 +214.921497 +214.934350 +214.948736 +214.987531 +215.469515 +215.704912 +215.758426 +215.794756 +215.842974 +215.878039 +215.902714 +215.914802 +215.956794 +217.971777 +218.784530 +218.789192 +218.854160 +218.857357 +218.930484 +220.114232 +226.491615 +227.497908 +227.502736 +227.533972 +227.546992 +227.573998 +227.609230 +227.622616 +227.669369 +227.690948 +227.701004 +227.817887 +227.843095 +228.986251 +229.001902 +229.081855 +229.113490 +229.319584 +229.937566 +229.970832 +232.339428 +234.084748 +234.126073 +236.945917 +237.291538 +238.638889 +238.663964 +238.667394 +238.679948 +238.746281 +238.775152 +238.800860 +238.804490 +238.887074 +238.892602 +238.926068 +238.959734 +238.970557 +239.031429 +239.054639 +239.070257 +239.175418 +239.200527 +239.207653 +239.807619 +239.858868 +239.888338 +239.902924 +239.973819 +239.999194 +240.007985 +240.028531 +240.044482 +240.053972 +240.127932 +240.179180 +240.310216 +241.698693 +241.732192 +241.753105 +241.814077 +241.836188 +241.865859 +241.915975 +241.959998 +241.961430 +241.991167 +242.004154 +242.102522 +243.055135 +243.089401 +243.120569 +243.171552 +243.175914 +243.220036 +243.269887 +244.651637 +244.767021 +244.775380 +244.814241 +244.857864 +244.885070 +244.885270 +246.156897 +246.181639 +246.224063 +246.231688 +246.243710 +246.258362 +246.263656 +246.301752 +246.333220 +246.410310 +246.425295 +246.450037 +246.480872 +246.528158 +246.548038 +248.501183 +248.605346 +248.634550 +248.654896 +249.050933 +249.059991 +249.098985 +250.292823 +250.305277 +251.244604 +251.288293 +252.950863 +252.952561 +253.800712 +253.809969 +253.854358 +253.861618 +253.879500 +253.961984 +254.133013 +254.235210 +254.258720 +255.143434 +255.217594 +255.317760 +256.188821 +256.191852 +256.220956 +256.245165 +256.246164 +256.911731 +256.972670 +256.991418 +257.082826 +257.401041 +258.228580 +258.265143 +258.285523 +258.427114 +260.254219 +260.423050 +260.531574 +261.193545 +261.251221 +261.285187 +261.303335 +261.327478 +261.409995 +261.450288 +261.470668 +261.488217 +261.904134 +261.915023 +262.011027 +262.024413 +262.135469 +262.180490 +262.189914 +262.221949 +262.262575 +262.287017 +262.420617 +263.540929 +264.889146 +264.923711 +264.947920 +264.973628 +265.185349 +265.216918 +265.299835 +265.320014 +265.367334 +265.988645 +266.234066 +266.248618 +266.265901 +266.292508 +266.303896 +266.442924 +267.702430 +267.749416 +267.798900 +268.524640 +268.594403 +268.609122 +268.626871 +268.635562 +268.717081 +268.738825 +269.786876 +269.841089 +269.844619 +274.783175 +274.834957 +274.858400 +274.882409 +274.966558 +274.970021 +275.030061 +275.038053 +275.111446 +275.140917 +275.175416 +275.199658 +275.206385 +275.253205 +275.371353 +275.406151 +275.511113 +275.524600 +275.595562 +275.613710 +275.866624 +275.953570 +277.202953 +277.226862 +277.463858 +277.469353 +277.479310 +277.516572 +277.556166 +277.640948 +277.660495 +277.700288 +277.712077 +277.759263 +277.822599 +278.948639 +278.983670 +279.027393 +280.768584 +280.793026 +280.820299 +280.936282 +280.950568 +281.001384 +281.039279 +282.030620 +282.079871 +282.087996 +282.099718 +282.134683 +282.138113 +282.147403 +282.170347 +282.226791 +282.249768 +282.284799 +282.326657 +282.339012 +282.370314 +282.390427 +282.860556 +282.901915 +282.982401 +283.010773 +283.042308 +283.045771 +284.982932 +285.266748 +285.314034 +286.738108 +286.760952 +286.824055 +286.863716 +286.926286 +286.935677 +286.993619 +288.251527 +288.332745 +288.449462 +288.500644 +289.772504 +292.182092 +292.337337 +293.510496 +293.551321 +293.690848 +293.712061 +293.716756 +293.893412 +294.098274 +294.778560 +294.856182 +295.050554 +295.590380 +295.614922 +295.712158 +295.714889 +297.649020 +297.671031 +299.118615 +299.244323 +300.453612 +300.492973 +300.578820 +300.646852 +300.656043 +300.708191 +300.710588 +300.796269 +302.709787 +302.730433 +302.762601 +302.783413 +302.801629 +302.825538 +303.278651 +304.267261 +304.279682 +304.348081 +304.420941 +304.464730 +304.565796 +307.043782 +307.099893 +307.915909 +308.305020 +308.369821 +309.149308 +309.287669 +309.289601 +310.143979 +310.226496 +310.247076 +310.345078 +310.358198 +310.360529 +310.390399 +310.443579 +310.463159 +310.534754 +310.538817 +310.570652 +310.587568 +310.597392 +310.604418 +310.703985 +310.745244 +310.755300 +311.038783 +311.091797 +311.099855 +311.104384 +311.120501 +311.210178 +311.251470 +311.270684 +311.288566 +311.374547 +311.495726 +311.501120 +311.852036 +311.865722 +311.895426 +312.535785 +312.732654 +312.811242 +313.055764 +313.126826 +313.129057 +313.702317 +314.468583 +314.489429 +314.510941 +314.574477 +314.592393 +314.616668 +314.690861 +314.693691 +314.696688 +314.779572 +314.799086 +314.804314 +314.811107 +314.855629 +314.861856 +314.914171 +314.944440 +314.948137 +315.078406 +315.994756 +316.015501 +316.033883 +316.052398 +316.072178 +316.074076 +316.101282 +316.124159 +316.130486 +316.142041 +316.185997 +316.220629 +316.229687 +316.231186 +316.242341 +316.286697 +316.306843 +316.372344 +317.304445 +317.589193 +317.595020 +317.598617 +317.619296 +317.638077 +317.709939 +317.770012 +317.830684 +318.734813 +318.794853 +318.831416 +318.842671 +318.860121 +318.897949 +318.919561 +318.929451 +318.932681 +318.984230 +319.030750 +319.551762 +320.108604 +320.111368 +320.216596 +320.300379 +320.332980 +320.400712 +320.403309 +320.490988 +320.503509 +320.510302 +320.519193 +320.562017 +320.628317 +320.637042 +321.236242 +321.368143 +321.458187 +321.479965 +321.517094 +322.302841 +322.380230 +322.383261 +322.420190 +322.489321 +322.513630 +322.618092 +322.643434 +322.662148 +322.699111 +322.702474 +322.732944 +322.737473 +322.747496 +322.764146 +322.785358 +322.900343 +323.013996 +323.016493 +323.746496 +323.817225 +323.840036 +323.852390 +323.912263 +323.937438 +323.984491 +324.015860 +324.018823 +324.023685 +324.111764 +324.125050 +324.136439 +324.198244 +324.264611 +324.326316 +324.575533 +324.672902 +324.691517 +324.801740 +325.446894 +325.500241 +325.595778 +325.602904 +325.697643 +325.967306 +326.560612 +326.578661 +326.826346 +326.832507 +326.944295 +327.349956 +327.480858 +327.495743 +328.210694 +328.226012 +328.246591 +328.339066 +328.708729 +328.799471 +328.883221 +328.896574 +328.902335 +329.194776 +329.378425 +329.419684 +329.491812 +329.494076 +329.499571 +329.504166 +329.508428 +329.605564 +329.676394 +329.679457 +329.752251 +329.811725 +330.442726 +330.513289 +330.516353 +330.616652 +330.619283 +330.621115 +330.623679 +330.714721 +330.719316 +330.721015 +330.819250 +330.918983 +330.920615 +330.923712 +331.012156 +331.015120 +331.017285 +331.115087 +331.117817 +331.119782 +331.215187 +331.217118 +331.219116 +331.312989 +331.314787 +331.316585 +331.412922 +331.415786 +331.419216 +331.521347 +332.024943 +332.092375 +332.185748 +332.338995 +332.415718 +332.542891 +332.547453 +332.618249 +332.623011 +332.649184 +332.717649 +332.727173 +332.817283 +332.819181 +332.821812 +332.892441 +332.895038 +332.916717 +332.926374 +332.980486 +333.013387 +333.017582 +333.113120 +333.116417 +333.214119 +333.317482 +333.320446 +333.324875 +333.408258 +333.625474 +333.629803 +333.631801 +333.709956 +333.711721 +333.726739 +333.811854 +333.815450 +333.937029 +334.005926 +334.010888 +334.017382 +334.123975 +334.127938 +334.140592 +334.212619 +334.215084 +334.218713 +334.315849 +334.320378 +334.324674 +334.415849 +334.503928 +334.512985 +334.516782 +334.521344 +334.613085 +334.616349 +334.705559 +334.709922 +334.712353 +334.717581 +334.720211 +334.816282 +334.820711 +334.826405 +334.914084 +334.917447 +334.920045 +335.020744 +335.023807 +335.031799 +335.065965 +335.192472 +335.214716 +335.358972 +335.510687 +335.528769 +336.055874 +336.060436 +336.342021 +336.618012 +336.680616 +336.686343 +336.691305 +336.701994 +336.878151 +336.886942 +336.896799 +336.907921 +336.953209 +337.052044 +337.634095 +337.647781 +337.771291 +337.921374 +337.934494 +338.064397 +338.072656 +338.212149 +338.227367 +338.278683 +338.294400 +338.385309 +338.390637 +338.419841 +338.615612 +338.632229 +338.635226 +338.673188 +338.791403 +338.816011 +338.919275 +338.981746 +338.991036 +339.001959 +339.023837 +339.116111 +339.124270 +339.128599 +339.136158 +339.206587 +339.214113 +339.224236 +339.229398 +339.326867 +339.336091 +339.478382 +339.559534 +339.563863 +339.648911 +339.654172 +339.659101 +339.662464 +339.732894 +340.014079 +340.016576 +340.070056 +340.082710 +340.139786 +341.470221 +341.498393 +341.575949 +341.609149 +341.674517 +341.679412 +341.682709 +341.740218 +341.742882 +341.747410 +341.750008 +341.811879 +341.814910 +341.817773 +341.822136 +342.167557 +342.181276 +342.296194 +342.300623 +342.392132 +342.439451 +342.493663 +342.496794 +342.505485 +342.585871 +342.591499 +342.594096 +342.807549 +342.830493 +342.856867 +342.862261 +342.883473 +342.902254 +342.906750 +342.910246 +342.912877 +342.916240 +343.040017 +343.043446 +343.053536 +343.153403 +343.157332 +343.167722 +343.260529 +343.262993 +343.265990 +343.356267 +343.522567 +343.527728 +343.536320 +343.741148 +344.870751 +344.877344 +345.322332 +345.361593 +345.370051 +345.474446 +345.597357 +345.609478 +345.715472 +345.718735 +345.722831 +345.840713 +345.853134 +345.951302 +345.983903 +346.096057 +346.099654 +346.104116 +346.114239 +346.156364 +346.158994 +346.166653 +346.172914 +346.187999 +346.401119 +346.410709 +346.460926 +346.530989 +346.539514 +346.670682 +346.675977 +346.680373 +346.785934 +346.840412 +346.848005 +346.865387 +346.883869 +347.051568 +347.153865 +347.160658 +347.163855 +347.166386 +347.320998 +347.358028 +347.420665 +347.422829 +347.426193 +347.433286 +347.446472 +347.523395 +347.526526 +347.687231 +347.694824 +347.710042 +348.406178 +348.550734 +348.616002 +348.626924 +348.697387 +348.834150 +348.844140 +348.928622 +348.936381 +349.196021 +349.572611 +349.592757 +349.599484 +349.705111 +349.720463 +349.739011 +349.800916 +349.812504 +349.836014 +349.840143 +350.024259 +350.338944 +350.371345 +350.479103 +350.877538 +350.888161 +350.892190 +350.895020 +350.898184 +350.901913 +350.906009 +351.086329 +351.221260 +351.273408 +351.275706 +351.377304 +351.428986 +351.473441 +351.590890 +351.726921 +351.732316 +351.736545 +351.883631 +352.072142 +352.088725 +352.094253 +352.100580 +352.308605 +352.316731 +352.444869 +352.512135 +352.617063 +352.675804 +352.678868 +352.682897 +352.686927 +352.693687 +352.824256 +352.883929 +352.891056 +352.899081 +352.931249 +353.012534 +353.147233 +353.159554 +353.173207 +353.229617 +353.233646 +353.248864 +353.286327 +353.291155 +353.297515 +353.625287 +353.629783 +353.696083 +354.223988 +354.362316 +354.377568 +354.393785 +354.603575 +354.613099 +354.617461 +354.765013 +354.774703 +354.781730 +354.794017 +354.824720 +354.829748 +354.908603 +354.916994 +355.016628 +355.018393 +355.024054 +355.087624 +355.093518 +355.294350 +355.334943 +355.515928 +355.565112 +355.656854 +355.661083 +355.700011 +355.888422 +355.893916 +355.900210 +355.995282 +356.005238 +356.019457 +356.096514 +356.176001 +356.186290 +356.203740 +356.533077 +356.575135 +356.578897 +356.590219 +356.661182 +356.764745 +356.790386 +356.880695 +356.954455 +356.966310 +357.014628 +357.018957 +357.021554 +357.025217 +357.323552 +357.371005 +357.443099 +357.479729 +357.542033 +357.584757 +357.597045 +357.603305 +357.605803 +357.610065 +358.022919 +358.038903 +358.046029 +358.271437 +358.305502 +358.324417 +358.340301 +358.381793 +358.451789 +358.465276 +358.746927 +359.023517 +359.026181 +359.028945 +359.032974 +359.037237 +359.216524 +359.368372 +359.379527 +359.893813 +359.910962 +360.207931 +360.248591 +360.255451 +360.438401 +360.599639 +360.634671 +360.731341 +360.821184 +361.387917 +361.528576 +361.621150 +361.630774 +361.640731 +361.809162 +361.812925 +361.919918 +361.927810 +361.931606 +361.935902 +362.110793 +362.124346 +362.657213 +362.725844 +362.728242 +362.844326 +362.846690 +362.868102 +363.099770 +363.340662 +363.344425 +363.405964 +363.416453 +363.427675 +363.695374 +363.708694 +363.966369 +363.969966 +363.972097 +363.978124 +364.110492 +364.227108 +364.230105 +364.240228 +364.257911 +364.373728 +364.384417 +364.387614 +364.524211 +364.538563 +364.556046 +364.999801 +365.016751 +365.117717 +365.128106 +365.226808 +365.228972 +365.315885 +365.322212 +365.325742 +365.389112 +365.393407 +365.399601 +366.521145 +366.528704 +366.794905 +366.798667 +366.910156 +366.914884 +367.013219 +367.016483 +367.018614 +368.623607 +368.652545 +370.156040 +370.218877 +372.722305 +373.462963 +374.082576 +374.837454 +374.983175 +376.813376 +379.167320 +379.506047 +380.312340 +380.319833 +380.370615 +380.453732 +383.522227 +387.118794 +389.984592 +390.522387 +390.529779 +390.660215 +390.978330 +391.012962 +391.911496 +391.921453 +391.984290 +392.335838 +392.422118 +392.432441 +392.458915 +392.774366 +392.805934 +393.522650 +393.583489 +393.776329 +394.007764 +394.495909 +394.660911 +394.852985 +394.935736 +395.501536 +395.921682 +395.973597 +396.197939 +396.827442 +397.404764 +397.579522 +398.093941 +398.158709 +398.253614 +398.784982 +398.802631 +398.929904 +398.969797 +399.698601 +399.862670 +399.938761 +399.986946 +400.008658 +400.310089 +400.508990 +400.517815 +400.710788 +400.927205 +401.524440 +401.620011 +401.717047 +401.813651 +402.018712 +402.811652 +403.011618 +403.410685 +403.811218 +403.908221 +404.024138 +404.315446 +404.409619 +404.414980 +404.514247 +404.628799 +404.708686 +405.010884 +405.439088 +405.692235 +405.947879 +405.984176 +405.988838 +406.215078 +406.786739 +407.234225 +407.277648 +407.337921 +407.359533 +407.382010 +407.413612 +407.455004 +407.500492 +407.683908 +407.990801 +408.128796 +408.171853 +408.181710 +408.257001 +408.448776 +408.495729 +408.599092 +408.660064 +408.724733 +408.947943 +408.993297 +409.030194 +410.131824 +410.289733 +410.479843 +413.252234 +413.369217 +413.657961 +413.872979 +414.180205 +414.213172 +414.244075 +414.429289 +414.509242 +414.527691 +414.621530 +414.685699 +414.953464 +415.207743 +415.210374 +415.263554 +415.289928 +415.327224 +415.331153 +415.336248 +415.920530 +415.995988 +416.510473 +416.563353 +416.726456 +416.746903 +416.921528 +417.031285 +417.317298 +417.415134 +418.100781 +418.122592 +418.298616 +418.355326 +418.648999 +418.912435 +419.147500 +419.179368 +419.187926 +419.432548 +419.543370 +419.606707 +419.653426 +419.704409 +419.852594 +419.977768 +419.989390 +420.050462 +420.068711 +420.161085 +420.272307 +420.379733 +420.403342 +420.544867 +420.619459 +420.629683 +420.658787 +420.706039 +420.749529 +420.767445 +420.982862 +421.024288 +421.191387 +421.249729 +421.435243 +421.480431 +421.516561 +421.587624 +421.795183 +421.828216 +421.839072 +422.078166 +422.096881 +422.405838 +422.423687 +422.468608 +422.492052 +422.605305 +422.678798 +422.777766 +422.810133 +422.825318 +422.921722 +422.962980 +423.248661 +423.342767 +423.585657 +423.725350 +423.765544 +423.816026 +423.853689 +423.872536 +423.897545 +424.042600 +424.126582 +424.206968 +424.240235 +424.394447 +424.417757 +424.435606 +424.722086 +424.734973 +424.764843 +424.801373 +424.843631 +424.927314 +425.356251 +425.416791 +425.600940 +425.870503 +425.934805 +426.006600 +426.324182 +426.448425 +426.553819 +426.594678 +426.645727 +426.765740 +426.839933 +426.853120 +426.979660 +427.004302 +427.326079 +427.341664 +427.371501 +427.429942 +427.747591 +427.751420 +427.764774 +427.832140 +427.974131 +428.338832 +428.366704 +428.377827 +428.478659 +428.531706 +428.566638 +428.667270 +428.802635 +429.334303 +429.350786 +429.444759 +429.601468 +429.902500 +429.957379 +430.008561 +430.710991 +430.911424 +431.064337 +431.374693 +431.501533 +431.557610 +432.121146 +432.194639 +432.438995 +432.791375 +432.987879 +433.646852 +433.678887 +433.767132 +435.008423 +436.212917 +436.309354 +436.610486 +437.313182 +439.381579 +441.158666 +448.079172 +448.115469 +449.796986 +450.279869 +450.283000 +450.380935 +450.430186 +450.434348 +450.439776 +451.601546 +457.313629 +458.396245 +458.444164 +458.518889 +460.230009 +460.780125 +460.870002 +461.730940 +461.743428 +461.790980 +461.925312 +462.482821 +462.562508 +465.304430 +465.456111 +466.386380 +466.569031 +466.617116 +468.874656 +468.914050 +468.982914 +469.900030 +470.576752 +470.616412 +471.619475 +471.625369 +472.792334 +472.889204 +473.001325 +473.006620 +473.090203 +473.091069 +475.536221 +475.545412 +475.776714 +475.864559 +475.949541 +476.005018 +476.025798 +476.028095 +476.077879 +476.129294 +478.209712 +478.231656 +478.259462 +478.267054 +478.290864 +478.326961 +478.343844 +479.046840 +479.174179 +479.277043 +483.576439 +483.793356 +484.300814 +484.378770 +484.678803 +484.696452 +485.248399 +485.301579 +485.394653 +485.447300 +485.454659 +485.457390 +485.463284 +485.467447 +485.737243 +485.753660 +485.771908 +486.120859 +486.972740 +487.025687 +487.654557 +490.270639 +490.284458 +490.296479 +490.301807 +490.350226 +490.352423 +490.371038 +490.379996 +490.437338 +490.465976 +490.479063 +490.487588 +490.504205 +490.527781 +490.634941 +490.663479 +492.382291 +492.406267 +492.425115 +492.542165 +493.843629 +493.856482 +493.923415 +493.964941 +494.613958 +494.658546 +495.410127 +496.951984 +497.037398 +497.065770 +497.150052 +498.170997 +498.239428 +498.241893 +499.473193 +499.488045 +499.503563 +499.589777 +500.516582 +500.667831 +501.988176 +502.051779 +502.063867 +502.734928 +504.365230 +506.052707 +506.169923 +506.187339 +506.345048 +506.879646 +506.979679 +507.087838 +507.914510 +508.005919 +510.521035 +510.574381 +510.599822 +510.661128 +510.673549 +510.674448 +510.734221 +510.755333 +510.781174 +510.844144 +510.861494 +511.247807 +511.296392 +511.329991 +512.004283 +512.089897 +512.239648 +514.146172 +515.294023 +516.649533 +516.814402 +517.491657 +517.531817 +517.548766 +517.566049 +517.601147 +517.616798 +517.631284 +517.661420 +517.682399 +517.707241 +517.717065 +517.740674 +517.764550 +517.787694 +517.826655 +517.856359 +517.856925 +517.874507 +517.911736 +518.403145 +518.406108 +518.427454 +518.455292 +518.457856 +518.482665 +518.496917 +518.514233 +518.535246 +518.544137 +518.566714 +518.630384 +518.653061 +518.762185 +518.766381 +518.800813 +518.855592 +518.864316 +518.909604 +519.757222 +519.764382 +519.788891 +519.820959 +519.832580 +519.882364 +519.892187 +519.946067 +520.068910 +520.104675 +520.162750 +520.165714 +520.188924 +520.645600 +520.678933 +520.698514 +520.771774 +520.794517 +520.823422 +520.863582 +520.907504 +520.929882 +520.966545 +521.065413 +522.041269 +522.087523 +522.136874 +522.145965 +522.166311 +522.208003 +522.222255 +522.232645 +523.231178 +523.235674 +523.255654 +523.358185 +523.419956 +523.423619 +523.438371 +526.880492 +527.980291 +529.428941 +530.777425 +530.807694 +532.286014 +532.310257 +532.332235 +532.351149 +533.023976 +536.368261 +536.380083 +536.410020 +536.482347 +536.493969 +536.526370 +536.546983 +536.587509 +538.091570 +538.174753 +539.461199 +539.528365 +539.534425 +539.607619 +539.615711 +539.682744 +539.692634 +539.703789 +539.741385 +539.800359 +539.881511 +539.955937 +540.547645 +540.822469 +541.526964 +541.542282 +541.596894 +541.665259 +541.670654 +541.718473 +541.763927 +541.788669 +541.842582 +541.884207 +541.922668 +543.251205 +543.372916 +543.412710 +543.481907 +543.529360 +544.646275 +544.684104 +544.692595 +544.727161 +544.756964 +544.848240 +544.917937 +545.906114 +545.932088 +545.969118 +545.996890 +546.040413 +546.084635 +546.105448 +546.211375 +546.298688 +546.312141 +546.356630 +546.399287 +546.419866 +547.663122 +548.227424 +548.315536 +549.217832 +549.536613 +550.021728 +550.611770 +550.665084 +550.719363 +550.752097 +552.428918 +552.734645 +552.803044 +554.240971 +554.243968 +554.286059 +555.247164 +555.307370 +555.325419 +555.417427 +555.835841 +557.018357 +557.021920 +557.139703 +560.569736 +564.540628 +564.600634 +564.651283 +564.739562 +565.257776 +565.413987 +565.419614 +566.014519 +566.705594 +566.708025 +566.745454 +566.797901 +566.836962 +566.950515 +566.981284 +566.987412 +567.457208 +567.571294 +567.585213 +569.109721 +569.212984 +569.297433 +571.518576 +571.716678 +571.790937 +571.802525 +571.884576 +571.893867 +571.919608 +571.933860 +571.958336 +572.268825 +572.381679 +572.790469 +572.842484 +572.859134 +573.355038 +573.389536 +573.428431 +573.548611 +573.613546 +573.622603 +573.705087 +573.721904 +574.215143 +574.317741 +574.369256 +574.395563 +574.410215 +574.476415 +574.593798 +574.620837 +574.807817 +575.921668 +575.931126 +575.969754 +576.020336 +576.043447 +576.096593 +578.901153 +578.919634 +579.821898 +580.610575 +580.674844 +580.769016 +582.198985 +582.225025 +582.738178 +582.795288 +582.834982 +582.841209 +582.976906 +584.275639 +584.320661 +584.701480 +584.725323 +584.839375 +585.628852 +585.807972 +585.878701 +585.976337 +585.977269 +586.344668 +586.359920 +586.444868 +586.509304 +586.540939 +587.271341 +587.293718 +587.320292 +587.322456 +587.351161 +587.439406 +587.510668 +587.640471 +589.038339 +589.057686 +589.548262 +590.254455 +590.306636 +590.474135 +590.639103 +590.642000 +590.692083 +590.816559 +590.821820 +590.905969 +592.392248 +592.420387 +592.468771 +592.480693 +592.528179 +593.638534 +594.117921 +594.320818 +595.521316 +595.543360 +598.641659 +598.801166 +600.139826 +600.154911 +600.176556 +600.209490 +601.345020 +601.419012 +601.442089 +601.680451 +601.728736 +602.526537 +602.554975 +603.016213 +603.018711 +603.678950 +603.966762 +603.979016 +604.201494 +604.217944 +604.251943 +604.979914 +605.025036 +605.028832 +605.082612 +605.321706 +605.349211 +605.421106 +605.430530 +605.453607 +606.332028 +606.359500 +606.434458 +606.452307 +606.649510 +606.673186 +606.695930 +607.574084 +607.769489 +607.796062 +607.843215 +607.970088 +607.990301 +608.446578 +608.451539 +608.614743 +608.683474 +608.692565 +608.715042 +608.737220 +608.767223 +608.805618 +608.882974 +608.889534 +608.919538 +608.935655 +609.379144 +609.401389 +609.479743 +609.496893 +609.500090 +609.611878 +610.229793 +610.316672 +611.885569 +611.960194 +612.042645 +612.057996 +612.098422 +612.187799 +612.232455 +612.234919 +612.240080 +612.257763 +612.268652 +612.376477 +612.420233 +612.556597 +612.580107 +612.645941 +612.664222 +612.671582 +612.703783 +612.774878 +612.889464 +613.225660 +613.303716 +613.310242 +613.320499 +613.413373 +613.417002 +613.419000 +613.423196 +613.460825 +613.503882 +613.512906 +613.599453 +613.608078 +613.612373 +613.706579 +613.713972 +613.812773 +613.907112 +613.912939 +613.915303 +613.995756 +614.015437 +615.184799 +615.539311 +615.553830 +616.361488 +616.530119 +616.676639 +616.728654 +616.766350 +617.423625 +617.840008 +620.212933 +621.737840 +621.930713 +622.817792 +622.957785 +624.141800 +624.246196 +624.275167 +624.282659 +624.367141 +625.045495 +625.122985 +625.241799 +625.279694 +625.283524 +625.286321 +625.297144 +625.360913 +625.671968 +625.676530 +625.999807 +626.065774 +626.261745 +626.338834 +626.444895 +626.564974 +626.568737 +627.494511 +627.607531 +627.710328 +627.804833 +627.827078 +627.887018 +627.907198 +627.990414 +628.014424 +628.025945 +628.114457 +628.992944 +629.019717 +630.044392 +630.217518 +630.236666 +631.081853 +631.115086 +631.160774 +631.167934 +631.242292 +631.280787 +631.344224 +631.406794 +632.414419 +633.314452 +633.360772 +633.364335 +636.152944 +636.167795 +636.782913 +636.793636 +636.866563 +636.894801 +637.177884 +638.041553 +638.151277 +638.253108 +638.523371 +639.642617 +640.880345 +641.045846 +641.054437 +641.519905 +641.580710 +641.638786 +641.699458 +642.050840 +642.097526 +642.121136 +642.124966 +642.210880 +642.286038 +642.993263 +643.041215 +644.617637 +646.465021 +646.481638 +647.492959 +647.577774 +647.706379 +647.724694 +648.763753 +649.130620 +649.193124 +649.245471 +649.288994 +649.375674 +649.538545 +649.558624 +649.584066 +649.667715 +649.690026 +649.732750 +649.983333 +650.457025 +650.465916 +650.558224 +650.670645 +650.739576 +651.653394 +651.727953 +651.765515 +651.792921 +651.827720 +651.892788 +651.906208 +651.924090 +651.956924 +658.279828 +658.340034 +658.723084 +659.644329 +659.752554 +659.784888 +659.852620 +659.939866 +659.953919 +659.968005 +659.989783 +660.063775 +660.097675 +660.211161 +660.673965 +660.698041 +660.782589 +660.862176 +660.906166 +661.325579 +661.799571 +661.842828 +661.974896 +662.068003 +662.108962 +662.396907 +662.453217 +664.461440 +664.625010 +664.698370 +665.768365 +667.079120 +667.100865 +667.163868 +667.223575 +667.317581 +667.325307 +667.463668 +668.728236 +668.763367 +668.817746 +668.923174 +669.932031 +671.156572 +672.552874 +672.600793 +672.660033 +673.260799 +673.983742 +674.067391 +674.597227 +675.420004 +675.452305 +675.455568 +675.528129 +675.576347 +675.763460 +675.804819 +676.636453 +676.696393 +676.716206 +676.762893 +676.803952 +676.914808 +676.949573 +677.073748 +677.148207 +677.356066 +677.995692 +678.010644 +678.137983 +678.237617 +678.241813 +678.338383 +678.343444 +678.438183 +678.441013 +678.539115 +678.540913 +678.640314 +678.741446 +678.745408 +678.942644 +679.140580 +679.233487 +679.339447 +679.385135 +679.399354 +679.539380 +680.041611 +680.141211 +680.239513 +680.340445 +680.440412 +680.440645 +680.539313 +680.639845 +680.645273 +680.741277 +680.841477 +680.846872 +680.941577 +680.945606 +681.142775 +681.242842 +681.688762 +681.703747 +681.726225 +681.733084 +681.763188 +681.763987 +681.794190 +681.887363 +681.912671 +681.931386 +681.978172 +685.651662 +685.698282 +687.378134 +687.381630 +687.502309 +687.518360 +687.542869 +687.580032 +693.472800 +693.776096 +693.780458 +693.782390 +694.070335 +694.085087 +694.093512 +694.408463 +695.206331 +695.335768 +696.468501 +699.418781 +699.484315 +699.495371 +701.304826 +701.330667 +701.351879 +704.688906 +704.843185 +705.482245 +705.621139 +706.359433 +706.864927 +706.878514 +706.899526 +707.040985 +707.173852 +707.299093 +708.180644 +708.205186 +708.208749 +708.349774 +708.354370 +708.444280 +708.531326 +708.534789 +708.537786 +708.541083 +708.620004 +709.610179 +709.699490 +709.722534 +709.731225 +709.919503 +709.975181 +709.984272 +709.989133 +710.104918 +710.219303 +711.098257 +711.112909 +711.233521 +711.237584 +711.239915 +711.249006 +711.314074 +711.316405 +711.324230 +711.406115 +711.416105 +711.886434 +711.987966 +712.015172 +712.025961 +712.064256 +712.102518 +712.182671 +712.185601 +712.202584 +712.218435 +712.276943 +712.511209 +712.863956 +712.951302 +712.959394 +712.981971 +712.996623 +713.141744 +713.239280 +713.340013 +713.344641 +713.440345 +713.448071 +713.540612 +713.541977 +713.544708 +713.641311 +713.644008 +713.645940 +713.741244 +713.745473 +713.841178 +713.845540 +713.941810 +714.041977 +714.141310 +714.241543 +714.242243 +714.341610 +714.345506 +714.441310 +714.442875 +714.446572 +714.540844 +714.543608 +714.640777 +714.643341 +714.741210 +714.743941 +714.841543 +714.843741 +714.941609 +714.945605 +715.041976 +715.045838 +715.047803 +715.141975 +715.147570 +715.242242 +715.243807 +715.247636 +715.347170 +715.441742 +715.446737 +715.541376 +715.544373 +715.641109 +715.643407 +715.739910 +715.742374 +715.840643 +715.844805 +716.042241 +716.142940 +716.242507 +716.341475 +716.441142 +716.540809 +716.550466 +716.641175 +716.646003 +716.740942 +716.745071 +716.840842 +716.843339 +716.941308 +716.944704 +717.041208 +717.141740 +717.241973 +717.244005 +717.246069 +717.342073 +717.347534 +717.442073 +717.444937 +717.541573 +717.545503 +717.641740 +717.645969 +717.741640 +717.748067 +717.841939 +717.941773 +718.046002 +718.808838 +719.255558 +719.414632 +719.424189 +719.566447 +719.644568 +719.755591 +719.912733 +719.924422 +720.491088 +720.626086 +720.630748 +720.760518 +720.767777 +720.909968 +720.912965 +720.930847 +721.040737 +721.058453 +721.080531 +721.165180 +721.169975 +721.203608 +721.882795 +721.970773 +721.982395 +722.005405 +722.014663 +722.082861 +722.090387 +722.450027 +722.466976 +722.507036 +722.665378 +722.776933 +722.842168 +722.905637 +722.945864 +722.963713 +723.038604 +723.044898 +724.308566 +725.445994 +725.530510 +725.725681 +725.770603 +725.805668 +726.792214 +727.273066 +727.619552 +727.711194 +728.259478 +728.304067 +728.332672 +728.383654 +728.456048 +728.469501 +728.611393 +728.664839 +728.679558 +728.713990 +728.739131 +728.741396 +728.745425 +728.866138 +728.885318 +728.902901 +728.937899 +729.523013 +729.962207 +729.997538 +730.373429 +730.475493 +730.480022 +730.493675 +730.619849 +730.823278 +731.096205 +731.108893 +731.123644 +731.126042 +731.153315 +731.585416 +731.714986 +731.744290 +731.763138 +731.774193 +731.954646 +732.148785 +732.151349 +732.164070 +732.371062 +732.513653 +732.631901 +732.818481 +732.825075 +733.238028 +733.308291 +733.360972 +733.366200 +733.368531 +733.678387 +733.687212 +733.951813 +734.024041 +734.027737 +734.172160 +734.194737 +734.221976 +734.541390 +734.559106 +734.586079 +734.715549 +734.894303 +734.902528 +734.969195 +735.008589 +735.120277 +735.287010 +735.292705 +735.436028 +735.495934 +735.538558 +735.584579 +735.588775 +735.605591 +735.677320 +735.680816 +735.692071 +736.136160 +736.225870 +736.232098 +736.238924 +736.290439 +736.294568 +736.399963 +736.408188 +736.411152 +736.494768 +736.516280 +736.544918 +736.997665 +737.012849 +737.154807 +737.156839 +737.158737 +737.162133 +737.262499 +737.264797 +737.315680 +737.318976 +737.393735 +737.398996 +737.790138 +737.834227 +737.853008 +737.967094 +738.038656 +738.043384 +738.325735 +738.330364 +738.332728 +738.336491 +738.419042 +738.422438 +738.426001 +738.428532 +738.494932 +738.626434 +738.637190 +738.639821 +738.705888 +738.714113 +738.941652 +739.038788 +739.041885 +739.477083 +739.493233 +739.658301 +739.676150 +739.707952 +739.761664 +739.800159 +739.842817 +739.851841 +739.876117 +740.032127 +740.038221 +740.041751 +740.306852 +740.339686 +740.356769 +740.386905 +740.540485 +740.563595 +740.585173 +740.658866 +740.872286 +740.987770 +740.994297 +740.997827 +741.040418 +741.041916 +741.047178 +741.234091 +741.241683 +741.244547 +741.255403 +741.656534 +741.680211 +741.755902 +741.887104 +741.891033 +741.900923 +741.979711 +741.986837 +742.039185 +742.041449 +742.149508 +742.155801 +742.157899 +742.162761 +742.705551 +742.867822 +742.888534 +742.947642 +742.952903 +742.962694 +743.037052 +743.039150 +743.044012 +743.188101 +743.278944 +743.282407 +743.284538 +743.287468 +743.289966 +743.378877 +743.383339 +743.387269 +743.461861 +743.471085 +743.473216 +743.993029 +744.002386 +744.006715 +744.075247 +744.080375 +744.081907 +744.085270 +744.162992 +744.462126 +744.611077 +744.633787 +744.666521 +744.713707 +744.772915 +744.774813 +744.776911 +744.946874 +744.949338 +745.081240 +745.085202 +745.248905 +745.368918 +745.373247 +745.379241 +745.513807 +745.541346 +745.821399 +745.828025 +745.923363 +746.328458 +746.396590 +746.403416 +746.419666 +746.473180 +746.475377 +746.478641 +746.574545 +746.577375 +746.669650 +746.715504 +746.736316 +746.830888 +747.541177 +747.544607 +747.548536 +747.551833 +747.659992 +747.677607 +747.727990 +747.837747 +747.848869 +747.912672 +747.920098 +747.928689 +747.937147 +748.138579 +748.141942 +748.239844 +748.242941 +748.246738 +748.340211 +748.342175 +748.439878 +748.441642 +748.443574 +748.446071 +748.540444 +748.542242 +748.640044 +748.740244 +748.741509 +748.743607 +748.746171 +748.840177 +748.841742 +748.843873 +748.940410 +748.941842 +748.945804 +748.948102 +749.040909 +749.043640 +749.046370 +749.140476 +749.142508 +749.240376 +749.243706 +749.340909 +749.342441 +749.346836 +749.352531 +749.440543 +749.442574 +749.540676 +749.541442 +749.640476 +749.644971 +749.740609 +749.745970 +749.750632 +749.840709 +749.843173 +749.845637 +749.940942 +750.040509 +750.043739 +750.140542 +750.142040 +750.240941 +750.247168 +750.341308 +750.343705 +750.346136 +750.442240 +750.540342 +750.543239 +750.547634 +750.639842 +750.645070 +750.740508 +750.742939 +750.746136 +750.840108 +750.842506 +750.847268 +750.940541 +750.941307 +750.942139 +750.943938 +751.040175 +751.042772 +751.047501 +751.140807 +751.240541 +751.242206 +751.243138 +751.340507 +751.344004 +751.440341 +751.540674 +751.542871 +751.640707 +751.740607 +751.743038 +751.745535 +751.840041 +751.841173 +751.842005 +751.940041 +751.944336 +751.948732 +752.040140 +752.140440 +752.144070 +752.240240 +752.244336 +752.342471 +752.346567 +752.440306 +752.440773 +752.442438 +752.445901 +752.540773 +752.542471 +752.640839 +752.642204 +752.645468 +752.740073 +752.742504 +752.746267 +752.840972 +752.842870 +752.940306 +752.942604 +752.949364 +753.040339 +753.041838 +753.046933 +753.049030 +753.759553 +754.262083 +754.368110 +754.382695 +754.642802 +754.667610 +754.709335 +754.857986 +755.017760 +755.252392 +755.362781 +755.460117 +755.486324 +755.505538 +756.082094 +756.094315 +756.157819 +756.163912 +756.284225 +756.288288 +756.444199 +756.458451 +756.548860 +756.552024 +756.585990 +756.588654 +756.604471 +756.626283 +756.889786 +757.122686 +757.130112 +757.139802 +757.153988 +757.231677 +757.239969 +757.311430 +757.893048 +757.946395 +757.968872 +757.972469 +758.038603 +758.040700 +758.669438 +758.759115 +758.788818 +758.952821 +759.497609 +759.689450 +759.706300 +759.892713 +760.294478 +760.831507 +760.876062 +761.040964 +761.116122 +761.171933 +761.189016 +761.257447 +761.370567 +761.594809 +761.656048 +761.767603 +761.785951 +761.842062 +761.864040 +761.878126 +761.943860 +762.669301 +762.777559 +762.838698 +762.893909 +763.220782 +763.265937 +763.296706 +763.353449 +763.403732 +763.499203 +763.528008 +763.619183 +763.692643 +763.705630 +763.843159 +764.092010 +764.126775 +764.136732 +764.150784 +764.177091 +764.198636 +764.397837 +764.408759 +764.775492 +764.783584 +764.857011 +764.921613 +764.951716 +765.041326 +765.137763 +765.141459 +765.578522 +765.585715 +765.593340 +765.599667 +765.680686 +765.699134 +765.730470 +765.769830 +765.782518 +765.795838 +765.855844 +765.858541 +765.880519 +766.050416 +766.118348 +766.139860 +766.406526 +766.925007 +767.178787 +767.226805 +767.232466 +767.345120 +767.366332 +767.409223 +767.422609 +768.268729 +768.502961 +768.510820 +768.515582 +768.635295 +768.729301 +768.861569 +768.965665 +768.969894 +769.127969 +769.303793 +769.500796 +769.516213 +769.734395 +769.740223 +770.053342 +770.245217 +770.257871 +770.317778 +770.321607 +770.606988 +770.613548 +770.684078 +771.197264 +771.442019 +771.639288 +771.916744 +771.987640 +771.989904 +771.994266 +772.162165 +772.500127 +772.646946 +772.650310 +772.738521 +773.038987 +773.042151 +773.201225 +773.257768 +773.270589 +773.343882 +773.363496 +773.438620 +773.455837 +774.038020 +774.186738 +774.242383 +774.247444 +774.310781 +774.384807 +774.402156 +774.408350 +774.412612 +774.476049 +774.496029 +775.041716 +775.160597 +775.293031 +788.836940 +798.352948 +798.486781 +801.589009 +801.882814 +803.523838 +803.982812 +804.047048 +804.322339 +804.565396 +804.747913 +805.383843 +805.415012 +805.471456 +806.454438 +807.444814 +808.185073 +808.226564 +808.284873 +808.438486 +808.502322 +808.721003 +809.165791 +809.710712 +810.167521 +810.237884 +811.495559 +811.533987 +811.629991 +811.673148 +812.537882 +813.176043 +813.587931 +813.623362 +813.645207 +814.424460 +814.525060 +814.585266 +814.845539 +814.981003 +815.007876 +815.312904 +815.529487 +815.573577 +815.660923 +815.716966 +815.739577 +815.770679 +815.909607 +816.106077 +816.147702 +816.208508 +816.311305 +816.355327 +816.537145 +818.012868 +818.138476 +818.238076 +818.338509 +818.341073 +818.437909 +818.538242 +823.549027 +826.472334 +827.606765 +833.481584 +833.720778 +838.217577 +839.147746 +839.255038 +839.398961 +839.571688 +839.588071 +839.612614 +839.632294 +839.658135 +840.806885 +841.264094 +841.299658 +841.309815 +841.595695 +841.738386 +841.761696 +841.967656 +841.977513 +842.044413 +842.248708 +842.327729 +842.350673 +842.419903 +842.661994 +842.864791 +842.995561 +843.165157 +843.721600 +843.952836 +843.989033 +844.170784 +844.179709 +844.491363 +844.516438 +844.682805 +844.717404 +844.782006 +844.964257 +845.615105 +845.890762 +846.005548 +846.185934 +846.484435 +846.555863 +846.630422 +846.735117 +846.773779 +846.849536 +846.944874 +846.976442 +847.471647 +847.506545 +847.826425 +847.888496 +848.010474 +848.220097 +848.444939 +848.476974 +848.551799 +848.689028 +848.860523 +848.894389 +849.012604 +849.187196 +849.335181 +849.359990 +849.434282 +849.533516 +849.647602 +849.714402 +849.897751 +849.922993 +849.945004 +850.018064 +850.020928 +850.057492 +850.104977 +850.141174 +850.249533 +850.284564 +850.355860 +850.417664 +850.488826 +850.522393 +850.632982 +850.669945 +850.937810 +851.009206 +851.252395 +851.269512 +851.353594 +851.409205 +851.549665 +851.598582 +851.659788 +852.188159 +853.138774 +853.238874 +853.338840 +853.341704 +853.438574 +853.540672 +853.640105 +858.472568 +868.373224 +868.496800 +868.589374 +868.593137 +868.745385 +872.960665 +873.046047 +873.071821 +873.480279 +875.841981 +875.864958 +875.874649 +875.903053 +875.934955 +875.984405 +877.295726 +877.315939 +877.348174 +877.384237 +877.430724 +878.859794 +878.957662 +880.193359 +886.299646 +886.322823 +886.361251 +886.388324 +886.571141 +886.673472 +886.709836 +886.716329 +887.214431 +889.310100 +889.334775 +889.401308 +889.945963 +890.798576 +891.771669 +891.785389 +891.795945 +891.824350 +892.025315 +892.103670 +892.171202 +892.216757 +892.324682 +893.256549 +893.259779 +893.291215 +893.317688 +896.244458 +897.595406 +903.178151 +903.271791 +903.346649 +903.360402 +903.404225 +903.460835 +903.471624 +904.835725 +904.885742 +904.986707 +904.998895 +906.314645 +906.456836 +906.532793 +907.783807 +909.005684 +909.034955 +909.083606 +910.280875 +910.299389 +910.350205 +910.374448 +912.365788 +912.450636 +913.173879 +914.892858 +914.900117 +914.958326 +915.042042 +915.510107 +915.515568 +915.543906 +915.555761 +915.567050 +915.579071 +915.603613 +915.623893 +915.639511 +915.681435 +916.451764 +916.475807 +917.633082 +918.564349 +918.625522 +920.151727 +920.170975 +920.192320 +920.303941 +920.324854 +920.347931 +921.439938 +921.468709 +921.531646 +921.544267 +921.564280 +921.589654 +921.601909 +921.617560 +921.655522 +921.656987 +921.680464 +921.696514 +921.733910 +921.785825 +921.891253 +923.005437 +923.062647 +923.087921 +923.108401 +923.167775 +923.338437 +923.404405 +923.421854 +923.540002 +923.640035 +924.040834 +924.276931 +924.286621 +924.295579 +924.490551 +924.511130 +925.375465 +925.392148 +925.411995 +925.424316 +925.483523 +925.522051 +925.565175 +925.583124 +925.607732 +926.845194 +927.767837 +928.744259 +928.767536 +928.825711 +928.828608 +928.952784 +929.015321 +929.743126 +929.857578 +929.877625 +929.882420 +929.924045 +929.948454 +929.992310 +930.026576 +930.087581 +931.121280 +931.223611 +931.337830 +931.363338 +931.441093 +931.496171 +931.550917 +932.113553 +932.138428 +932.741558 +932.777788 +932.800532 +932.846520 +932.900632 +932.923576 +933.017482 +937.983711 +938.025003 +938.052542 +938.164696 +938.187340 +938.207120 +938.240021 +938.316311 +938.403757 +938.694632 +938.833327 +938.882011 +938.901658 +940.078181 +940.121970 +940.292000 +941.878445 +943.425397 +944.626395 +944.641546 +944.647940 +944.662325 +944.697657 +944.755965 +944.781473 +944.832655 +944.856864 +944.889731 +947.584267 +947.653498 +947.699419 +947.818866 +947.859259 +947.943641 +948.924925 +948.961489 +949.002281 +949.140276 +949.171678 +949.195255 +949.275308 +949.282101 +949.351931 +949.399284 +949.460223 +949.527855 +950.206309 +950.247701 +950.266249 +950.285796 +950.390059 +950.422193 +950.453662 +950.494354 +951.542172 +951.667147 +951.702778 +951.737743 +951.751562 +952.858821 +952.900579 +952.938874 +952.993552 +953.793119 +953.949829 +953.985593 +954.047964 +954.050561 +954.087424 +954.166678 +954.211900 +958.055186 +958.080427 +958.237903 +958.334639 +958.338702 +958.438868 +958.640067 +958.740933 +958.841299 +959.040699 +959.241898 +959.740998 +961.245259 +962.150153 +963.926908 +963.976425 +965.586081 +966.128404 +967.053012 +967.084214 +967.951779 +967.992072 +973.445114 +973.937754 +974.035989 +974.908049 +977.184837 +978.694626 +978.771382 +980.380372 +980.432919 +980.447837 +980.509542 +980.546705 +981.596055 +981.667750 +984.840540 +984.858322 +984.879468 +984.912601 +986.042570 +986.077735 +986.146566 +986.332713 +986.391022 +987.618027 +987.627850 +987.774670 +987.778732 +987.795582 +987.820524 +987.902875 +987.996548 +988.040504 +988.084959 +988.176168 +988.188988 +988.272039 +989.058818 +990.107668 +990.125750 +990.148527 +990.184891 +990.239236 +990.259882 +990.324118 +990.330045 +990.382626 +990.410365 +990.484191 +990.487754 +990.577231 +993.139799 +993.239799 +993.242197 +993.339067 +993.439333 +993.526945 +993.542363 +993.640265 +993.740465 +993.842263 +993.941031 +994.041097 +994.143528 +994.659045 +996.330872 +996.335800 +996.390978 +998.549185 +999.247552 +999.306227 +999.350183 +1000.577021 +1000.595503 +1000.603894 +1000.649382 +1000.665666 +1000.705826 +1000.711387 +1000.729502 +1002.389807 +1002.807788 +1002.980649 +1008.104620 +1008.104986 +1008.154669 +1008.337120 +1008.372851 +1008.451572 +1008.470820 +1008.481176 +1008.569454 +1008.617340 +1008.716074 +1008.965458 +1008.970919 +1008.978245 +1011.012575 +1011.044743 +1011.052102 +1011.103318 +1011.149771 +1011.198789 +1011.229392 +1011.230291 +1011.251503 +1011.296824 +1011.314173 +1011.364889 +1012.604682 +1012.635418 +1012.643876 +1012.744342 +1012.759760 +1012.850203 +1012.895091 +1012.896756 +1013.066186 +1013.337315 +1013.788796 +1013.895623 +1013.926525 +1014.024327 +1014.037780 +1014.093824 +1014.653464 +1014.864420 +1015.609241 +1015.685464 +1015.701182 +1015.766017 +1015.789527 +1016.064818 +1017.244437 +1017.264784 +1017.274274 +1017.322925 +1017.348400 +1017.376339 +1017.390691 +1017.423824 +1017.427587 +1017.461120 +1017.509039 +1017.572176 +1017.634114 +1017.684297 +1018.611402 +1018.632881 +1018.635378 +1018.650430 +1018.743537 +1018.764349 +1018.790123 +1018.804642 +1018.843370 +1018.844669 +1018.889291 +1019.487725 +1019.593453 +1019.610868 +1019.806706 +1019.810136 +1020.636675 +1020.680631 +1020.747497 +1020.882496 +1023.330279 +1026.548957 +1026.637135 +1028.210327 +1028.440297 +1028.641162 +1029.403033 +1029.426210 +1029.434035 +1029.442893 +1029.452151 +1029.466270 +1029.471465 +1029.477758 +1029.487882 +1029.498238 +1029.509260 +1029.523013 +1029.543126 +1029.554948 +1029.573929 +1029.588115 +1029.600835 +1029.612357 +1029.625177 +1029.636033 +1029.656613 +1029.677692 +1029.689546 +1029.702567 +1029.729906 +1029.762473 +1029.783752 +1029.804931 +1029.825843 +1029.840129 +1029.865470 +1029.895840 +1029.933868 +1029.957944 +1029.981621 +1030.010359 +1030.037964 +1030.137498 +1030.239463 +1032.547452 +1034.017015 +1034.107724 +1035.683779 +1043.189266 +1043.450405 +1043.458530 +1043.559829 +1043.612476 +1043.617371 +1046.216503 +1046.372080 +1048.196055 +1048.276308 +1050.968346 +1051.443071 +1051.546201 +1051.582731 +1051.762884 +1052.614199 +1052.786793 +1053.183629 +1053.238873 +1053.253059 +1053.258054 +1053.341904 +1053.345167 +1053.876835 +1054.255056 +1054.299612 +1054.435409 +1054.819391 +1054.837540 +1055.179997 +1055.344366 +1055.760583 +1055.842800 +1056.167275 +1056.223586 +1056.236839 +1056.241468 +1056.275667 +1056.602007 +1057.008267 +1057.173235 +1057.235140 +1057.239136 +1057.627847 +1057.696611 +1058.235039 +1058.240267 +1058.266674 +1058.290883 +1058.783190 +1059.360079 +1059.680226 +1062.283453 +1062.401768 +1063.138431 +1063.238530 +1063.338564 +1063.438697 +1063.640794 +1064.138962 +1064.539595 +1064.640394 +1064.740027 +1065.340060 +1065.641458 +1066.443622 +1066.739992 +1067.039759 +1067.142056 +1067.243488 +1068.363101 +1068.389275 +1068.547083 +1068.599664 +1068.748282 +1068.772158 +1068.822408 +1068.865065 +1069.167362 +1069.303959 +1069.623905 +1069.661335 +1069.709153 +1069.780349 +1069.804791 +1069.844018 +1069.979116 +1070.009653 +1070.082813 +1070.326236 +1070.373089 +1070.483478 +1070.599862 +1070.640022 +1070.849279 +1070.920308 +1070.948080 +1071.056638 +1071.113947 +1071.176751 +1071.213015 +1071.245749 +1071.364396 +1071.438722 +1071.509818 +1071.553740 +1071.597197 +1071.666394 +1071.719874 +1071.794932 +1071.879681 +1071.902658 +1071.942884 +1072.078282 +1072.116943 +1072.171156 +1072.197762 +1072.241319 +1072.282944 +1072.332594 +1072.356370 +1072.395797 +1072.415844 +1072.431861 +1072.488271 +1072.616510 +1072.726899 +1072.927665 +1072.967758 +1073.013612 +1073.232593 +1073.364661 +1073.391101 +1073.567658 +1073.868423 +1073.965892 +1074.067391 +1074.210214 +1074.301623 +1074.512079 +1074.560830 +1074.577747 +1074.626731 +1074.672285 +1074.735955 +1074.817706 +1074.919338 +1074.951073 +1075.060430 +1075.119637 +1075.135288 +1075.163993 +1075.181775 +1075.261396 +1075.337719 +1075.411112 +1075.638618 +1075.980509 +1076.454801 +1077.355699 +1078.395658 +1078.497889 +1078.584303 +1079.048105 +1079.119367 +1081.490627 +1081.518599 +1081.546904 +1081.616234 +1083.426322 +1083.497451 +1084.545569 +1085.223024 +1086.127985 +1086.814464 +1086.949196 +1087.107704 +1087.148030 +1087.235776 +1087.257188 +1087.287091 +1087.360518 +1087.551127 +1087.679998 +1087.751060 +1088.007570 +1088.157087 +1088.232844 +1088.244899 +1088.249661 +1088.370007 +1088.493017 +1088.527083 +1088.612831 +1088.805338 +1088.899078 +1088.926983 +1089.174735 +1089.177765 +1089.183659 +1089.624651 +1089.681494 +1089.736273 +1089.828514 +1089.856719 +1089.895946 +1090.479229 +1090.604171 +1090.645563 +1090.691583 +1090.822053 +1090.865842 +1090.973301 +1090.986754 +1091.175765 +1091.403537 +1091.481026 +1091.626281 +1091.741865 +1091.790716 +1091.831476 +1092.013327 +1092.180826 +1092.185554 +1092.384755 +1092.427312 +1092.627479 +1092.772167 +1092.806599 +1092.864974 +1092.880759 +1092.953752 +1092.999506 +1093.168404 +1093.175963 +1093.237002 +1093.299106 +1093.460711 +1093.617088 +1093.675263 +1093.740698 +1093.781890 +1094.047091 +1094.164807 +1094.190414 +1094.231573 +1094.238100 +1094.248323 +1094.289781 +1094.369635 +1094.408696 +1094.413924 +1094.466038 +1094.479492 +1094.596708 +1094.661276 +1094.696341 +1094.780623 +1094.816021 +1094.854483 +1094.932005 +1094.982821 +1095.221449 +1095.257479 +1095.299504 +1095.363140 +1095.495708 +1095.603933 +1095.672597 +1095.762141 +1095.820716 +1095.865271 +1095.938664 +1096.010459 +1096.235334 +1096.240595 +1096.278291 +1096.328807 +1096.615920 +1096.741128 +1096.788780 +1096.832270 +1096.855513 +1096.924011 +1096.965736 +1097.034268 +1097.096539 +1097.398903 +1097.412089 +1097.970464 +1098.137530 +1098.141026 +1098.236764 +1098.336631 +1098.437197 +1098.537896 +1098.737995 +1099.138328 +1106.849076 +1113.311374 +1113.565586 +1113.581470 +1115.298851 +1115.955827 +1117.756758 +1117.829252 +1117.831383 +1117.869678 +1119.263982 +1120.642735 +1120.668310 +1120.706938 +1124.848559 +1127.027278 +1128.450320 +1128.472764 +1129.630539 +1129.656912 +1129.980089 +1130.273628 +1130.754813 +1130.831137 +1130.961773 +1131.010324 +1131.051483 +1131.676158 +1131.718815 +1131.746454 +1131.937030 +1131.978322 +1133.548617 +1135.343520 +1135.389907 +1135.513150 +1135.530466 +1136.641421 +1138.670590 +1139.959300 +1140.074384 +1140.130561 +1140.140418 +1140.170555 +1141.284040 +1141.302821 +1141.324500 +1141.348742 +1141.358366 +1141.398925 +1141.460963 +1142.630392 +1148.393357 +1148.543607 +1148.698152 +1148.700716 +1148.717200 +1148.768648 +1148.842607 +1148.886497 +1149.019830 +1149.189660 +1150.169845 +1151.107740 +1151.160421 +1151.214600 +1151.250730 +1151.258489 +1151.350064 +1151.491955 +1155.025851 +1155.498145 +1155.539637 +1155.584825 +1155.683992 +1155.686890 +1155.976233 +1156.019190 +1157.282792 +1157.640734 +1158.266707 +1158.274599 +1158.293147 +1158.324849 +1158.339667 +1158.387386 +1158.431109 +1158.561612 +1159.481225 +1160.769435 +1161.997972 +1162.006763 +1162.181022 +1162.270732 +1163.038997 +1163.041061 +1163.128607 +1163.156379 +1163.179057 +1163.200702 +1163.286616 +1163.289213 +1163.443092 +1163.467901 +1163.471697 +1163.473262 +1163.631071 +1163.639729 +1164.324543 +1164.364537 +1164.464836 +1164.508293 +1164.646854 +1165.642258 +1165.692541 +1165.713553 +1165.748818 +1165.769330 +1165.788611 +1166.935430 +1168.131832 +1168.236228 +1168.322641 +1168.325405 +1168.539457 +1168.638991 +1168.640057 +1168.738958 +1168.840156 +1168.940223 +1168.944852 +1169.038957 +1169.339623 +1169.439823 +1169.740322 +1169.823239 +1169.838990 +1169.868727 +1169.909020 +1170.092370 +1171.443251 +1172.544548 +1172.643116 +1172.741418 +1174.020371 +1174.331959 +1175.360863 +1175.419903 +1175.429294 +1175.441116 +1175.674016 +1176.773149 +1176.796659 +1176.810345 +1176.850272 +1176.877844 +1176.902253 +1176.912409 +1176.942812 +1176.950371 +1176.987701 +1177.008813 +1177.195792 +1177.243944 +1177.347241 +1177.460328 +1177.513375 +1183.271344 +1183.341307 +1183.395986 +1183.421227 +1183.427721 +1183.433349 +1183.534348 +1183.604344 +1183.631683 +1183.656858 +1183.805043 +1183.826921 +1183.832449 +1183.841673 +1183.847234 +1183.855693 +1183.914567 +1184.029951 +1184.098849 +1184.416631 +1184.524323 +1184.529651 +1184.832548 +1184.899581 +1184.907040 +1184.911802 +1185.326320 +1185.439607 +1185.461851 +1185.905574 +1186.515397 +1186.547265 +1186.587225 +1186.736875 +1186.823921 +1186.859020 +1187.394051 +1188.282162 +1188.421422 +1188.481828 +1188.494616 +1189.472037 +1189.759250 +1190.770671 +1190.774667 +1190.779262 +1191.825481 +1191.833240 +1191.888019 +1191.890283 +1191.894179 +1192.005701 +1192.017090 +1192.108931 +1192.186120 +1192.189117 +1192.195211 +1192.208531 +1192.620119 +1192.803236 +1193.038734 +1193.165240 +1193.310328 +1193.338067 +1193.836502 +1193.844427 +1194.274796 +1194.348756 +1194.402069 +1194.454483 +1194.526411 +1194.535003 +1194.601902 +1194.627077 +1194.633970 +1194.642661 +1194.691912 +1194.717387 +1194.865971 +1194.872498 +1194.878092 +1194.888016 +1194.953417 +1194.955748 +1194.960610 +1194.980190 +1195.027010 +1195.047723 +1195.193177 +1195.330706 +1195.440696 +1195.468701 +1195.505198 +1195.637466 +1195.646890 +1195.913989 +1195.916520 +1195.942194 +1195.990079 +1196.359476 +1196.437099 +1196.440162 +1196.450752 +1196.454381 +1196.556912 +1196.580455 +1196.762007 +1196.779090 +1196.950485 +1196.976925 +1197.006329 +1197.037498 +1197.176791 +1197.188080 +1197.196938 +1197.202666 +1197.274793 +1197.282885 +1197.286215 +1197.308593 +1197.328506 +1197.360175 +1197.468433 +1197.492975 +1197.824310 +1197.834300 +1197.878656 +1197.979155 +1198.000101 +1198.017483 +1198.220746 +1198.276690 +1198.322778 +1198.341692 +1198.368499 +1198.411089 +1198.472927 +1198.482251 +1198.488478 +1198.492708 +1198.736464 +1198.747619 +1198.776224 +1198.793173 +1198.847719 +1199.186879 +1199.226606 +1199.244122 +1199.247718 +1199.278021 +1199.289077 +1199.368131 +1199.398701 +1199.404295 +1199.429237 +1200.552313 +1200.557541 +1200.677754 +1200.830667 +1201.253777 +1202.053576 +1202.206357 +1202.215181 +1203.138657 +1203.238291 +1203.338191 +1203.438324 +1203.442586 +1203.537857 +1203.566595 +1203.637724 +1203.645416 +1203.708653 +1203.741720 +1203.839589 +1203.939089 +1204.039955 +1204.139488 +1204.149012 +1204.241053 +1204.342885 +1205.030263 +1205.119907 +1206.745413 +1207.339585 +1207.438619 +1207.569222 +1207.840584 +1207.939285 +1208.039851 +1208.846244 +1209.010812 +1209.647708 +1209.949339 +1210.007048 +1210.159762 +1210.162060 +1211.505082 +1211.709811 +1211.712475 +1211.721232 +1211.724030 +1211.734519 +1211.894326 +1211.898222 +1211.901152 +1212.012208 +1212.014672 +1212.079907 +1212.083736 +1212.193093 +1212.315071 +1212.318301 +1212.413872 +1215.085132 +1215.322727 +1215.389394 +1215.464685 +1215.511139 +1215.696853 +1215.865417 +1216.097518 +1216.239943 +1216.319430 +1216.544105 +1216.677438 +1216.686329 +1216.923525 +1216.997651 +1217.073242 +1217.181700 +1217.199848 +1217.242772 +1217.257258 +1217.320861 +1217.466148 +1218.239408 +1218.248665 +1218.299514 +1218.305841 +1218.319694 +1218.360653 +1218.381099 +1218.519561 +1218.754459 +1218.771042 +1218.875571 +1219.098248 +1219.102610 +1219.112734 +1219.117029 +1219.505008 +1219.513932 +1219.535177 +1219.554458 +1219.644535 +1219.756556 +1219.852959 +1219.859486 +1219.953792 +1219.974371 +1220.034744 +1220.355256 +1220.359852 +1220.894683 +1221.306937 +1221.757519 +1221.943766 +1221.959917 +1222.063546 +1222.505904 +1222.520889 +1222.523752 +1222.593583 +1222.624984 +1222.742367 +1222.831278 +1222.838770 +1223.435240 +1223.519689 +1224.411896 +1224.552622 +1224.574100 +1224.667673 +1224.679794 +1224.714127 +1224.751589 +1224.774899 +1224.777829 +1224.910264 +1224.969238 +1224.983923 +1225.063577 +1225.124982 +1225.192048 +1225.903769 +1225.924415 +1225.977595 +1225.994678 +1226.011162 +1226.062577 +1226.092547 +1226.094445 +1226.298108 +1226.300905 +1226.310562 +1226.321451 +1226.410029 +1226.454118 +1226.460212 +1226.463043 +1226.567671 +1226.575563 +1226.662909 +1226.712926 +1227.257314 +1227.314324 +1227.376495 +1227.379758 +1227.386518 +1227.460477 +1227.477694 +1227.565039 +1227.567437 +1228.040663 +1228.042928 +1228.103401 +1228.232272 +1228.236900 +1228.299904 +1228.302202 +1228.305199 +1228.446590 +1228.504000 +1228.509894 +1228.524679 +1228.560610 +1228.804332 +1228.825977 +1229.037532 +1229.288381 +1229.296040 +1229.408761 +1229.575960 +1229.674162 +1229.771597 +1229.916952 +1229.924045 +1229.928840 +1229.935367 +1230.039030 +1230.235466 +1230.337731 +1230.342959 +1230.436598 +1230.588247 +1230.692009 +1230.725409 +1230.768832 +1230.779788 +1230.784117 +1230.899202 +1231.007860 +1231.012722 +1231.037763 +1231.044590 +1231.273660 +1231.401299 +1231.420147 +1231.776291 +1232.018581 +1232.025974 +1232.030536 +1232.214452 +1232.324375 +1232.341625 +1232.488078 +1232.564801 +1232.927105 +1233.037761 +1233.040758 +1233.194005 +1233.203495 +1233.205793 +1233.347784 +1233.523309 +1233.540591 +1233.816682 +1233.870028 +1233.888010 +1233.937261 +1233.983848 +1233.996235 +1234.174990 +1234.272159 +1234.685645 +1234.839658 +1235.067696 +1235.218079 +1235.283447 +1235.829400 +1235.841954 +1235.964831 +1235.969227 +1236.122041 +1236.129000 +1236.132397 +1236.139123 +1236.364531 +1236.385543 +1236.523339 +1236.527302 +1236.653342 +1236.661234 +1236.665863 +1237.109219 +1237.267860 +1237.272356 +1237.460667 +1237.533961 +1237.546082 +1237.554207 +1237.987040 +1238.037989 +1238.039488 +1238.041519 +1238.044616 +1238.139155 +1238.238855 +1238.241053 +1238.339554 +1238.342118 +1238.347147 +1238.439954 +1238.540187 +1238.542185 +1238.639687 +1238.641519 +1238.645048 +1238.739554 +1238.744316 +1238.839221 +1238.841552 +1238.939986 +1238.944582 +1239.040752 +1239.042817 +1239.139920 +1239.142750 +1239.241185 +1239.243616 +1239.250342 +1239.340352 +1239.342184 +1239.347079 +1239.440252 +1239.441984 +1239.540785 +1239.541351 +1239.542317 +1239.544448 +1239.546946 +1239.550409 +1239.640552 +1239.643083 +1239.740285 +1239.742383 +1239.840485 +1239.846379 +1239.940651 +1240.040452 +1240.041384 +1240.042050 +1240.140984 +1240.143149 +1240.147744 +1240.240784 +1240.340884 +1240.342349 +1240.344481 +1240.440584 +1240.540518 +1240.542682 +1240.546079 +1240.639186 +1240.739485 +1240.744214 +1240.840750 +1240.842149 +1240.849309 +1240.939918 +1240.942249 +1241.040118 +1241.042049 +1241.141150 +1241.145046 +1241.150274 +1241.150840 +1241.240783 +1241.242282 +1241.248309 +1241.340450 +1241.344080 +1241.349042 +1241.439851 +1241.441949 +1241.539584 +1241.541549 +1241.641216 +1241.646178 +1241.649208 +1241.741649 +1241.744446 +1241.747576 +1241.840983 +1241.842947 +1241.847776 +1241.939417 +1241.945711 +1242.040450 +1242.041715 +1242.044046 +1242.139750 +1242.141215 +1242.143113 +1242.148675 +1242.150706 +1242.240050 +1242.241915 +1242.244712 +1242.340216 +1242.348741 +1242.440449 +1242.443013 +1242.540815 +1242.544645 +1242.640449 +1242.646643 +1242.740982 +1242.743179 +1242.746676 +1242.840216 +1242.843579 +1242.848108 +1242.940615 +1242.948541 +1243.041547 +1243.043779 +1243.049773 +1243.288833 +1243.316506 +1243.334155 +1243.363192 +1243.400188 +1243.430824 +1243.449872 +1243.574148 +1244.035819 +1244.039182 +1244.045243 +1244.225462 +1244.481639 +1244.579874 +1244.589631 +1244.846607 +1244.858229 +1244.980973 +1245.042678 +1245.070550 +1245.227093 +1245.510343 +1245.669284 +1245.685501 +1245.780106 +1245.808911 +1246.079673 +1246.084102 +1246.086733 +1246.089996 +1246.092593 +1246.274311 +1246.284768 +1246.310975 +1246.563922 +1246.571347 +1246.577608 +1246.742842 +1246.751800 +1247.121230 +1247.283335 +1247.290161 +1247.311673 +1247.355829 +1247.413371 +1247.416934 +1247.427191 +1248.027057 +1248.043141 +1248.441775 +1248.601282 +1248.708109 +1248.739710 +1249.035115 +1249.214502 +1249.230352 +1249.279736 +1249.310039 +1249.363885 +1249.382800 +1249.413070 +1249.507775 +1249.598717 +1249.615966 +1249.631151 +1249.679203 +1250.119829 +1250.178004 +1250.195353 +1250.242240 +1250.287994 +1250.353328 +1250.423725 +1250.455293 +1250.541074 +1250.559955 +1250.616032 +1250.673608 +1250.705409 +1250.939375 +1251.001380 +1251.061186 +1251.077570 +1251.161120 +1251.178169 +1251.213834 +1251.250963 +1251.381766 +1251.401546 +1251.432848 +1251.452062 +1251.463584 +1251.495352 +1251.511136 +1251.543570 +1251.589258 +1251.620993 +1251.685328 +1251.701079 +1251.732614 +1251.750263 +1251.782797 +1251.797050 +1251.863650 +1251.909271 +1251.947033 +1251.978035 +1252.058422 +1252.090922 +1252.142504 +1252.190656 +1252.237176 +1252.318694 +1252.352827 +1252.386560 +1252.416263 +1252.499447 +1252.577069 +1252.698747 +1252.715064 +1252.737642 +1252.765181 +1252.825121 +1252.863649 +1252.880432 +1252.927651 +1252.988790 +1253.529682 +1253.552526 +1253.600178 +1253.602276 +1253.606272 +1253.860518 +1253.972905 +1254.027850 +1254.039439 +1254.114297 +1254.202708 +1254.205206 +1254.513631 +1254.562348 +1254.566245 +1254.571739 +1254.578399 +1254.675036 +1254.950427 +1255.152624 +1255.160283 +1255.178332 +1255.241935 +1255.250293 +1255.509400 +1255.513197 +1255.528881 +1255.606237 +1255.612264 +1255.619457 +1255.623819 +1255.795481 +1255.800109 +1255.893949 +1255.990086 +1256.107868 +1256.151857 +1256.194381 +1256.789552 +1257.049525 +1257.405436 +1257.414493 +1257.538369 +1257.545962 +1257.660347 +1257.807500 +1257.812695 +1257.831076 +1257.845362 +1258.111296 +1258.120320 +1258.150657 +1258.443364 +1258.462211 +1258.877562 +1258.889151 +1258.913493 +1259.149923 +1259.206999 +1259.216756 +1259.371568 +1259.623382 +1259.626080 +1259.632340 +1259.644395 +1259.692913 +1259.699140 +1259.704435 +1259.869936 +1260.031141 +1260.034371 +1260.148024 +1260.155350 +1260.517987 +1260.565906 +1260.627910 +1260.751253 +1260.776461 +1260.869668 +1260.951053 +1261.289215 +1261.369601 +1261.658212 +1261.663840 +1261.689248 +1261.694309 +1261.732671 +1262.095674 +1262.270433 +1262.440529 +1262.976126 +1263.039363 +1263.209926 +1263.237232 +1263.289279 +1263.339163 +1263.522746 +1263.536499 +1263.553149 +1263.670531 +1264.030737 +1264.241859 +1264.292941 +1264.299901 +1264.559908 +1264.601999 +1264.681652 +1264.684982 +1264.687347 +1265.038429 +1265.041392 +1265.044289 +1265.288179 +1265.663769 +1265.768897 +1265.789144 +1265.955744 +1266.039793 +1266.043789 +1266.369330 +1266.470129 +1266.492640 +1266.585147 +1266.777821 +1266.780818 +1266.784814 +1266.912386 +1267.040957 +1267.198433 +1267.218313 +1267.595669 +1267.730667 +1267.737394 +1267.742855 +1267.920677 +1268.023607 +1268.027403 +1268.030134 +1268.039824 +1268.254676 +1268.354909 +1268.359671 +1268.378019 +1268.587243 +1268.618378 +1268.623107 +1269.108288 +1269.238891 +1269.335061 +1269.355740 +1269.544618 +1269.577785 +1269.594401 +1269.686043 +1269.689273 +1270.131397 +1270.248014 +1270.252876 +1270.320941 +1270.332829 +1270.654940 +1270.665562 +1270.710351 +1270.735093 +1270.975086 +1271.000061 +1271.016977 +1271.450110 +1271.593500 +1272.153739 +1272.157735 +1272.216377 +1272.234492 +1272.481611 +1272.544015 +1272.559999 +1272.994598 +1273.020372 +1273.022869 +1273.038820 +1273.044714 +1273.140552 +1273.240318 +1273.243182 +1273.340651 +1273.341917 +1273.345513 +1273.441850 +1273.444181 +1273.541084 +1273.641384 +1273.643681 +1273.647078 +1273.741150 +1273.743415 +1273.841683 +1273.846745 +1273.941417 +1273.944181 +1274.041616 +1274.050741 +1274.141483 +1274.241050 +1274.242549 +1274.341017 +1274.342548 +1274.442182 +1274.445379 +1274.541483 +1274.544180 +1274.641416 +1274.741949 +1274.745412 +1274.842048 +1274.844479 +1274.941615 +1274.944346 +1275.041249 +1275.043414 +1275.141948 +1275.143780 +1275.244779 +1275.247210 +1275.341648 +1275.344712 +1275.442248 +1275.443613 +1275.541382 +1275.543080 +1275.642014 +1275.645611 +1275.741648 +1275.743912 +1275.747009 +1275.842214 +1275.843613 +1275.942014 +1275.947242 +1276.042014 +1276.043912 +1276.142014 +1276.147475 +1276.241747 +1276.243379 +1276.252237 +1276.341980 +1276.346676 +1276.441181 +1276.542113 +1276.642912 +1276.743012 +1276.842080 +1276.843478 +1276.941713 +1276.946941 +1277.041747 +1277.045310 +1277.141680 +1277.143345 +1277.241913 +1277.243678 +1277.341913 +1277.344177 +1277.347341 +1277.441913 +1277.448373 +1277.541713 +1277.543478 +1277.642079 +1277.645143 +1277.647440 +1277.741946 +1277.746508 +1277.842045 +1277.847473 +1277.942112 +1277.943644 +1277.947007 +1278.042511 +1278.809344 +1278.848638 +1278.876643 +1278.907745 +1278.941112 +1279.004548 +1279.042011 +1281.690327 +1282.863119 +1288.215728 +1288.267743 +1288.384093 +1288.386191 +1290.824883 +1294.282921 +1295.495075 +1298.233900 +1298.237496 +1298.301932 +1300.237095 +1300.465832 +1301.006358 +1301.714815 +1301.965498 +1302.180383 +1302.254409 +1302.685977 +1303.178117 +1303.445550 +1303.659669 +1303.814514 +1303.898563 +1304.334393 +1304.633960 +1304.679748 +1305.140719 +1305.317742 +1305.432194 +1305.480080 +1305.729597 +1305.786540 +1305.936057 +1306.030029 +1306.121737 +1306.358101 +1306.374218 +1306.531361 +1306.586839 +1306.616309 +1306.694464 +1306.793565 +1306.849442 +1306.951840 +1307.002622 +1307.103655 +1307.115609 +1307.320005 +1307.398360 +1307.465825 +1307.743447 +1307.780044 +1308.140250 +1308.239251 +1308.241915 +1308.339484 +1308.440117 +1308.539417 +1308.841115 +1308.940449 +1309.040349 +1309.641348 +1309.944544 +1310.540814 +1310.942911 +1311.645242 +1311.941179 +1312.044442 +1312.241845 +1313.041444 +1313.400152 +1313.430988 +1313.477574 +1313.975576 +1314.449734 +1314.898951 +1314.929354 +1315.022761 +1315.079704 +1315.099950 +1315.324759 +1315.551165 +1315.637346 +1315.915534 +1315.972377 +1316.523026 +1316.816499 +1316.844071 +1316.903845 +1317.036612 +1317.084730 +1317.136778 +1317.181633 +1317.250631 +1317.360587 +1317.390291 +1317.467114 +1317.492555 +1317.506608 +1317.544670 +1317.587693 +1317.612302 +1317.652062 +1317.749598 +1317.821326 +1317.978968 +1318.004176 +1318.041373 +1318.157723 +1318.200413 +1318.294419 +1318.374339 +1318.574406 +1318.721225 +1318.976037 +1319.019593 +1319.062783 +1319.222990 +1319.255391 +1319.313333 +1319.390322 +1319.443802 +1319.626020 +1319.689956 +1319.765347 +1319.781298 +1319.811767 +1319.825287 +1319.842669 +1319.984028 +1320.029449 +1320.060884 +1320.174604 +1320.270042 +1320.390887 +1320.466945 +1320.508370 +1320.526185 +1320.618693 +1320.692419 +1320.741936 +1320.833578 +1320.867277 +1321.115329 +1321.131912 +1321.167310 +1321.254190 +1321.345332 +1321.390420 +1321.451959 +1321.497280 +1321.601842 +1321.720223 +1321.803240 +1321.920823 +1321.999943 +1322.062647 +1322.141635 +1322.266710 +1322.670239 +1322.687056 +1322.749027 +1322.832710 +1323.295946 +1323.328147 +1323.350158 +1323.398110 +1323.416492 +1326.448723 +1326.507565 +1326.542197 +1326.627711 +1326.727245 +1326.991014 +1327.079459 +1327.091413 +1327.470767 +1327.679625 +1327.847590 +1327.929241 +1327.986850 +1328.138898 +1328.233337 +1328.346191 +1328.501302 +1328.542528 +1328.617286 +1328.656114 +1328.704465 +1328.742561 +1328.965271 +1329.025211 +1329.067136 +1329.131471 +1329.179457 +1329.302633 +1329.334868 +1329.364338 +1329.381321 +1329.424378 +1329.497239 +1329.517851 +1329.594708 +1329.606995 +1329.655647 +1329.686149 +1329.761607 +1329.770632 +1329.810991 +1329.857511 +1329.896272 +1330.042759 +1330.081920 +1330.114687 +1330.156012 +1330.245889 +1330.253748 +1330.341460 +1330.445689 +1330.485516 +1330.491810 +1330.514587 +1330.520548 +1330.656578 +1330.849318 +1330.856511 +1330.876458 +1330.933168 +1331.091543 +1331.115619 +1331.182352 +1331.242458 +1331.354013 +1331.397170 +1331.423011 +1331.448252 +1331.538595 +1331.592907 +1331.625475 +1331.715418 +1331.764902 +1331.818482 +1331.861905 +1331.906793 +1331.942291 +1332.020479 +1332.058009 +1332.263470 +1332.323476 +1332.355511 +1332.403929 +1332.490809 +1332.623942 +1332.660905 +1332.669996 +1332.751947 +1332.862636 +1332.902263 +1332.953545 +1332.993139 +1333.184181 +1333.187678 +1333.629835 +1333.694504 +1333.789276 +1333.856542 +1334.011054 +1334.034930 +1334.178852 +1334.453078 +1334.529568 +1334.580883 +1334.632698 +1334.652611 +1334.773823 +1334.813983 +1334.870826 +1334.906524 +1335.480882 +1335.505591 +1335.530166 +1335.685977 +1335.839090 +1336.193802 +1336.649612 +1336.741853 +1336.803492 +1337.194867 +1337.207354 +1337.361566 +1337.462232 +1337.527134 +1337.534127 +1337.691503 +1338.182811 +1338.243151 +1338.249011 +1338.253573 +1338.981778 +1339.124468 +1339.199993 +1339.536955 +1339.694198 +1339.738953 +1339.992067 +1340.103721 +1340.217141 +1340.277581 +1340.474584 +1340.950307 +1341.344313 +1341.446577 +1341.506884 +1341.615109 +1341.752171 +1341.773350 +1341.812644 +1341.983307 +1342.028328 +1342.773582 +1342.862959 +1343.139283 +1343.143445 +1343.239116 +1343.242313 +1343.339249 +1343.343179 +1343.439183 +1343.539382 +1343.742079 +1349.051132 +1349.132584 +1350.402779 +1350.418063 +1350.439209 +1352.472840 +1352.572507 +1358.354952 +1358.364809 +1358.380027 +1358.488452 +1358.520486 +1358.523583 +1358.694679 +1358.721851 +1358.785288 +1359.389050 +1360.185586 +1363.092110 +1363.451417 +1364.519848 +1366.154711 +1366.199033 +1366.210588 +1366.245220 +1366.298134 +1366.301564 +1366.382483 +1366.391141 +1366.451114 +1366.453345 +1367.209389 +1368.132398 +1368.197466 +1368.202794 +1368.221775 +1368.267763 +1368.275688 +1369.195767 +1369.203426 +1369.218045 +1369.260769 +1369.266896 +1369.293736 +1370.204524 +1370.259635 +1371.196398 +1371.209851 +1371.212781 +1371.258702 +1371.261932 +1373.395430 +1373.512413 +1373.549076 +1373.794297 +1374.850640 +1375.297459 +1375.483007 +1375.485737 +1376.073516 +1376.172683 +1376.174448 +1376.272849 +1376.275081 +1376.373249 +1376.375413 +1376.473382 +1376.573415 +1376.575613 +1376.673082 +1376.676046 +1376.773582 +1376.873715 +1376.876179 +1376.973715 +1376.976279 +1377.073814 +1377.076212 +1377.173814 +1377.273581 +1377.276345 +1377.373814 +1377.473847 +1377.576112 +1377.674113 +1377.774147 +1377.774813 +1377.874013 +1377.876311 +1377.973913 +1377.976444 +1378.074146 +1378.077310 +1378.174013 +1378.274146 +1378.276111 +1378.374213 +1378.376077 +1378.473979 +1378.573813 +1378.576277 +1378.674346 +1378.676144 +1378.774246 +1378.876543 +1378.974245 +1379.074345 +1379.174345 +1379.176643 +1379.274212 +1379.374411 +1379.474078 +1379.476143 +1379.576942 +1379.674311 +1379.676875 +1379.677475 +1379.774411 +1379.777008 +1379.879006 +1379.974444 +1379.979206 +1380.074144 +1380.174411 +1380.178473 +1380.274411 +1380.276875 +1380.374111 +1380.377507 +1380.474111 +1380.574410 +1380.576941 +1380.674410 +1380.676575 +1380.774410 +1380.776908 +1380.874243 +1380.876774 +1380.974210 +1380.976974 +1384.751429 +1385.883063 +1385.974405 +1386.034045 +1386.062317 +1386.118161 +1386.237042 +1386.249763 +1386.251627 +1386.274738 +1386.335110 +1386.388957 +1386.404508 +1386.415963 +1386.428051 +1386.483029 +1386.484727 +1386.496982 +1386.587924 +1386.603042 +1386.640005 +1386.663448 +1386.702010 +1386.749163 +1386.758720 +1386.772273 +1386.774471 +1386.802143 +1386.847797 +1386.877701 +1386.924953 +1386.940205 +1386.954590 +1386.970608 +1386.981763 +1387.045366 +1387.072639 +1387.087191 +1387.126818 +1387.163714 +1387.174237 +1387.188323 +1387.200078 +1387.214430 +1387.228250 +1387.250960 +1387.264014 +1387.299545 +1387.314996 +1387.377101 +1387.390188 +1387.424320 +1387.436641 +1387.447963 +1387.462582 +1387.475569 +1387.478366 +1387.491020 +1387.516628 +1387.543468 +1387.556754 +1387.566445 +1387.580364 +1387.595382 +1387.608369 +1387.621856 +1387.634010 +1387.677167 +1387.679398 +1387.724353 +1387.738639 +1387.799045 +1387.800910 +1387.815429 +1387.859684 +1387.862049 +1387.872039 +1387.887556 +1387.903108 +1387.916428 +1387.929448 +1387.946364 +1387.967543 +1387.990986 +1388.003674 +1388.018259 +1388.020523 +1388.034243 +1388.047197 +1388.058485 +1388.084926 +1388.086890 +1388.098212 +1388.101009 +1388.125818 +1388.141136 +1388.159484 +1388.172638 +1388.186690 +1388.197313 +1388.200144 +1388.216594 +1388.227083 +1388.241269 +1388.266510 +1388.268209 +1388.279531 +1388.292251 +1388.306004 +1388.344333 +1388.354889 +1388.367243 +1388.382028 +1388.396547 +1388.411632 +1388.426151 +1388.440003 +1388.447962 +1388.453856 +1388.465212 +1388.477599 +1388.489854 +1388.503540 +1388.518525 +1388.546730 +1388.560483 +1388.563080 +1388.575901 +1388.578831 +1388.590120 +1388.616460 +1388.627283 +1388.640536 +1388.656187 +1388.680996 +1388.693250 +1388.708568 +1388.735574 +1388.748195 +1388.761715 +1388.792684 +1388.803939 +1388.808002 +1388.816293 +1388.828448 +1388.842168 +1388.855821 +1388.886423 +1388.891185 +1388.901342 +1388.916393 +1388.926616 +1388.940702 +1388.951725 +1388.965910 +1388.994815 +1389.009267 +1389.023819 +1389.037972 +1389.051658 +1389.066077 +1389.082027 +1389.098311 +1389.112497 +1389.126316 +1389.140835 +1389.156653 +1389.186589 +1389.201475 +1389.216127 +1389.231478 +1389.246629 +1389.261614 +1389.277465 +1389.290519 +1389.305870 +1389.319623 +1389.332643 +1389.347795 +1389.363146 +1389.375800 +1389.390818 +1389.404538 +1389.433043 +1389.447428 +1389.461781 +1389.476832 +1389.492184 +1389.506869 +1389.521854 +1389.536073 +1389.588754 +1389.594947 +1389.603672 +1389.618724 +1389.633642 +1389.648394 +1389.679363 +1389.693915 +1389.724551 +1389.738537 +1389.753622 +1389.768740 +1389.783292 +1389.799343 +1389.814827 +1389.830145 +1389.844764 +1389.858983 +1389.873169 +1389.888487 +1389.920222 +1389.934940 +1389.950991 +1389.966309 +1389.980828 +1389.996479 +1390.010631 +1390.026915 +1390.073002 +1390.088453 +1390.103239 +1390.132709 +1390.164078 +1390.179729 +1390.195679 +1390.210798 +1390.315393 +1390.330012 +1390.343365 +1390.358017 +1390.459049 +1390.473634 +1390.488786 +1390.520488 +1390.535406 +1390.549825 +1390.614660 +1390.683058 +1390.697311 +1390.713594 +1390.727414 +1390.742499 +1390.758083 +1390.773601 +1390.790617 +1390.867573 +1390.882925 +1390.914393 +1398.265934 +1398.875025 +1401.132765 +1401.238592 +1401.240623 +1401.245752 +1402.186710 +1402.191838 +1403.196599 +1403.200928 +1403.245550 +1404.190604 +1404.210784 +1405.123736 +1405.192867 +1406.211814 +1408.001323 +1408.021735 +1411.073947 +1411.076478 +1411.173714 +1411.176078 +1411.273947 +1411.374113 +1411.474546 +1411.574746 +1411.674879 +1411.774812 +1411.874878 +1411.974945 +1412.075011 +1412.078142 +1412.175078 +1412.275211 +1412.375178 +1412.475411 +1412.575344 +1412.576210 +1412.675277 +1412.775710 +1412.875310 +1412.975410 +1413.175377 +1413.275177 +1413.375843 +1413.575243 +1413.675543 +1413.775376 +1413.875443 +1413.975176 +1414.075043 +1414.175209 +1414.275542 +1414.475442 +1414.575409 +1414.675442 +1414.676374 +1414.775175 +1414.875508 +1414.975408 +1415.075475 +1415.175408 +1415.275641 +1415.375108 +1415.475774 +1415.575840 +1415.576706 +1415.675641 +1415.775307 +1415.875241 +1415.975207 +1415.976906 +1417.678969 +1421.697280 +1421.983759 +1422.332610 +1422.440302 +1422.491818 +1422.686589 +1422.772437 +1422.919822 +1422.985224 +1422.988420 +1423.002573 +1423.089886 +1423.104471 +1423.120954 +1423.134707 +1423.147561 +1423.186589 +1423.199709 +1423.314328 +1423.373402 +1423.446795 +1423.488320 +1423.505869 +1423.518823 +1423.533342 +1423.546329 +1423.564510 +1423.610198 +1423.613628 +1423.625416 +1423.666408 +1423.679529 +1423.693581 +1423.755286 +1423.769305 +1423.786022 +1423.802139 +1423.830444 +1423.842332 +1423.844064 +1423.855719 +1423.884623 +1423.907734 +1423.909365 +1423.925383 +1423.937937 +1423.954487 +1423.986322 +1423.997444 +1424.014094 +1424.065176 +1424.067607 +1424.078796 +1424.104037 +1424.118523 +1424.122752 +1424.136238 +1424.161280 +1424.175166 +1424.177164 +1424.190517 +1424.234673 +1424.247993 +1424.264710 +1424.275565 +1424.289385 +1424.292781 +1424.345229 +1424.360547 +1424.366907 +1424.381959 +1424.385455 +1424.397377 +1424.400773 +1424.413394 +1424.426215 +1424.453720 +1424.464809 +1424.481393 +1424.496577 +1424.525249 +1424.536604 +1424.551023 +1424.565342 +1424.567240 +1424.581526 +1424.594047 +1424.607933 +1424.623284 +1424.634839 +1424.637470 +1424.648858 +1424.666341 +1424.679894 +1424.692148 +1424.704736 +1424.718389 +1424.734140 +1424.780893 +1424.813294 +1424.825315 +1424.839667 +1424.854519 +1424.863111 +1424.866441 +1424.893946 +1424.896943 +1424.910796 +1424.925082 +1424.940899 +1424.955851 +1424.971236 +1424.974599 +1424.986420 +1425.000473 +1425.017456 +1425.033207 +1425.046927 +1425.062245 +1425.077962 +1425.093880 +1425.124282 +1425.128778 +1425.140067 +1425.150423 +1425.163044 +1425.178828 +1425.195112 +1425.215391 +1425.222651 +1425.238402 +1425.251355 +1425.284023 +1425.299374 +1425.312294 +1425.341865 +1425.356483 +1425.369837 +1425.383323 +1425.386986 +1425.398874 +1425.404069 +1425.430143 +1425.456750 +1425.472367 +1425.487386 +1425.492381 +1425.502071 +1425.518055 +1425.547292 +1425.561611 +1425.577296 +1425.582657 +1425.604369 +1425.635304 +1425.648491 +1425.664375 +1425.679227 +1425.693013 +1425.706833 +1425.721585 +1425.737868 +1425.756217 +1425.771002 +1425.785920 +1425.800506 +1425.830875 +1425.847558 +1425.864541 +1425.880559 +1425.897608 +1425.911894 +1425.951055 +1425.956216 +1425.967372 +1425.972800 +1440.626964 +1440.687370 +1442.218471 +1444.907313 +1446.277075 +1446.377075 +1446.381171 +1446.476842 +1446.677774 +1446.777940 +1446.877874 +1447.379605 +1447.579705 +1447.678606 +1447.780004 +1447.977506 +1448.079338 +1448.178372 +1448.278272 +1448.378372 +1448.478438 +1448.879703 +1449.380402 +1449.478537 +1449.577771 +1449.678171 +1449.778370 +1449.878404 +1449.978770 +1450.079536 +1450.179535 +1450.280068 +1450.378237 +1450.379968 +1450.478037 +1450.579036 +1450.678802 +1450.779202 +1450.879368 +1451.812900 +1451.961285 +1452.515464 +1452.559553 +1452.621591 +1452.689756 +1452.848098 +1452.863982 +1452.942070 +1454.240537 +1454.327383 +1454.341503 +1454.390121 +1454.401576 +1454.481329 +1454.510101 +1454.533744 +1454.538672 +1454.694316 +1454.709434 +1455.854588 +1455.929347 +1455.973569 +1457.017424 +1457.464676 +1457.552255 +1457.577330 +1457.724383 +1457.737770 +1457.873034 +1458.245295 +1458.282058 +1458.339634 +1458.435205 +1458.460879 +1458.462811 +1458.502704 +1458.546760 +1458.574898 +1458.586720 +1458.596810 +1458.610696 +1458.625381 +1458.640000 +1458.656284 +1458.659347 +1458.767739 +1458.780459 +1458.782824 +1458.822417 +1458.838435 +1458.847858 +1458.898341 +1458.914092 +1458.938501 +1458.968538 +1458.983190 +1458.998608 +1459.021585 +1459.045228 +1459.061112 +1459.077329 +1459.091082 +1459.106133 +1459.123050 +1459.146393 +1459.148224 +1459.162510 +1459.181092 +1459.212394 +1459.226346 +1459.238934 +1459.253586 +1459.267205 +1459.278860 +1459.292547 +1459.309263 +1459.343096 +1459.354318 +1459.368504 +1459.370902 +1459.382590 +1459.397042 +1459.424814 +1459.428044 +1459.440832 +1459.454951 +1459.469736 +1459.487685 +1459.498640 +1459.514891 +1459.530109 +1459.543429 +1459.546226 +1459.558913 +1459.622949 +1459.639266 +1459.662709 +1459.674031 +1459.678360 +1459.689749 +1459.745493 +1459.752986 +1459.765273 +1459.769636 +1459.779359 +1459.795810 +1459.807398 +1459.820651 +1459.835936 +1459.853152 +1459.868737 +1459.882523 +1459.897641 +1459.915756 +1459.927378 +1459.931707 +1459.940898 +1459.954784 +1459.967971 +1459.982989 +1459.985287 +1459.999439 +1460.011161 +1460.024014 +1460.039199 +1460.042130 +1460.055683 +1460.069469 +1460.082722 +1460.096309 +1460.111960 +1460.125546 +1460.127444 +1460.138633 +1460.152153 +1460.167005 +1460.182556 +1460.195310 +1460.212159 +1460.226245 +1460.239332 +1460.251820 +1460.264041 +1460.279825 +1460.294843 +1460.302869 +1460.306398 +1460.316821 +1460.326745 +1460.352885 +1460.356648 +1460.366905 +1460.370734 +1460.381623 +1460.395343 +1460.410228 +1460.421483 +1460.435436 +1460.449422 +1460.451453 +1460.461876 +1460.473964 +1460.513524 +1460.527977 +1460.543927 +1460.554883 +1460.569835 +1460.589648 +1460.593911 +1460.609362 +1460.623548 +1460.627177 +1460.640098 +1460.643594 +1460.656548 +1460.660777 +1460.680657 +1460.696142 +1460.705832 +1460.734703 +1460.739365 +1460.754184 +1460.766571 +1460.769268 +1460.782389 +1460.798006 +1460.813924 +1460.828110 +1460.833238 +1460.845392 +1460.861243 +1460.877160 +1460.893111 +1460.907197 +1460.921816 +1460.928376 +1460.934503 +1460.948689 +1460.949122 +1460.964007 +1461.467003 +1462.014955 +1462.568900 +1462.632437 +1467.826904 +1467.841789 +1468.006957 +1468.061003 +1468.787842 +1473.982209 +1474.230727 +1474.375981 +1474.393064 +1474.423567 +1474.437786 +1474.469554 +1474.543780 +1475.948208 +1476.060462 +1476.067355 +1476.074581 +1476.161761 +1476.445943 +1476.461294 +1477.534520 +1477.563058 +1477.631156 +1477.751736 +1479.623062 +1479.682403 +1479.832020 +1480.006612 +1480.007245 +1480.965252 +1481.178539 +1481.278572 +1481.278972 +1481.280304 +1481.378905 +1481.577906 +1481.679204 +1481.880070 +1481.979737 +1482.080203 +1482.179737 +1482.280103 +1482.379603 +1482.479636 +1482.579869 +1482.679336 +1482.780202 +1482.981634 +1483.080235 +1483.180535 +1483.280102 +1483.380768 +1483.480268 +1483.581500 +1483.680534 +1483.780634 +1483.881000 +1483.980334 +1483.980900 +1484.181999 +1484.281633 +1484.281966 +1484.381133 +1484.580633 +1484.780566 +1484.880133 +1484.980466 +1485.080300 +1485.180333 +1485.279500 +1485.379667 +1485.480832 +1485.680133 +1485.780066 +1485.781997 +1485.880266 +1490.069173 +1491.715125 +1491.908431 +1492.062977 +1492.139733 +1492.165641 +1492.181025 +1492.310296 +1492.542497 +1492.608564 +1492.623482 +1492.787119 +1492.799972 +1492.815091 +1492.883655 +1492.898141 +1492.926912 +1492.950355 +1493.013991 +1493.043029 +1493.057248 +1493.084321 +1493.135037 +1493.159446 +1493.226046 +1493.261077 +1493.314224 +1493.359379 +1493.432572 +1493.485353 +1493.498839 +1493.515689 +1493.615356 +1493.642229 +1493.654284 +1493.667970 +1493.684653 +1493.727244 +1493.742063 +1493.798539 +1493.801403 +1493.810661 +1493.812792 +1493.859945 +1493.875929 +1493.892346 +1493.927610 +1493.967037 +1493.978526 +1494.036235 +1494.048856 +1494.064706 +1494.132472 +1494.135136 +1494.148189 +1494.194143 +1494.208196 +1494.223880 +1494.258446 +1494.301769 +1494.314590 +1494.327910 +1494.332005 +1494.341962 +1494.343960 +1494.358312 +1494.375429 +1494.390047 +1494.415056 +1494.428875 +1494.443128 +1494.461209 +1494.480190 +1494.497706 +1494.512858 +1494.538033 +1494.549654 +1494.564140 +1494.575761 +1494.592112 +1494.595209 +1494.609095 +1494.630906 +1494.658579 +1494.670966 +1494.684819 +1494.698006 +1494.711659 +1494.734103 +1494.736567 +1494.764273 +1494.766770 +1494.780357 +1494.782255 +1494.796707 +1494.812391 +1494.816720 +1494.826810 +1494.860210 +1494.879691 +1494.887583 +1494.901835 +1494.934203 +1494.947623 +1494.964173 +1494.978225 +1494.981355 +1495.011059 +1495.026144 +1495.040496 +1495.052884 +1495.054782 +1495.068768 +1495.111558 +1495.125911 +1495.139397 +1495.151552 +1495.164905 +1495.179557 +1495.189714 +1495.205331 +1495.219684 +1495.222547 +1495.237732 +1495.255614 +1495.268535 +1495.272331 +1495.308195 +1495.323513 +1495.339397 +1495.354249 +1495.366770 +1495.380656 +1495.399304 +1495.423080 +1495.446190 +1495.458511 +1495.461641 +1495.474429 +1495.484019 +1495.497772 +1495.511591 +1495.526010 +1495.532271 +1495.539930 +1495.553516 +1495.556113 +1495.567902 +1495.583086 +1495.587282 +1495.595374 +1495.614755 +1495.627442 +1495.637965 +1495.652450 +1495.664505 +1495.676293 +1495.688381 +1495.701368 +1495.716486 +1495.735034 +1495.744225 +1495.747655 +1495.758844 +1495.774462 +1495.787748 +1495.804731 +1495.821082 +1495.837798 +1495.839963 +1495.861508 +1495.871398 +1495.877059 +1495.886816 +1495.889380 +1495.903366 +1495.924411 +1495.931771 +1495.942427 +1495.949953 +1495.958611 +1495.964838 +1496.500701 +1497.561473 +1497.581886 +1497.623710 +1497.673561 +1498.790576 +1498.840426 +1498.868631 +1498.871528 +1498.905461 +1500.638692 +1500.744520 +1500.877054 +1500.879685 +1500.918046 +1500.932498 +1500.935828 +1500.962335 +1501.372624 +1501.381815 +1501.403727 +1502.026403 +1503.367394 +1503.474487 +1503.490804 +1505.033427 +1505.053373 +1505.126667 +1505.243183 +1505.292767 +1505.335624 +1509.432790 +1509.596725 +1509.600322 +1509.662626 +1514.373710 +1515.349267 +1515.385498 +1515.452164 +1515.661188 +1515.844738 +1515.975174 +1516.078437 +1516.177904 +1516.278204 +1516.284331 +1516.378837 +1516.385297 +1516.479070 +1516.481134 +1516.579003 +1516.678936 +1516.683032 +1516.779069 +1516.879702 +1516.979968 +1517.080101 +1517.179868 +1517.280301 +1517.380267 +1517.480267 +1517.579834 +1517.679901 +1517.779934 +1517.879434 +1517.979268 +1518.079767 +1518.180333 +1518.380466 +1518.480400 +1518.580399 +1518.680333 +1518.780699 +1518.879500 +1518.976703 +1518.980865 +1519.179600 +1519.279133 +1519.380232 +1519.480199 +1519.480798 +1519.579966 +1519.680199 +1519.780398 +1519.879765 +1519.979632 +1519.980165 +1520.180265 +1520.279066 +1520.378733 +1520.480031 +1520.579698 +1520.679998 +1520.780264 +1520.880231 +1520.980364 +1525.454185 +1525.490416 +1525.548191 +1526.346659 +1526.449056 +1526.660311 +1526.747657 +1526.849755 +1526.864141 +1526.941896 +1526.967937 +1527.005599 +1527.109695 +1527.186285 +1527.380058 +1527.404233 +1527.475962 +1527.559212 +1527.585718 +1527.683554 +1527.698372 +1527.712858 +1527.727010 +1527.792711 +1527.885585 +1527.934003 +1528.021615 +1528.038032 +1528.092644 +1528.105265 +1528.202701 +1528.261975 +1528.322148 +1528.358045 +1528.373796 +1528.431272 +1528.433503 +1528.486650 +1528.489247 +1528.503500 +1528.558811 +1528.573063 +1528.630639 +1528.704099 +1528.777192 +1528.851685 +1528.862107 +1528.958711 +1528.985317 +1529.001901 +1529.010226 +1529.025277 +1529.040895 +1529.054448 +1529.069933 +1529.106529 +1529.115487 +1529.144225 +1529.157179 +1529.184751 +1529.200069 +1529.202700 +1529.217152 +1529.250219 +1529.264704 +1529.277925 +1529.291644 +1529.305996 +1529.308461 +1529.354182 +1529.380755 +1529.395474 +1529.397338 +1529.408427 +1529.435866 +1529.447588 +1529.449886 +1529.462340 +1529.474694 +1529.508394 +1529.523312 +1529.539429 +1529.553615 +1529.569633 +1529.584984 +1529.600968 +1529.621114 +1529.636199 +1529.652316 +1529.666802 +1529.679622 +1529.681321 +1529.695673 +1529.732270 +1529.753782 +1529.766202 +1529.769666 +1529.780122 +1529.783252 +1529.795173 +1529.798570 +1529.812356 +1529.836199 +1529.846122 +1529.860774 +1529.872130 +1529.885017 +1529.887115 +1529.900401 +1529.918017 +1529.929939 +1529.943758 +1529.959875 +1529.962972 +1529.976292 +1529.989745 +1530.003631 +1530.047221 +1530.063039 +1530.077224 +1530.114887 +1530.122080 +1530.138963 +1530.149885 +1530.165703 +1530.178456 +1530.183052 +1530.194707 +1530.211157 +1530.224444 +1530.237098 +1530.239462 +1530.254047 +1530.267767 +1530.281487 +1530.296338 +1530.339562 +1530.343591 +1530.355879 +1530.360541 +1530.381953 +1530.393774 +1530.397171 +1530.409525 +1530.424344 +1530.439995 +1530.456578 +1530.483584 +1530.488646 +1530.503365 +1530.517018 +1530.530737 +1530.531903 +1530.546022 +1530.562672 +1530.579655 +1530.597870 +1530.608826 +1530.611456 +1530.627407 +1530.639362 +1530.658110 +1530.671796 +1530.686448 +1530.699368 +1530.701699 +1530.717850 +1530.730104 +1530.734167 +1530.745489 +1530.761639 +1530.777024 +1530.792142 +1530.805895 +1530.843291 +1530.870930 +1530.886315 +1530.909891 +1530.917184 +1530.929571 +1530.933601 +1530.943690 +1530.963637 +1530.973394 +1531.678888 +1532.210256 +1532.476090 +1536.487208 +1539.176849 +1539.315577 +1539.721837 +1539.862063 +1539.865093 +1541.180643 +1541.199258 +1541.291499 +1541.356101 +1541.441715 +1541.444213 +1541.453603 +1542.198957 +1542.211711 +1542.272151 +1543.190764 +1543.221367 +1543.330824 +1543.334021 +1543.381107 +1543.446475 +1543.451970 +1543.456565 +1544.237716 +1544.251869 +1544.338149 +1544.384736 +1544.401586 +1544.549371 +1544.570583 +1544.615805 +1544.644076 +1545.182837 +1545.212607 +1545.339647 +1545.403183 +1545.436183 +1545.560526 +1545.638081 +1545.661391 +1546.247371 +1546.326925 +1546.333585 +1546.933951 +1546.945806 +1547.489461 +1547.581802 +1548.086897 +1548.410240 +1548.500982 +1548.947935 +1548.977305 +1549.112104 +1549.163852 +1549.288294 +1549.299283 +1549.386163 +1550.132582 +1550.266681 +1550.270178 +1550.340674 +1550.343804 +1550.346701 +1550.938742 +1551.078835 +1551.079035 +1551.079534 +1551.179135 +1551.181233 +1551.181865 +1551.279301 +1551.380433 +1551.381332 +1551.383630 +1551.387193 +1551.479934 +1551.480666 +1551.580200 +1551.582498 +1551.588658 +1551.680033 +1551.684163 +1551.780166 +1551.784129 +1551.884562 +1551.980133 +1551.982031 +1552.080433 +1552.084395 +1552.180266 +1552.280266 +1552.380166 +1552.382097 +1552.384828 +1552.480266 +1552.580432 +1552.680732 +1552.780199 +1552.784428 +1552.880265 +1552.980498 +1552.983695 +1553.080432 +1553.082196 +1553.180398 +1553.182396 +1553.280731 +1553.282862 +1553.380831 +1553.480498 +1553.580331 +1553.580564 +1553.582596 +1553.680065 +1553.682529 +1553.684161 +1553.780164 +1553.782329 +1553.888722 +1553.980164 +1553.982262 +1554.080331 +1554.082295 +1554.087290 +1554.180497 +1554.182362 +1554.184993 +1554.188789 +1554.280530 +1554.282595 +1554.290420 +1554.380397 +1554.382228 +1554.482561 +1554.580597 +1554.585159 +1554.680530 +1554.780397 +1554.784859 +1554.880496 +1554.882261 +1554.884692 +1554.980463 +1554.985858 +1555.080196 +1555.180330 +1555.182727 +1555.280729 +1555.289320 +1555.380429 +1555.480429 +1555.580329 +1555.582460 +1555.680163 +1555.682993 +1555.782727 +1555.788254 +1555.880329 +1555.882294 +1555.980096 +1555.982094 +1557.495246 +1557.519022 +1557.659148 +1558.090816 +1558.327413 +1558.861112 +1558.872867 +1559.940531 +1560.227844 +1560.258879 +1560.386984 +1561.124380 +1561.302834 +1561.430640 +1561.569534 +1561.640230 +1561.735867 +1561.757413 +1561.800203 +1561.871698 +1561.938698 +1561.985418 +1562.087515 +1562.146656 +1562.158811 +1562.170832 +1562.199337 +1562.213456 +1562.227575 +1562.241761 +1562.277359 +1562.303133 +1562.319350 +1562.379723 +1562.447455 +1562.463939 +1562.533536 +1562.550086 +1562.564272 +1562.577458 +1562.591977 +1562.648820 +1562.732536 +1562.787615 +1562.801934 +1562.831504 +1562.888980 +1562.897871 +1562.933535 +1562.947954 +1562.959210 +1562.961041 +1562.990645 +1563.035000 +1563.046322 +1563.059542 +1563.100402 +1563.114354 +1563.126442 +1563.188114 +1563.202799 +1563.215819 +1563.231071 +1563.260242 +1563.273195 +1563.342293 +1563.402865 +1563.426076 +1563.441094 +1563.455746 +1563.472096 +1563.503332 +1563.506861 +1563.519116 +1563.544823 +1563.554747 +1563.571630 +1563.584750 +1563.683851 +1563.722512 +1563.736531 +1563.751716 +1563.793075 +1563.801966 +1563.813721 +1563.829072 +1563.858110 +1563.889845 +1563.901933 +1563.914953 +1563.916618 +1563.932302 +1563.994606 +1564.007260 +1564.019848 +1564.036764 +1564.064969 +1564.068033 +1564.079521 +1564.095705 +1564.144723 +1564.159242 +1564.175126 +1564.193974 +1564.207327 +1564.218049 +1564.233367 +1564.248352 +1564.262538 +1564.280753 +1564.318582 +1564.336364 +1564.358908 +1564.373960 +1564.390244 +1564.403963 +1564.406128 +1564.417084 +1564.432768 +1564.450284 +1564.464436 +1564.479022 +1564.519048 +1564.534999 +1564.549451 +1564.567100 +1564.584050 +1564.595638 +1564.610257 +1564.621645 +1564.636131 +1564.668765 +1564.680087 +1564.681885 +1564.695904 +1564.727306 +1564.754912 +1564.769597 +1564.785548 +1564.805162 +1564.810024 +1564.835365 +1564.847453 +1564.863637 +1564.879121 +1564.895438 +1564.909790 +1564.922711 +1564.938661 +1564.955445 +1564.980952 +1565.013653 +1565.022178 +1565.035198 +1565.038095 +1565.053047 +1565.067832 +1565.097902 +1565.108791 +1565.126840 +1565.140426 +1565.153746 +1565.155744 +1565.169064 +1565.179853 +1565.193573 +1565.196370 +1565.210956 +1565.224775 +1565.240493 +1565.254912 +1565.257409 +1565.271262 +1565.286347 +1565.301398 +1565.332900 +1565.347252 +1565.364169 +1565.395138 +1565.409057 +1565.422377 +1565.437262 +1565.466466 +1565.483050 +1565.496503 +1565.498534 +1565.513519 +1565.546087 +1565.560406 +1565.592474 +1565.607825 +1565.622410 +1565.627405 +1565.639393 +1565.655511 +1565.666533 +1565.670329 +1565.687112 +1565.701964 +1565.728970 +1565.736097 +1565.742923 +1565.758241 +1565.772427 +1565.787079 +1565.804128 +1565.818248 +1565.835264 +1565.849683 +1565.861538 +1565.876656 +1565.890076 +1565.904028 +1565.919380 +1565.934065 +1565.943822 +1565.958307 +1565.973392 +1565.977588 +1567.638392 +1568.282248 +1568.428202 +1568.536160 +1568.661368 +1569.843851 +1569.870058 +1570.735559 +1571.431928 +1572.101691 +1572.161731 +1572.243250 +1572.603789 +1572.635723 +1573.081078 +1573.219705 +1574.127930 +1574.972717 +1575.050906 +1575.054569 +1575.550472 +1575.741048 +1575.748874 +1575.917039 +1576.237152 +1576.329626 +1577.160094 +1577.588932 +1578.376810 +1579.228391 +1579.262423 +1579.287698 +1579.418301 +1579.469416 +1579.979472 +1580.187730 +1580.211307 +1580.434517 +1580.581037 +1580.655196 +1581.490093 +1581.621229 +1581.631852 +1581.660723 +1581.950533 +1581.961621 +1582.772210 +1583.060288 +1583.063319 +1583.443871 +1583.463451 +1583.633381 +1584.794852 +1584.803377 +1584.899281 +1584.902078 +1584.982930 +1584.987559 +1585.052527 +1585.675371 +1585.957089 +1585.982030 +1586.179366 +1586.181231 +1586.279832 +1586.282463 +1586.380065 +1586.383695 +1586.480398 +1586.484328 +1586.580331 +1586.583928 +1586.680598 +1586.681164 +1586.684527 +1586.780498 +1586.782129 +1586.784660 +1586.880431 +1586.882729 +1586.980930 +1586.982262 +1586.984660 +1587.080597 +1587.082362 +1587.084926 +1587.180764 +1587.182728 +1587.280531 +1587.284660 +1587.381030 +1587.383161 +1587.480697 +1587.483028 +1587.580930 +1587.680797 +1587.683361 +1587.688089 +1587.780796 +1587.783327 +1587.784260 +1587.880663 +1587.884426 +1587.980630 +1587.983061 +1588.080630 +1588.082827 +1588.085225 +1588.180663 +1588.182428 +1588.189387 +1588.280729 +1588.284825 +1588.288755 +1588.381062 +1588.382727 +1588.389587 +1588.480896 +1588.483926 +1588.580563 +1588.582727 +1588.680496 +1588.682294 +1588.780862 +1588.788321 +1588.880695 +1588.882560 +1588.888754 +1588.980762 +1588.982793 +1589.080862 +1589.084758 +1589.085424 +1589.180595 +1589.280895 +1589.285057 +1589.380795 +1589.382693 +1589.480562 +1589.482693 +1589.580895 +1589.582626 +1589.680795 +1589.688787 +1589.780628 +1589.781560 +1589.783159 +1589.880694 +1589.882326 +1589.885157 +1589.980528 +1589.982792 +1589.985256 +1590.080861 +1590.082592 +1590.180761 +1590.182925 +1590.280361 +1590.283458 +1590.380594 +1590.382792 +1590.388586 +1590.480760 +1590.482725 +1590.488686 +1590.580694 +1590.583424 +1590.680527 +1590.683058 +1590.780560 +1590.783524 +1590.785389 +1590.881126 +1590.883424 +1590.980693 +1590.983424 +1593.011294 +1593.104701 +1593.107698 +1593.142429 +1593.371267 +1594.107064 +1594.483221 +1594.524446 +1594.612025 +1594.720183 +1594.879457 +1595.457712 +1595.476959 +1595.501435 +1595.658977 +1595.710259 +1595.718817 +1595.790745 +1595.793043 +1595.801701 +1596.227341 +1596.415853 +1596.522446 +1596.571197 +1596.662473 +1596.732802 +1596.748520 +1596.791344 +1596.816418 +1596.853881 +1597.070298 +1597.106928 +1597.118849 +1597.134367 +1597.160641 +1597.211456 +1597.254780 +1597.330670 +1597.381153 +1597.392309 +1597.406361 +1597.468399 +1597.532701 +1597.670930 +1597.714653 +1597.787646 +1597.811356 +1597.868299 +1597.878788 +1597.880920 +1597.960640 +1597.989844 +1598.003697 +1598.004063 +1598.060806 +1598.098202 +1598.112221 +1598.126174 +1598.270563 +1598.293773 +1598.323643 +1598.347286 +1598.363004 +1598.378688 +1598.391675 +1598.420513 +1598.449717 +1598.464302 +1598.518381 +1598.533633 +1598.564569 +1598.576224 +1598.587879 +1598.602564 +1598.647819 +1598.659540 +1598.673726 +1598.689543 +1598.702997 +1598.719247 +1598.781019 +1598.793140 +1598.808891 +1598.823476 +1598.847219 +1598.873126 +1598.875158 +1598.887678 +1598.903296 +1598.917249 +1598.934398 +1598.973359 +1598.986679 +1599.015084 +1599.038894 +1599.049916 +1599.064069 +1599.076623 +1599.091907 +1599.104628 +1599.165001 +1599.180385 +1599.220678 +1599.237162 +1599.250116 +1599.277655 +1599.305294 +1599.318647 +1599.328237 +1599.343955 +1599.358873 +1599.374957 +1599.400132 +1599.415617 +1599.430435 +1599.438560 +1599.453179 +1599.470095 +1599.485280 +1599.519579 +1599.529503 +1599.545820 +1599.560472 +1599.577122 +1599.592506 +1599.606892 +1599.619712 +1599.634398 +1599.650348 +1599.674125 +1599.677488 +1599.715283 +1599.721943 +1599.744920 +1599.748217 +1599.791274 +1599.804960 +1599.819179 +1599.822876 +1599.836462 +1599.850415 +1599.887744 +1599.902529 +1599.911187 +1599.927138 +1599.939659 +1599.953944 +1599.969662 +1599.986012 +1599.998933 +1600.002130 +1600.015117 +1600.030734 +1600.045919 +1600.061204 +1600.064367 +1600.078320 +1600.094837 +1600.108989 +1600.123142 +1600.137427 +1600.153345 +1600.156009 +1600.170195 +1600.186545 +1600.199765 +1600.211720 +1600.227937 +1600.230168 +1600.243987 +1600.260671 +1600.285479 +1600.303728 +1600.314184 +1600.329335 +1600.336994 +1600.340957 +1600.352779 +1600.357008 +1600.368529 +1600.383315 +1600.401163 +1600.415449 +1600.433265 +1600.436695 +1600.448583 +1600.463434 +1600.477420 +1600.480651 +1600.495336 +1600.511786 +1600.527903 +1600.544154 +1600.558573 +1600.575056 +1600.590474 +1600.607524 +1600.609621 +1600.624174 +1600.654843 +1600.659039 +1600.671659 +1600.684946 +1600.698865 +1600.747717 +1600.762402 +1600.778319 +1600.805925 +1600.824606 +1600.832299 +1600.846917 +1600.855142 +1600.869295 +1600.871559 +1600.883214 +1600.887144 +1600.897900 +1600.901563 +1600.912785 +1600.918446 +1600.929501 +1600.942355 +1600.956241 +1600.970460 +1602.054475 +1602.576952 +1606.679379 +1608.126364 +1608.186370 +1608.208848 +1608.218905 +1608.838118 +1609.030792 +1610.366188 +1610.486068 +1610.626927 +1610.749105 +1611.213707 +1611.233454 +1611.332155 +1611.420433 +1611.423730 +1612.132620 +1612.135417 +1612.238980 +1612.604515 +1612.668217 +1612.763922 +1612.766586 +1612.972646 +1613.307478 +1613.320698 +1613.406412 +1621.078732 +1621.080796 +1621.178798 +1621.180796 +1621.280397 +1621.378898 +1621.380763 +1621.479464 +1621.579730 +1621.679930 +1621.780063 +1621.880463 +1621.979930 +1622.080296 +1622.180296 +1622.280662 +1622.380429 +1622.480262 +1622.580395 +1622.780462 +1622.980095 +1623.080362 +1623.280561 +1623.380361 +1623.480827 +1623.582526 +1623.680461 +1623.880427 +1624.080427 +1624.180560 +1624.280294 +1624.380593 +1624.480893 +1624.580626 +1624.680127 +1624.880027 +1624.980526 +1625.082158 +1625.180459 +1625.280493 +1625.380559 +1625.580459 +1625.680159 +1625.780326 +1625.880658 +1625.980425 +1627.177827 +1631.398202 +1631.443357 +1631.515185 +1631.554679 +1631.689244 +1631.728804 +1631.783983 +1631.851615 +1631.863936 +1631.878288 +1631.941092 +1631.965701 +1631.978987 +1632.006493 +1632.170695 +1632.197369 +1632.241458 +1632.286813 +1632.298567 +1632.315151 +1632.444421 +1632.461837 +1632.509789 +1632.583016 +1632.640592 +1632.664768 +1632.710622 +1632.772460 +1632.842057 +1632.858340 +1632.868497 +1632.882150 +1632.910322 +1632.922676 +1632.940591 +1632.955810 +1632.966499 +1632.997468 +1633.024108 +1633.054311 +1633.068530 +1633.080984 +1633.178520 +1633.214983 +1633.230634 +1633.242156 +1633.254844 +1633.266365 +1633.280851 +1633.294504 +1633.322143 +1633.338593 +1633.348516 +1633.363834 +1633.392173 +1633.403195 +1633.429702 +1633.445419 +1633.471993 +1633.485579 +1633.496968 +1633.509355 +1633.524141 +1633.537061 +1633.552379 +1633.566665 +1633.581683 +1633.630501 +1633.644220 +1633.655243 +1633.669861 +1633.684980 +1633.698832 +1633.713251 +1633.728203 +1633.731267 +1633.743421 +1633.757873 +1633.772359 +1633.786078 +1633.801596 +1633.813917 +1633.859638 +1633.881516 +1633.894270 +1633.907324 +1633.922209 +1633.939791 +1633.947051 +1633.960804 +1633.964000 +1633.991972 +1634.006025 +1634.020044 +1634.047250 +1634.064466 +1634.079085 +1634.106891 +1634.119645 +1634.133098 +1634.136861 +1634.148649 +1634.151379 +1634.164233 +1634.179784 +1634.191539 +1634.205658 +1634.220843 +1634.234996 +1634.273224 +1634.287843 +1634.298399 +1634.311519 +1634.315682 +1634.325339 +1634.329501 +1634.341056 +1634.342788 +1634.356408 +1634.373923 +1634.384546 +1634.397566 +1634.401929 +1634.412951 +1634.426904 +1634.443920 +1634.458772 +1634.473990 +1634.487776 +1634.503261 +1634.511486 +1634.549847 +1634.558472 +1634.571259 +1634.582082 +1634.594136 +1634.608355 +1634.624140 +1634.626537 +1634.640656 +1634.656108 +1634.668528 +1634.683147 +1634.699131 +1634.716081 +1634.747017 +1634.763200 +1634.769061 +1634.772125 +1634.784512 +1634.786877 +1634.799730 +1634.815481 +1634.826537 +1634.842155 +1634.856474 +1634.870460 +1634.884712 +1634.897433 +1634.913450 +1634.925871 +1634.944452 +1634.954675 +1634.971392 +1634.988308 +1635.002461 +1635.016747 +1635.031099 +1635.047349 +1635.060503 +1635.074356 +1635.090073 +1635.106024 +1635.121342 +1635.136627 +1635.152011 +1635.165464 +1635.179783 +1635.191438 +1635.203593 +1635.207722 +1635.219310 +1635.223473 +1635.234395 +1635.250313 +1635.255807 +1635.268028 +1635.270826 +1635.283713 +1635.299563 +1635.314116 +1635.329600 +1635.344918 +1635.375987 +1635.390306 +1635.404658 +1635.421575 +1635.429933 +1635.441621 +1635.449713 +1635.478684 +1635.491804 +1635.507189 +1635.520909 +1635.534795 +1635.540556 +1635.549014 +1635.554508 +1635.577918 +1635.591438 +1635.607122 +1635.622540 +1635.629766 +1635.636593 +1635.650978 +1635.665930 +1635.672956 +1635.696466 +1635.727535 +1635.743419 +1635.758204 +1635.774322 +1635.790605 +1635.806256 +1635.811917 +1635.823739 +1635.839423 +1635.855407 +1635.887242 +1635.903426 +1635.934295 +1635.949679 +1635.964664 +1641.066857 +1641.292165 +1642.378910 +1642.638251 +1642.851904 +1643.334787 +1644.120867 +1644.210677 +1644.750037 +1644.858462 +1644.925028 +1645.391794 +1645.430656 +1645.816270 +1645.897522 +1646.109776 +1646.119033 +1646.184634 +1649.182200 +1649.979835 +1650.124790 +1650.980134 +1651.135012 +1651.194319 +1651.290956 +1652.788790 +1653.139772 +1653.194018 +1653.428583 +1653.462949 +1653.765446 +1653.808436 +1653.974037 +1654.258119 +1654.446231 +1654.565345 +1654.689854 +1654.885058 +1654.999377 +1655.520722 +1655.793849 +1656.080295 +1656.177931 +1656.280495 +1656.378297 +1656.380961 +1656.478297 +1656.480128 +1656.578730 +1656.678530 +1656.681227 +1656.778663 +1656.781460 +1656.878796 +1656.881160 +1656.978929 +1657.078862 +1657.080661 +1657.179029 +1657.181093 +1657.278862 +1657.281326 +1657.378662 +1657.381060 +1657.478962 +1657.481126 +1657.578928 +1657.581126 +1657.778895 +1657.781559 +1657.878862 +1657.979128 +1657.981359 +1658.079128 +1658.082191 +1658.178928 +1658.180726 +1658.278928 +1658.281725 +1658.378894 +1658.481492 +1658.579061 +1658.678827 +1658.681858 +1658.778961 +1658.879060 +1658.881691 +1658.978894 +1658.981425 +1659.078594 +1659.081291 +1659.178894 +1659.181191 +1659.278993 +1659.281258 +1659.378893 +1659.380758 +1659.478693 +1659.579026 +1659.581657 +1659.678826 +1659.681391 +1659.778760 +1659.781324 +1659.878959 +1659.978893 +1660.078959 +1660.081124 +1660.178826 +1660.180757 +1660.278793 +1660.281457 +1660.379026 +1660.478959 +1660.481323 +1660.578892 +1660.581290 +1660.678792 +1660.681290 +1660.778859 +1660.878925 +1660.880923 +1660.978925 +1663.410491 +1664.732867 +1664.856910 +1665.284715 +1665.836762 +1665.889643 +1666.020478 +1666.147485 +1666.224075 +1666.278387 +1666.377787 +1666.393472 +1666.622443 +1666.709056 +1666.795070 +1666.842456 +1666.880751 +1666.894570 +1666.907990 +1666.962902 +1666.972592 +1667.078819 +1667.166931 +1667.179285 +1667.193138 +1667.245652 +1667.270128 +1667.281583 +1667.296701 +1667.325872 +1667.382648 +1667.396035 +1667.418945 +1667.430933 +1667.445885 +1667.515948 +1667.524773 +1667.538126 +1667.564566 +1667.580184 +1667.638592 +1667.651080 +1667.695635 +1667.710487 +1667.723840 +1667.767896 +1667.780883 +1667.791406 +1667.808888 +1667.822242 +1667.865598 +1667.880916 +1667.953310 +1667.967729 +1667.998465 +1668.045551 +1668.101495 +1668.118145 +1668.143254 +1668.154176 +1668.194169 +1668.206857 +1668.221875 +1668.235927 +1668.284912 +1668.298465 +1668.313750 +1668.329467 +1668.365298 +1668.425371 +1668.439324 +1668.464132 +1668.475554 +1668.478052 +1668.504492 +1668.512584 +1668.539224 +1668.554975 +1668.568628 +1668.598498 +1668.630266 +1668.643653 +1668.656773 +1668.667862 +1668.681648 +1668.694502 +1668.707955 +1668.711551 +1668.722674 +1668.738258 +1668.751811 +1668.764232 +1668.767562 +1668.779983 +1668.793636 +1668.808554 +1668.817778 +1668.830932 +1668.843985 +1668.878251 +1668.901228 +1668.912550 +1668.926336 +1668.940722 +1668.955840 +1668.969360 +1668.984212 +1669.009054 +1669.020675 +1669.024138 +1669.048481 +1669.052943 +1669.063566 +1669.066496 +1669.079383 +1669.082014 +1669.097132 +1669.108254 +1669.112150 +1669.122773 +1669.154275 +1669.168161 +1669.181980 +1669.195600 +1669.210519 +1669.227235 +1669.240622 +1669.252377 +1669.255740 +1669.266096 +1669.280748 +1669.283845 +1669.311850 +1669.334461 +1669.347515 +1669.357471 +1669.371391 +1669.395001 +1669.424071 +1669.437025 +1669.452876 +1669.467894 +1669.487541 +1669.510452 +1669.524038 +1669.553708 +1669.568627 +1669.580715 +1669.595034 +1669.611717 +1669.626535 +1669.640488 +1669.654008 +1669.667994 +1669.682546 +1669.699895 +1669.715047 +1669.726502 +1669.740854 +1669.755107 +1669.768094 +1669.781281 +1669.796299 +1669.810252 +1669.825936 +1669.831097 +1669.841354 +1669.845416 +1669.857671 +1669.870192 +1669.885043 +1669.889839 +1669.899762 +1669.915380 +1669.946615 +1669.953675 +1669.961467 +1669.976319 +1669.981347 +1669.991204 +1670.007954 +1670.022772 +1670.038856 +1670.053408 +1670.068993 +1670.084377 +1670.100394 +1670.114780 +1670.129832 +1670.140255 +1670.154440 +1670.168893 +1670.184544 +1670.215413 +1670.230797 +1670.246515 +1670.262099 +1670.277784 +1670.294101 +1670.294700 +1670.308087 +1670.322705 +1670.338423 +1670.353708 +1670.369425 +1670.383811 +1670.399761 +1670.414380 +1670.429398 +1670.444117 +1670.458736 +1670.473088 +1670.490571 +1670.503724 +1670.517677 +1670.533394 +1670.547946 +1670.562532 +1670.578183 +1670.594100 +1670.608586 +1670.624470 +1670.639122 +1670.653507 +1670.668626 +1670.682412 +1670.697996 +1670.713181 +1670.728765 +1670.760500 +1670.774853 +1670.790537 +1670.805089 +1670.821306 +1670.821806 +1670.836891 +1670.852142 +1670.897197 +1670.913081 +1681.193823 +1681.202748 +1685.210070 +1690.001840 +1691.078262 +1691.178395 +1691.178795 +1691.180360 +1691.278195 +1691.280526 +1691.378928 +1691.381126 +1691.479394 +1691.579760 +1691.679694 +1691.779927 +1691.879993 +1691.979760 +1692.180126 +1692.181891 +1692.280792 +1692.380459 +1692.582157 +1692.781890 +1692.981557 +1693.080724 +1693.182123 +1693.281224 +1693.480724 +1693.580491 +1693.681057 +1693.782056 +1693.881922 +1694.080957 +1694.181689 +1694.281922 +1694.380723 +1694.581955 +1694.681089 +1694.880589 +1694.980756 +1695.080789 +1695.181788 +1695.380955 +1695.381754 +1695.481754 +1695.581654 +1695.680888 +1695.780622 +1695.880089 +1698.591808 +1699.885480 +1699.965866 +1700.081583 +1700.977120 +1701.337759 +1701.704892 +1702.076187 +1702.339590 +1702.405191 +1702.481314 +1702.538124 +1702.760069 +1702.944784 +1702.998630 +1703.015713 +1703.051377 +1703.065796 +1703.079416 +1703.120208 +1703.181547 +1703.194867 +1703.222539 +1703.224770 +1703.238590 +1703.277418 +1703.302626 +1703.342452 +1703.388906 +1703.405156 +1703.462832 +1703.465030 +1703.476185 +1703.506788 +1703.532496 +1703.543917 +1703.559136 +1703.575486 +1703.652575 +1703.677417 +1703.689072 +1703.690637 +1703.705755 +1703.718809 +1703.745815 +1703.762532 +1703.787074 +1703.804057 +1703.837524 +1703.953574 +1703.973221 +1703.986874 +1703.999328 +1704.043384 +1704.059302 +1704.084610 +1704.098929 +1704.112781 +1704.131263 +1704.155239 +1704.169125 +1704.184476 +1704.199694 +1704.227533 +1704.240287 +1704.256438 +1704.285409 +1704.301293 +1704.313514 +1704.327500 +1704.343317 +1704.344916 +1704.360433 +1704.371822 +1704.374553 +1704.386374 +1704.402158 +1704.404623 +1704.431862 +1704.484876 +1704.495298 +1704.508818 +1704.510750 +1704.525668 +1704.567892 +1704.582245 +1704.599161 +1704.613713 +1704.632261 +1704.643883 +1704.660000 +1704.696664 +1704.710516 +1704.725501 +1704.728199 +1704.741519 +1704.744682 +1704.759367 +1704.771256 +1704.773587 +1704.804322 +1704.819674 +1704.846613 +1704.861132 +1704.873087 +1704.888871 +1704.902924 +1704.913979 +1704.928831 +1704.944549 +1704.983143 +1704.997995 +1705.000493 +1705.014712 +1705.032427 +1705.055871 +1705.069357 +1705.071688 +1705.084042 +1705.099627 +1705.127133 +1705.137955 +1705.153839 +1705.182544 +1705.184975 +1705.197829 +1705.211581 +1705.225567 +1705.242317 +1705.257968 +1705.269357 +1705.272520 +1705.285408 +1705.298361 +1705.332560 +1705.374052 +1705.389936 +1705.404721 +1705.407419 +1705.409883 +1705.423702 +1705.436989 +1705.449610 +1705.461931 +1705.478148 +1705.491202 +1705.506453 +1705.509150 +1705.523269 +1705.539986 +1705.549377 +1705.564595 +1705.593532 +1705.607185 +1705.637422 +1705.651275 +1705.663729 +1705.665760 +1705.687605 +1705.691268 +1705.719540 +1705.723303 +1705.734158 +1705.766759 +1705.780945 +1705.796096 +1705.808750 +1705.810715 +1705.824368 +1705.827831 +1705.840785 +1705.853972 +1705.869490 +1705.885607 +1705.899559 +1705.915144 +1705.929097 +1705.944981 +1705.959233 +1705.964062 +1705.976316 +1706.317408 +1707.809814 +1707.886537 +1707.932291 +1708.957931 +1709.014042 +1709.042647 +1709.057765 +1709.103386 +1709.117005 +1710.513041 +1711.480007 +1711.530323 +1711.531988 +1711.607046 +1711.685268 +1711.746806 +1712.617635 +1713.889561 +1715.399716 +1715.438411 +1716.584264 +1718.149897 +1718.368711 +1719.145234 +1719.187225 +1720.815862 +1720.844433 +1720.927516 +1724.636437 +1724.713926 +1724.714859 +1724.738768 +1724.772068 +1724.804103 +1724.841099 +1724.860713 +1724.903936 +1726.179293 +1726.278826 +1726.280425 +1726.378393 +1726.379825 +1726.478993 +1726.479692 +1726.579359 +1726.664207 +1726.664940 +1726.780458 +1726.880391 +1727.080824 +1727.180790 +1727.279858 +1727.381290 +1727.480524 +1727.580723 +1727.680324 +1727.780956 +1727.880856 +1727.980989 +1728.180623 +1728.330539 +1728.380456 +1728.481022 +1728.580822 +1728.680889 +1728.780556 +1728.880922 +1728.980988 +1729.080922 +1729.181188 +1729.282320 +1729.380655 +1729.480921 +1729.580888 +1729.680754 +1729.781121 +1729.881087 +1729.980654 +1730.080521 +1730.181187 +1730.481819 +1730.581453 +1730.880320 +1730.980587 +1732.410189 +1734.319944 +1734.715182 +1735.106956 +1736.706422 +1736.752875 +1736.801160 +1737.025036 +1737.181013 +1737.295898 +1737.311083 +1737.752208 +1737.831063 +1737.873886 +1737.905055 +1737.922971 +1738.011249 +1738.045914 +1738.060200 +1738.072754 +1738.088438 +1738.122238 +1738.197796 +1738.213280 +1738.228365 +1738.231129 +1738.243017 +1738.306886 +1738.321605 +1738.378215 +1738.392867 +1738.405721 +1738.421072 +1738.487739 +1738.538122 +1738.576750 +1738.589470 +1738.602257 +1738.640519 +1738.655937 +1738.671488 +1738.697962 +1738.778481 +1738.793832 +1738.841418 +1738.855670 +1738.884708 +1738.930229 +1738.943449 +1738.996030 +1739.023935 +1739.037588 +1739.072254 +1739.105687 +1739.107918 +1739.120938 +1739.122537 +1739.136123 +1739.152040 +1739.192233 +1739.204421 +1739.219373 +1739.229929 +1739.242516 +1739.244415 +1739.260465 +1739.276449 +1739.289703 +1739.340851 +1739.342749 +1739.373552 +1739.387238 +1739.399459 +1739.423735 +1739.439619 +1739.454571 +1739.494631 +1739.534890 +1739.545480 +1739.557867 +1739.560465 +1739.571720 +1739.586639 +1739.588537 +1739.602656 +1739.616742 +1739.632493 +1739.647211 +1739.662896 +1739.675350 +1739.692633 +1739.720704 +1739.734857 +1739.749842 +1739.767424 +1739.780411 +1739.782443 +1739.793498 +1739.797627 +1739.810481 +1739.824834 +1739.855070 +1739.874151 +1739.886472 +1739.889103 +1739.911347 +1739.926898 +1739.928696 +1739.950674 +1739.963328 +1739.975949 +1739.994430 +1740.003821 +1740.018073 +1740.021437 +1740.033491 +1740.036155 +1740.049409 +1740.064161 +1740.065926 +1740.081244 +1740.105819 +1740.130161 +1740.142049 +1740.148177 +1740.157068 +1740.160498 +1740.170854 +1740.183475 +1740.194397 +1740.197594 +1740.210314 +1740.224467 +1740.240284 +1740.254903 +1740.268190 +1740.283108 +1740.298459 +1740.313744 +1740.327464 +1740.330461 +1740.342382 +1740.357733 +1740.371153 +1740.384906 +1740.398859 +1740.412812 +1740.416741 +1740.431027 +1740.443681 +1740.455869 +1740.471586 +1740.485805 +1740.500690 +1740.519771 +1740.534290 +1740.546944 +1740.561763 +1740.565659 +1740.577913 +1740.580877 +1740.593098 +1740.625665 +1740.639851 +1740.657400 +1740.662395 +1740.671286 +1740.686138 +1740.702289 +1740.705885 +1740.732392 +1740.749375 +1740.763894 +1740.779078 +1740.789967 +1740.802355 +1740.818272 +1740.833524 +1740.838252 +1740.849142 +1740.864559 +1740.867290 +1740.880677 +1740.896361 +1740.910846 +1740.914576 +1740.926564 +1740.930194 +1740.941915 +1740.945512 +1740.957300 +1740.973251 +1740.977247 +1741.294862 +1746.167584 +1749.426556 +1749.505443 +1749.542773 +1749.579369 +1750.960387 +1750.977203 +1753.726751 +1755.135374 +1755.224585 +1755.255421 +1755.274735 +1757.443864 +1758.042498 +1758.147060 +1758.382890 +1758.386820 +1759.068238 +1759.098840 +1759.161677 +1759.166972 +1759.173199 +1759.278494 +1761.179691 +1761.181522 +1761.279724 +1761.381655 +1761.480023 +1761.481788 +1761.580023 +1761.581355 +1761.680389 +1761.780656 +1761.881355 +1761.981155 +1762.081222 +1762.082653 +1762.181122 +1762.280289 +1762.380489 +1762.481388 +1762.581154 +1762.681221 +1762.781287 +1762.881853 +1762.981021 +1763.082919 +1763.381320 +1763.481453 +1763.581020 +1763.681287 +1763.880887 +1764.081619 +1764.181020 +1764.281253 +1764.481153 +1764.581985 +1764.681519 +1764.781685 +1764.881518 +1764.981152 +1765.082517 +1765.181085 +1765.281318 +1765.381252 +1765.481784 +1765.583383 +1765.680952 +1765.981417 +1769.059270 +1770.460367 +1770.466295 +1770.499861 +1770.507553 +1770.522372 +1771.657336 +1771.723936 +1771.881778 +1772.106253 +1772.197895 +1772.235357 +1772.283709 +1772.285907 +1772.297695 +1772.313612 +1772.369523 +1772.421704 +1772.436423 +1772.462830 +1772.526832 +1772.542983 +1772.582177 +1772.671654 +1772.685140 +1772.763928 +1772.840718 +1772.929829 +1772.931893 +1772.948976 +1773.010348 +1773.021104 +1773.124334 +1773.186106 +1773.242749 +1773.269122 +1773.282276 +1773.346612 +1773.361563 +1773.408649 +1773.422902 +1773.445246 +1773.447477 +1773.463694 +1773.475782 +1773.500091 +1773.515110 +1773.529329 +1773.568156 +1773.619072 +1773.630661 +1773.659132 +1773.672918 +1773.724500 +1773.739885 +1773.754303 +1773.768456 +1773.780710 +1773.796195 +1773.799225 +1773.813244 +1773.828429 +1773.843814 +1773.880943 +1773.894730 +1773.911380 +1773.925732 +1773.953504 +1773.966191 +1774.024999 +1774.053670 +1774.067523 +1774.114909 +1774.128695 +1774.144280 +1774.173684 +1774.188003 +1774.215209 +1774.291932 +1774.333390 +1774.336354 +1774.348342 +1774.351905 +1774.363727 +1774.378112 +1774.393231 +1774.406184 +1774.459364 +1774.472951 +1774.485139 +1774.500523 +1774.514243 +1774.529095 +1774.543214 +1774.560097 +1774.571352 +1774.586104 +1774.629661 +1774.645378 +1774.660563 +1774.674882 +1774.690933 +1774.725365 +1774.734988 +1774.738252 +1774.751672 +1774.765858 +1774.767955 +1774.782741 +1774.796427 +1774.811146 +1774.824432 +1774.837819 +1774.840916 +1774.853969 +1774.856367 +1774.870053 +1774.885771 +1774.900523 +1774.917805 +1774.931159 +1774.933956 +1774.947209 +1774.959231 +1774.974915 +1774.988002 +1775.005051 +1775.016806 +1775.021035 +1775.036920 +1775.049241 +1775.066257 +1775.105851 +1775.129094 +1775.144445 +1775.160363 +1775.174715 +1775.190832 +1775.202021 +1775.217106 +1775.221002 +1775.233223 +1775.237452 +1775.251172 +1775.260396 +1775.262527 +1775.276180 +1775.290865 +1775.308781 +1775.318804 +1775.331458 +1775.344545 +1775.358598 +1775.372384 +1775.375647 +1775.387535 +1775.389800 +1775.407216 +1775.419503 +1775.422267 +1775.435487 +1775.451538 +1775.468121 +1775.497991 +1775.513309 +1775.526896 +1775.539683 +1775.554035 +1775.558331 +1775.568820 +1775.597259 +1775.609580 +1775.614009 +1775.624864 +1775.639483 +1775.651604 +1775.663692 +1775.675247 +1775.687635 +1775.691165 +1775.702453 +1775.705650 +1775.733356 +1775.736120 +1775.749706 +1775.753835 +1775.764991 +1775.779909 +1775.795460 +1775.811811 +1775.825896 +1775.841914 +1775.859996 +1775.866589 +1775.880742 +1775.891531 +1775.906516 +1775.911810 +1775.923665 +1775.938850 +1775.953069 +1775.967222 +1781.189860 +1781.487929 +1781.563919 +1781.581468 +1781.599351 +1781.603680 +1781.648135 +1781.658292 +1781.830619 +1781.844239 +1781.845171 +1781.863087 +1782.914800 +1782.927121 +1782.989193 +1783.029186 +1783.046002 +1783.096885 +1783.133948 +1783.158723 +1783.212403 +1783.243238 +1783.270145 +1783.334880 +1783.347101 +1783.368280 +1784.301346 +1784.407073 +1784.507406 +1785.658121 +1788.982094 +1789.665243 +1789.716792 +1789.759682 +1789.977198 +1792.862043 +1796.079456 +1796.179189 +1796.281587 +1796.284817 +1796.381787 +1796.580654 +1796.582386 +1796.680588 +1796.682486 +1796.780554 +1796.886148 +1796.981953 +1797.181186 +1797.281453 +1797.381186 +1797.481219 +1797.581053 +1797.882418 +1797.981785 +1798.081285 +1798.181252 +1798.281385 +1798.381019 +1798.481218 +1798.483050 +1798.681318 +1798.781385 +1798.980952 +1799.181817 +1799.281351 +1799.381417 +1799.677887 +1799.881750 +1799.882216 +1799.981950 +1800.081383 +1800.181117 +1800.280950 +1800.381350 +1800.481916 +1800.581383 +1800.681250 +1800.681882 +1800.781416 +1800.881449 +1800.981316 +1800.982948 +1802.544118 +1802.593269 +1802.666029 +1804.284509 +1804.340353 +1804.364096 +1805.117309 +1805.137089 +1805.167892 +1805.185574 +1805.263030 +1806.575350 +1806.787304 +1806.801457 +1806.889901 +1806.974217 +1806.989402 +1807.144213 +1807.286105 +1807.299924 +1807.354869 +1807.453537 +1807.510214 +1807.564493 +1807.627463 +1807.640683 +1807.782641 +1807.816973 +1808.004819 +1808.019504 +1808.103820 +1808.105718 +1808.130060 +1808.144379 +1808.206017 +1808.270053 +1808.291898 +1808.348275 +1808.362794 +1808.377213 +1808.428428 +1808.436919 +1808.451838 +1808.488634 +1808.515075 +1808.531158 +1808.543479 +1808.545910 +1808.558864 +1808.574682 +1808.609413 +1808.623133 +1808.641315 +1808.691098 +1808.703686 +1808.721002 +1808.745511 +1808.761028 +1808.774848 +1808.791165 +1808.803852 +1808.819536 +1808.858631 +1808.870752 +1808.886037 +1808.889333 +1808.905950 +1808.928960 +1808.944411 +1808.959996 +1808.974115 +1808.990166 +1809.020768 +1809.033389 +1809.049040 +1809.096160 +1809.111677 +1809.180042 +1809.193729 +1809.209047 +1809.210745 +1809.223798 +1809.262826 +1809.264757 +1809.280442 +1809.335087 +1809.336919 +1809.357065 +1809.383239 +1809.399456 +1809.431324 +1809.445443 +1809.447774 +1809.461794 +1809.464125 +1809.477578 +1809.493395 +1809.509779 +1809.542546 +1809.556099 +1809.559629 +1809.571351 +1809.571883 +1809.587601 +1809.590931 +1809.603485 +1809.617737 +1809.659562 +1809.675380 +1809.708447 +1809.722433 +1809.735020 +1809.748640 +1809.760162 +1809.763891 +1809.777478 +1809.791131 +1809.806449 +1809.831790 +1809.848540 +1809.856432 +1809.869619 +1809.883938 +1809.886568 +1809.902419 +1809.921167 +1809.930924 +1809.933621 +1809.945243 +1809.959162 +1809.960761 +1809.974081 +1809.987234 +1810.001187 +1810.016372 +1810.019302 +1810.032056 +1810.047174 +1810.064124 +1810.079076 +1810.096258 +1810.119635 +1810.131790 +1810.165489 +1810.193594 +1810.218136 +1810.230757 +1810.233654 +1810.248406 +1810.264990 +1810.277544 +1810.290031 +1810.292096 +1810.303784 +1810.308679 +1810.317404 +1810.334020 +1810.347340 +1810.360128 +1810.362625 +1810.373714 +1810.376744 +1810.389765 +1810.402985 +1810.406748 +1810.417936 +1810.422265 +1810.434353 +1810.449405 +1810.462492 +1810.464090 +1810.479375 +1810.510877 +1810.514773 +1810.524263 +1810.538649 +1810.552668 +1810.586468 +1810.601020 +1810.613974 +1810.615905 +1810.629192 +1810.633720 +1810.644743 +1810.648206 +1810.662225 +1810.680074 +1810.704250 +1810.717969 +1810.724663 +1810.734153 +1810.746741 +1810.748539 +1810.762159 +1810.777543 +1810.780773 +1810.793993 +1810.797956 +1810.808845 +1810.824463 +1810.828259 +1810.840747 +1810.853401 +1810.868952 +1810.882305 +1810.897123 +1810.911409 +1810.914906 +1810.928159 +1810.931689 +1810.945542 +1810.962358 +1810.968419 +1813.597753 +1813.618066 +1814.359324 +1814.379837 +1816.335613 +1816.525123 +1818.589224 +1818.712500 +1818.802810 +1819.475104 +1820.224087 +1821.610732 +1824.130177 +1824.142565 +1825.422484 +1825.425447 +1825.448324 +1825.487818 +1825.500672 +1825.641431 +1825.683422 +1825.697009 +1825.735037 +1825.748357 +1825.817122 +1826.588283 +1826.637434 +1826.669169 +1826.690581 +1826.791879 +1826.855349 +1826.930474 +1826.937667 +1828.103700 +1828.207129 +1828.263007 +1828.290546 +1828.291545 +1828.304599 +1828.317219 +1829.178058 +1829.212057 +1830.478323 +1830.628939 +1830.737330 +1831.081153 +1831.179154 +1831.181086 +1831.181286 +1831.183517 +1831.185615 +1831.279621 +1831.286114 +1831.381785 +1831.480087 +1831.681085 +1831.780652 +1831.880053 +1831.882151 +1832.280119 +1832.380785 +1832.382783 +1832.580618 +1832.582483 +1832.680751 +1832.682583 +1832.780785 +1832.881251 +1832.981717 +1833.081084 +1833.181583 +1833.281750 +1833.381350 +1833.481283 +1833.666298 +1833.880783 +1833.980783 +1834.080883 +1834.180950 +1834.281083 +1834.381183 +1834.481249 +1834.581748 +1834.681249 +1834.683480 +1834.781515 +1834.881482 +1834.981748 +1835.081382 +1835.181415 +1835.328901 +1835.381448 +1835.580449 +1835.780782 +1835.981081 +1836.898762 +1836.906988 +1836.947181 +1837.040487 +1837.062365 +1837.065163 +1837.085775 +1837.089605 +1837.116644 +1837.126701 +1837.139688 +1837.159568 +1838.060366 +1839.397728 +1839.442516 +1839.523901 +1839.574318 +1839.625999 +1839.655370 +1840.694629 +1840.737553 +1840.766324 +1840.864426 +1840.918439 +1841.236520 +1841.371718 +1841.625764 +1841.652238 +1841.715974 +1841.745311 +1841.849540 +1841.890133 +1841.904052 +1842.020902 +1842.053336 +1842.127062 +1842.176713 +1842.218537 +1842.329992 +1842.356899 +1842.452936 +1842.556699 +1842.609546 +1842.780075 +1842.794527 +1842.893462 +1842.938783 +1843.033022 +1843.047574 +1843.122799 +1843.151637 +1843.173315 +1843.189299 +1843.202486 +1843.214507 +1843.226961 +1843.266688 +1843.282406 +1843.299688 +1843.324330 +1843.334354 +1843.352336 +1843.416438 +1843.432888 +1843.445276 +1843.484570 +1843.497557 +1843.500521 +1843.527460 +1843.554700 +1843.567720 +1843.583271 +1843.619302 +1843.633588 +1843.651536 +1843.684337 +1843.695159 +1843.737117 +1843.769551 +1843.785136 +1843.799488 +1843.813308 +1843.825162 +1843.841113 +1843.856864 +1843.900720 +1843.916604 +1843.943311 +1843.960827 +1843.976578 +1843.993327 +1844.020167 +1844.059894 +1844.073414 +1844.089564 +1844.107247 +1844.120800 +1844.137117 +1844.152035 +1844.165122 +1844.185602 +1844.214473 +1844.227926 +1844.239215 +1844.254599 +1844.257297 +1844.272115 +1844.274213 +1844.290430 +1844.314473 +1844.330457 +1844.341213 +1844.342844 +1844.357396 +1844.373847 +1844.388998 +1844.404682 +1844.419135 +1844.433787 +1844.446074 +1844.462691 +1844.478109 +1844.506880 +1844.509577 +1844.522231 +1844.539447 +1844.554266 +1844.570616 +1844.585435 +1844.602684 +1844.617170 +1844.631022 +1844.646107 +1844.661092 +1844.678608 +1844.731255 +1844.743776 +1844.753566 +1844.766187 +1844.782571 +1844.796990 +1844.815271 +1844.831488 +1844.850370 +1844.860526 +1844.875511 +1844.887965 +1844.904082 +1844.918601 +1844.922964 +1844.936816 +1844.950369 +1844.953666 +1844.966553 +1844.982437 +1844.999554 +1845.024362 +1845.037782 +1845.040846 +1845.064289 +1845.066953 +1845.081438 +1845.095125 +1845.109643 +1845.124329 +1845.139480 +1845.141711 +1845.156463 +1845.173846 +1845.188897 +1845.199687 +1845.201152 +1845.213706 +1845.229390 +1845.243409 +1845.258794 +1845.267718 +1845.276809 +1845.292161 +1845.295191 +1845.308211 +1845.324828 +1845.357995 +1845.371248 +1845.374112 +1845.385767 +1845.389230 +1845.399653 +1845.403183 +1845.415537 +1845.430855 +1845.447405 +1845.470682 +1845.481504 +1845.490962 +1845.495457 +1845.506879 +1845.511208 +1845.525594 +1845.537182 +1845.539047 +1845.552833 +1845.558094 +1845.570316 +1845.574478 +1845.586732 +1845.601951 +1845.606013 +1845.619267 +1845.630022 +1845.632187 +1845.645807 +1845.659560 +1845.662623 +1845.676975 +1845.687232 +1845.690295 +1845.702117 +1845.705680 +1845.717668 +1845.733053 +1845.748704 +1845.749436 +1845.753932 +1845.765620 +1845.781704 +1845.797555 +1845.812906 +1845.830322 +1845.836815 +1845.858427 +1845.866086 +1845.872646 +1845.888530 +1845.893292 +1845.904747 +1845.908477 +1845.921564 +1845.937714 +1845.952566 +1855.518291 +1855.545131 +1855.563479 +1856.175833 +1856.601140 +1857.480660 +1857.590550 +1857.720653 +1860.780324 +1860.842262 +1862.254182 +1862.281421 +1862.299936 +1862.386915 +1862.615054 +1865.014152 +1866.177987 +1866.178220 +1866.180052 +1866.279852 +1866.379352 +1866.479852 +1866.481483 +1866.580318 +1866.582283 +1866.680251 +1866.780784 +1866.880617 +1866.980051 +1867.081117 +1867.380583 +1867.382615 +1867.480783 +1867.580816 +1867.583580 +1867.680350 +1867.780616 +1867.981149 +1868.080749 +1868.180549 +1868.281082 +1868.381215 +1868.480349 +1868.480716 +1868.580582 +1868.680682 +1868.780715 +1868.880748 +1868.980748 +1869.080415 +1869.180349 +1869.280215 +1869.380781 +1869.480581 +1869.581047 +1869.680381 +1869.780115 +1869.880681 +1869.980647 +1870.080681 +1870.180581 +1870.280547 +1870.380647 +1870.480381 +1870.580414 +1870.581979 +1870.680280 +1870.682911 +1870.780580 +1870.880413 +1870.883011 +1870.980513 +1870.982944 +1872.410049 +1873.305153 +1875.768421 +1876.043512 +1876.077211 +1876.164025 +1876.273049 +1876.357031 +1876.430058 +1876.489998 +1876.541880 +1876.603285 +1876.626295 +1876.627860 +1876.697957 +1876.758729 +1876.774247 +1876.850005 +1876.852069 +1876.876278 +1876.899455 +1876.915306 +1876.956931 +1877.002385 +1877.033121 +1877.059528 +1877.154733 +1877.168686 +1877.213374 +1877.229924 +1877.240514 +1877.252568 +1877.267453 +1877.282572 +1877.296491 +1877.309145 +1877.378376 +1877.391596 +1877.446574 +1877.494826 +1877.503950 +1877.518003 +1877.533021 +1877.608112 +1877.660160 +1877.670949 +1877.729324 +1877.796024 +1877.810476 +1877.841146 +1877.856231 +1877.900819 +1877.915038 +1877.916803 +1877.952468 +1877.965654 +1878.022298 +1878.034452 +1878.050736 +1878.111076 +1878.147939 +1878.190796 +1878.193227 +1878.205081 +1878.221065 +1878.293260 +1878.295524 +1878.311708 +1878.354199 +1878.414805 +1878.429190 +1878.445308 +1878.460492 +1878.478341 +1878.493326 +1878.506014 +1878.520099 +1878.534851 +1878.585034 +1878.614838 +1878.639080 +1878.673712 +1878.687399 +1878.702717 +1878.716170 +1878.731388 +1878.746107 +1878.749203 +1878.762190 +1878.774678 +1878.789996 +1878.804348 +1878.820465 +1878.835151 +1878.849337 +1878.863422 +1878.878474 +1878.881404 +1878.894158 +1878.908611 +1878.923529 +1878.937182 +1878.955197 +1878.968917 +1878.981338 +1878.996090 +1879.012640 +1879.025161 +1879.038647 +1879.051567 +1879.066519 +1879.081504 +1879.096056 +1879.098787 +1879.111474 +1879.126659 +1879.154897 +1879.164954 +1879.179473 +1879.182270 +1879.193159 +1879.196889 +1879.208943 +1879.224428 +1879.228291 +1879.241211 +1879.255463 +1879.269949 +1879.300718 +1879.313938 +1879.328857 +1879.342776 +1879.358727 +1879.373545 +1879.376908 +1879.390129 +1879.392793 +1879.405014 +1879.420665 +1879.434184 +1879.450302 +1879.453598 +1879.464521 +1879.480804 +1879.495290 +1879.510708 +1879.524894 +1879.535983 +1879.551767 +1879.565986 +1879.580904 +1879.619166 +1879.630155 +1879.641011 +1879.655996 +1879.670748 +1879.682736 +1879.686299 +1879.696988 +1879.721730 +1879.736615 +1879.739779 +1879.752632 +1879.756495 +1879.767984 +1879.783568 +1879.799419 +1879.800651 +1879.813505 +1879.825959 +1879.841011 +1879.845373 +1879.858426 +1879.869615 +1879.900817 +1879.908576 +1879.922962 +1879.936282 +1879.938846 +1879.953631 +1879.968150 +1879.984500 +1879.988197 +1880.014637 +1880.028723 +1880.043241 +1880.045706 +1880.059492 +1880.063321 +1880.074111 +1880.087464 +1880.104680 +1880.119565 +1880.134117 +1880.137880 +1880.149369 +1880.165686 +1880.180038 +1880.195489 +1880.210607 +1880.221896 +1880.236381 +1880.251666 +1880.256761 +1880.267683 +1880.280704 +1880.284567 +1880.295889 +1880.311673 +1880.315136 +1880.325892 +1880.329055 +1880.339745 +1880.354097 +1880.357527 +1880.370048 +1880.373944 +1880.384400 +1880.388396 +1880.400517 +1880.415935 +1880.431453 +1880.445539 +1880.461956 +1880.477340 +1880.492625 +1880.508875 +1880.513204 +1880.524826 +1880.528789 +1880.541343 +1880.553664 +1880.565186 +1880.579904 +1880.583101 +1880.610574 +1880.613970 +1880.625625 +1880.641309 +1880.644673 +1880.656894 +1880.657094 +1880.661423 +1880.671746 +1880.687763 +1880.702515 +1880.716268 +1880.761156 +1880.796055 +1880.807909 +1880.823594 +1880.853697 +1880.869548 +1880.890493 +1880.900383 +1880.917366 +1880.932085 +1880.946837 +1880.968349 +1887.716760 +1887.873304 +1887.901542 +1887.942201 +1887.967576 +1888.062814 +1888.068974 +1888.177632 +1888.193083 +1888.337372 +1888.737305 +1888.925950 +1888.955487 +1889.059516 +1889.357251 +1889.595779 +1889.667841 +1889.779962 +1889.811530 +1889.841367 +1889.892116 +1889.908200 +1889.932342 +1890.171836 +1890.324483 +1890.361579 +1890.378596 +1890.503804 +1890.548526 +1890.624649 +1890.682791 +1890.691083 +1890.714493 +1890.851755 +1891.119820 +1891.177496 +1891.179760 +1891.723117 +1891.843496 +1891.863909 +1892.469236 +1892.636602 +1892.798407 +1892.924747 +1893.399638 +1893.517287 +1893.874030 +1893.937567 +1893.980956 +1894.126111 +1894.135069 +1894.406431 +1894.718884 +1894.778258 +1894.838798 +1894.940463 +1894.980789 +1895.127209 +1895.556879 +1895.651418 +1895.691311 +1896.380421 +1896.588546 +1896.966934 +1897.121080 +1897.154014 +1897.190044 +1897.311822 +1897.496837 +1897.713720 +1897.776091 +1897.846520 +1898.101865 +1898.219514 +1898.390209 +1898.638661 +1898.758474 +1898.801198 +1898.944854 +1899.065633 +1899.113519 +1899.230269 +1899.357674 +1899.412353 +1899.562469 +1899.619213 +1899.643222 +1899.716282 +1899.923741 +1900.023641 +1900.093005 +1900.123741 +1900.244853 +1900.447816 +1900.483015 +1900.582615 +1900.618579 +1900.693071 +1900.764466 +1900.861136 +1900.949048 +1901.081815 +1901.178985 +1901.181748 +1901.379484 +1901.381881 +1901.479251 +1901.481682 +1901.579717 +1901.679683 +1901.779750 +1901.879883 +1901.882414 +1901.979949 +1902.080083 +1902.180082 +1902.182513 +1902.280016 +1902.380149 +1902.479982 +1902.483046 +1902.579982 +1902.680015 +1902.681847 +1902.779849 +1902.782313 +1902.879749 +1902.882746 +1902.979982 +1903.079982 +1903.180115 +1903.182779 +1903.279848 +1903.282013 +1903.379881 +1903.382346 +1903.479881 +1903.482512 +1903.580081 +1903.582046 +1903.680114 +1903.779981 +1903.782612 +1903.879948 +1903.882978 +1903.980147 +1904.079847 +1904.082511 +1904.180080 +1904.182312 +1904.280180 +1904.282711 +1904.380047 +1904.382045 +1904.479847 +1904.579547 +1904.581912 +1904.682211 +1904.779747 +1904.782378 +1904.880180 +1904.979913 +1904.982677 +1905.080013 +1905.180013 +1905.182477 +1905.280079 +1905.282510 +1905.382444 +1905.479979 +1905.579846 +1905.582676 +1905.680146 +1905.682643 +1905.779979 +1905.782676 +1905.880145 +1905.882243 +1908.237186 +1908.286204 +1908.321701 +1908.643046 +1909.655633 +1909.695293 +1909.876878 +1909.918503 +1910.011343 +1910.073148 +1910.089265 +1910.182838 +1910.247773 +1910.438116 +1910.443677 +1910.689864 +1910.755365 +1910.937483 +1910.980140 +1911.069717 +1911.114805 +1911.128392 +1911.213040 +1911.248039 +1911.270183 +1911.328825 +1911.406414 +1911.454665 +1911.465155 +1911.481039 +1911.511475 +1911.521565 +1911.537249 +1911.564855 +1911.577342 +1911.591994 +1911.617536 +1911.631522 +1911.645108 +1911.660626 +1911.674179 +1911.693659 +1911.705614 +1911.721698 +1911.733886 +1911.791994 +1911.825228 +1911.834052 +1911.848671 +1911.861591 +1911.874212 +1911.913306 +1911.926227 +1911.964988 +1911.976676 +1911.987832 +1911.998554 +1912.013106 +1912.041911 +1912.064721 +1912.076010 +1912.090296 +1912.145873 +1912.175311 +1912.190629 +1912.257162 +1912.271215 +1912.286299 +1912.327625 +1912.341877 +1912.356429 +1912.371381 +1912.423762 +1912.433086 +1912.514305 +1912.562689 +1912.572280 +1912.583469 +1912.595723 +1912.609443 +1912.625660 +1912.671514 +1912.685000 +1912.699286 +1912.713272 +1912.722896 +1912.738580 +1912.770748 +1912.780372 +1912.821264 +1912.834551 +1912.848503 +1912.851034 +1912.863189 +1912.875310 +1912.888463 +1912.915303 +1912.929023 +1912.945340 +1912.957727 +1912.972146 +1912.983768 +1912.995756 +1913.009376 +1913.021930 +1913.038014 +1913.050534 +1913.062855 +1913.077940 +1913.090361 +1913.103082 +1913.117701 +1913.131920 +1913.144008 +1913.182402 +1913.196455 +1913.209142 +1913.224294 +1913.238346 +1913.253831 +1913.266851 +1913.277407 +1913.290195 +1913.304547 +1913.332086 +1913.374177 +1913.401783 +1913.415403 +1913.429222 +1913.442842 +1913.455462 +1913.484400 +1913.497887 +1913.511240 +1913.538146 +1913.550234 +1913.564786 +1913.580038 +1913.583967 +1913.593824 +1913.607677 +1913.621763 +1913.626691 +1913.635416 +1913.638945 +1913.651200 +1913.677440 +1913.691992 +1913.704646 +1913.719864 +1913.762722 +1913.776674 +1913.790927 +1913.806511 +1913.821529 +1913.834550 +1913.846138 +1913.856827 +1913.869848 +1913.884466 +1913.898086 +1913.913704 +1913.929022 +1913.943174 +1913.947204 +1913.957560 +1913.961856 +1913.972245 +1913.975342 +1913.987497 +1914.001016 +1914.015502 +1914.030220 +1914.045305 +1914.059824 +1914.073411 +1914.087996 +1914.101915 +1914.106045 +1914.117333 +1914.130886 +1914.144839 +1914.173477 +1914.188062 +1914.202948 +1914.217933 +1914.218166 +1914.247736 +1914.261389 +1914.276640 +1914.282268 +1914.289761 +1914.305878 +1914.319930 +1914.333450 +1914.349534 +1914.363953 +1914.380570 +1914.394589 +1914.409208 +1914.422761 +1914.437113 +1914.452165 +1914.480736 +1914.496354 +1914.511306 +1914.525391 +1914.539877 +1914.581202 +1914.595754 +1914.611172 +1914.626990 +1914.642774 +1914.658092 +1914.672910 +1914.718864 +1914.733983 +1914.749367 +1914.763786 +1914.778172 +1914.793223 +1914.809374 +1914.824459 +1914.840210 +1914.900882 +1914.915334 +1914.930719 +1914.943739 +1914.958991 +1914.988861 +1915.003147 +1915.018631 +1915.033150 +1915.048601 +1915.064285 +1915.095188 +1915.152097 +1915.183633 +1915.198917 +1915.214502 +1915.231418 +1915.245770 +1915.322494 +1915.351365 +1915.381035 +1915.397119 +1915.412304 +1915.573342 +1915.587628 +1915.628554 +1915.644704 +1915.659723 +1915.690026 +1915.862153 +1915.876972 +1915.892123 +1915.961854 +1926.133372 +1926.195043 +1927.141663 +1928.149487 +1929.980721 +1930.199935 +1931.193507 +1931.253180 +1936.078683 +1936.180881 +1936.278850 +1936.379216 +1936.479415 +1936.579615 +1936.679881 +1936.780015 +1936.879948 +1936.980048 +1937.180147 +1937.280114 +1937.380813 +1937.480180 +1937.580247 +1937.680546 +1937.780380 +1937.880180 +1937.980513 +1938.079880 +1938.279647 +1938.480046 +1938.580013 +1938.680446 +1938.780246 +1938.880345 +1938.980445 +1939.279979 +1939.379979 +1939.480112 +1939.579912 +1939.680112 +1939.780178 +1939.880344 +1939.980478 +1940.080378 +1940.179978 +1940.280178 +1940.380277 +1940.480277 +1940.680277 +1940.980210 +1941.663493 +1941.699590 +1944.810276 +1944.998321 +1945.015537 +1945.610009 +1945.682070 +1945.730588 +1946.167318 +1946.518966 +1946.534683 +1946.592093 +1946.707910 +1946.907710 +1947.080271 +1947.092791 +1947.192225 +1947.247703 +1947.378505 +1947.437513 +1947.450567 +1947.468782 +1947.510773 +1947.570347 +1947.584233 +1947.636514 +1947.649201 +1947.663820 +1947.704146 +1947.775508 +1947.788362 +1947.910373 +1947.939477 +1948.017532 +1948.030253 +1948.091059 +1948.106044 +1948.132950 +1948.172910 +1948.197652 +1948.214735 +1948.298451 +1948.322028 +1948.335781 +1948.348301 +1948.372943 +1948.385964 +1948.414235 +1948.429587 +1948.513836 +1948.528321 +1948.556826 +1948.602514 +1948.640575 +1948.654728 +1948.668381 +1948.684864 +1948.700582 +1948.724725 +1948.785930 +1948.800582 +1948.818397 +1948.880702 +1948.907408 +1948.922760 +1948.969779 +1949.034448 +1949.037978 +1949.049566 +1949.062420 +1949.077039 +1949.093023 +1949.096020 +1949.124191 +1949.134781 +1949.210239 +1949.237878 +1949.252962 +1949.269879 +1949.280368 +1949.293755 +1949.308407 +1949.322426 +1949.339010 +1949.353162 +1949.366182 +1949.368347 +1949.382699 +1949.398317 +1949.409739 +1949.425390 +1949.441174 +1949.455959 +1949.493921 +1949.507874 +1949.525556 +1949.539342 +1949.554827 +1949.594054 +1949.606775 +1949.608340 +1949.623825 +1949.651763 +1949.668879 +1949.683731 +1949.709905 +1949.724624 +1949.740408 +1949.783798 +1949.800581 +1949.837178 +1949.862819 +1949.879269 +1949.881433 +1949.892123 +1949.895752 +1949.908573 +1949.931517 +1949.957424 +1949.971909 +1949.984464 +1949.998882 +1950.026155 +1950.029119 +1950.044970 +1950.056325 +1950.068380 +1950.082965 +1950.098116 +1950.114001 +1950.127887 +1950.143704 +1950.147167 +1950.159788 +1950.171443 +1950.187394 +1950.190924 +1950.201979 +1950.233747 +1950.248333 +1950.263484 +1950.266515 +1950.279768 +1950.283664 +1950.297350 +1950.324190 +1950.328985 +1950.338076 +1950.340873 +1950.353927 +1950.357091 +1950.371942 +1950.385695 +1950.409605 +1950.422858 +1950.426388 +1950.438609 +1950.452362 +1950.468612 +1950.484729 +1950.498549 +1950.502811 +1950.512735 +1950.542105 +1950.566980 +1950.579568 +1950.606541 +1950.649664 +1950.665249 +1950.679002 +1950.694353 +1950.697983 +1950.707939 +1950.725089 +1950.740107 +1950.756158 +1950.768545 +1950.783797 +1950.798216 +1950.812868 +1950.813467 +1950.827753 +1950.833347 +1950.842571 +1950.859188 +1950.877636 +1950.882098 +1950.892821 +1950.896650 +1950.908672 +1950.924090 +1950.937976 +1950.964016 +1950.970343 +1953.098247 +1958.618587 +1962.260009 +1963.770164 +1963.802865 +1964.853580 +1971.177583 +1971.179581 +1971.278515 +1971.378515 +1971.478948 +1971.480812 +1971.579314 +1971.679547 +1971.780279 +1971.879613 +1971.979979 +1972.080612 +1972.180012 +1972.279280 +1972.379679 +1972.579779 +1972.681311 +1972.781177 +1972.880178 +1972.979745 +1973.080078 +1973.181543 +1973.280611 +1973.380144 +1973.479945 +1973.579878 +1973.679511 +1973.679944 +1973.779978 +1973.880177 +1973.979811 +1974.081276 +1974.180077 +1974.280410 +1974.380044 +1974.480243 +1974.580010 +1974.679244 +1974.779743 +1974.879910 +1974.979743 +1975.079943 +1975.180409 +1975.280242 +1975.380276 +1975.480475 +1975.579942 +1975.663525 +1975.779809 +1975.781507 +1975.980109 +1978.819733 +1979.841310 +1979.904380 +1980.382968 +1981.505578 +1981.507043 +1981.639444 +1981.938811 +1981.953829 +1982.038944 +1982.095387 +1982.143905 +1982.223292 +1982.444604 +1982.497818 +1982.636812 +1982.689759 +1982.703345 +1982.769646 +1982.841907 +1982.845237 +1982.906442 +1982.908107 +1983.011304 +1983.030151 +1983.079169 +1983.143105 +1983.171810 +1983.184663 +1983.242905 +1983.311203 +1983.322159 +1983.368246 +1983.393787 +1983.484330 +1983.532182 +1983.580800 +1983.688259 +1983.740041 +1983.769811 +1983.785629 +1983.810803 +1983.813867 +1983.841639 +1983.856091 +1983.900480 +1983.911702 +1983.927420 +1984.004809 +1984.020327 +1984.032581 +1984.117630 +1984.142505 +1984.156191 +1984.280167 +1984.313400 +1984.356990 +1984.367479 +1984.382931 +1984.408305 +1984.424189 +1984.459687 +1984.488891 +1984.500480 +1984.514499 +1984.517063 +1984.555957 +1984.571509 +1984.583696 +1984.610869 +1984.697516 +1984.710370 +1984.711169 +1984.725055 +1984.738641 +1984.757056 +1984.829517 +1984.843003 +1984.853326 +1984.868744 +1984.872307 +1984.914598 +1984.930349 +1984.943869 +1984.973506 +1984.988924 +1985.005041 +1985.034046 +1985.045301 +1985.057122 +1985.059853 +1985.083962 +1985.086060 +1985.098081 +1985.106906 +1985.119094 +1985.134312 +1985.136776 +1985.147132 +1985.159820 +1985.162217 +1985.175937 +1985.178701 +1985.191222 +1985.193519 +1985.205241 +1985.219160 +1985.233446 +1985.249397 +1985.253826 +1985.267678 +1985.282031 +1985.293985 +1985.308671 +1985.312034 +1985.325820 +1985.339473 +1985.370209 +1985.373173 +1985.382630 +1985.398780 +1985.412533 +1985.416263 +1985.430948 +1985.445067 +1985.459753 +1985.462650 +1985.472373 +1985.474138 +1985.504275 +1985.522290 +1985.537342 +1985.551528 +1985.566746 +1985.582263 +1985.598247 +1985.612433 +1985.638008 +1985.652227 +1985.656289 +1985.666313 +1985.669043 +1985.680765 +1985.693818 +1985.697282 +1985.721524 +1985.743569 +1985.749396 +1985.771441 +1985.785560 +1985.798713 +1985.811967 +1985.826386 +1985.842037 +1985.857488 +1985.888990 +1985.897281 +1985.904408 +1985.918027 +1985.921590 +1985.932147 +1985.947431 +1985.952060 +1985.962483 +1985.967877 +1986.625353 +1990.357916 +1991.423650 +1991.600439 +1991.648857 +1991.652421 +1991.714991 +1991.734039 +1991.790549 +1991.806300 +1992.846392 +1992.944960 +1992.970534 +1993.036901 +1994.299771 +1994.367336 +1994.446424 +1994.460676 +1996.135033 +1996.972995 +1999.980751 +2000.529568 +2000.611985 +2000.628103 +2000.682315 +2000.824273 +2001.678618 +2001.735361 +2001.777885 +2002.595167 +2002.638657 +2002.732130 +2004.700826 +2004.739121 +2004.745514 +2004.751608 +2004.798395 +2004.850010 +2006.078380 +2006.080145 +2006.178613 +2006.183675 +2006.185706 +2006.280678 +2006.283741 +2006.285406 +2006.379612 +2006.481010 +2006.484174 +2006.579412 +2006.679412 +2006.684906 +2006.779545 +2006.979778 +2007.080211 +2007.082508 +2007.180310 +2007.280876 +2007.380610 +2007.479644 +2007.579977 +2007.680077 +2007.684273 +2007.785338 +2007.979943 +2008.080676 +2008.082507 +2008.180543 +2008.280709 +2008.380709 +2008.480542 +2008.482640 +2008.580642 +2008.680642 +2008.780309 +2008.879876 +2008.980076 +2009.079876 +2009.180508 +2009.280475 +2009.282806 +2009.380708 +2009.480874 +2009.680641 +2009.780774 +2009.881040 +2009.980541 +2009.981440 +2010.080208 +2010.180574 +2010.380374 +2010.480440 +2010.580540 +2010.680673 +2010.780407 +2010.981039 +2011.325861 +2011.343110 +2011.635184 +2011.647239 +2011.743909 +2011.777642 +2013.806744 +2013.859325 +2013.920597 +2014.034649 +2014.095588 +2015.218364 +2015.244139 +2016.262353 +2016.507274 +2016.521360 +2016.595419 +2016.647234 +2016.756458 +2016.766814 +2016.898949 +2016.940973 +2017.055359 +2017.192688 +2017.224823 +2017.283930 +2017.312568 +2017.379201 +2017.485495 +2017.509937 +2017.655258 +2017.669977 +2017.712002 +2017.726887 +2017.801745 +2017.833380 +2017.893953 +2017.910070 +2017.950529 +2017.993819 +2018.034146 +2018.046433 +2018.121858 +2018.148764 +2018.164016 +2018.180366 +2018.192421 +2018.279434 +2018.308571 +2018.309037 +2018.325021 +2018.374172 +2018.417062 +2018.446233 +2018.483629 +2018.533846 +2018.560885 +2018.592653 +2018.609137 +2018.650795 +2018.677968 +2018.713799 +2018.727951 +2018.740905 +2018.743502 +2018.756822 +2018.772007 +2018.813566 +2018.826353 +2018.840039 +2018.853326 +2018.855124 +2018.871208 +2018.901311 +2018.926086 +2018.927651 +2018.970442 +2018.983495 +2019.059553 +2019.127185 +2019.140072 +2019.153858 +2019.166179 +2019.180631 +2019.221491 +2019.236043 +2019.275203 +2019.292353 +2019.307837 +2019.370908 +2019.386825 +2019.399912 +2019.466745 +2019.480964 +2019.482662 +2019.497548 +2019.514531 +2019.530315 +2019.557920 +2019.575536 +2019.603941 +2019.621890 +2019.662982 +2019.679865 +2019.710201 +2019.725686 +2019.755722 +2019.757820 +2019.791753 +2019.808336 +2019.820791 +2019.826618 +2019.828982 +2019.844034 +2019.907138 +2019.921823 +2019.936641 +2019.962615 +2019.996581 +2020.012565 +2020.027883 +2020.059185 +2020.062116 +2020.073837 +2020.089721 +2020.100544 +2020.117261 +2020.130314 +2020.146065 +2020.162349 +2020.178399 +2020.192285 +2020.205006 +2020.221356 +2020.237307 +2020.251693 +2020.254423 +2020.268909 +2020.283794 +2020.299045 +2020.314730 +2020.317627 +2020.330114 +2020.345033 +2020.359085 +2020.363780 +2020.373970 +2020.387157 +2020.390354 +2020.406305 +2020.419092 +2020.437340 +2020.459218 +2020.474969 +2020.487390 +2020.528815 +2020.545965 +2020.560017 +2020.594017 +2020.597813 +2020.605871 +2020.620124 +2020.624286 +2020.636208 +2020.667044 +2020.683361 +2020.698412 +2020.711299 +2020.724053 +2020.726084 +2020.752891 +2020.756720 +2020.767643 +2020.770507 +2020.783893 +2020.787623 +2020.800943 +2020.811865 +2020.826617 +2020.853057 +2020.884026 +2020.907936 +2020.922588 +2020.931179 +2020.933444 +2020.946530 +2020.949461 +2020.961449 +2020.965278 +2021.577066 +2021.605071 +2021.619057 +2023.202272 +2033.169295 +2033.270894 +2034.148882 +2034.196967 +2036.204424 +2036.303358 +2038.602657 +2038.826399 +2038.851674 +2038.925933 +2039.665626 +2041.081142 +2041.179544 +2041.181275 +2041.184406 +2041.279777 +2041.280476 +2041.280976 +2041.380409 +2041.480676 +2041.484672 +2041.580875 +2041.585105 +2041.681208 +2041.681908 +2041.781441 +2041.785604 +2041.881142 +2042.080442 +2042.180941 +2042.182906 +2042.281574 +2042.381441 +2042.481341 +2042.581574 +2042.681507 +2042.781707 +2042.881607 +2042.883571 +2042.981640 +2043.081607 +2043.181407 +2043.186735 +2043.280974 +2043.380874 +2043.481273 +2043.581539 +2043.583338 +2043.681439 +2043.780807 +2043.881239 +2043.981239 +2044.081872 +2044.181705 +2044.281772 +2044.284070 +2044.381505 +2044.481905 +2044.681472 +2044.780506 +2044.880473 +2044.981338 +2045.080739 +2045.181305 +2045.283003 +2045.380905 +2045.481404 +2045.581504 +2045.681537 +2045.781471 +2045.882003 +2045.981371 +2046.171847 +2046.188963 +2046.204148 +2046.242642 +2046.255330 +2046.341210 +2046.372179 +2046.395156 +2046.441510 +2046.449502 +2046.488929 +2048.815167 +2048.906909 +2048.932716 +2049.102580 +2049.146968 +2049.160522 +2049.165217 +2051.324689 +2051.440339 +2051.568445 +2051.582530 +2051.595617 +2051.784928 +2051.915264 +2051.937775 +2051.949097 +2052.037508 +2052.131980 +2052.143902 +2052.160685 +2052.197848 +2052.300179 +2052.314931 +2052.383728 +2052.515796 +2052.545167 +2052.699079 +2052.713532 +2052.726619 +2052.740272 +2052.843268 +2052.856955 +2052.869709 +2052.932779 +2052.960984 +2052.976235 +2053.003741 +2053.029682 +2053.109169 +2053.155190 +2053.208936 +2053.237041 +2053.262882 +2053.324920 +2053.342402 +2053.411600 +2053.426085 +2053.535409 +2053.564580 +2053.587024 +2053.598113 +2053.652425 +2053.663048 +2053.665679 +2053.679598 +2053.730047 +2053.731979 +2053.746764 +2053.777800 +2053.790320 +2053.828516 +2053.842035 +2053.859318 +2053.871772 +2053.886890 +2053.889321 +2053.937407 +2053.951859 +2053.968542 +2054.006404 +2054.023487 +2054.049727 +2054.078865 +2054.089787 +2054.121289 +2054.130480 +2054.145099 +2054.159884 +2054.177266 +2054.203207 +2054.214229 +2054.216427 +2054.228748 +2054.298012 +2054.299677 +2054.315362 +2054.353723 +2054.367942 +2054.382961 +2054.398878 +2054.412598 +2054.476534 +2054.490919 +2054.505138 +2054.531146 +2054.546597 +2054.549727 +2054.561881 +2054.577233 +2054.624352 +2054.637839 +2054.640836 +2054.653989 +2054.668475 +2054.691085 +2054.705704 +2054.718924 +2054.733676 +2054.747829 +2054.759917 +2054.777499 +2054.792983 +2054.807802 +2054.825684 +2054.838671 +2054.855454 +2054.892850 +2054.895181 +2054.907036 +2054.909234 +2054.922487 +2054.938305 +2054.976000 +2054.987855 +2055.002640 +2055.042567 +2055.058218 +2055.091052 +2055.103339 +2055.116493 +2055.134109 +2055.165610 +2055.168974 +2055.183026 +2055.195913 +2055.211931 +2055.249993 +2055.275534 +2055.288188 +2055.291684 +2055.302240 +2055.318324 +2055.320955 +2055.333309 +2055.336273 +2055.347728 +2055.363612 +2055.378031 +2055.380462 +2055.394515 +2055.410332 +2055.424518 +2055.477432 +2055.493216 +2055.496679 +2055.519823 +2055.533908 +2055.549460 +2055.564678 +2055.581095 +2055.594082 +2055.596879 +2055.611797 +2055.652223 +2055.662779 +2055.698777 +2055.702107 +2055.713529 +2055.728380 +2055.743798 +2055.755420 +2055.758017 +2055.770538 +2055.782859 +2055.785790 +2055.797678 +2055.812696 +2055.827848 +2055.845064 +2055.856552 +2055.872470 +2055.879463 +2055.890651 +2055.912263 +2055.928180 +2055.952023 +2055.968540 +2060.719251 +2060.744992 +2060.788648 +2060.894509 +2062.046722 +2062.082154 +2062.111824 +2062.163472 +2063.705928 +2064.338428 +2064.363437 +2064.672094 +2065.519679 +2065.605360 +2065.804727 +2066.154877 +2066.161370 +2066.165866 +2066.225240 +2066.239759 +2066.341923 +2066.421010 +2066.521010 +2067.203427 +2067.231965 +2067.337493 +2068.221342 +2068.231631 +2068.290406 +2068.305957 +2071.123969 +2073.582209 +2073.625798 +2075.099923 +2075.932889 +2076.179942 +2076.281507 +2076.286402 +2076.380508 +2076.382606 +2076.482372 +2076.580940 +2076.582306 +2076.681173 +2076.686068 +2076.781506 +2076.881240 +2076.886401 +2076.981373 +2077.081473 +2077.181073 +2077.281373 +2077.281739 +2077.347839 +2077.374413 +2077.453134 +2077.554266 +2077.581739 +2077.681306 +2077.781272 +2077.881139 +2077.981006 +2077.982970 +2078.081805 +2078.182337 +2078.281771 +2078.381804 +2078.481471 +2078.581738 +2078.681638 +2078.781304 +2078.786133 +2078.881604 +2078.981537 +2078.984135 +2079.081471 +2079.181537 +2079.283635 +2079.381570 +2079.383602 +2079.481470 +2079.681637 +2079.881370 +2079.981237 +2079.983301 +2080.081303 +2080.086398 +2080.181569 +2080.186098 +2080.281469 +2080.381736 +2080.481503 +2080.580936 +2080.582868 +2080.681502 +2080.683400 +2080.781402 +2080.783867 +2080.881069 +2080.881535 +2080.981202 +2080.983134 +2083.749132 +2083.752495 +2084.430916 +2085.356589 +2085.413566 +2085.416796 +2085.530049 +2085.981331 +2086.418959 +2086.455989 +2086.479832 +2086.480631 +2086.547630 +2086.777234 +2086.800577 +2086.861416 +2086.875469 +2086.904640 +2086.997480 +2087.012598 +2087.056255 +2087.089022 +2087.116195 +2087.128482 +2087.213098 +2087.227516 +2087.240903 +2087.310134 +2087.390353 +2087.406071 +2087.446864 +2087.504173 +2087.535242 +2087.594815 +2087.604273 +2087.619691 +2087.663447 +2087.693550 +2087.786923 +2087.813730 +2087.841901 +2087.900509 +2087.942734 +2087.984958 +2088.010066 +2088.038871 +2088.100043 +2088.101708 +2088.117193 +2088.200509 +2088.309866 +2088.353090 +2088.368608 +2088.393183 +2088.408068 +2088.419290 +2088.435840 +2088.477698 +2088.495181 +2088.518791 +2088.533642 +2088.543699 +2088.545464 +2088.558051 +2088.591651 +2088.612563 +2088.624585 +2088.636739 +2088.639670 +2088.654921 +2088.693183 +2088.704771 +2088.720988 +2088.743199 +2088.760748 +2088.774135 +2088.798677 +2088.814361 +2088.829346 +2088.923452 +2088.929713 +2089.022253 +2089.036239 +2089.083126 +2089.097345 +2089.107801 +2089.121720 +2089.135140 +2089.151857 +2089.167008 +2089.180728 +2089.184158 +2089.198077 +2089.247161 +2089.260848 +2089.275833 +2089.277431 +2089.291384 +2089.308367 +2089.329179 +2089.332176 +2089.358383 +2089.376665 +2089.388686 +2089.404238 +2089.427081 +2089.452256 +2089.465843 +2089.530844 +2089.542100 +2089.559649 +2089.574234 +2089.587154 +2089.603272 +2089.618656 +2089.635606 +2089.662279 +2089.675799 +2089.686821 +2089.702039 +2089.720188 +2089.729545 +2089.746129 +2089.758083 +2089.774334 +2089.776265 +2089.790284 +2089.834807 +2089.855852 +2089.859149 +2089.871370 +2089.885289 +2089.888619 +2089.901839 +2089.919322 +2089.930011 +2089.944463 +2089.960647 +2089.971769 +2089.985822 +2090.001173 +2090.021020 +2090.030244 +2090.057550 +2090.060414 +2090.074866 +2090.088253 +2090.091117 +2090.105402 +2090.146062 +2090.167906 +2090.182758 +2090.183258 +2090.197444 +2090.212429 +2090.223751 +2090.225715 +2090.236804 +2090.251190 +2090.253654 +2090.265176 +2090.267740 +2090.281959 +2090.296544 +2090.298209 +2090.313361 +2090.354586 +2090.386521 +2090.401140 +2090.414893 +2090.417823 +2090.432741 +2090.472368 +2090.473967 +2090.485156 +2090.500274 +2090.502105 +2090.515958 +2090.546661 +2090.562578 +2090.577463 +2090.580993 +2090.594146 +2090.608665 +2090.623517 +2090.638569 +2090.655085 +2090.667906 +2090.671602 +2090.687053 +2090.702272 +2090.714093 +2090.729211 +2090.733940 +2090.747227 +2090.760214 +2090.764076 +2090.806534 +2090.820054 +2090.822584 +2090.835372 +2090.838335 +2090.852022 +2090.867173 +2090.882191 +2090.895944 +2090.897676 +2090.913294 +2090.929677 +2090.945794 +2090.959248 +2090.977629 +2091.969103 +2093.047591 +2093.072765 +2093.145126 +2093.897240 +2093.923747 +2094.493676 +2095.652350 +2095.696639 +2095.708327 +2095.719416 +2095.906695 +2095.914621 +2098.141192 +2098.185947 +2099.153445 +2100.527936 +2101.343620 +2101.977552 +2102.902626 +2103.188573 +2103.210917 +2103.220774 +2103.239888 +2103.295799 +2103.313914 +2103.453208 +2103.470124 +2104.108985 +2104.241286 +2104.255705 +2105.606686 +2107.937785 +2108.092397 +2108.168854 +2109.391530 +2109.420535 +2109.453435 +2110.711642 +2111.079874 +2111.179940 +2111.181605 +2111.279840 +2111.281838 +2111.379873 +2111.480539 +2111.482237 +2111.580872 +2111.680739 +2111.781138 +2111.783136 +2111.881072 +2111.981238 +2112.081837 +2112.181937 +2112.282869 +2112.382170 +2112.482969 +2112.681770 +2112.881503 +2112.981370 +2113.081237 +2113.181703 +2113.281603 +2113.381503 +2113.481403 +2113.581969 +2113.682169 +2113.781769 +2113.881702 +2113.981602 +2114.181302 +2114.281136 +2114.381502 +2114.481802 +2114.582268 +2114.681302 +2114.781968 +2114.983699 +2115.081768 +2115.181768 +2115.281534 +2115.382866 +2115.481567 +2115.681601 +2115.781800 +2115.881634 +2115.883399 +2115.981534 +2115.983299 +2116.764184 +2117.893153 +2117.899314 +2118.011202 +2118.014332 +2118.029184 +2118.044269 +2118.061618 +2118.093653 +2118.121591 +2118.173440 +2120.822754 +2120.859551 +2121.391452 +2121.445664 +2121.578564 +2121.580396 +2121.665178 +2121.783959 +2121.822054 +2121.893516 +2122.004938 +2122.022853 +2122.046496 +2122.118790 +2122.149826 +2122.190452 +2122.246596 +2122.289619 +2122.411464 +2122.448260 +2122.490185 +2122.548260 +2122.697578 +2122.699376 +2122.773002 +2122.830378 +2122.874867 +2122.918556 +2122.928347 +2122.930544 +2122.959948 +2123.048759 +2123.059449 +2123.102572 +2123.116525 +2123.141933 +2123.154920 +2123.273901 +2123.331843 +2123.385889 +2123.397943 +2123.461713 +2123.474700 +2123.491716 +2123.569938 +2123.583524 +2123.602006 +2123.640001 +2123.642165 +2123.667074 +2123.730111 +2123.731509 +2123.746028 +2123.759548 +2123.776564 +2123.792115 +2123.806867 +2123.816557 +2123.819721 +2123.836105 +2123.846794 +2123.863411 +2123.878629 +2123.905435 +2123.923384 +2123.961213 +2123.979694 +2123.992581 +2124.004836 +2124.021053 +2124.034473 +2124.076364 +2124.186554 +2124.200573 +2124.224849 +2124.260180 +2124.272501 +2124.300207 +2124.317190 +2124.331842 +2124.346394 +2124.363110 +2124.395078 +2124.408365 +2124.450589 +2124.484256 +2124.497209 +2124.521319 +2124.534539 +2124.536670 +2124.551322 +2124.564808 +2124.580193 +2124.593280 +2124.596144 +2124.607799 +2124.623783 +2124.639867 +2124.642864 +2124.658615 +2124.671202 +2124.686020 +2124.686553 +2124.699374 +2124.748724 +2124.763976 +2124.775831 +2124.790016 +2124.792347 +2124.806566 +2124.809996 +2124.822284 +2124.848125 +2124.866107 +2124.875697 +2124.889117 +2124.903736 +2124.919453 +2124.936270 +2124.952520 +2124.965641 +2124.979627 +2124.982390 +2124.993946 +2125.008198 +2125.023982 +2125.038068 +2125.041465 +2125.054085 +2125.101205 +2125.118987 +2125.143130 +2125.155251 +2125.170769 +2125.186120 +2125.201671 +2125.216223 +2125.232640 +2125.248124 +2125.279993 +2125.295111 +2125.307099 +2125.320818 +2125.350256 +2125.353019 +2125.378794 +2125.393213 +2125.407032 +2125.423416 +2125.435936 +2125.465673 +2125.481557 +2125.498041 +2125.513759 +2125.529976 +2125.544461 +2125.560978 +2125.591681 +2125.606333 +2125.622516 +2125.639200 +2125.656582 +2125.665174 +2125.667704 +2125.679626 +2125.692746 +2125.707032 +2125.721051 +2125.736203 +2125.759612 +2125.765040 +2125.774897 +2125.786519 +2125.799140 +2125.801471 +2125.813059 +2125.838700 +2125.851687 +2125.860944 +2125.874231 +2125.889549 +2125.904301 +2125.919253 +2125.922549 +2125.933205 +2125.937168 +2125.950355 +2125.965207 +2128.825410 +2130.087713 +2131.041858 +2131.060107 +2131.260140 +2131.324775 +2131.368198 +2132.227871 +2132.622942 +2132.666332 +2132.704094 +2133.278886 +2133.412419 +2134.395601 +2135.178451 +2135.214581 +2135.262067 +2135.631497 +2136.179915 +2136.183112 +2136.195366 +2136.251110 +2137.132928 +2137.186341 +2138.192634 +2138.980711 +2139.196629 +2139.199159 +2139.214711 +2140.135655 +2143.801386 +2146.078640 +2146.178473 +2146.279106 +2146.379139 +2146.479205 +2146.579472 +2146.679638 +2146.779971 +2146.879904 +2146.979738 +2147.080037 +2147.180170 +2147.280104 +2147.282102 +2147.380170 +2147.479804 +2147.680436 +2147.780270 +2147.980136 +2148.079970 +2148.081801 +2148.180103 +2148.183067 +2148.279836 +2148.380469 +2148.580102 +2148.680236 +2148.780369 +2148.880102 +2148.980069 +2149.079969 +2149.180168 +2149.280002 +2149.380202 +2149.580168 +2149.780168 +2149.782998 +2149.980534 +2150.280134 +2150.282532 +2150.380234 +2150.479867 +2150.580134 +2150.680433 +2150.779934 +2150.880067 +2150.979800 +2155.979729 +2156.391017 +2156.554720 +2156.566608 +2156.668573 +2156.812062 +2156.868006 +2156.964510 +2156.991583 +2157.016624 +2157.042898 +2157.077663 +2157.212162 +2157.272368 +2157.290450 +2157.302538 +2157.345728 +2157.358515 +2157.359814 +2157.388818 +2157.464742 +2157.506068 +2157.553254 +2157.630210 +2157.642364 +2157.673800 +2157.695345 +2157.710696 +2157.734173 +2157.747426 +2157.761945 +2157.786354 +2157.796976 +2157.813393 +2157.834605 +2157.848358 +2157.862178 +2157.907166 +2157.920453 +2157.923117 +2157.948325 +2157.994945 +2158.022617 +2158.059314 +2158.082257 +2158.094845 +2158.109563 +2158.122950 +2158.136670 +2158.153087 +2158.188684 +2158.198341 +2158.212793 +2158.250089 +2158.252620 +2158.266673 +2158.282757 +2158.333606 +2158.346826 +2158.363043 +2158.388984 +2158.402270 +2158.406466 +2158.417822 +2158.432607 +2158.455917 +2158.480359 +2158.501438 +2158.554984 +2158.564575 +2158.580126 +2158.609230 +2158.622450 +2158.625147 +2158.637901 +2158.655484 +2158.699073 +2158.717122 +2158.752387 +2158.767072 +2158.804668 +2158.815290 +2158.827678 +2158.839666 +2158.855051 +2158.871035 +2158.899473 +2158.909862 +2158.941897 +2158.965540 +2158.996775 +2159.010795 +2159.038300 +2159.041198 +2159.051820 +2159.068537 +2159.084155 +2159.095010 +2159.109163 +2159.131774 +2159.142862 +2159.156449 +2159.160112 +2159.172067 +2159.186419 +2159.204234 +2159.213692 +2159.216422 +2159.229243 +2159.239499 +2159.256216 +2159.301104 +2159.314624 +2159.342030 +2159.345193 +2159.357348 +2159.371134 +2159.384787 +2159.387451 +2159.410395 +2159.423082 +2159.451420 +2159.473898 +2159.488616 +2159.511160 +2159.525047 +2159.528543 +2159.539399 +2159.555017 +2159.569602 +2159.584354 +2159.596075 +2159.608363 +2159.612259 +2159.621450 +2159.636002 +2159.650787 +2159.667904 +2159.679692 +2159.697874 +2159.709695 +2159.728177 +2159.740431 +2159.743861 +2159.756415 +2159.772066 +2159.784687 +2159.811893 +2159.815689 +2159.827111 +2159.830241 +2159.842962 +2159.844960 +2159.860278 +2159.870101 +2159.881789 +2159.884520 +2159.908563 +2159.914890 +2159.922282 +2159.928609 +2159.936834 +2159.950054 +2159.954050 +2159.963841 +2159.978260 +2159.992778 +2159.996841 +2160.009095 +2160.038133 +2160.052951 +2160.056581 +2160.069635 +2160.083754 +2160.098339 +2160.101769 +2160.112725 +2160.116887 +2160.128576 +2160.144493 +2160.160344 +2160.172165 +2160.186718 +2160.191579 +2160.201636 +2160.220550 +2160.246058 +2160.261576 +2160.275229 +2160.285818 +2160.299438 +2160.314456 +2160.315256 +2160.333304 +2160.336934 +2160.346791 +2160.360410 +2160.373664 +2160.388416 +2160.395076 +2160.418752 +2160.432771 +2160.436934 +2160.447423 +2160.458346 +2160.472298 +2160.486351 +2160.500170 +2160.502501 +2160.515056 +2160.526877 +2160.529741 +2160.543161 +2160.555149 +2160.562475 +2160.570167 +2160.582421 +2160.584919 +2160.597307 +2160.601969 +2160.612391 +2160.627077 +2160.642761 +2160.658079 +2160.673730 +2160.702868 +2160.719451 +2160.734935 +2160.750853 +2160.765571 +2160.770433 +2160.796774 +2160.813290 +2160.828908 +2160.843727 +2160.858645 +2160.917952 +2160.933770 +2160.948688 +2164.532301 +2165.313586 +2165.399366 +2165.472993 +2166.305193 +2166.380917 +2167.604592 +2167.655175 +2168.381048 +2171.124169 +2171.185874 +2171.241285 +2172.197029 +2181.077672 +2181.177472 +2181.179304 +2181.277805 +2181.378205 +2181.478405 +2181.480169 +2181.578971 +2181.678837 +2181.779237 +2181.878271 +2181.978571 +2182.078837 +2182.179103 +2182.279170 +2182.379369 +2182.479203 +2182.579702 +2182.679536 +2182.779968 +2182.879502 +2182.979269 +2183.179036 +2183.280467 +2183.579435 +2183.680067 +2183.779601 +2183.879268 +2184.280500 +2184.479634 +2184.578934 +2184.980266 +2185.181032 +2185.279366 +2185.579333 +2185.580498 +2185.681064 +2185.779133 +2185.978966 +2186.792585 +2186.864413 +2191.303603 +2191.713060 +2191.866639 +2191.927112 +2192.172233 +2192.313625 +2192.344494 +2192.358480 +2192.388916 +2192.429909 +2192.475297 +2192.551820 +2192.620252 +2192.775996 +2192.821417 +2192.848190 +2192.879992 +2193.038666 +2193.057148 +2193.202336 +2193.221317 +2193.247291 +2193.324014 +2193.339898 +2193.445326 +2193.458413 +2193.460510 +2193.477094 +2193.489914 +2193.516454 +2193.639898 +2193.850886 +2193.863141 +2193.920217 +2193.958978 +2193.973530 +2193.985984 +2194.001769 +2194.035535 +2194.068835 +2194.102901 +2194.117020 +2194.131572 +2194.164406 +2194.192678 +2194.260709 +2194.313490 +2194.327110 +2194.368402 +2194.440862 +2194.459810 +2194.470366 +2194.472098 +2194.486483 +2194.500769 +2194.530972 +2194.544625 +2194.577925 +2194.605864 +2194.659843 +2194.674928 +2194.707229 +2194.720516 +2194.737133 +2194.766703 +2194.779157 +2194.797639 +2194.825477 +2194.849287 +2194.867202 +2194.905198 +2194.959976 +2194.962307 +2194.976793 +2195.003233 +2195.043626 +2195.052350 +2195.056713 +2195.066803 +2195.067202 +2195.082753 +2195.084785 +2195.098671 +2195.115221 +2195.139397 +2195.153782 +2195.186250 +2195.272030 +2195.284751 +2195.300635 +2195.351917 +2195.354015 +2195.367002 +2195.370931 +2195.395407 +2195.408594 +2195.423346 +2195.440029 +2195.456579 +2195.459376 +2195.471298 +2195.485850 +2195.499936 +2195.514921 +2195.539463 +2195.576825 +2195.589746 +2195.591511 +2195.603132 +2195.644757 +2195.659076 +2195.674294 +2195.677192 +2195.692177 +2195.706496 +2195.720482 +2195.739329 +2195.752949 +2195.781620 +2195.839496 +2195.850784 +2195.866369 +2195.877591 +2195.893708 +2195.909892 +2195.927474 +2195.940062 +2195.970764 +2196.828373 +2197.959407 +2198.088345 +2198.136064 +2198.168897 +2198.967764 +2198.978787 +2198.994538 +2199.124174 +2199.171993 +2200.164200 +2201.723406 +2202.257205 +2202.716778 +2202.900694 +2202.968127 +2202.979582 +2203.007687 +2203.184677 +2203.188073 +2203.203691 +2203.224337 +2203.231396 +2203.264630 +2203.288473 +2203.318409 +2203.382479 +2203.426668 +2203.465362 +2203.932728 +2203.955205 +2203.971988 +2204.021772 +2204.023837 +2204.026101 +2204.099428 +2204.998095 +2206.920770 +2206.931559 +2206.939718 +2207.012179 +2207.015775 +2207.078312 +2207.544179 +2207.606084 +2207.628129 +2207.636520 +2207.707716 +2207.834555 +2207.857732 +2207.872984 +2207.886137 +2207.942647 +2207.966357 +2208.011345 +2208.048574 +2208.151471 +2208.153603 +2208.954934 +2208.964957 +2208.967421 +2208.995860 +2209.028394 +2209.056266 +2209.136352 +2209.202819 +2209.219636 +2209.247574 +2209.423332 +2209.707913 +2209.879475 +2209.912609 +2209.946441 +2209.955799 +2209.997057 +2210.019102 +2210.708479 +2210.841945 +2210.901718 +2210.941146 +2210.945441 +2211.033287 +2211.917535 +2211.928058 +2211.957262 +2211.968551 +2211.987565 +2212.058927 +2212.072014 +2212.192160 +2212.256729 +2212.326759 +2212.357328 +2214.510872 +2215.570745 +2215.614001 +2215.759123 +2216.442705 +2216.542872 +2216.813967 +2216.907074 +2216.908705 +2216.912502 +2216.914933 +2217.007773 +2217.013234 +2217.015432 +2217.107673 +2217.109538 +2217.111403 +2217.113134 +2217.115399 +2217.207906 +2217.213867 +2217.215998 +2217.307706 +2217.309071 +2217.311436 +2217.316697 +2217.408039 +2217.411868 +2217.416464 +2217.508272 +2217.510070 +2217.512301 +2217.517163 +2217.608172 +2217.617296 +2217.708205 +2217.715065 +2217.808205 +2217.809803 +2217.815398 +2217.817862 +2217.910303 +2217.912234 +2217.914499 +2217.917029 +2218.008005 +2218.009903 +2218.014032 +2218.016064 +2218.110103 +2218.112034 +2218.114132 +2218.116030 +2218.208138 +2218.214299 +2218.216396 +2218.308205 +2218.312101 +2218.314099 +2218.316097 +2218.408238 +2218.408904 +2218.414132 +2218.416030 +2218.508204 +2218.508904 +2218.510302 +2218.512700 +2218.515797 +2218.608204 +2218.609969 +2218.613932 +2218.615930 +2218.708304 +2218.710002 +2218.712233 +2218.715930 +2218.718094 +2218.814198 +2218.816229 +2218.908271 +2218.912000 +2218.913932 +2218.915930 +2219.008304 +2219.013931 +2219.016029 +2219.108337 +2219.110035 +2219.114431 +2219.116562 +2219.210035 +2219.216162 +2219.308370 +2219.312366 +2219.314098 +2219.315996 +2219.408437 +2219.414397 +2219.416195 +2219.508436 +2219.510035 +2219.512566 +2219.514297 +2219.516129 +2219.612566 +2219.614131 +2219.616262 +2219.708070 +2219.713664 +2219.715596 +2219.808236 +2219.815329 +2219.819925 +2219.908170 +2219.911799 +2219.915263 +2220.008203 +2220.015462 +2220.018093 +2220.108203 +2220.113631 +2220.115529 +2220.118326 +2220.208402 +2220.210101 +2220.215762 +2220.218725 +2220.308436 +2220.310667 +2220.312099 +2220.315662 +2220.318259 +2220.408369 +2220.412065 +2220.414130 +2220.416061 +2220.418259 +2220.508535 +2220.510200 +2220.513863 +2220.515861 +2220.518858 +2220.608435 +2220.613763 +2220.615395 +2220.617460 +2220.708435 +2220.710034 +2220.715595 +2220.718026 +2220.808502 +2220.809268 +2220.813563 +2220.815128 +2220.817027 +2220.908402 +2220.913796 +2220.915561 +2220.919990 +2221.008268 +2221.010000 +2221.015261 +2221.017160 +2221.108069 +2221.110133 +2221.114995 +2221.117159 +2221.208202 +2221.213097 +2221.214762 +2221.216726 +2221.219024 +2221.308135 +2221.310133 +2221.312364 +2221.312830 +2221.314429 +2221.316726 +2221.319157 +2221.413296 +2221.416826 +2221.510299 +2221.514961 +2221.516693 +2221.519124 +2221.608301 +2221.613329 +2221.614828 +2221.616859 +2221.621588 +2221.709866 +2221.712230 +2221.713163 +2221.714695 +2221.719057 +2223.714193 +2224.259980 +2224.954252 +2226.923214 +2226.938066 +2226.946025 +2226.968968 +2226.970500 +2227.030007 +2227.042994 +2227.054117 +2227.075329 +2227.097140 +2227.100170 +2227.112658 +2227.150120 +2227.184486 +2227.197273 +2227.219085 +2227.232205 +2227.293976 +2227.330207 +2227.396940 +2227.409261 +2227.424346 +2227.450919 +2227.474063 +2227.499770 +2227.533836 +2227.546457 +2227.561475 +2227.572464 +2227.592444 +2227.594909 +2227.612324 +2227.626510 +2227.639098 +2227.650919 +2227.662441 +2227.674595 +2227.688315 +2227.701768 +2227.719151 +2227.742428 +2227.769634 +2227.776493 +2227.789014 +2227.804465 +2227.829907 +2227.832937 +2227.841195 +2227.845358 +2227.852984 +2227.864172 +2227.866970 +2227.877426 +2227.889747 +2227.921382 +2227.934236 +2227.948355 +2227.975494 +2227.977359 +2227.997239 +2228.005564 +2228.016253 +2228.018584 +2228.030239 +2228.042927 +2228.054948 +2228.068701 +2228.080522 +2228.093743 +2228.096806 +2228.105964 +2228.119417 +2228.128741 +2228.134002 +2228.140263 +2228.152684 +2228.167302 +2228.175594 +2228.186949 +2228.200369 +2228.213489 +2228.224811 +2228.237765 +2228.250452 +2228.267535 +2228.276460 +2228.277159 +2228.303366 +2228.312057 +2228.323313 +2228.336733 +2228.348687 +2228.361241 +2228.374595 +2228.386982 +2228.389979 +2228.399470 +2228.441894 +2228.454015 +2228.465004 +2228.468734 +2228.479290 +2228.492510 +2228.505664 +2228.519483 +2228.530439 +2228.542826 +2228.551285 +2228.562873 +2228.566136 +2228.579223 +2228.590046 +2228.594075 +2228.603566 +2228.617185 +2228.626409 +2228.639130 +2228.646289 +2228.650352 +2228.686283 +2228.689846 +2228.700735 +2228.713389 +2228.727442 +2228.740861 +2228.754015 +2228.765470 +2228.778657 +2228.792177 +2228.805430 +2228.818417 +2228.831504 +2228.835067 +2228.845856 +2228.858111 +2228.861474 +2228.871431 +2228.884751 +2228.911357 +2228.936998 +2228.963772 +2228.976759 +2228.991877 +2229.005830 +2229.021381 +2229.033635 +2229.047654 +2229.060708 +2229.076159 +2229.104264 +2229.132802 +2229.160708 +2229.175293 +2229.189013 +2229.202766 +2229.216619 +2229.230405 +2229.244890 +2229.257911 +2229.272196 +2229.299869 +2229.312489 +2229.327008 +2229.339662 +2229.353815 +2229.363605 +2229.375426 +2229.389679 +2229.404164 +2229.416219 +2229.430671 +2229.459908 +2229.474161 +2229.501833 +2229.558576 +2229.572629 +2229.587614 +2229.614520 +2229.629405 +2229.658476 +2229.674027 +2229.688646 +2229.702699 +2229.715619 +2229.732369 +2229.902032 +2229.917717 +2229.931436 +2229.946721 +2229.959542 +2229.976391 +2229.991376 +2230.004796 +2230.048020 +2230.060607 +2230.074959 +2230.089079 +2230.134500 +2230.204496 +2230.218715 +2230.245522 +2230.260907 +2230.275825 +2230.291210 +2230.305961 +2230.319781 +2230.334599 +2230.349485 +2230.364336 +2230.446055 +2230.460307 +2230.475958 +2230.490976 +2230.505562 +2230.520946 +2230.535965 +2230.550716 +2230.566168 +2230.580553 +2230.597336 +2230.611988 +2230.626108 +2230.640593 +2230.654779 +2230.670929 +2230.684449 +2230.685781 +2230.699001 +2230.714686 +2230.729271 +2230.744622 +2230.761539 +2230.775358 +2230.790210 +2230.805828 +2230.819847 +2230.836430 +2230.852148 +2230.866101 +2230.882451 +2230.897802 +2230.914652 +2230.929837 +2230.945122 +2230.959307 +2230.974292 +2230.989544 +2231.005361 +2231.020346 +2231.036730 +2231.052281 +2231.069464 +2231.083516 +2231.100000 +2231.101865 +2231.114619 +2231.130536 +2231.145554 +2231.161272 +2231.175757 +2231.191941 +2231.205195 +2231.220746 +2231.262104 +2231.307825 +2231.323909 +2231.340592 +2231.352780 +2231.367898 +2231.381951 +2231.398801 +2231.412987 +2231.428038 +2231.441791 +2231.457043 +2231.461039 +2231.473593 +2231.489344 +2231.505394 +2231.521145 +2231.552847 +2231.554545 +2231.582084 +2231.599134 +2231.614951 +2231.630702 +2231.645454 +2231.659640 +2231.677222 +2231.691375 +2232.367498 +2232.378986 +2233.297700 +2243.005249 +2244.030423 +2245.046673 +2245.111741 +2245.114372 +2245.124894 +2245.127758 +2246.147138 +2246.709841 +2248.562753 +2249.062186 +2249.167181 +2249.170611 +2249.314168 +2249.327521 +2249.502412 +2249.518596 +2249.600215 +2249.824756 +2250.048732 +2251.024522 +2251.269111 +2251.336343 +2251.710136 +2251.909237 +2252.009669 +2252.109802 +2252.111867 +2252.209936 +2252.212233 +2252.310035 +2252.312599 +2252.409935 +2252.412200 +2252.510068 +2252.610102 +2252.611134 +2252.618460 +2252.710102 +2252.810335 +2252.812199 +2252.817860 +2252.910301 +2252.918293 +2253.010301 +2253.012299 +2253.110268 +2253.112366 +2253.210234 +2253.213331 +2253.217793 +2253.310134 +2253.311833 +2253.318359 +2253.410201 +2253.412199 +2253.418759 +2253.510534 +2253.610500 +2253.718825 +2253.810500 +2253.811166 +2253.814363 +2253.910400 +2253.912065 +2253.914796 +2254.010233 +2254.011765 +2254.014229 +2254.016827 +2254.110133 +2254.112298 +2254.116327 +2254.210200 +2254.216360 +2254.310067 +2254.316227 +2254.410166 +2254.413163 +2254.416860 +2254.510433 +2254.512264 +2254.516294 +2254.518591 +2254.610066 +2254.710133 +2254.714329 +2254.716593 +2254.718957 +2254.810233 +2254.818424 +2254.910199 +2254.912297 +2254.918458 +2255.010299 +2255.110232 +2255.116693 +2255.210365 +2255.218924 +2255.310399 +2255.312330 +2255.317025 +2255.416959 +2255.512963 +2255.517125 +2255.610432 +2255.612230 +2255.710398 +2255.712729 +2255.716459 +2255.719056 +2255.810498 +2255.812296 +2255.816625 +2255.910265 +2255.912463 +2255.918423 +2256.010265 +2256.012296 +2256.015859 +2256.110198 +2256.117857 +2256.210165 +2256.211763 +2256.215859 +2256.218723 +2256.310298 +2256.312462 +2256.316625 +2256.318589 +2256.410497 +2256.412229 +2256.416392 +2256.512062 +2256.514493 +2256.518889 +2256.610464 +2256.616225 +2256.618489 +2256.710331 +2256.712162 +2256.714327 +2256.716491 +2261.896140 +2261.947055 +2262.007395 +2262.084718 +2262.098104 +2262.110292 +2262.163372 +2262.200468 +2262.224677 +2262.236699 +2262.263206 +2262.273395 +2262.309126 +2262.357278 +2262.425377 +2262.453748 +2262.465137 +2262.480688 +2262.489879 +2262.499969 +2262.527574 +2262.538863 +2262.552449 +2262.580488 +2262.593275 +2262.641127 +2262.689679 +2262.742859 +2262.765270 +2262.777657 +2262.789612 +2262.799669 +2262.815486 +2262.834767 +2262.849052 +2262.870331 +2262.884584 +2262.897038 +2262.920781 +2262.933135 +2262.946655 +2262.969532 +2262.978723 +2262.991044 +2262.993641 +2263.006661 +2263.021147 +2263.033268 +2263.044690 +2263.058343 +2263.071030 +2263.132269 +2263.144690 +2263.159009 +2263.178656 +2263.191343 +2263.205596 +2263.220114 +2263.235332 +2263.237930 +2263.245356 +2263.256245 +2263.268566 +2263.282951 +2263.306295 +2263.320014 +2263.333667 +2263.346588 +2263.359242 +2263.360940 +2263.398536 +2263.410490 +2263.425908 +2263.444956 +2263.465902 +2263.478189 +2263.492442 +2263.502199 +2263.504863 +2263.516185 +2263.527640 +2263.531603 +2263.540927 +2263.544789 +2263.554913 +2263.568699 +2263.581519 +2263.594639 +2263.599834 +2263.610890 +2263.613188 +2263.624576 +2263.637929 +2263.651116 +2263.653747 +2263.665568 +2263.676657 +2263.678789 +2263.690011 +2263.703297 +2263.716118 +2263.730337 +2263.743257 +2263.748252 +2263.756544 +2263.769897 +2263.782951 +2263.786547 +2263.796204 +2263.823077 +2263.835265 +2263.848619 +2263.860673 +2263.885748 +2263.899767 +2263.913820 +2263.927040 +2263.939461 +2263.954279 +2263.967266 +2263.978955 +2263.991442 +2264.003930 +2264.017982 +2264.030570 +2264.042325 +2264.064736 +2264.077390 +2264.089977 +2264.102831 +2264.117283 +2264.130170 +2264.159241 +2264.173926 +2264.185814 +2264.200033 +2264.212821 +2264.227606 +2264.240460 +2264.255045 +2264.268365 +2264.281086 +2264.293773 +2264.322311 +2264.337296 +2264.350583 +2264.364669 +2264.391475 +2264.418615 +2264.472661 +2264.499900 +2264.516383 +2264.529670 +2264.543623 +2264.584782 +2264.640959 +2264.654878 +2264.683017 +2264.696736 +2264.722610 +2264.735930 +2264.750349 +2264.765068 +2264.849383 +2264.877156 +2264.904895 +2264.933200 +2264.974991 +2265.016083 +2265.030469 +2265.060339 +2265.088810 +2265.116982 +2265.129803 +2265.174458 +2265.202963 +2265.231101 +2265.376589 +2265.518514 +2265.533332 +2265.561937 +2265.592040 +2265.607791 +2265.735796 +2265.751480 +2265.913618 +2265.928969 +2265.977488 +2265.992639 +2266.007657 +2266.084114 +2266.096502 +2266.112419 +2266.128170 +2266.144054 +2266.187111 +2266.202163 +2266.652812 +2266.667364 +2266.683514 +2266.698532 +2277.091829 +2279.711506 +2280.944506 +2280.952298 +2281.712304 +2281.948967 +2286.812398 +2286.912365 +2287.010467 +2287.110700 +2287.210933 +2287.213297 +2287.311066 +2287.313963 +2287.410866 +2287.413563 +2287.511166 +2287.614429 +2287.711332 +2287.811132 +2287.911165 +2287.913596 +2288.011398 +2288.013829 +2288.111398 +2288.114029 +2288.211365 +2288.311365 +2288.413429 +2288.511265 +2288.513063 +2288.611364 +2288.613729 +2288.614561 +2288.711331 +2288.713396 +2288.811397 +2288.813429 +2288.911297 +2288.913595 +2289.011231 +2289.013562 +2289.111464 +2289.211364 +2289.311397 +2289.313661 +2289.411397 +2289.413228 +2289.513661 +2289.611297 +2289.614660 +2289.711397 +2289.712928 +2289.811396 +2289.911396 +2290.011330 +2290.013394 +2290.111463 +2290.113727 +2290.211363 +2290.213427 +2290.311429 +2290.313694 +2290.411462 +2290.413061 +2290.511329 +2290.514193 +2290.611396 +2290.613660 +2290.711662 +2290.713593 +2290.811296 +2290.813460 +2290.911362 +2291.011062 +2291.012994 +2291.111262 +2291.113460 +2291.211195 +2291.213693 +2291.311428 +2291.413626 +2291.511395 +2291.513892 +2291.611328 +2291.711261 +2291.713492 +2296.747054 +2296.784949 +2296.803930 +2296.817816 +2296.915818 +2296.955978 +2296.970064 +2296.980853 +2297.029105 +2297.040760 +2297.065169 +2297.080154 +2297.129871 +2297.180453 +2297.188212 +2297.200600 +2297.213454 +2297.254413 +2297.266867 +2297.306694 +2297.315418 +2297.326774 +2297.350317 +2297.362771 +2297.377523 +2297.403197 +2297.412521 +2297.415818 +2297.425342 +2297.437196 +2297.452747 +2297.488145 +2297.499501 +2297.512987 +2297.526141 +2297.538728 +2297.550183 +2297.578688 +2297.587346 +2297.612421 +2297.619680 +2297.656177 +2297.668765 +2297.681618 +2297.694306 +2297.706160 +2297.717083 +2297.729537 +2297.753546 +2297.765002 +2297.777189 +2297.781285 +2297.803263 +2297.815717 +2297.828172 +2297.841625 +2297.852947 +2297.866500 +2297.878288 +2297.890642 +2297.915484 +2297.925841 +2297.927839 +2297.951415 +2297.965101 +2297.977555 +2298.000999 +2298.014985 +2298.039294 +2298.051881 +2298.055078 +2298.065234 +2298.078055 +2298.090176 +2298.103063 +2298.115784 +2298.128671 +2298.133266 +2298.140925 +2298.153346 +2298.165601 +2298.170829 +2298.190809 +2298.194705 +2298.203196 +2298.227938 +2298.240792 +2298.253446 +2298.265933 +2298.288744 +2298.292407 +2298.302597 +2298.326506 +2298.340259 +2298.352613 +2298.364268 +2298.377355 +2298.389710 +2298.402330 +2298.416216 +2298.427105 +2298.439826 +2298.452780 +2298.492207 +2298.504994 +2298.518214 +2298.530002 +2298.555577 +2298.569629 +2298.619713 +2298.642790 +2298.696169 +2298.708790 +2298.744022 +2298.803029 +2298.881351 +2299.468829 +2300.108056 +2300.259271 +2300.273690 +2311.118501 +2311.909676 +2312.713338 +2313.021363 +2313.712105 +2313.914569 +2314.712271 +2314.898984 +2314.932017 +2315.929685 +2316.712269 +2316.940107 +2318.960318 +2321.811997 +2321.910465 +2321.910832 +2321.912064 +2322.111264 +2322.113296 +2322.211497 +2322.311664 +2322.411830 +2322.511830 +2322.513861 +2322.611763 +2322.613595 +2322.714627 +2322.811730 +2322.814360 +2322.916392 +2323.011796 +2323.015659 +2323.111763 +2323.114060 +2323.211796 +2323.213960 +2323.311763 +2323.312229 +2323.313694 +2323.411862 +2323.511862 +2323.513461 +2323.611796 +2323.615925 +2323.711795 +2323.714593 +2323.811829 +2323.814093 +2323.911595 +2324.011729 +2324.013893 +2324.111995 +2324.211828 +2324.213993 +2324.311728 +2324.313327 +2324.316257 +2324.411761 +2324.413826 +2324.511695 +2324.611761 +2324.711628 +2324.714658 +2324.811828 +2324.814125 +2324.911927 +2324.913859 +2325.011827 +2325.014092 +2325.111761 +2325.113959 +2325.211894 +2325.212393 +2325.213992 +2325.214791 +2325.311694 +2325.312526 +2325.313359 +2325.316489 +2325.411627 +2325.413925 +2325.511594 +2325.512093 +2325.513892 +2325.516056 +2325.611694 +2325.613891 +2325.616955 +2325.711860 +2325.713825 +2325.716222 +2325.811760 +2325.813925 +2325.816422 +2325.911627 +2326.013125 +2326.111627 +2326.113858 +2326.211760 +2326.311793 +2326.313558 +2326.411726 +2326.511859 +2326.513391 +2326.611759 +2326.613757 +2326.711826 +2326.714123 +2327.761775 +2329.976491 +2332.213385 +2332.342556 +2332.353878 +2332.355576 +2332.406659 +2332.487744 +2332.537361 +2332.551214 +2332.601797 +2332.613851 +2332.627404 +2332.652945 +2332.734464 +2332.765433 +2332.808456 +2332.822909 +2332.831167 +2332.842356 +2332.844487 +2332.856708 +2332.869429 +2332.870960 +2332.881417 +2332.906858 +2332.970627 +2332.974923 +2332.983614 +2332.998366 +2333.012619 +2333.050814 +2333.066032 +2333.076488 +2333.088143 +2333.099898 +2333.113285 +2333.123308 +2333.133797 +2333.135962 +2333.146451 +2333.160171 +2333.161836 +2333.174557 +2333.189475 +2333.213151 +2333.224573 +2333.238226 +2333.259871 +2333.263135 +2333.272159 +2333.280983 +2333.292239 +2333.304760 +2333.317813 +2333.330700 +2333.341689 +2333.355775 +2333.368063 +2333.371959 +2333.381183 +2333.396801 +2333.403328 +2333.425306 +2333.436328 +2333.458905 +2333.472025 +2333.475755 +2333.485046 +2333.489142 +2333.498765 +2333.511419 +2333.522641 +2333.526637 +2333.535362 +2333.562801 +2333.574623 +2333.586744 +2333.598865 +2333.601762 +2333.612385 +2333.626338 +2333.638759 +2333.642988 +2333.652245 +2333.665532 +2333.678319 +2333.682115 +2333.691639 +2333.694769 +2333.704160 +2333.707556 +2333.722641 +2333.731199 +2333.735129 +2333.745219 +2333.757240 +2333.768962 +2333.772625 +2333.781782 +2333.794236 +2333.798865 +2333.806990 +2333.820543 +2333.824473 +2333.833797 +2333.837926 +2333.847416 +2333.861869 +2333.875089 +2333.887143 +2333.891572 +2333.900730 +2333.913051 +2333.925738 +2333.938558 +2333.952544 +2333.965798 +2333.979784 +2333.992871 +2334.006124 +2334.019511 +2334.031965 +2334.053743 +2334.066164 +2334.079850 +2334.093104 +2334.108189 +2334.120610 +2334.147649 +2334.170992 +2334.184879 +2334.199164 +2334.240223 +2334.254509 +2334.267829 +2334.281382 +2334.323506 +2334.336627 +2334.350613 +2334.364132 +2334.378884 +2334.392504 +2334.406523 +2334.448448 +2334.461269 +2334.477286 +2334.516214 +2334.655541 +2334.674289 +2334.762800 +2334.910252 +2334.922906 +2335.002527 +2335.017945 +2335.031931 +2335.061601 +2335.147382 +2335.160602 +2335.246283 +2335.444717 +2335.458504 +2335.473256 +2335.487908 +2335.502027 +2335.531997 +2335.546316 +2335.562067 +2335.577551 +2335.590372 +2335.704890 +2335.719775 +2335.735293 +2335.749412 +2335.795600 +2335.928633 +2336.001460 +2336.017244 +2336.046715 +2336.078150 +2336.134693 +2336.179882 +2336.196398 +2336.347447 +2336.465895 +2336.482545 +2336.603191 +2336.619575 +2336.634227 +2336.650044 +2336.679382 +2336.694333 +2339.191467 +2346.319299 +2348.335647 +2348.372310 +2349.342273 +2349.448200 +2349.462053 +2349.481800 +2350.359255 +2350.404509 +2354.177100 +2354.463813 +2354.508535 +2355.358717 +2355.403072 +2355.420455 +2356.368506 +2356.397644 +2356.910930 +2356.911463 +2356.913061 +2357.011229 +2357.111562 +2357.116591 +2357.213394 +2357.312062 +2357.313660 +2357.411695 +2357.512128 +2357.514392 +2357.612294 +2357.613060 +2357.712427 +2357.812194 +2357.912194 +2357.915424 +2358.012127 +2358.112161 +2358.212394 +2358.312360 +2358.412460 +2358.512360 +2358.514824 +2358.612760 +2358.712460 +2358.812293 +2358.911860 +2359.014724 +2359.112359 +2359.212493 +2359.312226 +2359.412026 +2359.414257 +2359.515856 +2359.612459 +2359.712192 +2359.812392 +2359.815389 +2359.912492 +2359.914590 +2360.111926 +2360.212458 +2360.214390 +2360.312458 +2360.315089 +2360.412292 +2360.414056 +2360.512525 +2360.515788 +2360.612458 +2360.712558 +2360.714056 +2360.812391 +2360.814655 +2360.912491 +2360.913223 +2360.914755 +2361.012391 +2361.014822 +2361.112424 +2361.212624 +2361.215554 +2361.312790 +2361.314821 +2361.412590 +2361.413256 +2361.415854 +2361.514455 +2361.612324 +2361.614954 +2361.712557 +2363.016784 +2363.065436 +2363.164403 +2364.219247 +2364.259008 +2364.349184 +2366.711453 +2367.059937 +2367.106424 +2367.347749 +2367.424939 +2367.532997 +2367.566097 +2367.572857 +2367.594369 +2367.595634 +2367.609287 +2367.689407 +2367.701395 +2367.703759 +2367.722707 +2367.724472 +2367.737326 +2367.751911 +2367.801994 +2367.834029 +2367.835594 +2367.875621 +2367.885644 +2367.898465 +2367.913516 +2367.972024 +2367.982880 +2367.993436 +2368.007689 +2368.021408 +2368.038957 +2368.040822 +2368.087875 +2368.098631 +2368.134328 +2368.175487 +2368.194268 +2368.224472 +2368.234029 +2368.236027 +2368.248214 +2368.250212 +2368.261668 +2368.263666 +2368.276087 +2368.288707 +2368.300795 +2368.313682 +2368.324804 +2368.340089 +2368.353043 +2368.382080 +2368.393935 +2368.405424 +2368.413016 +2368.415281 +2368.441787 +2368.453109 +2368.455707 +2368.465863 +2368.477751 +2368.492170 +2368.505124 +2368.520908 +2368.525171 +2368.531231 +2368.533063 +2368.556173 +2368.558837 +2368.569892 +2368.572423 +2368.583013 +2368.596066 +2368.606689 +2368.609420 +2368.623139 +2368.626336 +2368.637358 +2368.648547 +2368.652410 +2368.661634 +2368.680215 +2368.705990 +2368.716179 +2368.725204 +2368.737791 +2368.741221 +2368.752343 +2368.756039 +2368.764831 +2368.767162 +2368.788707 +2368.800095 +2368.802992 +2368.813016 +2368.813449 +2368.816912 +2368.827734 +2368.830831 +2368.841088 +2368.843918 +2368.855773 +2368.883345 +2368.888074 +2368.894168 +2368.906056 +2368.909752 +2368.917544 +2368.920442 +2368.930765 +2368.934561 +2368.945283 +2368.962599 +2368.972523 +2368.977351 +2368.985809 +2368.998530 +2369.012416 +2369.012949 +2369.016479 +2369.026202 +2369.053408 +2369.053841 +2369.066862 +2369.079549 +2369.091537 +2369.143885 +2369.157737 +2369.170125 +2369.197464 +2369.252376 +2369.280115 +2369.307554 +2369.320541 +2369.334094 +2369.359569 +2369.373588 +2369.386309 +2369.401593 +2369.414713 +2369.451976 +2369.462466 +2369.476785 +2369.479149 +2369.499928 +2369.530398 +2369.541953 +2369.555173 +2369.583112 +2369.597564 +2369.625736 +2369.639189 +2369.654340 +2369.666495 +2369.719242 +2369.731363 +2369.746015 +2369.774986 +2369.817310 +2369.869458 +2369.883078 +2369.896864 +2369.911183 +2369.938589 +2369.953308 +2370.036424 +2370.051010 +2370.065162 +2370.135459 +2370.150677 +2370.166095 +2370.194766 +2370.208985 +2370.224969 +2370.237457 +2370.253174 +2370.267626 +2370.284010 +2370.298362 +2370.312148 +2370.326867 +2370.341652 +2370.355405 +2370.385975 +2370.400760 +2370.429797 +2370.460600 +2370.474886 +2370.504922 +2370.517576 +2370.531029 +2370.545482 +2370.560433 +2370.589238 +2370.604689 +2370.619441 +2370.634859 +2370.649577 +2370.663930 +2370.695198 +2370.709351 +2370.724369 +2370.739354 +2370.754139 +2370.770123 +2370.784409 +2370.800426 +2370.815578 +2370.829997 +2370.843949 +2370.859234 +2370.874719 +2370.890137 +2370.905122 +2370.919807 +2370.935624 +2370.950743 +2370.965694 +2371.216909 +2371.233460 +2371.248045 +2371.279613 +2371.309017 +2371.322071 +2371.336856 +2371.352274 +2371.367592 +2371.383210 +2371.399094 +2371.503922 +2371.520572 +2371.536723 +2371.552707 +2371.569290 +2371.617908 +2371.633293 +2371.648777 +2371.664461 +2371.680279 +2371.695497 +2372.131194 +2373.298226 +2373.469421 +2373.489401 +2373.526797 +2373.584473 +2374.818704 +2375.043779 +2377.108645 +2377.195558 +2377.280440 +2379.587897 +2383.712168 +2384.713000 +2385.711600 +2386.713930 +2391.714225 +2391.911561 +2391.912959 +2392.011727 +2392.012859 +2392.112160 +2392.212759 +2392.214624 +2392.312959 +2392.314890 +2392.412926 +2392.512959 +2392.713125 +2392.813225 +2392.815856 +2392.913225 +2393.013458 +2393.017687 +2393.113225 +2393.213224 +2393.312891 +2393.413191 +2393.414723 +2393.512891 +2393.516055 +2393.613058 +2393.615622 +2393.713157 +2393.715688 +2393.813290 +2393.815921 +2393.912991 +2394.013157 +2394.113290 +2394.213223 +2394.313390 +2394.413423 +2394.417752 +2394.513323 +2394.515021 +2394.613356 +2394.615687 +2394.813123 +2394.913056 +2394.913789 +2394.915654 +2395.013189 +2395.018018 +2395.113123 +2395.115221 +2395.213123 +2395.215354 +2395.312889 +2395.315786 +2395.413189 +2395.415720 +2395.513489 +2395.515720 +2395.613355 +2395.713522 +2395.715386 +2395.813322 +2395.815653 +2395.915952 +2396.013388 +2396.112755 +2396.113455 +2396.115186 +2396.213388 +2396.314953 +2396.413121 +2396.414753 +2396.513254 +2396.515952 +2396.616052 +2396.713088 +2396.714686 +2400.382615 +2400.423174 +2401.711285 +2401.713382 +2401.730599 +2402.001261 +2402.104757 +2402.273289 +2402.355140 +2402.403358 +2402.520341 +2402.559069 +2402.571057 +2402.584877 +2402.634793 +2402.646115 +2402.648480 +2402.673322 +2402.697497 +2402.724470 +2402.735792 +2402.776518 +2402.795699 +2402.808153 +2402.812216 +2402.824504 +2402.836891 +2402.869392 +2402.879382 +2402.964130 +2402.979881 +2402.992469 +2403.004990 +2403.018110 +2403.020308 +2403.032096 +2403.044583 +2403.046515 +2403.059169 +2403.073221 +2403.127334 +2403.137191 +2403.139022 +2403.149578 +2403.164064 +2403.178816 +2403.190437 +2403.201793 +2403.215645 +2403.229032 +2403.248546 +2403.264463 +2403.274054 +2403.284743 +2403.299162 +2403.311683 +2403.313447 +2403.324337 +2403.327367 +2403.336957 +2403.339022 +2403.350710 +2403.353141 +2403.363364 +2403.366594 +2403.376584 +2403.389138 +2403.404490 +2403.416811 +2403.429931 +2403.443284 +2403.445682 +2403.456771 +2403.468592 +2403.482611 +2403.485708 +2403.496431 +2403.522172 +2403.525369 +2403.534926 +2403.537690 +2403.548079 +2403.551276 +2403.561999 +2403.564163 +2403.573987 +2403.585775 +2403.598196 +2403.603224 +2403.609418 +2403.612981 +2403.624037 +2403.627966 +2403.636124 +2403.648545 +2403.650910 +2403.663197 +2403.677250 +2403.689804 +2403.699661 +2403.709251 +2403.716477 +2403.729664 +2403.733061 +2403.742951 +2403.756637 +2403.772921 +2403.783144 +2403.786307 +2403.797363 +2403.800926 +2403.812515 +2403.823337 +2403.827466 +2403.850377 +2403.852275 +2403.862531 +2403.874852 +2403.887872 +2403.891069 +2403.901059 +2403.912581 +2403.915378 +2403.926933 +2403.943750 +2403.949810 +2403.965228 +2403.979747 +2403.989437 +2404.002824 +2404.015611 +2404.029031 +2404.043017 +2404.056670 +2404.072121 +2404.084342 +2404.094266 +2404.105987 +2404.119241 +2404.130996 +2404.145714 +2404.150143 +2404.159134 +2404.174086 +2404.202557 +2404.229197 +2404.243883 +2404.258202 +2404.271455 +2404.299594 +2404.328931 +2404.342284 +2404.357336 +2404.370123 +2404.383576 +2404.412214 +2404.425667 +2404.440319 +2404.454738 +2404.467958 +2404.482244 +2404.534958 +2404.550409 +2404.563796 +2404.593166 +2404.609250 +2404.622704 +2404.652407 +2404.680446 +2404.695431 +2404.739087 +2404.782444 +2404.796829 +2404.810982 +2404.839653 +2404.854372 +2404.882044 +2404.897096 +2404.924701 +2404.939253 +2404.969523 +2404.983509 +2405.040852 +2405.054871 +2405.068058 +2405.080579 +2405.096296 +2405.210582 +2405.224068 +2405.252906 +2405.340152 +2405.355137 +2405.369689 +2405.384541 +2405.386273 +2405.400525 +2405.416109 +2405.429929 +2405.444514 +2405.459632 +2405.474451 +2405.488970 +2405.505220 +2405.531794 +2405.548177 +2405.563229 +2405.576749 +2405.605919 +2405.619339 +2405.633725 +2405.649109 +2405.664694 +2405.678913 +2405.693731 +2405.709049 +2405.723069 +2405.738187 +2405.752672 +2405.783741 +2405.798194 +2405.812546 +2405.828430 +2405.843348 +2405.858800 +2405.873918 +2405.889269 +2405.905087 +2405.920205 +2405.935656 +2405.950375 +2405.951840 +2405.966558 +2405.981144 +2405.997827 +2406.012412 +2406.027830 +2406.057734 +2406.072519 +2406.088003 +2406.103222 +2406.119106 +2406.135256 +2406.150441 +2406.166492 +2406.193764 +2406.209648 +2406.225333 +2406.239951 +2406.255536 +2406.270221 +2406.285539 +2406.299125 +2406.314443 +2406.330894 +2406.345779 +2406.361363 +2406.378346 +2406.394097 +2406.409482 +2406.425399 +2406.440684 +2406.456035 +2406.472519 +2406.487903 +2406.503787 +2406.519971 +2406.534790 +2406.550640 +2406.565259 +2406.595862 +2406.611946 +2406.674450 +2406.688103 +2406.702821 +2409.543744 +2409.559928 +2409.850903 +2409.867687 +2419.713697 +2420.712131 +2421.712796 +2422.967740 +2422.994047 +2423.013228 +2423.714626 +2423.746794 +2425.811993 +2426.810926 +2426.911126 +2426.912791 +2427.011426 +2427.013357 +2427.112092 +2427.113623 +2427.212358 +2427.214023 +2427.312424 +2427.412158 +2427.413024 +2427.414822 +2427.512591 +2427.514655 +2427.712824 +2427.812790 +2427.912724 +2427.915121 +2428.012624 +2428.112690 +2428.212956 +2428.312756 +2428.412523 +2428.512656 +2428.517452 +2428.612723 +2428.712556 +2428.715553 +2428.812823 +2428.912822 +2429.012989 +2429.112822 +2429.212656 +2429.312522 +2429.314720 +2429.412589 +2429.417384 +2429.512722 +2429.517217 +2429.612888 +2429.712589 +2429.715352 +2429.812655 +2429.813288 +2429.814520 +2429.912655 +2429.914919 +2430.112655 +2430.115052 +2430.212621 +2430.214686 +2430.412754 +2430.414553 +2430.512588 +2430.515651 +2430.612621 +2430.614452 +2430.617316 +2430.712521 +2430.812587 +2430.912521 +2430.914985 +2431.015351 +2431.112521 +2431.115784 +2431.212654 +2431.214818 +2431.312620 +2431.314552 +2431.317182 +2431.412387 +2431.415218 +2431.512454 +2431.514352 +2431.612520 +2431.712653 +2431.714518 +2436.708219 +2436.710184 +2437.066627 +2437.108985 +2437.249744 +2437.320107 +2437.330996 +2437.385774 +2437.422304 +2437.442884 +2437.474319 +2437.548045 +2437.559134 +2437.642151 +2437.664196 +2437.666160 +2437.677849 +2437.692800 +2437.801658 +2437.810183 +2437.867825 +2437.887239 +2437.901425 +2437.950010 +2437.963529 +2437.965694 +2438.018574 +2438.029830 +2438.039420 +2438.041984 +2438.050742 +2438.061298 +2438.073586 +2438.110749 +2438.122936 +2438.125267 +2438.138954 +2438.152973 +2438.178514 +2438.191035 +2438.213546 +2438.226466 +2438.231328 +2438.254571 +2438.257069 +2438.270888 +2438.282543 +2438.305620 +2438.327565 +2438.336523 +2438.349576 +2438.362264 +2438.373419 +2438.386573 +2438.409916 +2438.422004 +2438.424834 +2438.435257 +2438.436123 +2438.447878 +2438.460632 +2438.464228 +2438.474052 +2438.486406 +2438.487971 +2438.499293 +2438.503689 +2438.524601 +2438.544215 +2438.553838 +2438.565727 +2438.568724 +2438.578747 +2438.581511 +2438.591434 +2438.595364 +2438.603955 +2438.616775 +2438.629363 +2438.642317 +2438.657468 +2438.663995 +2438.667924 +2438.676749 +2438.681178 +2438.699593 +2438.702257 +2438.710781 +2438.714045 +2438.724001 +2438.727065 +2438.736089 +2438.750142 +2438.762696 +2438.765127 +2438.776249 +2438.779013 +2438.802390 +2438.818407 +2438.832060 +2438.842150 +2438.854371 +2438.867291 +2438.874184 +2438.881044 +2438.894364 +2438.898127 +2438.905486 +2438.918041 +2438.930761 +2438.942483 +2438.954437 +2438.967091 +2438.976948 +2438.989203 +2438.993199 +2439.001490 +2439.004854 +2439.015110 +2439.027964 +2439.041783 +2439.053771 +2439.093964 +2439.107617 +2439.121137 +2439.134957 +2439.140018 +2439.148310 +2439.163328 +2439.175683 +2439.188836 +2439.212013 +2439.217141 +2439.226465 +2439.238420 +2439.252639 +2439.266625 +2439.279212 +2439.292166 +2439.306319 +2439.321337 +2439.334823 +2439.348110 +2439.361896 +2439.365926 +2439.375949 +2439.390235 +2439.401989 +2439.430627 +2439.444414 +2439.472286 +2439.485839 +2439.499192 +2439.511979 +2439.525666 +2439.538886 +2439.552539 +2439.565426 +2439.579345 +2439.592732 +2439.605885 +2439.633857 +2439.648543 +2439.663961 +2439.676848 +2439.691000 +2439.706118 +2439.746012 +2439.759165 +2439.788170 +2439.801689 +2439.815542 +2439.829695 +2439.844580 +2439.859531 +2439.901856 +2439.918373 +2439.931126 +2439.988735 +2440.060497 +2440.074217 +2440.103854 +2440.118572 +2440.133790 +2440.146811 +2440.178079 +2440.207683 +2440.237420 +2440.251672 +2440.266757 +2440.280876 +2440.295562 +2440.310147 +2440.326131 +2440.340450 +2440.355202 +2440.369588 +2440.385971 +2440.400323 +2440.416341 +2440.430826 +2440.490766 +2440.504619 +2440.519404 +2440.534589 +2440.549208 +2440.563527 +2440.579078 +2440.593996 +2440.609181 +2440.625565 +2440.655068 +2440.669621 +2440.684073 +2440.700390 +2440.713943 +2440.729561 +2440.745445 +2440.760030 +2440.775515 +2440.791465 +2440.836121 +2440.852038 +2440.868022 +2440.883307 +2440.898758 +2440.913876 +2440.929694 +2440.943879 +2440.975381 +2440.990300 +2441.005651 +2441.037153 +2441.053037 +2441.068188 +2441.083473 +2441.098591 +2441.114708 +2441.128828 +2441.145178 +2441.159730 +2441.188301 +2441.262627 +2441.278644 +2441.309080 +2441.356500 +2441.372017 +2441.387735 +2441.418105 +2441.434055 +2441.449806 +2441.465457 +2441.480775 +2441.495494 +2441.512543 +2441.544145 +2441.560196 +2441.576513 +2441.592130 +2441.608681 +2441.623333 +2441.639317 +2441.656799 +2441.672683 +2441.687368 +2441.704152 +2448.137046 +2448.200482 +2451.523456 +2451.613632 +2453.385559 +2453.514729 +2454.434009 +2456.710863 +2459.702236 +2461.131938 +2461.810459 +2462.013056 +2462.111757 +2462.113822 +2462.211890 +2462.213422 +2462.311990 +2462.313688 +2462.412090 +2462.511823 +2462.513888 +2462.611790 +2462.615919 +2462.711856 +2462.812222 +2462.815552 +2462.912122 +2462.916451 +2463.011889 +2463.112289 +2463.212389 +2463.212955 +2463.312355 +2463.412388 +2463.512488 +2463.514519 +2463.612588 +2463.614952 +2463.712355 +2463.812488 +2463.814552 +2463.912388 +2464.011455 +2464.111921 +2464.113520 +2464.211888 +2464.214719 +2464.312088 +2464.412487 +2464.417149 +2464.512321 +2464.513819 +2464.612520 +2464.614418 +2464.712387 +2464.714651 +2464.812354 +2464.814285 +2465.011954 +2465.111920 +2465.113552 +2465.212353 +2465.217781 +2465.312053 +2465.312653 +2465.314351 +2465.412453 +2465.612419 +2465.614584 +2465.712619 +2465.714684 +2465.812453 +2465.912386 +2465.914617 +2466.012619 +2466.112319 +2466.114517 +2466.211853 +2466.214051 +2466.312252 +2466.314483 +2466.316848 +2466.412252 +2466.414550 +2466.512352 +2466.514483 +2466.612485 +2466.615216 +2466.712385 +2466.714583 +2470.474952 +2470.568725 +2470.604289 +2470.629930 +2470.785008 +2470.796297 +2470.862897 +2470.937889 +2471.710582 +2471.712513 +2471.721404 +2472.004821 +2472.115643 +2472.354937 +2472.370621 +2472.406152 +2472.441650 +2472.477647 +2472.489302 +2472.500258 +2472.514477 +2472.566958 +2472.591667 +2472.605553 +2472.633458 +2472.646478 +2472.701956 +2472.715876 +2472.725233 +2472.727464 +2472.740717 +2472.767657 +2472.793564 +2472.808583 +2472.830727 +2472.842083 +2472.857001 +2472.869821 +2472.883441 +2472.902655 +2472.938553 +2472.948343 +2472.974284 +2472.988270 +2473.002122 +2473.023068 +2473.035622 +2473.048776 +2473.057867 +2473.059831 +2473.071353 +2473.084640 +2473.098759 +2473.111180 +2473.125266 +2473.136155 +2473.138486 +2473.149508 +2473.151706 +2473.162562 +2473.165093 +2473.179545 +2473.207284 +2473.217806 +2473.229994 +2473.232125 +2473.244413 +2473.255802 +2473.267856 +2473.286837 +2473.300191 +2473.311046 +2473.313211 +2473.325532 +2473.354336 +2473.366158 +2473.379611 +2473.391366 +2473.394030 +2473.405951 +2473.409082 +2473.418905 +2473.421336 +2473.432159 +2473.437420 +2473.456801 +2473.468089 +2473.471020 +2473.482808 +2473.486204 +2473.496461 +2473.507217 +2473.518006 +2473.530160 +2473.533391 +2473.542781 +2473.546777 +2473.555235 +2473.558033 +2473.568922 +2473.585605 +2473.594529 +2473.607183 +2473.610180 +2473.619571 +2473.623334 +2473.631925 +2473.635388 +2473.644746 +2473.647310 +2473.659731 +2473.673317 +2473.686404 +2473.690467 +2473.698459 +2473.701489 +2473.740683 +2473.750340 +2473.753670 +2473.763960 +2473.764226 +2473.767256 +2473.776913 +2473.779977 +2473.789468 +2473.816507 +2473.828229 +2473.852171 +2473.852804 +2473.864159 +2473.875981 +2473.888502 +2473.893563 +2473.901322 +2473.904652 +2473.914942 +2473.928428 +2473.970453 +2473.984206 +2473.988169 +2474.013044 +2474.017573 +2474.027796 +2474.041981 +2474.069154 +2474.083440 +2474.096527 +2474.110446 +2474.123400 +2474.138551 +2474.177845 +2474.192697 +2474.206184 +2474.221768 +2474.235421 +2474.250606 +2474.263959 +2474.278478 +2474.292564 +2474.320136 +2474.327596 +2474.334855 +2474.347409 +2474.361428 +2474.375215 +2474.390566 +2474.404985 +2474.419270 +2474.432557 +2474.445344 +2474.458598 +2474.474981 +2474.489300 +2474.515408 +2474.528028 +2474.543546 +2474.558698 +2474.573416 +2474.588002 +2474.603286 +2474.616207 +2474.630159 +2474.645444 +2474.657798 +2474.673083 +2474.687236 +2474.700822 +2474.714042 +2474.729593 +2474.729926 +2474.743979 +2474.758298 +2474.772250 +2474.785870 +2474.815241 +2474.844178 +2474.858964 +2474.873349 +2474.888800 +2474.917771 +2474.932457 +2474.947875 +2474.962360 +2474.977811 +2474.992030 +2475.007582 +2475.021368 +2475.050539 +2475.064957 +2475.080575 +2475.095494 +2475.110479 +2475.126396 +2475.140482 +2475.155833 +2475.170285 +2475.185404 +2475.200555 +2475.214941 +2475.244444 +2475.258697 +2475.273382 +2475.288767 +2475.303752 +2475.319303 +2475.334155 +2475.349806 +2475.363892 +2475.380575 +2475.393662 +2475.409013 +2475.422633 +2475.438717 +2475.453435 +2475.468953 +2475.484138 +2475.499556 +2475.514907 +2475.530092 +2475.546043 +2475.561827 +2475.592196 +2475.606815 +2475.622233 +2475.653069 +2475.683705 +2475.713542 +2475.728626 +2475.743245 +2475.758030 +2475.772915 +2475.926029 +2475.982572 +2476.012276 +2476.029126 +2476.044177 +2476.060361 +2476.075346 +2476.091164 +2476.106981 +2476.123265 +2476.139149 +2476.154434 +2476.170351 +2476.184670 +2476.199788 +2476.214174 +2476.228559 +2476.242312 +2476.256198 +2476.271483 +2476.286934 +2476.300787 +2476.314274 +2476.329325 +2476.343977 +2476.358030 +2476.372149 +2476.387833 +2476.402519 +2476.418736 +2476.433188 +2476.448706 +2476.464190 +2476.478909 +2476.495492 +2476.510877 +2476.526361 +2476.689964 +2477.406181 +2478.331854 +2478.442743 +2478.697621 +2478.723462 +2485.502543 +2488.711764 +2490.712361 +2495.555813 +2496.811056 +2497.013187 +2497.112022 +2497.113587 +2497.212355 +2497.213786 +2497.312454 +2497.412687 +2497.512654 +2497.514352 +2497.612720 +2497.614818 +2497.712387 +2497.714752 +2497.812820 +2497.912687 +2498.012820 +2498.112853 +2498.115850 +2498.212853 +2498.312820 +2498.412820 +2498.512986 +2498.515051 +2498.613086 +2498.712886 +2498.715616 +2498.812852 +2498.815583 +2498.912786 +2498.913585 +2498.916082 +2499.012819 +2499.015916 +2499.113019 +2499.115183 +2499.212752 +2499.215383 +2499.312719 +2499.313618 +2499.315516 +2499.412852 +2499.414916 +2499.512785 +2499.515216 +2499.615016 +2499.712785 +2499.715249 +2499.812818 +2499.912652 +2500.012851 +2500.015748 +2500.112685 +2500.115082 +2500.212851 +2500.215016 +2500.312718 +2500.315282 +2500.412851 +2500.512851 +2500.515115 +2500.612951 +2500.712651 +2500.812717 +2500.815981 +2500.912784 +2500.915048 +2501.012817 +2501.112817 +2501.212850 +2501.214682 +2501.216913 +2501.312717 +2501.315248 +2501.412883 +2501.415014 +2501.512816 +2501.515048 +2501.612650 +2501.712616 +2506.712645 +2506.727929 +2506.794163 +2506.807117 +2506.850307 +2506.858366 +2506.919038 +2506.939784 +2506.955735 +2506.989401 +2507.001023 +2507.020770 +2507.031326 +2507.079178 +2507.117673 +2507.148642 +2507.159897 +2507.173150 +2507.197659 +2507.206317 +2507.246177 +2507.269920 +2507.283607 +2507.299990 +2507.311012 +2507.322667 +2507.334389 +2507.344213 +2507.358398 +2507.371452 +2507.382508 +2507.396194 +2507.407616 +2507.422434 +2507.442914 +2507.462594 +2507.464426 +2507.486803 +2507.489267 +2507.500556 +2507.512644 +2507.526930 +2507.536420 +2507.550373 +2507.552737 +2507.577279 +2507.588968 +2507.600489 +2507.625431 +2507.653037 +2507.668321 +2507.678145 +2507.690000 +2507.702787 +2507.714875 +2507.726197 +2507.736453 +2507.740582 +2507.751005 +2507.770120 +2507.781741 +2507.793230 +2507.805051 +2507.817073 +2507.827029 +2507.836486 +2507.839517 +2507.850206 +2507.863626 +2507.888035 +2507.897825 +2507.912211 +2507.926030 +2507.939650 +2507.940249 +2507.952470 +2507.965757 +2507.981774 +2507.992064 +2508.006883 +2508.031491 +2508.034954 +2508.043646 +2508.047842 +2508.071318 +2508.085138 +2508.095960 +2508.118171 +2508.121168 +2508.145610 +2508.158231 +2508.169453 +2508.181974 +2508.196992 +2508.207182 +2508.219237 +2508.222933 +2508.232890 +2508.233622 +2508.246243 +2508.269719 +2508.272783 +2508.285370 +2508.297025 +2508.309613 +2508.335121 +2508.338584 +2508.361694 +2508.373282 +2508.395727 +2508.398824 +2508.408181 +2508.412177 +2508.421334 +2508.425663 +2508.435387 +2508.448074 +2508.460495 +2508.473715 +2508.486702 +2508.500355 +2508.525830 +2508.539183 +2508.552170 +2508.578311 +2508.591897 +2508.604951 +2508.617704 +2508.643645 +2508.656399 +2508.669020 +2508.683139 +2508.696426 +2508.709779 +2508.722799 +2508.736319 +2508.761627 +2508.774314 +2508.787901 +2508.800954 +2508.839116 +2509.072349 +2509.099456 +2509.112476 +2509.154833 +2509.166488 +2509.193295 +2509.221267 +2509.260628 +2509.315106 +2509.437251 +2509.463524 +2509.476678 +2509.533821 +2509.561926 +2509.591197 +2509.631689 +2509.770517 +2509.839515 +2509.866854 +2510.245575 +2510.481572 +2510.496690 +2510.526694 +2510.541945 +2510.572414 +2510.793926 +2510.923330 +2510.937815 +2510.953466 +2510.968385 +2510.984169 +2510.999021 +2511.014072 +2511.043876 +2511.058927 +2511.073346 +2511.087765 +2511.101918 +2511.117269 +2511.131588 +2511.147406 +2511.162890 +2511.178108 +2511.193060 +2511.208478 +2511.223363 +2511.253699 +2511.268951 +2511.284835 +2511.297855 +2511.313140 +2511.329157 +2511.343509 +2511.359094 +2511.388198 +2511.404581 +2511.419666 +2511.434518 +2511.466553 +2522.713328 +2524.713293 +2525.361277 +2525.931174 +2526.712691 +2526.933737 +2528.746622 +2531.712420 +2531.811221 +2531.813019 +2531.911354 +2532.011820 +2532.112020 +2532.113951 +2532.212353 +2532.312353 +2532.314684 +2532.412319 +2532.512452 +2532.514684 +2532.612452 +2532.615216 +2532.712386 +2532.814184 +2532.816848 +2532.912585 +2532.914783 +2533.012485 +2533.014683 +2533.112485 +2533.212418 +2533.214683 +2533.217380 +2533.312452 +2533.314749 +2533.412551 +2533.415382 +2533.512618 +2533.513184 +2533.514616 +2533.614050 +2533.617346 +2533.712651 +2533.812618 +2533.912451 +2533.914049 +2534.012518 +2534.014449 +2534.117013 +2534.212517 +2534.214582 +2534.220709 +2534.312417 +2534.314049 +2534.412484 +2534.422374 +2534.512417 +2534.612550 +2534.614582 +2534.617046 +2534.712417 +2534.716879 +2534.812417 +2534.912483 +2535.012417 +2535.019010 +2535.112417 +2535.114315 +2535.117212 +2535.119010 +2535.212416 +2535.213016 +2535.312450 +2535.314081 +2535.316712 +2535.320575 +2535.412416 +2535.416113 +2535.418810 +2535.512416 +2535.513815 +2535.612483 +2535.614614 +2535.619476 +2535.712316 +2535.714747 +2535.719076 +2535.813981 +2535.816312 +2535.912516 +2535.918476 +2536.012382 +2536.014713 +2536.016878 +2536.112316 +2536.114014 +2536.116745 +2536.118876 +2536.212449 +2536.219875 +2536.312482 +2536.314014 +2536.318443 +2536.412582 +2536.414180 +2536.417077 +2536.512448 +2536.514380 +2536.516478 +2536.612348 +2536.616877 +2536.618509 +2536.713913 +2536.718342 +2540.639251 +2541.712177 +2541.731191 +2541.750871 +2541.787934 +2541.824664 +2541.835354 +2541.881108 +2541.916872 +2541.935953 +2541.952037 +2541.982573 +2542.004351 +2542.032789 +2542.040914 +2542.052436 +2542.062626 +2542.073382 +2542.086569 +2542.099989 +2542.113142 +2542.127494 +2542.166655 +2542.177678 +2542.181041 +2542.191430 +2542.204950 +2542.216938 +2542.230025 +2542.245310 +2542.289299 +2542.301187 +2542.313675 +2542.325363 +2542.351404 +2542.364890 +2542.386835 +2542.390664 +2542.399389 +2542.412742 +2542.426029 +2542.438750 +2542.474281 +2542.486568 +2542.499855 +2542.512742 +2542.525296 +2542.537984 +2542.550471 +2542.562492 +2542.575046 +2542.577011 +2542.588999 +2542.607214 +2542.619835 +2542.629525 +2542.642079 +2542.654201 +2542.666522 +2542.675779 +2542.686435 +2542.711843 +2542.713708 +2542.723731 +2542.727261 +2542.737217 +2542.750271 +2542.763591 +2542.775979 +2542.787467 +2542.799289 +2542.810178 +2542.823498 +2542.826828 +2542.835919 +2542.848106 +2542.871183 +2542.882072 +2542.893594 +2542.905749 +2542.910044 +2542.918669 +2542.922232 +2542.931423 +2542.944643 +2542.958196 +2542.969618 +2542.982405 +2543.007447 +2543.019701 +2543.024463 +2543.032822 +2543.045675 +2543.050271 +2543.056698 +2543.061360 +2543.074014 +2543.083837 +2543.087600 +2543.096092 +2543.109145 +2543.122632 +2543.134720 +2543.140214 +2543.147740 +2543.159262 +2543.173980 +2543.183937 +2543.195092 +2543.218536 +2543.245409 +2543.257164 +2543.270683 +2543.283071 +2543.297323 +2543.307946 +2543.320034 +2543.372215 +2543.387233 +2543.398655 +2543.412375 +2543.424430 +2543.436751 +2543.450870 +2543.476744 +2543.490197 +2543.505249 +2543.531422 +2543.541712 +2543.556231 +2543.566787 +2543.595259 +2543.607746 +2543.645142 +2543.684336 +2543.711176 +2543.738049 +2543.778175 +2543.790630 +2543.841845 +2543.870217 +2543.999154 +2544.024862 +2544.116637 +2544.599187 +2545.179906 +2545.600351 +2545.902549 +2545.918600 +2545.990195 +2546.544540 +2546.558126 +2546.572911 +2546.618366 +2546.633617 +2546.678439 +2546.694989 +2558.711560 +2559.713358 +2560.712691 +2561.713222 +2565.360871 +2566.810753 +2566.812318 +2566.910920 +2566.912718 +2567.011519 +2567.013217 +2567.111952 +2567.120643 +2567.212185 +2567.312284 +2567.412384 +2567.416680 +2567.512384 +2567.514415 +2567.612551 +2567.712351 +2567.714449 +2567.812617 +2568.012484 +2568.014648 +2568.114415 +2568.212583 +2568.214182 +2568.312583 +2568.314248 +2568.412550 +2568.512616 +2568.514814 +2568.612583 +2568.614747 +2568.712749 +2568.714581 +2568.812649 +2568.814747 +2568.912583 +2568.915380 +2569.012516 +2569.014780 +2569.015246 +2569.112516 +2569.114614 +2569.212715 +2569.215479 +2569.312682 +2569.315346 +2569.412682 +2569.414880 +2569.512682 +2569.516878 +2569.612682 +2569.712715 +2569.714813 +2569.812548 +2569.912515 +2569.914646 +2570.012415 +2570.014346 +2570.112481 +2570.114746 +2570.212448 +2570.214246 +2570.216744 +2570.312614 +2570.412581 +2570.414113 +2570.512548 +2570.612581 +2570.712381 +2570.714013 +2570.812414 +2570.816577 +2570.912714 +2570.914812 +2571.012514 +2571.014245 +2571.017109 +2571.112447 +2571.114145 +2571.212580 +2571.215078 +2571.216909 +2571.312447 +2571.314611 +2571.412414 +2571.414811 +2571.512513 +2571.612580 +2571.614445 +2571.712580 +2571.714944 +2573.896993 +2573.970187 +2574.073084 +2575.564457 +2575.635753 +2576.539448 +2576.710410 +2576.728392 +2577.046207 +2577.134452 +2577.171249 +2577.183204 +2577.247006 +2577.248671 +2577.276144 +2577.287399 +2577.310676 +2577.333853 +2577.344376 +2577.372081 +2577.396790 +2577.432121 +2577.445874 +2577.489897 +2577.492894 +2577.517103 +2577.526860 +2577.540113 +2577.552401 +2577.564755 +2577.580106 +2577.604948 +2577.619400 +2577.637083 +2577.662357 +2577.665021 +2577.678208 +2577.708178 +2577.730323 +2577.745141 +2577.765987 +2577.818135 +2577.829523 +2577.838548 +2577.863856 +2577.876443 +2577.900885 +2577.911375 +2577.921997 +2577.934385 +2577.961691 +2577.975810 +2577.998254 +2578.015937 +2578.044375 +2578.055397 +2578.081471 +2578.094924 +2578.105947 +2578.118234 +2578.141511 +2578.166086 +2578.180705 +2578.194491 +2578.207745 +2578.217835 +2578.229590 +2578.243009 +2578.282703 +2578.293026 +2578.317668 +2578.331521 +2578.344541 +2578.356396 +2578.383835 +2578.394758 +2578.409243 +2578.422263 +2578.432886 +2578.449736 +2578.458993 +2578.462456 +2578.472546 +2578.485900 +2578.498254 +2578.502217 +2578.512773 +2578.526626 +2578.540245 +2578.553332 +2578.567118 +2578.579806 +2578.593958 +2578.597255 +2578.607611 +2578.621064 +2578.624494 +2578.632453 +2578.656496 +2578.670914 +2578.696589 +2578.712739 +2578.725726 +2578.739179 +2578.742776 +2578.754264 +2578.767185 +2578.781504 +2578.793125 +2578.807944 +2578.820598 +2578.834151 +2578.847737 +2578.860658 +2578.872180 +2578.873945 +2578.885000 +2578.897687 +2578.910475 +2578.924827 +2578.938247 +2578.964188 +2578.964554 +2578.967551 +2578.978273 +2578.991194 +2579.002949 +2579.016968 +2579.030654 +2579.044740 +2579.058027 +2579.077674 +2579.092226 +2579.095956 +2579.118167 +2579.131287 +2579.144008 +2579.155929 +2579.197587 +2579.212039 +2579.225593 +2579.264953 +2579.305812 +2579.319898 +2579.333185 +2579.348203 +2579.387930 +2579.416235 +2579.443341 +2579.458859 +2579.513438 +2579.541210 +2579.554963 +2579.569215 +2579.637813 +2579.894290 +2580.030320 +2580.157526 +2580.170880 +2580.214603 +2580.385365 +2580.415035 +2580.431186 +2580.445705 +2580.459990 +2580.489161 +2580.518498 +2580.547769 +2580.562921 +2580.592491 +2580.678139 +2580.721096 +2580.765851 +2580.837079 +2580.866617 +2580.897286 +2580.971312 +2581.030286 +2581.091358 +2581.104911 +2581.134515 +2581.150732 +2581.180636 +2581.195621 +2581.255228 +2581.270113 +2581.286330 +2581.300849 +2581.316533 +2583.395185 +2583.419461 +2583.544469 +2583.995751 +2584.038575 +2584.203277 +2584.406506 +2588.984058 +2593.714189 +2595.711990 +2596.711955 +2597.676823 +2598.928603 +2601.810885 +2602.011784 +2602.013382 +2602.113748 +2602.211384 +2602.312249 +2602.512815 +2602.612782 +2602.616745 +2602.712848 +2602.813015 +2602.815113 +2602.917710 +2603.012915 +2603.013614 +2603.112948 +2603.114846 +2603.213048 +2603.216078 +2603.313114 +2603.413014 +2603.415079 +2603.512848 +2603.612748 +2603.712814 +2603.812914 +2603.815012 +2603.912947 +2603.915578 +2604.013047 +2604.112947 +2604.212947 +2604.214712 +2604.313147 +2604.413013 +2604.415278 +2604.513046 +2604.515144 +2604.517742 +2604.613080 +2604.615377 +2604.713113 +2604.715244 +2604.812780 +2604.817708 +2604.912880 +2605.012979 +2605.015177 +2605.113046 +2605.117575 +2605.212979 +2605.215244 +2605.312813 +2605.413112 +2605.414777 +2605.514877 +2605.615676 +2605.713012 +2605.714777 +2605.813145 +2605.913078 +2605.915276 +2606.013045 +2606.015010 +2606.112878 +2606.115542 +2606.213078 +2606.215109 +2606.312712 +2606.314477 +2606.413011 +2606.512878 +2606.514943 +2606.612978 +2606.615142 +2611.729756 +2611.967485 +2612.054431 +2612.056096 +2612.192093 +2612.301117 +2612.327091 +2612.363755 +2612.376508 +2612.395889 +2612.460358 +2612.475376 +2612.541343 +2612.554930 +2612.592193 +2612.605046 +2612.658626 +2612.671313 +2612.686698 +2612.698120 +2612.762122 +2612.781536 +2612.783701 +2612.794490 +2612.796022 +2612.831686 +2612.856062 +2612.868283 +2612.880670 +2612.882069 +2612.920797 +2612.931719 +2612.934949 +2612.947637 +2612.956495 +2612.968915 +2612.978306 +2612.990760 +2613.002648 +2613.004447 +2613.016235 +2613.018166 +2613.028722 +2613.031286 +2613.043075 +2613.069082 +2613.115302 +2613.126824 +2613.151799 +2613.164786 +2613.167017 +2613.179738 +2613.191826 +2613.211073 +2613.223694 +2613.235848 +2613.237780 +2613.249834 +2613.279105 +2613.280870 +2613.294323 +2613.307144 +2613.311206 +2613.320464 +2613.330021 +2613.343307 +2613.345305 +2613.356960 +2613.370147 +2613.382968 +2613.394623 +2613.407243 +2613.421096 +2613.437280 +2613.462488 +2613.466984 +2613.476308 +2613.487163 +2613.498585 +2613.512838 +2613.538212 +2613.550100 +2613.574210 +2613.585132 +2613.589494 +2613.598419 +2613.600383 +2613.611739 +2613.613504 +2613.626491 +2613.637513 +2613.651965 +2613.656794 +2613.666118 +2613.679804 +2613.691525 +2613.695122 +2613.705478 +2613.719231 +2613.729954 +2613.742841 +2613.754363 +2613.758925 +2613.771845 +2613.781369 +2613.795854 +2613.808508 +2613.812071 +2613.825791 +2613.851499 +2613.864019 +2613.874209 +2613.888428 +2613.901449 +2613.913270 +2613.926823 +2613.939744 +2613.954462 +2613.960256 +2613.967649 +2613.979304 +2613.990493 +2614.004845 +2614.017133 +2614.021528 +2614.030087 +2614.043606 +2614.056826 +2614.070812 +2614.097452 +2614.111638 +2614.124958 +2614.138212 +2614.151831 +2614.165285 +2614.178471 +2614.191092 +2614.218698 +2614.247536 +2614.260989 +2614.265617 +2614.274409 +2614.288195 +2614.300349 +2614.314102 +2614.326390 +2614.339444 +2614.351998 +2614.365651 +2614.406210 +2614.446936 +2614.455994 +2614.557459 +2614.570379 +2614.583299 +2614.595887 +2614.623093 +2614.636446 +2614.649700 +2614.692990 +2614.709207 +2614.722860 +2614.735980 +2614.764352 +2614.778304 +2614.791857 +2614.822060 +2614.832983 +2614.846936 +2614.861854 +2614.916366 +2614.974541 +2615.002147 +2615.016133 +2615.032150 +2615.244005 +2615.312803 +2615.341873 +2615.397118 +2615.408973 +2615.421560 +2615.436346 +2615.450498 +2615.465816 +2615.479602 +2615.494487 +2615.524124 +2615.645869 +2615.659855 +2615.703378 +2615.718796 +2615.809172 +2615.824324 +2615.838177 +2615.852829 +2615.866615 +2615.882233 +2615.895486 +2616.019662 +2616.049865 +2616.079235 +2616.109705 +2616.168180 +2616.182266 +2616.271410 +2616.284363 +2616.327220 +2616.356991 +2616.372042 +2616.388259 +2616.570843 +2616.584829 +2616.600880 +2616.615832 +2616.630817 +2616.646801 +2616.662651 +2617.349064 +2617.365115 +2617.393187 +2618.459752 +2619.693884 +2619.843467 +2621.311431 +2627.715454 +2629.713188 +2630.711955 +2631.712420 +2634.387675 +2635.028167 +2635.122040 +2635.144551 +2635.175220 +2635.256672 +2635.289073 +2635.306156 +2635.325337 +2635.373122 +2635.855706 +2636.531130 +2636.633361 +2636.811349 +2636.911849 +2636.920140 +2637.012381 +2637.014113 +2637.112681 +2637.212881 +2637.214479 +2637.413047 +2637.414812 +2637.421572 +2637.512914 +2637.613013 +2637.620506 +2637.712880 +2637.813113 +2637.913246 +2638.013246 +2638.015244 +2638.113412 +2638.115211 +2638.212480 +2638.313279 +2638.314744 +2638.413445 +2638.414145 +2638.513412 +2638.613345 +2638.615543 +2638.713412 +2638.715010 +2638.812712 +2638.912612 +2638.916209 +2639.012679 +2639.014744 +2639.113212 +2639.115376 +2639.213245 +2639.215476 +2639.313211 +2639.321170 +2639.413278 +2639.416108 +2639.513411 +2639.613344 +2639.713444 +2639.813477 +2639.913377 +2639.915542 +2640.013277 +2640.016341 +2640.113211 +2640.114942 +2640.212644 +2640.214543 +2640.312744 +2640.413044 +2640.415342 +2640.420670 +2640.513244 +2640.514875 +2640.520470 +2640.613277 +2640.615375 +2640.617473 +2640.713243 +2640.720636 +2640.813310 +2640.814009 +2640.816040 +2640.820836 +2640.913410 +2640.915208 +2640.921069 +2641.013176 +2641.015408 +2641.020569 +2641.113143 +2641.113709 +2641.114841 +2641.120935 +2641.213309 +2641.215574 +2641.220502 +2641.313243 +2641.319936 +2641.413109 +2641.415207 +2641.417505 +2641.419470 +2641.513409 +2641.515574 +2641.520036 +2641.613376 +2641.620169 +2641.713276 +2641.715307 +2641.717605 +2641.720269 +2642.615972 +2643.618502 +2643.696857 +2643.742644 +2643.783637 +2644.835850 +2644.860059 +2644.897189 +2645.698020 +2645.724793 +2645.745473 +2646.711040 +2646.728888 +2646.861889 +2647.062621 +2647.095921 +2647.118865 +2647.285431 +2647.316034 +2647.336147 +2647.361122 +2647.388695 +2647.413803 +2647.483566 +2647.496287 +2647.509241 +2647.523526 +2647.537546 +2647.549534 +2647.552064 +2647.645970 +2647.670013 +2647.682567 +2647.695521 +2647.706776 +2647.721794 +2647.749433 +2647.776373 +2647.789360 +2647.845970 +2647.857259 +2647.880269 +2647.892723 +2647.917998 +2647.928488 +2647.969147 +2647.971578 +2647.981401 +2648.008441 +2648.018464 +2648.031718 +2648.032916 +2648.047102 +2648.069213 +2648.072144 +2648.082034 +2648.085763 +2648.095321 +2648.097252 +2648.099383 +2648.109140 +2648.112037 +2648.122127 +2648.134082 +2648.147868 +2648.159223 +2648.172144 +2648.187295 +2648.199050 +2648.210638 +2648.223559 +2648.235747 +2648.248667 +2648.261721 +2648.273575 +2648.284431 +2648.306443 +2648.313835 +2648.315866 +2648.325590 +2648.337711 +2648.349433 +2648.361288 +2648.376073 +2648.387062 +2648.400349 +2648.402180 +2648.414101 +2648.431517 +2648.442873 +2648.445970 +2648.455993 +2648.459822 +2648.468647 +2648.472443 +2648.496186 +2648.522193 +2648.535580 +2648.550565 +2648.563985 +2648.576938 +2648.580069 +2648.601447 +2648.603412 +2648.615167 +2648.630385 +2648.643205 +2648.655094 +2648.664751 +2648.675673 +2648.682832 +2648.696585 +2648.701347 +2648.708806 +2648.721094 +2648.731584 +2648.734248 +2648.743905 +2648.747368 +2648.757524 +2648.771743 +2648.784264 +2648.787128 +2648.797851 +2648.801147 +2648.811937 +2648.815033 +2648.824524 +2648.837844 +2648.851530 +2648.854294 +2648.864384 +2648.868247 +2648.878070 +2648.890957 +2648.895120 +2648.903145 +2648.907075 +2648.916166 +2648.920528 +2648.929852 +2648.942206 +2648.956425 +2648.969579 +2648.983065 +2648.996052 +2648.999782 +2649.008773 +2649.020961 +2649.035546 +2649.049099 +2649.063851 +2649.076971 +2649.113868 +2649.127487 +2649.141307 +2649.155759 +2649.170578 +2649.183898 +2649.198416 +2649.202579 +2649.212502 +2649.227920 +2649.240308 +2649.253994 +2649.268946 +2649.296785 +2649.311270 +2649.338842 +2649.352629 +2649.380467 +2649.392955 +2649.406841 +2649.422092 +2649.448899 +2649.474906 +2649.487261 +2649.501480 +2649.504077 +2649.543338 +2649.555326 +2649.570677 +2649.624690 +2649.649765 +2649.670810 +2649.684130 +2649.699881 +2649.714067 +2649.727520 +2649.741106 +2649.756025 +2649.771043 +2649.785695 +2649.814799 +2649.830184 +2649.844503 +2649.914033 +2649.928319 +2649.954260 +2649.967979 +2649.981566 +2650.009371 +2650.040074 +2650.053294 +2650.083630 +2650.097083 +2650.141672 +2650.156957 +2650.184896 +2650.201013 +2650.214866 +2650.256890 +2650.271609 +2650.317063 +2650.442205 +2650.456757 +2650.471808 +2650.516297 +2650.530316 +2650.544036 +2650.572374 +2650.728751 +2650.742737 +2650.774239 +2650.802877 +2650.832414 +2650.861418 +2650.876836 +2650.892154 +2650.907439 +2650.923989 +2650.938774 +2650.954325 +2650.969044 +2650.983230 +2651.103443 +2651.117362 +2651.132081 +2651.147965 +2651.280599 +2651.295451 +2651.308937 +2651.323156 +2651.337675 +2651.352926 +2651.368877 +2651.383096 +2651.427751 +2651.443735 +2651.501844 +2651.649330 +2651.664415 +2651.681331 +2651.696116 +2654.491651 +2661.636766 +2662.713987 +2663.471596 +2665.714284 +2666.998465 +2667.009654 +2668.193069 +2668.288041 +2668.421108 +2668.870957 +2670.427799 +2670.877782 +2671.713712 +2671.811614 +2671.813379 +2671.911980 +2671.913745 +2671.913911 +2671.917808 +2672.012446 +2672.112912 +2672.116808 +2672.121204 +2672.212912 +2672.220704 +2672.313112 +2672.415543 +2672.421770 +2672.513178 +2672.521969 +2672.612978 +2672.615343 +2672.621037 +2672.713178 +2672.715010 +2672.719971 +2672.815209 +2672.818939 +2672.821237 +2672.913378 +2672.917207 +2673.013244 +2673.113511 +2673.213344 +2673.214976 +2673.313444 +2673.413510 +2673.513444 +2673.613444 +2673.617173 +2673.621302 +2673.713577 +2673.715009 +2673.813410 +2673.814942 +2673.817073 +2673.913410 +2673.920070 +2674.013410 +2674.015241 +2674.020902 +2674.113743 +2674.115275 +2674.117872 +2674.120802 +2674.213443 +2674.215408 +2674.313476 +2674.315208 +2674.413509 +2674.421202 +2674.515474 +2674.520569 +2674.613376 +2674.615474 +2674.620136 +2674.713476 +2674.715074 +2674.717672 +2674.813442 +2674.817139 +2674.819669 +2674.913376 +2674.915407 +2674.917805 +2674.919070 +2675.013442 +2675.019469 +2675.113409 +2675.120002 +2675.213409 +2675.214940 +2675.219569 +2675.313475 +2675.315007 +2675.317371 +2675.320402 +2675.413175 +2675.415506 +2675.420601 +2675.513442 +2675.518170 +2675.520368 +2675.613575 +2675.615140 +2675.619602 +2675.621767 +2675.717104 +2675.718969 +2675.721200 +2675.813375 +2675.817071 +2675.913408 +2675.919169 +2675.922732 +2676.013241 +2676.015406 +2676.015805 +2676.019102 +2676.113175 +2676.117537 +2676.119901 +2676.213341 +2676.219035 +2676.221433 +2676.313408 +2676.315039 +2676.319535 +2676.413341 +2676.414906 +2676.417004 +2676.421266 +2676.513507 +2676.515039 +2676.517403 +2676.519535 +2676.521832 +2676.613474 +2676.615738 +2676.619002 +2676.621632 +2676.713440 +2676.721066 +2677.142744 +2680.151932 +2680.637246 +2680.671845 +2680.701016 +2680.787129 +2680.889327 +2680.931851 +2680.957326 +2680.988295 +2681.032650 +2681.048235 +2681.076739 +2681.091558 +2681.175474 +2681.323326 +2681.711371 +2681.730185 +2681.768081 +2681.781601 +2681.855327 +2681.934814 +2682.048766 +2682.057924 +2682.072742 +2682.087428 +2682.186062 +2682.219895 +2682.238676 +2682.287994 +2682.289692 +2682.310038 +2682.322592 +2682.324690 +2682.382499 +2682.397717 +2682.409405 +2682.448733 +2682.469179 +2682.479069 +2682.490924 +2682.492356 +2682.504777 +2682.529052 +2682.541939 +2682.544770 +2682.555925 +2682.591290 +2682.603778 +2682.613768 +2682.624723 +2682.676871 +2682.705343 +2682.718529 +2682.732649 +2682.745669 +2682.760521 +2682.775805 +2682.781333 +2682.793687 +2682.805842 +2682.818529 +2682.821893 +2682.834080 +2682.847134 +2682.861120 +2682.873308 +2682.915166 +2682.924357 +2682.938875 +2682.951296 +2682.965182 +2682.981166 +2682.993288 +2683.005642 +2683.015033 +2683.028319 +2683.042538 +2683.054093 +2683.064283 +2683.077337 +2683.091856 +2683.105808 +2683.113834 +2683.139242 +2683.158689 +2683.169045 +2683.181166 +2683.193720 +2683.198249 +2683.206741 +2683.218163 +2683.221959 +2683.231882 +2683.245602 +2683.257590 +2683.271143 +2683.274373 +2683.283963 +2683.297383 +2683.310936 +2683.325022 +2683.338475 +2683.349864 +2683.360453 +2683.373907 +2683.386894 +2683.400846 +2683.414666 +2683.417996 +2683.428186 +2683.430683 +2683.441073 +2683.444003 +2683.454226 +2683.480034 +2683.493420 +2683.505808 +2683.508039 +2683.518795 +2683.532515 +2683.544935 +2683.548032 +2683.571476 +2683.587260 +2683.610104 +2683.620094 +2683.623290 +2683.633713 +2683.645069 +2683.648132 +2683.658355 +2683.672674 +2683.684129 +2683.686594 +2683.696584 +2683.709571 +2683.722558 +2683.726920 +2683.735345 +2683.741639 +2683.749664 +2683.763017 +2683.773573 +2683.787593 +2683.809970 +2683.813567 +2683.823890 +2683.835644 +2683.838974 +2683.853393 +2683.862984 +2683.866447 +2683.877369 +2683.881532 +2683.890656 +2683.917396 +2683.930616 +2683.954659 +2683.967313 +2683.980999 +2684.007539 +2684.020493 +2684.032647 +2684.045767 +2684.057489 +2684.070676 +2684.084395 +2684.097349 +2684.111668 +2684.125654 +2684.138508 +2684.151129 +2684.162417 +2684.172674 +2684.186926 +2684.201145 +2684.214865 +2684.229850 +2684.240905 +2684.255458 +2684.270309 +2684.283430 +2684.298048 +2684.312234 +2684.315531 +2684.326886 +2684.340472 +2684.353992 +2684.369344 +2684.382863 +2684.397116 +2684.411501 +2684.426853 +2684.441671 +2684.483529 +2684.497948 +2684.512600 +2684.525720 +2684.539440 +2684.552893 +2684.573905 +2684.579966 +2684.593919 +2684.648797 +2684.690655 +2684.730016 +2684.802210 +2684.814065 +2684.825054 +2684.863682 +2684.878301 +2684.891621 +2685.005473 +2685.020192 +2685.076869 +2685.090821 +2685.133412 +2685.148464 +2685.163549 +2685.178900 +2685.233046 +2685.291154 +2685.387358 +2685.417394 +2685.431813 +2685.532313 +2685.545633 +2685.560651 +2685.603808 +2685.618127 +2685.634344 +2685.647497 +2685.706572 +2685.737274 +2685.749795 +2685.859052 +2685.877001 +2685.900511 +2686.003974 +2686.047131 +2686.103308 +2686.119858 +2686.134077 +2686.151926 +2686.165213 +2686.181863 +2686.196315 +2686.212132 +2686.227117 +2686.241736 +2686.257021 +2686.288922 +2686.303807 +2686.319425 +2686.333278 +2686.379431 +2686.395715 +2686.411066 +2686.511499 +2686.556388 +2686.570074 +2686.584793 +2686.601076 +2686.634243 +2686.648795 +2686.664546 +2687.161349 +2687.197646 +2687.222188 +2687.230879 +2687.275867 +2687.392018 +2687.399477 +2687.415894 +2687.864944 +2687.910665 +2687.965044 +2688.057319 +2689.154387 +2689.215493 +2689.247361 +2689.258150 +2689.307933 +2689.525216 +2691.407065 +2691.592080 +2697.715051 +2698.715117 +2698.998666 +2699.022542 +2699.617880 +2699.712185 +2700.056074 +2700.067030 +2700.157706 +2700.713117 +2701.167895 +2701.713649 +2702.013049 +2702.022140 +2702.248913 +2703.931462 +2704.783875 +2704.888437 +2704.896962 +2705.638853 +2706.355369 +2706.449441 +2706.812411 +2707.017373 +2707.113210 +2707.114775 +2707.213477 +2707.313510 +2707.315175 +2707.413843 +2707.417705 +2707.513942 +2707.614009 +2707.614575 +2707.615574 +2707.714075 +2707.716073 +2707.913476 +2707.915341 +2707.922234 +2708.013875 +2708.113942 +2708.115640 +2708.213975 +2708.219370 +2708.222100 +2708.313908 +2708.315740 +2708.322700 +2708.414008 +2708.416006 +2708.514008 +2708.516206 +2708.614241 +2708.616172 +2708.714074 +2708.716006 +2708.722033 +2708.813974 +2708.815806 +2708.913974 +2708.915506 +2709.014008 +2709.015772 +2709.018303 +2709.113941 +2709.216172 +2709.218503 +2709.316305 +2709.414074 +2709.416005 +2709.513974 +2709.515506 +2709.613974 +2709.616438 +2709.713940 +2709.715472 +2709.813541 +2709.817170 +2709.913774 +2709.915772 +2709.921233 +2710.013840 +2710.015438 +2710.113873 +2710.213906 +2710.216038 +2710.217936 +2710.313940 +2710.315638 +2710.415538 +2710.514039 +2710.516071 +2710.614039 +2710.616703 +2710.714039 +2710.716270 +2710.813873 +2710.816403 +2710.913739 +2710.915937 +2710.920532 +2711.013872 +2711.015970 +2711.021132 +2711.113872 +2711.115371 +2711.215970 +2711.218301 +2711.313872 +2711.315937 +2711.413972 +2711.416070 +2711.513972 +2711.516070 +2711.518534 +2711.614005 +2711.615437 +2711.714038 +2711.715770 +2713.613037 +2713.638379 +2713.731252 +2715.235813 +2715.266982 +2715.289759 +2715.323692 +2716.428919 +2716.460953 +2716.495885 +2716.710970 +2716.713301 +2717.032248 +2717.055158 +2717.087559 +2717.109704 +2717.147066 +2717.234446 +2717.271309 +2717.307739 +2717.329284 +2717.340206 +2717.343303 +2717.352494 +2717.354226 +2717.423756 +2717.471075 +2717.545068 +2717.558621 +2717.591422 +2717.617629 +2717.629350 +2717.676703 +2717.699846 +2717.716696 +2717.763383 +2717.775537 +2717.788058 +2717.802244 +2717.818228 +2717.899680 +2717.910868 +2717.924222 +2717.958321 +2717.970376 +2717.972107 +2717.984528 +2718.010669 +2718.021125 +2718.023389 +2718.035943 +2718.048897 +2718.050995 +2718.063682 +2718.077568 +2718.110569 +2718.135510 +2718.144468 +2718.147132 +2718.158587 +2718.172040 +2718.184961 +2718.196549 +2718.198514 +2718.211501 +2718.232347 +2718.240472 +2718.263649 +2718.277335 +2718.295916 +2718.298347 +2718.308937 +2718.325886 +2718.336176 +2718.339373 +2718.350595 +2718.361884 +2718.365014 +2718.375437 +2718.388790 +2718.391454 +2718.436909 +2718.446366 +2718.470375 +2718.478500 +2718.481264 +2718.492952 +2718.506339 +2718.509935 +2718.520059 +2718.547498 +2718.560119 +2718.573339 +2718.577235 +2718.586725 +2718.599379 +2718.615763 +2718.637075 +2718.651660 +2718.681464 +2718.707704 +2718.710235 +2718.720158 +2718.723488 +2718.733678 +2718.746032 +2718.759985 +2718.763748 +2718.774371 +2718.778200 +2718.787624 +2718.794084 +2718.799912 +2718.803142 +2718.816795 +2718.827984 +2718.841970 +2718.854124 +2718.865646 +2718.868776 +2718.891420 +2718.894617 +2718.908703 +2718.929915 +2718.944734 +2718.959585 +2718.971573 +2718.975503 +2718.984627 +2719.011667 +2719.023721 +2719.036209 +2719.051060 +2719.063648 +2719.068543 +2719.076801 +2719.090255 +2719.103674 +2719.114930 +2719.118093 +2719.132779 +2719.144767 +2719.158753 +2719.171773 +2719.185426 +2719.199678 +2719.213431 +2719.228583 +2719.244434 +2719.253591 +2719.266878 +2719.280564 +2719.286758 +2719.293951 +2719.305273 +2719.333711 +2719.347097 +2719.360817 +2719.374537 +2719.401943 +2719.430614 +2719.472872 +2719.487290 +2719.500744 +2719.514730 +2719.545066 +2719.557553 +2719.561982 +2719.571806 +2719.585459 +2719.611166 +2719.638706 +2719.652292 +2719.655322 +2719.662781 +2719.675502 +2719.745932 +2719.773504 +2719.786724 +2719.856920 +2719.885359 +2719.899844 +2719.940304 +2719.981795 +2719.995748 +2720.010633 +2720.024153 +2720.055122 +2720.080064 +2720.165478 +2720.293217 +2720.320323 +2720.334676 +2720.363780 +2720.392218 +2720.407603 +2720.466277 +2720.480530 +2720.508868 +2720.525152 +2720.539504 +2720.584725 +2720.600077 +2720.614429 +2720.629947 +2720.645165 +2720.659117 +2720.674102 +2720.675801 +2720.704872 +2720.720756 +2720.736906 +2720.751025 +2720.845864 +2720.859750 +2720.875201 +2720.901841 +2720.916926 +2720.933243 +2720.948261 +2721.041302 +2721.057219 +2721.139370 +2721.169640 +2721.270772 +2721.287089 +2721.301075 +2721.332277 +2721.431711 +2721.463679 +2721.476699 +2721.490519 +2721.587455 +2727.344592 +2733.997199 +2734.713183 +2734.956572 +2734.972989 +2735.206422 +2736.087507 +2736.215712 +2736.712881 +2737.197662 +2741.317805 +2741.449473 +2741.812010 +2741.813675 +2741.912210 +2742.012842 +2742.014441 +2742.113175 +2742.114874 +2742.213275 +2742.215107 +2742.313342 +2742.314940 +2742.413441 +2742.513608 +2742.613275 +2742.615273 +2742.713474 +2742.715839 +2742.813341 +2742.815539 +2742.913674 +2742.915938 +2743.013740 +2743.113407 +2743.115738 +2743.213640 +2743.215572 +2743.313607 +2743.413574 +2743.416537 +2743.513573 +2743.514206 +2743.515505 +2743.613573 +2743.713507 +2743.715238 +2743.813074 +2743.815871 +2743.913407 +2744.013340 +2744.017469 +2744.113406 +2744.115871 +2744.213340 +2744.215338 +2744.313539 +2744.315704 +2744.413406 +2744.513539 +2744.515737 +2744.613439 +2744.813472 +2744.815137 +2744.913505 +2744.914971 +2745.013272 +2745.015703 +2745.113139 +2745.115137 +2745.213272 +2745.313305 +2745.413239 +2745.513438 +2745.515037 +2745.613372 +2745.615469 +2745.713371 +2745.715136 +2745.813338 +2745.815569 +2745.913471 +2745.915136 +2746.013471 +2746.113404 +2746.213404 +2746.315835 +2746.413271 +2746.415702 +2746.513171 +2746.514936 +2746.613171 +2746.713337 +2747.583633 +2751.069843 +2751.087459 +2751.729583 +2751.766346 +2751.963448 +2752.061917 +2752.086026 +2752.159452 +2752.244800 +2752.247564 +2752.261983 +2752.306738 +2752.320524 +2752.366711 +2752.377634 +2752.405473 +2752.443601 +2752.457820 +2752.471174 +2752.497680 +2752.507570 +2752.544300 +2752.556521 +2752.632479 +2752.642935 +2752.665046 +2752.679598 +2752.692918 +2752.714530 +2752.729382 +2752.785925 +2752.798346 +2752.812698 +2752.814197 +2752.826917 +2752.850128 +2752.873271 +2752.887157 +2752.915529 +2752.930048 +2752.938273 +2752.952592 +2752.965445 +2753.009868 +2753.028349 +2753.038073 +2753.049228 +2753.062415 +2753.065978 +2753.076568 +2753.089987 +2753.115429 +2753.118825 +2753.130014 +2753.130480 +2753.133943 +2753.144433 +2753.157420 +2753.179631 +2753.198912 +2753.224153 +2753.237740 +2753.239405 +2753.250394 +2753.264213 +2753.288322 +2753.312431 +2753.324819 +2753.327983 +2753.338572 +2753.354256 +2753.365079 +2753.378066 +2753.391253 +2753.416561 +2753.430613 +2753.443101 +2753.463347 +2753.482128 +2753.486524 +2753.499611 +2753.511532 +2753.515495 +2753.541169 +2753.551825 +2753.555621 +2753.558485 +2753.564646 +2753.568875 +2753.579164 +2753.593350 +2753.606404 +2753.617093 +2753.630846 +2753.634343 +2753.645098 +2753.658985 +2753.674203 +2753.684959 +2753.699744 +2753.713264 +2753.725351 +2753.740303 +2753.746530 +2753.755688 +2753.768242 +2753.771072 +2753.781529 +2753.794282 +2753.806304 +2753.820490 +2753.834908 +2753.848195 +2753.853390 +2753.861415 +2753.865211 +2753.875201 +2753.888621 +2753.892251 +2753.902441 +2753.916127 +2753.929314 +2753.938738 +2753.954189 +2753.964046 +2753.967076 +2753.980396 +2753.995181 +2753.998511 +2754.012264 +2754.022254 +2754.035774 +2754.048861 +2754.062447 +2754.076700 +2754.085158 +2754.098478 +2754.112464 +2754.136939 +2754.149693 +2754.162614 +2754.166810 +2754.176367 +2754.191352 +2754.217426 +2754.230746 +2754.245464 +2754.259517 +2754.272837 +2754.287222 +2754.300875 +2754.314995 +2754.327748 +2754.341202 +2754.355754 +2754.370006 +2754.383493 +2754.397246 +2754.411997 +2754.425018 +2754.452990 +2754.466276 +2754.479363 +2754.494781 +2754.508101 +2754.521188 +2754.550992 +2754.564978 +2754.579163 +2754.593416 +2754.608401 +2754.621288 +2754.637205 +2754.650958 +2754.664345 +2754.695647 +2754.777065 +2754.834275 +2754.848327 +2754.862580 +2754.904604 +2754.921121 +2754.936239 +2754.949593 +2754.963612 +2754.979263 +2755.006902 +2755.022786 +2755.066209 +2755.081494 +2755.094881 +2755.125317 +2755.140235 +2755.155686 +2755.170505 +2755.184691 +2755.214927 +2755.230711 +2755.243732 +2755.259716 +2755.274101 +2755.288986 +2755.319256 +2755.433209 +2755.447861 +2755.463944 +2755.478430 +2755.493015 +2755.523984 +2755.538770 +2755.555386 +2755.568939 +2755.615426 +2755.629412 +2755.644530 +2755.659515 +2755.689319 +2755.704604 +2755.720588 +2755.735972 +2755.750025 +2755.766475 +2755.781560 +2755.797144 +2755.797511 +2755.813761 +2755.827747 +2755.843431 +2755.858416 +2755.874633 +2755.890551 +2755.904603 +2755.918423 +2755.934507 +2755.949159 +2755.979928 +2755.995779 +2756.011097 +2756.027314 +2756.041400 +2756.057151 +2756.072369 +2756.102872 +2756.117956 +2756.248359 +2756.261846 +2756.308599 +2756.323151 +2756.338536 +2756.354020 +2756.368472 +2756.399142 +2767.713116 +2768.712749 +2768.938590 +2769.712715 +2770.712447 +2770.934359 +2771.712313 +2771.906585 +2771.921670 +2773.081176 +2773.662827 +2774.006417 +2776.713041 +2776.812475 +2776.912907 +2777.011276 +2777.013607 +2777.111642 +2777.211775 +2777.213240 +2777.314239 +2777.412041 +2777.414039 +2777.511841 +2777.612041 +2777.614705 +2777.712174 +2777.714005 +2777.812107 +2777.814805 +2777.912207 +2777.916736 +2778.012207 +2778.112207 +2778.114105 +2778.212307 +2778.312240 +2778.316303 +2778.412373 +2778.414138 +2778.512273 +2778.514171 +2778.612273 +2778.617068 +2778.712339 +2778.714537 +2778.812273 +2778.815503 +2778.912273 +2779.012339 +2779.112239 +2779.114470 +2779.212239 +2779.214237 +2779.312272 +2779.412339 +2779.412872 +2779.414004 +2779.514403 +2779.516668 +2779.612239 +2779.712205 +2779.714003 +2779.812238 +2779.912172 +2779.914003 +2780.012238 +2780.014303 +2780.112371 +2780.112904 +2780.114036 +2780.212271 +2780.214003 +2780.216068 +2780.412205 +2780.512271 +2780.612304 +2780.712204 +2780.813902 +2780.912237 +2781.012204 +2781.014535 +2781.112037 +2781.212237 +2781.213935 +2781.216433 +2781.312104 +2781.316466 +2781.412204 +2781.414401 +2781.416566 +2781.712203 +2781.714235 +2786.711932 +2786.728016 +2786.751559 +2786.783926 +2786.793450 +2786.852125 +2786.861749 +2786.875568 +2786.887989 +2786.899910 +2786.912098 +2786.984925 +2787.019091 +2787.029880 +2787.042301 +2787.056520 +2787.067409 +2787.080596 +2787.127582 +2787.158185 +2787.185991 +2787.196880 +2787.211232 +2787.222554 +2787.250360 +2787.273503 +2787.300276 +2787.311132 +2787.342367 +2787.355687 +2787.356453 +2787.368375 +2787.398112 +2787.409167 +2787.411065 +2787.422953 +2787.434908 +2787.447695 +2787.460915 +2787.496680 +2787.508501 +2787.530579 +2787.560349 +2787.571205 +2787.581861 +2787.596080 +2787.610699 +2787.623053 +2787.632444 +2787.634575 +2787.645397 +2787.659084 +2787.684558 +2787.698245 +2787.709866 +2787.722487 +2787.735374 +2787.746530 +2787.758917 +2787.772537 +2787.784492 +2787.808334 +2787.822687 +2787.833542 +2787.859350 +2787.873136 +2787.886623 +2787.897945 +2787.901541 +2787.911531 +2787.924718 +2787.937272 +2787.950059 +2787.962713 +2787.964844 +2787.974335 +2787.984958 +2788.018724 +2788.044365 +2788.046962 +2788.072703 +2788.086556 +2788.114794 +2788.116826 +2788.128880 +2788.136639 +2788.146596 +2788.157718 +2788.169406 +2788.181694 +2788.196779 +2788.209166 +2788.220389 +2788.233276 +2788.246829 +2788.249992 +2788.260249 +2788.272536 +2788.275167 +2788.286922 +2788.310865 +2788.314394 +2788.323585 +2788.334574 +2788.337105 +2788.347528 +2788.359150 +2788.376066 +2788.386456 +2788.389619 +2788.400342 +2788.413495 +2788.425983 +2788.438237 +2788.451724 +2788.463445 +2788.468107 +2788.480162 +2788.490851 +2788.504704 +2788.517225 +2788.534141 +2788.544098 +2788.556952 +2788.586389 +2788.597178 +2788.609765 +2788.622086 +2788.636206 +2788.648760 +2788.661514 +2788.672336 +2788.689153 +2788.699209 +2788.713095 +2788.726315 +2788.738670 +2788.752023 +2788.765776 +2788.778030 +2788.789852 +2788.855186 +2788.869306 +2788.894880 +2788.908899 +2788.923352 +2788.976332 +2788.989419 +2789.042599 +2789.055852 +2789.067707 +2789.107467 +2789.148093 +2789.185989 +2789.230511 +2789.265243 +2789.278230 +2789.291117 +2789.319289 +2789.372435 +2789.389385 +2789.399775 +2789.440734 +2789.454586 +2789.468473 +2789.495079 +2789.510164 +2789.551023 +2789.606901 +2789.635272 +2789.648392 +2789.704470 +2789.733141 +2789.746761 +2789.760613 +2789.775066 +2789.788519 +2789.803171 +2789.831576 +2789.845029 +2789.887387 +2790.226714 +2790.257116 +2790.272335 +2790.314692 +2790.360180 +2790.375398 +2790.418888 +2790.535738 +2790.549657 +2790.579061 +2790.609630 +2790.623350 +2790.638868 +2790.755784 +2790.770569 +2790.785288 +2790.933872 +2790.972634 +2790.987186 +2791.003136 +2791.131341 +2791.207998 +2791.222617 +2791.268437 +2794.727708 +2801.981947 +2802.712349 +2802.910018 +2803.712181 +2803.949377 +2803.956170 +2804.712214 +2804.932460 +2805.924966 +2805.945246 +2806.711679 +2808.409879 +2811.712706 +2811.811141 +2811.911440 +2811.913505 +2812.111973 +2812.212273 +2812.312406 +2812.314937 +2812.412372 +2812.414470 +2812.512505 +2812.612505 +2812.712572 +2812.716268 +2812.812505 +2812.814536 +2812.817833 +2812.912638 +2813.012671 +2813.014436 +2813.112605 +2813.114436 +2813.212638 +2813.214536 +2813.312638 +2813.315102 +2813.412704 +2813.512405 +2813.712271 +2813.912571 +2814.014602 +2814.114102 +2814.212604 +2814.214235 +2814.412437 +2814.414169 +2814.417099 +2814.512670 +2814.514335 +2814.612670 +2814.614768 +2814.712636 +2814.714634 +2814.814867 +2814.817498 +2814.912570 +2814.914434 +2815.012203 +2815.014135 +2815.112536 +2815.114900 +2815.212603 +2815.214734 +2815.217464 +2815.312603 +2815.314601 +2815.412669 +2815.414800 +2815.417597 +2815.512869 +2815.516598 +2815.612636 +2815.614833 +2815.617064 +2815.712669 +2815.714434 +2815.812602 +2815.817297 +2815.912602 +2815.915233 +2816.012335 +2816.014800 +2816.112469 +2816.114000 +2816.212768 +2816.213301 +2816.214700 +2816.312602 +2816.314633 +2816.317363 +2816.412568 +2816.414699 +2816.512601 +2816.514166 +2816.516764 +2816.612734 +2816.712568 +2816.714133 +2821.729945 +2821.773768 +2821.796479 +2821.986422 +2822.018323 +2822.036638 +2822.047594 +2822.121320 +2822.136205 +2822.171204 +2822.173402 +2822.209099 +2822.228779 +2822.243198 +2822.253621 +2822.266442 +2822.326149 +2822.336305 +2822.349092 +2822.475199 +2822.484557 +2822.497277 +2822.508067 +2822.559815 +2822.562812 +2822.581460 +2822.592515 +2822.618290 +2822.691383 +2822.735672 +2822.750457 +2822.757916 +2822.769838 +2822.785456 +2822.797777 +2822.825848 +2822.838369 +2822.850457 +2822.863644 +2822.873800 +2822.876598 +2822.900407 +2822.910630 +2822.912995 +2822.945162 +2822.957517 +2822.972701 +2822.990151 +2823.007600 +2823.035472 +2823.048692 +2823.062711 +2823.075166 +2823.097610 +2823.111229 +2823.120320 +2823.124050 +2823.136038 +2823.146761 +2823.167074 +2823.173234 +2823.185821 +2823.189052 +2823.199042 +2823.212395 +2823.225682 +2823.238202 +2823.256051 +2823.278262 +2823.295911 +2823.298042 +2823.309664 +2823.312628 +2823.322618 +2823.324916 +2823.335239 +2823.351422 +2823.361812 +2823.362478 +2823.365608 +2823.379627 +2823.389717 +2823.400939 +2823.414792 +2823.427113 +2823.439867 +2823.452255 +2823.456317 +2823.468905 +2823.479061 +2823.481259 +2823.504602 +2823.532641 +2823.543130 +2823.554552 +2823.566341 +2823.600806 +2823.607566 +2823.621552 +2823.623650 +2823.635238 +2823.648092 +2823.663244 +2823.675132 +2823.699507 +2823.727646 +2823.735638 +2823.747393 +2823.758648 +2823.769737 +2823.781925 +2823.787319 +2823.821518 +2823.833440 +2823.845594 +2823.858681 +2823.863177 +2823.873333 +2823.887253 +2823.898675 +2823.911595 +2823.925914 +2823.938901 +2823.951588 +2823.964509 +2823.978262 +2824.015291 +2824.028245 +2824.052454 +2824.061778 +2824.074332 +2824.081891 +2824.094512 +2824.109863 +2824.122284 +2824.149790 +2824.158548 +2824.174732 +2824.183423 +2824.210263 +2824.222484 +2824.237768 +2824.279060 +2824.329377 +2824.372400 +2824.419387 +2824.433173 +2824.486786 +2824.491847 +2824.518321 +2824.555883 +2824.595044 +2824.639699 +2824.664841 +2824.768437 +2824.782590 +2824.811095 +2824.823848 +2824.882090 +2824.908597 +2824.935903 +2824.994344 +2825.050089 +2825.137035 +2825.152253 +2825.330375 +2825.357647 +2825.372433 +2825.556715 +2825.692712 +2825.706465 +2825.723348 +2825.737967 +2825.752319 +2825.767604 +2825.782089 +2825.797441 +2825.841163 +2825.885619 +2825.931107 +2826.173298 +2826.619917 +2826.650120 +2826.666071 +2829.552548 +2829.635832 +2830.671362 +2830.708525 +2830.997136 +2831.031368 +2831.089177 +2831.172061 +2831.258874 +2831.277555 +2831.461737 +2831.906792 +2831.915849 +2831.975789 +2831.977954 +2832.071560 +2832.102529 +2832.293438 +2832.298500 +2832.387011 +2832.504294 +2832.646118 +2832.687144 +2832.705725 +2833.372824 +2833.388342 +2833.425638 +2833.466697 +2833.520410 +2833.527103 +2833.558006 +2833.575188 +2833.609021 +2833.645052 +2833.699397 +2833.748515 +2833.788808 +2833.804625 +2834.152810 +2834.221908 +2834.777285 +2834.782313 +2835.066895 +2835.110818 +2835.147215 +2835.185310 +2835.205889 +2835.213115 +2835.232596 +2835.250212 +2835.258736 +2835.260435 +2835.266362 +2835.302260 +2835.320541 +2835.329299 +2835.389705 +2835.443518 +2835.458004 +2835.887374 +2836.079182 +2836.082412 +2836.145582 +2836.148979 +2836.191902 +2836.215712 +2836.229798 +2836.248379 +2836.791868 +2836.831729 +2836.834459 +2836.845148 +2836.887173 +2837.111282 +2837.152308 +2837.191468 +2837.202391 +2837.219807 +2837.350975 +2837.887538 +2838.197794 +2838.255936 +2838.665127 +2838.887737 +2839.078513 +2839.083841 +2839.144014 +2839.161463 +2839.173118 +2839.176082 +2839.197061 +2839.887670 +2840.034922 +2840.072385 +2840.072551 +2840.091565 +2840.101622 +2840.127130 +2840.143680 +2840.161196 +2840.225298 +2841.168920 +2841.266223 +2841.288800 +2842.250937 +2843.796057 +2843.837849 +2844.573146 +2844.664888 +2844.674977 +2844.724461 +2844.741444 +2844.758727 +2844.778341 +2844.788963 +2844.819366 +2844.986033 +2844.991627 +2845.086432 +2845.092027 +2845.186965 +2845.189030 +2845.195590 +2845.287031 +2845.291094 +2845.293925 +2845.296489 +2845.387264 +2845.388696 +2845.391960 +2845.487231 +2845.488596 +2845.493858 +2845.587364 +2845.589296 +2845.595256 +2845.687331 +2845.689562 +2845.695722 +2845.787364 +2845.795056 +2845.887497 +2845.895422 +2845.995356 +2846.087397 +2846.091859 +2846.187497 +2846.189828 +2846.191826 +2846.194690 +2846.287563 +2846.289461 +2846.294323 +2846.387430 +2846.388995 +2846.394589 +2846.487563 +2846.489628 +2846.494356 +2846.587496 +2846.589827 +2846.592058 +2846.593823 +2846.687496 +2846.688928 +2846.693923 +2846.787596 +2846.793856 +2846.887496 +2846.890526 +2846.894323 +2846.987696 +2846.994189 +2847.087496 +2847.089494 +2847.091692 +2847.187429 +2847.193357 +2847.195488 +2847.287529 +2847.289061 +2847.294222 +2847.387496 +2847.391192 +2847.393556 +2847.396220 +2847.487595 +2847.488961 +2847.493656 +2847.496087 +2847.587629 +2847.593190 +2847.593423 +2847.595787 +2847.687562 +2847.689626 +2847.691957 +2847.693656 +2847.695654 +2847.787528 +2847.789193 +2847.791225 +2847.793789 +2847.796120 +2847.887628 +2847.889160 +2847.893456 +2847.895654 +2847.987595 +2847.989127 +2847.991291 +2847.995787 +2848.091291 +2848.097052 +2848.187528 +2848.189659 +2848.193422 +2848.195453 +2848.288893 +2848.293322 +2848.295487 +2848.298017 +2848.387594 +2848.388926 +2848.391191 +2848.395553 +2848.487494 +2848.491957 +2848.493555 +2848.495586 +2848.587661 +2848.589226 +2848.591390 +2848.593355 +2848.595386 +2848.687594 +2848.691290 +2848.695686 +2848.787694 +2848.789359 +2848.795320 +2848.797451 +2848.887394 +2848.895020 +2848.897617 +2848.987727 +2848.989658 +2848.991723 +2848.993588 +2848.995253 +2849.087427 +2849.088992 +2849.091590 +2849.093188 +2849.095386 +2849.187527 +2849.193088 +2849.195020 +2849.197351 +2849.287494 +2849.291356 +2849.295253 +2849.387494 +2849.389192 +2849.391356 +2849.393121 +2849.395019 +2849.399615 +2849.488892 +2849.491323 +2849.493254 +2849.494886 +2849.587493 +2849.593288 +2849.595052 +2849.597716 +2849.687593 +2849.694486 +2849.696584 +2849.787626 +2849.794686 +2849.797616 +2849.887693 +2849.889325 +2849.893087 +2849.895019 +2849.897683 +2852.059053 +2852.209069 +2852.237374 +2852.248663 +2852.260185 +2852.328250 +2854.395580 +2854.449560 +2854.479297 +2854.485724 +2855.037771 +2855.048494 +2855.082992 +2855.103705 +2855.136505 +2855.159083 +2855.194814 +2855.204904 +2855.239402 +2855.253255 +2855.334574 +2855.345596 +2855.355520 +2855.366642 +2855.379429 +2855.393149 +2855.428247 +2855.439702 +2855.450058 +2855.472003 +2855.483858 +2855.507900 +2855.516425 +2855.527647 +2855.553921 +2855.575766 +2855.590484 +2855.602139 +2855.621820 +2855.657284 +2855.668306 +2855.680261 +2855.699575 +2855.711796 +2855.723485 +2855.732309 +2855.743398 +2855.745063 +2855.765676 +2855.775599 +2855.789219 +2855.801440 +2855.824417 +2855.826015 +2855.843564 +2855.887254 +2855.905802 +2855.921686 +2855.934140 +2855.946295 +2855.967673 +2855.977996 +2855.985722 +2855.997976 +2856.022385 +2856.033541 +2856.043831 +2856.057750 +2856.071037 +2856.081892 +2856.093747 +2856.105702 +2856.108433 +2856.117823 +2856.132175 +2856.158482 +2856.173767 +2856.183824 +2856.198576 +2856.209798 +2856.211996 +2856.222851 +2856.226747 +2856.248992 +2856.260514 +2856.273734 +2856.283857 +2856.296911 +2856.309498 +2856.312062 +2856.323684 +2856.336038 +2856.339934 +2856.349391 +2856.376264 +2856.380660 +2856.416657 +2856.429678 +2856.459881 +2856.482125 +2856.491582 +2856.507733 +2856.526081 +2856.537203 +2856.552322 +2856.562678 +2856.574732 +2856.577163 +2856.587353 +2856.591582 +2856.601572 +2856.614126 +2856.616291 +2856.627380 +2856.640000 +2856.666174 +2856.692748 +2856.698375 +2856.706068 +2856.718588 +2856.746361 +2856.771635 +2856.785621 +2856.798841 +2856.812528 +2856.825215 +2856.839401 +2856.852321 +2856.887086 +2856.907399 +2856.919720 +2856.947359 +2856.961112 +2857.013959 +2857.025714 +2857.065874 +2857.079227 +2857.105801 +2857.117656 +2857.131875 +2857.146027 +2857.174132 +2857.187919 +2857.211495 +2857.229477 +2857.239001 +2857.251955 +2857.261112 +2857.290816 +2857.304036 +2857.317689 +2857.330709 +2857.356483 +2857.386253 +2857.418654 +2857.443529 +2857.472001 +2857.485221 +2857.498508 +2857.512927 +2857.528012 +2857.541565 +2857.555051 +2857.568305 +2857.583323 +2857.596909 +2857.610196 +2857.625214 +2857.639034 +2857.654385 +2857.668737 +2857.681791 +2857.711628 +2857.753519 +2857.925414 +2857.947991 +2857.961578 +2857.976296 +2857.990582 +2858.114025 +2858.175530 +2858.239166 +2858.266273 +2858.279526 +2858.294711 +2858.309796 +2858.324048 +2858.326712 +2858.338467 +2858.352819 +2858.367005 +2858.381657 +2858.396409 +2858.409329 +2858.423582 +2858.438733 +2858.452153 +2858.467271 +2858.481624 +2858.495876 +2858.511227 +2858.525846 +2858.539399 +2858.554484 +2858.568337 +2858.582722 +2858.718586 +2858.733605 +2858.747657 +2858.763075 +2858.776728 +2858.917687 +2858.931607 +2858.946225 +2858.960411 +2858.975063 +2858.987451 +2859.003568 +2859.018986 +2859.033205 +2859.047191 +2859.089881 +2859.105033 +2859.120085 +2859.134970 +2859.149655 +2859.164473 +2859.179658 +2859.195176 +2859.210228 +2859.239831 +2859.253684 +2859.282622 +2859.297973 +2859.312892 +2859.329308 +2859.342895 +2859.356748 +2859.371932 +2859.373764 +2859.386318 +2859.401869 +2859.417387 +2859.430574 +2859.445359 +2859.460744 +2859.475096 +2859.476994 +2859.490714 +2859.506498 +2859.520783 +2859.535902 +2859.552652 +2859.564007 +2859.609694 +2859.625212 +2859.654017 +2859.743094 +2859.758179 +2859.787050 +2859.788915 +2859.830473 +2859.845991 +2859.860677 +2859.875129 +2859.877293 +2866.518878 +2872.232959 +2872.266525 +2872.888336 +2873.890466 +2874.158831 +2874.281042 +2874.889533 +2875.205483 +2875.237318 +2877.525960 +2877.538881 +2878.228157 +2878.321930 +2878.596122 +2879.988462 +2879.989960 +2880.189228 +2880.189694 +2880.192391 +2880.289427 +2880.296087 +2880.389960 +2880.392824 +2880.589960 +2880.689993 +2880.790126 +2880.792157 +2880.892191 +2880.990026 +2880.994488 +2881.089993 +2881.091791 +2881.098517 +2881.190226 +2881.290259 +2881.390259 +2881.392024 +2881.492357 +2881.589992 +2881.592123 +2881.690258 +2881.692190 +2881.890158 +2881.892123 +2881.897584 +2881.990058 +2881.997651 +2882.090258 +2882.098849 +2882.190291 +2882.193155 +2882.290358 +2882.291024 +2882.390291 +2882.490391 +2882.492222 +2882.590258 +2882.596651 +2882.690291 +2882.697583 +2882.790457 +2882.792722 +2882.797583 +2882.890390 +2882.892322 +2882.898016 +2882.990324 +2882.991922 +2882.998516 +2883.090523 +2883.096584 +2883.190423 +2883.192488 +2883.194886 +2883.196551 +2883.290257 +2883.390190 +2883.391888 +2883.396550 +2883.490190 +2883.492654 +2883.590523 +2883.592654 +2883.595784 +2883.597083 +2883.690423 +2883.696550 +2883.790223 +2883.792221 +2883.890456 +2883.896583 +2883.990556 +2883.993053 +2884.090656 +2884.097316 +2884.190589 +2884.196516 +2884.290489 +2884.293086 +2884.296483 +2884.300412 +2884.395084 +2884.396350 +2884.399147 +2884.490622 +2884.496449 +2884.498681 +2884.590555 +2884.592853 +2884.596583 +2884.598880 +2884.690555 +2884.699113 +2884.790655 +2884.792087 +2884.794817 +2884.796582 +2884.799812 +2884.890622 +2884.892853 +2884.896882 +2884.899246 +2886.717859 +2889.152023 +2889.214660 +2889.230544 +2889.292981 +2889.360381 +2890.046194 +2890.133374 +2890.155618 +2890.168072 +2890.214925 +2890.225948 +2890.282591 +2890.307166 +2890.331608 +2890.344496 +2890.501572 +2890.525781 +2890.537569 +2890.549990 +2890.551289 +2890.562944 +2890.577762 +2890.661978 +2890.673200 +2890.684788 +2890.686453 +2890.699041 +2890.722750 +2890.755784 +2890.767905 +2890.780093 +2890.792913 +2890.828744 +2890.875930 +2890.898674 +2890.912594 +2890.946693 +2890.967705 +2890.980992 +2890.992314 +2891.013093 +2891.027012 +2891.040133 +2891.052653 +2891.064908 +2891.066340 +2891.079027 +2891.090782 +2891.101904 +2891.126213 +2891.134638 +2891.154218 +2891.156316 +2891.167272 +2891.179726 +2891.182756 +2891.193612 +2891.215890 +2891.227778 +2891.231075 +2891.240565 +2891.243196 +2891.254884 +2891.268004 +2891.287152 +2891.295577 +2891.300206 +2891.305167 +2891.318487 +2891.330142 +2891.346393 +2891.352453 +2891.363542 +2891.365840 +2891.375963 +2891.386386 +2891.399073 +2891.402936 +2891.412693 +2891.415557 +2891.425547 +2891.437568 +2891.451288 +2891.463975 +2891.478227 +2891.490848 +2891.502070 +2891.506099 +2891.513892 +2891.535503 +2891.551487 +2891.561944 +2891.574897 +2891.576529 +2891.588683 +2891.624314 +2891.629309 +2891.634704 +2891.664574 +2891.674098 +2891.677228 +2891.686852 +2891.700738 +2891.703702 +2891.714391 +2891.727511 +2891.741730 +2891.753585 +2891.762909 +2891.775763 +2891.789116 +2891.816855 +2891.819353 +2891.831107 +2891.844161 +2891.857981 +2891.870135 +2891.885220 +2891.898040 +2891.912193 +2891.938866 +2891.951953 +2891.966305 +2891.981490 +2891.993012 +2892.006399 +2892.019852 +2892.047191 +2892.061244 +2892.075063 +2892.089182 +2892.089848 +2892.102003 +2892.114391 +2892.127611 +2892.142196 +2892.155549 +2892.182822 +2892.195709 +2892.208197 +2892.231207 +2892.272266 +2892.316089 +2892.367604 +2892.420085 +2892.423215 +2892.458380 +2892.473698 +2892.514090 +2892.527244 +2892.565073 +2892.641496 +2892.665972 +2892.763874 +2892.777094 +2892.791546 +2892.804300 +2892.818719 +2892.833271 +2892.847157 +2892.861243 +2892.876061 +2892.904566 +2892.933304 +2892.947290 +2892.959844 +2893.001602 +2893.015755 +2893.168402 +2893.323181 +2893.340164 +2893.390680 +2893.405065 +2893.446357 +2893.527776 +2893.569534 +2893.583254 +2893.597539 +2893.612891 +2893.626577 +2893.695941 +2893.711758 +2893.723946 +2893.738565 +2893.753150 +2893.767736 +2893.811991 +2893.824679 +2893.838531 +2893.853616 +2893.867369 +2893.882554 +2893.896340 +2893.911791 +2893.925245 +2893.982754 +2894.011492 +2894.025711 +2894.068501 +2894.369167 +2894.484618 +2894.498737 +2894.515454 +2894.759077 +2894.776359 +2894.789879 +2894.792443 +2894.806096 +2894.821547 +2894.838097 +2894.853748 +2894.868267 +2894.883119 +2895.920514 +2899.925205 +2903.542484 +2903.572987 +2903.607519 +2903.703856 +2903.939054 +2903.962331 +2904.286406 +2905.118773 +2905.550741 +2905.598160 +2905.606252 +2906.892997 +2907.063427 +2907.093097 +2907.415274 +2907.486603 +2908.146676 +2908.173549 +2908.826895 +2908.889432 +2909.257330 +2909.893294 +2910.224929 +2911.776808 +2913.096554 +2913.203347 +2913.290593 +2913.308375 +2913.496487 +2913.556660 +2913.606577 +2913.632751 +2913.701782 +2913.730220 +2913.884332 +2914.992256 +2914.993822 +2915.092656 +2915.094388 +2915.192956 +2915.194188 +2915.293222 +2915.296052 +2915.393322 +2915.394754 +2915.493455 +2915.495386 +2915.593488 +2915.693488 +2915.793654 +2915.893621 +2915.993621 +2916.097783 +2916.193687 +2916.293654 +2916.298249 +2916.393587 +2916.395618 +2916.401080 +2916.493487 +2916.495085 +2916.501446 +2916.593787 +2916.595918 +2916.693620 +2916.799880 +2916.895684 +2916.993720 +2916.995285 +2917.000779 +2917.093819 +2917.100546 +2917.193653 +2917.198381 +2917.201179 +2917.293753 +2917.295484 +2917.297482 +2917.299813 +2917.393686 +2917.397615 +2917.399946 +2917.493519 +2917.495484 +2917.500745 +2917.593719 +2917.595451 +2917.600113 +2917.693819 +2917.694352 +2917.696050 +2917.699979 +2917.793819 +2917.795384 +2917.893586 +2917.993552 +2917.995550 +2917.999713 +2918.093685 +2918.095883 +2918.099513 +2918.102110 +2918.193352 +2918.197248 +2918.199146 +2918.201377 +2918.293519 +2918.299413 +2918.301977 +2918.393618 +2918.397481 +2918.399213 +2918.401111 +2918.493585 +2918.501710 +2918.593518 +2918.599679 +2918.601544 +2918.693751 +2918.699612 +2918.701843 +2918.793751 +2918.799212 +2918.801177 +2918.893385 +2918.897381 +2918.899412 +2918.901876 +2918.993651 +2919.001210 +2919.093751 +2919.099345 +2919.101543 +2919.193651 +2919.199212 +2919.201576 +2919.297047 +2919.299045 +2919.393384 +2919.397247 +2919.399045 +2919.401010 +2919.493551 +2919.495882 +2919.500610 +2919.593451 +2919.597180 +2919.598978 +2919.601010 +2919.603307 +2919.693584 +2919.695249 +2919.700943 +2919.703008 +2919.793617 +2919.795482 +2919.799078 +2919.800843 +2919.803474 +2919.893517 +2919.897713 +2919.901675 +2919.903973 +2921.082793 +2921.749159 +2924.821950 +2924.860445 +2924.893345 +2925.016655 +2925.069369 +2925.102736 +2925.198873 +2925.209063 +2925.253518 +2925.315589 +2925.317354 +2925.327677 +2925.338633 +2925.352619 +2925.388849 +2925.390748 +2925.462775 +2925.498839 +2925.552119 +2925.587317 +2925.637600 +2925.648889 +2925.650587 +2925.664340 +2925.708629 +2925.718087 +2925.728576 +2925.741030 +2925.742629 +2925.755183 +2925.775762 +2925.786818 +2925.798972 +2925.807430 +2925.809562 +2925.834503 +2925.842795 +2925.855216 +2925.867337 +2925.883854 +2925.893444 +2925.905566 +2925.919618 +2925.931306 +2925.942462 +2925.944560 +2925.955249 +2925.957547 +2925.967737 +2925.979791 +2925.981856 +2925.994510 +2926.008463 +2926.020451 +2926.029675 +2926.039498 +2926.051286 +2926.064373 +2926.077194 +2926.089448 +2926.114357 +2926.128442 +2926.139398 +2926.142895 +2926.152518 +2926.164440 +2926.165239 +2926.191180 +2926.203634 +2926.213124 +2926.235269 +2926.260244 +2926.264207 +2926.274396 +2926.284853 +2926.295642 +2926.313124 +2926.315822 +2926.329008 +2926.335968 +2926.345059 +2926.356181 +2926.370034 +2926.380923 +2926.393977 +2926.407463 +2926.419285 +2926.447523 +2926.457080 +2926.469301 +2926.482655 +2926.495775 +2926.508096 +2926.519218 +2926.522781 +2926.532671 +2926.544326 +2926.557546 +2926.559211 +2926.571432 +2926.576727 +2926.584319 +2926.598006 +2926.610693 +2926.622415 +2926.626943 +2926.646224 +2926.672032 +2926.685585 +2926.700603 +2926.720816 +2926.753284 +2926.765738 +2926.779424 +2926.792378 +2926.805931 +2926.817653 +2926.831439 +2926.842694 +2926.856214 +2926.868935 +2926.882887 +2926.895375 +2926.907696 +2926.935002 +2926.947989 +2926.960909 +2926.973863 +2926.986850 +2926.999804 +2927.026577 +2927.078325 +2927.093610 +2927.130439 +2927.145458 +2927.158378 +2927.184885 +2927.197572 +2927.211925 +2927.238731 +2927.252484 +2927.267502 +2927.278758 +2927.292943 +2927.345791 +2927.373663 +2927.400602 +2927.411858 +2927.425644 +2927.438797 +2927.482687 +2927.660609 +2927.674561 +2927.688781 +2927.702700 +2927.718651 +2927.731238 +2927.783519 +2927.797405 +2927.810492 +2927.840662 +2928.011990 +2928.023179 +2928.037298 +2928.052450 +2928.093642 +2928.283818 +2928.299303 +2928.379423 +2928.393508 +2928.409026 +2928.423478 +2928.437631 +2928.647354 +2928.798103 +2928.826608 +2929.065569 +2929.444523 +2929.592142 +2929.634067 +2929.741626 +2929.804829 +2940.894961 +2941.894860 +2943.895524 +2944.894358 +2949.124124 +2949.893887 +2950.092721 +2950.193020 +2950.293120 +2950.294752 +2950.395052 +2950.493420 +2950.495018 +2950.593686 +2950.693586 +2950.793686 +2950.795684 +2950.895118 +2950.993486 +2950.995584 +2951.093586 +2951.094185 +2951.095584 +2951.193819 +2951.195350 +2951.293752 +2951.296516 +2951.393685 +2951.399047 +2951.493685 +2951.495650 +2951.593685 +2951.596282 +2951.693718 +2951.695250 +2951.698081 +2951.795749 +2951.895416 +2951.993718 +2951.998613 +2952.001677 +2952.093618 +2952.095849 +2952.193618 +2952.195150 +2952.293784 +2952.295749 +2952.298246 +2952.393684 +2952.493584 +2952.595948 +2952.598612 +2952.601410 +2952.693418 +2952.695482 +2952.701609 +2952.793651 +2952.795848 +2952.801076 +2952.895349 +2952.898046 +2952.993617 +2953.093650 +2953.095548 +2953.193617 +2953.293517 +2953.295248 +2953.393550 +2953.399944 +2953.493450 +2953.495115 +2953.593417 +2953.595148 +2953.597612 +2953.693583 +2953.697646 +2953.793650 +2953.893649 +2953.900309 +2953.993649 +2953.995714 +2954.000443 +2954.093516 +2954.095181 +2954.100909 +2954.193483 +2954.195381 +2954.197445 +2954.200309 +2954.293349 +2954.300209 +2954.393449 +2954.394814 +2954.397112 +2954.399476 +2954.493616 +2954.597179 +2954.599776 +2954.602640 +2954.693416 +2954.695380 +2954.697212 +2954.699876 +2954.793415 +2954.794914 +2954.797978 +2954.799709 +2954.893482 +2954.895014 +2954.897078 +2959.893810 +2959.911792 +2959.935402 +2960.006930 +2960.090313 +2960.102967 +2960.116254 +2960.181955 +2960.195142 +2960.262175 +2960.273130 +2960.296640 +2960.330073 +2960.349221 +2960.374529 +2960.388781 +2960.432471 +2960.442661 +2960.452784 +2960.464872 +2960.472930 +2960.493177 +2960.517086 +2960.528808 +2960.540796 +2960.551818 +2960.565871 +2960.573696 +2960.585318 +2960.587649 +2960.598538 +2960.612391 +2960.634335 +2960.659344 +2960.671698 +2960.684918 +2960.709460 +2960.716919 +2960.729107 +2960.742261 +2960.763639 +2960.789147 +2960.799870 +2960.811824 +2960.824412 +2960.837266 +2960.848787 +2960.860442 +2960.873196 +2960.876193 +2960.885817 +2960.898071 +2960.921681 +2960.933736 +2960.939297 +2960.947189 +2960.958444 +2960.962074 +2960.972097 +2960.981987 +2961.010625 +2961.022913 +2961.034934 +2961.047888 +2961.060942 +2961.071897 +2961.081987 +2961.083253 +2961.096373 +2961.106496 +2961.108394 +2961.117985 +2961.120382 +2961.128607 +2961.141827 +2961.153449 +2961.163972 +2961.173895 +2961.184351 +2961.196273 +2961.207861 +2961.220149 +2961.232670 +2961.245490 +2961.258877 +2961.271764 +2961.283053 +2961.308893 +2961.333469 +2961.358211 +2961.369699 +2961.382020 +2961.395540 +2961.408194 +2961.418883 +2961.431238 +2961.443259 +2961.455713 +2961.468867 +2961.508194 +2961.513855 +2961.537198 +2961.548620 +2961.589479 +2961.601867 +2961.616286 +2961.652383 +2961.664937 +2961.678024 +2961.719050 +2961.749419 +2961.805263 +2961.813788 +2961.838896 +2961.926275 +2961.950551 +2962.024644 +2962.297770 +2962.309126 +2962.677723 +2962.691043 +2962.796638 +2963.051149 +2963.078122 +2963.090710 +2963.983849 +2964.316549 +2964.459640 +2964.473925 +2964.653013 +2964.683682 +2964.698933 +2973.223534 +2975.123232 +2975.142113 +2975.893794 +2976.098256 +2976.133021 +2976.142778 +2976.892827 +2977.073746 +2977.742577 +2977.805913 +2978.070682 +2978.113272 +2978.131254 +2978.892692 +2979.118932 +2979.144473 +2979.892358 +2980.112138 +2980.114402 +2984.864980 +2984.892753 +2984.991554 +2985.091953 +2985.093518 +2985.192319 +2985.194717 +2985.292486 +2985.294084 +2985.395150 +2985.397114 +2985.492719 +2985.494484 +2985.496848 +2985.592719 +2985.593318 +2985.594583 +2985.692652 +2985.694883 +2985.792785 +2985.892685 +2985.992818 +2985.994816 +2986.092885 +2986.094816 +2986.192818 +2986.292785 +2986.297447 +2986.392718 +2986.394649 +2986.401676 +2986.492818 +2986.494383 +2986.592651 +2986.594749 +2986.692751 +2986.695015 +2986.792817 +2986.794682 +2986.801609 +2986.892717 +2986.897113 +2986.992751 +2986.995115 +2987.092651 +2987.097013 +2987.100143 +2987.292684 +2987.295314 +2987.301175 +2987.392917 +2987.393449 +2987.496879 +2987.592683 +2987.594282 +2987.597179 +2987.600242 +2987.692583 +2987.696946 +2987.792716 +2987.796979 +2987.800442 +2987.892783 +2987.895014 +2987.897445 +2987.899776 +2987.994115 +2988.092616 +2988.094248 +2988.192749 +2988.200075 +2988.292749 +2988.294181 +2988.302240 +2988.392649 +2988.399109 +2988.492616 +2988.494214 +2988.495047 +2988.592782 +2988.594714 +2988.596812 +2988.599043 +2988.696379 +2988.792715 +2988.794447 +2988.797044 +2988.798843 +2988.892749 +2988.897044 +2988.901407 +2988.992682 +2988.999575 +2989.092782 +2989.094214 +2989.192582 +2989.194214 +2989.197310 +2989.198975 +2989.292615 +2989.392748 +2989.394846 +2989.398609 +2989.400540 +2989.492648 +2989.499108 +2989.592515 +2989.594180 +2989.598609 +2989.601140 +2989.692715 +2989.694380 +2989.700707 +2989.792648 +2989.794146 +2989.798575 +2989.800740 +2989.892714 +2989.895012 +2989.900973 +2993.661808 +2994.890878 +2994.892809 +2994.901101 +2994.902300 +2994.958344 +2995.027108 +2995.080022 +2995.193941 +2995.267834 +2995.280388 +2995.289612 +2995.303765 +2995.344890 +2995.381087 +2995.392209 +2995.429439 +2995.485816 +2995.496305 +2995.510424 +2995.521880 +2995.532069 +2995.570631 +2995.606328 +2995.618316 +2995.629472 +2995.641427 +2995.669598 +2995.680687 +2995.711357 +2995.728606 +2995.740527 +2995.753181 +2995.762172 +2995.772296 +2995.774127 +2995.785616 +2995.798236 +2995.809791 +2995.813388 +2995.822445 +2995.850750 +2995.876058 +2995.883851 +2995.895272 +2995.908493 +2995.920747 +2995.934999 +2995.940727 +2995.952282 +2995.954580 +2995.964536 +2995.976025 +2995.987580 +2995.990943 +2995.999035 +2996.010624 +2996.023144 +2996.035632 +2996.048053 +2996.057510 +2996.069065 +2996.080121 +2996.091643 +2996.094406 +2996.105395 +2996.118149 +2996.131003 +2996.142791 +2996.147220 +2996.154879 +2996.170663 +2996.180487 +2996.193574 +2996.206994 +2996.218249 +2996.228106 +2996.246354 +2996.258975 +2996.270297 +2996.282818 +2996.292908 +2996.303497 +2996.316817 +2996.329671 +2996.353614 +2996.366334 +2996.378988 +2996.391276 +2996.404163 +2996.428139 +2996.440593 +2996.453747 +2996.466567 +2996.478788 +2996.492508 +2996.518382 +2996.531302 +2996.557276 +2996.569597 +2996.581685 +2996.595705 +2996.607793 +2996.620447 +2996.633200 +2996.646088 +2996.658575 +2996.708492 +2996.721778 +2996.733800 +2996.744156 +2996.757742 +2996.809724 +2996.821712 +2996.889544 +2996.903830 +2996.917483 +2996.982784 +2997.036896 +2997.058708 +2997.110389 +2997.210822 +2997.237329 +2997.250483 +2997.303696 +2997.453712 +2997.467965 +2997.495138 +2997.614218 +2997.625640 +2997.652513 +2997.680918 +2997.801964 +2997.842024 +2997.856576 +2997.911787 +2997.926239 +2997.980851 +2998.007691 +2998.504394 +2998.547917 +2998.575689 +2998.619212 +2998.874324 +2999.223907 +2999.248016 +2999.667463 +2999.697600 +3001.887574 +3001.969492 +3001.992736 +3002.303824 +3002.320807 +3002.841153 +3002.869058 +3002.890404 +3002.898496 +3003.569224 +3005.870854 +3005.883774 +3005.901989 +3009.890830 +3011.891627 +3012.891326 +3013.891591 +3014.891324 +3019.135875 +3019.990786 +3020.091152 +3020.292018 +3020.293350 +3020.393383 +3020.491818 +3020.592384 +3020.692151 +3020.792350 +3020.892484 +3020.894348 +3020.994315 +3020.997212 +3021.092383 +3021.094348 +3021.192217 +3021.292583 +3021.294115 +3021.392683 +3021.394614 +3021.492683 +3021.592616 +3021.595213 +3021.792649 +3021.796945 +3021.892416 +3021.893914 +3021.992482 +3021.994414 +3022.092549 +3022.094480 +3022.192516 +3022.292615 +3022.392649 +3022.396811 +3022.492582 +3022.493914 +3022.592682 +3022.692682 +3022.697144 +3022.794380 +3022.892482 +3022.895345 +3022.992681 +3023.092415 +3023.094979 +3023.097443 +3023.194612 +3023.196910 +3023.292648 +3023.300673 +3023.392481 +3023.394113 +3023.492814 +3023.592581 +3023.594146 +3023.692747 +3023.694379 +3023.792614 +3023.797043 +3023.892680 +3023.992647 +3023.995244 +3023.997309 +3024.000739 +3024.092614 +3024.094945 +3024.099407 +3024.192647 +3024.193213 +3024.194112 +3024.199640 +3024.292580 +3024.294079 +3024.392647 +3024.394078 +3024.396509 +3024.400106 +3024.492513 +3024.499673 +3024.592613 +3024.593279 +3024.594611 +3024.596875 +3024.599107 +3024.692680 +3024.699906 +3024.792346 +3024.793945 +3024.797308 +3024.799140 +3024.892446 +3024.899106 +3025.826911 +3025.848789 +3025.859412 +3025.878559 +3025.983721 +3026.029941 +3027.042994 +3027.049987 +3027.061908 +3027.101701 +3028.195007 +3028.205663 +3028.230505 +3028.250019 +3028.289912 +3028.355180 +3028.402932 +3028.409992 +3028.437065 +3028.465037 +3028.474627 +3028.502433 +3028.538763 +3028.547121 +3028.565636 +3028.569832 +3029.438795 +3029.441193 +3029.463404 +3029.470597 +3029.500267 +3029.509991 +3029.531802 +3029.532601 +3029.546721 +3029.569764 +3029.576791 +3029.584816 +3029.588812 +3029.616984 +3029.623610 +3029.644356 +3029.661073 +3029.677590 +3029.708226 +3029.727440 +3029.736697 +3029.751449 +3029.900899 +3030.162937 +3030.221578 +3030.236264 +3030.343789 +3030.354412 +3030.413620 +3030.415584 +3030.417116 +3030.507526 +3030.519147 +3030.531368 +3030.555511 +3030.556976 +3030.567765 +3030.569364 +3030.579220 +3030.594205 +3030.608857 +3030.639693 +3030.649583 +3030.653413 +3030.663636 +3030.685081 +3030.720479 +3030.722277 +3030.732467 +3030.743656 +3030.754845 +3030.768731 +3030.782317 +3030.795271 +3030.809390 +3030.823409 +3030.835397 +3030.846353 +3030.849850 +3030.859440 +3030.871261 +3030.882317 +3030.893672 +3030.904328 +3030.928338 +3030.930469 +3030.939826 +3030.950282 +3030.964901 +3030.966499 +3030.978221 +3030.986446 +3030.988977 +3030.999566 +3031.011954 +3031.035597 +3031.049050 +3031.061971 +3031.074558 +3031.086912 +3031.088910 +3031.098767 +3031.110955 +3031.124242 +3031.135863 +3031.163236 +3031.174158 +3031.187944 +3031.200665 +3031.217848 +3031.228504 +3031.237362 +3031.244455 +3031.256143 +3031.269196 +3031.279186 +3031.302363 +3031.305527 +3031.328837 +3031.339659 +3031.355577 +3031.365100 +3031.377455 +3031.380985 +3031.389942 +3031.402829 +3031.414384 +3031.426273 +3031.429503 +3031.438993 +3031.452380 +3031.465900 +3031.477821 +3031.505993 +3031.528637 +3031.551481 +3031.561670 +3031.574724 +3031.579885 +3031.592506 +3031.607591 +3031.614751 +3031.652979 +3031.666199 +3031.679452 +3031.693139 +3031.705426 +3031.716449 +3031.756176 +3031.781117 +3031.794804 +3031.806692 +3031.819912 +3031.847751 +3031.861603 +3031.874291 +3031.899565 +3031.924840 +3031.938094 +3031.951314 +3031.964967 +3031.991274 +3032.018280 +3032.113485 +3032.126039 +3032.139159 +3032.156009 +3032.202928 +3032.214384 +3032.227837 +3032.242222 +3032.256242 +3032.271094 +3032.297434 +3032.334497 +3032.361603 +3032.375522 +3032.441023 +3032.454244 +3032.471992 +3032.481316 +3032.495802 +3032.509555 +3032.536861 +3032.563268 +3032.577820 +3032.591872 +3032.619545 +3032.646518 +3032.674223 +3032.688609 +3032.757207 +3032.998399 +3033.013684 +3033.027969 +3033.042088 +3033.056407 +3033.086178 +3033.099098 +3033.127669 +3033.141722 +3033.199964 +3033.214982 +3033.229001 +3033.258439 +3033.272391 +3033.285811 +3033.300530 +3033.314549 +3033.330633 +3033.344086 +3033.358838 +3033.389141 +3033.403327 +3033.431832 +3033.460570 +3033.474922 +3033.490506 +3033.504392 +3033.533363 +3033.547882 +3033.563034 +3033.577852 +3033.592438 +3033.622108 +3033.637759 +3033.665431 +3033.709820 +3033.738858 +3033.754542 +3033.783879 +3033.798265 +3033.857439 +3033.885677 +3033.916213 +3033.930965 +3033.946183 +3033.962467 +3033.977485 +3033.991838 +3034.022773 +3034.037858 +3034.053976 +3034.084012 +3034.098464 +3034.143852 +3034.173356 +3034.203726 +3034.437991 +3034.647315 +3034.662533 +3034.677751 +3034.844384 +3037.044882 +3037.307219 +3038.661663 +3038.684407 +3038.753305 +3038.823235 +3038.874850 +3040.693163 +3041.438384 +3041.544677 +3041.602220 +3042.236119 +3042.385169 +3042.415439 +3042.449139 +3042.612808 +3042.629092 +3042.712442 +3044.892293 +3045.892092 +3046.891825 +3046.894789 +3047.892523 +3048.891923 +3049.892188 +3050.378501 +3054.891950 +3054.991384 +3054.993049 +3055.192416 +3055.193715 +3055.392915 +3055.493115 +3055.494980 +3055.593082 +3055.693181 +3055.793248 +3055.893281 +3055.896644 +3055.993514 +3055.996178 +3056.093281 +3056.093880 +3056.095512 +3056.193247 +3056.196178 +3056.293314 +3056.295379 +3056.393414 +3056.493314 +3056.494846 +3056.593347 +3056.595878 +3056.793280 +3056.795478 +3056.893447 +3056.895744 +3056.993513 +3057.093413 +3057.193446 +3057.293479 +3057.393546 +3057.493379 +3057.502637 +3057.593279 +3057.595044 +3057.600206 +3057.693213 +3057.694878 +3057.793379 +3057.796043 +3057.800039 +3057.893312 +3057.894877 +3057.901105 +3057.993212 +3057.995244 +3058.000971 +3058.093412 +3058.097774 +3058.101304 +3058.194944 +3058.200505 +3058.293345 +3058.300771 +3058.393612 +3058.493478 +3058.498140 +3058.500838 +3058.593345 +3058.595276 +3058.600504 +3058.693611 +3058.695143 +3058.700071 +3058.793445 +3058.795110 +3058.800071 +3058.893078 +3058.895209 +3058.899405 +3058.993078 +3058.999905 +3059.002336 +3059.093378 +3059.096308 +3059.099871 +3059.102968 +3059.193278 +3059.195043 +3059.197840 +3059.200071 +3059.201969 +3059.293511 +3059.299904 +3059.393411 +3059.395575 +3059.397573 +3059.399904 +3059.493444 +3059.499937 +3059.502468 +3059.593444 +3059.594909 +3059.597906 +3059.599704 +3059.602135 +3059.693277 +3059.694776 +3059.699338 +3059.701735 +3059.795109 +3059.799637 +3059.801536 +3059.893377 +3059.899471 +3059.901635 +3064.313719 +3064.349383 +3064.367731 +3064.379686 +3064.425607 +3064.617615 +3064.625906 +3064.704628 +3064.718281 +3064.891441 +3064.893705 +3064.903195 +3065.054544 +3065.225673 +3065.308490 +3065.367431 +3065.380884 +3065.418879 +3065.430767 +3065.443888 +3065.455975 +3065.526238 +3065.568163 +3065.579851 +3065.593005 +3065.608689 +3065.642788 +3065.665266 +3065.677154 +3065.743488 +3065.756908 +3065.765799 +3065.779651 +3065.793538 +3065.803195 +3065.805292 +3065.818146 +3065.839392 +3065.841490 +3065.854510 +3065.874423 +3065.887077 +3065.900597 +3065.910687 +3065.936761 +3065.950247 +3065.964333 +3065.976654 +3065.988909 +3065.998566 +3066.011519 +3066.025372 +3066.028569 +3066.040624 +3066.061303 +3066.064300 +3066.072791 +3066.085845 +3066.096767 +3066.099931 +3066.110054 +3066.112219 +3066.123774 +3066.136827 +3066.150847 +3066.158539 +3066.170360 +3066.194669 +3066.198632 +3066.208289 +3066.212884 +3066.222508 +3066.233131 +3066.249082 +3066.251945 +3066.261802 +3066.265332 +3066.278219 +3066.289608 +3066.302262 +3066.306291 +3066.316547 +3066.329634 +3066.342921 +3066.346750 +3066.355342 +3066.368595 +3066.381549 +3066.386144 +3066.408688 +3066.416680 +3066.428002 +3066.436128 +3066.447949 +3066.457972 +3066.475688 +3066.486477 +3066.498232 +3066.511386 +3066.514449 +3066.525139 +3066.538625 +3066.541489 +3066.557773 +3066.565531 +3066.618678 +3066.621342 +3066.632298 +3066.645851 +3066.659437 +3066.671625 +3066.685778 +3066.713650 +3066.727003 +3066.742088 +3066.769028 +3066.782181 +3066.795535 +3066.810619 +3066.837459 +3066.865098 +3066.874755 +3066.887776 +3066.900696 +3066.916114 +3066.940057 +3066.965598 +3066.979484 +3067.008888 +3067.042188 +3067.151778 +3067.163866 +3067.191139 +3067.204958 +3067.218678 +3067.233097 +3067.247582 +3067.290972 +3067.330399 +3067.344552 +3067.359270 +3067.399696 +3067.428135 +3067.442354 +3067.470259 +3067.628601 +3067.642553 +3067.658571 +3067.672224 +3067.716846 +3067.729300 +3067.748148 +3067.891904 +3067.907055 +3067.976952 +3067.991637 +3068.006855 +3068.021840 +3068.233628 +3068.249046 +3068.366662 +3068.395766 +3068.424770 +3068.440488 +3068.454973 +3068.470791 +3068.485676 +3068.502393 +3068.516612 +3068.531131 +3068.619709 +3068.892902 +3068.907154 +3068.923271 +3068.938423 +3068.953741 +3068.969092 +3068.984843 +3069.000760 +3069.016378 +3069.031896 +3069.048146 +3069.064064 +3069.080614 +3069.096298 +3069.110817 +3069.126734 +3069.158469 +3069.174020 +3069.189671 +3069.205722 +3069.221373 +3069.238189 +3069.268592 +3069.285775 +3069.300327 +3069.315845 +3069.331629 +3069.348179 +3069.363564 +3069.485209 +3069.500960 +3069.532295 +3069.594333 +3069.609385 +3069.656238 +3069.672155 +3069.880646 +3073.644978 +3073.690333 +3074.456100 +3078.510941 +3078.527791 +3078.593558 +3078.650301 +3078.655696 +3078.674843 +3078.702549 +3078.756262 +3078.792659 +3078.817168 +3078.863554 +3078.896588 +3078.914037 +3079.017234 +3080.644272 +3080.794322 +3080.892157 +3081.892189 +3081.893888 +3082.892555 +3083.893686 +3084.538707 +3084.557355 +3086.290420 +3086.336008 +3086.396914 +3086.447796 +3086.622521 +3087.512364 +3088.028680 +3088.042933 +3089.891915 +3089.991649 +3090.092148 +3090.093780 +3090.292914 +3090.294479 +3090.393113 +3090.394812 +3090.397809 +3090.493346 +3090.593346 +3090.598541 +3090.693513 +3090.793246 +3090.893546 +3090.896077 +3090.993546 +3091.093446 +3091.193479 +3091.194145 +3091.195011 +3091.293579 +3091.295210 +3091.394178 +3091.395510 +3091.493612 +3091.495343 +3091.593412 +3091.598174 +3091.693445 +3091.696675 +3091.793478 +3091.893312 +3091.995509 +3092.093345 +3092.094777 +3092.096442 +3092.101770 +3092.193445 +3092.194077 +3092.195343 +3092.197740 +3092.293378 +3092.295942 +3092.393478 +3092.394910 +3092.397973 +3092.493411 +3092.593477 +3092.595875 +3092.601703 +3092.693544 +3092.697640 +3092.700637 +3092.793511 +3092.796141 +3092.800570 +3092.893577 +3092.895475 +3092.898039 +3092.902035 +3092.993510 +3093.093710 +3093.096208 +3093.193510 +3093.200170 +3093.292977 +3093.300203 +3093.393010 +3093.401835 +3093.493277 +3093.593277 +3093.599604 +3093.693310 +3093.697439 +3093.699604 +3093.793510 +3093.795175 +3093.800636 +3093.893443 +3093.894908 +3093.896540 +3093.899770 +3093.993409 +3093.996273 +3093.997905 +3094.000336 +3094.093176 +3094.099936 +3094.103233 +3094.196306 +3094.202167 +3094.293476 +3094.295074 +3094.297971 +3094.299869 +3094.302367 +3094.396339 +3094.399603 +3094.492876 +3094.494375 +3094.500002 +3094.593242 +3094.595074 +3094.599303 +3094.601900 +3094.693076 +3094.695140 +3094.697904 +3094.699036 +3094.701434 +3094.794907 +3094.799170 +3094.801068 +3094.893409 +3094.894840 +3094.897138 +3094.899269 +3094.901434 +3095.409226 +3095.486282 +3096.156944 +3096.202565 +3096.213654 +3096.232568 +3096.251249 +3096.258775 +3096.296171 +3096.314786 +3096.339761 +3096.424509 +3096.440726 +3097.511455 +3097.593306 +3097.657242 +3097.685847 +3097.754112 +3097.813386 +3097.831434 +3097.846020 +3097.858174 +3097.875157 +3097.964601 +3097.997002 +3098.012220 +3099.029468 +3099.749847 +3099.893770 +3099.908755 +3100.175288 +3100.239957 +3100.283080 +3100.319510 +3100.331199 +3100.348148 +3100.418212 +3100.431898 +3100.445151 +3100.458338 +3100.470759 +3100.493303 +3100.508654 +3100.532530 +3100.545051 +3100.569893 +3100.591305 +3100.603226 +3100.614981 +3100.616680 +3100.628468 +3100.641022 +3100.654209 +3100.701994 +3100.723173 +3100.733263 +3100.756140 +3100.773090 +3100.786343 +3100.789240 +3100.800595 +3100.812017 +3100.824671 +3100.827002 +3100.838857 +3100.859836 +3100.863466 +3100.871857 +3100.885111 +3100.887808 +3100.899163 +3100.911385 +3100.924971 +3100.927702 +3100.938657 +3100.953842 +3100.963832 +3100.990738 +3100.994968 +3101.002926 +3101.006056 +3101.016812 +3101.029566 +3101.031531 +3101.041821 +3101.045117 +3101.055241 +3101.057838 +3101.067095 +3101.071091 +3101.079649 +3101.107255 +3101.120742 +3101.134894 +3101.140422 +3101.144651 +3101.154341 +3101.167362 +3101.196266 +3101.204991 +3101.208054 +3101.221441 +3101.232530 +3101.245850 +3101.257938 +3101.261068 +3101.271291 +3101.284611 +3101.297365 +3101.309419 +3101.321607 +3101.334994 +3101.347248 +3101.361068 +3101.364664 +3101.374221 +3101.398730 +3101.402160 +3101.437092 +3101.450278 +3101.464431 +3101.489506 +3101.502127 +3101.515979 +3101.522539 +3101.548913 +3101.562832 +3101.574454 +3101.587075 +3101.600328 +3101.626136 +3101.639855 +3101.652876 +3101.704391 +3101.717877 +3101.731897 +3101.745350 +3101.759902 +3101.773455 +3101.786109 +3101.826136 +3101.838290 +3101.877617 +3101.944317 +3101.984177 +3101.996731 +3102.010584 +3102.037224 +3102.051077 +3102.065762 +3102.079515 +3102.093868 +3102.107121 +3102.135992 +3102.189272 +3102.215512 +3102.269658 +3102.297131 +3102.312282 +3102.325636 +3102.339388 +3102.354340 +3102.367394 +3102.396664 +3102.422539 +3102.436624 +3102.450311 +3102.478782 +3102.491769 +3102.519075 +3102.562765 +3102.604923 +3102.620241 +3102.648246 +3102.662065 +3102.690037 +3102.705955 +3102.840720 +3102.868992 +3102.882145 +3102.912182 +3102.955405 +3102.969325 +3102.998928 +3103.013181 +3103.028998 +3103.057603 +3103.072321 +3103.086541 +3103.118009 +3103.131462 +3103.146647 +3103.161998 +3103.177150 +3103.190969 +3103.206354 +3103.221306 +3103.237223 +3103.250909 +3103.280979 +3103.311249 +3103.325401 +3103.340453 +3103.355038 +3103.370656 +3103.385075 +3103.400193 +3103.414912 +3103.429997 +3103.444549 +3103.474452 +3103.490636 +3103.505321 +3103.520906 +3103.536024 +3103.551508 +3103.566560 +3103.582311 +3103.597263 +3103.611748 +3103.627632 +3103.643516 +3103.658235 +3103.688871 +3103.704888 +3103.719507 +3103.734991 +3103.766993 +3103.781312 +3103.797429 +3103.811415 +3103.827066 +3103.842417 +3103.858035 +3103.873386 +3103.887039 +3103.916177 +3103.930629 +3103.945514 +3103.960532 +3103.975251 +3104.006386 +3104.020273 +3104.049776 +3104.064828 +3104.079713 +3104.124268 +3104.138787 +3104.153539 +3104.168125 +3104.198561 +3104.228564 +3104.300126 +3104.330862 +3104.346946 +3104.360732 +3104.377049 +3104.392833 +3104.408251 +3104.423402 +3104.455770 +3104.471155 +3104.485540 +3104.547378 +3104.561864 +3104.578181 +3104.610448 +3104.640618 +3104.657135 +3104.673585 +3104.688204 +3104.705154 +3104.781610 +3105.705153 +3105.777081 +3105.792665 +3105.809149 +3105.864427 +3105.875649 +3107.353836 +3107.387202 +3107.460229 +3107.471118 +3107.515374 +3107.540149 +3107.611178 +3107.818237 +3108.775646 +3108.864790 +3109.099588 +3114.891890 +3116.892021 +3119.892418 +3120.146230 +3120.428714 +3120.601475 +3120.682061 +3120.764212 +3120.784292 +3120.908900 +3123.415458 +3123.436637 +3123.472834 +3123.547393 +3123.663110 +3123.696110 +3123.818455 +3123.842031 +3123.857982 +3124.891714 +3124.991447 +3124.992946 +3124.997574 +3125.098573 +3125.192512 +3125.193911 +3125.197241 +3125.292945 +3125.393212 +3125.401004 +3125.493112 +3125.500271 +3125.593278 +3125.594677 +3125.693344 +3125.694843 +3125.795109 +3125.893444 +3125.894809 +3125.993411 +3126.093411 +3126.193477 +3126.198272 +3126.295408 +3126.393410 +3126.394975 +3126.493410 +3126.496507 +3126.593510 +3126.595175 +3126.693377 +3126.697306 +3126.793377 +3126.800203 +3126.893177 +3126.894775 +3126.900969 +3126.993410 +3126.997506 +3127.000036 +3127.093443 +3127.096040 +3127.101601 +3127.193210 +3127.195108 +3127.297439 +3127.393343 +3127.493443 +3127.495008 +3127.501934 +3127.593609 +3127.597172 +3127.601201 +3127.693442 +3127.695740 +3127.701068 +3127.793442 +3127.801734 +3127.893376 +3127.894941 +3127.900668 +3127.995740 +3128.000269 +3128.093542 +3128.095140 +3128.101068 +3128.193375 +3128.195340 +3128.201167 +3128.294807 +3128.297138 +3128.299469 +3128.393209 +3128.399536 +3128.403365 +3128.493242 +3128.495040 +3128.499735 +3128.593441 +3128.599569 +3128.602133 +3128.693375 +3128.701866 +3128.796039 +3128.799968 +3128.893408 +3128.993341 +3128.995639 +3128.999768 +3129.093341 +3129.095739 +3129.099868 +3129.193474 +3129.195039 +3129.199701 +3129.201932 +3129.293607 +3129.295672 +3129.299501 +3129.302199 +3129.393307 +3129.394873 +3129.399701 +3129.402232 +3129.493474 +3129.496271 +3129.499501 +3129.501399 +3129.593407 +3129.595039 +3129.598036 +3129.599368 +3129.601266 +3129.693440 +3129.695505 +3129.699534 +3129.701566 +3129.793174 +3129.794772 +3129.797836 +3129.799234 +3129.801399 +3129.893174 +3129.894772 +3129.899334 +3129.901399 +3132.425639 +3132.470427 +3133.796800 +3134.893435 +3134.902892 +3134.909452 +3135.130897 +3135.215246 +3135.264564 +3135.299629 +3135.335726 +3135.392502 +3135.426701 +3135.439489 +3135.476818 +3135.484710 +3135.526635 +3135.551077 +3135.587807 +3135.613048 +3135.690537 +3135.718276 +3135.731097 +3135.768959 +3135.784077 +3135.794800 +3135.806588 +3135.808353 +3135.820707 +3135.866861 +3135.868925 +3135.891403 +3135.894766 +3135.906421 +3135.917344 +3135.929798 +3135.940221 +3135.951809 +3135.963064 +3135.972721 +3135.984543 +3135.996897 +3135.999062 +3136.023138 +3136.046281 +3136.057636 +3136.059401 +3136.082645 +3136.085076 +3136.107786 +3136.121373 +3136.144949 +3136.148512 +3136.157104 +3136.160001 +3136.169524 +3136.193068 +3136.208685 +3136.216411 +3136.219541 +3136.230164 +3136.233727 +3136.242585 +3136.244949 +3136.256338 +3136.260500 +3136.269691 +3136.285042 +3136.295265 +3136.298762 +3136.308785 +3136.311849 +3136.321139 +3136.326867 +3136.333893 +3136.350343 +3136.361133 +3136.373254 +3136.377716 +3136.385708 +3136.397396 +3136.412981 +3136.421872 +3136.425668 +3136.435292 +3136.449078 +3136.460999 +3136.472621 +3136.484476 +3136.507986 +3136.521772 +3136.526068 +3136.535092 +3136.548445 +3136.562331 +3136.566594 +3136.576550 +3136.590370 +3136.617343 +3136.630929 +3136.658535 +3136.662731 +3136.685641 +3136.690137 +3136.698928 +3136.712115 +3136.726067 +3136.739720 +3136.754173 +3136.792701 +3136.806886 +3136.846014 +3136.858768 +3136.870989 +3136.883410 +3136.895365 +3136.909450 +3136.924336 +3136.951342 +3136.992268 +3137.031428 +3137.069390 +3137.096463 +3137.108718 +3137.176283 +3137.190669 +3137.202524 +3137.231262 +3137.295264 +3137.309617 +3137.323669 +3137.338354 +3137.353772 +3137.367159 +3137.380612 +3137.394631 +3137.409816 +3137.423636 +3137.465960 +3137.479380 +3137.508351 +3137.522370 +3137.536223 +3137.552240 +3137.593333 +3137.607452 +3137.622437 +3137.635590 +3137.649410 +3137.663795 +3137.705454 +3137.720039 +3137.733259 +3137.760998 +3137.775783 +3137.789336 +3137.804055 +3137.818441 +3137.832393 +3137.860865 +3137.875117 +3137.889336 +3137.903922 +3137.918174 +3137.932160 +3137.946745 +3137.961830 +3137.975217 +3138.019573 +3138.034524 +3138.048177 +3138.062430 +3138.077681 +3138.105187 +3138.135090 +3138.149776 +3138.165460 +3138.179080 +3138.194464 +3138.223435 +3138.238154 +3138.253305 +3138.283342 +3138.298860 +3138.313312 +3138.328696 +3138.342949 +3138.373318 +3138.388770 +3138.417841 +3138.432859 +3138.448177 +3138.462729 +3138.479079 +3138.493165 +3138.523235 +3138.538387 +3138.568823 +3138.583808 +3138.598626 +3138.658966 +3138.674117 +3138.689269 +3138.704387 +3138.719838 +3138.750741 +3138.781243 +3138.795562 +3138.811646 +3138.827164 +3138.842149 +3138.856601 +3138.873218 +3138.902356 +3138.917474 +3138.932359 +3138.947977 +3139.008949 +3139.024866 +3139.040251 +3139.056868 +3139.070121 +3139.086771 +3139.100857 +3139.132958 +3139.148443 +3139.149109 +3139.177747 +3139.317373 +3139.361096 +3139.563294 +3139.662694 +3139.798359 +3139.812511 +3139.828262 +3139.843913 +3147.509140 +3150.893253 +3152.647996 +3152.666744 +3152.708336 +3152.892218 +3153.892184 +3158.318620 +3159.626344 +3159.890646 +3159.991345 +3159.998005 +3160.098438 +3160.192477 +3160.292644 +3160.301368 +3160.392910 +3160.394575 +3160.400003 +3160.492977 +3160.494375 +3160.502234 +3160.593143 +3160.693243 +3160.695074 +3160.793276 +3160.795374 +3160.893010 +3160.894575 +3160.993109 +3160.995307 +3161.093242 +3161.193309 +3161.194874 +3161.393275 +3161.394741 +3161.493242 +3161.593275 +3161.693209 +3161.695540 +3161.793208 +3161.893208 +3161.993341 +3162.093175 +3162.193208 +3162.195672 +3162.198003 +3162.296005 +3162.393274 +3162.395406 +3162.493441 +3162.495705 +3162.593141 +3162.594739 +3162.600267 +3162.693208 +3162.695405 +3162.793174 +3162.801266 +3162.893341 +3162.894739 +3162.993207 +3163.001399 +3163.093274 +3163.094972 +3163.097869 +3163.101099 +3163.193140 +3163.194839 +3163.200999 +3163.293240 +3163.293573 +3163.294672 +3163.301099 +3163.393174 +3163.401499 +3163.493207 +3163.500766 +3163.593173 +3163.594805 +3163.693140 +3163.793206 +3163.799900 +3163.893206 +3163.993240 +3163.995704 +3163.999800 +3164.096003 +3164.100099 +3164.193273 +3164.194705 +3164.200066 +3164.293273 +3164.295137 +3164.299966 +3164.393106 +3164.493172 +3164.499300 +3164.597035 +3164.601897 +3164.693006 +3164.699766 +3164.793106 +3164.794671 +3164.799865 +3164.893072 +3164.897201 +3164.899466 +3169.891402 +3169.908818 +3170.296630 +3170.308451 +3170.382610 +3170.416210 +3170.439354 +3170.499627 +3170.521272 +3170.546213 +3170.556903 +3170.581878 +3170.590602 +3170.592500 +3170.617842 +3170.629230 +3170.666426 +3170.678581 +3170.680113 +3170.692134 +3170.705054 +3170.707618 +3170.719040 +3170.732094 +3170.743915 +3170.753872 +3170.766892 +3170.780113 +3170.793599 +3170.806453 +3170.819806 +3170.832394 +3170.849976 +3170.870988 +3170.882776 +3170.894498 +3170.904988 +3170.917908 +3170.930862 +3170.943882 +3170.958900 +3170.965927 +3170.967691 +3170.979346 +3170.993499 +3171.010415 +3171.020638 +3171.033892 +3171.046246 +3171.057169 +3171.069756 +3171.084208 +3171.097861 +3171.099726 +3171.111281 +3171.122470 +3171.135723 +3171.138920 +3171.149743 +3171.150409 +3171.151507 +3171.162663 +3171.175317 +3171.191334 +3171.199659 +3171.203822 +3171.214611 +3171.226033 +3171.229862 +3171.239919 +3171.252540 +3171.264694 +3171.268657 +3171.278347 +3171.292267 +3171.303589 +3171.311814 +3171.323236 +3171.326066 +3171.336389 +3171.339153 +3171.349742 +3171.361331 +3171.373319 +3171.387105 +3171.398793 +3171.404854 +3171.410315 +3171.418840 +3171.431427 +3171.435423 +3171.445114 +3171.472253 +3171.483642 +3171.496362 +3171.508983 +3171.521570 +3171.534591 +3171.547944 +3171.561131 +3171.574384 +3171.589269 +3171.602389 +3171.615876 +3171.628397 +3171.654104 +3171.666925 +3171.679546 +3171.692433 +3171.716642 +3171.719805 +3171.729995 +3171.743981 +3171.757168 +3171.769389 +3171.782842 +3171.796628 +3171.810148 +3171.824434 +3171.851640 +3171.865027 +3171.879079 +3171.891667 +3171.905919 +3171.919938 +3171.945446 +3171.961930 +3171.984707 +3171.997394 +3172.011214 +3172.041184 +3172.082242 +3172.164027 +3172.170021 +3172.197161 +3172.212912 +3172.238952 +3172.417740 +3172.460764 +3172.475149 +3172.489668 +3172.654869 +3172.719937 +3172.784406 +3172.826364 +3172.926231 +3172.955768 +3173.012744 +3173.028862 +3173.043047 +3173.057133 +3173.072851 +3173.118006 +3173.132391 +3173.147276 +3173.161129 +3173.191465 +3173.206018 +3173.251106 +3173.265724 +3173.281009 +3173.294962 +3173.309914 +3173.340183 +3173.385105 +3173.415042 +3173.430626 +3173.444945 +3173.459497 +3173.459830 +3173.474715 +3173.489167 +3173.505085 +3173.519004 +3173.533923 +3173.549640 +3173.564525 +3173.608515 +3173.637619 +3173.652537 +3173.682973 +3173.698358 +3173.713243 +3173.728361 +3173.742048 +3173.771984 +3173.788768 +3173.803686 +3173.817772 +3173.875414 +3173.890765 +3173.905051 +3173.919670 +3173.934721 +3173.949440 +3173.965857 +3173.980409 +3173.995894 +3174.011744 +3174.438051 +3174.452570 +3174.467555 +3174.607981 +3174.624098 +3174.639216 +3174.654834 +3174.670751 +3174.686169 +3174.701154 +3174.733722 +3174.747808 +3174.779909 +3174.809413 +3174.823365 +3174.838450 +3176.198122 +3177.591428 +3178.151833 +3185.893318 +3186.893583 +3187.893649 +3188.893714 +3189.893180 +3191.515623 +3192.980290 +3194.892643 +3194.991211 +3194.992876 +3195.091677 +3195.095406 +3195.192276 +3195.292476 +3195.293008 +3195.293808 +3195.300401 +3195.392709 +3195.394207 +3195.492742 +3195.497470 +3195.592575 +3195.595306 +3195.692675 +3195.792908 +3195.794873 +3195.892975 +3195.894939 +3195.992841 +3195.995705 +3196.092941 +3196.094806 +3196.192874 +3196.193374 +3196.195072 +3196.292974 +3196.295538 +3196.392774 +3196.394806 +3196.493074 +3196.494639 +3196.592974 +3196.594639 +3196.692940 +3196.792840 +3196.794838 +3196.892674 +3196.894439 +3196.992740 +3196.995071 +3197.093007 +3197.095271 +3197.192740 +3197.293040 +3197.301864 +3197.392940 +3197.492873 +3197.494638 +3197.497435 +3197.501165 +3197.592940 +3197.594804 +3197.601198 +3197.692973 +3197.793039 +3197.801797 +3197.893006 +3197.899832 +3197.992939 +3197.994704 +3198.096702 +3198.193072 +3198.293172 +3198.296602 +3198.394637 +3198.399332 +3198.492905 +3198.494837 +3198.499765 +3198.592839 +3198.597234 +3198.692872 +3198.699232 +3198.795969 +3198.799598 +3198.893005 +3198.992971 +3199.000497 +3199.092938 +3199.096701 +3199.196401 +3199.292638 +3199.294570 +3199.297100 +3199.299498 +3199.392838 +3199.399365 +3199.492838 +3199.499231 +3199.502595 +3199.592704 +3199.594336 +3199.599498 +3199.692937 +3199.698998 +3199.792638 +3199.794569 +3199.799198 +3199.802295 +3199.892737 +3199.899198 +3204.800824 +3204.830195 +3204.888437 +3204.891933 +3204.902056 +3205.044447 +3205.101956 +3205.179346 +3205.265459 +3205.288003 +3205.300524 +3205.302622 +3205.342449 +3205.363861 +3205.365826 +3205.377847 +3205.390900 +3205.404420 +3205.415842 +3205.427031 +3205.475283 +3205.489835 +3205.514310 +3205.526831 +3205.548709 +3205.583474 +3205.596262 +3205.611913 +3205.623368 +3205.635489 +3205.637653 +3205.661430 +3205.674750 +3205.687237 +3205.705585 +3205.707417 +3205.718206 +3205.732092 +3205.754004 +3205.757533 +3205.766691 +3205.779645 +3205.783108 +3205.794297 +3205.806285 +3205.821136 +3205.834223 +3205.843847 +3205.853204 +3205.862262 +3205.875249 +3205.888469 +3205.901589 +3205.913611 +3205.925832 +3205.928429 +3205.939351 +3205.952472 +3205.965825 +3205.991632 +3206.003953 +3206.016674 +3206.028762 +3206.041549 +3206.066191 +3206.068589 +3206.076980 +3206.089335 +3206.091566 +3206.115042 +3206.127363 +3206.139817 +3206.142781 +3206.169488 +3206.180244 +3206.193131 +3206.198092 +3206.207317 +3206.214476 +3206.226031 +3206.235622 +3206.247110 +3206.285305 +3206.287370 +3206.297560 +3206.310646 +3206.323534 +3206.328295 +3206.334589 +3206.346144 +3206.350273 +3206.359564 +3206.384739 +3206.423866 +3206.434822 +3206.446244 +3206.449974 +3206.459764 +3206.472518 +3206.485105 +3206.497526 +3206.510580 +3206.537286 +3206.548675 +3206.561895 +3206.586703 +3206.600356 +3206.615242 +3206.627329 +3206.641249 +3206.680510 +3206.694196 +3206.707549 +3206.721502 +3206.759697 +3206.786503 +3206.811379 +3206.823500 +3206.834722 +3206.872984 +3206.886803 +3206.973250 +3206.980842 +3207.007782 +3207.048941 +3207.114542 +3207.160363 +3207.173749 +3207.187236 +3207.215974 +3207.227928 +3207.269220 +3207.321035 +3207.631258 +3207.696992 +3207.710745 +3208.256332 +3208.590498 +3208.605116 +3208.872682 +3209.017404 +3217.977701 +3220.893083 +3221.083093 +3221.893282 +3222.170071 +3222.175299 +3222.892015 +3223.104536 +3223.114692 +3223.892614 +3224.105700 +3224.112027 +3224.116023 +3225.109196 +3225.113924 +3225.122815 +3225.146758 +3225.224114 +3228.568666 +3228.581187 +3228.631403 +3228.808326 +3229.892141 +3229.991009 +3229.992707 +3230.093074 +3230.192008 +3230.193340 +3230.292374 +3230.392241 +3230.394006 +3230.494172 +3230.496869 +3230.592574 +3230.594172 +3230.792607 +3230.794305 +3230.892507 +3230.895337 +3230.898101 +3230.992507 +3230.994505 +3231.092673 +3231.096536 +3231.192606 +3231.194305 +3231.292639 +3231.294205 +3231.294904 +3231.392606 +3231.394138 +3231.397301 +3231.492539 +3231.497335 +3231.592473 +3231.594204 +3231.599899 +3231.692473 +3231.792672 +3231.797201 +3231.892705 +3231.897101 +3231.992572 +3232.092539 +3232.094204 +3232.097068 +3232.192572 +3232.292572 +3232.294104 +3232.300664 +3232.392538 +3232.394070 +3232.396768 +3232.492605 +3232.494903 +3232.594137 +3232.596667 +3232.600697 +3232.699032 +3232.792605 +3232.794236 +3232.799498 +3232.892405 +3232.900763 +3232.992505 +3232.994536 +3232.997133 +3233.092371 +3233.097333 +3233.099731 +3233.194103 +3233.292637 +3233.299231 +3233.299630 +3233.392471 +3233.393969 +3233.394669 +3233.398765 +3233.492437 +3233.494136 +3233.499131 +3233.592604 +3233.594269 +3233.596234 +3233.598898 +3233.692271 +3233.694835 +3233.792604 +3233.794202 +3233.796999 +3233.799031 +3233.892537 +3233.896433 +3233.898697 +3233.992337 +3233.997166 +3233.998930 +3234.092503 +3234.093935 +3234.097099 +3234.099463 +3234.192370 +3234.197332 +3234.292570 +3234.294102 +3234.298930 +3234.392503 +3234.394201 +3234.399230 +3234.492570 +3234.498530 +3234.592603 +3234.594168 +3234.601927 +3234.692536 +3234.699163 +3234.792469 +3234.798663 +3234.800928 +3234.892403 +3234.896199 +3234.898630 +3238.299359 +3239.477113 +3239.890533 +3239.902155 +3239.909747 +3240.031492 +3240.141748 +3240.191465 +3240.286170 +3240.307782 +3240.322600 +3240.331791 +3240.345244 +3240.346743 +3240.359630 +3240.372850 +3240.384072 +3240.396560 +3240.441881 +3240.466323 +3240.476746 +3240.478844 +3240.489067 +3240.490832 +3240.502720 +3240.514475 +3240.527096 +3240.557932 +3240.630659 +3240.639483 +3240.658398 +3240.669487 +3240.671285 +3240.695527 +3240.705584 +3240.717006 +3240.729726 +3240.731558 +3240.743313 +3240.755101 +3240.765490 +3240.768454 +3240.777811 +3240.790765 +3240.792197 +3240.804918 +3240.817971 +3240.832390 +3240.842613 +3240.866423 +3240.879809 +3240.892330 +3240.903819 +3240.915973 +3240.919836 +3240.929593 +3240.931291 +3240.943945 +3240.953735 +3240.966356 +3240.968554 +3240.992863 +3241.004951 +3241.008214 +3241.017805 +3241.039316 +3241.050805 +3241.058863 +3241.062760 +3241.070951 +3241.083439 +3241.087102 +3241.096925 +3241.110012 +3241.123599 +3241.127894 +3241.136852 +3241.149706 +3241.160761 +3241.172749 +3241.177411 +3241.186136 +3241.201621 +3241.208847 +3241.220069 +3241.228693 +3241.241281 +3241.246842 +3241.254168 +3241.265390 +3241.276346 +3241.288933 +3241.302087 +3241.305184 +3241.315673 +3241.319303 +3241.328527 +3241.338051 +3241.353202 +3241.360262 +3241.373282 +3241.386669 +3241.413375 +3241.427261 +3241.439982 +3241.452236 +3241.476878 +3241.490198 +3241.502653 +3241.517771 +3241.530292 +3241.551370 +3241.564024 +3241.577011 +3241.590431 +3241.602553 +3241.627594 +3241.639416 +3241.652336 +3241.665057 +3241.714807 +3241.728227 +3241.769918 +3241.791031 +3241.834154 +3241.859529 +3241.903451 +3241.917138 +3241.969552 +3242.006781 +3242.019768 +3242.034154 +3242.060161 +3242.114207 +3242.127127 +3242.140847 +3242.207181 +3242.246308 +3242.261659 +3242.395159 +3242.446741 +3242.460694 +3242.554666 +3242.582372 +3242.624929 +3242.651802 +3242.678742 +3242.694293 +3242.855965 +3242.952401 +3242.981173 +3243.151535 +3243.190896 +3243.218901 +3243.232787 +3243.247140 +3243.262125 +3243.275878 +3243.362491 +3243.377975 +3243.406780 +3243.421066 +3243.450370 +3244.525327 +3244.695989 +3244.711973 +3244.726126 +3244.740445 +3250.360719 +3252.897047 +3252.915462 +3252.962015 +3254.291484 +3254.891450 +3255.891949 +3256.445262 +3256.507133 +3256.611395 +3256.624582 +3256.891548 +3257.372234 +3257.493313 +3257.614791 +3257.682756 +3257.689250 +3257.891680 +3257.894378 +3258.140598 +3258.316588 +3258.890947 +3259.225645 +3259.264306 +3259.294276 +3259.318219 +3259.891778 +3264.622609 +3264.629436 +3264.649982 +3264.990641 +3264.992140 +3264.998367 +3265.091307 +3265.292206 +3265.294104 +3265.392372 +3265.394404 +3265.397201 +3265.492505 +3265.592572 +3265.692472 +3265.694403 +3265.792505 +3265.893804 +3265.991639 +3266.092405 +3266.093970 +3266.192471 +3266.194636 +3266.292505 +3266.295169 +3266.392704 +3266.492538 +3266.494735 +3266.592538 +3266.595368 +3266.692537 +3266.694069 +3266.792804 +3266.794535 +3266.892704 +3266.893237 +3266.896300 +3266.992637 +3267.092470 +3267.094169 +3267.192604 +3267.194269 +3267.292703 +3267.392637 +3267.393369 +3267.394168 +3267.492570 +3267.495134 +3267.500495 +3267.592503 +3267.594501 +3267.692636 +3267.694201 +3267.792470 +3267.800928 +3267.892603 +3267.894135 +3267.992636 +3267.994268 +3268.094134 +3268.192702 +3268.194401 +3268.200928 +3268.292702 +3268.301061 +3268.392602 +3268.394267 +3268.400328 +3268.492636 +3268.494301 +3268.499995 +3268.592302 +3268.594067 +3268.692502 +3268.792535 +3268.794866 +3268.798829 +3268.892668 +3268.894034 +3268.897164 +3268.899362 +3268.992302 +3268.994233 +3268.997164 +3268.999528 +3269.092502 +3269.094933 +3269.100094 +3269.192768 +3269.194733 +3269.292635 +3269.294899 +3269.392568 +3269.394133 +3269.399561 +3269.492202 +3269.495865 +3269.498928 +3269.594033 +3269.692534 +3269.694133 +3269.699128 +3269.792534 +3269.794566 +3269.798961 +3269.892501 +3269.896364 +3269.898861 +3271.357235 +3272.565525 +3272.602655 +3272.630993 +3273.492031 +3273.553636 +3273.587236 +3273.601255 +3273.687103 +3273.752637 +3274.890664 +3274.892563 +3274.902086 +3275.177977 +3275.262026 +3275.334920 +3275.357730 +3275.386535 +3275.400820 +3275.488233 +3275.490064 +3275.501886 +3275.514706 +3275.526794 +3275.591696 +3275.626994 +3275.628493 +3275.638849 +3275.649805 +3275.652402 +3275.662991 +3275.676012 +3275.689232 +3275.691363 +3275.703018 +3275.753867 +3275.767953 +3275.782705 +3275.790297 +3275.800554 +3275.828026 +3275.853134 +3275.865755 +3275.878043 +3275.880507 +3275.894227 +3275.904383 +3275.917537 +3275.928526 +3275.938915 +3275.949271 +3275.961792 +3275.975412 +3275.978908 +3275.989165 +3276.001020 +3276.005116 +3276.016204 +3276.028525 +3276.039581 +3276.048073 +3276.051169 +3276.062791 +3276.069052 +3276.079941 +3276.083837 +3276.093094 +3276.104549 +3276.116704 +3276.130823 +3276.144543 +3276.156897 +3276.160627 +3276.168785 +3276.195292 +3276.205448 +3276.216304 +3276.231689 +3276.253966 +3276.264090 +3276.269185 +3276.280740 +3276.292428 +3276.305049 +3276.315904 +3276.327360 +3276.331023 +3276.340114 +3276.353500 +3276.366454 +3276.378908 +3276.403783 +3276.418868 +3276.430889 +3276.443477 +3276.452701 +3276.465222 +3276.476644 +3276.488931 +3276.492295 +3276.501019 +3276.513773 +3276.527126 +3276.540746 +3276.555065 +3276.567053 +3276.580806 +3276.595125 +3276.609844 +3276.621332 +3276.633220 +3276.670949 +3276.682238 +3276.687133 +3276.695758 +3276.707512 +3276.734019 +3276.746507 +3276.760726 +3276.784102 +3276.798688 +3276.812041 +3276.823829 +3276.851069 +3276.863923 +3276.878708 +3276.926094 +3276.929524 +3276.939913 +3276.955398 +3276.968285 +3276.981505 +3276.994692 +3277.047339 +3277.061425 +3277.078641 +3277.101918 +3277.129756 +3277.156330 +3277.167718 +3277.181804 +3277.222863 +3277.262324 +3277.277309 +3277.303449 +3277.330955 +3277.344408 +3277.359593 +3277.372214 +3277.385334 +3277.426659 +3277.442110 +3277.483203 +3277.497888 +3277.567285 +3277.596489 +3277.623229 +3277.638314 +3277.652966 +3277.666253 +3277.697388 +3277.723995 +3277.753199 +3277.767618 +3277.823129 +3277.934484 +3277.950035 +3277.964121 +3277.978707 +3277.994524 +3278.023795 +3278.037714 +3278.052067 +3278.080372 +3278.095190 +3278.111074 +3278.125626 +3278.140611 +3278.155696 +3278.169649 +3278.212473 +3278.267817 +3278.296822 +3278.311607 +3278.325393 +3278.339379 +3278.383501 +3278.397388 +3278.411107 +3278.426991 +3278.455596 +3278.484700 +3278.500218 +3278.514670 +3278.530321 +3278.544540 +3278.558926 +3278.574111 +3278.590061 +3278.604347 +3278.619132 +3278.633418 +3278.648436 +3278.662922 +3278.692659 +3278.708909 +3278.723728 +3278.739478 +3278.753131 +3278.768150 +3278.783568 +3278.813638 +3278.972978 +3279.168049 +3279.198053 +3279.213904 +3279.354163 +3279.460690 +3279.475941 +3279.491825 +3279.539444 +3279.660490 +3279.692991 +3279.816500 +3282.231383 +3282.256192 +3282.267280 +3284.034045 +3285.502842 +3285.566578 +3286.458019 +3286.622454 +3286.628182 +3288.949691 +3289.891449 +3290.429843 +3290.530476 +3290.891747 +3291.891313 +3292.892012 +3293.072531 +3293.891678 +3293.894708 +3294.891544 +3296.878288 +3298.084481 +3298.128637 +3298.224208 +3299.891439 +3299.990839 +3300.091505 +3300.093503 +3300.098764 +3300.191971 +3300.193703 +3300.198232 +3300.292271 +3300.293669 +3300.299563 +3300.492437 +3300.494069 +3300.501162 +3300.592437 +3300.601828 +3300.692570 +3300.694701 +3300.701661 +3300.792570 +3300.892603 +3300.895300 +3300.992570 +3300.995467 +3301.092736 +3301.192803 +3301.197331 +3301.292803 +3301.294934 +3301.392836 +3301.492669 +3301.592503 +3301.595000 +3301.600295 +3301.692536 +3301.695000 +3301.792669 +3301.800727 +3301.896598 +3301.900494 +3301.992635 +3301.997231 +3302.000694 +3302.098163 +3302.192702 +3302.194333 +3302.292802 +3302.392901 +3302.395732 +3302.400394 +3302.492835 +3302.592868 +3302.600827 +3302.692834 +3302.694666 +3302.701426 +3302.800960 +3302.892701 +3302.899428 +3302.992601 +3302.995198 +3302.999694 +3303.000027 +3303.095798 +3303.192401 +3303.292601 +3303.294399 +3303.295498 +3303.299527 +3303.393000 +3303.394399 +3303.399227 +3303.492601 +3303.494232 +3303.499094 +3303.592767 +3303.595031 +3303.599161 +3303.692767 +3303.694432 +3303.699460 +3303.792700 +3303.794332 +3303.799460 +3303.892867 +3303.894365 +3303.898894 +3303.994332 +3303.997195 +3303.999493 +3304.092733 +3304.094598 +3304.097229 +3304.192633 +3304.292833 +3304.294465 +3304.299160 +3304.392799 +3304.394398 +3304.395264 +3304.398893 +3304.401624 +3304.492733 +3304.494398 +3304.498993 +3304.592699 +3304.596662 +3304.599026 +3304.601224 +3304.693765 +3304.698760 +3304.701990 +3304.792633 +3304.798826 +3304.801324 +3304.892499 +3304.894064 +3305.413977 +3305.436388 +3305.446345 +3305.521003 +3306.863060 +3306.887203 +3306.960496 +3307.065724 +3307.089600 +3307.151272 +3307.169953 +3307.182074 +3307.273649 +3307.287702 +3308.258164 +3308.275613 +3308.328393 +3309.406481 +3309.459927 +3309.532388 +3309.890729 +3309.901885 +3309.987466 +3310.162457 +3310.184102 +3310.234852 +3310.247306 +3310.259227 +3310.299720 +3310.313040 +3310.352134 +3310.353766 +3310.402950 +3310.411308 +3310.469383 +3310.496490 +3310.509577 +3310.520366 +3310.531888 +3310.534585 +3310.546140 +3310.561058 +3310.576177 +3310.586633 +3310.635684 +3310.649903 +3310.664322 +3310.685900 +3310.720532 +3310.753033 +3310.762290 +3310.774245 +3310.787365 +3310.800718 +3310.815237 +3310.828690 +3310.839979 +3310.842610 +3310.854032 +3310.866686 +3310.877475 +3310.880505 +3310.890995 +3310.904115 +3310.916869 +3310.930888 +3310.955830 +3310.982403 +3310.999020 +3311.002217 +3311.010875 +3311.033918 +3311.045806 +3311.059226 +3311.086765 +3311.098787 +3311.102050 +3311.111441 +3311.125060 +3311.137881 +3311.140845 +3311.150502 +3311.161990 +3311.165853 +3311.175277 +3311.178707 +3311.188430 +3311.190994 +3311.200485 +3311.212873 +3311.223129 +3311.225726 +3311.235850 +3311.239180 +3311.248970 +3311.249702 +3311.261790 +3311.274311 +3311.300551 +3311.304281 +3311.327891 +3311.334617 +3311.342876 +3311.348137 +3311.356096 +3311.368783 +3311.371714 +3311.382536 +3311.393692 +3311.405946 +3311.409476 +3311.419632 +3311.445273 +3311.469049 +3311.480971 +3311.495823 +3311.519066 +3311.522596 +3311.532786 +3311.546439 +3311.559259 +3311.573045 +3311.587731 +3311.598353 +3311.610708 +3311.620798 +3311.647737 +3311.661557 +3311.675709 +3311.689862 +3311.703581 +3311.717101 +3311.730721 +3311.744773 +3311.756861 +3311.797321 +3311.810208 +3311.822163 +3311.835016 +3311.875942 +3311.888230 +3311.915136 +3311.928856 +3311.941776 +3311.969881 +3311.994357 +3312.008909 +3312.022662 +3312.049635 +3312.062589 +3312.088230 +3312.116468 +3312.129388 +3312.144074 +3312.157760 +3312.184766 +3312.210208 +3312.251533 +3312.265319 +3312.280304 +3312.320597 +3312.345938 +3312.376275 +3312.405412 +3312.600550 +3312.628955 +3312.643407 +3312.699351 +3312.822461 +3312.836747 +3313.167816 +3313.183200 +3313.196620 +3313.211305 +3313.226424 +3313.240643 +3313.270979 +3313.285531 +3313.315168 +3313.329754 +3313.345005 +3313.375008 +3313.389094 +3313.405611 +3313.419264 +3313.478238 +3313.493356 +3313.522561 +3313.537679 +3313.553130 +3313.568348 +3313.583033 +3313.613370 +3313.628321 +3313.642973 +3313.657725 +3313.688428 +3313.703779 +3313.718664 +3313.733383 +3313.764785 +3313.793389 +3313.809540 +3313.839343 +3313.854162 +3313.870046 +3313.900782 +3313.915001 +3313.945504 +3313.990426 +3314.005910 +3314.020828 +3314.067115 +3314.097385 +3314.112936 +3314.129386 +3314.158324 +3314.190359 +3314.250499 +3314.486362 +3314.501647 +3314.516566 +3314.532683 +3314.608673 +3314.784331 +3314.828054 +3314.842906 +3315.824323 +3315.833314 +3316.433846 +3316.442504 +3316.450530 +3316.473673 +3316.584063 +3318.487058 +3318.510867 +3318.537108 +3318.557854 +3318.631313 +3318.715129 +3318.764413 +3318.811000 +3318.881263 +3325.893977 +3326.892111 +3327.891777 +3327.893409 +3329.892274 +3334.893368 +3334.991370 +3335.091803 +3335.093302 +3335.192569 +3335.194267 +3335.292635 +3335.299928 +3335.392902 +3335.394766 +3335.401027 +3335.493035 +3335.494600 +3335.501227 +3335.593035 +3335.594999 +3335.601426 +3335.692768 +3335.694167 +3335.793068 +3335.796864 +3335.892901 +3335.995165 +3336.001925 +3336.093167 +3336.095232 +3336.193167 +3336.194932 +3336.293001 +3336.294865 +3336.393200 +3336.394999 +3336.493134 +3336.497563 +3336.593134 +3336.595132 +3336.692934 +3336.694432 +3336.696796 +3336.702491 +3336.793200 +3336.795031 +3336.797596 +3336.800926 +3336.893200 +3336.894465 +3336.900859 +3336.992967 +3336.994598 +3336.999760 +3337.093233 +3337.094532 +3337.193133 +3337.200526 +3337.293166 +3337.294765 +3337.393133 +3337.395031 +3337.397961 +3337.399826 +3337.593033 +3337.594631 +3337.693033 +3337.695097 +3337.793166 +3337.794065 +3337.800458 +3337.893199 +3337.894631 +3337.900092 +3337.993165 +3337.994697 +3338.000092 +3338.093065 +3338.097628 +3338.100758 +3338.193032 +3338.201191 +3338.293198 +3338.392965 +3338.397194 +3338.399126 +3338.493098 +3338.495030 +3338.499359 +3338.593132 +3338.594663 +3338.598992 +3338.692965 +3338.694530 +3338.699925 +3338.792932 +3338.796561 +3338.799825 +3338.892998 +3338.999192 +3339.002355 +3339.092998 +3339.099358 +3339.193098 +3339.199058 +3339.293131 +3339.296960 +3339.393097 +3339.399358 +3339.401989 +3339.499125 +3339.502022 +3339.593131 +3339.599491 +3339.693031 +3339.699291 +3339.701622 +3339.792997 +3339.794695 +3339.799391 +3339.802088 +3339.892930 +3339.895195 +3339.897126 +3339.898825 +3339.901555 +3340.938251 +3340.958830 +3341.733322 +3341.800987 +3341.839049 +3341.915173 +3342.063658 +3342.181140 +3342.217936 +3342.258729 +3343.611208 +3343.617369 +3343.720932 +3343.749537 +3343.802117 +3343.803849 +3343.818734 +3343.841811 +3344.302949 +3344.742643 +3344.779306 +3344.890228 +3344.891793 +3344.908277 +3345.009009 +3345.161856 +3345.261124 +3345.272412 +3345.273977 +3345.288929 +3345.319765 +3345.334284 +3345.356894 +3345.370348 +3345.395955 +3345.438280 +3345.460191 +3345.473078 +3345.474910 +3345.488130 +3345.542575 +3345.545206 +3345.576941 +3345.598186 +3345.600883 +3345.610108 +3345.611839 +3345.623994 +3345.649035 +3345.683068 +3345.685066 +3345.695322 +3345.716468 +3345.736181 +3345.756994 +3345.761156 +3345.768216 +3345.781170 +3345.784799 +3345.805345 +3345.807543 +3345.818299 +3345.821962 +3345.831253 +3345.833484 +3345.844972 +3345.857993 +3345.859358 +3345.872079 +3345.884167 +3345.898119 +3345.909641 +3345.922528 +3345.947470 +3345.964120 +3345.976807 +3345.989628 +3345.992458 +3346.001482 +3346.004646 +3346.014370 +3346.024759 +3346.028256 +3346.037546 +3346.064020 +3346.076308 +3346.079071 +3346.116301 +3346.127789 +3346.139544 +3346.151965 +3346.154096 +3346.165285 +3346.178605 +3346.184466 +3346.191426 +3346.200949 +3346.210906 +3346.215302 +3346.223394 +3346.248568 +3346.251799 +3346.265585 +3346.275208 +3346.278172 +3346.287463 +3346.298152 +3346.303047 +3346.321529 +3346.332751 +3346.348102 +3346.369714 +3346.383167 +3346.395821 +3346.407809 +3346.410107 +3346.418931 +3346.431352 +3346.442741 +3346.446137 +3346.455062 +3346.468315 +3346.471778 +3346.485698 +3346.507543 +3346.511838 +3346.521295 +3346.534083 +3346.546837 +3346.558225 +3346.570646 +3346.583367 +3346.597419 +3346.610040 +3346.623560 +3346.636214 +3346.648302 +3346.673710 +3346.700017 +3346.713869 +3346.725824 +3346.751765 +3346.766117 +3346.780236 +3346.806244 +3346.820729 +3346.833816 +3346.861255 +3346.886563 +3346.900216 +3346.913070 +3346.937079 +3346.952064 +3346.963087 +3347.001648 +3347.014002 +3347.041741 +3347.055527 +3347.069480 +3347.111405 +3347.138078 +3347.152364 +3347.166017 +3347.246902 +3347.260289 +3347.273875 +3347.287861 +3347.316100 +3347.330186 +3347.345071 +3347.372443 +3347.405044 +3347.413735 +3347.428188 +3347.496453 +3347.648434 +3347.677405 +3347.747168 +3347.831451 +3348.114534 +3348.129386 +3348.354327 +3348.657058 +3348.670278 +3348.686428 +3348.700880 +3348.717797 +3348.730584 +3348.746868 +3348.791223 +3348.806774 +3348.821992 +3348.837510 +3348.851596 +3348.868213 +3348.881799 +3348.897617 +3348.912535 +3348.928519 +3348.942372 +3348.958389 +3349.018562 +3349.077603 +3349.108705 +3349.170111 +3349.183730 +3349.293720 +3349.308705 +3349.400280 +3349.416431 +3349.431516 +3349.447500 +3349.463850 +3349.479501 +3349.523823 +3349.539574 +3349.554826 +3349.571542 +3349.633081 +3349.647699 +3349.661852 +3349.739974 +3349.817995 +3349.879600 +3351.900244 +3352.138439 +3352.243634 +3358.352919 +3359.893510 +3361.893574 +3362.893141 +3364.370262 +3364.894204 +3366.138858 +3369.573420 +3369.892268 +3369.991968 +3369.992834 +3370.092634 +3370.192900 +3370.293599 +3370.301491 +3370.393566 +3370.401258 +3370.493766 +3370.593899 +3370.595597 +3370.601824 +3370.693666 +3370.695830 +3370.698527 +3370.701325 +3370.793832 +3370.795597 +3370.802257 +3370.893765 +3370.894265 +3370.895630 +3370.901025 +3370.993798 +3370.995397 +3370.997928 +3371.001691 +3371.093898 +3371.095363 +3371.098161 +3371.193832 +3371.195130 +3371.196196 +3371.198294 +3371.200292 +3371.293598 +3371.295363 +3371.300691 +3371.393731 +3371.395430 +3371.398227 +3371.493931 +3371.498127 +3371.502156 +3371.593565 +3371.595097 +3371.600325 +3371.693831 +3371.793931 +3371.795329 +3371.893931 +3371.898260 +3371.902023 +3371.993731 +3371.998459 +3371.999891 +3372.002156 +3372.093897 +3372.099891 +3372.102256 +3372.193731 +3372.199658 +3372.201689 +3372.293697 +3372.294363 +3372.299691 +3372.301689 +3372.393964 +3372.395562 +3372.402055 +3372.493830 +3372.499891 +3372.501622 +3372.593863 +3372.602089 +3372.693763 +3372.695329 +3372.700257 +3372.702222 +3372.793930 +3372.795295 +3372.797393 +3372.799757 +3372.802088 +3372.893863 +3372.899657 +3372.901755 +3372.994063 +3372.995495 +3372.999724 +3373.001855 +3373.101322 +3373.193830 +3373.195661 +3373.199457 +3373.201289 +3373.204719 +3373.293696 +3373.299490 +3373.301322 +3373.393763 +3373.395328 +3373.399524 +3373.401522 +3373.404019 +3373.493962 +3373.494495 +3373.501488 +3373.593629 +3373.599157 +3373.601089 +3373.603719 +3373.693796 +3373.695927 +3373.699557 +3373.701488 +3373.704152 +3373.793762 +3373.799423 +3373.801122 +3373.903586 +3373.993862 +3373.994262 +3373.997725 +3373.999290 +3374.001288 +3374.004085 +3374.093995 +3374.097691 +3374.101954 +3374.193928 +3374.199423 +3374.201188 +3374.203352 +3374.293928 +3374.299190 +3374.300921 +3374.303985 +3374.393895 +3374.394295 +3374.399389 +3374.401054 +3374.403818 +3374.493828 +3374.495393 +3374.501088 +3374.503452 +3374.599123 +3374.600888 +3374.604251 +3374.605050 +3374.701287 +3374.704351 +3374.793961 +3374.799123 +3374.801320 +3374.803718 +3374.893861 +3374.899389 +3374.901187 +3374.903218 +3375.220168 +3375.245709 +3375.266188 +3375.291663 +3375.609145 +3375.618669 +3375.659128 +3376.961358 +3377.979905 +3379.036315 +3379.099651 +3379.123094 +3379.210540 +3379.260357 +3379.282568 +3379.358159 +3379.428455 +3379.891925 +3379.908908 +3379.911139 +3379.918931 +3380.106543 +3380.192557 +3380.206377 +3380.222294 +3380.231518 +3380.242008 +3380.243473 +3380.256327 +3380.294289 +3380.305178 +3380.315201 +3380.330519 +3380.340975 +3380.352963 +3380.377905 +3380.391625 +3380.447668 +3380.450932 +3380.481701 +3380.490526 +3380.523160 +3380.535947 +3380.545504 +3380.556360 +3380.569580 +3380.596087 +3380.607042 +3380.618198 +3380.630186 +3380.643073 +3380.654495 +3380.656593 +3380.665983 +3380.679370 +3380.682034 +3380.713735 +3380.728654 +3380.741707 +3380.754528 +3380.762786 +3380.774408 +3380.787328 +3380.800815 +3380.802646 +3380.826090 +3380.836246 +3380.844205 +3380.854861 +3380.868447 +3380.888327 +3380.893955 +3380.906309 +3380.908207 +3380.918764 +3380.920762 +3380.936080 +3380.944072 +3380.957858 +3380.968880 +3380.979303 +3381.007575 +3381.028021 +3381.037378 +3381.047868 +3381.050698 +3381.073975 +3381.086263 +3381.090325 +3381.099816 +3381.103978 +3381.112203 +3381.126489 +3381.138777 +3381.148267 +3381.161987 +3381.173875 +3381.175939 +3381.186262 +3381.190591 +3381.199249 +3381.202280 +3381.211937 +3381.225457 +3381.241640 +3381.250798 +3381.254294 +3381.264351 +3381.276372 +3381.288460 +3381.298217 +3381.308573 +3381.321394 +3381.326356 +3381.333382 +3381.337977 +3381.346968 +3381.363618 +3381.372243 +3381.384131 +3381.395320 +3381.397584 +3381.421227 +3381.435180 +3381.447967 +3381.461187 +3381.463785 +3381.485663 +3381.498850 +3381.512203 +3381.515466 +3381.526189 +3381.530351 +3381.539642 +3381.552296 +3381.552929 +3381.578170 +3381.582066 +3381.591190 +3381.605343 +3381.616998 +3381.630584 +3381.643605 +3381.655759 +3381.669279 +3381.674274 +3381.683098 +3381.687760 +3381.696385 +3381.709838 +3381.723691 +3381.736612 +3381.748067 +3381.750031 +3381.762386 +3381.775639 +3381.788626 +3381.801813 +3381.815066 +3381.829685 +3381.882199 +3381.893488 +3381.908040 +3381.920794 +3381.934014 +3381.947767 +3381.960221 +3381.972842 +3381.998916 +3382.030151 +3382.056158 +3382.069412 +3382.100214 +3382.130317 +3382.140541 +3382.167014 +3382.181366 +3382.208206 +3382.221426 +3382.250197 +3382.267147 +3382.277004 +3382.292422 +3382.345735 +3382.389058 +3382.402945 +3382.444203 +3382.471376 +3382.500580 +3382.543237 +3382.557723 +3382.570876 +3382.590224 +3382.599181 +3382.612868 +3382.642039 +3382.655359 +3382.699115 +3382.742105 +3382.850696 +3382.930150 +3382.958455 +3383.150896 +3383.165781 +3383.180766 +3383.196151 +3383.209704 +3383.239707 +3383.255924 +3383.270343 +3383.286260 +3383.314632 +3383.386460 +3383.401778 +3383.417396 +3383.431582 +3383.446167 +3383.475438 +3383.504409 +3383.519893 +3383.533413 +3383.549031 +3383.564515 +3383.579101 +3383.725054 +3383.758021 +3383.784595 +3383.800079 +3383.814598 +3383.889223 +3383.904009 +3383.934511 +3384.157055 +3384.171707 +3384.187325 +3384.202177 +3384.214398 +3384.245733 +3384.348597 +3384.362450 +3384.377202 +3384.600312 +3384.696349 +3384.713032 +3384.727218 +3384.742369 +3384.755556 +3384.771773 +3384.787025 +3384.802443 +3384.816495 +3384.832612 +3384.847631 +3384.863715 +3384.878600 +3393.351185 +3393.890812 +3394.261341 +3396.185348 +3396.892840 +3396.895771 +3397.261072 +3397.893439 +3398.893304 +3398.895236 +3399.893237 +3404.992099 +3405.092665 +3405.094164 +3405.193065 +3405.194530 +3405.293431 +3405.294896 +3405.393697 +3405.394230 +3405.398226 +3405.493498 +3405.494996 +3405.593830 +3405.693930 +3405.695595 +3405.793997 +3405.893963 +3405.896095 +3405.993830 +3405.995295 +3406.093797 +3406.095428 +3406.193963 +3406.194529 +3406.196594 +3406.293930 +3406.296194 +3406.393930 +3406.395894 +3406.493863 +3406.594029 +3406.596826 +3406.693929 +3406.695961 +3406.793996 +3406.894662 +3406.895361 +3407.094129 +3407.096093 +3407.194029 +3407.196027 +3407.393929 +3407.395927 +3407.493795 +3407.496359 +3407.593928 +3407.694061 +3407.695826 +3407.793995 +3407.798923 +3407.893928 +3407.895460 +3407.898557 +3407.994094 +3407.995959 +3408.095926 +3408.098523 +3408.193961 +3408.293928 +3408.295959 +3408.393961 +3408.395526 +3408.493861 +3408.496192 +3408.594027 +3408.595359 +3408.693961 +3408.793927 +3408.795492 +3408.893827 +3408.896125 +3408.899155 +3408.993860 +3408.994526 +3408.996125 +3409.001852 +3409.093894 +3409.094493 +3409.095259 +3409.193860 +3409.293860 +3409.295592 +3409.393860 +3409.397689 +3409.401086 +3409.493893 +3409.593727 +3409.601485 +3409.695958 +3409.793959 +3409.795957 +3409.893893 +3414.903278 +3414.909306 +3415.193654 +3415.219628 +3415.256125 +3415.266382 +3415.436445 +3415.451230 +3415.534613 +3415.546168 +3415.548100 +3415.560687 +3415.574140 +3415.608639 +3415.610437 +3415.621126 +3415.647766 +3415.683098 +3415.695352 +3415.706541 +3415.731016 +3415.756724 +3415.777636 +3415.788625 +3415.801379 +3415.815499 +3415.829718 +3415.840873 +3415.854460 +3415.869578 +3415.877936 +3415.889258 +3415.901013 +3415.914067 +3415.936078 +3415.948066 +3415.959688 +3415.973940 +3415.981965 +3415.994886 +3416.020294 +3416.034479 +3416.043837 +3416.053227 +3416.056491 +3416.065448 +3416.068112 +3416.079468 +3416.092055 +3416.104210 +3416.116497 +3416.129518 +3416.145135 +3416.154393 +3416.158588 +3416.178469 +3416.181332 +3416.191622 +3416.205575 +3416.219161 +3416.221892 +3416.232548 +3416.245968 +3416.247466 +3416.259721 +3416.284696 +3416.289091 +3416.296850 +3416.299314 +3416.310736 +3416.313467 +3416.324089 +3416.336077 +3416.339441 +3416.348632 +3416.353527 +3416.361485 +3416.374273 +3416.386594 +3416.398515 +3416.412568 +3416.424123 +3416.431482 +3416.436810 +3416.448532 +3416.459687 +3416.474039 +3416.500480 +3416.503710 +3416.512801 +3416.526820 +3416.539074 +3416.553327 +3416.564715 +3416.567912 +3416.578834 +3416.591255 +3416.604575 +3416.617529 +3416.631249 +3416.644902 +3416.657822 +3416.670176 +3416.683396 +3416.697016 +3416.710869 +3416.724422 +3416.738575 +3416.743470 +3416.751328 +3416.789024 +3416.803310 +3416.817962 +3416.830083 +3416.843037 +3416.870875 +3416.882730 +3416.916796 +3416.922724 +3416.942903 +3416.970343 +3416.980699 +3417.045501 +3417.057022 +3417.098914 +3417.121824 +3417.148431 +3417.160119 +3417.172274 +3417.199780 +3417.214032 +3417.241871 +3417.281997 +3417.310835 +3417.349030 +3417.361851 +3417.374904 +3417.401611 +3417.416596 +3417.429683 +3417.472207 +3417.486992 +3417.499013 +3417.513466 +3417.541271 +3417.555890 +3417.583063 +3417.596616 +3417.610602 +3417.638507 +3417.680731 +3417.707804 +3417.722257 +3417.736409 +3417.750362 +3417.764647 +3417.808137 +3417.849329 +3417.865180 +3417.878467 +3417.892753 +3417.934977 +3417.963515 +3417.978700 +3417.992553 +3418.023055 +3418.036742 +3418.051294 +3418.080265 +3418.094884 +3418.109669 +3418.151560 +3418.166645 +3418.180664 +3418.209302 +3418.238839 +3418.268310 +3418.283095 +3418.327084 +3418.341603 +3418.370108 +3418.384360 +3418.428649 +3418.443501 +3418.458253 +3418.472372 +3418.487091 +3418.516428 +3418.531313 +3418.560717 +3418.590388 +3418.603574 +3418.619625 +3418.633378 +3418.648962 +3418.663814 +3418.678066 +3418.694550 +3418.708036 +3418.737540 +3418.753424 +3418.767077 +3418.782462 +3418.796848 +3418.826251 +3418.841803 +3418.856321 +3418.872505 +3418.885892 +3418.900744 +3418.915828 +3418.932578 +3418.945565 +3418.961516 +3418.976368 +3418.991120 +3419.022122 +3419.036175 +3419.051193 +3419.066544 +3419.080996 +3419.096548 +3419.111632 +3419.127616 +3419.141935 +3419.156654 +3419.187623 +3419.201909 +3419.217360 +3419.248129 +3419.262748 +3419.277700 +3419.293184 +3419.323454 +3419.367943 +3419.384026 +3419.400310 +3419.415162 +3419.429148 +3419.461316 +3419.580963 +3419.611865 +3419.643800 +3419.658618 +3419.702707 +3419.748195 +3419.779464 +3419.841469 +3422.940400 +3425.313091 +3425.423281 +3430.893106 +3431.894170 +3433.893602 +3434.107255 +3434.893834 +3435.150045 +3439.991232 +3440.292530 +3440.392797 +3440.492896 +3440.495327 +3440.693496 +3440.694794 +3440.792730 +3440.794395 +3440.892896 +3440.992896 +3441.093029 +3441.094494 +3441.192929 +3441.194960 +3441.292762 +3441.396625 +3441.492962 +3441.494860 +3441.592962 +3441.595093 +3441.692762 +3441.792995 +3441.794926 +3441.892995 +3441.992928 +3441.995859 +3442.098955 +3442.194859 +3442.297690 +3442.392928 +3442.492728 +3442.494693 +3442.497490 +3442.592894 +3442.594459 +3442.596591 +3442.692794 +3442.694659 +3442.792894 +3442.794792 +3442.892761 +3442.894326 +3442.992761 +3442.994526 +3442.997156 +3443.092827 +3443.097489 +3443.192761 +3443.200919 +3443.292927 +3443.392760 +3443.394592 +3443.492760 +3443.494392 +3443.500453 +3443.592727 +3443.597222 +3443.692860 +3443.694492 +3443.700286 +3443.792727 +3443.797389 +3443.892993 +3443.896789 +3443.992793 +3444.000152 +3444.094358 +3444.096556 +3444.099386 +3444.192460 +3444.197355 +3444.200119 +3444.292693 +3444.296289 +3444.299986 +3444.392726 +3444.397388 +3444.399253 +3444.492693 +3444.496855 +3444.499353 +3444.592693 +3444.599586 +3444.600352 +3444.692726 +3444.694324 +3444.698953 +3444.794357 +3444.796255 +3444.799053 +3444.892692 +3444.897154 +3444.899352 +3447.846635 +3449.891955 +3449.902677 +3449.916264 +3449.950263 +3449.961685 +3449.963117 +3449.973839 +3449.975937 +3450.004509 +3450.013000 +3450.025987 +3450.058621 +3450.070609 +3450.083496 +3450.094352 +3450.104542 +3450.116463 +3450.129550 +3450.169011 +3450.177635 +3450.191555 +3450.201045 +3450.212001 +3450.235045 +3450.244768 +3450.257189 +3450.269577 +3450.289856 +3450.299080 +3450.310669 +3450.322257 +3450.335044 +3450.347732 +3450.360053 +3450.372607 +3450.384695 +3450.397882 +3450.408338 +3450.421525 +3450.433979 +3450.446566 +3450.459220 +3450.471841 +3450.483829 +3450.493952 +3450.513899 +3450.523423 +3450.535977 +3450.556456 +3450.569909 +3450.582463 +3450.608404 +3450.614232 +3450.621025 +3450.632946 +3450.644335 +3450.647365 +3450.657055 +3450.668611 +3450.682030 +3450.695717 +3450.707039 +3450.716762 +3450.741871 +3450.754058 +3450.766446 +3450.775104 +3450.786060 +3450.797781 +3450.810768 +3450.813965 +3450.823722 +3450.836010 +3450.840538 +3450.848664 +3450.852859 +3450.862084 +3450.865247 +3450.873805 +3450.874171 +3450.884927 +3450.896582 +3450.907272 +3450.921757 +3450.933579 +3450.945700 +3450.957821 +3450.967911 +3451.008037 +3451.008837 +3451.020125 +3451.036376 +3451.041038 +3451.048164 +3451.059919 +3451.064814 +3451.072140 +3451.086093 +3451.097781 +3451.123788 +3451.136143 +3451.147997 +3451.173638 +3451.185593 +3451.195350 +3451.207837 +3451.228683 +3451.241803 +3451.254824 +3451.267744 +3451.279932 +3451.294118 +3451.304507 +3451.315796 +3451.354591 +3451.381097 +3451.391753 +3451.455157 +3451.542769 +3451.594018 +3451.740271 +3451.778366 +3451.866412 +3452.145099 +3452.637440 +3453.299910 +3453.872836 +3453.887588 +3454.131045 +3454.363345 +3454.569206 +3454.699642 +3454.744331 +3454.915792 +3454.948260 +; +0.043623 +0.068565 +0.072561 +0.096603 +0.108192 +0.140692 +0.151082 +0.168598 +0.172461 +0.190409 +0.191508 +0.197336 +0.225008 +0.242990 +0.251082 +0.264469 +0.266933 +0.291442 +0.310023 +0.838094 +0.845587 +0.898933 +0.914218 +0.931900 +0.941657 +0.965667 +0.966732 +0.967398 +0.979020 +0.987412 +0.988111 +1.003729 +1.015517 +1.025806 +1.029103 +1.041491 +1.051780 +1.059340 +1.092440 +1.104994 +1.105260 +1.106326 +1.106759 +1.128937 +1.141424 +1.145753 +1.146819 +1.218247 +1.609555 +1.610022 +1.635962 +1.655476 +1.682016 +1.694071 +1.711786 +1.724540 +1.743521 +1.746352 +1.756575 +1.789808 +2.826271 +2.842055 +2.842421 +2.879251 +2.882748 +2.883181 +2.900963 +2.933297 +3.043587 +3.072391 +3.098265 +3.122608 +3.143686 +3.144486 +3.187210 +3.200496 +3.210686 +3.211119 +3.212384 +3.223806 +3.237692 +3.264765 +3.285245 +3.301295 +3.927136 +4.021907 +4.052077 +4.072390 +4.528867 +4.533162 +4.561534 +4.809719 +4.912083 +5.984809 +6.043251 +6.056537 +6.080746 +6.116910 +6.180413 +6.182045 +6.205855 +6.225368 +6.251076 +6.253274 +6.313247 +6.804289 +6.830096 +6.830496 +6.890736 +7.426233 +7.496363 +7.521737 +7.536556 +7.576882 +7.629796 +7.638354 +8.814277 +8.863028 +8.894430 +8.894863 +8.930361 +8.933058 +8.943248 +8.991666 +9.015642 +9.032592 +9.063328 +9.157500 +9.181842 +9.182142 +9.199458 +9.251905 +10.265291 +10.279344 +10.285870 +10.287202 +10.303420 +10.304052 +10.322967 +10.331691 +10.351938 +10.368954 +10.369254 +10.382940 +10.434488 +10.465990 +10.488201 +10.498558 +10.512211 +10.564625 +10.614175 +10.680575 +10.742547 +10.744778 +11.737617 +11.813042 +11.856698 +11.908047 +11.908246 +11.952469 +11.975313 +11.997857 +12.006182 +12.290098 +12.292096 +12.357230 +12.485169 +12.816337 +12.836784 +13.258428 +13.286533 +13.328525 +13.350902 +13.363889 +13.403416 +13.423297 +13.444808 +13.541045 +13.553932 +13.614738 +13.644142 +13.918967 +14.518500 +14.567118 +14.597488 +14.600452 +14.624627 +14.652366 +14.664121 +14.670348 +14.690128 +14.719532 +14.731620 +14.733185 +14.750202 +14.750868 +14.759359 +14.761324 +14.826892 +14.829422 +14.844807 +16.085199 +16.098785 +16.118932 +16.139677 +16.154563 +16.172545 +16.214336 +16.215035 +16.230720 +16.232851 +16.234483 +16.253364 +16.275408 +16.325158 +16.366550 +17.512204 +17.533782 +17.541707 +17.567914 +17.573509 +17.589826 +17.612403 +17.617931 +17.636013 +17.646369 +17.666050 +17.685963 +17.701081 +18.142306 +18.144204 +18.239209 +18.272709 +19.212568 +19.223657 +19.249664 +19.265116 +19.306108 +19.336378 +19.359854 +19.933480 +20.316696 +20.332780 +20.343403 +20.347499 +20.358754 +20.375304 +20.408837 +20.413233 +20.438608 +20.441305 +20.463183 +20.468544 +20.600312 +20.616063 +20.638907 +20.678501 +20.706506 +20.744734 +22.336042 +23.093217 +23.354955 +23.759383 +23.778065 +23.784225 +23.799377 +23.799743 +23.808401 +23.819457 +23.835341 +23.836240 +23.855687 +23.883160 +23.898311 +23.902707 +23.928914 +23.951791 +23.962047 +23.982327 +24.023619 +24.958916 +26.264875 +26.265508 +27.448258 +27.453419 +27.473532 +27.506100 +27.511461 +27.532407 +27.570169 +27.583655 +27.633605 +27.669103 +27.696942 +27.718853 +27.781224 +27.782456 +27.796276 +27.814258 +27.834937 +27.872433 +27.897508 +27.919219 +28.197774 +28.249622 +28.273931 +28.293978 +28.330474 +28.333471 +28.354217 +28.365539 +28.393978 +28.447158 +28.467437 +28.500371 +28.549655 +28.568336 +28.592412 +28.630374 +28.686884 +28.819918 +30.088182 +30.099337 +30.099570 +30.115787 +30.117519 +30.135601 +30.228475 +30.246090 +30.261275 +30.262207 +30.314189 +30.314788 +30.342727 +30.348121 +30.363706 +30.376793 +30.391278 +30.425810 +30.452384 +30.477625 +30.526343 +30.526843 +30.542627 +30.547422 +30.556280 +30.566969 +30.570332 +30.578491 +30.588414 +30.596972 +30.612823 +30.641628 +30.652084 +31.835366 +31.868333 +31.875992 +31.919915 +31.935499 +31.944124 +31.952149 +31.960840 +31.975759 +32.041526 +32.051250 +32.078456 +32.087380 +32.115619 +32.131669 +33.330370 +33.359008 +33.373826 +33.382817 +33.404329 +33.406726 +33.418914 +33.447352 +33.458508 +33.500233 +33.528638 +33.528871 +33.532401 +33.551848 +33.552514 +33.566633 +33.624742 +33.643057 +33.709923 +34.697002 +34.720478 +34.743755 +34.775656 +34.796502 +34.808590 +34.809123 +34.821211 +34.834897 +34.859905 +34.899399 +34.901930 +34.916016 +34.997900 +35.018047 +35.023408 +35.024807 +35.046585 +35.061503 +35.077887 +36.159804 +36.173757 +36.201429 +36.227769 +36.242188 +36.254443 +36.268129 +36.278019 +36.282281 +36.316081 +36.325438 +36.342288 +36.356773 +36.372058 +36.380849 +36.398365 +36.405425 +36.417413 +36.444519 +36.480982 +36.497100 +36.919344 +36.958238 +37.688041 +37.731298 +37.748647 +37.779383 +37.780182 +37.798697 +37.849213 +37.853742 +37.912516 +37.932196 +37.932430 +37.940055 +37.945849 +37.953275 +37.976685 +37.980215 +38.284544 +38.307487 +38.345416 +38.373854 +38.375020 +38.406155 +38.414847 +38.460135 +38.471623 +38.489439 +39.402591 +39.406088 +39.523903 +39.689837 +40.484775 +40.505887 +40.544382 +40.613413 +40.689436 +40.702590 +40.770056 +41.453638 +41.496562 +41.497528 +41.518973 +41.544614 +41.612346 +41.649908 +42.144114 +43.064825 +43.085971 +43.101922 +43.558698 +43.582940 +43.612610 +43.612877 +43.638052 +43.638817 +43.660596 +43.676280 +43.686603 +43.717505 +43.734988 +43.757832 +43.759830 +43.805517 +43.806583 +43.832257 +43.833589 +43.891897 +43.945910 +44.681907 +44.695793 +44.700322 +44.720901 +44.741214 +44.753535 +44.770884 +44.781107 +44.808613 +44.831057 +44.855333 +44.875713 +44.890132 +44.925196 +45.023531 +45.038217 +46.990229 +47.003150 +47.021498 +47.025627 +47.046973 +47.088964 +47.117102 +47.140745 +47.191594 +47.262956 +47.275710 +47.295590 +47.337315 +48.378140 +48.385433 +48.411873 +48.425826 +48.459592 +48.462123 +48.478739 +48.491860 +48.505113 +48.516535 +48.533418 +48.561223 +48.583768 +48.594324 +48.594557 +48.662622 +48.671879 +48.693325 +48.729688 +48.744107 +48.765019 +48.768516 +48.781070 +48.792758 +48.803381 +48.826858 +48.827290 +48.833484 +48.844074 +48.852598 +48.862688 +48.879472 +49.387563 +49.422661 +49.446104 +49.450000 +49.477107 +49.499185 +49.581436 +49.700283 +49.716167 +49.719697 +49.744339 +49.780203 +49.897519 +51.793321 +52.737876 +52.770610 +52.848565 +53.849430 +53.893586 +54.075137 +54.120991 +54.174571 +55.321057 +55.372405 +55.412665 +55.444933 +55.461150 +55.478466 +55.494250 +55.515462 +55.536308 +55.547763 +56.591019 +56.722154 +56.737206 +56.770606 +56.795215 +58.180295 +58.213828 +58.720288 +58.826881 +58.852622 +58.906468 +59.481592 +59.639001 +60.003004 +62.645925 +62.732105 +62.756347 +62.800770 +62.833104 +62.862241 +62.929008 +63.866037 +63.885451 +63.888681 +63.897239 +63.902400 +63.923746 +63.928374 +63.932037 +63.951584 +63.978191 +64.006663 +64.024811 +64.042560 +64.061208 +64.083919 +64.101568 +64.159510 +64.202200 +64.239063 +64.243226 +64.244191 +64.262207 +64.300835 +64.303965 +64.323512 +64.353049 +64.357411 +65.297670 +65.328173 +65.386515 +65.479655 +65.511490 +65.512522 +65.533301 +65.533734 +65.546954 +65.550351 +65.608726 +65.663304 +65.663504 +65.663637 +65.713088 +65.713521 +65.747653 +65.780187 +65.782518 +65.783284 +65.796771 +65.799301 +65.828905 +65.834999 +65.849052 +65.850250 +65.876224 +66.809990 +66.836896 +66.845654 +66.868132 +66.895904 +66.929703 +66.962970 +66.969230 +66.981019 +67.005527 +67.030436 +67.049117 +67.062604 +67.086313 +67.086746 +67.103496 +67.125640 +67.146653 +67.170928 +67.198234 +67.208824 +67.221112 +67.278487 +67.280885 +67.338594 +67.659373 +67.678121 +67.690309 +67.693572 +67.712520 +67.728937 +68.325340 +68.386512 +68.424907 +68.461170 +68.496102 +68.522975 +68.524307 +68.545219 +68.577554 +68.619145 +68.638160 +69.075222 +69.113717 +69.737293 +69.765664 +69.789840 +69.829334 +69.829900 +69.869760 +70.052644 +70.085911 +70.509520 +70.520342 +70.525670 +70.594035 +70.603193 +70.607788 +70.619010 +70.653542 +70.702660 +70.734761 +70.764365 +70.818577 +70.859902 +71.932396 +71.933894 +71.996065 +72.010118 +72.072555 +72.173488 +72.388972 +72.911083 +72.914746 +72.956137 +72.958235 +72.979114 +72.989704 +73.118708 +73.759500 +73.839020 +73.855437 +73.856603 +73.895963 +74.049976 +74.055204 +74.258467 +74.264861 +74.459233 +74.469156 +74.498960 +74.504221 +74.514011 +74.577048 +74.577415 +74.578247 +74.604687 +75.293864 +75.341050 +75.389568 +75.398559 +75.440750 +75.453038 +75.470287 +75.470987 +75.496561 +75.530461 +75.550307 +75.582775 +75.585705 +75.602555 +75.617407 +75.627830 +75.638053 +75.686737 +75.748309 +75.796528 +75.808982 +75.825931 +75.897959 +75.918406 +75.919371 +75.973917 +76.016208 +76.907549 +76.943713 +76.953936 +76.956833 +77.031891 +77.045078 +77.064891 +77.094761 +77.113975 +77.127429 +77.145377 +77.147808 +77.213076 +77.252270 +77.294328 +77.310146 +77.320169 +77.343379 +77.359363 +77.506649 +77.507981 +77.534455 +77.538717 +77.558364 +77.575580 +77.608980 +77.647308 +77.984504 +78.046675 +78.094527 +78.123665 +78.125563 +78.468053 +78.480274 +78.500954 +78.553901 +78.596525 +78.661593 +78.700454 +78.822232 +78.852868 +79.974945 +79.995991 +80.042544 +80.052401 +80.067586 +80.080706 +80.089330 +80.092261 +80.117602 +80.130556 +80.149504 +80.185767 +80.187266 +80.204016 +80.204182 +80.222830 +80.223796 +80.245075 +80.295091 +80.330456 +81.310741 +81.322896 +81.385766 +81.413039 +81.424660 +81.430721 +81.431254 +81.448836 +81.486698 +81.487464 +81.537148 +81.551001 +81.660591 +81.699552 +81.779638 +82.715002 +82.723893 +82.777173 +82.781602 +82.790393 +82.844406 +82.853597 +82.965784 +82.997719 +83.033783 +84.152430 +84.214501 +84.242340 +84.275041 +84.314501 +84.338677 +84.367315 +84.393289 +84.420828 +84.458424 +84.503312 +84.529885 +84.583232 +86.039874 +86.297549 +87.424555 +87.438341 +87.514032 +87.628617 +87.718793 +87.785060 +87.786026 +87.823822 +87.825087 +87.865580 +87.866113 +88.225486 +88.279099 +88.479099 +88.502875 +88.860118 +88.908636 +88.978732 +89.014297 +89.039804 +89.814129 +89.850193 +90.466210 +90.497645 +90.525484 +90.552557 +90.570905 +90.594182 +90.692450 +90.710632 +90.755554 +90.776100 +90.801807 +90.837605 +90.837805 +90.855787 +90.886622 +90.920522 +90.944431 +90.953189 +90.996346 +91.050092 +92.165276 +92.178629 +92.178862 +92.181426 +92.223218 +92.239035 +92.255419 +92.269338 +92.313794 +92.314327 +92.346394 +93.195877 +93.244396 +93.255984 +93.297043 +93.309863 +93.310529 +93.322384 +93.366940 +93.387019 +93.397009 +93.421485 +93.439700 +93.460513 +93.496144 +93.499973 +93.553786 +94.793745 +94.975163 +95.022016 +95.081523 +95.089182 +95.199605 +96.083387 +96.740463 +96.740696 +96.793243 +96.806430 +96.823413 +96.863440 +96.893776 +96.919250 +96.955381 +96.970233 +96.986083 +96.994941 +97.009560 +97.040229 +97.062440 +97.064705 +97.816985 +97.853049 +97.872929 +97.901933 +97.939795 +98.426908 +98.434534 +98.452682 +98.502965 +98.534733 +98.615919 +98.702698 +98.749785 +99.719780 +99.792008 +100.407226 +100.436596 +100.436863 +100.443456 +100.453945 +100.475624 +100.482184 +100.493373 +100.545787 +100.559407 +100.625773 +100.654278 +100.664135 +100.679120 +100.681951 +100.700965 +100.703163 +100.719446 +100.767032 +100.795470 +100.830901 +100.865533 +100.879320 +100.930901 +100.992739 +100.992906 +100.993039 +100.993605 +100.997202 +101.002796 +101.030102 +101.046719 +101.062836 +101.112253 +101.168430 +101.171427 +102.285612 +102.292738 +102.298965 +102.312219 +102.332032 +102.341523 +102.342522 +102.343587 +102.376754 +102.380350 +102.382648 +102.394070 +102.408156 +102.428469 +102.470027 +102.503594 +102.649381 +102.672258 +103.581415 +103.632863 +103.681648 +103.699730 +103.700229 +103.840789 +103.849913 +103.952710 +103.960535 +104.032730 +104.061701 +104.554441 +104.566495 +104.573755 +104.590405 +104.597065 +104.622673 +104.646482 +104.659935 +104.668826 +104.683811 +104.704491 +104.712616 +104.727068 +104.765729 +104.792269 +104.815979 +105.140687 +105.221007 +105.353308 +105.554407 +105.581346 +105.588273 +105.624570 +105.625669 +105.642885 +105.665429 +105.683244 +105.685708 +105.700194 +105.730797 +105.745249 +105.753174 +105.758702 +105.778216 +105.828932 +105.860367 +105.900826 +105.919874 +106.687273 +106.737622 +106.764562 +106.803656 +106.828265 +106.895531 +106.952008 +106.959167 +107.575883 +107.597262 +107.609250 +107.618607 +107.627698 +107.638387 +107.662163 +107.663262 +107.680945 +107.692033 +107.708217 +107.735457 +107.784641 +107.793898 +107.795030 +107.812346 +107.832127 +107.852639 +107.853572 +109.314210 +109.332824 +109.393897 +109.412245 +109.418539 +109.419604 +109.439617 +109.488602 +109.498059 +109.521036 +109.530593 +109.538252 +109.555934 +109.611312 +109.634089 +109.637120 +109.675215 +109.687669 +109.689467 +109.691698 +109.724932 +109.736853 +109.762261 +109.763327 +109.791665 +111.375713 +111.415073 +111.487501 +111.533555 +111.573848 +111.612409 +112.731456 +112.782505 +112.819434 +112.820067 +112.891529 +113.002484 +113.028358 +113.076743 +113.105947 +113.139580 +113.187466 +113.243343 +113.292427 +114.476276 +114.840345 +114.840578 +114.853798 +114.891094 +114.995856 +115.010774 +115.533850 +115.550267 +115.554730 +115.581669 +115.603248 +115.619098 +115.638979 +115.689361 +116.444805 +116.528621 +116.538012 +116.559524 +116.586064 +116.586597 +116.972311 +117.034049 +117.059923 +117.085797 +117.145903 +117.199483 +117.275241 +117.718630 +117.753529 +118.126755 +118.141673 +118.153528 +118.175473 +118.221693 +118.241207 +118.277471 +118.702445 +119.450563 +119.484762 +119.511336 +119.515498 +119.528918 +119.615398 +119.639607 +119.673207 +119.701079 +119.732714 +119.745501 +119.837875 +119.870343 +119.876270 +119.910503 +119.927452 +120.116830 +120.133912 +120.982929 +121.011234 +121.039173 +121.061417 +121.222256 +122.578998 +122.609967 +122.645498 +122.651825 +122.676201 +122.680597 +122.732212 +122.836674 +122.853257 +122.854289 +123.254955 +123.256687 +123.840369 +124.022387 +124.074901 +124.110632 +124.123086 +124.181994 +124.325050 +124.734574 +124.848593 +124.892815 +125.298210 +125.315226 +125.346961 +125.358250 +125.359515 +125.373501 +125.395446 +125.458116 +125.499408 +126.415858 +126.585887 +126.606067 +126.690050 +127.689349 +128.074531 +128.075296 +128.143528 +128.166439 +129.053584 +129.087716 +129.101935 +129.102535 +129.126278 +129.157513 +129.244393 +129.283387 +129.310094 +129.323813 +129.473031 +130.860841 +130.947588 +131.804597 +131.840827 +131.852882 +131.879955 +131.897470 +131.898370 +131.909259 +131.919548 +132.549285 +132.573127 +132.610956 +132.647853 +132.659275 +132.668865 +132.674659 +132.700367 +132.729038 +132.750517 +132.761206 +132.767899 +132.780220 +132.788012 +132.842125 +132.849684 +133.400033 +133.418581 +133.451182 +133.493240 +133.526540 +133.543423 +133.554512 +133.567765 +133.606959 +133.613320 +133.650016 +133.653080 +133.665601 +133.682683 +133.697236 +133.721078 +133.742590 +133.757775 +134.238460 +134.250981 +134.275057 +134.418980 +134.443888 +134.468896 +134.498600 +134.509090 +134.540225 +134.548717 +134.553945 +134.558873 +135.292772 +135.426371 +135.483581 +135.547916 +135.549248 +135.549648 +135.557873 +135.570793 +135.627170 +135.654210 +135.921742 +135.957506 +135.978419 +136.030567 +136.149880 +136.165798 +136.924205 +136.936726 +136.952144 +136.981282 +137.010286 +137.013882 +137.156839 +137.157638 +137.192071 +137.280549 +137.332530 +137.363266 +137.389939 +137.409586 +137.415014 +137.458337 +137.500029 +137.517811 +137.610452 +137.611984 +137.666196 +137.671491 +137.696199 +137.698097 +137.713249 +137.713582 +137.741654 +137.849979 +137.851411 +137.887508 +138.194034 +138.247647 +138.285076 +138.313948 +138.326169 +138.326502 +138.342119 +138.354207 +138.370391 +138.389971 +138.403691 +138.416711 +138.421873 +138.439822 +138.449612 +138.464430 +138.516811 +138.517344 +138.538556 +138.553874 +138.643884 +138.675985 +138.701859 +138.712482 +138.743251 +138.752375 +138.779215 +138.790371 +138.815013 +138.819242 +138.831596 +138.834360 +138.888273 +138.894433 +138.902858 +138.903457 +139.037890 +139.075352 +139.097896 +139.102258 +139.217876 +139.985807 +139.998794 +140.092201 +140.094299 +140.108984 +140.111681 +140.131462 +140.133959 +140.199061 +140.199327 +140.235591 +140.268325 +142.159032 +142.340017 +142.344147 +142.846744 +142.847010 +142.908648 +143.621202 +143.662594 +143.701455 +143.707116 +143.732823 +143.759929 +143.762727 +143.822900 +143.830692 +143.863959 +143.954168 +143.961328 +143.989533 +144.008880 +144.016706 +144.019769 +144.081541 +144.092130 +144.735253 +144.748939 +144.807814 +144.912143 +145.062659 +145.088966 +145.100887 +145.142545 +145.156332 +145.234820 +145.235985 +145.866621 +145.888699 +145.987133 +145.989964 +146.879840 +146.950236 +146.993892 +147.012740 +147.017202 +147.064288 +147.064488 +147.078607 +147.145307 +147.158761 +147.217535 +147.222996 +147.224661 +147.272547 +147.344008 +147.501617 +148.472412 +148.490627 +148.508809 +148.587331 +148.604813 +148.622329 +148.623161 +148.632186 +148.690760 +148.759591 +149.139711 +149.313604 +150.030886 +150.031385 +150.108841 +150.202547 +150.296620 +150.306643 +150.334182 +150.488361 +151.417165 +151.435746 +151.455593 +151.623158 +151.677770 +151.707541 +151.722026 +151.722526 +152.129751 +152.162086 +152.429951 +152.541073 +152.590723 +152.605309 +152.620993 +152.668279 +153.375304 +153.382830 +153.400479 +153.460486 +153.469777 +153.515731 +153.530516 +153.754791 +153.774838 +153.932480 +153.933279 +153.981664 +154.080832 +154.225420 +155.052659 +155.101243 +155.122389 +155.166678 +155.270241 +155.289622 +156.001309 +156.657819 +156.726883 +156.761748 +156.775035 +156.797079 +156.890519 +156.959716 +156.961714 +157.007535 +157.209533 +157.279463 +157.413029 +157.802173 +157.810498 +157.826416 +157.846529 +157.948693 +158.211663 +158.213062 +158.320155 +158.360081 +158.608166 +158.619222 +158.912795 +158.913894 +158.947760 +159.007999 +159.380826 +159.508998 +159.712861 +159.859514 +159.878761 +159.981925 +160.010130 +160.011129 +160.225447 +160.237902 +160.288051 +160.345760 +160.404035 +160.409297 +160.561045 +160.568104 +160.568537 +160.874997 +160.896376 +160.916456 +160.917688 +160.958913 +160.991547 +160.998141 +161.012293 +161.029576 +161.051088 +161.067638 +161.081257 +161.104734 +161.134571 +161.159113 +161.166605 +161.180558 +161.197208 +161.197574 +161.225813 +161.233672 +161.242363 +161.243029 +161.252320 +161.270168 +161.301137 +161.313392 +161.329143 +161.339199 +161.346292 +161.384554 +161.403901 +161.417654 +161.504833 +161.507331 +161.543162 +161.556682 +161.566438 +161.581590 +161.598173 +161.620018 +161.626845 +161.656748 +161.673631 +161.689049 +161.815522 +161.942229 +162.019119 +162.026744 +162.086351 +162.161609 +162.189448 +162.214390 +162.236201 +162.249888 +162.260344 +162.294876 +162.317587 +162.323747 +162.327543 +162.333837 +162.335002 +162.364340 +162.384619 +162.399804 +162.409894 +162.421283 +162.424813 +162.433504 +162.460677 +162.462808 +162.488615 +162.513524 +162.542062 +162.558612 +162.587416 +162.588116 +162.614123 +162.636967 +162.677826 +162.691612 +162.713457 +162.728375 +162.781056 +162.800736 +162.829840 +162.861376 +163.069034 +163.089014 +163.225311 +163.327909 +163.347322 +163.410759 +163.480989 +163.481655 +163.487682 +163.545124 +163.547422 +163.560043 +163.570000 +163.586783 +163.594941 +163.605164 +163.614555 +163.660809 +163.726177 +163.907928 +164.061408 +164.073362 +164.098903 +164.157611 +164.232370 +164.241394 +164.354947 +164.356312 +164.386715 +164.424078 +164.429306 +164.477957 +164.521547 +164.567767 +164.583718 +164.715020 +164.719282 +164.731537 +164.752549 +164.777824 +164.779855 +164.852449 +164.882652 +164.914454 +164.918949 +164.954780 +164.963238 +164.977924 +165.007627 +165.009026 +165.009592 +165.153548 +165.227674 +165.274493 +165.275093 +165.283218 +165.300567 +165.336132 +165.360241 +165.370164 +165.412988 +165.439628 +165.530137 +165.578622 +165.672462 +165.694140 +165.704696 +165.738362 +165.831336 +165.840327 +165.855445 +165.856078 +165.870530 +165.894040 +165.909591 +165.979954 +166.009125 +166.025941 +166.052581 +166.099601 +166.143523 +166.191276 +166.197503 +166.247586 +166.315884 +166.363636 +166.515851 +166.546920 +166.564735 +166.611588 +166.613020 +166.633600 +166.717649 +166.719847 +166.842957 +166.870462 +166.916017 +166.928238 +166.992907 +167.038794 +167.046153 +167.049417 +167.049616 +167.060039 +167.064502 +167.104894 +167.159407 +167.205094 +167.217049 +167.273892 +167.282317 +167.305993 +167.339626 +167.347219 +167.381451 +167.390109 +167.391141 +167.441491 +167.488777 +167.504428 +167.518447 +167.546686 +167.641924 +167.916782 +167.917881 +168.118480 +168.165533 +168.178553 +168.179352 +168.182249 +168.206791 +168.307724 +168.308756 +168.358839 +168.418147 +168.499565 +168.526571 +168.738093 +168.779685 +168.795902 +168.901962 +168.927104 +168.928502 +168.982515 +168.985745 +169.194603 +169.206591 +169.246484 +169.247383 +169.276587 +169.287010 +169.290673 +169.303693 +169.326704 +169.351845 +169.353510 +169.411719 +169.451446 +169.699531 +169.700663 +169.753477 +169.761102 +169.762234 +169.791838 +169.801096 +169.801595 +169.834296 +169.862501 +169.902594 +170.181914 +170.210486 +170.289806 +170.306856 +170.366729 +171.494401 +171.640554 +171.668093 +171.727700 +171.750744 +171.779881 +171.804956 +171.866528 +171.886974 +171.890238 +171.921540 +171.976918 +171.986108 +172.119908 +172.127600 +172.174220 +172.228299 +172.229065 +172.316744 +172.381746 +173.042151 +173.245814 +173.264629 +173.282777 +174.195397 +174.532360 +174.607917 +175.083008 +175.110481 +175.121503 +175.456201 +175.484173 +175.619738 +175.682808 +175.694796 +175.783507 +175.842115 +175.962062 +175.991532 +176.557965 +176.609081 +176.622201 +176.828994 +176.944745 +177.010978 +177.025131 +177.100322 +177.423099 +177.439183 +177.494161 +177.497991 +177.527961 +177.765956 +177.776579 +177.810012 +177.819869 +177.838051 +177.845010 +178.195693 +178.312609 +178.534920 +178.676578 +178.678676 +178.688466 +178.796391 +178.864656 +178.888999 +178.925762 +178.993993 +179.682704 +180.007912 +180.105081 +180.224828 +180.257629 +180.273613 +180.365487 +180.498388 +180.584135 +180.758794 +180.836982 +180.891094 +181.008277 +182.010208 +182.370680 +182.630254 +182.650633 +182.653464 +186.585927 +187.133179 +187.233712 +187.290389 +187.455923 +187.466879 +187.476835 +187.519126 +187.590488 +187.804807 +187.850262 +187.936109 +187.936875 +188.077468 +188.097947 +188.124953 +188.196448 +188.231247 +188.274670 +188.455989 +188.495083 +188.707370 +189.079698 +189.129115 +190.680595 +191.606835 +191.822752 +191.865109 +191.894214 +191.903704 +192.394746 +192.410663 +192.809065 +193.207765 +193.309996 +193.311728 +193.406467 +193.609730 +193.610129 +193.611728 +193.805933 +193.812627 +194.111161 +194.112526 +194.212027 +194.309962 +194.311727 +194.608230 +194.608796 +194.610428 +194.709229 +194.710761 +194.808297 +194.812026 +195.010727 +195.011160 +195.111327 +195.144993 +195.230141 +195.256714 +195.416954 +195.614057 +195.626444 +195.663541 +195.687683 +195.704932 +195.772798 +195.804966 +195.805665 +195.817786 +195.824346 +195.858978 +195.871033 +195.909195 +195.913557 +195.934603 +196.379491 +196.390746 +196.425544 +196.563373 +196.623513 +196.703333 +196.744425 +196.747289 +196.823280 +196.892510 +196.917452 +197.001035 +197.102700 +197.251384 +197.333036 +197.370199 +197.468301 +197.475160 +197.523046 +197.554448 +197.555647 +197.583086 +197.751750 +197.831004 +197.884984 +197.931470 +197.938796 +197.973095 +198.045223 +198.065037 +198.071131 +198.126242 +198.142393 +198.157411 +198.195939 +198.228406 +198.238463 +198.395772 +198.399102 +198.438363 +198.469831 +198.532868 +198.638896 +198.648153 +198.700767 +198.773494 +198.820147 +198.839228 +198.843124 +198.954147 +198.957477 +198.996404 +199.014220 +199.046121 +199.093074 +199.125808 +199.251316 +199.507160 +199.543590 +199.788978 +199.917183 +200.007659 +200.124109 +200.371661 +200.385547 +200.392474 +200.444588 +200.475024 +200.593306 +200.722310 +200.878287 +200.922676 +201.077421 +201.503528 +201.516981 +201.619512 +201.802995 +201.875456 +202.173724 +202.229401 +202.318879 +202.729601 +202.805924 +202.876420 +202.899331 +203.474821 +205.254440 +205.292702 +205.301193 +205.302559 +205.310750 +205.315146 +205.353108 +208.342382 +210.144112 +210.183772 +211.012576 +211.163092 +211.250938 +211.987400 +212.009212 +213.318102 +215.776641 +215.853231 +216.864085 +216.893856 +217.883731 +217.912236 +218.019928 +218.353561 +218.926155 +218.933814 +220.044069 +220.126886 +220.334978 +220.431714 +221.678233 +221.683228 +221.684327 +221.728616 +221.798846 +223.004872 +223.055821 +223.097646 +223.352024 +223.353256 +225.769238 +227.441031 +227.441264 +227.461644 +227.510662 +227.515657 +227.522283 +227.544727 +227.639200 +227.646792 +227.653419 +227.669869 +227.691181 +227.715956 +227.792246 +227.814890 +227.827378 +227.828011 +228.953784 +229.001602 +229.031539 +229.082621 +229.093011 +229.102668 +229.114256 +229.218352 +229.956147 +230.685717 +230.728807 +232.180121 +232.350817 +236.936693 +237.056573 +237.298730 +238.624470 +238.806221 +238.854473 +238.880047 +238.905788 +238.925968 +238.979648 +238.997263 +239.016278 +239.019907 +239.053840 +239.070757 +239.073587 +239.111183 +239.135825 +239.200460 +239.851808 +239.880146 +239.887339 +239.946280 +240.006520 +240.123536 +240.163563 +240.176583 +240.265860 +240.283676 +240.312480 +240.364528 +240.414478 +240.446313 +240.459300 +240.472387 +240.555737 +240.557568 +240.564228 +240.658034 +240.693466 +240.718141 +241.688503 +241.859132 +241.893831 +241.936854 +241.959731 +241.981709 +242.023667 +242.077147 +242.102389 +242.725198 +243.121435 +243.161995 +243.190233 +243.219537 +243.288068 +243.750439 +244.634953 +244.755266 +244.778743 +244.831157 +244.885503 +245.364656 +245.389931 +246.160626 +246.191196 +246.216770 +246.364123 +246.401252 +246.449171 +246.464855 +246.469384 +246.506846 +246.518302 +246.540879 +246.583270 +246.630556 +246.656596 +246.673613 +246.698621 +247.038414 +247.153099 +247.163323 +247.812939 +248.497520 +248.508776 +248.521463 +248.537980 +248.539711 +248.563687 +248.655029 +248.666618 +248.670281 +248.693990 +248.696554 +248.716301 +249.038412 +249.044473 +249.080170 +249.140244 +249.160290 +249.206777 +249.805511 +250.268548 +250.275640 +250.291225 +250.313836 +250.354661 +251.262186 +251.271910 +251.288360 +251.343705 +252.324723 +252.353494 +252.405775 +252.417097 +252.435112 +252.464649 +252.467846 +252.511902 +253.024988 +253.077336 +253.212867 +253.511368 +253.877102 +253.949962 +253.953925 +253.977169 +254.295816 +254.325087 +254.367944 +255.050461 +255.051327 +255.086824 +255.168409 +255.250927 +255.279698 +255.302475 +255.526051 +256.123087 +256.245098 +256.261682 +256.276700 +256.915561 +256.958851 +256.978364 +257.162780 +257.172237 +258.284823 +258.358516 +258.381959 +258.404237 +260.324348 +260.378228 +260.397042 +260.410695 +261.242862 +261.256382 +261.283255 +261.295376 +261.304134 +261.313758 +261.380058 +261.410195 +261.415656 +261.459046 +261.488816 +261.964473 +262.011593 +262.039798 +262.103934 +262.193011 +262.430573 +263.104399 +263.152551 +263.183886 +263.235401 +263.259144 +263.282521 +263.293809 +263.386417 +263.541162 +264.670598 +264.696139 +264.698337 +264.735300 +264.818050 +264.869299 +264.923844 +264.935299 +264.939229 +264.961407 +265.003065 +265.035499 +265.194607 +265.211423 +265.273861 +265.320181 +265.379888 +265.438396 +266.052215 +266.058841 +266.077689 +266.122145 +266.135764 +266.196204 +266.202864 +266.265668 +266.267000 +266.316617 +266.328805 +266.364202 +266.383550 +266.400633 +267.670495 +267.677155 +267.706659 +267.882982 +268.545019 +268.580784 +268.681316 +268.899698 +268.900763 +269.753077 +269.836393 +270.714082 +271.706854 +272.686341 +272.849311 +274.756668 +274.830394 +274.872419 +274.900158 +274.927531 +274.942382 +274.972819 +275.017008 +275.019106 +275.054503 +275.063961 +275.083907 +275.098726 +275.106385 +275.107084 +275.107783 +275.188969 +275.204853 +275.206618 +275.217041 +275.219338 +275.258133 +275.272519 +275.273318 +275.279645 +275.283341 +275.283607 +275.284740 +275.285672 +275.287104 +275.300324 +275.309548 +275.310980 +275.352772 +275.373085 +275.383141 +275.410714 +275.423467 +275.440550 +275.455402 +275.460697 +275.464293 +275.485872 +275.506551 +275.526797 +275.572052 +275.606351 +275.613178 +275.613910 +275.643281 +275.661429 +275.803254 +275.821569 +275.851972 +275.858932 +275.899891 +275.953204 +276.021502 +276.042581 +276.049041 +276.116041 +276.121569 +276.148775 +276.188202 +276.224332 +277.195960 +277.202820 +277.226796 +277.371784 +277.389433 +277.405217 +277.411244 +277.426895 +277.464058 +277.477744 +277.506915 +277.516306 +277.529859 +277.563026 +277.595427 +277.597824 +277.599955 +277.628427 +277.659796 +277.674914 +277.682173 +277.697758 +277.735153 +277.778810 +277.820435 +278.301087 +278.306948 +278.308047 +278.319136 +278.909545 +278.926128 +278.934553 +278.965522 +279.022598 +279.077377 +279.427393 +279.510610 +279.530356 +279.537782 +279.542211 +279.551868 +279.552368 +279.553167 +279.630123 +279.633586 +279.641878 +279.652101 +279.696124 +279.707546 +279.711042 +279.747173 +279.757163 +280.728690 +280.792560 +280.808444 +280.834251 +280.836749 +280.931587 +280.936449 +280.949802 +280.964488 +280.996922 +281.039346 +281.051933 +281.088697 +282.004646 +282.012305 +282.059858 +282.062056 +282.073511 +282.107077 +282.124460 +282.135349 +282.145872 +282.177840 +282.180903 +282.194556 +282.239345 +282.301083 +282.314370 +282.353963 +282.384200 +282.384466 +282.840776 +282.856560 +282.946537 +282.955261 +282.969614 +282.981069 +282.994888 +283.022494 +283.048535 +283.094289 +283.096154 +283.587628 +283.601781 +283.643672 +283.695088 +283.714568 +283.737478 +283.839410 +284.970111 +284.979868 +285.072875 +285.106275 +285.129951 +285.146501 +285.153161 +285.173408 +285.213601 +285.214234 +285.252795 +285.266881 +285.298449 +285.306275 +285.331982 +285.346501 +285.347434 +285.409372 +285.414933 +285.452961 +285.505209 +285.511536 +285.574540 +286.732247 +286.738708 +286.781065 +286.794652 +286.810402 +286.815964 +286.848598 +286.864715 +286.924655 +286.944535 +286.954558 +286.980166 +286.988458 +287.024222 +287.043769 +287.082330 +288.160185 +288.250328 +288.273338 +288.286492 +288.326418 +288.356122 +288.370374 +288.397048 +288.416794 +288.426118 +288.440338 +288.471573 +288.575336 +289.717293 +290.888320 +292.150757 +292.197410 +293.226979 +293.583889 +293.600539 +293.673566 +293.674398 +293.707632 +293.725147 +293.926912 +294.061378 +294.719286 +294.737134 +294.754917 +294.778526 +294.846558 +294.858813 +294.925113 +294.929342 +294.960544 +295.476195 +295.502801 +295.517453 +295.518519 +295.569368 +295.601536 +295.640763 +295.715056 +295.717020 +295.754383 +295.766104 +295.814922 +295.817986 +295.818652 +295.920150 +295.920583 +297.489846 +297.520415 +297.539396 +297.598237 +297.648653 +297.671464 +297.728074 +298.992175 +299.000933 +299.001632 +299.037263 +299.061606 +299.074393 +299.092608 +299.107093 +299.119648 +299.131369 +299.157243 +299.162105 +299.163837 +299.175358 +299.217050 +299.218981 +299.351216 +299.399268 +299.405195 +299.428405 +300.439293 +300.450915 +300.484814 +300.504361 +300.563835 +300.564634 +300.578287 +300.580452 +300.616483 +300.617415 +300.633366 +300.643955 +300.655843 +300.659373 +300.664201 +300.682483 +300.690575 +300.708191 +300.713419 +300.747285 +300.748051 +300.804061 +300.841058 +300.886679 +300.921311 +302.270194 +302.694303 +302.744119 +302.875555 +302.978318 +303.216180 +303.251278 +303.259504 +304.184544 +304.191804 +304.236226 +304.271058 +304.280748 +304.287275 +304.298863 +304.359536 +304.442320 +304.444717 +304.479882 +304.482413 +304.517944 +304.564764 +304.586675 +304.607288 +304.656538 +305.618276 +305.796431 +305.883011 +305.905388 +305.949378 +306.292268 +306.663796 +307.054005 +308.298027 +308.434557 +310.276513 +310.369253 +310.384438 +310.422900 +310.493429 +310.517305 +310.587635 +310.598058 +310.604251 +310.604951 +310.634887 +310.680608 +310.769919 +310.945477 +311.003518 +311.012376 +311.064224 +311.068087 +311.084238 +311.094328 +311.100288 +311.104684 +311.120235 +311.167787 +311.170451 +311.192729 +311.229792 +311.257831 +311.428127 +311.453535 +311.482173 +311.483571 +311.842479 +311.864623 +311.895392 +312.439081 +312.454966 +312.550470 +312.684036 +312.772581 +312.787033 +312.823763 +313.055231 +313.131355 +313.570149 +313.632087 +313.736549 +313.743109 +313.808411 +313.827891 +313.860825 +313.901384 +313.941478 +313.966819 +314.288131 +314.447771 +314.455297 +314.472080 +314.480371 +314.496489 +314.517767 +314.576109 +314.605346 +314.617867 +314.645373 +314.654697 +314.742509 +314.744640 +314.796988 +314.806045 +314.808077 +314.842342 +314.845506 +314.855729 +314.903748 +314.929056 +314.935083 +314.954830 +314.987464 +315.019498 +315.058593 +315.066618 +315.071347 +315.111440 +315.167650 +315.185199 +315.198253 +315.210307 +315.926524 +315.927023 +315.941276 +315.967783 +316.015468 +316.040243 +316.054229 +316.073077 +316.081868 +316.159524 +316.160257 +316.204978 +316.232151 +316.243307 +316.270679 +316.316600 +316.388994 +316.451731 +317.235580 +317.288028 +317.289693 +317.338577 +317.385663 +317.415966 +317.436879 +317.437978 +317.476539 +317.513535 +317.559656 +317.587528 +317.597984 +317.656925 +317.677471 +317.692456 +317.724224 +317.757358 +317.795153 +318.619894 +318.636811 +318.661753 +318.681033 +318.726321 +318.741506 +318.755226 +318.762019 +318.783664 +318.831349 +318.871010 +318.879768 +318.939008 +318.955891 +318.957556 +319.016664 +319.035845 +319.460986 +319.484296 +320.029517 +320.197049 +320.202344 +320.309603 +320.323889 +320.347132 +320.363349 +320.375437 +320.392054 +320.406073 +320.412900 +320.439406 +320.462716 +320.502843 +320.544068 +320.547132 +320.557322 +320.559753 +320.586026 +320.601145 +320.646433 +320.667412 +320.723056 +320.765047 +320.792120 +320.898114 +320.907871 +321.236009 +321.250794 +321.317694 +321.368809 +321.382662 +321.458653 +321.530381 +321.653191 +321.664547 +321.687424 +321.720957 +321.721223 +322.392951 +322.417626 +322.434443 +322.435175 +322.466278 +322.467843 +322.508635 +322.573304 +322.615928 +322.617393 +322.669474 +322.747663 +322.764446 +322.771039 +322.773170 +322.870040 +322.896214 +323.016427 +323.206736 +323.232178 +323.632477 +323.670838 +323.673702 +323.700209 +323.761714 +323.777598 +323.806103 +323.829546 +323.857685 +323.865377 +323.923885 +323.934841 +324.015860 +324.017824 +324.023619 +324.044564 +324.056386 +324.082793 +324.130212 +324.137038 +324.183758 +324.216093 +324.239702 +324.254488 +324.268107 +324.320155 +324.323185 +324.327481 +324.334174 +324.335706 +324.533408 +324.550724 +324.562945 +324.567741 +324.621420 +324.626648 +324.626915 +324.628114 +324.699376 +325.247627 +325.313627 +325.340567 +325.369105 +325.490117 +325.593647 +325.602871 +325.694513 +325.858182 +325.965375 +326.002671 +326.014992 +326.023317 +326.054652 +326.064975 +326.522384 +326.587652 +326.650156 +326.658082 +326.679027 +326.682823 +326.685820 +326.700839 +326.740299 +326.763110 +326.800672 +326.827046 +326.833872 +326.842397 +327.350522 +327.354817 +327.357715 +327.480758 +327.497841 +327.505400 +328.141297 +328.242462 +328.330408 +328.336035 +328.363907 +328.417987 +328.423681 +328.435336 +328.704666 +328.736468 +328.799738 +328.804733 +328.807996 +328.914823 +329.185452 +329.205398 +329.245092 +329.250253 +329.284419 +329.376294 +329.406097 +329.419817 +329.505032 +329.505664 +329.509327 +329.513224 +329.517053 +329.519917 +329.521549 +329.527409 +329.596074 +329.668801 +329.676693 +329.677126 +329.679524 +329.683020 +329.763207 +330.120382 +330.349886 +330.384019 +330.513822 +330.514555 +330.516419 +330.516952 +330.517851 +330.520882 +330.522480 +330.618351 +330.619783 +330.620315 +330.716186 +330.717518 +330.816186 +330.817618 +330.818817 +330.819749 +330.918250 +330.920082 +330.920648 +330.921947 +330.923778 +330.927907 +330.933435 +331.012190 +331.012723 +331.015353 +331.016952 +331.017385 +331.018150 +331.020182 +331.116652 +331.118783 +331.124544 +331.218084 +331.220315 +331.313188 +331.314920 +331.316019 +331.318217 +331.320481 +331.411623 +331.416152 +331.419549 +332.055346 +332.082951 +332.418449 +332.424010 +332.623111 +332.632435 +332.718115 +332.722012 +332.727106 +332.738062 +332.801066 +332.822411 +332.830536 +332.894039 +332.894672 +332.913953 +332.914552 +332.983516 +333.014186 +333.015651 +333.019580 +333.027439 +333.112154 +333.113553 +333.114019 +333.118048 +333.212287 +333.318115 +333.319447 +333.320912 +333.321378 +333.322510 +333.324442 +333.414452 +333.422077 +333.423476 +333.659040 +333.675890 +333.697735 +333.715750 +333.719213 +333.750615 +333.773226 +333.796636 +333.812120 +333.814118 +333.817049 +333.822277 +333.839926 +333.844754 +333.869263 +333.918714 +333.919180 +333.928138 +333.979819 +334.008457 +334.013152 +334.013619 +334.014385 +334.017648 +334.031634 +334.122809 +334.127571 +334.128204 +334.131168 +334.140192 +334.166499 +334.168064 +334.211387 +334.218580 +334.219612 +334.317648 +334.322942 +334.333032 +334.416216 +334.418580 +334.421710 +334.449216 +334.457707 +334.516116 +334.518114 +334.518713 +334.522110 +334.522409 +334.533132 +334.612919 +334.614717 +334.615749 +334.618413 +334.625373 +334.631767 +334.694937 +334.713085 +334.713485 +334.723441 +334.816681 +334.819812 +334.826405 +334.827837 +334.848150 +334.850681 +334.915349 +334.916215 +334.917680 +334.919878 +335.018646 +335.021676 +335.024573 +335.027271 +335.027637 +335.030134 +335.031200 +335.034663 +335.065832 +335.207457 +335.229701 +335.249781 +335.283048 +335.310987 +335.343687 +335.371626 +335.395036 +335.398732 +335.400297 +335.405625 +335.430034 +335.441423 +335.490474 +335.507989 +335.518978 +335.540923 +335.560970 +335.571992 +335.633530 +336.049847 +336.061136 +336.074456 +336.239024 +336.299630 +336.337159 +336.394802 +336.417046 +336.432864 +336.467296 +336.489673 +336.539990 +336.542021 +336.607655 +336.619543 +336.684212 +336.693969 +336.708921 +336.798031 +336.835161 +336.877152 +336.887975 +336.915181 +336.920342 +336.954042 +336.999297 +337.014814 +337.071491 +337.086476 +337.089473 +337.477918 +337.597631 +337.598031 +337.616712 +337.617877 +337.628101 +337.647015 +337.665929 +337.765030 +337.920708 +337.924637 +337.925969 +337.933029 +337.935127 +338.070358 +338.075553 +338.211783 +338.214147 +338.246215 +338.271124 +338.357237 +338.397664 +338.466628 +338.473521 +338.478516 +338.489039 +338.490304 +338.493734 +338.501360 +338.529199 +338.579115 +338.611583 +338.629698 +338.632262 +338.645515 +338.669958 +338.672056 +338.672955 +338.675019 +338.688106 +338.782578 +338.796564 +338.811682 +338.858036 +338.874253 +338.946081 +338.995465 +339.000960 +339.003124 +339.039255 +339.101293 +339.115678 +339.117476 +339.124936 +339.152708 +339.204722 +339.212914 +339.223970 +339.233660 +339.333593 +339.347713 +339.353207 +339.362431 +339.480080 +339.480513 +339.483443 +339.490203 +339.509317 +339.561132 +339.568858 +339.656670 +339.660899 +339.665761 +340.009117 +340.066060 +340.066759 +340.069390 +340.507418 +340.572953 +341.526731 +341.598460 +341.604886 +341.605286 +341.609149 +341.610015 +341.653971 +341.662795 +341.672086 +341.739885 +341.740684 +341.742748 +341.743681 +341.746212 +341.753704 +341.814610 +342.177247 +342.287437 +342.300324 +342.323367 +342.385272 +342.387070 +342.389634 +342.456201 +342.488302 +342.497560 +342.585605 +342.587270 +342.591099 +342.592997 +342.601089 +342.602954 +342.604153 +342.679777 +342.834589 +342.861595 +342.895095 +342.901988 +342.908715 +342.910613 +342.912344 +342.912977 +342.927562 +342.935754 +342.972651 +342.987935 +343.028162 +343.041215 +343.043713 +343.045211 +343.047775 +343.050373 +343.053670 +343.060629 +343.162794 +343.169054 +343.261928 +343.267622 +343.268188 +343.272451 +343.283406 +343.354036 +343.536020 +343.538118 +343.641614 +343.751604 +343.756200 +343.759696 +344.783138 +344.842845 +344.883638 +345.254566 +345.292329 +345.298189 +345.357097 +345.358229 +345.370051 +345.462991 +345.474446 +345.481106 +345.564989 +345.575645 +345.602884 +345.612575 +345.652501 +345.662458 +345.689464 +345.716737 +345.719301 +345.840580 +345.846208 +345.850303 +345.862125 +345.955898 +345.983071 +345.993860 +346.098688 +346.102551 +346.103317 +346.108478 +346.144276 +346.156430 +346.168885 +346.169584 +346.173846 +346.178575 +346.182970 +346.189464 +346.415005 +346.416037 +346.520766 +346.522597 +346.524295 +346.531255 +346.539980 +346.540446 +346.561791 +346.659160 +346.693859 +346.711708 +346.781138 +346.802683 +346.835451 +346.838414 +346.839380 +346.857096 +346.869816 +346.878974 +347.048404 +347.052267 +347.057195 +347.062823 +347.154132 +347.158427 +347.158993 +347.160026 +347.160725 +347.163156 +347.166220 +347.169649 +347.173113 +347.301751 +347.305480 +347.314771 +347.320165 +347.330588 +347.349802 +347.420898 +347.423229 +347.433119 +347.449369 +347.460025 +347.524627 +347.525760 +347.537082 +347.541011 +347.690495 +347.693925 +347.698154 +347.698553 +348.493957 +348.519865 +348.561057 +348.654330 +348.680271 +348.699385 +348.879804 +349.061189 +349.122461 +349.211705 +349.358359 +349.578638 +349.602614 +349.637113 +349.683933 +349.700216 +349.809740 +349.826690 +349.832584 +349.836580 +349.879637 +349.969180 +350.009607 +350.020063 +350.300149 +350.312703 +350.328221 +350.336579 +350.339943 +350.346070 +350.388994 +350.479403 +350.494754 +350.512403 +350.520229 +350.735680 +350.740309 +350.751531 +350.772010 +350.866216 +350.899682 +350.903012 +351.086229 +351.097451 +351.106575 +351.111604 +351.127321 +351.160788 +351.178437 +351.207508 +351.220095 +351.270245 +351.270944 +351.274840 +351.276971 +351.281334 +351.373575 +351.375573 +351.379336 +351.449032 +351.586628 +351.594687 +351.771243 +351.773374 +351.886495 +352.057423 +352.069678 +352.086861 +352.094320 +352.095985 +352.317796 +352.319461 +352.324156 +352.378835 +352.444902 +352.544869 +352.621192 +352.634246 +352.670876 +352.679767 +352.685062 +352.698448 +352.704842 +352.821725 +352.822424 +352.838542 +352.847366 +352.901612 +352.993586 +353.024056 +353.026420 +353.052261 +353.151562 +353.152993 +353.162018 +353.249131 +353.251894 +353.287426 +353.288591 +353.310103 +353.312767 +353.630182 +353.633945 +353.676569 +353.798614 +353.950995 +354.214631 +354.225919 +354.233079 +354.365946 +354.370941 +354.371407 +354.373938 +354.374304 +354.381231 +354.435110 +354.441970 +354.606039 +354.610468 +354.611833 +354.614464 +354.616395 +354.617294 +354.770941 +354.777834 +354.794717 +354.795150 +354.815662 +354.826219 +354.827118 +354.829981 +354.838173 +354.917893 +354.925453 +355.017627 +355.021057 +355.023221 +355.024320 +355.026518 +355.029016 +355.038606 +355.087524 +355.093817 +355.095982 +355.284993 +355.300677 +355.305705 +355.515395 +355.523587 +355.656388 +355.658019 +355.658985 +355.660950 +355.664180 +355.701442 +355.900510 +356.012431 +356.014329 +356.015029 +356.034343 +356.090187 +356.141735 +356.152191 +356.156520 +356.170340 +356.175601 +356.177366 +356.408701 +356.499477 +356.567509 +356.574235 +356.577466 +356.640736 +356.650492 +356.653589 +356.656420 +356.666743 +356.709067 +356.727049 +356.751025 +356.764645 +356.788354 +356.850759 +356.923086 +356.924085 +357.015494 +357.016393 +357.016959 +357.017492 +357.019690 +357.020056 +357.024385 +357.025550 +357.391118 +357.395547 +357.442899 +357.468707 +357.567941 +357.586089 +357.607168 +357.878230 +358.126615 +358.334374 +358.347161 +358.458716 +358.471037 +358.796511 +358.851123 +358.858282 +358.896311 +359.025349 +359.028479 +359.032974 +359.033740 +359.044096 +359.198009 +359.205435 +359.214925 +359.217190 +359.218056 +359.218688 +359.371336 +359.380027 +359.407166 +359.895111 +359.909364 +360.016123 +360.020919 +360.209796 +360.224182 +360.251421 +360.258647 +360.269137 +360.283489 +360.420818 +360.440532 +360.599872 +360.605067 +360.607365 +360.611228 +360.635970 +360.706999 +360.723116 +360.812893 +360.823815 +361.300305 +361.319685 +361.416189 +361.437334 +361.611793 +361.621150 +361.626745 +361.628043 +361.631906 +361.637201 +361.638067 +361.639032 +361.640930 +361.643095 +361.809761 +361.816055 +361.816588 +361.824313 +361.847357 +361.933038 +361.942462 +361.953617 +361.956681 +361.959079 +362.011859 +362.126677 +362.646957 +362.653051 +362.667703 +362.720283 +362.731905 +362.871265 +362.871665 +363.074695 +363.075628 +363.075927 +363.121981 +363.267702 +363.324845 +363.328741 +363.343426 +363.345524 +363.405298 +363.419150 +363.690512 +363.801001 +363.970299 +363.972430 +363.973429 +363.974261 +363.975860 +364.107928 +364.133369 +364.263938 +364.273195 +364.283452 +364.388680 +365.016218 +365.024144 +365.149918 +365.322911 +365.329538 +366.703463 +366.706826 +366.797202 +366.797668 +366.910456 +366.911887 +366.912587 +366.916483 +367.852979 +367.865966 +367.878686 +367.932699 +368.015583 +368.652612 +368.964566 +369.746550 +369.767229 +369.857106 +370.817311 +370.878883 +370.986142 +371.393901 +371.394134 +371.582379 +373.393932 +373.434325 +373.478714 +373.478980 +373.536157 +373.563962 +373.617309 +374.621370 +374.661563 +374.681410 +374.727497 +374.754703 +374.772685 +374.795263 +374.814144 +374.828463 +374.851174 +374.876348 +374.922402 +374.938486 +374.947211 +374.980611 +374.985439 +376.226963 +376.791498 +376.813243 +376.840815 +376.888168 +377.895393 +377.918104 +377.953901 +379.160060 +379.194959 +379.239181 +379.268419 +379.288432 +379.403550 +379.516803 +379.565388 +379.600486 +379.713640 +380.280106 +380.337049 +380.341278 +380.363223 +383.229487 +383.283699 +383.422594 +383.459024 +384.046935 +384.056925 +385.171809 +385.234846 +385.243171 +385.269844 +385.270044 +386.284296 +387.102377 +387.189889 +387.229583 +387.425054 +387.600978 +387.730848 +387.769975 +387.822789 +387.934544 +388.006172 +388.036508 +388.046698 +388.881995 +388.911066 +388.926318 +389.114296 +389.280163 +389.366344 +389.432145 +389.536973 +389.545931 +389.556254 +389.610300 +389.612797 +389.803939 +389.804206 +389.868741 +389.879097 +389.918724 +389.985591 +389.996813 +390.286789 +390.315560 +390.353223 +390.384358 +390.441235 +390.449726 +390.460216 +390.463879 +390.500542 +390.547528 +390.569007 +390.615360 +390.630312 +390.650225 +390.660615 +390.793415 +390.840502 +390.874201 +390.889419 +390.891317 +390.930145 +390.960948 +390.973901 +390.980362 +390.997544 +391.400608 +391.420921 +391.485822 +391.522019 +391.610897 +391.639968 +391.810664 +391.815026 +391.837670 +391.844663 +391.855386 +391.861546 +391.874467 +391.897077 +391.897710 +391.909731 +391.939002 +391.948559 +391.963278 +391.963810 +391.964809 +391.981360 +392.007234 +392.399741 +392.448958 +392.461113 +392.560213 +392.573567 +392.595045 +392.758115 +392.768971 +392.770237 +392.774133 +392.808398 +392.827180 +392.842531 +392.858315 +392.973100 +393.507998 +393.583123 +393.628477 +393.751488 +393.753153 +393.760379 +393.791281 +393.847625 +393.866040 +393.923449 +393.945993 +393.956183 +393.971601 +394.002303 +394.301271 +394.309929 +394.375163 +394.443495 +394.454850 +394.476262 +394.496076 +394.517687 +394.551720 +394.555849 +394.575463 +394.599905 +394.656848 +394.709329 +394.861110 +394.874896 +394.926878 +394.927610 +394.952952 +394.996808 +395.222981 +395.264040 +395.278259 +395.282389 +395.301303 +395.358979 +395.424679 +395.485285 +395.510494 +395.528276 +395.530107 +395.559211 +395.618019 +395.659611 +395.758212 +395.767470 +395.826577 +395.830706 +395.838265 +395.912924 +395.916720 +395.933304 +396.156447 +396.252617 +396.263606 +396.288448 +396.399037 +396.769666 +396.801335 +396.914621 +396.950252 +396.956313 +397.094674 +397.146289 +397.188481 +397.241061 +397.269533 +397.275860 +397.307495 +397.315154 +397.320049 +397.375360 +397.393975 +397.420582 +397.444158 +397.869699 +397.951150 +398.593607 +398.726075 +398.796504 +398.884150 +398.944057 +398.948918 +399.014619 +399.342824 +399.363337 +399.515285 +399.566001 +399.576324 +399.600067 +399.657809 +399.661305 +399.698368 +399.745221 +399.862471 +399.936530 +399.990542 +400.006993 +400.109923 +400.309024 +400.321245 +400.510755 +400.710122 +400.710755 +401.008490 +401.011587 +401.391873 +401.408390 +401.410521 +402.306358 +402.521409 +404.017944 +404.105989 +404.403325 +404.415679 +404.513382 +404.514481 +404.603625 +404.610718 +404.688606 +404.697364 +404.749046 +404.763465 +404.770657 +404.789472 +404.808053 +404.809419 +405.008153 +405.018176 +405.438855 +405.491869 +405.522538 +405.524769 +405.549112 +405.549544 +405.550876 +405.570590 +405.637290 +405.721339 +405.749677 +405.776551 +405.797829 +405.852142 +405.965162 +405.965561 +405.965961 +405.981978 +405.989304 +406.025635 +406.032128 +406.073853 +406.296364 +406.304156 +406.342950 +406.381811 +406.577882 +406.602357 +406.636190 +406.745880 +406.781378 +406.864728 +406.950109 +407.080512 +407.110515 +407.120638 +407.137788 +407.169423 +407.195763 +407.338087 +407.358767 +407.382610 +407.383675 +407.399359 +407.400225 +407.460199 +407.460998 +407.501158 +407.551807 +407.597528 +407.604721 +407.626166 +407.638254 +407.647245 +407.681544 +407.757135 +407.757967 +407.843581 +407.885706 +408.003921 +408.052273 +408.082043 +408.109182 +408.114777 +408.129029 +408.129529 +408.146611 +408.164460 +408.246045 +408.253338 +408.277147 +408.361097 +408.404320 +408.458566 +408.464060 +408.599292 +408.607284 +408.623035 +408.660697 +408.822535 +408.931526 +408.992165 +408.993497 +409.265358 +409.409248 +409.547676 +410.372117 +410.529360 +410.581274 +410.671351 +410.835753 +410.970185 +411.096459 +411.202752 +411.741280 +411.864090 +412.909744 +412.920233 +413.243143 +413.252367 +413.390629 +413.485634 +413.658394 +413.862124 +413.873812 +414.028224 +414.092726 +414.136516 +414.161557 +414.192127 +414.389096 +414.429622 +414.485633 +414.524927 +414.556961 +414.583002 +414.593758 +414.639945 +414.681670 +414.682969 +414.781137 +414.906878 +414.925193 +414.994890 +415.225725 +415.259092 +415.268749 +415.273677 +415.300550 +415.306278 +415.320497 +415.327723 +415.335948 +415.339844 +415.575808 +415.621496 +415.753264 +415.789960 +415.944839 +415.990626 +416.024925 +416.102781 +416.193423 +416.212637 +416.410573 +416.412238 +416.455361 +416.472544 +416.579703 +416.783866 +416.841075 +416.869080 +416.883999 +416.953296 +417.030485 +417.071511 +417.079669 +417.205677 +417.296519 +417.317398 +417.371211 +417.389359 +417.472410 +417.502446 +417.525457 +417.578237 +417.617664 +417.622526 +417.623558 +417.665849 +417.916865 +418.038143 +418.038510 +418.051630 +418.082899 +418.101480 +418.130551 +418.153128 +418.371943 +418.379801 +418.558822 +418.638476 +418.661786 +418.896451 +418.899448 +418.908406 +419.044669 +419.067080 +419.299614 +419.349830 +419.392288 +419.617363 +419.703177 +419.801079 +419.859187 +419.978401 +420.051195 +420.060852 +420.273939 +420.306739 +420.316496 +420.401677 +420.484128 +420.490688 +420.539739 +420.561318 +420.652460 +420.653359 +420.722023 +420.767311 +420.767711 +420.926552 +421.046998 +421.100944 +421.449329 +421.563481 +421.595616 +421.709035 +421.802941 +421.832279 +421.884793 +422.057853 +422.096015 +422.101909 +422.126651 +422.316960 +422.716860 +422.794216 +422.920390 +423.145997 +423.178964 +423.308068 +423.313496 +423.418258 +423.436040 +423.485191 +423.708434 +423.764678 +423.852590 +423.853988 +424.193615 +424.273335 +424.369772 +424.437271 +424.722586 +424.744397 +424.758050 +425.326381 +425.436471 +425.521985 +426.003736 +426.006500 +426.414991 +426.551621 +426.622317 +426.853053 +427.498740 +427.777361 +427.790914 +427.791713 +427.831507 +428.398672 +428.475595 +428.949255 +428.999371 +429.006531 +429.244726 +429.318185 +429.375361 +429.447123 +430.008628 +430.438963 +430.530772 +430.735467 +430.912989 +431.332969 +431.396172 +431.432103 +431.457644 +431.602632 +431.696938 +431.840361 +432.390943 +432.527073 +432.602631 +432.661139 +432.687313 +432.744522 +432.757576 +432.890143 +433.534765 +434.115949 +434.136862 +434.155909 +434.244354 +434.865233 +434.952812 +435.909288 +436.304292 +437.007921 +437.310585 +438.110717 +441.430028 +446.726926 +448.079705 +448.114171 +449.643473 +450.422760 +450.435847 +450.498217 +450.524824 +450.537645 +451.382033 +451.601946 +453.512034 +453.624788 +453.642603 +454.223688 +454.665080 +454.696715 +454.763148 +456.218392 +456.757452 +457.230845 +457.317092 +458.474034 +458.561613 +458.574466 +458.649791 +458.681393 +459.202738 +460.113326 +460.183822 +460.345460 +460.740931 +460.782356 +460.786252 +460.932040 +461.720884 +461.783654 +461.824480 +461.864706 +461.897573 +461.921816 +461.923381 +461.924347 +462.421749 +462.437300 +462.457879 +462.497306 +462.539897 +462.547556 +462.744892 +462.777826 +462.778458 +462.793710 +462.831905 +463.257079 +463.327875 +465.245755 +465.319148 +465.327174 +465.358642 +465.381486 +466.098568 +466.395637 +466.499067 +466.542957 +467.868863 +467.885779 +467.897501 +468.328236 +468.372459 +468.420344 +468.892771 +468.901196 +468.925672 +469.007923 +469.113384 +469.168162 +469.542587 +469.809187 +469.819943 +470.203093 +470.628400 +471.732362 +472.733427 +472.781778 +472.791602 +472.792701 +472.851109 +472.919907 +472.982211 +473.002457 +473.035591 +473.073020 +474.246479 +474.287271 +474.415676 +474.430894 +474.502156 +474.650574 +475.536721 +475.577147 +475.633624 +475.697193 +475.697926 +475.723067 +475.735988 +475.834389 +475.851306 +475.863627 +475.883540 +475.887703 +475.905019 +475.945145 +475.945844 +475.946544 +475.957832 +475.970553 +475.991599 +476.025764 +476.042814 +476.072185 +476.088402 +476.089001 +476.096893 +476.147043 +476.154436 +476.202721 +476.225864 +477.236885 +477.249706 +477.261094 +477.284904 +477.300622 +477.348840 +477.388867 +477.389533 +477.502719 +477.565357 +477.919902 +478.018570 +478.049206 +478.130591 +478.145842 +478.175746 +478.223897 +478.256065 +478.282505 +478.314373 +478.327594 +478.350704 +478.353135 +478.361926 +478.448006 +478.462991 +478.505882 +478.527160 +478.944010 +478.952468 +479.016870 +479.044876 +479.060094 +479.093527 +479.095758 +479.116737 +479.117303 +479.132754 +479.162524 +479.163457 +479.183870 +479.235618 +479.252035 +479.263657 +479.265455 +479.302551 +479.303483 +483.707242 +484.674707 +484.678203 +484.719495 +484.728952 +484.757624 +484.762286 +484.785562 +484.792922 +484.822059 +484.832349 +485.242638 +485.261453 +485.277004 +485.306408 +485.326521 +485.335012 +485.368978 +485.377770 +485.395119 +485.402911 +485.413134 +485.421626 +485.430484 +485.465748 +485.492488 +485.500713 +485.501479 +485.666947 +485.675938 +485.724556 +485.753194 +485.754259 +485.775738 +485.810703 +486.117629 +486.122391 +486.128385 +486.142870 +486.183230 +486.203110 +486.210869 +486.213300 +486.291855 +486.940372 +487.007139 +487.038074 +487.308271 +487.321757 +487.601410 +487.629982 +487.711067 +487.730781 +488.821556 +488.857586 +488.895182 +488.940703 +488.941935 +488.960150 +488.985758 +489.100410 +489.113863 +490.268507 +490.318457 +490.338371 +490.369107 +490.382560 +490.431777 +490.438970 +490.465177 +490.467242 +490.524917 +490.577398 +490.592650 +490.619123 +490.629679 +490.639103 +490.670671 +492.396277 +492.454353 +492.466907 +492.493380 +492.531409 +492.535372 +492.551589 +492.552155 +492.594046 +492.624815 +492.649058 +492.651389 +493.754584 +493.763942 +493.778727 +493.780392 +493.808930 +493.856116 +493.871334 +493.883988 +493.955050 +494.001870 +494.021884 +494.052753 +494.570101 +494.572333 +494.589149 +494.591680 +494.613891 +494.614091 +494.630707 +494.684953 +494.690814 +494.711993 +494.713558 +495.421516 +495.423814 +495.444859 +495.490214 +495.517387 +495.542195 +495.560577 +495.573464 +495.601069 +495.739831 +495.766570 +496.922613 +496.941961 +497.012690 +497.023479 +497.063506 +497.075727 +497.105397 +497.108194 +497.139496 +497.139796 +497.174561 +497.241128 +497.278124 +498.116318 +498.133368 +498.133768 +498.187580 +498.196705 +498.218916 +498.229006 +498.259009 +498.287947 +498.334100 +498.346754 +498.387214 +498.392209 +498.444656 +499.344023 +499.365102 +499.373893 +499.381119 +499.384282 +499.397636 +499.438695 +499.480253 +499.490110 +499.550683 +499.588978 +499.590643 +499.637496 +499.658541 +500.499000 +500.505627 +500.643955 +500.667764 +500.688910 +500.697535 +500.718713 +500.725640 +500.735963 +500.760238 +500.762070 +500.778687 +500.809323 +500.816216 +500.834431 +500.844487 +500.866066 +500.907824 +501.929734 +501.981849 +501.991539 +501.996934 +502.006225 +502.041423 +502.042322 +502.055642 +502.064400 +502.087243 +502.102861 +502.119711 +502.136261 +502.150447 +502.164566 +502.183281 +502.193304 +502.200364 +502.201529 +502.208988 +502.223440 +502.224739 +502.253743 +502.267596 +502.274789 +502.301129 +502.320876 +502.843620 +502.849813 +503.908454 +506.056304 +506.082411 +506.117176 +506.355238 +506.946080 +506.948211 +506.973352 +507.014711 +507.803688 +507.857501 +507.872452 +507.873618 +507.914644 +507.941217 +507.972985 +507.997993 +508.702488 +508.765558 +509.813243 +509.966390 +510.558097 +510.594528 +510.651870 +510.661327 +510.715207 +510.729626 +510.771451 +510.791664 +510.809879 +510.834787 +510.848573 +510.849772 +510.888933 +510.908480 +510.951870 +510.970818 +511.325496 +511.329325 +511.334687 +511.363192 +511.386169 +511.390797 +511.994959 +512.000787 +512.004483 +512.024296 +512.068652 +512.089165 +512.153833 +512.172348 +512.191462 +512.215672 +512.235219 +512.235685 +512.266820 +512.289897 +512.317370 +512.358262 +512.385868 +512.394826 +512.400120 +512.443044 +512.485335 +512.492261 +512.507713 +513.993492 +514.082736 +514.291261 +517.661753 +517.763252 +517.816332 +517.857757 +517.916299 +517.919362 +517.942972 +518.465915 +518.486195 +518.524123 +518.537643 +518.554793 +518.575206 +518.591456 +518.628286 +518.727054 +518.762218 +518.783131 +518.813634 +518.864616 +519.814299 +519.821225 +519.896716 +519.947332 +520.445134 +520.466279 +520.482563 +520.535643 +520.565746 +520.572506 +520.573172 +520.643369 +520.644967 +520.668377 +520.706073 +520.713732 +520.729416 +520.738374 +520.751194 +520.776036 +520.783728 +520.793419 +520.794085 +520.809569 +520.815397 +520.818860 +520.824188 +520.836276 +520.858220 +520.869476 +520.884028 +520.908836 +520.939006 +520.947897 +520.950595 +520.971440 +521.000844 +521.003242 +521.017694 +521.059752 +521.077834 +521.113864 +521.743601 +521.987457 +522.068509 +522.120790 +522.150926 +522.161849 +522.172372 +522.183927 +522.185725 +522.196847 +522.202275 +522.236208 +522.285225 +522.291486 +522.313330 +523.167242 +523.169840 +523.227715 +523.326949 +523.349194 +523.356453 +523.357652 +523.434009 +523.462747 +524.098310 +524.126582 +524.323052 +524.412596 +524.919988 +524.936638 +524.964643 +525.057284 +525.074899 +525.748159 +525.787952 +525.832974 +525.853287 +525.962544 +526.414026 +526.858980 +526.874798 +526.928611 +526.985753 +527.016123 +527.157848 +527.922482 +528.087750 +528.098506 +529.408628 +529.422547 +529.430872 +529.458911 +529.519151 +530.808194 +530.886948 +530.933102 +530.985616 +532.236164 +532.261173 +532.266900 +532.332701 +532.355611 +532.368199 +532.379155 +532.391309 +532.392441 +532.414353 +532.428405 +532.470663 +532.471429 +533.018348 +533.833798 +534.999532 +535.000064 +535.096668 +535.116082 +535.133398 +535.282382 +535.342721 +536.357938 +536.368428 +536.368694 +536.401395 +536.411185 +536.482147 +536.498897 +536.516613 +536.537425 +536.547582 +536.559537 +536.561235 +536.567029 +536.569427 +536.587609 +536.625404 +537.248480 +537.259503 +538.064464 +538.093268 +538.133761 +538.160601 +538.166495 +538.190038 +538.190604 +538.231163 +538.243751 +538.324870 +539.114080 +539.140586 +539.197596 +539.197829 +539.470556 +539.492567 +539.517010 +539.607719 +539.751009 +539.846913 +539.861565 +539.874918 +539.901258 +540.435324 +540.456835 +540.537621 +540.543382 +540.591168 +541.616974 +541.687470 +541.704986 +541.740950 +541.741716 +541.748376 +541.771320 +541.864426 +541.870287 +541.929994 +541.944979 +541.963094 +541.965126 +541.986771 +542.022069 +542.023667 +543.230392 +543.290499 +543.352504 +543.460662 +544.671117 +544.772815 +544.815073 +544.823864 +544.859029 +544.902852 +544.905982 +544.918136 +544.924363 +544.977310 +546.013773 +546.029923 +546.051369 +546.133886 +546.167119 +546.167519 +546.187999 +546.210876 +546.211642 +546.280240 +546.283969 +546.324229 +546.380772 +546.419067 +546.435984 +546.441545 +546.611208 +547.527225 +547.537814 +547.569216 +547.586532 +547.635583 +547.674511 +547.732719 +548.345772 +548.375176 +549.040443 +549.040676 +549.051765 +549.056594 +549.097753 +549.301415 +549.340942 +549.376340 +549.482734 +549.539544 +549.629287 +549.691358 +550.473975 +550.527621 +550.650498 +550.739776 +550.765716 +552.408538 +552.415365 +552.442871 +552.536311 +552.577303 +552.614799 +552.615664 +552.733713 +552.739574 +552.765581 +552.802877 +552.807905 +553.860552 +553.889623 +554.014631 +554.083395 +554.083628 +554.161917 +554.180132 +554.198280 +554.241137 +554.245833 +554.284760 +554.296382 +554.297281 +554.306072 +554.369009 +554.454391 +554.456988 +554.477401 +555.202675 +555.246964 +555.279997 +555.345099 +555.356488 +555.378199 +555.403407 +555.410200 +555.413863 +555.418725 +555.443767 +555.469474 +555.490653 +555.501709 +555.511199 +555.521589 +555.550726 +555.581862 +555.591519 +555.638705 +555.665212 +555.675002 +555.676001 +555.733044 +555.736241 +555.760383 +555.811599 +555.850526 +555.882195 +555.921788 +555.923653 +557.063612 +557.092283 +557.170372 +557.198344 +557.242500 +557.268740 +558.189418 +558.472036 +558.473168 +558.519521 +558.520154 +558.566774 +559.692847 +559.709863 +559.824548 +559.879160 +559.938268 +560.045494 +560.256250 +560.485453 +561.053052 +561.077428 +561.122849 +561.136202 +561.150288 +561.196209 +561.212559 +561.251587 +561.288483 +562.211459 +562.230540 +562.254483 +562.287117 +563.620748 +564.394674 +564.473761 +564.474361 +564.651683 +564.674527 +564.770464 +564.772429 +565.238795 +565.326341 +565.388912 +565.414553 +565.418915 +565.458176 +565.472095 +565.492508 +566.659473 +566.764268 +566.876256 +566.981051 +567.009090 +567.452479 +567.584980 +567.616981 +567.653412 +567.671294 +567.673059 +567.713218 +567.716715 +567.816748 +567.825273 +567.845419 +567.880151 +569.130100 +569.142521 +569.143853 +569.168695 +569.189441 +569.213284 +569.228302 +569.276653 +569.297499 +569.312051 +569.318778 +569.319577 +569.359604 +569.362268 +569.478019 +569.540323 +570.626236 +570.631531 +570.638890 +570.669859 +570.678817 +570.711084 +570.720508 +570.721507 +570.750278 +570.778384 +570.798230 +570.831197 +571.689971 +571.728799 +571.790337 +571.802658 +571.818842 +571.848313 +571.900327 +571.910350 +572.044283 +572.054939 +572.279481 +572.304123 +572.326301 +572.326834 +572.345914 +572.381912 +572.382678 +572.398462 +572.433727 +572.791302 +572.809217 +573.221671 +573.254272 +573.340219 +573.364528 +573.398694 +573.445847 +573.448977 +573.460732 +573.500692 +573.548844 +573.598361 +573.647578 +573.687105 +574.233658 +574.449409 +574.467491 +574.468223 +574.494164 +574.527497 +574.540351 +574.540717 +574.589702 +574.620837 +574.662329 +574.663095 +574.719971 +574.746844 +575.742348 +575.770720 +575.796194 +575.830660 +575.892631 +575.945778 +575.946211 +575.983939 +575.990932 +576.040516 +576.054868 +576.066790 +576.089434 +576.097359 +577.182207 +577.283106 +577.335620 +578.921332 +578.965288 +578.988332 +579.035718 +579.083903 +579.111975 +579.114905 +579.134719 +579.179874 +579.190863 +579.226360 +579.283836 +579.341245 +579.348139 +579.576310 +579.600786 +579.608012 +579.619201 +579.677675 +579.686899 +579.732121 +579.741811 +579.745441 +580.460658 +580.516469 +580.529290 +580.570448 +580.635084 +580.649136 +580.688230 +580.740478 +580.746239 +580.754597 +580.770648 +580.790528 +580.792826 +580.815403 +580.838047 +580.839279 +580.856762 +580.915869 +580.939179 +580.960824 +581.039079 +581.051267 +581.114670 +581.178240 +581.191627 +581.858892 +581.893191 +582.006411 +582.110041 +582.235282 +582.287496 +582.302381 +582.647236 +582.666284 +582.668448 +582.769614 +582.783367 +582.982834 +582.999950 +583.028987 +583.030353 +583.098584 +583.098951 +583.109607 +584.116665 +584.133082 +584.154661 +584.179536 +584.198417 +584.206708 +584.254394 +584.254993 +584.341906 +584.725522 +584.770744 +584.839075 +584.863085 +585.656824 +585.690823 +585.911635 +585.964715 +585.968545 +586.522723 +586.580399 +587.339406 +587.361517 +587.408570 +587.501510 +587.527751 +587.583695 +587.615030 +587.698114 +589.023254 +589.047996 +589.067609 +589.090387 +589.166843 +589.183627 +589.232611 +589.285358 +590.259550 +590.260049 +590.283292 +590.283892 +590.327248 +590.337505 +590.338271 +590.340002 +590.352956 +590.368740 +590.369273 +590.378231 +590.530279 +590.539270 +590.542400 +590.545896 +590.551124 +590.558783 +590.572303 +590.584058 +590.605270 +590.613395 +590.635540 +590.640035 +590.647761 +590.659882 +590.675333 +590.675999 +590.685490 +590.712829 +590.732376 +590.738470 +590.773169 +590.819855 +590.833508 +590.872403 +590.915493 +590.955087 +591.511396 +592.318355 +592.339567 +592.356917 +592.392415 +592.392947 +592.404835 +592.414093 +592.420553 +592.434839 +592.450456 +592.480227 +592.522817 +592.528811 +592.534839 +592.734439 +593.444528 +593.457748 +593.481658 +593.482224 +593.519187 +593.655384 +594.117787 +594.228543 +594.250788 +594.297374 +594.303768 +594.320884 +594.323315 +594.327078 +594.341397 +594.382822 +594.392113 +594.484753 +595.479258 +595.495109 +595.545259 +595.570733 +595.629408 +595.646923 +595.741362 +595.779258 +596.093743 +596.101768 +596.926010 +596.938098 +596.966336 +597.009926 +597.035300 +597.068068 +597.077292 +597.120548 +597.135800 +597.186316 +597.228840 +597.395340 +598.566235 +598.567833 +598.609791 +598.640827 +598.666967 +598.879521 +599.229604 +600.139926 +600.165634 +600.182317 +600.208890 +600.245887 +600.267032 +600.303296 +600.320945 +600.366133 +600.485080 +600.508357 +600.632599 +600.695869 +601.055110 +601.060005 +601.066598 +601.161803 +601.176022 +601.358240 +601.365033 +601.365965 +601.418679 +601.966364 +601.985645 +601.986677 +602.416880 +602.444219 +602.453677 +602.470160 +602.526770 +602.538092 +602.628601 +602.639424 +602.693903 +602.716946 +602.751745 +603.021475 +603.691571 +603.697565 +603.732197 +603.776119 +603.865330 +603.908753 +603.960002 +603.978017 +603.986775 +604.060668 +604.106888 +604.167594 +604.169326 +604.212916 +604.218010 +604.231830 +604.232396 +604.269958 +604.459435 +604.489605 +604.893767 +604.900394 +604.932595 +604.952309 +604.969358 +604.979914 +605.000427 +605.021972 +605.025602 +605.052142 +605.081812 +605.188239 +605.228832 +605.244383 +605.265695 +605.296997 +605.318176 +605.426434 +605.546048 +606.164928 +606.247978 +606.272154 +606.295964 +606.311282 +606.360699 +606.394698 +606.429130 +606.451874 +606.453939 +606.471588 +606.577815 +606.624968 +607.199226 +607.217175 +607.229696 +607.285373 +607.310914 +607.453505 +607.506152 +607.539119 +607.607118 +607.895429 +607.895662 +607.925299 +607.955736 +607.962829 +608.354137 +608.360397 +608.370754 +608.377580 +608.447377 +608.451506 +608.481676 +608.600091 +608.604786 +608.610014 +608.635322 +608.691965 +608.705485 +608.715209 +608.927663 +608.944912 +609.347076 +609.365025 +609.392797 +609.401222 +609.402554 +609.417040 +609.439717 +609.450373 +609.507849 +609.512977 +609.531492 +609.544046 +610.012943 +610.041481 +610.085071 +610.126663 +610.129626 +610.152870 +610.171118 +610.171917 +610.255633 +610.294095 +610.323366 +610.333123 +610.471750 +610.480009 +610.520002 +610.530991 +610.532057 +611.658596 +611.679841 +611.712175 +611.714806 +611.745176 +611.745509 +611.813707 +611.830357 +611.851236 +611.893561 +611.904616 +611.987666 +612.016537 +612.072215 +612.072781 +612.079474 +612.091196 +612.106980 +612.130457 +612.225362 +612.249038 +612.254699 +612.280806 +612.292794 +612.322331 +612.332055 +612.345242 +612.359761 +612.364556 +612.379840 +612.389797 +612.400054 +612.402751 +612.408911 +612.419434 +612.468518 +612.477476 +612.536084 +612.536484 +612.564189 +612.577742 +612.579208 +612.588032 +612.634153 +612.662025 +612.675611 +612.691928 +612.694958 +612.825894 +612.846307 +612.860926 +612.861825 +612.888864 +613.232887 +613.303849 +613.309909 +613.311941 +613.316436 +613.339280 +613.354665 +613.394758 +613.423096 +613.424228 +613.461724 +613.516036 +613.519733 +613.542676 +613.586266 +613.594058 +613.596556 +613.604681 +613.607012 +613.610142 +613.610642 +613.612207 +613.612773 +613.697055 +613.711541 +613.713306 +613.714105 +613.772113 +613.772846 +613.784068 +613.793425 +613.810708 +613.811541 +613.824461 +613.911541 +613.912107 +613.914504 +613.918267 +614.014937 +614.997886 +615.115236 +615.194756 +615.223660 +615.252698 +615.267317 +615.321862 +615.346438 +615.364486 +615.381802 +615.392258 +615.401915 +615.411306 +615.455995 +615.476374 +615.524892 +615.554063 +615.578705 +615.615069 +615.622395 +615.674276 +615.675575 +616.359990 +616.385597 +616.447768 +616.475241 +616.537579 +616.544705 +616.673043 +616.689826 +616.709973 +616.724558 +616.766549 +616.877738 +616.914967 +616.978471 +617.000116 +617.282899 +617.312436 +617.349532 +617.350631 +617.711204 +617.835846 +617.854727 +617.866881 +617.875373 +617.884364 +618.646567 +618.674240 +618.675072 +618.699481 +618.802345 +618.915032 +618.936044 +618.970576 +622.584659 +622.714329 +622.872904 +622.961282 +624.025916 +624.073502 +624.107201 +624.158550 +624.194048 +624.236905 +624.279928 +624.549658 +624.628013 +625.202671 +625.259481 +625.276198 +625.359181 +625.360980 +625.397576 +625.428912 +625.458249 +625.514060 +625.521219 +625.543730 +625.545595 +625.587486 +625.593147 +625.658116 +625.671735 +625.690050 +625.789950 +626.037436 +626.040766 +626.050456 +626.059147 +626.068105 +626.080593 +626.090916 +626.136936 +626.145028 +626.150789 +626.209897 +626.250156 +626.254918 +626.257849 +626.290582 +626.355551 +626.414392 +626.429244 +626.435071 +626.443429 +626.451721 +626.480825 +626.495644 +626.560745 +626.561012 +626.564308 +626.620652 +626.639766 +626.645993 +626.648125 +626.656849 +626.657548 +627.450954 +627.465806 +627.477628 +627.479026 +627.486952 +627.500538 +627.518353 +627.520784 +627.529609 +627.553318 +627.572766 +627.586019 +627.661310 +627.691347 +627.709995 +627.735037 +627.801670 +627.816422 +627.855849 +627.871966 +627.882156 +627.883321 +627.899472 +627.907064 +627.917354 +627.954750 +627.955582 +628.005199 +628.035169 +628.046991 +628.066272 +628.075862 +628.098306 +628.114024 +628.126711 +628.127311 +628.151553 +628.174696 +628.683187 +628.688382 +628.692944 +628.746025 +628.770766 +628.789548 +628.807130 +628.807363 +628.817353 +628.837167 +628.838066 +628.860976 +628.905831 +628.927010 +628.939831 +628.978558 +628.990913 +629.004566 +629.008329 +630.011058 +630.036433 +630.060675 +630.089480 +630.138364 +630.189513 +630.230938 +630.236699 +630.271664 +631.092010 +631.099968 +631.147221 +631.147454 +631.160275 +631.212156 +631.237830 +631.245223 +631.271197 +631.292476 +631.322878 +631.351483 +631.372962 +631.449052 +632.427340 +632.458508 +632.480386 +632.494106 +632.522344 +632.562571 +632.742324 +632.766533 +633.273559 +633.289610 +633.318980 +633.330302 +633.350249 +633.358075 +633.359273 +634.211254 +634.323275 +635.338426 +635.347084 +635.376820 +635.403394 +635.447983 +636.003094 +636.177919 +636.213583 +636.248215 +636.727269 +636.769393 +636.824072 +636.833063 +636.873689 +636.877518 +636.895300 +636.937258 +636.958437 +637.177851 +637.312716 +637.404258 +638.041686 +638.063165 +638.196731 +638.276218 +638.278749 +638.279015 +638.348013 +638.480747 +639.672354 +639.702391 +639.726533 +639.793932 +640.830561 +640.852839 +640.875883 +640.910748 +640.946645 +640.972086 +641.012046 +641.084274 +641.583874 +641.606851 +641.609049 +641.633158 +641.669355 +641.675715 +641.713711 +642.044479 +642.045945 +642.071686 +642.102954 +642.103787 +642.140117 +642.185638 +642.199558 +642.207316 +642.241349 +642.250140 +642.251506 +642.272052 +642.357566 +643.031025 +643.043946 +643.056600 +643.108781 +643.112111 +643.243779 +643.532756 +643.836952 +644.140282 +644.507381 +646.509144 +646.534219 +646.534618 +647.043376 +647.576875 +647.597521 +647.620798 +648.043075 +648.718066 +648.742608 +648.776774 +648.823294 +649.114036 +649.163853 +649.171912 +649.184066 +649.253463 +649.268648 +649.275508 +649.307409 +649.321928 +649.327090 +649.327423 +649.358691 +649.413037 +649.419264 +649.547735 +649.557093 +649.569813 +649.619497 +649.656227 +649.689327 +649.694422 +649.708608 +649.716100 +649.756360 +649.946736 +649.953363 +649.962054 +649.963219 +649.982767 +649.984798 +649.992390 +649.994322 +650.027022 +650.029020 +650.455826 +650.484564 +650.512803 +650.536546 +650.556659 +650.559190 +650.567381 +650.574741 +650.604711 +650.640741 +650.657125 +650.658890 +650.727588 +650.754894 +650.795686 +651.627220 +651.636278 +651.647034 +651.661020 +651.666814 +651.683131 +651.712402 +651.760154 +651.827020 +651.877437 +651.880334 +651.888459 +651.922891 +651.937177 +651.957756 +652.039375 +653.085061 +658.280227 +658.469072 +658.755652 +658.777097 +658.789618 +659.619354 +659.682291 +659.722417 +659.759946 +659.768305 +659.782690 +659.808398 +659.831375 +659.859080 +659.890549 +659.918488 +659.918687 +659.925847 +659.953752 +659.954252 +659.979560 +659.987152 +659.987718 +660.003403 +660.064009 +660.084088 +660.112027 +660.144162 +660.144794 +660.169070 +660.185254 +660.207964 +660.642196 +660.655650 +660.656049 +660.682290 +660.698407 +660.779859 +660.858513 +660.901370 +660.987584 +660.992845 +661.009262 +661.026512 +661.901536 +662.017353 +662.042528 +662.063207 +662.092378 +662.093510 +662.100703 +662.279924 +662.327243 +662.397240 +662.413190 +662.456214 +662.485385 +662.532071 +662.587383 +663.175261 +664.516851 +664.535732 +664.550218 +664.569032 +664.598170 +664.649618 +664.748120 +665.873926 +665.909191 +665.967133 +666.045554 +666.069497 +666.145954 +666.192707 +666.205128 +666.240359 +666.246120 +667.076456 +667.100232 +667.149349 +667.151514 +667.167398 +667.193172 +667.223608 +667.288077 +667.324707 +667.337461 +668.724073 +668.796367 +668.799464 +668.821709 +668.839324 +668.922874 +669.530399 +669.640389 +669.640789 +669.702028 +669.819410 +669.850312 +669.926703 +669.932164 +670.272790 +671.166895 +671.170291 +671.215046 +671.272456 +671.484244 +672.659734 +672.680413 +672.702857 +672.703123 +672.729997 +672.820639 +672.872088 +672.890935 +672.947412 +673.287772 +673.380945 +673.957601 +673.958700 +674.386672 +674.620637 +675.502688 +675.643713 +675.763660 +675.776047 +676.539250 +676.539550 +676.563126 +676.567688 +676.760262 +676.854468 +676.902753 +676.989699 +677.010312 +677.111244 +677.284804 +677.358330 +677.362826 +677.389999 +677.866855 +677.939915 +677.970451 +677.988266 +678.010511 +678.012043 +678.014507 +678.137750 +678.138316 +678.138916 +678.238349 +678.338316 +678.342112 +678.345142 +678.438616 +678.440680 +678.445575 +678.537983 +678.539481 +678.544243 +678.639215 +678.640014 +678.640513 +678.643677 +678.644376 +678.741013 +678.742278 +678.747273 +678.842212 +678.844376 +678.941479 +678.942245 +678.942744 +679.142311 +679.169018 +679.193926 +679.225594 +679.413906 +679.420100 +679.539647 +679.737182 +680.043576 +680.240412 +680.240945 +680.339646 +680.341644 +680.347405 +680.351634 +680.440112 +680.539479 +680.540212 +680.569016 +680.645173 +680.646239 +680.739779 +680.741710 +680.745540 +680.840178 +680.841544 +680.842276 +680.842809 +680.845473 +680.939446 +680.942443 +680.946638 +681.040977 +681.042143 +681.240811 +681.245739 +681.341710 +681.342975 +681.920097 +683.279070 +683.308341 +684.405343 +684.460987 +685.671276 +686.190489 +687.292852 +687.366445 +687.542436 +688.070840 +690.406369 +692.001539 +693.333639 +693.463276 +693.540865 +693.574065 +693.990914 +693.995010 +694.005133 +694.034837 +694.082223 +694.107231 +694.140498 +694.151021 +694.192479 +694.193645 +694.266538 +694.294744 +694.309129 +694.328876 +694.408530 +694.422815 +695.083521 +695.117520 +695.148422 +695.196175 +695.198173 +695.228975 +695.250021 +695.265106 +695.319185 +695.325046 +695.336201 +695.339365 +695.364839 +696.499936 +696.596473 +696.616120 +696.659177 +696.724411 +696.781021 +698.249718 +699.335897 +699.352581 +699.380819 +699.415884 +699.483949 +699.511388 +699.536064 +700.192407 +700.258141 +701.124107 +701.216382 +701.233298 +701.236362 +702.310153 +702.710886 +702.722507 +703.046949 +703.314748 +703.347415 +704.739988 +704.766861 +704.783378 +704.802092 +704.817444 +704.831829 +705.609551 +705.610117 +705.678748 +705.718775 +705.793234 +705.832561 +706.840618 +706.964428 +706.984674 +707.027065 +707.202123 +707.307484 +707.328264 +707.437488 +708.256468 +708.333191 +708.341216 +708.359898 +708.400224 +708.427463 +708.438952 +708.544380 +708.617074 +708.631892 +708.638252 +709.516407 +709.610512 +709.632257 +709.643246 +709.722467 +709.753636 +709.760929 +709.772883 +709.790233 +709.811378 +709.922567 +709.939017 +709.983273 +709.984638 +710.008947 +710.038251 +710.039849 +710.058764 +710.123432 +710.206283 +710.517072 +710.549373 +711.019369 +711.040648 +711.105749 +711.231590 +711.239915 +711.243178 +711.317038 +711.319302 +711.322998 +711.407347 +711.410844 +711.873314 +711.906214 +712.074180 +712.118902 +712.180540 +712.196224 +712.281339 +712.463490 +712.496124 +712.508312 +712.565055 +712.889197 +712.890429 +712.964122 +712.982004 +712.998055 +713.111408 +713.139247 +713.139846 +713.141311 +713.142510 +713.143176 +713.239546 +713.240079 +713.240679 +713.241078 +713.242210 +713.242577 +713.340279 +713.340512 +713.340745 +713.342344 +713.345107 +713.350635 +713.439979 +713.440945 +713.441344 +713.442210 +713.442577 +713.442943 +713.545007 +713.550169 +713.640645 +713.641011 +713.643109 +713.645007 +713.647538 +713.740512 +713.741910 +713.742543 +713.745240 +713.839679 +713.840845 +713.841444 +713.842376 +713.843775 +713.845740 +713.942176 +713.942709 +713.945407 +714.040678 +714.041544 +714.042176 +714.045073 +714.048703 +714.143941 +714.242542 +714.245140 +714.247504 +714.341344 +714.342109 +714.342409 +714.442675 +714.446372 +714.447870 +714.639212 +714.639678 +714.640144 +714.641443 +714.642109 +714.645539 +714.645972 +714.740677 +714.741843 +714.744806 +714.844174 +714.940744 +714.941043 +714.942575 +714.947337 +715.042142 +715.042808 +715.047603 +715.048436 +715.141509 +715.143407 +715.242242 +715.243707 +715.244939 +715.246870 +715.248136 +715.343341 +715.347103 +715.441043 +715.442341 +715.446904 +715.447103 +715.447703 +715.539877 +715.540443 +715.541575 +715.644506 +715.648069 +715.738678 +715.739644 +715.741542 +715.745205 +715.749800 +715.842141 +715.845072 +715.847136 +715.862121 +715.920030 +715.924725 +715.925225 +715.932251 +715.939144 +715.941941 +715.942208 +716.041175 +716.140376 +716.240509 +716.244405 +716.444938 +716.445937 +716.541408 +716.542074 +716.544605 +716.640442 +716.646336 +716.740009 +716.743106 +716.743905 +716.745071 +716.842207 +716.842606 +716.844571 +716.845404 +716.940908 +716.942173 +716.944604 +716.945404 +716.945970 +716.949400 +717.039310 +717.041641 +717.042007 +717.044171 +717.045936 +717.141607 +717.141907 +717.143572 +717.144471 +717.145137 +717.145936 +717.147435 +717.239742 +717.241774 +717.242773 +717.243971 +717.244338 +717.341907 +717.342839 +717.344338 +717.347901 +717.440308 +717.442473 +717.443338 +717.443538 +717.444138 +717.541007 +717.543605 +717.545170 +717.545736 +717.547434 +717.547900 +717.640375 +717.642373 +717.645636 +717.741740 +717.743438 +717.842705 +717.845736 +717.846835 +717.848699 +717.855692 +717.940108 +717.940974 +717.942272 +717.954727 +718.040840 +718.042672 +718.045003 +718.271543 +718.799081 +718.859155 +718.897683 +718.939308 +718.949797 +718.959288 +718.965581 +718.966381 +719.000480 +719.032514 +719.064782 +719.119660 +719.182897 +719.220826 +719.248798 +719.251961 +719.255258 +719.255891 +719.425721 +719.438475 +719.655757 +719.666180 +719.780133 +719.817029 +719.818494 +719.857588 +719.875038 +719.958654 +720.181897 +720.247898 +720.386392 +720.454125 +720.459652 +720.512966 +720.527485 +720.626552 +720.632380 +720.764714 +720.771407 +720.881663 +720.888856 +720.891853 +720.921357 +721.024121 +721.078100 +721.097181 +721.162416 +721.163415 +721.165413 +721.271606 +721.817427 +721.837573 +721.891752 +721.913863 +721.954190 +722.000344 +722.012731 +722.015362 +722.099145 +722.450859 +722.742800 +722.753223 +722.775534 +722.835208 +722.946496 +722.970739 +722.973037 +723.038904 +723.039403 +723.574035 +723.616726 +723.886289 +723.917591 +724.048260 +724.213728 +724.258250 +724.484790 +724.514593 +724.541800 +724.565676 +724.709365 +724.801073 +724.831043 +724.980427 +725.029545 +725.070537 +725.119721 +725.147593 +725.163444 +725.206268 +725.270770 +725.294946 +725.309265 +725.380160 +725.403903 +725.474466 +725.510563 +725.521519 +725.589218 +725.605601 +725.610230 +725.638335 +725.644030 +725.666773 +725.680859 +725.696510 +725.722251 +725.729477 +725.741965 +725.756717 +725.802538 +725.803936 +725.891981 +725.911895 +725.930676 +725.989817 +726.005135 +726.014625 +726.017622 +726.061045 +726.078228 +726.119953 +726.249457 +726.318921 +726.329510 +726.364275 +726.443962 +726.533706 +726.597941 +726.630509 +726.790315 +726.791281 +726.791814 +726.807631 +726.872833 +726.920585 +726.936070 +726.939400 +727.183588 +727.215956 +727.217654 +727.273265 +727.290282 +727.297275 +727.370068 +727.431107 +727.520251 +727.587617 +727.620884 +727.632672 +727.635836 +727.637567 +727.661610 +727.681523 +727.689848 +727.699072 +727.711860 +727.733038 +727.993544 +728.269868 +728.277793 +728.359844 +728.381689 +728.450653 +728.473297 +728.507230 +728.543694 +728.664673 +728.742328 +728.746357 +728.767603 +728.866138 +728.880090 +728.880623 +728.978259 +729.074962 +729.119750 +729.173630 +729.188681 +729.194609 +729.232604 +729.428375 +729.447023 +729.480223 +729.504898 +729.524012 +729.595907 +729.596640 +729.685884 +729.874928 +729.887149 +729.923712 +729.988314 +730.004598 +730.210625 +730.215553 +730.223113 +730.235533 +730.373762 +730.374661 +730.376825 +730.474927 +730.479989 +730.487481 +730.551451 +730.607161 +730.620015 +730.818550 +730.823079 +730.905496 +731.122945 +731.271596 +731.377024 +731.562705 +731.582485 +731.589045 +731.593441 +731.618449 +731.749318 +731.752249 +731.752848 +731.757577 +731.760707 +731.773094 +731.949651 +732.079221 +732.094606 +732.116917 +732.125708 +732.133434 +732.134200 +732.150550 +732.302864 +732.364436 +732.403397 +732.550350 +732.627939 +732.653480 +732.661072 +732.671495 +732.693540 +732.813619 +732.818215 +732.825807 +733.055611 +733.069696 +733.228171 +733.230669 +733.239460 +733.243156 +733.324342 +733.338627 +733.348551 +733.359140 +733.575190 +733.681651 +733.712087 +733.969396 +733.989243 +734.010421 +734.024274 +734.024974 +734.025939 +734.028437 +734.164900 +734.171327 +734.173325 +734.510887 +734.519012 +734.561237 +734.574290 +734.652312 +734.692905 +734.725805 +734.742189 +734.744120 +734.823574 +734.906191 +734.911986 +734.979951 +734.980151 +735.093304 +735.166964 +735.292871 +735.298798 +735.425738 +735.436228 +735.447316 +735.534163 +735.588642 +735.594802 +735.606490 +735.685611 +735.691905 +736.024072 +736.122840 +736.125970 +736.175521 +736.217013 +736.221075 +736.239057 +736.285577 +736.320975 +736.325571 +736.332064 +736.369926 +736.392237 +736.403826 +736.534728 +737.015380 +737.065630 +737.154907 +737.155973 +737.157271 +737.157771 +737.160069 +737.160368 +737.161101 +737.164897 +737.166928 +737.243086 +737.257971 +737.267228 +737.267961 +737.313848 +737.321307 +737.399229 +737.451777 +737.456872 +737.751610 +737.807554 +737.884710 +737.972888 +737.976585 +737.980880 +738.039055 +738.039488 +738.039788 +738.041153 +738.042785 +738.044050 +738.045416 +738.241486 +738.333161 +738.339055 +738.340920 +738.343850 +738.355639 +738.365562 +738.428366 +738.431962 +738.435059 +738.490770 +738.495199 +738.498928 +738.634693 +738.641686 +738.671955 +738.709318 +738.930863 +739.039354 +739.039920 +739.053007 +739.272987 +739.375584 +739.465960 +739.494532 +739.534126 +739.612381 +739.674385 +739.685574 +739.723536 +739.724635 +739.739387 +739.757136 +739.791135 +739.831162 +739.847012 +739.856170 +739.866526 +739.964695 +739.982976 +739.995930 +740.037755 +740.038121 +740.041717 +740.042084 +740.042383 +740.310382 +740.323302 +740.391800 +740.409283 +740.445347 +740.501590 +740.514145 +740.530195 +740.550009 +740.562896 +740.578380 +740.658267 +740.688570 +740.716675 +740.881943 +740.884074 +740.888337 +740.895196 +740.991800 +740.992466 +740.995762 +741.005353 +741.040884 +741.041483 +741.045479 +741.051074 +741.249508 +741.299259 +741.625332 +741.671186 +741.750107 +741.752172 +741.757000 +741.758566 +741.763427 +741.893098 +741.902854 +741.911746 +741.990001 +742.038319 +742.039684 +742.040550 +742.041815 +742.043547 +742.149807 +742.161829 +742.162428 +742.170586 +742.732357 +742.751472 +742.793763 +742.836187 +742.936420 +742.965491 +743.015874 +743.037585 +743.041115 +743.186137 +743.189067 +743.199323 +743.282074 +743.284771 +743.286603 +743.379709 +743.383772 +743.389699 +743.396792 +743.458431 +743.461061 +743.473615 +743.993928 +743.996092 +744.046642 +744.078110 +744.089366 +744.106882 +744.178543 +744.458263 +744.568053 +744.573381 +744.627527 +744.646774 +744.674114 +744.683438 +744.776977 +744.777477 +744.782905 +744.788899 +744.793061 +744.949638 +744.950304 +744.951869 +744.954733 +744.955665 +745.200354 +745.217403 +745.240913 +745.245608 +745.247839 +745.249871 +745.251736 +745.374080 +745.377610 +745.388032 +745.512042 +745.516304 +745.522864 +745.545974 +745.563557 +745.821898 +745.825062 +746.250103 +746.260859 +746.285201 +746.294558 +746.307845 +746.312640 +746.320266 +746.390129 +746.399020 +746.402917 +746.471548 +746.472047 +746.476376 +746.481904 +746.482903 +746.571481 +746.574745 +746.576077 +746.582237 +746.670249 +746.715037 +746.718534 +746.723862 +746.731488 +746.733286 +746.733619 +746.737515 +746.740878 +747.463988 +747.529988 +747.533152 +747.547238 +747.547870 +747.548903 +747.556995 +747.564920 +747.567118 +747.569282 +747.669615 +747.717567 +747.722995 +747.728689 +747.789029 +747.914037 +747.921397 +748.138746 +748.139378 +748.240510 +748.240977 +748.244107 +748.245206 +748.340510 +748.341443 +748.344706 +748.345039 +748.441110 +748.442741 +748.442974 +748.443574 +748.541043 +748.640643 +748.643474 +748.644872 +748.647636 +748.740343 +748.741376 +748.741576 +748.744073 +748.839244 +748.843074 +748.844506 +748.938945 +748.940343 +748.941475 +749.041176 +749.041842 +749.042474 +749.141176 +749.146470 +749.239311 +749.241175 +749.242208 +749.246270 +749.452297 +749.640775 +749.740675 +749.741308 +749.747435 +749.844838 +749.940942 +749.941741 +749.945637 +749.947369 +750.040808 +750.241741 +750.242973 +750.339476 +750.340542 +750.341474 +750.342340 +750.441241 +750.442706 +750.446069 +750.539010 +750.540009 +750.540508 +750.543072 +750.545703 +750.547501 +750.640541 +750.642673 +750.738943 +750.742339 +750.743039 +750.745203 +750.747601 +750.840008 +750.840907 +750.841740 +750.845103 +750.944271 +751.141007 +751.142239 +751.241540 +751.242239 +751.246235 +751.248966 +751.341606 +751.350031 +751.438942 +751.439941 +751.441007 +751.441939 +751.446801 +751.542439 +751.545602 +751.641406 +751.645302 +751.645768 +751.744869 +751.841972 +751.842505 +751.938808 +751.940840 +752.038775 +752.041206 +752.045568 +752.150230 +752.247166 +752.340673 +752.441772 +752.447499 +752.547266 +752.641838 +752.647499 +752.649530 +752.740806 +752.839906 +752.841538 +752.842570 +752.938441 +752.940506 +752.940872 +752.944369 +752.945301 +753.039806 +753.040472 +753.043436 +753.043836 +753.051361 +753.781730 +754.249262 +754.367111 +754.372872 +754.481763 +754.820757 +755.240803 +755.256487 +755.262315 +755.454955 +755.497313 +755.539571 +755.569108 +755.898511 +755.934076 +755.988088 +756.081728 +756.100276 +756.107502 +756.160849 +756.161382 +756.279930 +756.284458 +756.443766 +756.446030 +756.449360 +756.458784 +756.463879 +756.491684 +756.495947 +756.497046 +756.571138 +756.607002 +756.632077 +756.866942 +757.125483 +757.142699 +757.155586 +757.180828 +757.240235 +757.886655 +758.038636 +758.043065 +758.274833 +758.342632 +758.361379 +758.382592 +758.486654 +758.549325 +758.570170 +758.592049 +758.666274 +758.667973 +758.783823 +758.949091 +759.044662 +759.074599 +759.132574 +759.198541 +759.237736 +759.282624 +759.294912 +759.376730 +759.407432 +759.479494 +759.494046 +759.525248 +759.553386 +759.582923 +759.603436 +759.667106 +759.685554 +759.749856 +759.780925 +759.859580 +759.888717 +759.891348 +759.906200 +759.935970 +759.938434 +759.995311 +760.182623 +760.212193 +760.229310 +760.243329 +760.276229 +760.305933 +760.320785 +760.349889 +760.415190 +760.458680 +760.473399 +760.505633 +760.566039 +760.594444 +760.708830 +760.735436 +760.753352 +760.811294 +760.857314 +760.960844 +761.007164 +761.073498 +761.094211 +761.184787 +761.254617 +761.369668 +761.386485 +761.426578 +761.560510 +761.578559 +761.588815 +761.589681 +761.624546 +761.735002 +761.768968 +761.830074 +761.842195 +761.923381 +761.925678 +761.925878 +761.974130 +762.081755 +762.119917 +762.199438 +762.576260 +762.776194 +762.889647 +762.893676 +762.926876 +763.858876 +764.133901 +764.153382 +764.199436 +764.260375 +764.307028 +764.332236 +764.466169 +764.668899 +764.681087 +764.910524 +764.923910 +765.064570 +765.139395 +765.402298 +765.417683 +765.418648 +765.450117 +765.589744 +765.614752 +765.689844 +765.776224 +765.855944 +765.857309 +765.860673 +765.861805 +766.054778 +766.061139 +766.068498 +766.102464 +766.104462 +766.105195 +766.128538 +766.128937 +766.130802 +766.140992 +766.166467 +766.396203 +766.403596 +766.430769 +766.441957 +766.473726 +766.909689 +766.928237 +767.178687 +767.183449 +767.212753 +767.228304 +767.231867 +767.232366 +767.232932 +767.239692 +767.407058 +768.293071 +768.752411 +768.873623 +768.962668 +769.492903 +769.726669 +769.737092 +769.744152 +770.045650 +770.194601 +770.298697 +770.302093 +770.329866 +770.334661 +770.516479 +770.674088 +770.676619 +770.684111 +770.686176 +770.711750 +771.139289 +771.201993 +771.209985 +771.211250 +771.457603 +771.640554 +771.642685 +771.647746 +771.864196 +771.865462 +771.868326 +771.878049 +771.918942 +771.986041 +771.988106 +771.990637 +771.993800 +772.172321 +772.497329 +772.641485 +772.661998 +772.665228 +772.669224 +773.009916 +773.039254 +773.206886 +773.210382 +773.221971 +773.258134 +773.260033 +773.260965 +773.262430 +773.270289 +774.038120 +774.040518 +774.042150 +774.043648 +774.405020 +774.405652 +774.599858 +774.972185 +775.247310 +776.710645 +778.459861 +778.520800 +779.695690 +780.280638 +781.611772 +781.647703 +783.637345 +789.978797 +789.999976 +790.953821 +790.965576 +791.111563 +791.157351 +791.199242 +791.906134 +795.115255 +795.200970 +795.202834 +795.310760 +795.772831 +795.892711 +796.013556 +796.377092 +796.573229 +796.709926 +796.818451 +796.943159 +797.282386 +797.364970 +797.382852 +797.415653 +797.670498 +797.718982 +797.735965 +797.940860 +798.481885 +798.501766 +800.474424 +800.500665 +801.459705 +801.463801 +801.584480 +801.620144 +801.736761 +801.763367 +801.859005 +801.940856 +802.080417 +802.080850 +803.045784 +803.071957 +803.294135 +803.340422 +803.550578 +803.564997 +803.575054 +803.590472 +803.795933 +803.841287 +803.861767 +803.917145 +803.929466 +803.946848 +803.963332 +803.976952 +804.042453 +804.043618 +804.052143 +804.062666 +804.144417 +804.156705 +804.195899 +804.221773 +804.241187 +804.328833 +804.386841 +804.500727 +804.506954 +804.555872 +804.575219 +804.611949 +804.636991 +804.668060 +804.673155 +804.748379 +804.768060 +804.827833 +804.831663 +804.833994 +804.919908 +804.968526 +804.997996 +805.019175 +805.022005 +805.063597 +805.128565 +805.191136 +805.225102 +805.368858 +805.370323 +805.371123 +805.394999 +805.395731 +805.404156 +805.406521 +805.411183 +805.429065 +805.445848 +805.464629 +805.471888 +805.472654 +805.502957 +805.519474 +805.624702 +805.678515 +806.026134 +806.400892 +806.548078 +806.591168 +806.605687 +806.668124 +806.707651 +807.443848 +807.476282 +807.523768 +807.632925 +807.675050 +807.736355 +807.775283 +807.824334 +807.824866 +807.840984 +807.991766 +807.995029 +808.004786 +808.240351 +808.381409 +808.391932 +808.503820 +808.829261 +808.848442 +808.897926 +809.023267 +809.171951 +809.515041 +809.589234 +809.624698 +809.685071 +809.711012 +809.789999 +810.234787 +810.268054 +810.928260 +811.243345 +811.492995 +811.495692 +811.520667 +811.534187 +811.534986 +811.568452 +811.609078 +811.630957 +811.672981 +811.680607 +811.762192 +811.770117 +811.793427 +811.911276 +811.947007 +811.947739 +812.018136 +812.022764 +812.033887 +812.669384 +812.703816 +812.704282 +812.716137 +812.859926 +813.236716 +813.574711 +813.643975 +813.675277 +813.710042 +813.773645 +813.791028 +813.804747 +813.866252 +814.007411 +814.082236 +814.233818 +814.267018 +814.289595 +814.301750 +814.340977 +814.425626 +814.438912 +814.443142 +814.509908 +814.589162 +814.632552 +814.653098 +814.653797 +814.696854 +814.701716 +814.819698 +814.949635 +814.971046 +815.087430 +815.363420 +815.433250 +815.438479 +815.477773 +815.478439 +815.528988 +815.573710 +815.678239 +815.728655 +815.736347 +815.752065 +815.796587 +815.865418 +815.893323 +815.919897 +815.920563 +815.934782 +815.942740 +815.974209 +815.987263 +815.987929 +815.992058 +816.045737 +816.077006 +816.104678 +816.146670 +816.289260 +816.348101 +816.382167 +816.383766 +816.415234 +816.424125 +816.525724 +816.526789 +818.138209 +818.237843 +818.238209 +818.239275 +818.239774 +818.242805 +818.339674 +818.638109 +818.737210 +818.835245 +818.838209 +818.938442 +819.038908 +819.237842 +819.238941 +819.437276 +819.738274 +819.939273 +820.239806 +820.936542 +822.838138 +826.531375 +827.002570 +827.014324 +827.334904 +827.428243 +827.608896 +827.664773 +827.678726 +827.723748 +827.761077 +828.466138 +828.586717 +828.777593 +830.049153 +830.329306 +830.476159 +830.621780 +831.452182 +831.858775 +831.932968 +832.142758 +832.206660 +832.220014 +832.324942 +832.407925 +832.420679 +832.564635 +832.656343 +833.595836 +833.714984 +835.433397 +835.707756 +836.363999 +839.033527 +839.099028 +839.140486 +839.148079 +839.217276 +839.247745 +839.414845 +839.461998 +839.530529 +839.607352 +839.716709 +839.717375 +839.812513 +839.878314 +839.995763 +840.026632 +840.042650 +840.064927 +840.373818 +840.435457 +840.490069 +840.567291 +840.576748 +840.592033 +840.608317 +840.654304 +840.678380 +841.000824 +841.049675 +841.189235 +841.215176 +841.256401 +841.263594 +841.297893 +841.298759 +841.362862 +841.416275 +841.548775 +841.584739 +841.592998 +841.635089 +841.731592 +841.732492 +841.768222 +841.968156 +842.037020 +842.061429 +842.082774 +842.183840 +842.287170 +842.308015 +842.338984 +842.351772 +842.393197 +842.397126 +842.419104 +842.622334 +842.670985 +842.678545 +842.924199 +842.994029 +843.012843 +843.014009 +843.033156 +843.164325 +843.226596 +843.688300 +843.771451 +843.779143 +843.805650 +844.008447 +844.156931 +844.178476 +844.181407 +844.689199 +844.723930 +844.769285 +844.797890 +844.802585 +844.899388 +844.939714 +844.970650 +845.773746 +845.909577 +846.451068 +846.629323 +846.848870 +847.524627 +847.549968 +847.610608 +847.666951 +847.729888 +847.757461 +847.929821 +848.004180 +848.033451 +848.219831 +848.265752 +848.465552 +848.733284 +848.797186 +848.804346 +848.860123 +848.981302 +848.989594 +849.023993 +849.258458 +849.322694 +849.352897 +849.464951 +849.513037 +849.613603 +849.673975 +849.751032 +849.787096 +849.851065 +850.140242 +850.228087 +850.278004 +850.364484 +850.376672 +850.512569 +850.522926 +850.523791 +850.633348 +850.657857 +850.727687 +850.850131 +850.893954 +850.926089 +850.989525 +851.026322 +851.426022 +851.599415 +851.647267 +851.648765 +851.681200 +853.034911 +853.137775 +853.138741 +853.139640 +853.140439 +853.240039 +853.242736 +853.338541 +853.938507 +853.939273 +854.739039 +855.636207 +857.937537 +859.313959 +859.397675 +859.582457 +859.626180 +859.627079 +860.783222 +862.437333 +863.049220 +863.946489 +864.364171 +864.533434 +864.834866 +865.068133 +865.561206 +865.592408 +865.691076 +867.402562 +867.493405 +867.641257 +868.278119 +868.315615 +868.335329 +868.653044 +868.656807 +868.929667 +870.548280 +870.556239 +870.632995 +870.693468 +870.695167 +870.695932 +870.744584 +870.831197 +871.717743 +871.776984 +871.777250 +872.947112 +872.960099 +872.973253 +873.009050 +873.022837 +873.091401 +875.817606 +875.855035 +875.874882 +875.875315 +875.931858 +875.936820 +875.970220 +876.067456 +876.147675 +877.267954 +877.282339 +877.399256 +877.494427 +877.513308 +877.553601 +877.554367 +878.237383 +878.758628 +878.873580 +878.881905 +878.947373 +880.180838 +881.942208 +883.034981 +885.243171 +886.299047 +886.347465 +886.361152 +886.367578 +886.399280 +886.404508 +886.504475 +886.549729 +886.580365 +886.594585 +886.609336 +886.625454 +886.656523 +886.662983 +886.790888 +887.157088 +887.167711 +887.245267 +887.991153 +887.997613 +888.075236 +888.101176 +889.327815 +890.716059 +890.725350 +890.795879 +890.806402 +891.063378 +891.537037 +891.750057 +891.756917 +891.769072 +891.832908 +891.975631 +891.976431 +892.046427 +892.054919 +892.086387 +892.100873 +892.118155 +892.168705 +892.202105 +892.202305 +892.204369 +892.204602 +892.212061 +892.271935 +892.272368 +892.772367 +892.786819 +892.935737 +893.058514 +893.073066 +893.092280 +893.198441 +893.216156 +893.216656 +893.228910 +893.241664 +893.242597 +893.274898 +893.295777 +893.300539 +894.030907 +895.126511 +895.138432 +895.159111 +895.175595 +895.212258 +896.281222 +896.285218 +898.049818 +898.664403 +901.054710 +901.854376 +901.934130 +902.148648 +903.223872 +903.328700 +903.362100 +903.419343 +903.441521 +903.497631 +903.508287 +903.570991 +903.574588 +903.591770 +903.592803 +903.663399 +903.673022 +903.696199 +903.698697 +903.713315 +903.715580 +903.765064 +903.784544 +904.784809 +904.790137 +904.801593 +904.802625 +904.803624 +904.819009 +904.831962 +904.832761 +904.852375 +904.886175 +904.893401 +904.918809 +904.925335 +904.942385 +904.944716 +904.963664 +904.975052 +904.991869 +905.006754 +905.023004 +905.041819 +905.055106 +905.056105 +905.110150 +906.290203 +906.310649 +906.337389 +906.351341 +906.393233 +906.405121 +906.427632 +906.472720 +906.491568 +906.516909 +906.525667 +906.555004 +906.578914 +907.587304 +907.650674 +907.672319 +907.715476 +907.735256 +907.781809 +907.783874 +907.784440 +907.872352 +907.888969 +907.906018 +909.020103 +909.030160 +909.083839 +909.124199 +909.137253 +909.182674 +909.210579 +909.524632 +910.154301 +910.203219 +910.204551 +910.245910 +910.248640 +910.281141 +910.281574 +910.299689 +910.353369 +910.378677 +910.395726 +910.408414 +910.409179 +910.426962 +911.314140 +911.360494 +912.237183 +912.297889 +912.402018 +913.087032 +913.092793 +913.106679 +913.253699 +913.290529 +913.452000 +913.511707 +914.633884 +914.710940 +914.729521 +914.769049 +915.041909 +915.502048 +915.565085 +915.579038 +915.579937 +916.395287 +916.510106 +916.541674 +917.187228 +917.262752 +917.263418 +917.285996 +917.288327 +917.760820 +918.560287 +918.570277 +918.596750 +918.624789 +918.649498 +918.845535 +918.861286 +918.876670 +918.948498 +920.192087 +920.250961 +920.271407 +920.299013 +920.322723 +920.339905 +920.356622 +920.394018 +920.459286 +920.561417 +920.587391 +920.685759 +921.421090 +921.460617 +921.472805 +921.508469 +921.521090 +921.521456 +921.564513 +921.591519 +921.643867 +921.739837 +921.750094 +921.762182 +921.781462 +921.785359 +921.801709 +921.842168 +921.864513 +921.868442 +921.891852 +921.950793 +923.005770 +923.055920 +923.072137 +923.100475 +923.166043 +923.228914 +923.430012 +923.840568 +924.293115 +924.335206 +925.374965 +925.394179 +925.421319 +925.496910 +925.528245 +925.563310 +925.582391 +925.607133 +925.607732 +925.632841 +925.633540 +925.670470 +926.534638 +926.841897 +926.944894 +927.046858 +927.718220 +927.878992 +927.935802 +928.692345 +928.706630 +928.752418 +928.774462 +928.782921 +928.804432 +928.847956 +928.854183 +928.886251 +928.908428 +928.971166 +928.988082 +929.004366 +929.014522 +929.044259 +929.712390 +929.722147 +929.733003 +929.779523 +929.842627 +929.845757 +929.887848 +929.945324 +930.034834 +930.048154 +930.072863 +930.080056 +931.121446 +931.202565 +931.272462 +931.325775 +931.339029 +931.482751 +931.498902 +931.512388 +931.523644 +932.765834 +932.854978 +933.048284 +934.991772 +935.102528 +936.234562 +936.379516 +936.779316 +937.311850 +937.375852 +937.461034 +937.672855 +938.197164 +938.294500 +938.427866 +938.428865 +938.465628 +938.466128 +938.549078 +938.584210 +938.591502 +938.631462 +938.690969 +938.882311 +938.903457 +938.914679 +938.925834 +939.000127 +939.037323 +939.180946 +939.208351 +940.061231 +940.079380 +940.102190 +940.112247 +940.120572 +940.122303 +940.185507 +940.355770 +940.385706 +940.422536 +940.452839 +941.547310 +941.563061 +941.563527 +941.579611 +941.615009 +941.637453 +941.661529 +941.690600 +941.701189 +941.702588 +941.846278 +941.890833 +941.891066 +941.898459 +942.656899 +942.718471 +942.763426 +943.417705 +943.434521 +943.457332 +943.467954 +943.501621 +943.539216 +943.668220 +943.688034 +943.732556 +944.781573 +944.820301 +944.832422 +945.049971 +947.544507 +947.575443 +947.598286 +947.610041 +947.670481 +947.699718 +947.730654 +947.755096 +947.770681 +947.835416 +947.855596 +947.907777 +947.926957 +947.956162 +947.985232 +948.031753 +948.032785 +948.193724 +948.208009 +948.231886 +948.277740 +948.294656 +948.338212 +948.959224 +948.980370 +949.003247 +949.129554 +949.140276 +949.226257 +949.277073 +949.286497 +949.293523 +949.309340 +949.382134 +949.423726 +949.426756 +949.493922 +950.162986 +950.228953 +950.243272 +950.261321 +950.281168 +950.297917 +950.332916 +950.343305 +950.355893 +950.369013 +950.397718 +950.542573 +951.567780 +951.662052 +951.691989 +951.693787 +951.724090 +951.772908 +951.787526 +951.818462 +951.856424 +952.861718 +952.931048 +952.988924 +953.016763 +953.640205 +953.915996 +953.933345 +953.935143 +954.003442 +954.064447 +954.137707 +954.202842 +954.204141 +954.640770 +954.833777 +955.117460 +956.455354 +958.054620 +958.080261 +958.197377 +958.227580 +958.337437 +958.340300 +958.437237 +958.438336 +958.442698 +958.738169 +958.739667 +959.241099 +959.339900 +959.421818 +959.441265 +959.481525 +960.341331 +961.045592 +961.335902 +961.744526 +962.555647 +962.601868 +962.615021 +962.845424 +962.846157 +962.946390 +963.045857 +963.933035 +963.945723 +963.950984 +963.978923 +964.007095 +964.020315 +964.075593 +964.403598 +965.331436 +965.380686 +965.382052 +965.405395 +965.499767 +965.535831 +966.141192 +967.995902 +970.495733 +971.104357 +973.268690 +973.402456 +973.402623 +973.530229 +973.565460 +973.637022 +973.716575 +973.875150 +974.002689 +974.022702 +974.033891 +974.775016 +974.908282 +974.945379 +974.989035 +975.134722 +975.135955 +975.596860 +975.605818 +975.606084 +975.644945 +975.687436 +975.707416 +975.716707 +975.783939 +975.787136 +975.806517 +975.824665 +975.856333 +975.880709 +975.896527 +975.908681 +975.935954 +976.277179 +977.066555 +977.091597 +977.092996 +977.131990 +977.133755 +977.163958 +977.164357 +977.194294 +977.205982 +977.208413 +977.210911 +977.260628 +977.427061 +977.457664 +977.505216 +977.550138 +977.639948 +977.696192 +977.710844 +978.680773 +978.694359 +978.694892 +978.723530 +978.756530 +978.789631 +978.833686 +978.849804 +978.890896 +978.959494 +978.974013 +978.982271 +979.038182 +979.049704 +979.061891 +980.315969 +980.322463 +980.331520 +980.358360 +980.368317 +980.392493 +980.393259 +980.393725 +980.443642 +980.510208 +980.570881 +980.576242 +981.536947 +981.678505 +981.731253 +981.743341 +981.773311 +982.870712 +982.877705 +982.892490 +982.987695 +983.961720 +984.007840 +984.032482 +984.033148 +984.069845 +984.070378 +984.126555 +984.157624 +984.159022 +984.210105 +984.236378 +984.250897 +984.287227 +984.288992 +984.327987 +984.329219 +984.345669 +984.760454 +984.768612 +984.833414 +984.869811 +984.902378 +984.925489 +984.971276 +986.043336 +986.068311 +986.088724 +986.108271 +986.130216 +986.195284 +986.209969 +986.264715 +986.276536 +986.327086 +986.332380 +986.471008 +986.501644 +987.625952 +987.665579 +987.703741 +987.752692 +987.862482 +987.960284 +987.986092 +988.033078 +988.088855 +988.167577 +988.185892 +988.204140 +988.230747 +989.064479 +989.208035 +990.092317 +990.117425 +990.219156 +990.223385 +990.235673 +990.286056 +990.297778 +990.324218 +990.367141 +990.410232 +990.457351 +990.498410 +990.567841 +990.577264 +992.153786 +992.192514 +993.140632 +993.242164 +993.339200 +993.339400 +993.408231 +993.429676 +993.439333 +993.525480 +993.526113 +993.540298 +993.543595 +993.640665 +993.647791 +993.738933 +993.740665 +993.743395 +993.745759 +993.841464 +993.842496 +993.844094 +993.940298 +993.941863 +993.942629 +993.943095 +993.948523 +994.040032 +994.043761 +994.241030 +994.241730 +994.247091 +994.344727 +994.444227 +994.447690 +994.543461 +994.545126 +994.550720 +994.640164 +994.641862 +994.653717 +994.714323 +994.745359 +994.769401 +994.787883 +994.830107 +994.862308 +995.041496 +995.043594 +995.140030 +995.440130 +995.683453 +997.487248 +997.859608 +997.945123 +998.527207 +998.548452 +998.573960 +998.746454 +999.214652 +999.272361 +999.287346 +999.319680 +999.424808 +1000.547218 +1000.560904 +1000.588477 +1000.601730 +1000.618213 +1000.645986 +1000.677521 +1000.737794 +1000.843488 +1001.500697 +1001.892438 +1001.932331 +1001.940223 +1002.075188 +1002.082215 +1002.944252 +1003.049946 +1005.413946 +1007.846545 +1007.914310 +1008.128396 +1008.273351 +1008.374716 +1008.374916 +1008.387803 +1008.388169 +1008.397393 +1008.415242 +1008.462595 +1008.471452 +1008.472318 +1008.481076 +1008.488435 +1008.500423 +1008.521569 +1008.537486 +1008.544546 +1008.560363 +1008.563926 +1008.582841 +1008.589667 +1008.618039 +1008.629727 +1008.682574 +1008.709814 +1008.713643 +1008.722168 +1008.737386 +1008.865192 +1008.875648 +1008.882774 +1008.894562 +1008.918638 +1008.929694 +1008.962561 +1008.968188 +1008.978611 +1008.993297 +1009.673283 +1009.720003 +1009.758830 +1009.774481 +1009.774981 +1009.796959 +1009.819669 +1009.861361 +1010.023732 +1010.036452 +1010.070818 +1010.115906 +1011.012442 +1011.017637 +1011.028027 +1011.073681 +1011.083771 +1011.099322 +1011.125096 +1011.131689 +1011.147141 +1011.149738 +1011.162825 +1011.163458 +1011.186035 +1011.193661 +1011.209445 +1011.222232 +1011.245342 +1011.332755 +1011.341146 +1011.357796 +1011.372781 +1011.417137 +1011.430890 +1011.457030 +1011.489198 +1011.494826 +1011.527194 +1011.548272 +1011.554300 +1011.569784 +1011.625895 +1011.653500 +1012.493726 +1012.494392 +1012.506646 +1012.513440 +1012.528858 +1012.529257 +1012.583769 +1012.584002 +1012.600353 +1012.601685 +1012.635717 +1012.652334 +1012.729623 +1012.741045 +1012.756163 +1012.771348 +1012.876310 +1012.893726 +1012.912107 +1012.914904 +1012.955197 +1013.052400 +1013.180039 +1013.332753 +1013.356129 +1013.389296 +1013.428191 +1013.435084 +1013.725726 +1013.728557 +1013.835050 +1013.856162 +1013.917701 +1014.038413 +1014.039046 +1014.056162 +1014.415669 +1014.424993 +1014.426791 +1014.446738 +1014.463921 +1014.526358 +1014.557027 +1014.705479 +1014.707577 +1014.783834 +1014.798019 +1014.825625 +1014.831586 +1015.609241 +1015.629520 +1015.670180 +1015.792191 +1015.879037 +1016.132151 +1017.286295 +1017.325223 +1017.381533 +1017.502279 +1017.508972 +1017.683298 +1018.724556 +1018.817929 +1018.826787 +1018.845335 +1018.907939 +1019.281099 +1019.447299 +1019.556856 +1019.565381 +1019.603642 +1019.610602 +1019.734611 +1019.806972 +1019.846200 +1019.890655 +1020.639872 +1020.672173 +1020.881863 +1020.941703 +1021.564813 +1022.534575 +1022.541435 +1022.633143 +1022.640469 +1022.642334 +1022.708801 +1022.725051 +1022.752590 +1022.823719 +1023.190086 +1023.209100 +1023.210931 +1023.212297 +1023.227848 +1023.310865 +1023.312663 +1023.352856 +1023.362347 +1023.389519 +1023.392983 +1024.079962 +1024.121020 +1024.163345 +1024.176065 +1024.337038 +1024.375566 +1025.187786 +1025.198309 +1025.232808 +1025.256317 +1025.280127 +1025.280493 +1025.346527 +1025.373400 +1025.374000 +1025.436937 +1026.506133 +1026.518421 +1026.548890 +1026.572833 +1026.582723 +1026.601537 +1026.617854 +1026.631174 +1026.664674 +1026.667205 +1026.709396 +1028.142328 +1028.146291 +1028.243893 +1028.335036 +1028.336068 +1028.440796 +1029.451684 +1029.454781 +1029.466869 +1029.473429 +1029.487249 +1029.644192 +1030.143325 +1030.637131 +1032.547386 +1032.548185 +1032.548718 +1035.769927 +1038.559900 +1039.035791 +1039.735091 +1040.437221 +1040.486006 +1040.840451 +1041.140051 +1042.566223 +1042.823866 +1043.199456 +1043.294861 +1043.328327 +1043.379809 +1043.391164 +1043.396359 +1043.427162 +1043.439949 +1043.455467 +1043.524731 +1043.595760 +1043.601088 +1043.655067 +1044.897756 +1044.931256 +1045.757995 +1046.188964 +1046.250036 +1046.396689 +1046.413905 +1046.427725 +1046.436183 +1046.450902 +1047.234451 +1047.245040 +1047.276475 +1047.323761 +1048.190893 +1048.511705 +1048.604379 +1048.650733 +1048.651132 +1050.298883 +1050.930151 +1050.959488 +1051.101913 +1051.115832 +1051.133314 +1051.183498 +1051.185529 +1051.218962 +1051.223924 +1051.276471 +1051.284730 +1051.403677 +1051.451529 +1051.480001 +1051.497983 +1051.521726 +1051.562119 +1051.573274 +1051.579934 +1051.583564 +1051.590523 +1051.621925 +1051.639108 +1051.666414 +1051.671043 +1051.817829 +1051.912235 +1051.927986 +1051.979134 +1052.005541 +1052.016863 +1052.033813 +1052.581631 +1052.626486 +1052.645301 +1052.650363 +1052.657322 +1052.681898 +1052.699613 +1052.715797 +1052.741205 +1052.816829 +1052.843369 +1052.850895 +1052.883729 +1052.925387 +1052.963316 +1053.018028 +1053.239972 +1053.252826 +1053.290955 +1054.035043 +1054.250827 +1054.291153 +1054.299845 +1054.333411 +1054.370141 +1054.385725 +1054.406272 +1054.430148 +1054.435476 +1054.792318 +1055.318991 +1055.333710 +1055.422454 +1055.447696 +1055.465778 +1055.515062 +1055.516760 +1055.552025 +1055.612797 +1055.648495 +1055.659184 +1055.720689 +1055.763580 +1055.784126 +1055.815494 +1055.876433 +1055.920423 +1055.988521 +1056.032577 +1056.034542 +1056.193949 +1056.222753 +1056.236440 +1056.239303 +1056.244731 +1056.245597 +1056.265677 +1056.275534 +1056.284891 +1056.286223 +1056.377865 +1056.383959 +1056.522753 +1056.584458 +1056.602540 +1056.612163 +1056.634807 +1056.635873 +1056.692217 +1056.971038 +1057.002539 +1057.017924 +1057.019622 +1057.212496 +1057.233009 +1057.239802 +1057.245263 +1057.565143 +1057.574966 +1057.576964 +1057.688886 +1057.696978 +1057.742665 +1057.792116 +1057.965942 +1058.034240 +1058.238302 +1058.240667 +1058.263277 +1058.274166 +1058.290983 +1058.339534 +1058.894878 +1058.918854 +1058.934872 +1059.028744 +1059.046027 +1059.049057 +1059.149956 +1059.156417 +1059.171934 +1059.193047 +1059.345261 +1059.358947 +1059.360279 +1059.373799 +1059.403270 +1059.497209 +1059.551721 +1059.558048 +1059.582424 +1059.605434 +1059.609263 +1059.673432 +1059.785420 +1060.905932 +1061.752984 +1061.776527 +1061.808462 +1061.840563 +1061.873131 +1061.979324 +1062.233703 +1062.283553 +1062.396107 +1062.427709 +1062.694508 +1063.138830 +1063.238431 +1063.341627 +1063.440095 +1063.444258 +1063.537265 +1063.639729 +1063.645257 +1064.039262 +1064.140927 +1064.437464 +1064.443291 +1064.638529 +1064.838262 +1065.138129 +1065.238262 +1065.340660 +1065.439760 +1065.440526 +1065.639227 +1065.838794 +1065.939194 +1066.138561 +1066.236929 +1066.338094 +1066.439726 +1066.635497 +1066.838227 +1066.841091 +1066.938427 +1067.040158 +1067.046119 +1067.141757 +1067.239559 +1067.337860 +1067.338360 +1067.343055 +1067.442722 +1067.637893 +1067.944120 +1068.038559 +1068.362002 +1068.528302 +1068.579218 +1068.607290 +1068.685112 +1068.845418 +1068.881482 +1068.894935 +1068.945418 +1069.028934 +1069.030133 +1069.131631 +1069.161934 +1069.246350 +1069.359836 +1069.368295 +1069.390006 +1069.480416 +1069.501228 +1069.533263 +1069.553609 +1069.555274 +1069.623805 +1069.628567 +1069.657905 +1069.708221 +1069.753143 +1069.792503 +1069.808687 +1069.862134 +1069.910518 +1069.947448 +1070.003392 +1070.018177 +1070.211151 +1070.224271 +1070.252609 +1070.263565 +1070.270258 +1070.304191 +1070.310052 +1070.327201 +1070.372423 +1070.373555 +1070.446515 +1070.480814 +1070.539655 +1070.543019 +1070.562932 +1070.620042 +1070.640221 +1070.665729 +1070.761900 +1070.817111 +1070.880048 +1070.914314 +1070.920741 +1070.926135 +1070.950178 +1070.965363 +1070.995732 +1071.146781 +1071.190004 +1071.218609 +1071.234693 +1071.245649 +1071.254806 +1071.285509 +1071.370157 +1071.399062 +1071.401060 +1071.471523 +1071.480447 +1071.482645 +1071.495199 +1071.510284 +1071.518076 +1071.519541 +1071.526634 +1071.551476 +1071.588772 +1071.739754 +1071.783810 +1071.795731 +1071.851675 +1071.996031 +1072.107553 +1072.275251 +1072.277716 +1072.294432 +1072.324169 +1072.325601 +1072.326400 +1072.354738 +1072.464362 +1072.468225 +1072.474252 +1072.526566 +1072.552640 +1072.688837 +1072.692334 +1072.792600 +1073.095930 +1073.118940 +1073.121871 +1073.145114 +1073.218274 +1073.232526 +1073.280345 +1073.294165 +1073.321837 +1073.335390 +1073.349909 +1073.389669 +1073.423635 +1073.439386 +1073.441384 +1073.476016 +1073.492067 +1073.508184 +1073.621970 +1073.622436 +1073.717408 +1073.811713 +1073.867924 +1073.999059 +1074.053038 +1074.064560 +1074.118173 +1074.148410 +1074.225299 +1074.242482 +1074.244247 +1074.285572 +1074.334890 +1074.393364 +1074.463727 +1074.494330 +1074.497127 +1074.561729 +1074.606218 +1074.622102 +1074.670987 +1074.671320 +1074.687670 +1074.703121 +1074.724000 +1074.856101 +1074.916940 +1074.965891 +1074.981276 +1074.987736 +1075.010214 +1075.116174 +1075.116674 +1075.147576 +1075.148109 +1075.180010 +1075.215874 +1075.237486 +1075.383040 +1075.383607 +1075.408515 +1075.409947 +1075.470919 +1075.541782 +1075.593330 +1075.635588 +1075.667156 +1075.693663 +1075.797625 +1075.832457 +1075.846010 +1075.863293 +1075.888801 +1075.905484 +1075.965091 +1075.978411 +1076.009413 +1076.107149 +1076.284105 +1076.501388 +1076.502453 +1076.534421 +1076.620202 +1076.674315 +1076.707148 +1076.707481 +1076.905084 +1076.907581 +1076.934121 +1076.980108 +1077.104317 +1077.183405 +1077.188300 +1077.260095 +1077.301687 +1077.304151 +1077.522499 +1077.541546 +1077.588599 +1077.681406 +1077.715905 +1077.795659 +1078.242445 +1078.263291 +1078.479108 +1078.541146 +1078.600353 +1079.571481 +1079.596090 +1080.187331 +1080.204581 +1081.513837 +1084.501080 +1086.381165 +1086.857221 +1086.930948 +1086.964015 +1087.030581 +1087.108237 +1087.337108 +1087.401377 +1087.497847 +1087.533078 +1087.559685 +1087.673737 +1087.917493 +1088.177666 +1088.232645 +1088.236974 +1088.477000 +1088.556154 +1088.696580 +1088.722621 +1088.802741 +1088.815461 +1088.944932 +1089.171005 +1089.456553 +1089.678164 +1089.683059 +1089.865677 +1090.009200 +1090.711630 +1090.738170 +1090.972169 +1090.980627 +1091.023418 +1091.036072 +1091.344996 +1091.734339 +1091.854486 +1092.409830 +1092.573499 +1092.694878 +1092.993479 +1093.222250 +1093.617255 +1093.782689 +1093.819918 +1094.001470 +1094.047690 +1094.109595 +1094.192346 +1094.254150 +1094.368403 +1094.409994 +1094.461843 +1094.464473 +1094.595342 +1094.596408 +1094.814723 +1094.819185 +1094.935135 +1095.216454 +1095.244426 +1095.317553 +1095.362941 +1095.858511 +1096.043226 +1096.051418 +1096.230539 +1096.279490 +1096.329240 +1096.348154 +1096.640761 +1096.692576 +1096.697005 +1096.892376 +1096.950718 +1097.031370 +1097.096505 +1097.099036 +1097.474793 +1097.522346 +1097.522779 +1097.604297 +1098.136964 +1098.240127 +1098.343091 +1098.436497 +1098.443990 +1098.534865 +1098.535598 +1098.537163 +1098.542658 +1098.734266 +1098.740260 +1098.838362 +1099.335664 +1099.336430 +1099.837728 +1100.536662 +1100.636329 +1100.935729 +1101.138559 +1104.793567 +1105.310583 +1109.361961 +1109.659630 +1109.668621 +1109.974648 +1110.115174 +1110.194294 +1110.224731 +1110.463258 +1110.734853 +1110.740714 +1110.854001 +1111.440980 +1111.566987 +1111.727759 +1113.377375 +1113.478374 +1113.557694 +1113.564987 +1113.721131 +1116.470645 +1117.721160 +1117.781766 +1120.657820 +1120.675869 +1120.681630 +1120.720058 +1120.720324 +1122.898611 +1123.610964 +1124.709398 +1124.740034 +1124.799475 +1124.959814 +1125.004769 +1125.014992 +1125.019121 +1125.719387 +1125.824881 +1125.834439 +1126.999839 +1127.027811 +1127.085520 +1127.184754 +1127.243461 +1127.276761 +1128.494143 +1128.526610 +1128.618152 +1128.661209 +1129.574628 +1129.581321 +1129.607528 +1129.612856 +1129.764838 +1130.299036 +1130.314587 +1130.768733 +1130.769465 +1131.071063 +1131.661572 +1133.334298 +1133.341890 +1133.760704 +1134.635795 +1135.514915 +1136.944551 +1137.043785 +1137.345549 +1137.523238 +1138.536690 +1138.568925 +1138.569191 +1138.570223 +1138.699760 +1138.720406 +1139.949276 +1139.960099 +1139.980778 +1139.988837 +1140.004354 +1140.046312 +1140.086372 +1140.107917 +1140.131893 +1140.144980 +1140.154438 +1140.180278 +1140.243282 +1140.280911 +1140.325866 +1141.200024 +1141.205352 +1141.233391 +1141.241383 +1141.263128 +1141.268722 +1141.291799 +1141.293531 +1141.333724 +1141.364893 +1141.365126 +1141.390134 +1141.394197 +1141.414177 +1141.456667 +1141.479744 +1141.488902 +1141.534922 +1142.531658 +1142.557532 +1142.573116 +1142.588002 +1142.599923 +1142.614508 +1142.624265 +1142.658864 +1142.668554 +1142.710213 +1142.743113 +1142.773316 +1143.769252 +1143.790631 +1145.788897 +1145.890496 +1146.169350 +1146.949336 +1147.086199 +1147.469881 +1148.354696 +1148.445805 +1148.493657 +1148.511239 +1148.513970 +1148.544606 +1148.553763 +1148.577340 +1148.597786 +1148.637346 +1148.657593 +1148.681136 +1148.716267 +1148.718165 +1148.728721 +1148.803313 +1148.805944 +1148.814469 +1148.851265 +1148.873876 +1148.947103 +1148.956327 +1148.983400 +1149.061688 +1149.077705 +1149.142441 +1149.180469 +1149.192324 +1149.207842 +1149.277972 +1150.090558 +1150.111138 +1150.130618 +1150.140908 +1150.156392 +1150.174141 +1150.184697 +1150.203811 +1150.216765 +1150.281167 +1151.091356 +1151.115632 +1151.128619 +1151.154293 +1151.218396 +1151.220394 +1151.251429 +1151.332915 +1151.372741 +1151.404077 +1151.457323 +1152.194252 +1152.238342 +1152.238941 +1152.268078 +1152.268878 +1152.309137 +1152.328418 +1152.335777 +1152.356856 +1152.368311 +1152.382064 +1152.385394 +1152.416830 +1152.467312 +1152.496250 +1153.892253 +1153.924221 +1153.931846 +1154.188623 +1154.776834 +1155.332578 +1155.361415 +1155.401275 +1155.459517 +1155.498445 +1155.508069 +1155.519923 +1155.523220 +1155.538804 +1155.565478 +1155.586124 +1155.600409 +1155.618092 +1155.630646 +1155.672637 +1155.674535 +1155.682727 +1156.017858 +1156.091318 +1156.685124 +1156.697644 +1157.196145 +1157.196911 +1157.231943 +1157.249625 +1157.303971 +1157.326015 +1157.593914 +1157.624883 +1157.634773 +1157.700940 +1157.748259 +1158.225715 +1158.261079 +1158.324782 +1158.330610 +1158.333141 +1158.347826 +1158.430676 +1158.476231 +1158.561645 +1158.669337 +1158.670336 +1158.681159 +1158.711129 +1158.739700 +1158.751855 +1158.764709 +1159.480825 +1160.750920 +1160.798872 +1160.819119 +1160.836735 +1160.846858 +1160.852452 +1160.864041 +1160.868103 +1161.957712 +1161.968368 +1162.115654 +1162.138998 +1162.149088 +1162.168102 +1162.215754 +1163.039863 +1163.050685 +1163.068767 +1163.070265 +1163.196206 +1163.210658 +1163.270798 +1163.282653 +1163.298071 +1163.384484 +1163.428673 +1163.436599 +1163.464804 +1163.469266 +1163.587581 +1163.593542 +1163.602499 +1163.632003 +1163.639829 +1164.239961 +1164.354480 +1164.499768 +1164.549185 +1164.549451 +1164.554879 +1164.576225 +1165.674059 +1165.721645 +1165.755611 +1165.882617 +1166.069596 +1166.896202 +1166.972959 +1167.025406 +1167.031767 +1167.037761 +1168.133098 +1168.136927 +1168.233497 +1168.237493 +1168.327669 +1168.334230 +1168.646550 +1168.839391 +1168.939091 +1168.945684 +1169.035960 +1169.040622 +1169.041655 +1169.043686 +1169.144185 +1169.241488 +1169.338624 +1169.440056 +1169.543486 +1169.643752 +1169.786343 +1169.825437 +1169.837591 +1169.838191 +1169.841487 +1169.851511 +1169.877252 +1169.893802 +1169.895833 +1169.917045 +1169.932863 +1169.933928 +1169.965363 +1170.000761 +1170.016412 +1170.033928 +1170.037758 +1170.091570 +1170.115114 +1170.134394 +1170.136426 +1170.164897 +1170.347115 +1170.638590 +1171.243151 +1171.414280 +1171.452808 +1171.498762 +1171.504789 +1171.520440 +1171.546248 +1171.567593 +1171.606621 +1171.664230 +1171.676218 +1171.713514 +1171.742818 +1171.745948 +1171.769657 +1171.790403 +1171.806154 +1171.816943 +1171.820906 +1171.824602 +1171.859634 +1171.877250 +1171.891336 +1171.940886 +1171.941952 +1171.944416 +1172.545114 +1172.546347 +1172.640352 +1172.643416 +1172.650043 +1172.741818 +1172.744948 +1172.745580 +1172.748411 +1172.763529 +1172.791368 +1173.038720 +1173.916342 +1173.926998 +1174.022902 +1174.027664 +1174.049375 +1174.086638 +1174.088303 +1174.104853 +1174.115176 +1174.150374 +1174.185706 +1174.211646 +1174.331393 +1174.413111 +1174.426365 +1174.504220 +1174.597993 +1174.651406 +1174.746844 +1175.313976 +1175.323000 +1175.363327 +1175.415408 +1175.432191 +1175.575714 +1175.632224 +1175.665990 +1175.754136 +1175.760529 +1175.774815 +1176.751437 +1176.802519 +1176.841714 +1176.939516 +1176.950538 +1176.960028 +1176.981607 +1177.008080 +1177.026928 +1177.028227 +1177.148373 +1177.205083 +1177.230691 +1177.322099 +1177.363325 +1177.390198 +1177.409545 +1177.438117 +1177.454467 +1178.075345 +1179.164488 +1180.354098 +1181.327490 +1182.067016 +1182.326024 +1182.394122 +1182.882667 +1182.932317 +1183.233282 +1183.319896 +1183.321361 +1183.346003 +1183.362286 +1183.388027 +1183.399449 +1183.411903 +1183.437944 +1183.444704 +1183.478004 +1183.507841 +1183.515799 +1183.530185 +1183.531251 +1183.548900 +1183.580035 +1183.618130 +1183.620961 +1183.624357 +1183.648034 +1183.672709 +1183.784098 +1183.790891 +1183.800281 +1183.812436 +1183.820994 +1183.831750 +1183.832083 +1183.839609 +1183.846069 +1183.856458 +1183.903511 +1183.923758 +1183.938376 +1183.967081 +1183.978603 +1183.992023 +1183.993488 +1184.017597 +1184.035046 +1184.074340 +1184.169745 +1184.212702 +1184.224557 +1184.230018 +1184.230517 +1184.241640 +1184.306541 +1184.320960 +1184.331683 +1184.406974 +1184.423857 +1184.529285 +1184.606208 +1184.625022 +1184.631183 +1184.827620 +1184.832348 +1184.885029 +1184.909438 +1185.170343 +1185.711968 +1185.733646 +1185.892287 +1185.933146 +1186.196816 +1186.606839 +1186.618427 +1186.812799 +1186.815630 +1187.284027 +1187.381663 +1187.465579 +1187.503907 +1187.521789 +1187.543434 +1188.200077 +1188.289454 +1188.339404 +1188.402042 +1188.526384 +1189.409300 +1189.418990 +1189.429646 +1189.431378 +1189.559450 +1189.698744 +1189.743898 +1190.652322 +1190.757950 +1190.766208 +1190.775732 +1190.953388 +1191.012662 +1191.064443 +1191.064710 +1191.140267 +1191.213294 +1191.286488 +1191.347793 +1191.669571 +1191.706334 +1191.730543 +1191.733507 +1191.737403 +1191.753187 +1191.754353 +1191.786387 +1191.810297 +1191.810796 +1191.821219 +1191.888285 +1191.892248 +1191.894279 +1191.894745 +1191.896843 +1192.013060 +1192.015991 +1192.090416 +1192.108598 +1192.115058 +1192.122085 +1192.125381 +1192.135405 +1192.190050 +1192.604602 +1192.620053 +1192.621684 +1192.633406 +1192.733239 +1192.735537 +1192.741931 +1192.754518 +1193.047292 +1193.164841 +1193.176696 +1193.309063 +1193.316223 +1193.326179 +1193.347891 +1193.416123 +1193.844361 +1193.867005 +1194.293444 +1194.316455 +1194.320784 +1194.343927 +1194.353617 +1194.378459 +1194.379092 +1194.401769 +1194.425379 +1194.436068 +1194.450387 +1194.474863 +1194.496341 +1194.497607 +1194.522149 +1194.529908 +1194.537733 +1194.564606 +1194.582988 +1194.600037 +1194.612192 +1194.614157 +1194.634070 +1194.643727 +1194.649022 +1194.667403 +1194.694276 +1194.746924 +1194.769468 +1194.800304 +1194.860610 +1194.896974 +1194.948655 +1194.955948 +1194.999604 +1195.023913 +1195.031239 +1195.193344 +1195.209727 +1195.216654 +1195.221282 +1195.226477 +1195.230606 +1195.239331 +1195.241362 +1195.252917 +1195.311658 +1195.349454 +1195.360576 +1195.398272 +1195.440929 +1195.446956 +1195.469001 +1195.471931 +1195.502467 +1195.503367 +1195.511858 +1195.525578 +1195.530573 +1195.635068 +1195.659011 +1195.687416 +1195.709627 +1195.724245 +1195.748088 +1195.755880 +1195.760143 +1195.761109 +1195.922680 +1195.968334 +1196.043892 +1196.195740 +1196.213356 +1196.277392 +1196.306696 +1196.329340 +1196.331071 +1196.356646 +1196.434634 +1196.439996 +1196.441261 +1196.545890 +1196.726242 +1196.754148 +1196.772030 +1196.780788 +1196.829639 +1196.845590 +1196.865869 +1196.876525 +1196.884318 +1196.900235 +1196.940561 +1196.948353 +1196.958543 +1196.968467 +1196.979289 +1197.008726 +1197.022413 +1197.037997 +1197.044424 +1197.189146 +1197.193874 +1197.194374 +1197.200301 +1197.201766 +1197.207694 +1197.282819 +1197.283951 +1197.285083 +1197.286548 +1197.290344 +1197.320181 +1197.328839 +1197.348386 +1197.357610 +1197.416252 +1197.425875 +1197.453581 +1197.509125 +1197.518649 +1197.522312 +1197.523444 +1197.542592 +1197.836897 +1198.007127 +1198.010890 +1198.030171 +1198.220713 +1198.231935 +1198.364569 +1198.368532 +1198.370996 +1198.373460 +1198.411256 +1198.482651 +1198.487579 +1198.489311 +1198.493007 +1198.730037 +1198.736330 +1198.742158 +1198.830170 +1198.856776 +1199.139360 +1199.153946 +1199.200566 +1199.232101 +1199.328871 +1199.372161 +1199.386746 +1199.414751 +1199.427805 +1199.432034 +1199.443189 +1199.454012 +1199.456543 +1199.469463 +1199.567798 +1199.582250 +1200.552945 +1200.557341 +1200.690774 +1200.694803 +1200.963901 +1200.974290 +1201.028269 +1201.248116 +1202.123706 +1202.130533 +1202.158838 +1202.214782 +1202.215448 +1202.299430 +1202.357506 +1203.238590 +1203.238990 +1203.239423 +1203.346083 +1203.438457 +1203.440022 +1203.440621 +1203.637324 +1203.643585 +1203.710651 +1203.937424 +1203.939955 +1203.945682 +1204.039455 +1205.024269 +1205.030030 +1205.237922 +1205.344482 +1205.345048 +1205.438688 +1205.439654 +1205.442451 +1205.443250 +1205.838055 +1206.311747 +1206.541118 +1206.742383 +1206.746712 +1207.045513 +1207.238886 +1207.434657 +1207.540884 +1207.553671 +1207.584540 +1207.631659 +1207.736654 +1207.939085 +1207.940750 +1207.945678 +1208.641648 +1208.670886 +1208.882241 +1208.965824 +1209.152670 +1209.951970 +1209.992896 +1210.075946 +1210.079243 +1210.094194 +1210.162060 +1210.380208 +1210.540681 +1210.544943 +1210.575246 +1211.679241 +1211.754632 +1211.763091 +1211.902218 +1211.911242 +1211.914006 +1211.924695 +1212.004649 +1212.081205 +1212.082071 +1212.083536 +1212.085534 +1212.096124 +1212.192894 +1212.206280 +1212.209610 +1212.214172 +1212.245907 +1212.267186 +1212.316770 +1212.320599 +1212.323063 +1212.328458 +1212.417236 +1212.426493 +1213.036249 +1213.037248 +1213.226059 +1213.486965 +1213.546772 +1213.563189 +1213.651867 +1213.774843 +1213.868050 +1213.942542 +1214.031919 +1214.051800 +1214.066918 +1214.097687 +1214.179738 +1214.209408 +1214.241077 +1214.271147 +1214.276741 +1214.291460 +1214.318632 +1214.336581 +1214.348003 +1214.364919 +1214.395555 +1214.457493 +1214.459591 +1214.537047 +1214.554097 +1214.594157 +1214.611739 +1214.667949 +1214.670014 +1214.688429 +1214.700184 +1214.737780 +1214.766917 +1214.815002 +1214.849368 +1214.850200 +1214.891526 +1214.904146 +1214.951865 +1214.984100 +1214.999518 +1215.017000 +1215.067183 +1215.082468 +1215.101749 +1215.115435 +1215.152664 +1215.180969 +1215.198418 +1215.255694 +1215.271678 +1215.304745 +1215.310440 +1215.330520 +1215.350333 +1215.385598 +1215.415135 +1215.446404 +1215.509407 +1215.540842 +1215.542441 +1215.559424 +1215.609907 +1215.634282 +1215.652531 +1215.673310 +1215.677073 +1215.728654 +1215.784365 +1215.788161 +1215.861455 +1215.879870 +1215.896719 +1215.898684 +1215.943739 +1215.961521 +1215.981535 +1216.046270 +1216.096453 +1216.124924 +1216.172876 +1216.191558 +1216.237112 +1216.240109 +1216.285464 +1216.351298 +1216.414268 +1216.457591 +1216.496852 +1216.516865 +1216.527988 +1216.530185 +1216.541008 +1216.558457 +1216.633049 +1216.638976 +1216.751597 +1216.759056 +1216.766449 +1216.853229 +1216.869579 +1216.904810 +1216.987827 +1217.033948 +1217.049532 +1217.070778 +1217.107840 +1217.127754 +1217.145836 +1217.150331 +1217.181900 +1217.228486 +1217.238576 +1217.286928 +1217.315533 +1217.317664 +1217.371310 +1217.389359 +1217.406375 +1217.419995 +1217.460854 +1217.484430 +1217.506342 +1217.553261 +1217.584297 +1217.689658 +1217.721260 +1217.887893 +1217.965249 +1218.287426 +1218.320726 +1218.336411 +1218.351662 +1218.352461 +1218.371043 +1218.450929 +1218.535811 +1218.572141 +1218.573507 +1218.595285 +1218.595818 +1218.663350 +1218.689257 +1218.747932 +1218.764482 +1218.872241 +1218.893620 +1218.920126 +1218.938674 +1218.939374 +1218.972973 +1218.984728 +1218.998215 +1219.112734 +1219.122457 +1219.370442 +1219.535810 +1219.544335 +1219.568311 +1219.615097 +1219.742803 +1219.751394 +1219.753259 +1219.805107 +1219.834777 +1219.846832 +1219.949829 +1219.953059 +1219.988057 +1220.035610 +1220.041804 +1220.042536 +1220.353292 +1220.373805 +1220.901376 +1220.966878 +1220.995915 +1221.027051 +1221.080997 +1221.186025 +1221.308802 +1221.814596 +1221.828582 +1222.516660 +1222.624152 +1222.628215 +1222.633010 +1222.841501 +1223.383059 +1223.383492 +1223.383925 +1223.448727 +1223.460348 +1223.487355 +1223.797877 +1224.402705 +1224.474333 +1224.503104 +1224.504503 +1224.519455 +1224.580394 +1224.633774 +1224.680027 +1224.680593 +1224.735672 +1224.768605 +1224.774100 +1224.777996 +1224.822851 +1224.873034 +1224.881559 +1224.948392 +1224.974666 +1225.008166 +1225.110130 +1225.114726 +1225.118322 +1225.212494 +1225.995777 +1226.004901 +1226.007965 +1226.010795 +1226.091381 +1226.092846 +1226.093546 +1226.094112 +1226.095277 +1226.097042 +1226.100905 +1226.225580 +1226.231807 +1226.271301 +1226.296343 +1226.304734 +1226.321684 +1226.331374 +1226.433505 +1226.435170 +1226.449190 +1226.452819 +1226.573798 +1226.576462 +1226.576995 +1226.580958 +1226.644794 +1226.704101 +1226.728710 +1227.256282 +1227.259912 +1227.260444 +1227.265240 +1227.306199 +1227.310661 +1227.313425 +1227.325246 +1227.326112 +1227.378793 +1227.379858 +1227.390314 +1227.392179 +1227.483255 +1227.499139 +1227.687017 +1228.043128 +1228.210493 +1228.226111 +1228.227876 +1228.229374 +1228.230873 +1228.231572 +1228.259444 +1228.288582 +1228.289814 +1228.290247 +1228.295941 +1228.301702 +1228.302568 +1228.304632 +1228.307463 +1228.440230 +1228.450986 +1228.507429 +1228.527310 +1228.540130 +1228.565671 +1228.567170 +1228.588315 +1228.599904 +1228.808994 +1228.809893 +1228.813123 +1228.813623 +1228.823280 +1228.824279 +1229.037133 +1229.040096 +1229.042161 +1229.237199 +1229.255214 +1229.288980 +1229.293609 +1229.431571 +1229.440262 +1229.609726 +1229.655181 +1229.680655 +1229.687681 +1229.691444 +1229.698004 +1229.769733 +1229.771431 +1229.783485 +1229.945024 +1230.006429 +1230.038097 +1230.038896 +1230.041527 +1230.043059 +1230.045923 +1230.214887 +1230.239163 +1230.253781 +1230.322113 +1230.323112 +1230.365769 +1230.432403 +1230.444490 +1230.445290 +1230.483718 +1230.516685 +1230.585050 +1230.623178 +1230.648553 +1230.660508 +1230.680055 +1230.703864 +1230.725642 +1230.758942 +1230.768466 +1230.770364 +1230.780388 +1230.792675 +1230.909392 +1231.033667 +1231.264336 +1231.269331 +1231.295272 +1231.397137 +1231.399102 +1231.408759 +1231.534100 +1231.555312 +1231.568765 +1231.583084 +1231.777789 +1231.784349 +1231.804229 +1231.813553 +1231.861805 +1232.032534 +1232.038129 +1232.040759 +1232.041558 +1232.044023 +1232.045122 +1232.230170 +1232.239560 +1232.333599 +1232.335564 +1232.336397 +1232.338128 +1232.481418 +1232.488378 +1232.503429 +1232.541991 +1232.554978 +1232.558574 +1232.822044 +1232.853013 +1232.912154 +1232.936063 +1232.940259 +1232.954977 +1233.005394 +1233.036163 +1233.037861 +1233.038893 +1233.040891 +1233.043456 +1233.203329 +1233.207891 +1233.213419 +1233.245520 +1233.316782 +1233.342523 +1233.351580 +1233.372626 +1233.378054 +1233.382283 +1233.418513 +1233.502396 +1233.541357 +1233.549216 +1233.551514 +1233.577121 +1233.603362 +1233.944420 +1233.979718 +1234.291573 +1234.296468 +1234.308656 +1234.623607 +1234.665598 +1234.680384 +1234.699032 +1234.926504 +1235.086943 +1235.242921 +1235.259238 +1235.264199 +1235.277886 +1235.283147 +1235.721941 +1235.735394 +1235.830732 +1235.833829 +1235.845917 +1236.141787 +1236.182580 +1236.376752 +1236.381681 +1236.407954 +1236.422407 +1236.521674 +1236.662566 +1236.665397 +1236.693768 +1236.750012 +1236.759569 +1237.089572 +1237.110751 +1237.114847 +1237.122373 +1237.131830 +1237.266861 +1237.276518 +1237.460900 +1238.138988 +1238.141119 +1238.238256 +1238.239288 +1238.239821 +1238.240387 +1238.242052 +1238.340620 +1238.342851 +1238.439621 +1238.441019 +1238.539088 +1238.540120 +1238.540886 +1238.542951 +1238.639754 +1238.643483 +1238.644016 +1238.740486 +1238.842251 +1238.843583 +1238.939687 +1238.940020 +1238.940886 +1238.945381 +1239.038688 +1239.041518 +1239.044615 +1239.140486 +1239.141052 +1239.239620 +1239.246313 +1239.247412 +1239.249477 +1239.343416 +1239.442017 +1239.442850 +1239.446546 +1239.541318 +1239.543682 +1239.641351 +1239.641717 +1239.643116 +1239.645247 +1239.646546 +1239.647512 +1239.742350 +1239.745480 +1239.842416 +1239.843182 +1239.847611 +1239.944781 +1240.041018 +1240.041650 +1240.042683 +1240.044181 +1240.140418 +1240.142183 +1240.143448 +1240.144947 +1240.244314 +1240.246945 +1240.340351 +1240.341717 +1240.541483 +1240.542149 +1240.542815 +1240.637987 +1240.638453 +1240.639252 +1240.640151 +1240.640617 +1240.642915 +1240.644980 +1240.647277 +1240.649176 +1240.739252 +1240.740551 +1240.741450 +1240.841050 +1240.841783 +1240.939818 +1240.941217 +1240.941649 +1240.943048 +1241.043081 +1241.047543 +1241.241449 +1241.242648 +1241.243414 +1241.246677 +1241.248576 +1241.250440 +1241.346145 +1241.440250 +1241.446244 +1241.447943 +1241.540550 +1241.548009 +1241.640050 +1241.640716 +1241.644546 +1241.745378 +1241.748175 +1241.841016 +1241.841382 +1241.842215 +1241.842581 +1241.843680 +1241.843846 +1241.844412 +1241.847409 +1241.939717 +1241.939950 +1241.940683 +1241.941149 +1241.945411 +1242.039018 +1242.040949 +1242.042081 +1242.042414 +1242.044978 +1242.047076 +1242.049740 +1242.050340 +1242.139584 +1242.140549 +1242.141115 +1242.144079 +1242.146310 +1242.238718 +1242.239917 +1242.243979 +1242.245644 +1242.339384 +1242.341115 +1242.343713 +1242.440982 +1242.441615 +1242.442281 +1242.442747 +1242.443213 +1242.444279 +1242.445278 +1242.448008 +1242.538917 +1242.541115 +1242.541681 +1242.543646 +1242.549940 +1242.641215 +1242.641481 +1242.642114 +1242.643979 +1242.644445 +1242.645377 +1242.740482 +1242.741481 +1242.742114 +1242.743479 +1242.839816 +1242.840515 +1242.843412 +1242.944977 +1243.042347 +1243.043545 +1243.044078 +1243.267421 +1243.447608 +1243.573648 +1244.032356 +1244.038050 +1244.039881 +1244.045875 +1244.046342 +1244.465222 +1244.598389 +1244.832222 +1244.841646 +1244.852734 +1244.861226 +1245.210876 +1245.243876 +1245.248272 +1245.534918 +1245.669550 +1245.685534 +1245.798854 +1245.859893 +1245.884868 +1245.912873 +1246.079506 +1246.084235 +1246.106013 +1246.115237 +1246.304548 +1246.453066 +1246.566053 +1246.574344 +1246.578940 +1246.584568 +1246.590328 +1246.598653 +1246.732886 +1246.748037 +1246.926592 +1247.096255 +1247.298986 +1247.327590 +1247.328789 +1247.347937 +1247.350168 +1247.416168 +1247.427657 +1247.471147 +1247.478706 +1248.033850 +1248.040011 +1248.048069 +1248.274876 +1248.293490 +1248.306810 +1248.335382 +1248.350167 +1248.364353 +1248.395755 +1248.410373 +1248.440343 +1248.441309 +1248.481435 +1248.537413 +1248.553497 +1248.566384 +1248.599051 +1248.600217 +1248.627622 +1248.644139 +1248.644938 +1248.688828 +1248.705944 +1248.735248 +1248.783133 +1248.829187 +1248.854529 +1248.913936 +1248.971778 +1249.002214 +1249.047769 +1249.048201 +1249.064152 +1249.094755 +1249.108008 +1249.140343 +1249.182301 +1249.213303 +1249.257892 +1249.276273 +1249.322727 +1249.341708 +1249.360056 +1249.382267 +1249.383199 +1249.399683 +1249.406343 +1249.421128 +1249.435913 +1249.445704 +1249.450699 +1249.463186 +1249.540708 +1249.566483 +1249.595021 +1249.599816 +1249.613635 +1249.629553 +1249.682333 +1249.688860 +1249.749300 +1249.776672 +1249.793389 +1249.809839 +1249.848600 +1249.915267 +1249.930618 +1249.947468 +1249.960755 +1250.031417 +1250.061654 +1250.099183 +1250.121793 +1250.141174 +1250.160122 +1250.193821 +1250.195620 +1250.226156 +1250.239975 +1250.251930 +1250.302080 +1250.335047 +1250.353695 +1250.357091 +1250.377071 +1250.381167 +1250.390658 +1250.400847 +1250.405110 +1250.470811 +1250.573508 +1250.629818 +1250.701846 +1250.719595 +1250.763418 +1250.796685 +1250.824923 +1250.838010 +1250.853028 +1250.881333 +1250.920760 +1250.922492 +1250.937677 +1250.938176 +1250.956724 +1250.958090 +1250.998050 +1251.026821 +1251.094054 +1251.126887 +1251.140607 +1251.157324 +1251.176704 +1251.194953 +1251.211369 +1251.231216 +1251.248699 +1251.250963 +1251.295552 +1251.362718 +1251.366448 +1251.380234 +1251.429151 +1251.432049 +1251.448732 +1251.463251 +1251.541006 +1251.579867 +1251.580367 +1251.634379 +1251.652994 +1251.654592 +1251.682864 +1251.699814 +1251.732881 +1251.748199 +1251.816797 +1251.827719 +1251.830583 +1251.846500 +1251.858688 +1251.877336 +1251.958288 +1251.987759 +1252.004742 +1252.057423 +1252.074306 +1252.089124 +1252.103210 +1252.185528 +1252.186660 +1252.218561 +1252.316996 +1252.348431 +1252.369677 +1252.398748 +1252.492620 +1252.499047 +1252.575937 +1252.616663 +1252.684861 +1252.687325 +1252.715963 +1252.733912 +1252.746599 +1252.748264 +1252.759720 +1252.786126 +1252.823989 +1252.824888 +1252.826320 +1252.860152 +1252.862916 +1252.865813 +1252.868311 +1252.880266 +1252.881598 +1252.931681 +1252.960585 +1252.989323 +1252.990056 +1253.006040 +1253.014664 +1253.022756 +1253.024621 +1253.266246 +1253.301877 +1253.325187 +1253.525253 +1253.599446 +1253.600911 +1253.606439 +1253.852259 +1253.856289 +1253.865779 +1254.042336 +1254.043102 +1254.050594 +1254.102276 +1254.111633 +1254.112132 +1254.114530 +1254.120025 +1254.123321 +1254.201809 +1254.220124 +1254.497080 +1254.674836 +1255.016527 +1255.131612 +1255.169974 +1255.172171 +1255.194915 +1255.204672 +1255.505837 +1255.512098 +1255.620323 +1255.624319 +1255.637772 +1255.775934 +1255.780462 +1255.980063 +1255.989653 +1255.991385 +1255.993915 +1256.001808 +1256.174068 +1256.178830 +1256.194048 +1256.913029 +1257.048826 +1257.295912 +1257.300041 +1257.391283 +1257.658616 +1257.660148 +1257.808499 +1257.812295 +1257.822552 +1257.826115 +1257.836371 +1257.968705 +1257.980061 +1257.984223 +1258.111296 +1258.113460 +1258.167440 +1258.462345 +1258.917289 +1259.164075 +1259.368571 +1259.370669 +1259.372833 +1259.382856 +1259.640632 +1259.699373 +1259.700738 +1260.019686 +1260.023648 +1260.029409 +1260.030708 +1260.143095 +1260.147125 +1260.196242 +1260.208863 +1260.569335 +1260.586552 +1260.693211 +1260.720484 +1261.140564 +1261.140797 +1261.157314 +1261.172831 +1261.349688 +1261.530140 +1261.534769 +1261.540430 +1261.547090 +1261.664040 +1261.664373 +1261.694576 +1261.719085 +1261.744359 +1262.051019 +1262.102701 +1262.255980 +1262.388581 +1262.949020 +1262.959210 +1262.962107 +1263.033802 +1263.038764 +1263.039996 +1263.339895 +1263.351550 +1263.670398 +1263.947121 +1264.030937 +1264.039029 +1264.040794 +1264.045489 +1264.293274 +1264.296638 +1264.299968 +1264.305829 +1264.309258 +1264.315685 +1264.558176 +1264.560241 +1264.579854 +1264.603531 +1264.610057 +1264.683684 +1264.685149 +1264.705295 +1264.876324 +1264.876690 +1264.962238 +1265.002165 +1265.038195 +1265.038995 +1265.039527 +1265.040260 +1265.040826 +1265.041759 +1265.358009 +1265.401066 +1265.462970 +1265.478255 +1265.586447 +1265.588378 +1265.597203 +1266.040592 +1266.042790 +1266.406759 +1266.483882 +1266.491274 +1266.493239 +1266.495070 +1266.497268 +1266.781817 +1266.788277 +1266.790108 +1266.791074 +1266.791607 +1266.797967 +1266.898866 +1266.909123 +1267.041856 +1267.202596 +1267.219146 +1267.220677 +1267.596435 +1267.735828 +1267.742655 +1267.766365 +1267.912119 +1268.027237 +1268.031100 +1268.033197 +1268.034463 +1268.039558 +1268.040290 +1268.041622 +1268.046517 +1268.255608 +1268.360836 +1268.507556 +1268.562168 +1268.576487 +1268.604159 +1269.216846 +1269.325171 +1269.361967 +1269.417578 +1269.426336 +1269.538757 +1269.604525 +1269.668327 +1269.675121 +1269.676153 +1269.685643 +1269.689273 +1270.129732 +1270.132829 +1270.144584 +1270.268360 +1270.328600 +1270.341787 +1270.661333 +1270.729965 +1270.731929 +1270.737857 +1270.741720 +1270.746282 +1270.982512 +1271.029298 +1272.156070 +1272.161698 +1272.194565 +1272.270023 +1272.272054 +1272.275851 +1272.416077 +1272.508285 +1272.508751 +1272.525834 +1272.720139 +1273.024501 +1273.029097 +1273.029563 +1273.038487 +1273.039919 +1273.044748 +1273.142050 +1273.142583 +1273.143482 +1273.145580 +1273.147012 +1273.147878 +1273.238454 +1273.240485 +1273.245513 +1273.245979 +1273.247944 +1273.341484 +1273.343449 +1273.344714 +1273.439353 +1273.441817 +1273.442250 +1273.444148 +1273.447444 +1273.541317 +1273.541850 +1273.542749 +1273.543249 +1273.640251 +1273.642183 +1273.644347 +1273.739286 +1273.740684 +1273.741117 +1273.741783 +1273.742283 +1273.743148 +1273.743715 +1273.746645 +1273.747278 +1273.842316 +1273.843082 +1273.844614 +1273.845113 +1273.846245 +1273.848709 +1273.941750 +1273.942183 +1273.943082 +1273.945146 +1273.948643 +1274.041583 +1274.043048 +1274.043514 +1274.045213 +1274.142582 +1274.145379 +1274.239785 +1274.240417 +1274.243481 +1274.342215 +1274.342648 +1274.343980 +1274.346711 +1274.347277 +1274.441982 +1274.444313 +1274.449608 +1274.539851 +1274.540650 +1274.545412 +1274.644613 +1274.647110 +1274.648675 +1274.742082 +1274.848409 +1274.940883 +1274.941882 +1274.942648 +1275.044779 +1275.046444 +1275.048908 +1275.140883 +1275.143147 +1275.146277 +1275.147909 +1275.341149 +1275.342381 +1275.343347 +1275.345678 +1275.348841 +1275.440516 +1275.442814 +1275.447576 +1275.449041 +1275.542314 +1275.544579 +1275.644512 +1275.648708 +1275.743047 +1275.743413 +1275.747276 +1275.844612 +1275.844878 +1275.848275 +1275.851871 +1275.942780 +1275.947009 +1276.038218 +1276.042980 +1276.044212 +1276.047542 +1276.140882 +1276.142413 +1276.142913 +1276.143612 +1276.144611 +1276.244611 +1276.245077 +1276.345210 +1276.346975 +1276.442080 +1276.643179 +1276.644411 +1276.744011 +1276.843112 +1276.853901 +1276.944011 +1276.944511 +1277.041114 +1277.041613 +1277.042546 +1277.044644 +1277.047874 +1277.140914 +1277.141846 +1277.142213 +1277.144410 +1277.146042 +1277.146575 +1277.146808 +1277.242745 +1277.243278 +1277.243944 +1277.244111 +1277.245543 +1277.247041 +1277.340514 +1277.341746 +1277.342679 +1277.343211 +1277.345276 +1277.346375 +1277.442845 +1277.443678 +1277.444244 +1277.445076 +1277.445909 +1277.446808 +1277.448240 +1277.448706 +1277.448939 +1277.544976 +1277.546708 +1277.640281 +1277.642379 +1277.642945 +1277.646008 +1277.744177 +1277.745475 +1277.746408 +1277.840580 +1277.844643 +1277.847840 +1277.947240 +1277.953134 +1278.042245 +1278.043211 +1278.043411 +1278.046008 +1278.047307 +1280.031154 +1280.040611 +1280.103349 +1280.114238 +1280.133751 +1280.134817 +1281.619331 +1281.657426 +1281.785798 +1281.854529 +1281.898984 +1282.756792 +1282.879070 +1284.401546 +1284.688525 +1285.202078 +1285.231582 +1285.247965 +1285.311469 +1285.489291 +1285.596117 +1285.817129 +1285.860985 +1285.956589 +1286.129683 +1286.410535 +1286.526486 +1286.669409 +1286.735044 +1286.900245 +1286.962483 +1287.071540 +1287.660018 +1287.689721 +1287.784193 +1287.785625 +1287.955222 +1288.017493 +1288.031512 +1288.243600 +1288.338938 +1288.385491 +1288.407969 +1290.814493 +1290.840601 +1290.944563 +1291.059881 +1292.408897 +1295.354282 +1295.844159 +1296.065704 +1296.101434 +1296.244125 +1296.325344 +1296.675460 +1296.697471 +1296.726908 +1296.833102 +1298.035165 +1298.234033 +1298.328205 +1298.617050 +1298.777989 +1298.800366 +1298.879154 +1298.931768 +1299.029537 +1299.035697 +1299.195104 +1299.321345 +1299.433366 +1299.451315 +1299.508790 +1299.528004 +1299.531734 +1299.548451 +1299.620545 +1299.645553 +1299.674658 +1299.692706 +1299.767764 +1299.768564 +1299.799533 +1299.814817 +1299.879985 +1300.028870 +1300.277488 +1300.340258 +1300.393039 +1300.450947 +1300.749282 +1300.805326 +1300.881550 +1300.937593 +1300.953711 +1300.970128 +1301.005259 +1301.007091 +1301.040391 +1301.459871 +1301.492471 +1301.614849 +1301.737593 +1301.739924 +1301.806357 +1301.848515 +1301.888775 +1301.970260 +1302.172457 +1302.238591 +1302.472191 +1302.524638 +1303.170558 +1303.528067 +1303.604690 +1303.668260 +1303.795633 +1303.845649 +1303.889772 +1303.920274 +1303.972156 +1304.030331 +1304.729598 +1304.801259 +1304.839354 +1304.949611 +1305.055671 +1305.127399 +1305.224136 +1305.242051 +1305.466327 +1305.533326 +1305.598661 +1305.605787 +1305.656536 +1305.746113 +1305.786839 +1305.808085 +1305.829663 +1305.918574 +1305.958334 +1305.958967 +1305.980779 +1305.985640 +1305.989869 +1306.077682 +1306.116976 +1306.144681 +1306.205653 +1306.312713 +1306.371454 +1306.458467 +1306.538587 +1306.660232 +1306.731993 +1306.877614 +1306.961230 +1306.973085 +1306.977448 +1307.002423 +1307.033558 +1307.332825 +1307.364127 +1307.410847 +1307.420471 +1307.465659 +1307.491999 +1307.494130 +1307.565059 +1307.570387 +1307.589568 +1307.601490 +1307.616008 +1307.782275 +1307.838619 +1307.950540 +1307.968655 +1308.004952 +1308.005652 +1308.039551 +1308.142848 +1308.239784 +1308.242115 +1308.338918 +1308.436087 +1308.438951 +1308.439351 +1308.440250 +1308.441282 +1308.441715 +1308.936720 +1308.938052 +1308.939983 +1308.942714 +1309.042813 +1309.139284 +1309.141082 +1309.239350 +1309.239583 +1309.242780 +1309.338884 +1309.539383 +1309.739017 +1310.038583 +1310.137684 +1310.148274 +1310.439682 +1310.444377 +1310.642412 +1311.239381 +1311.739747 +1311.740347 +1311.840180 +1311.844076 +1311.939447 +1311.940013 +1312.039247 +1312.236417 +1312.241811 +1312.438781 +1312.439347 +1312.641711 +1312.739313 +1312.937248 +1312.941011 +1313.617368 +1314.094290 +1314.636448 +1314.726025 +1314.762022 +1314.772411 +1314.816168 +1314.870447 +1315.078538 +1315.305711 +1315.332351 +1315.428355 +1315.553629 +1315.585231 +1315.601015 +1315.750066 +1315.876906 +1315.951897 +1315.966416 +1315.988827 +1316.292556 +1316.326189 +1316.410472 +1316.528787 +1316.566649 +1316.675040 +1316.817231 +1316.853129 +1316.862719 +1316.990624 +1317.012802 +1317.082266 +1317.182532 +1317.251497 +1317.280801 +1317.304011 +1317.313768 +1317.464284 +1317.636078 +1317.653161 +1317.708739 +1317.721659 +1317.744670 +1317.771409 +1317.812435 +1317.991489 +1317.995785 +1318.039275 +1318.071742 +1318.103877 +1318.155725 +1318.195818 +1318.198449 +1318.199448 +1318.226154 +1318.239641 +1318.424722 +1318.425055 +1318.441372 +1318.456091 +1318.467080 +1318.468312 +1318.514133 +1318.572940 +1318.617562 +1318.633513 +1318.689957 +1318.717363 +1318.776237 +1318.896816 +1318.910669 +1318.918162 +1318.986859 +1319.001878 +1319.032247 +1319.060752 +1319.061751 +1319.062650 +1319.079100 +1319.094385 +1319.121058 +1319.138108 +1319.139573 +1319.221025 +1319.239273 +1319.267512 +1319.281431 +1319.361085 +1319.388424 +1319.408371 +1319.442004 +1319.460219 +1319.491421 +1319.541704 +1319.585793 +1319.623289 +1319.640705 +1319.670975 +1319.672107 +1319.687491 +1319.764148 +1319.766279 +1319.780565 +1319.888790 +1319.939140 +1319.968477 +1319.969110 +1320.025853 +1320.027118 +1320.058453 +1320.058786 +1320.078567 +1320.170408 +1320.172273 +1320.288323 +1320.362815 +1320.388190 +1320.466678 +1320.505106 +1320.585826 +1320.688323 +1320.739605 +1320.740005 +1320.770907 +1320.831879 +1320.864147 +1320.937274 +1320.983261 +1321.067610 +1321.084893 +1321.128782 +1321.147930 +1321.148296 +1321.190653 +1321.210467 +1321.251925 +1321.282695 +1321.313331 +1321.342468 +1321.388489 +1321.450027 +1321.450793 +1321.598645 +1321.700443 +1321.718325 +1321.752424 +1321.799910 +1321.870540 +1322.093250 +1322.563379 +1322.563846 +1322.670905 +1322.687688 +1322.747062 +1322.763113 +1322.779896 +1322.780395 +1322.831478 +1322.963745 +1323.025783 +1323.376798 +1323.395213 +1324.977696 +1325.870569 +1326.412360 +1326.547824 +1326.577794 +1326.995876 +1327.020651 +1327.165006 +1327.413891 +1327.454050 +1327.764007 +1327.803301 +1327.847790 +1327.919218 +1327.935202 +1327.975462 +1328.088815 +1328.119085 +1328.189947 +1328.220317 +1328.563673 +1328.604965 +1328.635568 +1328.656314 +1328.884086 +1328.914722 +1329.026177 +1329.097905 +1329.098171 +1329.098571 +1329.129873 +1329.256480 +1329.299936 +1329.406263 +1329.412723 +1329.426110 +1329.595141 +1329.769599 +1329.881121 +1329.883152 +1329.887381 +1329.890412 +1329.953548 +1330.083918 +1330.114554 +1330.149885 +1330.334301 +1330.404897 +1330.449086 +1330.492043 +1330.588013 +1330.636298 +1330.699502 +1330.921779 +1330.943591 +1331.097903 +1331.108925 +1331.223577 +1331.314819 +1331.391975 +1331.406361 +1331.520513 +1331.624676 +1331.714752 +1331.905861 +1331.967233 +1331.970196 +1332.084549 +1332.176457 +1332.404628 +1332.667299 +1332.711688 +1332.730036 +1332.752147 +1332.756509 +1332.773626 +1332.815417 +1332.874791 +1333.233798 +1333.393838 +1333.477155 +1333.766432 +1334.577553 +1334.629967 +1334.786011 +1334.938459 +1335.012251 +1335.035095 +1335.577652 +1335.638924 +1335.700196 +1335.842554 +1336.173955 +1336.281681 +1337.034161 +1337.201893 +1337.690237 +1337.716245 +1338.041219 +1338.170823 +1338.243317 +1338.859400 +1338.915045 +1338.971055 +1339.174052 +1339.191102 +1339.372820 +1339.468224 +1339.535390 +1339.882976 +1340.138786 +1340.379179 +1340.417740 +1340.453438 +1340.473751 +1340.831893 +1340.981543 +1341.137986 +1341.303887 +1341.558798 +1341.637486 +1341.657233 +1342.216440 +1342.237119 +1343.138883 +1343.139749 +1343.140215 +1343.141014 +1343.141814 +1343.143745 +1343.238817 +1343.240482 +1343.242246 +1343.243079 +1343.344378 +1343.439549 +1343.440714 +1343.539682 +1343.540148 +1343.543711 +1343.638550 +1343.639615 +1343.642013 +1343.738550 +1343.938216 +1343.938849 +1344.039648 +1344.635219 +1344.839681 +1345.237349 +1346.238814 +1346.240845 +1346.243376 +1346.839546 +1347.039978 +1347.139645 +1347.439212 +1347.539678 +1347.639745 +1348.038812 +1349.001481 +1349.105311 +1350.231350 +1350.377204 +1350.382366 +1351.349231 +1352.574838 +1353.368776 +1353.726985 +1354.438339 +1355.029647 +1355.440236 +1355.498212 +1356.003606 +1356.019989 +1356.067242 +1356.212929 +1356.449293 +1356.974101 +1357.102306 +1357.557617 +1357.826847 +1358.396344 +1358.502871 +1358.504935 +1358.528778 +1358.601405 +1358.695611 +1358.702104 +1359.353319 +1360.158646 +1360.268337 +1360.353485 +1360.377161 +1360.436535 +1361.005465 +1361.007463 +1362.873396 +1363.033502 +1363.192942 +1364.297970 +1364.309025 +1364.353148 +1364.368133 +1364.438596 +1364.471596 +1364.480320 +1364.488013 +1364.517850 +1364.520946 +1364.612089 +1364.691942 +1365.265768 +1365.274192 +1365.299600 +1365.320346 +1365.322577 +1365.544788 +1365.604828 +1365.608924 +1365.771062 +1365.790609 +1366.155011 +1366.232134 +1366.233865 +1366.241324 +1366.307858 +1366.451414 +1366.456209 +1366.460538 +1366.472193 +1366.522876 +1366.971127 +1367.204527 +1367.207757 +1367.209622 +1367.210088 +1367.264400 +1367.274790 +1367.284713 +1367.334264 +1367.336695 +1367.372625 +1367.410254 +1368.127303 +1368.128602 +1368.192671 +1368.199697 +1368.202761 +1368.205691 +1368.206091 +1368.214549 +1368.266664 +1368.268462 +1368.272358 +1368.852610 +1368.973723 +1369.147449 +1369.188141 +1369.202793 +1369.209020 +1369.217812 +1369.250146 +1369.259903 +1369.395301 +1369.407488 +1370.172023 +1370.184277 +1370.193934 +1370.197897 +1370.205323 +1370.260668 +1370.343884 +1370.344550 +1370.345250 +1370.818543 +1370.846415 +1370.875585 +1370.922072 +1371.140587 +1371.162065 +1371.182911 +1371.190304 +1371.192502 +1371.194500 +1371.203690 +1371.223570 +1371.251509 +1371.360933 +1371.413414 +1371.426501 +1371.491669 +1371.557803 +1371.581878 +1371.604989 +1371.605255 +1371.663663 +1371.750909 +1371.751342 +1371.770090 +1371.789537 +1371.815678 +1371.819041 +1372.499027 +1372.537988 +1372.572520 +1372.807185 +1373.153539 +1373.226432 +1373.304388 +1373.347711 +1373.395763 +1373.411447 +1373.447578 +1373.474118 +1373.484973 +1373.574084 +1373.582076 +1373.603721 +1373.728829 +1373.729795 +1373.759532 +1373.790135 +1373.794630 +1373.807650 +1373.852539 +1373.860331 +1373.882376 +1373.943415 +1373.953371 +1373.963628 +1373.981576 +1374.036655 +1374.097327 +1374.104387 +1374.118106 +1374.139152 +1374.140850 +1374.175016 +1374.175449 +1374.215176 +1374.230227 +1374.233657 +1374.276614 +1374.295595 +1374.325033 +1374.767190 +1374.789867 +1374.797293 +1374.838585 +1374.846078 +1374.850773 +1374.869354 +1374.877746 +1374.885105 +1374.902255 +1374.908315 +1374.916008 +1374.936121 +1374.967523 +1374.990600 +1375.003453 +1375.069454 +1375.084206 +1375.113710 +1375.156500 +1375.167456 +1375.205917 +1375.223067 +1375.228262 +1375.236254 +1375.255168 +1375.256866 +1375.259131 +1375.268621 +1375.296127 +1375.297359 +1375.520170 +1375.740949 +1375.848308 +1375.897558 +1375.926330 +1375.942980 +1375.970053 +1376.071618 +1376.072983 +1376.074182 +1376.076979 +1376.172983 +1376.174148 +1376.174848 +1376.175280 +1376.176146 +1376.274381 +1376.274748 +1376.275813 +1376.372716 +1376.373349 +1376.374115 +1376.375846 +1376.376412 +1376.376845 +1376.377278 +1376.380642 +1376.472783 +1376.473582 +1376.477245 +1376.480775 +1376.572716 +1376.573415 +1376.576812 +1376.577378 +1376.578011 +1376.673349 +1376.677578 +1376.772150 +1376.773848 +1376.775646 +1376.776146 +1376.777444 +1376.871850 +1376.873648 +1376.873948 +1376.875013 +1376.875546 +1376.877078 +1376.881340 +1376.972982 +1376.975047 +1376.975446 +1376.976179 +1377.073215 +1377.074614 +1377.076811 +1377.078277 +1377.174813 +1377.182839 +1377.273281 +1377.273781 +1377.274780 +1377.275912 +1377.371383 +1377.375046 +1377.376411 +1377.478043 +1377.672249 +1377.677410 +1377.774047 +1377.775445 +1377.776145 +1377.776711 +1377.873614 +1377.874047 +1377.876078 +1377.876711 +1377.878143 +1377.973281 +1377.973913 +1377.978442 +1378.079374 +1378.176511 +1378.180873 +1378.276111 +1378.277110 +1378.278275 +1378.278808 +1378.373547 +1378.373913 +1378.375078 +1378.376710 +1378.376877 +1378.578242 +1378.578775 +1378.579207 +1378.674612 +1378.675045 +1378.675844 +1378.774212 +1378.777043 +1378.876110 +1378.876643 +1378.976776 +1378.977043 +1378.977475 +1379.074578 +1379.076277 +1379.173479 +1379.274312 +1379.274478 +1379.275843 +1379.277808 +1379.377941 +1379.378840 +1379.473512 +1379.474411 +1379.475244 +1379.674944 +1379.675310 +1379.676309 +1379.677441 +1379.773445 +1379.774511 +1379.775244 +1379.878740 +1379.976442 +1379.977774 +1380.074344 +1380.076542 +1380.174411 +1380.174844 +1380.176975 +1380.276175 +1380.373445 +1380.376542 +1380.377541 +1380.473578 +1380.474743 +1380.574843 +1380.575343 +1380.577740 +1380.673744 +1380.674344 +1380.777540 +1380.873611 +1380.874743 +1380.876441 +1380.973244 +1380.974377 +1380.976741 +1380.977374 +1383.360521 +1384.881998 +1385.006640 +1385.496350 +1385.782364 +1385.863383 +1385.912667 +1385.958487 +1385.970442 +1385.995018 +1386.074505 +1386.109370 +1386.138074 +1386.141904 +1386.162084 +1386.202077 +1386.262050 +1386.332913 +1386.333612 +1386.355024 +1386.386359 +1386.401244 +1386.405940 +1386.426053 +1386.437208 +1386.448330 +1386.450761 +1386.451927 +1386.496948 +1386.498647 +1386.498946 +1386.510335 +1386.525653 +1386.551461 +1386.576336 +1386.577068 +1386.587125 +1386.603841 +1386.616629 +1386.626119 +1386.636009 +1386.662050 +1386.662916 +1386.675436 +1386.690255 +1386.700378 +1386.714764 +1386.732513 +1386.756655 +1386.757454 +1386.770974 +1386.771340 +1386.787358 +1386.798080 +1386.810701 +1386.832579 +1386.838507 +1386.844401 +1386.846532 +1386.875569 +1386.901011 +1386.923255 +1386.955356 +1386.967411 +1387.044201 +1387.045133 +1387.087457 +1387.124587 +1387.126285 +1387.152792 +1387.171640 +1387.174837 +1387.186924 +1387.197980 +1387.227650 +1387.238240 +1387.242635 +1387.248529 +1387.298946 +1387.315895 +1387.323621 +1387.335709 +1387.360850 +1387.377733 +1387.402142 +1387.410467 +1387.432912 +1387.502509 +1387.513864 +1387.540404 +1387.551959 +1387.569075 +1387.579198 +1387.594117 +1387.606072 +1387.618026 +1387.644633 +1387.666311 +1387.694783 +1387.698779 +1387.723054 +1387.748596 +1387.757753 +1387.770474 +1387.780530 +1387.783194 +1387.787224 +1387.799078 +1387.827217 +1387.849495 +1387.852025 +1387.859218 +1387.863381 +1387.902775 +1387.915995 +1387.928715 +1387.930713 +1387.980830 +1387.988422 +1388.020856 +1388.044300 +1388.057020 +1388.058552 +1388.069108 +1388.097713 +1388.098112 +1388.110933 +1388.125219 +1388.125851 +1388.148495 +1388.152558 +1388.158285 +1388.159950 +1388.172971 +1388.187090 +1388.210733 +1388.215561 +1388.216361 +1388.224652 +1388.225918 +1388.240869 +1388.253690 +1388.276367 +1388.278565 +1388.292052 +1388.322787 +1388.324486 +1388.344632 +1388.354156 +1388.355255 +1388.357120 +1388.366444 +1388.368941 +1388.370340 +1388.380563 +1388.395848 +1388.438738 +1388.439238 +1388.443034 +1388.468875 +1388.477932 +1388.490886 +1388.501842 +1388.515428 +1388.519957 +1388.531712 +1388.544466 +1388.574835 +1388.576567 +1388.588555 +1388.601508 +1388.639237 +1388.706603 +1388.732144 +1388.737339 +1388.750160 +1388.758185 +1388.761082 +1388.774635 +1388.775434 +1388.801641 +1388.842101 +1388.859617 +1388.871705 +1388.888754 +1388.938171 +1388.964279 +1388.979164 +1388.981461 +1388.993017 +1389.007735 +1389.022487 +1389.083526 +1389.084592 +1389.125218 +1389.128381 +1389.154721 +1389.158984 +1389.170772 +1389.176333 +1389.201042 +1389.202840 +1389.215361 +1389.302873 +1389.315960 +1389.318957 +1389.330712 +1389.345664 +1389.372037 +1389.377965 +1389.388054 +1389.403972 +1389.418424 +1389.462214 +1389.489619 +1389.505470 +1389.511198 +1389.551291 +1389.566043 +1389.571504 +1389.574601 +1389.579063 +1389.582526 +1389.589020 +1389.603073 +1389.616492 +1389.647262 +1389.660149 +1389.681161 +1389.709466 +1389.721720 +1389.739070 +1389.769106 +1389.796745 +1389.798910 +1389.826715 +1389.841634 +1389.855420 +1389.870538 +1389.902406 +1389.908101 +1389.908533 +1389.930445 +1389.935640 +1389.993781 +1389.995080 +1390.008300 +1390.055686 +1390.070138 +1390.085090 +1390.100841 +1390.102173 +1390.115726 +1390.119223 +1390.210764 +1390.224983 +1390.225350 +1390.267741 +1390.341700 +1390.383258 +1390.396179 +1390.427814 +1390.440901 +1390.458982 +1390.489052 +1390.550791 +1390.613494 +1390.621220 +1390.626481 +1390.651057 +1390.659415 +1390.711763 +1390.772835 +1390.789818 +1390.835306 +1390.850957 +1390.896778 +1390.898110 +1390.910764 +1401.186045 +1401.190873 +1401.204293 +1401.206158 +1401.242488 +1401.974655 +1402.201861 +1402.975054 +1403.208454 +1403.211217 +1403.260501 +1403.976518 +1404.214646 +1404.802325 +1404.976550 +1406.132860 +1406.135457 +1408.016707 +1408.020070 +1409.648807 +1410.976278 +1411.175612 +1411.176577 +1411.273181 +1411.276045 +1411.372814 +1411.373980 +1411.374346 +1411.378042 +1411.378575 +1411.475112 +1411.477143 +1411.478209 +1411.573114 +1411.577410 +1411.676677 +1411.775611 +1411.779407 +1411.780806 +1411.875544 +1411.876577 +1411.974212 +1411.974778 +1411.978042 +1412.074845 +1412.075311 +1412.077076 +1412.079141 +1412.079907 +1412.175244 +1412.175444 +1412.274612 +1412.374711 +1412.376476 +1412.475411 +1412.480073 +1412.574412 +1412.575111 +1412.579407 +1412.674345 +1412.675877 +1412.774611 +1412.776176 +1412.875910 +1412.880272 +1412.974578 +1413.074344 +1413.075377 +1413.177508 +1413.275576 +1413.376042 +1413.376609 +1413.475476 +1413.476409 +1413.575410 +1413.576242 +1413.676841 +1413.776209 +1413.777907 +1413.875176 +1413.974410 +1413.977107 +1414.074277 +1414.075609 +1414.076575 +1414.078506 +1414.175376 +1414.275675 +1414.374743 +1414.475076 +1414.475775 +1414.477407 +1414.574476 +1414.676308 +1414.676740 +1414.875708 +1414.975641 +1414.978172 +1415.076141 +1415.077306 +1415.079670 +1415.172178 +1415.177273 +1415.276673 +1415.374875 +1415.375275 +1415.474941 +1415.479304 +1415.575840 +1415.580136 +1415.674675 +1415.675274 +1415.774475 +1415.775074 +1415.775574 +1415.783166 +1415.876906 +1420.995815 +1421.653590 +1421.694915 +1421.800010 +1421.856720 +1421.866843 +1421.871305 +1421.883560 +1422.040336 +1422.045631 +1422.072837 +1422.086157 +1422.124918 +1422.139903 +1422.226650 +1422.291918 +1422.408667 +1422.437705 +1422.488721 +1422.583060 +1422.637605 +1422.658584 +1422.660482 +1422.661814 +1422.684358 +1422.701807 +1422.703306 +1422.747129 +1422.769906 +1422.918857 +1422.919889 +1422.975100 +1422.984458 +1422.986422 +1423.000309 +1423.051457 +1423.063912 +1423.087621 +1423.091817 +1423.109333 +1423.117758 +1423.119323 +1423.146662 +1423.188220 +1423.228880 +1423.241401 +1423.256019 +1423.257684 +1423.382160 +1423.394780 +1423.435839 +1423.436605 +1423.486622 +1423.486855 +1423.504071 +1423.517657 +1423.534074 +1423.546395 +1423.561980 +1423.563811 +1423.594813 +1423.600075 +1423.608966 +1423.639735 +1423.650091 +1423.666209 +1423.679962 +1423.739102 +1423.754254 +1423.784457 +1423.784923 +1423.786355 +1423.802372 +1423.827347 +1423.829179 +1423.833075 +1423.843465 +1423.857617 +1423.910830 +1423.925316 +1423.998210 +1424.002272 +1424.015026 +1424.026515 +1424.061480 +1424.063311 +1424.079928 +1424.106368 +1424.118489 +1424.158982 +1424.160780 +1424.192615 +1424.193980 +1424.233308 +1424.248959 +1424.267041 +1424.327780 +1424.333108 +1424.357217 +1424.365276 +1424.365775 +1424.409931 +1424.437537 +1424.479828 +1424.480893 +1424.509465 +1424.527280 +1424.537770 +1424.592748 +1424.620786 +1424.625748 +1424.692781 +1424.693813 +1424.703137 +1424.732375 +1424.734839 +1424.761013 +1424.780194 +1424.813627 +1424.849924 +1424.852921 +1424.878362 +1424.895378 +1424.915292 +1424.924416 +1424.924915 +1424.941332 +1424.958715 +1424.970470 +1424.999308 +1425.016424 +1425.032907 +1425.047692 +1425.078195 +1425.106434 +1425.108265 +1425.137203 +1425.150157 +1425.154752 +1425.161812 +1425.163377 +1425.167706 +1425.177196 +1425.179028 +1425.179527 +1425.214892 +1425.217556 +1425.231941 +1425.248824 +1425.250956 +1425.279161 +1425.292148 +1425.298508 +1425.300206 +1425.326846 +1425.327379 +1425.340899 +1425.342331 +1425.350356 +1425.371468 +1425.382690 +1425.383456 +1425.387486 +1425.456317 +1425.457749 +1425.532441 +1425.546926 +1425.560379 +1425.561545 +1425.562577 +1425.578195 +1425.582291 +1425.601372 +1425.603869 +1425.617356 +1425.619187 +1425.619687 +1425.635338 +1425.646893 +1425.667838 +1425.668305 +1425.693546 +1425.694612 +1425.722217 +1425.755218 +1425.768970 +1425.774398 +1425.820286 +1425.826013 +1425.831108 +1425.832240 +1425.848358 +1425.863842 +1425.881158 +1425.965440 +1435.384046 +1439.729995 +1440.673118 +1440.685905 +1440.710647 +1440.715376 +1440.808216 +1440.898759 +1440.972185 +1442.298857 +1443.572616 +1443.684637 +1443.723398 +1443.833122 +1444.887333 +1445.077509 +1445.858128 +1445.936216 +1446.177608 +1446.178840 +1446.276676 +1446.376675 +1446.378807 +1446.380738 +1446.384901 +1446.474078 +1446.478107 +1446.577042 +1446.577375 +1446.577774 +1446.678806 +1446.876875 +1446.877607 +1446.878373 +1447.274710 +1447.277407 +1447.277940 +1447.375809 +1447.378206 +1447.579538 +1447.579971 +1447.677107 +1447.678239 +1447.679405 +1447.876707 +1447.976208 +1447.977107 +1447.978006 +1448.177539 +1448.178372 +1448.179870 +1448.281735 +1448.378805 +1448.379970 +1448.383367 +1448.477173 +1448.479204 +1448.878638 +1448.978438 +1448.981668 +1449.077872 +1449.178204 +1449.181668 +1449.182134 +1449.476839 +1449.477805 +1449.678104 +1449.778270 +1449.878237 +1449.978470 +1450.078703 +1450.079968 +1450.082333 +1450.177271 +1450.178803 +1450.180002 +1450.280002 +1450.377837 +1450.379735 +1450.382133 +1450.469645 +1450.475406 +1450.578469 +1450.579169 +1450.579602 +1450.678603 +1450.678969 +1450.777670 +1450.878636 +1450.879402 +1450.880534 +1450.978336 +1450.979834 +1451.798715 +1451.837742 +1451.897716 +1451.911302 +1451.928385 +1451.945201 +1451.962084 +1452.508204 +1452.515031 +1452.587125 +1452.610402 +1452.634711 +1452.701877 +1452.869909 +1452.890289 +1452.935044 +1453.004141 +1453.454857 +1453.461583 +1453.476901 +1453.496082 +1453.509535 +1453.516595 +1453.598247 +1453.635076 +1453.660318 +1454.239971 +1454.256787 +1454.402608 +1454.564346 +1454.577067 +1454.585325 +1454.614396 +1454.668109 +1454.742401 +1455.974002 +1456.059949 +1456.536705 +1456.721887 +1456.864977 +1456.963978 +1457.030011 +1457.129545 +1457.253355 +1457.254220 +1457.306035 +1457.336538 +1457.377297 +1457.461879 +1457.496078 +1457.501373 +1457.549458 +1457.550590 +1457.655086 +1457.710730 +1457.736471 +1457.797843 +1457.826381 +1457.937769 +1457.940800 +1457.978895 +1458.082291 +1458.106767 +1458.108499 +1458.128945 +1458.167872 +1458.173833 +1458.182391 +1458.209198 +1458.233207 +1458.282358 +1458.321619 +1458.336803 +1458.361212 +1458.390683 +1458.418155 +1458.455118 +1458.459680 +1458.484655 +1458.511096 +1458.558282 +1458.628312 +1458.639001 +1458.639733 +1458.654219 +1458.654485 +1458.701938 +1458.720719 +1458.742697 +1458.743896 +1458.771002 +1458.808864 +1458.834805 +1458.885254 +1458.908731 +1458.913659 +1458.932041 +1458.944129 +1458.966906 +1458.967938 +1458.980293 +1458.981824 +1458.997908 +1459.043929 +1459.066306 +1459.090682 +1459.095610 +1459.120785 +1459.134205 +1459.146326 +1459.147725 +1459.161178 +1459.178095 +1459.198940 +1459.208497 +1459.250522 +1459.253020 +1459.267505 +1459.291681 +1459.296676 +1459.310329 +1459.323715 +1459.386086 +1459.410695 +1459.453552 +1459.457815 +1459.467305 +1459.486286 +1459.487085 +1459.497208 +1459.531607 +1459.557148 +1459.557448 +1459.559812 +1459.583622 +1459.665607 +1459.731208 +1459.743762 +1459.744261 +1459.819486 +1459.836202 +1459.858780 +1459.914524 +1459.952153 +1459.986685 +1460.001937 +1460.009895 +1460.011627 +1460.023482 +1460.030042 +1460.038866 +1460.039532 +1460.067138 +1460.067871 +1460.073165 +1460.083022 +1460.094877 +1460.095376 +1460.108563 +1460.143861 +1460.151820 +1460.152319 +1460.152752 +1460.167005 +1460.194111 +1460.195776 +1460.197474 +1460.211693 +1460.212626 +1460.214124 +1460.239266 +1460.299505 +1460.314124 +1460.315190 +1460.318586 +1460.323914 +1460.325180 +1460.339432 +1460.352119 +1460.365306 +1460.370534 +1460.378759 +1460.381856 +1460.399905 +1460.423182 +1460.439532 +1460.450954 +1460.462809 +1460.472665 +1460.486551 +1460.496608 +1460.511859 +1460.513957 +1460.543528 +1460.569502 +1460.591213 +1460.594610 +1460.607364 +1460.608629 +1460.609129 +1460.639898 +1460.643927 +1460.644660 +1460.655715 +1460.672698 +1460.676028 +1460.680657 +1460.695276 +1460.695742 +1460.702335 +1460.724513 +1460.735203 +1460.736035 +1460.754716 +1460.766338 +1460.767204 +1460.781090 +1460.798539 +1460.800004 +1460.815023 +1460.817620 +1460.828676 +1460.828776 +1460.831340 +1460.851486 +1460.859811 +1460.869968 +1460.877394 +1460.894643 +1460.909362 +1460.918053 +1460.924480 +1460.925745 +1460.927710 +1460.931939 +1460.934636 +1460.936368 +1460.947756 +1460.948955 +1460.950554 +1460.963874 +1460.967603 +1464.536065 +1464.563537 +1464.572461 +1464.686481 +1465.954778 +1467.759438 +1468.057839 +1468.112085 +1468.780449 +1468.805624 +1468.880682 +1468.911984 +1468.920043 +1470.735559 +1472.466992 +1473.978546 +1474.389801 +1474.412445 +1474.435322 +1474.450340 +1474.799324 +1475.973016 +1476.148041 +1477.519968 +1477.649172 +1477.689132 +1477.719235 +1477.737517 +1477.786434 +1479.661824 +1479.718167 +1479.771814 +1480.026958 +1480.968815 +1481.078106 +1481.177273 +1481.177839 +1481.178306 +1481.277939 +1481.279138 +1481.378139 +1481.379271 +1481.380137 +1481.382535 +1481.385099 +1481.478072 +1481.480170 +1481.577506 +1481.579837 +1481.678971 +1481.679371 +1481.679571 +1481.879271 +1481.880569 +1481.980369 +1481.981468 +1482.079171 +1482.079504 +1482.179903 +1482.183166 +1482.278371 +1482.279370 +1482.376506 +1482.378071 +1482.379437 +1482.380769 +1482.478338 +1482.578471 +1482.579536 +1482.584065 +1482.678104 +1482.678904 +1482.778637 +1482.879936 +1482.980002 +1483.081501 +1483.284031 +1483.379802 +1483.380768 +1483.480668 +1483.680534 +1483.780734 +1483.879668 +1483.980734 +1484.079668 +1484.084164 +1484.179368 +1484.181466 +1484.280967 +1484.480367 +1484.579601 +1484.580533 +1484.581532 +1484.780333 +1484.781699 +1484.880100 +1485.081665 +1485.180366 +1485.181232 +1485.377968 +1485.380965 +1485.480399 +1485.581998 +1485.678834 +1485.679666 +1485.682863 +1485.781798 +1485.880532 +1485.882863 +1485.979533 +1485.980299 +1486.830181 +1486.830415 +1486.851727 +1486.863049 +1486.874937 +1488.503839 +1489.872936 +1489.923718 +1489.981494 +1489.994148 +1490.022053 +1490.022286 +1490.136172 +1490.176765 +1490.226781 +1491.664709 +1491.713027 +1491.715291 +1491.716257 +1491.801638 +1491.905235 +1491.987586 +1492.015757 +1492.057249 +1492.074365 +1492.089617 +1492.136736 +1492.149424 +1492.164508 +1492.233673 +1492.307965 +1492.308364 +1492.349989 +1492.363609 +1492.539034 +1492.540499 +1492.542430 +1492.568371 +1492.593113 +1492.605867 +1492.620519 +1492.635770 +1492.704901 +1492.706533 +1492.745061 +1492.784455 +1492.813159 +1492.856083 +1492.869403 +1492.883122 +1492.911328 +1492.923582 +1492.938467 +1492.948390 +1492.962543 +1492.978294 +1493.055317 +1493.058980 +1493.081690 +1493.083455 +1493.111028 +1493.133805 +1493.134171 +1493.171367 +1493.197208 +1493.224181 +1493.225713 +1493.244760 +1493.260012 +1493.264341 +1493.276828 +1493.278360 +1493.301903 +1493.312593 +1493.328110 +1493.356615 +1493.373665 +1493.394244 +1493.430475 +1493.461976 +1493.482456 +1493.501404 +1493.514257 +1493.515956 +1493.591913 +1493.612626 +1493.622249 +1493.652952 +1493.665939 +1493.668703 +1493.676362 +1493.696974 +1493.699272 +1493.713025 +1493.755749 +1493.756348 +1493.770667 +1493.778926 +1493.810428 +1493.815323 +1493.858679 +1493.926178 +1493.929375 +1493.939398 +1493.959711 +1493.964640 +1494.008196 +1494.034636 +1494.047490 +1494.082022 +1494.110261 +1494.122881 +1494.130807 +1494.146092 +1494.156181 +1494.175995 +1494.189515 +1494.190381 +1494.191313 +1494.222016 +1494.264140 +1494.289615 +1494.306631 +1494.327743 +1494.329941 +1494.340097 +1494.357547 +1494.360111 +1494.426478 +1494.440397 +1494.441696 +1494.443461 +1494.444693 +1494.446458 +1494.446924 +1494.481289 +1494.513224 +1494.549954 +1494.563274 +1494.578126 +1494.597540 +1494.622182 +1494.631572 +1494.669867 +1494.683387 +1494.695109 +1494.752984 +1494.763274 +1494.777793 +1494.783787 +1494.798205 +1494.855781 +1494.875095 +1494.886051 +1494.902701 +1494.915022 +1494.925312 +1494.937699 +1494.950120 +1494.978525 +1494.979424 +1494.981688 +1494.993310 +1495.013823 +1495.026877 +1495.051985 +1495.055748 +1495.084053 +1495.110559 +1495.111092 +1495.119550 +1495.140330 +1495.153317 +1495.184785 +1495.191345 +1495.198438 +1495.222048 +1495.236733 +1495.240030 +1495.252218 +1495.253217 +1495.253949 +1495.254882 +1495.266370 +1495.267303 +1495.268168 +1495.284019 +1495.285384 +1495.307862 +1495.308262 +1495.322381 +1495.330672 +1495.338964 +1495.357945 +1495.367635 +1495.371598 +1495.372264 +1495.381855 +1495.384219 +1495.397705 +1495.400769 +1495.418784 +1495.437532 +1495.445125 +1495.462074 +1495.481854 +1495.496407 +1495.527475 +1495.541162 +1495.568734 +1495.581621 +1495.582387 +1495.587715 +1495.626809 +1495.637399 +1495.670332 +1495.679190 +1495.729040 +1495.731105 +1495.742194 +1495.747855 +1495.748621 +1495.759843 +1495.763173 +1495.778657 +1495.794775 +1495.836899 +1495.839263 +1495.885717 +1495.886083 +1495.908527 +1495.913689 +1495.918517 +1495.920415 +1495.925410 +1495.937831 +1495.944058 +1495.944724 +1495.945490 +1495.957345 +1495.972597 +1497.573094 +1497.619182 +1497.637796 +1497.639095 +1497.660773 +1498.751482 +1498.769530 +1498.879487 +1498.938794 +1500.636861 +1500.649881 +1500.681716 +1500.687610 +1500.688942 +1500.720777 +1500.785013 +1500.800863 +1500.849148 +1500.864866 +1500.906191 +1500.951113 +1500.951379 +1500.977953 +1500.994137 +1501.068995 +1501.070061 +1501.163534 +1501.341456 +1501.351945 +1501.994435 +1502.151212 +1503.341953 +1503.403591 +1503.634594 +1504.823703 +1505.016743 +1505.198628 +1505.348511 +1505.359767 +1505.975783 +1509.314341 +1509.498157 +1509.514208 +1509.557798 +1509.620835 +1509.669253 +1509.708813 +1511.110344 +1511.122565 +1511.137017 +1511.159461 +1511.167919 +1511.365455 +1511.366454 +1511.922597 +1514.307543 +1514.357693 +1514.359525 +1514.386964 +1514.393957 +1514.406045 +1514.426990 +1515.293123 +1515.377006 +1515.427489 +1515.660889 +1515.911105 +1516.079336 +1516.082333 +1516.177205 +1516.182433 +1516.182733 +1516.279403 +1516.280035 +1516.283898 +1516.379369 +1516.382966 +1516.480501 +1516.481068 +1516.482899 +1516.483865 +1516.578070 +1516.580401 +1516.678137 +1516.678703 +1516.680035 +1516.680435 +1516.681234 +1516.879735 +1516.884397 +1516.978769 +1516.979169 +1516.981766 +1516.982399 +1517.078203 +1517.079369 +1517.179135 +1517.381000 +1517.479235 +1517.480800 +1517.578769 +1517.582998 +1517.679301 +1517.680267 +1517.680800 +1517.778569 +1517.780434 +1517.877969 +1517.878935 +1517.881899 +1517.980633 +1517.981965 +1518.079301 +1518.081965 +1518.182065 +1518.184030 +1518.279168 +1518.381365 +1518.381798 +1518.479434 +1518.579534 +1518.580566 +1518.581232 +1518.679700 +1518.682297 +1518.686393 +1518.779833 +1518.782530 +1518.971242 +1518.977535 +1519.078801 +1519.079134 +1519.080499 +1519.178567 +1519.179267 +1519.179966 +1519.379433 +1519.382497 +1519.384628 +1519.479300 +1519.480265 +1519.679699 +1519.680631 +1519.779333 +1519.779766 +1519.784294 +1519.880298 +1519.881963 +1519.979033 +1520.077900 +1520.081530 +1520.180431 +1520.282529 +1520.480331 +1520.578499 +1520.579032 +1520.579765 +1520.580564 +1520.581197 +1520.583128 +1520.679199 +1520.679598 +1520.680264 +1520.682262 +1520.779731 +1520.781430 +1520.880297 +1520.881396 +1520.883927 +1520.980264 +1520.980663 +1520.981363 +1520.986291 +1521.725851 +1521.727050 +1521.762781 +1521.771172 +1521.784093 +1521.827549 +1521.870839 +1524.466441 +1524.592548 +1524.629278 +1526.013359 +1526.111294 +1526.232240 +1526.343795 +1526.431907 +1526.488217 +1526.540598 +1526.602969 +1526.721117 +1526.730641 +1526.748790 +1526.770368 +1526.809862 +1526.836768 +1526.848656 +1526.849922 +1526.865273 +1526.904067 +1526.938167 +1526.949122 +1527.003002 +1527.005732 +1527.006565 +1527.105599 +1527.135602 +1527.183854 +1527.198539 +1527.272798 +1527.293111 +1527.306698 +1527.404333 +1527.473997 +1527.495808 +1527.497707 +1527.511959 +1527.515922 +1527.540064 +1527.541962 +1527.556514 +1527.597906 +1527.637833 +1527.638266 +1527.638765 +1527.681323 +1527.683521 +1527.683887 +1527.695342 +1527.723381 +1527.750420 +1527.776095 +1527.790680 +1527.792112 +1527.837700 +1527.839065 +1527.984553 +1527.995109 +1528.009195 +1528.019284 +1528.073963 +1528.081789 +1528.105198 +1528.125045 +1528.160510 +1528.204299 +1528.248189 +1528.260443 +1528.262841 +1528.275861 +1528.293210 +1528.335268 +1528.345558 +1528.371465 +1528.396274 +1528.430773 +1528.469167 +1528.473863 +1528.475161 +1528.485218 +1528.557013 +1528.573796 +1528.588015 +1528.589347 +1528.601435 +1528.690612 +1528.704399 +1528.733869 +1528.751385 +1528.762740 +1528.791878 +1528.807895 +1528.825211 +1528.831238 +1528.838797 +1528.861208 +1528.862507 +1528.928974 +1528.934901 +1528.960975 +1528.969533 +1529.053682 +1529.070998 +1529.092876 +1529.107662 +1529.154715 +1529.155114 +1529.171498 +1529.189513 +1529.200402 +1529.202300 +1529.219416 +1529.222547 +1529.244625 +1529.270698 +1529.276359 +1529.277858 +1529.290678 +1529.292343 +1529.305697 +1529.306829 +1529.308361 +1529.321115 +1529.324378 +1529.341394 +1529.348987 +1529.352117 +1529.354548 +1529.356046 +1529.370232 +1529.407262 +1529.422147 +1529.434901 +1529.435367 +1529.442260 +1529.446090 +1529.449852 +1529.460409 +1529.476293 +1529.485350 +1529.489146 +1529.493176 +1529.507295 +1529.521314 +1529.552416 +1529.553349 +1529.568667 +1529.585383 +1529.587481 +1529.610259 +1529.635400 +1529.650285 +1529.654647 +1529.682653 +1529.702466 +1529.702966 +1529.709626 +1529.715886 +1529.719616 +1529.723212 +1529.729073 +1529.742493 +1529.751451 +1529.768733 +1529.784884 +1529.810625 +1529.811191 +1529.819716 +1529.842726 +1529.855446 +1529.874028 +1529.900501 +1529.905063 +1529.913988 +1529.946422 +1529.960408 +1529.989079 +1529.991310 +1530.002766 +1530.003099 +1530.003964 +1530.005729 +1530.019216 +1530.021713 +1530.062239 +1530.063238 +1530.075426 +1530.078390 +1530.110791 +1530.115753 +1530.121081 +1530.121613 +1530.123145 +1530.138363 +1530.142526 +1530.151051 +1530.157644 +1530.161640 +1530.164704 +1530.176525 +1530.182652 +1530.202865 +1530.223445 +1530.228273 +1530.229872 +1530.239895 +1530.268766 +1530.276658 +1530.281886 +1530.283385 +1530.301733 +1530.311490 +1530.327074 +1530.341593 +1530.357144 +1530.366635 +1530.407860 +1530.409592 +1530.410358 +1530.424543 +1530.442259 +1530.445922 +1530.473561 +1530.482119 +1530.506362 +1530.529638 +1530.532968 +1530.562239 +1530.577091 +1530.580054 +1530.583285 +1530.592942 +1530.594274 +1530.597737 +1530.608359 +1530.635066 +1530.645356 +1530.647454 +1530.652449 +1530.670963 +1530.684916 +1530.698869 +1530.700734 +1530.722545 +1530.729938 +1530.752615 +1530.760807 +1530.762472 +1530.768532 +1530.776691 +1530.790477 +1530.792542 +1530.807660 +1530.808759 +1530.824377 +1530.840560 +1530.870997 +1530.884849 +1530.914586 +1530.918849 +1530.930404 +1530.944923 +1530.957810 +1530.958476 +1530.974626 +1531.623776 +1532.525574 +1532.959106 +1535.029734 +1536.011085 +1536.060768 +1536.083878 +1539.141518 +1539.172853 +1539.319273 +1539.699359 +1539.821737 +1540.644880 +1541.270087 +1541.274982 +1541.356301 +1541.360164 +1541.980443 +1542.280642 +1542.976645 +1543.182972 +1543.197924 +1543.285503 +1543.285936 +1543.302752 +1543.334254 +1543.376012 +1543.379043 +1543.454001 +1543.456798 +1543.487534 +1543.728892 +1543.730924 +1543.886302 +1544.244610 +1544.252069 +1544.259961 +1544.278309 +1544.296691 +1544.322598 +1544.407646 +1544.549471 +1544.567320 +1544.975911 +1544.980873 +1545.202517 +1545.204682 +1545.253699 +1545.308378 +1545.339547 +1545.342977 +1545.395091 +1545.434252 +1545.440912 +1545.561125 +1545.584868 +1545.593859 +1545.611741 +1545.978074 +1545.980539 +1545.981404 +1546.152233 +1546.161591 +1546.241611 +1546.257328 +1546.328324 +1546.338181 +1546.739312 +1546.778640 +1546.792459 +1546.836682 +1546.877108 +1546.945939 +1547.211440 +1547.582069 +1547.664220 +1547.985532 +1547.992358 +1548.030986 +1548.096853 +1548.381901 +1548.399217 +1548.421295 +1548.470679 +1548.937345 +1548.983699 +1549.261821 +1550.062619 +1550.145336 +1550.159322 +1550.163451 +1550.176705 +1550.258889 +1550.924723 +1550.945968 +1550.966448 +1550.974440 +1551.078402 +1551.079568 +1551.080633 +1551.081333 +1551.177203 +1551.180633 +1551.183797 +1551.277603 +1551.278602 +1551.282098 +1551.283930 +1551.383896 +1551.481532 +1551.482398 +1551.484995 +1551.580433 +1551.581232 +1551.581632 +1551.582098 +1551.582464 +1551.583130 +1551.680300 +1551.682098 +1551.684595 +1551.686627 +1551.780266 +1551.781565 +1551.979733 +1551.984961 +1551.986593 +1552.079234 +1552.084262 +1552.086260 +1552.179600 +1552.183163 +1552.184828 +1552.281931 +1552.284129 +1552.285594 +1552.379100 +1552.384162 +1552.479633 +1552.484794 +1552.579400 +1552.580032 +1552.580832 +1552.582264 +1552.584328 +1552.587358 +1552.679400 +1552.781997 +1552.879799 +1552.881730 +1552.884428 +1552.886492 +1552.978833 +1552.980298 +1552.982796 +1552.986159 +1553.179532 +1553.180098 +1553.181697 +1553.280298 +1553.280331 +1553.280798 +1553.380165 +1553.480265 +1553.578833 +1553.580098 +1553.582196 +1553.678999 +1553.680564 +1553.683295 +1553.684760 +1553.687257 +1553.784160 +1553.786192 +1553.879698 +1553.884793 +1553.980131 +1553.980664 +1553.982995 +1553.987623 +1554.081962 +1554.083994 +1554.084327 +1554.181463 +1554.182095 +1554.182828 +1554.280231 +1554.280797 +1554.282428 +1554.285792 +1554.286524 +1554.381862 +1554.479797 +1554.480330 +1554.485991 +1554.582028 +1554.583560 +1554.584593 +1554.680996 +1554.681829 +1554.682195 +1554.880563 +1554.881995 +1554.980596 +1555.081928 +1555.181961 +1555.186057 +1555.280496 +1555.280796 +1555.282494 +1555.378831 +1555.380296 +1555.482127 +1555.579630 +1555.583792 +1555.678631 +1555.686856 +1555.778597 +1555.780262 +1555.781827 +1555.785923 +1555.880629 +1555.882194 +1555.979530 +1555.980529 +1555.980995 +1557.297111 +1558.093513 +1558.730376 +1558.731342 +1559.917887 +1560.066472 +1560.254151 +1560.254484 +1560.256082 +1560.335802 +1560.346258 +1560.361144 +1560.640497 +1560.951586 +1560.954117 +1560.957180 +1560.978492 +1561.042961 +1561.065339 +1561.122082 +1561.140963 +1561.184586 +1561.212991 +1561.227610 +1561.274329 +1561.285851 +1561.316221 +1561.357180 +1561.371799 +1561.390613 +1561.391379 +1561.405099 +1561.415954 +1561.431739 +1561.445025 +1561.458578 +1561.470367 +1561.496640 +1561.508562 +1561.532138 +1561.542494 +1561.543160 +1561.554616 +1561.582221 +1561.594243 +1561.606830 +1561.624978 +1561.651086 +1561.651618 +1561.654282 +1561.731838 +1561.734935 +1561.742927 +1561.754582 +1561.770400 +1561.856314 +1561.869833 +1561.870666 +1561.881189 +1561.926477 +1561.952917 +1561.971665 +1561.984252 +1561.998172 +1562.020150 +1562.043426 +1562.087815 +1562.121448 +1562.133003 +1562.143926 +1562.155015 +1562.182387 +1562.198571 +1562.210792 +1562.224512 +1562.239597 +1562.274628 +1562.278324 +1562.292410 +1562.301634 +1562.316386 +1562.332470 +1562.336067 +1562.363506 +1562.378591 +1562.391611 +1562.403799 +1562.418484 +1562.433602 +1562.436799 +1562.450053 +1562.461874 +1562.464405 +1562.476726 +1562.489846 +1562.505231 +1562.520615 +1562.533469 +1562.533902 +1562.534202 +1562.548088 +1562.574295 +1562.601168 +1562.624911 +1562.626076 +1562.663272 +1562.672596 +1562.674528 +1562.675893 +1562.699103 +1562.702433 +1562.717651 +1562.718018 +1562.718317 +1562.756313 +1562.772530 +1562.785317 +1562.815620 +1562.828507 +1562.853482 +1562.865570 +1562.883952 +1562.894874 +1562.933102 +1562.936699 +1562.948287 +1562.960542 +1562.986516 +1562.988980 +1563.043292 +1563.050318 +1563.058177 +1563.073628 +1563.085883 +1563.086249 +1563.111157 +1563.126709 +1563.131038 +1563.138963 +1563.141460 +1563.154048 +1563.156112 +1563.173162 +1563.185416 +1563.200435 +1563.214920 +1563.231970 +1563.244391 +1563.275393 +1563.287980 +1563.292975 +1563.306029 +1563.319915 +1563.327641 +1563.340195 +1563.341161 +1563.371164 +1563.383185 +1563.412023 +1563.469732 +1563.492010 +1563.494374 +1563.505163 +1563.516918 +1563.569765 +1563.574960 +1563.584683 +1563.598170 +1563.671130 +1563.721513 +1563.723911 +1563.736631 +1563.748786 +1563.750351 +1563.762272 +1563.773128 +1563.798836 +1563.812222 +1563.827041 +1563.829705 +1563.841193 +1563.854647 +1563.858942 +1563.872795 +1563.887047 +1563.902832 +1563.903231 +1563.913621 +1563.914054 +1563.914920 +1563.947087 +1563.956078 +1563.959875 +1563.995539 +1564.003464 +1564.019382 +1564.020381 +1564.050550 +1564.051150 +1564.062705 +1564.072628 +1564.095272 +1564.109791 +1564.129705 +1564.142858 +1564.147786 +1564.148686 +1564.160773 +1564.165369 +1564.195339 +1564.196338 +1564.204396 +1564.205395 +1564.232735 +1564.260940 +1564.264470 +1564.266334 +1564.276258 +1564.302532 +1564.304063 +1564.307760 +1564.317916 +1564.321146 +1564.335565 +1564.344023 +1564.346121 +1564.360041 +1564.363138 +1564.373527 +1564.374493 +1564.375558 +1564.376358 +1564.415752 +1564.417483 +1564.434400 +1564.439461 +1564.461572 +1564.466168 +1564.489078 +1564.494040 +1564.504030 +1564.504496 +1564.534300 +1564.550150 +1564.567333 +1564.580853 +1564.608226 +1564.635032 +1564.652082 +1564.666301 +1564.679155 +1564.695571 +1564.724376 +1564.733067 +1564.754812 +1564.800866 +1564.802864 +1564.832967 +1564.833966 +1564.849551 +1564.863603 +1564.864136 +1564.877423 +1564.878888 +1564.894805 +1564.909724 +1564.920813 +1564.927439 +1564.977789 +1564.980853 +1564.981319 +1565.009091 +1565.035132 +1565.066334 +1565.074026 +1565.092141 +1565.095804 +1565.099500 +1565.107492 +1565.108891 +1565.114352 +1565.126407 +1565.139261 +1565.197702 +1565.198168 +1565.209723 +1565.227173 +1565.257143 +1565.271562 +1565.302264 +1565.315484 +1565.317183 +1565.324076 +1565.330802 +1565.331801 +1565.347186 +1565.375458 +1565.395238 +1565.408991 +1565.433200 +1565.436130 +1565.437162 +1565.437862 +1565.466500 +1565.471495 +1565.480885 +1565.484115 +1565.500199 +1565.507692 +1565.511222 +1565.512753 +1565.514052 +1565.526939 +1565.548185 +1565.559540 +1565.561571 +1565.564368 +1565.566400 +1565.590309 +1565.627239 +1565.640326 +1565.663636 +1565.700898 +1565.722976 +1565.728071 +1565.747785 +1565.758907 +1565.775024 +1565.775391 +1565.786213 +1565.786746 +1565.801864 +1565.802763 +1565.816050 +1565.845720 +1565.851847 +1565.862836 +1565.875823 +1565.890109 +1565.890475 +1565.905194 +1565.930335 +1565.956609 +1565.958640 +1565.961538 +1565.971794 +1565.976789 +1565.977621 +1568.418079 +1568.538225 +1569.857105 +1571.372854 +1572.572120 +1573.176615 +1573.214011 +1573.280977 +1573.526299 +1574.110780 +1574.114743 +1574.169854 +1574.939051 +1575.572484 +1575.586037 +1575.615274 +1575.746077 +1575.749706 +1576.195527 +1576.281274 +1576.376279 +1576.600821 +1576.981407 +1577.250870 +1577.978941 +1577.979741 +1577.980240 +1577.982538 +1578.377376 +1578.980905 +1578.981638 +1578.982537 +1579.310509 +1579.417934 +1579.843408 +1579.898154 +1579.939779 +1579.982003 +1580.189762 +1580.411873 +1580.416135 +1580.418832 +1580.423295 +1580.432053 +1581.201549 +1581.208242 +1581.209275 +1581.227223 +1581.471445 +1581.662155 +1582.801381 +1582.882899 +1582.898750 +1582.963752 +1583.039842 +1583.061787 +1583.075773 +1583.243572 +1583.258090 +1583.774374 +1583.867514 +1584.679501 +1584.720626 +1584.757190 +1584.762151 +1584.799547 +1584.902744 +1585.059421 +1585.702577 +1585.981264 +1585.982430 +1586.079766 +1586.080399 +1586.178167 +1586.178600 +1586.179233 +1586.180332 +1586.180931 +1586.183296 +1586.284195 +1586.379899 +1586.477434 +1586.480598 +1586.481763 +1586.485093 +1586.486725 +1586.579432 +1586.583661 +1586.685160 +1586.780764 +1586.781130 +1586.885826 +1586.978733 +1586.984327 +1587.082795 +1587.179565 +1587.186858 +1587.285026 +1587.481130 +1587.482029 +1587.482728 +1587.487723 +1587.580597 +1587.581063 +1587.581296 +1587.682295 +1587.684060 +1587.782162 +1587.786025 +1587.878565 +1587.886757 +1587.983926 +1588.080463 +1588.080963 +1588.081629 +1588.083160 +1588.179964 +1588.184626 +1588.280296 +1588.281162 +1588.283293 +1588.283893 +1588.381229 +1588.382594 +1588.385791 +1588.479830 +1588.480396 +1588.485691 +1588.580263 +1588.582561 +1588.583093 +1588.586823 +1588.678664 +1588.680895 +1588.784758 +1588.882860 +1588.883826 +1588.979929 +1589.083726 +1589.179596 +1589.183992 +1589.283093 +1589.380495 +1589.384458 +1589.388088 +1589.481627 +1589.482526 +1589.485257 +1589.582293 +1589.681028 +1589.780162 +1589.782060 +1589.782626 +1589.783125 +1589.783592 +1589.784324 +1589.880928 +1589.882559 +1589.883658 +1589.884191 +1589.886022 +1589.979962 +1589.980495 +1589.982193 +1590.083158 +1590.182459 +1590.188620 +1590.279695 +1590.283791 +1590.380561 +1590.380994 +1590.384390 +1590.388286 +1590.480461 +1590.481660 +1590.581027 +1590.583324 +1590.584124 +1590.681992 +1590.683857 +1590.782192 +1590.881692 +1590.981326 +1590.981759 +1590.983923 +1590.984423 +1591.266907 +1593.146559 +1593.350355 +1593.374397 +1593.415922 +1593.459146 +1594.270201 +1594.377094 +1594.482421 +1594.484852 +1594.657579 +1594.721915 +1594.725178 +1594.726744 +1594.782055 +1594.879757 +1594.936234 +1595.074196 +1595.711191 +1595.828774 +1595.895907 +1595.903765 +1595.974661 +1595.981321 +1596.213622 +1596.224278 +1596.270631 +1596.274294 +1596.283852 +1596.308693 +1596.334667 +1596.364304 +1596.393009 +1596.431104 +1596.461740 +1596.474028 +1596.476059 +1596.477058 +1596.488214 +1596.500834 +1596.566802 +1596.582819 +1596.595306 +1596.633502 +1596.702899 +1596.705463 +1596.731870 +1596.746289 +1596.790411 +1596.801966 +1596.814287 +1596.826975 +1596.839296 +1596.892775 +1596.976891 +1597.003431 +1597.032436 +1597.067201 +1597.082019 +1597.104097 +1597.143757 +1597.171663 +1597.182252 +1597.209525 +1597.252549 +1597.256844 +1597.268333 +1597.281253 +1597.317783 +1597.318216 +1597.330570 +1597.369298 +1597.380054 +1597.389278 +1597.390843 +1597.391842 +1597.403531 +1597.477590 +1597.490644 +1597.529138 +1597.555112 +1597.603797 +1597.617583 +1597.631436 +1597.669198 +1597.686048 +1597.701100 +1597.713021 +1597.726974 +1597.763570 +1597.773494 +1597.782019 +1597.797303 +1597.807759 +1597.812555 +1597.824676 +1597.877756 +1597.879921 +1597.881286 +1597.904329 +1597.907992 +1597.922378 +1597.946088 +1597.959141 +1597.961739 +1597.973993 +1598.001998 +1598.074393 +1598.075325 +1598.095771 +1598.111555 +1598.123177 +1598.138029 +1598.172494 +1598.194273 +1598.199467 +1598.207226 +1598.225375 +1598.250949 +1598.252714 +1598.254246 +1598.280919 +1598.333067 +1598.363037 +1598.375724 +1598.379054 +1598.388711 +1598.416750 +1598.424609 +1598.432767 +1598.433633 +1598.434998 +1598.475258 +1598.504728 +1598.515884 +1598.531735 +1598.574525 +1598.586613 +1598.600333 +1598.600699 +1598.603563 +1598.616117 +1598.633200 +1598.659007 +1598.717149 +1598.732401 +1598.748884 +1598.755211 +1598.778954 +1598.791208 +1598.821545 +1598.836896 +1598.886380 +1598.887745 +1598.888011 +1598.903629 +1598.916350 +1598.917615 +1598.929270 +1598.947152 +1598.956510 +1598.961271 +1598.971694 +1599.008491 +1599.010089 +1599.011321 +1599.026440 +1599.031867 +1599.036296 +1599.048517 +1599.063036 +1599.076756 +1599.092340 +1599.118447 +1599.119879 +1599.156809 +1599.173226 +1599.176423 +1599.193672 +1599.202696 +1599.218814 +1599.327671 +1599.343056 +1599.373459 +1599.377921 +1599.392007 +1599.412153 +1599.432500 +1599.436895 +1599.438460 +1599.456309 +1599.500731 +1599.506859 +1599.508357 +1599.514384 +1599.517082 +1599.518281 +1599.524807 +1599.527471 +1599.547152 +1599.548617 +1599.574691 +1599.577521 +1599.592773 +1599.669862 +1599.687345 +1599.692140 +1599.717847 +1599.722576 +1599.738627 +1599.740658 +1599.743655 +1599.745786 +1599.746985 +1599.765766 +1599.768763 +1599.805593 +1599.810421 +1599.820878 +1599.822376 +1599.847618 +1599.865600 +1599.885546 +1599.886978 +1599.888210 +1599.901264 +1599.910555 +1599.913518 +1599.927171 +1599.946252 +1599.969163 +1599.984780 +1599.998566 +1600.015683 +1600.027271 +1600.029136 +1600.031267 +1600.043755 +1600.045186 +1600.045719 +1600.059472 +1600.060305 +1600.076921 +1600.079352 +1600.109389 +1600.112353 +1600.113318 +1600.121743 +1600.125173 +1600.126738 +1600.138327 +1600.152346 +1600.154077 +1600.167364 +1600.168363 +1600.169762 +1600.196169 +1600.197667 +1600.216382 +1600.227004 +1600.242589 +1600.244487 +1600.259372 +1600.272292 +1600.281450 +1600.286645 +1600.303594 +1600.325173 +1600.335562 +1600.367131 +1600.368729 +1600.387044 +1600.389009 +1600.395269 +1600.397500 +1600.410021 +1600.416348 +1600.436595 +1600.437361 +1600.445086 +1600.449448 +1600.461004 +1600.462935 +1600.464600 +1600.482082 +1600.495602 +1600.511453 +1600.543954 +1600.551613 +1600.552345 +1600.559172 +1600.588876 +1600.608156 +1600.611586 +1600.618846 +1600.622442 +1600.623341 +1600.658506 +1600.660404 +1600.669528 +1600.670028 +1600.672059 +1600.686644 +1600.697833 +1600.698732 +1600.717946 +1600.746917 +1600.760137 +1600.774656 +1600.779718 +1600.805792 +1600.833730 +1600.846518 +1600.857074 +1600.859704 +1600.861036 +1600.870194 +1600.883947 +1600.902994 +1600.911652 +1600.911919 +1600.914183 +1600.941423 +1600.943554 +1600.954510 +1600.955642 +1600.957340 +1600.961403 +1607.921669 +1608.031858 +1608.070153 +1608.196127 +1608.693263 +1608.714242 +1608.843846 +1609.032257 +1609.039583 +1609.708846 +1610.381973 +1611.342278 +1611.407613 +1611.421066 +1611.979307 +1612.122930 +1612.645607 +1612.762823 +1612.974344 +1612.976342 +1612.980771 +1613.168117 +1613.184634 +1613.197188 +1613.317867 +1613.409309 +1613.412805 +1613.416602 +1613.979338 +1614.894156 +1620.640271 +1621.078399 +1621.081529 +1621.177833 +1621.178299 +1621.279165 +1621.280730 +1621.378132 +1621.378432 +1621.378998 +1621.379997 +1621.381562 +1621.383327 +1621.478498 +1621.479198 +1621.579764 +1621.580130 +1621.586690 +1621.678931 +1621.680030 +1621.680563 +1621.879264 +1621.881362 +1621.882261 +1621.979131 +1622.080263 +1622.081262 +1622.179097 +1622.180762 +1622.279929 +1622.282693 +1622.378830 +1622.379230 +1622.479430 +1622.480529 +1622.679230 +1622.679629 +1622.681061 +1622.681661 +1622.879096 +1622.879296 +1622.978330 +1622.981094 +1622.981760 +1623.080761 +1623.080828 +1623.081028 +1623.281727 +1623.379396 +1623.478796 +1623.479462 +1623.480661 +1623.681693 +1623.781093 +1623.980028 +1623.981793 +1624.081426 +1624.084590 +1624.178929 +1624.181426 +1624.182425 +1624.280094 +1624.379494 +1624.478629 +1624.579394 +1624.579994 +1624.580726 +1624.582658 +1624.678429 +1624.679461 +1624.681659 +1624.682724 +1624.779094 +1624.880393 +1624.978595 +1624.982358 +1625.079394 +1625.179527 +1625.181025 +1625.181958 +1625.182790 +1625.279427 +1625.279960 +1625.280792 +1625.479027 +1625.580958 +1625.584155 +1625.679094 +1625.680059 +1625.780992 +1625.784754 +1625.980126 +1625.980492 +1625.980991 +1625.982057 +1625.987052 +1629.850218 +1629.953348 +1630.224310 +1631.063670 +1631.076591 +1631.133434 +1631.208459 +1631.215918 +1631.279854 +1631.343357 +1631.370430 +1631.383184 +1631.395571 +1631.397070 +1631.440893 +1631.442891 +1631.490476 +1631.567899 +1631.673260 +1631.677356 +1631.689344 +1631.726007 +1631.742457 +1631.861605 +1631.878388 +1631.905694 +1631.936463 +1631.951215 +1631.989210 +1631.989610 +1632.022311 +1632.038428 +1632.063902 +1632.117082 +1632.131335 +1632.180419 +1632.198801 +1632.220279 +1632.237961 +1632.264135 +1632.297369 +1632.298101 +1632.312986 +1632.313619 +1632.315284 +1632.340159 +1632.348384 +1632.362903 +1632.383682 +1632.401764 +1632.407225 +1632.424075 +1632.444621 +1632.444988 +1632.446686 +1632.461338 +1632.480785 +1632.495237 +1632.495670 +1632.507658 +1632.554678 +1632.571328 +1632.582184 +1632.625840 +1632.652513 +1632.664068 +1632.697801 +1632.710655 +1632.742490 +1632.757508 +1632.769629 +1632.771294 +1632.799732 +1632.815084 +1632.818347 +1632.826939 +1632.830868 +1632.853445 +1632.855577 +1632.867698 +1632.869063 +1632.879153 +1632.882250 +1632.907192 +1632.937861 +1632.939592 +1632.951614 +1632.951947 +1632.967265 +1632.968464 +1632.994637 +1632.995403 +1633.023175 +1633.023941 +1633.052413 +1633.091773 +1633.092173 +1633.117781 +1633.161903 +1633.164601 +1633.182649 +1633.190541 +1633.208190 +1633.214384 +1633.228170 +1633.240858 +1633.252979 +1633.266132 +1633.294038 +1633.310055 +1633.320611 +1633.324441 +1633.334797 +1633.335163 +1633.350181 +1633.362236 +1633.365866 +1633.367131 +1633.401364 +1633.404028 +1633.429868 +1633.443888 +1633.469962 +1633.494171 +1633.495170 +1633.508789 +1633.509256 +1633.523608 +1633.525906 +1633.551413 +1633.554011 +1633.572659 +1633.613451 +1633.616082 +1633.616815 +1633.626871 +1633.642655 +1633.644653 +1633.653977 +1633.670095 +1633.683548 +1633.685679 +1633.698233 +1633.715316 +1633.717314 +1633.717680 +1633.741423 +1633.811053 +1633.824473 +1633.847217 +1633.855875 +1633.858672 +1633.871060 +1633.877887 +1633.890074 +1633.897800 +1633.922775 +1633.945852 +1633.959472 +1633.960670 +1633.975389 +1633.975689 +1633.976421 +1633.991606 +1633.994170 +1633.997500 +1634.036161 +1634.067530 +1634.076421 +1634.081949 +1634.102928 +1634.117347 +1634.135862 +1634.191906 +1634.223141 +1634.224007 +1634.233497 +1634.234097 +1634.235429 +1634.253677 +1634.272292 +1634.275355 +1634.288942 +1634.297034 +1634.297533 +1634.330567 +1634.340257 +1634.340623 +1634.342788 +1634.355775 +1634.358406 +1634.384280 +1634.385878 +1634.387776 +1634.397300 +1634.398732 +1634.445019 +1634.462235 +1634.480583 +1634.499598 +1634.511419 +1634.525971 +1634.533797 +1634.542788 +1634.557140 +1634.559371 +1634.593037 +1634.607423 +1634.608888 +1634.623673 +1634.667929 +1634.673657 +1634.683114 +1634.684945 +1634.686677 +1634.697699 +1634.716647 +1634.718978 +1634.728735 +1634.730466 +1634.746317 +1634.756507 +1634.768861 +1634.769794 +1634.784379 +1634.786710 +1634.826337 +1634.845951 +1634.855874 +1634.856274 +1634.872358 +1634.884013 +1634.898765 +1634.928468 +1634.939291 +1634.957140 +1634.958705 +1634.961435 +1634.969660 +1634.989441 +1635.002761 +1635.017346 +1635.075355 +1635.095967 +1635.101095 +1635.120543 +1635.121009 +1635.121841 +1635.138425 +1635.139091 +1635.152877 +1635.160936 +1635.164299 +1635.187176 +1635.189807 +1635.205225 +1635.251012 +1635.251345 +1635.282447 +1635.283213 +1635.284678 +1635.299497 +1635.313916 +1635.349747 +1635.350945 +1635.373922 +1635.389240 +1635.430299 +1635.465331 +1635.489274 +1635.500096 +1635.505191 +1635.508288 +1635.533995 +1635.539090 +1635.568494 +1635.579650 +1635.590639 +1635.607588 +1635.611485 +1635.635427 +1635.635927 +1635.680016 +1635.685610 +1635.695467 +1635.700296 +1635.700695 +1635.710186 +1635.757771 +1635.773489 +1635.789373 +1635.807422 +1635.827002 +1635.835760 +1635.839356 +1635.852776 +1635.870625 +1635.886309 +1635.934295 +1635.935827 +1635.948447 +1635.954142 +1642.204185 +1642.363126 +1642.580209 +1642.637785 +1642.680975 +1642.699956 +1642.843379 +1643.180541 +1643.194794 +1643.207914 +1643.353002 +1643.671550 +1644.007280 +1644.480673 +1645.195957 +1645.423829 +1645.596856 +1645.976409 +1646.115070 +1646.125926 +1646.192526 +1646.978440 +1646.980304 +1647.106411 +1647.160391 +1647.164120 +1647.166684 +1647.977473 +1648.116600 +1648.170446 +1648.242874 +1648.756260 +1648.977139 +1648.978571 +1649.130052 +1649.176040 +1649.178337 +1649.190525 +1649.191724 +1649.389027 +1649.975406 +1649.979535 +1650.977337 +1651.123723 +1651.134213 +1651.191256 +1651.193221 +1651.286827 +1651.290623 +1651.727985 +1651.909404 +1651.944302 +1652.136410 +1652.482730 +1652.604108 +1652.748364 +1653.362216 +1653.889488 +1653.935076 +1654.013997 +1654.695681 +1654.808402 +1655.036440 +1655.038338 +1655.932243 +1655.979529 +1656.076765 +1656.077165 +1656.077631 +1656.177098 +1656.178963 +1656.179463 +1656.184391 +1656.277431 +1656.278397 +1656.279629 +1656.378330 +1656.378930 +1656.379429 +1656.379795 +1656.385756 +1656.478563 +1656.479695 +1656.480095 +1656.578497 +1656.578929 +1656.580062 +1656.580628 +1656.581027 +1656.677597 +1656.678430 +1656.680195 +1656.680694 +1656.681394 +1656.682293 +1656.777198 +1656.777930 +1656.781860 +1656.877730 +1656.880061 +1656.882592 +1656.885056 +1656.979995 +1656.982592 +1657.078429 +1657.078796 +1657.080527 +1657.081826 +1657.179195 +1657.277464 +1657.278562 +1657.278796 +1657.279262 +1657.280427 +1657.378729 +1657.381193 +1657.478929 +1657.480227 +1657.580327 +1657.680493 +1657.681126 +1657.778296 +1657.781293 +1657.781526 +1657.879328 +1657.880194 +1657.978562 +1657.979328 +1658.177529 +1658.180293 +1658.180593 +1658.182225 +1658.278795 +1658.279261 +1658.280426 +1658.282158 +1658.283090 +1658.379261 +1658.381292 +1658.386320 +1658.478028 +1658.478961 +1658.479394 +1658.480126 +1658.480626 +1658.482158 +1658.483590 +1658.581192 +1658.582657 +1658.678827 +1658.680526 +1658.680759 +1658.681158 +1658.683190 +1658.684222 +1658.780293 +1658.780892 +1658.782257 +1658.786020 +1658.877961 +1658.883156 +1658.978960 +1658.978994 +1658.980392 +1658.981458 +1659.080425 +1659.080892 +1659.179060 +1659.277795 +1659.278794 +1659.280991 +1659.377861 +1659.379426 +1659.381557 +1659.381924 +1659.478494 +1659.481957 +1659.678394 +1659.680358 +1659.681724 +1659.778893 +1659.780724 +1659.978693 +1659.979759 +1659.980258 +1659.981523 +1660.078693 +1660.079159 +1660.080891 +1660.081523 +1660.178227 +1660.181090 +1660.185486 +1660.279392 +1660.282955 +1660.379592 +1660.380790 +1660.480291 +1660.578359 +1660.779724 +1660.780557 +1660.877959 +1660.979624 +1660.980956 +1660.982155 +1665.888511 +1666.010289 +1666.020145 +1666.045986 +1666.124175 +1666.126372 +1666.178953 +1666.200465 +1666.218181 +1666.234564 +1666.236629 +1666.248350 +1666.275157 +1666.279020 +1666.366366 +1666.375756 +1666.391973 +1666.400698 +1666.403262 +1666.442623 +1666.456475 +1666.493272 +1666.528570 +1666.538860 +1666.567831 +1666.580518 +1666.596535 +1666.609789 +1666.621843 +1666.634764 +1666.683848 +1666.694704 +1666.695669 +1666.705959 +1666.707358 +1666.708989 +1666.718113 +1666.719579 +1666.735896 +1666.781883 +1666.795369 +1666.839459 +1666.863834 +1666.877088 +1666.892572 +1666.897334 +1666.906758 +1666.908356 +1666.923142 +1666.935196 +1666.948316 +1666.972858 +1666.982249 +1666.985246 +1667.013285 +1667.026871 +1667.047883 +1667.048749 +1667.061337 +1667.075522 +1667.076421 +1667.099865 +1667.128936 +1667.142955 +1667.153311 +1667.156375 +1667.165699 +1667.228869 +1667.255009 +1667.255409 +1667.256608 +1667.266531 +1667.297334 +1667.304193 +1667.324107 +1667.326072 +1667.341290 +1667.359405 +1667.392572 +1667.404260 +1667.405825 +1667.419478 +1667.429801 +1667.434996 +1667.443787 +1667.446684 +1667.497034 +1667.505359 +1667.511952 +1667.514716 +1667.520643 +1667.523507 +1667.537260 +1667.537893 +1667.549981 +1667.565166 +1667.578386 +1667.593471 +1667.650513 +1667.685712 +1667.708988 +1667.722774 +1667.750114 +1667.756441 +1667.765565 +1667.779651 +1667.780117 +1667.790906 +1667.807490 +1667.808056 +1667.813517 +1667.855641 +1667.866531 +1667.911785 +1667.938392 +1667.964266 +1668.010520 +1668.017879 +1668.022075 +1668.046217 +1668.090906 +1668.114715 +1668.118445 +1668.119844 +1668.132697 +1668.139491 +1668.140756 +1668.154043 +1668.156407 +1668.157006 +1668.170460 +1668.177952 +1668.182148 +1668.219411 +1668.219810 +1668.233363 +1668.235728 +1668.236627 +1668.248448 +1668.285445 +1668.290440 +1668.298798 +1668.311019 +1668.311419 +1668.328701 +1668.343753 +1668.350346 +1668.353044 +1668.365498 +1668.389307 +1668.435095 +1668.466130 +1668.487476 +1668.489840 +1668.502028 +1668.512884 +1668.541089 +1668.547083 +1668.567396 +1668.570326 +1668.599530 +1668.610319 +1668.616147 +1668.637892 +1668.641888 +1668.655507 +1668.656040 +1668.656673 +1668.665664 +1668.680882 +1668.707189 +1668.710353 +1668.721774 +1668.722607 +1668.737226 +1668.763066 +1668.790273 +1668.803160 +1668.817012 +1668.819610 +1668.821375 +1668.842420 +1668.860702 +1668.865597 +1668.886376 +1668.887509 +1668.912151 +1668.925304 +1668.926969 +1668.938591 +1668.953276 +1668.953875 +1668.971291 +1668.981614 +1668.992870 +1668.993935 +1669.007988 +1669.019743 +1669.020076 +1669.052277 +1669.079949 +1669.094268 +1669.110419 +1669.111251 +1669.122340 +1669.153576 +1669.172923 +1669.182247 +1669.183879 +1669.250945 +1669.252277 +1669.267395 +1669.267828 +1669.283446 +1669.294768 +1669.333462 +1669.334761 +1669.402460 +1669.405557 +1669.427002 +1669.452376 +1669.465896 +1669.494434 +1669.508986 +1669.538324 +1669.538956 +1669.542187 +1669.566928 +1669.568460 +1669.578683 +1669.579716 +1669.593935 +1669.595333 +1669.596732 +1669.598131 +1669.605223 +1669.608986 +1669.619343 +1669.625570 +1669.640355 +1669.644551 +1669.681347 +1669.712216 +1669.714814 +1669.729066 +1669.742353 +1669.765963 +1669.780282 +1669.794834 +1669.798597 +1669.825137 +1669.842319 +1669.843318 +1669.858204 +1669.872656 +1669.874121 +1669.883478 +1669.899296 +1669.900594 +1669.907488 +1669.913382 +1669.929133 +1669.947181 +1669.947914 +1669.989672 +1669.990038 +1669.990371 +1669.994700 +1670.006422 +1670.006821 +1670.020807 +1670.023938 +1670.051810 +1670.053242 +1670.056505 +1670.066895 +1670.070291 +1670.099662 +1670.104357 +1670.112782 +1670.125802 +1670.129732 +1670.167727 +1670.183378 +1670.183778 +1670.185076 +1670.198463 +1670.202892 +1670.228633 +1670.231929 +1670.233861 +1670.247580 +1670.290537 +1670.295699 +1670.309452 +1670.311383 +1670.335925 +1670.351809 +1670.353674 +1670.356738 +1670.357504 +1670.358236 +1670.367660 +1670.399229 +1670.399695 +1670.427667 +1670.429831 +1670.461666 +1670.501560 +1670.546481 +1670.548479 +1670.578083 +1670.585009 +1670.606921 +1670.608086 +1670.624503 +1670.626967 +1670.668359 +1670.681013 +1670.712249 +1670.714180 +1670.728133 +1670.740853 +1670.772422 +1670.774520 +1670.804423 +1670.805256 +1670.825335 +1670.835559 +1670.836824 +1670.849178 +1670.856671 +1670.912282 +1670.929365 +1670.929598 +1670.942418 +1670.957703 +1680.975409 +1681.134250 +1681.207609 +1684.981165 +1689.953688 +1689.967141 +1690.001707 +1691.077530 +1691.079061 +1691.082025 +1691.278329 +1691.279028 +1691.279494 +1691.279794 +1691.280293 +1691.280826 +1691.282891 +1691.385022 +1691.578761 +1691.579827 +1691.678894 +1691.684256 +1691.780126 +1691.880026 +1691.978328 +1691.979693 +1692.078761 +1692.081025 +1692.180193 +1692.279360 +1692.279859 +1692.280426 +1692.281624 +1692.281924 +1692.381591 +1692.481558 +1692.482024 +1692.487851 +1692.880858 +1692.979093 +1693.079892 +1693.081723 +1693.179526 +1693.280058 +1693.380058 +1693.381690 +1693.479758 +1693.480491 +1693.481756 +1693.579126 +1693.579525 +1693.680790 +1693.681889 +1693.781989 +1693.879758 +1693.881223 +1693.980291 +1694.080424 +1694.179491 +1694.179891 +1694.280290 +1694.280790 +1694.382122 +1694.482987 +1694.580523 +1694.880456 +1694.881788 +1694.984485 +1695.180289 +1695.180989 +1695.379423 +1695.481022 +1695.579956 +1695.680722 +1695.682420 +1695.779856 +1695.780589 +1695.782154 +1695.879490 +1695.981055 +1697.095472 +1698.460706 +1698.475990 +1698.496004 +1698.521079 +1698.571528 +1699.899199 +1700.866098 +1701.264532 +1701.474189 +1701.505691 +1701.533830 +1701.702194 +1701.715681 +1701.766430 +1701.987875 +1701.999064 +1702.004292 +1702.016113 +1702.100462 +1702.128135 +1702.133263 +1702.162966 +1702.186143 +1702.208321 +1702.209320 +1702.212151 +1702.234495 +1702.314215 +1702.338258 +1702.368661 +1702.420808 +1702.423173 +1702.454641 +1702.508587 +1702.534495 +1702.555074 +1702.608620 +1702.639390 +1702.657838 +1702.674288 +1702.706223 +1702.758470 +1702.758837 +1702.759236 +1702.810918 +1702.863499 +1702.881913 +1702.895300 +1702.932796 +1702.944884 +1702.971490 +1703.037591 +1703.064397 +1703.091204 +1703.156539 +1703.178550 +1703.193202 +1703.240488 +1703.286875 +1703.316345 +1703.328367 +1703.330098 +1703.361100 +1703.388040 +1703.447048 +1703.463997 +1703.474986 +1703.490271 +1703.503291 +1703.541753 +1703.544750 +1703.558070 +1703.588706 +1703.592436 +1703.615080 +1703.615579 +1703.649745 +1703.651876 +1703.676352 +1703.688673 +1703.729165 +1703.744383 +1703.747547 +1703.800161 +1703.852242 +1703.895532 +1703.896798 +1703.915346 +1703.941886 +1703.952475 +1703.952742 +1703.972322 +1704.027866 +1704.040121 +1704.084643 +1704.111416 +1704.129132 +1704.168093 +1704.168559 +1704.197463 +1704.198362 +1704.238955 +1704.239954 +1704.312781 +1704.328565 +1704.361133 +1704.385408 +1704.386740 +1704.405189 +1704.428632 +1704.478282 +1704.495199 +1704.495865 +1704.510250 +1704.512281 +1704.512681 +1704.524769 +1704.529165 +1704.565761 +1704.572022 +1704.584443 +1704.597463 +1704.601059 +1704.628831 +1704.632661 +1704.673154 +1704.697796 +1704.698595 +1704.699760 +1704.710250 +1704.710583 +1704.713314 +1704.727732 +1704.740786 +1704.743716 +1704.771522 +1704.774652 +1704.785641 +1704.786407 +1704.814512 +1704.817942 +1704.844316 +1704.860999 +1704.888438 +1704.889237 +1704.910949 +1704.928631 +1704.941685 +1704.969724 +1704.979847 +1704.981678 +1704.998761 +1704.999793 +1705.015777 +1705.029331 +1705.030596 +1705.042051 +1705.056270 +1705.058268 +1705.060000 +1705.071289 +1705.083976 +1705.087839 +1705.097629 +1705.098661 +1705.099960 +1705.113113 +1705.122471 +1705.124502 +1705.125667 +1705.135225 +1705.137422 +1705.145215 +1705.152574 +1705.166293 +1705.166693 +1705.172487 +1705.180979 +1705.241785 +1705.243849 +1705.282843 +1705.283376 +1705.287439 +1705.297296 +1705.300959 +1705.332960 +1705.345614 +1705.358168 +1705.375251 +1705.404655 +1705.436190 +1705.438488 +1705.444848 +1705.466060 +1705.482444 +1705.507086 +1705.518508 +1705.522870 +1705.525967 +1705.563929 +1705.594531 +1705.606120 +1705.608651 +1705.635890 +1705.637788 +1705.651508 +1705.662963 +1705.663462 +1705.687538 +1705.702990 +1705.707019 +1705.751508 +1705.751874 +1705.763729 +1705.771521 +1705.796596 +1705.826599 +1705.842483 +1705.847412 +1705.871920 +1705.898660 +1705.914744 +1705.916942 +1705.928464 +1705.931527 +1705.932127 +1705.934791 +1705.959599 +1707.843280 +1707.843480 +1707.845112 +1707.931359 +1708.970585 +1708.978677 +1709.004252 +1709.018437 +1709.059463 +1709.080209 +1710.513774 +1710.550704 +1710.566854 +1710.591430 +1711.451469 +1711.457929 +1711.521399 +1711.531389 +1711.555831 +1711.571049 +1711.682437 +1712.513106 +1715.437778 +1716.540608 +1718.114399 +1718.157889 +1718.173873 +1718.248964 +1718.249431 +1718.288625 +1718.341006 +1718.366014 +1719.395750 +1720.765512 +1720.787890 +1720.812498 +1720.825885 +1724.586387 +1724.823916 +1726.078927 +1726.080159 +1726.180125 +1726.181524 +1726.281457 +1726.285153 +1726.378227 +1726.378693 +1726.381657 +1726.478793 +1726.481823 +1726.485686 +1726.580591 +1726.581856 +1726.677727 +1726.779159 +1726.781623 +1726.782189 +1726.879159 +1726.881523 +1726.982622 +1727.080058 +1727.081856 +1727.082555 +1727.178792 +1727.179691 +1727.182056 +1727.279059 +1727.279558 +1727.479591 +1727.580723 +1727.581223 +1727.582022 +1727.582388 +1727.680657 +1727.681289 +1727.780157 +1727.782388 +1727.782954 +1727.786750 +1727.880357 +1727.881189 +1727.982321 +1728.080756 +1728.179224 +1728.181522 +1728.378724 +1728.381055 +1728.480056 +1728.580156 +1728.582421 +1728.682687 +1728.779057 +1728.881954 +1728.980322 +1729.080988 +1729.182154 +1729.186582 +1729.383019 +1729.580455 +1729.580821 +1729.781354 +1729.980121 +1729.980454 +1729.984384 +1730.079355 +1730.079755 +1730.081387 +1730.082253 +1730.181553 +1730.182086 +1730.279588 +1730.280454 +1730.487014 +1730.581519 +1730.583584 +1730.681186 +1730.681986 +1730.781586 +1730.783151 +1730.878822 +1730.879488 +1730.880653 +1730.884849 +1730.982585 +1732.403029 +1732.547851 +1733.095769 +1733.826305 +1734.373857 +1734.374123 +1734.771792 +1735.107822 +1736.522606 +1736.574754 +1736.648047 +1736.681647 +1736.704557 +1736.799229 +1736.855373 +1736.867294 +1736.881213 +1736.915879 +1736.917411 +1736.967227 +1736.990537 +1737.022472 +1737.088539 +1737.179448 +1737.179648 +1737.183045 +1737.193068 +1737.194067 +1737.285242 +1737.294100 +1737.346947 +1737.356038 +1737.384976 +1737.393334 +1737.406921 +1737.570324 +1737.598429 +1737.642784 +1737.654939 +1737.691469 +1737.762298 +1737.789238 +1737.843650 +1737.870790 +1737.894999 +1737.905188 +1737.920107 +1737.980380 +1738.008385 +1738.045248 +1738.120706 +1738.159634 +1738.172155 +1738.196264 +1738.197962 +1738.227166 +1738.241086 +1738.269490 +1738.282045 +1738.318741 +1738.321838 +1738.363829 +1738.367759 +1738.389504 +1738.403023 +1738.418908 +1738.472720 +1738.498861 +1738.513779 +1738.523270 +1738.524469 +1738.537789 +1738.539054 +1738.562098 +1738.576783 +1738.600959 +1738.639254 +1738.656303 +1738.656703 +1738.669823 +1738.698594 +1738.712747 +1738.740785 +1738.744249 +1738.776783 +1738.780146 +1738.827166 +1738.848011 +1738.853772 +1738.869057 +1738.883443 +1738.885807 +1738.915477 +1738.924102 +1738.939120 +1738.942483 +1738.979446 +1738.993799 +1738.994265 +1738.996962 +1739.009683 +1739.021371 +1739.035757 +1739.038288 +1739.061564 +1739.089669 +1739.121138 +1739.135324 +1739.148943 +1739.150908 +1739.151940 +1739.166293 +1739.170322 +1739.226965 +1739.230129 +1739.248044 +1739.286139 +1739.288104 +1739.302290 +1739.336656 +1739.341251 +1739.343615 +1739.356636 +1739.374085 +1739.386439 +1739.387538 +1739.399826 +1739.424534 +1739.424834 +1739.438820 +1739.439619 +1739.454538 +1739.456502 +1739.465460 +1739.481178 +1739.494731 +1739.522669 +1739.542017 +1739.571387 +1739.585307 +1739.586106 +1739.586872 +1739.588270 +1739.602390 +1739.630162 +1739.632926 +1739.658866 +1739.673052 +1739.675883 +1739.690734 +1739.721770 +1739.724101 +1739.734890 +1739.735590 +1739.781810 +1739.795729 +1739.808816 +1739.866292 +1739.870821 +1739.872652 +1739.913212 +1739.927198 +1739.944813 +1739.961730 +1739.963595 +1739.974484 +1739.977880 +1739.990834 +1739.992899 +1740.003222 +1740.037321 +1740.041084 +1740.050974 +1740.063661 +1740.064161 +1740.071487 +1740.086039 +1740.092432 +1740.101723 +1740.104021 +1740.130028 +1740.139852 +1740.142782 +1740.169222 +1740.170754 +1740.196328 +1740.197294 +1740.202855 +1740.209449 +1740.239818 +1740.241616 +1740.258100 +1740.268822 +1740.278146 +1740.279945 +1740.295296 +1740.317474 +1740.341749 +1740.366991 +1740.383707 +1740.384673 +1740.410914 +1740.413444 +1740.427464 +1740.433291 +1740.444680 +1740.456734 +1740.485073 +1740.486671 +1740.488969 +1740.500657 +1740.501756 +1740.536321 +1740.538885 +1740.545612 +1740.560764 +1740.564793 +1740.592532 +1740.614643 +1740.624333 +1740.642548 +1740.655669 +1740.670121 +1740.671320 +1740.685938 +1740.711479 +1740.749108 +1740.750773 +1740.766225 +1740.769188 +1740.778546 +1740.801489 +1740.805718 +1740.817207 +1740.862528 +1740.863227 +1740.863660 +1740.866224 +1740.881209 +1740.886071 +1740.894763 +1740.909714 +1740.915841 +1740.925965 +1740.927163 +1740.930627 +1740.941316 +1740.956334 +1740.959897 +1741.659730 +1741.662760 +1743.450671 +1743.535120 +1744.814539 +1744.832887 +1744.857829 +1746.158227 +1747.397820 +1749.406043 +1749.440408 +1749.517431 +1749.519363 +1749.558490 +1750.959355 +1750.975638 +1752.138308 +1753.664147 +1753.700644 +1753.702442 +1753.709269 +1753.724820 +1753.944100 +1753.944400 +1753.954190 +1754.876167 +1754.964579 +1755.120889 +1755.135607 +1755.195980 +1755.216826 +1755.225850 +1755.306736 +1755.332344 +1755.398977 +1755.976133 +1756.888353 +1756.899742 +1757.371136 +1757.375132 +1757.442199 +1758.074499 +1758.099840 +1758.199008 +1758.201039 +1758.211295 +1758.221352 +1758.236936 +1758.250489 +1758.297676 +1758.340932 +1758.341965 +1758.346960 +1758.371535 +1758.371835 +1758.386853 +1758.408132 +1758.422917 +1758.467039 +1759.026446 +1759.094145 +1759.114591 +1759.136902 +1759.187352 +1759.240765 +1759.253552 +1759.277528 +1759.345160 +1760.408263 +1760.977293 +1761.079990 +1761.080423 +1761.081256 +1761.280390 +1761.281722 +1761.286650 +1761.379890 +1761.382554 +1761.478059 +1761.479324 +1761.481355 +1761.583287 +1761.680456 +1761.777925 +1761.779657 +1761.780223 +1761.781288 +1761.782620 +1761.879790 +1761.880289 +1761.980589 +1761.981088 +1761.981621 +1761.985651 +1762.081222 +1762.082887 +1762.087049 +1762.180489 +1762.184252 +1762.279123 +1762.280822 +1762.284418 +1762.379290 +1762.479823 +1762.480122 +1762.480522 +1762.482087 +1762.578923 +1762.581421 +1762.782653 +1762.880288 +1762.882153 +1762.982020 +1762.983685 +1763.080721 +1763.081254 +1763.379089 +1763.385982 +1763.480687 +1763.481786 +1763.482785 +1763.580787 +1763.681287 +1763.782552 +1763.976924 +1764.280587 +1764.281253 +1764.381552 +1764.382052 +1764.482485 +1764.581186 +1764.682551 +1764.878655 +1764.883383 +1764.980486 +1764.982484 +1765.080819 +1765.081385 +1765.182417 +1765.183017 +1765.185781 +1765.280719 +1765.281551 +1765.283083 +1765.482217 +1765.482550 +1765.583083 +1765.879952 +1765.983815 +1767.759937 +1770.415546 +1771.366394 +1771.436257 +1771.528165 +1771.572920 +1771.574585 +1771.656104 +1771.725667 +1771.895098 +1771.961298 +1771.962664 +1772.003023 +1772.091468 +1772.119973 +1772.125434 +1772.146579 +1772.159167 +1772.187205 +1772.208018 +1772.231761 +1772.246646 +1772.284208 +1772.297195 +1772.325600 +1772.355670 +1772.431960 +1772.433892 +1772.524834 +1772.554571 +1772.567725 +1772.568124 +1772.607518 +1772.610215 +1772.620039 +1772.646912 +1772.648111 +1772.669956 +1772.670688 +1772.685906 +1772.714078 +1772.748610 +1772.749210 +1772.760432 +1772.807951 +1772.840285 +1772.930994 +1772.931327 +1772.992066 +1773.004754 +1773.022070 +1773.049009 +1773.094730 +1773.105886 +1773.110182 +1773.155470 +1773.197761 +1773.213378 +1773.241017 +1773.241717 +1773.254570 +1773.281843 +1773.312945 +1773.344214 +1773.358033 +1773.358600 +1773.376815 +1773.434557 +1773.443814 +1773.444780 +1773.461830 +1773.513211 +1773.525266 +1773.554970 +1773.567224 +1773.596395 +1773.615676 +1773.616874 +1773.617574 +1773.629029 +1773.629828 +1773.644114 +1773.644713 +1773.657767 +1773.671353 +1773.683408 +1773.698393 +1773.738619 +1773.753504 +1773.767657 +1773.799125 +1773.810847 +1773.811513 +1773.824666 +1773.854670 +1773.867124 +1773.878512 +1773.907816 +1773.908016 +1773.977946 +1773.987736 +1774.014410 +1774.024067 +1774.067856 +1774.083507 +1774.099291 +1774.111413 +1774.111812 +1774.125132 +1774.141915 +1774.169388 +1774.185905 +1774.197826 +1774.257367 +1774.294063 +1774.302754 +1774.307350 +1774.311113 +1774.317640 +1774.320270 +1774.325765 +1774.332225 +1774.333723 +1774.335721 +1774.349408 +1774.350373 +1774.364493 +1774.382375 +1774.391166 +1774.405185 +1774.405751 +1774.436953 +1774.457167 +1774.475815 +1774.485005 +1774.485438 +1774.497693 +1774.498625 +1774.514443 +1774.528195 +1774.541682 +1774.547476 +1774.555302 +1774.557699 +1774.583207 +1774.583906 +1774.598359 +1774.612611 +1774.630993 +1774.650906 +1774.660763 +1774.664459 +1774.672418 +1774.673783 +1774.674349 +1774.712211 +1774.719571 +1774.723300 +1774.727962 +1774.733956 +1774.739018 +1774.749241 +1774.750573 +1774.756867 +1774.780809 +1774.781409 +1774.809947 +1774.825431 +1774.826364 +1774.854669 +1774.867689 +1774.870786 +1774.873683 +1774.887969 +1774.921036 +1774.942314 +1774.945444 +1774.947975 +1774.958098 +1774.959097 +1774.961362 +1774.976380 +1774.986970 +1774.989700 +1774.994529 +1775.016607 +1775.034922 +1775.037319 +1775.050506 +1775.081641 +1775.083473 +1775.114975 +1775.121568 +1775.129061 +1775.145977 +1775.159597 +1775.161362 +1775.176879 +1775.213876 +1775.233856 +1775.240815 +1775.247942 +1775.261128 +1775.261761 +1775.264392 +1775.266123 +1775.274448 +1775.286803 +1775.288867 +1775.302687 +1775.308981 +1775.323766 +1775.330659 +1775.353303 +1775.360362 +1775.360762 +1775.372184 +1775.377112 +1775.386170 +1775.389999 +1775.422633 +1775.435188 +1775.439850 +1775.450872 +1775.451438 +1775.452204 +1775.494395 +1775.496526 +1775.497126 +1775.499157 +1775.513143 +1775.537419 +1775.539583 +1775.552570 +1775.560729 +1775.581907 +1775.593163 +1775.596826 +1775.607349 +1775.608880 +1775.609580 +1775.611345 +1775.641115 +1775.669453 +1775.674748 +1775.675214 +1775.691398 +1775.705284 +1775.731591 +1775.737618 +1775.763459 +1775.764325 +1775.765424 +1775.778777 +1775.808747 +1775.816040 +1775.825830 +1775.844012 +1775.846709 +1775.847308 +1775.858131 +1775.861161 +1775.861461 +1775.880442 +1775.894328 +1775.905117 +1775.910245 +1775.913775 +1775.925463 +1775.954767 +1775.956299 +1775.962926 +1775.965357 +1775.970918 +1777.970883 +1777.971082 +1779.389063 +1779.389829 +1779.415537 +1779.738280 +1781.205312 +1781.266684 +1781.322095 +1781.336447 +1781.392358 +1781.452131 +1781.596953 +1781.611438 +1781.613603 +1781.648335 +1781.657859 +1781.669081 +1781.673610 +1781.677039 +1781.753396 +1781.844072 +1781.883000 +1781.961588 +1782.976838 +1782.988294 +1783.029286 +1783.059256 +1783.088959 +1783.160521 +1783.211970 +1783.331716 +1783.343238 +1783.369379 +1784.313534 +1784.406807 +1784.528485 +1784.623956 +1785.213300 +1785.278301 +1785.609237 +1785.674238 +1785.675137 +1786.975336 +1787.124653 +1788.309001 +1788.385891 +1788.414928 +1788.488122 +1788.521222 +1788.981827 +1789.665043 +1789.717291 +1789.809232 +1789.823851 +1789.875566 +1790.501340 +1790.983024 +1791.551821 +1791.562311 +1792.838001 +1792.860911 +1792.863608 +1795.968833 +1796.078990 +1796.081487 +1796.279789 +1796.279955 +1796.281121 +1796.282086 +1796.282419 +1796.381953 +1796.390744 +1796.679955 +1796.681020 +1796.681254 +1796.684484 +1796.779755 +1796.781087 +1796.782219 +1796.882086 +1796.884850 +1797.080387 +1797.181486 +1797.186881 +1797.282285 +1797.284150 +1797.379987 +1797.383484 +1797.480853 +1797.481219 +1797.580620 +1797.606994 +1797.780586 +1797.781252 +1797.781419 +1797.781652 +1797.879487 +1797.882285 +1797.882817 +1797.982318 +1798.079953 +1798.080420 +1798.081552 +1798.081818 +1798.180320 +1798.180753 +1798.182218 +1798.183084 +1798.282551 +1798.381418 +1798.480652 +1798.481318 +1798.580652 +1798.581618 +1798.582717 +1798.681085 +1798.780885 +1798.882284 +1798.979819 +1798.980485 +1799.181551 +1799.188111 +1799.280818 +1799.281584 +1799.382083 +1799.481251 +1799.882349 +1799.982549 +1800.080151 +1800.180085 +1800.180850 +1800.282515 +1800.288076 +1800.380650 +1800.381017 +1800.382382 +1800.383747 +1800.387077 +1800.387777 +1800.480750 +1800.482682 +1800.583314 +1800.681316 +1800.880184 +1800.980483 +1800.982581 +1801.561002 +1802.542353 +1802.555740 +1802.634261 +1802.687708 +1803.953774 +1804.034460 +1804.310150 +1804.339654 +1806.558400 +1806.572452 +1806.697094 +1806.784041 +1806.797427 +1806.828696 +1806.886138 +1806.887903 +1806.890334 +1806.971420 +1806.985872 +1807.102822 +1807.168955 +1807.200291 +1807.283308 +1807.284540 +1807.366990 +1807.406318 +1807.438918 +1807.451572 +1807.494729 +1807.507117 +1807.565891 +1807.579478 +1807.691366 +1807.702688 +1807.742082 +1807.756501 +1807.780110 +1807.872951 +1807.908315 +1807.961129 +1807.992431 +1808.004186 +1808.005418 +1808.069054 +1808.092631 +1808.103686 +1808.104119 +1808.105718 +1808.142381 +1808.142880 +1808.143480 +1808.187336 +1808.233456 +1808.262960 +1808.266923 +1808.276214 +1808.290599 +1808.346843 +1808.361095 +1808.377879 +1808.422867 +1808.436853 +1808.463926 +1808.487269 +1808.489034 +1808.501255 +1808.514475 +1808.515674 +1808.516673 +1808.557998 +1808.568787 +1808.570952 +1808.603419 +1808.607715 +1808.608947 +1808.622667 +1808.675481 +1808.718471 +1808.745910 +1808.774448 +1808.788567 +1808.802787 +1808.818804 +1808.820669 +1808.855867 +1808.885404 +1808.887102 +1808.887369 +1808.928927 +1808.929759 +1808.942613 +1808.945577 +1808.959363 +1809.017139 +1809.047841 +1809.048907 +1809.094694 +1809.095893 +1809.097159 +1809.109080 +1809.135820 +1809.200289 +1809.210245 +1809.211111 +1809.212710 +1809.224065 +1809.224931 +1809.225430 +1809.241381 +1809.261794 +1809.263892 +1809.266289 +1809.279210 +1809.281241 +1809.291298 +1809.308514 +1809.326462 +1809.337385 +1809.353935 +1809.372050 +1809.382107 +1809.382706 +1809.409513 +1809.431291 +1809.444311 +1809.447108 +1809.460795 +1809.461993 +1809.470019 +1809.494161 +1809.506649 +1809.508713 +1809.510478 +1809.511577 +1809.524497 +1809.572882 +1809.574914 +1809.575213 +1809.586003 +1809.588300 +1809.602253 +1809.603119 +1809.644011 +1809.644377 +1809.657598 +1809.673348 +1809.674581 +1809.688966 +1809.694327 +1809.708014 +1809.724730 +1809.744810 +1809.745576 +1809.749572 +1809.760095 +1809.760761 +1809.761027 +1809.773348 +1809.776412 +1809.789299 +1809.791830 +1809.792629 +1809.821733 +1809.828360 +1809.944510 +1809.946142 +1809.985303 +1809.986435 +1809.988799 +1810.004450 +1810.014940 +1810.031257 +1810.046209 +1810.048073 +1810.063691 +1810.067654 +1810.077910 +1810.103085 +1810.120035 +1810.120501 +1810.131723 +1810.134420 +1810.152802 +1810.165023 +1810.165656 +1810.171383 +1810.180874 +1810.190497 +1810.200254 +1810.216039 +1810.218336 +1810.229492 +1810.232922 +1810.265922 +1810.319602 +1810.320467 +1810.331490 +1810.334520 +1810.335552 +1810.340880 +1810.345709 +1810.351103 +1810.358929 +1810.363225 +1810.363691 +1810.373548 +1810.374946 +1810.377643 +1810.387600 +1810.389398 +1810.402452 +1810.405382 +1810.434753 +1810.438183 +1810.448073 +1810.450804 +1810.454733 +1810.462126 +1810.498323 +1810.510644 +1810.512076 +1810.515705 +1810.522632 +1810.524696 +1810.525928 +1810.526228 +1810.538083 +1810.538449 +1810.540147 +1810.552302 +1810.564057 +1810.568086 +1810.570217 +1810.575412 +1810.598456 +1810.602119 +1810.633621 +1810.648039 +1810.681040 +1810.705016 +1810.738083 +1810.745375 +1810.747174 +1810.760960 +1810.762658 +1810.766088 +1810.780740 +1810.792661 +1810.797889 +1810.798456 +1810.809012 +1810.809278 +1810.810444 +1810.817337 +1810.823830 +1810.827593 +1810.828625 +1810.845941 +1810.861259 +1810.868386 +1810.898689 +1810.901286 +1810.912342 +1810.926960 +1810.943311 +1810.943710 +1810.945275 +1810.945808 +1810.963490 +1810.966487 +1813.480238 +1813.579405 +1814.709973 +1814.727156 +1816.643871 +1817.333514 +1817.416731 +1817.509871 +1818.644002 +1818.712867 +1819.457321 +1819.516928 +1819.558220 +1820.983394 +1821.633010 +1821.650626 +1821.924918 +1821.978897 +1821.979863 +1822.878730 +1822.881494 +1823.256485 +1824.226747 +1825.455684 +1825.509663 +1825.544395 +1825.570735 +1825.642330 +1825.729543 +1825.775797 +1825.776296 +1825.830076 +1825.862943 +1826.539599 +1826.548357 +1826.584787 +1826.588583 +1826.602402 +1826.634903 +1826.690681 +1826.794477 +1826.802169 +1826.802602 +1826.832539 +1826.868170 +1826.871400 +1826.922882 +1828.115455 +1828.116220 +1828.130872 +1828.131272 +1828.309527 +1828.310093 +1828.312158 +1828.333570 +1828.378624 +1828.402933 +1829.087482 +1829.153848 +1829.728040 +1829.763871 +1830.405396 +1830.475059 +1830.491643 +1830.528939 +1830.563304 +1830.686980 +1830.731436 +1830.743923 +1830.771163 +1830.793873 +1830.816018 +1831.079021 +1831.079621 +1831.177723 +1831.178988 +1831.179487 +1831.181219 +1831.279654 +1831.279820 +1831.280153 +1831.280919 +1831.379521 +1831.382051 +1831.385182 +1831.481485 +1831.482484 +1831.483250 +1831.580320 +1831.580653 +1831.582118 +1831.584948 +1831.680353 +1831.682251 +1831.779387 +1831.782184 +1831.879254 +1831.880619 +1831.881418 +1832.179753 +1832.279287 +1832.280818 +1832.377988 +1832.381551 +1832.382150 +1832.387245 +1832.580418 +1832.580818 +1832.582183 +1832.680119 +1832.680984 +1832.687944 +1832.779752 +1832.781151 +1832.783648 +1832.879919 +1832.884114 +1833.079219 +1833.080052 +1833.084647 +1833.280085 +1833.282715 +1833.479185 +1833.479385 +1833.480850 +1833.481283 +1833.481583 +1833.483714 +1833.582116 +1833.778219 +1833.880617 +1833.883780 +1833.980617 +1833.981150 +1833.981616 +1834.080583 +1834.081283 +1834.181716 +1834.281582 +1834.282048 +1834.283414 +1834.381782 +1834.385745 +1834.386710 +1834.480250 +1834.480750 +1834.484879 +1834.581515 +1834.582448 +1834.780117 +1834.780716 +1834.880250 +1834.881582 +1834.882381 +1834.980882 +1834.982248 +1835.080649 +1835.086144 +1835.180582 +1835.180915 +1835.185677 +1835.277652 +1835.283546 +1835.381182 +1835.482846 +1835.579716 +1835.580415 +1835.581914 +1835.680149 +1835.680615 +1835.682646 +1835.781081 +1835.787075 +1835.788108 +1835.880049 +1835.881747 +1835.885410 +1835.899030 +1835.902426 +1835.981014 +1836.326136 +1836.362866 +1836.376785 +1836.417478 +1836.965995 +1837.039788 +1837.046848 +1837.062465 +1837.083478 +1837.200527 +1838.050210 +1838.080413 +1839.398027 +1839.438753 +1839.485673 +1839.551973 +1839.635523 +1839.701657 +1840.771086 +1840.794330 +1840.976547 +1840.983607 +1841.109747 +1841.493197 +1841.652704 +1841.688368 +1841.741648 +1841.755534 +1841.846476 +1841.888401 +1841.889467 +1841.951871 +1842.019870 +1842.023000 +1842.036486 +1842.063925 +1842.123799 +1842.177678 +1842.247142 +1842.327062 +1842.343379 +1842.427462 +1842.452004 +1842.454035 +1842.480808 +1842.554601 +1842.579742 +1842.591897 +1842.665190 +1842.717172 +1842.749239 +1842.762826 +1842.776812 +1842.791464 +1842.807115 +1842.821267 +1842.892130 +1842.905716 +1842.922699 +1842.939482 +1842.994394 +1843.119535 +1843.135286 +1843.147840 +1843.172482 +1843.174114 +1843.186235 +1843.204117 +1843.212343 +1843.226062 +1843.226595 +1843.227228 +1843.244044 +1843.264457 +1843.265656 +1843.279742 +1843.322699 +1843.333288 +1843.350338 +1843.416205 +1843.417138 +1843.418370 +1843.443678 +1843.461360 +1843.469652 +1843.486834 +1843.496458 +1843.524597 +1843.543111 +1843.568053 +1843.581806 +1843.582872 +1843.593494 +1843.618070 +1843.632489 +1843.692862 +1843.693461 +1843.696858 +1843.733987 +1843.743011 +1843.773314 +1843.783704 +1843.798989 +1843.810910 +1843.812542 +1843.813707 +1843.823897 +1843.825029 +1843.884736 +1843.885136 +1843.901286 +1843.926394 +1843.943577 +1843.961026 +1843.991796 +1843.995159 +1844.027926 +1844.042212 +1844.072548 +1844.089831 +1844.103950 +1844.105149 +1844.121965 +1844.122598 +1844.135785 +1844.161592 +1844.217603 +1844.240580 +1844.257163 +1844.270350 +1844.287833 +1844.290996 +1844.327393 +1844.329491 +1844.329891 +1844.339614 +1844.341046 +1844.357563 +1844.357763 +1844.359361 +1844.372215 +1844.373214 +1844.374879 +1844.387833 +1844.388598 +1844.393527 +1844.419667 +1844.421799 +1844.432887 +1844.447373 +1844.463990 +1844.468885 +1844.476311 +1844.478941 +1844.493194 +1844.495392 +1844.504982 +1844.523996 +1844.537150 +1844.539381 +1844.540280 +1844.552268 +1844.554832 +1844.567752 +1844.575645 +1844.577543 +1844.584835 +1844.631955 +1844.679740 +1844.690097 +1844.724662 +1844.750803 +1844.752201 +1844.761225 +1844.768318 +1844.781072 +1844.782937 +1844.783736 +1844.784569 +1844.802018 +1844.803117 +1844.814372 +1844.829124 +1844.837982 +1844.861159 +1844.873113 +1844.888265 +1844.892094 +1844.907412 +1844.917536 +1844.934585 +1844.936084 +1844.936483 +1844.955031 +1844.961059 +1844.981005 +1844.986467 +1844.998854 +1845.021432 +1845.023663 +1845.025727 +1845.041545 +1845.061725 +1845.065987 +1845.066487 +1845.077209 +1845.079041 +1845.090429 +1845.091262 +1845.094225 +1845.094592 +1845.096090 +1845.123296 +1845.128558 +1845.139014 +1845.140812 +1845.141545 +1845.144508 +1845.158028 +1845.187632 +1845.200652 +1845.231721 +1845.235917 +1845.242177 +1845.243909 +1845.263290 +1845.293493 +1845.297522 +1845.306813 +1845.307645 +1845.308411 +1845.321531 +1845.338481 +1845.354931 +1845.357096 +1845.360426 +1845.370116 +1845.370849 +1845.385001 +1845.385600 +1845.389996 +1845.436350 +1845.444974 +1845.446273 +1845.453433 +1845.491761 +1845.493592 +1845.495224 +1845.505081 +1845.537981 +1845.558994 +1845.569416 +1845.570515 +1845.571747 +1845.587698 +1845.588797 +1845.605747 +1845.633286 +1845.643709 +1845.645007 +1845.661924 +1845.675843 +1845.697488 +1845.703049 +1845.716736 +1845.746972 +1845.767651 +1845.780039 +1845.780505 +1845.811174 +1845.812107 +1845.819000 +1845.828857 +1845.829689 +1845.837781 +1845.843475 +1845.844341 +1845.845773 +1845.860758 +1845.871847 +1845.872313 +1845.894424 +1845.903316 +1845.935750 +1845.937248 +1845.968284 +1851.103410 +1854.552658 +1854.597379 +1855.461981 +1855.462147 +1855.485091 +1855.492483 +1855.493849 +1856.430578 +1857.183724 +1857.228912 +1857.274600 +1857.293514 +1857.346894 +1857.347160 +1857.348792 +1857.415525 +1857.781093 +1858.974398 +1859.145760 +1859.198274 +1859.274531 +1860.698539 +1860.711726 +1860.780623 +1860.842561 +1860.843094 +1862.270266 +1862.298337 +1862.302300 +1862.406429 +1862.411557 +1862.424178 +1862.542593 +1864.824975 +1864.882351 +1864.893806 +1864.907692 +1864.934798 +1864.953280 +1866.073592 +1866.075223 +1866.077854 +1866.081151 +1866.179186 +1866.278786 +1866.281117 +1866.378720 +1866.379619 +1866.381284 +1866.479019 +1866.479952 +1866.480484 +1866.579352 +1866.580418 +1866.680318 +1866.682083 +1866.781783 +1866.782349 +1866.786145 +1866.880984 +1866.881450 +1866.882016 +1867.181350 +1867.186744 +1867.281816 +1867.379651 +1867.380817 +1867.579618 +1867.580750 +1867.581116 +1867.581582 +1867.679518 +1867.680783 +1867.681149 +1867.779418 +1867.780949 +1867.782648 +1867.979251 +1867.983846 +1868.081881 +1868.180416 +1868.280549 +1868.378751 +1868.380882 +1868.381415 +1868.478984 +1868.479950 +1868.579716 +1868.580449 +1868.580815 +1868.587309 +1868.679850 +1868.683446 +1868.781315 +1868.882080 +1868.983779 +1869.080149 +1869.180482 +1869.282846 +1869.380082 +1869.380615 +1869.381014 +1869.481947 +1869.579815 +1869.580914 +1869.581314 +1869.581913 +1869.679382 +1869.779316 +1869.879382 +1869.884910 +1869.986675 +1870.080181 +1870.081080 +1870.081247 +1870.083911 +1870.180714 +1870.279515 +1870.379748 +1870.383145 +1870.386808 +1870.480647 +1870.482512 +1870.579981 +1870.580947 +1870.581846 +1870.582312 +1870.582945 +1870.679881 +1870.681146 +1870.683610 +1870.780747 +1870.783044 +1870.783710 +1870.788073 +1870.879381 +1870.879947 +1870.882312 +1870.980946 +1870.981246 +1870.986774 +1872.439053 +1872.461764 +1873.968789 +1874.036721 +1874.049941 +1874.262561 +1874.302921 +1875.234255 +1876.004950 +1876.052936 +1876.075480 +1876.164724 +1876.176679 +1876.257631 +1876.264091 +1876.285836 +1876.299289 +1876.308380 +1876.344144 +1876.355566 +1876.370951 +1876.404184 +1876.417671 +1876.451970 +1876.466255 +1876.488733 +1876.541580 +1876.542679 +1876.577477 +1876.579009 +1876.589166 +1876.600654 +1876.624996 +1876.669352 +1876.696092 +1876.746042 +1876.756964 +1876.757963 +1876.758330 +1876.772182 +1876.774314 +1876.807880 +1876.813708 +1876.837084 +1876.849938 +1876.864224 +1876.875446 +1876.877877 +1876.886068 +1876.898023 +1876.899855 +1876.900054 +1876.941313 +1876.952735 +1876.954999 +1876.991496 +1877.001220 +1877.003251 +1877.017770 +1877.032389 +1877.055998 +1877.081972 +1877.097557 +1877.098023 +1877.110011 +1877.141779 +1877.152502 +1877.170018 +1877.182738 +1877.190863 +1877.197590 +1877.197890 +1877.227360 +1877.228226 +1877.228925 +1877.250370 +1877.265555 +1877.278742 +1877.292462 +1877.295292 +1877.296724 +1877.306181 +1877.356531 +1877.362092 +1877.388099 +1877.389631 +1877.415272 +1877.479708 +1877.501752 +1877.519335 +1877.530923 +1877.572415 +1877.591995 +1877.610244 +1877.634319 +1877.647040 +1877.658196 +1877.749504 +1877.771083 +1877.794326 +1877.807912 +1877.838548 +1877.889864 +1877.901052 +1877.911642 +1877.917136 +1877.952534 +1877.963656 +1877.975644 +1878.012741 +1878.018435 +1878.034386 +1878.063556 +1878.129257 +1878.130423 +1878.130956 +1878.145108 +1878.155864 +1878.168784 +1878.188731 +1878.219301 +1878.222064 +1878.235751 +1878.237682 +1878.263123 +1878.265055 +1878.268918 +1878.291861 +1878.292694 +1878.295558 +1878.325228 +1878.328391 +1878.343376 +1878.368285 +1878.382471 +1878.383203 +1878.403716 +1878.413906 +1878.414772 +1878.415804 +1878.445308 +1878.445574 +1878.459227 +1878.490529 +1878.492760 +1878.507612 +1878.509976 +1878.533253 +1878.533686 +1878.561458 +1878.572181 +1878.573712 +1878.585467 +1878.626293 +1878.640779 +1878.649537 +1878.661025 +1878.670815 +1878.687365 +1878.704182 +1878.705314 +1878.717302 +1878.731521 +1878.759793 +1878.806013 +1878.819666 +1878.821131 +1878.822031 +1878.838181 +1878.852134 +1878.879440 +1878.896756 +1878.922363 +1878.936882 +1878.954431 +1878.981671 +1878.994325 +1879.010142 +1879.021731 +1879.037948 +1879.050102 +1879.050835 +1879.065154 +1879.066486 +1879.068351 +1879.082803 +1879.093958 +1879.096423 +1879.099120 +1879.112240 +1879.128224 +1879.139113 +1879.163689 +1879.165520 +1879.169549 +1879.179639 +1879.180305 +1879.181071 +1879.181770 +1879.212140 +1879.213572 +1879.223629 +1879.230222 +1879.242543 +1879.254797 +1879.268817 +1879.283502 +1879.287065 +1879.312606 +1879.315070 +1879.316902 +1879.342177 +1879.347937 +1879.358127 +1879.360858 +1879.388863 +1879.390162 +1879.402982 +1879.403449 +1879.403948 +1879.406845 +1879.411674 +1879.419466 +1879.433485 +1879.449369 +1879.463588 +1879.464687 +1879.465187 +1879.465720 +1879.480305 +1879.495024 +1879.496855 +1879.526259 +1879.535183 +1879.604447 +1879.605147 +1879.648736 +1879.655330 +1879.671314 +1879.681537 +1879.682469 +1879.682736 +1879.700917 +1879.710341 +1879.720964 +1879.727291 +1879.733285 +1879.738813 +1879.767384 +1879.768783 +1879.776608 +1879.785100 +1879.797621 +1879.799053 +1879.825093 +1879.829023 +1879.861690 +1879.866985 +1879.886632 +1879.900018 +1879.904647 +1879.908177 +1879.909775 +1879.921930 +1879.925559 +1879.930821 +1879.935316 +1879.936948 +1879.940444 +1879.942309 +1879.967018 +1879.967484 +1879.968450 +1879.984600 +1879.987031 +1880.003947 +1880.006412 +1880.012539 +1880.015636 +1880.027291 +1880.030088 +1880.045639 +1880.048170 +1880.058326 +1880.061024 +1880.061956 +1880.075076 +1880.088529 +1880.102682 +1880.116668 +1880.178439 +1880.180671 +1880.192326 +1880.206345 +1880.220697 +1880.226092 +1880.235216 +1880.235949 +1880.266585 +1880.267450 +1880.269448 +1880.272179 +1880.281037 +1880.281536 +1880.283401 +1880.310008 +1880.324327 +1880.325126 +1880.326591 +1880.332152 +1880.376608 +1880.384833 +1880.400118 +1880.400817 +1880.416501 +1880.431786 +1880.445505 +1880.476208 +1880.479205 +1880.494123 +1880.496854 +1880.525292 +1880.527956 +1880.541742 +1880.581136 +1880.643407 +1880.676008 +1880.685598 +1880.686864 +1880.717200 +1880.744306 +1880.748469 +1880.763387 +1880.763820 +1880.790960 +1880.806844 +1880.824826 +1880.826924 +1880.836248 +1880.853331 +1880.855428 +1880.860490 +1880.867883 +1880.869448 +1880.884633 +1880.887097 +1880.898619 +1880.900883 +1880.931286 +1880.947470 +1880.950433 +1880.962155 +1884.714865 +1887.178799 +1887.723886 +1887.886723 +1887.950227 +1888.111532 +1888.179097 +1888.241535 +1888.298345 +1888.463912 +1888.527449 +1888.913063 +1888.922487 +1888.946329 +1889.057119 +1889.207535 +1889.266542 +1889.302706 +1889.498510 +1889.695779 +1889.889752 +1889.910897 +1890.185689 +1890.215426 +1890.357883 +1890.417290 +1890.504137 +1890.561546 +1890.690817 +1890.952288 +1890.978928 +1891.111396 +1891.116257 +1891.123217 +1891.177762 +1891.178229 +1891.179128 +1891.626347 +1891.977529 +1892.114691 +1892.654085 +1892.681724 +1892.757448 +1892.975030 +1892.979692 +1892.980458 +1893.121683 +1893.122283 +1893.123948 +1893.125946 +1893.500471 +1893.547224 +1893.980757 +1894.115655 +1894.117986 +1894.120717 +1894.122615 +1894.359178 +1894.378758 +1894.657180 +1894.777126 +1894.856347 +1894.905797 +1894.940796 +1894.977326 +1894.980856 +1895.127076 +1895.414089 +1895.437199 +1895.572497 +1895.690479 +1895.915020 +1895.978857 +1895.980655 +1896.124178 +1896.856445 +1897.022112 +1897.188912 +1897.292775 +1897.367034 +1897.416218 +1897.419814 +1897.443490 +1897.653880 +1897.654246 +1897.929704 +1898.007193 +1898.314485 +1898.521778 +1898.631335 +1898.972959 +1899.495137 +1899.762036 +1899.839892 +1899.876255 +1900.816547 +1900.977020 +1901.078485 +1901.078918 +1901.081349 +1901.082681 +1901.178052 +1901.178185 +1901.179151 +1901.179717 +1901.180450 +1901.182914 +1901.184346 +1901.278185 +1901.278552 +1901.283080 +1901.378352 +1901.382880 +1901.383213 +1901.478618 +1901.482015 +1901.485211 +1901.577852 +1901.581149 +1901.583113 +1901.679850 +1901.680249 +1901.681248 +1901.682780 +1901.683380 +1901.779483 +1901.781715 +1901.783246 +1901.879617 +1901.881581 +1901.979417 +1901.979949 +1901.981981 +1901.985277 +1902.079983 +1902.081548 +1902.081881 +1902.179416 +1902.179949 +1902.180482 +1902.181714 +1902.379949 +1902.380548 +1902.382047 +1902.384411 +1902.480682 +1902.481381 +1902.481780 +1902.482413 +1902.483146 +1902.485344 +1902.579083 +1902.579449 +1902.582180 +1902.582713 +1902.584078 +1902.588007 +1902.681580 +1902.683712 +1902.779249 +1902.780315 +1902.781414 +1902.781580 +1902.781680 +1902.783545 +1902.878650 +1902.879049 +1902.880215 +1902.881614 +1902.982313 +1902.983645 +1903.083778 +1903.179116 +1903.179615 +1903.281713 +1903.284310 +1903.382745 +1903.483478 +1903.583145 +1903.584710 +1903.681713 +1903.781346 +1903.879315 +1903.880014 +1903.880380 +1903.882745 +1903.979248 +1903.979981 +1903.982412 +1904.079814 +1904.080713 +1904.179947 +1904.182012 +1904.282078 +1904.284476 +1904.379980 +1904.382278 +1904.482078 +1904.484209 +1904.683210 +1904.778814 +1904.780413 +1904.780679 +1904.782411 +1904.784009 +1904.879947 +1904.885175 +1904.980579 +1904.982610 +1905.080080 +1905.080546 +1905.084508 +1905.179080 +1905.181378 +1905.280079 +1905.281478 +1905.382810 +1905.479313 +1905.482310 +1905.581344 +1905.584375 +1905.681777 +1905.683409 +1905.684108 +1905.684574 +1905.778913 +1905.780345 +1905.781411 +1905.782710 +1905.783342 +1905.878947 +1905.880378 +1905.882876 +1905.979612 +1905.981311 +1905.981844 +1905.982243 +1906.621104 +1908.320636 +1908.413909 +1908.645644 +1909.877044 +1910.122865 +1910.977776 +1910.980606 +1910.990996 +1910.997256 +1911.096923 +1911.112941 +1911.164489 +1911.184169 +1911.208978 +1911.223097 +1911.234586 +1911.269051 +1911.319700 +1911.327826 +1911.367419 +1911.380972 +1911.391429 +1911.392627 +1911.405348 +1911.414239 +1911.441945 +1911.463290 +1911.464589 +1911.477442 +1911.498055 +1911.519933 +1911.521332 +1911.533786 +1911.551602 +1911.554399 +1911.562058 +1911.576144 +1911.577909 +1911.589830 +1911.592194 +1911.615304 +1911.627925 +1911.657462 +1911.659960 +1911.670016 +1911.693559 +1911.695125 +1911.705880 +1911.707412 +1911.732887 +1911.734252 +1911.775744 +1911.802084 +1911.831854 +1911.834385 +1911.858727 +1911.887665 +1911.903516 +1911.905481 +1911.937315 +1911.963256 +1912.010242 +1912.061791 +1912.074711 +1912.088431 +1912.089963 +1912.126060 +1912.159959 +1912.183236 +1912.190695 +1912.204182 +1912.217368 +1912.246006 +1912.255330 +1912.284967 +1912.286066 +1912.286599 +1912.298920 +1912.326126 +1912.328790 +1912.394957 +1912.396756 +1912.411507 +1912.420732 +1912.430289 +1912.445673 +1912.459393 +1912.461158 +1912.490229 +1912.515037 +1912.526592 +1912.538181 +1912.540079 +1912.547571 +1912.549336 +1912.580805 +1912.584834 +1912.622663 +1912.635317 +1912.651501 +1912.683235 +1912.683702 +1912.758527 +1912.766985 +1912.791394 +1912.794691 +1912.805813 +1912.808643 +1912.813172 +1912.818034 +1912.860991 +1912.873378 +1912.905813 +1912.913505 +1912.932652 +1912.942642 +1912.946172 +1912.956196 +1912.957228 +1912.970415 +1912.981370 +1913.007511 +1913.021663 +1913.026858 +1913.039179 +1913.075643 +1913.103115 +1913.144773 +1913.181204 +1913.181703 +1913.194490 +1913.199485 +1913.209009 +1913.223928 +1913.236815 +1913.250901 +1913.253065 +1913.276075 +1913.283701 +1913.289395 +1913.309309 +1913.331720 +1913.344007 +1913.346838 +1913.358360 +1913.360491 +1913.370414 +1913.376242 +1913.376808 +1913.390394 +1913.400085 +1913.400451 +1913.416035 +1913.432985 +1913.454796 +1913.460058 +1913.468283 +1913.497554 +1913.499152 +1913.509808 +1913.523295 +1913.526358 +1913.562622 +1913.564254 +1913.605346 +1913.607810 +1913.620930 +1913.622196 +1913.633751 +1913.648403 +1913.649901 +1913.661823 +1913.676674 +1913.691460 +1913.705113 +1913.706012 +1913.717633 +1913.730454 +1913.733551 +1913.777806 +1913.778206 +1913.781603 +1913.803780 +1913.805279 +1913.825958 +1913.833084 +1913.868682 +1913.872845 +1913.912172 +1913.928889 +1913.929388 +1913.941476 +1913.942308 +1913.944639 +1913.970314 +1913.971046 +1913.988296 +1914.000217 +1914.006777 +1914.015935 +1914.017700 +1914.028689 +1914.059291 +1914.073078 +1914.077906 +1914.118798 +1914.133351 +1914.145938 +1914.159458 +1914.174276 +1914.202082 +1914.235515 +1914.247703 +1914.261056 +1914.262122 +1914.274809 +1914.304113 +1914.347137 +1914.361655 +1914.378439 +1914.378971 +1914.393823 +1914.410773 +1914.423826 +1914.439111 +1914.442608 +1914.465951 +1914.496021 +1914.508242 +1914.510406 +1914.537546 +1914.539078 +1914.557692 +1914.567416 +1914.580969 +1914.595588 +1914.624526 +1914.626757 +1914.642408 +1914.644905 +1914.670746 +1914.685764 +1914.687895 +1914.704545 +1914.761921 +1914.780370 +1914.836547 +1914.852631 +1914.862354 +1914.873976 +1914.891192 +1914.901715 +1914.957792 +1915.017632 +1915.031119 +1915.061355 +1915.063886 +1915.076340 +1915.108341 +1915.136347 +1915.166749 +1915.183732 +1915.198518 +1915.211538 +1915.214635 +1915.245337 +1915.260356 +1915.276040 +1915.290392 +1915.366949 +1915.394555 +1915.397419 +1915.454761 +1915.499317 +1915.513069 +1915.613935 +1915.628521 +1915.961820 +1926.200172 +1926.252886 +1926.976495 +1928.152484 +1928.975793 +1929.151584 +1929.581387 +1929.979522 +1929.981087 +1930.979521 +1930.980487 +1931.194306 +1931.194939 +1931.195605 +1931.196037 +1931.252048 +1936.078483 +1936.079183 +1936.080914 +1936.180948 +1936.278250 +1936.279349 +1936.281447 +1936.378050 +1936.379416 +1936.479948 +1936.578816 +1936.580248 +1936.581280 +1936.581813 +1936.679082 +1936.679515 +1936.680348 +1936.779915 +1936.881280 +1936.883011 +1937.079182 +1937.079581 +1937.080214 +1937.080813 +1937.081280 +1937.181679 +1937.280780 +1937.378782 +1937.379181 +1937.380214 +1937.479847 +1937.481313 +1937.579348 +1937.580480 +1937.581945 +1937.680413 +1937.779414 +1937.781212 +1937.781712 +1937.784676 +1937.880413 +1937.880779 +1937.881445 +1938.079147 +1938.081279 +1938.082344 +1938.178548 +1938.379180 +1938.480213 +1938.481345 +1938.579313 +1938.587605 +1938.679280 +1938.680212 +1938.680779 +1938.681245 +1938.780346 +1938.979313 +1938.981677 +1939.177581 +1939.279213 +1939.280778 +1939.282576 +1939.284208 +1939.379313 +1939.379879 +1939.479179 +1939.579679 +1939.582576 +1939.679312 +1939.680778 +1939.681011 +1939.682409 +1939.779579 +1939.780444 +1939.780877 +1939.781344 +1939.880344 +1939.979245 +1939.979845 +1939.980411 +1939.981976 +1940.080411 +1940.180244 +1940.183974 +1940.279145 +1940.279678 +1940.281376 +1940.379545 +1940.380344 +1940.380744 +1940.478979 +1940.479744 +1940.480311 +1940.482808 +1940.579678 +1940.580610 +1940.581143 +1940.679178 +1940.874549 +1940.979577 +1946.021064 +1946.167285 +1946.325659 +1946.456362 +1946.517401 +1946.520265 +1946.588363 +1946.669415 +1946.680937 +1946.754430 +1946.779705 +1946.802615 +1946.805379 +1946.814903 +1946.894357 +1946.935282 +1946.962122 +1946.982502 +1946.985066 +1947.090960 +1947.108043 +1947.120597 +1947.165552 +1947.192592 +1947.192991 +1947.221529 +1947.245738 +1947.263920 +1947.361656 +1947.375009 +1947.375375 +1947.389761 +1947.421729 +1947.424459 +1947.436048 +1947.448102 +1947.466717 +1947.482135 +1947.552265 +1947.567250 +1947.583167 +1947.646337 +1947.649501 +1947.730253 +1947.774176 +1947.884099 +1947.908508 +1947.940510 +1947.968082 +1948.003680 +1948.006477 +1948.028222 +1948.028621 +1948.044106 +1948.055694 +1948.056527 +1948.062820 +1948.079171 +1948.089793 +1948.132950 +1948.159457 +1948.182567 +1948.211239 +1948.240609 +1948.242541 +1948.252198 +1948.259823 +1948.294355 +1948.308208 +1948.308907 +1948.320995 +1948.333616 +1948.335081 +1948.345771 +1948.347036 +1948.390859 +1948.412637 +1948.427788 +1948.471345 +1948.471511 +1948.525524 +1948.564452 +1948.616033 +1948.624225 +1948.627489 +1948.638744 +1948.657525 +1948.666583 +1948.682300 +1948.700282 +1948.714635 +1948.722760 +1948.728487 +1948.735947 +1948.761588 +1948.783666 +1948.789526 +1948.843139 +1948.882966 +1948.904944 +1948.905843 +1948.909939 +1948.921727 +1948.938744 +1948.952963 +1948.967415 +1948.972743 +1949.016632 +1949.034814 +1949.048700 +1949.050598 +1949.062720 +1949.076639 +1949.079270 +1949.091258 +1949.092723 +1949.119896 +1949.132050 +1949.133549 +1949.135147 +1949.136412 +1949.148534 +1949.149333 +1949.163585 +1949.170378 +1949.197718 +1949.236213 +1949.239609 +1949.253162 +1949.279636 +1949.305943 +1949.309905 +1949.337478 +1949.350831 +1949.367082 +1949.385064 +1949.394221 +1949.397751 +1949.398550 +1949.437611 +1949.439276 +1949.464984 +1949.466482 +1949.477005 +1949.493189 +1949.494754 +1949.508806 +1949.534481 +1949.554461 +1949.562286 +1949.578237 +1949.592955 +1949.625490 +1949.649133 +1949.650132 +1949.653994 +1949.681167 +1949.683631 +1949.693921 +1949.698217 +1949.709572 +1949.710571 +1949.722626 +1949.729985 +1949.738943 +1949.743638 +1949.758523 +1949.784697 +1949.799882 +1949.800947 +1949.816365 +1949.839109 +1949.848733 +1949.850065 +1949.861487 +1949.861820 +1949.862752 +1949.882099 +1949.893954 +1949.906242 +1949.946835 +1949.996585 +1949.999149 +1949.999582 +1950.001047 +1950.012535 +1950.019795 +1950.054660 +1950.058556 +1950.066648 +1950.067647 +1950.068679 +1950.074407 +1950.080334 +1950.083531 +1950.115499 +1950.141340 +1950.142705 +1950.143138 +1950.147634 +1950.157390 +1950.158656 +1950.173541 +1950.181000 +1950.186528 +1950.201913 +1950.203544 +1950.216431 +1950.225289 +1950.231583 +1950.234380 +1950.235046 +1950.246768 +1950.249232 +1950.291123 +1950.313634 +1950.322558 +1950.326055 +1950.327087 +1950.328786 +1950.337011 +1950.342139 +1950.355026 +1950.370411 +1950.405575 +1950.408639 +1950.413867 +1950.469278 +1950.472275 +1950.483064 +1950.485529 +1950.503544 +1950.512002 +1950.526155 +1950.529185 +1950.547467 +1950.565315 +1950.568079 +1950.579901 +1950.605542 +1950.606741 +1950.614633 +1950.682765 +1950.691423 +1950.692521 +1950.742138 +1950.765249 +1950.769744 +1950.796784 +1950.797783 +1950.811436 +1950.812601 +1950.829751 +1950.842005 +1950.858422 +1950.879801 +1950.893087 +1950.907873 +1950.911203 +1950.912967 +1950.930683 +1950.937676 +1950.952428 +1950.970710 +1954.053224 +1958.599806 +1960.975728 +1961.196007 +1964.280753 +1964.974525 +1964.975724 +1970.973787 +1971.075252 +1971.075784 +1971.077283 +1971.178315 +1971.278415 +1971.279913 +1971.284476 +1971.380047 +1971.380846 +1971.477482 +1971.479147 +1971.578448 +1971.580513 +1971.585441 +1971.586074 +1971.680746 +1971.681844 +1971.777848 +1971.878881 +1971.880612 +1971.881212 +1971.979347 +1971.980912 +1971.981145 +1972.079247 +1972.080079 +1972.082177 +1972.179413 +1972.180146 +1972.186140 +1972.279513 +1972.378014 +1972.378381 +1972.478947 +1972.481311 +1972.486439 +1972.579912 +1972.681677 +1972.780245 +1972.782443 +1972.879412 +1972.880012 +1972.880878 +1972.979279 +1972.981277 +1973.079312 +1973.080678 +1973.179345 +1973.181943 +1973.281410 +1973.282342 +1973.381476 +1973.576714 +1973.577447 +1973.678712 +1973.680277 +1973.780244 +1973.781076 +1973.787570 +1973.880643 +1973.881276 +1973.882308 +1973.980011 +1974.079877 +1974.281109 +1974.379311 +1974.381176 +1974.480210 +1974.481542 +1974.482408 +1974.581409 +1974.581808 +1974.679710 +1974.780076 +1974.780576 +1974.881009 +1974.979444 +1974.980043 +1974.984439 +1975.079310 +1975.080243 +1975.080942 +1975.179077 +1975.179643 +1975.180276 +1975.180709 +1975.379776 +1975.381375 +1975.478244 +1975.480276 +1975.480675 +1975.481275 +1975.579576 +1975.650072 +1975.677378 +1975.679310 +1975.779376 +1975.779543 +1975.880209 +1975.881541 +1975.882240 +1975.979742 +1975.980208 +1975.980408 +1975.981607 +1976.286235 +1976.305383 +1977.271150 +1977.310876 +1977.353034 +1977.389797 +1977.390264 +1977.421699 +1977.454133 +1977.499588 +1978.244309 +1978.244708 +1978.255464 +1978.881504 +1979.856428 +1979.886365 +1979.957827 +1980.266884 +1980.290294 +1980.351733 +1980.357460 +1980.610474 +1980.975841 +1981.008775 +1981.360556 +1981.401415 +1981.404679 +1981.405211 +1981.467283 +1981.480003 +1981.551631 +1981.636447 +1981.784232 +1981.798451 +1981.840875 +1981.915467 +1981.952697 +1982.048867 +1982.051631 +1982.080136 +1982.092723 +1982.159523 +1982.221561 +1982.236413 +1982.263386 +1982.446869 +1982.495487 +1982.530751 +1982.589060 +1982.604777 +1982.620428 +1982.662153 +1982.674641 +1982.676206 +1982.687861 +1982.701247 +1982.789626 +1982.839742 +1982.853928 +1982.870411 +1982.987860 +1982.998750 +1983.010305 +1983.061154 +1983.106808 +1983.126455 +1983.126988 +1983.140907 +1983.182899 +1983.206775 +1983.225256 +1983.240374 +1983.282133 +1983.307407 +1983.319295 +1983.328852 +1983.350431 +1983.391923 +1983.407807 +1983.434347 +1983.449565 +1983.482199 +1983.498016 +1983.511536 +1983.516132 +1983.528053 +1983.571243 +1983.617330 +1983.619961 +1983.646801 +1983.688093 +1983.690091 +1983.709671 +1983.713734 +1983.726355 +1983.731782 +1983.770077 +1983.782099 +1983.783697 +1983.786261 +1983.788026 +1983.799381 +1983.812602 +1983.839475 +1983.841473 +1983.880966 +1983.896451 +1983.910270 +1983.910936 +1983.912302 +1983.914100 +1983.928952 +1983.930683 +1983.940773 +1983.984463 +1984.017596 +1984.019062 +1984.032082 +1984.058522 +1984.065915 +1984.137743 +1984.143004 +1984.146601 +1984.161319 +1984.170210 +1984.180067 +1984.191689 +1984.212235 +1984.237676 +1984.241472 +1984.269078 +1984.278302 +1984.297516 +1984.308971 +1984.337743 +1984.343337 +1984.351162 +1984.352961 +1984.354193 +1984.355891 +1984.357356 +1984.395418 +1984.398482 +1984.407573 +1984.408205 +1984.413167 +1984.422724 +1984.423990 +1984.448299 +1984.449364 +1984.459221 +1984.459920 +1984.487926 +1984.513267 +1984.517729 +1984.528085 +1984.552428 +1984.554625 +1984.555758 +1984.570909 +1984.584629 +1984.596284 +1984.626687 +1984.655824 +1984.684462 +1984.701279 +1984.737942 +1984.738908 +1984.747532 +1984.754958 +1984.762950 +1984.818661 +1984.828152 +1984.831382 +1984.854958 +1984.856923 +1984.867945 +1984.869444 +1984.871442 +1984.886460 +1984.893453 +1984.894152 +1984.902011 +1984.903410 +1984.941472 +1984.949297 +1984.959920 +1984.977103 +1984.989856 +1984.990323 +1985.003176 +1985.021192 +1985.028984 +1985.034312 +1985.045767 +1985.057289 +1985.074039 +1985.085627 +1985.107605 +1985.119260 +1985.119627 +1985.121391 +1985.138674 +1985.146466 +1985.152394 +1985.160652 +1985.193752 +1985.194318 +1985.203443 +1985.205574 +1985.249763 +1985.250695 +1985.251694 +1985.279300 +1985.290389 +1985.292354 +1985.293153 +1985.308038 +1985.308904 +1985.309703 +1985.368844 +1985.371241 +1985.373073 +1985.381531 +1985.398914 +1985.411235 +1985.412600 +1985.414198 +1985.443802 +1985.444368 +1985.459719 +1985.469709 +1985.472573 +1985.477935 +1985.504408 +1985.525121 +1985.525487 +1985.550162 +1985.568444 +1985.600046 +1985.601111 +1985.611867 +1985.615930 +1985.640672 +1985.653725 +1985.654225 +1985.670608 +1985.692720 +1985.696882 +1985.697348 +1985.698980 +1985.724022 +1985.731281 +1985.748197 +1985.756522 +1985.757122 +1985.757754 +1985.761318 +1985.770675 +1985.776735 +1985.780032 +1985.790388 +1985.792620 +1985.812200 +1985.825653 +1985.826552 +1985.827984 +1985.859919 +1985.872639 +1985.872972 +1985.877768 +1985.888923 +1985.903775 +1985.904774 +1985.935310 +1985.945533 +1985.946599 +1985.961384 +1985.963582 +1985.964214 +1986.574637 +1986.591087 +1986.610135 +1986.627217 +1986.668210 +1986.691054 +1990.268606 +1990.296478 +1990.587986 +1991.303503 +1991.348625 +1991.432341 +1991.449524 +1991.620552 +1991.634772 +1991.652254 +1992.924514 +1992.958014 +1993.017820 +1993.068703 +1993.088450 +1993.095976 +1993.131207 +1993.175329 +1994.245425 +1994.252718 +1994.376927 +1994.377693 +1994.417752 +1994.452285 +1994.471099 +1994.511159 +1995.831770 +1995.850052 +1995.936998 +1995.959243 +1995.972896 +1996.974926 +1997.558675 +1997.642391 +1999.470661 +2000.552378 +2000.625472 +2000.627137 +2000.663467 +2000.705259 +2000.740590 +2000.807556 +2000.858872 +2000.915781 +2000.971459 +2001.524505 +2001.666929 +2001.718911 +2002.628800 +2002.639423 +2002.640921 +2002.666562 +2002.691770 +2002.786642 +2003.817610 +2004.629331 +2004.689837 +2004.728398 +2004.776117 +2004.791768 +2004.831362 +2004.844981 +2004.857802 +2004.869357 +2004.888172 +2005.143816 +2005.165794 +2005.225700 +2006.079679 +2006.081211 +2006.180212 +2006.180711 +2006.278347 +2006.279279 +2006.279945 +2006.282509 +2006.379346 +2006.379679 +2006.379778 +2006.382209 +2006.389269 +2006.478879 +2006.482209 +2006.482709 +2006.483508 +2006.578546 +2006.680278 +2006.680544 +2006.683241 +2006.684840 +2006.689269 +2006.778346 +2006.779778 +2006.979079 +2006.980311 +2006.982076 +2006.985172 +2006.985705 +2007.080111 +2007.081876 +2007.084606 +2007.087037 +2007.180677 +2007.279944 +2007.280677 +2007.282342 +2007.380743 +2007.380976 +2007.386138 +2007.479777 +2007.482641 +2007.483840 +2007.484406 +2007.579211 +2007.579877 +2007.580410 +2007.581309 +2007.585238 +2007.679511 +2007.681242 +2007.684106 +2007.779644 +2007.782608 +2007.787802 +2007.879877 +2007.881076 +2007.884672 +2007.885505 +2007.980576 +2008.080776 +2008.083140 +2008.085971 +2008.179710 +2008.182707 +2008.184872 +2008.380043 +2008.380909 +2008.381408 +2008.383539 +2008.479044 +2008.479743 +2008.480076 +2008.480809 +2008.579676 +2008.580043 +2008.580442 +2008.582041 +2008.586836 +2008.682773 +2008.780409 +2008.785204 +2008.877512 +2008.880242 +2008.977445 +2008.979842 +2009.087102 +2009.284271 +2009.480242 +2009.480674 +2009.482806 +2009.582273 +2009.680042 +2009.780041 +2009.781640 +2009.787268 +2009.880441 +2009.881473 +2009.980075 +2009.981906 +2010.079841 +2010.080541 +2010.080907 +2010.179808 +2010.182039 +2010.188399 +2010.282039 +2010.287034 +2010.380141 +2010.380873 +2010.382805 +2010.384303 +2010.481106 +2010.484003 +2010.484903 +2010.580374 +2010.581905 +2010.582272 +2010.679907 +2010.680407 +2010.682705 +2010.688865 +2010.780140 +2010.782072 +2010.879907 +2010.881572 +2010.882038 +2010.882538 +2010.883037 +2010.979574 +2010.980573 +2010.981739 +2011.258928 +2011.335751 +2011.544209 +2011.576610 +2011.613406 +2011.692594 +2011.699087 +2011.727392 +2011.788531 +2011.805581 +2011.828891 +2012.430422 +2012.437248 +2013.887563 +2013.919698 +2014.063554 +2015.232650 +2015.396486 +2015.455793 +2016.309406 +2016.506408 +2016.518430 +2016.566981 +2016.592622 +2016.608639 +2016.655492 +2016.668846 +2016.705742 +2016.752862 +2016.764983 +2016.781533 +2016.817797 +2016.824323 +2016.839175 +2016.880600 +2016.938409 +2016.991922 +2017.005076 +2017.040940 +2017.052961 +2017.118163 +2017.132215 +2017.178902 +2017.189558 +2017.249531 +2017.281766 +2017.313334 +2017.352195 +2017.365981 +2017.377370 +2017.424889 +2017.436344 +2017.438475 +2017.482331 +2017.508072 +2017.509238 +2017.550030 +2017.616131 +2017.656191 +2017.722358 +2017.738542 +2017.761219 +2017.799214 +2017.816730 +2017.844169 +2017.856390 +2017.879301 +2017.893154 +2017.948332 +2017.965814 +2017.992121 +2018.031848 +2018.072840 +2018.119294 +2018.148631 +2018.190423 +2018.190822 +2018.229950 +2018.245801 +2018.263050 +2018.306806 +2018.322923 +2018.369743 +2018.398081 +2018.414132 +2018.428651 +2018.457189 +2018.457522 +2018.509470 +2018.516663 +2018.517762 +2018.545168 +2018.559753 +2018.591654 +2018.592953 +2018.607738 +2018.619260 +2018.675404 +2018.711368 +2018.728451 +2018.741704 +2018.743869 +2018.745967 +2018.811268 +2018.840172 +2018.872007 +2018.909836 +2018.912367 +2018.913432 +2018.927651 +2018.943469 +2018.955224 +2018.969110 +2018.999080 +2019.044135 +2019.072973 +2019.075836 +2019.101044 +2019.165813 +2019.169975 +2019.179200 +2019.196016 +2019.235177 +2019.258487 +2019.258886 +2019.265380 +2019.304774 +2019.309269 +2019.310135 +2019.320824 +2019.361084 +2019.370541 +2019.371840 +2019.372506 +2019.383295 +2019.398613 +2019.401011 +2019.412566 +2019.425753 +2019.453758 +2019.458886 +2019.468743 +2019.481097 +2019.513698 +2019.516562 +2019.528184 +2019.529282 +2019.556322 +2019.586259 +2019.590654 +2019.603142 +2019.606305 +2019.616628 +2019.632579 +2019.664214 +2019.676435 +2019.680331 +2019.681963 +2019.696415 +2019.723355 +2019.726951 +2019.730048 +2019.741736 +2019.757021 +2019.762349 +2019.773172 +2019.787790 +2019.791686 +2019.812965 +2019.817527 +2019.830081 +2019.843002 +2019.843401 +2019.889489 +2019.896115 +2019.906638 +2019.908070 +2019.937540 +2019.964513 +2019.972739 +2019.981163 +2019.981663 +2019.996049 +2020.008636 +2020.011600 +2020.013365 +2020.060584 +2020.076102 +2020.091187 +2020.109002 +2020.113664 +2020.131380 +2020.134044 +2020.144567 +2020.161383 +2020.173538 +2020.218892 +2020.226718 +2020.228982 +2020.250028 +2020.252625 +2020.265079 +2020.269908 +2020.281962 +2020.290654 +2020.297414 +2020.299578 +2020.313464 +2020.331879 +2020.374070 +2020.417460 +2020.418925 +2020.452425 +2020.459518 +2020.461449 +2020.462681 +2020.481496 +2020.528149 +2020.529248 +2020.544999 +2020.546298 +2020.557320 +2020.580930 +2020.618958 +2020.654290 +2020.666178 +2020.671839 +2020.682328 +2020.683161 +2020.708369 +2020.710100 +2020.783793 +2020.785292 +2020.809834 +2020.838805 +2020.860650 +2020.867709 +2020.868109 +2020.883327 +2020.883860 +2020.896514 +2020.902774 +2020.911299 +2020.922588 +2020.931312 +2020.937206 +2020.943567 +2020.946997 +2020.948961 +2020.952025 +2020.958019 +2020.960217 +2020.960750 +2020.961249 +2020.962181 +2020.967809 +2021.578098 +2021.859616 +2022.280062 +2031.296037 +2032.189609 +2032.252480 +2032.978653 +2033.270727 +2033.283148 +2034.317946 +2034.982281 +2035.130266 +2035.920342 +2036.178583 +2036.202426 +2036.284444 +2038.230729 +2038.527865 +2038.566892 +2038.624901 +2038.657668 +2038.946579 +2039.611613 +2041.081442 +2041.180743 +2041.182841 +2041.186903 +2041.188868 +2041.279510 +2041.280210 +2041.280643 +2041.283873 +2041.284905 +2041.379743 +2041.380543 +2041.380876 +2041.381775 +2041.382141 +2041.384372 +2041.395228 +2041.480975 +2041.482973 +2041.483306 +2041.484605 +2041.580209 +2041.581075 +2041.581375 +2041.582207 +2041.582707 +2041.585271 +2041.682474 +2041.780609 +2041.781441 +2041.880209 +2041.880509 +2041.881608 +2041.882673 +2041.888468 +2041.980242 +2041.982140 +2042.080775 +2042.081574 +2042.177878 +2042.180009 +2042.180708 +2042.182240 +2042.188267 +2042.279077 +2042.279876 +2042.280309 +2042.281308 +2042.284571 +2042.285670 +2042.380342 +2042.380608 +2042.382107 +2042.388434 +2042.480508 +2042.481074 +2042.482140 +2042.482506 +2042.484404 +2042.484771 +2042.580808 +2042.581174 +2042.585969 +2042.782140 +2042.784171 +2042.881074 +2042.882106 +2042.883738 +2042.886568 +2042.981640 +2042.982506 +2042.986102 +2043.081007 +2043.182805 +2043.184370 +2043.279275 +2043.280308 +2043.280807 +2043.383404 +2043.486301 +2043.579608 +2043.580840 +2043.681706 +2043.683071 +2043.690197 +2043.780007 +2043.780440 +2043.881572 +2043.882472 +2043.886001 +2043.887200 +2043.980707 +2043.982105 +2043.982671 +2043.985369 +2044.080607 +2044.081139 +2044.183637 +2044.184103 +2044.184836 +2044.286334 +2044.381339 +2044.381805 +2044.481039 +2044.481339 +2044.487999 +2044.580040 +2044.581106 +2044.581439 +2044.588831 +2044.680772 +2044.683736 +2044.780939 +2044.881871 +2044.979806 +2045.079973 +2045.082337 +2045.085201 +2045.086899 +2045.178208 +2045.183469 +2045.185068 +2045.185634 +2045.280539 +2045.284268 +2045.285500 +2045.287132 +2045.379706 +2045.380139 +2045.480605 +2045.480971 +2045.482370 +2045.580971 +2045.582237 +2045.582969 +2045.584201 +2045.584435 +2045.682270 +2045.686399 +2045.687465 +2045.780805 +2045.782037 +2045.782336 +2045.783036 +2045.980804 +2045.981337 +2045.982703 +2045.982969 +2046.170848 +2046.202849 +2046.217268 +2046.393591 +2046.432319 +2047.034916 +2047.819031 +2047.908075 +2047.925624 +2048.738644 +2048.843705 +2048.889892 +2049.115733 +2049.140641 +2049.199982 +2050.127853 +2051.182498 +2051.325355 +2051.375571 +2051.492920 +2051.594618 +2051.695184 +2051.705907 +2051.783929 +2051.824655 +2051.865148 +2051.879533 +2051.909770 +2051.927319 +2051.962184 +2051.977102 +2051.989756 +2052.000179 +2052.034744 +2052.060652 +2052.092920 +2052.141604 +2052.145534 +2052.158188 +2052.194651 +2052.227452 +2052.236776 +2052.283462 +2052.327285 +2052.368544 +2052.397648 +2052.401244 +2052.440671 +2052.469609 +2052.487258 +2052.513565 +2052.516163 +2052.529016 +2052.541471 +2052.544334 +2052.544801 +2052.560518 +2052.573272 +2052.619359 +2052.637907 +2052.670275 +2052.696249 +2052.710768 +2052.723855 +2052.737374 +2052.757887 +2052.771574 +2052.796615 +2052.811300 +2052.838873 +2052.841337 +2052.842236 +2052.842602 +2052.853825 +2052.854657 +2052.901610 +2052.930648 +2052.932746 +2052.945666 +2052.988823 +2052.999179 +2053.025553 +2053.041736 +2053.083728 +2053.094883 +2053.108503 +2053.122089 +2053.165746 +2053.180031 +2053.193318 +2053.206971 +2053.234677 +2053.272705 +2053.287191 +2053.324420 +2053.351426 +2053.397114 +2053.423188 +2053.464014 +2053.476668 +2053.490987 +2053.505139 +2053.533444 +2053.534210 +2053.559918 +2053.583860 +2053.587823 +2053.597214 +2053.597647 +2053.612265 +2053.624087 +2053.635808 +2053.637240 +2053.665079 +2053.692685 +2053.707004 +2053.720224 +2053.729781 +2053.745499 +2053.747896 +2053.775868 +2053.804240 +2053.816228 +2053.841636 +2053.843800 +2053.862848 +2053.870507 +2053.885225 +2053.885725 +2053.889122 +2053.904440 +2053.965645 +2054.005572 +2054.024386 +2054.032844 +2054.035975 +2054.065911 +2054.088688 +2054.093217 +2054.093850 +2054.102008 +2054.104806 +2054.117160 +2054.120523 +2054.128282 +2054.143400 +2054.144299 +2054.147197 +2054.160217 +2054.174969 +2054.187290 +2054.199211 +2054.201675 +2054.203906 +2054.212631 +2054.227183 +2054.244366 +2054.259018 +2054.268975 +2054.271106 +2054.283493 +2054.287290 +2054.311565 +2054.328515 +2054.338805 +2054.352225 +2054.366244 +2054.380263 +2054.381329 +2054.394982 +2054.399910 +2054.434942 +2054.445864 +2054.473670 +2054.514462 +2054.530080 +2054.545564 +2054.546164 +2054.576200 +2054.577766 +2054.583227 +2054.593816 +2054.608335 +2054.622088 +2054.639870 +2054.652025 +2054.720023 +2054.721588 +2054.734276 +2054.791252 +2054.826483 +2054.865744 +2054.893350 +2054.907236 +2054.925584 +2054.936973 +2054.961515 +2054.964379 +2054.975234 +2054.987156 +2055.042301 +2055.043566 +2055.090186 +2055.114328 +2055.115760 +2055.132177 +2055.154089 +2055.193083 +2055.221355 +2055.254089 +2055.264412 +2055.301375 +2055.304638 +2055.318124 +2055.378431 +2055.393049 +2055.393616 +2055.395247 +2055.407535 +2055.412663 +2055.424152 +2055.466476 +2055.520156 +2055.550725 +2055.551857 +2055.578131 +2055.593649 +2055.676999 +2055.686123 +2055.697878 +2055.698977 +2055.711797 +2055.757152 +2055.784258 +2055.796246 +2055.798544 +2055.809133 +2055.811697 +2055.811930 +2055.812629 +2055.829945 +2055.843598 +2055.858983 +2055.870372 +2055.872336 +2055.872803 +2055.878930 +2055.886922 +2055.888620 +2055.897345 +2055.898344 +2055.910731 +2055.912629 +2055.930245 +2055.945863 +2055.947428 +2055.961314 +2058.298108 +2059.359879 +2059.435903 +2060.596075 +2060.599671 +2060.667403 +2062.116985 +2062.173729 +2062.218584 +2062.328607 +2062.339096 +2062.415587 +2063.397204 +2063.449552 +2063.474393 +2063.486748 +2063.579388 +2063.765935 +2063.800700 +2064.397170 +2064.414552 +2064.473760 +2064.511588 +2064.568898 +2064.715118 +2065.060506 +2065.073659 +2065.106560 +2065.179953 +2065.491274 +2065.554644 +2065.555077 +2065.578520 +2065.626073 +2065.820944 +2066.140758 +2066.157940 +2066.239459 +2066.343155 +2066.372059 +2066.409322 +2066.981882 +2067.339358 +2068.168028 +2068.232830 +2068.233796 +2068.236260 +2068.292837 +2068.825437 +2068.982846 +2069.976718 +2070.140121 +2070.152742 +2071.120873 +2071.123670 +2072.799259 +2072.811314 +2073.580977 +2076.077411 +2076.180708 +2076.182639 +2076.183871 +2076.379975 +2076.380441 +2076.381840 +2076.384703 +2076.385236 +2076.387501 +2076.479842 +2076.480641 +2076.482006 +2076.483271 +2076.486968 +2076.581473 +2076.581906 +2076.583205 +2076.587401 +2076.685735 +2076.781573 +2076.785436 +2076.786135 +2076.880341 +2076.886867 +2076.980407 +2076.981872 +2076.983770 +2077.080673 +2077.082072 +2077.085768 +2077.180307 +2077.180640 +2077.181473 +2077.187400 +2077.284436 +2077.287034 +2077.334553 +2077.351935 +2077.555731 +2077.676577 +2077.777975 +2077.779807 +2077.780739 +2077.781006 +2077.782038 +2077.785135 +2077.981705 +2077.982937 +2077.985368 +2078.078841 +2078.080106 +2078.080972 +2078.087266 +2078.184302 +2078.280805 +2078.382104 +2078.480239 +2078.481438 +2078.484002 +2078.581904 +2078.585500 +2078.680605 +2078.680972 +2078.681305 +2078.681771 +2078.683336 +2078.684401 +2078.686566 +2078.780905 +2078.781671 +2078.783269 +2078.783702 +2078.784868 +2078.785500 +2078.882070 +2078.885101 +2078.885833 +2078.889862 +2078.980838 +2078.981338 +2078.982337 +2079.080638 +2079.081737 +2079.083402 +2079.181171 +2079.182303 +2079.183535 +2079.185300 +2079.188397 +2079.202616 +2079.281104 +2079.281437 +2079.285933 +2079.380904 +2079.381903 +2079.382902 +2079.383202 +2079.384268 +2079.385699 +2079.389163 +2079.481870 +2079.482036 +2079.490927 +2079.579805 +2079.582935 +2079.585366 +2079.587364 +2079.682036 +2079.682835 +2079.688130 +2079.783335 +2079.788296 +2079.879971 +2079.881936 +2079.980804 +2079.981670 +2079.982469 +2079.984200 +2080.080304 +2080.081436 +2080.082602 +2080.179805 +2080.180870 +2080.181902 +2080.281969 +2080.282468 +2080.283234 +2080.284799 +2080.380304 +2080.380770 +2080.381303 +2080.384333 +2080.385266 +2080.484699 +2080.580670 +2080.681769 +2080.682768 +2080.684033 +2080.685332 +2080.686830 +2080.779937 +2080.780836 +2080.782268 +2080.783633 +2080.784366 +2080.880203 +2080.880636 +2080.882035 +2080.885132 +2080.886530 +2080.980170 +2080.981169 +2080.981435 +2084.443237 +2084.615598 +2084.664249 +2084.716097 +2084.749430 +2085.247399 +2085.305607 +2085.413432 +2085.433845 +2085.511135 +2085.515896 +2085.580132 +2085.614498 +2085.659752 +2085.977867 +2085.978300 +2085.982130 +2086.019825 +2086.039539 +2086.121390 +2086.218726 +2086.243168 +2086.300844 +2086.327184 +2086.339006 +2086.366412 +2086.381030 +2086.391520 +2086.403808 +2086.442103 +2086.478033 +2086.493152 +2086.533311 +2086.572306 +2086.575469 +2086.588190 +2086.600311 +2086.616295 +2086.657287 +2086.673371 +2086.686525 +2086.699911 +2086.711966 +2086.771906 +2086.775602 +2086.798379 +2086.858419 +2086.917493 +2086.965412 +2086.994550 +2087.027650 +2087.052758 +2087.102908 +2087.113231 +2087.126784 +2087.155156 +2087.171772 +2087.183594 +2087.198779 +2087.199311 +2087.294916 +2087.309434 +2087.324220 +2087.340137 +2087.349394 +2087.360983 +2087.373903 +2087.403007 +2087.431845 +2087.444299 +2087.459185 +2087.500177 +2087.501542 +2087.530247 +2087.535608 +2087.546997 +2087.549594 +2087.588888 +2087.601376 +2087.604139 +2087.647163 +2087.660450 +2087.678698 +2087.707636 +2087.751259 +2087.774835 +2087.786124 +2087.810899 +2087.825584 +2087.826484 +2087.911265 +2087.915228 +2087.940469 +2087.942834 +2087.955721 +2087.967909 +2087.982328 +2087.996247 +2088.009101 +2088.022687 +2088.036473 +2088.039937 +2088.052957 +2088.053923 +2088.099743 +2088.114096 +2088.129613 +2088.142900 +2088.170140 +2088.183493 +2088.198411 +2088.213629 +2088.244299 +2088.287689 +2088.304006 +2088.306769 +2088.308501 +2088.321888 +2088.335474 +2088.337206 +2088.366510 +2088.367442 +2088.381628 +2088.408368 +2088.416659 +2088.445963 +2088.449693 +2088.474768 +2088.516426 +2088.556120 +2088.556886 +2088.564278 +2088.573336 +2088.573702 +2088.578597 +2088.638038 +2088.639170 +2088.653855 +2088.666842 +2088.692783 +2088.702873 +2088.710066 +2088.746762 +2088.778930 +2088.799343 +2088.853988 +2088.872969 +2088.889653 +2088.914594 +2088.918724 +2088.930112 +2088.930678 +2088.931511 +2088.989586 +2089.022953 +2089.023485 +2089.024018 +2089.034807 +2089.052023 +2089.060115 +2089.070705 +2089.083592 +2089.095846 +2089.099276 +2089.105903 +2089.106869 +2089.135873 +2089.136339 +2089.162879 +2089.175467 +2089.181594 +2089.181993 +2089.182426 +2089.196579 +2089.197611 +2089.199376 +2089.206935 +2089.208034 +2089.249759 +2089.261913 +2089.262280 +2089.274767 +2089.290218 +2089.291983 +2089.293781 +2089.306402 +2089.329912 +2089.331777 +2089.345463 +2089.361980 +2089.379362 +2089.386022 +2089.387354 +2089.402339 +2089.426615 +2089.450358 +2089.454987 +2089.462879 +2089.464644 +2089.509932 +2089.524217 +2089.540435 +2089.558317 +2089.560048 +2089.567141 +2089.580661 +2089.586488 +2089.602273 +2089.603272 +2089.621054 +2089.652556 +2089.662646 +2089.675300 +2089.676232 +2089.690651 +2089.699176 +2089.699875 +2089.706002 +2089.742432 +2089.746395 +2089.773967 +2089.774966 +2089.789152 +2089.818023 +2089.836971 +2089.852955 +2089.864543 +2089.874167 +2089.887221 +2089.887654 +2089.899941 +2089.928013 +2089.928579 +2089.942832 +2089.959848 +2089.961413 +2089.986988 +2089.990384 +2089.998310 +2090.001473 +2090.004304 +2090.018989 +2090.029778 +2090.034573 +2090.042399 +2090.058449 +2090.060148 +2090.077996 +2090.079428 +2090.105635 +2090.107667 +2090.117956 +2090.119588 +2090.131543 +2090.156618 +2090.168606 +2090.187054 +2090.201773 +2090.208999 +2090.213394 +2090.225249 +2090.254420 +2090.295046 +2090.296078 +2090.320953 +2090.336837 +2090.355152 +2090.367074 +2090.400107 +2090.417423 +2090.430777 +2090.445096 +2090.448292 +2090.485455 +2090.503570 +2090.506334 +2090.516691 +2090.517157 +2090.531642 +2090.546194 +2090.560980 +2090.570770 +2090.577163 +2090.579927 +2090.624583 +2090.629844 +2090.650523 +2090.653154 +2090.668206 +2090.668872 +2090.705535 +2090.719754 +2090.742864 +2090.746960 +2090.748192 +2090.748858 +2090.763077 +2090.776431 +2090.790184 +2090.795312 +2090.806834 +2090.808032 +2090.810696 +2090.821286 +2090.836104 +2090.851888 +2090.881426 +2090.886121 +2090.901106 +2090.911895 +2090.914026 +2090.927679 +2090.931442 +2090.934139 +2090.958915 +2090.959880 +2090.961512 +2090.977996 +2093.460078 +2093.844260 +2094.493310 +2095.801434 +2095.855380 +2095.915520 +2096.160142 +2096.199202 +2096.463205 +2097.214087 +2097.970996 +2097.980586 +2098.118681 +2099.193738 +2099.293738 +2100.232032 +2100.342522 +2100.357640 +2101.351545 +2101.476253 +2103.273654 +2103.273921 +2103.394000 +2103.480214 +2104.122604 +2104.283910 +2105.532859 +2105.617808 +2105.687205 +2105.725000 +2105.765893 +2107.972784 +2108.024665 +2108.062694 +2108.092098 +2108.109414 +2108.137386 +2109.270052 +2109.284870 +2109.286968 +2109.418803 +2111.078708 +2111.079541 +2111.180340 +2111.285268 +2111.379940 +2111.380339 +2111.381139 +2111.383936 +2111.480106 +2111.480639 +2111.480806 +2111.482770 +2111.486367 +2111.581272 +2111.581671 +2111.582237 +2111.582903 +2111.679007 +2111.679440 +2111.679873 +2111.682004 +2111.683636 +2111.780272 +2111.781305 +2111.880206 +2111.880739 +2111.881205 +2111.881504 +2111.883469 +2111.885068 +2111.885767 +2112.082603 +2112.182969 +2112.185933 +2112.280572 +2112.282769 +2112.380405 +2112.380938 +2112.383036 +2112.486199 +2112.679772 +2112.681071 +2112.681670 +2112.780804 +2112.880305 +2112.980038 +2112.980971 +2112.981370 +2112.982702 +2113.079505 +2113.081870 +2113.182036 +2113.380371 +2113.380970 +2113.381470 +2113.382169 +2113.382335 +2113.482469 +2113.483068 +2113.580604 +2113.581203 +2113.582235 +2113.584100 +2113.681103 +2113.782768 +2113.880836 +2113.882302 +2113.980204 +2114.081402 +2114.380869 +2114.481169 +2114.481635 +2114.483034 +2114.582334 +2114.682934 +2115.180569 +2115.183433 +2115.281668 +2115.285197 +2115.479669 +2115.580402 +2115.582300 +2115.880635 +2115.882400 +2115.882932 +2115.979203 +2117.877070 +2117.954692 +2117.954925 +2117.956923 +2117.980100 +2118.094752 +2118.120160 +2118.134911 +2118.676503 +2118.679766 +2118.694818 +2118.704375 +2118.729949 +2121.040336 +2121.293017 +2121.373969 +2121.388654 +2121.429081 +2121.443533 +2121.594315 +2121.635108 +2121.664279 +2121.666343 +2121.879463 +2121.942800 +2121.993149 +2122.004505 +2122.059816 +2122.088221 +2122.102573 +2122.105037 +2122.186689 +2122.219256 +2122.274201 +2122.287688 +2122.314028 +2122.316193 +2122.378863 +2122.448593 +2122.516359 +2122.532410 +2122.546196 +2122.546928 +2122.548760 +2122.575633 +2122.646262 +2122.668040 +2122.771370 +2122.780927 +2122.817424 +2122.827081 +2122.845896 +2122.856185 +2122.856785 +2122.860914 +2122.917224 +2122.929179 +2122.942466 +2122.982626 +2122.984757 +2122.996878 +2123.043198 +2123.049792 +2123.058350 +2123.060548 +2123.099309 +2123.112063 +2123.112895 +2123.126615 +2123.140667 +2123.141167 +2123.153854 +2123.154853 +2123.215626 +2123.257817 +2123.298343 +2123.329145 +2123.356718 +2123.371703 +2123.422252 +2123.478562 +2123.521986 +2123.535505 +2123.542698 +2123.616258 +2123.626448 +2123.638569 +2123.639135 +2123.709731 +2123.730843 +2123.733341 +2123.801306 +2123.819288 +2123.845129 +2123.847027 +2123.860713 +2123.877896 +2123.904736 +2123.906301 +2123.909831 +2123.921919 +2123.960580 +2123.963377 +2123.976764 +2123.991649 +2124.003537 +2124.018056 +2124.019288 +2124.031742 +2124.060180 +2124.078162 +2124.127946 +2124.160380 +2124.172734 +2124.186121 +2124.249657 +2124.256617 +2124.257683 +2124.273533 +2124.276530 +2124.284889 +2124.298975 +2124.300340 +2124.315192 +2124.315891 +2124.316291 +2124.329611 +2124.361046 +2124.381525 +2124.392181 +2124.408199 +2124.441132 +2124.482458 +2124.508198 +2124.510263 +2124.517889 +2124.520053 +2124.535471 +2124.535837 +2124.536170 +2124.554319 +2124.566840 +2124.596110 +2124.606600 +2124.608098 +2124.610263 +2124.626114 +2124.654452 +2124.683656 +2124.684888 +2124.700706 +2124.704668 +2124.744529 +2124.750856 +2124.759547 +2124.775864 +2124.805168 +2124.805634 +2124.846260 +2124.846926 +2124.886886 +2124.888551 +2124.920519 +2124.935038 +2124.936137 +2124.938801 +2124.968837 +2124.978961 +2124.981791 +2124.982157 +2124.991448 +2124.993846 +2124.996077 +2125.008831 +2125.009663 +2125.013193 +2125.021218 +2125.022817 +2125.038934 +2125.040332 +2125.052420 +2125.071102 +2125.083622 +2125.098940 +2125.099640 +2125.100272 +2125.139633 +2125.154485 +2125.165174 +2125.169636 +2125.172134 +2125.186486 +2125.201171 +2125.218121 +2125.225247 +2125.231474 +2125.263809 +2125.278860 +2125.307432 +2125.320619 +2125.321984 +2125.336702 +2125.350355 +2125.353685 +2125.378594 +2125.405567 +2125.410429 +2125.435071 +2125.436935 +2125.468337 +2125.486719 +2125.497508 +2125.513492 +2125.546126 +2125.561577 +2125.563675 +2125.575763 +2125.576696 +2125.577295 +2125.622816 +2125.623882 +2125.640099 +2125.654817 +2125.662143 +2125.666905 +2125.677162 +2125.683522 +2125.706399 +2125.707431 +2125.737301 +2125.750688 +2125.761444 +2125.766805 +2125.785786 +2125.787052 +2125.799206 +2125.813359 +2125.829776 +2125.832473 +2125.837102 +2125.848823 +2125.850388 +2125.861311 +2125.903435 +2125.917987 +2125.919486 +2125.934371 +2128.819416 +2129.796405 +2129.825975 +2130.207227 +2130.272995 +2130.925042 +2131.046121 +2131.188145 +2131.296770 +2131.325408 +2131.366067 +2131.772560 +2132.287811 +2132.329303 +2132.347851 +2132.358907 +2132.373092 +2132.437228 +2132.447018 +2132.489676 +2132.668863 +2132.738760 +2132.785779 +2132.877787 +2132.955476 +2133.100864 +2133.200198 +2133.271660 +2133.459372 +2133.791339 +2134.148782 +2134.150213 +2134.234895 +2134.271126 +2134.308555 +2134.369161 +2134.390207 +2134.423074 +2134.672224 +2134.929533 +2135.053409 +2135.172790 +2135.214848 +2135.253509 +2135.315514 +2135.349080 +2135.364598 +2135.405424 +2135.533595 +2135.607255 +2135.669992 +2136.119376 +2136.121474 +2136.122739 +2136.124071 +2136.124970 +2136.128100 +2136.184078 +2136.187507 +2136.978482 +2136.979448 +2136.980813 +2137.120906 +2137.128532 +2138.132327 +2138.138122 +2138.140353 +2138.194865 +2138.195964 +2138.466793 +2138.978347 +2138.980911 +2139.128330 +2139.196629 +2139.257901 +2140.139052 +2140.140284 +2140.975848 +2140.981342 +2140.981542 +2140.982241 +2141.143313 +2141.244645 +2142.666622 +2142.812542 +2143.264590 +2143.493727 +2143.528193 +2143.595592 +2146.076742 +2146.079306 +2146.081104 +2146.185067 +2146.277308 +2146.279139 +2146.281337 +2146.382769 +2146.479938 +2146.480904 +2146.681869 +2146.684700 +2146.779139 +2146.780637 +2146.785266 +2146.879172 +2146.880237 +2146.881303 +2146.881802 +2146.981170 +2147.077440 +2147.079172 +2147.079838 +2147.180370 +2147.280370 +2147.284466 +2147.380570 +2147.380803 +2147.383267 +2147.479105 +2147.480570 +2147.481669 +2147.580337 +2147.679770 +2147.680703 +2147.780836 +2147.879903 +2147.980603 +2147.980802 +2148.079437 +2148.080736 +2148.081535 +2148.082001 +2148.179703 +2148.180136 +2148.186030 +2148.187862 +2148.280402 +2148.280735 +2148.480003 +2148.481301 +2148.481901 +2148.579636 +2148.579903 +2148.580535 +2148.582234 +2148.680569 +2148.681601 +2148.779470 +2148.781634 +2148.783599 +2148.879270 +2148.880968 +2148.884731 +2148.981534 +2149.081867 +2149.178570 +2149.181800 +2149.183598 +2149.187861 +2149.378537 +2149.378969 +2149.381667 +2149.481833 +2149.579469 +2149.678803 +2149.680368 +2149.683698 +2149.779968 +2149.780634 +2149.782332 +2149.878403 +2149.881367 +2149.883431 +2149.980301 +2149.980634 +2149.982932 +2150.079069 +2150.079801 +2150.080401 +2150.081799 +2150.180800 +2150.379335 +2150.380300 +2150.479634 +2150.481366 +2150.481699 +2150.484230 +2150.580034 +2150.580467 +2150.580833 +2150.581666 +2150.680500 +2150.681432 +2150.780966 +2150.781499 +2150.781998 +2150.787793 +2150.878801 +2150.882498 +2150.978701 +2154.234509 +2156.355952 +2156.525516 +2156.551257 +2156.592715 +2156.651989 +2156.665509 +2156.725382 +2156.782425 +2156.783990 +2156.784290 +2156.809298 +2156.810630 +2156.813994 +2156.929112 +2156.965309 +2156.987886 +2157.001573 +2157.004103 +2157.016225 +2157.075365 +2157.076464 +2157.077130 +2157.090084 +2157.104436 +2157.106368 +2157.174899 +2157.187853 +2157.200507 +2157.211662 +2157.238402 +2157.286054 +2157.301606 +2157.342565 +2157.343963 +2157.356617 +2157.411396 +2157.434406 +2157.446727 +2157.489151 +2157.517489 +2157.527713 +2157.576064 +2157.615724 +2157.656317 +2157.669870 +2157.673866 +2157.694679 +2157.743297 +2157.761079 +2157.775032 +2157.784256 +2157.811528 +2157.821119 +2157.845395 +2157.846627 +2157.859447 +2157.877629 +2157.906667 +2157.910396 +2157.920020 +2157.933373 +2157.945694 +2157.947059 +2157.960379 +2157.977129 +2157.981425 +2157.992547 +2158.006700 +2158.034072 +2158.058448 +2158.096210 +2158.107565 +2158.120719 +2158.122684 +2158.137735 +2158.178195 +2158.183090 +2158.280226 +2158.309264 +2158.331708 +2158.349357 +2158.360246 +2158.360879 +2158.364175 +2158.374831 +2158.387752 +2158.401704 +2158.415590 +2158.432240 +2158.451488 +2158.454884 +2158.464009 +2158.467239 +2158.477462 +2158.479327 +2158.480792 +2158.507199 +2158.524914 +2158.529143 +2158.553386 +2158.554019 +2158.555217 +2158.565307 +2158.577628 +2158.579093 +2158.580858 +2158.592480 +2158.607199 +2158.621051 +2158.622417 +2158.637835 +2158.669370 +2158.676363 +2158.679160 +2158.712626 +2158.714624 +2158.720852 +2158.726513 +2158.728144 +2158.753153 +2158.810429 +2158.815757 +2158.818953 +2158.826113 +2158.838334 +2158.838800 +2158.845427 +2158.868171 +2158.869769 +2158.882057 +2158.893679 +2158.897075 +2158.898440 +2158.900638 +2158.943096 +2158.967305 +2158.988817 +2159.009130 +2159.010895 +2159.014025 +2159.033572 +2159.037235 +2159.041464 +2159.042296 +2159.051820 +2159.055650 +2159.067072 +2159.067871 +2159.095643 +2159.096209 +2159.104468 +2159.118553 +2159.129343 +2159.129809 +2159.130342 +2159.137501 +2159.148457 +2159.186818 +2159.199872 +2159.213692 +2159.215024 +2159.237867 +2159.255217 +2159.261810 +2159.263475 +2159.277228 +2159.285753 +2159.296209 +2159.299739 +2159.301271 +2159.306266 +2159.318320 +2159.348856 +2159.356682 +2159.357714 +2159.381457 +2159.385286 +2159.408730 +2159.414357 +2159.422616 +2159.423248 +2159.452719 +2159.455749 +2159.494277 +2159.501970 +2159.539832 +2159.555683 +2159.558913 +2159.560478 +2159.588383 +2159.605932 +2159.606698 +2159.607964 +2159.623548 +2159.635369 +2159.635869 +2159.639865 +2159.648723 +2159.653185 +2159.663874 +2159.664407 +2159.667337 +2159.670201 +2159.678526 +2159.681723 +2159.684487 +2159.687384 +2159.710727 +2159.725013 +2159.727078 +2159.744127 +2159.754117 +2159.755449 +2159.756815 +2159.773032 +2159.783288 +2159.800404 +2159.802336 +2159.812159 +2159.813258 +2159.846059 +2159.853218 +2159.855849 +2159.859179 +2159.875562 +2159.884487 +2159.890914 +2159.892712 +2159.907863 +2159.908429 +2159.922282 +2159.949555 +2159.950954 +2159.963275 +2159.968636 +2159.992579 +2159.996708 +2160.009029 +2160.023914 +2160.026678 +2160.030008 +2160.040064 +2160.070867 +2160.082122 +2160.083654 +2160.098772 +2160.116688 +2160.127810 +2160.128509 +2160.128942 +2160.142961 +2160.145625 +2160.149089 +2160.155549 +2160.173164 +2160.177993 +2160.191879 +2160.201170 +2160.205366 +2160.217287 +2160.219485 +2160.230307 +2160.245459 +2160.249655 +2160.272432 +2160.275662 +2160.286717 +2160.298606 +2160.299038 +2160.300404 +2160.323747 +2160.340197 +2160.346791 +2160.359345 +2160.359977 +2160.402102 +2160.404067 +2160.416188 +2160.430840 +2160.446125 +2160.447823 +2160.456581 +2160.470101 +2160.487050 +2160.500870 +2160.503634 +2160.511259 +2160.520650 +2160.526477 +2160.529441 +2160.539831 +2160.556148 +2160.561542 +2160.569201 +2160.582421 +2160.583221 +2160.596208 +2160.599638 +2160.610793 +2160.612791 +2160.619285 +2160.627410 +2160.632072 +2160.634436 +2160.656880 +2160.657180 +2160.663041 +2160.671865 +2160.673031 +2160.685984 +2160.702468 +2160.707796 +2160.721682 +2160.736301 +2160.741862 +2160.750020 +2160.753250 +2160.764140 +2160.768235 +2160.829874 +2160.842428 +2160.860110 +2160.887949 +2160.890014 +2160.902734 +2160.916187 +2160.934869 +2165.997434 +2166.757640 +2167.561635 +2168.366030 +2168.389806 +2168.648347 +2171.124968 +2171.186041 +2172.132260 +2172.133026 +2172.402490 +2173.136988 +2173.202455 +2175.974214 +2181.076940 +2181.177439 +2181.178971 +2181.278005 +2181.280236 +2181.377439 +2181.377739 +2181.378438 +2181.378838 +2181.379803 +2181.478638 +2181.482867 +2181.578138 +2181.578538 +2181.578771 +2181.579503 +2181.678271 +2181.679603 +2181.681335 +2181.778171 +2181.779437 +2181.780069 +2181.877438 +2181.878671 +2181.880003 +2182.078237 +2182.078970 +2182.081268 +2182.083066 +2182.178237 +2182.178770 +2182.179303 +2182.279236 +2182.279669 +2182.379369 +2182.579536 +2182.678736 +2182.778104 +2182.778969 +2182.779835 +2182.878803 +2182.978270 +2183.077471 +2183.078270 +2183.178203 +2183.178703 +2183.180035 +2183.278503 +2183.279668 +2183.379069 +2183.578636 +2183.579601 +2183.680867 +2183.681333 +2183.685462 +2183.780434 +2183.879767 +2183.978535 +2184.078635 +2184.279034 +2184.380599 +2184.577969 +2184.781964 +2184.878501 +2184.880865 +2184.976936 +2184.978168 +2184.979300 +2184.979700 +2184.980133 +2185.078701 +2185.080166 +2185.082697 +2185.176969 +2185.179000 +2185.181131 +2185.281364 +2185.378267 +2185.478867 +2185.479200 +2185.480032 +2185.578234 +2185.580632 +2185.679033 +2185.680365 +2185.680865 +2185.978666 +2185.980631 +2187.335209 +2187.369208 +2188.515061 +2188.536173 +2191.084955 +2191.272867 +2191.377962 +2191.388751 +2191.439633 +2191.480159 +2191.583689 +2191.636803 +2191.696510 +2191.708930 +2191.738634 +2191.752487 +2191.779094 +2191.790649 +2191.842497 +2191.853952 +2191.881658 +2191.923749 +2191.938334 +2191.992746 +2192.061078 +2192.102603 +2192.132373 +2192.168071 +2192.196842 +2192.226079 +2192.273965 +2192.341764 +2192.371301 +2192.386486 +2192.398973 +2192.428643 +2192.453552 +2192.471900 +2192.483755 +2192.549056 +2192.565506 +2192.591947 +2192.603635 +2192.616922 +2192.694610 +2192.720418 +2192.761277 +2192.807697 +2192.822083 +2192.846425 +2192.862576 +2192.875829 +2192.890448 +2192.974330 +2193.012692 +2193.014623 +2193.055050 +2193.082322 +2193.128210 +2193.159412 +2193.174963 +2193.185319 +2193.230774 +2193.242695 +2193.244194 +2193.255982 +2193.287051 +2193.325279 +2193.338899 +2193.352219 +2193.365106 +2193.367270 +2193.417487 +2193.419085 +2193.432572 +2193.457414 +2193.457647 +2193.486551 +2193.503467 +2193.514290 +2193.515689 +2193.531872 +2193.550654 +2193.563674 +2193.591679 +2193.629408 +2193.650087 +2193.666737 +2193.667137 +2193.697240 +2193.742628 +2193.747290 +2193.769601 +2193.769934 +2193.812591 +2193.826244 +2193.861076 +2193.862242 +2193.904699 +2193.915821 +2193.956647 +2193.970866 +2193.984719 +2193.997873 +2194.034203 +2194.050120 +2194.069934 +2194.099471 +2194.099837 +2194.129940 +2194.162341 +2194.191079 +2194.218152 +2194.229108 +2194.234336 +2194.245058 +2194.273130 +2194.299371 +2194.304266 +2194.385251 +2194.400236 +2194.412557 +2194.441595 +2194.456114 +2194.469800 +2194.488981 +2194.529940 +2194.543893 +2194.544925 +2194.559810 +2194.575428 +2194.576493 +2194.615588 +2194.620183 +2194.629740 +2194.647556 +2194.657579 +2194.658744 +2194.689147 +2194.691478 +2194.708894 +2194.720816 +2194.722680 +2194.725844 +2194.752051 +2194.766736 +2194.778258 +2194.813556 +2194.820682 +2194.836233 +2194.846223 +2194.886416 +2194.895341 +2195.006729 +2195.037099 +2195.042893 +2195.068001 +2195.096872 +2195.138164 +2195.138764 +2195.154648 +2195.167302 +2195.185817 +2195.257012 +2195.283019 +2195.309526 +2195.313655 +2195.322413 +2195.354848 +2195.366269 +2195.368867 +2195.380322 +2195.383386 +2195.394741 +2195.409360 +2195.423679 +2195.441095 +2195.457745 +2195.483319 +2195.487115 +2195.501501 +2195.502466 +2195.514355 +2195.565004 +2195.609226 +2195.621980 +2195.660941 +2195.675327 +2195.705330 +2195.707894 +2195.736865 +2195.750918 +2195.765170 +2195.767701 +2195.779556 +2195.782819 +2195.796905 +2195.797504 +2195.801334 +2195.808560 +2195.814621 +2195.841594 +2195.843925 +2195.853382 +2195.867135 +2195.878890 +2195.894341 +2195.894874 +2195.922779 +2195.928407 +2195.937964 +2195.938963 +2195.972596 +2197.915851 +2198.976722 +2199.021910 +2199.051814 +2199.117681 +2200.089775 +2200.163701 +2201.003660 +2201.061302 +2201.745883 +2201.765364 +2201.773756 +2201.791804 +2201.825038 +2201.843586 +2201.879450 +2201.880682 +2201.892537 +2201.929133 +2201.957671 +2201.976386 +2202.204724 +2202.215846 +2202.256705 +2202.290205 +2202.302926 +2202.317878 +2202.344984 +2202.743518 +2202.752609 +2202.802393 +2202.812016 +2202.846815 +2202.908586 +2202.942186 +2202.944117 +2202.996132 +2203.035093 +2203.061000 +2203.079515 +2203.139455 +2203.186108 +2203.215313 +2203.235326 +2203.246681 +2203.247181 +2203.271856 +2203.340920 +2203.424869 +2203.437523 +2203.456238 +2203.480181 +2203.868159 +2203.879048 +2203.890437 +2203.897097 +2203.924836 +2203.953574 +2203.966860 +2204.004622 +2204.026267 +2204.069424 +2204.085675 +2204.100560 +2204.132594 +2204.951242 +2205.016310 +2205.105787 +2205.148378 +2205.155071 +2205.190835 +2205.216076 +2206.119306 +2206.210847 +2206.307184 +2206.704054 +2206.885872 +2206.899625 +2206.927497 +2206.940917 +2206.977746 +2206.999791 +2207.006551 +2207.011313 +2207.557100 +2207.587636 +2207.644346 +2207.649174 +2207.657999 +2207.665358 +2207.707682 +2207.708149 +2207.708615 +2207.954668 +2208.056966 +2208.153802 +2208.705550 +2208.706316 +2208.706982 +2208.915873 +2208.963459 +2208.965323 +2208.966489 +2208.967388 +2208.996059 +2208.996692 +2209.081341 +2209.090232 +2209.131890 +2209.342812 +2209.424064 +2209.497124 +2209.508213 +2209.874580 +2209.965789 +2209.969751 +2209.997490 +2210.010677 +2210.933020 +2210.947140 +2211.601118 +2211.621898 +2211.709943 +2211.878407 +2211.936050 +2211.959593 +2212.000485 +2212.012373 +2212.045873 +2212.047338 +2212.058760 +2212.059826 +2212.090096 +2212.186233 +2212.193792 +2212.241111 +2212.241710 +2212.298820 +2212.307911 +2212.323728 +2212.336516 +2212.345540 +2212.368750 +2212.398720 +2212.399486 +2214.448135 +2214.479237 +2215.536712 +2215.788793 +2216.008007 +2216.038743 +2216.368280 +2216.430584 +2216.435679 +2216.437011 +2216.499715 +2216.908772 +2217.108938 +2217.209138 +2217.409537 +2217.410703 +2217.509671 +2217.808571 +2218.006573 +2218.108105 +2218.210536 +2219.108503 +2219.109769 +2219.110834 +2219.213099 +2219.411034 +2219.511733 +2219.707570 +2219.708370 +2219.808469 +2219.809535 +2220.007637 +2220.207936 +2220.208203 +2225.429010 +2226.718919 +2226.841429 +2226.843760 +2226.883787 +2226.895609 +2226.921816 +2226.935502 +2226.957547 +2227.004266 +2227.026910 +2227.064839 +2227.083454 +2227.096507 +2227.111559 +2227.134902 +2227.148089 +2227.149554 +2227.182188 +2227.194809 +2227.196174 +2227.216820 +2227.259444 +2227.291679 +2227.303700 +2227.325978 +2227.351252 +2227.352285 +2227.362441 +2227.385984 +2227.396041 +2227.408129 +2227.421249 +2227.450087 +2227.486650 +2227.490613 +2227.498305 +2227.503367 +2227.512025 +2227.532837 +2227.534636 +2227.545225 +2227.559278 +2227.560743 +2227.562341 +2227.587816 +2227.593643 +2227.599504 +2227.610926 +2227.624645 +2227.637499 +2227.640030 +2227.704266 +2227.713923 +2227.714456 +2227.743826 +2227.748988 +2227.758545 +2227.815255 +2227.816820 +2227.824878 +2227.862407 +2227.889947 +2227.958345 +2228.003233 +2228.004632 +2228.018818 +2228.029174 +2228.029407 +2228.030972 +2228.031338 +2228.044292 +2228.045158 +2228.053783 +2228.066670 +2228.080822 +2228.081322 +2228.082487 +2228.083686 +2228.126310 +2228.142660 +2228.143126 +2228.176327 +2228.190579 +2228.214222 +2228.238331 +2228.250253 +2228.251052 +2228.255347 +2228.263772 +2228.276726 +2228.285484 +2228.288215 +2228.302800 +2228.311225 +2228.314189 +2228.322980 +2228.324145 +2228.335301 +2228.349753 +2228.350186 +2228.351418 +2228.375028 +2228.386882 +2228.390512 +2228.401035 +2228.403066 +2228.411258 +2228.429407 +2228.436400 +2228.438164 +2228.440229 +2228.441028 +2228.449087 +2228.451218 +2228.452816 +2228.454548 +2228.464938 +2228.468867 +2228.481121 +2228.498371 +2228.516486 +2228.517685 +2228.519217 +2228.527908 +2228.530872 +2228.552950 +2228.564971 +2228.575094 +2228.594441 +2228.602800 +2228.604831 +2228.618351 +2228.628008 +2228.630405 +2228.637865 +2228.657711 +2228.660242 +2228.678790 +2228.685017 +2228.689446 +2228.718351 +2228.723379 +2228.726742 +2228.738597 +2228.741161 +2228.742493 +2228.764604 +2228.770765 +2228.778790 +2228.780988 +2228.816186 +2228.832370 +2228.835500 +2228.836066 +2228.875360 +2228.883652 +2228.900135 +2228.906029 +2228.913888 +2228.924045 +2228.937565 +2228.944058 +2228.950385 +2228.950651 +2228.991044 +2228.991511 +2229.004364 +2229.005397 +2229.006163 +2229.020815 +2229.021614 +2229.033402 +2229.034334 +2229.046156 +2229.059809 +2229.060408 +2229.063372 +2229.073961 +2229.118117 +2229.119383 +2229.132436 +2229.145024 +2229.146222 +2229.159409 +2229.162040 +2229.174594 +2229.214354 +2229.215253 +2229.217051 +2229.231570 +2229.242226 +2229.259209 +2229.285816 +2229.298470 +2229.324544 +2229.339129 +2229.340228 +2229.352316 +2229.375460 +2229.390311 +2229.405796 +2229.418350 +2229.428307 +2229.430171 +2229.461041 +2229.472529 +2229.474494 +2229.505663 +2229.534267 +2229.547387 +2229.615486 +2229.628273 +2229.629638 +2229.630138 +2229.673661 +2229.701800 +2229.716418 +2229.716951 +2229.731603 +2229.746721 +2229.764570 +2229.931736 +2230.047087 +2230.103098 +2230.104130 +2230.147620 +2230.203098 +2230.261506 +2230.304962 +2230.319681 +2230.320613 +2230.350117 +2230.461606 +2230.474126 +2230.475725 +2230.491376 +2230.492242 +2230.567533 +2230.729571 +2230.790976 +2230.865002 +2230.867266 +2230.898568 +2230.974026 +2230.988179 +2230.989810 +2231.052514 +2231.069897 +2231.070829 +2231.114552 +2231.133133 +2231.173160 +2231.204595 +2231.221512 +2231.323376 +2231.324675 +2231.337862 +2231.380086 +2231.381918 +2231.398901 +2231.413386 +2231.428804 +2231.457142 +2231.505328 +2231.505760 +2231.521944 +2231.554079 +2231.566699 +2231.596969 +2231.601631 +2231.659573 +2231.691841 +2233.310188 +2242.705183 +2242.959728 +2243.966021 +2244.710875 +2245.707877 +2245.708910 +2245.963322 +2246.063521 +2246.707876 +2246.710973 +2248.560688 +2249.314600 +2249.505043 +2249.613202 +2249.628653 +2249.829685 +2250.039575 +2250.041939 +2251.429916 +2251.709070 +2251.710236 +2251.809670 +2251.811002 +2251.910402 +2251.910802 +2251.911268 +2252.008804 +2252.012100 +2252.016096 +2252.109902 +2252.110901 +2252.111734 +2252.114598 +2252.417761 +2252.513698 +2252.610335 +2252.613765 +2252.717927 +2252.814031 +2252.814797 +2252.912199 +2253.009369 +2253.011433 +2253.211466 +2253.309901 +2253.312865 +2253.410367 +2253.414630 +2253.416062 +2253.509535 +2253.511999 +2253.518925 +2253.610700 +2253.611066 +2253.612432 +2253.710101 +2253.809534 +2253.812398 +2253.910433 +2254.014163 +2254.016627 +2254.109734 +2254.110267 +2254.113530 +2254.209834 +2254.210200 +2254.309933 +2254.317826 +2254.419957 +2254.609534 +2254.611132 +2254.614262 +2254.615361 +2254.710433 +2254.710932 +2254.813030 +2254.911065 +2254.913230 +2255.008468 +2255.011631 +2255.112397 +2255.115094 +2255.210665 +2255.211198 +2255.309599 +2255.312397 +2255.409466 +2255.410532 +2255.412263 +2255.412663 +2255.414861 +2255.511697 +2255.515227 +2255.609533 +2255.612097 +2255.711897 +2255.713628 +2255.812030 +2255.815060 +2255.912196 +2255.917091 +2256.014028 +2256.111197 +2256.309565 +2256.310031 +2256.310564 +2256.313228 +2256.411397 +2256.413328 +2256.510564 +2256.512329 +2256.516491 +2256.610064 +2256.711263 +2256.712895 +2261.723113 +2261.728341 +2261.762340 +2261.809859 +2261.844391 +2261.881488 +2261.893009 +2261.926409 +2261.947455 +2261.981654 +2262.004065 +2262.016519 +2262.059743 +2262.083852 +2262.084351 +2262.086283 +2262.108194 +2262.174028 +2262.199003 +2262.211624 +2262.258444 +2262.269000 +2262.284185 +2262.306562 +2262.318916 +2262.321381 +2262.331171 +2262.354914 +2262.367934 +2262.377125 +2262.388147 +2262.390045 +2262.413089 +2262.450052 +2262.466036 +2262.499169 +2262.510558 +2262.536665 +2262.539163 +2262.565003 +2262.577624 +2262.589712 +2262.592842 +2262.619682 +2262.639795 +2262.652616 +2262.674993 +2262.724078 +2262.736199 +2262.750551 +2262.754580 +2262.776392 +2262.777924 +2262.786082 +2262.787381 +2262.798103 +2262.812356 +2262.846522 +2262.848520 +2262.860075 +2262.863938 +2262.897537 +2262.922179 +2262.957178 +2262.993075 +2262.994407 +2262.996172 +2263.042992 +2263.044057 +2263.056545 +2263.056878 +2263.069665 +2263.070131 +2263.082752 +2263.117550 +2263.142858 +2263.157477 +2263.158076 +2263.178423 +2263.189678 +2263.191376 +2263.203797 +2263.205462 +2263.207027 +2263.223644 +2263.225076 +2263.233767 +2263.244956 +2263.245755 +2263.253714 +2263.269631 +2263.273794 +2263.280953 +2263.284450 +2263.289811 +2263.292908 +2263.306661 +2263.318549 +2263.322179 +2263.323145 +2263.345389 +2263.345955 +2263.353647 +2263.358409 +2263.366634 +2263.372861 +2263.385649 +2263.398636 +2263.399535 +2263.409758 +2263.410257 +2263.411156 +2263.412888 +2263.417284 +2263.423577 +2263.440793 +2263.442026 +2263.447986 +2263.462239 +2263.466401 +2263.482019 +2263.487413 +2263.506328 +2263.514287 +2263.540360 +2263.541493 +2263.553914 +2263.559841 +2263.566135 +2263.580420 +2263.581386 +2263.601066 +2263.612122 +2263.624043 +2263.624976 +2263.625275 +2263.636398 +2263.650650 +2263.654613 +2263.655545 +2263.661539 +2263.666001 +2263.689478 +2263.690177 +2263.691509 +2263.702565 +2263.705828 +2263.716118 +2263.718149 +2263.723011 +2263.729804 +2263.730970 +2263.743657 +2263.755379 +2263.757676 +2263.759774 +2263.769897 +2263.771895 +2263.782651 +2263.828672 +2263.835199 +2263.835498 +2263.853680 +2263.871329 +2263.871629 +2263.872661 +2263.875858 +2263.887013 +2263.896937 +2263.898369 +2263.904762 +2263.906461 +2263.913221 +2263.927340 +2263.943191 +2263.954945 +2263.965368 +2263.966967 +2263.967466 +2264.056810 +2264.061572 +2264.065701 +2264.106827 +2264.116317 +2264.129937 +2264.143690 +2264.157643 +2264.172628 +2264.211289 +2264.212288 +2264.219647 +2264.226340 +2264.240626 +2264.266434 +2264.306061 +2264.306527 +2264.335498 +2264.362937 +2264.364236 +2264.365768 +2264.390976 +2264.410656 +2264.414286 +2264.418515 +2264.431335 +2264.444289 +2264.471628 +2264.472727 +2264.499833 +2264.516350 +2264.558408 +2264.585348 +2264.626540 +2264.667466 +2264.722777 +2264.734698 +2264.749883 +2264.750283 +2264.751382 +2264.767532 +2264.961871 +2265.030302 +2265.090176 +2265.103163 +2265.117215 +2265.187279 +2265.202796 +2265.304361 +2265.765933 +2266.084281 +2266.097201 +2266.685612 +2266.698699 +2276.713774 +2278.711408 +2278.712307 +2279.711873 +2279.712838 +2280.878372 +2280.949834 +2281.709240 +2281.876906 +2286.808236 +2286.809202 +2286.811066 +2286.910667 +2286.911799 +2286.916394 +2287.009601 +2287.010667 +2287.011299 +2287.012032 +2287.013297 +2287.015895 +2287.109834 +2287.110833 +2287.111466 +2287.112431 +2287.112731 +2287.113131 +2287.113963 +2287.114230 +2287.121456 +2287.209901 +2287.210733 +2287.211466 +2287.212065 +2287.214363 +2287.311732 +2287.312231 +2287.313230 +2287.317726 +2287.411432 +2287.412698 +2287.414063 +2287.512731 +2287.515095 +2287.610100 +2287.610533 +2287.611798 +2287.711998 +2287.713230 +2287.811232 +2287.814262 +2287.815028 +2287.911898 +2287.912664 +2287.912930 +2288.009800 +2288.015095 +2288.015428 +2288.114329 +2288.211132 +2288.212131 +2288.213030 +2288.409866 +2288.411398 +2288.411731 +2288.411897 +2288.415227 +2288.511198 +2288.512097 +2288.512996 +2288.514295 +2288.611198 +2288.614461 +2288.711331 +2288.712863 +2288.713962 +2288.812197 +2288.812729 +2288.815327 +2288.816492 +2288.911497 +2288.912796 +2288.914494 +2288.915327 +2289.010398 +2289.012862 +2289.014361 +2289.015127 +2289.015660 +2289.111197 +2289.111664 +2289.113761 +2289.115327 +2289.210498 +2289.211264 +2289.211530 +2289.212196 +2289.213195 +2289.214860 +2289.311297 +2289.312729 +2289.313062 +2289.315393 +2289.411031 +2289.411397 +2289.412529 +2289.415160 +2289.511297 +2289.512163 +2289.513928 +2289.516358 +2289.612163 +2289.613628 +2289.614727 +2289.711163 +2289.716192 +2289.721786 +2289.812096 +2289.812629 +2289.813894 +2289.814760 +2289.815226 +2289.910364 +2289.911263 +2289.911663 +2289.913761 +2290.011063 +2290.011596 +2290.013061 +2290.111096 +2290.114360 +2290.212162 +2290.219088 +2290.312961 +2290.412894 +2290.413460 +2290.414260 +2290.510497 +2290.510963 +2290.610996 +2290.611262 +2290.611995 +2290.614659 +2290.617989 +2290.711262 +2290.713194 +2290.715358 +2290.810963 +2290.811429 +2290.812761 +2290.813760 +2290.814792 +2290.816357 +2290.910463 +2290.910962 +2290.911395 +2290.912161 +2290.914159 +2290.915125 +2290.915624 +2291.013427 +2291.111029 +2291.112494 +2291.112694 +2291.210429 +2291.210929 +2291.212494 +2291.215458 +2291.310329 +2291.310562 +2291.312960 +2291.313926 +2291.315557 +2291.318221 +2291.322417 +2291.411195 +2291.413360 +2291.415757 +2291.515657 +2291.516423 +2291.610662 +2291.611095 +2291.612926 +2291.713526 +2291.716023 +2291.717355 +2295.998270 +2296.745988 +2296.754180 +2296.764137 +2296.795872 +2296.803431 +2296.804963 +2296.816384 +2296.818416 +2296.876857 +2296.938496 +2296.954813 +2296.967134 +2297.038262 +2297.053780 +2297.076657 +2297.097969 +2297.124409 +2297.130170 +2297.159941 +2297.199101 +2297.201266 +2297.214586 +2297.228172 +2297.252315 +2297.255445 +2297.265735 +2297.266068 +2297.266567 +2297.279121 +2297.292841 +2297.327839 +2297.346987 +2297.362704 +2297.363104 +2297.365069 +2297.411289 +2297.435598 +2297.436164 +2297.439794 +2297.470963 +2297.483983 +2297.498135 +2297.498801 +2297.551016 +2297.561738 +2297.568165 +2297.577922 +2297.585481 +2297.618182 +2297.628805 +2297.630603 +2297.631335 +2297.645288 +2297.655012 +2297.656677 +2297.657110 +2297.668665 +2297.681385 +2297.686180 +2297.692374 +2297.705861 +2297.717582 +2297.718914 +2297.731801 +2297.741092 +2297.754945 +2297.761538 +2297.765934 +2297.767732 +2297.791209 +2297.801598 +2297.827339 +2297.836963 +2297.843090 +2297.851981 +2297.855344 +2297.875924 +2297.876323 +2297.876989 +2297.887812 +2297.902897 +2297.905861 +2297.913520 +2297.915717 +2297.950716 +2297.963170 +2297.963569 +2298.001465 +2298.002431 +2298.036430 +2298.038761 +2298.051049 +2298.054578 +2298.075857 +2298.076456 +2298.076823 +2298.092973 +2298.100233 +2298.101831 +2298.113919 +2298.115118 +2298.116949 +2298.127738 +2298.129736 +2298.132600 +2298.140492 +2298.140925 +2298.160905 +2298.165434 +2298.176556 +2298.178554 +2298.189177 +2298.238361 +2298.238927 +2298.261338 +2298.267332 +2298.268597 +2298.287079 +2298.312520 +2298.313219 +2298.340492 +2298.341791 +2298.361638 +2298.363969 +2298.366400 +2298.366832 +2298.426872 +2298.429936 +2298.438994 +2298.439426 +2298.449650 +2298.475557 +2298.516716 +2298.519247 +2298.553446 +2298.555310 +2298.567332 +2298.567865 +2298.586546 +2298.591841 +2298.600931 +2298.624608 +2298.668863 +2298.682250 +2298.683449 +2298.684614 +2298.693239 +2298.755410 +2298.793772 +2298.801464 +2298.816183 +2298.818580 +2298.879886 +2298.913785 +2299.293904 +2299.461670 +2299.628003 +2300.107390 +2300.531266 +2301.564432 +2311.980938 +2311.984701 +2312.708210 +2312.712905 +2313.710107 +2313.711739 +2313.712471 +2314.712470 +2315.712836 +2315.938610 +2316.709871 +2316.923857 +2316.942105 +2316.974340 +2319.887890 +2319.943001 +2321.912863 +2321.913396 +2321.914228 +2321.916126 +2321.916892 +2322.011164 +2322.011864 +2322.013862 +2322.111264 +2322.113762 +2322.117824 +2322.213562 +2322.310565 +2322.311331 +2322.311697 +2322.410698 +2322.414827 +2322.416725 +2322.511663 +2322.513828 +2322.610664 +2322.614960 +2322.710698 +2322.711031 +2322.712129 +2322.714094 +2322.811763 +2322.910797 +2322.911530 +2322.916658 +2323.011530 +2323.011996 +2323.013328 +2323.113394 +2323.114260 +2323.211663 +2323.311763 +2323.312129 +2323.414127 +2323.415392 +2323.512428 +2323.512994 +2323.513760 +2323.514060 +2323.610730 +2323.611895 +2323.614959 +2323.615758 +2323.711662 +2323.811929 +2323.812428 +2323.912561 +2323.913960 +2324.014726 +2324.111895 +2324.113527 +2324.115858 +2324.116291 +2324.210929 +2324.211628 +2324.212161 +2324.213194 +2324.311029 +2324.311595 +2324.312028 +2324.317889 +2324.411595 +2324.413293 +2324.413626 +2324.415524 +2324.416190 +2324.416657 +2324.511562 +2324.512327 +2324.513027 +2324.514192 +2324.516057 +2324.610696 +2324.614259 +2324.615591 +2324.618321 +2324.710229 +2324.711961 +2324.713360 +2324.713859 +2324.715091 +2324.715557 +2324.811628 +2324.811994 +2324.814858 +2324.910662 +2324.911062 +2324.911528 +2324.913126 +2324.913759 +2324.915058 +2324.915191 +2325.012194 +2325.013093 +2325.013259 +2325.013659 +2325.111561 +2325.113459 +2325.113892 +2325.114391 +2325.210995 +2325.211594 +2325.310828 +2325.311960 +2325.312726 +2325.313525 +2325.315557 +2325.411461 +2325.411927 +2325.413126 +2325.413559 +2325.414125 +2325.415623 +2325.511327 +2325.511660 +2325.512127 +2325.517255 +2325.614491 +2325.614791 +2325.615323 +2325.615723 +2325.618254 +2325.714457 +2325.715623 +2325.718620 +2325.811627 +2325.814524 +2325.817987 +2325.910295 +2325.910761 +2325.911827 +2325.913292 +2325.913891 +2325.915922 +2325.917488 +2326.010794 +2326.016688 +2326.111393 +2326.111826 +2326.112559 +2326.113058 +2326.114690 +2326.115123 +2326.119918 +2326.210761 +2326.212126 +2326.213192 +2326.215056 +2326.217953 +2326.310994 +2326.313391 +2326.315955 +2326.411493 +2326.414490 +2326.415556 +2326.415722 +2326.418919 +2326.511493 +2326.514290 +2326.515589 +2326.516088 +2326.516521 +2326.613191 +2326.615289 +2326.616488 +2326.711626 +2326.714057 +2326.714257 +2326.714923 +2326.716321 +2327.708695 +2327.734202 +2330.002765 +2330.003065 +2330.030970 +2331.762304 +2332.023742 +2332.104295 +2332.290275 +2332.313918 +2332.366366 +2332.378687 +2332.403628 +2332.453179 +2332.463502 +2332.474824 +2332.487911 +2332.500531 +2332.512886 +2332.524541 +2332.525540 +2332.536129 +2332.536462 +2332.550048 +2332.562769 +2332.577188 +2332.590641 +2332.599332 +2332.599765 +2332.612852 +2332.627737 +2332.640158 +2332.651280 +2332.652346 +2332.712253 +2332.733831 +2332.775256 +2332.786645 +2332.809355 +2332.819912 +2332.842123 +2332.855642 +2332.867963 +2332.933132 +2332.958573 +2332.960671 +2332.960937 +2332.969462 +2332.971626 +2332.981317 +2332.996768 +2333.011886 +2333.024973 +2333.047517 +2333.099598 +2333.110088 +2333.124507 +2333.133364 +2333.147184 +2333.160537 +2333.171560 +2333.180784 +2333.186112 +2333.205825 +2333.211686 +2333.223541 +2333.224407 +2333.230267 +2333.236694 +2333.247117 +2333.258739 +2333.270394 +2333.273358 +2333.279252 +2333.280051 +2333.291906 +2333.305792 +2333.322375 +2333.330301 +2333.340524 +2333.354210 +2333.355009 +2333.386977 +2333.397200 +2333.420211 +2333.470427 +2333.475289 +2333.483680 +2333.512851 +2333.521476 +2333.539258 +2333.553844 +2333.563567 +2333.597500 +2333.602462 +2333.611053 +2333.625006 +2333.637560 +2333.638892 +2333.639191 +2333.640523 +2333.650014 +2333.665032 +2333.666065 +2333.678952 +2333.692938 +2333.707723 +2333.717247 +2333.718412 +2333.744153 +2333.780883 +2333.804959 +2333.809221 +2333.817413 +2333.832631 +2333.851013 +2333.860603 +2333.862868 +2333.873024 +2333.873923 +2333.889208 +2333.911319 +2333.922907 +2333.939591 +2333.953510 +2333.963733 +2333.965099 +2333.965931 +2333.967296 +2333.978419 +2333.992871 +2333.993570 +2334.015648 +2334.039657 +2334.065298 +2334.066131 +2334.091639 +2334.106624 +2334.108622 +2334.118112 +2334.119744 +2334.133397 +2334.139690 +2334.156707 +2334.169760 +2334.171692 +2334.186877 +2334.198865 +2334.211186 +2334.213150 +2334.224439 +2334.240989 +2334.266330 +2334.320376 +2334.322507 +2334.349747 +2334.350146 +2334.362634 +2334.378019 +2334.390340 +2334.417812 +2334.431898 +2334.460569 +2334.500995 +2334.587009 +2334.614149 +2334.659737 +2334.666796 +2334.732930 +2334.748315 +2334.843819 +2334.989839 +2335.047049 +2335.061534 +2335.093902 +2335.318211 +2335.445184 +2335.562400 +2335.718843 +2335.728067 +2335.992835 +2336.003292 +2336.017877 +2336.030564 +2336.179049 +2336.180148 +2336.180781 +2336.702458 +2344.076344 +2345.429223 +2345.592693 +2345.655796 +2347.713436 +2348.252064 +2348.459590 +2348.713003 +2349.354694 +2349.512835 +2349.531583 +2349.551963 +2349.714633 +2356.281826 +2356.284390 +2356.301740 +2356.343298 +2356.810630 +2356.812062 +2356.814093 +2356.911030 +2356.911463 +2356.912795 +2356.913527 +2356.914460 +2357.011429 +2357.012595 +2357.016491 +2357.111862 +2357.211829 +2357.212228 +2357.213627 +2357.312861 +2357.411229 +2357.411828 +2357.413327 +2357.512428 +2357.515225 +2357.811661 +2357.812094 +2357.814825 +2357.912028 +2357.913493 +2357.916523 +2358.011062 +2358.011961 +2358.012394 +2358.014359 +2358.014825 +2358.111595 +2358.115191 +2358.210829 +2358.212760 +2358.213759 +2358.214192 +2358.311594 +2358.312061 +2358.312327 +2358.314358 +2358.315024 +2358.412294 +2358.416756 +2358.512027 +2358.512260 +2358.512693 +2358.514924 +2358.612593 +2358.613759 +2358.712327 +2358.712893 +2358.714191 +2358.715124 +2358.812127 +2358.817155 +2359.014890 +2359.112226 +2359.116855 +2359.213025 +2359.213225 +2359.213891 +2359.214457 +2359.217454 +2359.311427 +2359.314690 +2359.409895 +2359.612159 +2359.614057 +2359.614590 +2359.616288 +2359.710661 +2359.711227 +2359.711993 +2359.712725 +2359.714723 +2359.812259 +2359.812892 +2359.813058 +2359.813924 +2359.814523 +2359.910927 +2359.912725 +2360.011759 +2360.012125 +2360.014057 +2360.014789 +2360.110960 +2360.111759 +2360.115389 +2360.116055 +2360.212358 +2360.212891 +2360.213257 +2360.213857 +2360.214290 +2360.311692 +2360.312558 +2360.313157 +2360.313757 +2360.315688 +2360.411326 +2360.412158 +2360.412625 +2360.413157 +2360.511725 +2360.512225 +2360.612225 +2360.614522 +2360.614689 +2360.712225 +2360.712658 +2360.714323 +2360.715588 +2360.812125 +2360.817486 +2360.819717 +2360.912591 +2360.914689 +2361.012124 +2361.012457 +2361.014222 +2361.016154 +2361.021615 +2361.112557 +2361.112990 +2361.114722 +2361.213390 +2361.213889 +2361.214156 +2361.215754 +2361.217585 +2361.225111 +2361.312257 +2361.312524 +2361.313023 +2361.314255 +2361.413023 +2361.413523 +2361.415321 +2361.416553 +2361.511724 +2361.512457 +2361.512857 +2361.513856 +2361.514288 +2361.514721 +2361.613722 +2361.614422 +2361.614988 +2361.615321 +2361.616353 +2361.712124 +2361.714388 +2361.714788 +2361.715587 +2361.716386 +2361.717219 +2363.067001 +2363.080621 +2363.173561 +2363.193874 +2363.339295 +2364.297536 +2364.356810 +2364.432501 +2364.516550 +2365.484081 +2365.532333 +2365.532733 +2365.544188 +2365.550615 +2365.656709 +2367.045885 +2367.206424 +2367.239291 +2367.250247 +2367.343487 +2367.357839 +2367.422008 +2367.490540 +2367.529734 +2367.607922 +2367.633730 +2367.690473 +2367.713683 +2367.722108 +2367.736160 +2367.774322 +2367.788208 +2367.835294 +2367.835727 +2367.872690 +2367.897632 +2367.898764 +2367.912184 +2367.923440 +2367.927835 +2367.937892 +2367.954675 +2367.959270 +2367.970193 +2367.996400 +2368.016913 +2368.051212 +2368.072490 +2368.073889 +2368.097465 +2368.111018 +2368.132031 +2368.172357 +2368.182014 +2368.192237 +2368.207788 +2368.210319 +2368.228368 +2368.232597 +2368.233429 +2368.236426 +2368.252743 +2368.253509 +2368.262600 +2368.275454 +2368.276653 +2368.286276 +2368.288241 +2368.314581 +2368.318511 +2368.328035 +2368.329733 +2368.340455 +2368.351911 +2368.352976 +2368.362100 +2368.379250 +2368.389706 +2368.391571 +2368.405257 +2368.411285 +2368.413183 +2368.413582 +2368.419210 +2368.425071 +2368.429466 +2368.430832 +2368.433396 +2368.440489 +2368.441654 +2368.443752 +2368.445950 +2368.450978 +2368.452676 +2368.471957 +2368.477019 +2368.489040 +2368.490971 +2368.503492 +2368.506922 +2368.508054 +2368.519410 +2368.530332 +2368.537725 +2368.543452 +2368.545051 +2368.576253 +2368.582513 +2368.583312 +2368.595234 +2368.609020 +2368.610019 +2368.616779 +2368.622074 +2368.622407 +2368.623838 +2368.624937 +2368.637625 +2368.637924 +2368.647615 +2368.648314 +2368.675287 +2368.688107 +2368.688440 +2368.689506 +2368.701194 +2368.708420 +2368.750911 +2368.754141 +2368.754641 +2368.763765 +2368.780249 +2368.787208 +2368.799096 +2368.800728 +2368.803292 +2368.814081 +2368.814448 +2368.815313 +2368.829666 +2368.830631 +2368.843918 +2368.857405 +2368.867261 +2368.871191 +2368.882513 +2368.884178 +2368.903092 +2368.904524 +2368.919742 +2368.929532 +2368.943618 +2368.947148 +2368.950745 +2368.951710 +2368.972822 +2368.978916 +2368.998497 +2368.999063 +2369.002126 +2369.014647 +2369.026868 +2369.045483 +2369.052876 +2369.055406 +2369.079682 +2369.080481 +2369.083911 +2369.089739 +2369.090505 +2369.102892 +2369.105856 +2369.114980 +2369.116812 +2369.128999 +2369.156672 +2369.157604 +2369.158736 +2369.168760 +2369.172190 +2369.182279 +2369.189972 +2369.210818 +2369.221440 +2369.237258 +2369.250578 +2369.251577 +2369.257204 +2369.265829 +2369.282080 +2369.307887 +2369.313148 +2369.321074 +2369.323471 +2369.333828 +2369.374021 +2369.402359 +2369.419342 +2369.440055 +2369.458703 +2369.471357 +2369.494667 +2369.499928 +2369.500461 +2369.540221 +2369.553974 +2369.554707 +2369.556638 +2369.568260 +2369.580614 +2369.610751 +2369.641453 +2369.664597 +2369.681247 +2369.705855 +2369.720674 +2369.729398 +2369.732662 +2369.745582 +2369.745882 +2369.759468 +2369.858136 +2369.884044 +2369.897097 +2369.942219 +2369.957570 +2369.958602 +2370.019908 +2370.035026 +2370.050044 +2370.095432 +2370.165995 +2370.167693 +2370.185842 +2370.327200 +2370.428499 +2370.430497 +2370.475252 +2370.489404 +2370.560633 +2370.577316 +2370.620540 +2370.634925 +2370.664363 +2370.707986 +2370.725834 +2370.783610 +2370.784376 +2370.785175 +2370.816277 +2370.841918 +2370.858934 +2370.874752 +2370.876051 +2370.890603 +2370.934559 +2370.950876 +2371.217209 +2371.283643 +2371.306153 +2371.323270 +2371.367925 +2371.398394 +2371.504189 +2371.521371 +2371.537122 +2371.539087 +2371.553040 +2371.554238 +2371.602390 +2372.121704 +2372.146479 +2373.304919 +2373.339085 +2373.387703 +2373.419238 +2373.468622 +2373.477480 +2375.049207 +2378.771148 +2378.857295 +2378.950635 +2383.009006 +2384.712034 +2386.714796 +2389.659682 +2390.665808 +2391.714891 +2391.811761 +2391.812626 +2391.814025 +2391.913525 +2392.010295 +2392.011128 +2392.012127 +2392.013359 +2392.112393 +2392.113725 +2392.212726 +2392.213225 +2392.313958 +2392.314591 +2392.316755 +2392.413159 +2392.512093 +2392.512759 +2392.609729 +2392.612626 +2392.712959 +2392.715556 +2392.815622 +2392.817620 +2393.013225 +2393.014590 +2393.014956 +2393.113391 +2393.113990 +2393.214457 +2393.215289 +2393.312292 +2393.312758 +2393.313224 +2393.315755 +2393.412159 +2393.413158 +2393.417054 +2393.417387 +2393.512691 +2393.512924 +2393.514323 +2393.515156 +2393.518352 +2393.614190 +2393.712158 +2393.712758 +2393.715522 +2393.716088 +2393.717453 +2393.812092 +2393.813024 +2393.813557 +2393.914389 +2393.920150 +2394.112358 +2394.113057 +2394.114822 +2394.214722 +2394.215188 +2394.312258 +2394.313024 +2394.313423 +2394.313856 +2394.315155 +2394.315754 +2394.317486 +2394.414988 +2394.415388 +2394.417619 +2394.512224 +2394.515454 +2394.612391 +2394.612957 +2394.615088 +2394.615487 +2394.616720 +2394.629307 +2394.712590 +2394.716553 +2394.912057 +2394.912956 +2395.012324 +2395.012923 +2395.013456 +2395.015221 +2395.016752 +2395.117285 +2395.213422 +2395.216919 +2395.312956 +2395.315187 +2395.412923 +2395.413655 +2395.414854 +2395.416985 +2395.512523 +2395.513322 +2395.514687 +2395.515220 +2395.516319 +2395.612489 +2395.613688 +2395.615720 +2395.616552 +2395.616885 +2395.618084 +2395.715486 +2395.716718 +2395.813155 +2395.815187 +2395.816718 +2395.820648 +2395.913089 +2396.013921 +2396.016585 +2396.111856 +2396.112755 +2396.115419 +2396.115985 +2396.212855 +2396.213122 +2396.213255 +2396.214320 +2396.217317 +2396.312922 +2396.313388 +2396.314021 +2396.314587 +2396.412089 +2396.416218 +2396.417584 +2396.512156 +2396.513055 +2396.513488 +2396.515186 +2396.515685 +2396.516351 +2396.519914 +2396.612988 +2396.615685 +2396.616551 +2396.713188 +2396.719748 +2397.896503 +2400.399697 +2400.414416 +2401.729133 +2401.935061 +2401.970225 +2401.999363 +2402.001860 +2402.047248 +2402.070159 +2402.091604 +2402.102626 +2402.158204 +2402.197465 +2402.226302 +2402.262000 +2402.364531 +2402.415713 +2402.428167 +2402.454108 +2402.467095 +2402.494467 +2402.518410 +2402.520574 +2402.520907 +2402.532296 +2402.546582 +2402.583245 +2402.632429 +2402.637391 +2402.645982 +2402.661800 +2402.686109 +2402.698263 +2402.710618 +2402.772655 +2402.783511 +2402.793967 +2402.812815 +2402.822173 +2402.837624 +2402.886608 +2402.907387 +2402.923504 +2402.958170 +2402.963131 +2402.964364 +2403.011450 +2403.024603 +2403.072955 +2403.100427 +2403.105689 +2403.112748 +2403.147547 +2403.148779 +2403.153241 +2403.155006 +2403.162632 +2403.163431 +2403.165029 +2403.176684 +2403.177783 +2403.183311 +2403.229998 +2403.236491 +2403.249012 +2403.272355 +2403.288905 +2403.318243 +2403.326401 +2403.336025 +2403.339022 +2403.343917 +2403.350211 +2403.367027 +2403.376817 +2403.377217 +2403.379814 +2403.389971 +2403.392835 +2403.398629 +2403.402192 +2403.417177 +2403.426767 +2403.430963 +2403.442119 +2403.468059 +2403.484543 +2403.507786 +2403.508685 +2403.524203 +2403.533660 +2403.537190 +2403.547380 +2403.559268 +2403.563031 +2403.577150 +2403.584776 +2403.597663 +2403.601925 +2403.608585 +2403.611516 +2403.625435 +2403.638222 +2403.640420 +2403.649777 +2403.663264 +2403.664030 +2403.665428 +2403.674120 +2403.675585 +2403.676850 +2403.682012 +2403.688339 +2403.690903 +2403.712948 +2403.713980 +2403.729731 +2403.730363 +2403.731196 +2403.741952 +2403.748212 +2403.768392 +2403.783943 +2403.784576 +2403.785275 +2403.786108 +2403.808652 +2403.810616 +2403.812814 +2403.821805 +2403.824802 +2403.825901 +2403.836324 +2403.849910 +2403.889970 +2403.900427 +2403.906387 +2403.911316 +2403.912981 +2403.913680 +2403.930663 +2403.949178 +2403.964396 +2403.975718 +2403.979581 +2403.988738 +2404.001592 +2404.002757 +2404.004256 +2404.014612 +2404.017110 +2404.019141 +2404.043417 +2404.045381 +2404.054905 +2404.056637 +2404.058768 +2404.091102 +2404.104689 +2404.120972 +2404.135225 +2404.146813 +2404.148179 +2404.158069 +2404.172254 +2404.188805 +2404.196830 +2404.200326 +2404.200859 +2404.203956 +2404.231229 +2404.257070 +2404.270556 +2404.277882 +2404.283310 +2404.288238 +2404.289204 +2404.297729 +2404.303656 +2404.319773 +2404.335957 +2404.343983 +2404.345914 +2404.354838 +2404.367559 +2404.369957 +2404.383410 +2404.384176 +2404.412114 +2404.426600 +2404.455138 +2404.467725 +2404.507053 +2404.512214 +2404.520006 +2404.521671 +2404.539087 +2404.550110 +2404.563962 +2404.591701 +2404.592534 +2404.624735 +2404.636024 +2404.639387 +2404.650842 +2404.659067 +2404.664995 +2404.682044 +2404.694132 +2404.712614 +2404.722537 +2404.736523 +2404.743283 +2404.798361 +2404.810249 +2404.823969 +2404.839620 +2404.880379 +2404.918208 +2404.939320 +2404.968058 +2404.975018 +2405.020039 +2405.025967 +2405.065860 +2405.081245 +2405.082244 +2405.095330 +2405.110415 +2405.223702 +2405.252640 +2405.271154 +2405.283542 +2405.341651 +2405.360532 +2405.369423 +2405.398860 +2405.401724 +2405.416076 +2405.430861 +2405.520638 +2405.561963 +2405.606019 +2405.636023 +2405.650275 +2405.696096 +2405.723302 +2405.753971 +2405.766559 +2405.812346 +2405.814710 +2405.843448 +2405.846745 +2405.905220 +2405.935623 +2405.981477 +2406.011347 +2406.013478 +2406.087904 +2406.101623 +2406.102156 +2406.136555 +2406.150508 +2406.151507 +2406.178613 +2406.226931 +2406.255003 +2406.288037 +2406.328996 +2406.329628 +2406.330694 +2406.393731 +2406.425332 +2406.455902 +2406.456535 +2406.472452 +2406.533657 +2406.535722 +2406.565759 +2406.594863 +2409.599522 +2409.766122 +2416.711569 +2416.714233 +2417.714765 +2418.714864 +2419.714730 +2420.263947 +2420.348395 +2421.711664 +2421.712663 +2421.713562 +2422.827481 +2422.860381 +2424.908164 +2425.902103 +2426.816554 +2427.010760 +2427.012225 +2427.013057 +2427.113357 +2427.115954 +2427.312424 +2427.312591 +2427.313690 +2427.511858 +2427.513190 +2427.612025 +2427.615787 +2427.712457 +2427.713323 +2427.713956 +2427.812491 +2427.814289 +2427.816520 +2428.012557 +2428.112390 +2428.112923 +2428.116853 +2428.214355 +2428.311857 +2428.312790 +2428.313256 +2428.320549 +2428.411524 +2428.415254 +2428.514688 +2428.613955 +2428.618817 +2428.714754 +2428.813189 +2428.815986 +2428.915553 +2428.916752 +2429.015420 +2429.016252 +2429.016952 +2429.114620 +2429.211590 +2429.211956 +2429.312389 +2429.317084 +2429.412722 +2429.414953 +2429.416485 +2429.514121 +2429.519881 +2429.612356 +2429.612855 +2429.711923 +2429.712655 +2429.714020 +2429.714753 +2429.717017 +2429.717950 +2429.816818 +2429.911889 +2429.913055 +2429.914620 +2429.918749 +2430.011789 +2430.012255 +2430.012422 +2430.013054 +2430.014287 +2430.017317 +2430.017950 +2430.113054 +2430.114686 +2430.115552 +2430.211789 +2430.212222 +2430.213088 +2430.213487 +2430.215885 +2430.216817 +2430.219481 +2430.311556 +2430.311922 +2430.312421 +2430.315252 +2430.317916 +2430.411755 +2430.412455 +2430.416684 +2430.512388 +2430.513553 +2430.515285 +2430.611922 +2430.612388 +2430.612987 +2430.614652 +2430.616417 +2430.712255 +2430.717516 +2430.718615 +2430.811555 +2430.812354 +2430.814352 +2430.814719 +2430.815318 +2430.815684 +2430.816783 +2430.911555 +2430.912154 +2430.912920 +2430.913953 +2430.914319 +2430.915118 +2431.011988 +2431.012487 +2431.013020 +2431.013919 +2431.015951 +2431.112321 +2431.112620 +2431.113087 +2431.114019 +2431.114485 +2431.116483 +2431.211655 +2431.212820 +2431.213519 +2431.216250 +2431.312587 +2431.314751 +2431.412354 +2431.414485 +2431.417582 +2431.512354 +2431.514984 +2431.515650 +2431.612354 +2431.615184 +2431.616516 +2431.617615 +2431.712420 +2435.028900 +2436.711749 +2436.981546 +2437.107553 +2437.247613 +2437.248512 +2437.292335 +2437.330430 +2437.342285 +2437.382611 +2437.420040 +2437.453606 +2437.475618 +2437.487406 +2437.521738 +2437.533193 +2437.538322 +2437.545415 +2437.557802 +2437.558501 +2437.585075 +2437.656170 +2437.750243 +2437.760333 +2437.838887 +2437.854239 +2437.885907 +2437.902690 +2437.928764 +2437.940719 +2437.943849 +2437.963330 +2437.988105 +2438.020372 +2438.028731 +2438.050376 +2438.059700 +2438.062530 +2438.073553 +2438.073852 +2438.085307 +2438.085973 +2438.087638 +2438.110682 +2438.112114 +2438.116110 +2438.123269 +2438.189037 +2438.204355 +2438.212447 +2438.214212 +2438.226067 +2438.226433 +2438.243782 +2438.255171 +2438.290502 +2438.292900 +2438.303189 +2438.306253 +2438.306852 +2438.316476 +2438.338154 +2438.350109 +2438.373286 +2438.384641 +2438.387039 +2438.406752 +2438.410149 +2438.412580 +2438.435857 +2438.455137 +2438.460365 +2438.461331 +2438.465194 +2438.472553 +2438.474418 +2438.486739 +2438.498394 +2438.499793 +2438.501557 +2438.504388 +2438.509982 +2438.514711 +2438.528098 +2438.537022 +2438.537455 +2438.540285 +2438.543815 +2438.547178 +2438.552640 +2438.553472 +2438.566226 +2438.577781 +2438.578680 +2438.579146 +2438.579679 +2438.589802 +2438.603555 +2438.616742 +2438.620538 +2438.642283 +2438.643449 +2438.644081 +2438.653972 +2438.662396 +2438.667724 +2438.687038 +2438.688104 +2438.699992 +2438.711747 +2438.713878 +2438.723902 +2438.727232 +2438.737055 +2438.739819 +2438.748643 +2438.761730 +2438.766925 +2438.775050 +2438.778014 +2438.788004 +2438.788404 +2438.789536 +2438.789869 +2438.793898 +2438.802223 +2438.802889 +2438.803189 +2438.816242 +2438.816709 +2438.819639 +2438.831560 +2438.838986 +2438.840718 +2438.841817 +2438.867191 +2438.873086 +2438.878780 +2438.887038 +2438.907718 +2438.912013 +2438.919506 +2438.920205 +2438.929063 +2438.940685 +2438.941783 +2438.944447 +2438.949476 +2438.962596 +2438.964294 +2438.993365 +2439.015476 +2439.041117 +2439.041517 +2439.054737 +2439.056469 +2439.070122 +2439.076515 +2439.081643 +2439.083308 +2439.094897 +2439.102023 +2439.147211 +2439.163628 +2439.174784 +2439.177148 +2439.211813 +2439.212479 +2439.224567 +2439.226432 +2439.238553 +2439.252939 +2439.264427 +2439.266592 +2439.269855 +2439.278313 +2439.304387 +2439.304953 +2439.319872 +2439.333325 +2439.334723 +2439.362263 +2439.372019 +2439.388303 +2439.390101 +2439.394630 +2439.401224 +2439.402456 +2439.413644 +2439.414410 +2439.417208 +2439.421004 +2439.427864 +2439.437687 +2439.443348 +2439.443848 +2439.457600 +2439.461030 +2439.486538 +2439.489402 +2439.499425 +2439.549009 +2439.556202 +2439.646478 +2439.690301 +2439.694264 +2439.707251 +2439.717007 +2439.732425 +2439.744447 +2439.756967 +2439.816042 +2439.830694 +2439.843281 +2439.844979 +2439.857700 +2439.859099 +2439.901523 +2439.904853 +2439.915509 +2439.946544 +2439.959698 +2439.974117 +2439.974849 +2440.001889 +2440.002388 +2440.046578 +2440.062162 +2440.073251 +2440.074183 +2440.077813 +2440.103654 +2440.117007 +2440.147144 +2440.151772 +2440.221269 +2440.264193 +2440.280843 +2440.295229 +2440.295895 +2440.354236 +2440.415242 +2440.430460 +2440.548775 +2440.577180 +2440.609181 +2440.614043 +2440.625398 +2440.728628 +2440.729427 +2440.745112 +2440.790866 +2440.820736 +2440.821202 +2440.852937 +2440.882541 +2440.901089 +2440.959397 +2440.976080 +2440.990000 +2441.006284 +2441.006983 +2441.022634 +2441.038751 +2441.097625 +2441.098192 +2441.114209 +2441.116373 +2441.128628 +2441.161761 +2441.263459 +2441.294162 +2441.297459 +2441.496793 +2441.511911 +2441.512543 +2441.527595 +2441.528594 +2441.545177 +2441.576912 +2441.625697 +2441.638118 +2441.672317 +2441.673849 +2441.704152 +2446.309975 +2446.679205 +2450.347267 +2451.305274 +2451.339307 +2453.541869 +2453.708668 +2453.709401 +2454.527249 +2456.711563 +2459.426745 +2461.414821 +2461.709526 +2461.711091 +2461.712457 +2461.810692 +2462.013722 +2462.016386 +2462.111957 +2462.113422 +2462.213222 +2462.216519 +2462.317618 +2462.413688 +2462.416352 +2462.515386 +2462.516485 +2462.611157 +2462.612056 +2462.616718 +2462.712023 +2462.714454 +2462.715586 +2462.812089 +2462.912422 +2462.914387 +2463.012455 +2463.112588 +2463.113155 +2463.117517 +2463.214287 +2463.217816 +2463.312522 +2463.314320 +2463.412422 +2463.412921 +2463.414253 +2463.512288 +2463.616451 +2463.712455 +2463.714286 +2463.716451 +2463.811555 +2463.911489 +2463.912488 +2464.012321 +2464.111655 +2464.112155 +2464.114286 +2464.211788 +2464.311955 +2464.312454 +2464.321079 +2464.512121 +2464.514419 +2464.611688 +2464.612154 +2464.615617 +2464.713786 +2464.812487 +2464.813786 +2464.814152 +2464.814518 +2464.912120 +2464.912920 +2465.011987 +2465.012453 +2465.013386 +2465.013752 +2465.111388 +2465.112320 +2465.113885 +2465.114818 +2465.212020 +2465.212387 +2465.312586 +2465.314884 +2465.411620 +2465.414351 +2465.511520 +2465.512553 +2465.514051 +2465.515150 +2465.612286 +2465.614551 +2465.615117 +2465.616582 +2465.712253 +2465.713318 +2465.814217 +2465.815017 +2465.912253 +2465.915516 +2466.012852 +2466.013651 +2466.014417 +2466.015516 +2466.115449 +2466.211819 +2466.212219 +2466.214816 +2466.311986 +2466.512185 +2466.515449 +2466.518146 +2466.611386 +2466.612285 +2466.711286 +2466.712318 +2466.716614 +2467.488042 +2467.496234 +2467.517912 +2469.223638 +2469.236092 +2469.309652 +2469.310251 +2469.350811 +2469.420208 +2469.445782 +2469.446515 +2469.463564 +2469.483045 +2469.508120 +2469.528633 +2469.607287 +2470.508951 +2470.597030 +2470.747446 +2470.793167 +2470.819108 +2470.862065 +2470.899993 +2470.918175 +2471.711914 +2471.730928 +2471.808384 +2471.823868 +2472.068923 +2472.207018 +2472.284407 +2472.350575 +2472.353239 +2472.354804 +2472.381943 +2472.392100 +2472.403954 +2472.486672 +2472.631793 +2472.648510 +2472.659832 +2472.661597 +2472.705752 +2472.753205 +2472.762229 +2472.790101 +2472.832426 +2472.841217 +2472.854237 +2472.869422 +2472.880977 +2472.891766 +2472.901756 +2472.926565 +2472.935622 +2472.972585 +2472.986038 +2472.987470 +2472.999958 +2473.003521 +2473.023601 +2473.049908 +2473.069322 +2473.072052 +2473.072785 +2473.097926 +2473.110247 +2473.121503 +2473.134690 +2473.137320 +2473.139918 +2473.150141 +2473.167057 +2473.177980 +2473.188869 +2473.192532 +2473.207217 +2473.217140 +2473.228962 +2473.229428 +2473.243048 +2473.255102 +2473.271419 +2473.279012 +2473.287170 +2473.324833 +2473.336654 +2473.367257 +2473.378146 +2473.378745 +2473.390600 +2473.393098 +2473.405186 +2473.408715 +2473.409714 +2473.417706 +2473.436554 +2473.445512 +2473.457500 +2473.462695 +2473.467323 +2473.468356 +2473.476181 +2473.485871 +2473.486970 +2473.515975 +2473.528862 +2473.534023 +2473.536554 +2473.556634 +2473.606018 +2473.622235 +2473.634423 +2473.634956 +2473.646011 +2473.660097 +2473.672718 +2473.685505 +2473.691998 +2473.697593 +2473.699125 +2473.710014 +2473.711978 +2473.724366 +2473.726198 +2473.741249 +2473.751539 +2473.762495 +2473.762794 +2473.763793 +2473.789767 +2473.802554 +2473.826464 +2473.840084 +2473.850806 +2473.851905 +2473.864093 +2473.864959 +2473.874882 +2473.875248 +2473.899424 +2473.913543 +2473.914775 +2473.927463 +2473.946943 +2473.959131 +2473.970287 +2473.973250 +2473.982674 +2473.986437 +2473.998059 +2474.011812 +2474.012311 +2474.026597 +2474.061062 +2474.071186 +2474.082075 +2474.109447 +2474.127363 +2474.128362 +2474.141082 +2474.164326 +2474.176347 +2474.210713 +2474.218904 +2474.233923 +2474.234755 +2474.264725 +2474.265458 +2474.278545 +2474.278844 +2474.280643 +2474.290266 +2474.293063 +2474.317939 +2474.327396 +2474.332857 +2474.347942 +2474.350439 +2474.374116 +2474.374815 +2474.443813 +2474.445411 +2474.460662 +2474.472717 +2474.515707 +2474.526163 +2474.529893 +2474.530326 +2474.558331 +2474.560163 +2474.563360 +2474.605318 +2474.615341 +2474.615674 +2474.653070 +2474.656366 +2474.673549 +2474.774215 +2474.787868 +2474.798757 +2474.802387 +2474.814775 +2474.815141 +2474.842880 +2474.861028 +2474.878411 +2474.887668 +2474.888501 +2474.919570 +2474.947841 +2474.960862 +2474.963992 +2475.051404 +2475.063759 +2475.065057 +2475.080009 +2475.094361 +2475.127295 +2475.140116 +2475.184871 +2475.217338 +2475.229093 +2475.229726 +2475.289932 +2475.303086 +2475.392763 +2475.452370 +2475.531391 +2475.545976 +2475.576279 +2475.621534 +2475.652503 +2475.653768 +2475.668487 +2475.669219 +2475.711843 +2475.756665 +2475.757664 +2475.758630 +2475.787001 +2475.801853 +2476.044577 +2476.045742 +2476.074913 +2476.184304 +2476.256465 +2476.300321 +2476.329125 +2476.357930 +2476.385968 +2476.387867 +2476.419069 +2476.432255 +2476.450570 +2476.494626 +2476.495359 +2476.510111 +2476.510377 +2476.622731 +2478.372147 +2478.698087 +2478.724528 +2487.712231 +2488.711331 +2489.712995 +2490.713560 +2490.715957 +2496.916318 +2497.012055 +2497.014353 +2497.113520 +2497.212321 +2497.214652 +2497.314253 +2497.316284 +2497.413253 +2497.414086 +2497.418781 +2497.514386 +2497.712687 +2497.811755 +2497.911754 +2497.912520 +2497.917016 +2498.015051 +2498.016916 +2498.114518 +2498.116017 +2498.211787 +2498.212220 +2498.314385 +2498.319879 +2498.413452 +2498.414285 +2498.515384 +2498.612753 +2498.711920 +2498.713086 +2498.811421 +2498.811920 +2498.812952 +2498.814284 +2498.815383 +2498.913019 +2498.917148 +2499.013219 +2499.013385 +2499.014184 +2499.014650 +2499.014950 +2499.016182 +2499.115516 +2499.117148 +2499.212852 +2499.214117 +2499.214617 +2499.217214 +2499.315150 +2499.412719 +2499.413618 +2499.414217 +2499.416015 +2499.512552 +2499.515682 +2499.711320 +2499.711753 +2499.714184 +2499.715749 +2499.716581 +2499.814550 +2499.914916 +2499.915915 +2499.920244 +2500.011719 +2500.012119 +2500.012851 +2500.015049 +2500.113251 +2500.114783 +2500.211919 +2500.214449 +2500.312618 +2500.314250 +2500.316581 +2500.317913 +2500.319677 +2500.320210 +2500.412584 +2500.414383 +2500.416447 +2500.514349 +2500.516880 +2500.614416 +2500.617213 +2500.711818 +2500.714948 +2500.715981 +2500.811718 +2500.815881 +2500.816014 +2500.911785 +2500.915681 +2500.916647 +2500.917313 +2501.011685 +2501.015148 +2501.115781 +2501.211751 +2501.212650 +2501.214981 +2501.218078 +2501.313616 +2501.412317 +2501.416147 +2501.713116 +2501.713449 +2501.714381 +2501.716313 +2501.716779 +2506.752072 +2506.782308 +2506.849175 +2506.850074 +2506.851406 +2506.858565 +2506.938852 +2506.955035 +2506.998658 +2506.999491 +2507.000357 +2507.058332 +2507.078479 +2507.116274 +2507.117473 +2507.130060 +2507.145778 +2507.171952 +2507.184206 +2507.230793 +2507.244213 +2507.255035 +2507.267256 +2507.275115 +2507.300257 +2507.320303 +2507.342548 +2507.344879 +2507.408315 +2507.411445 +2507.421102 +2507.468655 +2507.471985 +2507.485871 +2507.489301 +2507.492830 +2507.499557 +2507.511412 +2507.513443 +2507.525631 +2507.536753 +2507.537519 +2507.563327 +2507.578944 +2507.587003 +2507.599191 +2507.600156 +2507.602421 +2507.613210 +2507.624765 +2507.638418 +2507.654735 +2507.675747 +2507.701788 +2507.702953 +2507.703952 +2507.717206 +2507.748874 +2507.767589 +2507.782973 +2507.791498 +2507.792264 +2507.800789 +2507.804052 +2507.805251 +2507.829693 +2507.838851 +2507.852704 +2507.863626 +2507.874215 +2507.875980 +2507.877778 +2507.887102 +2507.894662 +2507.903320 +2507.922467 +2507.929493 +2507.931791 +2507.981575 +2507.995161 +2508.005983 +2508.012677 +2508.019936 +2508.045178 +2508.048574 +2508.055967 +2508.057332 +2508.071518 +2508.087668 +2508.093796 +2508.095361 +2508.106982 +2508.110179 +2508.117272 +2508.118704 +2508.130625 +2508.131857 +2508.136619 +2508.158930 +2508.159496 +2508.160096 +2508.160762 +2508.174248 +2508.175747 +2508.189167 +2508.206849 +2508.218404 +2508.245144 +2508.245910 +2508.269719 +2508.271251 +2508.281807 +2508.282340 +2508.283073 +2508.283339 +2508.285604 +2508.286236 +2508.296326 +2508.321834 +2508.324365 +2508.334255 +2508.335320 +2508.335720 +2508.336253 +2508.337219 +2508.360362 +2508.374681 +2508.375480 +2508.379976 +2508.382973 +2508.384604 +2508.394961 +2508.408447 +2508.409579 +2508.410712 +2508.421234 +2508.421934 +2508.424598 +2508.434987 +2508.446443 +2508.447275 +2508.459430 +2508.463126 +2508.472350 +2508.484937 +2508.488534 +2508.498191 +2508.498391 +2508.502320 +2508.504917 +2508.512909 +2508.525330 +2508.525896 +2508.540016 +2508.548274 +2508.550971 +2508.552603 +2508.559962 +2508.564691 +2508.565657 +2508.604251 +2508.605417 +2508.614041 +2508.617238 +2508.655833 +2508.669053 +2508.671817 +2508.694394 +2508.695094 +2508.708181 +2508.722733 +2508.723032 +2508.734321 +2508.736719 +2508.746109 +2508.749173 +2508.768853 +2508.775080 +2508.775979 +2508.812976 +2508.814108 +2508.871584 +2508.894994 +2508.897724 +2508.919502 +2508.920501 +2508.947075 +2508.981074 +2508.993029 +2508.998390 +2509.006415 +2509.017704 +2509.019669 +2509.045676 +2509.047674 +2509.070884 +2509.097691 +2509.118536 +2509.137451 +2509.180441 +2509.197924 +2509.246042 +2509.340015 +2509.374147 +2509.388599 +2509.388966 +2509.423132 +2509.436518 +2509.449971 +2509.450438 +2509.476844 +2509.490797 +2509.507114 +2509.519468 +2509.519935 +2509.520268 +2509.532855 +2509.574280 +2509.630924 +2509.686368 +2509.715839 +2509.728493 +2509.769851 +2509.839448 +2509.851736 +2509.955832 +2510.149704 +2510.163490 +2510.246008 +2510.353134 +2510.473580 +2510.511176 +2510.572348 +2510.836150 +2510.847939 +2510.892461 +2511.043776 +2511.116536 +2511.117502 +2511.132187 +2511.238081 +2511.300919 +2511.387665 +2511.418900 +2511.436849 +2521.709466 +2522.712096 +2522.713661 +2523.713727 +2523.714193 +2524.713126 +2524.891981 +2525.710195 +2525.712426 +2525.712892 +2526.710427 +2526.710860 +2526.713857 +2531.712553 +2531.811554 +2531.812586 +2531.812786 +2531.813419 +2531.910622 +2531.911387 +2531.911621 +2531.912453 +2531.913186 +2531.914418 +2531.915683 +2532.010921 +2532.014151 +2532.016782 +2532.017981 +2532.114418 +2532.118180 +2532.211620 +2532.212020 +2532.213552 +2532.213951 +2532.214184 +2532.216782 +2532.217281 +2532.313785 +2532.314317 +2532.315050 +2532.414384 +2532.416848 +2532.511387 +2532.513718 +2532.613185 +2532.614417 +2532.617481 +2532.711820 +2532.714117 +2532.813751 +2532.814017 +2532.814983 +2532.815383 +2532.818280 +2532.819712 +2532.912685 +2532.917014 +2532.917713 +2533.012319 +2533.111053 +2533.112352 +2533.112585 +2533.113218 +2533.114916 +2533.117047 +2533.211619 +2533.212718 +2533.215249 +2533.311586 +2533.313584 +2533.314316 +2533.412618 +2533.413983 +2533.415915 +2533.416281 +2533.416880 +2533.512085 +2533.518346 +2533.612318 +2533.615382 +2533.615848 +2533.617413 +2533.715748 +2533.716614 +2533.812285 +2533.812651 +2533.814316 +2533.816281 +2533.911552 +2533.912451 +2533.913217 +2533.914616 +2533.919411 +2533.920177 +2534.011419 +2534.014849 +2534.017146 +2534.018179 +2534.018378 +2534.019211 +2534.112351 +2534.211452 +2534.212651 +2534.214449 +2534.417412 +2534.512384 +2534.713949 +2534.716013 +2534.716513 +2534.814548 +2534.815514 +2534.911451 +2534.914515 +2535.011551 +2535.013882 +2535.014082 +2535.015347 +2535.015946 +2535.111351 +2535.113882 +2535.115014 +2535.117345 +2535.211484 +2535.212683 +2535.214448 +2535.312483 +2535.313981 +2535.512649 +2535.514015 +2535.514348 +2535.517045 +2535.615147 +2535.815246 +2535.815679 +2535.820341 +2535.912516 +2535.913714 +2535.915613 +2535.917211 +2536.012549 +2536.012948 +2536.013681 +2536.014047 +2536.016145 +2536.017211 +2536.113281 +2536.215213 +2536.224637 +2536.315279 +2536.326568 +2536.411483 +2536.418409 +2536.512215 +2536.512548 +2536.714113 +2541.729826 +2541.741581 +2541.749440 +2541.783006 +2541.835587 +2541.836319 +2541.880941 +2541.894727 +2541.928061 +2541.935187 +2541.936053 +2541.951504 +2542.003319 +2542.005217 +2542.005783 +2542.032723 +2542.050638 +2542.053901 +2542.085670 +2542.098890 +2542.100954 +2542.112976 +2542.177012 +2542.177678 +2542.179609 +2542.230658 +2542.240748 +2542.254034 +2542.281940 +2542.323698 +2542.336285 +2542.336718 +2542.349272 +2542.361926 +2542.386036 +2542.398057 +2542.414274 +2542.423864 +2542.440281 +2542.450138 +2542.454467 +2542.462692 +2542.473548 +2542.482905 +2542.488966 +2542.499256 +2542.511310 +2542.523698 +2542.525829 +2542.526495 +2542.548973 +2542.620201 +2542.632789 +2542.653035 +2542.665489 +2542.672749 +2542.674414 +2542.697824 +2542.735219 +2542.748972 +2542.751004 +2542.767154 +2542.777411 +2542.788300 +2542.790364 +2542.809878 +2542.811410 +2542.823032 +2542.838849 +2542.848040 +2542.850371 +2542.858230 +2542.858729 +2542.871983 +2542.893761 +2542.907747 +2542.922832 +2542.930124 +2542.933654 +2542.942812 +2542.943178 +2542.945476 +2542.945875 +2542.956997 +2542.968319 +2542.969984 +2542.971816 +2542.972415 +2542.981240 +2542.994860 +2543.006881 +2543.020334 +2543.033621 +2543.048706 +2543.055266 +2543.061293 +2543.068719 +2543.084203 +2543.095525 +2543.097357 +2543.108179 +2543.111476 +2543.121466 +2543.121966 +2543.134253 +2543.138216 +2543.160294 +2543.174380 +2543.183404 +2543.184403 +2543.186235 +2543.209545 +2543.217170 +2543.218369 +2543.223164 +2543.230690 +2543.232055 +2543.232921 +2543.235619 +2543.271816 +2543.281839 +2543.296424 +2543.305715 +2543.320267 +2543.331922 +2543.349838 +2543.350570 +2543.367753 +2543.375046 +2543.397623 +2543.400254 +2543.403584 +2543.412175 +2543.436850 +2543.448073 +2543.449471 +2543.462292 +2543.474713 +2543.475678 +2543.476844 +2543.478276 +2543.478942 +2543.489431 +2543.491995 +2543.541279 +2543.544243 +2543.568752 +2543.581239 +2543.582305 +2543.594126 +2543.606447 +2543.607613 +2543.609111 +2543.632022 +2543.697423 +2543.788199 +2543.815305 +2543.893160 +2544.050170 +2544.114339 +2544.143476 +2544.187499 +2544.366853 +2544.378941 +2544.413273 +2545.614304 +2545.932619 +2546.105945 +2546.132252 +2546.618466 +2558.707465 +2558.712027 +2558.714125 +2559.714024 +2560.713024 +2560.981255 +2561.712490 +2561.713489 +2561.714421 +2565.154211 +2566.708189 +2566.811319 +2566.910254 +2566.912351 +2566.916048 +2567.010753 +2567.011685 +2567.015482 +2567.017946 +2567.112784 +2567.114183 +2567.212684 +2567.312617 +2567.315914 +2567.319444 +2567.416380 +2567.511219 +2567.512984 +2567.516114 +2567.613516 +2567.812317 +2567.814648 +2567.819510 +2568.011551 +2568.011984 +2568.012783 +2568.013816 +2568.015014 +2568.015614 +2568.016080 +2568.114415 +2568.114615 +2568.115647 +2568.212050 +2568.213183 +2568.216946 +2568.312350 +2568.413083 +2568.415014 +2568.420542 +2568.612683 +2568.616546 +2568.619176 +2568.714281 +2568.715313 +2568.812683 +2568.814348 +2568.814714 +2568.816479 +2568.912682 +2568.913249 +2568.915746 +2569.012249 +2569.014314 +2569.015147 +2569.015546 +2569.115746 +2569.211550 +2569.211816 +2569.212682 +2569.213948 +2569.214514 +2569.215712 +2569.217377 +2569.311550 +2569.411017 +2569.412615 +2569.413448 +2569.415213 +2569.416245 +2569.416745 +2569.513115 +2569.515745 +2569.612415 +2569.613115 +2569.614646 +2569.616944 +2569.712315 +2569.712748 +2569.714580 +2569.717011 +2569.811050 +2569.811649 +2569.815545 +2570.011416 +2570.012382 +2570.014713 +2570.019175 +2570.112348 +2570.114946 +2570.116111 +2570.119208 +2570.213281 +2570.214946 +2570.215378 +2570.217277 +2570.219275 +2570.312681 +2570.312914 +2570.414579 +2570.415478 +2570.419075 +2570.515711 +2570.516810 +2570.517609 +2570.611482 +2570.712714 +2570.714645 +2570.715178 +2570.716843 +2570.912414 +2570.913413 +2571.012680 +2571.013047 +2571.016477 +2571.112181 +2571.113413 +2571.114212 +2571.116776 +2571.117442 +2571.118375 +2571.211581 +2571.215511 +2571.216743 +2571.313779 +2571.315411 +2571.316410 +2571.415078 +2571.512746 +2571.612280 +2571.712380 +2571.712780 +2571.717075 +2574.000157 +2574.087269 +2576.910010 +2576.961625 +2577.030856 +2577.042311 +2577.065355 +2577.067619 +2577.077976 +2577.089597 +2577.108279 +2577.192694 +2577.246074 +2577.323030 +2577.332088 +2577.335818 +2577.356131 +2577.369317 +2577.380773 +2577.381871 +2577.430290 +2577.433786 +2577.488498 +2577.491828 +2577.524529 +2577.538115 +2577.562890 +2577.577043 +2577.578774 +2577.594858 +2577.603516 +2577.616803 +2577.620200 +2577.634718 +2577.661591 +2577.663789 +2577.675544 +2577.676643 +2577.705048 +2577.715804 +2577.729290 +2577.739180 +2577.742544 +2577.751568 +2577.763390 +2577.772913 +2577.797822 +2577.802983 +2577.827359 +2577.830256 +2577.838181 +2577.838614 +2577.849137 +2577.853799 +2577.888298 +2577.897955 +2577.911475 +2577.920366 +2577.935084 +2577.936283 +2577.962024 +2578.004115 +2578.029856 +2578.103915 +2578.104448 +2578.106213 +2578.106713 +2578.127558 +2578.128790 +2578.152067 +2578.165820 +2578.178774 +2578.192294 +2578.217535 +2578.219433 +2578.284102 +2578.294658 +2578.311008 +2578.319300 +2578.330422 +2578.331021 +2578.332187 +2578.332453 +2578.345274 +2578.345840 +2578.355197 +2578.356063 +2578.367418 +2578.368251 +2578.372713 +2578.382570 +2578.395823 +2578.422263 +2578.423962 +2578.431188 +2578.433918 +2578.445407 +2578.447072 +2578.450868 +2578.458527 +2578.461657 +2578.485833 +2578.487431 +2578.487864 +2578.499486 +2578.507078 +2578.510542 +2578.520698 +2578.523862 +2578.526293 +2578.529256 +2578.538380 +2578.566053 +2578.568750 +2578.579506 +2578.580472 +2578.586332 +2578.591494 +2578.604947 +2578.631754 +2578.643708 +2578.647704 +2578.648304 +2578.656762 +2578.670015 +2578.685700 +2578.710641 +2578.711407 +2578.743076 +2578.769116 +2578.805879 +2578.808610 +2578.820698 +2578.836049 +2578.845739 +2578.852699 +2578.858227 +2578.870748 +2578.873545 +2578.881870 +2578.884034 +2578.896755 +2578.908510 +2578.909609 +2578.911474 +2578.928390 +2578.939879 +2578.963588 +2578.976442 +2578.982203 +2578.990761 +2579.001717 +2579.013372 +2579.028723 +2579.045939 +2579.056928 +2579.091394 +2579.117035 +2579.134517 +2579.141843 +2579.142809 +2579.146239 +2579.169349 +2579.181603 +2579.182835 +2579.183135 +2579.185599 +2579.196322 +2579.201583 +2579.209409 +2579.235916 +2579.253298 +2579.257161 +2579.268849 +2579.276175 +2579.277674 +2579.278473 +2579.319465 +2579.359725 +2579.364087 +2579.374876 +2579.386032 +2579.388929 +2579.404813 +2579.415636 +2579.442342 +2579.447237 +2579.456428 +2579.497420 +2579.539711 +2579.553631 +2579.581170 +2579.623195 +2579.652066 +2579.730853 +2579.797687 +2579.800184 +2579.839212 +2579.880570 +2579.894323 +2579.909441 +2579.923894 +2579.999152 +2579.999718 +2580.005312 +2580.043307 +2580.086930 +2580.144040 +2580.157959 +2580.158359 +2580.204013 +2580.235948 +2580.242075 +2580.300483 +2580.313903 +2580.398452 +2580.475342 +2580.488395 +2580.720330 +2580.735348 +2580.881535 +2581.152564 +2581.195454 +2581.255794 +2581.285630 +2581.301215 +2581.301614 +2583.370710 +2583.371443 +2594.713456 +2598.608157 +2598.638127 +2598.958640 +2601.709453 +2601.710285 +2601.910718 +2601.911850 +2601.912383 +2602.111783 +2602.112283 +2602.112916 +2602.113582 +2602.113981 +2602.118843 +2602.213282 +2602.214747 +2602.215679 +2602.311051 +2602.312283 +2602.412716 +2602.416545 +2602.417711 +2602.511850 +2602.512249 +2602.512582 +2602.514947 +2602.614946 +2602.619375 +2602.711883 +2602.713281 +2602.713648 +2602.714347 +2602.812915 +2602.818210 +2602.912216 +2602.913548 +2603.013681 +2603.015113 +2603.016012 +2603.112249 +2603.112748 +2603.113181 +2603.113447 +2603.115312 +2603.115679 +2603.212348 +2603.212781 +2603.213447 +2603.213814 +2603.313647 +2603.319408 +2603.412748 +2603.413480 +2603.414246 +2603.417410 +2603.418009 +2603.418908 +2603.512681 +2603.513147 +2603.515878 +2603.517410 +2603.517809 +2603.612981 +2603.613547 +2603.613946 +2603.712648 +2603.714346 +2603.718175 +2603.814213 +2603.912681 +2603.913114 +2603.917676 +2604.011881 +2604.013047 +2604.113180 +2604.113546 +2604.115911 +2604.211515 +2604.212680 +2604.214479 +2604.215045 +2604.215544 +2604.216410 +2604.222171 +2604.313047 +2604.313180 +2604.314512 +2604.314978 +2604.316343 +2604.317509 +2604.412214 +2604.413812 +2604.416510 +2604.612114 +2604.614745 +2604.615644 +2604.714312 +2604.715710 +2604.811781 +2604.812114 +2604.813179 +2604.911781 +2604.914345 +2605.012846 +2605.013179 +2605.015510 +2605.016076 +2605.111980 +2605.115510 +2605.117175 +2605.120006 +2605.213212 +2605.214977 +2605.226066 +2605.312813 +2605.313812 +2605.314777 +2605.413012 +2605.512113 +2605.513079 +2605.514477 +2605.515410 +2605.612612 +2605.613845 +2605.614677 +2605.617907 +2605.712712 +2605.712979 +2605.713245 +2605.717241 +2605.811513 +2605.811946 +2605.812279 +2605.813878 +2605.816175 +2605.915110 +2605.915975 +2605.917208 +2605.919539 +2605.920005 +2606.012812 +2606.016541 +2606.017507 +2606.028430 +2606.114643 +2606.115509 +2606.214543 +2606.217074 +2606.217907 +2606.312878 +2606.313411 +2606.314676 +2606.412612 +2606.512911 +2606.513377 +2606.514177 +2606.516075 +2606.611413 +2606.612645 +2606.613244 +2606.613810 +2606.712678 +2606.713610 +2606.714343 +2606.715209 +2606.715508 +2606.716008 +2608.112643 +2611.711174 +2611.712473 +2611.717501 +2611.875477 +2611.956595 +2611.965720 +2611.990695 +2612.002816 +2612.164687 +2612.169749 +2612.201417 +2612.214471 +2612.251101 +2612.262656 +2612.276176 +2612.301450 +2612.302383 +2612.327291 +2612.327657 +2612.339745 +2612.363089 +2612.388563 +2612.396755 +2612.409109 +2612.461623 +2612.472512 +2612.528889 +2612.540278 +2612.542409 +2612.553798 +2612.580271 +2612.590794 +2612.605879 +2612.683035 +2612.696288 +2612.696755 +2612.709808 +2612.726158 +2612.771313 +2612.780304 +2612.783068 +2612.830754 +2612.843707 +2612.853364 +2612.879305 +2612.881703 +2612.893025 +2612.906378 +2612.944040 +2612.954430 +2612.976341 +2613.015436 +2613.034483 +2613.044939 +2613.055029 +2613.069615 +2613.102448 +2613.122861 +2613.136581 +2613.146105 +2613.154030 +2613.165685 +2613.176807 +2613.178572 +2613.203547 +2613.206045 +2613.215635 +2613.225259 +2613.227457 +2613.235349 +2613.247370 +2613.251499 +2613.271413 +2613.304579 +2613.320863 +2613.358059 +2613.408242 +2613.409075 +2613.412305 +2613.431486 +2613.436148 +2613.442342 +2613.449901 +2613.457093 +2613.462754 +2613.474110 +2613.498885 +2613.538246 +2613.551466 +2613.563720 +2613.576041 +2613.583034 +2613.586098 +2613.589627 +2613.600450 +2613.606943 +2613.610873 +2613.611272 +2613.626757 +2613.628022 +2613.629021 +2613.630553 +2613.636381 +2613.638479 +2613.641009 +2613.650666 +2613.653330 +2613.670080 +2613.671379 +2613.678472 +2613.681469 +2613.695355 +2613.717067 +2613.725924 +2613.730420 +2613.730786 +2613.739211 +2613.741709 +2613.743174 +2613.744306 +2613.755428 +2613.757093 +2613.757959 +2613.758625 +2613.769681 +2613.771745 +2613.772877 +2613.782967 +2613.795621 +2613.797320 +2613.807243 +2613.809607 +2613.821229 +2613.834516 +2613.845838 +2613.849434 +2613.859024 +2613.901149 +2613.910207 +2613.911472 +2613.915501 +2613.922195 +2613.926956 +2613.966617 +2614.004545 +2614.006210 +2614.016367 +2614.017433 +2614.058325 +2614.072544 +2614.083866 +2614.085365 +2614.096287 +2614.111072 +2614.137745 +2614.137979 +2614.143040 +2614.145038 +2614.150366 +2614.152431 +2614.165451 +2614.165784 +2614.170080 +2614.176473 +2614.182434 +2614.190426 +2614.195354 +2614.204479 +2614.219131 +2614.260722 +2614.275108 +2614.297852 +2614.300216 +2614.331485 +2614.336979 +2614.352331 +2614.380935 +2614.392957 +2614.395121 +2614.404046 +2614.408375 +2614.419896 +2614.445737 +2614.478638 +2614.492923 +2614.494855 +2614.531551 +2614.532017 +2614.544605 +2614.545071 +2614.555061 +2614.569946 +2614.581268 +2614.582600 +2614.583266 +2614.595221 +2614.595554 +2614.638111 +2614.648001 +2614.650499 +2614.656493 +2614.663519 +2614.664884 +2614.676939 +2614.678171 +2614.714102 +2614.715034 +2614.721694 +2614.722926 +2614.750499 +2614.753562 +2614.767215 +2614.789959 +2614.793489 +2614.806176 +2614.809839 +2614.825191 +2614.834315 +2614.845504 +2614.846736 +2614.866150 +2614.883799 +2614.915833 +2614.929353 +2614.931418 +2614.973908 +2614.987195 +2615.002147 +2615.002580 +2615.045170 +2615.126589 +2615.133049 +2615.165350 +2615.223825 +2615.244371 +2615.290658 +2615.294454 +2615.326322 +2615.355493 +2615.396319 +2615.436712 +2615.450265 +2615.464318 +2615.465450 +2615.523492 +2615.541307 +2615.658223 +2615.751597 +2615.816398 +2616.018363 +2616.068846 +2616.284863 +2616.341473 +2616.404143 +2616.571210 +2616.583464 +2616.585329 +2616.662452 +2617.362984 +2618.528184 +2618.533012 +2619.729248 +2619.744300 +2619.800410 +2619.842502 +2619.871739 +2619.936474 +2621.093416 +2621.108068 +2621.120489 +2621.126716 +2623.638602 +2623.736870 +2625.094644 +2626.712025 +2627.710126 +2627.715754 +2627.952051 +2628.093476 +2628.116419 +2629.715019 +2630.545654 +2630.657209 +2630.711955 +2630.712454 +2631.712553 +2631.715051 +2632.464967 +2633.431932 +2633.461269 +2633.813350 +2634.309653 +2634.342421 +2634.342754 +2634.442820 +2635.028267 +2635.030632 +2635.062300 +2635.074121 +2635.094468 +2635.152876 +2635.154075 +2635.249346 +2635.276752 +2635.445783 +2635.454108 +2635.502926 +2635.567428 +2635.762466 +2635.765396 +2635.798530 +2635.830498 +2635.851743 +2636.911282 +2637.012581 +2637.013680 +2637.016211 +2637.016843 +2637.018841 +2637.113347 +2637.212980 +2637.214213 +2637.218109 +2637.312015 +2637.312348 +2637.313780 +2637.511981 +2637.513113 +2637.514812 +2637.515777 +2637.518874 +2637.614712 +2637.615145 +2637.618142 +2637.712347 +2637.714545 +2637.812247 +2637.813313 +2637.913113 +2637.914911 +2638.012480 +2638.014711 +2638.016443 +2638.113013 +2638.113246 +2638.212380 +2638.212880 +2638.215144 +2638.313379 +2638.315011 +2638.317075 +2638.318174 +2638.515044 +2638.515377 +2638.615277 +2638.616875 +2638.712613 +2638.714211 +2638.714677 +2638.719805 +2638.812812 +2638.913978 +2638.917841 +2639.012712 +2639.112512 +2639.112945 +2639.116808 +2639.213445 +2639.215443 +2639.216875 +2639.319339 +2639.515542 +2639.517707 +2639.613411 +2639.715875 +2639.719505 +2639.813344 +2639.813877 +2639.914143 +2639.915242 +2639.917307 +2639.918672 +2640.015042 +2640.017573 +2640.112744 +2640.114443 +2640.114876 +2640.115908 +2640.116074 +2640.212212 +2640.214343 +2640.311745 +2640.312278 +2640.312544 +2640.315974 +2640.415275 +2640.415741 +2640.420470 +2640.517273 +2640.613477 +2640.615042 +2640.712544 +2640.713543 +2640.714675 +2640.812544 +2640.814176 +2640.815208 +2640.815807 +2640.816407 +2640.913143 +2640.917339 +2640.917805 +2641.015674 +2641.017872 +2641.019870 +2641.112277 +2641.113010 +2641.120236 +2641.213476 +2641.214608 +2641.215840 +2641.218105 +2641.314408 +2641.314941 +2641.321135 +2641.413542 +2641.414741 +2641.415740 +2641.417372 +2641.513409 +2641.514908 +2641.516206 +2641.518138 +2641.618104 +2641.620102 +2641.713142 +2641.716106 +2641.718337 +2641.718903 +2642.343811 +2642.601553 +2642.613808 +2642.650571 +2643.592761 +2643.602551 +2643.607979 +2643.740546 +2643.790496 +2643.800287 +2644.711075 +2644.844741 +2644.880239 +2645.676642 +2646.712238 +2646.741176 +2646.825658 +2646.860124 +2646.896687 +2646.909341 +2646.918998 +2647.073943 +2647.110273 +2647.116667 +2647.117133 +2647.284299 +2647.286830 +2647.349767 +2647.377472 +2647.412471 +2647.424226 +2647.481602 +2647.497352 +2647.509107 +2647.509407 +2647.522760 +2647.524758 +2647.559923 +2647.572011 +2647.597019 +2647.598751 +2647.657925 +2647.661188 +2647.681468 +2647.708341 +2647.722627 +2647.747735 +2647.761421 +2647.776207 +2647.787629 +2647.788894 +2647.799284 +2647.807942 +2647.810839 +2647.842840 +2647.853762 +2647.866250 +2647.880036 +2647.881435 +2647.890825 +2647.891658 +2647.906410 +2647.915734 +2647.965484 +2647.967915 +2647.969813 +2647.979570 +2647.981468 +2647.993689 +2647.994455 +2648.010172 +2648.019563 +2648.041441 +2648.068281 +2648.071544 +2648.081035 +2648.095054 +2648.096120 +2648.096752 +2648.109173 +2648.121494 +2648.122726 +2648.123792 +2648.152030 +2648.157558 +2648.173942 +2648.178804 +2648.221894 +2648.238877 +2648.251498 +2648.259922 +2648.261987 +2648.262886 +2648.270445 +2648.292989 +2648.294721 +2648.326223 +2648.340242 +2648.348234 +2648.348567 +2648.373542 +2648.388327 +2648.388993 +2648.389459 +2648.413569 +2648.415600 +2648.445337 +2648.454861 +2648.471810 +2648.484664 +2648.509473 +2648.536079 +2648.536579 +2648.551231 +2648.576106 +2648.579103 +2648.592290 +2648.613802 +2648.614368 +2648.615433 +2648.627954 +2648.628420 +2648.644737 +2648.663685 +2648.664118 +2648.674974 +2648.676106 +2648.681567 +2648.686529 +2648.694954 +2648.707441 +2648.708740 +2648.709306 +2648.720828 +2648.723991 +2648.733515 +2648.746136 +2648.757125 +2648.758590 +2648.762686 +2648.782766 +2648.783565 +2648.789859 +2648.809772 +2648.822260 +2648.823558 +2648.825623 +2648.837777 +2648.839209 +2648.853595 +2648.855793 +2648.863518 +2648.867481 +2648.876638 +2648.880002 +2648.891490 +2648.901913 +2648.903911 +2648.905110 +2648.917165 +2648.920861 +2648.927854 +2648.946502 +2648.968646 +2648.981300 +2648.993788 +2648.994920 +2649.009472 +2649.020761 +2649.023025 +2649.032716 +2649.036512 +2649.039309 +2649.047567 +2649.048433 +2649.048799 +2649.074707 +2649.087960 +2649.091490 +2649.100181 +2649.125356 +2649.129885 +2649.140408 +2649.141074 +2649.169212 +2649.171810 +2649.228919 +2649.253361 +2649.269512 +2649.295053 +2649.310771 +2649.350131 +2649.365383 +2649.377271 +2649.379369 +2649.404011 +2649.408106 +2649.434980 +2649.458523 +2649.462152 +2649.463018 +2649.474773 +2649.502412 +2649.517830 +2649.533281 +2649.541739 +2649.554593 +2649.599848 +2649.616631 +2649.652495 +2649.683364 +2649.683864 +2649.699515 +2649.727420 +2649.742039 +2649.769078 +2649.790857 +2649.828086 +2649.841872 +2649.863384 +2649.872508 +2649.884363 +2649.898049 +2649.927054 +2649.959854 +2650.008239 +2650.043604 +2650.052328 +2650.082398 +2650.082864 +2650.128152 +2650.140673 +2650.141173 +2650.170810 +2650.185928 +2650.213733 +2650.227120 +2650.240040 +2650.255725 +2650.257656 +2650.318995 +2650.602178 +2650.729018 +2650.787226 +2650.817662 +2650.828018 +2650.956989 +2651.105074 +2651.132114 +2651.265214 +2651.266180 +2651.399613 +2651.680465 +2653.933943 +2663.714619 +2663.715052 +2664.711188 +2664.838194 +2665.714384 +2666.998199 +2667.009820 +2668.436825 +2668.590238 +2668.630332 +2668.644551 +2668.663698 +2670.275884 +2670.354972 +2670.394466 +2670.479414 +2671.550742 +2671.912047 +2671.914344 +2672.012080 +2672.012579 +2672.013978 +2672.014611 +2672.113045 +2672.117041 +2672.117508 +2672.215909 +2672.316309 +2672.414810 +2672.421004 +2672.516575 +2672.615043 +2672.615842 +2672.617274 +2672.717640 +2672.817840 +2672.819605 +2672.913478 +2672.914976 +2672.915409 +2673.012578 +2673.014177 +2673.014643 +2673.015542 +2673.019538 +2673.020437 +2673.022102 +2673.114043 +2673.117407 +2673.213511 +2673.214043 +2673.215842 +2673.216907 +2673.312445 +2673.313144 +2673.314809 +2673.317706 +2673.412378 +2673.416341 +2673.419671 +2673.514876 +2673.515575 +2673.520770 +2673.614942 +2673.615775 +2673.616707 +2673.713244 +2673.715308 +2673.811912 +2673.812611 +2673.816340 +2673.912511 +2674.012311 +2674.012644 +2674.015641 +2674.112544 +2674.113543 +2674.114675 +2674.115707 +2674.116640 +2674.121102 +2674.121701 +2674.212477 +2674.222168 +2674.312411 +2674.313210 +2674.413543 +2674.415574 +2674.418404 +2674.513543 +2674.514209 +2674.514908 +2674.517305 +2674.612677 +2674.613842 +2674.614242 +2674.614908 +2674.620635 +2674.713775 +2674.812310 +2674.813143 +2674.913209 +2674.914108 +2674.914674 +2674.920802 +2675.012476 +2675.013109 +2675.115007 +2675.115440 +2675.215074 +2675.218370 +2675.313042 +2675.413442 +2675.415406 +2675.416472 +2675.613475 +2675.614707 +2675.615073 +2675.713342 +2675.714873 +2675.719336 +2675.812442 +2675.813275 +2675.816239 +2675.817937 +2675.917337 +2676.013042 +2676.013574 +2676.017437 +2676.115572 +2676.213108 +2676.218736 +2676.414173 +2676.416438 +2676.422332 +2676.513740 +2676.515505 +2676.517570 +2676.612508 +2680.602947 +2680.731219 +2680.863053 +2680.929886 +2681.023992 +2681.048601 +2681.184964 +2681.189726 +2681.326456 +2681.424991 +2681.710405 +2681.711304 +2681.712070 +2681.713835 +2681.730319 +2681.767914 +2681.769413 +2681.778237 +2681.780901 +2681.792590 +2681.811238 +2681.845703 +2681.853862 +2681.856126 +2681.857225 +2681.867115 +2681.869013 +2681.915200 +2681.973608 +2682.024990 +2682.034780 +2682.070478 +2682.072476 +2682.085230 +2682.155959 +2682.172809 +2682.185763 +2682.187294 +2682.208706 +2682.210238 +2682.229186 +2682.257990 +2682.288560 +2682.322492 +2682.373708 +2682.453295 +2682.459156 +2682.468380 +2682.470078 +2682.479602 +2682.502679 +2682.505010 +2682.515333 +2682.518929 +2682.545436 +2682.616398 +2682.625855 +2682.631650 +2682.638643 +2682.641806 +2682.666948 +2682.679269 +2682.690091 +2682.703944 +2682.707141 +2682.724057 +2682.754460 +2682.756791 +2682.769112 +2682.770377 +2682.783331 +2682.784164 +2682.795319 +2682.808339 +2682.818363 +2682.832882 +2682.840341 +2682.861753 +2682.911836 +2682.915532 +2682.922792 +2682.924590 +2682.935745 +2682.939042 +2682.949265 +2682.989591 +2682.992688 +2682.995752 +2683.002179 +2683.018129 +2683.026787 +2683.038775 +2683.046035 +2683.052761 +2683.076538 +2683.078869 +2683.091190 +2683.106974 +2683.118096 +2683.119095 +2683.167413 +2683.184763 +2683.209005 +2683.221459 +2683.223923 +2683.255858 +2683.269112 +2683.270310 +2683.277270 +2683.296384 +2683.298782 +2683.299781 +2683.303344 +2683.323923 +2683.324256 +2683.325855 +2683.326954 +2683.331849 +2683.340607 +2683.342904 +2683.352328 +2683.352828 +2683.359355 +2683.371842 +2683.381233 +2683.399481 +2683.400347 +2683.401213 +2683.402212 +2683.417630 +2683.427620 +2683.428385 +2683.429251 +2683.432381 +2683.453394 +2683.465082 +2683.506707 +2683.508605 +2683.518162 +2683.522025 +2683.522458 +2683.531615 +2683.532281 +2683.534846 +2683.543470 +2683.546001 +2683.558289 +2683.560087 +2683.560919 +2683.585095 +2683.596284 +2683.598315 +2683.608572 +2683.613234 +2683.620027 +2683.626687 +2683.634379 +2683.640140 +2683.645168 +2683.658788 +2683.672208 +2683.682564 +2683.683630 +2683.694752 +2683.696550 +2683.710903 +2683.721958 +2683.736377 +2683.751162 +2683.776337 +2683.779101 +2683.785195 +2683.786560 +2683.790623 +2683.791022 +2683.811402 +2683.812368 +2683.813400 +2683.833946 +2683.835511 +2683.839740 +2683.853560 +2683.879800 +2683.893020 +2683.905408 +2683.907706 +2683.922657 +2683.930982 +2683.932048 +2683.941705 +2683.944469 +2683.953493 +2683.965648 +2683.973473 +2683.990523 +2683.994286 +2684.007905 +2684.013034 +2684.018528 +2684.026054 +2684.059587 +2684.069644 +2684.070709 +2684.100546 +2684.101811 +2684.139074 +2684.148398 +2684.151195 +2684.155291 +2684.163916 +2684.174072 +2684.201045 +2684.215997 +2684.239141 +2684.270043 +2684.282664 +2684.296317 +2684.355424 +2684.367479 +2684.370509 +2684.382031 +2684.383296 +2684.387792 +2684.411768 +2684.416063 +2684.424155 +2684.451295 +2684.454292 +2684.456789 +2684.458954 +2684.511235 +2684.512300 +2684.528218 +2684.564415 +2684.570609 +2684.579866 +2684.580998 +2684.641238 +2684.646100 +2684.650795 +2684.661817 +2684.664415 +2684.676037 +2684.689024 +2684.690089 +2684.693785 +2684.729117 +2684.813066 +2684.835544 +2684.894584 +2684.896349 +2684.904874 +2684.918028 +2684.944501 +2684.960785 +2684.962183 +2684.975803 +2684.988990 +2684.998014 +2685.003642 +2685.004741 +2685.019693 +2685.047165 +2685.048031 +2685.049163 +2685.117295 +2685.124288 +2685.162550 +2685.180731 +2685.191953 +2685.192353 +2685.225786 +2685.264115 +2685.295583 +2685.430881 +2685.431281 +2685.448397 +2685.466545 +2685.478933 +2685.531780 +2685.638107 +2685.677767 +2685.691886 +2685.762982 +2685.764514 +2685.847231 +2685.916095 +2685.956688 +2686.061083 +2686.102142 +2686.119092 +2686.120491 +2686.164047 +2686.180764 +2686.226651 +2686.227717 +2686.241037 +2686.302775 +2686.379398 +2686.394550 +2686.409401 +2686.544932 +2686.583294 +2686.600510 +2686.601309 +2686.617094 +2686.619158 +2686.632711 +2686.634310 +2687.245798 +2687.270872 +2687.454822 +2688.006270 +2689.281094 +2689.306135 +2689.592082 +2691.365873 +2691.433839 +2691.584954 +2691.630109 +2696.715485 +2698.710288 +2698.714917 +2698.715450 +2699.712452 +2699.714616 +2699.982382 +2700.714649 +2700.973023 +2701.386776 +2701.711917 +2701.713982 +2702.020874 +2702.249712 +2703.846880 +2704.896829 +2704.900592 +2705.340784 +2705.616742 +2705.661330 +2705.686638 +2705.873651 +2706.407417 +2706.710047 +2706.811712 +2706.812145 +2706.812445 +2706.913876 +2706.915442 +2706.915941 +2707.013443 +2707.014276 +2707.113443 +2707.113976 +2707.114376 +2707.114742 +2707.115674 +2707.116174 +2707.119238 +2707.119870 +2707.217506 +2707.221735 +2707.312944 +2707.313310 +2707.313876 +2707.317273 +2707.320403 +2707.514209 +2707.515741 +2707.613942 +2707.614109 +2707.614675 +2707.616839 +2707.618638 +2707.713709 +2707.715840 +2707.812877 +2707.815374 +2707.816140 +2707.920069 +2708.014009 +2708.015074 +2708.015707 +2708.018437 +2708.020502 +2708.113043 +2708.114142 +2708.117771 +2708.214108 +2708.214441 +2708.215207 +2708.216206 +2708.217039 +2708.413076 +2708.415140 +2708.415840 +2708.420402 +2708.513142 +2708.513642 +2708.514008 +2708.516872 +2708.613841 +2708.615240 +2708.615573 +2708.617638 +2708.718070 +2708.816472 +2708.819436 +2708.914707 +2708.915739 +2708.918303 +2709.113175 +2709.115539 +2709.213808 +2709.313641 +2709.314640 +2709.315339 +2709.414074 +2709.416172 +2709.514240 +2709.615905 +2709.715972 +2709.724596 +2709.812542 +2709.813840 +2710.012974 +2710.014007 +2710.015938 +2710.017769 +2710.118569 +2710.119035 +2710.314173 +2710.315372 +2710.413773 +2710.416037 +2710.516936 +2710.615704 +2710.716104 +2710.719833 +2710.813806 +2710.818135 +2710.914039 +2710.915471 +2710.916869 +2711.012807 +2711.013240 +2711.014705 +2711.017768 +2711.112807 +2711.114039 +2711.117335 +2711.215437 +2711.313572 +2711.316170 +2711.413039 +2711.414005 +2711.512939 +2711.515304 +2711.614105 +2711.712506 +2711.716069 +2711.717135 +2711.721431 +2713.583167 +2713.650300 +2715.141108 +2715.292390 +2715.314401 +2715.420528 +2716.417230 +2716.484596 +2716.553394 +2716.564050 +2716.714366 +2717.144935 +2717.158755 +2717.170876 +2717.183963 +2717.191222 +2717.219594 +2717.230483 +2717.268511 +2717.306207 +2717.308005 +2717.329617 +2717.342171 +2717.375571 +2717.411002 +2717.413566 +2717.423923 +2717.426920 +2717.469877 +2717.497549 +2717.545268 +2717.569510 +2717.591288 +2717.591688 +2717.592554 +2717.604309 +2717.627319 +2717.645068 +2717.700446 +2717.713499 +2717.750662 +2717.754092 +2717.763516 +2717.774372 +2717.776170 +2717.815098 +2717.827552 +2717.848797 +2717.858554 +2717.865580 +2717.889889 +2717.897449 +2717.899646 +2717.908338 +2717.909170 +2717.926553 +2717.933679 +2717.957522 +2717.982763 +2718.020226 +2718.033812 +2718.049796 +2718.076869 +2718.087725 +2718.090022 +2718.102643 +2718.108271 +2718.123789 +2718.134578 +2718.156589 +2718.170742 +2718.171108 +2718.173039 +2718.184461 +2718.197815 +2718.226686 +2718.237275 +2718.243169 +2718.250995 +2718.262683 +2718.264048 +2718.265613 +2718.275004 +2718.287991 +2718.288823 +2718.308537 +2718.310635 +2718.310968 +2718.322223 +2718.337541 +2718.338008 +2718.361417 +2718.362683 +2718.363982 +2718.377968 +2718.389856 +2718.403609 +2718.415896 +2718.424288 +2718.433645 +2718.435743 +2718.439006 +2718.478733 +2718.484994 +2718.532679 +2718.534378 +2718.553958 +2718.558753 +2718.572473 +2718.586026 +2718.588690 +2718.605973 +2718.614731 +2718.626019 +2718.651294 +2718.677368 +2718.679466 +2718.681497 +2718.683628 +2718.705506 +2718.710401 +2718.759452 +2718.761184 +2718.775303 +2718.786059 +2718.786892 +2718.798513 +2718.812832 +2718.827218 +2718.840704 +2718.852859 +2718.853192 +2718.879632 +2718.881863 +2718.889589 +2718.890654 +2718.903442 +2718.906605 +2718.917627 +2718.918493 +2718.943535 +2718.944068 +2718.945266 +2718.960584 +2718.972739 +2718.974670 +2718.998380 +2719.009535 +2719.010634 +2719.022855 +2719.025353 +2719.038040 +2719.040604 +2719.077900 +2719.109868 +2719.118793 +2719.128916 +2719.129249 +2719.144667 +2719.147564 +2719.217927 +2719.252692 +2719.281829 +2719.282495 +2719.293151 +2719.320358 +2719.359185 +2719.372738 +2719.374070 +2719.375536 +2719.376268 +2719.377134 +2719.387124 +2719.387557 +2719.401143 +2719.421356 +2719.430281 +2719.459951 +2719.500111 +2719.504107 +2719.506971 +2719.560351 +2719.585059 +2719.595782 +2719.604240 +2719.613231 +2719.623954 +2719.625219 +2719.638040 +2719.638839 +2719.643168 +2719.650494 +2719.687723 +2719.690887 +2719.708802 +2719.716661 +2719.721556 +2719.730847 +2719.732778 +2719.759551 +2719.771972 +2719.773437 +2719.786824 +2719.818625 +2719.842735 +2719.844733 +2719.854656 +2719.857020 +2719.860184 +2719.882561 +2719.886391 +2719.891120 +2719.925752 +2719.950061 +2719.951193 +2719.964879 +2719.994949 +2720.025985 +2720.052525 +2720.099478 +2720.121822 +2720.163880 +2720.165845 +2720.205605 +2720.213663 +2720.276734 +2720.278265 +2720.322854 +2720.336274 +2720.367143 +2720.383660 +2720.394083 +2720.406970 +2720.449993 +2720.463813 +2720.465578 +2720.569141 +2720.629847 +2720.644998 +2720.694615 +2720.738205 +2720.859450 +2720.887356 +2720.931145 +2721.140336 +2721.154322 +2721.261714 +2721.288920 +2721.379396 +2721.623386 +2721.651124 +2721.652723 +2721.710865 +2730.632567 +2730.947719 +2731.680452 +2732.713817 +2732.715249 +2734.710619 +2734.712683 +2734.713049 +2734.718211 +2735.141454 +2735.154474 +2735.154741 +2735.294434 +2735.439889 +2735.711983 +2735.713381 +2735.715646 +2735.993534 +2736.016245 +2736.713081 +2736.713647 +2736.714846 +2736.896297 +2736.904289 +2736.914712 +2736.930829 +2736.943717 +2736.957236 +2736.986241 +2736.986474 +2737.580845 +2737.602690 +2737.633226 +2737.771488 +2739.611746 +2739.848875 +2739.939584 +2739.952638 +2740.058832 +2741.438817 +2741.710012 +2741.713642 +2741.812476 +2741.912410 +2741.913708 +2741.914308 +2741.916905 +2742.013042 +2742.013475 +2742.014341 +2742.014707 +2742.016472 +2742.017205 +2742.113242 +2742.115972 +2742.118270 +2742.212509 +2742.213408 +2742.312609 +2742.313641 +2742.314640 +2742.316305 +2742.413841 +2742.613474 +2742.614573 +2742.615739 +2742.712708 +2742.713374 +2742.715472 +2742.812775 +2742.813607 +2743.012708 +2743.016571 +2743.113740 +2743.115172 +2743.313674 +2743.313973 +2743.413640 +2743.414206 +2743.513906 +2743.516138 +2743.517170 +2743.518369 +2743.519634 +2743.612075 +2743.613573 +2743.618868 +2743.713806 +2743.715138 +2743.812408 +2743.813140 +2743.813440 +2743.815638 +2743.817702 +2743.819534 +2743.913074 +2743.913939 +2743.914639 +2744.012341 +2744.013240 +2744.015604 +2744.116137 +2744.213473 +2744.214805 +2744.312474 +2744.313706 +2744.314771 +2744.317535 +2744.413739 +2744.415637 +2744.417369 +2744.418468 +2744.512940 +2744.515637 +2744.612507 +2744.613972 +2744.615604 +2744.617968 +2744.715803 +2744.813938 +2744.912107 +2744.913239 +2744.913605 +2745.013272 +2745.114604 +2745.114970 +2745.115403 +2745.212240 +2745.212573 +2745.213605 +2745.215004 +2745.215536 +2745.313205 +2745.313705 +2745.411840 +2745.412739 +2745.413405 +2745.414804 +2745.418600 +2745.513671 +2745.514870 +2745.515936 +2745.518300 +2745.713238 +2745.713704 +2745.714703 +2745.715170 +2745.718300 +2745.722196 +2745.813005 +2745.814870 +2745.816002 +2745.816835 +2745.817367 +2745.913471 +2745.913937 +2746.014503 +2746.015669 +2746.017067 +2746.112472 +2746.116435 +2746.213571 +2746.216768 +2746.217767 +2746.312339 +2746.313238 +2746.317267 +2746.412239 +2746.412638 +2746.413304 +2746.413870 +2746.414803 +2746.415668 +2746.512438 +2746.516900 +2746.518998 +2746.612272 +2746.716800 +2748.898050 +2748.919862 +2749.784996 +2749.874739 +2749.943770 +2750.014466 +2750.045935 +2750.959287 +2750.967445 +2750.977535 +2750.987958 +2751.019127 +2751.104941 +2751.763648 +2751.767045 +2751.964414 +2751.965413 +2752.061584 +2752.159685 +2752.169442 +2752.193318 +2752.231047 +2752.242536 +2752.242935 +2752.255123 +2752.272439 +2752.404241 +2752.406938 +2752.428450 +2752.441603 +2752.445000 +2752.468010 +2752.505339 +2752.544600 +2752.612532 +2752.628916 +2752.640204 +2752.654490 +2752.663181 +2752.690554 +2752.700644 +2752.702875 +2752.725153 +2752.726118 +2752.785459 +2752.811932 +2752.813464 +2752.824753 +2752.826118 +2752.837007 +2752.899778 +2752.914130 +2752.915229 +2752.928782 +2752.943201 +2752.950460 +2752.961982 +2752.974836 +2753.007304 +2753.009368 +2753.037240 +2753.050027 +2753.050360 +2753.051260 +2753.061882 +2753.076401 +2753.077966 +2753.079165 +2753.114163 +2753.115229 +2753.115662 +2753.117194 +2753.117593 +2753.129115 +2753.130380 +2753.133644 +2753.168143 +2753.176701 +2753.183494 +2753.189155 +2753.204939 +2753.211965 +2753.227150 +2753.237506 +2753.248196 +2753.248995 +2753.265112 +2753.276967 +2753.279931 +2753.286424 +2753.286890 +2753.297213 +2753.299111 +2753.312365 +2753.337340 +2753.339871 +2753.380597 +2753.381063 +2753.384692 +2753.390786 +2753.410067 +2753.415362 +2753.418126 +2753.433510 +2753.458885 +2753.469508 +2753.471905 +2753.477466 +2753.482728 +2753.486357 +2753.497313 +2753.498179 +2753.541735 +2753.557586 +2753.558552 +2753.563713 +2753.566710 +2753.567310 +2753.567743 +2753.582861 +2753.604972 +2753.605205 +2753.607303 +2753.620490 +2753.622621 +2753.644066 +2753.645298 +2753.645798 +2753.646730 +2753.656021 +2753.669374 +2753.669840 +2753.672471 +2753.688388 +2753.711898 +2753.716127 +2753.718392 +2753.726084 +2753.728548 +2753.746330 +2753.754522 +2753.766677 +2753.780929 +2753.795814 +2753.806570 +2753.808934 +2753.822055 +2753.837239 +2753.838505 +2753.851159 +2753.859650 +2753.861948 +2753.875168 +2753.889187 +2753.902707 +2753.908834 +2753.920023 +2753.928814 +2753.937972 +2753.948362 +2753.965511 +2753.977965 +2754.008734 +2754.011065 +2754.045997 +2754.047929 +2754.050626 +2754.051225 +2754.063813 +2754.076000 +2754.085424 +2754.109667 +2754.110899 +2754.135541 +2754.136307 +2754.136873 +2754.177699 +2754.178764 +2754.188921 +2754.194881 +2754.204405 +2754.216693 +2754.229613 +2754.230013 +2754.231145 +2754.231944 +2754.244965 +2754.259583 +2754.276333 +2754.285158 +2754.287555 +2754.301108 +2754.301541 +2754.314295 +2754.328747 +2754.339337 +2754.341302 +2754.342700 +2754.382893 +2754.384858 +2754.394915 +2754.419457 +2754.451125 +2754.481162 +2754.485590 +2754.493816 +2754.506969 +2754.509067 +2754.519756 +2754.524318 +2754.549060 +2754.578497 +2754.591318 +2754.592750 +2754.594415 +2754.607768 +2754.618591 +2754.625051 +2754.637239 +2754.650592 +2754.662413 +2754.663279 +2754.677332 +2754.686156 +2754.692950 +2754.695913 +2754.720922 +2754.722420 +2754.747795 +2754.803106 +2754.803839 +2754.834641 +2754.848627 +2754.848927 +2754.876399 +2754.904038 +2754.949193 +2754.961148 +2754.963512 +2754.992083 +2754.992516 +2755.001507 +2755.005970 +2755.044498 +2755.050192 +2755.051424 +2755.064145 +2755.109266 +2755.124185 +2755.126149 +2755.153755 +2755.185723 +2755.201873 +2755.259582 +2755.287554 +2755.288853 +2755.289652 +2755.332876 +2755.334807 +2755.362746 +2755.387621 +2755.462912 +2755.464777 +2755.508300 +2755.524784 +2755.539336 +2755.539802 +2755.554754 +2755.583591 +2755.629379 +2755.630045 +2755.689952 +2755.693015 +2755.734507 +2755.765509 +2755.782659 +2755.797244 +2755.811963 +2755.874667 +2755.949525 +2755.951057 +2755.965609 +2755.980461 +2755.981460 +2756.039735 +2756.040268 +2756.070304 +2756.085356 +2756.099875 +2756.117590 +2756.233441 +2756.248159 +2756.277663 +2756.278662 +2756.307100 +2756.368073 +2756.591116 +2756.656551 +2766.714016 +2766.920543 +2767.713916 +2767.924338 +2768.710518 +2768.712916 +2769.034094 +2769.710817 +2769.711916 +2769.713347 +2769.924303 +2769.925502 +2770.710183 +2770.712614 +2770.712914 +2770.889071 +2771.712546 +2771.713579 +2771.888670 +2771.913478 +2771.921404 +2776.712308 +2776.810277 +2776.811342 +2776.812308 +2776.911675 +2777.013673 +2777.013873 +2777.111742 +2777.210942 +2777.211775 +2777.212541 +2777.213506 +2777.216437 +2777.310842 +2777.412108 +2777.412474 +2777.413573 +2777.414305 +2777.414838 +2777.415538 +2777.512207 +2777.513539 +2777.513972 +2777.611508 +2777.712340 +2777.714405 +2777.719134 +2777.811175 +2777.814305 +2777.816037 +2777.910709 +2777.911941 +2777.912407 +2777.912806 +2777.913639 +2778.011974 +2778.014405 +2778.111175 +2778.112174 +2778.212074 +2778.213772 +2778.312207 +2778.312906 +2778.313605 +2778.314371 +2778.315870 +2778.316069 +2778.318101 +2778.411241 +2778.412306 +2778.413572 +2778.414271 +2778.415670 +2778.511341 +2778.512506 +2778.513039 +2778.514704 +2778.611107 +2778.612140 +2778.613572 +2778.617035 +2778.711274 +2778.712106 +2778.714437 +2778.717334 +2778.812140 +2778.813738 +2778.814104 +2778.911207 +2778.912006 +2778.913072 +2778.913571 +2778.914504 +2778.916169 +2779.011207 +2779.012039 +2779.012406 +2779.013838 +2779.111240 +2779.111673 +2779.112339 +2779.112339 +2779.115236 +2779.115869 +2779.214337 +2779.215236 +2779.216868 +2779.311240 +2779.411373 +2779.412039 +2779.412372 +2779.414237 +2779.415436 +2779.511673 +2779.512505 +2779.513571 +2779.515069 +2779.515735 +2779.611273 +2779.612339 +2779.613671 +2779.614470 +2779.615269 +2779.616135 +2779.616634 +2779.710673 +2779.711206 +2779.713737 +2779.714470 +2779.816301 +2779.911373 +2779.912838 +2779.918699 +2780.011972 +2780.012438 +2780.012971 +2780.015169 +2780.016667 +2780.111173 +2780.112238 +2780.115635 +2780.119731 +2780.213570 +2780.215268 +2780.216634 +2780.217932 +2780.411272 +2780.411638 +2780.412005 +2780.413969 +2780.414402 +2780.414935 +2780.512404 +2780.611072 +2780.612271 +2780.614435 +2780.615834 +2780.617066 +2780.711005 +2780.711572 +2780.819330 +2780.912038 +2780.913969 +2780.915734 +2781.011638 +2781.012071 +2781.012304 +2781.115267 +2781.211205 +2781.212603 +2781.213003 +2781.213269 +2781.216866 +2781.220329 +2781.312803 +2781.313402 +2781.314335 +2781.315134 +2781.412104 +2781.412570 +2781.415234 +2781.515067 +2781.515833 +2781.614401 +2781.713768 +2781.714301 +2781.715367 +2781.716233 +2786.021323 +2786.712165 +2786.729048 +2786.751692 +2786.752258 +2786.781163 +2786.784792 +2786.792917 +2786.794649 +2786.900310 +2786.909168 +2786.936107 +2786.988189 +2786.995082 +2787.041335 +2787.043167 +2787.044366 +2787.054489 +2787.067243 +2787.080097 +2787.120723 +2787.124119 +2787.126983 +2787.148828 +2787.157486 +2787.173403 +2787.183926 +2787.195348 +2787.196447 +2787.209234 +2787.233576 +2787.246796 +2787.258185 +2787.270906 +2787.272071 +2787.296047 +2787.298245 +2787.298645 +2787.299544 +2787.320822 +2787.332910 +2787.341502 +2787.366710 +2787.368708 +2787.380163 +2787.396114 +2787.407635 +2787.469573 +2787.488155 +2787.493982 +2787.495115 +2787.508002 +2787.516926 +2787.527582 +2787.543067 +2787.548694 +2787.556187 +2787.607369 +2787.620389 +2787.631312 +2787.632344 +2787.657419 +2787.710166 +2787.721122 +2787.721888 +2787.744532 +2787.759450 +2787.760615 +2787.771271 +2787.785257 +2787.797212 +2787.808967 +2787.832477 +2787.833975 +2787.841102 +2787.847662 +2787.848627 +2787.859716 +2787.871704 +2787.874368 +2787.875167 +2787.875833 +2787.886057 +2787.935840 +2787.938637 +2787.939703 +2787.974302 +2787.991085 +2788.004272 +2788.018424 +2788.032577 +2788.057518 +2788.059616 +2788.073036 +2788.078164 +2788.084525 +2788.091784 +2788.094115 +2788.105570 +2788.115893 +2788.121621 +2788.134475 +2788.147462 +2788.155753 +2788.167142 +2788.169773 +2788.179196 +2788.181561 +2788.189353 +2788.192283 +2788.192983 +2788.218757 +2788.219956 +2788.221521 +2788.235640 +2788.271404 +2788.285590 +2788.296945 +2788.297811 +2788.336572 +2788.337305 +2788.347728 +2788.348560 +2788.357385 +2788.357851 +2788.360515 +2788.370805 +2788.384957 +2788.399010 +2788.424251 +2788.425217 +2788.428147 +2788.438004 +2788.449126 +2788.472703 +2788.479629 +2788.493282 +2788.503971 +2788.542233 +2788.557518 +2788.567907 +2788.570705 +2788.583259 +2788.585956 +2788.595813 +2788.607101 +2788.622752 +2788.623052 +2788.633708 +2788.635273 +2788.636539 +2788.647161 +2788.659149 +2788.660748 +2788.672203 +2788.685623 +2788.689153 +2788.723718 +2788.750158 +2788.766109 +2788.766475 +2788.799875 +2788.814294 +2788.855653 +2788.865776 +2788.868440 +2788.890052 +2788.895479 +2788.896412 +2788.938736 +2788.948127 +2788.949492 +2788.949892 +2788.950291 +2788.951090 +2788.953821 +2788.961913 +2788.963778 +2789.013994 +2789.017024 +2789.025583 +2789.028280 +2789.029545 +2789.029878 +2789.039702 +2789.042832 +2789.061380 +2789.066974 +2789.076465 +2789.080528 +2789.098010 +2789.108599 +2789.159249 +2789.160847 +2789.164377 +2789.171237 +2789.194980 +2789.224450 +2789.247760 +2789.251956 +2789.262512 +2789.264743 +2789.274966 +2789.278363 +2789.294214 +2789.304870 +2789.305869 +2789.307600 +2789.329512 +2789.333075 +2789.333508 +2789.352755 +2789.355985 +2789.430477 +2789.439135 +2789.452888 +2789.455952 +2789.466774 +2789.480694 +2789.509298 +2789.510730 +2789.535306 +2789.587087 +2789.633241 +2789.648326 +2789.660780 +2789.688885 +2789.734107 +2789.760214 +2789.816491 +2789.959215 +2789.972302 +2789.998708 +2790.116990 +2790.168605 +2790.198442 +2790.256251 +2790.257250 +2790.271169 +2790.272801 +2790.315025 +2790.330376 +2790.344096 +2790.344562 +2790.375365 +2790.420520 +2790.460213 +2790.461812 +2790.638135 +2790.653353 +2790.671968 +2790.696510 +2790.739867 +2790.755784 +2790.828012 +2790.888618 +2790.972134 +2791.105234 +2791.130908 +2791.207865 +2791.267472 +2791.418454 +2801.713615 +2802.710317 +2802.930597 +2803.709351 +2803.712614 +2803.712847 +2803.911149 +2803.942351 +2804.928397 +2804.930928 +2805.925299 +2806.712611 +2806.881875 +2806.913943 +2811.712906 +2811.811540 +2811.812573 +2812.010908 +2812.011374 +2812.011773 +2812.013338 +2812.112373 +2812.112872 +2812.114437 +2812.115403 +2812.211240 +2812.211707 +2812.218866 +2812.220365 +2812.311274 +2812.311640 +2812.315203 +2812.316202 +2812.412572 +2812.415170 +2812.511440 +2812.511839 +2812.512372 +2812.515303 +2812.613737 +2812.614104 +2812.616268 +2812.617234 +2812.711540 +2812.713904 +2812.714636 +2812.715369 +2812.811773 +2812.815436 +2812.819831 +2812.820331 +2812.912638 +2812.913304 +2812.913870 +2812.914703 +2812.915502 +2812.916568 +2813.012671 +2813.014669 +2813.014869 +2813.016101 +2813.112039 +2813.114003 +2813.115435 +2813.119032 +2813.213204 +2813.214736 +2813.312405 +2813.314736 +2813.513404 +2813.514003 +2813.515435 +2813.617133 +2813.713237 +2813.714369 +2813.719364 +2813.815601 +2813.816633 +2813.910839 +2813.916067 +2814.012770 +2814.015434 +2814.016533 +2814.019097 +2814.111538 +2814.112437 +2814.114768 +2814.211571 +2814.213902 +2814.214602 +2814.312703 +2814.314502 +2814.319996 +2814.412570 +2814.511638 +2814.513269 +2814.514735 +2814.515867 +2814.517598 +2814.611604 +2814.612437 +2814.615534 +2814.716299 +2814.811604 +2814.812037 +2814.812403 +2814.814301 +2814.815600 +2814.817765 +2815.011870 +2815.012170 +2815.015633 +2815.112203 +2815.112703 +2815.114234 +2815.114834 +2815.212669 +2815.213935 +2815.312469 +2815.314667 +2815.317564 +2815.411637 +2815.412469 +2815.412969 +2815.413102 +2815.415100 +2815.415266 +2815.617064 +2815.714300 +2815.718430 +2815.811603 +2815.812036 +2815.812535 +2815.814067 +2815.815133 +2815.815532 +2815.819229 +2815.911869 +2815.912868 +2815.914567 +2816.013867 +2816.018163 +2816.211769 +2816.216464 +2816.217197 +2816.217996 +2816.311669 +2816.312801 +2816.314300 +2816.315066 +2816.411636 +2816.412402 +2816.414300 +2816.415632 +2816.512402 +2816.514832 +2816.515432 +2816.613667 +2816.614166 +2816.713267 +2816.719927 +2818.420258 +2818.435976 +2820.397013 +2821.373369 +2821.711431 +2821.712763 +2821.713762 +2821.727814 +2821.793382 +2821.832110 +2821.843798 +2822.046828 +2822.060115 +2822.109332 +2822.120588 +2822.135506 +2822.159615 +2822.186056 +2822.227780 +2822.252822 +2822.278729 +2822.315026 +2822.323218 +2822.335772 +2822.359715 +2822.362146 +2822.376132 +2822.387521 +2822.407401 +2822.428613 +2822.432309 +2822.463944 +2822.473867 +2822.483957 +2822.523851 +2822.534507 +2822.542732 +2822.547094 +2822.581327 +2822.591450 +2822.616691 +2822.617324 +2822.662079 +2822.720154 +2822.735239 +2822.735872 +2822.748559 +2822.768506 +2822.769338 +2822.806901 +2822.808299 +2822.849292 +2822.852688 +2822.900574 +2822.932342 +2822.949125 +2822.956884 +2822.986654 +2823.007533 +2823.022219 +2823.058915 +2823.060946 +2823.062845 +2823.095612 +2823.107666 +2823.118689 +2823.119455 +2823.121219 +2823.121852 +2823.145662 +2823.158116 +2823.180860 +2823.186154 +2823.187586 +2823.188286 +2823.197776 +2823.203271 +2823.211229 +2823.237004 +2823.252555 +2823.261879 +2823.296211 +2823.308632 +2823.309498 +2823.321552 +2823.323151 +2823.334339 +2823.347826 +2823.351789 +2823.365908 +2823.375165 +2823.376464 +2823.378895 +2823.387253 +2823.390949 +2823.393214 +2823.412561 +2823.414226 +2823.428012 +2823.444030 +2823.465608 +2823.490183 +2823.504636 +2823.515258 +2823.529677 +2823.531442 +2823.532641 +2823.541965 +2823.569171 +2823.578229 +2823.581858 +2823.605768 +2823.620486 +2823.633540 +2823.635238 +2823.650956 +2823.660913 +2823.673400 +2823.686221 +2823.700972 +2823.724615 +2823.752155 +2823.759913 +2823.788285 +2823.794146 +2823.800007 +2823.819887 +2823.831209 +2823.872168 +2823.874699 +2823.885821 +2823.889117 +2823.897842 +2823.898575 +2823.910429 +2823.923317 +2823.967239 +2823.969404 +2823.974865 +2823.977429 +2824.004735 +2824.013793 +2824.016557 +2824.028145 +2824.029743 +2824.051455 +2824.062777 +2824.079194 +2824.080592 +2824.093679 +2824.104935 +2824.109597 +2824.118554 +2824.122284 +2824.136104 +2824.147226 +2824.166806 +2824.182524 +2824.194678 +2824.211528 +2824.220819 +2824.221951 +2824.283423 +2824.302337 +2824.316956 +2824.325014 +2824.329144 +2824.329643 +2824.339000 +2824.430575 +2824.432240 +2824.447459 +2824.460545 +2824.469270 +2824.499706 +2824.516822 +2824.517588 +2824.528444 +2824.568571 +2824.621618 +2824.622050 +2824.650422 +2824.663942 +2824.676463 +2824.691814 +2824.741664 +2824.767338 +2824.821817 +2824.836835 +2824.838301 +2824.872533 +2824.882157 +2824.919719 +2824.949922 +2824.964108 +2824.979026 +2824.992047 +2825.026213 +2825.079959 +2825.113891 +2825.165107 +2825.180725 +2825.329842 +2825.356748 +2825.358746 +2825.387451 +2825.492479 +2825.678127 +2825.752452 +2825.781723 +2825.795243 +2825.813125 +2825.855716 +2826.175462 +2826.248789 +2826.682854 +2829.514287 +2829.520547 +2829.549285 +2829.902898 +2830.604196 +2830.727639 +2830.738628 +2831.016150 +2831.019780 +2831.046719 +2831.097635 +2831.102397 +2831.133399 +2831.195537 +2831.305594 +2831.329903 +2831.432800 +2831.433466 +2831.520778 +2831.903861 +2831.906992 +2831.924740 +2831.947518 +2831.959772 +2831.963701 +2832.057474 +2832.088909 +2832.118313 +2832.131101 +2832.134730 +2832.164567 +2832.172692 +2832.206159 +2832.270927 +2832.355776 +2832.379052 +2832.388776 +2832.450481 +2832.453511 +2832.546418 +2832.623308 +2832.716148 +2832.744986 +2833.403727 +2833.437959 +2833.456407 +2833.480350 +2833.565864 +2833.612318 +2833.657140 +2833.732831 +2833.794968 +2833.798298 +2833.831032 +2833.855807 +2834.035294 +2834.075587 +2834.253609 +2834.438957 +2834.831364 +2835.098996 +2835.111151 +2835.160268 +2835.206689 +2835.266562 +2835.296832 +2835.471523 +2835.887540 +2836.067693 +2836.073421 +2836.093867 +2836.159735 +2836.785208 +2836.796730 +2836.799161 +2836.820240 +2836.887706 +2837.072621 +2837.111049 +2837.151841 +2837.161831 +2837.263263 +2837.887039 +2837.887805 +2838.210315 +2838.484108 +2838.538387 +2838.566092 +2838.621670 +2838.637621 +2838.676249 +2838.698660 +2838.756335 +2838.888570 +2838.889169 +2839.107184 +2839.130294 +2839.178047 +2840.063294 +2840.091632 +2840.205618 +2841.212543 +2841.267721 +2841.362793 +2842.197291 +2842.251470 +2842.269286 +2842.910211 +2842.920101 +2842.934586 +2842.960560 +2843.052568 +2843.116571 +2843.139148 +2844.987232 +2845.088297 +2845.088763 +2845.090095 +2845.189063 +2845.192093 +2845.194424 +2845.286365 +2845.288796 +2845.289196 +2845.289995 +2845.386598 +2845.486132 +2845.486565 +2845.487531 +2845.487964 +2845.490261 +2845.587664 +2845.588563 +2845.589462 +2845.589762 +2845.591227 +2845.686498 +2845.686798 +2845.688929 +2845.692692 +2845.694956 +2845.787863 +2845.888762 +2845.890194 +2845.892392 +2846.086764 +2846.092092 +2846.190494 +2846.390560 +2846.487230 +2846.586997 +2846.588196 +2846.590127 +2846.686431 +2846.789361 +2846.889461 +2846.989094 +2846.990560 +2846.992091 +2847.087762 +2847.089694 +2847.193856 +2847.386963 +2847.387296 +2847.388728 +2847.487029 +2847.587329 +2847.686396 +2847.687029 +2847.891624 +2847.892357 +2847.994122 +2848.088494 +2848.190492 +2848.191524 +2848.389759 +2848.490458 +2848.588826 +2848.595353 +2848.687394 +2848.688993 +2848.889226 +2848.889825 +2848.890225 +2848.987461 +2848.989525 +2848.994953 +2849.188393 +2849.188892 +2849.387693 +2849.589525 +2849.886561 +2852.021890 +2852.030115 +2852.072506 +2852.183095 +2852.262049 +2854.499310 +2855.022619 +2855.046163 +2855.051257 +2855.079529 +2855.101973 +2855.124218 +2855.144597 +2855.204304 +2855.252689 +2855.266375 +2855.343898 +2855.381294 +2855.388886 +2855.403205 +2855.492216 +2855.518057 +2855.549992 +2855.563844 +2855.575000 +2855.608766 +2855.618456 +2855.622219 +2855.665509 +2855.696678 +2855.718689 +2855.729445 +2855.744430 +2855.763478 +2855.777364 +2855.824483 +2855.843065 +2855.885156 +2855.886521 +2855.892582 +2855.898343 +2855.904936 +2855.936671 +2855.944930 +2855.959115 +2855.974666 +2855.986754 +2855.997577 +2856.014527 +2856.041932 +2856.045695 +2856.057384 +2856.066708 +2856.094680 +2856.104403 +2856.107567 +2856.117790 +2856.129412 +2856.142898 +2856.145629 +2856.157184 +2856.159648 +2856.162845 +2856.173534 +2856.208599 +2856.221419 +2856.235905 +2856.237870 +2856.247593 +2856.310297 +2856.324450 +2856.334473 +2856.360780 +2856.375265 +2856.377497 +2856.388086 +2856.414693 +2856.428545 +2856.430710 +2856.454719 +2856.470870 +2856.490617 +2856.491416 +2856.505135 +2856.524583 +2856.526214 +2856.528978 +2856.550290 +2856.553121 +2856.563244 +2856.574999 +2856.600074 +2856.602938 +2856.625282 +2856.625648 +2856.637669 +2856.644130 +2856.650890 +2856.676564 +2856.679528 +2856.706267 +2856.731476 +2856.733307 +2856.743896 +2856.748026 +2856.762844 +2856.784756 +2856.798775 +2856.823217 +2856.826247 +2856.842431 +2856.852355 +2856.922884 +2856.951788 +2856.972867 +2856.992414 +2856.996943 +2857.021519 +2857.025182 +2857.040067 +2857.059281 +2857.080693 +2857.089251 +2857.094246 +2857.101838 +2857.105268 +2857.159714 +2857.173633 +2857.200306 +2857.208931 +2857.225881 +2857.247925 +2857.291681 +2857.331109 +2857.342930 +2857.356084 +2857.374432 +2857.381691 +2857.420885 +2857.428678 +2857.456849 +2857.473133 +2857.569870 +2857.584788 +2857.595111 +2857.595677 +2857.627479 +2857.638901 +2857.778194 +2857.961145 +2857.961711 +2857.962177 +2857.979460 +2858.006299 +2858.096809 +2858.174931 +2858.199806 +2858.216223 +2858.218587 +2858.327212 +2858.355050 +2858.382323 +2858.422450 +2858.455050 +2858.467671 +2858.528610 +2858.553652 +2858.662443 +2858.717654 +2858.747591 +2858.892979 +2858.896875 +2858.945593 +2858.987417 +2858.988383 +2859.004300 +2859.090281 +2859.180191 +2859.180724 +2859.193844 +2859.254483 +2859.311326 +2859.342895 +2859.343394 +2859.346325 +2859.370168 +2859.401936 +2859.429508 +2859.445326 +2859.461509 +2859.476295 +2859.504533 +2859.506864 +2859.508163 +2859.553051 +2859.568169 +2859.578992 +2859.610061 +2859.702069 +2859.716687 +2859.729741 +2859.757480 +2859.774529 +2859.805931 +2859.815821 +2859.817353 +2859.859478 +2870.890036 +2871.247612 +2872.259332 +2872.889701 +2873.887469 +2873.890466 +2874.280842 +2874.297026 +2874.889166 +2875.160928 +2875.220068 +2876.279941 +2876.328592 +2877.543376 +2879.773843 +2879.988529 +2879.989494 +2879.989761 +2879.990793 +2880.088961 +2880.089894 +2880.091326 +2880.092425 +2880.093956 +2880.189294 +2880.193457 +2880.290193 +2880.292824 +2880.296787 +2880.388994 +2880.390326 +2880.390926 +2880.391525 +2880.396220 +2880.489294 +2880.489993 +2880.491359 +2880.590160 +2880.590359 +2880.591125 +2880.691159 +2880.691958 +2880.692191 +2880.791325 +2880.792590 +2880.893989 +2880.989393 +2880.991458 +2881.094355 +2881.095054 +2881.192057 +2881.193955 +2881.197119 +2881.290359 +2881.292490 +2881.389959 +2881.390825 +2881.392223 +2881.392923 +2881.396319 +2881.492190 +2881.494921 +2881.590259 +2881.690025 +2881.792256 +2881.889992 +2881.895287 +2881.989159 +2881.993055 +2881.993688 +2881.997651 +2882.089226 +2882.090125 +2882.096352 +2882.097917 +2882.190091 +2882.190524 +2882.192689 +2882.289192 +2882.293821 +2882.390091 +2882.392289 +2882.490457 +2882.491989 +2882.496418 +2882.589192 +2882.589991 +2882.590557 +2882.591456 +2882.690524 +2882.692389 +2882.790191 +2882.890490 +2882.894353 +2882.895052 +2882.990557 +2882.992355 +2882.993854 +2883.089691 +2883.090590 +2883.189391 +2883.289857 +2883.293653 +2883.393820 +2883.590689 +2883.594452 +2883.689357 +2883.693453 +2883.790556 +2883.791722 +2883.792887 +2883.889457 +2883.890290 +2883.897083 +2883.897283 +2883.897882 +2883.990756 +2883.992154 +2884.089856 +2884.090922 +2884.092520 +2884.190755 +2884.191355 +2884.293419 +2884.391987 +2884.593419 +2884.594518 +2884.692353 +2884.695051 +2884.700046 +2884.790755 +2884.890955 +2885.585926 +2889.121753 +2889.122852 +2889.215026 +2889.259981 +2889.288985 +2889.319855 +2889.377797 +2889.424516 +2890.021852 +2890.236937 +2890.279161 +2890.281858 +2890.305335 +2890.329477 +2890.373866 +2890.391582 +2890.451688 +2890.462078 +2890.550356 +2890.562777 +2890.563443 +2890.584355 +2890.600573 +2890.630343 +2890.650423 +2890.661445 +2890.663343 +2890.685754 +2890.722750 +2890.754086 +2890.767239 +2890.778661 +2890.780026 +2890.790616 +2890.816323 +2890.841365 +2890.851022 +2890.863876 +2890.870636 +2890.901272 +2890.945927 +2890.957182 +2890.958714 +2890.965307 +2890.967738 +2890.980459 +2891.005700 +2891.018554 +2891.038135 +2891.052154 +2891.063309 +2891.064109 +2891.099706 +2891.140066 +2891.146559 +2891.167105 +2891.189317 +2891.205167 +2891.215257 +2891.216656 +2891.254318 +2891.255717 +2891.256083 +2891.267738 +2891.282423 +2891.294078 +2891.304501 +2891.306166 +2891.307565 +2891.317055 +2891.318421 +2891.318720 +2891.343695 +2891.377961 +2891.384288 +2891.385853 +2891.388617 +2891.399839 +2891.402104 +2891.412826 +2891.452087 +2891.463842 +2891.464208 +2891.482024 +2891.488783 +2891.491314 +2891.499739 +2891.521184 +2891.529376 +2891.547924 +2891.573832 +2891.575696 +2891.577828 +2891.589216 +2891.596342 +2891.599606 +2891.623049 +2891.641764 +2891.651054 +2891.659945 +2891.661977 +2891.674264 +2891.686452 +2891.687118 +2891.690448 +2891.701004 +2891.719186 +2891.725680 +2891.726845 +2891.728743 +2891.732306 +2891.754018 +2891.769336 +2891.775663 +2891.789849 +2891.790515 +2891.807598 +2891.816322 +2891.831440 +2891.842729 +2891.844094 +2891.871534 +2891.886286 +2891.923748 +2891.936702 +2891.978959 +2891.997907 +2892.006365 +2892.007165 +2892.046525 +2892.048290 +2892.112226 +2892.118054 +2892.126112 +2892.153285 +2892.168703 +2892.180924 +2892.187018 +2892.211926 +2892.223148 +2892.231407 +2892.244094 +2892.248190 +2892.272632 +2892.310428 +2892.314690 +2892.325446 +2892.355616 +2892.381823 +2892.410994 +2892.419851 +2892.502502 +2892.510927 +2892.513191 +2892.539731 +2892.548256 +2892.549555 +2892.563175 +2892.576428 +2892.577893 +2892.625679 +2892.626944 +2892.641829 +2892.651520 +2892.682056 +2892.731872 +2892.803900 +2892.847090 +2892.874596 +2892.876195 +2892.903234 +2892.905066 +2892.919518 +2892.933604 +2892.959212 +2892.972498 +2892.987983 +2893.004300 +2893.085652 +2893.115022 +2893.143294 +2893.154116 +2893.253883 +2893.280989 +2893.307896 +2893.334736 +2893.379358 +2893.404499 +2893.474429 +2893.501036 +2893.528841 +2893.554982 +2893.569800 +2893.583087 +2893.597240 +2893.682587 +2893.695308 +2893.752551 +2893.785984 +2893.825578 +2893.896840 +2893.968068 +2894.012058 +2894.097339 +2894.101135 +2894.371198 +2894.398171 +2894.498404 +2894.499603 +2894.760076 +2894.774361 +2894.789280 +2894.790412 +2894.792643 +2894.822413 +2894.853482 +2894.868167 +2899.544153 +2899.558872 +2899.831865 +2904.674118 +2905.137188 +2905.892732 +2905.894230 +2906.892265 +2907.063560 +2907.130093 +2907.201755 +2907.890698 +2907.893163 +2908.159429 +2908.890331 +2908.894760 +2909.893660 +2912.988096 +2913.022262 +2913.452897 +2913.494256 +2913.538478 +2913.623360 +2913.693124 +2913.911572 +2914.889426 +2914.891058 +2914.894255 +2914.994587 +2915.092256 +2915.094820 +2915.095486 +2915.102180 +2915.193089 +2915.194654 +2915.194954 +2915.292622 +2915.293288 +2915.294287 +2915.294820 +2915.295320 +2915.295753 +2915.296752 +2915.298050 +2915.299482 +2915.392722 +2915.393122 +2915.393488 +2915.393988 +2915.394487 +2915.394920 +2915.395952 +2915.493488 +2915.494021 +2915.496119 +2915.594620 +2915.595086 +2915.595353 +2915.598250 +2915.697351 +2915.794886 +2915.797550 +2915.894820 +2915.895652 +2915.899049 +2915.992755 +2915.993854 +2915.997084 +2915.997850 +2916.001480 +2916.097750 +2916.194320 +2916.197217 +2916.199814 +2916.295086 +2916.297250 +2916.394320 +2916.401812 +2916.501013 +2916.593820 +2916.695618 +2916.697050 +2916.794186 +2916.796517 +2916.892987 +2916.893487 +2916.893820 +2916.895818 +2916.899581 +2916.900213 +2916.993886 +2917.093553 +2917.093919 +2917.094519 +2917.095917 +2917.096417 +2917.193819 +2917.293819 +2917.295018 +2917.391854 +2917.396450 +2917.493553 +2917.493819 +2917.494585 +2917.592687 +2917.595717 +2917.596783 +2917.695217 +2917.696083 +2917.793452 +2917.793885 +2917.796449 +2917.995017 +2917.997615 +2918.092986 +2918.094851 +2918.295084 +2918.392653 +2918.397415 +2918.593385 +2918.596582 +2918.597248 +2918.898213 +2918.994783 +2919.097680 +2919.098013 +2919.296281 +2919.393651 +2919.492985 +2919.893317 +2920.546397 +2921.642266 +2921.654687 +2921.663812 +2921.725217 +2922.997710 +2923.642398 +2925.018953 +2925.228377 +2925.255183 +2925.264441 +2925.295343 +2925.298973 +2925.314923 +2925.316389 +2925.316955 +2925.326312 +2925.390415 +2925.439865 +2925.473565 +2925.551387 +2925.553818 +2925.565273 +2925.587451 +2925.598706 +2925.611460 +2925.649156 +2925.650188 +2925.651087 +2925.662442 +2925.674730 +2925.679658 +2925.708929 +2925.715256 +2925.742795 +2925.744493 +2925.751886 +2925.756382 +2925.821516 +2925.843095 +2925.843861 +2925.867537 +2925.903401 +2925.907231 +2925.931240 +2925.941896 +2925.944293 +2925.955416 +2925.957380 +2925.959278 +2925.966105 +2925.978859 +2925.982489 +2926.004433 +2926.028542 +2926.044693 +2926.052885 +2926.053784 +2926.054816 +2926.062708 +2926.065972 +2926.069368 +2926.078393 +2926.087250 +2926.092079 +2926.101469 +2926.126678 +2926.127110 +2926.128875 +2926.152818 +2926.153884 +2926.167037 +2926.176561 +2926.189182 +2926.189781 +2926.202568 +2926.245958 +2926.251752 +2926.258779 +2926.261010 +2926.262641 +2926.273198 +2926.282055 +2926.283221 +2926.285152 +2926.294443 +2926.313790 +2926.335901 +2926.368436 +2926.370567 +2926.392645 +2926.400137 +2926.406298 +2926.419285 +2926.433337 +2926.445558 +2926.446191 +2926.456547 +2926.457446 +2926.470600 +2926.473331 +2926.494043 +2926.509295 +2926.510027 +2926.517819 +2926.518186 +2926.519551 +2926.524846 +2926.535468 +2926.544892 +2926.547123 +2926.548256 +2926.557446 +2926.558545 +2926.585285 +2926.589914 +2926.600803 +2926.612225 +2926.621083 +2926.622648 +2926.633870 +2926.635768 +2926.644692 +2926.646690 +2926.647123 +2926.659244 +2926.660443 +2926.670733 +2926.671998 +2926.732904 +2926.742395 +2926.753717 +2926.755814 +2926.764639 +2926.767270 +2926.794909 +2926.808662 +2926.821349 +2926.830506 +2926.841296 +2926.869201 +2926.905898 +2926.907329 +2926.921615 +2926.922514 +2926.985884 +2926.986750 +2926.987882 +2926.998338 +2927.025012 +2927.038265 +2927.041528 +2927.064406 +2927.096473 +2927.104465 +2927.116487 +2927.122414 +2927.142827 +2927.173596 +2927.184252 +2927.196573 +2927.199271 +2927.210160 +2927.213456 +2927.264239 +2927.291312 +2927.292244 +2927.332704 +2927.345791 +2927.372897 +2927.385917 +2927.411791 +2927.412690 +2927.450452 +2927.451651 +2927.477992 +2927.505797 +2927.690246 +2927.702966 +2927.769766 +2927.783819 +2927.851884 +2927.853316 +2927.856479 +2927.872563 +2928.135966 +2928.260508 +2928.314887 +2928.478690 +2928.700435 +2928.725643 +2928.804863 +2929.006928 +2929.769931 +2940.896227 +2941.895659 +2942.206082 +2942.895359 +2944.098055 +2944.894225 +2944.895490 +2949.891789 +2949.894652 +2949.992588 +2949.993021 +2949.996018 +2950.092654 +2950.095118 +2950.193220 +2950.194652 +2950.196117 +2950.292288 +2950.292787 +2950.294053 +2950.295351 +2950.300246 +2950.394352 +2950.394852 +2950.396983 +2950.496284 +2950.592654 +2950.595018 +2950.596217 +2950.600013 +2950.695651 +2950.793786 +2950.795584 +2950.800812 +2950.992653 +2950.994285 +2950.995517 +2950.996816 +2951.097448 +2951.193452 +2951.195617 +2951.197149 +2951.292553 +2951.293419 +2951.295983 +2951.296416 +2951.393485 +2951.494285 +2951.496416 +2951.592586 +2951.695783 +2951.696615 +2951.698813 +2951.699346 +2951.792686 +2951.795117 +2951.795683 +2951.797115 +2951.797348 +2951.798147 +2951.892519 +2951.895783 +2951.992619 +2951.994617 +2951.995649 +2951.997314 +2951.998047 +2952.096482 +2952.098180 +2952.193385 +2952.195050 +2952.197447 +2952.293351 +2952.294417 +2952.295516 +2952.398646 +2952.493451 +2952.495749 +2952.593651 +2952.596515 +2952.596947 +2952.692552 +2952.696648 +2952.697513 +2952.797314 +2952.799978 +2952.892485 +2952.893417 +2952.992585 +2952.993650 +2953.092551 +2953.193817 +2953.195715 +2953.197546 +2953.198146 +2953.293417 +2953.293717 +2953.295548 +2953.393717 +2953.493650 +2953.696314 +2953.798245 +2953.892517 +2953.893683 +2953.896380 +2953.897512 +2953.900476 +2953.993283 +2953.993616 +2953.994049 +2953.994948 +2954.093583 +2954.094881 +2954.095348 +2954.097712 +2954.194382 +2954.393516 +2954.393716 +2954.395714 +2954.397145 +2954.397678 +2954.593216 +2954.695680 +2954.698078 +2954.793249 +2954.801374 +2954.892383 +2954.893282 +2959.907296 +2960.008695 +2960.170833 +2960.181888 +2960.191712 +2960.193477 +2960.228974 +2960.237000 +2960.319217 +2960.330240 +2960.340063 +2960.353084 +2960.410626 +2960.430473 +2960.432437 +2960.460143 +2960.504732 +2960.505198 +2960.527276 +2960.551019 +2960.560776 +2960.566237 +2960.567302 +2960.597772 +2960.632504 +2960.633736 +2960.645491 +2960.671931 +2960.699970 +2960.705997 +2960.707329 +2960.716753 +2960.717252 +2960.730472 +2960.751451 +2960.754282 +2960.754648 +2960.762807 +2960.772830 +2960.793509 +2960.795241 +2960.798704 +2960.799403 +2960.846956 +2960.887515 +2960.908894 +2960.920049 +2960.958444 +2960.985750 +2961.023646 +2961.026543 +2961.060009 +2961.069600 +2961.081521 +2961.117285 +2961.127209 +2961.131271 +2961.153449 +2961.161508 +2961.185251 +2961.194341 +2961.195807 +2961.196573 +2961.208361 +2961.210858 +2961.219883 +2961.269932 +2961.273063 +2961.295507 +2961.321747 +2961.332237 +2961.333835 +2961.349053 +2961.355780 +2961.356579 +2961.357412 +2961.368634 +2961.373828 +2961.381787 +2961.383685 +2961.396672 +2961.406462 +2961.408860 +2961.440895 +2961.456712 +2961.484218 +2961.507794 +2961.512390 +2961.575493 +2961.590179 +2961.600635 +2961.601267 +2961.603399 +2961.613655 +2961.625277 +2961.641194 +2961.651018 +2961.653215 +2961.661507 +2961.665836 +2961.669199 +2961.674394 +2961.676492 +2961.677691 +2961.687748 +2961.694008 +2961.699369 +2961.700268 +2961.716286 +2961.721214 +2961.724011 +2961.737265 +2961.761274 +2961.774461 +2961.774927 +2961.809925 +2961.815153 +2961.850818 +2961.878590 +2961.894607 +2961.950485 +2961.984451 +2962.023611 +2962.036765 +2962.063771 +2962.145356 +2962.147088 +2962.190844 +2962.297104 +2962.323445 +2962.637797 +2962.703897 +2962.729638 +2962.784017 +2962.897670 +2963.036764 +2963.052348 +2963.111822 +2963.171529 +2963.311589 +2963.318748 +2963.428205 +2963.457509 +2963.580753 +2963.801065 +2963.998867 +2964.318681 +2975.891097 +2975.893394 +2975.894227 +2976.106747 +2976.113707 +2976.116737 +2976.120967 +2976.889764 +2976.893327 +2976.893893 +2977.105714 +2977.890961 +2977.891394 +2977.892260 +2977.893825 +2978.891293 +2978.893525 +2979.120364 +2979.890693 +2979.891725 +2980.121395 +2982.349165 +2984.706373 +2984.728417 +2984.735677 +2984.742503 +2984.890288 +2984.890555 +2984.892786 +2984.991287 +2984.992619 +2985.093718 +2985.094551 +2985.096715 +2985.195017 +2985.198280 +2985.292619 +2985.294484 +2985.295583 +2985.298280 +2985.299612 +2985.391853 +2985.392985 +2985.592519 +2985.595416 +2985.691520 +2985.692452 +2985.792452 +2985.792952 +2985.895549 +2985.992219 +2985.992652 +2985.993251 +2985.994250 +2985.997314 +2985.999711 +2986.093850 +2986.094317 +2986.095415 +2986.099278 +2986.193417 +2986.292651 +2986.293950 +2986.297014 +2986.301243 +2986.399311 +2986.498978 +2986.592818 +2986.595548 +2986.596580 +2986.598345 +2986.691585 +2986.697479 +2986.792584 +2986.793550 +2986.796281 +2986.892518 +2986.892984 +2986.895781 +2986.897080 +2986.991752 +2986.992151 +2986.995548 +2986.996613 +2986.999910 +2987.091652 +2987.192284 +2987.193982 +2987.200476 +2987.296347 +2987.300376 +2987.393483 +2987.492350 +2987.494015 +2987.495414 +2987.496779 +2987.499010 +2987.592750 +2987.596380 +2987.691718 +2987.693449 +2987.694382 +2987.701408 +2987.792583 +2987.792783 +2987.793516 +2987.794015 +2987.794714 +2987.795514 +2987.892683 +2987.894548 +2987.895047 +2987.895580 +2987.896246 +2987.899143 +2987.900475 +2987.991684 +2987.993482 +2987.996546 +2987.999509 +2988.001408 +2988.091784 +2988.195580 +2988.197778 +2988.291617 +2988.294248 +2988.298277 +2988.392882 +2988.393881 +2988.495713 +2988.500375 +2988.592816 +2988.594514 +2988.694048 +2988.694514 +2988.696079 +2988.696645 +2988.698044 +2988.792582 +2988.796711 +2988.892516 +2988.993947 +2989.093481 +2989.193414 +2989.292482 +2989.294680 +2989.394613 +2989.492482 +2989.492615 +2989.495012 +2989.698975 +2989.795612 +2989.801372 +2989.894812 +2993.632970 +2993.710959 +2993.743093 +2994.955946 +2995.079289 +2995.101634 +2995.111757 +2995.124611 +2995.157877 +2995.181254 +2995.192243 +2995.193875 +2995.227974 +2995.264071 +2995.302333 +2995.352882 +2995.368600 +2995.378623 +2995.424610 +2995.428673 +2995.444690 +2995.448420 +2995.483684 +2995.484950 +2995.493741 +2995.507561 +2995.530704 +2995.533102 +2995.543891 +2995.555779 +2995.604464 +2995.606495 +2995.638763 +2995.669498 +2995.681653 +2995.687780 +2995.692808 +2995.709458 +2995.751550 +2995.762605 +2995.772562 +2995.784650 +2995.799535 +2995.808593 +2995.809092 +2995.809492 +2995.810091 +2995.824910 +2995.827673 +2995.837863 +2995.864370 +2995.881087 +2995.895139 +2995.900700 +2995.907827 +2995.919981 +2995.929571 +2995.931303 +2995.933334 +2995.933867 +2995.966401 +2995.974360 +2995.976058 +2995.997337 +2995.998169 +2995.998869 +2996.010957 +2996.034300 +2996.035565 +2996.081020 +2996.107793 +2996.117184 +2996.119182 +2996.130271 +2996.133401 +2996.133834 +2996.155146 +2996.159108 +2996.167733 +2996.192342 +2996.192808 +2996.214420 +2996.217050 +2996.220447 +2996.259741 +2996.260240 +2996.272462 +2996.300900 +2996.317883 +2996.354313 +2996.363504 +2996.389944 +2996.394073 +2996.415751 +2996.416484 +2996.428339 +2996.428972 +2996.429305 +2996.452881 +2996.453780 +2996.454246 +2996.478489 +2996.489378 +2996.517982 +2996.540194 +2996.560107 +2996.582052 +2996.583350 +2996.596038 +2996.630770 +2996.647786 +2996.668199 +2996.670963 +2996.686947 +2996.707393 +2996.714386 +2996.731202 +2996.756977 +2996.769131 +2996.770263 +2996.780953 +2996.785848 +2996.794805 +2996.820280 +2996.863204 +2996.895871 +2996.952015 +2996.956410 +2996.957209 +2996.982451 +2997.044455 +2997.084016 +2997.100766 +2997.155378 +2997.161205 +2997.210156 +2997.216184 +2997.418548 +2997.426406 +2997.441125 +2997.472127 +2997.507525 +2997.512054 +2997.596170 +2997.612953 +2997.651581 +2997.709423 +2997.816116 +2997.883316 +2997.926106 +2997.940225 +2997.955077 +2999.004826 +3002.032696 +3010.889996 +3011.892160 +3011.895323 +3013.890925 +3014.892090 +3019.889488 +3019.990853 +3019.991985 +3019.993017 +3020.091286 +3020.092018 +3020.096281 +3020.190853 +3020.191419 +3020.191918 +3020.193050 +3020.195914 +3020.293250 +3020.294049 +3020.295981 +3020.307702 +3020.390786 +3020.391951 +3020.397979 +3020.493117 +3020.591318 +3020.691285 +3020.692417 +3020.693483 +3020.792017 +3020.792251 +3020.792617 +3020.793516 +3020.892517 +3020.991917 +3020.995314 +3020.996080 +3020.996646 +3021.191518 +3021.194148 +3021.294015 +3021.297245 +3021.392916 +3021.393349 +3021.394781 +3021.494381 +3021.495214 +3021.496312 +3021.592250 +3021.592816 +3021.593382 +3021.594248 +3021.594714 +3021.596912 +3021.691151 +3021.692616 +3021.693382 +3021.695213 +3021.698876 +3021.792449 +3021.792782 +3021.796179 +3021.892649 +3021.894614 +3021.992949 +3021.997711 +3022.092316 +3022.093282 +3022.097577 +3022.192715 +3022.292715 +3022.301340 +3022.392382 +3022.392782 +3022.394946 +3022.399275 +3022.491483 +3022.494180 +3022.495479 +3022.591583 +3022.594846 +3022.595679 +3022.692315 +3022.694247 +3022.697410 +3022.794180 +3022.796911 +3022.891782 +3022.892315 +3022.893314 +3022.992581 +3022.994380 +3022.994912 +3022.995512 +3023.091882 +3023.095445 +3023.293347 +3023.393380 +3023.492614 +3023.492781 +3023.494879 +3023.496810 +3023.595744 +3023.692780 +3023.694579 +3023.697076 +3023.792714 +3023.795145 +3023.891482 +3023.891781 +3023.892181 +3023.894911 +3023.898641 +3023.992381 +3023.998974 +3024.093346 +3024.194811 +3024.197509 +3024.292647 +3024.293746 +3024.391448 +3024.392780 +3024.393279 +3024.395344 +3024.491381 +3024.492680 +3024.591448 +3024.592347 +3024.595077 +3024.693246 +3024.693745 +3024.791414 +3024.792180 +3024.795843 +3024.796376 +3024.797475 +3024.799972 +3024.806199 +3024.892080 +3024.892579 +3024.894111 +3024.894677 +3027.038232 +3027.062974 +3027.100969 +3027.132337 +3028.293175 +3028.325476 +3028.352116 +3028.425543 +3028.433402 +3028.500301 +3028.529039 +3028.545256 +3029.691309 +3030.079254 +3030.099467 +3030.163004 +3030.185381 +3030.232900 +3030.264469 +3030.293939 +3030.318049 +3030.339860 +3030.413020 +3030.427339 +3030.437795 +3030.456676 +3030.505195 +3030.517116 +3030.530503 +3030.580319 +3030.594106 +3030.605627 +3030.637828 +3030.646886 +3030.683250 +3030.708691 +3030.754145 +3030.754911 +3030.768464 +3030.780752 +3030.781751 +3030.783416 +3030.844488 +3030.855444 +3030.903496 +3030.926539 +3030.938494 +3030.987945 +3030.988311 +3030.998134 +3031.012021 +3031.051947 +3031.113253 +3031.122876 +3031.134964 +3031.135663 +3031.159873 +3031.161937 +3031.178754 +3031.198967 +3031.204994 +3031.244754 +3031.256676 +3031.265966 +3031.290575 +3031.302330 +3031.303795 +3031.328304 +3031.332333 +3031.338427 +3031.349749 +3031.365667 +3031.377721 +3031.387778 +3031.391041 +3031.393272 +3031.412153 +3031.415983 +3031.417781 +3031.426705 +3031.439326 +3031.439859 +3031.452846 +3031.453479 +3031.468597 +3031.478154 +3031.489409 +3031.527838 +3031.528204 +3031.529236 +3031.539659 +3031.559972 +3031.563169 +3031.573192 +3031.582583 +3031.583149 +3031.587711 +3031.593272 +3031.597801 +3031.606525 +3031.608457 +3031.619013 +3031.644521 +3031.659306 +3031.679885 +3031.706925 +3031.717681 +3031.718647 +3031.741424 +3031.755410 +3031.757208 +3031.759472 +3031.762503 +3031.767298 +3031.782416 +3031.794104 +3031.797501 +3031.806991 +3031.856642 +3031.872493 +3031.873625 +3031.877055 +3031.910155 +3031.913418 +3031.949449 +3031.958540 +3031.963901 +3031.978753 +3032.001663 +3032.032799 +3032.039725 +3032.065799 +3032.125339 +3032.138060 +3032.166631 +3032.177854 +3032.178253 +3032.180717 +3032.213318 +3032.214250 +3032.215882 +3032.227304 +3032.240657 +3032.243421 +3032.253944 +3032.282782 +3032.285945 +3032.325206 +3032.334663 +3032.335929 +3032.347950 +3032.360271 +3032.362835 +3032.404760 +3032.440824 +3032.468496 +3032.509222 +3032.564533 +3032.633031 +3032.783614 +3032.787410 +3032.843221 +3032.897600 +3032.905159 +3032.911852 +3032.933564 +3032.969694 +3032.999331 +3033.112518 +3033.113783 +3033.142055 +3033.142521 +3033.190240 +3033.214616 +3033.229601 +3033.344020 +3033.389641 +3033.451012 +3033.533397 +3033.592304 +3033.622607 +3033.624339 +3033.637892 +3033.797899 +3033.900496 +3033.916014 +3033.923872 +3033.931032 +3033.946783 +3033.990839 +3034.023106 +3034.100862 +3034.646849 +3034.647415 +3034.662267 +3037.058368 +3038.661996 +3038.695596 +3038.789435 +3038.821004 +3038.854237 +3038.871353 +3038.919106 +3038.969821 +3040.121402 +3040.182408 +3040.215741 +3040.705850 +3040.720369 +3042.223631 +3042.235819 +3042.425396 +3042.551703 +3042.568020 +3043.986200 +3043.994858 +3044.003283 +3045.120198 +3045.264187 +3046.895055 +3047.891524 +3047.893256 +3048.674440 +3048.701680 +3048.716798 +3048.888659 +3048.892389 +3048.894187 +3049.892221 +3049.893387 +3050.426287 +3050.440506 +3050.450729 +3051.620658 +3051.641537 +3051.702942 +3052.923687 +3052.949395 +3054.891750 +3054.892316 +3054.893382 +3054.894414 +3054.991450 +3054.998077 +3055.092216 +3055.191617 +3055.192083 +3055.192516 +3055.193981 +3055.198177 +3055.297777 +3055.391883 +3055.395013 +3055.491883 +3055.492915 +3055.494813 +3055.595346 +3055.792948 +3055.793414 +3055.793881 +3055.794713 +3055.892149 +3055.892548 +3055.893148 +3055.896811 +3055.897810 +3056.095212 +3056.192282 +3056.193048 +3056.193414 +3056.193913 +3056.293081 +3056.294346 +3056.295345 +3056.393081 +3056.492115 +3056.493214 +3056.496211 +3056.593114 +3056.596910 +3056.597310 +3056.693180 +3056.696377 +3056.793247 +3056.893147 +3056.895811 +3056.896277 +3056.995411 +3057.093280 +3057.095478 +3057.100473 +3057.194212 +3057.194812 +3057.196377 +3057.293313 +3057.293513 +3057.295477 +3057.395910 +3057.396576 +3057.498108 +3057.597109 +3057.692913 +3057.693279 +3057.792180 +3057.793379 +3057.795477 +3057.796776 +3057.798707 +3057.894844 +3057.897708 +3057.996676 +3058.093112 +3058.093445 +3058.192246 +3058.200172 +3058.296875 +3058.298440 +3058.396342 +3058.493378 +3058.593511 +3058.596409 +3058.601337 +3058.693245 +3058.694177 +3058.795276 +3058.795576 +3058.798240 +3058.800238 +3058.892146 +3058.996175 +3059.094776 +3059.095576 +3059.096741 +3059.097540 +3059.192212 +3059.198572 +3059.292478 +3059.294876 +3059.394976 +3059.494643 +3059.594942 +3059.696507 +3059.699971 +3059.792678 +3059.795641 +3062.473128 +3063.381385 +3063.532867 +3063.539694 +3064.295903 +3064.391541 +3064.467532 +3064.891207 +3064.892806 +3065.101830 +3065.225273 +3065.226305 +3065.272825 +3065.307790 +3065.384014 +3065.416448 +3065.419712 +3065.429402 +3065.431367 +3065.431900 +3065.444287 +3065.455076 +3065.498333 +3065.527337 +3065.541257 +3065.581883 +3065.644220 +3065.651380 +3065.677587 +3065.742256 +3065.744920 +3065.767197 +3065.780051 +3065.780717 +3065.789042 +3065.791306 +3065.803361 +3065.804826 +3065.817514 +3065.838826 +3065.839591 +3065.840357 +3065.851646 +3065.855043 +3065.872991 +3065.884247 +3065.888143 +3065.898266 +3065.900963 +3065.909688 +3065.910820 +3065.912718 +3065.923707 +3065.937160 +3065.950381 +3065.961603 +3065.976188 +3065.988376 +3066.000664 +3066.010720 +3066.013784 +3066.015316 +3066.027970 +3066.039525 +3066.041389 +3066.063168 +3066.079052 +3066.095902 +3066.097500 +3066.103094 +3066.110354 +3066.124007 +3066.126171 +3066.131166 +3066.144686 +3066.145152 +3066.151646 +3066.169261 +3066.170127 +3066.170693 +3066.181882 +3066.196201 +3066.198232 +3066.207923 +3066.208955 +3066.214583 +3066.247383 +3066.250280 +3066.250980 +3066.265898 +3066.273291 +3066.275089 +3066.282481 +3066.288742 +3066.291106 +3066.302794 +3066.305492 +3066.314083 +3066.315748 +3066.317446 +3066.321842 +3066.323740 +3066.330300 +3066.343187 +3066.347916 +3066.354842 +3066.364633 +3066.371825 +3066.380217 +3066.382814 +3066.383547 +3066.395069 +3066.415215 +3066.421642 +3066.431099 +3066.436561 +3066.447616 +3066.454742 +3066.464832 +3066.469261 +3066.470393 +3066.476554 +3066.481482 +3066.485778 +3066.488642 +3066.514649 +3066.525971 +3066.537293 +3066.577453 +3066.584712 +3066.590407 +3066.592971 +3066.593637 +3066.603160 +3066.616314 +3066.620510 +3066.629434 +3066.638725 +3066.645052 +3066.672158 +3066.725771 +3066.741489 +3066.754276 +3066.756107 +3066.757839 +3066.768062 +3066.773590 +3066.781415 +3066.794702 +3066.797399 +3066.807656 +3066.821242 +3066.834862 +3066.885311 +3066.912051 +3066.929867 +3066.940489 +3066.963200 +3066.964832 +3066.966430 +3066.995501 +3066.997366 +3067.011585 +3067.029667 +3067.081448 +3067.087143 +3067.113017 +3067.125538 +3067.156473 +3067.180349 +3067.192437 +3067.204392 +3067.245085 +3067.247515 +3067.280982 +3067.302594 +3067.321441 +3067.329933 +3067.330166 +3067.344785 +3067.371758 +3067.373489 +3067.399896 +3067.428001 +3067.433463 +3067.441355 +3067.456706 +3067.485344 +3067.550912 +3067.574688 +3067.585777 +3067.599996 +3067.614814 +3067.617845 +3067.673023 +3067.690872 +3067.719676 +3067.730066 +3067.731165 +3067.742420 +3067.767195 +3067.775021 +3067.777152 +3067.801927 +3067.891704 +3067.921674 +3067.939090 +3067.961234 +3067.962866 +3067.977784 +3068.022073 +3068.022540 +3068.037192 +3068.128267 +3068.208553 +3068.212250 +3068.455007 +3068.455806 +3068.513581 +3068.530731 +3068.531830 +3068.707354 +3068.985842 +3069.001926 +3069.016778 +3069.078782 +3069.156971 +3069.188206 +3069.220707 +3069.314779 +3069.410517 +3069.439987 +3069.499994 +3069.523704 +3069.532661 +3069.594233 +3069.704123 +3073.427329 +3077.119867 +3078.655396 +3078.655729 +3078.656495 +3078.676009 +3078.817367 +3078.908976 +3078.958693 +3078.983967 +3079.010008 +3079.030487 +3079.482002 +3079.891192 +3079.892724 +3080.499184 +3080.534149 +3080.559657 +3080.645371 +3080.796286 +3080.890925 +3080.891458 +3081.862919 +3081.892289 +3082.891456 +3084.538740 +3084.891687 +3084.894984 +3086.294649 +3086.558918 +3086.677899 +3087.411198 +3087.484825 +3087.494781 +3087.513263 +3087.531345 +3087.578431 +3087.626849 +3087.684991 +3088.077598 +3088.776298 +3088.785955 +3088.789419 +3088.870304 +3088.883957 +3088.900241 +3088.983624 +3089.991715 +3089.994146 +3090.091482 +3090.093280 +3090.094612 +3090.098875 +3090.191715 +3090.194046 +3090.194812 +3090.199973 +3090.200606 +3090.293113 +3090.293713 +3090.498308 +3090.593180 +3090.694645 +3090.793279 +3090.794778 +3090.893346 +3090.893612 +3090.895377 +3090.896343 +3090.992880 +3090.993313 +3090.995344 +3091.093446 +3091.094578 +3091.193412 +3091.293445 +3091.392413 +3091.393678 +3091.395410 +3091.397475 +3091.495743 +3091.498740 +3091.595143 +3091.794610 +3091.798440 +3091.899239 +3091.992179 +3091.994344 +3091.996242 +3091.996875 +3092.095043 +3092.192446 +3092.193411 +3092.293078 +3092.294077 +3092.295576 +3092.296508 +3092.297407 +3092.395842 +3092.492312 +3092.493078 +3092.496508 +3092.597573 +3092.693144 +3092.695642 +3092.697274 +3092.793244 +3092.795742 +3092.893777 +3092.993677 +3092.996041 +3093.192378 +3093.194276 +3093.196574 +3093.292744 +3093.392045 +3093.392944 +3093.394043 +3093.395941 +3093.493410 +3093.593044 +3093.694575 +3093.696973 +3093.704998 +3093.793177 +3093.794808 +3093.796906 +3093.894941 +3093.995607 +3094.294708 +3094.593043 +3094.692976 +3094.793575 +3094.898370 +3095.502965 +3095.516551 +3095.524444 +3095.557011 +3096.127440 +3096.193740 +3096.235032 +3096.446287 +3096.461605 +3096.494739 +3097.589809 +3097.592773 +3097.664501 +3097.709490 +3097.724375 +3097.726339 +3097.736829 +3097.867798 +3097.896736 +3097.925174 +3098.037395 +3098.045686 +3098.076223 +3098.087278 +3098.097002 +3098.123642 +3098.845386 +3098.882349 +3098.903594 +3099.056408 +3099.894436 +3099.907656 +3099.942921 +3100.030799 +3100.090340 +3100.164099 +3100.237026 +3100.256573 +3100.285711 +3100.296433 +3100.331465 +3100.410453 +3100.418311 +3100.430932 +3100.433063 +3100.460369 +3100.492903 +3100.546250 +3100.555507 +3100.604758 +3100.614115 +3100.628468 +3100.639324 +3100.644152 +3100.652743 +3100.653076 +3100.655940 +3100.704891 +3100.721941 +3100.732364 +3100.744185 +3100.759104 +3100.764631 +3100.774621 +3100.785877 +3100.786709 +3100.789207 +3100.801761 +3100.804025 +3100.813083 +3100.847682 +3100.851578 +3100.857039 +3100.858171 +3100.861435 +3100.863266 +3100.873389 +3100.884045 +3100.910685 +3100.917079 +3100.924305 +3100.937758 +3100.939756 +3100.940988 +3100.941987 +3100.962633 +3100.965963 +3100.989939 +3100.991038 +3100.996466 +3101.008321 +3101.015713 +3101.016479 +3101.017279 +3101.017845 +3101.019443 +3101.027602 +3101.029466 +3101.029899 +3101.031531 +3101.040056 +3101.041454 +3101.053742 +3101.055707 +3101.069193 +3101.078717 +3101.085643 +3101.092670 +3101.094501 +3101.097798 +3101.107255 +3101.119210 +3101.121274 +3101.130931 +3101.133595 +3101.154008 +3101.155107 +3101.173422 +3101.180548 +3101.192004 +3101.194002 +3101.196832 +3101.204991 +3101.222873 +3101.232763 +3101.234728 +3101.244451 +3101.246216 +3101.260069 +3101.262034 +3101.262200 +3101.297032 +3101.322307 +3101.333196 +3101.334761 +3101.337625 +3101.346283 +3101.399296 +3101.401827 +3101.403159 +3101.417911 +3101.423339 +3101.425670 +3101.461467 +3101.463698 +3101.470591 +3101.477018 +3101.501028 +3101.516579 +3101.534294 +3101.540322 +3101.574421 +3101.599529 +3101.612483 +3101.614747 +3101.628034 +3101.638956 +3101.651477 +3101.653941 +3101.698130 +3101.731464 +3101.733562 +3101.743751 +3101.760368 +3101.764231 +3101.806555 +3101.814014 +3101.817178 +3101.818277 +3101.849878 +3101.905190 +3101.930398 +3101.942919 +3101.944217 +3101.983978 +3101.987507 +3102.014580 +3102.022972 +3102.077950 +3102.078783 +3102.079182 +3102.132995 +3102.138589 +3102.148013 +3102.159002 +3102.161433 +3102.187374 +3102.201027 +3102.254773 +3102.283678 +3102.352942 +3102.368692 +3102.456205 +3102.465496 +3102.485143 +3102.490637 +3102.505988 +3102.605522 +3102.634093 +3102.675885 +3102.703258 +3102.705888 +3102.718642 +3102.854706 +3102.868892 +3102.882412 +3102.913014 +3102.938888 +3102.954939 +3102.999261 +3103.011516 +3103.013147 +3103.132428 +3103.192235 +3103.251043 +3103.266494 +3103.325834 +3103.370023 +3103.385674 +3103.398961 +3103.457869 +3103.489637 +3103.491668 +3103.505588 +3103.535358 +3103.583044 +3103.673453 +3103.689237 +3103.733460 +3103.735258 +3103.781645 +3103.811282 +3103.841318 +3103.843117 +3103.856470 +3103.857669 +3103.885674 +3103.886973 +3103.918275 +3103.931362 +3103.973220 +3104.021338 +3104.034392 +3104.048877 +3104.079180 +3104.093333 +3104.315277 +3104.376016 +3104.407552 +3104.501757 +3104.545980 +3104.593965 +3104.687571 +3104.717075 +3108.819369 +3109.096192 +3114.888327 +3114.890625 +3114.891557 +3116.891289 +3116.891988 +3117.895417 +3118.891753 +3118.892652 +3118.893884 +3119.892584 +3119.893017 +3119.893517 +3120.457086 +3120.627149 +3120.682427 +3120.797146 +3120.925517 +3123.590083 +3123.618821 +3123.968771 +3124.891514 +3124.992613 +3124.997974 +3125.099006 +3125.294244 +3125.393178 +3125.492246 +3125.591347 +3125.594543 +3125.692179 +3125.695176 +3125.795376 +3125.893144 +3125.894676 +3125.897340 +3125.993810 +3125.994410 +3126.093211 +3126.094077 +3126.193344 +3126.198172 +3126.294942 +3126.392378 +3126.394043 +3126.497240 +3126.593277 +3126.594076 +3126.594909 +3126.693643 +3126.696374 +3126.697106 +3126.698239 +3126.793177 +3126.793776 +3126.992311 +3126.997772 +3127.096473 +3127.192843 +3127.195441 +3127.200436 +3127.294175 +3127.397805 +3127.495407 +3127.593442 +3127.597838 +3127.693376 +3127.694242 +3127.791045 +3127.794308 +3127.796140 +3127.797338 +3127.896306 +3127.993609 +3127.994208 +3127.995440 +3127.996539 +3127.998370 +3128.093176 +3128.193642 +3128.194274 +3128.196872 +3128.292742 +3128.293142 +3128.294108 +3128.397071 +3128.397471 +3128.493075 +3128.496971 +3128.692209 +3128.693608 +3128.695806 +3128.795439 +3128.795806 +3128.801000 +3128.993608 +3128.995106 +3128.995539 +3129.094939 +3129.095406 +3129.193341 +3129.195772 +3129.197503 +3129.593374 +3129.599867 +3129.696471 +3129.892208 +3129.894672 +3129.896837 +3133.738691 +3133.762201 +3133.796666 +3133.820043 +3133.963366 +3134.891038 +3134.908953 +3135.116345 +3135.154707 +3135.215879 +3135.237657 +3135.336925 +3135.413748 +3135.426568 +3135.436591 +3135.439122 +3135.439688 +3135.440254 +3135.473788 +3135.526768 +3135.563198 +3135.587374 +3135.628333 +3135.650544 +3135.662665 +3135.728932 +3135.729665 +3135.740188 +3135.751976 +3135.781213 +3135.805855 +3135.807187 +3135.808952 +3135.819841 +3135.846315 +3135.850311 +3135.858336 +3135.866694 +3135.878682 +3135.904490 +3135.916911 +3135.938656 +3135.951076 +3135.962165 +3136.011016 +3136.011516 +3136.020707 +3136.059934 +3136.097430 +3136.126168 +3136.133461 +3136.135292 +3136.143451 +3136.144150 +3136.151776 +3136.157969 +3136.158535 +3136.162165 +3136.180613 +3136.190836 +3136.193600 +3136.195299 +3136.202225 +3136.205488 +3136.208219 +3136.217277 +3136.220107 +3136.229065 +3136.230663 +3136.244749 +3136.269025 +3136.295532 +3136.298029 +3136.309684 +3136.313014 +3136.337257 +3136.345781 +3136.347946 +3136.348812 +3136.350876 +3136.360034 +3136.361066 +3136.376684 +3136.378315 +3136.384409 +3136.384742 +3136.394366 +3136.413680 +3136.419008 +3136.422838 +3136.435658 +3136.438255 +3136.438588 +3136.460500 +3136.460966 +3136.470923 +3136.477882 +3136.484443 +3136.507753 +3136.521239 +3136.521672 +3136.547280 +3136.560700 +3136.565661 +3136.566127 +3136.575218 +3136.578349 +3136.578881 +3136.588605 +3136.615944 +3136.617676 +3136.634959 +3136.635591 +3136.659534 +3136.672288 +3136.711515 +3136.724635 +3136.739620 +3136.751742 +3136.752807 +3136.754106 +3136.765561 +3136.767925 +3136.779014 +3136.779647 +3136.792368 +3136.797529 +3136.805688 +3136.833593 +3136.846547 +3136.899760 +3136.907719 +3136.921505 +3136.923869 +3136.925701 +3136.950809 +3136.952108 +3136.964429 +3136.986673 +3137.020406 +3137.031362 +3137.045614 +3137.067059 +3137.068425 +3137.096397 +3137.107319 +3137.109350 +3137.133992 +3137.165694 +3137.190569 +3137.200492 +3137.201791 +3137.213579 +3137.214612 +3137.227965 +3137.243350 +3137.271954 +3137.281345 +3137.295864 +3137.308185 +3137.311548 +3137.324135 +3137.351974 +3137.380912 +3137.386240 +3137.393832 +3137.449610 +3137.466293 +3137.477948 +3137.512314 +3137.551708 +3137.552573 +3137.567259 +3137.598294 +3137.606020 +3137.636090 +3137.731927 +3137.732693 +3137.774085 +3137.803589 +3137.804221 +3137.847345 +3137.860365 +3137.876116 +3137.918507 +3137.932027 +3137.945880 +3137.975417 +3137.991201 +3138.017974 +3138.019672 +3138.034857 +3138.048277 +3138.105353 +3138.149509 +3138.209249 +3138.224068 +3138.236422 +3138.238021 +3138.266725 +3138.281211 +3138.284008 +3138.297261 +3138.313145 +3138.313678 +3138.328230 +3138.341184 +3138.417441 +3138.431793 +3138.446812 +3138.478114 +3138.478580 +3138.508250 +3138.598327 +3138.614377 +3138.644181 +3138.658933 +3138.673851 +3138.704420 +3138.705053 +3138.764527 +3138.765692 +3138.795496 +3138.963261 +3138.978712 +3138.993098 +3139.008782 +3139.058166 +3139.099924 +3139.101556 +3139.102655 +3139.148076 +3139.205952 +3139.314843 +3139.345445 +3139.360231 +3139.360996 +3139.662761 +3139.690100 +3139.705585 +3139.754869 +3139.783307 +3139.798825 +3139.813210 +3139.842481 +3142.756031 +3142.799921 +3143.665821 +3143.675578 +3143.687033 +3147.499516 +3151.895549 +3152.892252 +3153.891718 +3154.891550 +3154.891850 +3156.654452 +3157.443363 +3158.280625 +3158.294344 +3158.313425 +3159.667303 +3159.894010 +3159.990713 +3159.993010 +3159.993643 +3159.997240 +3160.192045 +3160.194242 +3160.291012 +3160.293476 +3160.294842 +3160.299970 +3160.391811 +3160.494841 +3160.591911 +3160.696706 +3160.697705 +3160.698205 +3160.792710 +3160.792976 +3160.798304 +3160.893742 +3160.894641 +3160.992077 +3160.993076 +3160.993775 +3161.093476 +3161.093842 +3161.196206 +3161.292676 +3161.393808 +3161.394508 +3161.395240 +3161.593109 +3161.694707 +3161.695606 +3161.700601 +3161.794740 +3161.796971 +3161.900701 +3161.993075 +3161.995872 +3161.996305 +3161.998203 +3162.193141 +3162.194707 +3162.197004 +3162.293841 +3162.393141 +3162.393508 +3162.398669 +3162.492242 +3162.492742 +3162.493108 +3162.494440 +3162.498536 +3162.499934 +3162.592875 +3162.595239 +3162.692641 +3162.794972 +3162.797437 +3162.798868 +3162.892708 +3162.893141 +3162.895339 +3162.897203 +3162.997903 +3162.998835 +3163.092142 +3163.193107 +3163.195338 +3163.196803 +3163.292974 +3163.294006 +3163.296937 +3163.395505 +3163.494539 +3163.495271 +3163.593207 +3163.796170 +3163.800566 +3163.893173 +3163.893340 +3163.895338 +3163.896969 +3163.992840 +3163.996603 +3164.193972 +3164.194538 +3164.195371 +3164.197102 +3164.197901 +3164.293006 +3164.293472 +3164.295937 +3164.395404 +3164.396303 +3164.492806 +3164.594604 +3164.692506 +3164.692939 +3164.694371 +3164.792573 +3164.794471 +3164.798600 +3167.037459 +3167.047582 +3167.124439 +3167.134695 +3167.171824 +3168.116446 +3168.220508 +3168.319342 +3169.159368 +3170.193866 +3170.219707 +3170.286906 +3170.295564 +3170.305721 +3170.309584 +3170.370256 +3170.439454 +3170.509850 +3170.519973 +3170.522004 +3170.542384 +3170.590835 +3170.626333 +3170.667725 +3170.667958 +3170.670356 +3170.682444 +3170.690935 +3170.717808 +3170.718940 +3170.720506 +3170.730795 +3170.742250 +3170.766793 +3170.780845 +3170.794531 +3170.806819 +3170.835957 +3170.846912 +3170.848577 +3170.872354 +3170.881012 +3170.882110 +3170.904754 +3170.905187 +3170.905520 +3170.916876 +3170.931195 +3170.932027 +3170.934658 +3170.943549 +3170.944948 +3170.958268 +3170.966926 +3170.968990 +3170.978880 +3171.005587 +3171.008118 +3171.010715 +3171.011781 +3171.018541 +3171.019972 +3171.026965 +3171.044515 +3171.044947 +3171.070355 +3171.075317 +3171.089403 +3171.097528 +3171.124335 +3171.148744 +3171.151408 +3171.162197 +3171.174251 +3171.191800 +3171.199027 +3171.210915 +3171.214211 +3171.223469 +3171.224834 +3171.231328 +3171.239886 +3171.240219 +3171.240785 +3171.241850 +3171.251740 +3171.253006 +3171.254305 +3171.255137 +3171.258900 +3171.268524 +3171.282843 +3171.293565 +3171.302223 +3171.310615 +3171.322037 +3171.322503 +3171.325600 +3171.326665 +3171.340485 +3171.345380 +3171.348344 +3171.348743 +3171.356669 +3171.359033 +3171.367891 +3171.383808 +3171.387038 +3171.398427 +3171.400258 +3171.413312 +3171.421604 +3171.429163 +3171.431427 +3171.431860 +3171.432326 +3171.433525 +3171.436089 +3171.444048 +3171.449742 +3171.470988 +3171.483042 +3171.485973 +3171.503022 +3171.506452 +3171.507951 +3171.512246 +3171.533825 +3171.534457 +3171.535090 +3171.561331 +3171.563362 +3171.572852 +3171.574351 +3171.576482 +3171.589636 +3171.590435 +3171.593232 +3171.600824 +3171.603755 +3171.606086 +3171.614044 +3171.615743 +3171.629662 +3171.631693 +3171.638254 +3171.651107 +3171.654737 +3171.656236 +3171.662796 +3171.667591 +3171.689136 +3171.692899 +3171.701990 +3171.702456 +3171.707251 +3171.709183 +3171.731294 +3171.741783 +3171.746046 +3171.753538 +3171.784141 +3171.798760 +3171.811713 +3171.814610 +3171.821936 +3171.825366 +3171.851473 +3171.879945 +3171.893964 +3171.906552 +3171.915076 +3171.943182 +3171.957700 +3171.960931 +3171.989668 +3171.997927 +3172.025666 +3172.033025 +3172.058833 +3172.071020 +3172.081743 +3172.088869 +3172.099891 +3172.115409 +3172.131393 +3172.170221 +3172.186405 +3172.198326 +3172.252139 +3172.253205 +3172.267091 +3172.268523 +3172.281077 +3172.281543 +3172.293031 +3172.320138 +3172.350574 +3172.368323 +3172.404120 +3172.408749 +3172.446578 +3172.449109 +3172.452572 +3172.460764 +3172.491233 +3172.518273 +3172.518672 +3172.519272 +3172.520570 +3172.559964 +3172.560564 +3172.641583 +3172.672252 +3172.740850 +3172.969255 +3173.012611 +3173.041782 +3173.042481 +3173.056634 +3173.057866 +3173.118305 +3173.147077 +3173.175182 +3173.176547 +3173.222201 +3173.236487 +3173.309847 +3173.386237 +3173.400223 +3173.414975 +3173.472418 +3173.474049 +3173.534755 +3173.549107 +3173.607083 +3173.638351 +3173.742414 +3173.771385 +3173.817139 +3173.831425 +3173.844811 +3173.903553 +3173.950306 +3173.950506 +3173.980409 +3173.980975 +3173.995894 +3174.024532 +3174.592297 +3174.624598 +3174.669719 +3174.671218 +3174.704617 +3174.763325 +3176.224163 +3179.086365 +3184.891620 +3184.894584 +3185.890720 +3185.890953 +3185.893284 +3188.894014 +3189.890816 +3189.891116 +3189.893380 +3190.227912 +3194.893275 +3194.894041 +3194.991310 +3194.996439 +3195.091543 +3195.091910 +3195.096272 +3195.191310 +3195.292809 +3195.296105 +3195.297970 +3195.391576 +3195.395339 +3195.495839 +3195.592475 +3195.593974 +3195.595639 +3195.692842 +3195.794740 +3195.795239 +3195.796038 +3195.994107 +3195.994773 +3196.091742 +3196.094273 +3196.095905 +3196.292808 +3196.294606 +3196.296404 +3196.392308 +3196.394173 +3196.396704 +3196.493640 +3196.494406 +3196.499867 +3196.795837 +3196.797403 +3196.890976 +3196.892541 +3196.893573 +3196.894672 +3196.895071 +3196.992740 +3197.094439 +3197.100932 +3197.194638 +3197.292707 +3197.293006 +3197.295204 +3197.295937 +3197.392840 +3197.398035 +3197.492740 +3197.591841 +3197.595171 +3197.596270 +3197.695071 +3197.697435 +3197.796769 +3197.799832 +3197.801031 +3197.894471 +3197.898001 +3197.992739 +3197.993072 +3197.993605 +3197.995870 +3198.092939 +3198.094171 +3198.198067 +3198.292772 +3198.392939 +3198.395303 +3198.395669 +3198.492972 +3198.494504 +3198.494837 +3198.592606 +3198.594204 +3198.692039 +3198.692772 +3198.693771 +3198.695836 +3198.795136 +3198.797867 +3198.896401 +3198.992738 +3198.996601 +3198.999665 +3199.092805 +3199.199798 +3199.298233 +3199.492172 +3199.495868 +3199.592638 +3199.594236 +3199.693703 +3199.694136 +3199.792438 +3199.792704 +3199.892338 +3204.907884 +3205.053838 +3205.078513 +3205.090468 +3205.101523 +3205.145779 +3205.214477 +3205.228063 +3205.263495 +3205.277980 +3205.286871 +3205.300857 +3205.329628 +3205.339618 +3205.353405 +3205.365326 +3205.379079 +3205.425266 +3205.440351 +3205.450308 +3205.461397 +3205.474150 +3205.524933 +3205.559398 +3205.597027 +3205.618339 +3205.623368 +3205.624467 +3205.706018 +3205.742515 +3205.754836 +3205.766991 +3205.780377 +3205.792365 +3205.841516 +3205.851839 +3205.868589 +3205.882075 +3205.887403 +3205.890134 +3205.900324 +3205.902955 +3205.914177 +3205.927164 +3205.954170 +3205.965592 +3205.967490 +3205.979811 +3205.991799 +3205.993264 +3206.003021 +3206.006418 +3206.015275 +3206.021736 +3206.027996 +3206.030360 +3206.031892 +3206.043847 +3206.055502 +3206.060863 +3206.061529 +3206.062295 +3206.077247 +3206.078279 +3206.081609 +3206.103088 +3206.114077 +3206.114709 +3206.117573 +3206.143747 +3206.153504 +3206.164027 +3206.167989 +3206.171885 +3206.178579 +3206.193297 +3206.209814 +3206.224732 +3206.227929 +3206.235122 +3206.235921 +3206.259731 +3206.261629 +3206.262828 +3206.276481 +3206.284672 +3206.286138 +3206.286870 +3206.299391 +3206.302188 +3206.315109 +3206.322668 +3206.327230 +3206.371452 +3206.383873 +3206.408349 +3206.411612 +3206.414742 +3206.424100 +3206.436853 +3206.447310 +3206.450473 +3206.457966 +3206.473417 +3206.483007 +3206.485671 +3206.498059 +3206.498458 +3206.522967 +3206.554536 +3206.561695 +3206.562261 +3206.572551 +3206.573583 +3206.574915 +3206.584972 +3206.586770 +3206.624899 +3206.679977 +3206.695028 +3206.727296 +3206.734056 +3206.745078 +3206.753803 +3206.757299 +3206.769920 +3206.777812 +3206.783107 +3206.787569 +3206.813243 +3206.852437 +3206.872118 +3206.884805 +3206.885671 +3206.922667 +3206.932158 +3206.965558 +3206.971485 +3207.008814 +3207.048841 +3207.126796 +3207.131192 +3207.161461 +3207.172117 +3207.187535 +3207.229960 +3207.240682 +3207.320669 +3207.373782 +3207.413376 +3207.422866 +3207.581508 +3207.591997 +3207.648441 +3207.656533 +3207.663625 +3207.698324 +3207.711711 +3207.778810 +3207.895360 +3208.040382 +3208.188933 +3208.285503 +3208.355000 +3208.467088 +3208.828260 +3209.121932 +3209.273414 +3209.285402 +3209.650337 +3209.710810 +3219.892784 +3220.893449 +3221.890817 +3222.109132 +3222.890650 +3223.116590 +3223.890083 +3223.890549 +3223.892380 +3223.893779 +3224.132340 +3224.889882 +3224.890714 +3224.891580 +3224.893612 +3225.116122 +3228.832569 +3229.990976 +3229.991009 +3230.093773 +3230.095005 +3230.096737 +3230.194838 +3230.293373 +3230.294938 +3230.392674 +3230.492274 +3230.493040 +3230.495304 +3230.591941 +3230.595204 +3230.597102 +3230.694505 +3230.698900 +3230.794205 +3230.795304 +3230.893206 +3230.896836 +3230.991974 +3230.992307 +3230.993206 +3230.997435 +3231.091507 +3231.097468 +3231.191940 +3231.193239 +3231.197435 +3231.292506 +3231.392473 +3231.394371 +3231.495237 +3231.496136 +3231.497701 +3231.691940 +3231.693272 +3231.793338 +3231.793771 +3231.795503 +3231.896302 +3231.898933 +3231.991973 +3231.993305 +3231.993804 +3231.995436 +3232.092339 +3232.097334 +3232.194637 +3232.392006 +3232.492605 +3232.494337 +3232.592305 +3232.691473 +3232.693271 +3232.695369 +3232.791539 +3232.792505 +3232.795901 +3232.893770 +3232.894270 +3232.895202 +3232.896367 +3232.996168 +3233.092205 +3233.097566 +3233.192837 +3233.193936 +3233.196267 +3233.292604 +3233.293370 +3233.293903 +3233.296534 +3233.297899 +3233.391572 +3233.392537 +3233.395401 +3233.499430 +3233.594835 +3233.694802 +3233.700829 +3233.791505 +3233.796367 +3233.894668 +3233.992370 +3234.096133 +3234.098065 +3234.100029 +3234.100762 +3234.193835 +3234.194235 +3234.196033 +3234.392337 +3234.392603 +3234.691504 +3234.692303 +3234.694068 +3234.793435 +3234.891937 +3234.893968 +3239.890133 +3239.891365 +3240.028129 +3240.067522 +3240.138385 +3240.151838 +3240.165491 +3240.178112 +3240.188535 +3240.189234 +3240.216906 +3240.225231 +3240.227762 +3240.247909 +3240.258032 +3240.259630 +3240.260762 +3240.269254 +3240.283739 +3240.306883 +3240.320070 +3240.332990 +3240.343879 +3240.357898 +3240.383107 +3240.392664 +3240.403453 +3240.414242 +3240.448907 +3240.463626 +3240.502820 +3240.503586 +3240.512577 +3240.555467 +3240.567888 +3240.577445 +3240.579477 +3240.590166 +3240.599890 +3240.620069 +3240.637419 +3240.657931 +3240.668787 +3240.670086 +3240.745977 +3240.776413 +3240.789733 +3240.793496 +3240.803819 +3240.805117 +3240.807448 +3240.818038 +3240.821168 +3240.832290 +3240.842846 +3240.852770 +3240.854601 +3240.866256 +3240.890066 +3240.892763 +3240.905883 +3240.915574 +3240.916339 +3240.929493 +3240.930026 +3240.930592 +3240.952736 +3240.953103 +3240.965990 +3240.966323 +3240.967688 +3240.968454 +3240.971817 +3240.981308 +3240.983605 +3240.991098 +3241.005750 +3241.007015 +3241.032889 +3241.041381 +3241.049872 +3241.051704 +3241.057365 +3241.061794 +3241.082606 +3241.083106 +3241.084171 +3241.087535 +3241.100555 +3241.122500 +3241.123532 +3241.124464 +3241.126429 +3241.139816 +3241.160362 +3241.172383 +3241.173049 +3241.193662 +3241.202753 +3241.221034 +3241.230092 +3241.240082 +3241.252769 +3241.254667 +3241.330125 +3241.338450 +3241.360661 +3241.389599 +3241.398790 +3241.426396 +3241.452869 +3241.453269 +3241.477245 +3241.500388 +3241.503285 +3241.523065 +3241.533655 +3241.554700 +3241.562093 +3241.562892 +3241.563925 +3241.575213 +3241.578144 +3241.588034 +3241.589166 +3241.589466 +3241.590764 +3241.603485 +3241.605749 +3241.616172 +3241.626562 +3241.638483 +3241.641580 +3241.650205 +3241.652636 +3241.662126 +3241.663825 +3241.664424 +3241.675912 +3241.727028 +3241.739848 +3241.741513 +3241.754467 +3241.780974 +3241.811643 +3241.818237 +3241.836618 +3241.838483 +3241.861327 +3241.877444 +3241.903285 +3241.904251 +3241.919469 +3241.940448 +3241.956565 +3241.957231 +3241.966921 +3241.979542 +3242.006182 +3242.018236 +3242.059162 +3242.085236 +3242.087134 +3242.113042 +3242.117770 +3242.127827 +3242.166721 +3242.218936 +3242.221799 +3242.247973 +3242.274780 +3242.341346 +3242.356132 +3242.403751 +3242.433454 +3242.463857 +3242.474014 +3242.543677 +3242.555532 +3242.560960 +3242.570017 +3242.638649 +3242.651935 +3242.678442 +3242.731756 +3242.772248 +3242.815738 +3242.842278 +3243.095192 +3243.235951 +3243.333919 +3243.435285 +3244.427858 +3244.524961 +3244.695323 +3244.786432 +3254.891584 +3255.891050 +3256.620819 +3256.892847 +3256.894146 +3257.485221 +3257.713159 +3257.890981 +3257.892380 +3258.890747 +3259.890913 +3259.891512 +3259.892078 +3259.892411 +3263.077423 +3263.101599 +3263.119714 +3264.570029 +3264.629269 +3264.891574 +3264.991407 +3265.091507 +3265.092606 +3265.095869 +3265.291840 +3265.391207 +3265.392339 +3265.394237 +3265.395036 +3265.396168 +3265.591273 +3265.596668 +3265.693537 +3265.792072 +3265.792405 +3265.793138 +3265.892305 +3265.991506 +3265.991872 +3265.993204 +3265.994236 +3266.093903 +3266.094769 +3266.096068 +3266.192205 +3266.193504 +3266.291972 +3266.292371 +3266.292704 +3266.294036 +3266.295502 +3266.295968 +3266.392438 +3266.393803 +3266.394869 +3266.494702 +3266.591439 +3266.592604 +3266.593370 +3266.597599 +3266.692005 +3266.693969 +3266.694269 +3266.696001 +3266.792471 +3266.794402 +3266.794802 +3266.799297 +3266.802860 +3266.892870 +3266.992437 +3266.994036 +3266.998531 +3267.092371 +3267.291438 +3267.294035 +3267.296400 +3267.392737 +3267.397066 +3267.398431 +3267.495800 +3267.497032 +3267.596133 +3267.692337 +3267.696832 +3267.792703 +3267.891404 +3267.891737 +3267.895134 +3267.897498 +3267.993069 +3268.093535 +3268.094800 +3268.194667 +3268.292802 +3268.294001 +3268.297131 +3268.399196 +3268.492502 +3268.493335 +3268.494634 +3268.593335 +3268.596998 +3268.699762 +3268.792236 +3268.793867 +3268.796731 +3268.891703 +3268.894600 +3268.895699 +3268.999795 +3269.000427 +3269.094300 +3269.096598 +3269.292801 +3269.293900 +3269.294733 +3269.299295 +3269.391469 +3269.392368 +3269.392801 +3269.398495 +3269.492168 +3269.495398 +3269.500360 +3269.592335 +3269.594033 +3269.692268 +3269.692801 +3269.700460 +3269.792401 +3269.794399 +3269.795232 +3269.795764 +3269.800027 +3269.891802 +3269.892401 +3269.892801 +3269.893400 +3270.473353 +3270.504255 +3271.450608 +3272.480644 +3272.539718 +3272.550773 +3272.602122 +3272.604020 +3272.628063 +3273.532291 +3273.560363 +3273.626730 +3273.683839 +3274.890232 +3275.068953 +3275.124464 +3275.195826 +3275.198423 +3275.354700 +3275.377610 +3275.440847 +3275.454633 +3275.456232 +3275.477277 +3275.487467 +3275.527427 +3275.537484 +3275.549472 +3275.617004 +3275.627893 +3275.639482 +3275.661693 +3275.662092 +3275.691696 +3275.703917 +3275.741713 +3275.745642 +3275.755166 +3275.756265 +3275.766188 +3275.766454 +3275.767886 +3275.769052 +3275.789365 +3275.799388 +3275.802818 +3275.812475 +3275.829525 +3275.841613 +3275.852235 +3275.854666 +3275.866754 +3275.880174 +3275.881206 +3275.915372 +3275.918502 +3275.925295 +3275.964490 +3275.978043 +3275.989365 +3275.991263 +3276.015072 +3276.015905 +3276.025495 +3276.027060 +3276.029491 +3276.047173 +3276.098056 +3276.104216 +3276.109644 +3276.129757 +3276.130290 +3276.133254 +3276.134986 +3276.146541 +3276.151369 +3276.169451 +3276.175445 +3276.184636 +3276.185768 +3276.206614 +3276.210510 +3276.217769 +3276.223497 +3276.226427 +3276.239181 +3276.254599 +3276.256697 +3276.263490 +3276.279607 +3276.293926 +3276.307779 +3276.314473 +3276.339348 +3276.342211 +3276.346074 +3276.391162 +3276.404849 +3276.425928 +3276.430723 +3276.432521 +3276.432921 +3276.446740 +3276.454199 +3276.460626 +3276.465988 +3276.492528 +3276.494359 +3276.512108 +3276.512441 +3276.525894 +3276.539847 +3276.544476 +3276.579307 +3276.594925 +3276.595724 +3276.606880 +3276.607113 +3276.608112 +3276.619567 +3276.650203 +3276.672481 +3276.679774 +3276.682937 +3276.685002 +3276.686134 +3276.706214 +3276.708645 +3276.719600 +3276.721399 +3276.734552 +3276.759061 +3276.776077 +3276.781938 +3276.809311 +3276.824129 +3276.825827 +3276.835384 +3276.861558 +3276.867119 +3276.900786 +3276.910476 +3276.912008 +3276.939081 +3276.954132 +3276.966387 +3277.008944 +3277.020233 +3277.021265 +3277.194025 +3277.232753 +3277.249603 +3277.260359 +3277.293526 +3277.399253 +3277.401185 +3277.440445 +3277.483436 +3277.526559 +3277.527958 +3277.538614 +3277.538980 +3277.553632 +3277.565787 +3277.601185 +3277.611641 +3277.638214 +3277.666552 +3277.680938 +3277.722130 +3277.722630 +3277.782170 +3277.808710 +3277.813505 +3277.865986 +3277.935084 +3278.051001 +3278.066918 +3278.095423 +3278.198686 +3278.253831 +3278.269915 +3278.296255 +3278.312239 +3278.325093 +3278.383368 +3278.410741 +3278.426492 +3278.453698 +3278.456162 +3278.618999 +3278.662589 +3278.753298 +3278.766851 +3278.928123 +3278.946638 +3279.060357 +3279.491226 +3279.693790 +3282.135013 +3282.157657 +3282.158523 +3282.246401 +3282.264916 +3282.326055 +3283.962151 +3285.380697 +3285.660051 +3290.220020 +3290.272800 +3290.473666 +3290.892813 +3291.134071 +3291.161278 +3291.891114 +3291.891646 +3291.892179 +3291.894211 +3293.158778 +3293.891012 +3294.891710 +3296.616117 +3297.438361 +3297.585514 +3297.698700 +3298.312253 +3299.991538 +3300.092837 +3300.095801 +3300.192038 +3300.291105 +3300.392537 +3300.394269 +3300.491305 +3300.492470 +3300.493070 +3300.494468 +3300.495367 +3300.497432 +3300.592737 +3300.594069 +3300.596433 +3300.598897 +3300.692470 +3300.694468 +3300.792370 +3300.792736 +3300.898297 +3300.991904 +3300.992670 +3300.993802 +3300.994435 +3301.094934 +3301.192669 +3301.193369 +3301.194701 +3301.291704 +3301.292902 +3301.392603 +3301.495500 +3301.497265 +3301.592403 +3301.596865 +3301.691404 +3301.691903 +3301.692336 +3301.694867 +3301.698463 +3301.796532 +3301.992369 +3301.992802 +3301.993734 +3301.994001 +3302.000328 +3302.092802 +3302.095799 +3302.192868 +3302.195765 +3302.199495 +3302.392668 +3302.392968 +3302.394233 +3302.395132 +3302.396831 +3302.492701 +3302.492968 +3302.597796 +3302.692335 +3302.695165 +3302.793067 +3302.892701 +3302.893600 +3302.896164 +3302.996764 +3303.091435 +3303.094566 +3303.095964 +3303.192301 +3303.292468 +3303.292767 +3303.293467 +3303.295032 +3303.298095 +3303.299227 +3303.392601 +3303.394898 +3303.493466 +3303.694998 +3303.701525 +3303.792167 +3303.792534 +3303.795597 +3303.796030 +3303.894365 +3303.894865 +3303.896230 +3303.991601 +3303.992966 +3303.993599 +3303.994665 +3303.996063 +3303.996962 +3304.091767 +3304.092933 +3304.094998 +3304.095797 +3304.194065 +3304.196130 +3304.292034 +3304.297828 +3304.392833 +3304.395264 +3304.396829 +3304.492866 +3304.495363 +3304.592932 +3304.593998 +3304.595696 +3304.691534 +3304.693532 +3304.892299 +3304.893298 +3304.897128 +3305.534423 +3306.847509 +3306.955368 +3306.992830 +3307.106983 +3307.132424 +3307.150506 +3307.162893 +3307.218304 +3307.244778 +3307.284072 +3308.222799 +3308.233954 +3308.271617 +3308.314507 +3308.394927 +3309.380340 +3309.548705 +3309.890197 +3309.963423 +3310.069950 +3310.139947 +3310.160326 +3310.182637 +3310.232454 +3310.233753 +3310.258828 +3310.289264 +3310.332787 +3310.341745 +3310.343143 +3310.352434 +3310.352933 +3310.411175 +3310.499353 +3310.508411 +3310.545707 +3310.558761 +3310.585900 +3310.598221 +3310.611075 +3310.611641 +3310.633985 +3310.636150 +3310.637116 +3310.662424 +3310.663289 +3310.683003 +3310.705747 +3310.715104 +3310.738015 +3310.750669 +3310.759993 +3310.761691 +3310.773879 +3310.774844 +3310.776676 +3310.816403 +3310.827592 +3310.840945 +3310.854398 +3310.856396 +3310.882370 +3310.890329 +3310.890762 +3310.891694 +3310.903549 +3310.915970 +3310.919533 +3310.924295 +3310.948171 +3310.953699 +3310.963622 +3310.964122 +3310.978141 +3310.988264 +3310.998221 +3311.034751 +3311.049669 +3311.070448 +3311.072846 +3311.074811 +3311.085100 +3311.095090 +3311.115370 +3311.138680 +3311.140112 +3311.140645 +3311.148304 +3311.154398 +3311.155097 +3311.165220 +3311.174211 +3311.177242 +3311.191361 +3311.212173 +3311.225826 +3311.254398 +3311.263222 +3311.263722 +3311.265520 +3311.276209 +3311.277275 +3311.288530 +3311.300951 +3311.313239 +3311.315869 +3311.323695 +3311.328723 +3311.338014 +3311.382070 +3311.393292 +3311.394957 +3311.430355 +3311.448670 +3311.470115 +3311.481237 +3311.483468 +3311.489829 +3311.491194 +3311.493791 +3311.518267 +3311.518633 +3311.522329 +3311.559292 +3311.572279 +3311.598020 +3311.608643 +3311.610375 +3311.616302 +3311.619732 +3311.632419 +3311.639079 +3311.653232 +3311.658859 +3311.662323 +3311.665220 +3311.676242 +3311.700518 +3311.704514 +3311.708143 +3311.715070 +3311.720997 +3311.729023 +3311.748903 +3311.754830 +3311.800618 +3311.822163 +3311.823028 +3311.833618 +3311.889062 +3311.902049 +3311.905646 +3311.939712 +3311.946372 +3311.953198 +3311.969682 +3311.992858 +3312.025559 +3312.038513 +3312.073411 +3312.075775 +3312.086798 +3312.114037 +3312.130587 +3312.142042 +3312.143141 +3312.217500 +3312.244307 +3312.266385 +3312.290860 +3312.346704 +3312.444073 +3312.516268 +3312.519565 +3312.548669 +3312.552898 +3312.584300 +3312.745605 +3312.808875 +3312.864586 +3313.018132 +3313.167449 +3313.182101 +3313.195588 +3313.196587 +3313.211638 +3313.255328 +3313.270946 +3313.283899 +3313.302514 +3313.328555 +3313.376840 +3313.390360 +3313.447869 +3313.448302 +3313.538311 +3313.552897 +3313.702913 +3313.718464 +3313.854229 +3313.869347 +3313.901848 +3313.914868 +3313.916266 +3313.960722 +3314.020895 +3314.097985 +3314.113502 +3314.158391 +3314.198018 +3314.576206 +3314.623991 +3314.811803 +3321.149193 +3325.893877 +3327.891810 +3328.891243 +3328.891976 +3328.892742 +3328.894174 +3329.893174 +3334.992203 +3335.091936 +3335.192635 +3335.494533 +3335.500294 +3335.595366 +3335.792968 +3335.799395 +3335.893401 +3335.894000 +3335.992635 +3335.992934 +3335.993334 +3335.996731 +3336.093800 +3336.096664 +3336.191968 +3336.194533 +3336.196664 +3336.198229 +3336.294999 +3336.299128 +3336.392568 +3336.493167 +3336.493633 +3336.496930 +3336.595398 +3336.691835 +3336.693200 +3336.693733 +3336.798295 +3336.800692 +3336.893666 +3336.895930 +3336.899027 +3336.992800 +3336.996563 +3336.997362 +3336.998361 +3337.091968 +3337.092367 +3337.093832 +3337.094965 +3337.192034 +3337.192867 +3337.195564 +3337.196097 +3337.198095 +3337.296529 +3337.392733 +3337.394798 +3337.397129 +3337.492500 +3337.594831 +3337.693232 +3337.694265 +3337.701890 +3337.893199 +3337.896429 +3337.898161 +3337.898360 +3337.994597 +3337.997494 +3338.093165 +3338.096029 +3338.193199 +3338.196961 +3338.297228 +3338.298427 +3338.393098 +3338.493032 +3338.494464 +3338.495429 +3338.597594 +3338.695296 +3338.794264 +3338.795296 +3338.895029 +3339.092065 +3339.093198 +3339.097094 +3339.099658 +3339.193064 +3339.199491 +3339.199924 +3339.201256 +3339.295995 +3339.393197 +3339.396694 +3339.493031 +3339.494995 +3339.495928 +3339.496327 +3339.592798 +3339.594562 +3339.595561 +3339.596028 +3339.695295 +3339.792797 +3339.796027 +3339.893796 +3339.894629 +3340.262494 +3341.878210 +3341.944910 +3342.027427 +3342.030924 +3342.042079 +3342.116638 +3342.157497 +3342.227527 +3343.801485 +3344.839612 +3344.889429 +3344.892859 +3345.005946 +3345.071080 +3345.160225 +3345.273811 +3345.320631 +3345.335449 +3345.360058 +3345.371413 +3345.384234 +3345.395556 +3345.396322 +3345.428756 +3345.434883 +3345.448869 +3345.460058 +3345.545938 +3345.575709 +3345.597454 +3345.599019 +3345.624360 +3345.643341 +3345.659658 +3345.673544 +3345.695622 +3345.715469 +3345.717733 +3345.736581 +3345.747637 +3345.757560 +3345.780171 +3345.781536 +3345.785299 +3345.794456 +3345.804380 +3345.805379 +3345.805745 +3345.810007 +3345.818832 +3345.830554 +3345.832185 +3345.844939 +3345.845472 +3345.845971 +3345.858892 +3345.859158 +3345.871612 +3345.874276 +3345.885432 +3345.887596 +3345.908442 +3345.912871 +3345.935548 +3345.957893 +3345.976241 +3345.977240 +3345.987297 +3345.998818 +3346.000483 +3346.005845 +3346.023760 +3346.037979 +3346.048435 +3346.050367 +3346.062488 +3346.067017 +3346.085332 +3346.091725 +3346.094256 +3346.114836 +3346.126990 +3346.138945 +3346.139344 +3346.140610 +3346.152498 +3346.165785 +3346.166917 +3346.168116 +3346.176607 +3346.177839 +3346.189394 +3346.190227 +3346.191792 +3346.211739 +3346.212172 +3346.214802 +3346.215202 +3346.249068 +3346.259591 +3346.275708 +3346.278439 +3346.285332 +3346.302215 +3346.310173 +3346.315934 +3346.322128 +3346.342042 +3346.346337 +3346.348036 +3346.382767 +3346.394456 +3346.396254 +3346.398352 +3346.409507 +3346.420063 +3346.430320 +3346.433716 +3346.455828 +3346.457559 +3346.461455 +3346.472411 +3346.484332 +3346.484865 +3346.497253 +3346.500050 +3346.519564 +3346.533450 +3346.534615 +3346.557959 +3346.581968 +3346.623094 +3346.623993 +3346.672511 +3346.727023 +3346.738711 +3346.739277 +3346.751698 +3346.764186 +3346.778338 +3346.781768 +3346.792557 +3346.810006 +3346.819963 +3346.833483 +3346.833916 +3346.847602 +3346.875807 +3346.885930 +3346.900183 +3346.912504 +3346.924325 +3346.935714 +3346.940676 +3346.942474 +3346.951165 +3346.964452 +3346.973176 +3346.987795 +3346.991991 +3347.012637 +3347.026723 +3347.042207 +3347.053463 +3347.069347 +3347.095654 +3347.159190 +3347.182201 +3347.219330 +3347.233882 +3347.246303 +3347.253562 +3347.273243 +3347.276140 +3347.304645 +3347.329986 +3347.335247 +3347.386030 +3347.389193 +3347.391325 +3347.403579 +3347.408208 +3347.411937 +3347.427388 +3347.443972 +3347.487895 +3347.569080 +3347.649300 +3347.704744 +3347.705410 +3347.746835 +3347.862286 +3348.043372 +3348.101480 +3348.163385 +3348.242772 +3348.354161 +3348.670744 +3348.672475 +3348.730817 +3348.762319 +3348.836178 +3348.897384 +3349.184263 +3349.218096 +3349.282765 +3349.308106 +3349.540040 +3349.587326 +3351.295683 +3351.604807 +3351.882196 +3351.888956 +3360.895240 +3361.892709 +3362.893840 +3364.360905 +3364.370828 +3364.892672 +3364.893472 +3364.894937 +3365.203128 +3365.301463 +3366.111186 +3366.115448 +3366.124972 +3369.531995 +3369.894565 +3370.093366 +3370.094032 +3370.099460 +3370.199294 +3370.292267 +3370.294132 +3370.295797 +3370.395597 +3370.494132 +3370.594432 +3370.597129 +3370.693865 +3370.793899 +3370.798327 +3370.800459 +3370.896596 +3370.993132 +3370.993765 +3371.193199 +3371.198327 +3371.293498 +3371.295663 +3371.296462 +3371.297428 +3371.395996 +3371.397161 +3371.499592 +3371.500924 +3371.593631 +3371.593831 +3371.596895 +3371.601457 +3371.693498 +3371.693864 +3371.695396 +3371.696162 +3371.796528 +3371.894996 +3371.993165 +3372.093531 +3372.094463 +3372.193131 +3372.193464 +3372.293098 +3372.592698 +3372.595229 +3372.894463 +3373.295528 +3373.594462 +3373.693496 +3373.698091 +3373.993962 +3374.000256 +3374.093962 +3374.095960 +3374.193595 +3374.294628 +3374.296126 +3374.394195 +3374.495926 +3374.593895 +3374.594527 +3374.693961 +3374.799023 +3374.896692 +3375.279975 +3375.307647 +3375.586135 +3375.598423 +3379.250400 +3379.356661 +3379.384033 +3379.422295 +3379.473510 +3379.530120 +3379.686630 +3379.760756 +3379.893590 +3379.931785 +3379.986031 +3380.105478 +3380.107243 +3380.160756 +3380.170146 +3380.170879 +3380.192524 +3380.206510 +3380.231585 +3380.241042 +3380.242074 +3380.242774 +3380.256060 +3380.256393 +3380.257026 +3380.283067 +3380.305677 +3380.308108 +3380.314102 +3380.314768 +3380.320862 +3380.352830 +3380.353496 +3380.437912 +3380.476839 +3380.490159 +3380.502514 +3380.511804 +3380.534581 +3380.536013 +3380.544005 +3380.554994 +3380.576906 +3380.584931 +3380.588394 +3380.611471 +3380.617032 +3380.619397 +3380.630252 +3380.632717 +3380.714801 +3380.728754 +3380.742673 +3380.751464 +3380.754595 +3380.772244 +3380.775474 +3380.778670 +3380.812437 +3380.815867 +3380.820695 +3380.837278 +3380.846769 +3380.849400 +3380.854128 +3380.858824 +3380.877005 +3380.893722 +3380.907175 +3380.922327 +3380.943006 +3380.966449 +3380.978604 +3380.983432 +3380.997618 +3381.005443 +3381.017165 +3381.025723 +3381.028221 +3381.037511 +3381.038344 +3381.059423 +3381.073609 +3381.100249 +3381.101347 +3381.111537 +3381.111937 +3381.134215 +3381.154594 +3381.160888 +3381.161354 +3381.165850 +3381.175407 +3381.191424 +3381.198350 +3381.216266 +3381.224990 +3381.263086 +3381.270045 +3381.288793 +3381.310638 +3381.319929 +3381.331983 +3381.332749 +3381.335080 +3381.337544 +3381.359389 +3381.362919 +3381.371311 +3381.383032 +3381.385130 +3381.422193 +3381.425789 +3381.432882 +3381.435080 +3381.436778 +3381.459422 +3381.461420 +3381.465017 +3381.466149 +3381.474341 +3381.474940 +3381.486462 +3381.499016 +3381.524557 +3381.529719 +3381.550731 +3381.551364 +3381.552962 +3381.563352 +3381.567148 +3381.591890 +3381.594920 +3381.604377 +3381.605176 +3381.631150 +3381.681134 +3381.683431 +3381.684131 +3381.696885 +3381.708773 +3381.721427 +3381.761953 +3381.778170 +3381.780901 +3381.787394 +3381.815366 +3381.815866 +3381.830085 +3381.839708 +3381.865649 +3381.882599 +3381.897717 +3381.921060 +3381.921859 +3381.925423 +3381.949232 +3381.973907 +3381.986994 +3382.008240 +3382.025855 +3382.030684 +3382.054027 +3382.069845 +3382.098782 +3382.111769 +3382.163684 +3382.167014 +3382.182132 +3382.194087 +3382.206042 +3382.219262 +3382.247866 +3382.249931 +3382.289991 +3382.317264 +3382.339908 +3382.345136 +3382.346101 +3382.359022 +3382.414433 +3382.456857 +3382.474173 +3382.498549 +3382.506841 +3382.522092 +3382.537310 +3382.543138 +3382.571376 +3382.627819 +3382.628519 +3382.685195 +3382.741839 +3382.812135 +3382.838309 +3382.863017 +3382.864582 +3382.879900 +3382.918329 +3382.943670 +3382.985994 +3383.136144 +3383.180599 +3383.196783 +3383.240340 +3383.305108 +3383.387293 +3383.431582 +3383.437442 +3383.503343 +3383.579600 +3383.621358 +3383.652660 +3383.768611 +3383.783396 +3383.846500 +3383.859686 +3383.874771 +3383.904608 +3384.141737 +3384.156356 +3384.186426 +3384.245200 +3384.361351 +3384.376036 +3384.696882 +3384.726452 +3384.740738 +3384.801310 +3384.831747 +3384.847631 +3384.848363 +3384.848730 +3384.864447 +3384.877834 +3384.879066 +3386.325951 +3392.008596 +3393.471332 +3393.529540 +3395.894706 +3396.892108 +3396.893440 +3396.893839 +3396.895671 +3397.892373 +3398.892305 +3398.893671 +3399.892271 +3401.884011 +3404.892233 +3405.092066 +3405.194330 +3405.198559 +3405.293131 +3405.293831 +3405.294763 +3405.493597 +3405.493997 +3405.496927 +3405.595895 +3405.696428 +3405.696961 +3405.792898 +3405.795262 +3405.893797 +3405.995928 +3405.997293 +3406.093730 +3406.095961 +3406.293397 +3406.492797 +3406.496194 +3406.593430 +3406.594029 +3406.594396 +3406.595028 +3406.596460 +3406.695161 +3406.695694 +3406.696760 +3406.793696 +3406.892963 +3406.894395 +3406.895894 +3406.896327 +3406.896926 +3406.897625 +3406.898991 +3406.995727 +3406.996993 +3407.098391 +3407.293829 +3407.294395 +3407.295294 +3407.296459 +3407.394728 +3407.396026 +3407.396559 +3407.397791 +3407.398424 +3407.492963 +3407.493296 +3407.496459 +3407.497725 +3407.498424 +3407.594395 +3407.596959 +3407.692963 +3407.693395 +3407.693928 +3407.695027 +3407.695893 +3407.696492 +3407.696759 +3407.793329 +3407.794761 +3407.795260 +3407.795860 +3407.797891 +3407.798557 +3407.893961 +3407.895493 +3407.896093 +3407.898790 +3407.995260 +3407.996326 +3408.092929 +3408.093428 +3408.096625 +3408.192862 +3408.194760 +3408.195959 +3408.196425 +3408.197091 +3408.292862 +3408.293362 +3408.293728 +3408.294127 +3408.295126 +3408.296026 +3408.296558 +3408.297657 +3408.298690 +3408.299722 +3408.394094 +3408.395260 +3408.395792 +3408.398290 +3408.493228 +3408.494061 +3408.497824 +3408.500887 +3408.595026 +3408.600587 +3408.694726 +3408.695193 +3408.696758 +3408.698589 +3408.792895 +3408.794260 +3408.795958 +3408.796491 +3408.796824 +3408.893328 +3408.894027 +3408.894360 +3408.895459 +3408.895925 +3409.092828 +3409.194726 +3409.196791 +3409.294326 +3409.295891 +3409.392761 +3409.395625 +3409.396924 +3409.397490 +3409.495092 +3409.592761 +3409.694426 +3409.695858 +3409.696291 +3409.696890 +3409.793693 +3409.893293 +3414.909572 +3415.100048 +3415.111037 +3415.168979 +3415.191423 +3415.193221 +3415.204677 +3415.220428 +3415.263784 +3415.344503 +3415.391323 +3415.404477 +3415.450730 +3415.451729 +3415.462718 +3415.483997 +3415.504243 +3415.516365 +3415.532748 +3415.544203 +3415.571609 +3415.619428 +3415.632582 +3415.645202 +3415.677870 +3415.692322 +3415.693621 +3415.703910 +3415.728819 +3415.741539 +3415.755592 +3415.762219 +3415.764849 +3415.765216 +3415.776671 +3415.800447 +3415.814500 +3415.815299 +3415.839108 +3415.841739 +3415.851096 +3415.853394 +3415.856324 +3415.866181 +3415.877503 +3415.878902 +3415.889857 +3415.913234 +3415.915798 +3415.929951 +3415.935911 +3415.958955 +3415.972208 +3415.993720 +3415.994153 +3416.005408 +3416.020660 +3416.022292 +3416.048998 +3416.053827 +3416.064916 +3416.077536 +3416.078036 +3416.106874 +3416.115298 +3416.167746 +3416.193154 +3416.193920 +3416.204609 +3416.220893 +3416.221492 +3416.232847 +3416.245601 +3416.249764 +3416.257423 +3416.284729 +3416.285695 +3416.287459 +3416.295951 +3416.301146 +3416.309338 +3416.309704 +3416.310436 +3416.311202 +3416.312301 +3416.313833 +3416.322991 +3416.328019 +3416.348898 +3416.360287 +3416.363150 +3416.373307 +3416.375272 +3416.387959 +3416.392721 +3416.396584 +3416.410769 +3416.416530 +3416.420959 +3416.425222 +3416.437376 +3416.438075 +3416.446367 +3416.464782 +3416.482964 +3416.489890 +3416.498382 +3416.500180 +3416.515631 +3416.578834 +3416.590756 +3416.591588 +3416.592954 +3416.611269 +3416.616697 +3416.617995 +3416.645168 +3416.685461 +3416.722990 +3416.739241 +3416.743669 +3416.751761 +3416.752927 +3416.755957 +3416.762617 +3416.787492 +3416.788891 +3416.804275 +3416.818395 +3416.829217 +3416.832314 +3416.843403 +3416.845801 +3416.859553 +3416.870576 +3416.875005 +3416.886859 +3416.893653 +3416.906806 +3416.913566 +3416.916330 +3416.927352 +3416.940639 +3416.942371 +3416.950030 +3416.954925 +3417.007006 +3417.009170 +3417.067579 +3417.069743 +3417.120093 +3417.144868 +3417.157322 +3417.171042 +3417.172840 +3417.173173 +3417.211601 +3417.238607 +3417.241971 +3417.250362 +3417.271974 +3417.272540 +3417.281564 +3417.310402 +3417.323522 +3417.360019 +3417.374738 +3417.456156 +3417.474505 +3417.484295 +3417.489023 +3417.516196 +3417.528351 +3417.542503 +3417.599513 +3417.608937 +3417.613299 +3417.631514 +3417.641571 +3417.681431 +3417.683928 +3417.694318 +3417.711501 +3417.736376 +3417.752027 +3417.764847 +3417.806406 +3417.807471 +3417.836376 +3417.848963 +3417.851094 +3417.884661 +3417.905173 +3417.907471 +3417.920558 +3417.979799 +3417.995450 +3418.007205 +3418.008004 +3418.051127 +3418.079832 +3418.122423 +3418.151693 +3418.152626 +3418.180997 +3418.224354 +3418.240105 +3418.281663 +3418.342203 +3418.344201 +3418.362516 +3418.369409 +3418.399445 +3418.413764 +3418.414364 +3418.443368 +3418.473338 +3418.516462 +3418.574703 +3418.634577 +3418.648663 +3418.736408 +3418.766411 +3418.781163 +3418.782995 +3418.783794 +3418.841436 +3418.842136 +3418.855855 +3418.885725 +3418.890387 +3418.931080 +3419.052325 +3419.079898 +3419.081529 +3419.082595 +3419.096614 +3419.126917 +3419.128449 +3419.155688 +3419.173071 +3419.173837 +3419.187223 +3419.231246 +3419.232378 +3419.368908 +3419.387023 +3419.437506 +3419.523653 +3419.579764 +3419.610100 +3419.643234 +3419.716760 +3430.891441 +3430.892806 +3430.894038 +3430.894371 +3431.890408 +3431.890907 +3431.891606 +3431.892306 +3431.894670 +3432.891439 +3432.894602 +3433.894002 +3434.090738 +3434.115647 +3434.258637 +3434.276919 +3434.893035 +3435.241320 +3438.630461 +3438.661929 +3440.091798 +3440.093729 +3440.094162 +3440.192364 +3440.194295 +3440.395327 +3440.492663 +3440.494395 +3440.694994 +3440.792696 +3440.793396 +3440.896326 +3440.991930 +3440.994894 +3440.996326 +3441.091697 +3441.092696 +3441.093562 +3441.094927 +3441.191897 +3441.192829 +3441.194228 +3441.196858 +3441.291830 +3441.292796 +3441.292996 +3441.393362 +3441.393728 +3441.394228 +3441.395027 +3441.397990 +3441.491863 +3441.493761 +3441.495926 +3441.592762 +3441.594993 +3441.595859 +3441.596692 +3441.599722 +3441.691830 +3441.693028 +3441.695859 +3441.695892 +3441.795259 +3441.795792 +3441.798057 +3441.991929 +3441.994960 +3441.995226 +3441.995892 +3441.996824 +3441.999555 +3442.092329 +3442.092662 +3442.094393 +3442.095992 +3442.193761 +3442.194993 +3442.199721 +3442.292162 +3442.297923 +3442.391862 +3442.396358 +3442.493527 +3442.496291 +3442.593694 +3442.691895 +3442.695825 +3442.696690 +3442.697190 +3442.794259 +3442.795691 +3442.891895 +3442.894159 +3442.894492 +3442.894959 +3442.896923 +3442.898122 +3442.994226 +3442.995092 +3442.998455 +3443.094625 +3443.197223 +3443.293626 +3443.294159 +3443.295624 +3443.394425 +3443.394892 +3443.494192 +3443.495624 +3443.502084 +3443.692860 +3443.693559 +3443.695591 +3443.696989 +3443.699420 +3443.795391 +3443.992527 +3443.996822 +3443.999620 +3444.095590 +3444.096622 +3444.097988 +3444.192859 +3444.193559 +3444.292493 +3444.296589 +3444.395856 +3444.494924 +3444.496422 +3444.592493 +3444.692659 +3444.794091 +3444.794824 +3444.795556 +3444.796189 +3444.893491 +3444.900218 +3449.888858 +3449.889923 +3449.893287 +3449.906940 +3449.908172 +3449.950762 +3449.951628 +3449.960220 +3449.963150 +3449.963650 +3450.003143 +3450.012834 +3450.036876 +3450.057489 +3450.058688 +3450.067013 +3450.080233 +3450.103310 +3450.114698 +3450.117196 +3450.117695 +3450.162850 +3450.169210 +3450.179067 +3450.190123 +3450.201811 +3450.212367 +3450.220792 +3450.235411 +3450.258288 +3450.260619 +3450.266180 +3450.290489 +3450.290889 +3450.298514 +3450.300379 +3450.307938 +3450.310636 +3450.322990 +3450.334578 +3450.379400 +3450.387459 +3450.406939 +3450.413133 +3450.422557 +3450.423023 +3450.433279 +3450.435910 +3450.445267 +3450.446566 +3450.459520 +3450.460486 +3450.475471 +3450.482364 +3450.514698 +3450.521957 +3450.527818 +3450.534045 +3450.538641 +3450.555590 +3450.557555 +3450.568944 +3450.594551 +3450.596949 +3450.601345 +3450.607938 +3450.619193 +3450.619959 +3450.625787 +3450.646732 +3450.656156 +3450.657921 +3450.688491 +3450.692986 +3450.703642 +3450.704941 +3450.707971 +3450.723256 +3450.728784 +3450.732214 +3450.740838 +3450.742537 +3450.743103 +3450.753925 +3450.755124 +3450.755557 +3450.764947 +3450.766879 +3450.774571 +3450.776702 +3450.799480 +3450.821657 +3450.824721 +3450.826086 +3450.841904 +3450.860385 +3450.861984 +3450.872606 +3450.875370 +3450.883828 +3450.905873 +3450.920758 +3450.932113 +3450.967245 +3450.971474 +3450.983129 +3450.987458 +3450.995816 +3450.997748 +3450.998147 +3451.007305 +3451.008570 +3451.009469 +3451.024188 +3451.027585 +3451.036609 +3451.051394 +3451.057854 +3451.088524 +3451.095350 +3451.097781 +3451.098214 +3451.109070 +3451.114031 +3451.114531 +3451.123555 +3451.134045 +3451.146532 +3451.149163 +3451.167178 +3451.172473 +3451.183695 +3451.209436 +3451.229915 +3451.239972 +3451.267045 +3451.277701 +3451.281131 +3451.314231 +3451.314631 +3451.366912 +3451.391420 +3451.429782 +3451.446166 +3451.466978 +3451.468010 +3451.475203 +3451.478899 +3451.497115 +3451.501577 +3451.527817 +3451.563215 +3451.593052 +3451.604907 +3451.610201 +3451.646299 +3451.655722 +3451.656122 +3451.679932 +3451.680797 +3451.691920 +3451.756655 +3451.962216 +3451.987091 +3452.092752 +3452.144800 +3452.377400 +3452.388988 +3452.478266 +3452.496048 +3452.532844 +3452.623287 +3452.676034 +3453.160383 +3453.285824 +3453.546363 +3453.547595 +3453.903173 +3454.323019 +3454.540335 +; +0.037629 +0.126873 +0.185881 +0.303263 +0.355078 +0.390642 +0.443023 +0.646686 +0.746086 +0.786646 +0.841924 +0.925840 +1.097368 +1.211720 +1.310721 +1.371827 +1.434431 +1.590674 +1.665100 +1.778087 +1.880751 +2.061570 +2.325306 +2.595136 +2.707623 +2.747250 +2.773091 +2.846451 +2.887942 +2.906158 +2.926737 +3.093204 +3.139391 +3.204659 +3.273790 +3.461069 +3.820143 +4.025204 +4.099596 +4.221641 +4.269526 +4.336326 +4.389539 +4.438257 +4.473988 +4.564298 +4.844218 +5.085143 +5.302026 +5.600794 +5.888073 +5.930164 +5.979847 +6.029198 +6.058535 +6.086374 +6.117310 +6.180713 +6.222438 +6.260866 +6.334592 +6.425168 +6.594799 +6.811282 +7.223403 +7.295131 +7.316743 +7.345114 +7.367458 +7.417908 +7.592700 +7.642916 +7.688137 +7.742650 +7.953772 +8.124601 +8.286439 +8.529728 +8.629762 +8.698293 +8.770920 +8.913045 +8.946911 +9.007483 +9.133124 +9.216841 +9.770686 +10.000390 +10.114009 +10.168621 +10.242214 +10.277346 +10.323133 +10.357599 +10.513975 +10.724365 +10.837152 +10.975247 +11.086169 +11.298923 +11.428127 +11.708746 +11.847341 +11.891330 +12.034154 +12.242878 +12.701785 +12.977110 +13.072248 +13.197889 +13.280773 +13.306547 +13.359261 +13.401951 +13.467785 +13.573213 +13.692793 +13.898421 +14.131421 +14.421764 +14.444707 +14.484501 +14.542210 +14.573312 +14.615403 +14.863855 +14.905413 +14.964187 +15.051334 +15.235982 +15.480337 +15.661323 +15.785299 +15.981902 +16.032019 +16.076274 +16.126124 +16.134716 +16.171978 +16.219165 +16.300516 +16.580170 +17.051098 +17.272876 +17.368914 +17.420262 +17.469313 +17.537179 +17.563552 +17.576140 +17.632750 +17.720895 +17.766249 +17.871311 +18.006975 +18.146335 +18.374041 +18.644071 +19.013268 +19.062718 +19.104410 +19.183764 +19.215798 +19.281366 +19.347067 +19.383331 +19.549731 +19.603910 +19.617330 +20.091055 +20.258321 +20.428285 +20.432214 +20.450429 +20.516296 +20.549497 +20.587259 +20.664248 +20.699646 +20.711568 +20.773139 +20.829483 +20.885227 +21.205906 +21.278533 +21.443402 +21.571007 +21.764880 +21.895483 +22.000011 +22.051093 +22.075902 +22.169375 +22.210068 +22.305139 +22.343234 +22.410001 +22.487623 +22.631845 +22.742535 +22.982428 +23.123753 +23.213963 +23.364845 +23.456986 +23.533976 +23.695514 +23.826749 +24.009034 +24.088221 +24.153056 +24.207235 +24.327848 +24.442500 +24.824317 +24.911364 +24.923718 +24.986555 +25.090618 +25.200241 +25.348093 +25.408499 +25.576298 +25.687786 +25.735805 +25.813161 +25.933241 +26.035938 +26.166341 +26.248758 +26.333940 +26.449924 +26.571768 +26.616557 +27.014891 +27.200905 +27.367205 +27.543595 +27.567205 +27.661777 +27.789250 +27.833872 +27.838933 +27.940598 +28.140531 +28.249189 +28.356016 +28.747390 +28.829209 +28.884753 +28.953318 +29.047290 +29.127110 +29.198106 +29.361809 +29.511892 +29.810959 +29.907929 +29.957546 +30.104032 +30.189414 +30.289647 +30.349786 +30.574994 +30.732970 +30.814288 +30.916985 +31.083519 +31.637431 +31.761540 +31.802099 +31.845423 +31.921213 +31.949086 +32.013055 +32.037697 +32.108626 +32.201400 +32.320680 +32.407260 +32.460307 +32.550317 +32.750017 +32.907360 +33.126307 +33.186147 +33.431935 +33.474425 +33.545021 +33.651348 +33.738195 +33.820879 +33.920745 +34.190176 +34.373992 +34.607891 +34.734464 +34.791940 +34.837960 +34.874024 +34.941457 +34.975290 +35.034397 +35.199732 +35.337960 +35.541723 +35.748183 +36.002695 +36.075055 +36.129867 +36.171159 +36.336694 +36.408988 +36.584545 +36.735894 +36.889041 +37.151911 +37.235660 +37.476652 +37.710319 +37.760968 +37.796099 +37.850711 +37.902859 +37.952176 +37.999995 +38.040322 +38.150878 +38.206555 +38.303591 +38.346682 +38.409385 +38.504457 +38.669991 +38.845216 +39.245249 +39.288505 +39.372921 +39.525601 +39.614746 +39.731695 +39.908019 +40.057236 +40.181512 +40.252607 +40.316210 +40.371621 +40.452440 +40.520839 +40.600426 +40.727865 +40.874551 +41.064428 +41.328097 +41.363861 +41.433458 +41.434624 +41.525699 +41.675583 +41.842049 +41.994730 +42.154903 +42.307250 +42.407883 +42.474550 +42.531493 +42.580377 +42.618905 +42.697193 +42.756900 +42.820470 +42.890533 +43.122701 +43.189401 +43.285504 +43.382507 +43.495528 +43.571452 +43.641548 +43.714708 +43.896460 +44.063759 +44.513076 +44.561860 +44.651837 +44.749606 +44.813175 +44.856565 +44.921300 +44.964024 +45.015706 +45.135819 +45.261826 +45.330358 +45.392529 +45.611743 +45.692795 +45.794726 +45.932954 +46.180407 +46.413806 +46.513207 +46.718535 +46.894958 +46.929490 +47.048904 +47.312873 +47.363189 +47.474811 +47.589063 +47.711774 +47.825227 +48.051967 +48.160258 +48.292326 +48.368117 +48.481537 +48.543008 +48.697753 +48.795156 +49.128056 +49.257027 +49.348336 +49.356427 +49.410740 +49.456727 +49.510307 +49.561256 +49.603414 +49.640909 +49.696787 +49.913370 +50.013203 +50.085165 +50.172710 +50.249400 +50.363786 +50.470812 +50.569813 +50.661055 +50.728720 +50.894255 +51.051797 +51.105976 +51.173142 +51.257191 +51.356592 +51.383798 +51.443372 +51.494254 +51.593122 +51.685996 +51.811870 +51.899049 +51.996019 +52.079035 +52.170677 +52.265016 +52.383631 +52.447000 +52.507740 +52.578202 +52.656990 +52.701146 +52.853560 +53.217596 +53.410103 +53.596516 +53.678168 +53.809004 +53.865780 +53.983795 +54.020892 +54.052194 +54.082530 +54.117661 +54.175104 +54.232846 +54.438540 +54.570608 +54.660884 +54.804407 +54.901377 +54.939106 +55.006339 +55.083595 +55.149762 +55.263348 +55.453891 +55.577434 +55.696548 +55.762548 +55.813897 +55.823820 +55.854490 +55.973337 +56.097646 +56.304972 +56.411032 +56.486224 +56.532244 +56.576167 +56.624019 +56.647529 +56.676067 +56.730046 +56.769840 +56.815528 +56.908967 +56.994215 +57.114062 +57.201241 +57.277498 +57.435807 +57.520588 +57.590985 +57.695813 +57.807168 +58.033042 +58.094381 +58.208134 +58.314727 +58.442366 +58.588819 +58.681826 +58.761546 +58.800407 +58.862379 +58.988552 +59.043131 +59.283091 +59.359981 +59.409664 +59.432708 +59.440866 +59.483557 +59.570303 +59.733240 +59.848258 +59.909364 +59.977296 +60.100939 +60.251222 +60.331575 +60.495744 +60.618354 +60.760046 +60.917155 +60.981757 +61.069103 +61.216855 +61.287151 +61.334238 +61.379459 +61.486852 +61.647391 +61.782023 +61.864340 +61.943461 +62.201569 +62.275262 +62.351153 +62.482588 +62.625012 +62.667037 +62.698672 +62.800270 +62.872664 +62.967203 +63.215554 +63.334669 +63.462707 +63.532637 +63.632570 +63.682354 +63.759743 +63.812257 +63.857046 +63.946589 +64.004598 +64.075627 +64.210026 +64.319483 +64.394308 +64.502233 +64.657711 +64.704897 +64.771597 +64.890278 +64.980554 +65.081820 +65.150251 +65.247853 +65.314953 +65.403398 +65.473328 +65.584650 +65.660640 +65.820114 +65.952481 +66.111855 +66.204696 +66.340560 +66.483050 +66.600067 +66.660073 +66.735131 +66.766467 +66.804795 +66.829670 +66.915051 +66.961738 +67.057442 +67.122577 +67.159573 +67.208757 +67.305494 +67.452913 +67.579486 +68.020345 +68.134597 +68.186578 +68.212686 +68.239625 +68.274757 +68.406658 +68.437128 +68.492905 +68.548383 +68.607690 +68.877287 +68.960937 +69.109421 +69.217480 +69.311719 +69.423207 +69.598698 +69.729101 +69.752078 +69.781182 +69.871891 +69.933596 +70.005491 +70.111984 +70.176686 +70.292637 +70.356207 +70.407355 +70.458571 +70.499230 +70.551378 +70.644984 +70.754475 +70.819143 +70.864531 +70.910518 +70.978417 +71.101494 +71.312882 +71.429965 +71.590205 +71.668826 +71.707787 +71.751410 +71.838057 +71.911050 +72.167827 +72.725002 +73.129630 +73.340819 +73.913945 +74.300492 +74.356569 +74.410915 +74.470355 +74.581477 +74.707751 +74.959865 +75.080677 +75.165426 +75.268889 +75.436122 +75.506818 +75.545912 +75.611479 +75.710847 +75.802288 +75.888069 +75.975682 +76.109414 +76.169188 +76.286204 +76.380443 +76.504186 +76.641315 +76.717306 +76.804019 +76.876280 +76.919603 +77.059064 +77.114475 +77.232923 +77.265957 +77.324665 +77.399989 +77.480142 +77.560562 +77.640582 +77.682673 +77.750838 +77.825064 +78.038983 +78.260728 +78.296425 +78.335986 +78.385902 +78.591397 +78.648340 +78.714407 +78.874513 +78.962925 +79.047440 +79.128426 +79.227260 +79.328259 +79.433887 +79.549804 +79.653733 +79.711475 +79.741778 +79.765255 +79.817036 +79.859727 +79.873813 +79.900087 +79.955564 +80.035951 +80.094725 +80.203583 +80.274079 +80.359493 +80.525461 +80.619966 +81.269815 +81.421996 +82.852098 +82.900583 +82.954163 +83.089228 +83.158958 +83.269780 +83.386164 +83.836679 +83.940775 +84.159356 +84.255760 +84.307741 +84.431084 +84.579403 +84.727121 +85.083431 +85.270378 +85.378969 +85.616931 +85.803744 +85.897616 +85.973540 +86.106640 +86.402145 +86.474439 +86.562850 +86.753826 +87.007672 +87.148764 +87.253692 +87.343336 +87.421924 +87.577568 +87.635843 +87.700378 +87.968277 +88.191920 +88.300111 +88.388456 +88.408237 +88.621357 +88.719525 +88.797081 +89.010933 +89.252625 +89.361482 +89.528282 +89.700510 +89.812664 +89.857253 +89.891052 +89.968275 +90.071039 +90.181029 +90.306403 +90.445597 +90.534275 +90.544931 +90.593050 +90.634408 +90.704105 +90.768374 +90.787755 +91.011564 +91.137405 +91.260282 +91.332476 +91.513228 +91.672636 +91.907900 +91.974167 +92.088919 +92.161113 +92.244796 +92.345562 +92.415026 +92.465575 +92.607700 +92.752954 +93.010763 +93.099208 +93.141499 +93.179993 +93.243663 +93.330509 +93.354252 +93.505501 +93.696676 +93.826147 +93.965008 +94.230275 +94.319519 +94.616023 +94.747191 +94.803701 +94.858879 +95.096142 +95.173032 +95.303767 +95.499638 +95.610793 +95.680257 +95.828376 +95.926511 +96.052884 +96.177659 +96.426976 +96.561675 +96.660010 +96.704932 +96.727409 +96.778858 +96.866536 +97.048754 +97.154948 +97.286816 +97.415753 +97.583386 +97.864637 +98.046156 +98.156578 +98.583751 +98.624577 +98.822245 +98.956311 +99.044556 +99.145255 +99.584849 +99.663470 +99.671629 +99.807326 +100.053846 +100.168098 +100.722210 +100.879320 +101.026905 +101.258573 +101.509522 +102.203194 +102.431999 +102.574489 +102.858905 +103.464132 +103.689840 +103.787575 +103.818178 +104.021141 +104.155573 +104.372490 +104.535826 +104.618943 +104.690871 +104.767627 +104.899362 +105.166129 +105.384910 +105.461133 +105.672855 +105.759801 +105.865429 +106.028898 +106.102158 +106.165228 +106.314879 +106.433427 +106.599560 +106.748644 +106.818075 +107.255470 +107.452873 +107.477282 +107.708251 +108.463261 +108.768256 +109.270453 +109.320936 +109.369021 +109.380810 +109.477013 +109.512445 +109.564692 +109.634922 +109.691332 +109.780177 +109.895994 +109.998758 +110.125431 +110.222567 +110.296260 +110.550772 +110.752337 +110.947941 +111.255600 +111.338050 +111.386569 +111.500155 +111.542046 +111.680474 +111.753868 +112.054600 +112.168885 +112.414340 +112.551403 +112.729957 +112.924129 +113.070883 +113.126394 +113.183203 +113.210576 +113.282904 +113.424795 +113.531921 +113.683303 +113.774645 +113.887465 +114.011175 +114.400452 +114.448803 +114.647871 +114.714204 +114.845007 +115.008277 +115.231986 +115.580337 +115.767550 +115.792258 +115.810307 +115.868649 +115.957560 +116.111472 +116.224559 +116.471778 +116.661289 +116.810339 +117.083799 +117.145670 +117.329686 +117.451098 +117.491957 +117.546469 +117.682766 +117.795353 +118.191057 +118.261320 +118.298949 +118.384297 +118.472342 +118.500081 +118.625522 +118.689825 +119.026821 +119.178702 +119.319328 +119.480300 +119.604076 +119.875571 +120.048232 +120.731514 +120.913898 +121.049995 +121.287757 +121.456222 +121.551993 +121.704007 +121.754557 +121.993151 +122.252192 +122.383294 +122.552924 +122.659251 +122.725618 +122.920656 +122.995848 +123.096780 +123.286190 +123.710998 +123.820289 +124.044997 +124.049227 +124.253655 +124.366542 +124.537138 +124.958217 +125.058117 +125.144730 +125.239269 +125.342166 +125.421686 +125.569338 +125.848259 +126.227779 +126.311229 +126.401805 +126.535305 +126.593247 +126.659081 +126.999607 +127.211095 +127.494345 +127.898640 +127.992879 +128.147191 +128.394843 +128.649089 +128.841663 +129.007663 +129.140364 +129.324113 +129.414423 +129.507796 +129.953150 +130.109127 +130.381421 +130.537898 +130.831504 +130.918251 +130.923878 +131.002433 +131.064637 +131.166968 +131.270298 +131.788346 +131.962072 +132.076525 +132.371896 +132.671596 +132.909557 +133.347752 +133.547752 +133.672527 +134.059506 +134.104261 +134.407991 +134.569030 +134.698966 +135.045952 +135.200697 +135.339625 +135.457340 +135.599332 +135.707057 +135.736028 +135.788709 +135.912451 +136.077986 +136.335495 +136.523773 +136.909420 +136.950812 +136.957539 +137.067029 +137.312483 +137.416579 +137.501194 +138.081280 +138.503258 +138.769159 +139.086241 +139.491702 +139.697163 +139.976417 +140.050742 +140.152607 +140.155904 +140.179547 +140.222071 +140.378148 +140.450709 +140.716676 +140.835723 +140.939220 +141.084141 +141.484907 +141.645846 +142.024866 +142.112878 +142.177880 +142.217607 +142.225932 +142.262329 +142.381776 +142.560197 +143.291998 +143.425997 +143.767655 +144.382007 +144.589899 +144.693129 +144.828127 +144.925030 +145.112143 +145.180707 +145.739315 +145.846974 +146.081772 +146.260493 +146.781871 +146.815238 +146.952101 +146.989463 +147.009477 +147.048238 +147.193959 +147.271148 +147.323929 +147.401484 +147.476909 +147.545407 +147.672080 +147.812506 +147.902350 +148.030521 +148.153598 +148.199419 +148.259659 +148.357727 +148.409675 +148.483668 +148.523661 +148.567684 +148.648702 +148.742176 +148.843774 +149.030021 +149.104246 +149.184400 +149.266484 +149.426024 +149.504512 +149.675142 +149.826757 +149.971478 +149.999983 +150.016034 +150.048002 +150.128688 +150.175174 +150.226323 +150.387429 +150.588128 +150.794321 +150.870212 +151.031184 +151.150698 +151.179469 +151.250365 +151.359689 +151.445603 +151.557025 +151.674673 +151.954627 +152.026854 +152.223724 +152.288759 +152.358556 +152.465449 +152.699181 +152.812235 +152.906640 +152.937742 +153.050363 +153.132248 +153.215564 +153.292054 +153.396217 +153.627818 +153.799313 +153.917195 +154.156156 +154.557488 +154.706938 +154.799212 +154.939972 +154.986891 +155.051793 +155.563814 +155.732179 +156.303573 +156.412331 +156.557619 +156.646164 +158.455519 +160.705767 +162.059711 +162.265272 +162.707197 +163.135335 +163.397006 +164.325743 +164.574061 +165.109692 +165.251583 +165.518083 +165.906194 +167.864035 +168.254410 +169.521908 +169.867163 +170.488974 +170.693635 +171.670657 +171.823971 +171.941053 +172.446814 +172.500260 +173.340553 +173.788504 +173.852140 +173.893033 +174.125467 +174.240352 +175.577480 +176.103154 +176.539617 +176.621202 +176.669287 +177.121634 +178.296658 +178.337251 +178.986168 +179.535085 +181.094591 +181.767084 +182.035416 +182.862654 +183.004246 +183.102947 +183.293090 +183.416966 +183.440110 +183.495587 +183.537013 +183.631218 +184.420095 +186.458422 +186.542937 +186.773240 +186.877102 +187.134012 +187.382463 +187.512733 +188.518193 +188.642735 +188.688622 +188.800877 +188.872006 +188.926584 +189.415062 +189.727449 +189.882294 +189.902474 +190.053323 +190.524052 +190.843066 +190.857285 +190.984591 +191.202739 +191.332543 +191.778063 +191.994813 +192.306401 +192.384956 +192.613627 +192.697443 +193.224149 +193.288052 +193.771068 +194.567138 +194.814990 +195.059845 +195.996108 +196.116354 +196.134802 +196.649021 +197.198204 +199.259008 +199.272062 +199.362904 +200.973192 +201.563768 +201.943055 +202.097400 +202.946450 +203.039257 +204.081914 +204.730465 +204.889639 +205.206521 +205.288606 +206.075185 +206.148645 +206.463796 +206.734126 +207.954770 +208.125233 +208.219972 +208.252239 +208.713877 +208.880610 +210.110712 +210.229960 +210.336753 +210.462094 +210.618471 +211.437218 +211.534620 +211.663624 +211.737451 +211.903518 +213.034086 +213.142910 +213.497988 +213.632820 +213.798454 +215.107411 +215.215602 +215.355129 +215.497853 +215.657826 +216.196720 +216.323360 +216.411572 +216.459923 +216.516933 +217.166250 +217.230752 +217.365017 +217.477039 +217.589659 +218.354194 +218.758822 +218.871509 +218.970643 +218.972775 +219.016431 +219.132781 +219.366647 +219.600779 +219.711835 +220.038241 +220.194285 +220.220725 +220.451927 +220.524988 +220.680399 +220.777135 +221.069576 +221.178800 +221.397214 +221.577900 +221.665279 +221.713631 +221.806372 +221.861283 +221.987590 +222.491319 +222.867010 +222.932811 +223.098245 +223.100210 +223.176600 +223.209800 +223.385125 +223.448361 +223.604671 +223.790619 +223.995946 +224.281760 +224.342100 +224.432276 +224.567374 +224.676565 +224.801240 +224.856618 +224.996378 +225.155486 +225.256518 +225.529145 +225.604037 +225.644130 +225.687986 +225.752488 +225.802372 +225.865675 +226.043563 +226.120919 +226.302571 +226.634239 +227.320086 +227.538567 +227.639000 +228.009795 +228.070734 +228.622216 +228.933737 +228.999538 +229.503766 +229.673763 +229.757646 +230.031472 +230.285717 +230.488514 +230.566369 +230.602234 +230.680122 +230.777225 +230.810958 +231.061474 +231.229705 +231.381121 +231.956078 +232.127407 +232.316051 +232.380187 +232.526374 +232.922744 +233.140792 +233.391708 +233.659507 +233.886946 +233.934831 +234.045254 +234.062270 +234.154777 +234.271294 +234.394238 +234.413352 +234.624474 +234.830468 +235.051580 +235.403361 +235.485812 +235.543421 +235.700097 +235.751080 +235.813384 +235.865831 +235.991672 +236.096734 +236.199064 +236.263000 +236.360669 +236.604958 +236.956706 +237.140256 +237.172057 +237.224072 +237.259370 +237.354708 +237.460302 +237.524671 +237.626402 +237.813016 +237.958836 +238.097864 +238.302892 +238.404457 +238.454806 +238.533861 +238.550078 +238.698196 +239.031263 +239.131263 +239.260200 +239.351376 +239.408485 +239.528598 +239.615844 +239.705421 +239.755471 +239.836357 +240.197629 +240.272520 +240.373519 +240.430396 +240.481245 +240.578514 +240.631927 +240.735723 +240.817608 +240.978514 +241.384074 +241.523435 +241.662362 +241.770254 +241.822902 +242.053238 +242.414743 +242.618638 +242.730859 +242.909714 +242.960130 +243.048275 +243.136487 +243.220103 +243.271085 +243.396493 +243.491531 +243.587835 +243.727029 +243.852936 +244.016239 +244.141547 +244.271950 +244.355100 +244.431624 +244.518137 +244.617171 +244.652369 +244.790997 +244.870618 +244.984703 +245.116205 +245.401919 +245.462625 +245.548805 +245.637583 +245.734719 +245.861059 +245.985035 +246.217036 +246.587832 +246.651102 +246.841078 +246.962290 +247.106013 +247.258760 +247.459892 +247.482170 +247.552067 +247.649269 +247.752966 +247.840811 +247.934684 +248.085533 +248.177940 +248.226092 +248.387963 +248.721263 +248.805778 +248.913670 +248.943307 +248.979205 +249.123061 +249.212804 +249.327922 +249.464819 +249.589694 +249.711205 +249.820163 +249.927755 +250.182134 +250.283732 +250.316932 +250.395088 +250.562154 +250.719230 +250.925157 +251.116632 +251.173309 +251.200348 +251.235913 +251.318097 +251.325290 +251.404810 +251.497384 +251.561553 +251.735979 +251.841906 +252.012002 +252.153694 +252.204843 +252.262951 +252.336045 +252.365016 +252.565648 +252.768046 +253.180599 +253.220426 +253.359021 +253.360286 +253.530949 +253.763882 +253.954391 +254.061251 +254.166546 +254.223855 +254.272040 +254.329083 +254.449129 +254.602576 +254.811500 +254.981397 +255.018959 +255.149628 +255.401110 +255.483361 +255.563847 +255.604739 +255.731879 +255.842868 +255.988156 +256.094749 +256.136174 +256.183327 +256.478665 +256.551458 +256.586823 +256.637439 +256.794215 +256.839237 +256.862380 +256.978098 +257.042001 +257.102473 +257.155920 +257.225783 +257.372969 +257.584824 +257.686522 +257.973835 +258.068973 +258.178430 +258.225349 +258.288120 +258.375266 +258.427081 +258.488653 +258.570837 +258.661147 +258.745729 +258.899708 +259.009598 +259.142298 +259.198209 +259.377796 +260.098008 +260.246460 +260.316589 +260.366673 +260.386819 +260.418454 +260.492513 +260.560345 +260.635004 +260.785387 +260.912227 +261.024681 +261.184288 +261.366272 +261.465406 +261.543428 +261.620684 +261.660844 +261.725346 +261.790681 +261.891913 +261.996608 +262.176061 +262.296241 +262.381922 +262.452252 +262.525279 +262.681322 +262.917186 +263.049654 +263.088215 +263.127509 +263.220982 +263.413090 +263.548454 +263.669433 +263.785750 +264.080189 +264.468167 +264.469233 +264.674960 +264.708560 +264.765070 +264.875992 +264.932136 +265.038230 +265.221080 +265.543757 +265.915252 +266.010723 +266.041426 +266.143956 +266.204729 +266.309191 +266.375391 +266.539194 +266.594039 +266.619347 +266.689510 +266.988977 +267.077821 +267.185713 +267.277355 +267.365167 +267.443089 +267.478154 +267.479053 +267.575390 +267.730235 +267.776655 +267.860005 +267.951447 +268.072326 +268.221876 +268.457141 +268.675389 +268.767896 +268.830767 +268.974023 +268.997600 +269.059072 +269.202728 +269.297233 +269.483547 +269.642188 +269.734629 +269.814116 +269.969793 +270.073789 +270.150779 +270.365297 +270.424338 +270.455407 +270.549280 +270.605057 +270.664165 +270.706156 +270.750412 +270.808554 +271.085743 +271.152809 +271.262832 +271.484544 +271.546582 +271.587174 +271.637058 +271.719908 +271.781979 +271.836625 +271.965928 +272.094633 +272.204689 +272.358902 +272.486674 +272.521472 +272.564762 +272.648878 +272.697763 +272.749011 +272.788139 +272.843816 +272.895298 +273.068258 +273.155038 +273.287839 +273.381045 +273.470256 +273.619740 +273.737921 +273.776616 +273.831927 +273.922303 +273.924834 +273.976449 +274.012646 +274.068490 +274.095297 +274.151674 +274.185973 +274.262296 +274.330362 +274.464028 +274.588337 +274.646046 +274.681277 +274.768157 +274.857467 +274.904920 +274.943515 +275.003188 +275.060731 +275.100324 +275.166125 +275.265659 +275.310514 +275.418206 +275.530360 +275.590900 +275.636488 +275.705352 +275.848076 +275.961995 +276.050107 +276.070686 +276.126630 +276.198592 +276.291598 +276.358165 +276.480742 +276.732357 +276.880209 +277.031291 +277.236586 +277.283839 +277.384205 +277.398490 +277.481141 +277.501354 +277.563192 +277.622932 +277.714641 +277.824264 +277.924297 +278.013541 +278.115273 +278.274547 +278.395592 +278.481939 +278.528160 +278.581473 +278.694993 +278.750404 +279.043843 +279.152068 +279.312275 +279.384869 +279.416903 +279.477443 +279.503383 +279.561325 +279.622464 +279.648405 +279.682404 +279.764555 +279.807446 +279.862624 +280.004715 +280.277775 +280.379839 +280.508311 +280.644475 +280.665787 +280.722696 +280.884801 +281.063122 +281.214937 +281.289595 +281.377241 +281.465419 +281.554630 +281.641443 +281.687564 +281.900151 +281.926591 +281.987730 +282.053198 +282.252765 +282.423694 +282.595255 +282.753763 +282.784000 +282.930586 +283.022228 +283.069214 +283.134649 +283.203080 +283.458791 +283.645004 +283.715001 +283.815700 +283.851831 +283.892157 +283.963819 +284.012869 +284.089426 +284.220828 +284.338244 +284.455660 +284.605443 +284.798383 +284.970910 +285.001313 +285.055126 +285.093588 +285.132049 +285.135179 +285.199515 +285.272575 +285.312302 +285.413534 +285.541273 +285.700047 +285.812102 +285.928119 +286.402744 +286.531082 +286.679367 +286.705707 +286.707172 +286.851661 +286.970242 +287.112300 +287.229816 +287.306206 +287.383962 +287.478733 +287.585293 +287.628783 +287.681397 +287.792819 +287.890355 +287.997015 +288.061117 +288.117094 +288.150428 +288.178799 +288.243668 +288.358986 +288.465213 +288.523987 +288.590121 +288.653291 +288.805738 +288.951692 +289.078765 +289.252724 +289.347896 +289.413463 +289.527782 +289.667642 +289.752124 +289.808768 +289.842034 +289.901508 +290.005937 +290.035940 +290.079463 +290.127748 +290.220622 +290.285923 +290.460615 +290.599010 +290.694082 +290.728214 +290.729280 +290.782693 +290.847062 +290.895014 +291.074834 +291.158184 +291.446229 +291.580328 +291.785722 +291.919855 +292.007733 +292.071103 +292.165342 +292.175199 +292.249125 +292.302238 +292.462511 +292.545628 +292.678229 +292.724849 +292.809997 +292.974599 +293.039567 +293.321352 +293.395045 +293.603902 +293.671002 +293.701338 +293.899273 +293.943895 +294.154384 +294.271334 +294.386652 +294.464241 +294.630808 +294.649655 +294.766538 +294.811493 +294.916855 +294.989349 +295.251952 +295.333038 +295.443994 +295.552219 +295.624513 +295.692578 +295.734336 +295.777293 +295.860044 +295.955581 +296.072997 +296.143760 +296.236467 +296.315221 +296.514455 +296.789880 +296.915188 +297.033769 +297.129140 +297.223412 +297.295207 +297.387948 +297.449852 +297.474328 +297.588347 +297.667201 +297.757644 +297.866435 +298.055846 +298.215952 +298.317883 +298.416685 +298.484583 +298.572795 +298.693441 +298.813820 +298.927473 +299.010124 +299.082718 +299.152814 +299.250483 +299.310057 +299.391775 +299.554346 +299.717682 +299.804062 +299.903330 +300.007525 +300.100999 +300.217981 +300.328604 +300.405127 +300.483882 +300.497169 +300.548517 +300.570828 +300.588011 +300.624907 +300.721311 +300.770428 +300.916582 +300.997601 +301.105526 +301.172226 +301.260971 +301.346352 +301.423575 +301.499465 +301.565699 +301.626438 +301.882049 +302.003627 +302.126771 +302.254043 +302.298732 +302.532132 +302.676354 +302.826970 +303.069694 +303.189041 +303.223739 +303.299197 +303.372324 +303.491671 +303.546217 +303.633762 +303.750445 +303.850246 +303.980215 +304.077551 +304.196066 +304.293635 +304.416179 +304.452809 +304.553808 +304.595866 +304.640355 +304.788406 +304.823605 +304.975020 +305.081946 +305.324736 +305.423804 +305.526934 +305.718009 +305.782711 +305.848079 +305.921739 +306.054373 +306.079015 +306.153207 +306.234992 +306.385075 +306.497129 +306.586773 +306.696996 +306.846280 +306.889403 +306.968657 +307.157135 +307.268790 +307.472386 +307.597395 +307.694864 +307.823735 +307.908517 +307.966658 +308.237354 +308.330794 +308.462196 +308.692032 +308.820737 +308.946145 +309.052871 +309.129394 +309.252138 +309.375215 +309.422801 +309.547376 +309.631092 +309.727762 +309.849607 +310.022234 +310.118871 +310.189633 +310.265324 +310.349040 +310.473149 +310.564724 +310.803718 +310.956199 +311.078577 +311.157831 +311.266022 +311.364224 +311.434720 +311.591863 +311.881273 +311.966255 +312.060460 +312.124896 +312.250137 +312.327160 +312.552335 +312.791096 +312.865421 +313.148971 +313.181971 +313.502750 +313.614139 +313.716669 +313.772913 +313.905613 +314.118500 +314.399719 +314.495157 +314.550002 +314.593991 +314.680538 +314.818333 +315.051933 +315.111240 +315.338246 +315.437880 +315.568615 +315.687829 +315.860257 +315.997686 +316.104479 +316.124825 +316.167316 +316.332517 +316.475341 +316.726723 +316.885730 +316.954029 +317.069380 +317.153296 +317.231717 +317.285330 +317.346103 +317.545870 +317.607641 +317.776206 +318.111970 +318.276771 +318.668013 +318.829984 +318.871243 +319.069278 +319.251662 +319.518928 +319.626154 +319.712934 +319.860886 +319.986593 +320.180199 +320.291987 +320.351861 +320.446366 +320.511235 +320.588324 +320.686626 +320.787258 +320.905873 +321.060185 +321.197048 +321.323521 +321.415429 +321.546598 +321.775136 +321.971373 +322.161083 +322.242868 +322.374636 +322.516894 +322.639171 +322.742934 +322.994349 +323.153123 +323.333143 +323.640469 +323.738837 +323.865743 +323.930978 +323.948094 +324.223585 +324.267541 +324.345363 +324.402340 +324.496545 +324.843598 +324.902672 +325.047694 +325.086821 +325.152988 +325.319488 +325.474899 +325.525482 +325.552988 +325.632608 +325.683657 +325.769205 +325.889318 +325.957150 +326.074233 +326.145694 +326.227080 +326.419820 +326.618987 +326.750622 +326.815790 +326.867505 +326.873699 +326.909463 +327.041231 +327.357948 +327.498307 +327.811993 +327.928443 +328.082822 +328.177294 +328.302236 +328.540464 +328.674696 +328.779292 +328.853750 +328.952252 +329.054283 +329.133104 +329.490946 +329.768002 +329.842794 +330.136200 +330.260575 +330.321814 +330.431138 +330.582953 +330.703932 +330.957911 +331.049486 +331.139529 +331.219615 +331.305563 +331.460208 +331.581453 +331.698802 +331.745089 +331.771829 +331.964969 +332.119615 +332.518016 +332.853247 +332.934366 +333.026673 +333.127139 +333.178122 +333.438827 +333.618248 +334.045154 +334.131967 +334.298733 +334.413452 +334.472093 +334.592706 +334.730568 +334.848250 +335.079818 +335.290973 +335.481882 +335.804659 +336.042454 +336.157206 +336.218911 +336.248681 +336.324439 +336.380916 +336.505891 +336.572424 +336.622407 +336.680749 +336.795201 +337.023939 +337.066096 +337.492203 +337.539656 +337.880381 +338.061667 +338.455439 +338.536891 +338.816444 +339.065928 +339.096930 +339.151243 +339.221306 +339.450843 +339.535092 +339.668758 +339.757203 +339.857968 +339.983842 +340.013446 +340.025268 +340.076283 +340.147612 +340.208185 +340.272720 +340.283676 +340.333759 +340.376083 +340.443416 +340.564561 +340.678347 +340.741417 +340.874185 +340.941883 +341.168057 +341.266459 +341.413378 +341.472352 +341.591200 +341.642882 +341.682875 +341.799758 +341.861430 +341.978712 +342.047344 +342.095828 +342.176048 +342.241982 +342.326697 +342.383973 +342.532092 +342.542748 +342.652038 +342.806350 +342.949707 +343.023966 +343.090466 +343.114342 +343.127795 +343.220836 +343.270419 +343.325398 +343.349773 +343.616506 +343.676246 +343.811777 +343.931524 +344.073948 +344.106316 +344.142946 +344.252936 +344.360128 +344.426995 +344.582073 +344.641280 +344.768819 +344.834787 +344.872516 +345.125429 +345.251503 +345.355099 +345.674979 +345.775045 +346.076111 +346.130689 +346.159727 +346.217869 +346.274279 +346.412840 +346.511641 +346.540945 +346.550802 +346.561958 +346.598221 +346.646173 +346.670882 +346.753100 +346.865454 +346.928657 +347.000452 +347.093725 +347.270149 +347.347505 +347.410542 +347.519433 +347.582936 +347.629556 +347.694258 +347.703049 +347.824627 +347.858194 +347.887997 +348.161523 +348.261556 +348.540344 +348.653031 +348.763987 +348.827523 +348.886964 +349.012272 +349.079338 +349.146238 +349.317266 +349.418498 +349.470513 +349.538312 +349.599517 +349.863553 +350.043106 +350.134182 +350.223692 +350.410472 +350.483266 +350.578937 +350.678770 +350.826256 +350.913535 +351.271577 +351.355593 +351.463052 +351.529285 +351.715632 +351.829951 +351.974906 +352.257523 +352.317496 +352.395285 +352.478402 +352.518961 +352.645868 +352.703044 +352.870077 +353.098848 +353.182464 +353.311701 +353.337742 +353.457156 +353.521824 +353.546733 +353.615031 +353.720525 +353.762350 +353.796916 +353.932080 +354.028550 +354.278567 +354.337974 +354.514864 +354.684993 +354.780764 +354.875902 +354.953991 +355.100910 +355.158952 +355.384293 +355.517793 +355.690087 +355.755522 +355.815861 +355.855322 +355.896614 +356.090053 +356.160916 +356.265145 +356.317492 +356.404672 +356.580796 +356.596680 +356.646330 +356.797545 +356.884358 +356.965610 +357.042766 +357.215627 +357.278897 +357.370605 +357.465710 +357.519689 +357.614594 +357.712030 +357.835406 +357.895013 +358.084024 +358.138969 +358.191816 +358.249991 +358.306901 +358.417857 +358.477464 +358.525749 +358.586288 +358.687021 +358.728546 +358.815925 +358.860813 +358.917257 +359.047526 +359.071469 +359.097610 +359.290616 +359.348259 +359.405801 +359.518155 +359.635504 +359.717056 +359.783323 +359.878228 +360.113992 +360.141232 +360.177362 +360.234139 +360.415890 +360.497042 +360.579193 +360.651687 +360.731241 +360.839266 +360.895443 +360.965673 +361.044960 +361.116922 +361.193412 +361.257115 +361.617887 +361.828576 +361.902968 +361.993611 +362.287250 +362.345392 +362.453950 +362.584020 +362.696740 +362.743393 +362.830440 +363.014722 +363.183986 +363.272164 +363.358944 +363.442227 +363.497572 +363.623379 +363.684818 +363.769899 +364.168833 +364.224644 +364.337731 +364.407494 +364.688446 +364.760508 +364.827041 +365.402332 +365.451516 +365.484683 +365.520680 +365.631103 +365.930004 +365.998235 +366.150017 +366.227905 +366.291375 +366.387579 +366.463037 +366.752614 +367.082483 +367.345953 +367.437595 +367.509756 +367.845353 +368.017481 +368.145353 +368.231300 +368.621909 +368.745818 +368.890640 +369.048482 +369.140290 +369.223074 +369.280816 +369.400297 +369.498465 +369.614482 +369.704059 +369.801262 +369.883446 +369.986410 +370.188041 +370.268794 +370.460902 +370.570425 +370.957271 +371.178983 +371.338856 +371.433361 +371.549245 +371.653108 +371.762232 +371.959035 +372.077350 +372.208619 +372.254373 +372.793034 +373.508085 +373.792933 +374.015743 +374.079080 +374.660498 +374.923002 +375.122768 +375.281909 +375.403221 +375.462229 +375.570753 +375.619738 +375.784706 +375.988935 +376.085272 +376.349374 +376.467922 +376.508115 +376.561928 +376.721934 +377.095460 +377.261294 +377.414441 +377.656898 +377.865523 +377.978543 +378.113441 +378.473181 +378.626428 +379.253600 +379.303783 +379.424496 +379.891428 +380.098421 +380.535350 +380.668517 +380.795956 +381.025593 +381.513937 +381.599951 +381.706245 +382.124893 +382.269315 +382.441542 +382.627822 +382.755195 +382.884599 +383.117233 +383.612737 +383.791724 +384.246968 +384.391823 +384.589858 +385.599248 +385.721326 +385.935045 +386.145634 +386.693819 +387.633245 +387.743535 +387.952459 +389.078499 +392.117224 +392.280094 +392.344929 +392.676064 +393.000406 +393.064842 +393.703169 +393.835171 +394.037968 +394.128843 +394.244161 +394.342629 +394.558147 +395.021583 +395.119785 +396.212757 +396.941062 +397.039630 +397.309826 +397.467368 +397.746022 +398.239229 +398.625276 +398.640727 +398.873294 +399.293573 +399.650616 +399.743756 +399.991208 +400.315917 +400.471061 +400.652546 +400.859806 +401.055243 +401.528336 +401.791207 +401.915349 +401.975655 +402.336161 +402.658505 +402.826970 +403.043653 +403.384978 +403.588308 +403.679650 +404.037425 +404.265230 +404.434894 +404.729332 +404.907321 +405.157870 +405.383677 +405.429898 +405.584043 +405.929331 +406.037889 +406.437522 +407.000425 +407.724434 +407.888270 +408.195929 +409.273783 +409.533989 +409.677612 +409.977246 +410.199823 +410.334854 +410.466523 +410.601854 +410.788800 +410.911810 +411.505516 +411.694094 +411.905848 +412.064423 +412.250870 +412.376311 +412.937449 +413.028425 +413.151435 +413.295591 +413.378841 +413.697721 +413.888764 +414.147271 +414.556662 +414.772213 +415.135349 +415.260124 +415.274943 +415.362455 +415.826457 +415.902215 +416.048069 +416.145471 +416.513669 +416.565551 +416.744871 +417.090159 +417.163419 +417.398284 +417.497551 +417.709139 +417.965916 +418.039176 +418.128420 +418.503977 +418.646501 +418.950330 +419.221026 +419.424522 +419.738075 +419.878468 +420.007805 +420.041904 +420.310735 +420.697714 +420.992386 +421.000545 +421.118959 +421.312133 +421.480431 +421.660084 +421.819225 +422.056188 +422.249062 +423.724851 +423.873935 +424.163312 +424.307268 +424.602672 +424.766042 +424.862113 +425.037937 +425.432941 +425.889418 +426.000606 +426.091582 +426.268804 +426.432008 +426.551222 +426.864808 +427.499439 +427.555550 +427.881523 +428.097241 +428.226578 +428.465705 +428.503634 +428.628276 +429.061009 +429.141928 +429.186384 +429.241729 +429.639430 +429.654549 +429.754915 +429.975960 +430.042294 +430.334368 +430.549819 +430.747987 +430.961440 +431.560707 +431.670764 +431.944090 +432.038629 +432.209924 +432.497170 +432.658775 +433.180353 +433.308491 +433.960039 +434.026139 +434.128803 +434.256775 +434.373825 +434.757940 +434.894970 +435.039691 +435.068363 +435.217880 +435.736927 +435.955508 +435.961502 +436.257139 +437.142520 +437.149446 +437.476719 +437.549246 +437.632196 +437.796898 +438.009818 +438.129931 +438.285010 +438.494966 +438.760833 +438.876384 +438.940021 +439.228831 +440.326699 +440.416776 +440.510615 +440.725733 +440.824468 +440.946112 +441.189502 +441.413678 +441.418073 +441.551473 +441.718206 +441.812778 +441.882409 +441.917307 +442.727030 +442.782208 +442.827596 +442.942348 +442.998325 +443.113010 +443.356533 +443.614908 +443.712177 +444.674847 +444.762992 +444.894394 +444.927793 +445.206381 +445.313840 +445.379441 +446.116370 +446.227526 +446.341378 +446.470416 +446.644275 +448.080438 +448.837846 +448.940110 +449.657725 +449.859124 +450.139976 +450.285231 +450.424991 +451.338743 +451.488759 +451.582465 +451.669578 +451.772342 +452.889257 +453.073073 +453.196750 +454.287724 +454.358387 +454.439372 +454.642369 +455.592685 +455.749927 +455.847829 +456.067576 +456.220057 +456.330779 +457.529413 +457.631077 +457.701940 +457.738870 +457.920188 +458.752821 +458.863344 +459.643829 +460.257482 +460.380525 +460.708663 +461.479292 +461.633538 +461.806065 +462.041496 +462.552484 +462.646524 +462.717253 +462.847256 +462.965038 +463.035334 +463.142794 +463.838897 +463.859143 +463.935001 +464.028773 +464.093275 +464.194507 +464.346855 +464.473395 +464.831703 +465.215885 +465.284516 +465.378422 +465.510024 +465.600866 +465.694306 +465.787546 +465.908325 +466.748085 +467.087778 +468.105692 +468.125406 +468.365066 +468.462901 +468.674456 +469.152811 +469.491572 +469.602527 +469.727469 +469.842853 +470.582280 +470.639756 +470.861334 +471.038623 +471.183445 +471.401427 +472.588205 +472.627300 +472.719008 +472.762364 +474.145813 +474.340684 +474.408683 +474.467824 +474.522736 +474.573252 +474.622969 +474.698826 +474.850408 +475.810380 +475.836221 +476.233290 +477.246010 +477.443512 +477.518170 +477.564691 +477.630325 +477.639416 +478.371217 +478.472848 +478.528792 +478.622598 +479.542744 +479.660826 +479.755464 +479.828824 +479.874945 +480.203782 +480.316936 +480.446273 +480.678474 +480.867884 +480.901517 +480.981004 +481.157694 +481.166851 +481.309142 +482.130653 +482.135249 +482.140876 +482.240910 +482.346071 +482.613836 +483.423826 +483.502613 +483.601648 +483.679470 +483.785730 +483.911238 +484.733248 +484.790657 +484.923824 +485.102911 +485.211836 +485.302145 +485.400980 +485.462751 +485.534646 +486.063783 +486.095618 +486.193853 +486.251162 +486.348498 +486.456889 +486.619560 +487.091521 +487.115364 +487.133679 +487.223422 +487.290222 +487.333379 +487.371840 +487.422057 +487.556589 +487.653691 +487.687125 +487.752426 +487.862782 +488.047464 +488.215196 +488.388323 +488.622122 +488.647497 +488.678066 +488.735009 +488.802242 +488.841802 +488.895215 +488.983194 +489.230646 +489.364812 +489.881395 +490.053556 +490.159483 +490.712596 +491.009832 +491.050691 +491.056385 +491.076598 +491.192116 +491.203804 +491.256918 +491.340801 +491.422352 +491.511097 +491.595079 +492.132841 +492.321586 +492.379627 +492.402271 +492.502771 +492.622118 +492.702704 +492.768039 +492.842431 +493.575597 +493.598807 +493.658381 +493.785886 +493.938001 +494.046725 +494.262243 +494.421983 +494.476162 +494.531374 +494.643028 +494.752419 +494.967870 +495.154250 +495.357680 +495.515988 +495.542362 +495.572565 +495.752085 +496.042561 +496.182820 +496.461874 +496.609593 +496.725477 +496.754382 +496.788980 +496.908960 +496.993476 +497.024578 +497.061241 +497.227342 +497.276026 +497.426675 +497.902266 +497.983252 +498.049618 +498.100168 +498.227307 +498.408659 +498.804929 +499.009691 +499.140626 +499.254979 +499.291609 +499.309790 +499.367699 +499.374559 +499.721845 +499.863569 +500.008624 +500.225773 +500.459972 +500.506992 +500.575390 +500.632267 +500.776456 +500.904194 +501.018480 +501.159805 +501.310654 +501.509588 +501.920977 +501.943554 +501.982215 +502.001396 +502.052745 +502.172525 +502.306690 +502.452145 +502.643953 +502.794336 +502.945251 +503.275720 +503.631831 +503.667928 +503.774921 +504.163199 +504.240888 +504.535426 +504.898063 +505.211050 +505.294466 +505.441952 +505.625835 +505.896364 +506.013114 +506.121106 +506.177949 +506.222571 +506.288305 +506.423370 +506.630529 +506.724335 +506.912813 +506.969789 +507.086040 +507.189703 +507.404587 +507.569789 +507.688803 +507.756036 +508.027031 +508.257434 +508.558033 +508.662895 +508.797060 +508.936621 +509.270020 +509.615674 +509.670919 +509.822167 +509.839417 +509.955867 +510.186136 +510.556765 +510.723532 +510.826362 +511.045576 +511.258297 +511.401653 +512.275212 +512.385135 +512.434686 +512.787865 +513.875477 +513.939213 +514.039679 +514.214804 +514.430421 +514.825992 +515.028023 +515.204280 +515.324759 +515.482402 +515.628922 +515.787296 +516.042940 +516.220929 +516.463919 +516.530519 +516.788994 +516.920229 +517.000149 +517.077871 +517.135014 +517.284697 +517.616832 +517.720728 +518.134347 +518.415665 +518.538909 +518.634080 +519.052361 +519.517929 +519.646533 +519.745301 +520.039507 +520.140206 +520.259520 +520.359986 +520.428251 +520.641337 +520.803175 +520.873938 +520.954890 +521.152259 +521.292219 +521.461883 +521.678000 +521.770241 +521.949828 +522.024886 +522.096714 +522.208569 +522.290154 +522.493317 +522.590053 +522.714262 +522.984192 +523.120323 +523.145198 +523.177932 +523.399643 +523.858284 +523.989553 +524.144264 +524.182826 +524.258117 +524.367175 +524.735839 +524.953887 +525.256751 +525.461945 +525.534373 +525.662744 +525.697843 +525.733740 +525.827546 +526.012361 +526.336703 +526.600972 +526.636603 +526.679260 +526.774198 +526.989483 +527.497042 +527.719486 +527.795143 +527.829242 +527.912859 +527.949955 +527.954184 +528.018786 +528.139998 +528.342828 +528.435968 +528.541429 +528.776894 +528.889714 +528.959711 +529.065904 +529.136567 +529.260643 +529.378924 +529.467602 +529.544825 +529.612757 +529.719117 +529.792044 +530.009060 +530.198471 +530.517252 +530.667934 +530.761740 +530.817118 +530.879755 +530.950252 +531.118583 +531.277258 +531.368100 +531.666102 +531.793907 +532.130337 +532.166767 +532.224310 +532.283251 +532.324276 +532.560640 +532.620413 +532.755345 +532.969364 +533.129370 +533.245920 +533.356177 +533.437062 +533.473459 +533.513785 +533.571095 +533.719912 +533.783416 +533.848950 +534.001730 +534.366332 +534.500265 +534.600031 +534.778053 +534.902828 +534.932066 +534.939492 +535.043288 +535.148050 +535.220777 +535.300397 +535.608289 +536.104192 +536.231765 +536.291505 +536.381948 +536.463033 +536.467595 +536.563066 +536.641122 +536.770958 +536.909153 +537.017012 +537.179350 +537.402160 +537.549812 +537.785210 +537.989938 +538.041253 +538.096165 +538.158802 +538.194733 +538.257937 +538.379648 +538.481946 +538.566295 +538.668592 +538.775285 +539.097030 +539.231562 +539.340453 +539.530230 +539.579147 +539.840186 +539.840586 +540.206220 +540.248810 +540.316243 +540.364528 +540.519007 +540.607851 +540.765626 +540.862030 +540.996295 +541.217474 +541.321736 +541.440984 +541.519805 +541.598759 +541.660331 +541.726198 +541.734690 +541.768323 +541.960930 +542.097027 +542.169155 +542.468355 +542.630593 +542.934822 +543.024199 +543.068188 +543.089667 +543.145045 +543.230226 +543.326263 +543.557898 +543.646210 +543.764258 +543.867388 +543.997325 +544.159762 +544.429392 +544.489199 +544.493561 +544.532023 +544.588566 +544.667387 +544.704084 +544.781740 +544.877444 +544.943644 +545.031689 +545.168652 +545.292495 +545.625528 +545.743477 +545.797789 +545.801818 +545.824629 +545.903916 +545.943477 +545.954099 +546.071981 +546.151768 +546.241911 +546.356863 +546.437182 +546.540113 +546.721365 +546.775943 +546.862157 +547.136849 +547.336582 +547.427458 +547.484634 +547.557195 +547.628923 +547.746938 +547.965952 +548.048902 +548.241876 +548.347004 +548.429854 +548.539978 +548.697353 +548.794023 +548.863021 +548.969947 +549.016234 +549.233683 +549.315734 +549.357293 +549.465218 +549.599983 +549.720163 +549.803413 +550.035148 +550.166216 +550.289992 +550.410971 +550.490458 +550.570012 +550.663519 +550.728787 +550.896019 +551.036445 +551.115699 +551.224857 +551.328853 +551.435080 +551.755992 +552.040973 +552.268945 +552.358588 +552.361386 +552.382798 +552.449697 +552.497316 +552.591189 +552.653860 +552.737043 +552.868978 +552.991555 +553.108538 +553.188957 +553.261818 +553.386193 +553.595484 +553.732014 +553.841637 +553.905773 +553.924987 +553.950628 +554.038174 +554.102077 +554.169409 +554.276069 +554.393218 +554.534111 +554.636741 +554.716362 +554.819791 +555.127317 +555.241503 +555.341436 +555.377333 +555.401243 +555.476201 +555.651459 +555.733310 +555.854256 +555.957619 +556.372604 +556.488121 +556.626217 +556.831178 +556.964478 +556.990186 +557.109666 +557.115826 +557.161114 +557.309366 +557.504737 +557.616725 +557.805536 +558.187587 +558.375599 +558.398076 +558.426015 +558.499708 +558.549192 +558.604803 +558.645096 +558.918988 +559.091549 +559.172734 +559.324982 +559.641398 +559.742397 +559.765341 +559.791581 +559.816723 +559.940133 +560.001971 +560.074498 +560.516056 +560.653285 +560.766672 +560.872233 +561.104434 +561.159778 +561.211060 +561.302569 +561.431839 +561.743694 +561.815855 +561.888749 +561.954217 +562.127510 +562.305565 +562.468968 +562.594709 +562.722914 +562.851751 +562.972131 +563.048854 +563.122048 +563.163340 +563.456479 +563.602134 +563.725144 +563.919749 +564.019249 +564.057811 +564.133968 +564.195839 +564.343625 +564.393242 +564.836598 +565.003731 +565.084017 +565.135732 +565.269731 +565.364636 +565.448352 +565.516850 +565.642658 +565.742425 +565.875225 +566.163836 +566.226174 +566.440126 +566.543223 +566.662104 +566.861837 +567.053645 +567.552712 +567.603795 +567.770095 +568.031966 +568.150780 +568.293804 +568.414983 +568.562768 +568.710587 +568.969561 +569.104359 +569.219111 +569.348149 +569.467629 +569.675587 +569.783546 +569.886976 +570.015381 +570.174788 +570.319243 +570.630898 +570.700228 +570.809419 +570.882613 +570.955240 +571.025403 +571.356838 +571.464697 +571.579515 +571.820341 +572.149678 +572.465894 +572.635658 +572.690103 +573.025234 +573.194365 +573.246913 +573.264462 +573.291967 +573.344115 +573.345913 +573.495564 +573.659932 +573.732560 +574.231494 +574.560165 +574.696228 +574.860131 +575.022302 +575.401123 +575.512478 +575.601689 +575.825465 +575.896527 +575.958465 +576.027363 +576.328894 +576.674415 +576.862560 +577.088700 +577.279076 +577.389299 +577.433155 +577.488766 +577.609579 +577.720035 +577.776412 +577.801720 +578.013808 +578.127194 +578.232189 +578.361260 +578.475978 +578.654666 +578.904816 +579.137549 +579.206281 +579.279640 +579.439647 +579.569417 +579.881538 +580.389263 +580.428457 +580.451667 +580.543908 +580.624061 +580.712273 +580.762922 +580.819166 +580.959659 +581.155396 +581.244740 +581.352565 +581.624427 +581.680537 +581.722562 +581.775409 +581.786498 +581.823328 +581.872378 +582.029788 +582.215901 +582.378305 +582.497553 +582.591325 +582.647336 +582.677106 +582.722328 +582.763287 +582.944472 +583.016666 +583.149367 +583.255794 +583.382334 +583.474941 +583.614535 +583.809506 +583.972776 +584.022493 +584.062653 +584.100348 +584.243805 +584.301680 +584.415033 +584.482799 +584.588626 +584.690391 +584.796352 +584.916964 +585.002146 +585.130517 +585.288526 +585.436644 +585.528718 +585.599847 +585.624589 +585.726187 +585.920693 +586.177169 +586.255624 +586.345334 +586.483496 +586.582297 +586.665980 +586.734711 +586.825087 +586.881964 +586.946832 +587.020092 +587.110935 +587.344468 +587.464581 +587.634144 +587.738040 +587.865180 +587.980165 +588.213631 +588.221656 +588.272539 +588.285859 +588.477100 +588.576235 +588.720124 +588.874802 +588.940537 +589.112464 +589.227116 +589.313230 +589.739337 +589.992717 +590.403505 +590.530678 +590.632110 +590.741334 +590.857051 +590.888187 +591.026782 +591.153954 +591.432875 +591.573201 +591.646095 +591.841932 +591.911329 +592.089052 +592.282858 +592.364476 +592.423583 +592.485188 +592.574965 +592.719487 +592.764775 +592.954818 +593.090249 +593.246959 +593.525480 +593.653153 +594.007731 +594.056582 +594.098973 +594.293412 +594.406931 +594.509862 +594.638033 +594.743395 +594.950221 +595.045459 +595.118020 +595.230374 +595.417953 +595.451386 +595.634869 +595.745591 +595.811858 +595.939564 +596.023213 +596.165671 +596.351585 +596.510692 +596.662540 +596.903199 +596.956113 +597.032736 +597.102500 +597.165637 +597.225443 +597.306163 +597.540628 +597.707394 +597.800934 +597.858943 +597.969465 +598.072063 +598.296072 +598.416052 +598.563571 +598.630071 +598.690710 +598.736930 +598.780587 +598.878589 +599.026341 +599.142424 +599.292308 +599.490443 +599.681085 +599.749583 +599.876123 +600.040159 +600.098701 +600.256376 +600.424108 +600.464668 +600.541757 +600.644854 +600.737228 +600.883881 +600.984880 +601.161204 +601.246785 +601.394970 +601.643188 +601.818512 +601.947483 +602.045618 +602.215815 +602.295202 +602.338192 +602.367097 +602.500696 +602.611385 +602.847349 +602.971591 +603.102261 +603.319243 +603.421608 +603.687508 +603.777518 +603.898297 +603.929965 +603.987841 +604.119109 +604.182313 +604.262100 +604.331430 +604.440654 +604.533595 +604.587907 +604.714980 +604.830664 +604.924403 +604.966162 +605.022838 +605.130497 +605.204956 +605.286241 +605.349178 +605.413580 +605.501526 +605.687040 +605.791535 +605.946280 +606.117676 +606.204056 +606.325268 +606.388538 +606.478414 +606.545481 +606.609383 +606.679313 +606.787405 +606.852207 +606.968124 +607.033858 +607.136855 +607.194298 +607.266159 +607.394431 +607.494298 +607.628397 +607.841017 +607.927331 +607.979112 +608.013411 +608.035090 +608.087404 +608.297161 +608.552139 +608.772951 +608.862095 +609.400423 +609.985337 +610.095793 +610.206050 +610.294828 +610.401587 +610.517438 +610.550638 +611.203784 +611.581007 +611.684570 +611.750204 +611.916138 +612.013940 +612.068086 +612.149671 +612.226993 +612.294759 +612.511475 +612.591961 +612.701185 +612.868218 +613.019667 +613.121665 +613.203316 +613.333153 +613.361558 +613.411141 +613.453033 +613.688231 +613.744708 +613.804781 +614.148603 +614.372646 +614.487364 +614.806911 +615.019465 +615.184733 +615.230254 +615.240943 +615.261523 +615.307410 +615.375109 +615.436814 +615.595522 +615.701016 +615.769581 +615.921828 +616.037080 +616.235348 +616.398518 +616.524425 +616.615567 +616.676373 +616.787395 +616.873009 +617.022959 +617.106076 +617.253329 +617.334481 +617.473175 +617.530585 +617.599382 +617.790524 +617.836512 +617.904410 +617.960920 +618.129385 +618.222559 +618.321826 +618.491223 +618.591356 +618.689658 +618.751296 +619.000180 +619.201312 +619.255491 +619.367679 +619.495951 +619.640839 +619.788824 +619.909803 +619.948964 +619.975770 +620.015497 +620.019493 +620.059387 +620.215730 +620.317861 +620.487458 +620.590555 +620.676302 +620.858553 +620.918760 +621.060151 +621.360284 +621.409369 +621.476601 +621.500744 +621.561050 +621.642202 +621.714030 +621.788789 +621.840837 +621.896714 +621.983427 +622.200443 +622.330946 +622.405438 +622.550093 +622.618425 +622.724652 +622.970939 +623.093749 +623.189020 +623.272437 +623.427115 +623.574235 +623.690785 +623.865310 +623.901374 +623.958750 +624.035673 +624.126915 +624.177231 +624.290318 +624.381061 +624.519655 +624.637504 +624.714360 +624.798176 +624.879928 +624.937603 +624.996911 +625.069138 +625.162945 +625.247860 +625.463810 +625.544196 +625.702504 +625.848059 +626.019853 +626.199141 +626.457149 +626.592247 +626.709763 +626.905900 +627.018754 +627.310561 +627.421617 +627.507764 +627.592180 +627.622749 +627.727244 +627.773132 +627.849089 +627.943228 +627.958946 +628.035036 +628.265472 +628.408929 +628.688349 +628.703434 +628.782455 +628.856914 +628.930573 +628.969567 +629.048821 +629.111292 +629.180157 +629.307296 +629.520649 +629.729340 +629.836000 +629.919983 +630.024278 +630.146456 +630.185950 +630.229473 +630.369666 +630.467335 +630.559742 +630.680521 +630.823612 +630.955946 +630.981920 +631.030604 +631.096938 +631.192675 +631.275393 +631.420148 +631.498969 +631.813987 +631.937297 +632.381386 +632.425675 +632.502464 +632.540360 +632.648052 +632.753446 +632.827939 +632.920812 +633.284981 +633.381584 +633.650515 +633.891940 +633.919779 +634.012053 +634.052746 +634.089576 +634.126339 +634.187245 +634.253345 +634.309123 +634.368163 +634.471993 +634.813085 +635.000764 +635.078652 +635.119611 +635.214083 +635.289874 +635.346884 +635.417313 +635.507223 +635.641955 +635.792404 +636.137959 +636.223140 +636.383346 +636.560536 +636.597832 +636.619743 +636.620476 +636.705490 +636.761568 +636.813316 +636.883179 +636.945051 +637.081914 +637.184511 +637.261834 +637.345117 +637.469859 +637.578117 +637.807987 +637.941653 +638.021273 +638.114314 +638.210750 +638.269758 +638.475785 +638.542785 +638.731829 +638.873254 +639.181712 +639.277383 +639.413713 +639.518908 +639.550276 +639.591102 +639.707652 +639.771355 +639.812447 +640.126732 +640.257335 +640.387638 +640.470488 +640.548044 +640.647311 +640.715177 +640.795297 +640.840618 +640.863695 +640.874917 +640.925033 +641.076082 +641.122369 +641.415942 +641.519771 +641.641083 +641.739152 +641.849974 +641.972551 +641.985738 +642.014976 +642.049774 +642.104919 +642.164093 +642.444512 +642.538651 +642.710246 +642.884905 +642.987868 +643.038151 +643.059730 +643.176413 +643.231225 +643.302953 +643.356733 +643.470885 +643.530991 +643.627328 +643.726296 +643.837951 +643.953802 +644.045343 +644.127061 +644.414374 +644.474680 +644.519535 +644.566855 +644.641879 +644.679442 +644.720134 +644.720534 +644.724130 +644.771650 +644.970617 +645.039148 +645.311842 +645.409711 +645.522298 +645.802618 +645.872814 +646.040579 +646.137216 +646.199054 +646.246840 +646.320899 +646.431655 +646.907245 +647.154731 +647.303349 +647.440645 +647.466685 +647.584267 +647.797487 +648.037514 +648.096821 +648.166918 +648.293191 +648.456528 +648.546304 +648.652065 +648.712804 +648.732685 +648.847969 +648.885731 +648.948968 +649.000317 +649.059790 +649.114935 +649.394089 +649.668814 +649.748901 +649.783666 +649.892191 +650.070246 +650.195620 +650.293655 +650.575840 +650.656059 +650.804810 +650.982499 +651.057091 +651.198450 +651.594387 +651.625023 +651.744936 +651.824789 +652.066048 +652.183830 +652.290024 +652.423523 +652.554659 +652.746900 +652.861052 +653.012267 +653.061984 +653.184628 +653.253026 +653.315431 +653.416196 +653.487858 +653.579167 +653.972773 +654.213265 +654.352892 +654.493585 +654.540404 +654.645599 +654.753358 +654.771340 +654.846698 +654.908136 +655.021989 +655.100710 +655.186391 +655.305072 +655.478066 +655.616128 +655.726217 +655.882594 +655.925684 +656.003773 +656.036840 +656.081595 +656.140003 +656.207469 +656.284825 +656.329813 +656.613329 +656.732044 +656.825850 +657.086422 +657.135440 +657.162213 +657.308866 +657.348593 +657.403971 +657.415293 +657.495646 +657.580828 +657.742466 +657.901840 +658.257850 +658.329245 +658.353121 +658.393514 +658.471270 +658.563044 +658.679228 +658.753887 +658.862844 +659.088951 +659.219554 +659.334106 +659.619121 +659.702004 +659.705467 +659.802803 +659.859480 +660.052687 +660.169936 +660.273765 +660.411094 +660.549256 +660.792413 +660.902369 +661.177594 +661.295676 +661.358846 +661.548323 +661.796741 +661.893011 +661.926378 +662.015688 +662.457180 +662.661608 +663.162773 +663.298704 +663.524644 +664.037831 +664.358676 +664.378057 +664.390777 +664.412489 +664.537364 +664.934633 +665.068865 +665.228972 +665.432768 +665.589411 +665.654146 +665.768931 +665.769264 +665.859141 +666.052514 +666.196736 +666.271228 +666.392008 +666.478554 +666.574558 +666.795304 +666.945320 +667.040425 +667.103029 +667.110655 +667.678486 +667.759039 +667.935762 +668.101496 +668.377587 +668.473790 +668.548982 +668.611020 +668.817746 +668.872691 +669.105025 +669.308055 +669.517679 +669.579950 +669.667029 +669.684811 +669.694302 +669.727635 +669.865764 +669.942620 +670.021941 +670.156806 +670.222440 +670.523505 +670.655606 +670.828467 +671.101793 +671.181813 +671.248413 +671.286109 +671.568925 +671.751976 +671.833860 +672.004556 +672.384176 +672.409484 +672.446414 +672.606054 +672.842784 +672.964728 +673.070855 +673.246446 +673.554538 +673.721604 +673.841784 +673.969889 +674.060864 +674.209749 +674.329762 +674.435123 +674.613445 +674.804453 +674.949508 +675.076947 +675.197227 +675.345012 +675.427663 +675.593064 +675.672484 +675.758432 +676.003486 +676.145578 +676.297492 +676.398857 +676.466789 +676.738084 +676.822167 +676.884571 +677.018903 +677.098524 +677.210045 +677.360994 +677.728393 +677.821567 +677.918603 +678.018936 +678.105216 +678.220301 +678.450837 +678.581273 +678.881173 +679.036351 +679.079074 +679.158961 +679.184269 +679.292028 +679.323563 +679.432121 +679.526293 +679.705015 +679.807712 +680.150902 +680.250635 +680.329589 +680.698886 +680.794824 +680.926459 +681.005613 +681.357660 +681.497154 +681.583667 +681.649168 +681.651466 +681.673111 +681.807077 +681.891226 +681.927390 +682.020097 +682.123094 +682.354795 +682.398585 +682.477706 +682.520197 +682.560090 +682.838578 +682.975907 +683.036247 +683.107509 +683.378504 +683.393589 +683.479003 +683.536146 +683.601115 +683.760622 +683.911570 +683.999949 +684.154894 +684.248267 +684.320994 +684.518929 +684.590557 +684.781200 +685.057324 +685.122891 +685.157357 +685.400780 +685.458555 +685.503211 +685.693287 +685.773507 +685.909437 +686.000846 +686.195384 +686.239973 +686.311268 +686.552294 +686.632014 +686.714631 +686.805507 +686.885926 +687.066179 +687.103142 +687.224221 +687.388856 +687.436808 +687.516795 +687.577867 +687.662949 +687.738240 +687.790021 +687.959618 +688.147830 +688.250028 +688.320391 +688.493917 +688.547596 +688.600510 +688.670407 +688.744399 +688.815895 +688.946331 +689.066410 +689.154223 +689.565944 +689.683293 +689.761681 +689.839137 +689.918691 +690.050126 +690.164411 +690.423852 +690.615027 +690.660648 +690.700108 +690.832509 +691.133275 +691.359349 +691.457950 +691.539868 +691.544397 +691.545962 +691.598209 +691.666341 +691.750057 +692.649124 +692.911328 +693.067139 +693.154085 +693.169303 +693.279959 +693.449923 +693.878127 +694.012859 +694.255416 +694.700437 +694.924080 +695.389514 +696.354349 +696.880455 +697.195840 +697.300102 +697.901333 +698.090511 +698.147254 +698.223411 +698.258376 +698.279521 +698.389312 +698.522811 +698.694906 +698.827773 +699.049651 +699.205994 +699.288412 +699.433233 +699.662870 +699.861371 +699.942723 +700.066499 +700.247352 +700.464368 +700.541191 +700.622443 +700.711121 +700.945952 +701.047384 +701.120245 +701.272392 +701.422109 +701.820610 +701.977953 +702.448482 +702.502294 +702.561835 +702.614149 +702.679084 +702.708255 +702.806956 +703.003526 +703.228801 +703.309586 +703.356240 +703.417945 +703.505657 +703.553043 +703.706356 +703.833862 +703.980848 +704.192969 +704.304957 +704.601160 +704.662399 +704.798063 +704.931230 +705.008785 +705.110117 +705.366694 +705.486374 +705.510650 +705.585142 +705.687240 +705.744815 +705.782344 +705.921605 +706.002857 +706.082644 +706.182344 +706.295164 +706.401891 +706.569124 +706.723169 +706.810848 +706.874818 +707.048177 +707.093998 +707.142949 +707.208683 +707.363362 +707.559332 +707.700757 +707.953371 +708.077214 +708.215376 +708.233990 +708.240018 +708.305652 +708.801622 +708.899258 +709.068622 +709.186537 +709.533656 +709.651005 +709.723000 +709.757499 +709.782640 +710.060629 +710.183839 +710.398923 +710.562593 +710.656465 +710.728560 +710.772616 +710.996458 +711.050504 +711.324597 +711.410178 +711.463391 +711.522066 +711.599055 +711.617237 +711.671749 +711.726461 +711.771749 +711.789931 +711.863357 +711.920733 +711.965755 +712.016471 +712.060493 +712.137683 +712.188332 +712.241246 +712.437483 +712.550170 +712.674745 +712.912207 +712.988931 +713.045208 +713.113040 +713.333053 +713.500918 +713.615004 +713.665453 +713.735816 +713.836516 +713.899985 +714.032852 +714.113105 +714.193791 +714.260325 +714.339645 +714.408643 +714.534217 +714.566951 +714.629555 +714.710008 +714.779638 +714.856528 +715.030820 +715.136548 +715.220963 +715.260890 +715.456527 +715.615435 +715.679537 +716.016234 +716.098818 +716.211238 +716.318531 +716.394222 +716.514735 +716.666916 +716.832550 +716.938843 +717.039576 +717.094155 +717.176439 +717.341740 +717.442573 +717.565616 +717.671876 +717.759189 +717.931417 +718.135779 +718.143504 +718.164217 +718.196052 +718.410404 +718.544769 +718.701046 +719.277869 +719.356057 +719.474938 +719.560319 +719.710835 +719.938041 +720.128218 +720.303409 +720.537907 +720.606206 +720.723555 +720.785593 +720.848230 +720.944301 +721.094184 +721.177700 +721.436841 +721.560417 +721.649328 +721.669408 +721.723354 +721.762415 +721.843667 +721.935941 +722.004106 +722.059651 +722.110733 +722.284859 +722.345065 +722.396480 +722.511698 +722.679031 +722.941801 +723.051258 +723.226383 +723.267608 +723.315261 +723.417125 +723.486389 +723.596046 +723.604338 +723.615227 +723.671571 +723.730612 +723.769872 +723.990851 +724.075633 +724.143498 +724.211430 +724.253488 +724.420554 +724.614394 +724.655819 +724.708133 +724.768006 +724.827280 +724.991017 +725.055352 +725.157483 +725.204370 +725.388818 +725.515025 +725.574532 +725.626214 +725.892647 +725.932108 +725.966540 +726.266007 +726.319254 +726.405268 +726.551588 +726.691148 +726.862543 +726.947358 +726.987818 +727.189249 +727.388716 +727.509462 +727.558047 +727.762509 +727.778560 +727.807264 +727.905066 +728.028043 +728.106898 +728.181057 +728.250987 +728.349122 +728.443827 +728.573697 +728.925312 +729.070033 +729.407362 +729.482321 +729.630073 +729.993576 +730.156413 +730.294508 +730.303565 +730.449686 +730.537298 +730.617118 +730.808893 +730.928573 +731.088979 +731.275226 +731.369632 +731.434600 +731.566734 +731.814053 +731.855845 +731.918482 +731.984449 +732.035698 +732.100966 +732.361039 +732.445155 +732.530902 +732.839560 +732.931768 +733.029670 +733.193439 +733.285447 +733.399366 +733.444621 +733.536862 +733.719812 +733.782150 +733.863202 +733.972726 +734.056675 +734.172592 +734.239326 +734.280385 +734.377887 +734.443721 +734.585646 +734.646618 +734.686678 +734.730900 +734.875489 +735.059072 +735.212685 +735.309188 +735.352778 +735.382648 +735.500696 +735.537826 +735.717712 +735.820609 +736.067995 +736.092970 +736.257439 +736.449147 +736.711151 +736.796366 +736.850945 +737.039489 +737.084411 +737.128267 +737.188773 +737.372889 +737.423671 +737.700461 +737.768626 +737.836192 +738.074387 +738.166162 +738.250977 +738.423337 +738.539754 +738.641053 +738.707853 +738.778282 +738.853007 +738.937723 +739.123004 +739.231362 +739.506020 +739.631861 +739.683509 +739.873086 +739.951774 +739.970722 +740.529229 +740.655603 +740.760731 +741.140518 +741.293464 +741.353238 +741.400124 +741.484140 +741.569355 +741.644280 +741.690034 +741.755402 +741.828096 +742.147177 +742.321669 +742.404552 +742.549540 +742.636054 +742.728828 +742.791964 +742.822600 +742.865224 +742.907382 +742.914209 +742.943080 +743.121035 +743.272483 +743.475014 +743.685770 +743.740981 +743.809579 +744.023831 +744.101753 +744.200155 +744.207448 +744.323431 +744.425429 +744.485736 +744.549572 +744.668819 +744.692229 +744.918203 +745.000054 +745.123464 +745.159528 +745.291196 +745.362824 +745.517703 +745.557196 +745.592328 +745.601519 +745.640779 +745.833187 +745.888931 +746.091961 +746.193160 +746.229956 +746.258461 +746.276876 +746.355531 +746.357728 +746.716636 +746.821264 +746.873845 +746.981171 +747.135883 +747.315869 +747.399552 +747.708343 +747.831786 +748.059492 +748.162788 +748.376508 +748.606244 +748.680537 +748.687363 +748.793091 +748.889361 +749.065418 +749.263753 +749.374309 +749.473809 +749.528488 +749.686130 +749.882600 +749.930685 +749.999283 +750.226090 +750.361820 +750.459922 +750.673142 +750.771777 +750.836412 +751.010571 +751.017531 +751.067614 +751.133182 +751.205909 +751.320860 +751.544037 +751.567946 +751.631683 +751.864849 +751.907606 +752.100380 +752.308771 +752.416330 +752.493520 +752.563516 +752.780699 +752.828984 +752.894851 +753.107072 +753.143602 +753.221658 +753.478168 +753.607971 +753.681830 +753.801844 +754.027784 +754.144900 +754.419226 +754.461583 +754.531846 +754.577567 +754.623921 +754.854856 +755.078133 +755.224786 +755.286058 +755.363147 +755.423753 +755.492784 +755.746464 +755.805904 +755.874902 +756.043533 +756.127083 +756.181861 +756.225617 +756.343300 +756.417492 +756.563046 +756.698477 +756.702507 +756.789520 +756.849027 +756.884691 +757.045930 +757.139070 +757.197012 +757.318590 +757.468207 +757.603771 +757.686788 +757.833275 +758.063311 +758.123817 +758.190717 +758.245962 +758.362778 +758.498975 +758.594946 +758.652188 +758.737869 +758.769005 +758.795911 +758.903304 +759.047726 +759.154452 +759.227512 +759.312028 +759.366240 +759.464309 +759.782257 +759.987418 +760.074964 +760.217055 +760.349689 +760.595710 +760.922915 +761.039266 +761.122049 +761.339065 +761.393811 +761.450953 +761.528609 +761.637234 +761.691379 +761.811060 +761.901336 +761.977959 +762.034669 +762.138099 +762.258345 +762.261709 +762.278125 +762.472697 +762.575694 +762.666570 +762.881921 +762.941761 +763.322014 +763.617751 +763.760275 +763.816352 +763.888780 +763.987814 +764.142925 +764.273228 +764.375792 +764.760108 +764.982818 +765.089711 +765.261306 +765.318282 +765.424642 +765.677856 +765.837696 +765.936397 +765.991808 +766.228937 +766.326406 +766.414751 +766.446653 +766.519846 +766.842656 +766.924008 +767.084048 +767.191207 +767.296902 +767.409755 +767.489742 +767.541124 +767.612819 +767.737960 +767.809322 +767.898566 +767.944653 +768.029768 +768.184180 +768.254377 +768.567163 +768.679884 +768.702595 +768.871426 +768.939624 +769.028002 +769.296900 +769.497066 +769.927269 +770.160069 +770.216945 +770.269293 +770.341421 +770.988640 +771.015679 +771.099262 +771.211849 +771.327733 +771.389971 +771.639222 +771.789604 +771.852841 +771.904889 +772.032428 +772.159035 +772.237190 +772.321805 +772.527799 +772.610982 +772.739121 +772.810349 +772.937122 +773.147445 +773.212180 +773.327831 +773.373319 +773.396662 +773.551408 +773.699093 +773.765926 +773.819306 +773.883875 +774.123135 +774.194131 +774.251673 +774.304687 +774.528729 +774.712412 +774.892865 +775.170853 +775.214876 +775.488036 +775.793730 +775.905385 +776.092064 +776.306683 +776.346610 +776.488434 +776.567555 +776.618304 +776.837918 +777.017105 +777.238683 +777.462426 +777.694527 +778.012409 +778.252668 +778.383870 +778.385968 +778.473514 +779.576510 +780.298187 +781.613804 +781.738945 +781.987729 +782.378072 +782.772644 +783.925923 +784.923824 +785.244303 +786.680599 +787.073106 +787.823754 +787.944334 +788.283894 +788.467110 +788.996647 +789.325185 +789.498678 +789.663180 +790.114461 +790.368274 +790.432143 +790.585956 +790.779296 +791.503937 +791.630810 +791.730477 +791.879927 +792.556051 +792.594778 +792.760513 +792.936836 +793.084755 +793.250422 +793.723715 +793.902569 +794.059146 +794.403701 +794.595609 +794.694810 +794.844560 +794.923547 +795.075295 +795.382155 +795.424113 +795.540430 +795.649088 +795.811059 +795.956813 +796.578557 +797.435666 +797.575426 +798.193441 +798.317683 +798.633534 +798.665468 +798.742658 +798.837396 +798.868665 +798.997136 +799.040560 +799.084649 +799.790875 +800.061637 +800.158141 +800.193239 +800.548084 +802.189441 +802.192238 +802.247816 +802.385977 +802.520876 +802.745784 +802.751412 +802.805358 +802.972091 +803.159936 +803.669060 +803.773755 +803.986542 +804.344717 +804.442419 +804.556971 +804.614880 +805.229897 +806.120040 +806.430895 +806.877881 +807.656735 +807.729928 +807.896228 +808.353670 +809.071985 +809.720469 +810.037052 +810.414274 +810.559629 +810.815939 +810.977777 +811.185336 +811.304450 +811.408979 +811.778376 +811.853500 +812.188965 +812.657995 +814.744773 +814.918000 +815.082968 +815.834482 +815.839377 +815.921129 +816.067915 +816.306043 +816.443040 +816.923326 +817.204611 +817.334947 +817.403345 +817.541407 +817.789758 +817.828020 +817.892655 +818.058722 +818.158156 +818.237310 +818.254493 +818.332382 +818.628885 +818.956857 +819.000546 +819.089923 +819.780998 +819.830615 +819.908005 +820.092487 +820.161018 +820.246599 +820.346233 +820.499246 +820.606106 +820.699679 +821.037374 +821.057354 +821.464180 +821.535276 +821.589421 +821.775935 +821.908036 +822.020989 +822.162981 +822.277399 +822.317692 +823.808866 +824.122686 +824.562246 +824.825083 +825.859847 +825.957316 +825.989883 +826.194012 +826.322117 +826.568437 +826.902703 +827.351986 +827.438233 +827.643661 +827.779292 +828.292711 +828.849987 +828.968868 +829.021815 +829.060942 +829.190646 +829.407096 +829.517619 +829.605431 +829.785051 +830.563838 +830.629039 +830.788780 +830.898070 +831.920147 +832.089611 +832.165435 +832.340260 +832.530303 +832.630070 +832.825541 +833.589343 +833.710422 +834.014151 +834.345919 +835.332798 +835.363633 +835.477586 +835.754242 +835.948348 +836.202760 +836.231798 +836.427935 +836.504025 +836.827834 +836.946249 +837.870990 +837.978349 +838.093567 +838.097230 +838.128066 +838.840686 +838.923304 +839.013080 +839.060266 +839.467625 +839.655904 +840.071554 +840.185041 +840.402789 +840.446312 +840.691833 +841.933024 +842.698025 +842.976380 +843.019537 +843.044012 +843.694095 +843.777378 +843.909446 +843.949506 +844.302719 +844.398223 +844.559462 +844.614873 +844.799188 +846.083902 +846.350935 +846.987931 +847.055663 +847.541510 +847.761823 +847.830654 +848.380071 +848.911039 +849.136081 +851.893920 +852.093487 +852.553660 +852.754026 +852.859487 +852.995850 +853.009770 +853.117861 +853.608370 +854.723088 +855.140637 +855.201276 +855.258452 +855.342202 +855.456987 +855.579897 +855.692351 +855.751725 +855.759850 +856.230379 +856.422920 +856.634874 +856.764078 +856.785457 +857.040468 +857.764210 +857.853321 +857.957084 +858.109631 +858.190817 +858.345196 +858.464543 +858.505269 +858.676730 +859.601238 +859.784755 +859.787552 +859.950622 +860.072000 +860.162710 +860.194678 +860.536003 +861.687084 +861.804633 +861.961342 +862.126544 +862.890612 +863.041328 +863.163139 +863.285883 +863.426343 +863.564205 +863.640528 +864.571163 +864.713354 +864.835798 +864.900833 +865.055312 +865.127340 +865.200800 +865.835065 +866.098867 +866.330536 +866.339693 +866.475157 +866.606293 +866.762337 +866.945054 +867.073359 +867.233232 +867.382283 +867.461670 +867.674057 +867.862669 +868.411652 +868.465066 +868.578286 +868.707290 +868.784080 +869.232597 +869.341755 +869.430433 +869.482214 +869.619410 +869.724605 +869.798231 +869.913349 +869.938990 +869.958571 +870.042553 +870.162933 +870.322839 +870.392336 +870.529999 +870.639922 +870.830631 +871.070624 +871.213947 +871.304823 +871.586374 +871.942651 +871.999161 +872.260433 +872.543217 +872.637289 +872.856370 +872.880179 +873.016177 +873.082077 +873.215710 +873.383975 +873.562263 +873.863428 +873.990801 +874.054104 +874.131394 +874.312745 +874.498493 +874.638686 +874.701656 +874.787104 +874.942115 +875.019471 +875.266457 +875.388402 +875.491332 +875.604086 +875.951005 +876.044046 +876.153070 +876.278511 +877.167654 +877.397857 +877.467721 +877.530924 +877.641014 +877.810777 +877.928593 +878.051536 +878.353634 +878.617003 +878.780140 +879.026494 +879.107612 +879.213773 +879.256796 +879.286600 +879.366387 +879.416969 +879.489197 +879.625794 +879.723596 +879.927458 +880.137415 +880.275010 +880.424860 +880.508077 +880.790128 +880.955163 +880.993691 +881.124793 +881.268150 +881.405679 +881.825958 +881.957060 +882.034416 +882.146670 +882.205844 +882.304579 +882.641608 +883.164152 +883.361854 +883.481334 +883.530751 +883.687794 +883.880401 +883.948134 +884.080668 +884.200115 +884.369012 +884.837976 +884.930384 +885.023357 +885.165582 +885.211402 +885.442271 +886.160686 +886.380299 +886.437742 +886.456057 +886.504242 +886.563582 +886.778534 +886.858121 +886.915863 +886.995616 +887.068876 +887.149296 +887.218393 +887.372040 +887.493285 +887.716495 +887.878366 +887.984127 +888.082961 +888.199911 +888.242568 +888.351726 +888.369042 +888.462881 +888.806903 +888.971938 +889.178498 +889.194982 +889.381695 +889.429780 +889.466177 +889.499077 +889.594548 +889.664212 +889.968441 +890.042999 +890.187222 +890.251224 +890.372370 +890.460615 +890.501174 +890.557717 +890.642200 +890.686422 +890.747028 +890.791650 +890.847694 +891.173967 +891.354253 +891.489918 +891.586687 +891.636538 +891.676065 +891.687320 +891.746061 +891.816724 +891.926547 +891.931842 +892.031875 +892.118122 +892.219487 +892.338135 +892.464309 +892.814925 +892.915391 +892.918921 +892.969636 +892.998674 +893.058048 +893.084621 +893.130875 +893.272733 +893.360312 +893.452919 +893.553885 +893.652586 +893.772899 +893.933671 +894.051520 +894.072599 +894.115789 +894.233405 +894.335303 +894.412259 +894.668769 +894.839798 +894.940497 +894.971533 +895.013224 +895.046191 +895.187749 +895.229408 +895.278825 +895.349754 +895.546257 +895.657513 +895.904632 +895.944325 +896.074096 +896.163173 +896.246756 +896.283752 +896.329340 +896.386483 +896.424645 +896.515987 +896.625577 +896.703066 +896.776892 +896.877791 +897.156412 +897.326608 +897.459109 +897.559109 +897.616685 +897.955512 +898.120614 +898.242125 +898.396171 +898.633966 +898.752881 +898.986247 +899.035132 +899.117283 +899.191242 +899.269730 +899.368198 +899.420912 +899.503429 +899.666133 +899.819846 +900.116083 +900.188177 +900.222443 +900.260605 +900.534464 +900.589476 +900.646885 +900.863668 +900.998400 +901.170294 +901.342189 +901.425139 +901.496401 +901.562568 +901.611553 +901.686178 +901.755042 +901.871359 +902.055408 +902.293004 +902.430599 +902.493436 +902.550280 +902.653643 +903.147448 +903.256639 +903.289306 +903.348547 +903.390239 +903.442054 +903.545783 +903.632962 +903.782846 +903.887308 +904.153941 +904.352242 +904.530098 +904.643418 +904.735992 +904.760534 +904.790670 +904.984310 +905.116011 +905.216044 +905.474686 +905.604789 +905.769490 +905.871089 +906.043017 +906.219307 +906.240952 +906.260199 +906.314445 +906.362663 +906.420539 +906.513379 +906.806186 +906.959999 +907.087105 +907.213978 +907.445613 +907.554437 +907.663128 +907.733724 +907.779079 +907.812778 +907.957201 +908.006085 +908.033191 +908.195728 +908.294363 +908.384473 +908.501023 +908.585938 +908.710580 +908.850440 +908.893330 +908.979411 +909.023966 +909.077013 +909.157566 +909.180509 +909.193596 +909.258598 +909.311778 +909.686603 +909.830492 +909.984238 +910.017238 +910.069586 +910.214841 +910.292163 +910.446009 +910.543312 +910.630791 +910.719802 +910.781906 +910.984171 +911.097657 +911.211676 +911.294726 +911.352868 +911.399921 +911.444610 +911.554500 +911.721766 +911.838216 +912.021632 +912.091296 +912.174179 +912.347972 +912.435052 +912.531755 +912.628957 +913.035883 +913.121964 +913.207645 +913.256829 +913.408177 +913.522929 +913.615603 +913.898520 +914.036349 +914.079339 +914.157894 +914.202782 +914.249535 +914.334650 +914.400451 +914.435949 +914.500251 +914.602682 +914.892825 +915.038113 +915.122861 +915.325458 +915.372311 +915.465285 +915.657426 +915.875474 +916.171811 +916.278005 +916.368614 +916.467815 +916.530419 +916.589393 +916.628987 +916.732849 +916.939076 +917.021394 +917.186662 +917.315233 +917.437411 +917.581333 +917.732116 +917.787660 +917.795552 +917.890624 +917.992855 +918.142705 +918.266048 +918.361719 +918.430117 +918.541406 +918.612601 +918.657922 +918.797516 +918.881698 +918.982831 +919.136643 +919.210603 +919.277635 +919.366280 +919.462517 +919.476869 +919.547299 +919.621458 +919.633612 +919.914132 +920.003775 +920.145966 +920.201844 +920.327951 +920.363682 +920.493851 +920.537508 +920.597215 +920.705539 +920.777800 +920.842502 +920.913931 +921.073871 +921.248962 +921.365878 +921.480963 +921.563181 +921.638039 +921.712265 +921.759251 +921.825652 +921.968176 +922.482394 +922.651092 +922.889353 +922.909367 +922.994149 +923.119723 +923.138437 +923.179696 +923.275134 +923.369706 +923.488387 +923.601940 +923.704204 +923.840035 +923.892016 +923.996778 +924.091816 +924.156851 +924.238736 +924.288386 +924.349259 +924.475299 +924.633607 +924.801040 +924.943597 +925.030377 +925.290650 +925.340267 +925.481792 +925.536803 +925.605368 +925.740000 +925.965341 +926.240466 +926.400639 +926.491714 +926.567005 +926.647991 +926.666872 +926.708863 +926.738167 +926.866905 +926.968171 +927.054384 +927.265107 +927.372499 +927.512359 +927.578027 +927.694777 +927.740830 +927.810827 +927.834770 +927.935835 +928.031073 +928.192179 +928.361010 +928.478392 +928.528942 +928.615189 +928.700836 +928.760177 +928.908628 +929.152884 +929.304332 +929.647056 +929.760342 +929.850319 +929.940129 +930.025477 +930.144491 +930.318950 +930.405197 +930.560042 +930.740794 +931.099002 +931.110158 +931.145189 +931.214820 +931.286481 +931.440194 +931.655112 +931.760473 +931.836631 +932.131435 +932.394039 +932.537729 +932.691874 +932.815318 +932.848851 +932.883183 +932.918814 +933.005028 +933.129370 +933.210522 +933.304694 +933.407392 +933.538860 +933.726239 +933.850848 +933.924907 +933.961970 +934.025206 +934.099932 +934.191340 +934.338626 +934.463401 +934.581083 +934.690640 +934.796035 +934.895236 +934.998166 +935.236993 +935.288675 +935.447583 +935.522374 +935.659670 +935.780882 +935.875288 +936.317911 +936.406290 +936.576486 +936.652876 +936.737059 +936.818311 +936.923672 +937.021507 +937.150345 +937.300961 +937.462865 +937.657937 +937.812848 +937.911949 +937.937557 +937.960834 +938.108719 +938.576551 +938.711216 +938.818675 +939.087939 +939.171322 +939.238521 +939.292967 +939.368857 +939.531128 +939.729929 +939.988804 +940.073485 +940.113013 +940.173752 +940.196862 +940.278780 +940.384974 +940.541983 +940.795230 +940.945113 +941.072619 +941.246744 +941.324933 +941.387637 +941.433724 +941.531359 +941.630627 +941.885272 +942.058199 +942.223467 +942.321835 +942.387702 +942.453969 +942.533556 +942.610180 +942.711412 +942.781908 +942.898724 +943.069253 +943.213909 +943.295394 +943.523898 +943.728727 +943.838350 +943.955400 +944.070684 +944.304617 +944.478210 +944.644543 +944.740114 +944.837983 +944.962458 +945.103983 +945.465988 +945.536517 +945.612707 +945.642511 +945.917203 +946.006114 +946.425827 +947.034517 +947.089795 +947.146672 +947.215769 +947.284800 +947.559159 +947.623162 +947.735149 +947.760757 +947.855396 +948.024560 +948.095922 +948.173677 +948.646970 +948.755794 +948.849601 +948.932751 +949.021628 +949.271711 +949.482667 +949.603612 +949.631485 +949.728787 +949.884664 +950.033715 +950.137844 +950.211404 +950.340675 +950.420628 +950.473109 +950.562386 +950.681533 +950.909106 +951.092056 +951.354427 +951.385329 +951.398183 +951.459921 +951.500014 +951.521759 +951.574340 +951.695652 +951.759588 +951.813467 +951.989258 +952.238342 +952.335877 +952.426120 +952.534279 +952.663783 +952.738874 +952.827918 +952.881232 +952.992886 +953.121325 +953.230715 +953.391421 +953.539506 +953.663682 +953.823555 +953.904108 +953.965912 +954.046432 +954.523421 +954.598846 +954.684027 +954.704806 +954.849794 +955.202042 +955.329781 +955.593983 +955.739137 +956.063013 +956.249693 +956.389819 +956.446663 +956.541767 +956.793515 +957.288020 +957.532842 +957.896345 +958.020054 +958.109898 +958.164776 +958.189951 +958.275698 +958.450257 +958.614726 +958.788851 +958.903170 +959.323216 +959.358248 +959.392147 +959.422550 +959.492980 +959.511661 +959.535670 +959.546759 +959.551255 +959.558314 +959.638168 +959.724748 +959.831608 +959.918987 +960.174065 +960.371700 +960.641797 +960.724913 +960.944394 +960.989449 +961.020051 +961.166138 +961.358712 +961.481523 +961.621383 +961.718685 +961.860577 +962.095874 +962.284619 +962.346091 +962.417985 +962.505131 +962.522414 +962.590879 +962.725278 +962.850153 +962.926177 +963.081688 +963.158544 +963.247322 +963.354148 +963.522313 +963.710425 +963.772429 +963.825643 +963.904764 +963.979356 +964.060641 +964.224410 +964.497470 +964.542259 +964.945022 +965.176224 +965.256377 +965.331702 +965.382618 +965.534599 +965.699933 +965.797636 +965.996503 +966.083816 +966.177156 +966.281851 +966.749216 +966.816782 +966.820878 +966.838227 +966.868963 +966.959306 +967.032533 +967.096935 +967.188010 +967.531134 +967.611553 +967.722109 +967.826105 +967.836295 +967.884880 +967.892971 +967.961869 +968.036295 +968.106791 +968.147117 +968.198699 +968.258672 +968.347683 +968.602761 +968.675222 +968.822941 +968.884879 +968.943686 +969.021076 +969.070859 +969.228834 +969.348648 +969.451911 +969.545018 +969.660735 +969.747415 +969.812916 +969.923839 +969.948347 +970.018744 +970.234694 +970.327168 +970.480481 +970.551777 +970.649645 +970.766928 +971.129665 +971.186908 +971.222505 +971.282978 +971.335459 +971.511716 +971.654173 +972.010550 +972.089005 +972.345248 +972.427732 +972.445714 +972.861498 +973.013812 +973.131461 +973.175450 +973.177282 +973.264661 +973.637854 +973.775550 +973.887737 +973.992433 +974.163228 +974.447377 +974.552838 +974.639984 +974.726564 +974.752105 +974.803854 +974.929994 +975.201389 +975.468688 +975.558132 +975.601089 +975.677779 +975.761761 +975.762827 +975.826563 +976.006483 +976.108614 +976.179443 +976.687901 +976.985403 +977.197424 +977.246908 +977.305916 +977.467954 +977.575546 +977.714940 +977.811643 +977.969685 +978.167753 +978.347307 +978.477543 +978.597623 +978.641246 +978.727160 +978.783170 +978.872681 +978.951169 +979.029257 +979.125694 +979.238215 +979.349137 +979.469483 +979.703183 +979.815703 +979.906979 +980.014305 +980.150935 +980.236016 +980.296189 +980.440844 +980.498753 +980.558060 +980.619799 +980.734950 +981.068183 +981.232219 +981.375509 +981.478506 +981.565219 +981.677873 +981.748635 +981.979138 +982.060656 +982.130453 +982.210240 +982.287995 +982.372045 +982.503546 +982.616533 +982.707276 +982.850732 +983.031385 +983.153229 +983.187395 +983.350898 +983.428787 +983.653995 +983.758990 +983.776405 +983.802180 +983.850465 +983.940175 +984.081533 +984.155326 +984.323991 +984.393454 +984.623990 +984.682632 +984.761053 +984.964250 +985.052395 +985.333147 +985.365415 +985.404442 +985.485661 +985.622724 +985.869310 +985.965781 +986.014532 +986.045900 +986.054791 +986.103210 +986.166480 +986.281098 +986.347299 +986.397149 +986.443269 +986.617961 +986.680498 +986.730249 +986.842769 +987.059652 +987.269642 +987.552359 +987.641836 +987.963681 +988.013131 +988.083094 +988.293950 +988.408702 +988.599544 +988.643767 +988.868808 +988.955887 +989.119390 +989.278631 +989.409667 +989.531878 +989.646263 +989.811531 +989.930878 +989.960049 +990.002074 +990.046529 +990.049160 +990.287788 +990.389419 +990.464011 +990.595346 +990.690518 +990.799309 +990.923851 +991.018390 +991.195912 +991.272036 +991.336338 +991.506534 +991.631309 +991.717923 +991.816024 +991.860480 +991.957749 +992.050756 +992.185222 +992.242131 +992.424082 +992.502471 +992.558481 +992.696610 +992.759114 +992.891381 +993.027878 +993.144262 +993.289050 +993.355384 +993.408630 +993.447891 +993.486852 +993.527611 +993.640332 +993.703702 +993.811693 +993.862543 +993.949256 +994.078493 +994.176528 +994.290814 +994.450088 +994.569169 +994.674663 +994.723880 +994.829841 +994.830940 +994.879957 +994.931506 +995.006464 +995.175961 +995.296873 +995.423946 +995.530673 +995.589148 +995.681455 +996.002800 +996.043160 +996.058378 +996.129440 +996.225710 +996.342527 +996.442693 +996.550585 +996.676426 +996.759842 +996.836532 +996.948753 +997.024378 +997.115653 +997.158077 +997.218084 +997.439329 +997.503898 +997.586482 +997.654647 +997.761107 +997.861506 +997.912822 +997.961173 +998.083617 +998.160773 +998.353014 +998.375925 +998.416517 +998.464303 +998.519148 +998.563737 +998.628605 +998.695305 +998.823543 +998.997203 +999.175824 +999.251382 +999.279820 +999.300799 +999.350915 +999.489077 +999.575257 +999.624675 +999.775557 +999.835996 +999.942556 +1000.013386 +1000.115117 +1000.227937 +1000.286212 +1000.361204 +1000.439859 +1000.495503 +1000.573758 +1000.658773 +1000.759139 +1000.841590 +1000.916581 +1001.041923 +1001.106824 +1001.243754 +1001.307856 +1001.384347 +1001.429135 +1001.479351 +1001.549348 +1001.690906 +1001.796268 +1001.882981 +1001.952844 +1002.102161 +1002.218711 +1002.314715 +1002.479783 +1002.594968 +1002.754275 +1002.845784 +1002.893935 +1003.020575 +1003.106889 +1003.186509 +1003.225004 +1003.283279 +1003.349380 +1003.556605 +1003.810418 +1004.148846 +1004.201060 +1004.243518 +1004.433861 +1004.517710 +1004.627300 +1004.747813 +1004.851376 +1004.922805 +1005.026667 +1005.096064 +1005.555338 +1005.671189 +1005.708052 +1005.865627 +1005.912347 +1006.007019 +1006.249776 +1006.370489 +1006.596329 +1006.781511 +1006.863529 +1006.912646 +1006.991234 +1006.996762 +1007.008317 +1007.063095 +1007.147611 +1007.155403 +1007.231693 +1007.249575 +1007.268956 +1007.386139 +1007.517108 +1007.868090 +1007.940184 +1008.026931 +1008.077280 +1008.128163 +1008.141982 +1008.188669 +1008.230427 +1008.296328 +1008.463527 +1008.755701 +1008.921868 +1009.154602 +1009.287469 +1009.572450 +1009.768654 +1009.824964 +1009.899323 +1009.934288 +1010.065090 +1010.226262 +1010.324098 +1010.414241 +1010.631856 +1010.756598 +1010.922199 +1011.078543 +1011.087034 +1011.212109 +1011.282305 +1011.384270 +1011.481073 +1011.519901 +1011.582738 +1011.680374 +1011.723064 +1011.803484 +1011.854466 +1011.980873 +1012.061958 +1012.187932 +1012.382005 +1012.478874 +1012.592860 +1012.671448 +1012.717835 +1012.735850 +1012.815304 +1012.992394 +1013.072647 +1013.171481 +1013.282303 +1013.354398 +1013.530155 +1013.645873 +1013.748403 +1013.876042 +1013.976875 +1014.146738 +1014.246638 +1014.477673 +1014.523195 +1014.553198 +1014.651799 +1014.763321 +1014.873777 +1014.957826 +1015.191592 +1015.493856 +1015.551232 +1015.634016 +1015.820862 +1016.124059 +1016.264718 +1016.367282 +1016.444804 +1016.520229 +1016.633182 +1016.785497 +1016.938577 +1017.166082 +1017.245803 +1017.267281 +1017.335846 +1017.442139 +1017.536312 +1017.635779 +1017.814633 +1017.887827 +1018.070277 +1018.115299 +1018.156824 +1018.262152 +1018.382398 +1018.531882 +1018.689890 +1018.773074 +1018.884962 +1018.975072 +1019.070043 +1019.208638 +1019.271342 +1019.300579 +1019.369843 +1019.400845 +1019.475504 +1019.546200 +1019.583995 +1019.633646 +1019.674804 +1019.739107 +1019.863083 +1019.951228 +1020.033778 +1020.127152 +1020.350728 +1020.447664 +1020.493785 +1020.524387 +1020.580231 +1020.613798 +1020.893385 +1020.953791 +1021.000577 +1021.107404 +1021.159685 +1021.214130 +1021.242802 +1021.259651 +1021.328383 +1021.466444 +1021.563447 +1021.722455 +1022.046331 +1022.187523 +1022.331578 +1022.402308 +1022.427849 +1022.433010 +1022.472071 +1022.502574 +1022.549427 +1022.613729 +1022.665411 +1022.786356 +1022.829547 +1023.044665 +1023.137239 +1023.206702 +1023.356619 +1023.438604 +1023.518290 +1023.633742 +1023.785789 +1023.955053 +1023.955786 +1024.000341 +1024.072669 +1024.132942 +1024.138137 +1024.170338 +1024.316525 +1024.369538 +1024.471636 +1024.817423 +1024.952455 +1025.079028 +1025.142365 +1025.185455 +1025.215825 +1025.473666 +1025.539168 +1025.604302 +1025.667739 +1025.900539 +1026.086520 +1026.241265 +1026.335137 +1026.431275 +1026.493945 +1026.586219 +1026.634171 +1026.679093 +1026.766805 +1026.824847 +1026.889582 +1026.929975 +1027.081224 +1027.200771 +1027.311760 +1027.507231 +1027.631706 +1027.696675 +1027.798906 +1027.850654 +1027.893411 +1027.979258 +1028.149055 +1028.207996 +1028.291313 +1028.377893 +1028.424646 +1028.503500 +1028.614622 +1028.729974 +1028.900336 +1029.126776 +1029.236067 +1029.421282 +1029.468168 +1029.507062 +1029.619916 +1029.701002 +1029.772164 +1029.868800 +1029.968767 +1030.082486 +1030.182053 +1030.288480 +1030.412623 +1030.504131 +1030.569699 +1030.698403 +1030.959242 +1031.078256 +1031.145955 +1031.176724 +1031.264104 +1031.334333 +1031.397670 +1031.447653 +1031.496937 +1031.595605 +1031.645755 +1031.736198 +1031.834200 +1032.112854 +1032.245788 +1032.460972 +1032.632700 +1032.677089 +1032.756010 +1032.798601 +1032.898834 +1032.948384 +1033.017415 +1033.056476 +1033.123609 +1033.250082 +1033.344688 +1033.391641 +1033.589443 +1033.685280 +1033.819879 +1034.032532 +1034.075922 +1034.152346 +1034.190574 +1034.230634 +1034.277021 +1034.396868 +1034.477021 +1034.586877 +1034.675489 +1034.812119 +1034.886944 +1034.930933 +1035.052045 +1035.396634 +1035.518944 +1035.628302 +1035.797033 +1035.849314 +1035.945384 +1036.033330 +1036.097199 +1036.173556 +1036.254775 +1036.316479 +1036.388607 +1036.457905 +1036.535294 +1036.648014 +1036.929566 +1036.992802 +1037.123139 +1037.243252 +1037.326302 +1037.521773 +1037.765562 +1037.900227 +1038.066394 +1038.148745 +1038.203890 +1038.284842 +1038.383311 +1038.498795 +1038.560367 +1038.678249 +1038.735625 +1038.838688 +1038.925867 +1039.069624 +1039.152241 +1039.229563 +1039.403822 +1039.451308 +1039.453006 +1039.521871 +1039.575917 +1039.679513 +1039.834325 +1039.930861 +1040.148777 +1040.247112 +1040.576016 +1040.698293 +1040.960098 +1041.184440 +1041.327130 +1041.423800 +1041.431293 +1041.517074 +1041.725931 +1041.905585 +1041.944979 +1041.990133 +1042.079011 +1042.112245 +1042.130992 +1042.209980 +1042.300356 +1042.368255 +1042.475781 +1042.640449 +1042.892896 +1043.426462 +1043.544378 +1043.671284 +1043.923132 +1044.025729 +1044.113908 +1044.177910 +1044.396325 +1044.523364 +1044.614173 +1044.700787 +1044.787966 +1044.927127 +1045.531722 +1045.640746 +1045.767086 +1045.915238 +1045.944275 +1045.996423 +1046.054065 +1046.130988 +1046.218468 +1046.272247 +1046.321165 +1046.405980 +1046.476842 +1046.547938 +1046.671614 +1046.817768 +1046.933385 +1047.286498 +1047.546338 +1047.639578 +1047.844307 +1047.967750 +1048.587862 +1048.792491 +1048.912005 +1049.164119 +1049.365817 +1049.590059 +1049.715034 +1049.828720 +1049.909673 +1050.166482 +1050.332583 +1050.502113 +1051.348865 +1051.546135 +1052.274739 +1052.501345 +1052.607106 +1052.985960 +1053.087991 +1053.473172 +1053.668443 +1053.749695 +1053.920991 +1054.071007 +1054.081563 +1054.213231 +1054.332479 +1054.756921 +1055.085458 +1056.075867 +1056.116959 +1056.935540 +1058.828578 +1059.054818 +1059.784022 +1059.878161 +1060.021118 +1061.017787 +1061.073464 +1061.179492 +1061.257846 +1061.274363 +1061.451719 +1061.573963 +1061.802135 +1062.370799 +1062.483853 +1062.623746 +1062.791778 +1062.940762 +1063.141394 +1063.237198 +1063.614288 +1063.975659 +1064.166502 +1064.253947 +1064.354513 +1064.506828 +1064.742691 +1067.020611 +1068.933430 +1069.866562 +1070.133329 +1071.591403 +1071.964562 +1072.244349 +1074.138919 +1074.544879 +1075.132491 +1075.144779 +1076.347608 +1076.347808 +1076.726229 +1076.991530 +1077.098890 +1077.320268 +1078.323997 +1078.418569 +1078.572415 +1079.823329 +1080.018600 +1080.303815 +1080.898819 +1081.036115 +1081.177474 +1081.353597 +1082.666516 +1082.813802 +1082.975840 +1084.402312 +1086.652726 +1086.709669 +1087.198180 +1087.611500 +1087.777134 +1088.045798 +1088.914762 +1089.518358 +1089.953256 +1090.241700 +1090.453055 +1091.157817 +1092.606034 +1092.803369 +1092.863343 +1093.333106 +1093.833372 +1093.992046 +1094.532339 +1095.110027 +1095.964838 +1096.161541 +1096.162107 +1096.556746 +1097.303898 +1098.407193 +1098.741026 +1098.889610 +1099.009890 +1099.068864 +1099.432034 +1100.403462 +1100.937494 +1101.021376 +1101.814882 +1102.555840 +1102.762800 +1104.307487 +1104.402492 +1104.560700 +1104.674420 +1105.643516 +1107.627397 +1109.234122 +1110.737817 +1111.064090 +1112.155831 +1112.253633 +1112.339214 +1112.481971 +1113.635416 +1114.409542 +1114.500983 +1114.736514 +1114.878139 +1115.317200 +1115.435748 +1115.470813 +1115.611239 +1115.650399 +1115.724026 +1115.854861 +1116.393489 +1116.432350 +1116.465484 +1116.534048 +1116.796852 +1117.484164 +1117.644137 +1117.794586 +1117.899615 +1118.936177 +1119.087992 +1119.274339 +1120.684660 +1121.710933 +1121.924119 +1121.952358 +1122.006937 +1122.783726 +1122.989420 +1123.076766 +1123.157918 +1123.224718 +1123.331511 +1123.414294 +1123.487588 +1123.715759 +1123.851557 +1124.020388 +1124.222885 +1124.375665 +1124.683324 +1124.711429 +1124.726514 +1124.761812 +1124.767540 +1124.849191 +1124.900573 +1125.180626 +1125.272068 +1125.330277 +1125.402671 +1125.518854 +1125.889084 +1125.990849 +1126.029876 +1126.272766 +1126.446992 +1126.805999 +1126.867604 +1126.913125 +1126.987351 +1127.074031 +1127.079759 +1127.112726 +1127.265639 +1127.523514 +1127.664207 +1127.874963 +1128.032438 +1128.147723 +1128.261442 +1128.292611 +1128.334836 +1128.369934 +1128.429041 +1128.535901 +1128.591312 +1128.739730 +1128.911159 +1129.020849 +1129.111325 +1129.496007 +1129.541395 +1129.701101 +1129.817818 +1129.876226 +1130.464537 +1130.593774 +1130.673395 +1130.728340 +1130.752382 +1130.815885 +1130.946355 +1131.100267 +1131.400334 +1131.800400 +1131.846421 +1131.896637 +1131.923643 +1132.002298 +1132.081219 +1132.139261 +1132.214219 +1132.324708 +1132.470796 +1132.660139 +1132.748917 +1132.851981 +1132.958008 +1132.990908 +1133.201031 +1133.382949 +1133.629069 +1133.790608 +1133.896968 +1133.980018 +1134.081417 +1134.201430 +1134.249548 +1134.434197 +1134.624073 +1134.732665 +1134.981949 +1135.107989 +1135.147117 +1135.226337 +1135.340523 +1135.428268 +1135.602094 +1135.812051 +1136.148115 +1136.282680 +1136.385743 +1136.454907 +1136.542220 +1136.689639 +1137.201926 +1137.223838 +1137.334194 +1137.369359 +1137.399762 +1137.559901 +1137.782545 +1138.061000 +1138.407619 +1138.606620 +1138.628432 +1138.641718 +1138.790869 +1138.931662 +1139.188371 +1139.411947 +1139.566759 +1139.756469 +1139.942317 +1140.030695 +1140.097062 +1140.147078 +1140.185973 +1140.216675 +1140.411280 +1140.512279 +1140.644980 +1140.913211 +1141.034890 +1141.098459 +1141.164959 +1141.251739 +1141.277547 +1141.437387 +1141.560697 +1141.768389 +1141.866990 +1142.023200 +1142.128162 +1142.353603 +1142.483306 +1142.542514 +1142.615574 +1142.668221 +1142.743446 +1142.897991 +1143.052936 +1143.258031 +1143.445876 +1143.578110 +1143.703818 +1143.894860 +1143.933521 +1143.955433 +1144.099089 +1144.151203 +1144.224497 +1144.298356 +1144.360827 +1144.594327 +1144.738382 +1144.828192 +1145.090996 +1145.174080 +1145.193593 +1145.429457 +1145.491628 +1145.537882 +1145.666320 +1145.884868 +1145.988564 +1146.109576 +1146.300885 +1146.366919 +1146.425660 +1146.515737 +1146.539713 +1146.546339 +1146.592260 +1146.678174 +1146.717102 +1146.776009 +1146.905813 +1146.990195 +1147.194191 +1147.300618 +1147.496422 +1147.681037 +1147.839678 +1147.952398 +1148.044173 +1148.300583 +1148.464752 +1148.660157 +1148.710273 +1148.860190 +1149.165418 +1149.289493 +1149.605544 +1149.995320 +1150.108607 +1150.236046 +1150.309972 +1150.690258 +1150.836578 +1150.917630 +1150.933215 +1150.963285 +1151.047833 +1151.100214 +1151.133115 +1151.160154 +1151.203711 +1151.260121 +1151.319461 +1151.371709 +1151.457523 +1151.526654 +1151.961452 +1152.151628 +1152.168212 +1152.195584 +1152.224622 +1152.248198 +1152.346400 +1152.402844 +1152.508438 +1152.576004 +1152.657822 +1152.794285 +1152.901111 +1152.959020 +1153.058754 +1153.193985 +1153.371441 +1153.523522 +1153.815663 +1153.860052 +1153.930681 +1153.971107 +1154.059519 +1154.115562 +1154.176368 +1154.341570 +1154.519658 +1154.667676 +1154.974869 +1155.157586 +1155.192018 +1155.198745 +1155.206504 +1155.316394 +1155.384692 +1155.466777 +1155.625118 +1155.695548 +1155.768375 +1155.886823 +1155.898311 +1155.961881 +1156.305537 +1156.597611 +1156.804604 +1156.923585 +1156.993015 +1157.148593 +1157.195613 +1157.261647 +1157.305736 +1157.358450 +1157.399109 +1157.455686 +1157.588819 +1157.730710 +1158.100474 +1158.357949 +1158.465375 +1158.603836 +1158.687386 +1158.849990 +1158.967805 +1159.108465 +1159.230043 +1159.301671 +1159.403802 +1159.460978 +1159.500372 +1159.658347 +1159.770868 +1160.210461 +1160.357747 +1160.462875 +1160.582456 +1160.621517 +1160.743561 +1160.824047 +1160.868469 +1160.905699 +1160.938466 +1160.993478 +1161.049522 +1161.164973 +1161.316654 +1161.408862 +1161.502002 +1161.599471 +1161.708329 +1161.803633 +1161.833437 +1161.845725 +1161.904765 +1161.951485 +1162.110826 +1162.169334 +1162.304698 +1162.503100 +1162.557745 +1162.768135 +1162.858977 +1162.946856 +1163.054515 +1163.089646 +1163.151917 +1163.160642 +1163.193109 +1163.285284 +1163.324478 +1163.464837 +1163.605330 +1163.727175 +1163.847621 +1163.967700 +1164.053248 +1164.245955 +1164.340394 +1164.418516 +1164.558143 +1164.778123 +1164.923810 +1165.288145 +1165.322111 +1165.414452 +1165.516517 +1165.559873 +1165.612754 +1165.668465 +1165.748418 +1165.822144 +1165.947885 +1166.036929 +1166.307891 +1166.415284 +1166.599966 +1166.791907 +1166.887245 +1166.999033 +1167.078820 +1167.119745 +1167.248183 +1167.424807 +1167.544387 +1167.681250 +1167.936628 +1168.034063 +1168.183913 +1168.211419 +1168.281149 +1168.351279 +1168.393137 +1168.527303 +1168.615315 +1168.818178 +1168.924172 +1169.126570 +1169.191005 +1169.354708 +1169.758737 +1169.835693 +1169.864831 +1169.896366 +1169.997132 +1170.226602 +1170.332063 +1170.413149 +1170.625869 +1170.763465 +1170.864130 +1171.556904 +1171.575818 +1171.936224 +1172.150210 +1172.395264 +1172.526167 +1172.901358 +1172.991334 +1173.068457 +1173.143282 +1173.408550 +1173.527131 +1173.609049 +1173.730594 +1173.793964 +1173.884640 +1174.020138 +1174.116109 +1174.540417 +1174.661263 +1174.720837 +1174.852738 +1174.907450 +1174.957533 +1175.073617 +1175.143747 +1175.243147 +1175.438685 +1175.554868 +1175.652904 +1175.892497 +1175.996193 +1176.034788 +1176.083939 +1176.241315 +1176.317905 +1176.445477 +1176.570585 +1176.651737 +1176.764791 +1176.844178 +1176.899522 +1176.975846 +1177.156465 +1177.340681 +1177.495359 +1177.581640 +1177.645143 +1177.736818 +1177.869518 +1177.967686 +1178.038849 +1178.194126 +1178.376877 +1178.437450 +1178.636484 +1178.792494 +1178.889697 +1178.962524 +1179.059660 +1179.124429 +1179.225794 +1179.304215 +1179.504015 +1179.583769 +1179.658561 +1179.713406 +1179.813272 +1179.910242 +1179.986499 +1180.127458 +1180.214104 +1180.295590 +1180.578640 +1180.647337 +1180.696022 +1180.768150 +1180.892592 +1180.988762 +1181.059358 +1181.337646 +1181.482568 +1181.551965 +1181.790260 +1181.919830 +1182.122794 +1182.236280 +1182.337912 +1182.363619 +1182.440476 +1182.456260 +1182.526024 +1182.551764 +1182.682966 +1182.788661 +1182.992823 +1183.120195 +1183.380568 +1183.382100 +1183.434248 +1183.517365 +1183.702679 +1183.765716 +1183.941540 +1184.050864 +1184.117797 +1184.164783 +1184.270044 +1184.357091 +1184.460254 +1184.556191 +1184.681666 +1184.740007 +1184.801313 +1185.025755 +1185.204875 +1185.295152 +1185.367279 +1185.535311 +1185.546433 +1185.926020 +1186.103975 +1186.181531 +1186.336809 +1186.493053 +1186.655557 +1186.739473 +1186.850428 +1187.106305 +1187.203941 +1187.360851 +1187.505373 +1187.583461 +1188.075635 +1188.138306 +1188.610133 +1188.937905 +1189.046696 +1189.196513 +1189.448328 +1189.452523 +1189.613795 +1189.743732 +1189.877798 +1190.022320 +1190.131977 +1190.216092 +1190.313695 +1190.355020 +1190.410132 +1190.546162 +1190.627514 +1190.736105 +1190.813728 +1190.925382 +1191.020487 +1191.129678 +1191.293814 +1191.407134 +1191.513727 +1191.600240 +1191.672435 +1191.731409 +1191.876164 +1191.988219 +1192.073533 +1192.197209 +1192.284955 +1192.375398 +1192.458514 +1192.573699 +1192.635537 +1192.747425 +1192.887319 +1192.973599 +1193.145860 +1193.300871 +1193.416056 +1193.948090 +1194.042762 +1194.205466 +1194.307464 +1194.339898 +1194.508030 +1194.590847 +1194.753917 +1194.844626 +1195.192278 +1195.192844 +1195.453516 +1195.586850 +1195.704332 +1195.801268 +1195.891711 +1196.016719 +1196.169034 +1196.232970 +1196.462373 +1196.514688 +1196.620482 +1196.744691 +1196.825576 +1196.886482 +1196.926975 +1196.966335 +1197.014287 +1197.054980 +1197.295839 +1197.344124 +1197.422379 +1197.560707 +1197.630804 +1197.692142 +1197.728839 +1197.773294 +1197.788845 +1197.833101 +1197.969498 +1198.077157 +1198.432135 +1198.507360 +1198.576690 +1198.678022 +1198.836230 +1198.924475 +1199.093639 +1199.182750 +1199.220812 +1199.351681 +1199.429670 +1199.527305 +1199.642923 +1199.723942 +1199.783049 +1199.828837 +1200.198267 +1200.325040 +1200.453878 +1200.531100 +1200.581017 +1200.620011 +1200.924840 +1201.518179 +1201.710586 +1201.818911 +1201.884945 +1201.960869 +1202.122907 +1202.361535 +1202.461069 +1202.644085 +1202.760036 +1202.833895 +1202.950978 +1203.041887 +1203.326669 +1203.432962 +1203.489472 +1203.522673 +1203.603358 +1203.669759 +1203.791570 +1203.921340 +1204.068593 +1204.132729 +1204.284710 +1204.469392 +1204.536325 +1204.616811 +1204.760900 +1204.844250 +1204.879448 +1204.891103 +1204.894466 +1204.937190 +1205.188072 +1205.261399 +1205.301492 +1205.366194 +1205.500792 +1205.547912 +1205.767126 +1205.874885 +1205.992434 +1206.070888 +1206.139420 +1206.163962 +1206.367392 +1206.512247 +1206.711680 +1206.798027 +1207.288803 +1207.380844 +1207.411180 +1207.453371 +1207.548376 +1207.612645 +1207.661929 +1207.669821 +1207.728696 +1207.839751 +1208.011379 +1208.249474 +1208.471352 +1208.538085 +1208.605818 +1208.608448 +1208.659664 +1208.800723 +1208.987402 +1209.266157 +1209.369686 +1209.674148 +1209.724365 +1209.886902 +1209.946442 +1210.019702 +1210.133222 +1210.380708 +1210.391963 +1210.461327 +1210.564990 +1210.816804 +1210.934720 +1211.156631 +1211.169884 +1211.365988 +1211.434286 +1211.522165 +1211.575845 +1211.668585 +1211.698222 +1211.783470 +1211.794792 +1211.910243 +1211.988432 +1212.010909 +1212.045341 +1212.063457 +1212.142278 +1212.471814 +1212.629090 +1212.719200 +1212.762257 +1212.862124 +1212.931754 +1212.994558 +1213.473279 +1213.546539 +1213.614337 +1213.683002 +1213.721230 +1213.748203 +1213.785000 +1213.892659 +1213.976475 +1214.053165 +1214.157227 +1214.257394 +1214.427390 +1214.494723 +1214.552099 +1214.634150 +1214.761722 +1214.814802 +1214.869548 +1214.920830 +1214.962987 +1215.105511 +1215.230553 +1215.301981 +1215.471345 +1215.543673 +1215.647735 +1215.718331 +1215.864951 +1215.968714 +1216.026723 +1216.079803 +1216.267915 +1216.419097 +1216.514568 +1216.553162 +1216.553728 +1216.586962 +1216.710838 +1216.835280 +1216.956792 +1217.053561 +1217.436345 +1217.513834 +1217.580301 +1217.786095 +1217.901812 +1217.956891 +1218.178469 +1218.366347 +1218.495318 +1218.566181 +1218.663716 +1218.753160 +1218.958155 +1219.310602 +1219.431148 +1219.643502 +1219.678634 +1219.705673 +1219.749529 +1219.796283 +1219.888823 +1220.041471 +1220.181630 +1220.489389 +1220.829315 +1220.888889 +1221.022089 +1221.078699 +1221.139871 +1221.191619 +1221.236841 +1221.410267 +1221.621223 +1221.792684 +1221.862215 +1222.369840 +1222.519190 +1222.567808 +1222.642267 +1222.718857 +1222.837472 +1222.959949 +1223.041301 +1223.265943 +1223.422120 +1223.491850 +1223.546495 +1223.662046 +1223.765010 +1223.820454 +1223.888420 +1223.993681 +1224.213394 +1224.466974 +1224.588586 +1224.629045 +1224.679861 +1224.720920 +1224.768006 +1224.818089 +1224.875099 +1224.938335 +1225.017390 +1225.073833 +1225.143463 +1225.214992 +1225.262278 +1225.445361 +1225.510096 +1225.572667 +1225.675264 +1225.783256 +1225.855018 +1225.975198 +1226.115557 +1226.147359 +1226.383322 +1226.396076 +1226.622849 +1226.766239 +1226.852120 +1226.904867 +1226.976595 +1227.026545 +1227.044993 +1227.119485 +1227.172366 +1227.253684 +1227.271766 +1227.345992 +1227.485119 +1227.549555 +1227.583554 +1227.618786 +1227.681490 +1227.752485 +1227.820817 +1227.868602 +1227.938732 +1228.138199 +1228.248788 +1228.375495 +1228.512924 +1228.568435 +1228.608295 +1228.759377 +1228.862141 +1228.943060 +1229.001169 +1229.051352 +1229.121082 +1229.213256 +1229.264538 +1229.341062 +1229.481388 +1229.552750 +1229.643925 +1229.789313 +1229.868634 +1229.925543 +1229.982520 +1230.098503 +1230.104897 +1230.203232 +1230.270498 +1230.403765 +1230.769498 +1231.050584 +1231.207593 +1231.321046 +1231.406095 +1231.493274 +1231.546354 +1231.582018 +1231.685082 +1231.761739 +1231.844522 +1231.892474 +1231.920546 +1232.170663 +1232.276257 +1232.356077 +1232.409657 +1232.479653 +1232.668198 +1232.720779 +1232.801964 +1232.818847 +1232.839227 +1232.893772 +1232.922643 +1232.929803 +1233.067498 +1233.235930 +1233.295670 +1233.437961 +1233.698433 +1233.832532 +1233.947417 +1233.999066 +1234.047151 +1234.126172 +1234.314983 +1234.370860 +1234.549448 +1234.785512 +1234.859438 +1235.024406 +1235.141922 +1235.227536 +1235.514748 +1235.572491 +1235.635461 +1235.726203 +1235.930066 +1236.025704 +1236.123306 +1236.170259 +1236.280382 +1236.413582 +1236.460702 +1236.559203 +1236.635860 +1236.691271 +1236.842353 +1236.889106 +1236.938323 +1237.028233 +1237.128100 +1237.192402 +1237.362066 +1237.476352 +1237.591636 +1237.652875 +1237.697630 +1237.739821 +1237.801559 +1237.847846 +1237.902791 +1237.962165 +1238.010051 +1238.215612 +1238.282944 +1238.300427 +1238.362598 +1238.422504 +1238.495598 +1238.602691 +1238.665561 +1238.743583 +1238.786240 +1238.831262 +1238.945381 +1239.010183 +1239.128531 +1239.219573 +1239.294865 +1239.370322 +1239.428664 +1239.527299 +1239.579513 +1239.649443 +1239.693932 +1239.760032 +1239.815310 +1239.900092 +1240.017408 +1240.068424 +1240.112113 +1240.173219 +1240.326665 +1240.372786 +1240.392033 +1240.445047 +1240.659399 +1240.759765 +1240.878346 +1240.949808 +1241.025998 +1241.088769 +1241.153005 +1241.200690 +1241.483607 +1241.645845 +1241.793197 +1241.844379 +1242.077912 +1242.210879 +1242.325564 +1242.398491 +1242.548508 +1242.629760 +1242.707981 +1242.767389 +1242.808148 +1242.826762 +1242.915141 +1243.138484 +1243.210512 +1243.403585 +1243.498390 +1243.592030 +1243.773914 +1243.908679 +1244.024697 +1244.155133 +1244.250404 +1244.321833 +1244.423830 +1244.534986 +1244.658629 +1244.770683 +1244.871882 +1245.036883 +1245.102984 +1245.256497 +1245.374745 +1245.401285 +1245.490230 +1245.578175 +1245.627026 +1245.694492 +1245.765920 +1245.860359 +1245.916203 +1245.965720 +1246.026426 +1246.139846 +1246.347372 +1246.530788 +1246.607944 +1246.669183 +1246.727524 +1246.876442 +1247.003482 +1247.177308 +1247.219166 +1247.258992 +1247.389062 +1247.564720 +1247.632152 +1247.659325 +1247.671380 +1247.783368 +1247.826658 +1247.886431 +1247.942675 +1248.202548 +1248.275209 +1248.345172 +1248.540043 +1248.659291 +1248.707809 +1248.744539 +1248.902014 +1248.967882 +1249.266583 +1249.422394 +1249.499916 +1249.661621 +1249.714901 +1249.768081 +1249.855327 +1249.902879 +1250.094055 +1250.149566 +1250.293621 +1250.407674 +1250.456791 +1250.529818 +1250.621327 +1250.716398 +1250.751730 +1250.790557 +1250.927587 +1250.982365 +1251.200847 +1251.327720 +1251.470443 +1251.532781 +1251.663450 +1251.767479 +1251.836843 +1251.908938 +1251.983563 +1252.092854 +1252.209137 +1252.407639 +1252.481098 +1252.548098 +1252.752593 +1252.816529 +1252.932114 +1253.089489 +1253.198780 +1253.327618 +1253.455989 +1253.591687 +1253.703541 +1253.831047 +1254.062749 +1254.106372 +1254.196315 +1254.264746 +1254.325952 +1254.439738 +1254.502975 +1254.583494 +1254.633544 +1254.706571 +1254.771439 +1254.877267 +1255.089854 +1255.157419 +1255.434009 +1255.495448 +1255.575434 +1255.644665 +1255.789254 +1255.847162 +1255.891385 +1255.909766 +1256.049027 +1256.095281 +1256.209500 +1256.274967 +1256.331111 +1256.402107 +1256.461714 +1256.636639 +1256.726582 +1256.795846 +1256.837771 +1256.984857 +1257.055886 +1257.124351 +1257.207567 +1257.454620 +1257.514160 +1257.574733 +1257.664410 +1257.822685 +1257.901473 +1257.947460 +1257.993913 +1258.085855 +1258.151522 +1258.227413 +1258.284989 +1258.710629 +1258.757516 +1258.897742 +1258.993480 +1259.142930 +1259.188951 +1259.335071 +1259.448990 +1259.535637 +1259.589949 +1259.694844 +1259.758747 +1259.911561 +1260.088450 +1260.144427 +1260.238999 +1260.308497 +1260.560844 +1260.676228 +1260.841829 +1260.903035 +1260.997240 +1261.341762 +1261.377060 +1261.441363 +1261.642062 +1261.722381 +1261.799737 +1261.880356 +1261.952451 +1262.091012 +1262.182088 +1262.236999 +1262.308994 +1262.383020 +1262.458777 +1262.614089 +1262.714788 +1262.740895 +1262.815321 +1262.883685 +1263.052217 +1263.123679 +1263.179623 +1263.259776 +1263.372596 +1263.547088 +1263.603498 +1263.713322 +1263.902765 +1263.993674 +1264.063271 +1264.168866 +1264.300434 +1264.461206 +1264.531070 +1264.611955 +1264.758276 +1264.764569 +1265.213220 +1265.344422 +1265.360373 +1265.443523 +1265.552880 +1265.727172 +1265.844422 +1265.937728 +1266.264268 +1266.355843 +1266.570129 +1266.627138 +1266.829569 +1266.885580 +1266.961237 +1267.064500 +1267.172093 +1267.226039 +1267.272359 +1267.338759 +1267.456974 +1267.747317 +1267.785778 +1267.881549 +1267.978652 +1268.161069 +1268.307589 +1268.366364 +1268.434396 +1268.533497 +1268.653010 +1268.696434 +1268.730499 +1268.892437 +1268.953743 +1269.012451 +1269.248714 +1269.468028 +1269.560369 +1269.681547 +1269.742720 +1269.823972 +1269.943951 +1270.057904 +1270.268726 +1270.531497 +1270.672622 +1270.729565 +1270.849012 +1270.943051 +1271.020507 +1271.081280 +1271.222505 +1271.420440 +1271.534393 +1271.764529 +1271.898728 +1272.110350 +1272.280513 +1272.468924 +1272.621138 +1272.771088 +1273.014511 +1273.230328 +1273.279046 +1273.365094 +1273.470921 +1273.580511 +1273.721703 +1273.832992 +1273.996262 +1274.153471 +1274.208416 +1274.259698 +1274.423834 +1274.588203 +1274.742715 +1274.780210 +1275.041416 +1275.251439 +1275.509813 +1275.838951 +1275.990532 +1276.082240 +1276.135554 +1276.215407 +1276.275480 +1276.349273 +1276.505150 +1276.536819 +1276.603519 +1276.662127 +1276.958963 +1277.011710 +1277.094927 +1277.232123 +1277.296325 +1277.341480 +1277.545243 +1277.649372 +1277.764290 +1277.965955 +1278.018369 +1278.182471 +1278.275045 +1278.499154 +1278.682504 +1278.762990 +1278.844642 +1279.198221 +1279.307911 +1279.706812 +1280.277741 +1280.449036 +1280.662322 +1281.286764 +1281.490127 +1281.996420 +1282.565817 +1284.773374 +1285.846333 +1287.425985 +1287.519059 +1287.556255 +1288.551492 +1289.527315 +1289.626816 +1289.766209 +1290.049259 +1290.598543 +1290.784157 +1291.427646 +1291.527879 +1291.644429 +1291.720853 +1291.763643 +1292.548524 +1292.635537 +1292.847225 +1292.940099 +1293.088284 +1293.161011 +1293.269170 +1294.059212 +1294.171366 +1294.252752 +1294.441529 +1294.611193 +1295.599770 +1296.058411 +1296.064938 +1296.341761 +1296.708027 +1296.956712 +1297.117218 +1297.267800 +1297.911856 +1298.047054 +1298.053414 +1298.213554 +1298.519048 +1298.639461 +1299.273526 +1299.337062 +1299.568963 +1300.002363 +1300.123142 +1300.185413 +1300.210122 +1300.440058 +1300.963334 +1301.270693 +1302.256407 +1302.401262 +1302.632297 +1303.263632 +1303.865995 +1304.234860 +1304.643084 +1306.514245 +1307.438686 +1307.894097 +1308.120503 +1308.125998 +1308.323200 +1308.506584 +1308.613177 +1308.812244 +1308.976213 +1309.450472 +1309.505883 +1309.515041 +1309.632823 +1309.674847 +1309.683372 +1310.696491 +1310.935852 +1311.134886 +1311.195725 +1311.242545 +1312.231155 +1312.602051 +1312.644608 +1312.674012 +1312.716236 +1313.195523 +1313.266319 +1313.635017 +1313.915369 +1314.327190 +1314.799285 +1314.835382 +1315.042408 +1315.356727 +1315.426856 +1315.626656 +1315.854495 +1316.025624 +1316.174908 +1316.309173 +1316.456193 +1316.576539 +1316.696119 +1317.030118 +1318.243837 +1318.401279 +1318.450030 +1318.466214 +1318.569844 +1318.628585 +1318.646900 +1318.658888 +1318.680633 +1318.735678 +1319.016463 +1319.067745 +1319.192554 +1319.273473 +1319.400445 +1319.602477 +1319.909003 +1320.079000 +1320.205540 +1320.339772 +1320.512765 +1320.584027 +1320.656488 +1321.372372 +1321.443067 +1321.989620 +1322.137572 +1322.665544 +1322.700076 +1322.737072 +1322.785524 +1322.974268 +1323.304837 +1323.378397 +1323.552056 +1323.891983 +1323.898210 +1324.086055 +1324.186188 +1324.209532 +1324.311463 +1324.469971 +1324.575199 +1324.733540 +1324.756318 +1324.849424 +1324.990949 +1325.090883 +1325.529943 +1325.639234 +1325.682291 +1325.788251 +1325.897875 +1325.962177 +1326.118088 +1326.342030 +1326.379126 +1326.516456 +1326.669902 +1326.779293 +1327.196808 +1327.586884 +1327.611093 +1327.994709 +1328.036467 +1328.106431 +1328.370000 +1328.709960 +1329.004465 +1329.942360 +1330.126109 +1330.316652 +1330.962772 +1331.058343 +1331.381186 +1331.866267 +1332.623742 +1332.686746 +1332.989276 +1332.996669 +1333.091407 +1333.464534 +1333.493039 +1333.704261 +1333.732732 +1333.802096 +1333.866765 +1333.875389 +1334.344020 +1334.652112 +1335.032198 +1335.300696 +1335.499231 +1335.922207 +1336.227835 +1336.291870 +1336.387741 +1336.479116 +1336.595966 +1336.634095 +1336.888507 +1336.995300 +1337.321074 +1337.832129 +1338.238022 +1338.405954 +1338.411016 +1338.651375 +1338.754306 +1339.069723 +1339.143316 +1339.189570 +1339.331195 +1339.366693 +1339.367225 +1339.559533 +1340.037821 +1340.166159 +1340.249109 +1340.302656 +1340.951972 +1341.409115 +1341.749507 +1341.882208 +1342.180609 +1342.822234 +1342.969686 +1343.041447 +1343.072317 +1343.204318 +1343.311544 +1343.330691 +1343.429559 +1343.523964 +1344.504283 +1344.578109 +1344.686867 +1344.814539 +1345.035418 +1345.889130 +1346.104115 +1346.221631 +1346.235117 +1346.426992 +1346.488697 +1347.366352 +1347.442842 +1347.539645 +1347.714603 +1347.797254 +1348.695588 +1348.836413 +1348.961288 +1349.078138 +1349.335913 +1349.435614 +1349.556026 +1350.476039 +1350.800447 +1350.982831 +1351.104843 +1351.866913 +1351.978235 +1352.039574 +1352.268977 +1353.280265 +1353.596249 +1354.173438 +1354.254323 +1354.407503 +1354.468675 +1354.729481 +1354.851359 +1354.936374 +1355.109967 +1355.249261 +1355.407502 +1356.525317 +1356.726715 +1356.849426 +1356.962279 +1357.061513 +1357.297677 +1357.576997 +1357.700274 +1357.962145 +1358.257849 +1358.344529 +1358.497343 +1358.584489 +1359.670968 +1359.814258 +1359.944494 +1360.004035 +1360.085087 +1360.204434 +1360.319386 +1360.390747 +1361.001303 +1361.212958 +1361.588449 +1361.757646 +1361.865305 +1361.983187 +1362.163107 +1362.408661 +1362.533403 +1362.724545 +1362.754481 +1362.801268 +1362.843992 +1362.875460 +1363.005364 +1363.076059 +1363.133435 +1363.206529 +1363.381787 +1363.482519 +1363.677158 +1363.803132 +1363.870431 +1363.962672 +1364.033434 +1364.123178 +1364.268632 +1364.444057 +1364.541426 +1364.619315 +1364.729105 +1364.801765 +1364.943157 +1365.081119 +1365.424342 +1365.576090 +1366.667631 +1366.783282 +1366.969495 +1367.043421 +1367.131567 +1367.815748 +1368.061169 +1368.155608 +1368.202961 +1368.220776 +1368.363800 +1368.672158 +1369.328401 +1369.452610 +1369.627601 +1370.097331 +1370.341753 +1370.820907 +1371.228366 +1371.344716 +1371.839654 +1372.328631 +1372.330363 +1372.578015 +1373.733858 +1373.904320 +1374.123068 +1374.590800 +1375.148442 +1375.495927 +1375.820502 +1375.988368 +1376.085104 +1376.197425 +1376.503885 +1376.558430 +1377.560427 +1377.695758 +1377.860560 +1378.001619 +1378.108745 +1378.349604 +1378.484003 +1378.815005 +1379.734151 +1379.822097 +1380.065986 +1380.179372 +1380.319166 +1380.486032 +1380.605979 +1380.868782 +1381.452498 +1381.527956 +1381.615168 +1381.748102 +1381.844239 +1382.104479 +1382.801348 +1382.961421 +1383.107408 +1383.242972 +1383.386096 +1383.592689 +1383.683831 +1383.755859 +1383.933714 +1384.158156 +1384.322525 +1384.396717 +1384.417330 +1384.417896 +1384.579634 +1384.791456 +1384.878202 +1384.938375 +1384.962751 +1385.511735 +1385.704941 +1385.910402 +1387.132879 +1387.389921 +1387.511466 +1388.231346 +1388.683293 +1389.963745 +1391.069938 +1392.062544 +1392.170136 +1392.700805 +1393.125580 +1393.229576 +1393.433638 +1394.559977 +1394.803267 +1395.028841 +1395.312058 +1395.562041 +1395.616420 +1396.003699 +1396.588813 +1397.394140 +1398.337196 +1398.700033 +1399.194172 +1399.977255 +1400.007824 +1400.257840 +1400.872159 +1401.273157 +1401.608722 +1402.031765 +1402.175388 +1402.249447 +1402.608587 +1403.146749 +1403.149779 +1403.465030 +1403.520608 +1404.292602 +1404.534926 +1404.555205 +1406.337921 +1406.426066 +1406.459166 +1406.811447 +1407.306751 +1407.471853 +1407.500158 +1407.880910 +1408.393430 +1408.676680 +1408.790100 +1409.891364 +1410.465023 +1410.630391 +1410.782106 +1410.906714 +1410.942079 +1410.994793 +1411.088832 +1411.217303 +1411.850070 +1411.854665 +1412.301318 +1412.314838 +1412.459793 +1412.557495 +1412.646040 +1412.658128 +1412.800685 +1413.156296 +1414.414969 +1414.586797 +1414.935848 +1415.120996 +1415.206710 +1416.184398 +1416.339509 +1416.638810 +1417.844236 +1417.850031 +1417.978469 +1418.354193 +1418.528052 +1418.914199 +1419.499246 +1419.661151 +1419.714231 +1419.853126 +1419.989056 +1420.801876 +1421.211699 +1421.717593 +1422.511132 +1422.718491 +1422.822220 +1423.004538 +1423.586988 +1424.052822 +1424.334806 +1424.578495 +1424.661113 +1424.773467 +1425.075898 +1425.182258 +1425.321785 +1425.403137 +1426.001271 +1426.203635 +1426.204801 +1426.263742 +1426.366372 +1426.474864 +1427.160811 +1427.275363 +1427.354550 +1427.492445 +1427.597773 +1427.711892 +1427.853584 +1428.162808 +1428.671165 +1428.771931 +1428.824412 +1429.038498 +1429.592909 +1429.685184 +1429.929672 +1430.051117 +1430.201800 +1430.444157 +1430.575659 +1430.769598 +1431.733200 +1431.817416 +1431.894439 +1432.002830 +1432.027772 +1432.102997 +1432.283749 +1432.409290 +1432.573892 +1432.809223 +1432.954211 +1433.096602 +1433.179120 +1433.268830 +1433.374191 +1434.657540 +1434.684113 +1434.791639 +1434.993304 +1435.506124 +1435.594635 +1435.716846 +1435.823406 +1435.972557 +1436.070292 +1436.515879 +1437.233927 +1437.369125 +1437.492502 +1437.807753 +1438.355771 +1438.528298 +1438.681778 +1438.797396 +1438.927765 +1439.239020 +1439.399593 +1439.466592 +1439.718374 +1439.773086 +1439.833392 +1440.047311 +1440.291800 +1440.312113 +1440.406518 +1440.443381 +1440.561563 +1440.676282 +1440.799425 +1440.910114 +1441.234856 +1441.971585 +1442.022601 +1442.104652 +1442.105451 +1442.191898 +1442.309613 +1442.314309 +1442.369853 +1442.831824 +1443.107315 +1443.374581 +1443.441314 +1443.461560 +1443.493695 +1443.543145 +1443.545676 +1443.759262 +1443.841413 +1444.098822 +1444.185968 +1444.330390 +1444.443477 +1444.572348 +1444.667187 +1444.709011 +1444.724796 +1444.773414 +1444.785768 +1444.915538 +1444.968818 +1445.034819 +1445.106847 +1445.177443 +1445.364688 +1445.592893 +1445.674279 +1445.754432 +1445.807778 +1445.847305 +1445.887132 +1445.932620 +1445.963589 +1446.020998 +1446.143908 +1446.192859 +1446.217035 +1446.333918 +1446.397821 +1446.586199 +1446.732353 +1446.859392 +1446.983035 +1447.083301 +1447.132053 +1447.224727 +1447.238713 +1447.340511 +1447.402449 +1447.548702 +1447.685365 +1447.916634 +1447.956527 +1447.999817 +1448.118299 +1448.288628 +1448.338711 +1448.467849 +1448.620929 +1448.736580 +1448.822960 +1448.956160 +1449.349966 +1449.435181 +1449.473009 +1449.540442 +1449.626689 +1449.701081 +1449.736246 +1449.792523 +1449.880635 +1450.186528 +1450.290191 +1450.389092 +1450.400914 +1450.531583 +1450.605676 +1450.721293 +1450.864816 +1450.957190 +1451.232914 +1451.524323 +1451.709104 +1451.746067 +1451.811735 +1451.820493 +1451.884029 +1451.997316 +1452.054425 +1452.205974 +1452.329583 +1452.413599 +1452.505207 +1452.575970 +1452.729316 +1452.756389 +1452.772606 +1452.825720 +1452.919926 +1453.060685 +1453.173139 +1453.356455 +1453.423522 +1453.739339 +1453.940637 +1454.145965 +1454.168143 +1454.279898 +1454.383028 +1454.577100 +1454.725052 +1454.876567 +1454.981429 +1455.122920 +1455.312164 +1455.645431 +1455.709167 +1455.748927 +1455.755687 +1455.764145 +1455.829480 +1455.892250 +1455.949327 +1456.074401 +1456.150192 +1456.246396 +1456.420621 +1456.804337 +1457.197411 +1457.329412 +1457.576431 +1457.752888 +1457.853687 +1458.052088 +1458.140566 +1458.366773 +1458.474699 +1458.709197 +1458.753786 +1458.787885 +1458.824648 +1458.841198 +1458.892680 +1458.922850 +1458.976696 +1459.031575 +1459.069070 +1459.117289 +1459.239999 +1459.394944 +1459.739932 +1459.855417 +1459.965606 +1460.054284 +1460.118387 +1460.150921 +1460.220018 +1460.287051 +1460.358946 +1460.463341 +1460.619918 +1460.772265 +1460.867770 +1460.938133 +1461.109062 +1461.210327 +1461.243827 +1461.263540 +1461.265505 +1461.412558 +1461.461309 +1461.524646 +1461.542594 +1461.561609 +1461.775894 +1461.819850 +1461.846690 +1462.190213 +1462.308028 +1462.441794 +1462.652317 +1462.742693 +1462.879123 +1462.948520 +1463.072863 +1463.137198 +1463.194108 +1463.286615 +1463.337664 +1463.459009 +1463.509858 +1463.577524 +1463.670498 +1463.739828 +1463.861240 +1463.991310 +1464.132435 +1464.209292 +1464.233234 +1464.238795 +1464.252049 +1464.295672 +1464.347420 +1464.543690 +1464.687280 +1464.761306 +1464.817516 +1465.007160 +1465.100366 +1465.344855 +1465.521045 +1465.603862 +1465.676756 +1465.756709 +1465.813386 +1465.854212 +1465.976023 +1466.076822 +1466.116982 +1466.193172 +1466.272393 +1466.460971 +1466.543855 +1466.595670 +1466.677221 +1466.846452 +1466.943721 +1467.047617 +1467.232665 +1467.309388 +1467.441223 +1467.506591 +1467.630367 +1467.668496 +1467.695335 +1467.850180 +1467.926637 +1467.956840 +1468.023940 +1468.097599 +1468.179884 +1468.289507 +1468.379617 +1468.467429 +1468.538425 +1468.632431 +1468.778818 +1468.855974 +1468.917912 +1468.944685 +1469.067995 +1469.205490 +1469.391571 +1469.517678 +1469.690239 +1469.790538 +1469.980714 +1470.400428 +1470.540721 +1470.602725 +1470.701659 +1470.740654 +1470.778249 +1470.782345 +1470.905622 +1470.981912 +1471.043451 +1471.140953 +1471.261599 +1471.383777 +1471.481179 +1471.577683 +1471.665095 +1471.767826 +1471.863097 +1472.015544 +1472.175517 +1472.207685 +1472.265694 +1472.301225 +1472.347279 +1472.387772 +1472.518041 +1472.579913 +1472.637055 +1472.703522 +1472.795863 +1472.864461 +1472.928064 +1473.002123 +1473.058500 +1473.095530 +1473.166992 +1473.207218 +1473.284341 +1473.414111 +1473.479645 +1473.533558 +1473.645313 +1473.807051 +1473.869189 +1473.951706 +1474.087470 +1474.192765 +1474.225632 +1474.270354 +1474.274183 +1474.306984 +1474.384573 +1474.452238 +1474.609747 +1474.678379 +1474.861029 +1474.949441 +1475.017739 +1475.133823 +1475.272551 +1475.478877 +1475.593230 +1475.680709 +1475.714575 +1475.834688 +1475.882407 +1476.007681 +1476.040748 +1476.073782 +1476.127328 +1476.407648 +1476.473282 +1476.505616 +1476.587434 +1476.644477 +1476.739682 +1476.814274 +1476.934254 +1477.008446 +1477.083405 +1477.149672 +1477.210910 +1477.335785 +1477.416405 +1477.448672 +1477.504883 +1477.514906 +1477.572781 +1477.692362 +1477.906048 +1478.003284 +1478.051935 +1478.150137 +1478.200753 +1478.280640 +1478.652767 +1478.714539 +1478.774678 +1478.820033 +1478.912407 +1479.039380 +1479.137981 +1479.224695 +1479.299853 +1479.422330 +1479.495956 +1479.571114 +1479.654231 +1479.750835 +1479.813006 +1479.857295 +1479.992792 +1480.113105 +1480.149802 +1480.194224 +1480.293958 +1480.473544 +1480.569448 +1480.834250 +1480.999485 +1481.076774 +1481.322028 +1481.473377 +1481.518898 +1481.624759 +1481.677273 +1481.729987 +1481.786597 +1481.879071 +1481.939044 +1481.991691 +1482.052131 +1482.105444 +1482.153163 +1482.235714 +1482.368747 +1482.430619 +1482.484831 +1482.558158 +1482.627055 +1482.801814 +1482.917365 +1482.990758 +1483.050065 +1483.197185 +1483.323425 +1483.469845 +1483.552496 +1483.742139 +1483.808639 +1483.883631 +1484.020194 +1484.086594 +1484.214666 +1484.355958 +1484.414566 +1484.472841 +1484.543537 +1484.674373 +1484.773740 +1484.829451 +1484.888392 +1485.000313 +1485.038408 +1485.094386 +1485.125022 +1485.190023 +1485.262417 +1485.312101 +1485.465547 +1485.541105 +1485.635644 +1485.754591 +1485.851062 +1485.962450 +1486.069543 +1486.184095 +1486.349596 +1486.483628 +1486.537241 +1486.582696 +1486.646499 +1486.816262 +1486.902542 +1486.959252 +1487.197147 +1487.352559 +1487.489288 +1487.571906 +1487.621656 +1487.736374 +1487.790787 +1487.850194 +1487.916194 +1487.957020 +1488.018292 +1488.096014 +1488.277499 +1488.312165 +1488.348495 +1488.371006 +1488.435974 +1488.482994 +1488.698212 +1488.832610 +1488.943466 +1489.024019 +1489.198045 +1489.372170 +1489.528381 +1489.661680 +1489.751291 +1489.756386 +1489.777298 +1489.968806 +1490.115826 +1490.135773 +1490.338436 +1490.526848 +1490.643231 +1490.771669 +1490.938069 +1491.034706 +1491.159148 +1491.194879 +1491.231176 +1491.285688 +1491.346860 +1491.417889 +1491.455352 +1491.602005 +1491.708165 +1491.845494 +1492.003037 +1492.103902 +1492.396143 +1492.405334 +1492.448324 +1492.509663 +1492.537502 +1492.568005 +1492.622084 +1492.677162 +1492.738001 +1492.790515 +1492.882357 +1493.023082 +1493.138434 +1493.328177 +1493.491314 +1493.615023 +1493.695010 +1493.726212 +1493.835502 +1493.909528 +1493.972865 +1494.036202 +1494.083521 +1494.131673 +1494.314023 +1494.533004 +1494.622714 +1494.821416 +1494.939797 +1494.968069 +1495.005764 +1495.066171 +1495.198138 +1495.263673 +1495.378025 +1495.501102 +1495.562640 +1495.649087 +1495.708727 +1495.765937 +1495.836067 +1495.996506 +1496.105530 +1496.190445 +1496.229240 +1496.300502 +1496.335933 +1496.494641 +1496.873428 +1496.945689 +1497.034067 +1497.236898 +1497.297703 +1497.359641 +1497.379388 +1497.415952 +1497.488646 +1497.544490 +1497.582685 +1497.782818 +1497.893807 +1498.018016 +1498.099234 +1498.195005 +1498.322944 +1498.401732 +1498.451848 +1498.501099 +1498.629004 +1498.675458 +1498.714885 +1498.758874 +1498.859374 +1498.891741 +1499.007325 +1499.103163 +1499.198501 +1499.284282 +1499.481984 +1499.566099 +1499.626606 +1499.675923 +1499.719812 +1499.794371 +1499.873858 +1500.004161 +1500.096935 +1500.267131 +1500.359838 +1500.454210 +1500.631899 +1500.672758 +1500.956974 +1501.031033 +1501.115648 +1501.537593 +1501.688741 +1501.807689 +1501.837559 +1501.903526 +1501.941455 +1501.965631 +1502.017179 +1502.071458 +1502.117113 +1502.228601 +1502.275188 +1502.384212 +1502.433096 +1502.657072 +1503.088407 +1503.203525 +1503.267261 +1503.315080 +1503.339422 +1503.429432 +1503.475553 +1503.543385 +1503.607554 +1503.648813 +1503.718010 +1503.764597 +1503.845183 +1503.936525 +1504.132195 +1504.218576 +1504.345249 +1504.461100 +1504.597729 +1504.694266 +1504.736590 +1504.794632 +1504.838588 +1504.893766 +1504.973720 +1505.031395 +1505.101259 +1505.189404 +1505.253040 +1505.338921 +1505.425001 +1505.563196 +1505.747412 +1505.796996 +1505.852274 +1505.912647 +1505.987438 +1506.031195 +1506.118474 +1506.381943 +1506.484907 +1506.585040 +1506.710614 +1507.002556 +1507.027564 +1507.065959 +1507.147910 +1507.161829 +1507.330361 +1507.588136 +1507.819371 +1507.879078 +1507.928196 +1508.084406 +1508.151439 +1508.205751 +1508.322568 +1508.378045 +1508.463859 +1508.601921 +1508.817073 +1508.923100 +1509.241847 +1509.308980 +1509.402653 +1509.431125 +1509.510212 +1509.582140 +1509.618104 +1509.708880 +1509.778111 +1509.885803 +1509.961327 +1510.146342 +1510.188766 +1510.261593 +1510.300887 +1510.385303 +1510.475712 +1510.541380 +1510.632688 +1510.758030 +1510.913774 +1510.974813 +1511.044043 +1511.123697 +1511.189231 +1511.307979 +1511.353966 +1511.452135 +1511.523164 +1511.595858 +1511.678142 +1511.735917 +1511.854832 +1512.007013 +1512.084002 +1512.325361 +1512.447472 +1512.505347 +1512.554731 +1512.580306 +1512.665154 +1512.714172 +1512.803116 +1512.964721 +1513.079206 +1513.146406 +1513.233652 +1513.347704 +1513.468550 +1513.597887 +1513.764587 +1513.880404 +1514.018466 +1514.029821 +1514.104580 +1514.128656 +1514.177074 +1514.353697 +1514.419598 +1514.470047 +1514.519065 +1514.583400 +1514.806977 +1514.922261 +1514.998185 +1515.116900 +1515.183000 +1515.235481 +1515.296387 +1515.354029 +1515.435614 +1515.547369 +1515.619597 +1515.688561 +1515.791358 +1515.933682 +1516.044371 +1516.135280 +1516.292090 +1516.423792 +1516.481734 +1516.678137 +1516.830018 +1517.224623 +1517.452029 +1517.527354 +1517.575306 +1517.613734 +1517.686561 +1517.770044 +1517.796651 +1517.822924 +1517.867347 +1517.958622 +1518.129384 +1518.198815 +1518.240007 +1518.370010 +1518.607173 +1518.663316 +1518.806473 +1518.978468 +1519.060086 +1519.121857 +1519.357588 +1519.451561 +1519.563615 +1519.807305 +1519.849895 +1519.913332 +1519.962549 +1520.351726 +1520.420025 +1520.516695 +1520.595416 +1520.683461 +1520.771773 +1520.862715 +1520.945732 +1520.994683 +1521.156388 +1521.243001 +1521.357619 +1521.734242 +1521.921422 +1521.930912 +1522.184791 +1522.262114 +1522.383026 +1522.680262 +1522.847528 +1522.921920 +1522.983226 +1523.183525 +1523.324551 +1523.387488 +1523.461047 +1523.576898 +1523.722486 +1523.813927 +1523.947527 +1524.470437 +1524.559648 +1524.629744 +1524.698908 +1524.716224 +1524.948891 +1525.092081 +1525.569337 +1525.753053 +1525.855151 +1525.975197 +1526.211228 +1526.385387 +1526.550455 +1526.791081 +1527.024514 +1527.154084 +1527.230208 +1527.312126 +1527.437933 +1527.788249 +1528.030007 +1528.152784 +1528.270333 +1528.460010 +1528.513090 +1528.596307 +1528.673063 +1528.796007 +1528.881854 +1529.013989 +1529.112723 +1529.114655 +1529.211857 +1529.499969 +1529.648653 +1529.740062 +1529.882253 +1530.060508 +1530.154014 +1530.319615 +1530.579222 +1530.727141 +1530.897703 +1531.036098 +1531.172195 +1531.547320 +1531.645555 +1531.807692 +1532.151382 +1532.613719 +1532.864201 +1532.908857 +1533.005194 +1533.163435 +1533.388976 +1533.500831 +1533.556142 +1533.677587 +1533.732199 +1533.901330 +1533.952046 +1534.037394 +1534.423008 +1534.530700 +1534.699631 +1534.835262 +1535.167363 +1535.283413 +1535.506223 +1535.601495 +1535.785810 +1535.855274 +1535.968993 +1536.106223 +1536.203725 +1536.322240 +1536.323106 +1536.461068 +1536.518244 +1536.666562 +1536.693335 +1536.703625 +1536.769492 +1536.846182 +1536.954607 +1537.079149 +1537.164397 +1537.256771 +1537.386241 +1537.544350 +1537.673354 +1537.695166 +1537.774386 +1537.859901 +1537.989471 +1538.056204 +1538.153207 +1538.508451 +1538.609450 +1538.805154 +1539.143815 +1539.276583 +1539.457801 +1539.526799 +1539.638587 +1539.858234 +1540.074850 +1540.314943 +1540.476748 +1540.609448 +1540.774916 +1541.008349 +1541.088236 +1541.208349 +1541.571152 +1541.700456 +1541.800423 +1541.847676 +1541.970553 +1542.074915 +1542.075880 +1542.386536 +1542.581907 +1542.711344 +1542.796226 +1542.885637 +1542.931291 +1543.028094 +1543.179010 +1543.327128 +1543.371084 +1543.415073 +1543.504983 +1543.614673 +1544.243278 +1544.370051 +1544.409145 +1544.502485 +1544.513174 +1544.592728 +1544.690830 +1544.802151 +1544.828625 +1544.852967 +1544.904316 +1545.011509 +1545.178741 +1545.230256 +1545.383869 +1545.437582 +1545.570049 +1545.653732 +1545.735284 +1545.852900 +1545.940912 +1546.108211 +1546.282536 +1546.347438 +1546.652499 +1546.771480 +1546.806745 +1546.912006 +1546.990927 +1547.056129 +1547.219165 +1547.635382 +1547.772212 +1547.915069 +1548.012538 +1548.027589 +1548.084766 +1548.160057 +1548.236414 +1548.346637 +1548.413736 +1548.480403 +1548.583633 +1548.676640 +1548.753330 +1548.856127 +1548.936047 +1548.973076 +1549.031784 +1549.107508 +1549.243872 +1549.379636 +1549.509306 +1549.579203 +1549.715833 +1549.809739 +1549.953095 +1550.050032 +1550.107574 +1550.244803 +1550.331783 +1550.526188 +1550.664250 +1550.750597 +1550.860554 +1550.895352 +1551.046401 +1551.289491 +1551.346501 +1551.394219 +1551.446767 +1551.716896 +1551.783397 +1552.007572 +1552.138008 +1552.266113 +1552.322324 +1552.339806 +1552.412866 +1552.436143 +1552.501411 +1552.589889 +1552.751761 +1552.887458 +1553.018793 +1553.114364 +1553.286059 +1553.443468 +1553.577268 +1553.631147 +1553.739339 +1553.810834 +1553.929915 +1553.993817 +1554.055955 +1554.138472 +1554.235309 +1554.411266 +1554.483927 +1554.558885 +1554.697313 +1554.822754 +1554.877000 +1554.931845 +1554.992418 +1555.079364 +1555.164812 +1555.244365 +1555.299211 +1555.378931 +1555.622487 +1555.692650 +1555.906936 +1555.976599 +1556.177498 +1556.319423 +1556.417991 +1556.462413 +1556.512663 +1556.560581 +1556.627148 +1556.703971 +1556.789286 +1556.949459 +1557.072436 +1557.263911 +1557.368473 +1557.418156 +1557.484923 +1557.543864 +1557.648792 +1557.688452 +1557.749524 +1557.976497 +1558.051855 +1558.101805 +1558.166707 +1558.249224 +1558.309297 +1558.339301 +1558.426247 +1558.502804 +1558.551155 +1558.618122 +1558.676230 +1558.740766 +1558.861178 +1558.934871 +1558.978761 +1559.037901 +1559.097142 +1559.193313 +1559.343296 +1559.588883 +1559.643096 +1559.702436 +1559.729975 +1559.805633 +1559.935203 +1560.007930 +1560.085653 +1560.141297 +1560.197707 +1560.267504 +1560.334637 +1560.397873 +1560.564340 +1560.575962 +1560.631107 +1560.736901 +1560.826811 +1560.880923 +1560.966438 +1561.106697 +1561.322581 +1561.393410 +1561.467236 +1561.498738 +1561.587349 +1561.626077 +1561.695275 +1561.700303 +1562.014255 +1562.082654 +1562.187482 +1562.382287 +1562.586816 +1562.665770 +1562.783386 +1562.976559 +1563.093342 +1563.184084 +1563.211224 +1563.347721 +1563.560474 +1563.728473 +1563.833468 +1563.896305 +1564.033201 +1564.115985 +1564.191643 +1564.381952 +1564.523077 +1564.637130 +1564.823310 +1565.020446 +1565.097236 +1565.229137 +1565.301898 +1565.423509 +1565.476456 +1565.676390 +1565.727538 +1565.797768 +1565.856243 +1565.921278 +1565.982883 +1566.116882 +1566.176356 +1566.362636 +1566.429736 +1566.512486 +1566.648550 +1566.739392 +1566.793438 +1566.831034 +1566.998200 +1567.119978 +1567.611286 +1567.874023 +1567.936527 +1568.025805 +1568.229234 +1568.369261 +1568.494935 +1568.580150 +1568.655940 +1568.705158 +1568.755174 +1568.921908 +1569.002194 +1569.212117 +1569.282979 +1569.356239 +1569.438357 +1569.585377 +1569.685077 +1569.884511 +1569.938490 +1570.012616 +1570.215180 +1570.415246 +1570.466362 +1570.549212 +1570.599628 +1570.769625 +1570.869591 +1570.936657 +1570.987273 +1571.037390 +1571.098362 +1571.137490 +1571.141885 +1571.197297 +1571.242851 +1571.294766 +1571.445148 +1571.532161 +1571.583643 +1571.673154 +1571.806021 +1572.037422 +1572.060599 +1572.129364 +1572.292966 +1572.418274 +1572.504721 +1572.617542 +1572.734824 +1572.842983 +1572.938587 +1572.984607 +1573.121171 +1573.152073 +1573.226332 +1573.268690 +1573.333392 +1573.410415 +1573.553105 +1573.640518 +1573.707650 +1573.840884 +1573.920171 +1573.990401 +1574.176847 +1574.319305 +1574.395395 +1574.453071 +1574.536521 +1574.576447 +1574.773583 +1574.917939 +1574.991665 +1575.065957 +1575.123666 +1575.254802 +1575.279111 +1575.329660 +1575.404951 +1575.470619 +1575.523966 +1575.617505 +1575.688068 +1575.859696 +1575.915274 +1576.001288 +1576.064624 +1576.110412 +1576.194927 +1576.257831 +1576.312510 +1576.382373 +1576.474581 +1576.531124 +1576.594794 +1576.653635 +1576.749239 +1576.795360 +1576.903684 +1577.120800 +1577.209778 +1577.373448 +1577.545176 +1577.608213 +1577.654333 +1577.729824 +1577.803450 +1578.067286 +1578.102118 +1578.238315 +1578.418834 +1578.461891 +1578.558461 +1578.681405 +1578.769417 +1578.970449 +1579.044242 +1579.129623 +1579.186766 +1579.430988 +1579.540145 +1579.635383 +1579.652167 +1579.715370 +1579.761524 +1579.893858 +1579.908343 +1580.383368 +1580.456661 +1580.527057 +1580.597054 +1580.754097 +1580.910940 +1580.954396 +1581.012771 +1581.075675 +1581.201882 +1581.247936 +1581.330120 +1581.387063 +1581.523194 +1581.662021 +1581.797286 +1582.023659 +1582.133683 +1582.224791 +1582.343339 +1582.398118 +1582.705377 +1582.755294 +1582.991124 +1583.050731 +1583.088760 +1583.179536 +1583.253528 +1583.274607 +1583.527954 +1583.852728 +1583.923957 +1583.988826 +1584.189858 +1584.243404 +1584.304443 +1584.431549 +1584.582365 +1584.650030 +1584.711003 +1584.884962 +1585.185295 +1585.350962 +1585.470376 +1585.658454 +1585.788158 +1585.843502 +1585.915530 +1585.968710 +1586.076436 +1586.104741 +1586.163249 +1586.223855 +1586.396316 +1586.445733 +1586.571074 +1586.709136 +1586.754291 +1587.032412 +1587.089788 +1587.254989 +1587.455655 +1587.576667 +1587.766877 +1588.115761 +1588.291519 +1588.546830 +1588.606836 +1588.673003 +1588.732710 +1588.871904 +1588.936972 +1588.962880 +1588.980829 +1589.011798 +1589.098078 +1589.220256 +1589.371537 +1589.570871 +1589.639636 +1589.855020 +1589.955087 +1590.116692 +1590.511030 +1590.597077 +1590.637004 +1590.678729 +1590.789551 +1591.035272 +1591.054886 +1591.090717 +1591.177729 +1591.222451 +1591.277796 +1591.315924 +1591.593813 +1591.686687 +1591.755618 +1591.844329 +1592.001638 +1592.140333 +1592.239300 +1592.432773 +1592.500938 +1592.582157 +1592.697808 +1592.814924 +1592.978960 +1593.092413 +1593.128776 +1593.415057 +1593.483055 +1593.575230 +1593.669802 +1593.753884 +1593.808563 +1593.919918 +1593.993611 +1594.044360 +1594.143094 +1594.144660 +1594.214090 +1594.315622 +1594.367603 +1594.415888 +1594.476394 +1594.628242 +1594.799371 +1594.855348 +1594.900636 +1594.938931 +1595.081422 +1595.405098 +1595.627742 +1595.716020 +1595.768634 +1595.987215 +1596.387448 +1596.560242 +1596.658710 +1596.784550 +1596.847787 +1596.887148 +1596.974993 +1597.129372 +1597.354014 +1597.423178 +1597.528406 +1597.590777 +1597.782252 +1597.917316 +1598.219547 +1598.570962 +1598.644289 +1598.695271 +1598.775258 +1598.899067 +1598.993239 +1599.133133 +1599.256809 +1599.298034 +1599.347252 +1599.492173 +1599.556276 +1599.767231 +1600.101430 +1600.187544 +1600.284813 +1600.556575 +1600.581783 +1600.653811 +1600.890640 +1600.981050 +1601.133897 +1601.227769 +1601.346983 +1601.507023 +1601.613084 +1601.832131 +1601.833063 +1601.899031 +1602.170592 +1602.252377 +1602.379550 +1602.436559 +1602.514681 +1602.718610 +1602.795900 +1602.914781 +1603.024837 +1603.174121 +1603.249346 +1603.547547 +1603.760501 +1603.826401 +1603.916878 +1604.122771 +1604.299461 +1604.418376 +1604.505255 +1604.597796 +1604.667659 +1604.707919 +1604.754273 +1604.885375 +1604.966061 +1605.043683 +1605.111082 +1605.306054 +1605.424568 +1605.518075 +1605.747279 +1605.844714 +1605.925400 +1605.998927 +1606.073219 +1606.111314 +1606.594564 +1606.659965 +1606.760764 +1606.868556 +1606.940651 +1606.995096 +1607.257667 +1607.352738 +1607.410381 +1607.541649 +1607.637620 +1607.734256 +1607.776880 +1607.799025 +1607.865092 +1607.939185 +1607.941882 +1607.983807 +1607.988036 +1608.108448 +1608.209381 +1608.399724 +1608.655368 +1608.870086 +1609.000389 +1609.164858 +1609.340915 +1609.431957 +1609.796692 +1610.181340 +1610.278043 +1610.473881 +1610.739315 +1610.818402 +1610.946008 +1611.241279 +1611.373147 +1611.480373 +1611.666587 +1611.984702 +1612.129856 +1612.234019 +1612.570149 +1612.750269 +1612.905746 +1613.009576 +1613.224827 +1613.917300 +1614.756760 +1614.840043 +1614.885864 +1615.044139 +1615.169647 +1615.330652 +1615.468781 +1618.857788 +1620.139239 +1620.609002 +1621.078898 +1622.274601 +1624.411629 +1624.630810 +1625.950988 +1626.571933 +1626.976994 +1627.131606 +1628.145891 +1628.454549 +1629.104864 +1629.216020 +1629.323812 +1629.752782 +1630.048686 +1630.238330 +1630.292376 +1630.332735 +1630.804097 +1630.914386 +1631.149784 +1631.783050 +1632.230369 +1633.210555 +1633.295236 +1635.113883 +1635.126437 +1636.594501 +1636.940254 +1637.052475 +1637.304590 +1637.470390 +1637.987673 +1638.061099 +1638.457336 +1638.610183 +1638.728731 +1638.850775 +1639.426499 +1639.796962 +1640.020804 +1640.125799 +1640.128496 +1640.475482 +1640.580644 +1640.956601 +1641.046178 +1641.366590 +1641.643147 +1642.800022 +1643.133355 +1643.923997 +1644.152402 +1644.250004 +1644.609344 +1645.023363 +1647.211406 +1647.328156 +1647.372046 +1647.585598 +1647.633118 +1648.939177 +1649.835679 +1651.774172 +1651.827552 +1652.243003 +1652.382031 +1652.445500 +1652.527885 +1652.554791 +1653.084394 +1653.602409 +1654.210767 +1655.290852 +1655.533309 +1655.833043 +1655.904172 +1656.265543 +1656.483925 +1656.898143 +1657.783923 +1657.840700 +1658.341232 +1659.056050 +1659.454085 +1659.627345 +1660.218087 +1660.421616 +1661.329607 +1661.419784 +1661.639997 +1661.887682 +1661.967735 +1662.120283 +1662.323013 +1663.622479 +1663.724943 +1663.968732 +1664.207260 +1665.766599 +1666.350548 +1667.050447 +1667.786844 +1667.924006 +1668.912517 +1669.958104 +1672.901058 +1674.339052 +1674.396561 +1674.514609 +1674.552604 +1674.838552 +1674.993030 +1675.087036 +1675.119937 +1675.336387 +1675.680775 +1675.923699 +1676.048940 +1676.091631 +1676.112943 +1677.738715 +1677.982238 +1678.493560 +1678.692394 +1678.740979 +1678.941778 +1679.125294 +1679.209043 +1680.188929 +1680.711673 +1680.840777 +1680.908609 +1680.956894 +1681.005112 +1681.043074 +1681.142608 +1681.192691 +1682.322360 +1683.469246 +1683.768080 +1683.862885 +1684.616031 +1684.933247 +1685.844135 +1685.951128 +1685.974771 +1686.075670 +1686.309902 +1687.656288 +1687.951792 +1689.553555 +1689.862080 +1689.893515 +1690.059882 +1690.194214 +1691.058848 +1691.133141 +1691.137503 +1691.309964 +1691.539301 +1691.836603 +1694.133404 +1694.137500 +1694.260777 +1694.545358 +1694.718385 +1694.799970 +1694.995408 +1696.020448 +1696.097172 +1696.305829 +1696.474494 +1696.520281 +1697.102932 +1697.467400 +1697.591010 +1697.639961 +1698.684382 +1698.854045 +1699.105027 +1699.299499 +1699.921843 +1699.973059 +1700.845685 +1700.967397 +1701.218678 +1701.225571 +1703.157005 +1703.269958 +1704.226767 +1704.267526 +1704.519641 +1705.295597 +1705.425334 +1705.676649 +1706.317241 +1706.411913 +1706.799758 +1707.027364 +1707.120471 +1707.253438 +1707.640983 +1707.837952 +1707.884506 +1707.956267 +1708.023433 +1708.238485 +1708.555834 +1708.804019 +1708.862460 +1708.891098 +1708.955334 +1709.026663 +1709.125231 +1709.271717 +1709.724198 +1709.972016 +1710.237983 +1710.352202 +1710.392629 +1710.455033 +1710.502585 +1710.669118 +1710.750037 +1710.902385 +1710.976910 +1711.061559 +1711.182604 +1711.472980 +1711.840746 +1712.141578 +1712.231721 +1712.362157 +1712.476376 +1712.571647 +1712.680871 +1712.929922 +1713.190295 +1713.287098 +1713.486365 +1713.527491 +1713.962655 +1714.127590 +1714.185265 +1714.192192 +1714.366484 +1714.612738 +1714.807043 +1715.289693 +1715.398484 +1715.680369 +1715.843439 +1715.986396 +1716.005044 +1716.111770 +1716.208540 +1716.463751 +1716.697950 +1716.781467 +1716.954194 +1717.086128 +1717.146035 +1717.237177 +1717.783297 +1717.848998 +1717.954393 +1718.075771 +1718.177170 +1719.434911 +1719.450562 +1719.558487 +1719.886159 +1720.481996 +1720.740370 +1720.867310 +1720.878565 +1721.069108 +1721.221089 +1721.659750 +1721.783793 +1721.912364 +1722.023153 +1722.128581 +1722.361181 +1722.774334 +1722.855187 +1722.940202 +1723.026948 +1723.134774 +1723.285822 +1723.406768 +1723.512229 +1723.698143 +1723.847760 +1723.930177 +1724.030777 +1724.341133 +1724.544995 +1725.004602 +1725.156616 +1725.329344 +1725.452087 +1725.519087 +1725.656649 +1725.802736 +1725.889083 +1726.114125 +1726.292280 +1726.653252 +1726.720384 +1726.866172 +1726.995409 +1727.310094 +1727.444493 +1727.658812 +1727.868702 +1727.872231 +1727.924479 +1728.051885 +1728.224412 +1728.807995 +1728.946489 +1729.035234 +1729.092044 +1729.191145 +1729.408993 +1729.669099 +1729.784284 +1729.897404 +1730.077457 +1730.685615 +1730.803164 +1730.865169 +1730.879921 +1730.953048 +1730.989078 +1731.018482 +1731.091109 +1731.222544 +1731.404263 +1731.542424 +1731.685581 +1731.892640 +1732.219513 +1732.424575 +1732.457075 +1732.491108 +1732.575224 +1732.649849 +1732.864368 +1733.193072 +1733.436628 +1733.661903 +1733.706225 +1733.758473 +1733.957274 +1734.261103 +1734.412185 +1734.964765 +1735.015548 +1735.054708 +1735.058638 +1735.140023 +1735.306490 +1735.436926 +1735.579250 +1735.713849 +1735.838291 +1736.030998 +1736.362333 +1736.433828 +1736.606821 +1736.791936 +1736.872256 +1736.996398 +1737.184610 +1737.254806 +1737.341020 +1737.414546 +1737.577317 +1737.678116 +1737.961366 +1738.190869 +1738.332661 +1738.516277 +1738.659134 +1738.825367 +1738.969823 +1739.122303 +1739.284907 +1739.395330 +1740.187004 +1740.339052 +1740.506251 +1740.599991 +1740.856967 +1741.194229 +1741.379344 +1741.467523 +1741.577945 +1741.638019 +1741.709980 +1741.808648 +1742.103220 +1742.223932 +1742.690165 +1742.813275 +1742.969519 +1743.263858 +1743.560627 +1743.623864 +1743.784170 +1743.909545 +1744.001253 +1744.295359 +1744.598788 +1744.680939 +1744.717669 +1744.886600 +1744.961991 +1745.022930 +1745.191961 +1745.496157 +1745.669483 +1745.871314 +1745.983502 +1746.016336 +1746.035517 +1746.076409 +1746.164421 +1746.230422 +1746.367551 +1746.512006 +1746.684600 +1746.815836 +1747.011007 +1747.137014 +1747.253664 +1747.273078 +1747.330654 +1747.402715 +1747.528522 +1747.723760 +1747.869914 +1748.211538 +1748.306177 +1748.459390 +1748.615401 +1748.673243 +1748.769180 +1748.923226 +1748.976340 +1749.024625 +1749.092856 +1749.257558 +1749.411571 +1749.555859 +1749.705709 +1750.273241 +1750.419861 +1750.519928 +1750.667280 +1750.864849 +1751.211535 +1751.687426 +1751.691322 +1751.780233 +1751.899347 +1752.011368 +1752.099014 +1752.349863 +1752.533179 +1752.610468 +1752.729849 +1752.908437 +1753.032746 +1753.228616 +1753.314930 +1753.445566 +1753.478000 +1753.562249 +1753.656455 +1753.720158 +1753.865312 +1754.383527 +1754.563447 +1754.697213 +1754.871405 +1754.875534 +1754.957719 +1755.133576 +1755.328115 +1755.495148 +1755.708967 +1755.836939 +1755.888987 +1755.945497 +1756.043698 +1756.233275 +1756.433908 +1756.539935 +1756.719256 +1756.920787 +1756.957351 +1757.028213 +1757.105136 +1757.161446 +1757.278895 +1757.364376 +1757.493580 +1757.529744 +1757.548925 +1757.606667 +1757.713927 +1758.010696 +1758.060779 +1758.348525 +1758.498741 +1758.618088 +1758.761378 +1758.802204 +1758.881291 +1758.923249 +1759.014025 +1759.042397 +1759.080858 +1759.181424 +1759.269569 +1759.426645 +1760.260244 +1760.348423 +1760.354716 +1760.368436 +1760.516721 +1760.593278 +1760.662408 +1760.721516 +1760.813857 +1761.028242 +1761.324246 +1761.848488 +1762.215454 +1762.254282 +1762.280256 +1762.368834 +1762.383552 +1762.415387 +1762.418251 +1762.558211 +1762.570066 +1762.689679 +1762.795273 +1762.911091 +1763.073129 +1763.213022 +1763.348386 +1763.772595 +1763.782951 +1763.798536 +1763.944423 +1763.977823 +1764.020880 +1764.031036 +1764.100933 +1764.189578 +1764.216418 +1764.373594 +1764.631602 +1764.757276 +1764.976357 +1765.043423 +1765.190776 +1765.349284 +1765.507292 +1765.708457 +1766.103762 +1766.161337 +1766.206525 +1766.278453 +1766.384014 +1766.520877 +1766.736095 +1766.902063 +1767.188076 +1767.339358 +1767.488342 +1767.567030 +1767.606457 +1767.693504 +1767.805425 +1767.907123 +1768.050746 +1768.176320 +1768.506756 +1768.761967 +1768.935627 +1768.977885 +1769.047448 +1769.052177 +1769.289606 +1769.362566 +1769.425303 +1769.690804 +1769.803891 +1769.932696 +1770.307221 +1770.433028 +1770.657770 +1770.714280 +1770.868992 +1771.018708 +1771.197196 +1771.283510 +1771.392301 +1771.442284 +1771.485574 +1771.597496 +1771.661065 +1771.795531 +1772.050342 +1772.171421 +1772.284108 +1772.399127 +1772.524701 +1772.711314 +1772.876182 +1772.941384 +1772.974617 +1773.155070 +1773.175949 +1773.180544 +1773.238720 +1773.265959 +1773.318140 +1773.357501 +1773.403788 +1773.530161 +1773.679079 +1773.819638 +1773.915475 +1773.974017 +1773.987503 +1774.032991 +1774.069022 +1774.135322 +1774.165525 +1774.294696 +1774.360930 +1774.436920 +1774.694662 +1774.831991 +1774.954036 +1775.071152 +1775.208348 +1775.302121 +1775.356533 +1775.422300 +1775.480176 +1775.613309 +1775.708514 +1775.820535 +1775.994528 +1776.213142 +1776.445976 +1776.578077 +1776.593262 +1776.686002 +1776.804717 +1776.857264 +1777.007480 +1777.233454 +1777.327060 +1777.552568 +1777.728525 +1777.874279 +1777.975844 +1778.031855 +1778.079840 +1778.172714 +1778.232687 +1778.356663 +1778.451302 +1778.629523 +1778.841678 +1778.990062 +1779.147904 +1779.241577 +1779.355663 +1779.439246 +1779.531221 +1779.799019 +1779.893225 +1779.988829 +1780.075143 +1780.184667 +1780.296721 +1780.425026 +1780.541909 +1780.623927 +1780.715136 +1780.952631 +1781.316301 +1781.349767 +1781.402448 +1781.485931 +1781.608641 +1781.667915 +1781.708208 +1781.742041 +1781.928255 +1782.029653 +1782.581035 +1782.837478 +1782.929219 +1782.988560 +1783.015699 +1783.066715 +1783.104144 +1783.151031 +1783.208773 +1783.281567 +1783.388659 +1783.557024 +1783.678669 +1783.790524 +1783.903444 +1784.028153 +1784.226454 +1784.270543 +1784.306341 +1784.474606 +1784.583563 +1784.695585 +1784.917762 +1785.523223 +1785.525520 +1785.577468 +1785.740072 +1785.741970 +1786.016462 +1786.118693 +1786.449163 +1786.727850 +1786.808936 +1786.849229 +1786.865479 +1786.952326 +1787.033344 +1787.099845 +1787.120191 +1787.193218 +1787.241037 +1787.300111 +1787.520790 +1788.054389 +1788.131978 +1788.386723 +1788.421388 +1788.565944 +1788.679830 +1788.786689 +1788.954621 +1789.163379 +1789.363046 +1789.586788 +1789.684091 +1789.769073 +1789.843198 +1789.859649 +1789.964377 +1790.141633 +1790.336305 +1790.589285 +1790.692815 +1790.859581 +1791.519554 +1791.554086 +1791.573067 +1791.835404 +1791.904435 +1792.025614 +1792.160845 +1792.285720 +1792.535903 +1792.705966 +1792.770368 +1792.823082 +1792.908963 +1792.962176 +1792.980292 +1793.275263 +1793.771033 +1793.874796 +1793.962475 +1794.068003 +1794.137400 +1794.621948 +1794.796940 +1794.878258 +1795.161009 +1795.290612 +1795.458411 +1795.639563 +1795.694375 +1795.742860 +1795.767868 +1795.855347 +1795.990911 +1796.160342 +1796.298004 +1796.433169 +1796.535100 +1796.656212 +1796.830671 +1796.930937 +1797.022945 +1797.064636 +1797.116018 +1797.244789 +1797.350850 +1797.420680 +1797.484949 +1797.637729 +1798.069697 +1798.170230 +1798.360306 +1798.496403 +1798.560606 +1798.639826 +1798.781418 +1798.942890 +1799.071528 +1799.242856 +1799.387112 +1799.529436 +1799.593838 +1799.736762 +1799.815783 +1799.974923 +1800.079219 +1800.254011 +1800.449715 +1800.527004 +1800.675056 +1800.804992 +1801.085778 +1801.216214 +1801.331632 +1801.635461 +1801.761601 +1801.855041 +1802.107189 +1802.414448 +1802.509519 +1802.551411 +1802.573056 +1802.575620 +1802.644884 +1802.723705 +1802.822040 +1802.947348 +1803.248946 +1803.389372 +1803.691936 +1803.786275 +1803.882279 +1803.974220 +1804.128898 +1804.231462 +1804.389238 +1804.815644 +1804.937855 +1804.969091 +1805.021338 +1805.033093 +1805.091601 +1805.115711 +1805.234159 +1805.420805 +1805.577748 +1805.718141 +1805.944081 +1806.097162 +1806.277648 +1806.372186 +1806.423968 +1806.538919 +1806.617674 +1806.733591 +1806.895063 +1807.304420 +1807.626830 +1807.744080 +1807.943014 +1808.203020 +1808.350339 +1808.541448 +1808.727395 +1808.845843 +1808.944478 +1809.105850 +1809.443312 +1809.687235 +1809.774247 +1809.873182 +1809.993295 +1810.239548 +1810.450171 +1810.607447 +1810.745342 +1811.315105 +1811.426194 +1812.267618 +1812.358394 +1812.513272 +1812.604581 +1812.646839 +1812.756795 +1812.970082 +1813.063788 +1813.616868 +1813.933018 +1813.985532 +1814.127490 +1814.293557 +1814.642408 +1814.887196 +1815.261421 +1815.329920 +1815.505677 +1815.822227 +1816.006209 +1816.115067 +1816.189692 +1816.243139 +1816.361054 +1816.453761 +1816.674740 +1817.254360 +1817.260787 +1817.344070 +1817.570310 +1817.796151 +1818.228884 +1818.273440 +1818.495018 +1818.607672 +1818.697182 +1818.763949 +1819.368677 +1820.779564 +1820.868575 +1820.958419 +1821.028382 +1821.099278 +1821.281795 +1821.461149 +1821.782194 +1821.921322 +1822.778963 +1822.806902 +1822.883825 +1822.893149 +1822.954387 +1823.962445 +1824.026448 +1824.163510 +1824.303670 +1824.396411 +1824.474532 +1824.739867 +1824.836803 +1824.954286 +1825.257582 +1825.280293 +1825.293346 +1825.376663 +1825.450555 +1825.617688 +1825.640232 +1825.691448 +1825.815990 +1825.945926 +1826.108097 +1826.256016 +1826.509662 +1826.532073 +1826.608763 +1826.611227 +1826.829875 +1826.954550 +1827.050154 +1827.756214 +1827.954949 +1827.966037 +1827.998039 +1828.050986 +1828.163207 +1828.218984 +1828.313523 +1828.364172 +1828.512091 +1828.814555 +1828.948088 +1829.046889 +1829.126909 +1829.134002 +1829.154215 +1829.190612 +1829.387548 +1829.588680 +1830.059542 +1830.288812 +1830.353414 +1830.438130 +1830.438929 +1830.507294 +1830.523311 +1830.933500 +1831.157976 +1831.401698 +1831.573160 +1831.688378 +1831.795937 +1831.918348 +1831.925108 +1832.077189 +1832.292074 +1832.386446 +1832.663602 +1832.728837 +1832.891141 +1833.191640 +1833.366765 +1833.479752 +1833.832532 +1833.913018 +1833.929668 +1834.211652 +1834.300197 +1834.425538 +1834.516813 +1835.050579 +1835.326769 +1835.379150 +1835.415281 +1835.517578 +1835.555407 +1835.595634 +1835.636126 +1835.690272 +1835.696566 +1835.747082 +1835.817844 +1835.870558 +1836.029366 +1836.186709 +1836.266595 +1836.371191 +1836.472123 +1836.571956 +1836.755406 +1836.817744 +1836.949012 +1837.029298 +1837.305688 +1837.477250 +1837.726334 +1837.832628 +1837.868592 +1837.981312 +1838.055271 +1838.143017 +1838.169757 +1838.195165 +1838.230463 +1838.231262 +1838.301458 +1838.429663 +1838.596197 +1838.693799 +1838.780579 +1838.921904 +1838.988737 +1839.073819 +1839.207118 +1839.217375 +1839.253006 +1839.375916 +1839.674351 +1839.746978 +1839.955802 +1840.358466 +1840.436221 +1840.482076 +1840.543747 +1840.581776 +1840.671586 +1840.704653 +1840.757633 +1840.854436 +1840.928562 +1840.977513 +1841.038419 +1841.187869 +1841.316107 +1842.064691 +1842.299756 +1842.392663 +1842.931191 +1843.162459 +1843.247974 +1843.491363 +1843.708279 +1843.868719 +1844.025828 +1844.118036 +1844.282371 +1844.413474 +1844.653134 +1844.858362 +1845.121798 +1845.176576 +1845.206513 +1845.243509 +1845.292360 +1845.403949 +1845.478374 +1845.673745 +1845.786499 +1845.966219 +1846.084101 +1846.198587 +1846.287731 +1846.414937 +1846.524261 +1846.606945 +1846.668949 +1846.774410 +1846.972079 +1847.266018 +1847.357194 +1847.534649 +1847.780836 +1847.886697 +1847.958658 +1848.143806 +1848.279670 +1848.392757 +1848.477372 +1848.547602 +1848.736380 +1848.836180 +1848.941641 +1849.010439 +1849.122260 +1849.250432 +1849.551963 +1849.643139 +1849.686828 +1849.852129 +1849.919296 +1849.985662 +1850.078203 +1850.188493 +1850.786028 +1850.935745 +1851.037976 +1851.112035 +1851.181665 +1851.259521 +1851.265115 +1851.403110 +1851.550663 +1851.676770 +1851.798082 +1851.913433 +1852.155757 +1852.247765 +1852.330049 +1852.376036 +1852.421757 +1852.425154 +1852.547098 +1852.637741 +1852.811167 +1852.897648 +1853.127784 +1853.283861 +1853.418526 +1853.512898 +1853.605672 +1853.663381 +1853.699711 +1853.785159 +1854.043001 +1854.390620 +1854.483027 +1854.546530 +1854.689854 +1854.749794 +1854.939504 +1855.026184 +1855.078331 +1855.213596 +1855.301075 +1855.616293 +1855.740568 +1855.864278 +1856.401407 +1856.566442 +1856.738703 +1856.870671 +1857.174067 +1857.450457 +1857.575931 +1857.713227 +1857.850090 +1858.244895 +1858.362411 +1858.554252 +1858.743596 +1858.999073 +1859.098274 +1859.166339 +1859.548723 +1859.654551 +1859.766172 +1860.081923 +1860.623714 +1860.798406 +1860.844792 +1860.898306 +1861.073663 +1861.187350 +1861.311392 +1861.511692 +1861.726510 +1861.832803 +1861.899936 +1862.146023 +1862.264471 +1862.296040 +1862.369699 +1862.473196 +1862.585017 +1862.776559 +1862.939995 +1863.141127 +1863.229938 +1863.302432 +1863.395672 +1863.477191 +1863.727807 +1864.162272 +1864.286714 +1864.393906 +1864.638928 +1864.686580 +1864.705828 +1864.784049 +1864.848784 +1864.916317 +1865.037396 +1865.350449 +1865.490842 +1865.755743 +1865.898267 +1866.167464 +1866.234298 +1866.310088 +1866.402463 +1866.559539 +1866.666298 +1866.821943 +1866.869628 +1866.947550 +1867.046551 +1867.313650 +1867.395269 +1867.740457 +1868.634229 +1869.073489 +1870.531296 +1870.582911 +1870.619142 +1870.659401 +1870.686940 +1870.841253 +1872.016077 +1872.160299 +1874.897426 +1875.331991 +1875.651837 +1875.927661 +1876.299256 +1876.914007 +1877.149738 +1877.242312 +1877.806480 +1877.941112 +1879.498786 +1879.579439 +1879.763588 +1880.702981 +1880.749102 +1880.980237 +1882.430419 +1882.512170 +1882.730185 +1885.795317 +1886.464414 +1886.591154 +1886.886591 +1886.893251 +1887.993417 +1888.127616 +1888.149227 +1888.166344 +1888.513663 +1889.434807 +1889.471038 +1889.613528 +1890.500540 +1890.540500 +1891.079894 +1891.412960 +1891.625148 +1892.338501 +1892.500538 +1892.707964 +1892.838034 +1893.144261 +1893.535536 +1894.241063 +1894.377793 +1894.653716 +1894.898538 +1895.208195 +1895.427508 +1896.166169 +1896.328174 +1896.458410 +1896.971330 +1897.459474 +1897.749884 +1897.983050 +1898.274758 +1898.291175 +1898.833965 +1898.913552 +1899.134598 +1899.230335 +1899.259639 +1899.487977 +1899.801064 +1900.181983 +1901.336827 +1901.987475 +1902.186942 +1902.445384 +1903.724337 +1904.075485 +1904.270856 +1905.404988 +1905.451508 +1906.177514 +1907.093697 +1907.576647 +1908.570752 +1908.744012 +1908.859663 +1909.038883 +1909.622732 +1909.627528 +1909.906215 +1909.958263 +1910.184237 +1910.983204 +1911.148538 +1911.390763 +1912.213739 +1912.396156 +1913.460657 +1913.849468 +1913.940111 +1914.615401 +1914.662721 +1914.753730 +1916.083998 +1916.317964 +1916.654793 +1916.873241 +1916.931816 +1917.237610 +1917.497949 +1918.616929 +1919.954623 +1920.097081 +1920.937773 +1921.037040 +1921.559317 +1921.717559 +1922.515294 +1922.578963 +1922.778297 +1922.938803 +1923.761912 +1924.112029 +1924.439134 +1925.085321 +1925.092547 +1925.367905 +1925.839832 +1926.600804 +1926.675363 +1926.686352 +1926.722982 +1927.052685 +1927.610227 +1927.610926 +1927.881222 +1928.027243 +1928.088049 +1928.151285 +1928.222947 +1928.464339 +1929.060076 +1929.095473 +1929.219682 +1929.334867 +1929.511191 +1929.597471 +1930.111690 +1930.799468 +1930.859108 +1930.960174 +1931.066401 +1931.151082 +1931.164003 +1931.282051 +1932.233033 +1932.485746 +1933.654876 +1933.817780 +1933.908023 +1934.026471 +1934.452378 +1934.994402 +1935.148081 +1936.354607 +1936.496032 +1936.801360 +1937.053374 +1937.059868 +1937.199561 +1937.284376 +1937.568925 +1938.575251 +1938.884941 +1939.378047 +1939.640951 +1939.968390 +1940.186638 +1940.534956 +1940.989534 +1941.153770 +1941.306417 +1941.779976 +1942.528360 +1942.782839 +1943.883804 +1945.071448 +1945.224295 +1945.361691 +1945.548337 +1945.645807 +1945.742343 +1946.156429 +1946.374810 +1947.303181 +1947.537280 +1947.675242 +1947.830719 +1948.121628 +1948.316700 +1948.715667 +1948.830952 +1948.917298 +1948.982933 +1949.298916 +1949.640075 +1950.129918 +1950.273707 +1950.433414 +1951.126820 +1951.275405 +1952.230082 +1952.316596 +1953.158153 +1953.180231 +1953.244334 +1953.490920 +1953.620124 +1953.846364 +1954.285725 +1955.212930 +1956.566708 +1957.319255 +1957.775198 +1957.822851 +1957.901305 +1958.063676 +1958.158981 +1959.365240 +1960.681822 +1961.062841 +1961.859843 +1961.948121 +1962.012956 +1962.197538 +1962.590212 +1962.879755 +1962.939396 +1962.966602 +1963.035832 +1963.190511 +1963.274760 +1963.282119 +1963.411823 +1963.691809 +1964.137463 +1964.197503 +1964.277090 +1964.341093 +1964.419647 +1964.497369 +1964.588711 +1964.807892 +1965.410023 +1965.497002 +1965.599866 +1965.699233 +1965.780918 +1966.009589 +1966.265133 +1966.579519 +1966.723042 +1966.864833 +1966.925839 +1966.978120 +1967.125639 +1967.627803 +1967.674889 +1967.750113 +1967.801495 +1967.878185 +1967.916847 +1967.947416 +1968.047216 +1968.396167 +1968.614681 +1968.795001 +1968.965430 +1968.995034 +1969.055074 +1969.114281 +1969.187741 +1969.270991 +1969.884877 +1969.959169 +1969.991104 +1970.182678 +1970.247780 +1970.321240 +1970.419042 +1970.826101 +1970.980879 +1971.110217 +1971.159767 +1971.225801 +1971.319008 +1971.430596 +1971.746180 +1972.208317 +1972.220971 +1972.267192 +1972.331461 +1972.408284 +1972.430428 +1972.484341 +1972.801823 +1973.103188 +1973.289535 +1973.352905 +1973.433191 +1973.456435 +1973.509415 +1973.706251 +1974.510346 +1974.634589 +1974.704585 +1974.758365 +1974.792131 +1974.906184 +1975.212943 +1975.438218 +1975.504851 +1975.521701 +1975.608614 +1975.682340 +1975.753635 +1975.817338 +1975.900388 +1976.033755 +1976.117071 +1976.399855 +1976.636918 +1976.744810 +1976.913508 +1977.011776 +1977.180207 +1977.265522 +1977.322432 +1977.383970 +1977.434053 +1977.485302 +1977.556231 +1977.609011 +1977.707579 +1977.820200 +1978.002418 +1978.393326 +1978.489930 +1978.575910 +1978.653166 +1978.900785 +1978.999819 +1979.132187 +1979.247471 +1979.429855 +1979.568716 +1979.686165 +1979.726525 +1979.728556 +1979.793292 +1979.868949 +1979.943708 +1980.036948 +1980.183701 +1980.286165 +1980.304413 +1980.376474 +1980.481969 +1980.518832 +1980.689761 +1981.110739 +1981.158925 +1981.165951 +1981.242175 +1981.325191 +1981.375741 +1981.480403 +1981.536680 +1981.596453 +1981.744638 +1981.858158 +1981.930252 +1982.245504 +1982.300482 +1982.302480 +1982.379503 +1982.436113 +1982.519496 +1982.581001 +1982.696552 +1982.796152 +1983.039376 +1983.198050 +1983.324424 +1983.400780 +1983.490391 +1983.511636 +1983.528985 +1983.727154 +1983.801080 +1983.899215 +1984.140340 +1984.285961 +1984.359487 +1985.005940 +1985.103110 +1985.180199 +1985.362850 +1985.567578 +1985.633279 +1985.770542 +1986.144101 +1986.251460 +1986.408903 +1986.493951 +1986.619492 +1986.668077 +1986.684627 +1986.720025 +1986.820391 +1986.882362 +1986.925752 +1986.978732 +1987.238905 +1987.362282 +1987.488122 +1987.588455 +1987.693983 +1987.759018 +1987.949461 +1988.028248 +1988.101309 +1988.160250 +1988.206337 +1988.364578 +1988.558451 +1988.687921 +1988.775367 +1988.845330 +1988.951224 +1989.000409 +1989.064744 +1989.114994 +1989.157651 +1989.226749 +1989.268906 +1989.312130 +1989.410831 +1989.632309 +1989.743798 +1989.958549 +1990.057950 +1990.195479 +1990.499674 +1990.573834 +1990.722618 +1990.823883 +1991.014992 +1991.205734 +1991.251489 +1991.259481 +1991.330976 +1991.355385 +1991.440932 +1991.502970 +1991.762410 +1991.922983 +1992.266972 +1992.562077 +1992.611161 +1992.687618 +1992.831007 +1992.877161 +1992.968969 +1992.980158 +1993.136535 +1993.207098 +1993.564873 +1993.894143 +1994.099071 +1994.148189 +1994.164439 +1994.207863 +1994.221948 +1994.244526 +1994.266937 +1994.352285 +1994.358645 +1994.391412 +1994.402767 +1994.472098 +1994.611059 +1994.997872 +1995.135101 +1995.290046 +1995.390479 +1995.565637 +1995.742227 +1995.784318 +1995.796306 +1995.810125 +1995.855380 +1995.871664 +1995.986848 +1996.079056 +1996.189013 +1996.237731 +1996.281054 +1996.339562 +1996.433168 +1996.597004 +1996.737863 +1996.873261 +1996.976391 +1997.185182 +1997.467433 +1997.516850 +1997.595072 +1997.664403 +1997.710556 +1997.760573 +1997.899967 +1998.305994 +1998.416117 +1998.490209 +1998.637595 +1998.726806 +1998.844588 +1999.459173 +1999.579952 +1999.816648 +1999.981949 +2000.129069 +2000.303794 +2000.503161 +2000.944752 +2001.115781 +2001.252078 +2001.462101 +2001.537093 +2001.703360 +2001.792237 +2001.989007 +2002.160402 +2002.290405 +2002.488707 +2002.533762 +2002.581381 +2002.626835 +2002.655307 +2002.728766 +2002.818477 +2003.203491 +2003.391237 +2003.582412 +2003.671190 +2003.688839 +2003.812049 +2004.183843 +2004.499894 +2004.549011 +2004.558402 +2004.567226 +2004.590603 +2004.653407 +2004.673087 +2004.776816 +2004.860999 +2005.111648 +2005.175084 +2005.242550 +2005.534624 +2005.609216 +2005.688371 +2005.701358 +2005.804488 +2005.859566 +2005.995630 +2006.065293 +2006.459199 +2006.683241 +2006.844680 +2006.872285 +2006.882076 +2006.901223 +2007.231659 +2007.389168 +2007.447576 +2007.534756 +2007.586237 +2007.617739 +2007.737852 +2007.768055 +2007.833390 +2007.875881 +2007.971885 +2008.063826 +2008.321668 +2008.454835 +2008.571651 +2008.622667 +2008.689466 +2008.894428 +2008.953669 +2009.000389 +2009.081474 +2009.136752 +2009.179076 +2009.527528 +2009.637917 +2009.746741 +2009.840048 +2009.959562 +2009.989399 +2010.008912 +2010.051270 +2010.111443 +2010.196525 +2010.248506 +2010.309511 +2010.381706 +2010.603417 +2010.654133 +2010.800054 +2010.872614 +2010.956797 +2011.054532 +2011.123264 +2011.286334 +2011.293526 +2011.395091 +2011.591661 +2011.704715 +2011.814605 +2011.964588 +2012.085101 +2012.178807 +2012.251834 +2012.348337 +2012.405580 +2012.479672 +2012.516103 +2012.544208 +2012.815570 +2012.923628 +2013.045373 +2013.255729 +2013.449069 +2013.614603 +2013.648203 +2013.702582 +2013.845405 +2013.852065 +2013.965019 +2014.030054 +2014.176074 +2014.267083 +2014.361988 +2014.473843 +2014.606377 +2014.736846 +2014.860856 +2014.966317 +2015.004245 +2015.087062 +2015.126157 +2015.287162 +2015.621694 +2015.795487 +2015.967015 +2016.033115 +2016.077404 +2016.147301 +2016.215833 +2016.266182 +2016.404843 +2016.494753 +2016.582732 +2016.668180 +2016.741973 +2016.977004 +2017.067547 +2017.238176 +2017.354526 +2017.476204 +2017.506341 +2017.530383 +2017.531016 +2017.621059 +2017.695218 +2017.724656 +2017.793520 +2017.798582 +2017.858488 +2018.108338 +2018.221791 +2018.506273 +2018.801411 +2018.968144 +2019.130748 +2019.229050 +2019.270375 +2019.505306 +2019.656389 +2019.770141 +2019.890321 +2020.166178 +2020.223221 +2020.253491 +2020.337740 +2020.410434 +2020.486857 +2020.629115 +2020.736441 +2020.805605 +2021.084626 +2021.335541 +2021.397512 +2021.469074 +2021.544865 +2021.690153 +2021.743533 +2021.815461 +2021.948461 +2022.018790 +2022.046063 +2022.081328 +2022.166443 +2022.352756 +2022.416725 +2022.492450 +2022.783525 +2022.875866 +2022.940967 +2023.022253 +2023.045563 +2023.202306 +2023.272402 +2023.323884 +2023.384024 +2023.596411 +2023.748126 +2023.800907 +2023.888952 +2024.009631 +2024.054653 +2024.103570 +2024.147160 +2024.181659 +2024.236737 +2024.519854 +2024.590583 +2024.681359 +2024.736570 +2024.786920 +2024.927312 +2025.048924 +2025.157382 +2025.254751 +2025.363809 +2025.554951 +2025.607398 +2025.622750 +2025.658048 +2025.728743 +2025.776695 +2025.792480 +2025.816023 +2025.849056 +2025.875263 +2025.947191 +2026.175130 +2026.419452 +2026.534137 +2026.630241 +2026.787917 +2026.827677 +2026.873597 +2026.937234 +2026.996308 +2027.036634 +2027.082022 +2027.221782 +2027.511825 +2027.640730 +2027.753617 +2027.900203 +2027.960842 +2028.007063 +2028.061175 +2028.117586 +2028.166437 +2028.248821 +2028.356779 +2028.483719 +2028.709893 +2028.865637 +2028.970765 +2029.053948 +2029.158743 +2029.294741 +2029.375227 +2029.448254 +2029.552216 +2029.624943 +2029.691310 +2029.785349 +2029.907294 +2030.007161 +2030.170997 +2030.287114 +2030.347453 +2030.398203 +2030.611556 +2030.722178 +2030.874659 +2030.967533 +2031.077423 +2031.255445 +2031.336097 +2031.373227 +2031.464202 +2031.540359 +2031.640626 +2031.757442 +2031.787778 +2031.876123 +2031.962836 +2032.336929 +2032.410622 +2032.471794 +2032.728570 +2032.790042 +2032.843455 +2032.916182 +2032.963302 +2033.011786 +2033.113818 +2033.166698 +2033.260438 +2033.343188 +2033.399565 +2033.511520 +2033.688842 +2033.806491 +2033.891073 +2034.181982 +2034.273490 +2034.361302 +2034.449581 +2034.572424 +2034.699530 +2034.814648 +2034.961901 +2035.002161 +2035.075321 +2035.141055 +2035.178651 +2035.345783 +2035.400762 +2035.534994 +2035.825537 +2035.882746 +2036.002626 +2036.092702 +2036.174088 +2036.233328 +2036.444017 +2036.561899 +2036.695832 +2036.791703 +2036.859435 +2036.940620 +2037.063897 +2037.223504 +2037.294966 +2037.352175 +2037.418542 +2037.486674 +2037.829963 +2038.069490 +2038.161398 +2038.281278 +2038.416077 +2038.530429 +2038.611315 +2038.689470 +2038.776349 +2038.887938 +2038.928697 +2039.144514 +2039.328930 +2039.476981 +2039.563561 +2039.619672 +2039.699992 +2039.769688 +2039.913511 +2039.993198 +2040.197027 +2040.368123 +2040.478845 +2040.553537 +2040.752605 +2040.924199 +2040.929028 +2041.103487 +2041.166157 +2041.271951 +2041.801521 +2041.876380 +2041.905484 +2041.971651 +2042.007515 +2042.247575 +2042.303985 +2042.387568 +2042.473049 +2042.578210 +2042.814907 +2043.047407 +2043.140015 +2043.184570 +2043.338483 +2043.478210 +2043.543145 +2043.575246 +2043.673847 +2043.810843 +2043.994859 +2044.175711 +2044.293360 +2044.601419 +2044.709144 +2044.810176 +2044.897755 +2044.965021 +2045.137815 +2045.257861 +2045.405813 +2045.538714 +2045.707678 +2045.940112 +2046.045440 +2046.100718 +2046.151867 +2046.189695 +2046.262156 +2046.354131 +2046.437347 +2046.589828 +2046.710341 +2046.896788 +2046.954896 +2046.983501 +2047.066884 +2047.139445 +2047.293024 +2047.375908 +2047.565152 +2047.656127 +2047.680070 +2047.759724 +2047.917732 +2048.062288 +2048.197119 +2048.316400 +2048.467149 +2048.543739 +2048.636779 +2048.695853 +2048.803512 +2048.906942 +2048.971211 +2049.033182 +2049.185963 +2049.261754 +2049.325523 +2049.367414 +2049.626022 +2049.776039 +2049.887461 +2049.953195 +2050.082932 +2050.168612 +2050.296651 +2050.491689 +2050.571842 +2050.650663 +2050.660886 +2050.675638 +2050.716298 +2050.789391 +2051.054626 +2051.194053 +2051.349597 +2051.414432 +2051.490656 +2051.602078 +2051.804575 +2051.898314 +2052.054691 +2052.082863 +2052.104108 +2052.142337 +2052.230482 +2052.299047 +2052.366512 +2052.439772 +2052.714064 +2052.860951 +2052.960851 +2053.070574 +2053.135809 +2053.301576 +2053.391253 +2053.508636 +2053.615862 +2053.745432 +2053.838039 +2053.921489 +2054.007936 +2054.109834 +2054.253523 +2054.299045 +2054.373836 +2054.522854 +2054.692218 +2055.009034 +2055.091984 +2055.157885 +2055.235207 +2055.273136 +2055.360948 +2055.578297 +2055.719290 +2055.819789 +2055.917791 +2056.020322 +2056.320754 +2056.415060 +2056.495945 +2056.651590 +2056.814560 +2057.052122 +2057.369737 +2057.500540 +2057.600673 +2057.646427 +2058.005101 +2058.208298 +2058.370835 +2058.555750 +2058.757582 +2059.000339 +2059.026579 +2059.048890 +2059.061144 +2059.105234 +2059.181124 +2059.245193 +2059.265107 +2059.294178 +2059.377994 +2059.731573 +2059.860045 +2059.910061 +2060.139765 +2060.236435 +2060.410960 +2060.509894 +2060.552851 +2060.587616 +2060.746990 +2060.895708 +2061.028808 +2061.123347 +2061.209993 +2061.525378 +2061.778391 +2061.923879 +2061.998904 +2062.034768 +2062.095074 +2062.139430 +2062.208028 +2062.264338 +2062.349020 +2062.434235 +2062.629905 +2062.844191 +2063.070431 +2063.224410 +2063.377457 +2063.756378 +2063.886348 +2064.008592 +2064.141126 +2064.206061 +2064.422877 +2064.575058 +2064.631369 +2064.717316 +2064.756810 +2064.807292 +2065.018281 +2065.062970 +2065.092740 +2065.136163 +2065.411188 +2065.473059 +2065.508957 +2065.613752 +2065.745220 +2065.839060 +2065.901664 +2066.173791 +2066.261770 +2066.306858 +2066.518180 +2066.671560 +2066.733031 +2066.790840 +2066.918945 +2066.993637 +2067.085046 +2067.152611 +2067.321609 +2067.556807 +2067.617513 +2068.072424 +2068.439390 +2068.544851 +2068.576353 +2068.615014 +2068.670259 +2068.816746 +2068.865131 +2069.018943 +2069.023672 +2069.208420 +2069.303758 +2069.726801 +2069.778316 +2069.789838 +2069.799162 +2069.884677 +2069.918776 +2070.040654 +2070.084976 +2070.087407 +2070.580180 +2070.858668 +2070.894832 +2070.948745 +2071.045615 +2071.143317 +2071.189271 +2071.277449 +2071.391035 +2071.506753 +2071.638488 +2071.780279 +2071.917076 +2071.973419 +2072.063462 +2072.239087 +2072.377748 +2072.420538 +2072.467525 +2072.527964 +2072.665460 +2072.799026 +2072.895896 +2073.087970 +2073.208383 +2073.281410 +2073.359199 +2073.434590 +2073.614377 +2073.876514 +2074.004186 +2074.139950 +2074.460829 +2074.669787 +2074.772218 +2074.843413 +2074.934189 +2075.017372 +2075.094362 +2075.220702 +2075.326230 +2075.394361 +2075.458198 +2075.588600 +2075.726596 +2075.793662 +2075.795626 +2075.864025 +2075.932356 +2075.994860 +2076.118004 +2076.204650 +2076.272482 +2076.384204 +2076.450005 +2076.535120 +2077.167520 +2077.335285 +2077.431422 +2077.555731 +2077.671848 +2077.813307 +2078.112574 +2078.198854 +2078.329457 +2078.440079 +2078.537249 +2078.570349 +2078.745041 +2079.063156 +2079.421863 +2079.493991 +2079.591727 +2079.723162 +2079.868483 +2079.980804 +2080.145139 +2080.226558 +2080.366018 +2080.540577 +2080.603747 +2080.690893 +2080.791226 +2080.799451 +2080.868215 +2080.970979 +2081.066917 +2081.127256 +2081.177672 +2081.246170 +2081.471845 +2081.574508 +2081.649633 +2081.727022 +2081.879203 +2081.972210 +2082.074874 +2082.180402 +2082.259456 +2082.357724 +2082.424558 +2082.568147 +2082.653195 +2082.749932 +2082.831583 +2083.029186 +2083.148000 +2083.189958 +2083.353195 +2083.420827 +2083.483498 +2083.569178 +2083.688293 +2083.757623 +2083.909471 +2084.086694 +2084.182598 +2084.265548 +2084.366047 +2084.512368 +2084.563350 +2084.671642 +2084.755990 +2084.828385 +2085.193619 +2085.308304 +2085.384062 +2085.447265 +2085.525587 +2085.575603 +2085.676669 +2085.785260 +2085.881397 +2086.029549 +2086.146931 +2086.337074 +2086.392119 +2086.628549 +2086.733877 +2086.894716 +2087.020723 +2087.062748 +2087.111899 +2087.260650 +2087.278266 +2087.349727 +2087.433810 +2087.483427 +2087.592018 +2087.928382 +2088.041069 +2088.167209 +2088.358518 +2088.489487 +2088.612630 +2088.712597 +2088.714861 +2088.810665 +2088.889952 +2088.966243 +2089.023985 +2089.030045 +2089.094681 +2089.210498 +2089.262280 +2089.324051 +2089.439402 +2089.526615 +2089.675932 +2089.823152 +2089.887853 +2089.995612 +2090.216857 +2090.318356 +2090.424816 +2090.488852 +2090.528545 +2090.548492 +2090.590184 +2090.651855 +2090.752888 +2090.897509 +2090.968072 +2091.066207 +2091.149557 +2091.216357 +2091.290816 +2091.355751 +2091.429877 +2091.483023 +2091.563243 +2091.676796 +2091.816922 +2091.890049 +2091.964908 +2092.077129 +2092.162643 +2092.414324 +2092.492746 +2092.543562 +2092.694144 +2092.842629 +2092.905633 +2092.962309 +2093.107064 +2093.166904 +2093.216322 +2093.330574 +2093.436967 +2093.491813 +2093.620384 +2093.698173 +2093.742728 +2093.806498 +2093.924679 +2094.102601 +2094.161043 +2094.213856 +2094.316154 +2094.366837 +2094.540629 +2094.602368 +2094.672897 +2094.714988 +2094.810892 +2094.880056 +2094.944625 +2094.971431 +2095.043126 +2095.096406 +2095.426143 +2095.496606 +2095.575127 +2095.637798 +2095.719882 +2095.856146 +2096.064471 +2096.222746 +2096.280654 +2096.307294 +2096.413521 +2096.520081 +2096.593008 +2096.719482 +2096.821613 +2096.921613 +2097.002099 +2097.052415 +2097.105262 +2097.181719 +2097.259574 +2097.322478 +2097.455378 +2097.611289 +2097.681752 +2097.769930 +2097.949484 +2098.220413 +2098.349916 +2098.564735 +2098.900399 +2098.985280 +2099.035963 +2099.085580 +2099.172160 +2099.297135 +2099.451480 +2099.788243 +2099.890774 +2099.959971 +2100.213484 +2100.287976 +2100.355875 +2100.480384 +2100.636394 +2100.719578 +2100.819910 +2101.336926 +2101.469327 +2101.576187 +2101.661102 +2101.726270 +2101.824205 +2101.893303 +2101.964964 +2102.141121 +2102.238157 +2102.350711 +2102.545783 +2102.782413 +2102.818676 +2102.915579 +2103.063298 +2103.131497 +2103.221440 +2103.304257 +2103.425635 +2103.491669 +2103.593734 +2103.757037 +2103.959734 +2104.013414 +2104.052375 +2104.065595 +2104.115611 +2104.157236 +2104.309684 +2104.348412 +2104.407486 +2104.498428 +2104.590603 +2104.653207 +2104.878681 +2105.057635 +2105.171554 +2105.239819 +2105.287638 +2105.301325 +2105.424934 +2105.513912 +2105.590702 +2105.720605 +2105.849709 +2105.995430 +2106.227631 +2106.314544 +2106.498626 +2106.540085 +2106.655869 +2106.716641 +2106.747477 +2106.820770 +2106.888403 +2107.025432 +2107.145612 +2107.272984 +2107.338852 +2107.395295 +2107.485272 +2107.625631 +2107.728495 +2107.834955 +2107.875481 +2107.887403 +2108.198824 +2108.260096 +2108.302354 +2108.352037 +2108.415541 +2108.491698 +2108.605983 +2108.722800 +2108.907715 +2108.994694 +2109.074248 +2109.197191 +2109.252603 +2109.301154 +2109.346109 +2109.410178 +2109.472749 +2109.537051 +2109.642512 +2109.740980 +2109.837983 +2109.912609 +2110.100421 +2110.175845 +2110.247140 +2110.420633 +2110.484236 +2110.579241 +2110.691462 +2110.860427 +2111.004116 +2111.165155 +2111.211908 +2111.320633 +2111.391628 +2111.473513 +2111.640945 +2111.713806 +2111.779273 +2111.969949 +2112.072680 +2112.169450 +2112.337981 +2112.497654 +2112.562689 +2112.580538 +2112.630355 +2112.754830 +2112.812239 +2112.869515 +2112.991294 +2113.300617 +2113.435948 +2113.572778 +2113.664886 +2113.702948 +2113.738446 +2113.825092 +2113.913570 +2113.987729 +2114.051266 +2114.097786 +2114.232085 +2114.316101 +2114.554895 +2114.674276 +2114.807709 +2114.931718 +2115.114901 +2115.155860 +2115.217831 +2115.434115 +2115.666283 +2115.837744 +2115.998184 +2116.135380 +2116.270644 +2116.417531 +2116.505942 +2116.654493 +2116.704477 +2116.775372 +2116.834380 +2117.005942 +2117.105409 +2117.495984 +2117.591422 +2117.868112 +2118.013933 +2118.092221 +2118.365281 +2118.523256 +2118.775404 +2118.920725 +2119.393951 +2119.885459 +2120.110700 +2120.179998 +2120.293351 +2120.421955 +2120.517327 +2120.648662 +2120.734476 +2120.810200 +2121.871338 +2121.961115 +2122.042200 +2122.122553 +2122.199709 +2122.481660 +2122.720954 +2122.882825 +2123.006035 +2123.238303 +2123.480727 +2123.953420 +2123.955618 +2124.069604 +2124.345861 +2124.447792 +2124.491782 +2124.540133 +2125.001072 +2125.312393 +2125.523316 +2125.822250 +2125.905666 +2125.951321 +2126.045193 +2126.553151 +2126.570035 +2127.620117 +2127.826743 +2128.177359 +2128.195774 +2128.255481 +2128.443359 +2128.914221 +2129.326109 +2129.665769 +2129.777124 +2129.857078 +2130.969198 +2131.104196 +2131.226740 +2131.673326 +2131.779720 +2132.126006 +2132.127305 +2132.712752 +2133.042755 +2133.088876 +2133.948915 +2134.424472 +2137.492102 +2138.087705 +2138.185707 +2138.267758 +2138.368824 +2138.495764 +2139.361863 +2139.730627 +2139.841816 +2139.845845 +2139.963061 +2140.219871 +2140.353038 +2141.835254 +2142.350738 +2142.405117 +2142.483772 +2142.581907 +2142.786735 +2143.285036 +2143.543045 +2143.768652 +2144.900186 +2145.085068 +2145.657028 +2145.937248 +2146.070581 +2146.174211 +2146.249669 +2146.354963 +2146.562555 +2146.794723 +2146.948869 +2147.080670 +2147.358159 +2147.607243 +2147.770246 +2148.606310 +2148.765051 +2148.895220 +2149.027721 +2149.297285 +2149.501047 +2150.071776 +2150.183930 +2150.404809 +2150.498016 +2150.775372 +2151.041772 +2151.707039 +2151.827485 +2154.709034 +2155.031078 +2156.169772 +2159.061311 +2159.368969 +2160.069102 +2160.563274 +2160.887416 +2161.043493 +2162.339296 +2163.887813 +2164.181619 +2164.620946 +2165.046053 +2165.644887 +2166.132100 +2166.167098 +2168.004559 +2169.221041 +2169.983078 +2170.086608 +2170.122405 +2170.328199 +2170.451842 +2170.546015 +2171.488271 +2173.306485 +2174.007450 +2174.568621 +2174.729960 +2175.498191 +2175.612976 +2176.175646 +2176.456964 +2177.441978 +2178.525194 +2178.585167 +2178.732453 +2178.950901 +2179.157428 +2179.281071 +2179.742908 +2179.885266 +2180.073378 +2180.576374 +2180.659957 +2180.936114 +2181.016600 +2181.106377 +2182.901014 +2182.920228 +2183.096052 +2183.139275 +2183.229119 +2183.324024 +2183.513201 +2183.597383 +2183.710337 +2184.435644 +2184.664648 +2184.749497 +2185.454491 +2185.590921 +2185.678334 +2185.823555 +2186.033045 +2186.294850 +2186.898879 +2187.041636 +2187.120157 +2187.310267 +2187.473537 +2187.547663 +2188.091252 +2188.472304 +2188.486023 +2188.542933 +2188.581061 +2188.675201 +2188.778431 +2189.765975 +2189.820354 +2189.908699 +2190.033907 +2190.368039 +2190.529311 +2190.658848 +2190.752921 +2190.755252 +2190.858815 +2190.942664 +2191.054486 +2191.320985 +2191.339400 +2191.386420 +2192.320252 +2192.458913 +2192.565839 +2192.632806 +2192.693845 +2192.988383 +2193.510494 +2193.591912 +2193.643427 +2193.689082 +2193.816920 +2193.963340 +2194.071665 +2194.130640 +2194.278358 +2194.458678 +2194.570233 +2194.675095 +2194.912424 +2195.475926 +2195.596672 +2195.690711 +2195.840095 +2195.903632 +2196.034734 +2196.218516 +2196.400201 +2196.512855 +2196.598969 +2196.705129 +2197.013487 +2197.646221 +2197.744789 +2197.795771 +2197.901765 +2198.248085 +2198.407392 +2198.722377 +2198.765733 +2198.871328 +2199.009556 +2199.036129 +2199.230668 +2199.418746 +2199.547884 +2199.669762 +2199.823208 +2199.997933 +2200.058439 +2200.131766 +2200.174190 +2200.222375 +2200.242122 +2200.366398 +2200.476887 +2200.911619 +2201.024539 +2201.103027 +2201.145185 +2201.312950 +2201.523007 +2201.661002 +2201.803359 +2201.918944 +2202.238091 +2202.329866 +2202.442653 +2202.903891 +2203.077517 +2203.195233 +2203.219342 +2203.311450 +2203.399928 +2203.667560 +2204.066194 +2204.127300 +2204.286474 +2204.531795 +2204.782710 +2204.898927 +2204.962064 +2205.041684 +2205.126666 +2205.190003 +2205.325867 +2205.593632 +2205.680245 +2205.915143 +2206.127098 +2206.208283 +2206.252639 +2206.347877 +2206.420904 +2206.566758 +2206.771653 +2206.896794 +2206.977180 +2207.040517 +2207.134922 +2207.298259 +2207.452638 +2207.555335 +2207.743014 +2207.811512 +2208.114808 +2208.347209 +2208.776945 +2208.933355 +2208.987268 +2209.069419 +2209.131257 +2209.446009 +2209.621666 +2209.732222 +2209.802186 +2209.872748 +2209.941080 +2210.071483 +2210.250604 +2210.317204 +2210.452701 +2210.503251 +2210.547173 +2210.608912 +2210.611975 +2210.716138 +2210.781439 +2210.874379 +2211.247273 +2211.354965 +2211.421831 +2211.499254 +2211.615537 +2211.680739 +2211.724262 +2211.792760 +2211.876676 +2212.007578 +2212.090062 +2212.122064 +2212.243575 +2212.340778 +2212.494191 +2212.592826 +2212.713438 +2212.753964 +2212.776109 +2213.006778 +2213.075309 +2213.311806 +2213.415003 +2213.479072 +2213.483001 +2213.551133 +2213.679571 +2213.914936 +2214.101116 +2214.173443 +2214.296254 +2214.446104 +2214.517732 +2214.631685 +2214.715867 +2214.790126 +2215.066616 +2215.146836 +2215.466915 +2215.565983 +2215.633315 +2215.846768 +2215.912902 +2215.999382 +2216.076472 +2216.150498 +2216.232416 +2216.316964 +2216.400448 +2216.488126 +2216.563351 +2216.653261 +2216.814300 +2216.895852 +2216.969678 +2217.022458 +2217.076371 +2217.176304 +2217.313467 +2217.384063 +2217.441439 +2217.529184 +2217.749863 +2218.081099 +2218.162817 +2218.348531 +2218.431947 +2218.585061 +2218.668444 +2218.835477 +2218.983262 +2219.124820 +2219.274304 +2219.384794 +2219.659086 +2219.693851 +2219.720358 +2219.814996 +2219.874470 +2219.976535 +2220.064247 +2220.124686 +2220.255788 +2220.434543 +2220.597813 +2220.781695 +2221.167309 +2221.251658 +2221.417625 +2221.674535 +2221.716959 +2221.857585 +2221.963379 +2222.107268 +2222.208234 +2222.265776 +2222.333342 +2222.609532 +2222.692582 +2222.809998 +2222.861780 +2222.947927 +2223.505102 +2223.611496 +2223.947360 +2224.029444 +2224.111196 +2224.331342 +2224.589817 +2224.873133 +2225.111261 +2225.271068 +2225.427412 +2225.837002 +2226.091547 +2226.223048 +2226.238267 +2226.249455 +2226.516488 +2226.558213 +2226.785186 +2226.810494 +2227.064506 +2227.310260 +2227.573363 +2227.680723 +2227.797373 +2227.894309 +2227.955947 +2228.174029 +2228.258744 +2228.483785 +2228.649353 +2228.752383 +2228.841694 +2228.927008 +2228.986049 +2229.072862 +2229.133369 +2229.165037 +2229.206096 +2229.251717 +2229.308393 +2229.421347 +2229.471930 +2229.519249 +2229.586282 +2229.651450 +2229.719782 +2229.797504 +2229.860341 +2229.977390 +2229.988379 +2230.026075 +2230.119115 +2230.265735 +2230.334266 +2230.429271 +2230.484683 +2230.585115 +2230.726307 +2230.785082 +2230.840660 +2230.912221 +2230.988578 +2231.069064 +2231.579686 +2231.667399 +2231.791508 +2231.868864 +2231.905294 +2232.050315 +2232.140192 +2232.384015 +2232.429702 +2232.472226 +2232.678620 +2232.750448 +2232.807924 +2233.091340 +2233.177687 +2233.252345 +2233.289142 +2233.336927 +2233.628935 +2233.695269 +2233.730500 +2234.021775 +2234.154343 +2234.238125 +2234.343720 +2234.410153 +2234.686210 +2234.830033 +2234.971358 +2235.088374 +2235.196399 +2235.331697 +2235.432963 +2235.479716 +2235.515713 +2235.535060 +2236.109053 +2236.169692 +2236.192402 +2236.264497 +2236.711849 +2237.034859 +2237.115911 +2237.180547 +2237.269558 +2237.329831 +2237.636490 +2237.717376 +2237.877449 +2237.946646 +2237.990103 +2238.040253 +2238.106786 +2238.172654 +2238.254905 +2238.420572 +2238.441917 +2238.482344 +2238.602057 +2238.641551 +2238.687472 +2238.736556 +2238.781344 +2238.808384 +2238.865993 +2238.934691 +2239.160465 +2239.205053 +2239.302323 +2239.366792 +2239.443049 +2239.634757 +2239.763661 +2239.921769 +2240.067190 +2240.326431 +2240.532958 +2240.630060 +2240.884039 +2240.943080 +2241.123633 +2241.167056 +2241.229860 +2241.388668 +2241.458298 +2241.514442 +2241.618804 +2241.681641 +2241.772450 +2241.851504 +2241.950971 +2242.096925 +2242.170785 +2242.231291 +2242.339782 +2242.425263 +2242.480641 +2242.518004 +2242.553202 +2242.677045 +2242.736086 +2242.807447 +2242.864324 +2243.053368 +2243.056531 +2243.070218 +2243.113141 +2243.184736 +2243.234553 +2243.334487 +2243.406781 +2243.519734 +2243.531356 +2243.654200 +2243.881006 +2243.959894 +2244.096224 +2244.166087 +2244.290496 +2244.381439 +2244.455731 +2244.564089 +2244.697855 +2244.890596 +2244.904881 +2244.935051 +2244.969383 +2244.981738 +2245.122031 +2245.249003 +2245.337548 +2245.603815 +2245.719066 +2245.796189 +2245.845906 +2245.869449 +2245.930921 +2246.010142 +2246.111607 +2246.153465 +2246.210974 +2246.303215 +2246.369515 +2246.416168 +2246.605412 +2246.667550 +2246.745439 +2246.801583 +2246.869681 +2247.063853 +2247.176907 +2247.247969 +2247.331186 +2247.478572 +2247.636480 +2247.676807 +2247.760589 +2247.945871 +2248.169613 +2248.291858 +2248.373276 +2248.413636 +2248.473209 +2248.624957 +2248.728787 +2248.815200 +2248.915766 +2248.984198 +2249.087295 +2249.154361 +2249.326089 +2249.350764 +2249.479735 +2249.594720 +2249.858589 +2249.922658 +2250.054560 +2250.245269 +2250.302278 +2250.377703 +2250.487327 +2250.554926 +2250.613234 +2250.623590 +2250.763883 +2250.843070 +2250.898348 +2250.962484 +2251.007672 +2251.102011 +2251.147599 +2251.208438 +2251.316363 +2251.361085 +2251.458121 +2251.535877 +2251.623056 +2251.691321 +2251.801777 +2251.909103 +2252.031381 +2252.102010 +2252.215430 +2252.260052 +2252.460285 +2252.501610 +2252.578567 +2252.683961 +2252.744700 +2252.800078 +2252.887391 +2253.043701 +2253.156022 +2253.255988 +2253.344200 +2253.487690 +2253.569641 +2253.681030 +2253.741835 +2253.881895 +2253.941003 +2254.337040 +2254.406603 +2254.608335 +2254.674235 +2254.738638 +2254.833210 +2254.926483 +2255.021221 +2255.072503 +2255.128181 +2255.199343 +2255.264411 +2255.371105 +2255.667674 +2255.768773 +2255.831510 +2255.922486 +2255.940734 +2255.969006 +2256.128113 +2256.405436 +2256.488486 +2256.574333 +2256.670570 +2256.774500 +2256.926947 +2257.071136 +2257.258116 +2257.258482 +2257.278562 +2257.636470 +2257.717423 +2257.795245 +2257.862078 +2257.930942 +2258.009197 +2258.201238 +2258.312760 +2258.355650 +2258.399407 +2258.529010 +2258.599007 +2258.652087 +2258.740265 +2259.087584 +2259.303735 +2259.423781 +2259.493078 +2259.579192 +2259.832072 +2260.089615 +2260.249621 +2260.278526 +2260.630040 +2261.013057 +2261.135368 +2261.310259 +2261.399836 +2262.017851 +2262.733735 +2262.883651 +2264.334133 +2264.801032 +2266.548816 +2267.066164 +2268.094369 +2271.380879 +2273.306884 +2274.738018 +2275.743279 +2275.818437 +2276.057264 +2276.153701 +2276.908046 +2277.379141 +2277.505048 +2278.670915 +2278.731388 +2279.741277 +2280.531586 +2280.810806 +2281.170080 +2282.151930 +2282.421927 +2283.802345 +2284.868145 +2286.022756 +2286.234510 +2286.372272 +2287.097313 +2287.645864 +2287.740136 +2287.918491 +2288.014762 +2288.420622 +2288.513462 +2288.783059 +2289.527114 +2291.896176 +2292.371800 +2293.921749 +2294.035968 +2294.483586 +2295.450652 +2295.470632 +2296.518583 +2296.543691 +2296.589112 +2297.196770 +2297.612121 +2297.945854 +2298.994771 +2299.121677 +2299.203428 +2299.944353 +2300.358306 +2300.432831 +2300.671392 +2300.691272 +2300.880250 +2301.204525 +2301.578617 +2301.980782 +2302.601194 +2302.778150 +2302.778749 +2302.811583 +2303.014347 +2303.648779 +2304.231462 +2304.274685 +2305.459066 +2306.250774 +2306.626231 +2306.889501 +2306.927530 +2307.968554 +2308.604118 +2309.799622 +2309.897857 +2310.116571 +2310.827359 +2311.154732 +2311.385334 +2312.294924 +2312.590861 +2312.678240 +2312.745007 +2314.965084 +2315.272310 +2315.369646 +2315.609706 +2315.850132 +2316.171410 +2316.506475 +2316.516664 +2316.573008 +2317.526454 +2317.596650 +2319.028550 +2319.189855 +2320.186025 +2320.343800 +2320.539471 +2320.820456 +2321.642467 +2321.796812 +2321.923685 +2322.768739 +2322.814494 +2324.441931 +2325.847591 +2327.609427 +2328.283985 +2329.073262 +2331.005694 +2331.077522 +2331.151548 +2331.206427 +2332.207491 +2332.296436 +2332.411221 +2333.246418 +2333.412785 +2333.556874 +2333.627470 +2333.764266 +2333.898499 +2334.708055 +2334.883679 +2334.995434 +2335.071991 +2335.189173 +2336.202359 +2336.222039 +2336.369658 +2336.463131 +2336.483344 +2336.583877 +2337.790203 +2337.929464 +2338.114112 +2338.281678 +2338.610948 +2339.082343 +2339.892066 +2340.022935 +2340.087736 +2340.209681 +2340.974149 +2341.211045 +2341.283373 +2341.389900 +2341.991897 +2342.294661 +2342.516938 +2342.708879 +2343.505182 +2343.637916 +2343.983903 +2344.043943 +2344.189864 +2344.434852 +2345.204481 +2345.217835 +2345.436882 +2345.479373 +2346.104680 +2346.115702 +2346.314537 +2346.469881 +2346.582835 +2347.298652 +2347.313237 +2347.429854 +2348.040010 +2349.105510 +2349.140974 +2349.305609 +2349.379802 +2350.008439 +2350.218529 +2350.320893 +2350.746400 +2351.019927 +2351.105774 +2351.396749 +2351.549164 +2351.640272 +2351.718894 +2352.765613 +2353.008669 +2353.218459 +2353.286391 +2353.366911 +2353.487590 +2353.561682 +2353.887490 +2354.057786 +2354.220223 +2354.340336 +2354.469640 +2354.541568 +2354.724951 +2355.111231 +2355.240302 +2355.453589 +2355.598510 +2355.868606 +2355.999908 +2356.525615 +2356.569338 +2356.594280 +2356.703005 +2356.789152 +2356.878862 +2357.015492 +2357.261013 +2357.691582 +2357.742231 +2357.782324 +2357.882324 +2358.060879 +2358.750855 +2358.961810 +2359.091747 +2359.265473 +2359.562476 +2359.565905 +2359.670134 +2359.907630 +2359.971566 +2360.360710 +2360.542628 +2360.615155 +2360.721116 +2360.784719 +2361.022248 +2361.530439 +2361.566336 +2361.694774 +2361.951517 +2362.098537 +2362.224844 +2362.321913 +2362.462972 +2362.801134 +2362.859042 +2362.895872 +2362.944190 +2363.029039 +2363.113188 +2363.136365 +2363.213088 +2363.315552 +2363.734033 +2363.902631 +2363.984283 +2364.090576 +2364.151515 +2364.167965 +2364.422244 +2364.538195 +2364.657908 +2365.151714 +2365.231301 +2365.308790 +2365.403662 +2365.565433 +2365.623542 +2365.653578 +2365.720078 +2365.803695 +2365.957807 +2366.024674 +2366.295669 +2366.422775 +2366.499165 +2366.779418 +2367.062535 +2367.092671 +2367.268295 +2367.368195 +2367.412285 +2367.537959 +2367.692804 +2367.790439 +2367.944485 +2368.012750 +2368.264099 +2368.458071 +2368.972789 +2369.013948 +2369.043518 +2369.205490 +2369.276785 +2369.361234 +2369.561766 +2369.750244 +2369.883111 +2370.406887 +2370.553906 +2370.565062 +2370.598062 +2370.604356 +2370.689770 +2370.732661 +2370.843683 +2370.923037 +2371.193666 +2371.365228 +2371.524468 +2371.773685 +2371.810582 +2371.854671 +2371.871088 +2371.956269 +2371.974285 +2371.988437 +2372.029596 +2372.046679 +2372.095463 +2372.210215 +2372.472919 +2372.633092 +2372.735423 +2372.943015 +2373.089768 +2373.171420 +2373.215376 +2373.219238 +2373.271886 +2373.302888 +2373.351772 +2373.354736 +2373.422502 +2373.559864 +2374.110813 +2374.356367 +2374.487968 +2374.698991 +2374.704552 +2374.711078 +2374.813010 +2375.105783 +2375.272583 +2375.425197 +2375.551570 +2375.621201 +2375.654434 +2375.706815 +2375.728660 +2375.785470 +2375.857731 +2375.935253 +2376.151070 +2376.302652 +2376.448273 +2376.588399 +2376.760294 +2376.971649 +2376.980707 +2376.997989 +2377.020234 +2377.049305 +2377.087833 +2377.153434 +2377.183570 +2377.204882 +2377.241712 +2377.310543 +2377.407779 +2377.507879 +2377.629024 +2377.735484 +2377.831921 +2377.917502 +2378.033120 +2378.091928 +2378.232920 +2378.248937 +2378.463089 +2378.672247 +2378.691927 +2378.696189 +2378.781571 +2378.872579 +2378.966852 +2379.139512 +2379.434184 +2379.535449 +2379.601716 +2379.612039 +2379.668416 +2379.821663 +2380.071080 +2380.342608 +2381.088761 +2381.176906 +2381.260822 +2381.351798 +2381.392291 +2381.535947 +2381.697319 +2381.736213 +2381.776473 +2381.930119 +2382.165283 +2382.330451 +2382.525523 +2382.853994 +2382.857424 +2382.892988 +2382.899382 +2382.961187 +2383.012602 +2383.087594 +2383.128919 +2383.501046 +2383.645735 +2383.760786 +2383.885961 +2384.012568 +2384.162451 +2384.256723 +2384.306840 +2384.346200 +2384.394019 +2384.470010 +2384.495917 +2384.555524 +2384.565914 +2384.665348 +2385.426652 +2385.562816 +2385.632146 +2385.671074 +2385.699213 +2385.775003 +2385.882562 +2385.900278 +2385.958886 +2386.003508 +2386.094284 +2386.221190 +2386.466478 +2386.593384 +2386.996914 +2387.024819 +2387.080264 +2387.155089 +2387.205738 +2387.267676 +2387.322721 +2387.400010 +2387.437106 +2387.497612 +2387.567975 +2388.005437 +2388.166343 +2388.351125 +2388.443166 +2388.544098 +2388.628514 +2388.698644 +2388.782493 +2388.876799 +2388.961247 +2389.535473 +2389.541034 +2389.591816 +2389.620354 +2389.688586 +2389.762046 +2389.878596 +2389.921686 +2390.008432 +2390.160447 +2390.266641 +2390.370903 +2390.507899 +2390.613993 +2390.656550 +2390.714426 +2390.766340 +2390.941698 +2390.995811 +2391.045861 +2391.109730 +2391.224881 +2391.368138 +2391.430875 +2391.518288 +2391.826513 +2392.018154 +2392.029676 +2392.045094 +2392.107831 +2392.176928 +2392.466605 +2392.518520 +2392.597374 +2392.724380 +2392.834237 +2393.046525 +2393.146491 +2393.210394 +2393.282955 +2393.470500 +2393.561576 +2393.751219 +2393.894509 +2394.033170 +2394.156647 +2394.318884 +2394.608827 +2394.822780 +2394.932537 +2395.011857 +2395.058877 +2395.116752 +2395.213988 +2395.298171 +2395.430472 +2395.864737 +2395.983451 +2396.015786 +2396.145889 +2396.243791 +2396.363205 +2396.444890 +2396.634466 +2396.968798 +2397.053047 +2397.140893 +2397.198269 +2397.242791 +2397.283517 +2397.328971 +2397.454612 +2397.556743 +2397.628238 +2397.713819 +2397.760140 +2397.825940 +2398.141824 +2398.371361 +2398.611987 +2398.667232 +2398.693838 +2398.792773 +2398.829569 +2398.939193 +2398.997335 +2399.069496 +2399.188477 +2399.317714 +2399.389609 +2399.536595 +2399.631966 +2399.811986 +2399.947317 +2400.094103 +2400.183347 +2400.202495 +2400.230767 +2400.433097 +2400.509288 +2400.666464 +2400.760736 +2400.826970 +2400.902095 +2400.987709 +2401.224905 +2401.622407 +2401.706822 +2401.725204 +2401.733695 +2401.852576 +2401.909253 +2401.958570 +2402.003725 +2402.049879 +2402.095800 +2402.164531 +2402.294068 +2402.454507 +2402.595633 +2402.697131 +2402.843951 +2403.102892 +2403.170491 +2403.292901 +2403.385575 +2403.734293 +2403.786740 +2403.903790 +2404.164662 +2404.348278 +2404.584409 +2404.610649 +2404.640752 +2404.681245 +2404.813779 +2404.899060 +2404.966859 +2405.065427 +2405.155670 +2405.316809 +2405.390768 +2405.544081 +2405.618973 +2405.693565 +2405.806985 +2405.888803 +2405.964760 +2406.073451 +2406.331493 +2406.376648 +2406.481043 +2406.731826 +2406.816008 +2406.951406 +2407.049774 +2407.196461 +2407.255801 +2407.365458 +2407.521635 +2407.668488 +2407.799590 +2407.896993 +2408.112877 +2408.312610 +2408.552037 +2408.624265 +2408.997957 +2409.066389 +2409.175113 +2409.228893 +2409.300554 +2409.413575 +2409.471117 +2409.629192 +2409.958263 +2410.096258 +2410.322631 +2410.474746 +2410.708279 +2410.745075 +2410.772215 +2410.807979 +2410.945108 +2411.002151 +2411.191828 +2411.436150 +2411.549903 +2411.791394 +2412.003349 +2412.146672 +2412.185800 +2412.233319 +2412.490128 +2412.617767 +2412.790894 +2413.016468 +2413.086664 +2413.176941 +2413.281503 +2413.391493 +2413.745738 +2413.803747 +2413.959990 +2414.030520 +2414.159757 +2414.214469 +2414.307742 +2414.395588 +2414.537978 +2414.669913 +2415.046736 +2415.102047 +2415.184498 +2415.264052 +2415.296519 +2415.459456 +2415.608473 +2415.707574 +2415.773841 +2415.971144 +2416.249898 +2416.346901 +2416.429518 +2416.691156 +2416.750996 +2416.843104 +2416.898116 +2416.987060 +2417.051596 +2417.254659 +2417.375838 +2417.467879 +2417.589091 +2417.843703 +2417.908871 +2418.021658 +2418.033146 +2418.148964 +2418.207672 +2418.318727 +2418.447765 +2418.506173 +2418.588024 +2418.874438 +2418.927218 +2418.991620 +2419.111300 +2419.195949 +2419.282629 +2419.346865 +2419.434444 +2419.563448 +2419.639072 +2419.784926 +2419.910301 +2420.010967 +2420.100643 +2420.363380 +2420.517027 +2420.565178 +2420.625085 +2420.673770 +2420.764645 +2421.048828 +2421.356919 +2421.407835 +2421.414095 +2421.488821 +2421.727448 +2421.784391 +2421.901674 +2421.962480 +2422.057152 +2422.147028 +2422.257884 +2422.337171 +2422.414394 +2422.514860 +2422.651756 +2422.803305 +2423.251589 +2423.305269 +2423.383857 +2423.499974 +2423.537603 +2423.566840 +2423.709198 +2424.185621 +2424.558415 +2424.621718 +2424.661944 +2424.863309 +2424.911461 +2424.954352 +2424.975664 +2425.077628 +2425.280192 +2425.494111 +2425.594411 +2425.636702 +2425.690381 +2425.730808 +2425.795643 +2425.891380 +2425.922149 +2425.961643 +2426.088683 +2426.199472 +2426.272266 +2426.435635 +2426.500504 +2426.614190 +2426.757180 +2427.013624 +2427.054416 +2427.114056 +2427.185052 +2427.325445 +2427.393477 +2427.498472 +2427.581488 +2427.628774 +2427.665771 +2427.762341 +2427.832237 +2428.025144 +2428.112290 +2428.207262 +2428.302667 +2428.406862 +2428.486582 +2428.528341 +2428.761208 +2428.993975 +2429.154514 +2429.269499 +2429.372263 +2429.580088 +2429.821147 +2430.071596 +2430.402997 +2430.556211 +2430.632434 +2430.754579 +2430.777256 +2431.025707 +2431.071162 +2431.282950 +2431.385048 +2431.515018 +2431.795504 +2431.954444 +2432.062803 +2432.138993 +2432.219313 +2432.308823 +2432.385380 +2432.498766 +2432.655310 +2432.731800 +2432.792672 +2432.916814 +2433.161103 +2433.293937 +2433.491339 +2433.627436 +2433.775855 +2433.855042 +2433.997832 +2434.086976 +2434.454542 +2434.527802 +2434.634262 +2434.772923 +2434.840689 +2434.886876 +2434.931131 +2434.940822 +2435.075520 +2435.110485 +2435.358703 +2435.515213 +2435.669792 +2435.813415 +2436.018676 +2436.202159 +2436.346781 +2436.435692 +2436.527500 +2436.585142 +2436.638855 +2436.714446 +2436.848679 +2436.931063 +2437.032461 +2437.101159 +2437.212215 +2437.315145 +2437.406254 +2437.499461 +2437.583776 +2437.638954 +2437.743117 +2437.809817 +2437.877249 +2438.003423 +2438.112813 +2438.219806 +2438.375584 +2438.604088 +2438.794864 +2438.821271 +2438.903555 +2438.964094 +2439.033858 +2439.102223 +2439.244980 +2439.319505 +2439.455403 +2439.749342 +2439.832858 +2439.947477 +2440.064227 +2440.096627 +2440.350274 +2440.433890 +2440.461129 +2440.567623 +2440.679611 +2440.777046 +2440.870886 +2440.988934 +2441.231991 +2441.401555 +2441.527595 +2441.902353 +2441.960229 +2442.020269 +2442.090964 +2442.287701 +2442.409879 +2442.612409 +2442.680108 +2442.713441 +2442.810011 +2442.876545 +2442.950171 +2443.529058 +2443.739048 +2443.786967 +2443.812108 +2443.931822 +2443.988032 +2444.027393 +2444.080873 +2444.281105 +2444.628857 +2444.717635 +2444.768418 +2444.822697 +2444.954298 +2445.010542 +2445.075244 +2445.635317 +2445.871980 +2446.084600 +2446.164320 +2446.206112 +2446.266951 +2446.344340 +2446.560957 +2446.749435 +2446.870180 +2447.026790 +2447.174942 +2447.271978 +2447.446137 +2447.610040 +2447.774608 +2447.849200 +2448.042007 +2448.146736 +2448.309706 +2448.517531 +2448.877105 +2448.924391 +2449.008440 +2449.107175 +2449.179269 +2449.263918 +2449.335413 +2449.420761 +2449.486295 +2449.638576 +2449.784896 +2449.909172 +2450.012968 +2450.069811 +2450.148898 +2450.233447 +2450.375905 +2450.432515 +2450.786627 +2450.885261 +2451.096949 +2451.284961 +2451.433979 +2451.623855 +2451.770941 +2451.912034 +2451.990655 +2452.131314 +2452.226053 +2452.323388 +2452.357654 +2452.422989 +2452.493052 +2452.592219 +2452.776701 +2452.929016 +2453.075802 +2453.203274 +2453.259352 +2453.360883 +2453.392052 +2453.547463 +2453.619757 +2453.756854 +2453.823986 +2453.907270 +2454.056320 +2454.167576 +2454.265411 +2454.423120 +2454.497412 +2454.533876 +2454.679663 +2454.779297 +2455.515826 +2455.568607 +2455.607668 +2455.662046 +2455.664278 +2455.726549 +2455.778696 +2455.834274 +2455.973535 +2456.111097 +2456.385189 +2456.578729 +2456.707700 +2456.825881 +2456.890250 +2456.977297 +2457.049191 +2457.095911 +2457.184822 +2457.240167 +2457.305068 +2457.368572 +2457.671269 +2457.724082 +2457.760945 +2457.792347 +2457.862144 +2458.001671 +2458.068538 +2458.107166 +2458.206599 +2458.322583 +2458.566572 +2458.690881 +2458.794344 +2458.853585 +2458.924514 +2458.972166 +2459.032806 +2459.178360 +2459.262909 +2459.313791 +2459.359146 +2459.395709 +2459.441730 +2459.496009 +2459.587584 +2459.640331 +2459.757147 +2459.818519 +2459.869435 +2459.980424 +2460.035702 +2460.105532 +2460.155449 +2460.241063 +2460.401835 +2460.588182 +2460.966104 +2461.411924 +2461.491145 +2461.573496 +2461.708361 +2461.840728 +2461.969633 +2462.161307 +2462.296639 +2462.353881 +2462.463039 +2462.526042 +2462.650218 +2462.720881 +2462.794041 +2462.853814 +2463.102365 +2463.270797 +2463.369997 +2463.545588 +2463.712555 +2463.802864 +2463.902165 +2463.949384 +2464.195205 +2464.323077 +2464.343456 +2464.437762 +2464.719946 +2464.910389 +2465.006626 +2465.154112 +2465.223376 +2465.275990 +2465.342356 +2465.483149 +2465.581084 +2465.801930 +2465.941157 +2466.044953 +2466.270194 +2466.357740 +2466.517480 +2466.701163 +2466.872691 +2466.996501 +2467.147183 +2467.265864 +2467.375555 +2467.414482 +2467.543120 +2467.608055 +2467.739257 +2467.807222 +2467.838758 +2468.107722 +2468.244118 +2468.406922 +2468.522473 +2469.058204 +2469.098397 +2469.282046 +2469.296898 +2469.343485 +2469.372023 +2469.453608 +2469.465030 +2469.523305 +2469.693035 +2469.765629 +2469.891203 +2470.186041 +2470.273287 +2470.382578 +2470.458768 +2470.515112 +2470.802691 +2471.128731 +2471.259866 +2471.340119 +2471.511481 +2471.609550 +2471.701591 +2471.741684 +2471.820039 +2471.880445 +2471.909483 +2472.022603 +2472.086839 +2472.183542 +2472.291301 +2472.411946 +2472.484740 +2472.534191 +2472.616741 +2472.728530 +2472.900058 +2473.003288 +2473.176981 +2473.211080 +2473.214177 +2473.382708 +2473.468722 +2473.631959 +2473.732991 +2473.830760 +2473.943214 +2474.013010 +2474.197159 +2474.297293 +2474.501255 +2474.607882 +2474.689666 +2474.729293 +2474.750839 +2474.758131 +2474.866456 +2474.927029 +2475.146010 +2475.292696 +2475.379509 +2475.514041 +2475.682339 +2475.738517 +2475.806515 +2475.861993 +2475.973348 +2476.051237 +2476.151437 +2476.183971 +2476.221666 +2476.246541 +2476.254467 +2476.326395 +2476.405715 +2476.471483 +2476.642345 +2476.803650 +2476.878775 +2476.969584 +2477.051702 +2477.107147 +2477.247573 +2477.261559 +2477.315205 +2477.375545 +2477.435385 +2477.508645 +2477.570316 +2477.662924 +2477.889463 +2478.011575 +2478.162091 +2478.252633 +2478.411041 +2478.438647 +2478.493492 +2478.602350 +2478.901217 +2478.986465 +2479.056462 +2479.132752 +2479.248803 +2479.338913 +2479.427291 +2479.569215 +2479.609642 +2479.667284 +2479.687963 +2479.711207 +2479.838346 +2480.157094 +2480.255695 +2480.457992 +2480.819164 +2480.884066 +2480.900949 +2480.972111 +2481.004179 +2481.049966 +2481.089327 +2481.160356 +2481.244771 +2481.310606 +2481.476040 +2481.615700 +2481.752896 +2482.094854 +2482.168180 +2482.213935 +2482.288860 +2482.603478 +2482.681500 +2482.846335 +2483.167280 +2483.216498 +2483.392588 +2483.501746 +2483.597050 +2483.701912 +2483.795651 +2483.892255 +2483.971042 +2484.100080 +2484.181898 +2484.236310 +2484.322557 +2484.414798 +2484.605374 +2484.753359 +2485.205607 +2485.371041 +2485.582729 +2485.696149 +2485.792985 +2485.879199 +2486.030747 +2486.133012 +2486.242702 +2486.340271 +2486.458253 +2486.594283 +2486.736241 +2486.833078 +2486.949927 +2487.028415 +2487.083294 +2487.110833 +2487.170573 +2487.251126 +2487.322987 +2487.354456 +2487.426350 +2487.513197 +2487.670373 +2487.749926 +2487.822720 +2487.914728 +2488.080229 +2488.213030 +2488.360615 +2488.433409 +2488.476399 +2488.559982 +2488.654055 +2488.832077 +2488.909066 +2489.040535 +2489.212795 +2489.442432 +2489.478097 +2489.532575 +2489.553288 +2489.586921 +2489.644397 +2489.713461 +2489.795978 +2489.863411 +2489.946028 +2490.055485 +2490.119688 +2490.226381 +2490.321486 +2490.408965 +2490.583856 +2490.672068 +2490.945128 +2491.121019 +2491.371468 +2491.504868 +2491.627778 +2491.672034 +2491.779826 +2491.828877 +2491.920085 +2492.054318 +2492.486485 +2492.670734 +2492.760877 +2492.805333 +2492.882023 +2492.961376 +2493.030907 +2493.093178 +2493.177260 +2493.291712 +2493.393344 +2493.486218 +2493.699871 +2493.915255 +2494.065205 +2494.134968 +2494.190479 +2494.251652 +2494.313023 +2494.413390 +2494.451485 +2494.471432 +2494.491345 +2494.506929 +2494.562674 +2494.673896 +2494.798571 +2494.892810 +2494.985017 +2495.197471 +2495.285150 +2495.408727 +2495.504864 +2495.752183 +2495.807161 +2495.878390 +2495.998470 +2496.092875 +2496.196804 +2496.316618 +2496.471330 +2496.650983 +2496.787613 +2496.852515 +2496.920047 +2496.991875 +2497.031502 +2497.119747 +2497.160340 +2497.477989 +2497.805561 +2497.859607 +2497.937262 +2497.995537 +2498.088478 +2498.127505 +2498.200765 +2498.410988 +2498.498667 +2498.624208 +2498.707558 +2498.779419 +2498.864501 +2498.934697 +2499.036329 +2499.111021 +2499.316015 +2499.472459 +2499.601363 +2499.719678 +2499.827570 +2499.936727 +2500.042588 +2500.140157 +2500.427203 +2500.557806 +2500.742587 +2500.792371 +2500.853410 +2500.855841 +2500.932730 +2501.084845 +2501.162734 +2501.213649 +2501.297932 +2501.386443 +2501.466996 +2501.577818 +2501.766096 +2501.827934 +2501.905723 +2501.984811 +2502.035527 +2502.161134 +2502.255107 +2502.375653 +2502.540921 +2502.620108 +2502.772655 +2502.988273 +2503.112149 +2503.198396 +2503.387040 +2503.645748 +2503.766960 +2503.877683 +2503.957270 +2504.248678 +2504.318042 +2504.421571 +2504.520539 +2505.211081 +2505.386572 +2505.547411 +2505.665393 +2505.681544 +2505.757401 +2505.774517 +2505.918773 +2506.013578 +2506.173118 +2506.288769 +2506.346844 +2506.878412 +2506.966924 +2507.126197 +2507.199824 +2507.216807 +2507.322601 +2507.591731 +2507.695095 +2507.724099 +2507.825631 +2508.066090 +2508.215740 +2508.438883 +2508.754068 +2509.089399 +2509.484204 +2509.745575 +2510.233853 +2510.387766 +2510.474113 +2510.587966 +2510.781738 +2510.808278 +2511.078741 +2511.340845 +2511.400552 +2511.419833 +2511.580439 +2511.959493 +2512.128057 +2512.244674 +2512.726358 +2512.887430 +2513.163221 +2513.272212 +2513.513137 +2513.934116 +2514.029454 +2514.097486 +2514.337645 +2514.582167 +2514.715001 +2514.902147 +2514.996220 +2515.066416 +2515.693522 +2515.720927 +2515.816865 +2515.913668 +2516.255959 +2516.323558 +2516.357091 +2516.843637 +2516.938942 +2516.985295 +2517.131915 +2517.279268 +2517.375671 +2517.379600 +2517.500013 +2517.602011 +2517.665548 +2517.798248 +2518.557322 +2518.660918 +2518.805107 +2518.937075 +2519.244234 +2519.342003 +2519.500278 +2519.638339 +2519.798279 +2520.520090 +2520.747363 +2520.838738 +2520.974202 +2521.088155 +2521.249960 +2521.259750 +2521.298877 +2522.260948 +2522.336638 +2522.519322 +2522.525083 +2522.552822 +2522.773335 +2522.951923 +2522.973934 +2523.216791 +2523.349558 +2523.449191 +2523.582292 +2523.734639 +2523.786853 +2524.052021 +2524.311628 +2525.258647 +2525.320485 +2525.547158 +2526.601403 +2528.037865 +2528.041162 +2528.977391 +2529.145889 +2529.243325 +2529.679755 +2529.694640 +2530.662171 +2531.065701 +2532.212852 +2532.363135 +2532.801929 +2532.804061 +2534.035128 +2534.408688 +2534.571625 +2534.802960 +2535.028700 +2535.374654 +2535.598930 +2535.866662 +2536.138390 +2536.464463 +2537.234626 +2537.602024 +2537.677615 +2537.812847 +2538.166393 +2538.338687 +2538.497262 +2538.652972 +2538.808084 +2539.079312 +2539.222502 +2540.258232 +2540.846310 +2540.935721 +2541.053303 +2541.640715 +2541.993229 +2542.198723 +2542.245909 +2542.319369 +2542.324331 +2542.374481 +2542.430658 +2542.469452 +2542.630291 +2542.936818 +2543.470350 +2543.781805 +2544.214772 +2544.277742 +2544.445874 +2544.641811 +2545.167818 +2545.282869 +2546.153797 +2546.279671 +2546.409308 +2546.587730 +2546.715269 +2547.054030 +2547.081202 +2547.193890 +2547.322861 +2547.474342 +2547.484665 +2548.586629 +2549.416165 +2549.512569 +2549.715532 +2549.883131 +2550.017263 +2550.541505 +2550.669477 +2551.017362 +2551.243103 +2551.314964 +2552.314397 +2552.388257 +2552.598147 +2552.718127 +2552.828017 +2553.422388 +2553.708036 +2554.402940 +2554.524818 +2554.669240 +2554.670672 +2554.780396 +2554.962613 +2555.383026 +2555.545396 +2555.635340 +2555.654554 +2555.937171 +2556.039535 +2556.853820 +2556.975798 +2557.077030 +2557.123750 +2557.181992 +2557.218555 +2557.354685 +2557.511562 +2557.655251 +2557.690483 +2557.776896 +2557.882790 +2557.968304 +2558.754351 +2558.913758 +2559.355849 +2560.327410 +2560.362075 +2560.433304 +2560.604266 +2560.693810 +2560.799770 +2560.933270 +2561.617984 +2561.700535 +2561.838497 +2561.915820 +2562.029339 +2562.757444 +2563.002465 +2563.145289 +2563.174593 +2564.093107 +2564.323243 +2564.443723 +2564.524175 +2564.855177 +2564.978088 +2565.221644 +2565.254611 +2565.315317 +2565.345720 +2565.633698 +2565.744953 +2565.942356 +2566.288010 +2566.401363 +2566.554443 +2566.928868 +2568.126070 +2568.930331 +2569.114947 +2569.278949 +2569.478250 +2569.950577 +2570.532761 +2570.591069 +2570.679247 +2571.180313 +2571.271888 +2571.466859 +2571.560865 +2572.211847 +2572.357934 +2572.461430 +2572.545912 +2572.622769 +2572.682009 +2572.741150 +2573.825498 +2573.832857 +2573.895628 +2574.071518 +2574.170053 +2574.214475 +2574.388768 +2574.662294 +2574.738950 +2575.191631 +2575.221601 +2575.311910 +2575.362060 +2575.401654 +2575.548240 +2575.614874 +2575.874847 +2576.033022 +2576.369285 +2576.431623 +2576.501186 +2576.643610 +2576.712708 +2576.834453 +2577.712540 +2577.757895 +2577.832454 +2577.941811 +2578.043875 +2578.047905 +2578.124961 +2578.540079 +2578.988796 +2579.069948 +2579.186665 +2579.294057 +2579.417933 +2579.517634 +2579.624860 +2579.789695 +2580.846004 +2580.928521 +2581.031585 +2581.155561 +2581.982699 +2582.319928 +2582.442040 +2582.532982 +2582.702079 +2582.763052 +2583.090823 +2583.317530 +2583.432781 +2583.532548 +2583.808372 +2583.927386 +2584.550862 +2584.692454 +2584.783662 +2584.888457 +2584.936609 +2585.027751 +2585.117428 +2585.210002 +2585.313565 +2586.119458 +2586.213398 +2586.313498 +2586.401576 +2587.158019 +2587.389820 +2587.445564 +2587.580696 +2587.726516 +2587.793350 +2587.825084 +2588.029180 +2588.790551 +2588.924018 +2589.066875 +2589.400807 +2589.417424 +2589.487787 +2589.517923 +2589.569072 +2589.845995 +2589.967273 +2590.000174 +2590.093381 +2590.331476 +2590.394013 +2591.212227 +2591.221751 +2591.253386 +2591.373599 +2591.394711 +2592.209662 +2592.266672 +2592.321983 +2592.381290 +2592.434937 +2592.492679 +2592.554550 +2592.592612 +2592.642296 +2592.693511 +2592.742828 +2592.825479 +2593.193511 +2593.237333 +2593.386284 +2593.514190 +2593.567769 +2593.752551 +2593.821515 +2593.881222 +2593.968735 +2594.061175 +2594.439230 +2594.496340 +2594.539630 +2594.699536 +2594.843626 +2594.904498 +2594.997571 +2595.108560 +2595.383652 +2595.443325 +2596.352648 +2596.354014 +2596.475625 +2596.524510 +2596.530703 +2596.593574 +2596.613421 +2596.645222 +2596.721945 +2596.783384 +2596.842958 +2596.987013 +2597.166500 +2597.323343 +2597.388412 +2597.497469 +2597.566333 +2597.643456 +2597.991408 +2598.328437 +2598.424741 +2598.487711 +2598.562669 +2598.646319 +2598.690208 +2598.909156 +2599.090175 +2599.235263 +2599.316215 +2599.453378 +2599.731300 +2599.832532 +2599.911186 +2600.011053 +2600.058272 +2600.112418 +2600.164300 +2600.248482 +2600.422541 +2600.702294 +2601.331065 +2601.457305 +2601.527135 +2601.886542 +2602.035959 +2602.232696 +2602.300195 +2602.383079 +2602.797897 +2602.986541 +2603.028632 +2603.098329 +2603.207653 +2603.346914 +2603.571889 +2603.699661 +2603.749144 +2603.808119 +2603.912647 +2604.020906 +2604.346813 +2604.670156 +2604.883209 +2604.909949 +2604.919839 +2604.986506 +2605.029063 +2605.094498 +2605.140185 +2605.384041 +2605.443781 +2605.563795 +2605.696195 +2605.907983 +2606.070421 +2606.112945 +2606.136122 +2606.169821 +2606.406951 +2606.478279 +2606.875648 +2606.972185 +2607.049840 +2607.118339 +2607.238718 +2607.306284 +2607.369853 +2607.446643 +2607.499690 +2607.651372 +2607.830725 +2607.852337 +2607.916573 +2607.981241 +2608.047642 +2608.183705 +2608.347575 +2608.429226 +2608.502953 +2608.560229 +2608.670585 +2608.738750 +2608.832589 +2608.859029 +2608.878377 +2609.080108 +2609.115439 +2609.552835 +2609.732255 +2609.775745 +2609.968286 +2610.184236 +2610.222898 +2610.251769 +2610.354566 +2610.391662 +2610.420100 +2610.445774 +2610.500053 +2610.541678 +2610.601285 +2610.665554 +2610.752601 +2610.825528 +2610.893726 +2610.988864 +2611.052467 +2611.262091 +2611.530322 +2611.650502 +2611.692926 +2611.821764 +2611.870948 +2611.924861 +2611.978107 +2612.238380 +2612.520398 +2612.705579 +2612.769948 +2612.831420 +2612.969315 +2613.323361 +2613.371746 +2613.484999 +2613.546138 +2613.596188 +2613.663886 +2613.801549 +2613.814869 +2613.893823 +2614.004279 +2614.179737 +2614.321395 +2614.406044 +2614.513203 +2614.578138 +2614.651698 +2614.708907 +2614.763852 +2614.771644 +2614.850798 +2614.922693 +2615.058524 +2615.272709 +2615.357891 +2615.533715 +2615.604411 +2615.706808 +2615.793688 +2615.892556 +2616.014467 +2616.102712 +2616.169212 +2616.375572 +2616.499515 +2616.552162 +2616.748033 +2617.105908 +2617.160153 +2617.202411 +2617.232314 +2617.363050 +2617.405474 +2617.474872 +2617.535511 +2617.580632 +2617.639174 +2617.655924 +2617.673340 +2617.724955 +2617.838175 +2618.170342 +2618.222423 +2618.337541 +2618.459553 +2618.526885 +2618.683728 +2618.787791 +2618.929882 +2619.277467 +2619.485226 +2619.638806 +2619.697480 +2619.759052 +2619.770174 +2619.771506 +2619.817593 +2619.825219 +2619.851759 +2619.876268 +2619.891319 +2619.950194 +2620.006071 +2620.033111 +2620.168742 +2620.315894 +2620.453357 +2620.576500 +2620.697279 +2620.951825 +2621.021621 +2621.081661 +2621.196946 +2621.271271 +2621.348827 +2621.510266 +2621.661081 +2621.974135 +2621.995513 +2622.017891 +2622.061913 +2622.135440 +2622.231144 +2622.295013 +2622.364411 +2622.546229 +2622.698942 +2622.972768 +2623.160680 +2623.245961 +2623.394779 +2623.433907 +2623.450690 +2623.473134 +2623.515791 +2623.646061 +2623.709797 +2623.736570 +2623.779561 +2623.997542 +2624.081592 +2624.178561 +2624.604268 +2624.739167 +2624.947358 +2624.985920 +2625.177794 +2625.182623 +2625.228211 +2625.547125 +2625.877461 +2626.020251 +2626.147857 +2626.401003 +2626.429675 +2626.518452 +2626.574563 +2626.625578 +2626.675029 +2626.787516 +2626.950720 +2627.161942 +2627.272864 +2627.445091 +2627.487982 +2627.586550 +2627.652018 +2627.922913 +2627.988248 +2628.057978 +2628.407295 +2628.548887 +2629.075892 +2629.208560 +2629.374760 +2629.417417 +2629.468799 +2629.506062 +2629.563471 +2629.632835 +2629.706328 +2629.878256 +2629.966501 +2630.233600 +2630.323843 +2630.386048 +2630.428605 +2630.514452 +2630.555878 +2630.579987 +2630.650017 +2630.859607 +2630.973992 +2631.032267 +2631.183183 +2631.286246 +2631.396469 +2631.862603 +2631.921511 +2631.936962 +2631.971161 +2632.037827 +2632.177088 +2632.188410 +2632.251913 +2632.335929 +2632.401796 +2632.572759 +2633.096634 +2633.171859 +2633.202994 +2633.275389 +2633.288942 +2633.327936 +2633.374223 +2633.441356 +2633.481416 +2633.542421 +2633.636694 +2633.687343 +2633.733530 +2633.797599 +2633.864399 +2633.984712 +2634.052777 +2634.228768 +2634.287309 +2634.487575 +2634.543952 +2634.670592 +2634.702061 +2634.732563 +2634.787941 +2634.926636 +2635.009087 +2635.112883 +2635.155773 +2635.229566 +2635.304724 +2635.394201 +2635.427135 +2635.534627 +2635.693735 +2635.771657 +2635.902725 +2635.915180 +2636.040121 +2636.218543 +2636.362465 +2636.417210 +2636.510650 +2636.593567 +2636.600394 +2636.668692 +2636.695265 +2636.720274 +2636.756804 +2636.846181 +2636.920540 +2637.098229 +2637.246747 +2637.447579 +2637.545614 +2637.585041 +2637.644116 +2637.746946 +2637.844082 +2637.951441 +2638.056703 +2638.157535 +2638.212846 +2638.433425 +2638.525833 +2638.635623 +2638.725666 +2638.777681 +2638.891201 +2638.950042 +2638.991134 +2639.029296 +2639.103688 +2639.221736 +2639.279479 +2639.329895 +2639.433025 +2639.566758 +2639.708915 +2639.834889 +2640.021169 +2640.061629 +2640.128029 +2640.188169 +2640.262927 +2640.356367 +2640.419005 +2640.569221 +2640.708082 +2641.062893 +2641.123433 +2641.221834 +2641.325297 +2641.404751 +2641.502620 +2641.593029 +2641.770851 +2641.922999 +2642.115173 +2642.163891 +2642.197558 +2642.223232 +2642.232622 +2642.313874 +2642.374214 +2642.405250 +2642.480608 +2642.542845 +2642.672749 +2642.763491 +2643.066421 +2643.275345 +2643.455498 +2643.499887 +2643.538882 +2643.685635 +2643.968052 +2644.103683 +2644.168518 +2644.240879 +2644.391262 +2644.507645 +2644.627259 +2644.666020 +2644.715870 +2644.783103 +2644.828790 +2644.867152 +2644.912207 +2644.997155 +2645.059926 +2645.228357 +2645.362290 +2645.446572 +2645.505180 +2645.742676 +2645.832652 +2645.944740 +2646.043974 +2646.162156 +2646.227690 +2646.357160 +2646.443341 +2646.512039 +2646.643141 +2646.715069 +2646.890660 +2646.944905 +2647.002381 +2647.074809 +2647.131319 +2647.204745 +2647.288195 +2647.368581 +2647.447336 +2647.543972 +2647.635148 +2647.703413 +2647.822261 +2647.897918 +2647.963153 +2648.034348 +2648.118098 +2648.223193 +2648.316532 +2648.415933 +2648.563585 +2648.605909 +2648.653795 +2648.922526 +2648.989592 +2649.053528 +2649.173974 +2649.200481 +2649.301513 +2649.399948 +2649.447500 +2649.526188 +2649.579169 +2649.663451 +2649.744103 +2649.773874 +2649.815532 +2649.880767 +2650.021393 +2650.110836 +2650.209038 +2650.367879 +2650.411768 +2650.473673 +2650.516930 +2650.582930 +2650.755325 +2650.813000 +2650.900446 +2651.008471 +2651.105241 +2651.316163 +2651.483496 +2651.559853 +2651.714331 +2651.760652 +2651.816562 +2651.901178 +2651.955956 +2652.014764 +2652.019892 +2652.045400 +2652.108703 +2652.174670 +2652.221191 +2652.295516 +2652.388357 +2652.538939 +2652.592319 +2652.645566 +2652.778866 +2652.814563 +2652.917027 +2652.983661 +2653.073038 +2653.120257 +2653.221090 +2653.274270 +2653.329947 +2653.405538 +2653.488855 +2653.581862 +2653.728149 +2653.825551 +2653.883094 +2653.981728 +2654.109400 +2654.169340 +2654.207169 +2654.291751 +2654.355388 +2654.436140 +2654.647595 +2654.806136 +2654.892117 +2654.953622 +2654.994381 +2655.047162 +2655.215260 +2655.319323 +2655.427481 +2655.480295 +2655.533908 +2655.566042 +2655.590251 +2655.652822 +2655.694714 +2655.768040 +2655.850258 +2656.011230 +2656.064310 +2656.176365 +2656.232275 +2656.295312 +2656.423218 +2656.578862 +2656.659881 +2656.770004 +2656.901839 +2657.021519 +2657.254585 +2657.417955 +2657.560579 +2657.642464 +2657.830609 +2657.980825 +2658.074465 +2658.360112 +2658.581024 +2658.832806 +2658.897075 +2659.056682 +2659.075263 +2659.122149 +2659.128776 +2659.152119 +2659.259146 +2659.426045 +2659.559545 +2659.658779 +2659.700137 +2659.913923 +2659.916388 +2660.028043 +2660.059911 +2660.122781 +2660.187250 +2660.231039 +2660.545291 +2660.799903 +2661.258478 +2661.368401 +2661.420449 +2661.446290 +2661.484318 +2661.487082 +2661.527908 +2661.553615 +2661.609826 +2661.662207 +2661.744658 +2661.814155 +2662.108993 +2662.202932 +2662.380421 +2662.523977 +2662.652915 +2662.747287 +2662.906228 +2663.045389 +2663.065069 +2663.223311 +2663.358276 +2663.407360 +2663.429604 +2663.472961 +2663.580686 +2663.837529 +2663.933233 +2663.969930 +2663.971795 +2663.992408 +2664.048085 +2664.235198 +2664.320612 +2664.435830 +2664.543190 +2664.614918 +2664.657708 +2664.727505 +2664.864002 +2664.917914 +2664.936929 +2665.028204 +2665.151847 +2665.370029 +2665.446885 +2665.544254 +2665.629968 +2665.702895 +2665.821077 +2666.011187 +2666.074490 +2666.109588 +2666.440723 +2666.496834 +2666.675555 +2666.810620 +2666.921342 +2666.996734 +2667.095834 +2667.177486 +2667.288908 +2667.341955 +2667.422674 +2667.466397 +2667.551645 +2667.679983 +2667.821475 +2667.883446 +2667.967295 +2668.125803 +2668.153842 +2668.204824 +2668.317645 +2668.395400 +2668.595800 +2668.780981 +2668.822939 +2669.022805 +2669.133028 +2669.216512 +2669.253808 +2669.297830 +2669.356405 +2669.409185 +2669.526102 +2669.593900 +2669.692202 +2669.828566 +2669.914413 +2669.977283 +2670.033527 +2670.357503 +2670.508818 +2670.570390 +2670.811981 +2670.963430 +2671.035757 +2671.179447 +2671.349643 +2671.723968 +2671.812113 +2671.880545 +2671.920039 +2672.176915 +2672.248776 +2672.323435 +2672.433258 +2672.480211 +2672.518240 +2672.651074 +2672.805086 +2673.043914 +2673.101889 +2673.354936 +2673.434256 +2673.524233 +2673.614709 +2673.687270 +2673.759231 +2673.825132 +2673.866857 +2673.933790 +2674.028461 +2674.099224 +2674.207183 +2674.292830 +2674.370985 +2674.580009 +2674.800156 +2674.979776 +2675.058763 +2675.143845 +2675.208181 +2675.306515 +2675.413142 +2675.496925 +2675.575280 +2675.645576 +2675.805083 +2675.941580 +2676.064590 +2676.153035 +2676.260594 +2676.348939 +2676.433387 +2676.578609 +2676.630723 +2676.835585 +2676.905715 +2677.112574 +2677.265355 +2677.532687 +2677.588831 +2677.617569 +2677.702717 +2677.780173 +2677.901418 +2677.998521 +2678.149836 +2678.207545 +2678.388131 +2678.501850 +2678.576276 +2678.655530 +2678.819632 +2678.926259 +2678.977408 +2679.025393 +2679.143508 +2679.236149 +2679.366352 +2679.456428 +2679.555063 +2679.868016 +2680.220097 +2680.386231 +2680.464519 +2680.531319 +2680.610872 +2680.753097 +2680.810906 +2680.851432 +2680.910706 +2681.049833 +2681.102247 +2681.309373 +2681.504644 +2681.654728 +2681.700548 +2681.760821 +2681.842373 +2682.020128 +2682.177404 +2682.273908 +2683.002145 +2683.025555 +2683.124157 +2683.229451 +2683.297283 +2683.454160 +2683.556124 +2683.633913 +2683.742671 +2683.867413 +2683.999714 +2684.206040 +2684.393719 +2684.590123 +2684.684062 +2684.742470 +2684.938207 +2685.043868 +2685.126519 +2685.228317 +2685.297181 +2685.461117 +2685.524487 +2685.667444 +2685.713398 +2685.805606 +2685.875170 +2686.000744 +2686.094583 +2686.165779 +2686.216828 +2686.342135 +2686.395982 +2686.633610 +2686.640903 +2686.843567 +2687.160849 +2687.204239 +2687.242168 +2687.357686 +2687.402141 +2687.535940 +2687.596680 +2687.649427 +2687.784392 +2687.897645 +2687.983093 +2688.049626 +2688.235207 +2688.315127 +2688.385890 +2688.480895 +2688.669506 +2688.754487 +2688.829113 +2688.897344 +2688.978596 +2689.021120 +2689.067740 +2689.094114 +2689.226282 +2689.257817 +2689.377530 +2689.414460 +2689.521220 +2689.579728 +2689.804137 +2690.244862 +2690.298575 +2690.423150 +2690.517456 +2690.559014 +2690.562977 +2690.793546 +2690.976363 +2691.083156 +2691.166540 +2691.245427 +2691.333139 +2691.433772 +2691.552786 +2691.631574 +2691.662110 +2691.732073 +2691.839932 +2691.983155 +2692.102236 +2692.164874 +2692.283355 +2692.367904 +2692.486518 +2692.521616 +2692.551953 +2692.698573 +2692.745925 +2692.934903 +2693.066504 +2693.392811 +2693.516387 +2693.582688 +2693.630373 +2693.631206 +2693.713956 +2693.860876 +2693.922914 +2693.991379 +2694.062541 +2694.145125 +2694.245857 +2694.294808 +2694.391811 +2694.449420 +2694.502300 +2694.573796 +2694.647289 +2694.843859 +2694.982153 +2695.075060 +2695.255180 +2695.328707 +2695.734067 +2695.791843 +2695.854447 +2695.889079 +2696.247420 +2696.303298 +2696.377856 +2696.783384 +2696.894406 +2697.280087 +2697.329737 +2697.396703 +2697.457276 +2697.600399 +2697.687912 +2697.787379 +2697.865634 +2697.949217 +2698.012220 +2698.188943 +2698.347485 +2698.401564 +2698.474225 +2698.582949 +2698.619712 +2698.640924 +2698.687777 +2698.774191 +2699.057074 +2699.172093 +2699.339492 +2699.464600 +2699.515016 +2699.560804 +2699.612818 +2699.641822 +2699.644586 +2699.822475 +2699.884979 +2699.956075 +2700.019078 +2700.103660 +2700.225505 +2700.517779 +2700.718312 +2700.769261 +2700.802660 +2700.830533 +2700.870093 +2701.068994 +2701.106223 +2701.154375 +2701.212783 +2701.332264 +2701.427202 +2701.582946 +2701.947181 +2702.156572 +2702.279782 +2702.330531 +2702.499229 +2702.587008 +2702.735626 +2702.775552 +2702.831430 +2702.977517 +2703.044283 +2703.285209 +2703.626234 +2703.697063 +2703.754572 +2703.806720 +2703.870589 +2703.961399 +2704.041019 +2704.111415 +2704.223436 +2704.290669 +2704.335258 +2704.454838 +2704.470722 +2704.482310 +2704.507818 +2704.625467 +2704.653373 +2704.705187 +2704.779180 +2704.822170 +2704.882144 +2704.971288 +2705.050508 +2705.129496 +2705.219706 +2705.309083 +2705.464594 +2705.520871 +2705.601224 +2705.702456 +2705.766358 +2705.805819 +2705.856701 +2705.894264 +2705.941250 +2706.009149 +2706.088869 +2706.293997 +2706.349874 +2706.381143 +2706.429395 +2706.613544 +2706.670021 +2706.808082 +2707.056733 +2707.140783 +2707.306583 +2707.363227 +2707.541615 +2707.704552 +2707.752370 +2707.842081 +2707.886470 +2707.938318 +2707.990066 +2708.018005 +2708.044545 +2708.205250 +2708.370518 +2708.434354 +2708.504651 +2708.585770 +2708.661261 +2708.731657 +2708.782539 +2708.977411 +2709.036851 +2709.619135 +2709.766021 +2709.847207 +2709.943910 +2710.078176 +2710.220467 +2710.522398 +2710.749637 +2710.899054 +2710.953200 +2711.013606 +2711.078141 +2711.154232 +2711.370782 +2711.485101 +2711.774744 +2712.085633 +2712.217268 +2712.260325 +2712.290861 +2712.302982 +2712.354830 +2712.506045 +2712.590527 +2712.690561 +2712.732918 +2712.835715 +2712.951599 +2713.065485 +2713.219098 +2713.292458 +2713.408708 +2713.522694 +2713.563787 +2713.643940 +2713.739377 +2713.786164 +2713.976840 +2714.069380 +2714.114602 +2714.188728 +2714.254029 +2714.441375 +2714.528454 +2714.657725 +2714.719763 +2714.809939 +2714.967715 +2715.032350 +2715.117631 +2715.200681 +2715.298317 +2715.358657 +2715.430718 +2715.509139 +2715.972309 +2716.135446 +2716.274806 +2716.303677 +2716.340207 +2716.399515 +2716.673341 +2716.731283 +2716.878768 +2717.043637 +2717.175871 +2717.230882 +2717.569410 +2717.916962 +2718.020092 +2718.101078 +2718.179599 +2718.250029 +2718.685826 +2718.764581 +2718.851427 +2718.914164 +2719.108303 +2719.279132 +2719.398479 +2719.633544 +2719.884859 +2719.891819 +2719.995815 +2720.277333 +2720.341136 +2720.386957 +2720.462514 +2720.592850 +2720.731345 +2720.816726 +2720.897745 +2720.984592 +2721.083493 +2721.148028 +2721.162880 +2721.254322 +2721.322054 +2721.512064 +2721.667808 +2721.746629 +2721.853422 +2721.913861 +2722.237804 +2722.499475 +2722.581360 +2722.719988 +2722.801306 +2723.030777 +2723.253887 +2723.414759 +2723.568538 +2723.661013 +2723.699341 +2723.763144 +2723.847759 +2723.866973 +2724.163143 +2724.244329 +2724.366440 +2724.430076 +2725.161211 +2725.198507 +2725.489582 +2725.557847 +2725.676961 +2725.743828 +2725.869835 +2725.975829 +2726.023248 +2726.062176 +2726.106964 +2726.183088 +2726.242329 +2726.282722 +2726.312392 +2726.370700 +2726.419385 +2726.622848 +2726.698505 +2726.775528 +2726.922082 +2727.020583 +2727.075528 +2727.443326 +2727.511458 +2727.691611 +2727.859310 +2727.914788 +2727.978025 +2728.221747 +2728.307661 +2728.579589 +2728.682986 +2728.742093 +2728.860874 +2728.975459 +2729.142292 +2729.186448 +2729.316285 +2729.392242 +2729.433601 +2729.618016 +2729.688546 +2729.755878 +2729.912688 +2730.084150 +2730.169764 +2730.246187 +2730.369730 +2730.464336 +2730.502997 +2730.784349 +2730.887812 +2730.953413 +2731.015517 +2731.073626 +2731.139560 +2731.203662 +2731.360339 +2731.393539 +2731.443822 +2731.581751 +2731.671827 +2732.003162 +2732.074191 +2732.292706 +2732.331567 +2732.479385 +2732.582349 +2732.654410 +2732.718946 +2732.806125 +2732.893105 +2733.021276 +2733.072958 +2733.145785 +2733.340723 +2733.393770 +2733.442555 +2733.481282 +2733.524439 +2733.700763 +2733.769094 +2733.869727 +2733.966297 +2734.014815 +2734.089973 +2734.119777 +2734.185444 +2734.266363 +2734.330699 +2734.402127 +2734.494335 +2734.688907 +2734.747015 +2734.778051 +2734.872723 +2734.965297 +2734.966462 +2735.073455 +2735.187008 +2735.327434 +2735.370391 +2735.538024 +2735.717710 +2736.017843 +2736.135592 +2736.314080 +2736.416311 +2736.642218 +2736.858002 +2737.110050 +2737.202191 +2737.402191 +2737.553373 +2737.693366 +2737.856902 +2737.983010 +2738.121171 +2738.293099 +2738.438387 +2738.535490 +2738.770688 +2738.872453 +2738.938187 +2738.998926 +2739.056568 +2739.122869 +2739.162196 +2739.386571 +2739.441749 +2739.785139 +2739.850107 +2739.857533 +2739.929994 +2740.092864 +2740.368255 +2740.481342 +2740.543580 +2740.664126 +2740.723533 +2740.815841 +2740.901055 +2740.981908 +2741.142680 +2741.199490 +2741.317638 +2741.507149 +2741.628261 +2741.783572 +2741.950172 +2742.112309 +2742.401820 +2742.642046 +2742.745509 +2742.836018 +2742.913741 +2742.988299 +2743.072582 +2743.258462 +2743.364056 +2743.438648 +2743.520533 +2743.607846 +2743.716237 +2743.775278 +2743.887999 +2743.910210 +2743.985101 +2744.093526 +2744.170150 +2744.283170 +2744.415404 +2744.547772 +2744.621897 +2744.876942 +2745.019100 +2745.119899 +2745.171114 +2745.194990 +2745.292992 +2745.420598 +2745.612839 +2745.755629 +2745.851566 +2746.046671 +2746.253065 +2746.368582 +2746.468216 +2746.654796 +2746.707410 +2746.939078 +2747.189827 +2747.317299 +2747.412571 +2747.621328 +2747.784099 +2747.865584 +2748.055827 +2748.254095 +2748.522127 +2748.618064 +2748.721527 +2749.107840 +2749.230484 +2749.451030 +2749.655625 +2749.816298 +2749.880767 +2749.899548 +2749.976704 +2750.110736 +2750.312434 +2750.814232 +2750.951128 +2751.158354 +2751.372806 +2751.483695 +2751.810368 +2751.962017 +2752.052459 +2752.124953 +2752.205040 +2752.337541 +2752.430448 +2753.190487 +2753.449428 +2753.875534 +2754.061615 +2754.255221 +2754.331245 +2754.405837 +2754.465943 +2754.599676 +2755.416292 +2755.502739 +2756.429678 +2756.543630 +2756.606134 +2756.697376 +2756.761945 +2756.866141 +2757.011362 +2757.252121 +2757.356550 +2757.470303 +2757.658414 +2757.778294 +2757.993845 +2758.104934 +2758.594677 +2758.597075 +2758.646525 +2758.947724 +2759.055483 +2759.231473 +2759.342595 +2759.754150 +2759.863474 +2760.039098 +2760.152618 +2760.335168 +2760.899404 +2761.019617 +2761.094408 +2761.105830 +2761.197672 +2761.450152 +2761.831304 +2761.905730 +2762.039462 +2762.172562 +2762.362039 +2762.400801 +2762.478356 +2762.580521 +2762.726408 +2762.839795 +2763.237430 +2763.299668 +2763.448086 +2763.517450 +2763.568432 +2763.620413 +2763.714419 +2763.975325 +2764.083017 +2764.197635 +2764.229404 +2764.266133 +2764.442790 +2764.576822 +2764.726706 +2764.730902 +2764.807125 +2764.873492 +2764.987411 +2765.393705 +2765.458240 +2765.471593 +2765.614384 +2765.747284 +2765.945253 +2766.170860 +2766.438492 +2766.558106 +2766.834130 +2766.980716 +2767.287742 +2767.538991 +2767.641155 +2767.921208 +2767.933163 +2768.142120 +2768.363832 +2768.613315 +2768.706688 +2768.743751 +2768.884277 +2769.542252 +2770.091968 +2770.327599 +2770.470023 +2771.469090 +2772.309282 +2773.040151 +2773.241416 +2773.330294 +2773.466857 +2773.600423 +2773.630127 +2773.747742 +2774.173316 +2774.556266 +2774.627761 +2775.102420 +2775.225430 +2775.571084 +2775.799855 +2775.910045 +2776.063558 +2776.199921 +2776.447240 +2776.527427 +2776.680140 +2776.732688 +2776.743244 +2776.828725 +2777.242045 +2777.494692 +2777.499454 +2777.746573 +2778.337282 +2778.430055 +2778.652466 +2778.852399 +2778.931287 +2779.052932 +2779.272079 +2780.407343 +2780.490460 +2780.637412 +2780.659657 +2780.677439 +2781.114968 +2781.290492 +2781.448201 +2781.694521 +2782.477437 +2782.660521 +2782.721959 +2782.728253 +2782.844403 +2782.970277 +2783.179301 +2783.368479 +2783.586261 +2783.680566 +2783.758355 +2783.855558 +2784.000646 +2784.136510 +2784.247699 +2784.316863 +2784.597415 +2785.165613 +2785.267944 +2785.441803 +2785.651893 +2786.053791 +2786.134776 +2786.199212 +2786.333244 +2786.459784 +2786.569408 +2786.692884 +2786.785791 +2786.886790 +2787.248961 +2787.266577 +2787.340836 +2787.483493 +2787.549294 +2787.660516 +2787.729846 +2787.837772 +2787.898977 +2788.227681 +2788.614994 +2788.640834 +2788.668806 +2788.815959 +2789.108999 +2789.270038 +2789.562712 +2789.651389 +2789.739435 +2790.089018 +2790.277496 +2790.354719 +2790.482058 +2791.278328 +2791.411095 +2791.505600 +2791.588450 +2791.799106 +2791.997907 +2792.091747 +2792.293245 +2792.445126 +2792.550354 +2792.609761 +2792.748223 +2792.813025 +2793.246091 +2793.387050 +2793.495775 +2793.526610 +2793.588848 +2793.595475 +2793.783853 +2793.976327 +2794.571897 +2794.661874 +2794.739763 +2794.824877 +2794.854548 +2794.931338 +2795.028507 +2795.085683 +2795.220481 +2795.490744 +2795.657278 +2795.666568 +2795.777191 +2796.202598 +2796.317383 +2796.538296 +2796.603031 +2796.736997 +2796.765468 +2796.885315 +2797.212987 +2797.392740 +2797.544322 +2797.652114 +2797.664169 +2797.750116 +2797.830702 +2798.125141 +2798.295370 +2798.666099 +2798.719812 +2798.849749 +2799.621709 +2799.864433 +2800.012585 +2800.042888 +2800.342887 +2800.489607 +2800.561702 +2801.399063 +2801.828034 +2801.861767 +2801.903159 +2802.258503 +2802.324737 +2802.582612 +2802.592535 +2802.739089 +2803.355871 +2804.020339 +2804.169390 +2804.496163 +2804.621071 +2805.055337 +2805.163362 +2805.195430 +2805.756934 +2805.846978 +2806.290833 +2806.337653 +2806.990899 +2807.245611 +2807.606650 +2807.881807 +2808.132923 +2808.325097 +2808.808979 +2809.217404 +2809.439715 +2809.462592 +2809.608612 +2809.756797 +2809.918169 +2810.327792 +2810.386833 +2810.768784 +2810.840546 +2810.910576 +2811.118634 +2811.317668 +2811.443609 +2812.234617 +2812.452266 +2812.531120 +2812.698319 +2813.059658 +2813.242541 +2813.350900 +2813.390160 +2813.569780 +2813.753463 +2813.813736 +2813.872677 +2813.947835 +2814.086263 +2814.820662 +2814.994288 +2815.190192 +2815.323825 +2815.493089 +2815.588893 +2815.874174 +2816.442671 +2816.524090 +2816.744869 +2816.847733 +2816.963184 +2816.984529 +2817.507073 +2817.851961 +2818.055424 +2818.091887 +2818.217994 +2818.318693 +2818.388357 +2818.445733 +2818.492020 +2818.553958 +2818.581331 +2818.631114 +2818.700178 +2818.909435 +2819.669042 +2819.811799 +2819.894383 +2820.214862 +2821.016093 +2821.181694 +2821.339969 +2821.453555 +2821.537138 +2822.235373 +2822.370105 +2822.473335 +2822.532076 +2822.654387 +2822.798842 +2822.970337 +2824.210795 +2824.495078 +2824.657215 +2824.834271 +2825.323715 +2825.403035 +2825.492579 +2825.585120 +2825.682456 +2825.778127 +2826.638166 +2826.670167 +2826.691412 +2826.731339 +2826.809627 +2827.250053 +2827.425611 +2827.581954 +2827.600469 +2827.665571 +2828.371064 +2828.543125 +2828.645356 +2828.756911 +2828.943924 +2829.392109 +2829.498536 +2829.627307 +2829.678223 +2829.710657 +2829.803364 +2830.053913 +2830.349650 +2830.445122 +2830.483583 +2830.548685 +2830.607126 +2830.684515 +2830.748684 +2830.904895 +2830.908458 +2830.951981 +2831.015884 +2831.086280 +2831.207092 +2831.250349 +2831.252913 +2831.278387 +2831.350748 +2831.622576 +2831.684448 +2831.807857 +2831.920012 +2831.990608 +2832.082849 +2832.140191 +2832.178653 +2832.283814 +2832.339559 +2832.464367 +2832.558340 +2832.657707 +2832.838426 +2833.013850 +2833.178752 +2833.301429 +2833.362568 +2833.450946 +2833.470193 +2833.499964 +2833.600363 +2833.613217 +2833.702827 +2833.725671 +2833.906423 +2834.130732 +2834.271658 +2834.378018 +2834.455341 +2834.585743 +2834.657971 +2834.741021 +2834.767195 +2834.978783 +2835.110152 +2835.164731 +2835.217678 +2835.265530 +2835.341853 +2835.432196 +2835.487741 +2835.570025 +2835.647414 +2835.684477 +2835.841853 +2835.872855 +2836.061000 +2836.249445 +2836.421106 +2836.554273 +2836.639221 +2836.739920 +2836.750643 +2836.771256 +2836.853507 +2837.061066 +2837.129231 +2837.387106 +2837.499360 +2837.584975 +2837.706653 +2838.014678 +2838.119639 +2838.254704 +2838.383309 +2838.427731 +2838.490268 +2838.524834 +2838.805919 +2838.902256 +2838.969988 +2839.031826 +2839.110414 +2839.188802 +2839.259665 +2839.319572 +2839.460064 +2839.537420 +2839.610780 +2839.678845 +2839.782408 +2839.847576 +2839.975249 +2840.041449 +2840.092331 +2840.262661 +2840.326131 +2840.523433 +2840.690832 +2840.827495 +2840.895527 +2840.951671 +2841.001521 +2841.059097 +2841.111611 +2841.164425 +2841.256399 +2841.276646 +2841.350705 +2841.497891 +2841.590565 +2841.675147 +2841.852802 +2842.015173 +2842.022066 +2842.077444 +2842.292629 +2842.358996 +2842.418703 +2842.455166 +2842.683138 +2842.785535 +2842.901719 +2842.961759 +2843.005515 +2843.044609 +2843.119768 +2843.237283 +2843.326927 +2843.376910 +2843.453933 +2843.696723 +2843.792860 +2843.832920 +2843.912774 +2843.953433 +2844.045508 +2844.237449 +2844.329390 +2844.349670 +2844.415604 +2844.471648 +2844.650369 +2844.698421 +2844.988630 +2845.087365 +2845.160059 +2845.208843 +2845.268450 +2845.336981 +2845.406312 +2845.490062 +2845.634284 +2845.709708 +2845.807477 +2845.867850 +2845.980304 +2846.056961 +2846.097953 +2846.336980 +2846.527390 +2846.683167 +2846.847403 +2846.938678 +2847.083866 +2847.235414 +2847.266250 +2847.313836 +2847.431718 +2847.489926 +2847.553196 +2847.659224 +2847.756060 +2848.022393 +2848.147302 +2848.359056 +2848.406575 +2848.461421 +2848.527022 +2848.591657 +2848.844237 +2848.985629 +2849.186029 +2849.256924 +2849.329618 +2849.404243 +2849.485595 +2849.517663 +2849.537377 +2849.595952 +2849.723524 +2849.841506 +2849.888892 +2849.969744 +2850.281266 +2850.414665 +2850.464449 +2850.731581 +2850.944502 +2851.049363 +2851.082963 +2851.142204 +2851.190156 +2851.245101 +2851.278201 +2851.319659 +2851.431814 +2851.488590 +2851.655656 +2851.868643 +2851.942836 +2852.002543 +2852.071107 +2852.100478 +2852.248530 +2852.276335 +2852.326751 +2852.431014 +2852.493851 +2852.540038 +2852.630680 +2852.693185 +2852.784526 +2852.922455 +2853.037307 +2853.281795 +2853.314563 +2853.539238 +2853.608968 +2853.666910 +2853.951658 +2854.050559 +2854.107003 +2854.164379 +2854.206736 +2854.238271 +2854.273236 +2854.329846 +2854.365977 +2854.430312 +2854.492317 +2854.572703 +2854.616126 +2854.677332 +2854.837804 +2855.057251 +2855.226715 +2855.372769 +2855.452423 +2855.519689 +2855.576432 +2855.634707 +2855.726615 +2855.816258 +2855.857883 +2855.934174 +2855.998676 +2856.070304 +2856.173534 +2856.254686 +2856.591116 +2856.658382 +2856.806234 +2856.858948 +2856.915958 +2856.991549 +2857.191748 +2857.258515 +2857.442730 +2857.556550 +2857.618155 +2857.703003 +2857.786486 +2857.861012 +2857.904401 +2857.952553 +2858.020752 +2858.127178 +2858.239433 +2858.443695 +2858.600505 +2858.771866 +2859.089049 +2859.137900 +2859.173098 +2859.236568 +2859.554916 +2859.804400 +2859.904999 +2859.975861 +2860.039364 +2860.096174 +2860.237300 +2860.385851 +2860.456081 +2860.555548 +2860.607362 +2860.767902 +2860.839563 +2860.932304 +2860.987915 +2861.049953 +2861.207462 +2861.295041 +2861.405630 +2861.482387 +2861.538697 +2861.635533 +2861.837731 +2861.930038 +2862.043958 +2862.229938 +2862.328173 +2862.377690 +2862.459608 +2862.513588 +2862.597104 +2862.710657 +2862.792941 +2862.877590 +2862.947453 +2863.022978 +2863.117117 +2863.179588 +2863.267666 +2863.352415 +2863.440460 +2863.555645 +2863.745288 +2863.912421 +2863.972494 +2864.253946 +2864.317748 +2864.467831 +2864.557841 +2864.635297 +2864.721145 +2864.748950 +2864.900165 +2865.030901 +2865.103562 +2865.244021 +2865.315150 +2865.499232 +2865.621177 +2865.785146 +2865.965133 +2865.983647 +2866.167863 +2866.311419 +2866.473790 +2866.569494 +2866.662701 +2866.873756 +2866.901196 +2866.976587 +2867.003393 +2867.147050 +2867.212184 +2867.329300 +2867.616580 +2867.769260 +2867.963233 +2868.046616 +2868.228334 +2868.315247 +2868.321574 +2868.359636 +2868.382446 +2868.482146 +2868.518144 +2868.686575 +2868.948147 +2869.067427 +2869.161034 +2869.253208 +2869.253974 +2869.298030 +2869.371456 +2869.430331 +2869.483844 +2869.526867 +2869.687340 +2869.946414 +2870.017743 +2870.249777 +2870.326800 +2870.540253 +2870.629064 +2870.687705 +2870.752341 +2870.811082 +2870.898961 +2870.951408 +2871.222970 +2871.320505 +2871.423436 +2871.610915 +2871.732892 +2871.854637 +2872.089902 +2872.297827 +2872.899458 +2872.913278 +2872.955369 +2872.962961 +2873.066924 +2873.119871 +2873.130493 +2873.216374 +2873.292598 +2873.389834 +2873.451272 +2873.599557 +2873.745644 +2873.954269 +2874.243346 +2874.311045 +2874.595760 +2874.848207 +2874.894494 +2874.912476 +2875.033355 +2875.109179 +2875.163858 +2875.225996 +2875.304650 +2875.389066 +2875.447441 +2875.579342 +2875.814207 +2875.913208 +2875.957330 +2876.197923 +2876.320667 +2876.463690 +2876.641079 +2876.903950 +2876.968751 +2877.097955 +2877.439680 +2877.535118 +2877.546173 +2877.585767 +2877.659860 +2877.678607 +2877.786266 +2877.840778 +2877.974345 +2878.217202 +2878.420731 +2878.489429 +2878.624094 +2878.752000 +2878.852599 +2878.924494 +2879.048037 +2879.154663 +2879.470647 +2879.592192 +2879.671612 +2879.742808 +2879.821629 +2879.868082 +2880.104013 +2880.183900 +2880.277040 +2880.515701 +2880.545138 +2880.625791 +2880.772744 +2880.814635 +2880.823493 +2880.873709 +2880.950899 +2881.036513 +2881.116366 +2881.156459 +2881.207808 +2881.328421 +2881.637844 +2881.697418 +2881.754494 +2881.818463 +2881.869313 +2882.059888 +2882.204344 +2882.282632 +2882.447700 +2882.852795 +2882.918529 +2883.058356 +2883.146601 +2883.218196 +2883.251629 +2883.364349 +2883.381932 +2883.469611 +2883.708372 +2883.861718 +2884.042737 +2884.182664 +2884.207738 +2884.233413 +2884.262184 +2884.316263 +2884.409770 +2884.414665 +2884.473373 +2884.580332 +2884.833479 +2885.022523 +2885.257821 +2885.358553 +2885.390654 +2885.407071 +2885.563015 +2885.607304 +2886.028150 +2886.100377 +2886.281762 +2886.387223 +2886.526584 +2886.571206 +2886.620490 +2886.673870 +2886.752025 +2886.857286 +2886.974402 +2887.200343 +2887.325185 +2887.597645 +2887.830545 +2887.858917 +2887.892683 +2887.896013 +2887.959883 +2888.089453 +2888.154954 +2888.261614 +2888.369806 +2888.499609 +2888.743365 +2888.857417 +2889.021720 +2889.091616 +2889.115726 +2889.234806 +2889.289119 +2889.458016 +2889.776431 +2890.113527 +2890.182824 +2890.249690 +2890.342631 +2890.417056 +2890.539234 +2890.651755 +2891.059447 +2891.116256 +2891.350322 +2891.386153 +2891.474165 +2891.592813 +2891.691847 +2891.790548 +2892.021550 +2892.206965 +2892.302669 +2892.369036 +2892.437434 +2892.444360 +2892.592945 +2892.775096 +2892.981856 +2893.040797 +2893.094010 +2893.154449 +2893.214922 +2893.279691 +2893.340730 +2893.524113 +2893.600336 +2893.673330 +2893.735601 +2893.871598 +2893.931605 +2894.057212 +2894.134435 +2894.291878 +2894.511125 +2894.659443 +2894.726542 +2894.792377 +2894.876293 +2894.936566 +2895.256279 +2895.361407 +2895.417284 +2895.486648 +2895.701367 +2895.854114 +2896.127307 +2896.245389 +2896.247520 +2896.287946 +2896.300667 +2896.462338 +2896.663703 +2896.710756 +2896.794139 +2896.860640 +2897.005328 +2897.128238 +2897.257043 +2897.303729 +2897.487279 +2897.559240 +2897.644488 +2897.798567 +2897.868131 +2897.917448 +2897.990409 +2898.251614 +2898.365766 +2898.592739 +2898.630934 +2898.685480 +2898.888743 +2899.182082 +2899.252046 +2899.395436 +2899.522575 +2899.647883 +2899.696534 +2899.739225 +2899.750347 +2899.887643 +2899.980184 +2900.073257 +2900.140923 +2900.277786 +2900.624339 +2900.741821 +2900.794135 +2900.888175 +2901.169526 +2901.257572 +2901.371990 +2901.439356 +2901.551644 +2901.703658 +2901.798064 +2901.975187 +2902.099329 +2902.181447 +2902.275486 +2902.491670 +2902.534826 +2902.720540 +2902.787906 +2902.840420 +2902.909285 +2903.084743 +2903.465761 +2903.575385 +2903.808451 +2904.003023 +2904.182311 +2904.255171 +2904.325467 +2904.427698 +2904.516210 +2904.733725 +2904.853139 +2904.982310 +2905.051507 +2905.092733 +2905.132726 +2905.293565 +2905.406185 +2905.470321 +2905.541816 +2905.624067 +2905.701157 +2905.789702 +2905.885805 +2906.010680 +2906.060830 +2906.175715 +2906.240184 +2906.351206 +2906.424766 +2906.468888 +2906.565891 +2906.646344 +2906.862361 +2906.919537 +2907.095361 +2907.165125 +2907.287003 +2907.375847 +2907.544179 +2907.680309 +2907.716839 +2907.928228 +2908.029093 +2908.081441 +2908.244278 +2908.319536 +2908.491464 +2908.510112 +2908.567787 +2908.753202 +2908.809479 +2908.940814 +2909.077044 +2909.247574 +2909.318769 +2909.363491 +2909.576944 +2909.836018 +2909.945009 +2910.008445 +2910.080307 +2910.291262 +2910.537682 +2910.809210 +2911.000452 +2911.140479 +2911.327025 +2911.552933 +2911.635383 +2911.693991 +2911.820032 +2911.898353 +2912.023495 +2912.303748 +2912.449968 +2912.979205 +2913.027290 +2913.105145 +2913.162388 +2913.503713 +2913.626790 +2913.708242 +2913.760057 +2913.851099 +2914.172344 +2914.296420 +2914.409806 +2914.496586 +2914.557825 +2914.695287 +2914.750698 +2914.809140 +2914.912170 +2915.171277 +2915.362586 +2915.454827 +2915.513068 +2915.631916 +2915.704743 +2915.846235 +2915.921260 +2915.963617 +2916.005209 +2916.045569 +2916.090890 +2916.235345 +2916.310404 +2916.675904 +2916.767280 +2916.832414 +2916.908538 +2916.922458 +2917.034013 +2917.105275 +2917.280499 +2917.416030 +2917.471774 +2917.535644 +2917.711668 +2917.879233 +2917.909503 +2918.006839 +2918.012566 +2918.111467 +2918.341937 +2918.416495 +2918.561384 +2918.627418 +2918.751860 +2918.822189 +2919.014330 +2919.085925 +2919.093851 +2919.251260 +2919.416827 +2919.533477 +2919.635975 +2919.828382 +2920.136374 +2920.229248 +2920.418325 +2920.496080 +2920.635907 +2920.676966 +2920.800076 +2920.881628 +2921.111198 +2921.353689 +2921.571704 +2921.632043 +2921.686322 +2921.777298 +2921.892250 +2922.177930 +2922.271004 +2922.328646 +2922.519222 +2922.601306 +2922.772835 +2922.792915 +2923.059947 +2923.133474 +2923.239135 +2923.303970 +2923.528978 +2923.594213 +2923.631209 +2923.779361 +2923.994745 +2924.345461 +2924.430908 +2924.473033 +2924.550156 +2924.792113 +2924.998474 +2925.121084 +2925.177394 +2925.245027 +2925.257647 +2925.370002 +2925.477994 +2926.239431 +2926.478625 +2926.813823 +2926.977293 +2927.194542 +2927.330972 +2927.451285 +2927.563806 +2928.179623 +2928.392876 +2928.413189 +2928.683085 +2928.817284 +2929.249818 +2929.322112 +2929.416651 +2929.447853 +2930.106460 +2930.490343 +2930.901265 +2931.223542 +2931.329969 +2931.379852 +2931.644188 +2932.522242 +2934.122940 +2934.253409 +2934.357039 +2935.446182 +2935.454207 +2935.601527 +2935.802692 +2936.087307 +2936.623370 +2936.740420 +2937.006454 +2937.806653 +2938.489502 +2938.555237 +2938.698094 +2938.758933 +2938.832293 +2939.715708 +2939.864226 +2940.022934 +2940.112211 +2940.540549 +2940.754835 +2940.809513 +2940.901788 +2941.002187 +2941.143479 +2941.713442 +2941.887501 +2942.767986 +2943.143111 +2943.359161 +2944.050569 +2944.125794 +2944.512174 +2944.606413 +2944.660792 +2944.763922 +2945.224594 +2945.586631 +2946.198319 +2946.658558 +2946.737579 +2946.878705 +2946.908308 +2947.036913 +2947.582966 +2948.015900 +2948.067948 +2948.531317 +2948.904976 +2949.221926 +2949.443171 +2949.477903 +2949.896617 +2950.365082 +2950.545701 +2950.845834 +2951.371741 +2951.569509 +2952.087924 +2952.356089 +2953.220989 +2953.567243 +2953.921122 +2954.743099 +2955.004904 +2955.101374 +2955.530478 +2955.705702 +2955.805669 +2956.183591 +2956.420420 +2956.591449 +2956.814925 +2956.938635 +2957.033673 +2957.153187 +2957.368738 +2957.670535 +2957.723749 +2957.747825 +2957.866739 +2958.000106 +2958.174564 +2958.270135 +2958.329376 +2958.522882 +2958.623482 +2959.032872 +2959.217320 +2959.297707 +2959.524147 +2959.607663 +2959.823447 +2959.915422 +2959.956481 +2960.128642 +2960.444159 +2960.526676 +2960.551185 +2960.692710 +2960.802967 +2961.165870 +2961.248687 +2961.282553 +2961.348987 +2961.377059 +2962.034034 +2962.155879 +2962.366934 +2962.690044 +2962.741160 +2963.374659 +2963.735365 +2963.867632 +2964.115284 +2964.393706 +2964.535763 +2964.665167 +2964.776955 +2965.965565 +2966.163734 +2966.438126 +2966.715248 +2966.765232 +2966.921275 +2967.271958 +2967.410652 +2967.486177 +2967.842220 +2968.198630 +2968.575420 +2968.866795 +2970.093533 +2970.354306 +2970.509517 +2970.541718 +2970.946513 +2971.365427 +2971.863462 +2974.172850 +2974.736885 +2975.276345 +2975.363658 +2975.633188 +2975.786501 +2975.805183 +2976.036817 +2976.133221 +2977.613872 +2977.751268 +2978.004581 +2978.096955 +2978.236682 +2978.443708 +2978.618966 +2978.812173 +2978.979039 +2979.100384 +2979.210907 +2979.392092 +2979.649002 +2979.733783 +2979.746238 +2980.351831 +2981.216932 +2981.329153 +2981.509506 +2981.554528 +2981.727388 +2981.851430 +2981.962719 +2982.100148 +2982.823957 +2982.901246 +2983.257356 +2983.483763 +2983.690623 +2983.912967 +2984.109137 +2984.859253 +2985.027418 +2985.314697 +2985.510268 +2986.024553 +2986.138106 +2986.335875 +2986.384826 +2988.275233 +2988.474101 +2988.549792 +2989.402771 +2989.603337 +2989.753587 +2989.854186 +2989.946061 +2990.043064 +2990.222251 +2990.435904 +2990.520453 +2991.017755 +2991.066506 +2991.840898 +2991.996875 +2992.111094 +2992.215856 +2992.235969 +2993.583320 +2994.123746 +2995.021214 +2995.558843 +2995.590511 +2995.684084 +2995.821446 +2996.477689 +2996.607559 +2996.733966 +2996.924043 +2997.036097 +2998.009123 +2998.102896 +2998.210621 +2998.382549 +2998.426905 +2998.633565 +2998.926272 +2999.100664 +2999.162602 +2999.248150 +2999.384713 +2999.549215 +2999.637427 +3000.185212 +3000.256573 +3000.291372 +3000.390606 +3000.901095 +3001.231997 +3001.307422 +3002.279981 +3002.466661 +3002.798829 +3003.655305 +3003.704455 +3003.789137 +3003.965994 +3004.839286 +3004.925866 +3004.966992 +3005.011547 +3005.066126 +3005.134491 +3005.429728 +3005.784007 +3006.021802 +3006.139884 +3006.169888 +3006.917905 +3007.006717 +3007.017805 +3007.145677 +3007.259996 +3008.162426 +3008.272017 +3008.307315 +3008.408447 +3008.552236 +3008.657164 +3008.807181 +3008.865589 +3009.366188 +3009.569118 +3009.636151 +3009.733087 +3009.797756 +3010.027926 +3010.771448 +3012.146272 +3012.629621 +3012.892325 +3013.126990 +3013.429920 +3013.614735 +3013.731951 +3014.016866 +3014.569413 +3014.609473 +3014.763918 +3014.967082 +3015.072276 +3015.158690 +3015.270644 +3016.037310 +3016.113967 +3016.126921 +3016.369478 +3016.628818 +3016.823490 +3017.332780 +3017.405341 +3017.537109 +3017.710402 +3018.323655 +3018.966778 +3019.033811 +3019.081496 +3019.126751 +3019.130814 +3019.199345 +3019.235709 +3019.392185 +3019.731679 +3019.898479 +3020.097746 +3020.183360 +3020.210400 +3020.347629 +3020.363646 +3020.446663 +3020.547296 +3020.617759 +3020.672504 +3020.756453 +3020.974834 +3021.112630 +3021.464977 +3021.631910 +3021.750092 +3021.907334 +3021.998809 +3022.081227 +3022.147527 +3022.239069 +3022.386921 +3022.521486 +3022.617091 +3022.832275 +3022.873900 +3022.934473 +3023.078695 +3023.277263 +3023.327246 +3023.403337 +3023.504502 +3023.692048 +3023.958281 +3023.999507 +3024.081292 +3024.122584 +3024.170169 +3024.215058 +3024.243263 +3024.341931 +3024.451454 +3024.510762 +3024.661544 +3024.835537 +3024.989616 +3025.211993 +3025.288883 +3025.494610 +3025.587384 +3025.851719 +3026.085752 +3026.270600 +3026.424479 +3026.539664 +3026.761675 +3026.897539 +3027.301934 +3027.363673 +3027.833436 +3028.209493 +3028.263072 +3028.276692 +3028.381720 +3028.906228 +3029.146188 +3029.271862 +3029.292142 +3029.301533 +3029.514986 +3029.575159 +3029.755212 +3029.820080 +3029.931769 +3030.064636 +3030.189311 +3030.674758 +3030.786446 +3030.846952 +3030.891142 +3030.983050 +3031.041091 +3031.306126 +3031.345653 +3031.490875 +3031.594138 +3031.677221 +3031.800764 +3031.958407 +3032.359605 +3032.414084 +3032.524873 +3032.614750 +3032.694869 +3032.774923 +3032.955775 +3033.155308 +3033.280383 +3033.423706 +3033.512085 +3033.674922 +3033.891039 +3033.940123 +3033.989806 +3034.046283 +3034.114681 +3034.271591 +3034.341654 +3034.448814 +3034.509386 +3034.645517 +3034.730165 +3035.037624 +3035.383345 +3035.489106 +3035.624770 +3035.736558 +3035.858070 +3035.971523 +3036.220607 +3036.335791 +3036.515745 +3036.859367 +3036.897762 +3037.141818 +3037.209783 +3037.272787 +3037.421804 +3037.466593 +3037.499027 +3037.693099 +3037.809250 +3037.899293 +3037.967891 +3038.042783 +3038.162829 +3038.305320 +3038.551673 +3038.578114 +3038.626698 +3038.725266 +3038.789668 +3038.812246 +3038.838919 +3038.953504 +3039.006019 +3039.136821 +3039.332592 +3039.488569 +3039.662928 +3039.964892 +3040.099491 +3040.262161 +3040.305551 +3040.369487 +3040.431958 +3040.650040 +3040.771618 +3040.924198 +3041.011611 +3041.091098 +3041.150439 +3041.254601 +3041.408680 +3041.455467 +3041.509646 +3041.595826 +3041.733089 +3041.782306 +3041.844277 +3041.934387 +3042.020967 +3042.088466 +3042.190864 +3042.386268 +3042.580940 +3042.700753 +3042.812009 +3042.862658 +3042.953334 +3042.995658 +3043.078609 +3043.136784 +3043.208379 +3043.333753 +3043.409011 +3043.483836 +3043.575944 +3043.619800 +3043.721032 +3043.821398 +3043.903050 +3044.053000 +3044.396256 +3044.626792 +3044.830055 +3044.991028 +3045.113538 +3045.149136 +3045.191926 +3045.247038 +3045.300718 +3045.370914 +3045.487397 +3045.644240 +3045.829422 +3045.965952 +3046.206777 +3046.457793 +3046.616167 +3046.708741 +3046.785498 +3046.806910 +3046.845704 +3046.928222 +3046.998685 +3047.054229 +3047.141242 +3047.209973 +3047.301448 +3047.419996 +3047.560789 +3047.755627 +3048.384064 +3048.527854 +3048.602912 +3048.616399 +3048.680901 +3048.707341 +3048.762486 +3048.800448 +3048.855426 +3048.964983 +3049.195985 +3049.362518 +3049.919694 +3050.024656 +3050.118695 +3050.205008 +3050.245401 +3050.595184 +3050.737209 +3050.901911 +3051.131015 +3051.456922 +3051.509403 +3051.558853 +3051.642236 +3051.743235 +3051.941037 +3052.131313 +3052.270308 +3052.358120 +3052.469175 +3052.556721 +3052.674403 +3052.724053 +3052.764013 +3052.806904 +3052.848962 +3052.874536 +3052.908968 +3052.965911 +3053.061516 +3053.137406 +3053.284959 +3053.440270 +3053.614895 +3053.861215 +3054.140136 +3054.371338 +3054.412630 +3054.479063 +3054.527049 +3054.585723 +3054.675134 +3054.728947 +3054.781960 +3054.846795 +3054.927348 +3055.075666 +3055.193015 +3055.335673 +3055.691683 +3056.288186 +3056.466840 +3056.596277 +3056.689118 +3056.803503 +3056.894346 +3057.238102 +3057.623616 +3057.729043 +3057.769103 +3057.794711 +3058.214491 +3058.723781 +3058.819485 +3058.883921 +3059.098473 +3059.187484 +3059.262009 +3059.740563 +3059.934336 +3060.042694 +3060.150453 +3060.232837 +3060.303400 +3060.436700 +3060.525078 +3060.710093 +3061.012623 +3061.061608 +3061.151651 +3061.188014 +3061.206696 +3061.281721 +3061.368800 +3061.479856 +3061.609126 +3061.715020 +3062.129838 +3062.392409 +3062.427041 +3062.502765 +3062.611057 +3062.807127 +3063.122012 +3063.473726 +3063.615151 +3063.843223 +3064.164968 +3064.283749 +3064.400432 +3064.474591 +3064.531801 +3064.601164 +3064.798767 +3064.981484 +3065.088077 +3065.214217 +3065.275656 +3065.361104 +3065.434830 +3065.497367 +3065.824340 +3065.966564 +3066.202861 +3066.273890 +3066.357906 +3066.520876 +3066.613683 +3066.748748 +3067.027003 +3067.235694 +3067.403926 +3067.763998 +3067.930066 +3068.156106 +3068.351144 +3068.394900 +3068.523305 +3068.648913 +3068.830764 +3069.125203 +3069.188239 +3069.344450 +3069.544583 +3069.629498 +3069.644916 +3069.811982 +3069.975152 +3070.116510 +3070.188072 +3070.387139 +3070.646313 +3070.758201 +3070.883509 +3071.004621 +3071.075817 +3071.189070 +3071.588004 +3071.726732 +3071.991667 +3072.038819 +3072.061230 +3072.120737 +3072.127431 +3072.307617 +3072.358666 +3072.424933 +3072.474883 +3072.537620 +3072.762595 +3072.867756 +3072.937919 +3073.045878 +3073.127030 +3073.216374 +3073.410147 +3073.518938 +3073.820935 +3073.975780 +3074.076679 +3074.153769 +3074.242913 +3074.703352 +3074.972283 +3075.063025 +3075.147008 +3075.285503 +3075.460095 +3075.580108 +3075.696591 +3075.784903 +3075.874147 +3076.997023 +3077.120100 +3077.252267 +3077.370216 +3077.504182 +3077.748504 +3077.820998 +3077.887032 +3078.322496 +3078.412772 +3078.476109 +3078.667417 +3078.817834 +3078.911573 +3079.022162 +3079.084300 +3079.147803 +3079.185532 +3079.210174 +3079.313238 +3079.402582 +3079.481003 +3079.536514 +3079.666351 +3079.762222 +3080.300350 +3080.426190 +3080.481668 +3080.509573 +3080.641675 +3080.742041 +3080.824658 +3080.910739 +3081.015334 +3081.096786 +3081.392057 +3081.767081 +3081.797950 +3082.026388 +3082.193654 +3082.309705 +3082.574340 +3082.710404 +3082.744203 +3082.789158 +3082.824223 +3082.891756 +3082.963717 +3082.981033 +3083.075005 +3083.161519 +3083.274872 +3083.465681 +3083.686693 +3083.800013 +3084.348497 +3084.483496 +3084.651561 +3084.748530 +3084.849429 +3084.881697 +3084.914697 +3085.156788 +3085.433012 +3085.487058 +3085.620025 +3085.962648 +3086.156587 +3086.232745 +3086.264946 +3086.375302 +3086.524020 +3087.516260 +3087.643199 +3087.850359 +3088.087954 +3088.672935 +3088.709032 +3088.770338 +3088.823851 +3088.862412 +3088.881427 +3089.122885 +3089.436937 +3089.561346 +3089.757982 +3089.841799 +3089.945928 +3090.022984 +3090.096777 +3090.248958 +3090.326980 +3090.401638 +3090.581325 +3090.680559 +3090.864908 +3091.033173 +3091.257914 +3091.350622 +3091.530275 +3091.668770 +3091.702636 +3091.758813 +3091.806965 +3091.890281 +3092.251919 +3092.450521 +3092.560444 +3092.673298 +3092.977893 +3093.178725 +3093.246890 +3093.409727 +3093.447523 +3093.535368 +3093.576427 +3093.623080 +3093.755847 +3093.929207 +3094.155347 +3094.347122 +3094.518784 +3094.594408 +3094.724711 +3094.754581 +3094.818284 +3094.864904 +3094.927708 +3094.990778 +3095.104098 +3095.168467 +3095.236798 +3095.370931 +3095.463638 +3095.636964 +3095.730571 +3095.839528 +3096.004630 +3096.094639 +3096.304896 +3096.443590 +3096.689244 +3097.043390 +3097.226074 +3097.341325 +3097.377022 +3097.424109 +3097.522743 +3097.577089 +3097.622810 +3097.711221 +3097.753312 +3097.821011 +3097.931101 +3098.130335 +3098.428836 +3098.688976 +3098.758107 +3098.788743 +3098.819445 +3098.894970 +3099.006758 +3099.259305 +3099.446384 +3099.573857 +3099.754476 +3099.861502 +3100.167196 +3100.277552 +3100.361668 +3100.486543 +3100.726203 +3100.775221 +3101.029533 +3101.148247 +3101.276486 +3101.351211 +3101.581048 +3101.797697 +3102.066262 +3102.195799 +3102.282079 +3102.342352 +3102.343318 +3102.359335 +3102.412249 +3102.517244 +3102.568226 +3102.604590 +3102.729931 +3102.870324 +3102.959468 +3103.122405 +3103.213280 +3103.481978 +3103.655404 +3103.792134 +3103.843549 +3103.869290 +3103.955304 +3104.012314 +3104.034325 +3104.174385 +3104.340552 +3104.634258 +3104.776449 +3104.867558 +3104.941917 +3105.088004 +3105.188703 +3105.400191 +3105.545512 +3105.637654 +3105.661763 +3105.692998 +3105.787370 +3105.826864 +3105.973917 +3106.066724 +3106.402088 +3106.493530 +3106.627063 +3106.770719 +3107.042614 +3107.174715 +3107.416773 +3107.533423 +3107.613010 +3107.681907 +3107.762993 +3108.023565 +3108.190665 +3108.352436 +3108.500621 +3108.551170 +3108.588899 +3108.616638 +3108.723631 +3108.769685 +3109.164889 +3109.614040 +3109.697290 +3109.739048 +3109.806913 +3109.807180 +3109.879541 +3109.979374 +3110.174612 +3110.278208 +3110.398421 +3110.561658 +3110.664189 +3110.775577 +3111.010842 +3111.147904 +3111.244375 +3111.255097 +3111.318301 +3111.342476 +3111.410275 +3111.427458 +3111.670015 +3111.762256 +3111.881670 +3112.009142 +3112.207078 +3112.724992 +3112.780637 +3112.914469 +3113.183500 +3113.291226 +3113.431718 +3113.578871 +3113.696387 +3113.795388 +3113.868548 +3113.979637 +3114.031351 +3114.075707 +3114.251664 +3114.322926 +3114.394321 +3114.518630 +3114.615200 +3114.663019 +3114.860422 +3114.891058 +3115.009705 +3115.169712 +3115.236878 +3115.431550 +3115.520827 +3115.551563 +3115.679535 +3115.727620 +3115.776005 +3115.838209 +3116.383564 +3116.747766 +3116.995418 +3117.158455 +3117.255457 +3117.298614 +3117.441005 +3117.516563 +3117.547099 +3117.571541 +3117.646466 +3117.700412 +3117.757588 +3117.800778 +3117.867811 +3118.029516 +3118.085327 +3118.342369 +3118.474970 +3118.634644 +3118.722156 +3118.812732 +3118.872339 +3118.925719 +3118.987557 +3119.168909 +3119.385658 +3119.739637 +3119.960883 +3120.029680 +3120.298878 +3120.400876 +3120.533709 +3120.611032 +3120.893016 +3121.128747 +3121.238237 +3121.334408 +3121.449692 +3121.601274 +3121.832309 +3121.862146 +3122.283291 +3122.326981 +3122.412961 +3122.523617 +3122.671036 +3122.772601 +3122.859248 +3122.953753 +3123.173833 +3123.275831 +3123.348825 +3123.429511 +3123.518888 +3123.535571 +3123.612061 +3123.775831 +3123.907399 +3124.099407 +3124.301005 +3124.501171 +3124.650455 +3124.747758 +3124.868071 +3124.888217 +3124.927278 +3124.938001 +3124.977394 +3125.014457 +3125.024481 +3125.176162 +3125.192279 +3125.517853 +3125.625712 +3125.724280 +3125.857880 +3126.025279 +3126.320417 +3126.451153 +3126.618285 +3126.792278 +3126.815255 +3126.884719 +3126.904932 +3126.940529 +3127.031239 +3127.079890 +3127.138398 +3127.190046 +3127.250785 +3127.437232 +3127.824744 +3128.045956 +3128.182286 +3128.305363 +3128.310225 +3128.374627 +3128.470431 +3128.551850 +3128.607061 +3128.809459 +3128.914886 +3129.085815 +3129.226175 +3129.356178 +3129.437730 +3129.513620 +3129.625975 +3129.650184 +3129.696437 +3129.718016 +3129.802997 +3129.865868 +3129.915918 +3130.161006 +3130.258908 +3130.342724 +3130.397236 +3130.506360 +3130.837662 +3130.916050 +3130.962603 +3131.058973 +3131.216183 +3131.433499 +3131.603761 +3131.800465 +3131.903728 +3132.033431 +3132.101397 +3132.313984 +3132.403694 +3132.541057 +3132.603294 +3132.691006 +3132.853111 +3132.996934 +3133.241056 +3133.327103 +3133.426870 +3133.633396 +3133.688741 +3133.729167 +3133.834861 +3133.838957 +3133.930765 +3134.036859 +3134.148048 +3134.262200 +3134.404125 +3134.476752 +3134.570558 +3134.632763 +3134.671857 +3134.751810 +3134.826302 +3134.927434 +3134.983978 +3135.133928 +3135.268193 +3135.460035 +3135.586608 +3135.832162 +3135.926002 +3135.999861 +3136.143784 +3136.206854 +3136.272921 +3136.315312 +3136.383943 +3136.446148 +3136.493067 +3136.620806 +3136.746181 +3136.784675 +3136.838155 +3136.935158 +3136.996663 +3137.115511 +3137.497029 +3137.613979 +3137.665127 +3137.828464 +3137.948077 +3138.022103 +3138.035923 +3138.164494 +3138.434058 +3138.827431 +3138.945146 +3139.233124 +3139.396694 +3139.445012 +3139.480444 +3139.511512 +3139.699957 +3139.775715 +3140.025032 +3140.121568 +3140.344978 +3140.441149 +3140.481741 +3140.517572 +3140.590666 +3140.654735 +3140.719403 +3140.758664 +3140.873749 +3140.973849 +3141.050372 +3141.193928 +3141.270485 +3141.336685 +3141.423432 +3141.500222 +3141.579542 +3141.688999 +3141.929858 +3141.994693 +3142.108779 +3142.175113 +3142.221966 +3142.440014 +3142.570917 +3142.816404 +3143.501685 +3143.565654 +3143.651968 +3143.760792 +3143.814472 +3144.034685 +3144.467851 +3144.584035 +3144.612040 +3144.791827 +3144.805680 +3144.968883 +3145.021897 +3145.189096 +3145.242243 +3145.317734 +3145.419432 +3145.580404 +3145.653165 +3145.714870 +3145.936981 +3146.009974 +3146.063820 +3146.169847 +3146.274776 +3146.354729 +3146.423593 +3146.504546 +3146.618398 +3146.864885 +3146.958325 +3147.119330 +3147.206543 +3147.237878 +3147.355827 +3147.436047 +3147.486196 +3147.652430 +3147.761188 +3147.886995 +3147.970645 +3148.059056 +3148.113102 +3148.289426 +3148.414667 +3148.443671 +3148.478670 +3148.482466 +3148.652429 +3148.695319 +3148.754427 +3148.816998 +3148.907374 +3149.085795 +3149.191989 +3149.359987 +3149.479801 +3149.539708 +3149.695285 +3149.702345 +3149.765215 +3149.904409 +3149.906640 +3149.969311 +3150.022558 +3150.089790 +3150.195951 +3150.360752 +3150.514665 +3150.608937 +3150.643270 +3150.679966 +3150.778268 +3151.045534 +3151.108903 +3151.149596 +3151.547198 +3151.590921 +3151.726119 +3151.936175 +3152.086758 +3152.161716 +3152.498746 +3152.551593 +3152.590720 +3152.660384 +3152.679664 +3152.730780 +3152.781895 +3152.847896 +3153.035841 +3153.105338 +3153.190986 +3153.269740 +3153.433543 +3153.536007 +3153.635474 +3153.808701 +3153.939170 +3154.045664 +3154.130246 +3154.177032 +3154.261048 +3155.067374 +3155.131011 +3155.165709 +3155.170871 +3155.450657 +3155.502206 +3155.589219 +3155.801007 +3155.920820 +3156.003104 +3156.112129 +3156.194946 +3156.277130 +3156.417556 +3156.511096 +3156.561812 +3156.591182 +3156.635871 +3156.755584 +3156.811129 +3156.864109 +3156.990549 +3157.055684 +3157.139300 +3157.224149 +3157.362544 +3157.626879 +3157.720152 +3157.877761 +3157.948690 +3158.052286 +3158.227278 +3158.277994 +3158.327977 +3158.497974 +3158.561244 +3158.676895 +3158.765273 +3158.995209 +3159.156315 +3159.238965 +3159.298372 +3159.413158 +3159.598139 +3159.681256 +3159.759344 +3159.815155 +3159.931672 +3160.009361 +3160.075495 +3160.184386 +3160.506996 +3160.580289 +3160.674328 +3160.768101 +3161.245324 +3161.338663 +3161.757478 +3162.081187 +3162.194007 +3162.239062 +3162.283851 +3162.367667 +3162.424210 +3162.516285 +3162.560574 +3162.567367 +3162.684150 +3162.803497 +3162.873694 +3163.053680 +3163.098435 +3163.176191 +3163.285881 +3163.346454 +3163.404429 +3163.468665 +3163.581119 +3163.703530 +3163.770163 +3163.886779 +3164.084515 +3164.252214 +3164.351814 +3164.458207 +3164.533033 +3164.681484 +3164.765966 +3164.907158 +3165.103561 +3165.228836 +3165.413618 +3165.583514 +3165.662602 +3165.739558 +3166.035728 +3166.107257 +3166.215781 +3166.520843 +3166.649514 +3166.739257 +3166.994935 +3167.040123 +3167.118478 +3167.167795 +3167.265198 +3167.316546 +3167.385477 +3167.493636 +3167.557305 +3167.631664 +3168.063265 +3168.266429 +3168.339123 +3168.434161 +3168.447614 +3168.500461 +3168.554907 +3168.594534 +3168.670791 +3168.757038 +3168.843351 +3168.954673 +3169.026934 +3169.124303 +3169.342785 +3169.450910 +3169.570823 +3169.818575 +3169.949577 +3170.184675 +3170.233260 +3170.518108 +3170.662064 +3170.838621 +3171.090768 +3171.314844 +3171.377281 +3171.446312 +3171.481444 +3171.529329 +3171.606052 +3171.676981 +3171.840385 +3171.946378 +3172.023068 +3172.108350 +3172.265659 +3172.649841 +3172.712512 +3172.814743 +3172.882675 +3172.927197 +3172.929228 +3173.045079 +3173.080010 +3173.147077 +3173.205485 +3173.277080 +3173.371452 +3173.413643 +3173.492331 +3173.560762 +3173.634189 +3173.695261 +3173.736320 +3173.789600 +3173.841715 +3173.855201 +3173.908614 +3174.001222 +3174.090499 +3174.145078 +3174.300822 +3174.597691 +3174.777811 +3174.826729 +3174.976312 +3175.248939 +3175.296925 +3175.388599 +3175.660261 +3175.959661 +3176.226561 +3176.811542 +3177.142211 +3177.267818 +3177.367585 +3177.465088 +3177.575277 +3177.784834 +3177.959426 +3178.019299 +3178.110208 +3178.169016 +3178.209742 +3178.345540 +3178.412140 +3178.477774 +3178.642376 +3178.682669 +3178.803581 +3178.980770 +3179.265419 +3179.310407 +3179.378839 +3179.576974 +3179.895455 +3180.095221 +3180.198451 +3180.219364 +3180.278205 +3180.387496 +3180.442441 +3180.713503 +3180.805244 +3181.058491 +3181.126855 +3181.548833 +3181.675173 +3181.746435 +3181.810538 +3181.855693 +3181.896319 +3182.006009 +3182.049499 +3182.097184 +3182.238543 +3182.355259 +3182.481433 +3183.002045 +3183.277336 +3183.378202 +3183.514332 +3183.752094 +3183.853060 +3183.996483 +3184.256889 +3184.338940 +3184.431348 +3184.503409 +3184.520259 +3184.771740 +3184.939739 +3185.143801 +3185.219525 +3185.325186 +3185.651826 +3185.841603 +3185.927284 +3185.975136 +3186.316993 +3186.655954 +3186.683393 +3186.749394 +3187.067675 +3187.146763 +3187.228215 +3187.395847 +3187.634341 +3187.731777 +3187.842966 +3187.955187 +3188.076665 +3188.380028 +3188.528313 +3188.654387 +3188.736338 +3189.121553 +3189.224117 +3189.439768 +3190.123183 +3190.198541 +3190.262844 +3190.335371 +3190.803702 +3190.863143 +3190.970768 +3191.021185 +3191.118321 +3191.183855 +3191.382057 +3191.650888 +3191.873764 +3191.984121 +3192.095609 +3192.166538 +3192.291846 +3192.593777 +3192.679591 +3193.136534 +3193.226344 +3193.351119 +3193.425211 +3193.469900 +3193.498671 +3193.554915 +3193.629940 +3193.679823 +3193.758378 +3193.808028 +3193.858278 +3193.972097 +3194.108328 +3194.260908 +3194.322979 +3194.382853 +3194.612556 +3194.818750 +3194.962106 +3195.102033 +3195.324577 +3195.355812 +3195.442892 +3195.542059 +3195.622645 +3195.666335 +3195.832202 +3196.487812 +3196.573260 +3196.730836 +3197.022777 +3197.167865 +3197.259640 +3197.446653 +3197.497302 +3197.653179 +3198.109622 +3198.353678 +3198.463501 +3198.693971 +3198.779718 +3198.849448 +3199.083181 +3199.334197 +3199.582048 +3199.775821 +3199.843021 +3199.880749 +3199.926370 +3200.009487 +3200.028901 +3200.178518 +3200.289640 +3200.462667 +3200.634861 +3200.933962 +3201.155074 +3201.277585 +3201.553608 +3202.219442 +3202.322938 +3202.370158 +3202.422239 +3202.549545 +3202.561966 +3202.701826 +3202.777417 +3202.893933 +3203.070390 +3203.227533 +3203.393833 +3203.444815 +3203.454206 +3203.497263 +3203.510283 +3203.591035 +3203.745248 +3203.780512 +3203.847679 +3203.910882 +3204.000592 +3204.843315 +3205.075416 +3205.193831 +3205.304354 +3205.525366 +3205.676681 +3205.858666 +3205.936354 +3206.225299 +3206.240450 +3206.558698 +3206.629760 +3207.050173 +3207.160396 +3207.491598 +3207.605650 +3207.621268 +3207.947541 +3208.144544 +3208.491896 +3208.616638 +3208.788333 +3208.893727 +3209.060827 +3209.212708 +3209.785402 +3209.941745 +3210.243909 +3210.599920 +3210.663123 +3210.739680 +3210.747106 +3210.858061 +3211.048704 +3211.311474 +3211.627258 +3212.440843 +3212.823893 +3214.233949 +3214.397618 +3215.568379 +3217.510402 +3217.739373 +3218.651194 +3219.804006 +3220.672237 +3220.943332 +3221.005703 +3221.503971 +3221.899708 +3222.336771 +3222.496278 +3222.653321 +3222.723750 +3223.532974 +3223.689284 +3224.057615 +3224.456516 +3224.858114 +3225.811193 +3226.070567 +3226.216121 +3226.229275 +3226.662674 +3227.107928 +3227.366969 +3227.471331 +3230.179820 +3230.949117 +3231.038194 +3231.341524 +3231.661970 +3231.825839 +3232.001064 +3233.491006 +3233.827902 +3234.734128 +3235.072989 +3235.301194 +3236.077750 +3236.585008 +3237.478447 +3237.713878 +3237.828863 +3238.602689 +3238.709415 +3238.786405 +3238.852206 +3239.078679 +3239.160530 +3239.313877 +3239.490334 +3239.603154 +3239.836520 +3239.997659 +3240.385604 +3240.456200 +3240.514042 +3240.651438 +3240.744645 +3240.840715 +3241.769119 +3241.840747 +3242.363924 +3242.537517 +3243.450503 +3243.713872 +3243.832787 +3243.953599 +3244.375876 +3244.940311 +3245.051833 +3245.241676 +3245.395023 +3245.662988 +3245.903381 +3246.289428 +3246.459790 +3246.535315 +3248.224091 +3248.240008 +3248.338943 +3248.552695 +3249.084996 +3249.137643 +3249.303411 +3249.365648 +3249.811868 +3250.168178 +3250.305474 +3250.501611 +3250.673706 +3250.868344 +3251.254258 +3251.588623 +3251.724154 +3251.787457 +3251.929282 +3252.336541 +3252.476767 +3252.585825 +3252.688389 +3252.733877 +3252.797480 +3252.804240 +3252.944533 +3253.455787 +3253.824918 +3253.880196 +3253.964711 +3254.028847 +3254.121588 +3254.279496 +3254.477431 +3254.824850 +3255.035440 +3255.119855 +3255.211896 +3255.248626 +3255.590684 +3255.859881 +3255.914793 +3256.423883 +3256.797676 +3256.962111 +3257.219553 +3257.315357 +3257.847824 +3258.078627 +3258.228710 +3258.500737 +3258.700704 +3258.843694 +3258.883454 +3259.059079 +3259.139132 +3259.288849 +3259.488116 +3259.597140 +3259.694243 +3260.010892 +3260.253316 +3260.410892 +3260.533536 +3260.629640 +3260.753616 +3261.029273 +3261.240029 +3261.393375 +3261.553981 +3261.699669 +3261.854713 +3261.901433 +3261.943924 +3261.955945 +3261.997837 +3262.053781 +3262.125709 +3262.237097 +3262.356611 +3262.408126 +3262.485415 +3262.606161 +3262.887979 +3262.955312 +3263.005795 +3263.037829 +3263.166001 +3263.233567 +3263.303929 +3263.489144 +3263.584748 +3263.627705 +3263.768498 +3264.261371 +3264.400798 +3264.440692 +3264.525074 +3264.613485 +3264.661770 +3264.732799 +3264.944720 +3264.997068 +3265.112686 +3265.369828 +3265.584846 +3265.727237 +3265.760137 +3265.830167 +3265.852778 +3265.923241 +3265.981915 +3266.034663 +3266.129335 +3266.310187 +3266.418811 +3266.537459 +3266.602894 +3266.777852 +3266.831998 +3266.915647 +3267.014082 +3267.257039 +3267.432230 +3267.522440 +3267.609253 +3267.612783 +3267.670425 +3267.735860 +3267.794601 +3267.852143 +3268.272955 +3268.435459 +3268.535859 +3268.571956 +3268.611716 +3268.655706 +3268.761799 +3269.189305 +3269.362198 +3269.511549 +3269.551609 +3269.575618 +3269.646814 +3269.679281 +3269.731928 +3270.116244 +3270.457569 +3270.499726 +3270.606886 +3270.648677 +3270.737022 +3270.882044 +3271.010682 +3271.156069 +3271.254005 +3271.282510 +3271.364727 +3271.407385 +3271.624634 +3271.977580 +3272.110248 +3272.189868 +3272.421403 +3272.502988 +3272.527896 +3272.578379 +3272.650840 +3272.753537 +3272.801656 +3272.997360 +3273.141415 +3273.252504 +3273.412344 +3273.459664 +3273.462394 +3273.493530 +3273.529760 +3273.609880 +3273.779110 +3273.920769 +3274.020202 +3274.082140 +3274.127062 +3274.184072 +3274.224265 +3274.281508 +3274.354834 +3274.356632 +3274.537085 +3274.888633 +3274.983305 +3274.999189 +3275.032123 +3275.074147 +3275.092895 +3275.104117 +3275.277444 +3275.321833 +3275.620501 +3275.834020 +3275.945209 +3276.124230 +3276.177243 +3276.237816 +3276.290463 +3276.345608 +3276.553966 +3276.621032 +3276.782571 +3276.913540 +3276.961225 +3277.010443 +3277.088198 +3277.308478 +3277.412240 +3277.553665 +3277.690762 +3277.860325 +3278.206812 +3278.245639 +3278.336349 +3278.431187 +3278.527324 +3278.576675 +3278.719132 +3279.017966 +3279.109142 +3279.362655 +3279.806910 +3279.975974 +3280.208841 +3280.378238 +3280.404079 +3280.481268 +3280.555794 +3280.747269 +3280.830918 +3280.961488 +3281.136712 +3281.338477 +3281.938243 +3282.008872 +3282.010704 +3282.177104 +3282.213734 +3282.231583 +3282.420560 +3282.592621 +3282.939974 +3283.121625 +3283.223856 +3283.428052 +3283.603443 +3283.648631 +3283.656823 +3283.858821 +3283.994352 +3284.221891 +3284.317994 +3284.554324 +3284.680298 +3284.986126 +3285.109835 +3285.327983 +3285.546265 +3285.646831 +3285.952591 +3286.138372 +3286.297613 +3286.374103 +3286.451092 +3286.496014 +3286.552324 +3286.704172 +3286.842201 +3287.071771 +3287.190153 +3287.395014 +3287.515261 +3287.596979 +3287.716126 +3287.757152 +3287.795080 +3287.866276 +3287.996512 +3288.186489 +3288.378496 +3288.482526 +3288.521420 +3288.584790 +3288.785889 +3288.843464 +3288.877264 +3288.950624 +3289.180793 +3289.262711 +3289.338169 +3289.430677 +3289.490750 +3289.579927 +3289.693447 +3289.757116 +3289.807399 +3289.912061 +3289.973300 +3290.215058 +3290.532607 +3290.818687 +3291.014092 +3291.075863 +3291.298340 +3291.420385 +3291.570768 +3291.665306 +3291.737934 +3291.850721 +3291.994477 +3292.061277 +3292.164773 +3292.367737 +3292.633204 +3292.719351 +3292.803733 +3293.138432 +3293.235202 +3293.371632 +3293.553017 +3293.690512 +3293.986316 +3294.226210 +3294.260808 +3294.296206 +3294.499303 +3294.988946 +3295.226575 +3295.329339 +3295.573960 +3295.664237 +3295.922911 +3296.354146 +3296.484815 +3296.540360 +3296.667399 +3296.741592 +3296.859074 +3296.993206 +3297.140859 +3297.236230 +3297.369297 +3297.439060 +3297.740858 +3297.903595 +3297.917515 +3297.952912 +3298.034364 +3298.163602 +3298.280651 +3298.434097 +3298.532532 +3298.616015 +3298.818946 +3298.906891 +3298.975922 +3299.019278 +3299.087710 +3299.159605 +3299.323640 +3299.391073 +3299.498066 +3299.609821 +3299.726704 +3299.818678 +3299.942221 +3300.131132 +3300.153776 +3300.169327 +3300.281348 +3300.332297 +3300.440023 +3300.542087 +3300.578950 +3300.769027 +3300.949080 +3301.074688 +3301.314581 +3301.458970 +3301.532163 +3301.660601 +3301.695233 +3301.782446 +3301.857704 +3302.075452 +3302.290071 +3302.533594 +3302.678249 +3302.809984 +3303.078815 +3303.114612 +3303.172654 +3303.255771 +3303.331728 +3303.606420 +3303.705687 +3303.917375 +3303.996929 +3304.264728 +3304.334125 +3304.566392 +3304.623402 +3304.765127 +3305.007784 +3305.074817 +3305.143681 +3305.207917 +3305.445512 +3305.447777 +3305.599758 +3305.837686 +3306.475748 +3306.510113 +3306.579344 +3306.646111 +3306.695095 +3306.747742 +3306.835221 +3306.968155 +3307.189533 +3307.396593 +3307.404451 +3307.637618 +3307.759862 +3307.885370 +3307.983672 +3308.007648 +3308.080242 +3308.199189 +3308.305716 +3308.396725 +3308.478976 +3308.538883 +3308.604683 +3309.121966 +3309.395092 +3309.400154 +3309.590064 +3309.658628 +3309.720167 +3309.857829 +3310.054332 +3310.195957 +3310.545407 +3310.786932 +3310.969616 +3310.977608 +3311.023063 +3311.282270 +3311.365686 +3311.438713 +3311.674644 +3311.772146 +3311.885832 +3311.995822 +3312.092492 +3312.659058 +3312.802714 +3312.897520 +3313.033650 +3313.080070 +3313.122494 +3313.178105 +3313.196920 +3313.264619 +3313.333783 +3313.433017 +3313.666117 +3314.073276 +3314.176273 +3314.538144 +3314.614168 +3314.759156 +3314.903179 +3314.942972 +3315.016365 +3315.191956 +3315.245003 +3315.645735 +3315.783497 +3316.475871 +3316.560320 +3316.612934 +3316.663983 +3316.709137 +3316.769710 +3316.805175 +3316.893986 +3317.113533 +3317.167046 +3317.341771 +3317.552127 +3317.627851 +3317.698281 +3317.749529 +3317.829083 +3318.050861 +3318.261983 +3318.405306 +3318.440271 +3318.501776 +3318.620524 +3318.715729 +3318.968609 +3319.365645 +3319.444366 +3319.533610 +3319.773370 +3319.844832 +3319.934975 +3320.040370 +3320.264445 +3320.422087 +3320.558584 +3320.667808 +3320.771071 +3320.870106 +3320.990785 +3321.240968 +3321.320055 +3321.350458 +3321.425083 +3321.539036 +3321.785389 +3321.854953 +3321.998077 +3322.018123 +3322.054021 +3322.085023 +3322.301107 +3322.496211 +3322.625482 +3322.781159 +3322.848625 +3322.908931 +3322.950823 +3323.040466 +3323.204036 +3323.319853 +3323.443796 +3323.547292 +3323.666140 +3323.703802 +3323.968970 +3324.058980 +3324.111461 +3324.365174 +3324.477961 +3324.759979 +3324.818353 +3324.953252 +3325.049988 +3325.191646 +3325.614590 +3325.686618 +3325.928476 +3326.074829 +3326.235302 +3326.326777 +3326.406164 +3326.498638 +3326.560110 +3326.611026 +3326.728774 +3326.782521 +3327.000236 +3327.082720 +3327.222547 +3327.293209 +3327.328408 +3327.426776 +3327.623446 +3327.709726 +3328.071863 +3328.115719 +3328.143691 +3328.499469 +3328.717517 +3329.025642 +3329.114120 +3329.254713 +3329.397570 +3329.811888 +3330.000599 +3330.226806 +3330.449150 +3330.515817 +3330.574059 +3330.772460 +3331.037761 +3331.170129 +3331.456908 +3331.497035 +3331.562669 +3331.627737 +3331.699832 +3331.855043 +3331.955143 +3332.348682 +3332.634529 +3332.711319 +3332.801862 +3332.878385 +3332.992871 +3333.033397 +3333.146584 +3333.212318 +3333.318312 +3333.389174 +3333.547083 +3333.556706 +3333.638658 +3333.702460 +3333.792637 +3333.936926 +3334.416812 +3334.485310 +3334.551677 +3334.783645 +3334.828633 +3335.084410 +3335.188639 +3335.416545 +3335.581746 +3335.650744 +3335.796564 +3335.806654 +3335.899894 +3335.927400 +3335.974486 +3336.151176 +3336.318575 +3336.492934 +3336.607053 +3336.760899 +3336.915145 +3337.002557 +3337.211648 +3337.267858 +3337.351308 +3337.439187 +3337.463396 +3337.688137 +3337.824468 +3337.879046 +3338.332759 +3338.460931 +3338.503854 +3338.594896 +3339.058199 +3339.158932 +3339.372285 +3339.429628 +3339.727130 +3339.958665 +3340.003020 +3340.072717 +3340.099690 +3340.166224 +3340.235987 +3340.413742 +3340.765124 +3340.867488 +3341.068221 +3341.140981 +3341.309479 +3341.510611 +3341.666688 +3341.688333 +3341.751204 +3341.760128 +3341.776978 +3341.818869 +3341.887168 +3342.015139 +3342.463357 +3342.580340 +3342.660394 +3342.694792 +3342.772448 +3342.873047 +3343.284003 +3343.526926 +3343.605314 +3343.662058 +3343.752600 +3343.759460 +3343.938015 +3344.025627 +3344.109543 +3344.195024 +3344.276010 +3344.360292 +3344.438847 +3344.491028 +3344.506079 +3344.543242 +3344.618833 +3344.633319 +3344.742676 +3344.880138 +3345.025593 +3345.107411 +3345.164420 +3345.238679 +3345.463121 +3345.581003 +3345.673111 +3345.762921 +3345.787763 +3345.862888 +3345.959458 +3346.187296 +3346.272644 +3346.383966 +3346.465518 +3346.702980 +3346.766250 +3347.021162 +3347.186030 +3347.340509 +3347.412570 +3347.472776 +3347.618997 +3347.715134 +3347.879236 +3347.964284 +3348.045137 +3348.102912 +3348.329186 +3348.381334 +3348.421726 +3348.473008 +3348.545769 +3348.647933 +3348.733148 +3348.764317 +3348.795552 +3348.883198 +3348.940074 +3349.219961 +3349.412335 +3349.487726 +3349.672541 +3349.719727 +3349.751862 +3349.919727 +3350.057689 +3350.085861 +3350.219460 +3350.301079 +3350.384162 +3350.567112 +3350.612400 +3350.700412 +3350.774138 +3350.901145 +3351.147631 +3351.204208 +3351.264115 +3351.392086 +3351.457687 +3351.710002 +3351.832978 +3351.843268 +3351.909735 +3351.968809 +3352.043068 +3352.112399 +3352.208003 +3352.290520 +3352.487723 +3352.559118 +3352.686691 +3352.856421 +3352.898146 +3353.025784 +3353.121122 +3353.219224 +3353.713796 +3353.790819 +3353.994681 +3354.173069 +3354.280662 +3354.422420 +3354.602440 +3355.048793 +3355.162213 +3355.188919 +3355.196811 +3355.291050 +3355.394980 +3355.486921 +3355.686787 +3355.784756 +3355.937370 +3355.997010 +3356.049424 +3356.098942 +3356.209131 +3356.280926 +3356.375398 +3356.491349 +3356.565075 +3356.637269 +3356.771768 +3356.996243 +3357.068871 +3357.125148 +3357.174132 +3357.554584 +3357.728244 +3357.803735 +3357.872899 +3357.958114 +3358.017887 +3358.090448 +3358.242196 +3358.381657 +3358.840797 +3358.959645 +3359.277094 +3359.428109 +3360.171465 +3360.382687 +3360.392311 +3360.406496 +3360.445824 +3360.512157 +3360.667901 +3360.732304 +3360.891011 +3361.124311 +3361.273162 +3361.461174 +3361.535466 +3361.594207 +3361.623778 +3361.676292 +3361.823711 +3361.904131 +3362.014620 +3362.360041 +3362.396371 +3362.983750 +3363.102997 +3363.197036 +3363.307526 +3363.376657 +3363.434732 +3363.579753 +3363.816083 +3363.875224 +3363.945554 +3364.085647 +3364.198600 +3364.525906 +3364.975423 +3365.211220 +3365.658772 +3365.861469 +3366.051179 +3366.077353 +3366.187376 +3366.345518 +3366.492338 +3366.637959 +3366.701861 +3366.735861 +3366.986476 +3367.044052 +3367.171591 +3367.253409 +3367.304158 +3367.452510 +3367.700162 +3367.754574 +3367.819143 +3367.969293 +3368.022972 +3368.232796 +3368.282346 +3368.683911 +3368.766062 +3368.907853 +3369.063331 +3369.113181 +3369.155239 +3369.288039 +3369.345182 +3369.436191 +3369.538222 +3369.826767 +3370.130529 +3370.272720 +3370.570755 +3370.648711 +3370.700925 +3370.740419 +3370.888804 +3371.022670 +3371.498560 +3371.881477 +3372.102555 +3372.138319 +3372.180011 +3372.380244 +3372.466857 +3372.528396 +3372.758532 +3372.929328 +3373.138552 +3373.569986 +3373.653037 +3373.704119 +3373.768987 +3373.832757 +3373.928028 +3373.987668 +3374.061028 +3374.145710 +3374.245177 +3374.352670 +3374.419702 +3374.495060 +3374.856499 +3374.914108 +3375.083138 +3375.155133 +3375.331024 +3375.520933 +3375.564756 +3375.635785 +3375.638582 +3375.775912 +3375.952402 +3376.009111 +3376.087566 +3376.280140 +3376.382971 +3376.481106 +3376.530490 +3376.596856 +3376.730989 +3376.778841 +3377.089097 +3377.274445 +3377.585866 +3377.631820 +3377.868850 +3377.909509 +3377.961524 +3378.107811 +3378.183368 +3378.367118 +3378.417034 +3378.606178 +3378.711873 +3378.879571 +3378.901982 +3379.438745 +3379.492125 +3379.601316 +3379.640443 +3379.767882 +3379.799051 +3379.859391 +3379.950366 +3380.085797 +3380.156793 +3380.201548 +3380.470612 +3380.664984 +3380.745870 +3380.908374 +3381.083099 +3381.391357 +3381.473741 +3381.535446 +3381.815899 +3381.907074 +3381.982266 +3382.256691 +3382.348000 +3382.533114 +3382.688725 +3383.124822 +3383.403210 +3383.412667 +3383.464049 +3383.498748 +3383.796749 +3383.888657 +3384.087025 +3384.095117 +3384.214465 +3384.458554 +3384.613032 +3384.699279 +3384.761084 +3385.104607 +3385.209802 +3385.349195 +3385.615862 +3385.662748 +3385.874037 +3386.092951 +3386.183260 +3386.241269 +3386.378632 +3386.425551 +3386.485092 +3386.640303 +3386.736107 +3387.444731 +3387.790751 +3387.901008 +3388.034308 +3388.074301 +3388.123285 +3388.370171 +3388.697977 +3389.097543 +3389.325215 +3389.387553 +3389.599840 +3389.644895 +3389.654153 +3389.785555 +3390.037569 +3390.109763 +3390.204702 +3390.342197 +3390.534605 +3390.575897 +3390.818854 +3391.071001 +3391.152553 +3391.451087 +3391.652586 +3391.804966 +3392.067171 +3392.167470 +3392.237167 +3392.418253 +3392.716288 +3393.120350 +3393.293809 +3393.419350 +3393.465538 +3393.485218 +3393.590313 +3393.648288 +3393.722880 +3393.827708 +3393.923779 +3393.976060 +3394.065237 +3394.419449 +3394.483319 +3394.691211 +3394.785050 +3394.927241 +3394.964737 +3395.100501 +3395.455879 +3395.575259 +3395.859974 +3395.977523 +3396.083284 +3396.148052 +3396.213520 +3396.854012 +3396.991009 +3397.032634 +3397.249816 +3397.328204 +3397.476589 +3397.637894 +3397.693539 +3397.763968 +3398.086046 +3398.206758 +3398.213951 +3398.254810 +3398.967064 +3399.144686 +3399.196900 +3399.250613 +3399.709487 +3400.050746 +3400.136959 +3400.321175 +3400.384279 +3400.455640 +3400.493336 +3400.615980 +3400.796666 +3400.866929 +3400.961667 +3401.190671 +3401.528200 +3401.700361 +3401.714514 +3401.917411 +3402.284377 +3402.414679 +3402.679315 +3402.805721 +3402.860467 +3402.994765 +3403.202524 +3403.449277 +3403.515478 +3403.581511 +3403.622038 +3403.698528 +3403.928497 +3404.470954 +3404.614344 +3404.820771 +3405.129728 +3405.272652 +3405.382742 +3405.840983 +3405.949941 +3406.079944 +3406.231292 +3406.296993 +3406.521169 +3406.639950 +3406.772717 +3406.963393 +3407.093563 +3407.157998 +3407.462027 +3407.574381 +3407.790298 +3408.140315 +3408.218670 +3408.387234 +3408.450338 +3408.529891 +3408.809645 +3408.977011 +3409.078409 +3409.372148 +3409.507446 +3409.586534 +3409.724995 +3409.784835 +3410.110309 +3410.334885 +3410.524295 +3410.568850 +3410.819733 +3411.034618 +3411.358960 +3411.484367 +3411.560258 +3411.616435 +3411.805812 +3411.901217 +3411.954164 +3412.200051 +3412.351899 +3412.464952 +3412.552265 +3412.623960 +3412.782535 +3412.844772 +3413.091492 +3413.438311 +3413.520762 +3413.551765 +3413.716699 +3414.089726 +3414.164351 +3414.423592 +3414.625456 +3414.825889 +3414.887494 +3414.983232 +3415.112968 +3415.168613 +3415.476538 +3415.714866 +3415.799881 +3415.881932 +3415.980234 +3416.021492 +3416.092355 +3416.169444 +3416.246534 +3416.422724 +3416.553593 +3416.994885 +3417.099447 +3417.238741 +3417.478634 +3417.594118 +3418.200245 +3418.498946 +3418.639705 +3418.843767 +3419.053491 +3419.226950 +3419.350260 +3419.579531 +3419.663347 +3419.757819 +3419.998578 +3420.191785 +3420.285691 +3420.345730 +3420.574468 +3420.753256 +3421.443532 +3421.654321 +3421.745263 +3421.966342 +3422.295379 +3422.566674 +3422.700973 +3422.850024 +3422.928612 +3422.980893 +3423.039467 +3423.214659 +3423.420453 +3423.694378 +3424.132840 +3424.217521 +3424.326512 +3424.399240 +3424.871866 +3424.943428 +3425.052153 +3425.221317 +3425.578060 +3425.665672 +3425.756714 +3425.890647 +3425.969601 +3426.189581 +3426.251219 +3426.309760 +3426.634469 +3426.861342 +3427.197039 +3427.385750 +3427.642060 +3427.882453 +3428.188080 +3428.367467 +3428.417284 +3428.616385 +3428.666335 +3428.686148 +3429.101066 +3429.313221 +3429.614686 +3429.738328 +3429.843290 +3430.001731 +3430.367432 +3430.405894 +3430.860772 +3430.963003 +3431.108091 +3431.450814 +3431.636528 +3431.710088 +3432.075123 +3432.711619 +3432.811585 +3432.874955 +3433.011985 +3433.374455 +3433.457672 +3433.647649 +3433.913149 +3434.110585 +3434.360235 +3434.417578 +3434.817677 +3434.999862 +3435.130531 +3435.329931 +3435.566295 +3436.011949 +3436.186973 +3436.700093 +3436.737822 +3436.832694 +3436.885674 +3436.967659 +3437.063096 +3437.129097 +3437.208484 +3437.367958 +3437.475916 +3437.690568 +3438.484207 +3438.685772 +3438.842315 +3438.967124 +3439.066624 +3439.083707 +3439.138785 +3439.303287 +3439.478845 +3439.654569 +3439.780876 +3439.931059 +3440.578144 +3440.815440 +3440.893762 +3441.001088 +3441.305883 +3441.393129 +3442.055399 +3442.164823 +3442.614939 +3442.873380 +3442.943144 +3443.091129 +3443.638614 +3443.776543 +3444.086033 +3444.112939 +3444.204981 +3444.269050 +3444.621997 +3444.659626 +3444.972945 +3445.171913 +3445.360757 +3445.581769 +3446.270946 +3446.408875 +3446.643273 +3446.938777 +3448.165816 +3448.291057 +3448.668313 +3448.825189 +3448.901713 +3449.120860 +3449.642171 +3449.759554 +3449.805674 +3449.869311 +3450.229683 +3450.603043 +3450.640539 +3450.904674 +3451.089756 +3451.183628 +3451.272007 +3451.511600 +3452.202042 +3452.268509 +3452.546930 +3452.674403 +3452.734043 +3452.988488 +3453.153024 +3453.226217 +3453.689420 +3455.287487 +3455.381426 +3455.562712 +3455.633008 +3456.251222 +3457.114791 +3457.466806 +3457.876096 +3458.086718 +3458.458380 +3459.292245 +3460.357079 +3460.510059 +3460.597638 +3460.669300 +3460.673296 +3460.963738 +3461.620181 +; +1.316982 +2.927569 +2.963733 +4.016380 +4.085244 +8.772186 +8.833691 +8.904786 +10.214176 +13.313007 +15.936614 +16.022228 +17.597618 +19.202079 +19.223824 +19.296418 +20.686593 +22.063381 +22.271739 +23.332844 +23.516293 +25.021453 +27.307132 +27.551854 +30.199537 +31.808526 +31.892775 +34.697634 +34.713685 +34.910088 +37.756472 +37.791704 +39.438655 +40.534625 +40.608817 +43.578445 +44.729859 +47.131455 +49.364886 +49.500949 +51.391157 +53.916629 +56.653523 +57.907701 +58.659482 +62.625745 +62.777593 +63.773662 +68.211220 +68.332599 +68.433664 +72.933493 +74.424534 +75.350308 +75.384806 +78.426928 +78.496525 +78.560328 +81.183335 +81.387664 +81.441377 +84.104112 +87.403276 +89.643700 +89.835341 +93.360779 +93.439567 +94.951287 +94.987018 +96.820882 +98.499568 +99.920912 +102.656707 +107.495264 +109.326564 +109.405851 +109.446044 +109.480810 +109.543047 +111.244078 +111.249306 +111.266389 +111.424031 +112.993160 +113.099654 +114.394624 +114.432919 +114.667451 +115.732318 +115.823294 +117.155094 +117.197885 +118.264351 +118.747001 +119.400247 +119.442904 +119.579634 +120.812533 +122.588622 +123.505671 +124.970071 +127.402137 +127.435171 +129.255615 +131.032969 +131.254015 +132.479355 +132.495039 +133.419780 +134.557141 +135.519878 +135.939991 +138.610984 +138.636158 +140.043183 +140.073853 +140.143749 +143.644378 +143.662627 +143.688634 +148.390061 +153.068578 +156.634409 +159.105469 +159.629577 +159.716124 +160.748757 +160.816756 +162.134370 +162.680490 +164.028840 +164.524544 +165.318649 +167.435896 +167.930168 +168.885878 +169.554909 +169.686211 +170.598164 +171.565762 +171.780181 +172.848412 +173.696696 +173.755337 +175.262662 +175.288469 +175.630427 +176.081675 +176.313776 +177.114109 +177.705483 +177.845143 +178.902985 +179.294260 +179.321799 +181.017501 +181.534117 +182.390527 +182.723094 +183.198185 +183.655894 +184.604777 +184.625023 +186.147533 +186.214932 +187.304508 +187.439107 +187.482963 +187.516030 +187.938040 +190.857918 +190.979463 +192.018989 +192.372202 +192.813727 +193.381658 +193.745560 +197.324112 +198.802432 +198.884883 +198.889978 +199.554546 +200.334432 +200.528171 +202.614516 +202.717080 +203.239257 +204.303991 +206.541418 +207.710748 +208.394464 +208.799292 +209.165192 +213.082338 +215.434949 +218.953194 +220.210669 +220.244868 +220.291488 +221.685026 +225.865309 +227.364108 +227.586885 +227.592679 +228.904733 +229.038299 +229.916786 +230.089347 +230.122947 +232.262671 +233.731867 +235.504493 +237.293003 +243.633456 +244.905050 +245.595026 +247.474844 +249.886830 +250.262753 +251.277804 +251.338843 +260.206000 +260.275630 +261.888982 +267.450915 +267.531001 +268.837593 +271.578783 +273.847012 +275.655269 +278.566222 +279.508512 +280.595057 +282.002382 +282.105978 +283.786862 +284.988959 +286.795118 +286.842337 +288.112799 +289.927682 +290.111631 +290.696779 +292.025449 +293.660312 +293.690482 +294.732572 +295.493377 +295.618452 +297.548787 +299.054613 +300.494438 +304.516146 +306.518974 +309.341349 +309.368022 +310.348374 +311.453968 +312.950669 +312.993660 +314.571214 +314.622562 +316.085332 +317.457858 +318.876704 +321.619292 +322.238839 +323.146597 +323.936672 +325.458616 +326.914924 +328.239832 +328.906697 +329.151319 +329.808928 +330.348221 +331.112290 +331.144924 +332.149718 +333.767332 +336.338225 +336.543753 +339.161199 +340.041951 +341.485806 +341.505652 +342.117274 +342.214942 +342.857732 +343.125631 +343.525764 +344.000455 +350.393256 +350.603446 +351.093255 +353.633746 +353.648231 +354.318727 +356.077300 +356.527782 +359.858448 +360.646659 +361.280591 +361.400904 +361.928742 +363.770499 +364.097405 +366.808724 +367.885579 +368.722741 +368.848948 +370.632996 +370.699829 +373.582277 +373.867891 +379.115671 +380.682636 +380.807811 +382.955195 +383.043640 +386.447599 +386.531881 +387.107072 +389.401009 +389.480197 +391.362279 +392.086987 +393.146660 +393.239933 +393.311029 +395.078826 +397.941793 +398.099768 +398.187181 +400.050949 +400.425041 +400.481917 +401.314684 +402.886976 +403.415647 +405.465262 +406.095731 +406.589870 +407.005720 +407.367991 +409.247876 +409.851571 +410.205351 +410.933622 +411.173815 +411.378343 +411.617237 +413.181605 +413.808644 +413.961990 +414.297621 +416.361921 +420.084295 +420.208604 +420.457422 +423.190519 +423.541301 +424.439802 +424.931776 +425.171103 +425.256285 +426.734372 +426.963176 +428.927776 +429.745524 +434.024241 +434.219113 +435.588309 +437.292270 +437.590638 +441.902289 +442.736087 +442.949840 +443.398657 +443.529726 +446.313473 +446.359660 +448.148037 +448.157494 +448.237281 +450.097285 +451.476272 +451.690457 +453.200013 +453.259520 +453.272241 +454.189356 +456.468841 +457.609033 +458.496678 +460.143529 +460.532074 +461.228943 +461.610128 +461.749255 +462.552251 +462.585618 +462.949021 +465.254480 +466.664901 +467.110455 +469.465631 +469.585744 +470.449646 +470.453509 +470.886675 +471.515246 +471.632695 +472.693999 +472.774918 +475.635155 +477.213009 +478.973680 +482.134383 +482.162422 +482.228489 +483.576007 +483.717465 +484.645669 +484.713102 +485.105675 +485.357490 +489.296347 +489.921521 +491.037038 +493.700206 +493.945393 +494.046892 +494.465839 +496.935667 +497.020082 +497.584451 +498.249785 +505.072888 +505.177150 +506.132727 +506.230862 +509.822567 +509.910679 +509.942081 +510.224665 +510.956399 +513.311508 +513.910708 +514.010675 +514.077608 +514.146705 +515.216668 +515.249401 +517.650098 +518.447833 +519.793353 +521.897147 +525.714626 +527.815390 +528.250054 +529.892810 +530.135567 +531.072962 +535.170793 +539.451142 +542.478911 +544.655533 +545.086934 +547.618034 +548.264020 +550.008341 +552.383230 +555.217726 +555.226584 +555.439704 +555.491186 +555.494316 +557.209000 +558.884889 +559.975597 +560.156383 +560.314391 +561.044327 +562.391379 +563.701334 +566.235265 +566.550982 +569.295501 +569.314016 +572.108286 +572.290603 +573.736889 +574.531693 +575.697559 +575.819138 +577.194927 +579.215371 +580.563988 +582.608475 +582.616434 +588.057920 +589.182128 +589.304972 +594.043096 +597.064504 +599.513320 +599.518515 +600.254744 +600.352979 +601.533731 +603.105924 +603.308987 +603.668893 +606.045847 +607.174551 +611.756931 +611.799954 +613.777741 +615.021862 +615.085765 +615.202482 +616.709040 +619.031582 +620.171075 +622.729414 +622.809467 +624.830311 +625.956184 +626.252454 +627.745393 +627.969435 +628.683720 +629.989580 +630.095640 +630.113356 +630.150685 +630.157312 +632.405628 +633.934431 +633.953012 +634.877887 +635.002961 +635.333630 +635.348349 +637.352842 +640.850974 +640.998327 +646.407579 +647.544441 +647.589262 +647.676009 +648.135116 +648.746970 +649.438078 +649.453696 +649.633649 +649.985530 +651.863484 +652.600613 +653.174005 +654.637207 +654.884460 +657.309932 +659.093314 +662.696374 +664.428473 +664.725809 +664.732735 +666.285381 +667.111354 +671.173588 +671.335526 +671.725502 +671.732761 +671.946814 +674.440684 +674.579712 +675.310747 +675.353837 +675.512078 +676.520902 +679.058528 +679.148039 +679.171715 +679.216071 +679.284202 +682.523194 +685.140607 +686.160053 +687.284095 +689.293017 +690.959149 +691.582292 +691.604603 +692.561612 +692.749823 +693.592280 +693.971034 +695.108729 +695.454183 +696.515521 +696.715554 +698.064204 +698.125442 +698.154380 +698.159675 +698.449585 +699.958674 +700.155544 +700.623542 +700.933831 +701.669528 +702.367563 +702.629800 +704.837357 +705.028066 +705.968658 +707.064295 +707.069090 +707.225633 +707.391367 +708.786138 +709.672284 +709.770153 +709.865923 +710.537551 +712.334752 +712.897622 +715.445905 +716.995820 +717.003146 +717.007308 +718.890690 +718.894552 +719.007573 +719.644468 +719.647998 +720.484661 +721.246332 +721.249795 +722.715861 +722.719990 +723.611131 +724.079862 +724.893514 +724.899675 +724.911363 +725.133507 +728.607596 +728.833903 +728.847922 +729.486850 +729.506830 +729.551951 +729.826110 +730.743492 +730.878290 +731.159842 +735.339658 +735.590973 +735.595002 +736.206157 +736.442986 +736.449746 +736.942986 +736.946915 +736.951777 +738.985808 +739.182311 +739.540952 +740.007418 +740.083775 +741.468323 +742.032325 +742.989766 +743.378144 +743.726562 +743.737718 +744.758629 +744.762492 +745.552768 +745.595225 +746.677009 +748.058559 +748.801782 +748.835182 +752.404909 +756.188788 +756.211731 +757.194314 +757.906668 +757.983491 +761.597906 +765.013887 +765.017217 +766.816582 +767.146785 +767.153245 +767.568263 +767.850747 +770.266496 +770.362933 +770.526935 +771.583511 +778.543977 +780.974544 +781.515302 +782.407809 +783.822160 +786.647998 +786.691887 +787.006739 +788.527417 +788.541969 +788.575335 +789.897046 +790.619855 +791.541400 +791.591849 +791.642032 +793.258181 +793.743628 +793.910195 +794.189515 +796.328008 +797.219416 +797.500734 +798.384816 +798.521246 +800.215816 +801.038826 +801.698299 +801.712885 +801.832298 +802.329201 +804.745915 +805.672721 +805.678615 +806.057536 +810.703452 +811.553867 +812.357230 +812.722164 +812.830589 +813.998520 +815.555062 +815.652398 +815.654496 +815.751865 +816.149933 +816.163753 +816.369447 +816.441974 +817.048933 +818.311469 +819.650462 +820.745666 +820.776435 +822.216227 +822.946829 +823.441501 +823.511065 +823.564811 +823.565344 +823.569373 +823.698610 +824.279562 +824.298177 +824.456285 +824.596378 +824.905302 +825.151822 +826.007665 +826.019121 +826.388384 +826.624848 +826.809363 +827.632106 +830.333269 +831.597570 +831.601699 +831.608226 +832.256843 +832.755378 +832.758774 +833.820412 +834.090641 +834.859804 +837.854840 +837.859169 +838.759767 +839.934192 +840.222969 +840.791200 +840.796495 +840.958733 +841.753104 +842.955401 +843.234255 +843.509912 +843.519236 +843.762326 +844.351870 +844.550637 +845.233720 +845.381772 +847.524993 +847.657894 +847.860358 +848.189162 +848.510440 +849.193090 +849.196220 +849.202947 +849.780868 +849.783932 +849.900649 +852.398482 +852.403543 +854.717827 +854.721423 +855.703007 +855.706437 +855.900110 +855.987023 +856.819256 +857.111231 +857.770304 +858.157483 +859.381225 +859.386287 +859.680426 +859.682590 +859.924448 +860.278993 +860.855683 +861.641030 +861.649355 +861.652751 +861.729641 +863.298670 +863.513622 +863.546556 +864.862605 +864.864703 +864.919415 +865.230637 +866.308491 +866.311488 +866.315118 +866.838893 +866.850448 +867.627704 +868.829268 +869.148981 +869.397765 +869.770958 +870.604324 +871.562665 +871.567493 +873.111581 +873.595996 +875.950573 +876.242947 +876.367422 +877.430824 +877.437284 +878.919034 +878.925794 +878.978009 +879.366220 +879.453000 +879.460626 +880.796522 +880.889462 +881.432985 +881.744739 +882.003380 +883.270645 +883.712669 +883.719496 +885.167147 +886.873039 +886.993585 +887.062916 +889.048428 +889.192417 +889.195814 +889.473769 +890.709932 +890.998809 +893.945093 +893.948823 +893.998107 +894.073831 +894.132506 +895.491312 +895.496607 +895.744192 +897.802599 +897.807560 +897.814620 +899.427306 +899.583416 +901.540590 +901.578885 +901.716914 +904.760967 +904.790104 +904.797130 +904.800960 +904.806488 +905.031463 +905.220607 +905.228365 +906.210882 +906.213779 +906.216610 +906.479646 +906.484108 +907.178780 +907.757267 +907.995296 +908.588968 +908.594329 +909.182807 +909.487935 +909.494662 +909.732557 +910.490898 +910.608180 +910.618437 +910.943478 +911.414340 +912.375811 +912.441312 +912.444542 +912.451502 +913.134585 +913.169849 +913.253266 +913.270415 +913.441411 +913.719466 +914.397920 +914.536681 +914.733817 +914.989028 +915.250000 +915.473810 +915.674975 +916.355327 +917.502346 +917.914500 +917.917930 +918.067780 +918.084030 +918.438242 +920.216063 +920.573139 +920.728250 +921.406438 +921.443501 +921.493551 +922.910799 +923.090019 +925.493647 +925.696910 +925.703437 +925.707100 +926.618121 +928.504133 +928.592678 +928.597306 +929.672996 +931.390078 +932.730436 +932.737562 +932.805427 +932.942357 +934.172259 +935.226704 +935.230633 +935.355874 +937.944383 +938.136391 +940.192133 +940.204521 +940.217774 +943.314208 +943.435420 +944.610810 +947.620264 +949.002980 +949.601714 +950.213335 +950.431883 +950.723258 +951.663883 +954.881896 +957.256452 +962.742560 +963.905629 +968.738492 +969.779250 +969.868261 +969.961967 +970.307688 +970.309952 +971.596165 +971.751909 +971.819075 +972.445814 +972.556603 +974.860963 +975.516207 +976.298324 +977.137951 +978.970483 +981.599218 +981.604380 +982.788594 +986.084462 +987.805206 +988.249994 +988.254456 +988.527183 +990.298743 +990.356952 +990.980994 +995.261942 +996.835733 +998.230270 +998.333667 +998.373594 +999.387179 +1003.584078 +1005.868491 +1006.992466 +1007.403621 +1008.065425 +1008.090733 +1008.768422 +1008.925298 +1009.119370 +1009.923366 +1009.931890 +1010.449606 +1010.455699 +1010.459795 +1011.414140 +1011.777410 +1011.946141 +1011.954899 +1012.093960 +1013.761690 +1015.280536 +1015.285232 +1015.580003 +1017.925755 +1019.338441 +1019.490356 +1019.635211 +1019.642004 +1019.907671 +1020.536176 +1021.179398 +1022.456553 +1022.482860 +1023.308734 +1023.317525 +1023.735673 +1025.251123 +1025.371202 +1027.964373 +1027.992012 +1028.021583 +1030.697471 +1031.189645 +1031.710357 +1032.666100 +1032.670429 +1032.782617 +1032.982916 +1033.007858 +1033.054811 +1033.098800 +1033.103729 +1034.250348 +1034.421909 +1034.522742 +1035.835561 +1036.850278 +1038.066528 +1038.366394 +1039.152141 +1039.344815 +1039.627498 +1039.632127 +1039.641484 +1039.826799 +1039.839586 +1040.152639 +1040.797494 +1041.980643 +1042.931225 +1043.139250 +1043.998024 +1044.385036 +1044.426661 +1044.729391 +1045.265355 +1045.822963 +1045.829890 +1045.990329 +1046.008511 +1047.551000 +1053.331880 +1055.125485 +1057.987120 +1058.098775 +1059.837768 +1059.841165 +1060.973931 +1063.379290 +1064.961539 +1065.235165 +1068.485445 +1069.564332 +1069.943352 +1073.120305 +1073.131994 +1076.349673 +1076.593928 +1076.756899 +1077.935918 +1080.720797 +1080.848270 +1081.004480 +1083.209240 +1084.943570 +1086.347365 +1086.927584 +1087.257754 +1087.264447 +1087.761250 +1088.112265 +1088.492751 +1089.296280 +1090.440435 +1090.697244 +1092.157649 +1093.790914 +1096.490046 +1096.852350 +1097.370498 +1097.374827 +1097.886181 +1097.891876 +1098.189211 +1098.208026 +1099.305161 +1099.815650 +1099.843922 +1100.018247 +1100.025673 +1100.038027 +1100.622842 +1100.831766 +1101.009655 +1102.261169 +1102.330899 +1102.414282 +1104.014780 +1104.553574 +1104.725902 +1104.819741 +1104.968892 +1105.606254 +1106.947578 +1107.464260 +1107.715842 +1107.738786 +1108.277613 +1108.542614 +1108.596327 +1108.716474 +1108.721269 +1108.799357 +1108.985904 +1109.042980 +1109.676646 +1110.008380 +1110.529858 +1110.767587 +1110.861293 +1110.934653 +1110.982639 +1111.161260 +1111.357630 +1111.663857 +1112.343610 +1112.355065 +1112.378908 +1112.528225 +1112.915104 +1114.286098 +1115.457126 +1115.495721 +1115.499950 +1118.151429 +1118.487293 +1119.815863 +1120.559985 +1120.775836 +1120.947897 +1121.298745 +1121.447530 +1122.937239 +1123.132010 +1123.137871 +1123.295147 +1124.672635 +1124.726914 +1127.257780 +1127.260444 +1127.453884 +1128.414456 +1128.618485 +1128.698738 +1128.830906 +1128.913390 +1128.962008 +1129.453349 +1129.462307 +1129.519816 +1129.943659 +1129.948987 +1130.595972 +1130.925442 +1131.843457 +1131.977256 +1132.962770 +1133.103063 +1133.109689 +1133.424874 +1134.035995 +1135.610786 +1135.800696 +1135.804492 +1136.970891 +1137.192369 +1137.292802 +1137.407521 +1139.856769 +1139.939220 +1140.771520 +1142.809680 +1142.815540 +1144.740780 +1144.743877 +1144.910344 +1146.296722 +1146.406912 +1146.440079 +1148.171912 +1149.701781 +1150.701780 +1152.098448 +1153.823721 +1153.954191 +1155.190420 +1155.253590 +1155.986223 +1156.614228 +1156.619023 +1156.629313 +1157.954919 +1159.339200 +1159.350456 +1159.372500 +1163.519016 +1166.457042 +1166.638760 +1167.116682 +1167.576388 +1167.580384 +1168.192538 +1168.335262 +1170.139789 +1170.233995 +1170.353308 +1171.589205 +1171.592401 +1171.896197 +1172.970822 +1172.975817 +1174.805652 +1175.708015 +1176.029427 +1176.088135 +1176.092797 +1178.995857 +1179.167319 +1179.354831 +1179.358861 +1181.084367 +1181.306111 +1181.315668 +1181.468982 +1181.474909 +1182.364885 +1182.392291 +1182.495487 +1182.507109 +1182.902180 +1183.392956 +1183.403812 +1184.884196 +1184.895985 +1185.148732 +1186.637708 +1186.644568 +1186.880165 +1186.884661 +1187.095783 +1189.698877 +1190.028314 +1190.747028 +1191.779128 +1192.126014 +1192.129977 +1192.192914 +1193.485986 +1194.643760 +1194.670867 +1194.963041 +1195.075295 +1195.178592 +1196.753382 +1197.447720 +1197.768999 +1197.895705 +1198.071729 +1200.730035 +1201.909554 +1203.552509 +1205.059601 +1205.090237 +1206.270788 +1206.323869 +1206.360099 +1207.369322 +1209.682906 +1213.671181 +1214.130487 +1214.261923 +1214.309308 +1215.090959 +1215.367582 +1216.715800 +1217.219495 +1217.532615 +1218.536344 +1218.644968 +1219.776469 +1221.300211 +1223.715260 +1223.996878 +1226.185254 +1226.192180 +1226.593046 +1227.033904 +1227.216155 +1227.313358 +1228.898405 +1229.035767 +1229.402400 +1230.056379 +1230.214054 +1230.218983 +1230.549219 +1230.648286 +1232.217382 +1232.829037 +1232.919913 +1233.070895 +1233.078587 +1233.689642 +1234.190507 +1234.192972 +1234.292805 +1234.303095 +1234.755841 +1234.762701 +1234.771359 +1236.510652 +1238.944382 +1240.021104 +1241.536521 +1242.463060 +1248.750499 +1249.722260 +1249.810272 +1250.092323 +1250.462086 +1250.784663 +1252.116730 +1252.387093 +1253.412866 +1253.656855 +1254.978499 +1254.978698 +1263.444757 +1267.951313 +1268.982814 +1270.309685 +1273.152706 +1277.193661 +1277.254900 +1277.828226 +1282.273476 +1284.511802 +1286.489656 +1287.636941 +1288.542268 +1296.342327 +1296.352983 +1297.032502 +1304.774919 +1307.586305 +1307.774849 +1309.513309 +1312.278008 +1313.355596 +1313.463588 +1313.938912 +1316.758190 +1316.848800 +1317.693021 +1317.699215 +1318.510903 +1318.664782 +1319.344635 +1319.829982 +1320.804673 +1321.069841 +1321.582062 +1321.963147 +1322.290219 +1322.438438 +1322.525484 +1322.868074 +1323.552023 +1323.571037 +1325.048492 +1328.257413 +1328.760243 +1330.423045 +1330.489246 +1330.533002 +1331.412954 +1331.660307 +1332.144555 +1332.585347 +1332.757009 +1332.979420 +1333.488710 +1334.655742 +1335.047316 +1336.323972 +1337.663564 +1341.327097 +1343.468154 +1345.984768 +1349.483133 +1349.528254 +1350.290857 +1350.712302 +1351.947632 +1352.008571 +1352.071375 +1352.917561 +1352.926919 +1352.932447 +1352.979033 +1354.588256 +1355.086191 +1355.434642 +1355.448095 +1355.789920 +1356.096812 +1356.410299 +1356.414461 +1356.813195 +1356.816226 +1356.912130 +1357.004237 +1357.018323 +1357.687154 +1357.821719 +1358.043231 +1358.618854 +1360.805832 +1360.934337 +1361.164706 +1361.970699 +1362.047089 +1363.047921 +1363.181787 +1363.843824 +1364.317983 +1364.805395 +1364.826674 +1365.199800 +1365.616150 +1365.708058 +1366.407625 +1366.629569 +1366.900231 +1369.576353 +1371.357137 +1371.730330 +1371.975052 +1374.603920 +1376.053236 +1376.551371 +1376.954467 +1377.972515 +1379.526193 +1379.904847 +1380.187431 +1380.192326 +1380.604447 +1380.613072 +1381.145439 +1381.155628 +1381.902681 +1382.856592 +1382.935547 +1383.510571 +1384.420394 +1385.262051 +1385.264882 +1385.441705 +1386.063782 +1386.139340 +1386.700645 +1387.122988 +1387.134910 +1388.720623 +1389.553322 +1389.654721 +1390.332309 +1390.511796 +1390.792082 +1391.212994 +1392.171169 +1393.943028 +1395.196007 +1396.554914 +1400.172060 +1400.938526 +1401.190340 +1401.493537 +1401.664299 +1402.569726 +1403.575619 +1403.579515 +1403.695832 +1403.774986 +1407.840883 +1409.492530 +1411.179941 +1415.010973 +1422.430179 +1422.641368 +1422.653989 +1423.555286 +1424.954619 +1426.844927 +1427.108430 +1427.173298 +1427.940730 +1428.371665 +1429.549153 +1430.225643 +1432.256044 +1432.385747 +1432.396436 +1432.688877 +1432.909290 +1434.648149 +1434.704593 +1435.293037 +1435.698331 +1435.814648 +1435.832031 +1435.873989 +1435.986110 +1436.500228 +1436.943418 +1437.034527 +1437.288340 +1438.052341 +1439.478880 +1439.485141 +1439.678747 +1440.553771 +1441.984139 +1441.990732 +1441.998391 +1442.149906 +1442.183040 +1442.300356 +1443.491797 +1443.501753 +1443.626628 +1445.531455 +1445.793892 +1445.806446 +1445.819034 +1446.491993 +1446.600618 +1447.151067 +1448.041809 +1448.232684 +1448.535048 +1449.327921 +1449.453029 +1449.461454 +1449.574574 +1449.630452 +1450.735712 +1451.718595 +1451.729317 +1451.871941 +1453.303342 +1453.468976 +1455.618458 +1455.735141 +1455.994515 +1456.117258 +1457.084890 +1457.631310 +1457.641100 +1458.635205 +1458.847159 +1458.923150 +1460.412592 +1460.521550 +1461.743360 +1462.735400 +1463.692542 +1463.830005 +1464.921878 +1465.880585 +1466.034598 +1466.036163 +1466.234498 +1467.744087 +1467.749048 +1467.752278 +1467.756341 +1468.220110 +1468.230666 +1468.440922 +1469.371624 +1470.556272 +1470.726967 +1471.041686 +1472.371355 +1472.838254 +1473.649509 +1474.338619 +1474.362428 +1475.951005 +1479.040213 +1481.208109 +1482.182434 +1483.372076 +1484.116198 +1484.465548 +1485.465448 +1485.890455 +1486.696848 +1486.848130 +1487.236974 +1491.117956 +1491.141766 +1492.675364 +1492.777795 +1493.919751 +1493.925446 +1494.763041 +1496.238297 +1496.254614 +1496.346056 +1496.561174 +1496.571963 +1497.468965 +1498.758142 +1498.822910 +1499.043622 +1499.050715 +1501.309921 +1501.334063 +1501.456640 +1501.543087 +1503.280881 +1503.359069 +1503.450445 +1506.948210 +1508.319737 +1511.191429 +1511.215771 +1516.055027 +1516.197685 +1516.632449 +1517.593154 +1517.638809 +1519.694418 +1519.894051 +1521.810866 +1521.955321 +1522.060283 +1522.135840 +1522.148761 +1522.252457 +1524.942331 +1526.049723 +1526.988849 +1529.969998 +1530.745589 +1530.750251 +1533.814617 +1535.076853 +1535.081249 +1535.342987 +1535.749347 +1536.531231 +1536.672289 +1536.790038 +1540.674217 +1540.677713 +1540.980943 +1540.989368 +1541.493830 +1541.503220 +1542.060995 +1542.489899 +1542.857764 +1544.137617 +1544.945774 +1545.256830 +1545.444742 +1545.669850 +1545.672847 +1547.380038 +1548.034383 +1548.661921 +1549.080935 +1550.126355 +1550.129852 +1550.133382 +1550.931749 +1552.480499 +1554.685891 +1555.377832 +1555.385924 +1556.566342 +1556.582859 +1558.138535 +1559.899839 +1559.903668 +1559.905666 +1561.912990 +1562.076227 +1562.090446 +1562.257678 +1562.465670 +1563.586015 +1565.284049 +1565.993805 +1570.219209 +1570.548912 +1572.968956 +1572.994797 +1573.050641 +1574.658632 +1580.923294 +1581.365052 +1581.428488 +1582.216333 +1582.597352 +1582.605377 +1583.186862 +1583.910171 +1584.889724 +1585.997715 +1587.684127 +1587.738472 +1590.000308 +1590.317091 +1590.329179 +1591.228612 +1594.490380 +1596.106129 +1598.112121 +1598.858474 +1599.258108 +1600.272592 +1601.639291 +1602.489939 +1603.834227 +1603.990903 +1604.072122 +1604.777516 +1606.514044 +1607.982574 +1611.297123 +1611.308578 +1613.852965 +1614.808941 +1622.310665 +1626.553052 +1628.917552 +1629.771530 +1633.170262 +1633.778453 +1634.711552 +1636.228134 +1638.876483 +1639.079347 +1640.249808 +1640.837820 +1642.498391 +1642.511777 +1642.724464 +1642.736619 +1643.557164 +1643.635020 +1643.639615 +1644.102552 +1644.244942 +1644.513141 +1645.705314 +1646.043808 +1646.151867 +1647.794090 +1648.567682 +1650.452895 +1651.353693 +1651.558255 +1651.930716 +1652.782396 +1652.837142 +1653.028250 +1653.173938 +1653.351593 +1653.456522 +1653.652159 +1653.846831 +1654.478499 +1655.575567 +1657.900806 +1659.439699 +1660.344294 +1660.441496 +1660.716854 +1661.744292 +1663.142359 +1664.805461 +1666.406425 +1666.407824 +1667.659138 +1668.588375 +1670.044550 +1671.632661 +1671.747446 +1671.889204 +1672.015045 +1672.150942 +1672.304821 +1672.329563 +1672.909283 +1673.075849 +1673.260132 +1675.857964 +1675.921601 +1676.729559 +1676.754833 +1677.805848 +1677.861392 +1678.563356 +1678.799420 +1679.505214 +1680.363721 +1681.918564 +1682.470312 +1682.525590 +1684.497949 +1684.518995 +1685.977002 +1686.329349 +1687.176435 +1687.271173 +1687.275602 +1687.770207 +1688.183760 +1688.285391 +1688.336873 +1688.425384 +1688.783559 +1688.889387 +1688.930645 +1689.145231 +1690.136305 +1690.247394 +1690.252489 +1690.345862 +1691.032408 +1691.424849 +1691.548791 +1691.615491 +1695.356513 +1700.875888 +1705.322071 +1705.632194 +1706.136589 +1706.350675 +1706.855036 +1710.876111 +1710.881539 +1710.884936 +1715.188961 +1715.194822 +1715.578571 +1715.612670 +1716.512303 +1718.151995 +1718.625920 +1719.327285 +1719.608370 +1720.617360 +1720.796181 +1722.072304 +1722.748427 +1722.936838 +1723.067707 +1723.086888 +1723.194913 +1723.664577 +1725.074765 +1725.089950 +1725.969969 +1726.620151 +1726.928310 +1727.114357 +1727.131606 +1728.895307 +1728.984218 +1730.277058 +1731.210656 +1731.215385 +1731.405461 +1732.433832 +1732.455077 +1732.561171 +1732.676556 +1732.777388 +1733.632432 +1733.700864 +1734.075056 +1734.086378 +1734.252045 +1734.598199 +1734.881016 +1735.561268 +1735.753409 +1736.347681 +1736.477950 +1737.096232 +1737.102359 +1737.379282 +1737.473354 +1737.768359 +1737.772288 +1737.777949 +1737.882112 +1737.975518 +1738.544449 +1738.801658 +1738.873453 +1738.954305 +1738.986340 +1739.210848 +1739.867191 +1739.878447 +1740.093598 +1740.124267 +1740.563361 +1741.433989 +1741.439317 +1741.442548 +1741.583440 +1741.733356 +1741.901788 +1741.916740 +1743.391896 +1746.437248 +1750.171743 +1752.128684 +1752.370975 +1754.177167 +1758.113527 +1760.335702 +1760.340231 +1760.346991 +1760.353151 +1760.383687 +1762.207429 +1762.235434 +1762.296073 +1762.457778 +1762.469833 +1762.474295 +1762.677891 +1763.803697 +1763.810857 +1764.031669 +1764.489244 +1764.497037 +1764.856743 +1764.901831 +1764.909257 +1766.636462 +1769.008521 +1769.015780 +1769.979715 +1769.989239 +1771.267593 +1773.170288 +1774.033657 +1776.524597 +1776.529126 +1776.898290 +1778.380306 +1778.409910 +1778.750802 +1779.995290 +1779.998187 +1782.868314 +1782.984897 +1783.093222 +1783.095952 +1783.330984 +1784.910403 +1784.914199 +1787.458819 +1790.053321 +1790.132009 +1790.418123 +1791.161246 +1791.167473 +1791.390583 +1791.510929 +1791.521618 +1791.578328 +1791.688451 +1792.786585 +1792.875230 +1793.139998 +1793.355150 +1794.027144 +1794.037134 +1794.227010 +1794.587283 +1794.997173 +1795.009594 +1795.049887 +1795.922513 +1796.298304 +1797.318549 +1797.381886 +1797.386348 +1797.401266 +1797.885015 +1797.892474 +1799.068797 +1799.112820 +1799.325373 +1799.607891 +1799.621344 +1800.635229 +1801.852011 +1801.860636 +1802.452876 +1802.567328 +1802.575354 +1802.578151 +1803.037624 +1803.047148 +1803.217378 +1803.235959 +1804.223537 +1804.952740 +1805.037556 +1805.204089 +1805.405121 +1806.943181 +1807.092032 +1807.977413 +1807.980143 +1808.158232 +1810.047208 +1810.516738 +1810.952768 +1811.620200 +1811.630722 +1811.944142 +1812.042177 +1813.993158 +1815.143906 +1815.147502 +1816.638243 +1817.260387 +1817.263451 +1817.265482 +1817.270377 +1817.375439 +1818.837841 +1818.848098 +1819.245067 +1820.299845 +1820.663181 +1820.676534 +1820.684626 +1821.777366 +1821.786257 +1821.904372 +1822.536672 +1826.139532 +1827.851352 +1828.059844 +1830.112489 +1833.494137 +1834.568895 +1835.456306 +1837.943383 +1841.014876 +1844.168053 +1846.977540 +1848.375641 +1848.486796 +1848.683266 +1848.693556 +1848.838078 +1849.072177 +1849.609372 +1849.861753 +1849.867581 +1849.965449 +1849.998383 +1850.063118 +1851.029784 +1851.082931 +1851.115831 +1851.400147 +1851.430316 +1852.699846 +1862.476892 +1866.040425 +1866.171327 +1867.060770 +1867.776887 +1867.783414 +1867.924772 +1868.240190 +1868.687109 +1868.852210 +1869.209419 +1869.393102 +1870.867560 +1871.493400 +1871.798328 +1871.809950 +1872.138188 +1872.566526 +1873.572552 +1873.987770 +1875.382673 +1876.020169 +1876.293129 +1877.125595 +1877.147940 +1877.764522 +1880.879671 +1885.289290 +1886.884194 +1887.067976 +1887.613164 +1887.616827 +1888.517592 +1890.546361 +1890.556185 +1892.861244 +1893.403734 +1893.437933 +1893.926677 +1893.930440 +1894.561242 +1895.472896 +1895.481654 +1895.636732 +1899.109689 +1899.884281 +1901.484312 +1901.685045 +1901.992204 +1903.196532 +1903.671623 +1906.965226 +1906.973218 +1909.464124 +1911.085069 +1912.106879 +1912.404315 +1914.105745 +1917.778635 +1918.456923 +1918.846433 +1919.058154 +1919.103609 +1919.561650 +1924.491582 +1924.500240 +1925.187086 +1927.989114 +1929.005131 +1930.109026 +1931.059341 +1931.667998 +1931.673659 +1933.328003 +1934.619211 +1934.626504 +1934.750679 +1935.039324 +1939.194398 +1939.491334 +1940.622968 +1940.627197 +1940.630061 +1940.735322 +1940.748142 +1943.078510 +1943.285070 +1943.655499 +1943.663957 +1944.128226 +1944.133787 +1946.232619 +1947.321429 +1947.328789 +1947.870480 +1947.874542 +1949.392156 +1949.546502 +1949.550531 +1949.668313 +1949.692389 +1951.621458 +1951.854791 +1952.113532 +1952.180632 +1952.255091 +1953.019858 +1953.117827 +1953.339339 +1954.410899 +1954.417959 +1954.556121 +1957.859980 +1957.953287 +1958.719353 +1960.569701 +1961.562607 +1961.738598 +1961.744658 +1961.889180 +1961.894475 +1961.904731 +1962.863405 +1963.030305 +1963.044590 +1963.851916 +1963.859808 +1963.866701 +1964.139095 +1964.152215 +1964.256411 +1964.274892 +1964.385082 +1966.623941 +1966.632166 +1966.697767 +1966.812419 +1966.827004 +1966.960504 +1967.035462 +1967.129668 +1967.149182 +1967.171526 +1967.597000 +1967.601795 +1967.864099 +1968.143953 +1968.161768 +1968.254309 +1969.443385 +1969.677517 +1969.702759 +1969.865263 +1969.933328 +1970.030098 +1970.100794 +1972.473219 +1972.477681 +1972.637321 +1974.001090 +1974.083041 +1974.085738 +1974.092665 +1974.237087 +1976.251404 +1976.395360 +1976.410278 +1977.511875 +1979.137615 +1979.480704 +1979.641310 +1980.573211 +1980.578872 +1980.833517 +1980.840310 +1980.973577 +1980.981602 +1981.098119 +1981.212205 +1981.283800 +1981.971911 +1982.414834 +1982.769313 +1982.775373 +1982.999049 +1983.018230 +1983.401113 +1983.563917 +1985.278834 +1986.373838 +1986.377434 +1988.467875 +1988.481861 +1988.855021 +1991.213360 +1991.220886 +1991.432574 +1991.435904 +1991.439267 +1994.198139 +1994.289448 +1994.313124 +1994.533403 +1994.790479 +1995.842060 +1995.906862 +1995.910292 +1996.047921 +1997.030970 +1997.503996 +1997.581918 +1997.768498 +1997.857176 +1998.130836 +1998.833566 +1999.620378 +1999.725439 +1999.728403 +2000.055176 +2002.662266 +2002.666096 +2002.672856 +2002.676985 +2002.818077 +2002.839456 +2003.201160 +2004.848478 +2004.856070 +2005.406120 +2005.412413 +2005.684408 +2007.401589 +2008.457499 +2008.626696 +2010.019568 +2010.606547 +2010.613940 +2010.616771 +2010.736151 +2010.925894 +2011.017636 +2011.090130 +2011.095958 +2011.100020 +2012.394424 +2012.490395 +2012.494891 +2012.917834 +2013.656261 +2013.662189 +2013.836681 +2014.312738 +2016.328353 +2016.356026 +2017.074273 +2017.610137 +2017.752261 +2018.013200 +2019.669409 +2020.153424 +2020.314363 +2020.377800 +2020.420990 +2020.980796 +2021.274535 +2021.279331 +2021.286523 +2021.496613 +2021.666876 +2021.710832 +2021.717725 +2022.130512 +2022.239370 +2023.329312 +2023.882758 +2023.887054 +2023.893747 +2023.966807 +2024.020986 +2025.241864 +2025.361345 +2025.392247 +2025.405733 +2025.536003 +2025.669469 +2026.148290 +2026.235336 +2026.346458 +2026.440231 +2026.585286 +2027.202002 +2027.319618 +2027.624879 +2029.494008 +2029.632136 +2029.726575 +2030.113921 +2030.122712 +2030.127740 +2030.302099 +2031.304162 +2031.531668 +2031.749550 +2032.093972 +2032.226506 +2032.252546 +2033.341390 +2033.710454 +2033.985312 +2033.991006 +2034.035695 +2034.354676 +2034.706657 +2035.946216 +2036.310218 +2037.069258 +2037.307553 +2037.312082 +2037.315811 +2037.320207 +2038.355704 +2038.439886 +2038.507951 +2038.784208 +2038.870788 +2039.168424 +2039.306918 +2041.141349 +2041.153270 +2041.508947 +2041.788334 +2041.970719 +2042.181874 +2043.679908 +2043.682605 +2044.253500 +2044.264756 +2044.769184 +2044.950802 +2044.969650 +2044.976743 +2045.097322 +2045.103483 +2045.106879 +2046.024894 +2046.028324 +2048.493689 +2048.501115 +2048.760589 +2048.823226 +2049.053262 +2049.898882 +2049.938543 +2050.647466 +2051.092155 +2051.103244 +2052.100745 +2053.342435 +2053.370241 +2055.092883 +2055.097179 +2055.242167 +2055.244165 +2055.249826 +2055.252557 +2056.563711 +2056.571403 +2056.874666 +2057.156251 +2057.159448 +2058.494179 +2058.497176 +2060.575195 +2060.581922 +2061.087083 +2061.094309 +2063.077224 +2063.089179 +2065.476423 +2065.746819 +2065.751048 +2066.370261 +2066.536228 +2066.606758 +2066.766698 +2069.070558 +2069.737424 +2069.741886 +2069.749845 +2070.445049 +2070.454040 +2074.667522 +2074.677579 +2074.797226 +2075.478111 +2075.481741 +2075.717205 +2077.659760 +2077.815738 +2077.838748 +2077.846007 +2077.932188 +2078.106413 +2078.176876 +2078.439979 +2079.449869 +2079.453831 +2080.883900 +2080.887829 +2080.893690 +2081.164019 +2081.300083 +2081.311305 +2081.695421 +2081.789826 +2082.033582 +2082.467415 +2082.480368 +2083.123425 +2083.131783 +2083.415699 +2083.969478 +2084.054326 +2084.071276 +2084.472641 +2084.477536 +2084.939107 +2084.946333 +2084.950496 +2084.954592 +2085.966845 +2085.971207 +2086.179099 +2087.070241 +2087.618625 +2087.666144 +2088.952423 +2089.232276 +2089.261514 +2089.269572 +2089.572369 +2090.341200 +2090.639002 +2090.646527 +2094.627442 +2095.766702 +2097.101533 +2098.129970 +2099.304827 +2099.452846 +2101.349380 +2101.363833 +2101.855207 +2101.864964 +2109.238883 +2110.241213 +2116.659322 +2120.857753 +2123.836870 +2123.851756 +2124.348725 +2124.967738 +2124.978394 +2124.982091 +2127.441129 +2127.444826 +2127.926776 +2128.475527 +2128.756413 +2129.076892 +2131.939160 +2139.094764 +2140.559365 +2141.291199 +2141.294795 +2141.303686 +2141.411245 +2142.054668 +2142.456033 +2142.757398 +2142.760794 +2143.194660 +2143.733854 +2143.738915 +2143.872315 +2143.886867 +2143.889831 +2144.167753 +2144.172448 +2144.176211 +2144.699887 +2144.704948 +2144.716903 +2144.891661 +2145.034019 +2145.115804 +2145.924328 +2145.929289 +2145.933585 +2145.949303 +2146.197820 +2146.518932 +2146.549202 +2147.089295 +2147.102448 +2147.108775 +2147.419597 +2147.537146 +2147.594755 +2148.493689 +2148.891857 +2149.166815 +2149.307308 +2149.407241 +2149.677471 +2149.891090 +2150.033647 +2151.151195 +2151.157389 +2151.315331 +2152.025587 +2153.069342 +2154.831079 +2154.880662 +2154.924019 +2159.473198 +2160.216721 +2160.226045 +2160.228975 +2162.068068 +2163.869764 +2163.888712 +2163.893740 +2164.902331 +2165.018215 +2166.505759 +2166.603827 +2167.140190 +2169.220308 +2169.223538 +2170.693300 +2170.824369 +2171.022238 +2172.292000 +2172.382077 +2172.794031 +2174.010513 +2174.020204 +2174.982940 +2174.988501 +2175.105217 +2175.114109 +2175.234388 +2175.242080 +2175.880308 +2175.885603 +2176.205250 +2176.316072 +2177.138049 +2177.145941 +2177.392128 +2178.197755 +2178.201951 +2178.430655 +2178.445108 +2178.452767 +2178.554565 +2178.595557 +2178.600385 +2178.670282 +2178.861124 +2179.744474 +2179.755329 +2179.922962 +2179.964720 +2179.997420 +2180.008876 +2180.824859 +2181.146803 +2181.150499 +2182.280668 +2182.284664 +2182.300082 +2182.532882 +2182.545536 +2184.145302 +2184.425588 +2184.448998 +2184.702044 +2184.859087 +2184.863150 +2184.969643 +2184.977768 +2185.046633 +2185.111102 +2186.123621 +2186.136575 +2186.534344 +2186.741336 +2187.294483 +2187.301376 +2189.659315 +2189.787620 +2189.873101 +2189.877530 +2189.890684 +2190.154420 +2191.097476 +2191.102071 +2191.305568 +2191.313526 +2191.389084 +2191.492214 +2191.501172 +2191.554152 +2192.837900 +2192.841164 +2192.918853 +2193.116621 +2193.122948 +2193.511293 +2194.587416 +2194.818817 +2194.833769 +2194.929174 +2195.034635 +2196.782285 +2196.919048 +2196.927706 +2198.392307 +2198.398801 +2198.479153 +2198.485214 +2198.548917 +2198.746319 +2199.309689 +2199.680584 +2200.453078 +2201.121542 +2201.601395 +2201.606956 +2201.863599 +2201.871391 +2202.568693 +2202.573555 +2202.576818 +2203.035359 +2203.713214 +2203.840087 +2203.910050 +2204.002025 +2204.082478 +2204.099461 +2204.157936 +2204.182711 +2204.193433 +2204.236324 +2204.272621 +2204.923403 +2205.043449 +2205.047079 +2205.337388 +2205.393832 +2205.581044 +2206.542748 +2206.551007 +2206.688403 +2206.704453 +2206.836255 +2207.053304 +2207.155036 +2207.656101 +2207.776247 +2207.786603 +2207.974382 +2208.119370 +2208.126263 +2208.265124 +2208.273949 +2208.278777 +2208.982606 +2209.375446 +2209.520268 +2209.527627 +2209.531490 +2209.534554 +2209.970451 +2210.099621 +2210.283337 +2210.537883 +2210.541945 +2210.829358 +2211.429790 +2212.574677 +2213.648536 +2215.091724 +2215.162986 +2215.171111 +2215.471711 +2215.480502 +2215.638810 +2215.642173 +2215.645104 +2216.753860 +2217.740706 +2217.922058 +2218.094219 +2218.098514 +2220.007037 +2220.016561 +2220.115629 +2220.120391 +2221.216793 +2222.383758 +2222.606369 +2222.609832 +2222.872169 +2223.037204 +2223.040501 +2223.044230 +2225.122750 +2225.137468 +2225.316822 +2227.324679 +2227.328808 +2227.332771 +2228.481355 +2228.727342 +2228.735733 +2230.067533 +2230.073927 +2230.077324 +2230.472295 +2230.688046 +2230.854346 +2231.735131 +2232.210688 +2232.227505 +2233.701895 +2234.137992 +2234.392204 +2237.927366 +2239.746911 +2240.164560 +2240.533957 +2240.681209 +2243.417071 +2243.804250 +2244.442810 +2245.984933 +2246.856161 +2247.122128 +2247.125059 +2247.336281 +2247.625158 +2247.911239 +2247.916000 +2247.923293 +2249.155993 +2249.627521 +2250.293787 +2250.305542 +2250.310603 +2250.523957 +2252.340571 +2252.761250 +2252.769309 +2253.480797 +2253.801309 +2255.412496 +2255.580994 +2255.594281 +2255.913761 +2255.950724 +2255.959815 +2255.963611 +2256.207867 +2257.102705 +2257.459214 +2258.036337 +2258.129543 +2258.133706 +2258.214259 +2259.091614 +2259.432972 +2262.411757 +2262.417218 +2263.073461 +2264.791009 +2264.795571 +2266.450514 +2267.248582 +2267.260303 +2271.464462 +2278.774977 +2286.108936 +2286.515529 +2287.914429 +2297.295238 +2297.677223 +2297.846420 +2297.851049 +2298.391608 +2298.442190 +2298.873392 +2299.031667 +2299.112186 +2299.803128 +2300.270127 +2300.462934 +2302.208587 +2303.364896 +2303.626268 +2304.386773 +2304.977548 +2305.054804 +2305.401957 +2305.940185 +2306.438220 +2307.003121 +2307.057600 +2308.321201 +2308.328194 +2309.011344 +2309.017837 +2309.604184 +2310.002086 +2311.517169 +2313.018599 +2314.012771 +2314.923393 +2314.932517 +2314.938444 +2315.214035 +2315.521727 +2315.570045 +2316.144370 +2316.271277 +2316.341440 +2316.472209 +2317.484829 +2320.242002 +2322.287221 +2322.291950 +2322.295147 +2323.249025 +2324.071802 +2324.607066 +2324.751122 +2324.758181 +2327.475961 +2327.483020 +2327.486850 +2329.044491 +2329.052782 +2329.058377 +2329.102666 +2329.122946 +2329.172829 +2331.073726 +2331.082218 +2331.086380 +2331.225341 +2331.230336 +2331.235031 +2332.583581 +2332.587045 +2332.593238 +2333.059372 +2333.353178 +2333.355742 +2335.464431 +2335.471924 +2335.473988 +2335.667594 +2336.582678 +2336.591203 +2336.594400 +2336.598962 +2338.032494 +2338.251108 +2338.386806 +2338.393266 +2341.254702 +2341.395827 +2341.400023 +2341.504285 +2343.284703 +2344.088765 +2344.095258 +2344.098688 +2344.238415 +2344.242811 +2344.246707 +2344.404282 +2344.574445 +2345.885200 +2345.888596 +2345.891793 +2345.893958 +2345.992726 +2347.892824 +2347.903579 +2347.961089 +2348.104545 +2348.118664 +2348.215334 +2348.294222 +2348.299117 +2348.433283 +2348.499616 +2348.608274 +2349.309106 +2349.762052 +2351.007106 +2351.012068 +2352.121824 +2353.559485 +2353.561682 +2353.567943 +2353.808002 +2354.384892 +2354.407303 +2354.718025 +2355.866309 +2355.872103 +2356.499042 +2356.503538 +2356.609165 +2356.750590 +2356.776131 +2357.015425 +2357.136071 +2357.446527 +2357.459314 +2357.546860 +2357.620553 +2357.744862 +2357.753853 +2357.874998 +2358.526679 +2360.537433 +2360.555715 +2360.700536 +2360.703200 +2361.513289 +2361.519750 +2361.888481 +2362.001734 +2363.389012 +2363.633634 +2363.639361 +2363.676191 +2363.743157 +2363.749085 +2365.795470 +2365.802329 +2366.069895 +2366.979285 +2366.985345 +2366.988509 +2367.160237 +2367.167729 +2367.432265 +2367.442854 +2368.797465 +2368.970092 +2368.976885 +2369.020941 +2369.035493 +2369.192170 +2369.420774 +2369.583078 +2369.594600 +2369.598729 +2369.767161 +2369.777917 +2369.957737 +2370.252308 +2370.400960 +2370.403957 +2370.597396 +2370.603990 +2370.721405 +2370.764362 +2370.856570 +2371.023736 +2371.535557 +2371.540652 +2372.049809 +2372.546412 +2372.554071 +2372.559466 +2373.920736 +2373.933157 +2374.038085 +2377.012175 +2377.306780 +2377.310909 +2377.516936 +2377.523130 +2379.941276 +2381.345238 +2383.548732 +2383.551862 +2383.555159 +2383.671076 +2384.080433 +2385.289023 +2385.430615 +2385.563748 +2385.618227 +2385.624388 +2385.631480 +2385.843701 +2387.153590 +2387.157719 +2387.223220 +2387.225685 +2387.287190 +2387.322355 +2388.126050 +2388.128914 +2388.216726 +2388.229147 +2388.378597 +2388.427715 +2388.524518 +2388.625284 +2391.441232 +2391.682257 +2391.929876 +2392.085254 +2394.005032 +2394.939463 +2395.083685 +2395.336965 +2396.721046 +2396.732468 +2396.735432 +2397.829603 +2397.842923 +2397.989310 +2398.007259 +2399.905093 +2399.915515 +2399.921509 +2400.878019 +2400.884179 +2400.888475 +2401.003426 +2401.007522 +2401.330266 +2401.700662 +2401.704258 +2402.032496 +2402.035926 +2402.043718 +2402.395833 +2402.536092 +2403.293567 +2403.297863 +2403.306088 +2403.659934 +2403.670590 +2403.877849 +2403.881679 +2404.021572 +2404.110816 +2404.124835 +2404.269391 +2404.322604 +2404.372654 +2404.466260 +2404.533326 +2404.626866 +2404.653906 +2404.751741 +2404.768857 +2406.166159 +2406.174084 +2406.300957 +2406.362129 +2406.375915 +2406.563261 +2406.953038 +2406.957000 +2406.965925 +2407.312777 +2407.428095 +2407.575514 +2407.710180 +2407.755667 +2409.591730 +2409.955699 +2410.566520 +2410.714006 +2410.840579 +2411.309810 +2411.318235 +2411.908777 +2411.915570 +2414.076041 +2414.087762 +2414.357559 +2414.367782 +2415.693022 +2415.837111 +2415.840574 +2415.851597 +2418.619459 +2420.134243 +2420.145698 +2422.975666 +2422.978962 +2422.982825 +2423.093881 +2423.444962 +2423.553953 +2423.563577 +2424.203403 +2424.218055 +2425.115057 +2425.197941 +2425.210195 +2425.215390 +2425.266939 +2425.343728 +2425.348557 +2425.352753 +2425.358647 +2425.570834 +2425.577328 +2425.581224 +2425.752985 +2425.757781 +2425.913092 +2425.959112 +2426.944393 +2427.083221 +2427.092345 +2427.217053 +2427.222415 +2427.448988 +2427.653283 +2427.676027 +2427.730606 +2429.254147 +2429.255613 +2429.407194 +2429.410657 +2429.494007 +2429.501233 +2429.506495 +2429.782052 +2429.787480 +2429.789545 +2429.791510 +2429.794340 +2431.047386 +2432.241790 +2432.244954 +2432.563035 +2432.570561 +2432.575523 +2432.670861 +2432.674324 +2432.763568 +2432.865965 +2433.936827 +2434.151745 +2434.858970 +2435.059237 +2435.062600 +2435.066130 +2435.173256 +2435.182447 +2435.410651 +2436.101493 +2436.106588 +2436.114613 +2436.208653 +2436.220408 +2436.386475 +2436.970290 +2436.974353 +2437.080180 +2437.162231 +2437.216610 +2437.406587 +2437.492867 +2437.532061 +2437.566493 +2437.877649 +2437.998694 +2438.010815 +2438.274685 +2438.407951 +2438.993365 +2439.501190 +2439.513411 +2439.783341 +2439.789934 +2439.911779 +2439.921703 +2439.927996 +2439.992965 +2440.083441 +2440.085172 +2440.199524 +2440.207150 +2440.723866 +2441.642780 +2441.905051 +2442.082540 +2443.512009 +2443.959328 +2443.963657 +2445.001884 +2445.462157 +2445.466918 +2446.224327 +2446.385699 +2446.390194 +2446.393957 +2446.398086 +2446.653664 +2448.189593 +2448.252763 +2448.257558 +2448.674141 +2448.677838 +2448.691924 +2448.694654 +2449.007674 +2450.407107 +2450.481332 +2450.614632 +2451.997115 +2452.001244 +2452.010701 +2452.093818 +2452.097714 +2452.180698 +2452.192253 +2452.209303 +2452.430248 +2452.443002 +2452.931946 +2453.314396 +2453.323088 +2453.326784 +2453.550394 +2453.554523 +2453.562215 +2453.693251 +2453.807303 +2453.813064 +2454.125485 +2454.130346 +2455.050625 +2455.328880 +2455.436339 +2455.721687 +2455.861613 +2455.950258 +2455.957451 +2456.238236 +2456.247694 +2456.638935 +2456.647560 +2456.853987 +2456.869305 +2457.000040 +2457.209398 +2457.215125 +2457.981558 +2457.986653 +2457.997575 +2458.193979 +2458.203469 +2458.373466 +2458.654384 +2458.660711 +2458.899672 +2460.032505 +2460.363440 +2461.496573 +2461.503532 +2462.858077 +2462.865802 +2464.506959 +2464.743589 +2466.446118 +2466.453278 +2466.598000 +2469.996664 +2470.377017 +2470.436257 +2470.440154 +2472.724201 +2472.731360 +2473.073118 +2473.077314 +2473.080244 +2473.082941 +2473.087404 +2473.300590 +2473.303487 +2473.308382 +2473.312445 +2475.425863 +2476.209212 +2476.213042 +2476.215905 +2478.205913 +2478.421364 +2478.512074 +2478.517568 +2478.974178 +2479.705412 +2479.727557 +2482.746368 +2483.943437 +2484.031182 +2484.034013 +2484.137942 +2484.429850 +2484.434845 +2484.442770 +2486.478532 +2486.481463 +2492.916588 +2492.919385 +2492.922415 +2493.087350 +2494.550752 +2494.562707 +2497.826773 +2497.839260 +2499.245386 +2499.311720 +2499.402862 +2499.407424 +2499.488709 +2499.491307 +2499.495969 +2499.501030 +2499.854909 +2501.226303 +2501.236593 +2501.647715 +2502.519808 +2502.951476 +2503.964063 +2503.972121 +2503.976151 +2504.371455 +2504.382577 +2504.837155 +2504.994631 +2504.999426 +2505.003689 +2505.188670 +2505.196263 +2505.248510 +2505.714977 +2506.352106 +2506.796294 +2506.811146 +2507.899923 +2507.941481 +2508.397924 +2508.428727 +2509.180241 +2509.193328 +2509.726295 +2510.563623 +2512.071081 +2512.076043 +2522.256152 +2522.903438 +2525.538034 +2526.191213 +2527.237832 +2527.521415 +2527.927475 +2528.996572 +2530.059375 +2530.062405 +2530.070497 +2530.732068 +2530.739094 +2530.944455 +2530.948585 +2530.959141 +2531.009324 +2532.830201 +2533.715382 +2538.541917 +2539.062063 +2540.323500 +2540.327896 +2542.204451 +2546.310307 +2551.195917 +2551.953758 +2551.958054 +2552.475902 +2552.482762 +2553.267343 +2555.000675 +2556.145929 +2557.025015 +2557.036637 +2557.841098 +2557.844728 +2558.620918 +2558.630142 +2558.741098 +2558.751820 +2558.779659 +2559.151487 +2559.506298 +2559.883054 +2560.070300 +2560.072531 +2560.709927 +2560.721881 +2560.728375 +2560.843660 +2560.846557 +2560.854016 +2560.856413 +2561.014222 +2561.025811 +2561.536166 +2561.618018 +2561.919982 +2562.219915 +2562.225976 +2562.333135 +2562.528373 +2562.679156 +2562.783285 +2563.389411 +2563.556644 +2563.586514 +2564.441525 +2564.445154 +2564.582850 +2564.591908 +2564.700399 +2564.712287 +2565.396269 +2565.531301 +2565.870494 +2565.880251 +2565.886745 +2566.311686 +2566.493238 +2566.509088 +2567.338691 +2567.521442 +2567.566064 +2568.113849 +2568.455240 +2569.123771 +2569.228899 +2569.243118 +2569.398529 +2569.405589 +2569.413481 +2571.063296 +2571.067392 +2571.072088 +2571.152973 +2571.321604 +2571.325467 +2571.328964 +2571.336090 +2572.141151 +2572.375549 +2572.391933 +2573.697360 +2573.705252 +2573.933290 +2573.939884 +2574.003054 +2574.069820 +2574.178245 +2574.248974 +2576.470717 +2576.748805 +2577.032821 +2577.037849 +2578.287631 +2578.388464 +2579.277141 +2579.283435 +2579.287497 +2579.353165 +2579.873211 +2580.089694 +2580.610440 +2580.638911 +2580.651532 +2581.073876 +2581.084831 +2581.241808 +2581.536313 +2581.539909 +2581.659490 +2581.669180 +2581.871078 +2581.880701 +2582.113135 +2582.124724 +2582.132782 +2582.256459 +2582.267548 +2582.560721 +2582.609272 +2582.709505 +2583.227054 +2584.027153 +2584.029650 +2584.034978 +2584.036810 +2584.153693 +2584.385561 +2584.389390 +2584.430050 +2584.881165 +2585.066346 +2585.072806 +2585.082363 +2585.329749 +2585.996548 +2587.030114 +2587.045531 +2587.542767 +2587.548961 +2587.553123 +2587.557486 +2587.887289 +2587.901774 +2588.513229 +2588.707601 +2588.710398 +2588.785090 +2588.788520 +2588.792516 +2588.918490 +2588.922519 +2589.000907 +2589.012130 +2589.139202 +2589.187954 +2589.239102 +2589.288520 +2590.502005 +2590.671968 +2590.793646 +2591.762044 +2591.768304 +2591.918320 +2592.453318 +2592.485020 +2592.923614 +2592.931473 +2593.058546 +2593.166238 +2593.173664 +2593.948855 +2593.956014 +2594.042028 +2594.173230 +2596.208859 +2596.329405 +2596.334067 +2596.337797 +2596.453947 +2596.602165 +2596.607926 +2596.616884 +2596.751549 +2596.755978 +2598.091075 +2598.125407 +2598.236163 +2599.341057 +2599.648349 +2599.652412 +2600.585212 +2600.588275 +2601.037892 +2601.045584 +2601.049314 +2601.307489 +2602.212616 +2602.342153 +2602.434560 +2602.754707 +2602.767261 +2602.772722 +2602.900794 +2602.905522 +2602.921007 +2602.927434 +2602.932695 +2603.135059 +2603.741119 +2604.742883 +2604.749343 +2604.930995 +2604.935690 +2604.939653 +2604.949909 +2605.078281 +2605.224767 +2605.239752 +2605.510115 +2605.520605 +2605.645380 +2606.533591 +2606.630660 +2606.712012 +2607.085938 +2607.386071 +2607.468988 +2608.257598 +2608.262293 +2608.266156 +2608.445743 +2608.450039 +2608.467655 +2608.508913 +2608.523932 +2608.840714 +2609.108813 +2609.230957 +2609.563924 +2610.229524 +2610.380839 +2610.511575 +2610.600120 +2610.610576 +2610.617569 +2610.622231 +2610.707879 +2610.781205 +2610.806480 +2610.869584 +2610.911408 +2610.964622 +2611.013939 +2611.033919 +2611.975876 +2612.155396 +2612.177541 +2612.225759 +2613.525325 +2613.528622 +2613.532518 +2613.648269 +2613.650899 +2613.652831 +2613.825924 +2613.831286 +2613.834382 +2613.948701 +2613.957692 +2614.057426 +2614.147569 +2615.564617 +2615.574141 +2615.577671 +2615.785563 +2615.789659 +2615.801014 +2615.953728 +2615.958023 +2617.654192 +2617.917062 +2617.921558 +2618.152060 +2618.331148 +2618.341138 +2618.544501 +2618.552626 +2619.858885 +2619.862348 +2619.956421 +2620.028815 +2620.165878 +2622.610031 +2622.776065 +2622.783524 +2622.788519 +2622.793115 +2622.999908 +2623.115459 +2623.118656 +2623.463910 +2623.592415 +2623.676764 +2623.720054 +2624.742397 +2624.746693 +2624.898507 +2624.985320 +2624.993645 +2625.002836 +2625.081457 +2625.112926 +2625.119486 +2625.134171 +2625.170502 +2625.227778 +2625.293279 +2626.363707 +2626.504000 +2626.605965 +2626.762808 +2627.033237 +2627.853682 +2627.856879 +2627.865637 +2628.015754 +2628.021115 +2628.195873 +2628.220016 +2628.233802 +2628.314788 +2629.161007 +2629.240494 +2629.251716 +2629.291576 +2629.371863 +2629.379422 +2629.569665 +2630.403064 +2630.530669 +2630.605195 +2631.856342 +2631.869563 +2631.872693 +2631.935563 +2631.983682 +2631.987112 +2631.994870 +2632.121344 +2634.154342 +2634.161735 +2634.167029 +2634.305358 +2634.311685 +2634.318112 +2635.249779 +2635.390971 +2636.453074 +2636.459868 +2636.714879 +2636.717876 +2636.721506 +2636.912947 +2636.923404 +2637.189837 +2637.200093 +2637.211682 +2640.188735 +2640.190999 +2640.201556 +2640.284939 +2640.620103 +2640.622967 +2640.786736 +2642.142013 +2642.150704 +2642.153901 +2642.549938 +2642.560861 +2642.738050 +2642.741813 +2642.922032 +2642.937384 +2644.056930 +2644.078508 +2644.196423 +2645.549869 +2646.088563 +2646.099618 +2646.246571 +2646.249435 +2646.252465 +2646.728356 +2646.731253 +2646.827656 +2646.838812 +2646.934050 +2648.469246 +2648.471844 +2648.665283 +2648.669113 +2648.676239 +2648.747634 +2648.798750 +2649.205742 +2649.208440 +2649.213634 +2649.930051 +2650.028552 +2650.153927 +2650.161053 +2650.403577 +2650.477769 +2650.535278 +2650.642338 +2650.645901 +2650.650796 +2650.654759 +2650.825188 +2651.282097 +2652.229948 +2652.232213 +2652.668010 +2652.682795 +2652.785592 +2652.791986 +2652.798646 +2653.099178 +2653.575202 +2653.579098 +2653.786157 +2653.794715 +2653.891552 +2653.984625 +2654.349826 +2654.358318 +2656.251256 +2656.267973 +2656.431343 +2656.435672 +2656.695145 +2657.857981 +2658.431008 +2658.434071 +2658.438267 +2658.442263 +2658.738100 +2662.362040 +2662.366735 +2662.373461 +2662.579389 +2663.294206 +2663.378689 +2663.392208 +2663.743590 +2664.814318 +2664.817815 +2665.165600 +2665.511154 +2665.607791 +2666.828735 +2667.437293 +2667.774089 +2668.403892 +2668.408021 +2668.412516 +2668.484278 +2668.487741 +2668.492370 +2668.804357 +2668.811284 +2668.817711 +2668.848114 +2669.653774 +2670.465628 +2670.670689 +2670.683543 +2670.944648 +2670.959367 +2671.412247 +2671.956436 +2672.281710 +2672.289003 +2673.499924 +2673.536620 +2674.014176 +2674.017772 +2674.205617 +2674.212977 +2674.217639 +2674.225098 +2675.253502 +2675.258464 +2675.264158 +2675.470218 +2676.146941 +2676.149472 +2676.158563 +2676.165456 +2676.517403 +2677.078542 +2677.093027 +2677.530323 +2677.984302 +2677.997955 +2678.077975 +2678.268617 +2678.585134 +2678.592260 +2679.082336 +2679.371147 +2679.374976 +2679.378972 +2679.669515 +2680.075109 +2680.090194 +2680.789494 +2681.539143 +2681.553229 +2683.012169 +2683.030750 +2683.098216 +2683.380467 +2683.571542 +2683.995984 +2684.074006 +2685.427584 +2685.512366 +2685.892952 +2685.895283 +2685.898746 +2685.907670 +2686.216961 +2686.501443 +2687.513863 +2687.587955 +2687.596580 +2687.605005 +2689.299275 +2690.643163 +2690.646860 +2692.078593 +2692.089116 +2692.285486 +2692.292179 +2692.295243 +2693.172332 +2693.787682 +2694.048255 +2694.355514 +2694.365770 +2694.559010 +2695.028973 +2695.590178 +2696.094207 +2696.112455 +2696.161839 +2696.280820 +2697.082484 +2697.211755 +2697.216850 +2697.643789 +2698.288677 +2698.541357 +2699.181417 +2700.374356 +2701.385111 +2701.391504 +2703.562864 +2703.568092 +2703.573021 +2704.181245 +2704.227665 +2705.607651 +2705.619006 +2706.428063 +2707.397159 +2710.752867 +2712.433451 +2717.686060 +2719.354157 +2720.384659 +2720.400210 +2720.591485 +2720.593683 +2721.573236 +2721.587555 +2721.742899 +2721.993016 +2721.997444 +2723.211496 +2723.214193 +2723.235971 +2724.340599 +2724.344362 +2724.350056 +2724.493279 +2724.753486 +2724.878194 +2724.887585 +2725.113359 +2727.094542 +2727.509660 +2727.579523 +2727.582287 +2727.584851 +2727.587349 +2729.726075 +2730.237596 +2731.981684 +2731.984980 +2731.987511 +2732.936361 +2733.307257 +2734.438458 +2734.807155 +2734.811351 +2735.494134 +2735.501660 +2740.193930 +2740.652204 +2741.558031 +2741.562227 +2741.570752 +2743.199022 +2743.203417 +2750.450330 +2750.455924 +2754.452224 +2755.138803 +2755.172137 +2757.467772 +2757.471502 +2757.775331 +2759.217720 +2759.224114 +2760.907828 +2760.915987 +2761.138831 +2761.143892 +2761.150452 +2767.669826 +2767.673989 +2769.207953 +2775.627294 +2776.459828 +2779.628589 +2779.639878 +2780.921328 +2793.593443 +2798.467398 +2798.473325 +2798.904560 +2800.144586 +2800.545385 +2802.372089 +2802.409652 +2802.626468 +2803.000993 +2803.204956 +2804.330362 +2804.955736 +2805.213778 +2805.300625 +2805.492233 +2806.028329 +2806.724433 +2807.468887 +2807.473683 +2807.836120 +2807.850705 +2808.176279 +2808.184171 +2808.191198 +2808.250705 +2808.607015 +2809.300654 +2809.456465 +2811.070216 +2813.692990 +2813.700982 +2813.761222 +2813.768648 +2814.332750 +2814.339277 +2814.431251 +2814.441241 +2814.445471 +2815.011171 +2815.015000 +2815.021993 +2815.107375 +2815.113469 +2815.120495 +2815.125989 +2815.235779 +2815.355360 +2815.534947 +2816.001446 +2816.006441 +2816.089625 +2816.156225 +2816.163218 +2816.572009 +2816.833713 +2816.863317 +2816.994153 +2818.043902 +2818.048797 +2818.052094 +2818.428617 +2818.663815 +2818.670908 +2819.056954 +2819.063781 +2819.856421 +2819.879032 +2819.887057 +2819.958918 +2820.043767 +2820.080030 +2820.635941 +2820.804705 +2820.982360 +2821.317791 +2821.329346 +2821.369373 +2821.762579 +2821.771737 +2822.568606 +2822.576431 +2822.580694 +2822.657817 +2822.665809 +2823.988818 +2824.017056 +2825.045726 +2825.048157 +2825.171334 +2825.267804 +2825.664241 +2827.093410 +2827.102101 +2828.521847 +2828.663605 +2828.859076 +2828.865569 +2829.936930 +2829.948985 +2829.957343 +2830.073360 +2830.102331 +2831.151814 +2831.803096 +2831.888011 +2832.026339 +2832.032399 +2832.037960 +2832.042256 +2832.195969 +2832.201830 +2832.592006 +2832.600864 +2832.608889 +2832.756341 +2832.769129 +2832.907823 +2832.911153 +2832.914583 +2832.917713 +2832.922175 +2833.062235 +2833.066664 +2833.071692 +2833.076021 +2833.389041 +2833.720310 +2834.397698 +2834.678484 +2834.685310 +2835.087175 +2835.093602 +2835.097198 +2835.243385 +2835.314547 +2835.355473 +2835.372756 +2835.437258 +2836.380946 +2836.385076 +2836.388372 +2836.393667 +2836.691169 +2836.697663 +2836.701625 +2836.856770 +2836.860034 +2837.436223 +2837.441818 +2837.448511 +2838.723968 +2838.731260 +2838.783841 +2838.787438 +2838.795330 +2838.807850 +2838.961230 +2839.130428 +2839.161363 +2839.174550 +2839.231426 +2840.053570 +2840.175348 +2840.435022 +2840.439118 +2840.448874 +2840.572651 +2840.576214 +2840.585438 +2841.048940 +2841.425097 +2841.428461 +2841.432690 +2841.569020 +2841.574481 +2841.702020 +2841.716406 +2842.446109 +2842.449905 +2842.453035 +2842.653534 +2842.928892 +2842.935352 +2843.067387 +2843.974545 +2843.981505 +2844.083303 +2844.089563 +2844.097988 +2844.498787 +2844.594525 +2844.649103 +2844.651301 +2844.666220 +2844.676043 +2845.671547 +2847.892390 +2847.901881 +2847.906976 +2848.078138 +2848.080469 +2848.089460 +2848.094288 +2848.422493 +2848.427022 +2848.434281 +2848.904211 +2848.907907 +2848.910638 +2848.914001 +2849.196485 +2849.200880 +2849.213901 +2849.370977 +2849.379635 +2849.383997 +2849.540474 +2849.545469 +2849.548865 +2850.509670 +2850.521259 +2851.040539 +2852.003009 +2852.008803 +2852.012166 +2852.141603 +2852.145499 +2852.149762 +2854.786855 +2854.790385 +2854.793549 +2854.796879 +2855.102140 +2855.109333 +2855.112330 +2856.626581 +2856.630044 +2856.633340 +2856.639501 +2856.892315 +2856.899774 +2857.906533 +2857.909729 +2857.912660 +2857.915657 +2858.011061 +2858.013292 +2858.017921 +2858.022850 +2858.339999 +2858.347225 +2858.351521 +2858.421684 +2858.425047 +2858.865439 +2860.381788 +2860.695607 +2860.700269 +2860.868601 +2860.875061 +2861.544891 +2861.548620 +2861.751084 +2861.754847 +2861.868567 +2861.870931 +2862.334101 +2862.341127 +2862.412722 +2862.416618 +2862.424577 +2862.623877 +2862.728239 +2862.971130 +2862.978356 +2862.984083 +2863.159674 +2863.225408 +2863.229205 +2864.160373 +2864.170096 +2864.173926 +2865.102496 +2865.115983 +2865.120045 +2865.123309 +2865.127504 +2865.349316 +2865.353545 +2865.537328 +2865.539958 +2865.773791 +2865.784247 +2865.787144 +2865.919678 +2865.931033 +2866.197034 +2866.202995 +2866.208689 +2867.886643 +2867.900062 +2868.000096 +2868.005157 +2868.007655 +2868.332896 +2868.358936 +2868.488240 +2868.496332 +2869.650144 +2870.219374 +2870.222438 +2870.226001 +2870.228698 +2870.237356 +2872.109116 +2872.894696 +2872.904686 +2873.393264 +2873.426397 +2873.704785 +2873.714742 +2873.977579 +2875.502586 +2875.515173 +2875.833787 +2875.844543 +2876.701918 +2876.709378 +2876.859827 +2876.862791 +2876.865821 +2877.002950 +2877.007046 +2877.012308 +2877.536450 +2877.544908 +2877.548138 +2877.653233 +2877.663722 +2877.669283 +2877.766986 +2877.770249 +2877.775777 +2877.780539 +2878.030855 +2878.036982 +2878.044008 +2878.603948 +2878.610441 +2878.614171 +2880.243174 +2880.250533 +2880.259191 +2880.927755 +2880.932017 +2880.935248 +2881.117132 +2881.186962 +2881.190692 +2881.605976 +2882.690291 +2882.693721 +2883.005808 +2883.010071 +2883.012635 +2883.015532 +2883.020760 +2883.268112 +2883.271043 +2883.634379 +2883.644036 +2883.647732 +2883.651961 +2883.738242 +2883.743936 +2883.748332 +2883.756623 +2888.951989 +2888.958749 +2888.962312 +2888.965276 +2888.969772 +2889.527014 +2889.569172 +2889.571836 +2889.654220 +2889.666108 +2889.670337 +2889.674833 +2890.935071 +2892.221850 +2892.227477 +2892.915422 +2894.278524 +2894.865670 +2894.871897 +2895.543425 +2895.684284 +2896.009791 +2896.012622 +2896.030504 +2896.475658 +2898.269762 +2898.271960 +2898.279719 +2898.623608 +2899.972624 +2900.053910 +2901.432130 +2901.643852 +2901.652909 +2901.657971 +2902.095766 +2902.103458 +2902.424970 +2903.419541 +2903.430363 +2903.718841 +2904.485740 +2904.517075 +2904.530928 +2904.713745 +2904.717208 +2904.908217 +2904.921670 +2905.081011 +2905.087837 +2905.092466 +2905.097161 +2906.009515 +2906.013844 +2906.167623 +2906.336887 +2906.351606 +2906.466624 +2906.555535 +2907.964624 +2907.975147 +2908.623265 +2908.630624 +2908.910744 +2908.919335 +2908.927527 +2909.872781 +2910.026227 +2910.029890 +2910.041212 +2911.088464 +2911.388297 +2911.396123 +2911.399087 +2911.402683 +2911.459559 +2911.461757 +2911.468584 +2911.748570 +2911.751700 +2911.760025 +2912.466984 +2912.968083 +2912.970214 +2913.354796 +2913.360323 +2915.210005 +2915.215600 +2915.458956 +2915.463851 +2915.472343 +2915.599149 +2916.162985 +2916.166414 +2917.115265 +2918.126519 +2918.197781 +2918.208004 +2921.193183 +2924.435071 +2924.441231 +2924.444228 +2925.313725 +2925.320618 +2926.544926 +2926.589148 +2926.598805 +2926.602202 +2928.344458 +2928.351084 +2928.440328 +2928.443958 +2928.524977 +2928.648820 +2928.654514 +2928.657478 +2931.426040 +2931.458307 +2931.493539 +2932.511520 +2932.514950 +2933.328202 +2937.231162 +2937.234991 +2937.238521 +2937.489470 +2937.492700 +2937.495331 +2938.507018 +2939.044613 +2939.051640 +2939.056302 +2940.028429 +2940.129361 +2940.260430 +2940.281475 +2940.426130 +2940.621668 +2945.556495 +2945.563621 +2947.750266 +2948.098584 +2949.374673 +2949.380800 +2950.320826 +2951.635277 +2952.107471 +2952.117494 +2952.122622 +2952.752125 +2953.439238 +2957.896143 +2957.901005 +2957.904634 +2958.482589 +2958.488150 +2958.727977 +2958.994777 +2960.020750 +2960.030074 +2960.247789 +2960.252318 +2960.386617 +2960.391578 +2960.780389 +2960.785551 +2960.790512 +2960.877092 +2960.886416 +2960.898604 +2961.166603 +2961.510658 +2961.518783 +2961.819549 +2961.958543 +2962.401333 +2962.479788 +2962.860474 +2963.065968 +2963.079221 +2963.358275 +2963.401099 +2963.817016 +2963.823077 +2963.941492 +2963.948951 +2963.983882 +2964.231235 +2964.286979 +2964.296569 +2964.349750 +2964.353179 +2964.772393 +2965.062469 +2965.339326 +2966.640623 +2966.681049 +2967.121109 +2967.278485 +2968.111351 +2968.553042 +2969.218742 +2969.277151 +2969.391569 +2969.423005 +2970.228099 +2970.252175 +2970.363197 +2970.401625 +2970.728098 +2970.857735 +2970.864095 +2973.153703 +2973.191199 +2973.652970 +2973.666390 +2973.953703 +2973.975880 +2974.037652 +2974.802353 +2975.442945 +2975.456032 +2976.200653 +2976.288266 +2976.913174 +2977.558661 +2978.062723 +2978.068384 +2978.484800 +2979.314004 +2979.526824 +2979.549002 +2980.212837 +2980.520163 +2980.914701 +2981.215434 +2981.336246 +2982.000548 +2982.438076 +2984.380765 +2984.418461 +2985.406638 +2987.892983 +2988.508167 +2989.528512 +2989.531876 +2989.534673 +2992.678592 +2993.028076 +2993.032705 +2993.085252 +2993.089414 +2993.266770 +2993.271432 +2993.275595 +2993.281156 +2993.374229 +2993.440563 +2994.028208 +2994.030706 +2994.034835 +2994.039497 +2994.707295 +2994.718217 +2994.724411 +2996.128872 +2996.133301 +2996.141393 +2996.309957 +2996.314553 +2996.321945 +2996.864536 +2997.053680 +2997.062271 +2997.188045 +2997.205561 +2997.325241 +2997.886846 +2997.895903 +2998.038627 +2998.307957 +2998.400665 +2998.413918 +2998.520644 +2998.557274 +2998.672126 +2998.738893 +2998.763701 +2998.813751 +2998.822542 +2998.991573 +2999.256974 +2999.262968 +2999.268929 +2999.900397 +2999.904959 +3000.058538 +3000.152245 +3000.203127 +3000.263400 +3002.214913 +3002.668393 +3002.688639 +3002.909618 +3002.913847 +3003.152508 +3003.156171 +3003.162498 +3004.054672 +3004.126400 +3004.724101 +3004.731860 +3004.735657 +3006.592698 +3006.595928 +3006.894029 +3007.628761 +3008.576479 +3009.045542 +3009.311776 +3009.847273 +3009.855731 +3010.135618 +3010.151036 +3010.771981 +3010.920765 +3010.938115 +3011.172513 +3011.183602 +3011.274511 +3011.281704 +3011.528457 +3012.239578 +3012.245140 +3012.289762 +3012.354031 +3012.365186 +3012.516202 +3012.656428 +3013.079404 +3013.083833 +3013.513636 +3013.517799 +3013.718065 +3013.902614 +3013.907609 +3014.091525 +3014.096653 +3014.102181 +3014.107875 +3014.203479 +3014.279370 +3014.880601 +3015.038011 +3015.041940 +3015.045303 +3015.049899 +3015.209772 +3015.215699 +3015.222493 +3015.229685 +3015.317531 +3016.235445 +3016.286694 +3016.301346 +3017.079267 +3017.083729 +3017.093187 +3017.258954 +3017.274272 +3017.437575 +3017.445101 +3017.519027 +3017.535344 +3017.655324 +3017.706140 +3017.823589 +3017.900911 +3018.995316 +3019.045666 +3019.122755 +3019.137274 +3019.229015 +3019.242069 +3019.281596 +3019.305772 +3019.364446 +3019.412065 +3020.547662 +3020.552690 +3020.743000 +3020.762880 +3020.768241 +3020.771172 +3021.457818 +3021.460548 +3021.464877 +3021.827081 +3021.831610 +3021.838870 +3022.094647 +3022.099242 +3022.212329 +3022.217257 +3022.221453 +3022.373901 +3022.397777 +3022.861279 +3023.294579 +3023.423583 +3023.427280 +3023.437969 +3024.040432 +3024.045461 +3024.315324 +3024.325547 +3024.328444 +3024.440066 +3024.487485 +3024.523516 +3024.611994 +3024.615890 +3024.781624 +3024.818653 +3024.907931 +3025.041830 +3025.099705 +3025.166838 +3025.173065 +3025.183988 +3025.848456 +3025.854050 +3025.857880 +3025.863308 +3026.227643 +3026.233471 +3026.238732 +3026.336201 +3026.491612 +3026.498705 +3026.504299 +3026.734269 +3026.744159 +3026.803533 +3026.836334 +3027.035268 +3027.041895 +3027.046124 +3027.050653 +3027.415054 +3027.420416 +3027.422447 +3027.429340 +3027.442360 +3027.467069 +3027.501435 +3027.507895 +3027.532903 +3027.567802 +3027.672597 +3027.711891 +3027.810991 +3027.889546 +3027.983019 +3028.097771 +3028.535233 +3028.859941 +3028.869832 +3028.874027 +3028.993341 +3029.003598 +3029.008260 +3029.131137 +3029.148852 +3029.167300 +3029.177324 +3029.192941 +3029.259675 +3029.634000 +3029.641892 +3030.025774 +3030.030636 +3030.034266 +3030.039760 +3030.179054 +3030.182584 +3030.185481 +3030.188445 +3030.272794 +3030.276024 +3030.280886 +3030.285115 +3030.392840 +3030.399634 +3030.452181 +3030.455544 +3030.463336 +3030.466966 +3030.526307 +3030.547286 +3030.663336 +3030.669330 +3030.706093 +3030.844355 +3031.301897 +3031.306492 +3031.470961 +3031.479985 +3031.639159 +3031.650282 +3031.698600 +3031.949682 +3032.392072 +3032.443921 +3035.119476 +3035.250445 +3035.259336 +3035.264764 +3035.349412 +3035.447780 +3035.649945 +3035.691470 +3035.714014 +3036.663630 +3036.672321 +3036.677017 +3036.928731 +3036.931695 +3036.937389 +3036.943050 +3037.188771 +3037.192168 +3037.197462 +3037.203556 +3038.322336 +3038.325866 +3038.327997 +3038.340218 +3038.559898 +3038.563262 +3038.721803 +3038.727830 +3038.734424 +3038.843248 +3039.987936 +3040.081176 +3040.090833 +3040.094862 +3040.099091 +3040.107216 +3040.195661 +3040.199491 +3040.331059 +3040.734855 +3041.092796 +3041.097525 +3041.107748 +3041.381474 +3041.384504 +3041.388434 +3041.390898 +3041.395427 +3041.553435 +3041.560029 +3041.695660 +3041.709679 +3041.752403 +3041.840182 +3041.846409 +3041.963458 +3042.856964 +3042.864057 +3044.185201 +3044.189263 +3044.313672 +3044.323929 +3044.444841 +3044.493559 +3044.548504 +3044.551767 +3044.607944 +3045.079539 +3045.083668 +3045.086732 +3045.090195 +3045.293991 +3045.299852 +3045.303148 +3045.306412 +3046.171879 +3046.175142 +3046.347470 +3046.350633 +3046.358459 +3046.583300 +3046.586963 +3046.590560 +3046.594356 +3046.743573 +3046.752631 +3046.758192 +3046.891625 +3046.896054 +3047.014169 +3047.058591 +3047.446703 +3047.589260 +3047.893289 +3047.898217 +3048.054161 +3048.242440 +3048.244704 +3048.398883 +3048.505343 +3048.510704 +3048.521960 +3048.603878 +3048.635413 +3048.716598 +3048.772409 +3048.836012 +3049.071510 +3049.170977 +3049.456924 +3049.791456 +3049.796617 +3049.800746 +3049.804809 +3049.935212 +3049.940640 +3049.945335 +3049.949431 +3049.952961 +3050.029351 +3050.043170 +3050.058388 +3050.060986 +3050.224156 +3050.294585 +3050.642404 +3050.850229 +3050.864648 +3051.368444 +3051.373239 +3051.380398 +3051.786892 +3051.798613 +3052.305439 +3052.312266 +3052.317793 +3052.527250 +3052.533211 +3052.538905 +3052.856554 +3053.064180 +3053.100643 +3053.309701 +3053.633876 +3053.863546 +3053.869840 +3053.874535 +3053.992917 +3053.997945 +3054.002474 +3054.007569 +3054.110499 +3054.115361 +3054.122054 +3054.214595 +3054.289020 +3054.291651 +3054.295813 +3054.349759 +3054.352590 +3054.370838 +3054.378231 +3054.612863 +3054.635740 +3054.853489 +3055.267341 +3055.504470 +3055.575965 +3055.865442 +3055.877597 +3055.885755 +3055.986887 +3056.306401 +3056.789451 +3056.794479 +3056.803204 +3057.112461 +3057.115091 +3057.118621 +3057.121818 +3057.207898 +3057.421984 +3057.432607 +3057.436903 +3057.591714 +3057.595444 +3057.707132 +3057.736836 +3057.931874 +3058.203968 +3058.824680 +3058.832406 +3058.840531 +3059.111926 +3059.209462 +3059.222948 +3059.364839 +3059.369501 +3059.374396 +3059.383754 +3059.694243 +3059.697473 +3059.702268 +3059.784886 +3059.789448 +3059.793643 +3059.877759 +3059.881722 +3059.962241 +3059.975029 +3060.042061 +3060.071732 +3060.134336 +3060.156380 +3060.226444 +3060.260709 +3060.269234 +3060.316720 +3060.367169 +3061.010892 +3061.015054 +3061.026909 +3061.291611 +3061.297338 +3061.308094 +3061.566469 +3061.571863 +3061.577258 +3061.580022 +3061.710425 +3061.746722 +3061.880521 +3062.142892 +3062.153315 +3062.172529 +3062.615785 +3062.623278 +3062.630937 +3062.639994 +3062.765569 +3062.863437 +3062.909957 +3062.984383 +3063.227473 +3063.242225 +3063.285948 +3063.354179 +3063.697969 +3063.783350 +3063.856810 +3063.888611 +3063.925507 +3063.962970 +3064.086813 +3064.152747 +3064.235997 +3064.423476 +3065.440624 +3065.441257 +3065.445519 +3065.448683 +3065.652512 +3065.655942 +3065.758140 +3065.770660 +3065.777387 +3065.786012 +3065.829368 +3065.835329 +3065.837593 +3065.844054 +3065.975888 +3065.983780 +3066.036394 +3066.040057 +3066.446018 +3066.881215 +3066.889341 +3066.894669 +3067.717378 +3067.720242 +3067.723339 +3067.949546 +3067.956273 +3067.959802 +3067.963299 +3067.972590 +3068.068727 +3068.075886 +3068.084677 +3068.193835 +3068.199329 +3068.206156 +3068.230598 +3068.274288 +3068.285476 +3068.341487 +3068.398297 +3068.450245 +3068.492569 +3068.582812 +3069.795032 +3069.826867 +3069.831629 +3069.836191 +3069.841519 +3069.948245 +3069.995398 +3070.021605 +3070.112314 +3070.219740 +3070.234625 +3070.340686 +3070.350243 +3070.411848 +3070.554772 +3070.943050 +3070.947878 +3070.951474 +3070.955304 +3071.119739 +3071.126166 +3071.240752 +3071.248177 +3071.282510 +3071.408184 +3071.568990 +3071.574517 +3073.241216 +3073.244512 +3073.249940 +3073.252471 +3074.020469 +3074.025198 +3074.034189 +3074.651770 +3074.659629 +3074.663459 +3074.907581 +3074.918936 +3074.942613 +3075.040848 +3075.042579 +3075.441513 +3075.449605 +3076.032588 +3076.037850 +3076.047773 +3076.283704 +3076.287700 +3076.294892 +3076.306880 +3076.391596 +3077.209577 +3077.212740 +3077.751001 +3077.758494 +3077.763389 +3079.196821 +3079.201949 +3079.647470 +3081.540109 +3081.543405 +3081.546802 +3081.553828 +3081.836878 +3081.839376 +3081.844704 +3081.847934 +3081.851896 +3081.909039 +3081.922592 +3081.972376 +3082.129818 +3082.638809 +3083.461419 +3083.467146 +3083.684362 +3083.692188 +3084.084795 +3084.108205 +3084.112700 +3084.314931 +3084.327185 +3084.402510 +3084.432280 +3084.532680 +3084.657288 +3085.403075 +3085.631280 +3085.641536 +3085.646931 +3085.770108 +3085.975269 +3086.091020 +3087.344798 +3087.529180 +3087.535141 +3087.743566 +3087.748294 +3087.752423 +3088.063778 +3088.783391 +3088.857817 +3088.861646 +3089.016625 +3089.202439 +3089.207600 +3089.211596 +3090.121485 +3090.124749 +3090.300706 +3090.502903 +3090.507499 +3090.512394 +3090.516357 +3091.328910 +3091.334438 +3091.338367 +3091.342963 +3091.923115 +3091.926312 +3092.121783 +3092.130940 +3092.135536 +3092.139665 +3092.333837 +3092.340298 +3092.525812 +3092.571067 +3093.516420 +3093.520316 +3093.523080 +3093.599071 +3093.740962 +3093.744226 +3093.877858 +3093.889180 +3093.904965 +3094.136733 +3094.157212 +3094.282820 +3096.322678 +3096.329638 +3096.336664 +3097.173992 +3097.189011 +3097.194938 +3099.880983 +3099.891172 +3100.063067 +3100.066564 +3100.072491 +3100.156440 +3100.980848 +3103.147513 +3103.583410 +3103.686706 +3103.690003 +3103.812580 +3104.175750 +3104.182943 +3104.186739 +3105.760464 +3105.763960 +3105.767091 +3105.848143 +3106.224799 +3106.246078 +3106.525964 +3106.537986 +3106.653104 +3106.665724 +3106.808315 +3106.821136 +3108.249273 +3108.252603 +3108.526961 +3108.535453 +3108.635353 +3108.647507 +3108.696325 +3108.698556 +3108.849072 +3108.861560 +3109.864522 +3109.869884 +3109.874679 +3109.879408 +3110.735517 +3110.742244 +3110.745241 +3110.750802 +3111.373678 +3111.656529 +3111.754231 +3111.760558 +3111.766319 +3114.217998 +3114.223026 +3114.416732 +3114.422260 +3114.673109 +3114.677538 +3114.745037 +3114.758790 +3114.829120 +3116.204776 +3116.207839 +3116.211403 +3116.353927 +3116.366747 +3116.513300 +3116.647266 +3116.788658 +3116.794019 +3116.892487 +3116.910936 +3117.005474 +3117.053926 +3117.056656 +3117.119727 +3117.257922 +3117.284262 +3117.408071 +3117.561285 +3117.849996 +3117.855856 +3117.958321 +3118.138540 +3118.191054 +3118.349029 +3119.081996 +3119.085392 +3119.088756 +3119.091153 +3119.212465 +3119.216628 +3119.359518 +3119.364713 +3119.404107 +3119.447397 +3119.468409 +3119.964779 +3119.990053 +3120.588121 +3120.603007 +3120.607169 +3120.845963 +3120.857552 +3121.564644 +3121.569772 +3121.574667 +3121.706535 +3121.721021 +3122.670370 +3122.683557 +3122.833774 +3122.932108 +3122.938802 +3123.168072 +3123.266640 +3124.788250 +3124.794478 +3124.798240 +3124.936003 +3125.067071 +3125.070801 +3125.074364 +3125.184054 +3125.186552 +3125.192879 +3125.239798 +3125.513191 +3125.520684 +3125.526844 +3126.688015 +3126.693943 +3126.820183 +3126.824912 +3126.871232 +3126.956147 +3126.960476 +3127.066370 +3127.068934 +3127.076693 +3127.151718 +3127.214022 +3127.946189 +3127.953948 +3127.958211 +3128.075393 +3128.357811 +3128.361274 +3128.364604 +3128.537731 +3128.586382 +3128.592509 +3128.599602 +3128.688313 +3128.834367 +3128.853648 +3128.929272 +3130.154113 +3130.160406 +3130.162005 +3130.273160 +3130.355977 +3130.389643 +3130.391741 +3130.445354 +3130.458508 +3130.510456 +3130.593306 +3131.015783 +3131.029603 +3131.033865 +3131.159673 +3131.168064 +3131.178187 +3131.448084 +3131.454944 +3131.558840 +3131.569995 +3131.623242 +3132.711453 +3132.714283 +3132.808522 +3132.891472 +3132.902328 +3133.145452 +3133.157340 +3133.402494 +3133.412950 +3133.655308 +3133.667129 +3133.671691 +3134.096533 +3134.103259 +3134.107822 +3134.113716 +3134.835160 +3134.842420 +3135.420574 +3135.427467 +3135.434127 +3135.653574 +3135.659035 +3137.423503 +3137.808451 +3138.244681 +3138.474351 +3138.480345 +3139.441749 +3139.549841 +3139.553104 +3139.559198 +3139.822201 +3139.830060 +3140.340516 +3140.683373 +3140.688334 +3140.692464 +3140.697092 +3140.887169 +3140.890699 +3140.893329 +3141.323399 +3141.332523 +3143.954099 +3143.957129 +3143.960459 +3144.171015 +3144.178108 +3144.510142 +3144.514438 +3145.299918 +3145.303448 +3145.522662 +3146.630220 +3146.631785 +3146.635348 +3146.644939 +3150.508937 +3150.515431 +3150.519493 +3150.643636 +3154.924517 +3157.426912 +3157.432707 +3157.440665 +3158.518320 +3161.392110 +3162.846288 +3162.850084 +3162.853014 +3162.861539 +3162.911822 +3167.147615 +3167.155374 +3167.421308 +3167.437126 +3167.623739 +3167.633562 +3168.308587 +3168.894134 +3168.897863 +3168.900894 +3169.225036 +3169.228599 +3169.237324 +3169.323604 +3169.957270 +3170.505787 +3170.512747 +3171.907384 +3172.001190 +3172.080844 +3172.439485 +3172.444280 +3174.217472 +3174.223599 +3174.228194 +3174.232224 +3174.677744 +3174.687701 +3175.088200 +3175.094227 +3175.098157 +3175.104617 +3175.329958 +3175.337417 +3175.583371 +3177.612740 +3177.616369 +3177.620565 +3177.736516 +3177.746206 +3177.900119 +3178.896754 +3178.900850 +3178.908776 +3179.387197 +3179.392358 +3179.396254 +3179.400517 +3179.523194 +3179.529355 +3179.537280 +3179.703747 +3179.709041 +3179.713837 +3179.725059 +3180.364818 +3180.369081 +3180.376007 +3180.788095 +3180.806176 +3181.942206 +3181.947367 +3181.951597 +3182.137610 +3182.149665 +3182.153095 +3182.233814 +3182.517796 +3183.002212 +3183.012168 +3184.277935 +3184.337242 +3185.279499 +3185.283428 +3186.677766 +3188.043598 +3188.051357 +3188.055154 +3188.064311 +3189.773567 +3189.776297 +3190.213193 +3190.373167 +3190.385721 +3190.566673 +3190.840832 +3190.844794 +3190.996609 +3191.003869 +3191.100439 +3191.113892 +3191.345227 +3191.355317 +3192.341829 +3192.485452 +3192.571166 +3192.663241 +3192.947190 +3193.439730 +3193.466437 +3193.679490 +3193.837599 +3194.041062 +3194.660009 +3194.668500 +3194.931037 +3195.624843 +3195.638829 +3195.763138 +3195.773228 +3196.069431 +3196.089112 +3196.204096 +3196.229771 +3196.327972 +3196.417117 +3196.708092 +3196.820346 +3196.922777 +3197.580319 +3198.162436 +3198.168197 +3198.408157 +3198.412819 +3198.574690 +3198.728769 +3198.740191 +3198.812818 +3198.828802 +3198.910354 +3199.341156 +3199.569428 +3199.673290 +3199.699897 +3199.829134 +3200.211385 +3200.225038 +3200.239457 +3200.579250 +3200.584911 +3200.588508 +3200.597632 +3200.883379 +3200.890072 +3201.122240 +3201.130365 +3201.540355 +3201.566995 +3202.263398 +3202.334993 +3203.252508 +3203.358302 +3203.364928 +3203.371422 +3206.441316 +3206.444612 +3206.447942 +3206.451272 +3207.099057 +3207.109380 +3207.114375 +3207.118738 +3207.317239 +3207.859629 +3207.947441 +3207.953735 +3208.341447 +3209.309178 +3209.521199 +3209.524663 +3209.529025 +3209.806014 +3210.356363 +3210.616603 +3211.528357 +3211.532153 +3212.432285 +3212.436714 +3212.951432 +3213.523993 +3213.688195 +3217.613699 +3217.619060 +3217.622423 +3217.630648 +3219.862348 +3221.680894 +3222.610963 +3223.688718 +3223.696876 +3223.702271 +3224.202437 +3224.207032 +3225.051687 +3225.064374 +3225.073598 +3225.869834 +3226.040464 +3230.638894 +3230.642757 +3230.974558 +3230.978854 +3231.711387 +3231.714417 +3231.910055 +3231.918346 +3232.428469 +3232.595269 +3232.597134 +3232.697000 +3232.703361 +3232.711319 +3232.716414 +3232.884413 +3232.972458 +3232.980450 +3233.106058 +3233.207190 +3233.636327 +3233.793136 +3233.862234 +3233.955907 +3234.224871 +3234.326236 +3234.627934 +3236.343184 +3236.347280 +3236.433793 +3236.451575 +3236.591169 +3237.059234 +3237.069124 +3237.074219 +3237.776549 +3238.289302 +3238.304620 +3239.631259 +3239.635222 +3239.788502 +3239.928661 +3239.949274 +3240.422634 +3240.688201 +3240.695660 +3240.699956 +3240.883506 +3241.229026 +3241.731757 +3241.736885 +3241.740981 +3241.815506 +3241.821234 +3241.834687 +3241.940148 +3242.005982 +3242.034587 +3242.045176 +3242.064457 +3242.069285 +3242.104850 +3242.171550 +3242.187900 +3242.275246 +3242.752202 +3242.755498 +3242.759994 +3242.875279 +3242.880074 +3242.938382 +3243.037849 +3243.056364 +3243.154466 +3243.199920 +3243.214139 +3243.609643 +3243.615804 +3244.028657 +3244.031987 +3244.116370 +3244.128424 +3244.469782 +3244.481104 +3244.981470 +3244.997388 +3245.002150 +3245.125493 +3245.406112 +3245.421730 +3245.428789 +3245.439778 +3245.572845 +3245.606911 +3245.744973 +3246.319930 +3246.325958 +3246.333817 +3246.338712 +3246.743673 +3246.763553 +3246.905245 +3246.910473 +3247.030885 +3247.050899 +3247.155794 +3247.165684 +3247.222627 +3248.302612 +3248.312070 +3249.509704 +3250.624122 +3250.749963 +3250.756723 +3252.130314 +3252.133045 +3252.227084 +3252.231513 +3252.245399 +3252.752292 +3252.760717 +3252.765145 +3252.891053 +3252.904073 +3253.077033 +3253.081495 +3253.086024 +3253.387922 +3253.393417 +3253.397779 +3253.403207 +3253.589320 +3253.593516 +3253.601375 +3253.805471 +3253.810566 +3253.814662 +3253.823586 +3253.962780 +3254.297745 +3254.934041 +3254.937238 +3254.941467 +3255.050891 +3255.055320 +3255.282093 +3255.286821 +3255.329845 +3255.333741 +3255.428812 +3255.466108 +3255.506768 +3255.560148 +3256.908065 +3257.209297 +3257.215357 +3257.329377 +3257.333639 +3257.338035 +3257.344728 +3257.430609 +3257.432806 +3257.442164 +3257.455151 +3257.476996 +3257.662610 +3257.677195 +3258.299106 +3258.306665 +3258.312592 +3258.561743 +3258.730574 +3258.854650 +3259.476427 +3259.484619 +3259.649920 +3259.658279 +3259.662708 +3260.200736 +3260.210559 +3260.509893 +3261.546888 +3261.551617 +3261.555047 +3261.559709 +3262.214686 +3262.222745 +3262.226774 +3262.356811 +3262.362172 +3262.366201 +3262.375559 +3262.614886 +3262.624609 +3262.640394 +3262.831169 +3262.841859 +3264.941990 +3264.947451 +3264.951314 +3265.139958 +3265.203162 +3266.758138 +3266.763300 +3266.765997 +3266.774555 +3266.900596 +3266.903793 +3266.906923 +3267.713782 +3267.803825 +3267.810085 +3267.813016 +3267.816213 +3268.801393 +3269.299495 +3269.306021 +3269.315079 +3269.676317 +3269.684576 +3270.514378 +3270.523669 +3270.527665 +3271.039486 +3271.128064 +3271.131128 +3271.135856 +3271.310848 +3271.322669 +3271.396695 +3271.441517 +3271.452606 +3271.456236 +3271.462230 +3271.508916 +3271.582876 +3272.677513 +3272.698093 +3272.769288 +3273.163693 +3273.171319 +3273.327829 +3273.333923 +3273.337586 +3273.340982 +3273.430693 +3273.445478 +3273.577446 +3273.589534 +3273.591332 +3273.669553 +3273.679377 +3273.719670 +3273.968254 +3274.415607 +3274.427128 +3274.434654 +3274.609146 +3275.894659 +3275.910111 +3277.556030 +3277.564022 +3278.295490 +3278.538380 +3278.542342 +3278.545273 +3278.751500 +3278.754796 +3279.352831 +3280.000882 +3280.261155 +3280.265584 +3280.269514 +3280.273576 +3280.322727 +3280.333749 +3280.349633 +3280.478404 +3280.582134 +3282.204810 +3282.663351 +3282.667047 +3282.669811 +3284.269609 +3284.344435 +3284.348197 +3284.353292 +3285.798446 +3285.807603 +3285.811966 +3287.252657 +3287.260849 +3287.422054 +3287.425917 +3287.429580 +3287.437339 +3287.575567 +3287.587655 +3287.592517 +3290.597242 +3290.604868 +3290.612327 +3290.919320 +3290.930042 +3293.621315 +3293.633003 +3293.638931 +3293.924745 +3293.928274 +3293.932204 +3294.020615 +3294.031005 +3294.034102 +3295.089445 +3295.476292 +3295.479222 +3295.572695 +3295.579055 +3295.658576 +3295.660840 +3295.671962 +3295.943324 +3296.939394 +3296.946686 +3296.951182 +3297.434132 +3297.439227 +3297.448651 +3298.785945 +3298.788310 +3298.790740 +3298.793404 +3299.640457 +3299.644486 +3299.647483 +3299.771259 +3299.778119 +3299.782481 +3299.785811 +3300.803026 +3300.813649 +3300.902460 +3300.907422 +3300.914947 +3301.073023 +3301.187042 +3301.190372 +3301.194168 +3301.196566 +3301.201128 +3301.466296 +3301.469659 +3301.483079 +3301.695899 +3301.799362 +3301.885609 +3302.870890 +3302.874786 +3302.882012 +3303.103457 +3303.107919 +3303.111915 +3303.116277 +3303.222671 +3303.228931 +3303.246280 +3303.290270 +3303.330596 +3303.481145 +3303.485474 +3303.616377 +3303.619807 +3304.735856 +3304.739286 +3304.741983 +3304.744880 +3304.921304 +3304.931394 +3304.934690 +3305.193331 +3305.258100 +3305.397227 +3305.402222 +3305.403921 +3305.415709 +3305.499691 +3307.406683 +3307.931990 +3307.943911 +3308.020069 +3308.034188 +3308.092996 +3308.096725 +3308.100788 +3308.104817 +3308.108280 +3308.260495 +3308.268986 +3309.794426 +3309.809810 +3310.515404 +3310.526460 +3310.530156 +3310.784701 +3310.787165 +3311.050335 +3311.251467 +3311.254498 +3311.325327 +3311.328357 +3311.334817 +3311.347171 +3311.379939 +3312.815735 +3312.819564 +3312.986164 +3313.060423 +3313.068815 +3313.072911 +3313.076041 +3313.194289 +3313.200516 +3313.204546 +3313.211372 +3313.373210 +3315.076905 +3315.083831 +3315.087627 +3315.169645 +3315.171876 +3315.182832 +3315.232982 +3315.249765 +3315.471510 +3315.703777 +3317.730315 +3317.745866 +3317.943835 +3318.549628 +3318.558586 +3318.886092 +3320.173270 +3322.439934 +3322.541033 +3322.543331 +3322.546994 +3322.551223 +3323.282424 +3323.288152 +3323.290649 +3323.293846 +3324.440598 +3324.444028 +3324.450388 +3325.142729 +3325.147990 +3325.155616 +3325.600937 +3327.878124 +3327.880422 +3327.883951 +3327.891943 +3330.512487 +3330.926339 +3330.929236 +3331.097168 +3331.103529 +3331.445486 +3331.450448 +3331.595736 +3332.344187 +3332.593304 +3332.607823 +3334.789039 +3334.796199 +3334.806755 +3334.884610 +3334.889406 +3334.950977 +3335.200561 +3335.420308 +3335.965528 +3335.968825 +3335.971656 +3336.094200 +3336.098928 +3336.102192 +3336.109185 +3336.465728 +3336.471256 +3337.614778 +3337.622869 +3337.950741 +3337.956802 +3337.958633 +3338.329462 +3338.335123 +3338.338653 +3338.454404 +3338.461230 +3338.466791 +3340.164226 +3341.132190 +3341.202819 +3341.206416 +3341.638550 +3341.768953 +3343.591062 +3344.962955 +3344.972679 +3344.975676 +3346.911438 +3346.915734 +3347.349100 +3347.356992 +3347.488594 +3347.497252 +3348.000348 +3348.154228 +3348.158290 +3348.166216 +3348.422592 +3349.428818 +3349.435645 +3349.442771 +3349.630716 +3349.636311 +3349.755058 +3349.757090 +3350.379433 +3350.554325 +3350.664215 +3350.744934 +3350.937375 +3350.940372 +3351.398214 +3353.103573 +3353.240769 +3354.442067 +3354.816459 +3355.998575 +3356.311629 +3356.320753 +3356.325248 +3356.693713 +3356.696443 +3357.984621 +3358.579159 +3360.159177 +3360.231705 +3360.777458 +3361.471497 +3361.479922 +3361.484584 +3362.304496 +3363.404029 +3363.791541 +3363.803962 +3364.068730 +3365.097367 +3365.103595 +3365.113951 +3365.343055 +3366.080417 +3366.452145 +3366.843087 +3366.849713 +3367.023506 +3367.425937 +3367.428201 +3367.432064 +3367.436193 +3368.225003 +3368.228200 +3368.236492 +3368.608320 +3370.909117 +3372.380943 +3372.384273 +3372.389202 +3372.391433 +3374.111877 +3374.120902 +3374.274082 +3376.024829 +3376.031656 +3377.192860 +3377.203549 +3378.361590 +3378.668583 +3378.988962 +3379.998252 +3380.002081 +3380.006044 +3380.010040 +3380.703313 +3382.697350 +3382.702012 +3383.040706 +3383.044036 +3383.171375 +3383.175371 +3383.184629 +3383.334612 +3383.751794 +3384.667777 +3384.819492 +3385.365745 +3385.600411 +3385.663847 +3385.844033 +3385.847263 +3385.852258 +3385.994949 +3385.997879 +3386.007370 +3386.391252 +3386.403840 +3386.900576 +3387.597445 +3387.985423 +3388.363578 +3388.369572 +3388.373035 +3388.375399 +3389.322884 +3389.328512 +3389.330876 +3390.472167 +3390.475231 +3390.477029 +3390.482490 +3390.485620 +3392.656447 +3392.661609 +3393.436766 +3393.443693 +3394.729872 +3394.733735 +3396.218782 +3397.282150 +3397.572760 +3398.231733 +3398.717380 +3398.811253 +3398.821709 +3400.417445 +3400.423240 +3400.426336 +3400.430699 +3400.436360 +3404.097761 +3406.227463 +3406.232092 +3406.237186 +3408.371517 +3414.461720 +3414.470378 +3416.087759 +3417.308338 +3417.311101 +3418.197747 +3418.202343 +3418.206072 +3418.569309 +3418.572705 +3418.642868 +3419.100677 +3428.274860 +3428.287647 +3428.549885 +3428.559841 +3428.680321 +3428.685149 +3428.773394 +3428.982319 +3429.008959 +3429.013587 +3429.022445 +3431.016882 +3435.619575 +3438.519805 +3438.523967 +3438.526898 +3444.405713 +3447.410339 +3449.136378 +3449.144236 +3449.824655 +3449.828785 +3449.835977 +3449.927452 +3449.945335 +3450.211735 +3450.409070 +3451.008104 +3451.076536 +3451.231181 +3451.840271 +3452.657386 +3452.979797 +3453.224086 +3453.321155 +3453.405371 +3453.586490 +3454.547428 +3454.941667 +3454.975899 +3455.807200 +3456.371569 +3456.585055 +3457.027845 +3458.507131 +3458.711793 +3458.845825 +3458.999904 +3459.770733 +3459.804033 +3460.144292 +3460.842094 +3461.416985 +3461.422646 +3461.706295 +3461.761606 +; +0.013486 +0.239260 +0.400599 +0.542091 +0.666000 +1.040525 +1.168297 +1.211787 +1.306159 +1.361038 +1.409189 +1.745519 +2.061370 +2.568063 +2.841655 +2.938558 +3.094869 +3.360303 +3.469127 +3.521242 +3.720343 +3.821242 +3.910153 +4.018744 +4.136593 +4.185111 +4.248281 +4.441387 +4.548514 +4.685443 +4.876519 +5.002492 +5.042686 +5.083112 +5.182845 +5.349978 +5.460634 +5.545449 +5.959801 +6.006521 +6.044449 +6.150010 +6.264895 +6.596297 +6.784309 +6.952374 +7.134259 +7.457502 +7.532626 +7.584142 +7.690235 +8.060698 +8.344048 +8.473052 +8.627997 +8.783941 +8.805685 +9.025099 +9.206950 +9.292598 +9.736087 +10.235088 +10.480542 +10.828927 +10.892197 +11.203951 +11.509779 +11.786035 +11.921433 +11.999089 +12.112176 +12.391729 +12.431090 +12.469118 +12.519035 +12.580940 +12.647673 +12.809711 +12.872515 +12.949338 +13.194259 +13.242078 +13.326793 +13.619700 +13.700219 +13.792993 +13.854831 +13.968850 +14.077209 +14.175877 +14.470082 +14.586033 +14.603415 +14.713938 +14.887564 +15.059992 +15.143508 +15.193957 +15.273378 +15.381736 +15.558293 +15.694690 +15.840643 +15.968515 +16.014969 +16.123227 +16.200383 +16.278439 +16.352931 +16.435714 +16.574609 +16.685498 +16.900383 +17.002813 +17.192623 +17.318897 +17.515900 +17.622427 +17.703212 +17.931817 +17.990691 +18.069412 +18.335546 +18.460021 +18.764184 +18.858523 +19.340740 +19.416864 +19.455259 +19.557223 +19.616131 +19.683896 +19.760020 +19.870843 +19.935844 +20.010203 +20.136810 +20.333779 +20.546599 +20.588458 +20.698248 +20.995650 +21.143102 +21.307837 +21.490521 +21.727351 +21.957054 +22.226884 +22.408669 +22.447763 +22.815328 +22.903107 +23.073703 +23.159184 +23.224519 +23.273270 +23.444199 +23.683293 +23.950958 +24.047229 +24.101774 +24.195547 +24.271604 +24.586356 +24.749459 +25.036971 +25.072003 +25.183425 +25.258683 +25.390684 +25.679695 +25.813228 +26.105968 +26.378861 +26.565042 +26.757882 +26.845294 +27.920119 +28.041863 +28.165639 +28.303069 +28.431407 +28.689848 +29.101669 +29.265205 +29.548389 +30.077426 +30.279324 +30.372697 +30.428874 +30.472031 +30.625777 +30.706596 +31.525676 +31.738496 +31.801567 +31.866402 +31.870398 +31.943191 +32.004031 +32.151616 +32.259974 +32.431836 +32.496871 +33.246287 +33.253546 +33.401065 +33.614752 +33.867698 +34.046286 +34.578720 +34.772493 +34.838860 +34.995936 +35.176588 +35.689275 +36.238858 +36.302594 +36.495202 +36.983779 +37.373656 +37.749712 +37.894634 +37.973788 +38.575386 +38.621839 +38.738656 +38.778083 +38.837224 +38.979715 +39.071323 +39.150843 +39.367993 +39.613480 +39.880546 +39.982511 +40.049810 +40.303789 +40.428198 +40.553273 +40.607618 +40.703156 +40.785374 +41.293865 +41.424834 +41.471420 +41.578147 +41.769089 +41.920571 +42.018106 +42.347011 +42.666790 +42.968655 +43.087336 +43.138019 +43.283939 +43.554868 +43.670919 +43.730526 +43.828028 +43.972883 +44.006083 +44.059963 +44.121135 +44.207215 +44.717371 +44.844144 +45.045576 +45.279209 +45.355865 +45.741379 +45.795425 +45.845808 +45.902884 +46.075212 +46.131655 +46.271116 +46.442178 +46.581638 +46.850036 +47.008345 +47.082304 +47.405380 +47.491261 +47.627325 +47.761224 +48.263954 +48.468183 +48.496388 +48.724360 +48.967583 +48.991659 +49.105912 +49.190260 +49.299218 +49.554296 +49.604746 +49.809907 +49.977706 +50.122327 +50.181368 +50.247336 +50.340609 +50.606176 +50.795154 +50.849466 +51.000948 +51.104344 +51.211404 +51.852995 +52.269778 +52.312202 +52.902678 +52.961685 +53.023390 +53.144735 +53.720326 +53.928984 +54.018128 +54.100012 +54.165147 +54.463515 +54.635510 +55.047397 +55.356222 +55.430780 +55.557787 +55.647697 +55.753024 +56.096614 +56.290953 +56.502341 +56.722820 +56.835374 +56.962381 +57.097878 +57.198045 +57.446529 +57.773335 +57.938570 +58.196345 +58.364510 +58.732675 +58.874966 +58.928945 +59.242332 +59.521885 +59.715625 +59.781192 +59.905834 +60.001738 +60.113659 +60.283356 +60.527812 +60.768337 +61.164774 +61.381757 +61.445693 +61.477827 +61.745926 +61.818686 +62.281822 +62.800969 +62.920117 +62.985218 +63.163007 +63.670799 +63.933969 +64.076792 +64.286716 +64.454647 +64.490978 +64.539296 +64.595140 +64.716519 +65.001900 +65.179189 +65.293674 +65.490977 +65.582718 +65.751216 +65.899601 +66.154013 +66.657109 +66.749550 +67.023376 +67.127305 +67.274458 +67.430968 +67.752746 +68.320811 +68.456042 +68.576388 +68.660970 +68.842455 +69.006591 +69.073990 +69.247084 +69.599864 +69.753244 +70.093936 +70.470193 +70.838024 +71.023505 +71.066229 +71.157438 +71.262899 +71.375586 +71.489406 +71.549346 +71.896232 +72.145316 +72.206388 +72.239222 +72.367493 +73.314179 +73.502957 +73.799427 +74.061231 +74.165194 +74.380245 +74.841750 +75.449974 +75.498892 +75.786271 +76.046777 +76.350806 +76.720836 +76.853370 +76.967822 +77.358464 +77.446143 +77.568121 +77.799756 +77.838517 +78.078177 +78.271783 +78.521300 +78.665389 +78.949538 +79.515705 +80.021299 +80.211242 +80.337848 +80.426460 +80.485434 +80.705480 +81.279040 +81.311907 +81.534118 +81.604847 +81.862555 +82.149701 +82.489495 +82.719065 +82.727356 +82.786131 +82.870380 +82.952897 +83.027722 +83.111905 +83.173710 +83.312537 +83.447069 +83.595920 +83.691658 +83.836147 +84.080902 +84.176173 +84.318697 +84.546436 +84.735247 +84.942606 +85.503045 +85.802578 +85.942005 +86.031649 +86.098049 +86.205009 +86.304442 +86.371375 +86.454559 +86.554492 +86.783896 +87.087359 +87.534911 +87.643336 +87.711401 +87.801844 +87.900511 +87.968177 +88.056122 +88.121890 +88.235776 +88.283695 +88.356122 +88.490454 +88.587391 +88.771473 +88.850394 +89.024653 +89.125252 +89.190620 +89.310400 +89.449328 +89.540070 +89.683460 +89.827050 +90.043067 +90.247096 +90.382094 +90.631711 +90.670905 +90.729746 +90.757618 +90.819390 +90.990585 +91.049759 +91.146063 +91.298477 +91.397711 +91.478297 +91.698809 +92.113561 +92.244297 +92.325982 +92.460680 +92.528412 +92.573234 +92.612262 +92.681359 +92.752288 +92.853354 +92.911429 +93.009164 +93.260746 +93.485488 +93.733706 +93.792713 +94.076596 +94.222383 +94.342996 +94.434238 +94.708097 +94.983222 +96.146757 +96.629607 +96.801235 +97.157345 +97.314222 +97.460009 +97.622580 +97.703499 +97.872729 +97.950052 +98.012456 +98.127508 +98.140162 +98.288813 +98.432802 +98.517084 +98.637897 +98.838829 +98.944257 +99.042958 +99.397436 +99.457743 +99.590510 +99.664869 +99.733333 +99.766134 +99.836097 +100.003729 +100.103197 +100.404229 +100.629703 +100.764768 +100.848417 +100.970662 +101.144155 +101.256009 +101.368363 +101.429036 +101.502363 +101.597134 +101.710021 +102.468229 +102.573424 +102.633664 +102.708788 +102.914249 +103.011186 +103.072957 +103.133663 +103.146783 +103.218112 +103.268961 +103.327602 +103.386110 +103.417446 +103.584012 +103.731198 +103.832663 +104.473688 +104.553375 +104.625370 +104.736825 +104.791803 +104.855173 +104.940588 +105.013748 +105.067294 +105.122972 +105.258370 +105.370724 +105.535226 +105.808252 +106.088505 +106.252574 +106.379980 +106.635591 +106.726766 +106.915211 +106.945048 +106.992933 +106.997029 +107.044582 +107.056669 +107.100459 +107.244415 +107.337522 +107.411148 +107.570855 +107.668757 +107.947411 +108.070022 +108.428729 +108.497361 +109.089301 +109.299824 +109.418239 +109.492465 +109.604819 +109.721136 +110.268255 +110.616972 +111.000888 +111.131091 +111.180908 +111.275413 +111.363858 +111.783838 +112.338149 +112.508113 +112.630657 +112.838615 +112.949537 +112.980573 +113.015804 +113.090530 +113.200586 +113.288698 +113.434385 +113.827925 +114.213206 +114.510009 +114.546306 +114.664021 +114.743608 +115.072745 +115.224560 +115.368416 +115.425126 +115.514736 +115.649834 +115.771879 +116.059524 +116.161089 +116.602114 +116.682001 +116.754961 +116.854329 +116.954428 +117.075474 +117.164951 +117.268647 +117.532683 +117.613369 +117.736679 +117.965050 +118.029619 +118.071244 +118.145636 +118.211270 +118.281034 +118.438543 +118.600114 +118.717097 +118.805476 +118.869545 +119.033447 +119.330350 +119.467613 +119.713800 +119.842637 +120.008438 +120.124622 +120.307805 +120.382197 +120.476669 +120.556223 +120.610735 +120.815164 +120.988490 +121.048897 +121.177301 +121.247797 +121.458553 +121.538906 +121.708370 +121.999279 +122.339005 +122.426917 +122.748961 +122.799378 +122.870939 +122.947230 +123.136207 +123.360349 +123.499111 +124.030012 +124.246196 +124.327282 +124.656685 +124.891850 +125.455752 +125.632642 +125.746627 +125.987453 +126.239035 +126.697709 +126.836936 +126.911528 +127.002104 +127.087918 +127.290848 +127.434205 +127.476762 +127.747158 +127.935403 +127.991680 +128.068403 +128.122915 +128.248656 +128.344627 +128.458446 +128.777793 +129.215855 +129.361009 +129.531905 +129.630240 +129.734735 +129.879823 +130.131072 +130.201468 +130.503233 +130.591478 +131.046356 +131.104664 +131.226076 +131.353249 +131.422679 +131.637198 +131.717584 +131.870331 +132.100834 +132.501066 +132.682585 +132.850883 +132.966067 +133.068931 +133.115784 +133.195238 +133.297336 +133.405061 +133.489610 +133.606959 +133.731002 +134.107891 +134.152546 +134.196935 +134.275157 +134.324741 +134.415517 +134.569063 +135.139991 +135.261769 +135.349249 +135.467164 +135.567930 +135.773491 +135.778819 +136.015448 +136.204326 +136.441089 +136.559271 +136.649414 +136.912617 +136.971258 +137.125670 +137.178984 +137.333063 +137.369759 +137.449346 +137.527168 +137.695167 +137.913748 +137.936858 +138.053308 +138.139522 +138.221607 +138.342053 +138.821906 +138.968359 +139.132661 +139.248545 +139.361765 +139.449111 +139.489970 +139.681445 +139.781479 +139.833526 +139.895265 +140.118475 +140.226966 +140.317875 +140.395564 +140.465760 +140.523669 +140.563862 +140.631195 +140.680179 +140.739286 +140.856070 +140.997095 +141.054171 +141.212013 +141.270455 +141.343582 +141.544048 +141.755602 +141.954304 +142.056668 +142.322302 +142.433324 +142.542981 +142.665558 +142.734822 +142.813710 +142.885971 +143.019604 +143.660762 +143.838651 +143.961494 +144.113942 +144.244378 +144.334854 +144.358530 +144.472150 +144.554234 +144.651304 +144.706182 +144.829892 +144.905216 +145.071783 +145.191130 +145.396758 +145.567287 +145.704982 +145.779175 +145.888832 +145.969351 +146.026860 +146.128292 +146.235352 +146.277210 +146.333487 +146.652068 +146.899687 +146.907412 +146.991794 +147.103083 +147.234851 +147.382204 +147.555597 +147.658560 +147.741977 +147.910175 +148.397854 +148.531453 +148.580671 +148.689828 +148.930121 +149.149135 +149.317333 +149.558026 +149.939877 +150.240842 +150.361788 +150.865816 +151.113635 +151.506309 +151.590058 +151.709106 +151.762186 +151.871610 +152.010404 +152.122459 +152.146135 +152.258489 +152.559688 +152.660587 +153.150596 +153.222191 +153.311335 +153.407639 +153.507472 +153.592054 +153.885860 +154.173705 +154.336875 +154.396449 +154.510535 +154.574138 +154.665213 +154.724088 +154.781530 +154.846965 +154.935809 +155.046798 +155.152259 +155.241836 +155.324254 +155.488289 +155.542702 +155.743567 +155.804972 +155.848063 +155.891652 +155.992851 +156.173637 +156.310000 +156.522854 +156.702307 +156.797346 +156.920622 +156.991718 +157.077632 +157.143166 +157.194148 +157.268441 +157.437005 +157.538570 +157.611497 +157.838004 +157.938803 +158.016126 +158.087821 +158.266708 +158.329079 +158.385822 +158.450791 +158.503305 +158.572202 +158.720787 +158.870071 +158.967706 +159.010497 +159.123217 +159.240567 +159.359215 +159.432541 +159.570004 +159.626380 +159.719154 +159.768238 +159.925514 +159.998808 +160.064142 +160.065474 +160.126180 +160.186353 +160.248891 +160.305601 +160.355717 +160.406100 +160.477795 +160.549623 +160.752420 +160.826612 +160.942163 +161.072866 +161.118920 +161.173399 +161.217787 +161.276362 +161.318353 +161.365673 +161.398373 +161.441597 +161.564574 +161.634004 +161.685419 +161.798073 +161.818420 +161.932639 +162.007930 +162.084620 +162.160943 +162.297773 +162.424313 +162.483887 +162.530140 +162.562042 +162.617520 +162.714756 +162.764173 +162.809661 +162.879224 +162.934802 +162.987083 +163.037133 +163.150486 +163.218285 +163.281155 +163.353583 +163.398538 +163.465504 +163.575561 +163.619017 +163.651684 +163.679224 +163.733136 +163.786183 +163.832237 +163.900469 +163.960409 +164.029806 +164.085950 +164.110492 +164.140262 +164.264904 +164.314255 +164.355846 +164.365403 +164.378490 +164.424511 +164.489213 +164.548220 +164.575160 +164.633568 +164.677125 +164.735633 +164.773162 +164.795806 +164.850218 +164.901766 +165.092709 +165.203964 +165.245722 +165.300068 +165.336465 +165.400367 +165.445589 +165.484183 +165.516118 +165.625642 +165.672695 +165.782052 +165.856111 +166.060107 +166.164136 +166.221079 +166.287613 +166.375325 +166.421878 +166.477989 +166.585581 +166.631502 +166.713420 +166.828405 +166.897102 +166.920246 +166.965700 +167.018215 +167.038095 +167.084848 +167.138860 +167.190742 +167.225674 +167.323742 +167.361205 +167.366932 +167.434331 +167.488011 +167.536296 +167.575623 +167.620978 +167.667531 +167.707491 +167.771760 +167.772859 +167.831267 +167.924108 +167.958407 +168.073525 +168.208823 +168.251413 +168.335196 +168.400797 +168.550747 +168.600364 +168.683448 +168.809055 +168.900064 +168.954177 +169.024806 +169.081116 +169.118779 +169.225771 +169.275155 +169.343653 +169.398565 +169.452778 +169.541922 +169.583946 +169.624606 +169.656540 +169.706823 +169.755108 +169.790306 +169.906357 +169.948248 +170.000363 +170.040289 +170.088341 +170.144319 +170.184312 +170.243852 +170.274855 +170.354608 +170.395401 +170.443286 +170.573656 +170.599063 +170.616812 +170.818943 +170.858837 +170.948380 +170.965996 +171.027301 +171.052276 +171.129233 +171.190438 +171.247514 +171.445483 +171.471091 +171.524570 +171.557471 +171.633395 +171.746648 +171.875885 +171.927034 +172.003591 +172.049711 +172.060001 +172.112149 +172.181546 +172.255605 +172.491336 +172.534060 +172.600360 +172.682644 +172.736590 +172.784975 +172.858568 +172.983343 +173.071788 +173.129630 +173.178182 +173.212381 +173.255771 +173.305321 +173.364529 +173.422604 +173.535691 +173.562530 +173.590902 +173.640619 +173.706520 +173.782044 +173.846513 +173.882177 +174.001558 +174.043016 +174.095031 +174.164861 +174.244348 +174.292033 +174.370888 +174.424101 +174.462196 +174.510115 +174.552040 +174.580411 +174.615643 +174.648943 +174.684640 +174.717974 +174.785173 +174.913245 +174.945979 +174.985573 +175.038619 +175.077880 +175.176648 +175.240084 +175.300158 +175.343647 +175.509681 +175.596295 +175.642149 +175.768023 +175.827730 +175.876114 +175.925965 +175.977013 +176.025265 +176.174416 +176.261196 +176.330526 +176.386837 +176.422734 +176.460596 +176.481708 +176.545045 +176.602820 +176.659464 +176.795894 +176.855467 +176.934755 +176.957166 +177.018105 +177.064125 +177.119736 +177.165690 +177.209413 +177.236619 +177.319436 +177.400455 +177.540915 +177.550838 +177.610378 +177.643012 +177.646842 +177.694461 +177.764824 +177.858863 +177.937917 +177.990198 +178.074214 +178.122599 +178.196825 +178.370218 +178.450604 +178.494693 +178.542812 +178.652002 +178.697990 +178.740414 +178.804849 +178.888532 +178.945775 +179.068918 +179.152302 +179.203783 +179.247673 +179.279674 +179.369684 +179.481605 +179.492028 +179.516903 +179.584735 +179.760460 +179.869251 +179.916337 +179.992461 +180.040945 +180.095191 +180.175977 +180.241145 +180.284868 +180.353100 +180.403816 +180.466586 +180.510875 +180.676809 +180.686932 +180.797055 +180.853898 +180.901817 +180.964321 +181.032353 +181.084268 +181.197055 +181.226792 +181.267418 +181.313372 +181.342076 +181.399685 +181.423428 +181.471081 +181.533784 +181.587164 +181.616602 +181.683368 +181.732685 +181.777774 +181.809342 +181.856095 +181.895622 +182.075709 +182.108842 +182.159558 +182.235082 +182.278805 +182.350201 +182.419564 +182.474776 +182.527223 +182.619598 +182.666051 +182.691126 +182.726391 +182.795988 +182.831552 +182.884632 +182.942508 +182.986164 +183.045172 +183.107010 +183.175341 +183.231918 +183.257959 +183.300116 +183.327489 +183.353163 +183.377972 +183.421395 +183.459690 +183.489527 +183.552364 +183.605810 +183.724825 +183.749600 +183.782067 +183.822493 +183.864451 +183.896786 +183.953496 +183.996386 +184.038477 +184.078071 +184.146469 +184.201814 +184.256992 +184.312769 +184.353795 +184.382400 +184.404677 +184.438177 +184.587761 +184.619695 +184.654594 +184.697684 +184.748666 +184.804144 +184.857790 +184.889925 +184.912935 +184.944137 +185.009672 +185.048533 +185.084430 +185.188260 +185.321659 +185.361220 +185.419062 +185.462552 +185.515266 +185.558722 +185.659055 +185.686095 +185.738942 +185.830084 +185.880334 +185.934379 +185.971975 +186.005575 +186.183663 +186.233713 +186.290956 +186.336777 +186.431349 +186.532148 +186.565648 +186.642204 +186.694985 +186.802211 +186.859920 +186.882897 +186.942803 +187.009503 +187.046300 +187.239373 +187.325720 +187.364714 +187.409503 +187.452826 +187.542170 +187.606406 +187.650961 +187.714930 +187.771441 +187.824188 +187.873838 +187.925386 +187.988124 +188.019359 +188.088024 +188.144167 +188.184627 +188.306505 +188.388456 +188.439039 +188.546298 +188.629182 +188.671606 +188.760184 +188.806338 +188.835575 +188.899778 +188.953391 +188.995116 +189.041336 +189.104506 +189.146597 +189.197047 +189.234443 +189.274303 +189.376567 +189.432345 +189.472038 +189.485824 +189.524686 +189.574303 +189.626717 +189.694649 +189.739604 +189.786290 +189.817459 +189.882261 +189.926517 +189.969207 +190.034575 +190.085324 +190.157952 +190.222620 +190.289154 +190.331844 +190.399277 +190.438970 +190.496380 +190.554255 +190.601441 +190.640269 +190.693682 +190.761481 +190.806336 +190.842500 +190.885457 +190.921854 +190.961248 +191.042966 +191.122553 +191.168240 +191.208966 +191.327215 +191.391817 +191.460448 +191.511530 +191.571903 +191.639502 +191.712129 +191.757750 +191.808999 +191.845562 +191.897077 +191.985422 +192.076265 +192.130877 +192.177497 +192.234406 +192.292448 +192.503337 +192.568172 +192.720786 +192.776098 +192.893946 +192.939001 +192.993080 +193.054419 +193.108398 +193.162511 +193.205434 +193.242364 +193.295677 +193.346327 +193.403869 +193.420120 +193.633473 +193.671235 +193.757482 +193.816523 +193.883556 +194.001604 +194.045860 +194.078594 +194.182190 +194.227511 +194.283755 +194.329975 +194.385054 +194.451454 +194.506232 +194.649156 +194.706499 +194.826079 +194.870601 +195.013258 +195.071400 +195.115423 +195.168769 +195.289348 +195.343328 +195.403168 +195.481656 +195.523381 +195.608662 +195.737233 +195.772731 +195.816787 +195.822448 +195.920150 +195.987583 +196.029841 +196.086817 +196.152318 +196.209794 +196.318885 +196.375228 +196.484752 +196.542494 +196.596973 +196.645891 +196.697639 +196.745890 +196.792977 +196.827142 +196.966037 +197.030639 +197.092610 +197.184918 +197.248521 +197.343659 +197.354115 +197.409793 +197.465503 +197.521647 +197.575860 +197.647821 +197.671730 +197.687381 +197.764837 +197.991544 +198.029472 +198.076192 +198.165469 +198.175792 +198.231237 +198.298636 +198.312322 +198.368799 +198.412189 +198.453748 +198.500201 +198.569299 +198.611956 +198.674626 +198.722479 +198.781153 +198.811090 +198.885815 +198.940827 +198.982019 +199.086314 +199.135765 +199.212488 +199.257043 +199.356211 +199.370297 +199.412821 +199.442724 +199.474126 +199.529171 +199.582085 +199.626773 +199.685048 +199.731269 +199.768831 +199.806460 +199.861438 +199.907293 +199.958774 +200.034032 +200.089277 +200.133133 +200.170129 +200.215417 +200.287112 +200.328205 +200.364668 +200.425074 +200.529203 +200.587212 +200.661071 +200.708091 +200.789476 +200.803429 +200.824941 +200.944588 +201.024208 +201.041624 +201.081484 +201.121644 +201.207491 +201.253711 +201.300731 +201.387677 +201.544154 +201.590974 +201.665599 +201.699066 +201.753744 +201.806858 +201.851180 +201.902296 +201.951646 +201.998166 +202.092272 +202.155842 +202.213118 +202.254909 +202.297333 +202.357706 +202.406857 +202.583214 +202.688109 +202.774822 +202.859304 +202.919877 +202.978885 +203.013483 +203.075621 +203.216746 +203.273290 +203.326636 +203.371159 +203.426936 +203.479483 +203.537425 +203.602727 +203.643020 +203.670692 +203.721874 +203.760236 +203.791937 +203.974555 +204.021041 +204.059336 +204.122407 +204.225770 +204.265330 +204.320542 +204.366729 +204.486376 +204.533895 +204.625070 +204.664664 +204.710551 +204.771657 +204.819242 +204.852076 +204.899296 +204.939289 +204.995932 +205.027667 +205.071490 +205.117177 +205.169425 +205.218742 +205.260800 +205.295998 +205.344783 +205.420574 +205.529998 +205.611682 +205.639921 +205.683810 +205.802059 +205.916777 +205.960034 +206.019374 +206.061432 +206.196963 +206.269491 +206.325734 +206.358601 +206.388238 +206.423170 +206.470789 +206.506620 +206.581512 +206.639787 +206.724002 +206.843782 +206.907019 +206.985640 +207.054105 +207.100792 +207.147179 +207.190469 +207.266726 +207.342184 +207.401391 +207.447778 +207.505287 +207.549310 +207.599326 +207.637788 +207.778480 +207.853871 +207.918906 +207.952939 +208.058733 +208.102389 +208.180211 +208.249842 +208.297228 +208.399126 +208.491133 +208.557067 +208.599092 +208.675216 +208.775615 +208.834157 +208.961995 +209.001689 +209.049674 +209.103321 +209.166391 +209.204053 +209.255135 +209.300956 +209.349641 +209.391865 +209.435055 +209.559564 +209.649441 +209.701522 +209.777013 +209.808215 +209.851239 +209.936353 +209.980742 +210.184006 +210.243046 +210.307415 +210.357199 +210.405817 +210.461461 +210.513243 +210.544478 +210.587835 +210.643645 +210.730625 +210.786036 +210.832024 +210.894428 +210.937918 +211.107181 +211.173215 +211.239749 +211.284571 +211.348040 +211.402985 +211.436452 +211.508979 +211.557664 +211.594993 +211.648306 +211.727194 +211.765889 +211.825929 +211.890864 +211.923831 +212.054200 +212.109112 +212.157830 +212.221899 +212.257930 +212.339648 +212.363491 +212.472415 +212.531789 +212.584136 +212.670350 +212.741113 +212.808778 +212.876077 +212.960992 +213.157562 +213.218668 +213.295990 +213.399320 +213.453000 +213.501418 +213.571348 +213.618501 +213.678541 +213.751468 +213.830655 +213.965454 +214.042310 +214.110109 +214.211008 +214.338247 +214.434284 +214.502083 +214.583435 +214.682569 +214.749036 +214.800718 +214.858526 +214.913804 +214.984467 +215.043674 +215.135716 +215.228223 +215.299052 +215.362555 +215.480970 +215.554130 +215.604813 +215.643707 +215.699951 +215.767417 +215.832518 +215.894722 +215.945139 +215.985831 +216.069348 +216.179637 +216.294922 +216.348069 +216.419464 +216.496553 +216.558924 +216.647602 +216.729454 +216.789227 +216.885497 +216.964651 +216.994721 +217.057492 +217.107375 +217.233549 +217.419030 +217.498517 +217.544937 +217.605776 +217.655527 +217.697751 +217.752929 +217.799516 +217.954394 +218.053362 +218.093821 +218.145636 +218.252829 +218.303278 +218.408506 +218.485396 +218.601913 +218.740674 +218.802645 +218.974340 +219.125322 +219.176371 +219.238908 +219.330650 +219.381699 +219.454759 +219.571142 +219.693653 +219.792887 +219.951528 +220.147765 +220.227419 +220.273040 +220.330116 +220.371308 +220.435710 +220.506806 +220.574138 +220.621291 +220.724022 +220.785061 +220.864315 +220.945966 +220.979799 +221.072240 +221.179133 +221.290222 +221.672339 +221.731513 +221.775802 +221.804374 +221.840005 +221.958819 +222.018659 +222.075003 +222.153890 +222.238905 +222.320956 +222.383427 +222.405006 +222.578166 +222.698379 +222.807170 +223.020023 +223.102041 +223.159484 +223.210499 +223.262481 +223.355055 +223.421521 +223.503739 +223.547795 +223.615161 +223.695281 +223.743832 +223.854621 +223.945897 +224.056319 +224.221720 +224.323152 +224.441700 +224.480761 +224.530911 +224.570272 +224.630711 +224.738570 +224.849659 +224.890484 +224.924317 +224.963012 +225.017757 +225.074234 +225.306834 +225.649058 +225.731742 +225.871835 +225.932242 +225.965009 +226.023217 +226.126447 +226.207433 +226.361345 +226.432907 +226.510729 +226.579394 +226.714625 +227.036836 +227.202970 +227.432640 +227.492779 +227.548890 +227.628444 +227.680358 +227.751554 +227.785153 +227.847025 +227.908630 +227.971034 +228.121350 +228.176262 +228.217521 +228.274630 +228.328410 +228.378426 +228.415023 +228.510594 +228.687617 +228.798373 +228.851320 +228.948922 +229.059711 +229.152052 +229.253717 +229.307929 +229.357313 +229.439231 +229.771931 +229.820882 +229.879324 +230.043659 +230.103832 +230.161108 +230.223746 +230.290146 +230.444658 +230.527342 +230.661707 +230.718684 +230.771497 +230.861441 +230.892243 +230.953282 +231.028573 +231.105829 +231.150551 +231.242193 +231.361007 +231.462406 +231.681686 +231.805762 +231.880188 +231.947787 +232.102066 +232.207960 +232.285449 +232.339994 +232.468232 +232.501233 +232.553547 +232.654346 +232.769764 +232.927306 +233.024809 +233.076990 +233.142358 +233.214685 +233.505860 +233.828571 +233.965167 +234.020146 +234.169529 +234.302962 +234.377355 +234.523642 +234.593805 +234.681717 +234.729935 +234.788976 +234.882416 +234.993971 +235.053478 +235.114184 +235.155609 +235.193837 +235.285546 +235.383647 +235.406491 +235.494670 +235.562735 +235.917413 +235.989907 +236.073523 +236.206124 +236.295035 +236.823406 +237.060136 +237.092071 +237.144252 +237.167961 +237.220609 +237.290039 +237.334295 +237.395434 +237.463798 +237.643485 +237.756006 +237.881247 +238.043818 +238.263065 +238.371690 +238.546048 +238.682112 +238.770124 +238.895732 +239.023404 +239.122405 +239.203790 +239.243883 +239.303590 +239.358935 +239.452941 +239.540919 +239.704522 +239.768725 +240.116277 +240.226433 +240.306153 +240.394831 +240.422936 +240.465927 +240.562264 +240.624468 +240.688570 +240.707518 +240.874151 +240.984441 +241.024834 +241.158001 +241.221304 +241.426199 +241.837454 +241.917973 +242.024866 +242.184040 +242.247743 +242.316774 +242.367823 +243.196993 +243.323000 +243.397858 +243.460129 +243.646110 +243.770119 +243.818371 +243.880675 +243.991231 +244.155733 +244.267122 +244.341048 +244.404884 +244.511577 +244.646209 +244.986901 +245.045609 +245.322765 +245.323764 +245.429558 +245.496291 +246.214905 +246.326094 +246.412707 +246.541778 +246.835917 +246.939447 +247.040878 +247.143975 +247.194691 +247.268451 +247.314971 +247.461091 +247.613006 +247.706179 +247.957228 +248.069948 +248.118000 +248.188430 +248.261523 +248.541643 +249.104979 +249.224426 +249.308176 +249.367549 +249.404512 +249.491092 +249.582967 +249.645937 +250.074575 +250.451997 +250.533682 +250.627388 +250.679803 +250.725357 +250.797218 +250.892456 +251.269013 +251.383365 +251.451930 +251.678669 +251.855759 +252.184396 +252.908472 +253.142171 +253.236177 +253.382930 +253.685927 +253.744468 +253.788025 +253.886726 +253.989523 +254.055823 +254.115197 +254.165513 +254.231148 +254.297481 +254.364214 +254.525953 +255.129715 +255.225186 +255.319092 +255.436674 +255.540937 +255.928948 +256.024153 +256.200743 +256.923386 +257.019024 +257.229180 +257.272004 +257.327615 +257.373069 +257.475966 +257.573835 +257.791450 +257.991184 +258.270238 +258.296811 +258.370471 +258.491949 +258.650524 +258.761912 +258.850823 +259.088386 +259.189285 +259.838102 +260.113226 +260.222251 +260.351488 +260.457182 +260.535537 +260.651388 +260.810961 +261.230741 +261.293478 +261.357281 +261.534770 +261.967504 +262.160710 +262.265305 +262.381123 +262.484419 +262.872431 +262.929874 +263.061409 +263.278791 +263.442594 +263.533536 +263.653982 +263.794541 +264.847054 +264.906095 +264.944024 +265.042392 +265.097404 +265.358376 +265.422145 +265.739361 +266.136064 +266.234466 +266.314785 +266.380286 +266.570729 +266.741392 +267.725640 +267.787744 +267.873625 +267.912586 +268.049149 +268.352945 +268.443621 +268.572026 +268.734730 +268.856108 +268.978252 +269.285412 +269.313983 +269.575555 +269.655108 +269.789074 +269.838724 +269.941022 +270.084179 +270.151878 +270.937924 +271.015646 +271.126669 +271.454674 +271.520707 +271.619076 +271.835659 +272.233694 +272.397430 +272.589038 +272.870090 +273.039421 +273.357069 +273.708351 +273.762164 +273.834025 +273.926533 +274.016476 +274.125533 +275.038719 +275.473251 +276.227962 +276.326097 +278.087634 +278.183505 +278.314041 +278.445376 +278.745043 +278.874380 +279.022665 +279.089032 +279.318901 +279.415305 +279.501552 +279.620799 +279.712907 +279.942877 +280.426459 +280.700818 +280.877908 +280.962456 +281.139313 +281.259526 +282.325991 +282.601682 +282.766717 +283.064119 +283.425191 +283.500815 +283.557792 +283.760389 +283.844804 +283.935447 +284.175640 +284.230851 +284.307608 +284.367614 +284.461753 +284.745436 +285.106541 +285.169245 +285.364949 +285.610970 +286.826153 +286.906540 +287.063849 +288.033511 +288.270974 +288.377467 +288.466978 +288.981829 +289.045865 +289.101909 +289.172072 +289.238272 +289.347396 +289.463247 +289.595947 +289.766110 +289.811332 +289.994016 +290.071904 +290.790618 +290.806336 +290.887455 +291.484757 +292.173501 +292.365875 +292.425115 +292.455219 +292.483324 +292.871335 +292.943630 +293.013193 +293.144462 +293.201505 +293.633672 +293.634338 +293.777129 +293.883256 +294.013792 +294.646492 +295.062442 +295.320118 +295.812958 +296.037000 +296.455348 +296.553749 +297.020083 +297.515120 +297.754481 +297.885916 +298.277524 +298.894606 +299.190044 +299.408625 +299.964235 +300.405760 +300.557408 +300.942756 +301.142623 +301.631333 +301.701796 +301.794137 +301.956641 +302.141423 +302.384679 +302.584246 +303.001895 +303.227203 +303.342687 +303.481881 +303.592970 +303.816146 +303.979516 +304.398264 +304.485343 +304.903924 +305.208086 +305.420607 +305.452309 +305.584210 +305.611349 +305.645682 +305.688006 +305.718376 +305.736358 +305.782878 +305.844483 +305.906221 +306.006953 +306.098329 +306.137090 +306.282278 +306.432028 +306.471089 +306.532894 +306.603456 +306.700992 +306.796297 +306.895897 +306.950309 +307.009017 +307.093299 +307.157269 +307.355503 +307.465460 +307.552739 +307.981643 +308.168623 +308.198160 +308.260797 +308.317507 +308.410614 +308.523268 +308.642149 +308.742815 +308.961929 +309.146411 +309.194762 +309.262095 +309.357233 +309.463660 +309.567922 +309.710579 +309.786970 +310.019470 +310.095228 +310.153902 +310.226197 +310.358664 +310.431058 +310.707415 +310.925463 +311.239382 +311.317471 +311.466289 +311.528526 +311.594094 +311.734320 +311.897890 +312.301786 +312.403517 +312.605415 +313.231189 +313.549104 +313.958627 +314.645506 +315.083534 +315.128822 +315.177440 +315.358359 +315.929554 +316.088095 +316.152331 +316.216367 +317.334281 +317.487128 +317.922060 +318.050464 +318.162053 +318.270644 +318.796684 +319.127386 +319.210070 +319.292388 +319.375172 +319.492787 +319.585295 +319.685561 +320.256323 +320.634811 +321.368943 +321.466811 +321.781063 +322.027017 +322.486524 +322.488355 +322.551825 +322.766177 +322.901509 +323.088255 +323.473736 +323.859083 +323.973003 +324.194514 +324.520954 +324.575899 +325.319488 +325.351889 +325.567640 +325.674266 +326.515957 +326.592880 +326.659846 +326.719620 +326.767439 +326.862477 +326.921518 +327.005334 +327.159846 +327.321551 +327.368304 +327.426879 +327.471301 +327.531274 +327.673399 +327.744461 +327.827111 +327.896142 +327.955749 +328.034304 +328.143295 +328.280491 +328.398040 +328.632938 +329.051353 +329.242461 +329.374729 +330.281255 +330.606962 +332.510157 +333.007792 +334.425373 +334.851613 +334.970361 +336.190007 +336.267130 +336.816679 +338.036125 +338.924303 +341.005553 +342.362794 +343.270652 +344.546742 +346.450503 +347.813505 +348.983001 +349.530020 +349.564985 +349.619297 +349.687729 +349.820862 +349.871345 +349.998784 +350.069547 +350.268880 +350.323859 +350.414168 +350.459756 +350.512736 +351.397950 +351.473541 +351.656358 +351.764517 +351.829052 +351.928319 +352.068013 +352.369145 +352.943736 +353.835943 +354.130149 +354.563581 +354.858520 +355.008303 +355.825618 +356.861914 +357.379296 +358.781759 +360.030476 +360.390449 +360.519886 +360.636669 +360.819786 +361.658812 +362.453550 +362.668635 +367.739126 +368.330234 +368.492872 +368.529468 +368.560737 +368.645952 +368.725006 +368.777054 +369.072525 +369.359770 +369.896633 +369.958804 +370.025704 +370.113583 +370.204891 +370.252810 +370.347682 +370.421907 +370.803126 +371.129965 +371.219609 +371.299928 +371.410018 +371.446115 +371.814313 +371.932395 +372.023338 +372.114679 +372.167094 +372.387073 +372.500393 +372.594932 +372.638921 +372.696331 +372.827732 +373.026234 +373.226800 +373.399060 +373.535824 +373.636123 +373.747245 +373.823869 +374.008850 +374.062097 +374.152340 +374.267558 +374.430561 +374.723535 +374.993365 +375.065892 +375.117607 +375.201789 +375.320470 +375.464959 +375.548342 +375.597959 +375.638186 +375.718738 +375.817673 +375.926897 +376.004452 +376.064359 +376.117639 +376.208282 +376.296893 +376.409813 +376.625664 +376.701954 +376.840416 +376.929626 +376.982607 +377.062726 +377.183106 +377.219470 +377.278744 +377.346409 +377.406116 +377.640382 +377.816139 +377.899855 +377.985037 +378.067754 +378.131490 +378.186235 +378.265356 +378.343278 +378.385669 +378.453301 +378.591097 +378.716205 +378.837017 +378.937516 +379.058562 +379.165788 +379.235851 +379.306048 +379.367786 +379.480207 +379.545608 +379.641179 +379.699720 +379.757096 +379.901052 +379.998088 +380.035251 +380.079240 +380.161758 +380.215604 +380.300252 +380.344408 +380.427958 +380.516003 +380.579606 +380.621531 +380.666519 +380.737415 +380.824794 +380.936915 +381.126825 +381.192959 +381.248337 +381.340777 +381.385100 +381.425892 +381.479039 +381.547138 +381.609076 +381.715502 +381.779072 +381.866185 +381.923694 +381.983634 +382.029721 +382.144340 +382.192258 +382.385665 +382.472478 +382.554995 +382.635748 +382.695621 +382.777206 +382.834948 +382.872877 +382.928089 +382.986663 +383.174275 +383.307908 +383.391758 +383.492124 +383.564052 +383.605011 +383.693023 +383.764884 +383.852596 +383.889493 +383.952663 +384.038177 +384.087728 +384.184764 +384.306542 +384.392123 +384.459655 +384.528287 +384.625889 +384.661920 +384.723058 +384.774873 +384.808606 +384.853095 +384.895020 +384.950431 +385.011137 +385.077037 +385.118829 +385.188459 +385.259621 +385.313334 +385.341106 +385.376071 +385.421826 +385.462951 +385.529751 +385.622392 +385.706308 +385.747799 +385.806241 +385.856391 +385.901612 +385.939874 +385.967479 +386.017030 +386.065315 +386.131482 +386.205941 +386.287559 +386.340406 +386.382764 +386.456490 +386.516397 +386.573839 +386.602044 +386.642637 +386.672674 +386.712334 +386.751028 +386.853526 +386.924322 +386.966946 +387.067345 +387.125054 +387.186493 +387.239506 +387.275304 +387.294251 +387.322423 +387.367411 +387.409036 +387.459286 +387.500012 +387.552226 +387.577168 +387.604474 +387.660152 +387.726885 +387.805639 +387.859053 +387.909635 +387.970508 +388.013598 +388.069808 +388.119892 +388.161050 +388.216029 +388.252825 +388.290987 +388.320091 +388.372705 +388.417360 +388.460251 +388.504407 +388.546165 +388.574803 +388.627950 +388.674370 +388.731313 +388.781263 +388.839871 +388.895049 +388.955921 +389.011932 +389.069008 +389.100410 +389.171605 +389.211532 +389.271639 +389.328448 +389.368342 +389.432078 +389.477233 +389.526384 +389.592251 +389.651958 +389.671272 +389.708068 +389.764479 +389.810899 +389.874269 +389.975168 +390.021588 +390.070972 +390.114029 +390.162946 +390.212131 +390.240669 +390.290386 +390.318624 +390.382027 +390.490052 +390.523585 +390.565976 +390.624451 +390.663479 +390.728347 +390.773335 +390.823019 +390.922786 +390.977431 +391.035640 +391.088820 +391.134074 +391.192183 +391.225549 +391.276066 +391.306801 +391.416925 +391.521420 +391.580860 +391.632342 +391.670571 +391.705536 +391.772435 +391.824616 +391.870737 +391.931876 +391.978129 +392.043064 +392.095312 +392.127946 +392.181359 +392.221985 +392.267307 +392.372335 +392.466907 +392.531043 +392.605668 +392.776930 +392.817589 +392.865275 +392.900839 +392.957716 +393.054252 +393.100273 +393.128411 +393.184122 +393.287452 +393.361645 +393.420019 +393.530742 +393.573666 +393.593046 +393.641265 +393.700905 +393.739033 +393.777928 +393.825480 +393.868104 +393.986852 +394.098141 +394.155317 +394.210528 +394.267638 +394.310961 +394.361577 +394.405400 +394.444294 +394.490315 +394.524247 +394.558813 +394.609629 +394.643029 +394.687984 +394.727011 +394.775896 +394.836135 +394.918919 +394.970701 +395.009995 +395.060244 +395.099005 +395.135935 +395.170634 +395.220284 +395.251519 +395.290281 +395.378959 +395.465805 +395.514323 +395.569734 +395.625745 +395.668236 +395.717153 +395.738765 +395.817686 +395.856281 +395.902035 +395.936234 +395.975994 +396.006930 +396.036700 +396.080257 +396.127642 +396.171199 +396.214023 +396.254782 +396.293210 +396.335168 +396.375827 +396.469167 +396.509960 +396.540363 +396.602401 +396.825511 +396.864272 +396.891345 +396.935734 +396.981221 +397.033303 +397.076559 +397.122180 +397.154748 +397.206263 +397.251218 +397.289113 +397.328241 +397.379822 +397.459975 +397.471764 +397.513921 +397.559642 +397.602699 +397.632370 +397.675060 +397.711524 +397.770764 +397.817185 +397.867168 +397.913222 +397.949885 +398.003964 +398.139795 +398.226841 +398.269665 +398.320048 +398.365036 +398.402698 +398.442559 +398.445789 +398.487047 +398.524576 +398.573860 +398.612056 +398.648086 +398.711556 +398.752881 +398.800134 +398.846288 +398.937696 +398.967966 +399.004896 +399.032368 +399.068332 +399.085648 +399.115385 +399.158875 +399.192042 +399.290210 +399.334765 +399.380953 +399.419114 +399.466167 +399.502897 +399.553413 +399.648285 +399.689311 +399.723410 +399.811022 +399.858175 +399.885980 +399.963936 +400.004895 +400.054978 +400.104562 +400.145254 +400.179986 +400.236163 +400.289377 +400.329803 +400.369530 +400.404994 +400.441025 +400.488777 +400.528437 +400.567232 +400.609090 +400.713918 +400.822243 +400.871727 +400.911720 +400.954810 +400.984614 +401.052879 +401.087511 +401.124241 +401.145120 +401.191840 +401.261370 +401.309322 +401.354277 +401.403728 +401.440158 +401.478120 +401.570194 +401.618113 +401.672226 +401.717747 +401.765998 +401.802995 +401.840058 +401.891573 +401.945552 +402.036195 +402.079551 +402.130600 +402.177986 +402.217646 +402.253211 +402.351279 +402.402628 +402.443720 +402.477952 +402.535528 +402.581349 +402.625638 +402.666797 +402.707489 +402.763733 +402.806457 +402.848581 +402.902294 +402.936360 +402.970093 +403.017712 +403.046883 +403.103060 +403.141488 +403.173323 +403.262933 +403.298598 +403.350246 +403.399430 +403.440089 +403.474855 +403.528801 +403.575987 +403.617478 +403.660735 +403.703492 +403.770892 +403.826769 +403.879882 +403.938091 +403.982813 +404.037858 +404.111118 +404.162966 +404.198896 +404.252909 +404.351577 +404.450977 +404.526036 +404.557038 +404.609452 +404.647514 +404.711783 +404.759668 +404.807487 +404.838157 +404.880647 +404.918210 +404.965662 +405.000128 +405.031963 +405.062132 +405.113614 +405.165296 +405.230331 +405.271023 +405.322372 +405.364696 +405.439255 +405.490204 +405.494966 +405.543917 +405.583044 +405.627067 +405.664496 +405.715945 +405.755538 +405.855105 +405.908585 +405.972321 +406.030197 +406.072687 +406.124336 +406.165694 +406.210117 +406.246880 +406.294998 +406.342451 +406.382710 +406.529563 +406.577948 +406.589570 +406.618807 +406.656936 +406.834625 +406.872487 +406.906786 +406.950609 +406.978747 +407.020672 +407.062397 +407.110282 +407.142317 +407.167791 +407.213512 +407.263662 +407.288704 +407.326333 +407.367891 +407.428397 +407.520338 +407.552473 +407.589336 +407.700192 +407.754804 +407.790701 +407.850208 +407.912879 +407.996062 +408.047211 +408.152472 +408.197061 +408.258166 +408.306918 +408.333791 +408.380844 +408.429262 +408.486072 +408.519172 +408.564826 +408.607517 +408.653171 +408.690034 +408.730294 +408.762661 +408.787770 +408.815808 +408.862129 +408.895861 +408.940717 +408.987337 +409.012012 +409.031026 +409.080843 +409.141582 +409.181109 +409.226164 +409.266357 +409.372018 +409.405951 +409.441449 +409.480110 +409.513810 +409.550340 +409.579544 +409.608248 +409.649973 +409.708748 +409.741348 +409.791898 +409.847109 +409.895294 +409.928927 +409.964558 +409.988767 +410.042614 +410.111345 +410.155867 +410.242447 +410.292930 +410.312743 +410.337751 +410.371784 +410.410012 +410.445710 +410.482340 +410.565490 +410.628760 +410.656099 +410.694328 +410.745310 +410.795194 +410.835520 +410.878410 +410.930192 +410.995660 +411.031723 +411.081940 +411.130891 +411.166189 +411.202319 +411.234121 +411.263891 +411.299722 +411.353635 +411.395692 +411.436518 +411.491730 +411.526628 +411.550671 +411.587634 +411.625429 +411.648673 +411.700154 +411.744077 +411.783637 +411.829325 +411.859961 +411.889931 +411.938649 +411.994293 +412.029758 +412.081672 +412.118036 +412.148139 +412.186601 +412.227793 +412.315838 +412.359661 +412.388698 +412.434752 +412.471882 +412.510310 +412.539980 +412.586467 +412.624329 +412.667586 +412.742011 +412.801086 +412.885534 +412.940679 +412.983869 +413.016137 +413.050103 +413.087366 +413.133886 +413.163789 +413.210742 +413.257495 +413.303982 +413.339314 +413.444808 +413.481804 +413.517602 +413.615870 +413.643010 +413.692194 +413.740445 +413.786000 +413.825793 +413.880405 +413.933319 +413.999386 +414.039146 +414.109276 +414.147471 +414.199219 +414.254631 +414.356562 +414.410908 +414.449735 +414.491061 +414.537214 +414.577174 +414.621697 +414.674710 +414.762789 +414.814270 +414.983934 +415.020298 +415.052798 +415.095089 +415.125725 +415.188529 +415.259192 +415.307011 +415.358426 +415.516567 +415.556095 +415.609275 +415.664453 +415.711972 +415.755495 +415.778139 +415.825858 +415.869214 +415.924126 +415.978905 +416.029754 +416.065551 +416.099184 +416.198318 +416.240376 +416.309407 +416.362720 +416.433883 +416.542507 +416.582800 +416.621062 +416.654662 +416.710506 +416.762121 +416.840775 +416.885564 +416.934248 +416.994388 +417.040975 +417.172077 +417.219030 +417.262986 +417.295653 +417.342773 +417.404578 +417.451997 +417.503179 +417.614001 +417.650531 +417.703612 +417.814367 +417.879069 +417.923025 +417.979236 +418.020461 +418.058490 +418.141540 +418.183231 +418.228719 +418.277337 +418.346401 +418.454860 +418.497683 +418.567280 +418.626188 +418.665582 +418.712002 +418.780267 +418.817297 +418.851762 +418.893820 +418.946001 +419.023257 +419.075938 +419.109937 +419.161785 +419.199148 +419.287193 +419.340973 +419.392021 +419.441572 +419.480167 +419.527453 +419.581765 +419.632281 +419.665315 +419.712934 +419.781765 +419.819127 +419.863683 +419.905707 +419.949164 +419.986993 +420.019560 +420.035777 +420.080699 +420.123156 +420.184861 +420.236043 +420.304175 +420.359153 +420.395217 +420.445067 +420.564814 +420.608737 +420.643469 +420.677202 +420.716096 +420.768011 +420.820358 +420.862483 +420.923588 +420.971440 +421.011001 +421.054091 +421.151993 +421.216229 +421.263282 +421.371706 +421.416129 +421.465246 +421.511999 +421.562416 +421.608869 +421.652525 +421.694483 +421.748829 +421.842535 +421.886291 +421.918559 +421.962548 +422.015728 +422.080464 +422.135142 +422.173737 +422.226584 +422.312065 +422.344300 +422.378332 +422.408635 +422.492718 +422.508968 +422.549261 +422.601842 +422.654822 +422.690986 +422.765578 +422.858951 +422.896147 +422.931678 +422.970106 +423.018691 +423.050992 +423.095781 +423.181628 +423.240969 +423.290819 +423.331078 +423.366110 +423.407069 +423.456520 +423.501508 +423.547695 +423.594315 +423.653989 +423.704704 +423.827415 +423.873868 +423.902506 +423.944231 +423.991950 +424.027182 +424.061281 +424.112696 +424.157318 +424.193449 +424.233042 +424.285756 +424.372669 +424.409233 +424.453655 +424.486289 +424.537404 +424.566708 +424.607501 +424.653222 +424.694880 +424.741067 +424.766109 +424.804970 +424.851556 +424.904037 +424.960814 +425.045196 +425.137603 +425.181626 +425.206934 +425.248026 +425.289784 +425.333840 +425.378629 +425.464776 +425.503104 +425.564876 +425.601839 +425.650890 +425.709198 +425.768039 +425.804602 +425.851322 +425.900939 +425.971036 +426.023317 +426.063077 +426.123117 +426.158115 +426.193247 +426.232308 +426.271835 +426.332374 +426.366540 +426.392081 +426.437003 +426.480726 +426.564175 +426.603802 +426.653253 +426.696143 +426.717589 +426.801038 +426.843263 +426.934471 +426.978328 +427.028877 +427.094811 +427.132939 +427.192313 +427.230242 +427.294411 +427.331274 +427.363076 +427.408097 +427.421517 +427.454584 +427.511660 +427.546392 +427.580991 +427.609596 +427.659546 +427.694111 +427.746525 +427.787451 +427.820784 +427.856315 +427.889915 +427.924747 +428.069469 +428.113425 +428.162176 +428.272765 +428.322482 +428.371333 +428.458246 +428.513158 +428.548889 +428.592279 +428.681889 +428.720550 +428.816288 +428.882022 +428.961343 +429.056447 +429.107629 +429.139597 +429.190213 +429.234669 +429.269401 +429.318285 +429.357513 +429.378259 +429.413157 +429.455681 +429.496440 +429.571165 +429.617086 +429.673929 +429.708328 +429.751651 +429.789547 +429.833103 +429.886417 +429.928741 +429.975128 +430.024445 +430.058844 +430.095807 +430.133802 +430.169833 +430.210093 +430.274029 +430.342127 +430.387382 +430.443159 +430.487748 +430.523013 +430.563972 +430.636432 +430.680988 +430.721181 +430.757545 +430.759376 +430.838064 +430.855313 +430.913389 +430.958943 +431.001001 +431.042593 +431.089945 +431.117917 +431.163538 +431.193841 +431.245723 +431.297937 +431.433934 +431.477690 +431.520048 +431.562772 +431.680221 +431.719049 +431.759641 +431.803897 +431.852482 +431.890211 +431.970930 +432.042092 +432.074426 +432.134766 +432.153780 +432.190976 +432.226108 +432.274626 +432.310523 +432.361905 +432.409924 +432.457077 +432.487013 +432.531302 +432.592841 +432.642624 +432.677323 +432.732834 +432.770330 +432.793373 +432.842424 +432.873293 +432.933300 +432.973693 +433.008125 +433.083716 +433.132867 +433.159673 +433.187412 +433.223276 +433.286080 +433.338927 +433.367532 +433.458574 +433.484282 +433.521511 +433.577722 +433.613086 +433.654511 +433.767132 +433.807758 +433.863003 +433.889643 +433.939726 +433.988377 +434.072926 +434.115683 +434.166099 +434.201098 +434.282683 +434.328004 +434.367631 +434.414850 +434.464201 +434.487611 +434.554977 +434.604660 +434.647750 +434.689642 +434.800930 +434.826039 +434.865366 +434.899299 +434.944487 +434.975922 +435.031866 +435.081749 +435.125406 +435.214250 +435.239958 +435.286777 +435.326005 +435.372059 +435.409022 +435.447949 +435.522941 +435.551346 +435.575888 +435.639391 +435.683614 +435.760070 +435.800630 +435.851179 +435.913983 +435.932198 +435.991872 +436.080383 +436.129534 +436.180050 +436.239257 +436.286876 +436.318278 +436.434928 +436.486909 +436.529300 +436.567063 +436.595001 +436.643053 +436.678118 +436.711018 +436.744219 +436.807056 +436.870659 +436.921108 +436.957172 +437.005457 +437.035760 +437.058571 +437.111351 +437.163932 +437.215014 +437.245417 +437.270625 +437.318311 +437.345417 +437.394434 +437.429200 +437.493369 +437.544218 +437.598996 +437.642153 +437.684311 +437.747781 +437.865596 +437.915413 +437.959236 +437.997098 +438.033361 +438.099262 +438.153541 +438.198097 +438.233827 +438.264563 +438.299495 +438.344350 +438.397797 +438.430431 +438.473920 +438.504956 +438.555872 +438.583777 +438.630231 +438.666494 +438.719741 +438.751276 +438.800061 +438.844416 +438.881779 +438.914812 +438.959368 +439.004123 +439.052774 +439.089038 +439.126600 +439.157969 +439.187306 +439.243916 +439.307053 +439.360400 +439.422970 +439.474352 +439.518741 +439.554905 +439.600459 +439.625534 +439.668192 +439.761798 +439.808018 +439.863696 +439.904455 +439.920905 +439.995131 +440.066793 +440.115710 +440.160699 +440.206286 +440.252607 +440.289936 +440.337788 +440.385207 +440.428131 +440.479813 +440.528963 +440.610615 +440.640185 +440.697162 +440.755903 +440.783742 +440.822470 +440.862529 +440.904687 +440.953605 +441.018040 +441.047278 +441.098860 +441.192066 +441.236821 +441.283808 +441.348909 +441.404687 +441.447877 +441.518373 +441.578479 +441.609815 +441.683774 +441.727430 +441.819272 +441.870421 +441.919405 +441.958432 +442.045645 +442.083441 +442.124266 +442.194463 +442.233923 +442.277546 +442.301522 +442.353637 +442.406650 +442.475981 +442.507150 +442.528762 +442.602887 +442.648408 +442.679944 +442.729361 +442.779111 +442.836154 +442.894196 +442.942081 +442.995295 +443.109447 +443.147575 +443.192297 +443.237619 +443.293829 +443.340815 +443.382174 +443.415041 +443.460695 +443.499856 +443.535953 +443.578111 +443.629593 +443.677545 +443.776912 +443.826662 +443.868321 +443.902586 +443.953003 +443.991431 +444.029726 +444.063592 +444.104617 +444.214907 +444.278011 +444.343312 +444.397957 +444.460694 +444.513741 +444.557797 +444.615939 +444.666921 +444.708746 +444.746841 +444.786901 +444.825429 +444.865556 +444.894160 +444.948906 +445.022066 +445.087600 +445.134320 +445.189365 +445.232622 +445.299921 +445.339448 +445.366721 +445.490597 +445.542645 +445.595458 +445.637416 +445.689098 +445.738815 +445.784003 +445.816104 +445.856797 +445.961226 +446.019767 +446.049471 +446.152701 +446.220699 +446.275111 +446.317636 +446.351169 +446.384735 +446.434752 +446.470150 +446.521798 +446.581904 +446.730722 +446.766719 +446.823529 +446.870083 +446.913539 +446.963722 +447.028158 +447.074478 +447.166519 +447.222197 +447.271314 +447.319066 +447.386899 +447.424994 +447.481903 +447.513239 +447.567817 +447.610009 +447.677707 +447.727158 +447.772812 +447.830588 +447.890395 +447.946505 +447.994590 +448.060724 +448.119132 +448.151866 +448.194424 +448.233052 +448.274810 +448.312272 +448.342542 +448.390494 +448.490461 +448.542908 +448.574343 +448.612438 +448.659258 +448.705778 +448.760990 +448.807643 +448.831885 +448.887297 +448.953530 +449.027290 +449.065818 +449.112571 +449.166384 +449.263220 +449.321096 +449.372977 +449.429421 +449.472944 +449.517799 +449.560256 +449.600283 +449.641442 +449.672944 +449.735847 +449.781701 +449.823593 +449.891225 +449.901248 +449.937812 +449.991724 +450.039943 +450.080569 +450.109340 +450.147702 +450.188161 +450.228288 +450.265717 +450.298917 +450.329087 +450.380968 +450.425990 +450.472776 +450.522027 +450.587461 +450.634481 +450.667048 +450.712103 +450.736745 +450.800648 +450.829952 +450.880202 +450.974341 +451.026289 +451.081534 +451.144237 +451.208273 +451.289425 +451.413868 +451.458623 +451.509772 +451.571843 +451.618696 +451.679002 +451.747600 +451.796551 +451.841373 +451.936145 +451.993154 +452.050897 +452.148865 +452.216331 +452.273707 +452.353294 +452.395651 +452.426687 +452.472541 +452.608672 +452.669810 +452.712201 +452.753593 +452.868212 +452.917596 +452.944535 +452.973640 +453.032647 +453.082164 +453.124655 +453.175804 +453.237875 +453.287559 +453.351894 +453.394685 +453.450995 +453.526819 +453.588358 +453.632380 +453.696549 +453.752993 +453.816562 +453.887725 +454.009170 +454.065613 +454.139373 +454.182962 +454.218127 +454.252626 +454.306505 +454.345733 +454.401710 +454.450628 +454.503242 +454.570807 +454.624054 +454.655190 +454.693751 +454.766412 +454.822988 +454.871506 +454.937141 +454.998746 +455.056788 +455.158219 +455.200111 +455.236807 +455.290054 +455.339638 +455.422255 +455.483094 +455.518426 +455.614063 +455.655988 +455.712531 +455.765445 +455.828548 +455.872072 +455.959850 +455.995115 +456.018458 +456.050060 +456.105638 +456.151825 +456.186457 +456.243000 +456.273536 +456.332710 +456.375867 +456.433310 +456.484958 +456.582860 +456.680929 +456.736540 +456.772204 +456.831211 +456.878065 +456.914395 +456.947728 +457.026116 +457.091884 +457.156985 +457.185690 +457.241501 +457.285790 +457.312530 +457.348927 +457.437305 +457.480894 +457.584890 +457.691317 +457.746862 +457.828180 +457.871104 +457.907234 +457.967674 +458.014760 +458.063278 +458.125383 +458.189352 +458.265243 +458.355086 +458.417557 +458.513594 +458.560314 +458.602905 +458.651156 +458.700440 +458.756018 +458.829145 +458.911096 +458.956684 +459.011562 +459.088752 +459.127380 +459.219920 +459.293014 +459.329377 +459.367639 +459.403270 +459.586420 +459.643063 +459.715891 +459.762511 +459.822650 +459.885254 +459.951288 +460.012660 +460.053719 +460.093579 +460.120286 +460.171335 +460.227678 +460.279093 +460.303802 +460.351088 +460.400239 +460.438168 +460.481624 +460.486919 +460.540598 +460.595344 +460.675497 +460.750755 +460.856149 +460.927877 +460.995643 +461.065107 +461.113458 +461.173931 +461.281357 +461.317820 +461.421317 +461.487051 +461.521550 +461.587584 +461.630974 +461.705432 +461.787317 +461.846025 +462.018086 +462.115156 +462.156381 +462.234669 +462.362774 +462.411159 +462.453184 +462.508828 +462.539697 +462.586351 +462.620483 +462.662241 +462.750786 +462.823879 +462.962274 +463.017486 +463.089014 +463.145757 +463.228175 +463.298305 +463.356313 +463.427975 +463.490779 +463.543992 +463.584518 +463.603133 +463.621581 +463.653915 +463.684984 +463.721747 +463.755713 +463.779190 +463.821581 +463.859609 +463.868734 +463.897705 +463.935866 +463.975427 +464.020282 +464.143891 +464.193009 +464.236366 +464.293808 +464.357544 +464.404431 +464.446755 +464.513388 +464.580155 +464.626808 +464.700268 +464.787947 +464.877124 +464.951983 +465.051816 +465.146321 +465.206861 +465.263904 +465.319182 +465.383417 +465.430470 +465.526041 +465.589811 +465.635731 +465.692974 +465.736997 +465.789344 +465.825109 +465.872494 +465.924209 +465.965734 +466.017349 +466.070996 +466.183150 +466.331568 +466.397269 +466.468997 +466.536963 +466.650915 +466.692707 +466.739726 +466.785081 +466.837762 +466.887911 +466.929403 +466.970229 +466.996036 +467.032234 +467.068630 +467.175923 +467.306659 +467.371194 +467.436129 +467.512619 +467.577854 +467.619745 +467.671993 +467.756409 +467.805460 +467.853145 +467.907890 +468.159039 +468.216215 +468.287510 +468.350747 +468.490174 +468.538692 +468.565798 +468.597833 +468.682282 +468.713750 +468.742388 +468.816214 +468.846784 +468.905891 +468.936294 +468.951313 +469.006857 +469.041322 +469.074090 +469.186111 +469.248215 +469.359371 +469.419078 +469.455708 +469.495734 +469.553510 +469.583513 +469.664232 +469.712717 +469.772990 +469.806656 +469.859071 +469.898365 +469.934528 +469.974755 +470.026669 +470.092837 +470.192037 +470.295034 +470.402060 +470.450712 +470.537458 +470.580948 +470.620009 +470.672823 +470.711451 +470.779516 +470.852809 +470.918610 +470.978883 +471.036425 +471.115446 +471.143785 +471.197398 +471.254141 +471.362865 +471.487341 +471.570957 +471.670990 +471.726468 +471.805755 +471.867860 +471.901626 +471.961599 +472.013914 +472.057004 +472.131762 +472.210117 +472.340720 +472.432095 +472.510783 +472.645282 +472.784675 +472.854339 +472.916610 +472.983010 +473.018441 +473.067759 +473.109550 +473.158701 +473.211082 +473.267725 +473.320672 +473.376050 +473.440252 +473.503456 +473.573086 +473.649510 +473.741817 +473.844548 +473.977948 +474.089369 +474.155270 +474.226632 +474.367524 +474.439386 +474.493998 +474.548443 +474.644281 +474.714976 +474.762196 +474.813445 +474.877714 +474.993831 +475.112978 +475.175848 +475.256201 +475.356801 +475.540250 +475.610813 +475.647676 +475.729128 +475.877646 +475.949974 +476.070353 +476.137885 +476.228461 +476.292131 +476.345578 +476.410279 +476.479976 +476.596393 +476.691731 +476.801455 +476.895127 +476.991731 +477.048307 +477.111244 +477.196393 +477.248607 +477.298324 +477.349706 +477.394228 +477.445144 +477.508913 +477.571650 +477.627694 +477.691630 +477.788100 +477.862759 +477.939415 +478.095726 +478.141780 +478.231390 +478.334820 +478.441679 +478.582971 +478.708079 +478.818269 +478.875545 +478.946574 +479.021799 +479.075212 +479.116437 +479.218668 +479.292961 +479.366887 +479.420167 +479.512574 +479.628391 +479.706147 +479.764988 +479.852767 +479.983136 +480.078141 +480.143376 +480.248571 +480.299420 +480.517501 +480.585067 +480.716702 +480.767651 +480.813738 +480.880272 +480.954431 +481.297221 +481.347770 +481.525293 +481.621230 +481.735582 +481.943074 +481.979005 +482.020930 +482.044007 +482.075642 +482.085032 +482.173477 +482.211805 +482.241442 +482.308242 +482.362588 +482.419531 +482.493956 +482.557992 +482.637013 +482.707642 +482.772777 +482.816500 +482.923893 +483.027089 +483.109007 +483.205944 +483.579103 +483.668814 +483.718364 +483.786729 +483.927854 +484.010905 +484.078703 +484.166449 +484.222526 +484.304211 +484.379369 +484.455559 +484.601347 +484.674241 +484.719562 +484.864384 +484.946168 +485.078269 +485.176804 +485.324523 +485.458655 +485.498615 +485.586028 +485.668312 +485.737676 +485.816730 +485.899514 +486.000580 +486.074339 +486.147566 +486.227819 +486.293553 +486.363649 +486.599613 +486.727852 +486.802210 +486.867012 +486.935377 +486.971041 +487.019493 +487.104341 +487.187158 +487.270109 +487.321324 +487.424221 +487.497748 +487.546366 +487.647398 +487.689556 +487.742103 +487.797481 +487.844367 +487.937907 +488.002276 +488.073305 +488.160784 +488.253558 +488.323921 +488.413831 +488.531246 +488.609002 +488.794450 +488.908502 +488.943267 +488.980830 +489.016094 +489.073137 +489.110000 +489.147396 +489.198545 +489.263480 +489.301875 +489.393517 +489.510533 +489.580962 +489.759084 +489.888321 +489.970472 +490.093283 +490.162780 +490.270405 +490.376000 +490.468074 +490.483259 +490.535607 +490.739836 +490.782160 +490.888021 +490.965876 +491.058450 +491.150957 +491.297844 +491.355453 +491.432442 +491.549458 +491.593414 +491.712029 +491.803771 +491.836904 +492.001306 +492.375598 +492.475332 +492.537103 +492.641798 +492.721319 +492.861578 +492.937735 +492.989217 +493.071335 +493.126080 +493.158281 +493.199240 +493.252953 +493.432940 +493.701271 +493.794245 +493.962510 +494.037401 +494.145493 +494.182623 +494.313925 +494.379392 +494.473898 +494.605233 +494.698806 +494.791813 +494.828410 +494.906731 +495.133504 +495.435235 +495.488482 +495.581089 +495.641063 +495.705165 +495.799171 +495.880923 +496.168701 +496.346157 +496.541761 +496.631405 +496.864305 +496.980589 +497.082020 +497.169699 +497.271364 +497.343692 +497.388547 +497.449286 +497.563472 +497.630605 +497.658210 +497.718117 +497.788114 +497.912422 +498.074227 +498.173728 +498.206894 +498.290311 +498.367034 +498.419548 +498.474760 +498.504730 +498.565336 +498.627906 +498.731203 +498.787780 +498.944056 +499.145888 +499.319181 +499.391642 +499.442657 +499.508791 +499.566300 +499.618515 +499.716483 +499.837096 +499.945987 +500.005860 +500.090709 +500.218314 +500.415617 +500.488510 +500.529103 +500.657042 +500.720079 +500.822776 +500.896502 +501.003095 +501.134530 +501.173591 +501.232366 +501.374357 +501.541390 +501.632565 +501.725439 +501.820211 +502.019644 +502.069794 +502.131399 +502.232598 +502.375555 +502.486011 +502.599964 +502.667396 +502.707589 +502.762468 +502.846417 +502.941755 +503.090506 +503.138092 +503.197332 +503.413383 +503.591504 +503.780548 +503.836526 +503.907288 +503.992203 +504.067295 +504.166928 +504.261900 +504.312749 +504.375686 +504.440987 +504.505856 +504.757870 +505.066628 +505.143684 +505.191170 +505.208985 +505.294999 +505.427800 +505.487074 +505.665362 +505.827233 +505.948312 +505.967060 +506.177416 +506.258834 +506.327033 +506.440652 +506.578048 +506.775917 +506.846579 +506.950742 +506.961997 +507.024501 +507.081844 +507.165160 +507.247278 +507.311714 +507.364794 +507.420105 +507.459699 +507.543115 +507.642116 +507.800924 +507.851340 +508.009615 +508.074350 +508.175449 +508.309182 +508.353438 +508.489501 +508.541949 +508.877513 +509.238085 +509.570986 +509.655235 +509.768188 +509.825531 +509.896826 +509.932757 +510.048607 +510.162760 +510.244978 +510.515074 +510.713742 +510.786502 +511.267154 +511.400155 +511.575612 +511.614607 +511.689665 +511.773781 +511.839248 +511.890131 +511.939781 +512.001886 +512.138316 +512.258529 +512.366654 +512.417969 +512.531755 +512.681039 +512.707912 +512.739048 +512.808278 +512.847073 +512.895491 +512.946540 +513.063523 +513.163822 +513.275810 +513.444608 +513.656363 +513.802183 +513.903415 +514.006113 +514.024994 +514.084001 +514.126592 +514.170648 +514.308843 +514.425060 +514.457095 +514.531853 +514.569515 +514.737081 +514.762855 +514.958126 +515.419864 +515.492358 +515.535981 +515.583567 +515.624992 +515.722395 +515.778272 +515.885498 +516.015268 +516.110440 +516.258325 +516.419131 +516.534448 +516.591691 +516.631951 +516.667815 +516.703213 +516.749999 +516.784565 +516.836946 +516.914102 +516.961221 +517.065717 +517.534747 +517.629652 +517.723225 +517.805609 +517.878237 +517.940075 +518.063584 +518.143138 +518.325156 +518.442772 +518.563318 +518.658023 +518.725289 +518.858788 +518.909205 +519.001679 +519.145302 +519.209338 +519.263650 +519.366680 +519.626653 +519.821725 +519.905674 +520.001345 +520.075271 +520.205341 +520.258354 +520.315830 +520.381398 +520.488724 +520.614431 +520.801810 +520.970275 +521.059053 +521.133678 +521.183062 +521.370408 +521.484560 +521.553724 +521.609701 +521.673471 +521.768975 +521.978632 +522.068342 +522.131979 +522.215761 +522.273570 +522.402941 +522.512631 +522.587256 +522.637339 +523.064512 +523.091785 +523.258218 +523.306536 +523.379996 +523.458184 +523.537805 +523.590685 +523.735307 +523.921354 +523.987754 +524.112563 +524.290018 +524.425117 +524.635006 +524.776398 +524.871170 +525.022119 +525.063844 +525.100307 +525.151723 +525.283191 +525.370504 +525.591382 +526.093713 +526.220353 +526.276097 +526.399174 +526.463343 +526.494445 +526.561278 +526.607132 +526.909796 +526.989150 +527.073366 +527.167904 +527.237401 +527.955083 +528.037068 +528.148589 +528.197008 +528.317820 +528.371899 +528.449788 +529.628175 +529.685617 +529.787449 +529.889314 +530.247622 +530.886182 +530.932802 +530.968000 +531.045856 +531.171597 +531.429738 +531.654380 +531.896671 +532.445022 +532.506261 +532.592974 +532.899933 +533.650282 +533.681085 +533.718714 +533.977088 +534.104428 +534.776755 +535.001796 +535.065299 +535.108056 +535.194004 +535.281349 +535.330234 +536.207422 +536.512717 +536.566230 +536.624805 +536.775987 +537.038291 +537.240688 +537.410951 +537.473322 +537.785842 +538.150711 +538.225802 +538.283811 +538.521106 +538.600860 +538.787140 +538.857070 +539.355238 +539.632361 +539.731628 +540.297994 +540.543549 +540.564494 +540.748177 +540.844714 +541.009582 +541.171021 +541.329196 +541.593731 +541.979145 +542.065492 +542.102022 +542.162861 +542.233457 +542.303587 +542.469454 +542.555401 +542.745644 +542.853570 +543.411678 +543.474049 +543.607781 +543.684704 +543.756632 +543.860662 +544.030125 +544.812142 +544.973614 +545.320101 +545.523364 +545.620666 +545.684569 +546.709510 +546.792094 +546.870149 +547.077408 +547.148637 +547.264921 +547.709842 +548.439844 +549.077639 +549.237046 +549.358092 +549.438778 +549.562487 +549.783599 +550.488494 +550.608340 +550.802313 +551.131417 +552.532648 +552.634379 +552.755225 +552.912667 +553.027153 +553.133613 +553.377402 +553.579766 +553.717728 +553.788590 +554.026685 +554.191953 +554.411500 +554.519792 +555.321289 +555.402841 +555.438539 +555.593517 +555.719291 +555.846763 +556.140469 +557.064944 +557.203339 +557.275500 +557.374468 +557.764710 +558.021487 +558.111197 +558.234773 +558.456618 +558.612362 +558.746128 +558.838169 +559.005502 +559.241232 +559.829577 +559.883423 +560.009596 +560.133006 +560.209197 +560.405633 +560.977694 +561.150688 +561.222549 +561.412392 +561.597274 +562.242694 +562.319185 +562.529674 +562.807929 +563.366569 +563.549919 +563.914521 +564.018151 +564.268933 +565.436864 +565.496604 +565.552248 +565.663670 +565.904662 +566.267599 +566.939393 +567.284215 +567.381217 +567.452380 +567.562336 +567.640658 +567.745486 +567.896035 +567.960771 +568.073891 +568.168729 +568.580617 +569.244586 +569.308555 +569.385211 +569.468495 +569.544219 +569.682714 +569.884978 +571.796931 +571.975319 +572.635991 +573.593732 +573.711514 +574.232759 +574.585972 +574.664527 +575.716507 +575.874782 +576.464458 +577.266722 +577.873681 +578.377876 +578.997023 +579.050836 +579.153866 +579.340047 +579.440846 +579.639114 +579.751701 +579.924562 +580.031421 +580.608976 +580.699486 +580.739446 +580.796422 +581.001317 +581.190861 +581.768349 +581.869148 +581.978506 +582.066418 +582.163154 +582.236447 +582.272811 +582.314436 +582.487762 +582.759690 +583.029520 +583.087196 +583.934481 +584.161887 +584.289759 +584.317864 +584.435946 +584.911936 +585.694719 +585.819061 +586.045601 +586.350929 +586.501345 +587.268111 +587.707038 +587.760751 +587.836675 +587.993218 +588.070774 +588.257354 +588.327017 +588.517027 +589.063180 +589.149927 +589.217060 +589.289554 +589.366710 +589.498312 +589.558318 +589.610033 +589.757552 +590.051025 +591.073801 +591.133808 +591.308666 +591.456784 +591.580993 +591.656152 +591.788686 +591.957117 +592.206567 +592.401306 +592.708665 +592.849324 +592.900206 +592.978994 +593.020286 +593.076996 +593.151854 +593.278294 +593.352354 +593.442130 +593.514558 +593.616123 +593.687951 +593.854951 +594.313292 +594.397574 +594.571999 +594.637900 +594.765173 +595.351053 +595.670467 +595.745691 +595.860843 +596.032471 +596.140196 +596.420516 +596.654282 +596.983252 +597.021481 +597.119882 +597.214954 +597.454048 +597.646122 +597.749053 +598.722611 +598.784483 +599.007759 +599.301832 +599.392075 +599.470796 +599.502098 +599.645954 +599.857642 +600.364634 +600.444887 +600.765466 +600.867098 +601.128769 +601.267131 +601.280651 +601.362935 +601.436761 +601.570794 +601.634596 +601.722209 +601.774723 +601.878919 +601.908322 +601.921909 +602.034296 +602.431366 +602.603127 +602.655907 +602.736294 +602.868761 +602.910952 +602.986843 +603.065897 +603.153643 +603.381914 +603.492770 +603.583213 +603.712550 +603.845983 +603.915114 +603.958803 +604.055407 +604.099462 +604.118910 +604.174621 +604.240388 +604.306622 +604.337224 +604.362266 +604.388173 +604.524337 +604.662299 +604.836092 +605.209252 +605.294932 +605.333094 +605.433993 +605.588905 +605.795065 +605.943517 +606.517342 +606.579746 +606.759433 +606.879047 +606.968191 +607.153838 +607.236322 +607.453905 +607.670721 +608.024101 +608.156035 +608.210281 +608.391599 +608.547044 +608.636254 +608.813077 +608.985571 +609.332491 +609.509380 +609.655135 +609.802753 +609.933523 +610.001421 +610.088667 +610.372050 +610.613941 +610.934454 +611.282705 +611.722132 +611.842212 +611.927260 +611.993660 +612.107779 +612.190696 +612.199155 +612.397323 +612.836284 +612.970283 +613.148371 +613.570382 +613.830721 +614.491793 +614.620897 +614.733884 +614.816901 +615.092725 +615.536481 +615.636847 +615.718132 +615.807709 +615.848935 +615.904146 +615.966250 +616.063786 +616.310306 +616.378271 +616.447269 +616.520562 +616.590159 +616.699716 +616.921494 +617.066616 +617.317198 +617.467414 +617.513035 +617.554660 +617.705243 +617.844037 +617.879602 +617.967514 +618.008839 +618.389858 +618.564017 +618.711636 +618.740507 +618.786427 +618.833747 +618.932315 +619.080966 +619.179667 +619.219128 +619.306374 +619.411968 +619.561318 +619.642471 +619.696017 +619.802377 +619.862350 +619.964082 +620.290955 +620.350129 +620.427651 +620.640139 +620.808470 +621.533045 +621.604706 +621.668443 +621.688789 +621.811300 +622.123887 +622.606137 +622.752025 +623.627715 +624.416026 +624.516425 +624.596678 +624.745995 +624.877930 +624.954320 +625.196811 +625.513627 +625.629278 +626.110563 +626.193646 +626.273133 +626.361112 +626.393313 +626.621851 +626.774332 +626.829110 +627.039832 +627.576961 +627.738966 +627.742363 +627.969668 +628.054150 +628.192645 +628.277494 +628.382688 +628.436801 +628.489348 +628.555349 +628.612225 +628.676194 +628.812058 +628.927177 +629.024612 +630.024245 +630.093109 +630.193942 +630.248054 +630.350752 +630.429306 +630.716119 +631.149918 +631.343025 +631.461706 +631.512955 +631.618616 +632.555411 +632.667366 +632.835165 +632.984082 +633.175724 +633.230003 +633.322377 +633.411921 +633.560039 +633.656709 +633.762403 +633.912187 +633.958940 +634.030402 +634.212086 +634.306625 +634.471860 +634.519645 +634.568763 +634.620577 +634.682649 +634.788842 +634.927603 +635.027137 +635.210487 +635.306158 +635.444686 +635.548582 +635.651512 +635.715049 +635.773790 +635.822874 +635.956274 +636.013716 +636.085944 +636.171492 +636.874754 +636.971857 +637.029699 +637.100895 +637.170558 +637.226269 +637.322240 +637.417877 +637.469925 +637.663165 +638.304223 +638.350544 +638.549245 +638.618675 +638.668825 +638.792435 +638.929131 +639.248478 +639.837489 +639.887072 +639.932260 +639.972587 +640.039586 +640.153273 +640.314744 +640.443482 +640.503289 +640.730428 +640.826765 +641.016742 +641.078680 +641.216075 +641.644979 +641.822269 +642.100190 +642.407449 +642.510180 +642.633323 +642.745777 +643.295227 +643.369919 +643.730858 +643.848607 +644.207947 +644.329592 +644.549272 +644.673281 +644.888100 +644.940747 +645.054167 +645.096824 +646.073779 +646.128192 +646.228891 +646.375045 +646.676010 +647.441677 +647.583635 +647.695456 +647.965719 +648.083734 +648.250900 +648.311073 +648.432319 +648.509541 +648.657959 +649.879503 +650.191957 +650.290558 +650.461621 +650.528487 +650.613735 +650.801281 +650.884064 +650.942040 +651.667880 +651.759388 +651.921792 +652.006008 +652.267713 +652.305675 +652.540040 +652.619993 +652.687026 +652.740373 +652.789857 +652.898515 +653.036610 +653.191388 +653.334378 +653.425787 +653.480565 +653.532513 +653.601877 +653.688857 +653.740871 +653.862416 +653.955790 +654.065014 +654.238640 +654.589988 +654.727883 +654.771273 +654.897081 +655.020224 +655.759850 +656.346263 +656.384891 +656.417992 +656.469074 +656.514095 +656.559783 +656.603106 +656.810932 +656.967974 +657.352589 +657.461480 +657.641234 +657.697744 +657.804637 +657.880361 +657.927114 +657.986288 +658.113061 +658.199675 +658.262046 +658.466275 +658.747759 +658.857716 +658.946494 +659.034905 +659.191882 +659.373566 +659.678228 +659.824715 +659.874532 +659.947558 +660.126946 +660.334271 +660.502869 +661.050521 +661.183255 +661.513324 +661.645392 +661.864406 +662.498438 +662.746956 +662.880023 +662.926543 +663.068568 +663.200069 +663.256679 +663.318551 +663.377492 +663.439396 +663.658144 +663.745723 +663.834468 +664.471397 +664.500501 +664.569965 +664.796305 +664.937597 +665.089944 +665.243457 +665.928205 +665.995038 +666.062404 +666.140992 +666.259340 +666.408724 +666.662304 +667.224508 +667.326838 +667.442323 +667.514317 +667.756309 +668.813850 +668.899065 +668.951978 +669.086843 +669.192038 +669.309754 +669.362601 +669.423440 +669.470659 +669.591205 +669.803426 +669.920642 +670.249879 +670.629199 +671.143984 +671.200294 +671.267461 +671.324770 +671.392835 +671.491769 +671.657004 +671.714513 +671.767993 +671.898396 +671.985908 +672.573653 +672.680246 +672.780080 +672.841252 +672.974951 +673.014845 +673.130596 +673.347245 +673.425933 +674.029163 +674.107551 +674.179812 +674.274118 +674.418307 +674.561963 +674.646212 +674.724433 +674.910714 +675.523067 +675.631925 +675.701855 +675.862028 +675.922734 +676.052937 +676.844445 +677.128560 +677.251870 +677.522000 +677.960194 +678.164024 +678.356531 +678.754799 +678.964955 +679.464489 +679.738448 +680.326326 +680.655530 +680.897721 +681.229122 +681.808376 +682.105978 +682.291725 +682.513437 +682.655994 +682.748501 +682.811905 +682.891458 +683.274308 +683.331784 +683.475873 +683.670379 +683.825057 +684.466482 +684.499948 +684.519495 +684.642905 +684.759155 +685.056824 +685.266547 +685.408306 +685.563017 +685.665681 +686.047765 +686.211468 +686.281065 +686.357655 +686.447565 +686.510136 +686.658088 +687.228817 +687.423089 +687.537841 +687.683595 +687.806072 +687.966278 +688.064680 +688.255822 +688.334377 +688.427583 +688.536574 +688.648529 +688.791153 +688.897280 +689.217193 +689.289987 +689.404972 +689.639270 +689.707502 +689.757785 +689.864145 +689.969973 +690.094182 +690.247462 +690.746395 +690.862113 +691.013761 +691.970936 +692.423250 +692.565142 +692.753520 +693.118954 +693.184721 +693.340465 +693.457648 +693.722217 +694.125913 +694.200871 +694.531074 +694.708829 +695.099005 +695.145126 +695.236667 +695.322648 +695.407896 +695.588249 +695.672331 +695.765704 +696.112624 +696.217319 +696.407928 +696.532071 +696.585484 +696.668068 +696.737731 +696.916086 +696.999403 +697.258777 +697.719016 +697.972629 +698.076425 +698.281819 +698.413188 +698.562039 +698.680354 +698.851116 +699.094572 +699.317582 +699.447919 +699.694838 +700.027205 +700.087145 +700.226473 +700.282383 +700.491874 +700.610055 +700.677221 +700.891973 +700.949116 +701.038093 +701.479385 +701.598766 +701.669661 +701.731200 +701.868762 +702.049847 +702.181149 +702.276088 +702.389407 +702.488009 +702.590007 +702.666563 +702.835461 +703.134828 +703.393269 +703.496599 +703.642653 +703.808320 +704.036525 +704.296032 +704.515479 +704.610284 +704.792602 +704.946681 +705.274087 +705.549311 +705.646281 +705.752308 +705.807786 +705.939354 +706.114845 +706.945547 +707.100958 +707.261997 +707.384474 +707.728596 +707.997061 +708.121003 +708.195762 +708.307617 +708.398193 +708.623367 +708.703753 +709.022002 +709.210246 +709.274982 +709.683673 +709.709580 +709.727629 +709.895194 +710.046709 +710.209080 +710.352370 +710.476779 +710.778177 +710.896958 +711.083272 +711.261926 +711.534087 +711.716038 +712.458462 +712.766753 +712.967319 +713.162823 +713.334784 +713.696256 +714.012206 +714.303848 +714.362356 +714.607777 +714.850767 +715.126025 +715.279238 +716.370945 +716.425091 +716.490925 +716.551798 +716.587462 +716.635847 +716.718631 +716.764751 +716.826090 +716.884365 +716.962786 +717.016133 +717.066183 +717.158690 +717.251397 +717.351997 +717.499183 +717.588293 +717.882532 +717.956392 +718.144237 +718.195252 +718.439708 +718.476171 +718.585528 +718.683530 +718.793387 +718.952028 +719.000613 +719.088758 +719.229084 +719.375305 +719.528218 +719.564215 +719.642537 +719.740639 +719.814698 +720.108437 +720.292653 +720.494717 +720.577102 +721.433278 +721.709501 +722.210233 +722.378032 +722.450593 +722.469874 +722.610866 +722.787955 +722.846297 +724.384424 +724.431244 +724.642998 +724.805769 +724.888020 +724.969238 +725.178163 +726.211961 +726.513426 +727.215090 +729.408328 +729.726010 +733.496236 +733.555177 +733.788910 +733.857208 +733.995303 +734.085080 +734.335729 +734.846784 +735.324273 +737.799862 +737.841953 +738.137723 +740.892566 +741.640084 +743.647974 +744.689132 +747.466785 +749.194422 +749.548701 +749.563253 +749.628022 +749.700116 +749.871711 +750.538943 +750.882865 +751.120361 +751.258822 +751.290691 +751.438409 +751.528919 +751.599781 +752.139341 +752.208705 +752.281932 +752.347266 +752.418828 +752.465281 +752.720260 +752.754126 +752.832447 +752.880166 +753.039873 +753.068444 +753.487325 +753.569343 +753.617228 +753.676835 +753.739006 +753.796449 +753.827218 +754.053592 +754.119059 +754.317994 +754.783095 +756.724984 +756.876999 +757.250824 +757.775366 +757.903604 +758.039435 +758.287021 +758.389185 +758.883091 +758.928745 +759.442697 +759.579727 +759.869437 +760.011095 +760.213359 +762.502201 +765.055878 +767.007292 +767.876988 +767.981583 +768.006891 +769.369227 +769.470359 +769.554275 +769.605591 +769.657106 +769.749114 +770.209952 +770.860768 +770.903625 +771.001427 +771.106821 +771.195999 +771.251277 +771.424503 +771.622938 +772.240520 +772.271988 +772.287140 +772.326534 +772.393533 +772.441519 +772.499261 +772.632261 +773.751640 +773.885074 +774.302989 +774.721503 +774.981976 +775.753803 +776.125165 +776.363193 +776.591231 +776.628927 +776.695494 +776.746642 +776.798957 +776.829260 +776.929693 +777.025030 +777.208314 +777.508580 +777.677944 +777.754267 +777.808246 +777.893295 +777.923265 +778.068519 +778.191496 +778.282172 +778.444609 +778.516937 +778.570384 +778.625428 +778.782571 +778.856764 +779.022431 +779.116670 +779.286234 +779.358295 +779.468018 +779.587865 +779.642077 +779.724162 +779.762124 +779.815071 +779.866852 +779.942743 +780.003249 +780.100019 +780.146239 +780.284168 +780.434917 +780.471880 +780.514804 +780.567385 +780.617335 +780.666718 +780.714904 +780.782736 +780.854164 +780.932452 +781.039845 +781.093658 +781.178140 +781.233351 +781.375709 +781.473844 +781.541410 +781.583068 +781.636914 +781.672179 +781.833118 +781.867816 +781.899218 +781.930220 +781.987563 +782.034949 +782.071679 +782.125991 +782.177773 +782.229388 +782.297952 +782.353430 +782.390893 +782.431186 +782.455861 +782.492224 +782.536280 +782.602581 +782.669747 +782.740876 +782.764052 +782.787262 +782.840875 +782.872677 +782.907808 +782.947402 +783.017232 +783.109107 +783.144738 +783.176173 +783.215500 +783.238178 +783.289726 +783.366250 +783.416666 +783.558524 +783.606809 +783.644904 +783.696586 +783.727987 +783.762952 +783.802846 +783.834348 +783.875140 +783.951763 +784.003645 +784.043305 +784.096685 +784.158623 +784.205776 +784.294254 +784.348733 +784.381333 +784.429186 +784.474807 +784.520061 +784.585562 +784.654926 +784.712835 +784.758023 +784.835512 +784.903511 +784.934347 +784.994453 +785.055425 +785.109505 +785.161386 +785.188525 +785.235478 +785.287193 +785.336411 +785.364782 +785.423124 +785.459055 +785.516231 +785.568445 +785.637376 +785.691289 +785.751529 +785.816031 +785.862617 +785.927486 +786.008471 +786.070176 +786.119027 +786.201711 +786.270442 +786.338408 +786.388691 +786.434278 +786.503642 +786.616196 +786.686393 +786.753792 +786.796649 +786.851561 +786.932613 +786.991088 +787.033778 +787.080498 +787.131680 +787.182729 +787.232013 +787.284927 +787.320858 +787.375536 +787.426685 +787.477234 +787.515130 +787.565513 +787.627884 +787.672439 +787.725752 +787.783361 +787.811800 +787.880131 +787.948296 +787.996848 +788.045799 +788.104440 +788.155456 +788.201543 +788.263048 +788.309435 +788.356021 +788.389654 +788.432944 +788.470840 +788.507803 +788.547896 +788.598079 +788.631712 +788.675801 +788.722222 +788.784626 +788.841436 +788.884626 +788.981062 +789.039371 +789.092518 +789.114862 +789.186157 +789.236940 +789.271805 +789.320789 +789.372970 +789.418957 +789.485191 +789.528814 +789.575401 +789.635407 +789.672737 +789.711198 +789.742900 +789.764878 +789.804571 +789.844998 +789.871837 +789.920322 +790.018990 +790.052090 +790.104804 +790.145863 +790.241234 +790.269972 +790.302040 +790.342333 +790.380262 +790.443565 +790.489985 +790.552856 +790.640135 +790.700308 +790.761447 +790.807701 +790.849692 +790.883891 +790.937038 +791.000275 +791.031943 +791.085856 +791.154953 +791.216192 +791.274167 +791.345029 +791.391483 +791.443298 +791.489085 +791.539202 +791.593248 +791.644230 +791.685389 +791.780760 +791.815825 +791.851656 +791.896011 +791.929111 +791.960913 +791.997976 +792.042232 +792.079761 +792.109831 +792.155252 +792.202005 +792.257816 +792.308532 +792.373833 +792.436404 +792.481392 +792.519321 +792.610663 +792.655851 +792.716623 +792.766074 +792.812194 +792.859347 +792.918121 +792.953952 +792.988351 +793.020619 +793.066639 +793.103969 +793.141564 +793.174032 +793.210662 +793.258514 +793.385121 +793.494644 +793.540332 +793.575963 +793.611527 +793.661144 +793.696609 +793.769403 +793.825846 +793.895943 +793.964308 +794.009329 +794.061211 +794.111294 +794.190181 +794.241930 +794.282056 +794.315190 +794.347024 +794.405599 +794.434936 +794.488416 +794.576528 +794.616854 +794.709795 +794.740864 +794.779625 +794.827976 +794.876894 +794.921383 +794.964739 +795.012092 +795.063341 +795.111659 +795.152285 +795.200337 +795.236501 +795.262675 +795.306597 +795.334702 +795.366471 +795.401336 +795.444925 +795.487117 +795.530573 +795.578592 +795.648655 +795.726211 +795.774329 +795.809727 +795.931805 +795.975794 +796.028108 +796.090313 +796.135667 +796.181355 +796.232237 +796.295974 +796.346689 +796.382520 +796.426510 +796.474894 +796.519417 +796.557845 +796.595674 +796.632070 +796.680522 +796.729573 +796.780489 +796.843426 +796.959643 +797.013522 +797.058510 +797.110358 +797.141061 +797.175493 +797.213022 +797.269532 +797.328906 +797.374261 +797.430538 +797.464437 +797.509159 +797.548620 +797.597238 +797.653282 +797.704464 +797.746122 +797.786548 +797.833468 +797.866135 +797.898236 +797.942825 +797.995273 +798.037630 +798.085016 +798.129638 +798.157743 +798.205995 +798.249485 +798.280121 +798.315485 +798.354446 +798.403564 +798.441959 +798.477956 +798.514320 +798.566334 +798.604496 +798.642158 +798.705628 +798.785948 +798.816284 +798.867400 +798.899800 +798.931902 +798.958575 +799.002331 +799.079221 +799.137229 +799.180386 +799.260906 +799.317782 +799.340759 +799.400932 +799.424009 +799.476257 +799.526506 +799.605561 +799.662137 +799.726939 +799.772827 +799.859540 +799.915051 +799.973026 +800.015317 +800.058507 +800.139027 +800.208457 +800.242590 +800.281917 +800.342989 +800.381917 +800.431867 +800.487678 +800.534897 +800.570661 +800.607258 +800.663135 +800.699899 +800.742722 +800.777821 +800.830401 +800.867964 +800.910055 +800.961903 +801.053311 +801.118646 +801.160404 +801.213917 +801.268196 +801.328336 +801.381483 +801.425339 +801.462901 +801.495103 +801.541922 +801.576721 +801.636195 +801.676088 +801.720477 +801.771060 +801.831666 +801.877420 +801.944619 +801.994303 +802.049281 +802.097866 +802.155575 +802.192138 +802.220776 +802.257340 +802.308988 +802.347583 +802.408222 +802.451812 +802.496034 +802.530200 +802.564898 +802.617712 +802.684812 +802.749647 +802.793070 +802.840622 +802.879284 +802.938158 +802.966963 +803.016679 +803.053276 +803.093702 +803.160336 +803.244518 +803.301028 +803.343652 +803.384078 +803.505790 +803.565463 +803.606289 +803.654374 +803.697565 +803.755939 +803.805390 +803.833895 +803.883612 +803.936659 +803.982113 +804.022772 +804.071690 +804.118543 +804.177118 +804.230198 +804.293002 +804.321540 +804.381380 +804.445249 +804.496099 +804.557537 +804.612216 +804.654673 +804.750444 +804.802891 +804.838389 +804.997996 +805.098362 +805.148013 +805.204423 +805.256304 +805.305688 +805.350410 +805.391869 +805.444416 +805.498695 +805.535858 +805.582444 +805.613214 +805.653806 +805.701559 +805.740153 +805.779547 +805.822471 +805.872654 +805.934559 +805.992434 +806.045647 +806.094698 +806.149777 +806.193832 +806.226433 +806.273353 +806.300626 +806.344115 +806.421471 +806.460133 +806.529130 +806.559566 +806.608750 +806.645747 +806.685440 +806.732360 +806.761531 +806.785207 +806.822536 +806.856569 +806.887738 +806.915110 +806.949310 +807.000059 +807.049842 +807.105120 +807.145480 +807.187305 +807.225034 +807.278913 +807.329462 +807.400125 +807.455070 +807.523901 +807.551940 +807.589902 +807.694630 +807.750474 +807.794164 +807.858033 +807.913211 +807.961430 +807.998792 +808.044114 +808.082642 +808.174650 +808.219571 +808.249741 +808.293464 +808.338053 +808.406185 +808.446145 +808.490267 +808.528928 +808.583807 +808.633890 +808.688735 +808.732491 +808.793730 +808.833024 +808.866790 +808.911046 +808.945711 +808.985172 +809.088135 +809.131825 +809.170087 +809.221668 +809.283140 +809.342614 +809.393430 +809.399457 +809.454102 +809.492764 +809.528528 +809.562927 +809.634488 +809.678078 +809.717272 +809.760329 +809.803086 +809.843612 +809.908181 +809.961894 +809.990532 +810.019603 +810.046343 +810.089899 +810.142846 +810.206882 +810.245643 +810.307914 +810.344478 +810.391897 +810.424897 +810.462992 +810.496625 +810.607048 +810.655333 +810.694028 +810.742912 +810.793994 +810.841513 +810.881773 +810.915273 +810.944877 +810.989532 +811.032356 +811.097424 +811.139315 +811.200954 +811.250904 +811.277943 +811.312209 +811.336118 +811.383771 +811.426261 +811.471150 +811.558329 +811.599188 +811.651170 +811.698023 +811.740014 +811.777843 +811.818336 +811.875245 +811.938782 +811.970317 +812.020333 +812.056630 +812.093294 +812.233254 +812.279607 +812.312075 +812.391329 +812.440213 +812.480606 +812.524529 +812.563956 +812.598122 +812.650070 +812.692760 +812.753100 +812.786899 +812.870782 +812.927858 +812.961591 +813.008578 +813.048937 +813.093160 +813.125927 +813.150336 +813.191295 +813.233219 +813.283036 +813.328224 +813.384068 +813.440046 +813.503915 +813.549136 +813.584501 +813.631088 +813.723262 +813.768916 +813.821697 +813.869316 +813.911807 +813.954531 +814.001017 +814.037747 +814.097088 +814.130188 +814.146205 +814.204347 +814.232952 +814.288063 +814.324793 +814.354064 +814.396455 +814.448736 +814.495955 +814.549302 +814.594723 +814.647870 +814.694390 +814.732385 +814.772245 +814.812072 +814.857860 +814.938346 +814.966884 +814.994190 +815.049268 +815.086165 +815.133184 +815.177207 +815.224160 +815.264952 +815.299684 +815.402048 +815.455695 +815.506011 +815.546071 +815.579604 +815.612238 +815.654795 +815.695821 +815.728588 +815.771146 +815.814935 +815.862121 +815.902181 +815.956027 +816.099550 +816.158724 +816.239177 +816.279137 +816.315967 +816.348701 +816.380869 +816.403746 +816.455194 +816.482966 +816.543273 +816.581767 +816.620695 +816.654062 +816.701947 +816.738277 +816.786562 +816.818098 +816.850498 +816.899116 +816.984331 +817.024291 +817.064418 +817.095586 +817.120761 +817.177538 +817.212103 +817.252196 +817.279969 +817.320361 +817.357924 +817.395386 +817.435246 +817.477671 +817.527021 +817.557457 +817.591457 +817.626921 +817.671477 +817.718496 +817.755060 +817.807840 +817.853861 +817.883598 +817.932982 +817.965549 +817.990457 +818.034547 +818.072309 +818.125422 +818.170111 +818.203711 +818.233980 +818.267880 +818.311436 +818.400114 +818.454226 +818.509704 +818.539241 +818.597350 +818.657823 +818.688525 +818.719594 +818.761286 +818.787526 +818.844869 +818.881299 +818.928718 +818.958721 +818.993886 +819.030783 +819.053760 +819.160786 +819.205841 +819.257622 +819.303110 +819.359687 +819.419560 +819.472074 +819.505507 +819.539607 +819.582797 +819.657788 +819.689090 +819.737275 +819.835843 +819.866912 +819.906073 +819.934278 +819.982730 +820.018993 +820.065214 +820.120792 +820.147298 +820.183629 +820.219493 +820.265413 +820.314331 +820.351627 +820.408104 +820.448264 +820.484061 +820.526785 +820.565047 +820.657421 +820.696848 +820.805606 +820.842169 +820.882696 +820.921523 +820.990221 +821.065346 +821.109935 +821.142469 +821.157687 +821.205239 +821.315229 +821.342036 +821.376268 +821.423155 +821.473005 +821.521723 +821.564113 +821.594749 +821.629748 +821.659551 +821.706571 +821.757686 +821.797713 +821.834509 +821.892385 +821.943567 +821.992618 +822.040270 +822.075568 +822.093384 +822.122954 +822.165611 +822.205405 +822.242834 +822.276267 +822.332211 +822.385391 +822.434442 +822.489287 +822.543899 +822.573903 +822.609600 +822.654722 +822.735474 +822.786723 +822.824052 +822.844598 +822.891851 +822.930745 +822.967575 +823.011165 +823.065710 +823.119790 +823.177931 +823.223785 +823.262114 +823.294148 +823.338337 +823.395647 +823.438937 +823.473569 +823.510565 +823.540602 +823.583126 +823.623219 +823.662413 +823.697112 +823.741201 +823.805936 +823.891783 +823.925816 +824.006768 +824.036305 +824.086622 +824.139535 +824.219056 +824.287920 +824.314094 +824.340235 +824.378363 +824.433008 +824.469538 +824.564810 +824.625482 +824.682292 +824.729944 +824.762911 +824.816824 +824.865942 +824.893348 +824.940101 +824.986954 +825.018689 +825.055252 +825.092581 +825.151123 +825.196677 +825.245362 +825.297343 +825.347360 +825.421153 +825.470803 +825.546560 +825.603903 +825.662578 +825.702038 +825.756017 +825.797742 +825.852954 +825.900240 +825.934605 +825.959181 +826.006866 +826.042464 +826.144462 +826.200339 +826.254152 +826.296210 +826.326679 +826.357382 +826.405867 +826.501271 +826.560978 +826.597042 +826.666106 +826.720552 +826.770968 +826.830375 +826.877062 +826.899806 +826.909929 +826.964108 +827.026879 +827.056149 +827.096176 +827.149123 +827.214391 +827.267171 +827.317821 +827.366772 +827.411360 +827.447857 +827.500305 +827.547624 +827.589415 +827.625213 +827.663308 +827.691547 +827.732739 +827.778293 +827.889648 +827.928310 +827.974197 +828.030907 +828.077727 +828.118586 +828.234103 +828.274363 +828.307397 +828.362275 +828.403767 +828.503800 +828.534403 +828.587250 +828.628242 +828.664106 +828.704133 +828.737100 +828.822947 +828.982021 +829.063573 +829.099138 +829.162308 +829.209727 +829.248555 +829.279723 +829.338664 +829.379224 +829.471365 +829.534502 +829.572930 +829.630006 +829.671598 +829.705297 +829.729074 +829.761341 +829.812324 +829.847022 +829.878957 +829.897871 +829.950352 +830.003599 +830.069533 +830.117452 +830.164871 +830.209626 +830.246789 +830.299303 +830.339163 +830.423911 +830.455913 +830.478390 +830.507161 +830.549419 +830.578790 +830.609892 +830.643625 +830.690811 +830.719815 +830.763005 +830.833834 +830.866801 +830.899336 +830.936199 +831.024610 +831.075293 +831.099269 +831.125709 +831.204330 +831.223877 +831.263105 +831.301699 +831.346621 +831.406761 +831.455679 +831.475992 +831.559908 +831.611656 +831.667467 +831.712954 +831.740860 +831.791443 +831.850017 +831.875325 +831.893807 +831.913554 +831.944922 +832.046188 +832.111422 +832.168632 +832.219880 +832.264902 +832.303630 +832.368032 +832.461871 +832.517815 +832.549517 +832.574425 +832.598002 +832.623243 +832.658908 +832.683982 +832.707059 +832.734532 +832.751049 +832.787679 +832.820546 +832.864635 +832.934632 +832.977589 +833.052980 +833.091341 +833.161738 +833.197169 +833.230402 +833.271061 +833.315384 +833.353779 +833.465134 +833.497735 +833.560105 +833.600598 +833.645720 +833.693938 +833.734731 +833.763901 +833.796103 +833.835363 +833.871760 +833.915883 +833.968630 +834.095170 +834.154377 +834.232666 +834.271893 +834.338726 +834.373158 +834.398999 +834.430967 +834.491340 +834.511953 +834.533165 +834.562968 +834.598966 +834.628003 +834.676754 +834.720444 +834.793438 +834.836628 +834.882016 +834.949981 +835.033730 +835.081616 +835.143121 +835.190707 +835.246184 +835.298532 +835.345718 +835.413817 +835.459970 +835.480417 +835.535661 +835.569061 +835.616514 +835.654609 +835.686011 +835.725405 +835.771725 +835.822174 +835.866663 +835.977219 +836.019344 +836.068162 +836.186476 +836.235561 +836.351278 +836.396433 +836.443586 +836.505257 +836.562234 +836.607721 +836.641354 +836.665330 +836.692070 +836.727968 +836.751111 +836.821874 +836.879350 +836.912949 +836.940622 +837.042719 +837.105423 +837.131830 +837.160268 +837.223738 +837.265863 +837.331364 +837.380848 +837.436925 +837.519442 +837.588739 +837.614181 +837.636025 +837.661567 +837.724304 +837.770458 +837.839921 +837.874753 +837.917144 +837.966028 +838.070091 +838.137157 +838.191869 +838.251210 +838.347014 +838.402492 +838.429098 +838.537423 +838.610117 +838.671822 +838.751609 +838.838755 +838.913513 +838.957403 +838.998462 +839.087806 +839.136990 +839.215977 +839.268158 +839.334725 +839.379613 +839.428798 +839.478781 +839.518874 +839.571355 +839.630129 +839.754105 +839.807319 +839.844881 +839.895131 +839.951907 +839.999826 +840.046646 +840.118774 +840.146912 +840.195630 +840.233992 +840.306919 +840.357801 +840.403156 +840.471487 +840.522303 +840.554471 +840.608217 +840.666758 +840.713145 +840.759299 +840.835223 +840.883408 +840.940418 +840.998160 +841.037188 +841.084540 +841.174816 +841.248709 +841.299592 +841.354903 +841.423900 +841.471087 +841.557766 +841.618406 +841.675249 +841.714410 +841.770886 +841.825765 +841.873717 +841.918605 +841.982475 +842.040550 +842.102488 +842.158665 +842.221735 +842.271119 +842.311612 +842.360396 +842.406683 +842.460097 +842.521302 +842.562328 +842.611412 +842.661262 +842.766956 +842.813876 +842.869520 +842.910579 +842.936020 +843.020735 +843.069686 +843.134821 +843.212410 +843.252370 +843.297891 +843.351404 +843.408048 +843.476945 +843.527029 +843.580075 +843.624265 +843.681441 +843.726662 +843.769586 +843.841880 +843.903951 +843.955733 +843.999056 +844.048440 +844.153002 +844.193062 +844.249006 +844.308746 +844.438716 +844.487101 +844.539149 +844.592962 +844.626628 +844.697257 +844.729558 +844.776977 +844.834287 +844.871283 +844.916305 +844.967986 +845.066354 +845.121532 +845.155432 +845.203850 +845.259894 +845.347773 +845.402251 +845.469617 +845.516570 +845.551968 +845.588665 +845.633720 +845.688298 +845.748372 +845.781638 +845.822131 +845.862491 +845.916637 +845.967253 +846.005781 +846.105781 +846.154765 +846.230722 +846.332587 +846.375710 +846.425860 +846.461791 +846.495657 +846.535617 +846.570149 +846.614072 +846.644941 +846.691428 +846.733219 +846.769616 +846.832886 +846.880172 +846.944175 +847.008211 +847.047271 +847.092892 +847.139612 +847.195889 +847.241510 +847.285566 +847.333718 +847.366285 +847.403881 +847.450668 +847.491527 +847.543075 +847.589296 +847.625792 +847.666751 +847.715203 +847.798653 +847.865086 +847.900717 +847.941410 +847.986664 +848.038579 +848.089628 +848.134383 +848.183701 +848.218066 +848.297353 +848.344340 +848.393757 +848.479471 +848.535881 +848.592158 +848.652764 +848.734050 +848.764319 +848.810240 +848.900150 +848.938678 +848.995022 +849.036713 +849.088528 +849.133483 +849.166883 +849.227056 +849.315235 +849.346070 +849.406776 +849.442241 +849.495587 +849.537845 +849.621461 +849.670412 +849.722161 +849.769313 +849.815167 +849.859723 +849.926123 +849.965650 +850.038644 +850.074508 +850.185830 +850.226722 +850.264618 +850.371111 +850.413469 +850.454394 +850.496952 +850.531817 +850.577771 +850.607041 +850.665949 +850.701181 +850.736911 +850.784331 +850.830085 +850.873475 +850.932949 +850.971377 +851.019062 +851.068646 +851.129618 +851.173241 +851.201713 +851.246135 +851.321493 +851.399415 +851.449432 +851.521060 +851.553028 +851.581366 +851.676438 +851.702978 +851.732914 +851.758123 +851.801046 +851.837976 +851.869844 +851.911236 +851.960154 +852.006807 +852.036178 +852.075372 +852.117097 +852.161619 +852.182198 +852.211535 +852.242005 +852.330849 +852.378335 +852.433879 +852.485961 +852.516397 +852.545401 +852.562517 +852.591655 +852.624822 +852.645035 +852.717329 +852.772540 +852.829816 +852.858155 +852.924488 +852.950662 +853.077635 +853.095184 +853.148697 +853.225354 +853.322490 +853.383262 +853.422523 +853.463848 +853.512933 +853.553825 +853.610135 +853.639672 +853.682396 +853.747731 +853.768643 +853.816495 +853.859785 +853.913432 +853.954857 +854.015530 +854.075203 +854.128217 +854.174970 +854.220891 +854.245166 +854.280997 +854.324054 +854.368876 +854.408503 +854.456022 +854.507304 +854.553924 +854.587923 +854.636808 +854.670874 +854.717660 +854.757687 +854.793184 +854.813098 +854.847297 +854.902175 +854.947863 +855.056421 +855.081895 +855.114130 +855.193750 +855.281362 +855.337240 +855.393650 +855.446564 +855.562381 +855.589787 +855.664879 +855.732211 +855.769574 +855.834009 +855.890353 +855.932444 +856.031445 +856.085791 +856.125284 +856.165244 +856.200043 +856.240902 +856.278531 +856.328681 +856.357086 +856.425451 +856.492350 +856.561081 +856.608501 +856.652457 +856.703905 +856.732343 +856.768907 +856.835340 +856.878497 +856.941834 +856.991018 +857.047761 +857.077265 +857.121387 +857.158916 +857.194714 +857.274134 +857.360448 +857.425949 +857.457284 +857.499043 +857.565876 +857.631010 +857.727314 +857.781260 +857.832642 +857.862512 +857.907267 +858.050990 +858.152988 +858.195479 +858.247460 +858.284856 +858.333474 +858.375099 +858.409431 +858.483823 +858.533107 +858.586687 +858.632508 +858.669837 +858.764110 +858.799741 +858.841232 +858.903670 +858.997176 +859.033207 +859.073800 +859.125381 +859.177662 +859.265807 +859.308198 +859.382624 +859.420219 +859.519820 +859.569603 +859.613526 +859.659380 +859.719953 +859.836403 +859.888484 +859.922750 +859.964674 +860.022450 +860.118953 +860.171800 +860.216889 +860.260279 +860.316056 +860.369436 +860.458047 +860.507365 +860.542330 +860.595077 +860.660145 +860.691613 +860.755916 +860.793212 +860.823715 +860.860711 +860.885486 +860.929742 +860.973431 +861.010761 +861.049688 +861.101703 +861.159645 +861.203501 +861.254583 +861.371400 +861.437067 +861.495808 +861.541030 +861.598639 +861.636534 +861.671433 +861.720317 +861.754749 +861.810094 +861.848522 +861.904266 +861.953550 +861.997506 +862.037699 +862.106863 +862.160210 +862.203933 +862.266670 +862.314622 +862.373463 +862.513323 +862.577126 +862.629873 +862.665538 +862.710459 +862.760010 +862.931538 +862.981122 +863.047022 +863.089047 +863.183652 +863.208361 +863.247155 +863.310359 +863.366369 +863.426209 +863.475294 +863.567934 +863.588281 +863.607861 +863.693775 +863.727008 +863.767967 +863.858643 +863.932802 +863.976126 +864.015586 +864.053681 +864.095972 +864.161673 +864.273361 +864.353515 +864.407927 +864.471430 +864.515552 +864.576858 +864.608826 +864.716917 +864.793341 +864.855579 +864.892975 +864.972062 +865.097703 +865.151582 +865.207626 +865.259408 +865.335032 +865.377157 +865.419847 +865.475125 +865.521013 +865.572428 +865.611788 +865.668398 +865.716983 +865.770896 +865.827106 +865.875058 +865.944755 +866.006194 +866.089410 +866.130369 +866.176357 +866.214985 +866.246653 +866.270329 +866.309623 +866.353013 +866.379720 +866.511055 +866.580718 +866.718814 +866.759406 +866.800265 +866.860105 +866.916382 +866.983782 +867.025640 +867.103928 +867.143855 +867.194571 +867.286345 +867.344454 +867.380884 +867.411087 +867.434797 +867.485280 +867.527304 +867.573058 +867.614950 +867.683315 +867.730534 +867.786045 +867.823974 +867.877254 +867.937161 +867.961903 +868.004860 +868.068696 +868.156807 +868.346518 +868.410820 +868.509055 +868.546984 +868.589141 +868.626704 +868.651546 +868.735894 +868.788975 +868.847083 +868.891206 +868.950679 +869.052777 +869.092704 +869.159404 +869.200096 +869.279584 +869.413150 +869.535228 +869.616380 +869.656040 +869.687042 +869.732430 +869.761768 +869.799463 +869.823739 +869.855207 +869.895767 +869.953875 +870.005290 +870.053742 +870.083179 +870.152210 +870.214381 +870.314015 +870.376819 +870.460834 +870.492236 +870.551610 +870.592203 +870.636658 +870.697930 +870.747914 +870.793701 +870.822839 +870.889805 +870.945649 +871.025536 +871.089672 +871.159735 +871.239289 +871.318975 +871.390737 +871.463264 +871.511583 +871.595698 +871.738356 +871.783744 +871.843351 +871.883810 +871.920840 +871.961299 +872.007886 +872.056404 +872.149111 +872.235724 +872.278049 +872.342284 +872.377915 +872.444749 +872.512114 +872.577183 +872.644515 +872.735025 +872.909184 +872.992467 +873.067825 +873.113712 +873.162097 +873.224635 +873.274152 +873.329463 +873.376349 +873.435290 +873.490668 +873.511214 +873.569489 +873.598860 +873.656469 +873.689303 +873.720372 +873.757068 +873.800891 +873.850541 +873.896262 +873.948410 +874.004354 +874.057934 +874.218939 +874.290268 +874.382542 +874.454970 +874.538786 +874.595329 +874.675549 +874.714144 +874.765792 +874.813178 +874.850840 +874.911046 +874.956235 +875.016741 +875.057833 +875.111779 +875.142981 +875.170254 +875.238519 +875.259997 +875.294363 +875.359098 +875.416008 +875.496727 +875.698159 +875.800822 +875.855068 +875.906050 +875.949507 +876.000922 +876.068022 +876.112111 +876.175348 +876.233989 +876.257698 +876.332290 +876.372683 +876.419603 +876.487768 +876.547275 +876.749140 +876.827062 +876.947175 +877.022333 +877.081873 +877.155466 +877.236186 +877.302819 +877.356732 +877.498956 +877.544344 +877.628560 +877.723331 +877.792828 +877.840814 +877.924363 +878.114273 +878.290131 +878.345875 +878.448372 +878.480340 +878.526661 +878.601685 +878.667719 +878.775278 +878.869451 +878.946707 +879.025195 +879.111708 +879.187566 +879.270849 +879.315871 +879.353799 +879.385767 +879.444275 +879.477542 +879.521531 +879.569284 +879.702650 +879.748171 +879.792394 +879.943243 +880.070315 +880.144108 +880.236649 +880.349003 +880.405480 +880.448803 +880.497787 +880.567551 +880.606745 +880.661124 +880.740345 +880.776442 +880.814570 +880.862822 +880.906578 +880.964853 +881.047770 +881.267650 +881.353864 +881.439645 +881.513770 +881.576774 +881.643707 +881.714869 +881.751632 +881.792025 +881.896554 +881.933350 +881.964120 +882.002848 +882.084233 +882.172944 +882.229387 +882.270813 +882.374609 +882.408308 +882.445638 +882.503913 +882.563053 +882.745837 +882.915634 +883.019430 +883.054528 +883.142007 +883.224025 +883.372909 +883.416666 +883.483765 +883.524857 +883.571977 +883.633782 +883.690891 +883.728853 +883.775506 +883.822892 +883.893888 +883.966515 +884.036012 +884.244137 +884.329519 +884.441407 +884.524557 +884.580068 +884.684996 +884.784696 +884.928952 +885.004609 +885.043038 +885.092488 +885.168212 +885.207240 +885.250264 +885.280167 +885.362618 +885.418795 +885.469011 +885.514233 +885.616730 +885.677136 +885.740140 +885.786227 +885.863050 +885.963483 +886.059220 +886.183896 +886.256390 +886.324721 +886.415664 +886.459753 +886.527685 +886.557655 +886.642037 +886.754058 +886.829916 +886.897481 +886.965780 +887.008903 +887.083828 +887.136309 +887.234011 +887.368310 +887.429049 +887.586392 +887.725386 +887.807637 +887.900311 +887.939239 +888.001843 +888.042835 +888.101410 +888.232079 +888.284693 +888.362115 +888.419758 +888.625718 +888.877732 +888.937939 +889.036007 +889.080663 +889.146830 +889.189454 +889.249560 +889.343633 +889.399011 +889.457852 +889.525084 +889.611964 +889.659949 +889.703606 +889.785823 +889.907801 +889.959649 +890.041068 +890.225716 +890.365510 +890.506868 +890.606835 +890.679995 +890.871637 +890.945130 +891.010464 +891.056485 +891.110897 +891.150857 +891.273434 +891.333175 +891.434440 +891.801672 +891.975165 +892.083856 +892.165608 +892.232841 +892.292681 +892.322418 +892.405168 +892.475498 +892.505634 +892.565275 +892.597476 +892.645028 +892.692014 +892.808431 +892.910629 +892.962743 +893.016922 +893.142031 +893.288784 +893.358647 +893.441264 +893.600505 +893.691580 +893.804068 +893.844594 +893.885320 +893.922483 +893.977661 +894.041630 +894.105200 +894.144560 +894.250787 +894.315356 +894.471333 +894.515789 +894.583987 +894.641430 +894.869135 +894.952818 +895.183554 +895.238532 +895.288882 +895.325911 +895.387283 +895.441729 +895.607596 +895.701568 +895.821182 +895.864405 +895.925245 +896.102401 +896.220582 +896.258045 +896.297372 +896.374861 +896.421514 +896.468268 +896.560609 +896.629972 +896.701967 +896.774461 +896.821114 +896.859443 +896.922346 +896.991277 +897.077491 +897.113921 +897.226609 +897.301400 +897.472662 +897.579788 +897.734633 +897.830504 +897.888313 +897.986947 +898.045089 +898.079388 +898.115485 +898.148852 +898.189145 +898.243291 +898.296271 +898.381885 +898.447553 +898.511589 +898.692042 +898.853680 +899.084083 +899.186913 +899.231135 +899.279986 +899.312787 +899.352014 +899.385314 +899.415751 +899.451914 +899.490209 +899.537262 +899.593672 +899.680252 +899.745221 +899.776589 +899.840026 +899.885580 +899.974758 +900.086646 +900.170562 +900.311787 +900.382216 +900.438127 +900.459206 +900.529502 +900.559273 +900.626638 +900.675456 +900.864634 +900.911054 +900.963235 +901.007557 +901.045486 +901.152778 +901.190641 +901.251546 +901.276621 +901.327703 +901.384546 +901.457207 +901.519911 +901.587210 +901.644520 +901.747816 +901.800996 +901.906357 +901.953144 +901.975089 +902.071825 +902.138159 +902.178285 +902.242721 +902.349780 +902.424073 +902.546250 +902.724705 +902.800662 +902.827535 +902.879716 +902.913283 +902.999696 +903.100662 +903.152577 +903.314515 +903.411651 +903.511284 +903.618444 +903.687907 +903.747048 +903.770991 +903.835560 +903.901760 +904.024704 +904.219342 +904.285676 +904.392202 +904.490904 +904.621040 +904.759968 +904.836291 +904.896431 +904.992102 +905.106721 +905.165628 +905.292368 +905.393667 +905.432994 +905.849510 +905.928798 +906.317842 +906.425134 +906.606286 +906.821338 +906.962097 +907.024701 +907.102090 +907.160498 +907.205886 +907.252306 +907.400857 +907.513245 +907.601923 +907.878446 +907.996062 +908.141050 +908.191932 +908.300657 +908.468455 +908.534789 +908.604486 +908.659364 +908.754869 +909.099790 +909.198658 +909.279877 +909.360329 +909.400090 +909.441581 +909.492197 +909.521868 +909.569254 +909.607981 +909.648508 +909.890665 +910.074714 +910.183372 +910.251204 +910.335154 +910.396292 +910.467288 +910.499722 +910.523532 +910.575713 +910.676112 +910.742646 +910.902319 +910.988400 +911.118070 +911.161926 +911.258230 +911.294293 +911.460694 +911.531989 +911.650171 +911.748805 +911.987766 +912.066421 +912.116704 +912.180207 +912.231122 +912.281838 +912.331455 +912.399687 +912.474246 +912.549537 +912.641012 +912.772947 +912.999753 +913.126160 +913.230822 +913.269183 +913.338214 +913.447538 +913.518034 +913.581504 +913.660725 +913.940245 +914.259892 +914.370781 +914.598719 +914.679938 +914.749601 +914.786997 +914.849568 +914.947936 +915.010007 +915.059857 +915.201016 +915.495122 +915.622794 +915.709241 +915.775708 +915.818698 +915.851665 +915.936347 +916.049800 +916.220429 +916.338178 +916.443339 +916.536646 +916.626523 +916.798650 +916.885630 +916.954061 +917.000382 +917.232716 +917.298883 +917.350331 +917.560987 +917.816831 +917.881300 +917.929851 +917.992722 +918.025156 +918.071842 +918.118662 +918.186727 +918.228685 +918.270244 +918.323424 +918.395219 +918.530217 +918.618862 +918.723124 +918.865348 +919.013467 +919.120759 +919.207772 +919.334379 +919.387159 +919.467945 +919.561884 +919.795284 +920.154724 +920.288290 +920.325620 +920.791786 +920.910834 +921.019792 +921.255023 +921.489455 +921.602841 +921.719591 +921.787690 +921.902674 +922.102008 +922.157020 +922.192784 +922.412131 +922.607203 +922.788521 +923.003839 +923.054288 +923.169373 +923.212763 +923.339470 +923.623319 +923.676532 +923.777398 +923.858050 +924.036006 +924.093115 +924.299342 +924.364310 +924.481260 +924.623251 +924.958049 +925.074433 +925.148792 +925.357749 +925.395911 +925.428878 +925.543463 +925.654486 +925.905301 +926.032873 +926.146993 +926.208697 +926.244628 +926.320619 +926.386353 +926.452687 +926.530542 +926.632706 +926.704967 +926.923648 +927.030841 +927.139899 +927.184521 +927.257847 +927.319619 +927.382123 +927.507664 +927.660910 +927.794910 +927.953984 +928.002668 +928.035968 +928.202035 +928.335568 +928.379624 +928.551552 +928.772598 +928.916454 +928.995641 +929.145058 +929.183653 +929.272764 +929.369067 +929.448787 +929.516053 +929.594308 +929.819916 +929.917718 +930.054148 +930.308460 +930.351284 +930.409659 +930.497205 +930.655713 +930.755812 +931.086881 +931.178756 +931.284483 +931.429638 +931.684350 +931.935631 +932.025808 +932.168465 +932.256377 +932.453280 +932.581751 +932.791009 +932.852847 +932.911222 +932.976390 +933.066666 +933.143755 +933.229403 +933.298367 +933.372793 +933.438793 +933.504761 +933.550848 +933.649949 +933.717648 +934.179452 +934.256042 +934.346884 +934.469728 +934.572958 +934.616881 +934.706025 +934.790241 +934.961702 +935.161869 +935.356973 +935.422441 +935.554775 +935.619877 +935.681815 +935.770626 +935.880216 +935.966397 +936.133929 +936.404258 +936.561834 +936.683379 +936.806323 +936.887708 +936.937258 +937.159069 +937.282612 +937.692569 +937.762965 +937.993701 +938.092668 +938.170823 +938.384643 +938.461099 +938.544749 +938.627400 +938.747246 +938.900027 +938.955038 +938.996131 +939.080879 +939.611914 +939.984974 +940.022603 +940.076149 +940.147312 +940.223402 +940.309016 +940.365760 +940.448976 +940.554204 +940.762895 +940.957301 +941.120138 +941.571186 +941.629328 +941.712645 +941.783107 +941.880676 +941.943613 +942.021436 +942.115408 +942.212944 +942.340283 +942.504385 +942.672950 +943.273116 +943.398724 +943.464258 +943.641947 +943.692962 +943.866688 +944.035553 +944.257930 +944.381839 +944.729125 +944.915539 +945.042678 +945.212275 +945.313240 +945.382338 +945.434153 +945.488998 +945.610743 +945.815238 +945.863789 +945.913340 +945.965221 +946.129990 +946.194159 +946.268418 +946.460292 +946.535017 +946.596989 +946.648371 +947.187265 +947.716135 +947.833484 +947.972146 +948.134883 +948.339112 +948.403181 +948.639777 +949.330453 +949.654795 +950.330951 +950.845669 +951.592288 +951.778402 +951.862951 +951.983863 +952.143070 +952.220859 +952.498381 +952.860719 +953.136842 +953.413699 +953.539373 +953.681297 +953.977035 +954.046365 +954.695948 +954.930747 +954.974303 +955.001509 +955.018659 +955.149295 +955.272704 +955.407569 +955.477666 +955.541935 +955.664479 +955.819524 +955.893616 +956.024419 +956.487655 +956.596080 +956.680662 +956.732843 +956.811930 +956.890518 +957.043698 +957.150258 +957.257018 +957.445096 +958.243597 +958.416457 +958.531542 +958.617356 +958.713826 +958.771169 +958.834739 +959.014059 +959.144828 +959.249157 +959.670835 +959.865574 +960.009296 +960.076995 +960.229576 +960.358513 +960.523149 +960.990781 +961.050221 +961.147324 +961.323714 +961.386884 +961.582655 +961.642462 +961.764673 +961.850453 +962.742793 +962.822380 +962.896972 +963.065737 +963.135534 +963.368833 +963.458177 +963.552483 +963.604131 +963.656346 +964.251184 +964.298869 +964.348586 +964.410857 +964.458076 +964.626774 +964.858742 +965.080753 +965.437196 +965.590343 +965.649118 +965.822344 +965.920979 +965.992940 +966.198434 +966.318181 +966.898667 +967.064068 +967.131467 +967.175423 +967.316349 +967.566165 +967.762236 +968.103061 +968.411785 +968.495668 +968.597466 +968.949847 +969.102527 +969.899563 +969.973123 +970.200562 +970.264398 +970.587075 +971.354573 +971.466661 +971.653474 +971.894566 +972.368891 +972.578681 +972.869390 +973.001691 +973.265227 +973.486939 +973.601824 +973.712679 +974.025366 +974.738586 +974.847676 +974.990800 +975.127230 +975.229627 +975.312578 +975.757832 +975.880576 +976.416606 +977.869951 +977.935852 +978.530423 +978.743244 +978.842478 +979.390795 +980.374311 +980.458893 +980.617867 +980.713372 +981.218266 +981.389428 +981.542641 +981.673610 +981.917266 +982.942573 +983.033849 +983.106343 +983.336479 +983.494754 +983.873741 +984.441540 +984.495785 +984.638110 +985.323057 +985.769610 +986.120326 +987.757853 +988.391852 +988.558918 +988.614796 +988.679764 +988.877133 +989.042767 +989.105871 +989.134076 +989.191552 +989.253789 +989.328581 +989.567209 +989.663579 +989.738204 +990.297211 +990.451490 +990.591250 +990.669872 +990.721487 +990.780628 +990.857950 +990.930677 +990.980794 +991.079595 +991.176165 +991.241733 +991.274899 +991.317357 +991.413161 +991.482259 +991.772601 +991.840700 +992.332274 +992.474199 +992.541798 +992.605534 +992.783256 +992.878328 +992.986886 +993.065107 +993.454018 +993.598573 +993.674631 +993.751787 +993.798940 +993.859712 +993.915190 +994.022116 +994.080824 +994.499372 +994.658179 +994.804833 +994.938232 +994.999538 +995.092012 +995.160277 +995.218585 +995.282455 +995.371366 +995.505365 +995.568801 +995.719750 +995.775661 +995.847456 +995.877659 +996.503199 +996.589180 +996.656013 +996.706063 +996.735966 +996.880721 +996.956046 +997.241793 +997.393541 +997.521180 +997.581986 +997.652615 +997.940261 +998.009092 +998.020880 +998.039761 +998.147753 +998.503430 +998.799068 +999.588711 +1000.867997 +1001.049582 +1001.240990 +1001.341856 +1001.373424 +1001.425738 +1001.714716 +1001.776288 +1001.906657 +1001.977919 +1002.091006 +1002.162667 +1002.246683 +1002.340190 +1002.572324 +1002.699463 +1002.996233 +1003.293336 +1003.380382 +1003.461634 +1003.550645 +1003.642586 +1003.679083 +1003.717511 +1003.815613 +1003.903392 +1003.962799 +1004.061700 +1004.244717 +1004.322639 +1004.509651 +1004.571256 +1004.618110 +1004.736558 +1004.798096 +1004.881279 +1004.929631 +1005.022471 +1005.090004 +1005.251942 +1005.634093 +1005.836124 +1005.941152 +1006.027432 +1006.086506 +1006.190536 +1006.250209 +1006.425667 +1006.524601 +1006.894897 +1007.065726 +1007.097195 +1007.209815 +1007.268623 +1007.526265 +1007.846478 +1008.128429 +1008.283940 +1008.382675 +1008.573417 +1008.660829 +1008.762861 +1008.826830 +1008.908881 +1009.009114 +1009.108681 +1009.225264 +1009.525231 +1009.643779 +1009.729160 +1009.799423 +1009.868088 +1009.971717 +1010.121467 +1010.263692 +1010.371617 +1010.458230 +1011.182039 +1011.334387 +1011.434420 +1011.785668 +1011.943810 +1012.324495 +1012.443343 +1012.644242 +1012.726293 +1012.826626 +1013.122530 +1013.165887 +1013.244574 +1013.300585 +1013.399153 +1013.576742 +1013.671014 +1013.820098 +1013.885200 +1014.052865 +1014.118600 +1014.272412 +1014.381703 +1014.704913 +1014.813804 +1015.027623 +1015.306111 +1015.614769 +1015.643307 +1015.751032 +1015.882501 +1015.942873 +1016.077938 +1016.180869 +1016.355294 +1016.569113 +1017.321826 +1017.392755 +1017.447034 +1017.510871 +1017.634580 +1017.961353 +1018.021726 +1018.682864 +1018.763517 +1018.889890 +1019.255757 +1019.406506 +1019.469810 +1019.544368 +1019.649496 +1019.782097 +1019.912600 +1020.025120 +1020.151261 +1020.564048 +1020.708703 +1020.767844 +1020.803108 +1021.082429 +1021.142868 +1021.221922 +1021.291120 +1021.411766 +1021.671373 +1021.746164 +1021.871106 +1021.987023 +1022.062514 +1022.203507 +1022.269674 +1022.365012 +1022.527149 +1022.712264 +1022.809766 +1022.923253 +1023.034575 +1023.107302 +1023.140935 +1023.271271 +1023.462979 +1023.595946 +1023.691750 +1023.914261 +1024.176964 +1024.272469 +1024.316858 +1024.373201 +1024.418489 +1024.466208 +1024.549258 +1024.631942 +1024.908166 +1025.315325 +1025.393280 +1025.420053 +1025.464243 +1025.493746 +1025.527879 +1025.569537 +1025.616157 +1025.712294 +1025.801971 +1025.901338 +1026.001804 +1026.080026 +1026.211528 +1026.292747 +1026.509363 +1026.611061 +1026.709463 +1026.760645 +1026.777928 +1026.815623 +1026.867138 +1026.913825 +1027.007531 +1027.095476 +1027.179259 +1027.322582 +1027.454084 +1027.705299 +1028.008962 +1028.138466 +1028.226111 +1028.349454 +1028.480490 +1028.544859 +1028.655282 +1028.794775 +1029.131871 +1029.322014 +1029.515254 +1029.624978 +1029.673429 +1029.878824 +1029.987548 +1030.071864 +1030.187015 +1030.260808 +1030.387814 +1030.461007 +1030.586482 +1030.733168 +1030.860574 +1030.975226 +1031.275525 +1031.330670 +1031.405395 +1031.496671 +1031.726241 +1031.762371 +1031.863304 +1031.947320 +1032.037230 +1032.167732 +1032.372494 +1032.436097 +1032.546353 +1032.687379 +1032.745787 +1032.824342 +1032.882783 +1032.971794 +1033.102397 +1033.210888 +1033.274891 +1033.347052 +1033.505060 +1033.583881 +1033.746552 +1033.882083 +1034.080185 +1034.140058 +1034.186745 +1034.246818 +1034.309222 +1034.373658 +1034.411653 +1034.462502 +1034.540890 +1034.593870 +1034.667297 +1034.789841 +1035.006058 +1035.394669 +1035.434429 +1035.483147 +1035.608455 +1035.724372 +1035.791805 +1035.941155 +1036.056373 +1036.119244 +1036.184611 +1036.383113 +1036.613649 +1036.660036 +1036.716346 +1036.786176 +1036.904890 +1036.964231 +1037.089139 +1037.235260 +1037.586841 +1037.913448 +1038.051842 +1038.103924 +1038.208685 +1038.302425 +1038.371889 +1038.488139 +1038.645715 +1038.759334 +1038.876817 +1039.063230 +1039.186507 +1039.307485 +1039.356403 +1039.482777 +1039.527732 +1039.622337 +1039.719506 +1039.828198 +1039.934857 +1040.005720 +1040.104421 +1040.265227 +1040.332326 +1040.395330 +1040.442749 +1040.560132 +1040.658799 +1040.758167 +1040.877814 +1041.093364 +1041.316408 +1041.415842 +1041.466258 +1041.539451 +1041.590667 +1041.710580 +1041.945278 +1041.988302 +1042.016540 +1042.092498 +1042.350906 +1042.403786 +1042.478911 +1042.547409 +1042.655035 +1042.822733 +1042.950805 +1043.047642 +1043.180009 +1043.287302 +1043.358231 +1043.422400 +1043.481874 +1043.568720 +1043.607781 +1043.670152 +1043.738750 +1043.824364 +1043.865356 +1043.898656 +1043.930191 +1044.017837 +1044.090364 +1044.209445 +1044.272116 +1044.319635 +1044.449605 +1044.580807 +1044.663124 +1044.707114 +1044.758995 +1044.824130 +1044.850204 +1044.895891 +1045.283503 +1045.407812 +1045.507912 +1045.588332 +1045.661558 +1045.734619 +1045.794625 +1045.837249 +1045.924828 +1045.968618 +1046.055531 +1046.099520 +1046.163556 +1046.209343 +1046.259760 +1046.310475 +1046.344608 +1046.386366 +1046.435217 +1046.535184 +1046.637182 +1046.664288 +1046.685900 +1046.807744 +1046.873712 +1046.933685 +1046.992193 +1047.151700 +1047.176142 +1047.216169 +1047.258460 +1047.414204 +1047.464953 +1047.589728 +1047.690494 +1047.807111 +1047.864087 +1047.903248 +1047.937980 +1047.996022 +1048.072212 +1048.132618 +1048.166518 +1048.233051 +1048.310074 +1048.346804 +1048.400517 +1048.456727 +1048.505811 +1048.564586 +1048.620596 +1048.706077 +1048.797852 +1048.859790 +1048.931718 +1048.992857 +1049.019630 +1049.091958 +1049.142341 +1049.200549 +1049.239444 +1049.283200 +1049.314968 +1049.364618 +1049.464452 +1049.503546 +1049.572310 +1049.624258 +1049.697085 +1049.742407 +1049.818930 +1049.897851 +1049.958024 +1050.070012 +1050.119063 +1050.161421 +1050.199016 +1050.238444 +1050.296985 +1050.364717 +1050.417131 +1050.469479 +1050.522026 +1050.573375 +1050.655326 +1050.865316 +1050.923957 +1050.976438 +1051.020960 +1051.062219 +1051.104477 +1051.163118 +1051.203577 +1051.292355 +1051.347367 +1051.403977 +1051.457523 +1051.521592 +1051.582964 +1051.667014 +1051.722591 +1051.798549 +1051.893653 +1051.942937 +1051.983863 +1052.060986 +1052.114166 +1052.180733 +1052.229950 +1052.278335 +1052.314798 +1052.386793 +1052.418794 +1052.432814 +1052.485827 +1052.563316 +1052.613333 +1052.664082 +1052.722091 +1052.787159 +1052.837775 +1052.940239 +1052.973472 +1053.043269 +1053.081864 +1053.154491 +1053.230615 +1053.281164 +1053.324188 +1053.369909 +1053.478467 +1053.534344 +1053.582629 +1053.630015 +1053.671107 +1053.729815 +1053.775436 +1053.818194 +1053.886925 +1053.929316 +1053.992452 +1054.037474 +1054.091986 +1054.141736 +1054.186691 +1054.251726 +1054.305406 +1054.339638 +1054.390487 +1054.450361 +1054.525852 +1054.558985 +1054.598879 +1054.636341 +1054.683760 +1054.741003 +1054.862981 +1054.897280 +1054.948495 +1054.995881 +1055.047030 +1055.126118 +1055.172804 +1055.230613 +1055.288355 +1055.327416 +1055.386990 +1055.430113 +1055.538871 +1055.591851 +1055.625318 +1055.671705 +1055.738704 +1055.779164 +1055.827149 +1055.871805 +1055.939637 +1056.005071 +1056.047862 +1056.095947 +1056.242101 +1056.293116 +1056.347062 +1056.402407 +1056.450525 +1056.498144 +1056.601507 +1056.661514 +1056.711064 +1056.817891 +1056.850725 +1056.889686 +1056.946396 +1057.009033 +1057.080361 +1057.132210 +1057.208933 +1057.256885 +1057.302805 +1057.355952 +1057.406169 +1057.520721 +1057.565542 +1057.594980 +1057.629911 +1057.667873 +1057.703804 +1057.733974 +1057.773701 +1057.824883 +1057.852622 +1057.901806 +1057.954220 +1058.017423 +1058.058715 +1058.123850 +1058.222285 +1058.272335 +1058.321819 +1058.366774 +1058.412928 +1058.489584 +1058.574033 +1058.635105 +1058.678395 +1058.728112 +1058.786587 +1058.829411 +1058.879461 +1058.929977 +1058.988152 +1059.029344 +1059.130709 +1059.177163 +1059.214592 +1059.242464 +1059.300073 +1059.366473 +1059.453985 +1059.557215 +1059.608897 +1059.641764 +1059.671401 +1059.727212 +1059.776729 +1059.821717 +1059.868937 +1059.954584 +1059.999739 +1060.053885 +1060.127145 +1060.173698 +1060.207165 +1060.254184 +1060.305000 +1060.349256 +1060.372633 +1060.429975 +1060.474764 +1060.528876 +1060.578160 +1060.607331 +1060.646059 +1060.685553 +1060.728743 +1060.775230 +1060.808130 +1060.859146 +1060.892013 +1060.946791 +1061.004167 +1061.048389 +1061.098339 +1061.146158 +1061.205565 +1061.250720 +1061.335036 +1061.391346 +1061.413824 +1061.451386 +1061.496940 +1061.556414 +1061.599738 +1061.642295 +1061.686484 +1061.735269 +1061.760144 +1061.801635 +1061.878625 +1061.913990 +1061.962375 +1062.025744 +1062.103966 +1062.153084 +1062.194942 +1062.234169 +1062.265405 +1062.317852 +1062.356314 +1062.431738 +1062.501968 +1062.544792 +1062.586017 +1062.631771 +1062.657512 +1062.689214 +1062.732870 +1062.769533 +1062.795174 +1062.851551 +1062.884452 +1062.938031 +1062.977492 +1063.078591 +1063.116419 +1063.217884 +1063.253049 +1063.277824 +1063.311924 +1063.421381 +1063.468101 +1063.518583 +1063.603066 +1063.655446 +1063.725310 +1063.779556 +1063.866102 +1063.915220 +1063.964071 +1063.995273 +1064.086582 +1064.133202 +1064.182552 +1064.232902 +1064.283584 +1064.340427 +1064.390477 +1064.444323 +1064.490277 +1064.533501 +1064.570963 +1064.627640 +1064.676524 +1064.724876 +1064.820514 +1064.862838 +1064.894206 +1064.982118 +1065.048652 +1065.083683 +1065.130070 +1065.194772 +1065.238528 +1065.287113 +1065.288545 +1065.330670 +1065.387846 +1065.414952 +1065.520113 +1065.574559 +1065.624209 +1065.667799 +1065.717649 +1065.755944 +1065.815051 +1065.854279 +1065.888578 +1065.927605 +1065.995204 +1066.065800 +1066.120179 +1066.204495 +1066.261738 +1066.364035 +1066.458740 +1066.489976 +1066.536096 +1066.579753 +1066.618480 +1066.657342 +1066.707791 +1066.779686 +1066.871527 +1066.902363 +1066.984447 +1067.031201 +1067.080185 +1067.131134 +1067.189742 +1067.265000 +1067.298833 +1067.337494 +1067.422542 +1067.478653 +1067.514284 +1067.551513 +1067.606824 +1067.661103 +1067.709455 +1067.758006 +1067.802762 +1067.896534 +1067.963368 +1068.021243 +1068.065932 +1068.127270 +1068.161403 +1068.186478 +1068.251479 +1068.285712 +1068.336927 +1068.375055 +1068.441855 +1068.485079 +1068.530766 +1068.586644 +1068.635628 +1068.753643 +1068.841255 +1068.939557 +1069.028002 +1069.073123 +1069.118445 +1069.152777 +1069.195135 +1069.246417 +1069.305924 +1069.351744 +1069.412217 +1069.457872 +1069.499130 +1069.539457 +1069.589373 +1069.642487 +1069.692470 +1069.728601 +1069.770592 +1069.811151 +1069.870592 +1069.900295 +1069.949879 +1069.996066 +1070.037225 +1070.086942 +1070.134261 +1070.177451 +1070.220109 +1070.263265 +1070.302759 +1070.354940 +1070.455073 +1070.493002 +1070.561367 +1070.601027 +1070.649845 +1070.667361 +1070.708520 +1070.756239 +1070.813015 +1070.863231 +1070.918576 +1070.978383 +1071.020541 +1071.057071 +1071.102059 +1071.156871 +1071.249811 +1071.346881 +1071.393034 +1071.435758 +1071.480214 +1071.515578 +1071.559501 +1071.601959 +1071.633727 +1071.686774 +1071.724603 +1071.761266 +1071.808352 +1071.860533 +1071.900660 +1071.957569 +1072.008019 +1072.075418 +1072.116077 +1072.206753 +1072.266027 +1072.305188 +1072.333660 +1072.375751 +1072.416710 +1072.453306 +1072.621005 +1072.664062 +1072.773253 +1072.806353 +1072.903323 +1072.950043 +1072.994931 +1073.048178 +1073.089669 +1073.128864 +1073.177215 +1073.218707 +1073.273119 +1073.318940 +1073.389003 +1073.451474 +1073.491534 +1073.537255 +1073.572486 +1073.597395 +1073.693565 +1073.749609 +1073.776981 +1073.801057 +1073.823035 +1073.851740 +1073.892066 +1073.933991 +1073.975183 +1074.028097 +1074.090534 +1074.166991 +1074.214144 +1074.250341 +1074.308050 +1074.335156 +1074.381210 +1074.426565 +1074.461496 +1074.506618 +1074.545179 +1074.599691 +1074.667357 +1074.712678 +1074.749741 +1074.788469 +1074.826531 +1074.849075 +1074.889002 +1074.919271 +1074.959498 +1075.009947 +1075.074016 +1075.132858 +1075.182142 +1075.225365 +1075.266990 +1075.307849 +1075.357766 +1075.396027 +1075.429760 +1075.453470 +1075.493330 +1075.544878 +1075.585338 +1075.621835 +1075.666190 +1075.711545 +1075.749007 +1075.772717 +1075.816074 +1075.837952 +1075.858997 +1075.882174 +1075.906916 +1075.948008 +1075.975647 +1076.015341 +1076.048108 +1076.080975 +1076.108481 +1076.146776 +1076.219903 +1076.242813 +1076.309247 +1076.345144 +1076.398990 +1076.453569 +1076.501587 +1076.533422 +1076.587302 +1076.621035 +1076.657398 +1076.696626 +1076.731024 +1076.758863 +1076.786869 +1076.817072 +1076.841880 +1076.865923 +1076.912243 +1076.945310 +1076.990831 +1077.042812 +1077.077444 +1077.139049 +1077.184704 +1077.217737 +1077.254867 +1077.278776 +1077.350837 +1077.386135 +1077.415206 +1077.460594 +1077.513075 +1077.558929 +1077.600854 +1077.643378 +1077.716005 +1077.752402 +1077.786468 +1077.832389 +1077.874447 +1077.910311 +1077.942778 +1077.982905 +1078.025762 +1078.065422 +1078.102751 +1078.183404 +1078.209644 +1078.238749 +1078.275179 +1078.327060 +1078.361326 +1078.413041 +1078.455298 +1078.519934 +1078.566587 +1078.597489 +1078.639214 +1078.685368 +1078.728958 +1078.784402 +1078.837116 +1078.902018 +1078.950303 +1078.994659 +1079.025361 +1079.086000 +1079.128425 +1079.260193 +1079.299387 +1079.327259 +1079.363323 +1079.383336 +1079.409510 +1079.450869 +1079.493493 +1079.536416 +1079.572580 +1079.602284 +1079.636449 +1079.683502 +1079.757595 +1079.823129 +1079.868118 +1079.921264 +1079.963888 +1080.005314 +1080.032653 +1080.067052 +1080.104614 +1080.140478 +1080.171947 +1080.205347 +1080.245939 +1080.286965 +1080.371847 +1080.465087 +1080.576475 +1080.611940 +1080.648470 +1080.681170 +1080.734917 +1080.778906 +1080.825925 +1080.939678 +1080.984034 +1081.027390 +1081.062389 +1081.091360 +1081.137847 +1081.196721 +1081.253764 +1081.303747 +1081.366251 +1081.423327 +1081.469848 +1081.515335 +1081.568815 +1081.616701 +1081.647037 +1081.704146 +1081.737546 +1081.776607 +1081.817599 +1081.835315 +1081.876207 +1081.932052 +1081.975408 +1082.033184 +1082.087995 +1082.131519 +1082.171312 +1082.197819 +1082.272311 +1082.310373 +1082.424858 +1082.482734 +1082.638844 +1082.694222 +1082.740342 +1082.777139 +1082.819497 +1082.856393 +1082.890525 +1082.926156 +1082.984065 +1083.026156 +1083.102014 +1083.144238 +1083.208707 +1083.339776 +1083.375307 +1083.423226 +1083.477904 +1083.512170 +1083.634747 +1083.667681 +1083.713102 +1083.810871 +1083.865849 +1083.918496 +1083.960887 +1084.007474 +1084.065050 +1084.107274 +1084.187494 +1084.221227 +1084.261387 +1084.316198 +1084.354127 +1084.448066 +1084.499781 +1084.554094 +1084.606907 +1084.817630 +1084.843637 +1084.882898 +1084.942372 +1084.994286 +1085.044203 +1085.102911 +1085.138875 +1085.186694 +1085.244336 +1085.292355 +1085.344569 +1085.415531 +1085.455058 +1085.488658 +1085.542537 +1085.598282 +1085.654392 +1085.699181 +1085.734079 +1085.790056 +1085.841571 +1085.919360 +1085.971242 +1086.047432 +1086.103210 +1086.137442 +1086.165947 +1086.208204 +1086.266479 +1086.284661 +1086.376769 +1086.408204 +1086.467811 +1086.582763 +1086.683395 +1086.725154 +1086.806173 +1086.889889 +1086.979166 +1087.072906 +1087.187058 +1087.234311 +1087.308403 +1087.372506 +1087.504507 +1087.610401 +1087.656754 +1087.725719 +1087.795849 +1087.871440 +1087.946098 +1088.003108 +1088.099711 +1088.154490 +1088.204673 +1088.245565 +1088.307337 +1088.348962 +1088.403007 +1088.472904 +1088.535109 +1088.577633 +1088.703773 +1088.810966 +1088.850326 +1088.948195 +1089.017093 +1089.076134 +1089.133077 +1089.193316 +1089.239537 +1089.277366 +1089.318125 +1089.378265 +1089.417192 +1089.481195 +1089.529047 +1089.596246 +1089.660782 +1089.705304 +1089.773835 +1089.843898 +1089.914528 +1089.973236 +1090.007635 +1090.051224 +1090.080994 +1090.120855 +1090.162813 +1090.218024 +1090.248227 +1090.293282 +1090.399542 +1090.497045 +1090.545463 +1090.652123 +1090.714594 +1090.796778 +1090.896178 +1090.964244 +1091.024084 +1091.186288 +1091.232342 +1091.277763 +1091.326914 +1091.375465 +1091.422651 +1091.478296 +1091.532775 +1091.584822 +1091.638569 +1091.691815 +1091.817922 +1091.872235 +1091.924616 +1091.965009 +1092.029311 +1092.114193 +1092.168671 +1092.214226 +1092.270936 +1092.308931 +1092.359247 +1092.405967 +1092.441665 +1092.512161 +1092.558481 +1092.650556 +1092.692447 +1092.741598 +1092.790183 +1092.839933 +1092.939966 +1092.977262 +1093.067105 +1093.125347 +1093.163975 +1093.202603 +1093.247525 +1093.297708 +1093.368404 +1093.431108 +1093.482889 +1093.529642 +1093.582057 +1093.641297 +1093.801370 +1093.855316 +1093.911593 +1093.953651 +1093.989815 +1094.030041 +1094.077927 +1094.169635 +1094.229309 +1094.277427 +1094.356848 +1094.469035 +1094.564673 +1094.647290 +1094.716354 +1094.770767 +1094.851253 +1094.896274 +1094.934136 +1094.969068 +1095.019618 +1095.066138 +1095.154649 +1095.302501 +1095.407629 +1095.470899 +1095.531039 +1095.586017 +1095.635002 +1095.682421 +1095.770000 +1095.839530 +1095.992644 +1096.027842 +1096.075028 +1096.136699 +1096.173196 +1096.225477 +1096.276126 +1096.323679 +1096.365037 +1096.442227 +1096.476126 +1096.515454 +1096.561474 +1096.626775 +1096.679523 +1096.724478 +1096.774761 +1096.808693 +1096.848720 +1096.900402 +1096.947654 +1096.994208 +1097.027841 +1097.060508 +1097.097937 +1097.130038 +1097.223412 +1097.258676 +1097.310491 +1097.400168 +1097.437764 +1097.481120 +1097.518849 +1097.613887 +1097.661440 +1097.755612 +1097.791343 +1097.820247 +1097.845922 +1097.891243 +1097.929438 +1098.006927 +1098.064836 +1098.279388 +1098.330836 +1098.383917 +1098.442391 +1098.492574 +1098.522445 +1098.561672 +1098.594739 +1098.641259 +1098.712088 +1098.767599 +1098.791875 +1098.848285 +1098.886880 +1098.918548 +1098.968498 +1099.003829 +1099.057376 +1099.147386 +1099.190110 +1099.226007 +1099.258807 +1099.303263 +1099.361172 +1099.404795 +1099.496969 +1099.552713 +1099.607092 +1099.646086 +1099.712920 +1099.755211 +1099.808024 +1099.848550 +1099.909556 +1099.939493 +1099.977588 +1100.024474 +1100.071061 +1100.244954 +1100.292673 +1100.343622 +1100.381917 +1100.440192 +1100.543988 +1100.577354 +1100.643288 +1100.686345 +1100.720311 +1100.768396 +1100.823641 +1100.897167 +1100.924174 +1100.960404 +1101.004127 +1101.052345 +1101.086178 +1101.125506 +1101.182215 +1101.230068 +1101.335595 +1101.371160 +1101.434530 +1101.476121 +1101.499365 +1101.577886 +1101.604360 +1101.656541 +1101.707523 +1101.764999 +1101.852378 +1101.935561 +1101.969527 +1102.047816 +1102.100663 +1102.196001 +1102.269993 +1102.301229 +1102.367196 +1102.406024 +1102.439623 +1102.482048 +1102.538158 +1102.551878 +1102.604392 +1102.643519 +1102.697865 +1102.747915 +1102.864298 +1102.914848 +1102.958504 +1103.036026 +1103.072057 +1103.106256 +1103.194435 +1103.232796 +1103.289106 +1103.333862 +1103.380149 +1103.416279 +1103.450911 +1103.518477 +1103.602027 +1103.690704 +1103.809186 +1103.844950 +1103.885743 +1103.933162 +1103.975553 +1104.084943 +1104.137757 +1104.216844 +1104.302359 +1104.335093 +1104.370357 +1104.444184 +1104.518709 +1104.600660 +1104.652009 +1104.696631 +1104.727966 +1104.783744 +1104.835692 +1104.872755 +1105.008552 +1105.051009 +1105.129997 +1105.197829 +1105.248112 +1105.297396 +1105.355172 +1105.413147 +1105.467060 +1105.501958 +1105.554639 +1105.601958 +1105.648578 +1105.691235 +1105.726866 +1105.799494 +1105.932361 +1105.961831 +1106.228864 +1106.258800 +1106.302823 +1106.344148 +1106.490602 +1106.651041 +1106.699826 +1106.761730 +1106.912313 +1106.976982 +1107.038886 +1107.128596 +1107.208117 +1107.293631 +1107.377547 +1107.439618 +1107.468057 +1107.596195 +1107.652272 +1107.696162 +1107.748509 +1107.879844 +1107.956534 +1108.053038 +1108.204519 +1108.266957 +1108.315508 +1108.554436 +1108.602088 +1108.660696 +1108.711512 +1108.760263 +1108.803986 +1108.834555 +1108.965458 +1109.012910 +1109.065025 +1109.130359 +1109.160263 +1109.347509 +1109.399124 +1109.492131 +1109.542513 +1109.630692 +1109.715873 +1109.779743 +1109.820335 +1109.864891 +1109.889566 +1109.947075 +1109.984804 +1110.054501 +1110.101820 +1110.137418 +1110.188134 +1110.343212 +1110.534987 +1110.585236 +1110.643378 +1110.698623 +1110.756964 +1110.803984 +1110.845376 +1110.881773 +1110.936951 +1111.033921 +1111.069718 +1111.126328 +1111.154167 +1111.213308 +1111.266554 +1111.321966 +1111.441646 +1111.524263 +1111.584403 +1111.695358 +1111.781572 +1111.862458 +1111.945708 +1111.980506 +1112.108112 +1112.202418 +1112.257063 +1112.290929 +1112.323063 +1112.356363 +1112.420033 +1112.471615 +1112.506946 +1112.554066 +1112.600219 +1112.660026 +1112.760159 +1112.828091 +1112.951301 +1113.066453 +1113.134118 +1113.188098 +1113.247005 +1113.365120 +1113.441977 +1113.504647 +1113.643908 +1113.712672 +1113.768084 +1113.837514 +1113.897920 +1113.959092 +1114.011473 +1114.050734 +1114.099252 +1114.144474 +1114.224493 +1114.269715 +1114.353797 +1114.476941 +1114.548569 +1114.631120 +1114.716334 +1114.779238 +1114.856328 +1114.932318 +1114.995522 +1115.047703 +1115.115402 +1115.158026 +1115.187596 +1115.337479 +1115.402381 +1115.474775 +1115.515867 +1115.664685 +1115.766050 +1115.848035 +1115.956859 +1116.001448 +1116.088061 +1116.137911 +1116.208075 +1116.279736 +1116.342540 +1116.444471 +1116.510672 +1116.566449 +1116.609439 +1116.727388 +1116.849366 +1116.891424 +1116.943505 +1116.992256 +1117.048134 +1117.149332 +1117.269945 +1117.482565 +1117.730218 +1117.811503 +1117.890757 +1117.934280 +1118.052162 +1118.162585 +1118.195752 +1118.260487 +1118.326387 +1118.429651 +1118.486028 +1118.545701 +1118.599447 +1118.864416 +1118.966413 +1119.080599 +1119.198481 +1119.257855 +1119.307439 +1119.403110 +1119.435411 +1119.499347 +1119.536443 +1119.687292 +1119.810402 +1119.895816 +1119.923222 +1119.990189 +1120.028950 +1120.115130 +1120.260718 +1120.428783 +1120.544267 +1120.676968 +1120.754757 +1120.805406 +1120.948962 +1121.039738 +1121.109801 +1121.180930 +1121.284526 +1121.363481 +1121.416528 +1121.451659 +1121.553357 +1121.610334 +1121.655588 +1121.830546 +1121.926717 +1122.025018 +1122.111399 +1122.203573 +1122.245731 +1122.292284 +1122.335141 +1122.660382 +1122.890053 +1122.994248 +1123.045330 +1123.104138 +1123.198910 +1123.261514 +1123.362879 +1123.450891 +1123.517857 +1123.614594 +1123.684857 +1123.779096 +1123.810431 +1123.877364 +1124.015493 +1124.200541 +1124.316991 +1124.437204 +1124.611596 +1124.764510 +1124.879161 +1124.929877 +1124.981659 +1125.041099 +1125.117823 +1125.192215 +1125.259248 +1125.399407 +1125.439034 +1125.502837 +1125.563643 +1125.628378 +1125.676030 +1125.946660 +1126.003436 +1126.119353 +1126.176763 +1126.276063 +1126.360179 +1126.425880 +1126.588484 +1126.844927 +1127.151021 +1127.202136 +1127.268736 +1127.339365 +1127.464141 +1127.517620 +1127.626312 +1127.706565 +1127.779025 +1127.848589 +1128.042428 +1128.245159 +1128.442994 +1128.516154 +1128.591112 +1128.631872 +1128.679024 +1128.710992 +1128.748688 +1128.824679 +1128.853283 +1128.903700 +1128.961309 +1129.039164 +1129.237132 +1129.436033 +1129.613422 +1129.692843 +1129.755347 +1129.816719 +1129.865237 +1129.905597 +1130.096306 +1130.130139 +1130.204631 +1130.353515 +1130.447987 +1130.602133 +1130.717451 +1130.799002 +1130.848386 +1130.890810 +1130.935699 +1130.950284 +1131.119248 +1131.286814 +1131.386481 +1131.474260 +1131.518182 +1131.574559 +1131.769298 +1132.003430 +1132.086747 +1132.156743 +1132.314818 +1132.551248 +1132.797535 +1132.837628 +1133.025540 +1133.103029 +1133.328337 +1133.427005 +1133.486679 +1133.648383 +1133.807857 +1133.940458 +1134.010188 +1134.062869 +1134.341090 +1134.784646 +1134.864533 +1135.008555 +1135.115248 +1135.254476 +1135.353876 +1135.419877 +1135.496467 +1135.568395 +1135.674589 +1135.717479 +1135.763400 +1135.825771 +1135.935494 +1135.995567 +1136.136160 +1136.567728 +1136.645617 +1136.809286 +1137.006922 +1137.061400 +1137.225969 +1137.396365 +1137.479482 +1137.547714 +1137.782146 +1137.895132 +1138.062465 +1138.108785 +1138.164596 +1138.513480 +1138.666693 +1138.782045 +1138.851242 +1138.896230 +1138.946014 +1139.012647 +1139.136257 +1139.190436 +1139.262131 +1139.377349 +1139.489370 +1139.707718 +1140.030362 +1140.194431 +1140.271620 +1140.392533 +1140.457601 +1140.502822 +1140.563162 +1140.637820 +1140.695296 +1140.725866 +1141.305385 +1141.386538 +1141.533091 +1141.603953 +1141.686271 +1141.776214 +1141.879777 +1142.005385 +1142.383207 +1142.708314 +1142.832956 +1143.088267 +1143.177178 +1143.284904 +1143.368920 +1143.531957 +1143.599456 +1144.020568 +1144.188499 +1144.334154 +1144.423165 +1144.577077 +1144.652069 +1144.730990 +1144.796224 +1144.852235 +1144.924429 +1145.014806 +1145.205648 +1145.453200 +1145.513007 +1145.622930 +1145.805381 +1145.855264 +1145.932687 +1146.002650 +1146.064488 +1146.103915 +1146.454897 +1146.603948 +1146.684767 +1146.842276 +1147.074644 +1147.427158 +1147.522695 +1148.028422 +1148.116001 +1148.343241 +1148.849068 +1148.944272 +1149.359290 +1149.378271 +1149.412337 +1149.555727 +1149.623126 +1149.680469 +1149.783466 +1150.225057 +1150.346868 +1150.401114 +1150.473342 +1150.533382 +1150.592755 +1150.730318 +1150.800481 +1150.886528 +1150.959089 +1151.234513 +1151.379868 +1151.495618 +1151.547400 +1151.603977 +1151.659521 +1151.779101 +1151.940739 +1152.057989 +1152.213067 +1152.432614 +1152.496783 +1152.551894 +1152.699746 +1152.912833 +1152.999047 +1153.092487 +1153.222357 +1153.987091 +1154.058686 +1154.200211 +1154.280564 +1154.410567 +1154.472705 +1154.622888 +1154.697480 +1154.743734 +1154.852325 +1154.951326 +1155.619024 +1155.970039 +1156.075933 +1156.135674 +1156.190019 +1156.306103 +1156.360315 +1156.426150 +1156.642167 +1156.671371 +1156.698244 +1156.802173 +1157.024417 +1157.548326 +1157.693647 +1158.417889 +1158.511096 +1158.593447 +1158.742997 +1158.911795 +1159.033340 +1159.333240 +1159.440932 +1159.630309 +1159.703869 +1159.834205 +1159.913925 +1159.987651 +1160.107997 +1160.214757 +1160.414257 +1161.127277 +1161.278626 +1161.332771 +1161.399638 +1161.536434 +1162.379424 +1162.556180 +1162.697772 +1162.806996 +1162.957678 +1163.017951 +1163.068234 +1163.207728 +1163.254315 +1163.336632 +1163.362040 +1163.471697 +1163.559576 +1163.621014 +1164.291443 +1164.514853 +1164.639295 +1164.899867 +1165.122944 +1165.900965 +1165.930835 +1165.999034 +1166.095837 +1166.189443 +1166.396536 +1166.561637 +1167.313684 +1167.391140 +1168.433197 +1168.645285 +1168.724539 +1169.015414 +1169.845117 +1169.992936 +1170.190438 +1171.713980 +1172.991235 +1174.196861 +1174.289402 +1174.700524 +1175.558998 +1175.746177 +1175.851372 +1177.042846 +1177.428693 +1178.030723 +1178.032055 +1178.189864 +1179.331155 +1179.553899 +1179.722130 +1179.996855 +1180.921929 +1180.985965 +1181.319065 +1181.384400 +1181.537846 +1181.656960 +1181.763886 +1182.304678 +1182.476040 +1182.578438 +1182.726656 +1182.798118 +1182.938744 +1183.126522 +1183.514601 +1183.768979 +1183.928287 +1184.078869 +1184.171010 +1184.253061 +1184.600347 +1184.784463 +1184.853227 +1184.942138 +1185.024589 +1185.094686 +1185.253060 +1185.312068 +1185.400013 +1185.439174 +1185.493819 +1185.547233 +1185.587592 +1185.628551 +1185.686560 +1185.729650 +1185.790889 +1185.868311 +1185.933379 +1186.051761 +1186.086060 +1186.188957 +1186.259586 +1186.316762 +1186.366712 +1186.407705 +1186.454591 +1186.488890 +1186.558087 +1186.710701 +1186.719992 +1186.792486 +1186.984294 +1187.094650 +1187.158520 +1187.202043 +1187.279565 +1187.350561 +1187.392985 +1187.437141 +1187.492985 +1187.673871 +1187.828316 +1188.126517 +1188.169075 +1188.228082 +1188.386990 +1188.431612 +1189.705071 +1189.837372 +1189.928214 +1190.026649 +1190.911430 +1190.954154 +1191.003871 +1191.055685 +1191.132475 +1191.225382 +1191.275066 +1191.382691 +1191.652188 +1191.737536 +1192.330609 +1192.724248 +1193.395643 +1197.351750 +1197.760607 +1198.346521 +1198.913253 +1199.318181 +1199.562004 +1199.867398 +1200.673325 +1200.880917 +1201.045952 +1201.194536 +1201.376421 +1201.487543 +1201.566631 +1201.691006 +1201.808555 +1202.314748 +1202.413183 +1202.496300 +1202.673656 +1203.121308 +1203.519809 +1203.590138 +1203.756372 +1203.828833 +1203.946648 +1204.183478 +1204.344184 +1205.167892 +1205.396797 +1205.553806 +1205.690003 +1205.828198 +1205.993399 +1206.810448 +1206.938320 +1207.249142 +1207.432093 +1207.848742 +1208.273417 +1209.542047 +1209.779609 +1210.111510 +1210.887234 +1211.435419 +1211.472215 +1213.352000 +1213.715769 +1218.006541 +1218.171109 +1218.366148 +1218.458122 +1218.979001 +1220.022423 +1221.935974 +1222.047163 +1222.332977 +1222.378431 +1222.441102 +1222.479297 +1222.539836 +1222.590885 +1222.643832 +1222.739536 +1222.806436 +1222.872803 +1222.923086 +1223.004971 +1223.081694 +1223.163512 +1223.269040 +1223.348094 +1223.465909 +1223.596512 +1223.707368 +1223.793548 +1224.257584 +1224.320021 +1224.413461 +1224.549391 +1224.645562 +1224.765442 +1224.788019 +1224.832475 +1224.912461 +1225.107166 +1225.276430 +1231.458709 +1231.619814 +1231.762738 +1231.869730 +1231.992108 +1232.149783 +1232.370696 +1232.574625 +1234.718412 +1234.939691 +1235.218878 +1235.384479 +1235.456274 +1235.599663 +1235.849314 +1237.093468 +1237.263831 +1237.364497 +1237.519608 +1238.091336 +1239.434059 +1240.016342 +1240.249276 +1242.924997 +1243.137818 +1243.899189 +1244.388799 +1244.534120 +1245.054166 +1255.079897 +1255.885191 +1256.842133 +1256.873368 +1259.478627 +1259.612460 +1259.689216 +1262.074429 +1262.125211 +1262.180056 +1262.310393 +1262.359077 +1262.432803 +1262.536167 +1262.580256 +1262.646589 +1262.730306 +1263.111324 +1263.164871 +1263.250385 +1270.135260 +1274.273185 +1274.542981 +1274.847576 +1274.916740 +1275.012744 +1275.070620 +1275.139517 +1275.559330 +1275.733356 +1275.820969 +1275.880209 +1276.114308 +1277.432589 +1277.502052 +1277.659595 +1277.782572 +1278.044609 +1278.323264 +1278.377310 +1278.442944 +1279.282204 +1279.375244 +1279.434418 +1279.563988 +1279.719200 +1279.797288 +1279.871481 +1279.906579 +1280.170781 +1280.352999 +1280.493092 +1280.741110 +1280.924260 +1280.974943 +1281.026425 +1281.098186 +1281.145039 +1281.234450 +1281.292059 +1281.346870 +1281.434183 +1281.634349 +1281.713836 +1281.754729 +1281.879904 +1281.991891 +1282.069880 +1282.414169 +1282.530785 +1282.649666 +1282.832617 +1282.880702 +1282.978271 +1283.040742 +1283.113003 +1283.161188 +1283.249666 +1283.333648 +1283.422193 +1283.554427 +1283.611071 +1283.655593 +1283.782399 +1283.859688 +1283.908972 +1283.981566 +1284.006874 +1284.075506 +1284.172475 +1284.281000 +1284.334147 +1284.456325 +1284.600613 +1284.678569 +1284.722991 +1284.764583 +1284.823224 +1284.878335 +1284.972208 +1285.031282 +1285.194919 +1285.264882 +1285.380366 +1285.426220 +1285.502344 +1285.595484 +1285.665414 +1285.740772 +1285.801012 +1285.889723 +1285.918261 +1285.974305 +1286.016330 +1286.069377 +1286.108005 +1286.154158 +1286.216662 +1286.280132 +1286.319793 +1286.377168 +1286.427718 +1286.471141 +1286.512833 +1286.577301 +1286.644468 +1286.711634 +1286.814164 +1286.869509 +1286.957288 +1287.028516 +1287.101976 +1287.147531 +1287.189256 +1287.249595 +1287.297181 +1287.344267 +1287.380231 +1287.445899 +1287.485126 +1287.563348 +1287.628083 +1287.669874 +1287.695782 +1287.779598 +1287.821523 +1287.873937 +1287.934676 +1287.980663 +1288.022588 +1288.065046 +1288.106537 +1288.144766 +1288.194150 +1288.251426 +1288.284859 +1288.338538 +1288.412398 +1288.519557 +1288.573070 +1288.625385 +1288.741036 +1288.847962 +1288.889420 +1288.927416 +1288.987555 +1289.052557 +1289.102840 +1289.212231 +1289.261481 +1289.351558 +1289.420023 +1289.507435 +1289.575633 +1289.652157 +1289.727182 +1289.796912 +1289.833908 +1289.926715 +1289.961614 +1290.091117 +1290.131677 +1290.197911 +1290.306668 +1290.374700 +1290.428680 +1290.482792 +1290.536139 +1290.600607 +1290.657517 +1290.695779 +1290.731243 +1290.761913 +1290.806302 +1290.860381 +1290.902139 +1290.997444 +1291.038969 +1291.111796 +1291.150757 +1291.215592 +1291.251423 +1291.322385 +1291.411263 +1291.456417 +1291.493947 +1291.526347 +1291.625348 +1291.671402 +1291.706401 +1291.773766 +1291.829644 +1291.862844 +1291.918888 +1291.967539 +1292.021985 +1292.071036 +1292.109031 +1292.167039 +1292.215891 +1292.266440 +1292.303969 +1292.352121 +1292.432407 +1292.465641 +1292.506300 +1292.539067 +1292.583722 +1292.693512 +1292.741331 +1292.781558 +1292.815723 +1292.896642 +1292.994711 +1293.029643 +1293.069936 +1293.104901 +1293.156183 +1293.189682 +1293.288051 +1293.339166 +1293.411694 +1293.472699 +1293.517221 +1293.561777 +1293.643462 +1293.694910 +1293.735070 +1293.790015 +1293.823481 +1293.866405 +1293.898939 +1293.951653 +1294.002236 +1294.053018 +1294.093911 +1294.152519 +1294.199472 +1294.250953 +1294.295242 +1294.335003 +1294.384153 +1294.493044 +1294.542262 +1294.572365 +1294.621483 +1294.678858 +1294.745225 +1294.805099 +1294.877160 +1294.911226 +1294.951252 +1295.018752 +1295.064805 +1295.123880 +1295.168135 +1295.240396 +1295.279257 +1295.338198 +1295.419117 +1295.495741 +1295.552151 +1295.592377 +1295.650719 +1295.684785 +1295.735867 +1295.779723 +1295.808861 +1295.846956 +1295.877991 +1295.930139 +1295.977392 +1296.008827 +1296.057978 +1296.109593 +1296.178191 +1296.231837 +1296.264438 +1296.324877 +1296.357445 +1296.404398 +1296.445090 +1296.486116 +1296.544491 +1296.607461 +1296.656845 +1296.707161 +1296.767934 +1296.806695 +1296.836932 +1296.872829 +1296.898736 +1296.935733 +1296.971464 +1297.001434 +1297.027208 +1297.060308 +1297.081920 +1297.130005 +1297.181020 +1297.230105 +1297.272329 +1297.324810 +1297.365203 +1297.395106 +1297.421746 +1297.444357 +1297.485183 +1297.531703 +1297.572362 +1297.600800 +1297.681753 +1297.733268 +1297.761340 +1297.797603 +1297.850084 +1297.892875 +1298.067933 +1298.124210 +1298.161206 +1298.215219 +1298.276590 +1298.340760 +1298.473227 +1298.521279 +1298.550716 +1298.583150 +1298.633733 +1298.677955 +1298.734465 +1298.823043 +1298.869963 +1298.924275 +1298.985514 +1299.036763 +1299.097702 +1299.136097 +1299.186480 +1299.245487 +1299.285814 +1299.317182 +1299.350049 +1299.375590 +1299.458740 +1299.507858 +1299.556776 +1299.604594 +1299.751780 +1299.795903 +1299.839293 +1299.943988 +1300.004561 +1300.040924 +1300.091507 +1300.137794 +1300.168830 +1300.205659 +1300.242223 +1300.295236 +1300.331800 +1300.395070 +1300.452579 +1300.488976 +1300.515716 +1300.552013 +1300.703694 +1300.799065 +1300.835762 +1300.873691 +1300.926704 +1300.970594 +1300.998865 +1301.027337 +1301.070893 +1301.109788 +1301.165465 +1301.219678 +1301.319045 +1301.365931 +1301.399731 +1301.444153 +1301.483214 +1301.536261 +1301.605159 +1301.661569 +1301.738026 +1301.780816 +1301.805991 +1301.831665 +1301.879451 +1301.921908 +1301.965598 +1302.019510 +1302.054842 +1302.107256 +1302.140689 +1302.194502 +1302.236726 +1302.283879 +1302.335095 +1302.372790 +1302.404359 +1302.432930 +1302.472790 +1302.521908 +1302.556573 +1302.616579 +1302.666030 +1302.706123 +1302.739956 +1302.791171 +1302.830632 +1302.869959 +1302.953908 +1302.998963 +1303.032230 +1303.072823 +1303.136659 +1303.189806 +1303.243852 +1303.288607 +1303.330864 +1303.394467 +1303.437491 +1303.470758 +1303.511151 +1303.572056 +1303.624304 +1303.669858 +1303.714281 +1303.790071 +1303.844617 +1303.884777 +1303.937124 +1303.987241 +1304.024104 +1304.071590 +1304.121107 +1304.151010 +1304.152176 +1304.193667 +1304.225802 +1304.251909 +1304.309218 +1304.353108 +1304.400361 +1304.444117 +1304.521872 +1304.549711 +1304.609251 +1304.651909 +1304.694400 +1304.740254 +1304.775019 +1304.809917 +1304.854739 +1304.944915 +1304.996664 +1305.034492 +1305.102491 +1305.145248 +1305.192634 +1305.248145 +1305.295631 +1305.333760 +1305.414912 +1305.467492 +1305.515178 +1305.567692 +1305.609350 +1305.652274 +1305.725168 +1305.757768 +1305.787006 +1305.844415 +1305.875850 +1305.901425 +1305.949477 +1305.988737 +1306.030162 +1306.083542 +1306.123869 +1306.189370 +1306.224868 +1306.266126 +1306.306386 +1306.363096 +1306.410548 +1306.445813 +1306.509649 +1306.553006 +1306.601590 +1306.647611 +1306.693965 +1306.737554 +1306.783508 +1306.816542 +1306.866092 +1306.898160 +1306.931627 +1306.988004 +1307.028263 +1307.072952 +1307.114410 +1307.154637 +1307.185606 +1307.234790 +1307.283708 +1307.427797 +1307.471353 +1307.514676 +1307.559498 +1307.620537 +1307.661596 +1307.711180 +1307.741116 +1307.768123 +1307.798293 +1307.843381 +1307.926930 +1307.964293 +1308.011113 +1308.040617 +1308.078579 +1308.117973 +1308.160597 +1308.194030 +1308.237120 +1308.278279 +1308.333390 +1308.375182 +1308.438019 +1308.474715 +1308.539218 +1308.575914 +1308.629560 +1308.667223 +1308.706617 +1308.782807 +1308.869387 +1308.913143 +1308.960229 +1308.993729 +1309.062094 +1309.096393 +1309.130526 +1309.181008 +1309.224132 +1309.273949 +1309.330459 +1309.385903 +1309.476846 +1309.517072 +1309.570119 +1309.672483 +1309.718670 +1309.768354 +1309.801987 +1309.838983 +1309.871384 +1309.896059 +1309.931058 +1309.979276 +1310.068687 +1310.112909 +1310.157864 +1310.243312 +1310.285470 +1310.315007 +1310.359895 +1310.388333 +1310.424364 +1310.453734 +1310.483605 +1310.518303 +1310.590764 +1310.627194 +1310.675979 +1310.718270 +1310.755965 +1310.810344 +1310.856631 +1310.900820 +1310.957264 +1311.000154 +1311.039315 +1311.074680 +1311.107314 +1311.148872 +1311.198223 +1311.240647 +1311.272348 +1311.352202 +1311.399421 +1311.441745 +1311.474013 +1311.522065 +1311.557030 +1311.586101 +1311.624596 +1311.707713 +1311.740047 +1311.808978 +1311.859361 +1311.914839 +1311.963823 +1312.019068 +1312.081638 +1312.121398 +1312.158128 +1312.187432 +1312.202684 +1312.247406 +1312.295158 +1312.327759 +1312.366120 +1312.407013 +1312.452833 +1312.489930 +1312.535451 +1312.585700 +1312.686499 +1312.725527 +1312.767452 +1312.823562 +1312.860359 +1312.901917 +1312.947538 +1312.978008 +1313.036782 +1313.082403 +1313.119066 +1313.161890 +1313.212773 +1313.243309 +1313.283369 +1313.321364 +1313.368084 +1313.460724 +1313.491960 +1313.507444 +1313.549469 +1313.592326 +1313.628024 +1313.679672 +1313.718466 +1313.763521 +1313.818999 +1313.859858 +1313.893525 +1313.925293 +1313.964753 +1314.015269 +1314.067417 +1314.108143 +1314.153298 +1314.260923 +1314.312006 +1314.349535 +1314.410440 +1314.465086 +1314.514170 +1314.554063 +1314.609708 +1314.643241 +1314.679005 +1314.708842 +1314.820397 +1314.860224 +1314.884066 +1314.939677 +1315.000883 +1315.037113 +1315.082867 +1315.126790 +1315.161688 +1315.199051 +1315.270413 +1315.332151 +1315.362721 +1315.401615 +1315.496986 +1315.531552 +1315.578105 +1315.609573 +1315.655860 +1315.694122 +1315.736047 +1315.776140 +1315.811505 +1315.857392 +1315.906376 +1315.945903 +1315.989027 +1316.035847 +1316.119696 +1316.177372 +1316.225290 +1316.317931 +1316.366249 +1316.404478 +1316.441474 +1316.491591 +1316.538077 +1316.594188 +1316.628154 +1316.706908 +1316.748467 +1316.789725 +1316.828353 +1316.868047 +1316.897318 +1316.933149 +1316.974307 +1317.021560 +1317.057291 +1317.082666 +1317.139708 +1317.192422 +1317.227620 +1317.324124 +1317.375872 +1317.418463 +1317.466082 +1317.520161 +1317.567680 +1317.604077 +1317.631216 +1317.664283 +1317.696085 +1317.784330 +1317.820693 +1317.868945 +1317.910770 +1317.947899 +1317.982432 +1318.029917 +1318.080134 +1318.112102 +1318.167080 +1318.249198 +1318.279801 +1318.314433 +1318.354759 +1318.392188 +1318.430083 +1318.468612 +1318.503443 +1318.579900 +1318.628352 +1318.653060 +1318.701478 +1318.750030 +1318.782930 +1318.823356 +1318.872041 +1318.908438 +1318.962284 +1318.999380 +1319.055324 +1319.090323 +1319.132913 +1319.187159 +1319.224755 +1319.263582 +1319.352294 +1319.391221 +1319.426952 +1319.461484 +1319.485460 +1319.520825 +1319.627518 +1319.665613 +1319.705507 +1319.753625 +1319.802010 +1319.836576 +1319.887425 +1319.923156 +1319.969143 +1320.018660 +1320.062316 +1320.118560 +1320.169775 +1320.217095 +1320.247331 +1320.292852 +1320.335609 +1320.381463 +1320.419692 +1320.469309 +1320.513898 +1320.562749 +1320.611500 +1320.650927 +1320.701077 +1320.740204 +1320.807370 +1320.841470 +1320.907370 +1320.956854 +1321.006238 +1321.030880 +1321.068842 +1321.081629 +1321.103474 +1321.141036 +1321.173904 +1321.245598 +1321.292785 +1321.333677 +1321.373304 +1321.408569 +1321.452225 +1321.476734 +1321.512265 +1321.550027 +1321.604006 +1321.640603 +1321.690553 +1321.730546 +1321.761582 +1321.798778 +1321.834143 +1321.866077 +1321.900276 +1321.937939 +1321.966510 +1321.999477 +1322.085291 +1322.155954 +1322.204472 +1322.261648 +1322.300542 +1322.331811 +1322.373403 +1322.487455 +1322.521754 +1322.555254 +1322.592517 +1322.646929 +1322.734675 +1322.817292 +1322.862713 +1322.909799 +1322.964911 +1323.013196 +1323.050558 +1323.097578 +1323.150858 +1323.197411 +1323.248327 +1323.292816 +1323.373135 +1323.415993 +1323.455153 +1323.478563 +1323.514860 +1323.550658 +1323.590085 +1323.619056 +1323.665243 +1323.727880 +1323.775466 +1323.840301 +1323.879662 +1323.965476 +1324.018822 +1324.057484 +1324.094114 +1324.157051 +1324.217257 +1324.245396 +1324.285689 +1324.319155 +1324.362079 +1324.409165 +1324.452622 +1324.491649 +1324.542265 +1324.611363 +1324.680660 +1324.726281 +1324.771935 +1324.829711 +1324.878329 +1324.913494 +1324.952421 +1324.990350 +1325.019521 +1325.055152 +1325.093347 +1325.165308 +1325.191082 +1325.224682 +1325.249324 +1325.287153 +1325.418555 +1325.454219 +1325.505301 +1325.560313 +1325.622617 +1325.659713 +1325.700972 +1325.732940 +1325.763842 +1325.815824 +1325.850322 +1325.870702 +1325.912527 +1325.946426 +1325.975897 +1326.041831 +1326.086519 +1326.137602 +1326.211494 +1326.259713 +1326.395077 +1326.455483 +1326.498873 +1326.546659 +1326.594444 +1326.629842 +1326.680425 +1326.733738 +1326.775663 +1326.827844 +1326.888283 +1326.931807 +1326.979792 +1327.042729 +1327.083155 +1327.097840 +1327.144294 +1327.188083 +1327.242129 +1327.332006 +1327.411726 +1327.470068 +1327.509095 +1327.555183 +1327.601203 +1327.697340 +1327.734004 +1327.778759 +1327.851486 +1327.888815 +1327.932205 +1327.976960 +1328.039464 +1328.097107 +1328.132172 +1328.177426 +1328.231739 +1328.266704 +1328.324113 +1328.436900 +1328.521782 +1328.576027 +1328.614289 +1328.660976 +1328.705664 +1328.748355 +1328.803100 +1328.864106 +1328.900236 +1328.970732 +1329.007595 +1329.053982 +1329.093376 +1329.152417 +1329.195274 +1329.268767 +1329.316186 +1329.463139 +1329.504664 +1329.534035 +1329.583186 +1329.628873 +1329.668967 +1329.713822 +1329.769533 +1329.808360 +1329.863938 +1329.915520 +1329.968500 +1330.015253 +1330.093009 +1330.198903 +1330.259742 +1330.317418 +1330.357877 +1330.401234 +1330.441560 +1330.486082 +1330.517884 +1330.565769 +1330.629339 +1330.721047 +1330.776758 +1330.811789 +1330.873894 +1330.913521 +1330.957277 +1331.002865 +1331.048286 +1331.093740 +1331.132635 +1331.206294 +1331.239028 +1331.274659 +1331.300134 +1331.341825 +1331.387247 +1331.430304 +1331.480553 +1331.533833 +1331.570863 +1331.623377 +1331.689444 +1331.724676 +1331.779920 +1331.815751 +1331.846420 +1331.887446 +1331.927106 +1331.977689 +1332.014053 +1332.051748 +1332.078355 +1332.111622 +1332.179753 +1332.286480 +1332.354112 +1332.451248 +1332.508158 +1332.548651 +1332.603429 +1332.643589 +1332.695504 +1332.737395 +1332.776856 +1332.810156 +1332.858541 +1332.927305 +1333.013985 +1333.067232 +1333.114351 +1333.148317 +1333.221777 +1333.261337 +1333.308757 +1333.401097 +1333.449183 +1333.482449 +1333.535929 +1333.572160 +1333.618380 +1333.666032 +1333.725007 +1333.798366 +1333.863168 +1333.916715 +1333.950814 +1333.985113 +1334.025939 +1334.070328 +1334.124407 +1334.166898 +1334.230168 +1334.279318 +1334.350414 +1334.388143 +1334.437260 +1334.475156 +1334.505658 +1334.543953 +1334.587710 +1334.645885 +1334.676521 +1334.729834 +1334.764233 +1334.850979 +1334.897033 +1334.941089 +1334.974689 +1335.018645 +1335.053310 +1335.160503 +1335.203993 +1335.277752 +1335.312484 +1335.362168 +1335.395168 +1335.414016 +1335.435195 +1335.482014 +1335.527003 +1335.584212 +1335.641555 +1335.688375 +1335.748581 +1335.802560 +1335.838724 +1335.878051 +1335.924971 +1335.975154 +1336.005457 +1336.054741 +1336.104791 +1336.151444 +1336.193036 +1336.219809 +1336.268993 +1336.316879 +1336.372123 +1336.417411 +1336.443019 +1336.489939 +1336.539556 +1336.592603 +1336.648114 +1336.705123 +1336.763998 +1336.925037 +1336.960734 +1337.000228 +1337.081314 +1337.163731 +1337.204091 +1337.311217 +1337.347181 +1337.389771 +1337.426068 +1337.470724 +1337.507454 +1337.547780 +1337.595332 +1337.648612 +1337.690371 +1337.731629 +1337.835625 +1337.914646 +1337.947247 +1337.972954 +1338.043284 +1338.082012 +1338.117809 +1338.161566 +1338.196963 +1338.228365 +1338.271555 +1338.340686 +1338.380014 +1338.414812 +1338.455338 +1338.476584 +1338.516610 +1338.565994 +1338.666427 +1338.700060 +1338.736357 +1338.807885 +1338.852341 +1338.936523 +1338.979580 +1339.023969 +1339.065694 +1339.117042 +1339.197762 +1339.232793 +1339.280246 +1339.314711 +1339.364794 +1339.406286 +1339.488371 +1339.516243 +1339.566393 +1339.593399 +1339.630562 +1339.668324 +1339.695763 +1339.740019 +1339.808217 +1339.846845 +1339.887238 +1339.922669 +1339.976549 +1340.004521 +1340.050974 +1340.146545 +1340.185506 +1340.254104 +1340.296395 +1340.340951 +1340.380012 +1340.412079 +1340.458566 +1340.495463 +1340.532759 +1340.575016 +1340.591034 +1340.631526 +1340.754137 +1340.795063 +1340.823101 +1340.870720 +1340.912778 +1340.987104 +1341.029728 +1341.064093 +1341.104020 +1341.145778 +1341.195395 +1341.234223 +1341.268489 +1341.309015 +1341.352538 +1341.396061 +1341.448209 +1341.497826 +1341.555335 +1341.599191 +1341.644879 +1341.680643 +1341.712844 +1341.767190 +1341.796261 +1341.832391 +1341.868988 +1341.894229 +1341.935488 +1341.991998 +1342.037586 +1342.100456 +1342.142780 +1342.183306 +1342.213743 +1342.261795 +1342.292630 +1342.334955 +1342.356466 +1342.393063 +1342.448275 +1342.490432 +1342.535088 +1342.586103 +1342.647042 +1342.691065 +1342.735853 +1342.800422 +1342.831791 +1342.865457 +1342.913842 +1342.948740 +1342.985703 +1343.008813 +1343.061594 +1343.096825 +1343.134821 +1343.173848 +1343.224864 +1343.253302 +1343.342979 +1343.419602 +1343.446009 +1343.477245 +1343.510378 +1343.536419 +1343.582905 +1343.617071 +1343.679309 +1343.716605 +1343.763158 +1343.793162 +1343.823764 +1343.848706 +1343.879409 +1343.909312 +1343.943345 +1343.970451 +1344.003251 +1344.025263 +1344.099289 +1344.166555 +1344.213607 +1344.265356 +1344.304716 +1344.350637 +1344.402152 +1344.440547 +1344.486967 +1344.517636 +1344.582039 +1344.624330 +1344.652402 +1344.687899 +1344.743311 +1344.768785 +1344.799921 +1344.885701 +1344.933387 +1344.985335 +1345.036351 +1345.070916 +1345.120433 +1345.158528 +1345.212175 +1345.236850 +1345.274612 +1345.321265 +1345.366487 +1345.391828 +1345.447606 +1345.503217 +1345.547972 +1345.611708 +1345.668251 +1345.729390 +1345.785501 +1345.830556 +1345.891095 +1345.933952 +1346.004382 +1346.058161 +1346.101584 +1346.132020 +1346.238947 +1346.303282 +1346.344308 +1346.410941 +1346.453632 +1346.503815 +1346.553998 +1346.583535 +1346.691494 +1346.744774 +1346.800918 +1346.918367 +1346.976309 +1347.018133 +1347.079738 +1347.118966 +1347.217367 +1347.260990 +1347.285999 +1347.332985 +1347.379438 +1347.415569 +1347.458459 +1347.482935 +1347.536947 +1347.621230 +1347.687730 +1347.713204 +1347.752931 +1347.784799 +1347.811806 +1347.852132 +1347.890960 +1347.928256 +1347.962122 +1347.987963 +1348.029255 +1348.066318 +1348.107943 +1348.150733 +1348.198119 +1348.246437 +1348.278239 +1348.323793 +1348.367782 +1348.412238 +1348.444106 +1348.481102 +1348.540809 +1348.587895 +1348.624559 +1348.676240 +1348.726290 +1348.835914 +1348.867249 +1348.970446 +1349.008241 +1349.058424 +1349.134049 +1349.171911 +1349.227955 +1349.274508 +1349.329020 +1349.370912 +1349.391724 +1349.429087 +1349.459956 +1349.508807 +1349.550765 +1349.588128 +1349.633582 +1349.672243 +1349.709573 +1349.752630 +1349.803678 +1349.854228 +1349.901181 +1349.990558 +1350.034814 +1350.094454 +1350.118696 +1350.191790 +1350.248833 +1350.326022 +1350.382832 +1350.453661 +1350.498616 +1350.541174 +1350.558256 +1350.626555 +1350.664683 +1350.687560 +1350.750064 +1350.790724 +1350.824756 +1350.890424 +1350.945902 +1351.036844 +1351.104543 +1351.150697 +1351.193254 +1351.240374 +1351.343171 +1351.411902 +1351.476737 +1351.531615 +1351.625555 +1351.677070 +1351.705541 +1351.738808 +1351.786927 +1351.846933 +1351.928418 +1351.979734 +1352.026820 +1352.059354 +1352.072940 +1352.130216 +1352.185994 +1352.213200 +1352.268411 +1352.300246 +1352.348131 +1352.395417 +1352.450296 +1352.564848 +1352.626786 +1352.684295 +1352.737309 +1352.759719 +1352.814065 +1352.863516 +1352.930449 +1352.975304 +1353.019459 +1353.091987 +1353.139040 +1353.193219 +1353.230748 +1353.281630 +1353.344334 +1353.387225 +1353.427351 +1353.475137 +1353.587224 +1353.641537 +1353.684927 +1353.745066 +1353.789722 +1353.841303 +1353.895483 +1353.929149 +1353.995949 +1354.031047 +1354.073937 +1354.118692 +1354.155556 +1354.214896 +1354.276335 +1354.309768 +1354.350194 +1354.402642 +1354.426618 +1354.480231 +1354.520424 +1354.580763 +1354.633277 +1354.673271 +1354.697813 +1354.746198 +1354.787257 +1354.830846 +1354.893017 +1354.958152 +1354.999910 +1355.061948 +1355.124719 +1355.202841 +1355.281195 +1355.320390 +1355.372504 +1355.409201 +1355.493616 +1355.520622 +1355.565577 +1355.607935 +1355.712497 +1355.749627 +1355.793682 +1355.838038 +1355.880063 +1355.910932 +1355.943000 +1355.987588 +1356.033376 +1356.079463 +1356.119689 +1356.173036 +1356.207768 +1356.274867 +1356.329879 +1356.379196 +1356.451091 +1356.544065 +1356.591517 +1356.648460 +1356.711830 +1356.742133 +1356.788720 +1356.830545 +1356.872836 +1356.916325 +1357.014327 +1357.061547 +1357.135206 +1357.196212 +1357.210498 +1357.252389 +1357.277364 +1357.300541 +1357.410764 +1357.451323 +1357.496112 +1357.603105 +1357.674300 +1357.704137 +1357.720154 +1357.759914 +1357.813660 +1357.873101 +1357.925116 +1358.007999 +1358.079927 +1358.131775 +1358.194313 +1358.286554 +1358.322984 +1358.352588 +1358.421918 +1358.534006 +1358.574932 +1358.621851 +1358.683656 +1358.734006 +1358.794246 +1358.836570 +1358.890083 +1358.972367 +1359.042430 +1359.109663 +1359.152820 +1359.199140 +1359.266906 +1359.324848 +1359.370169 +1359.449556 +1359.490182 +1359.546126 +1359.574864 +1359.622683 +1359.688317 +1359.747625 +1359.799506 +1359.844827 +1359.917887 +1360.003535 +1360.043995 +1360.069336 +1360.111227 +1360.143162 +1360.198307 +1360.326978 +1360.371334 +1360.403102 +1360.496308 +1360.556149 +1360.582622 +1360.621483 +1360.668236 +1360.700504 +1360.747823 +1360.798806 +1360.838932 +1360.889015 +1360.940963 +1361.075062 +1361.134403 +1361.208729 +1361.404899 +1361.468069 +1361.575228 +1361.704566 +1361.778525 +1361.881955 +1361.961309 +1362.013823 +1362.135001 +1362.242660 +1362.482787 +1362.754581 +1362.832503 +1362.873695 +1362.917951 +1363.023246 +1363.141627 +1363.221148 +1363.297438 +1363.422246 +1363.508893 +1363.689612 +1363.783585 +1363.873728 +1363.923877 +1363.998270 +1364.060474 +1364.138962 +1364.216618 +1364.262538 +1364.330237 +1364.418183 +1364.507127 +1364.590444 +1364.702964 +1364.782285 +1364.886347 +1365.009258 +1365.118482 +1365.198202 +1365.247020 +1365.332368 +1365.404895 +1365.490942 +1365.640060 +1365.736829 +1365.790342 +1365.859840 +1365.911588 +1365.952280 +1365.984748 +1366.043622 +1366.105027 +1366.173859 +1366.209556 +1366.254977 +1366.309456 +1366.385846 +1366.426705 +1366.486312 +1366.541923 +1366.620112 +1366.659506 +1366.715483 +1366.790408 +1366.869163 +1367.011886 +1367.068396 +1367.141423 +1367.232232 +1367.335895 +1367.455442 +1367.641856 +1367.708023 +1367.818213 +1367.903094 +1367.984846 +1368.067230 +1368.107590 +1368.177520 +1368.244752 +1368.350446 +1368.448815 +1368.508522 +1368.571558 +1368.642388 +1368.686244 +1368.751645 +1368.802894 +1368.825371 +1368.868428 +1368.920243 +1368.998331 +1369.060303 +1369.119310 +1369.175287 +1369.301761 +1369.337991 +1369.406223 +1369.438924 +1369.486409 +1369.503992 +1369.566729 +1369.613749 +1369.674022 +1369.719110 +1369.757638 +1369.815680 +1369.858970 +1369.952143 +1370.008320 +1370.081947 +1370.213049 +1370.288107 +1370.393568 +1370.473455 +1370.592302 +1370.662665 +1370.742252 +1370.773221 +1370.816611 +1370.911683 +1370.977450 +1371.011616 +1371.094200 +1371.277150 +1371.390903 +1371.456171 +1371.530563 +1371.611815 +1371.668725 +1371.721272 +1371.784875 +1371.837989 +1371.912181 +1371.987273 +1372.012681 +1372.174985 +1372.229064 +1372.283876 +1372.324835 +1372.381112 +1372.423902 +1372.472887 +1372.529663 +1372.581811 +1372.637921 +1372.703089 +1372.786406 +1372.849609 +1372.884974 +1372.936090 +1372.992067 +1373.089769 +1373.171820 +1373.283642 +1373.345313 +1373.402922 +1373.442816 +1373.542649 +1373.585273 +1373.654770 +1373.733058 +1373.778013 +1373.854936 +1373.931893 +1374.038786 +1374.099458 +1374.225832 +1374.279745 +1374.319471 +1374.371453 +1374.427397 +1374.488436 +1374.533757 +1374.605285 +1374.650607 +1374.732724 +1374.763960 +1374.808848 +1374.864160 +1374.943846 +1375.015641 +1375.066690 +1375.110713 +1375.162228 +1375.212344 +1375.255135 +1375.319171 +1375.373949 +1375.431791 +1375.493097 +1375.536753 +1375.597292 +1375.660396 +1375.738584 +1375.780109 +1375.857066 +1375.920269 +1376.022167 +1376.072417 +1376.094861 +1376.187002 +1376.225730 +1376.314175 +1376.376612 +1376.407048 +1376.443712 +1376.498956 +1376.549539 +1376.616372 +1376.671184 +1376.703385 +1376.762626 +1376.789832 +1376.834820 +1376.866988 +1376.930491 +1377.001920 +1377.031690 +1377.074014 +1377.124464 +1377.150138 +1377.250771 +1377.302552 +1377.360194 +1377.416272 +1377.511776 +1377.566455 +1377.611310 +1377.660028 +1377.717470 +1377.766055 +1377.825062 +1377.884803 +1377.961259 +1377.985335 +1378.023064 +1378.057530 +1378.119001 +1378.172115 +1378.202851 +1378.278742 +1378.317703 +1378.377576 +1378.437283 +1378.524096 +1378.573413 +1378.623863 +1378.659727 +1378.716637 +1378.774379 +1378.820266 +1378.876277 +1378.931888 +1378.965954 +1378.993926 +1379.035318 +1379.092727 +1379.139513 +1379.189430 +1379.239646 +1379.283169 +1379.344075 +1379.395823 +1379.451235 +1379.493059 +1379.549736 +1379.615703 +1379.711441 +1379.760192 +1379.823728 +1379.889329 +1379.957295 +1380.007012 +1380.032320 +1380.064987 +1380.101650 +1380.143242 +1380.194690 +1380.259492 +1380.313405 +1380.360025 +1380.403348 +1380.435916 +1380.487864 +1380.524327 +1380.564986 +1380.617700 +1380.653564 +1380.719232 +1380.762555 +1380.819565 +1380.855229 +1380.890727 +1380.954397 +1381.023161 +1381.060490 +1381.116334 +1381.168516 +1381.196121 +1381.259358 +1381.322928 +1381.383800 +1381.471845 +1381.516600 +1381.548668 +1381.611272 +1381.641642 +1381.698851 +1381.769314 +1381.810806 +1381.842041 +1381.871645 +1381.920862 +1381.951299 +1381.991225 +1382.047835 +1382.113170 +1382.238611 +1382.334548 +1382.373709 +1382.437079 +1382.476340 +1382.506776 +1382.555061 +1382.614568 +1382.693556 +1382.729386 +1382.773775 +1382.838577 +1382.877272 +1382.916799 +1382.974974 +1383.049533 +1383.093256 +1383.171511 +1383.254960 +1383.354894 +1383.392822 +1383.452596 +1383.491390 +1383.560887 +1383.623591 +1383.679802 +1383.713501 +1383.761387 +1383.843105 +1383.882965 +1383.950231 +1384.002812 +1384.058290 +1384.108040 +1384.168945 +1384.200847 +1384.233747 +1384.279102 +1384.324690 +1384.359022 +1384.408705 +1384.437377 +1384.488659 +1384.528819 +1384.565415 +1384.594286 +1384.643304 +1384.707207 +1384.764649 +1384.846800 +1384.925988 +1384.968412 +1385.014399 +1385.070876 +1385.134246 +1385.175871 +1385.240506 +1385.319694 +1385.371109 +1385.437542 +1385.509903 +1385.585561 +1385.642770 +1385.700246 +1385.775337 +1385.852893 +1385.939740 +1386.008271 +1386.069043 +1386.113566 +1386.170042 +1386.233079 +1386.283962 +1386.316263 +1386.366912 +1386.421857 +1386.485060 +1386.545333 +1386.589922 +1386.651427 +1386.726552 +1386.791687 +1386.845766 +1386.884261 +1386.951260 +1386.990454 +1387.044301 +1387.090454 +1387.151227 +1387.197381 +1387.247764 +1387.318759 +1387.362649 +1387.406871 +1387.528116 +1387.585759 +1387.636141 +1387.680164 +1387.745166 +1387.790554 +1387.858219 +1387.907270 +1387.962481 +1388.005805 +1388.091119 +1388.140104 +1388.193117 +1388.233477 +1388.292285 +1388.392717 +1388.436607 +1388.501442 +1388.546197 +1388.591319 +1388.648295 +1388.707136 +1388.750293 +1388.797945 +1388.855288 +1388.916193 +1388.959916 +1389.022321 +1389.069107 +1389.123053 +1389.169340 +1389.222587 +1389.268507 +1389.313729 +1389.373336 +1389.416726 +1389.453855 +1389.490918 +1389.526516 +1389.569306 +1389.615327 +1389.646529 +1389.730478 +1389.786889 +1389.841634 +1389.880928 +1389.936106 +1389.986322 +1390.004404 +1390.020888 +1390.075833 +1390.130711 +1390.173968 +1390.219955 +1390.267474 +1390.383358 +1390.433741 +1390.471736 +1390.518623 +1390.550391 +1390.594547 +1390.631909 +1390.677430 +1390.719388 +1390.761546 +1390.804703 +1390.836438 +1390.878962 +1390.935006 +1390.973934 +1391.038136 +1391.083391 +1391.145395 +1391.195745 +1391.276964 +1391.322218 +1391.417356 +1391.454586 +1391.490150 +1391.588419 +1391.638901 +1391.685821 +1391.725215 +1391.771802 +1391.815325 +1391.845828 +1391.905235 +1391.960213 +1391.994445 +1392.032907 +1392.074932 +1392.121818 +1392.172201 +1392.217222 +1392.257249 +1392.302637 +1392.340299 +1392.395377 +1392.446326 +1392.506133 +1392.559080 +1392.595111 +1392.646126 +1392.685021 +1392.732407 +1392.772567 +1392.820285 +1392.863209 +1392.922983 +1392.963875 +1393.015090 +1393.088450 +1393.149190 +1393.214291 +1393.265906 +1393.354318 +1393.396176 +1393.443328 +1393.506032 +1393.541563 +1393.583688 +1393.632106 +1393.673698 +1393.729342 +1393.774597 +1393.884520 +1393.933904 +1393.989615 +1394.097973 +1394.186052 +1394.224613 +1394.259178 +1394.310594 +1394.373164 +1394.410760 +1394.444959 +1394.493311 +1394.527144 +1394.621416 +1394.681189 +1394.735968 +1394.835102 +1394.888415 +1394.943294 +1395.053816 +1395.108029 +1395.141862 +1395.175095 +1395.211159 +1395.258278 +1395.307363 +1395.366503 +1395.418751 +1395.451485 +1395.490579 +1395.539730 +1395.584485 +1395.635368 +1395.676626 +1395.724711 +1395.767369 +1395.805297 +1395.847056 +1395.900269 +1395.936966 +1395.987082 +1396.056646 +1396.094575 +1396.145524 +1396.190512 +1396.245623 +1396.287448 +1396.324078 +1396.373029 +1396.411258 +1396.449586 +1396.498237 +1396.549819 +1396.598071 +1396.660974 +1396.749452 +1396.786582 +1396.845123 +1396.889346 +1396.941826 +1396.986149 +1397.036498 +1397.095439 +1397.145622 +1397.188080 +1397.248686 +1397.289945 +1397.327407 +1397.364337 +1397.401000 +1397.444756 +1397.500567 +1397.534000 +1397.579222 +1397.618516 +1397.677024 +1397.720114 +1397.761739 +1397.804463 +1397.856378 +1397.906161 +1397.943790 +1397.995172 +1398.031136 +1398.063337 +1398.113021 +1398.192108 +1398.286347 +1398.342691 +1398.380420 +1398.422245 +1398.467299 +1398.519514 +1398.577689 +1398.612920 +1398.648784 +1398.714152 +1398.760473 +1398.816317 +1398.851581 +1398.906393 +1398.963569 +1399.006726 +1399.051948 +1399.092973 +1399.129636 +1399.182051 +1399.234598 +1399.275823 +1399.320013 +1399.388411 +1399.465067 +1399.527472 +1399.573525 +1399.677388 +1399.725373 +1399.767997 +1399.810855 +1399.855743 +1399.889676 +1399.945420 +1399.995103 +1400.036229 +1400.069129 +1400.140824 +1400.210954 +1400.236062 +1400.284347 +1400.338227 +1400.366065 +1400.427837 +1400.477587 +1400.513285 +1400.561203 +1400.611020 +1400.662702 +1400.704493 +1400.753611 +1400.794936 +1400.830501 +1400.896901 +1400.967530 +1401.003527 +1401.044919 +1401.079351 +1401.123774 +1401.180950 +1401.224007 +1401.260836 +1401.282781 +1401.326271 +1401.381449 +1401.417746 +1401.457706 +1401.514316 +1401.567196 +1401.617380 +1401.696667 +1401.749680 +1401.788875 +1401.839158 +1401.888009 +1401.928069 +1401.964465 +1402.014216 +1402.051145 +1402.092138 +1402.144818 +1402.192704 +1402.231765 +1402.309487 +1402.368428 +1402.429067 +1402.469893 +1402.524472 +1402.567229 +1402.602327 +1402.646183 +1402.689540 +1402.731997 +1402.773322 +1402.807655 +1402.858204 +1402.904225 +1402.948614 +1403.044151 +1403.144351 +1403.188573 +1403.228700 +1403.264864 +1403.351977 +1403.398597 +1403.435360 +1403.475786 +1403.521174 +1403.570191 +1403.616212 +1403.662499 +1403.728300 +1403.766129 +1403.805523 +1403.842719 +1403.893501 +1403.935326 +1403.975119 +1404.023438 +1404.077883 +1404.122039 +1404.155805 +1404.279515 +1404.353674 +1404.412382 +1404.476284 +1404.518009 +1404.560667 +1404.658535 +1404.702058 +1404.743683 +1404.782378 +1404.806654 +1404.849877 +1404.889571 +1404.923004 +1404.981612 +1405.023437 +1405.074486 +1405.182344 +1405.223104 +1405.269590 +1405.314379 +1405.387939 +1405.441552 +1405.494199 +1405.532061 +1405.569124 +1405.629364 +1405.688737 +1405.726833 +1405.779613 +1405.861098 +1405.926832 +1405.955171 +1406.003955 +1406.046513 +1406.119040 +1406.171521 +1406.212180 +1406.254937 +1406.293865 +1406.346346 +1406.405020 +1406.467458 +1406.520139 +1406.566292 +1406.598960 +1406.631361 +1406.673119 +1406.714644 +1406.756735 +1406.803155 +1406.837787 +1406.938087 +1406.974384 +1407.009282 +1407.053005 +1407.086472 +1407.114111 +1407.159166 +1407.219139 +1407.262296 +1407.298992 +1407.336488 +1407.367557 +1407.418306 +1407.468889 +1407.524999 +1407.570687 +1407.618139 +1407.658166 +1407.707217 +1407.753238 +1407.792665 +1407.830494 +1407.871386 +1407.929395 +1407.964926 +1407.989035 +1408.012378 +1408.054203 +1408.103653 +1408.141482 +1408.182475 +1408.235921 +1408.254902 +1408.283107 +1408.337819 +1408.394862 +1408.494562 +1408.548442 +1408.581009 +1408.638418 +1408.674182 +1408.694429 +1408.740682 +1408.790599 +1408.820070 +1408.870253 +1408.926297 +1408.975514 +1409.014575 +1409.066123 +1409.106050 +1409.154268 +1409.202720 +1409.322134 +1409.387269 +1409.437019 +1409.468720 +1409.511544 +1409.552270 +1409.596359 +1409.650006 +1409.703585 +1409.756499 +1409.798057 +1409.843245 +1409.883305 +1409.915207 +1409.948440 +1410.000521 +1410.106216 +1410.145743 +1410.184637 +1410.216672 +1410.268253 +1410.316638 +1410.413208 +1410.442546 +1410.472815 +1410.519369 +1410.551337 +1410.595592 +1410.653901 +1410.695026 +1410.730158 +1410.761526 +1410.807913 +1410.835752 +1410.871583 +1410.912775 +1410.941446 +1410.979275 +1411.018236 +1411.098422 +1411.155032 +1411.253567 +1411.307446 +1411.359428 +1411.395425 +1411.502984 +1411.598821 +1411.600486 +1411.640213 +1411.700686 +1411.749637 +1411.812308 +1411.868851 +1411.918402 +1411.987299 +1412.033986 +1412.085468 +1412.130190 +1412.182437 +1412.234485 +1412.299420 +1412.346906 +1412.384269 +1412.410875 +1412.450036 +1412.467918 +1412.517568 +1412.559193 +1412.586999 +1412.619067 +1412.657329 +1412.704115 +1412.769117 +1412.820665 +1412.855530 +1412.894391 +1412.930122 +1413.006679 +1413.038880 +1413.089929 +1413.123662 +1413.184501 +1413.210708 +1413.284301 +1413.361057 +1413.410541 +1413.451833 +1413.501517 +1413.547171 +1413.598153 +1413.631753 +1413.671746 +1413.693125 +1413.754730 +1413.791760 +1413.887597 +1413.923062 +1413.980404 +1414.019299 +1414.105845 +1414.135948 +1414.177207 +1414.221496 +1414.235116 +1414.265086 +1414.311972 +1414.361822 +1414.406111 +1414.436548 +1414.483567 +1414.560091 +1414.606910 +1414.656727 +1414.699851 +1414.743640 +1414.787330 +1414.838745 +1414.892092 +1414.926590 +1414.976241 +1415.037812 +1415.080270 +1415.127323 +1415.173144 +1415.274409 +1415.331951 +1415.366317 +1415.383633 +1415.419797 +1415.447103 +1415.481868 +1415.528355 +1415.572577 +1415.617166 +1415.687196 +1415.736580 +1415.772943 +1415.814035 +1415.857558 +1415.890692 +1415.915034 +1415.954828 +1415.983166 +1416.067981 +1416.109373 +1416.161221 +1416.214035 +1416.256193 +1416.367914 +1416.434548 +1416.469712 +1416.524824 +1416.575606 +1416.625823 +1416.698850 +1416.733215 +1416.798184 +1416.836079 +1416.864317 +1416.900248 +1416.970844 +1417.034181 +1417.081733 +1417.130218 +1417.195253 +1417.263118 +1417.307807 +1417.359189 +1417.388393 +1417.423458 +1417.459322 +1417.497750 +1417.567081 +1417.603178 +1417.672875 +1417.775172 +1417.831050 +1417.902711 +1417.952628 +1418.027287 +1418.129451 +1418.197649 +1418.260520 +1418.318295 +1418.387060 +1418.433613 +1418.451828 +1418.489491 +1418.550063 +1418.589490 +1418.639674 +1418.660386 +1418.730516 +1418.770409 +1418.816763 +1418.866447 +1418.891921 +1418.957089 +1419.029317 +1419.083296 +1419.147632 +1419.199879 +1419.224954 +1419.261551 +1419.315564 +1419.349330 +1419.387425 +1419.439473 +1419.535044 +1419.591388 +1419.643469 +1419.686359 +1419.770042 +1419.803309 +1419.852293 +1419.909036 +1419.958287 +1420.010302 +1420.058753 +1420.108070 +1420.174237 +1420.240305 +1420.299179 +1420.351194 +1420.393285 +1420.460318 +1420.528250 +1420.605939 +1420.648929 +1420.697380 +1420.773604 +1420.848130 +1420.916561 +1420.956754 +1420.998579 +1421.084060 +1421.149794 +1421.201542 +1421.270007 +1421.320923 +1421.376101 +1421.434909 +1421.487956 +1421.538305 +1421.607370 +1421.673370 +1421.708568 +1421.754655 +1421.826350 +1421.856920 +1421.934509 +1421.978398 +1422.053257 +1422.120856 +1422.183060 +1422.236573 +1422.290719 +1422.331278 +1422.376666 +1422.402174 +1422.525351 +1422.576733 +1422.628880 +1422.686956 +1422.732810 +1422.796646 +1422.903672 +1422.926416 +1422.982460 +1423.025184 +1423.057751 +1423.123585 +1423.214894 +1423.272869 +1423.340734 +1423.376399 +1423.464844 +1423.512396 +1423.562579 +1423.631976 +1423.649326 +1423.680694 +1423.703038 +1423.744564 +1423.791650 +1423.834640 +1423.877764 +1423.954087 +1424.105968 +1424.190650 +1424.266474 +1424.351223 +1424.437270 +1424.496444 +1424.571236 +1424.640567 +1424.695778 +1424.733141 +1424.798442 +1424.817656 +1424.884456 +1424.912994 +1424.972201 +1425.067273 +1425.108998 +1425.157083 +1425.274665 +1425.320752 +1425.406999 +1425.434872 +1425.459447 +1425.576829 +1425.641898 +1425.755051 +1425.830675 +1425.893379 +1425.985654 +1426.037035 +1426.082357 +1426.129510 +1426.185220 +1426.235737 +1426.278294 +1426.303269 +1426.368970 +1426.429043 +1426.466872 +1426.501471 +1426.565074 +1426.640465 +1426.698440 +1426.835436 +1426.879492 +1426.992213 +1427.026012 +1427.093611 +1427.153651 +1427.270934 +1427.340664 +1427.395376 +1427.498106 +1427.612059 +1427.738765 +1427.775562 +1427.832305 +1427.928575 +1427.978625 +1428.036134 +1428.113357 +1428.153250 +1428.199804 +1428.245025 +1428.295042 +1428.325711 +1428.386883 +1428.454316 +1428.512258 +1428.579424 +1428.620516 +1428.660609 +1428.776160 +1428.826810 +1428.917386 +1428.965504 +1429.064505 +1429.147322 +1429.218850 +1429.270632 +1429.344192 +1429.391344 +1429.440462 +1429.594641 +1429.664571 +1429.737898 +1429.830205 +1429.889845 +1429.942693 +1429.994874 +1430.046922 +1430.105396 +1430.206395 +1430.267334 +1430.316252 +1430.347521 +1430.430071 +1430.552948 +1430.650984 +1430.718250 +1430.801899 +1430.866934 +1430.956411 +1431.070131 +1431.146088 +1431.269464 +1431.311822 +1431.359141 +1431.416584 +1431.476257 +1431.592042 +1431.834432 +1431.928705 +1432.031602 +1432.078555 +1432.147985 +1432.204562 +1432.269463 +1432.295904 +1432.343822 +1432.392607 +1432.470429 +1432.528537 +1432.581884 +1432.751781 +1432.889010 +1432.957641 +1433.058440 +1433.106792 +1433.164268 +1433.229769 +1433.290608 +1433.356942 +1433.500098 +1433.583881 +1433.645453 +1433.706425 +1433.760671 +1433.838526 +1433.988509 +1434.025039 +1434.093271 +1434.153211 +1434.202362 +1434.247117 +1434.329068 +1434.443154 +1434.576388 +1434.733663 +1434.812784 +1434.916447 +1435.016247 +1435.067296 +1435.224206 +1435.326437 +1435.383413 +1435.526969 +1435.561568 +1435.609886 +1435.685377 +1435.787675 +1435.837991 +1435.883446 +1435.966862 +1436.028800 +1436.154708 +1436.222773 +1436.357738 +1436.405124 +1436.490305 +1436.549845 +1436.600428 +1436.660068 +1436.705789 +1436.737324 +1436.791770 +1436.827234 +1436.878017 +1436.949645 +1437.026069 +1437.069259 +1437.164996 +1437.220507 +1437.309985 +1437.446448 +1437.563864 +1437.674853 +1437.764729 +1437.843650 +1437.893634 +1437.959368 +1438.020773 +1438.066794 +1438.156604 +1438.210716 +1438.279281 +1438.330796 +1438.391236 +1438.557902 +1438.690836 +1438.846813 +1438.917808 +1439.098794 +1439.182077 +1439.287339 +1439.342517 +1439.481811 +1439.531661 +1439.628430 +1439.731461 +1439.770688 +1439.834191 +1439.964994 +1440.091867 +1440.165759 +1440.212679 +1440.300691 +1440.436588 +1440.521536 +1440.695362 +1440.742915 +1440.794530 +1440.845146 +1440.891233 +1440.956101 +1441.054836 +1441.180610 +1441.223267 +1441.283407 +1441.421702 +1441.601522 +1441.769654 +1441.899157 +1441.977479 +1442.057399 +1442.088568 +1442.202054 +1442.324565 +1442.350872 +1442.451038 +1442.604451 +1442.756433 +1442.841348 +1442.959429 +1443.138417 +1443.196925 +1443.394394 +1443.539515 +1443.582905 +1443.644743 +1443.729592 +1443.785602 +1443.856631 +1443.924364 +1444.088632 +1444.198989 +1444.312475 +1444.583371 +1444.697723 +1444.781006 +1444.963690 +1445.096890 +1445.262624 +1445.370749 +1445.451735 +1445.580373 +1445.645008 +1445.717702 +1445.804948 +1445.945707 +1445.974112 +1446.088397 +1446.168217 +1446.258960 +1446.398986 +1446.472413 +1446.547604 +1446.628224 +1446.676775 +1446.799885 +1446.865819 +1446.916369 +1446.978806 +1447.085932 +1447.145173 +1447.195423 +1447.309209 +1447.372379 +1447.443241 +1447.553631 +1447.761489 +1447.894223 +1447.980370 +1448.101482 +1448.225025 +1448.298851 +1448.410273 +1448.559590 +1448.633616 +1448.670979 +1448.732151 +1448.893123 +1449.013203 +1449.159723 +1449.231984 +1449.403579 +1449.484831 +1449.539809 +1449.607208 +1449.665317 +1449.722959 +1449.779269 +1449.861487 +1449.991657 +1450.073342 +1450.235246 +1450.357857 +1450.501313 +1450.749631 +1451.099348 +1451.276404 +1451.368712 +1451.569111 +1451.667513 +1451.717896 +1451.821159 +1451.890656 +1451.943603 +1452.052760 +1452.111102 +1452.179067 +1452.367445 +1452.455857 +1452.635211 +1452.860385 +1452.939173 +1453.018061 +1453.178533 +1453.248830 +1453.306372 +1453.395150 +1453.482862 +1453.539639 +1453.590588 +1453.678433 +1453.760584 +1453.908403 +1454.060983 +1454.141603 +1454.238872 +1454.271073 +1454.428316 +1454.515662 +1454.727316 +1454.850760 +1454.915162 +1454.970107 +1455.028681 +1455.204073 +1455.284425 +1455.612464 +1455.894481 +1455.949260 +1456.050559 +1456.115993 +1456.220455 +1456.410398 +1456.654887 +1456.766309 +1456.952722 +1457.256518 +1457.387953 +1457.429845 +1457.489052 +1457.576698 +1457.761446 +1457.827879 +1458.015858 +1458.101139 +1458.280460 +1458.466407 +1458.974532 +1459.116556 +1459.282890 +1459.369536 +1459.441298 +1459.590382 +1459.795243 +1460.066239 +1460.296941 +1460.367504 +1460.422416 +1460.494777 +1460.584021 +1460.672998 +1460.821483 +1461.029275 +1461.324146 +1461.366437 +1461.494875 +1461.640996 +1461.715854 +1461.783054 +1461.826144 +1461.935368 +1461.986417 +1462.061641 +1462.142361 +1462.438764 +1462.516386 +1462.596173 +1462.685417 +1462.730106 +1462.831537 +1462.956179 +1463.074494 +1463.274128 +1463.418583 +1463.468600 +1463.548786 +1463.613288 +1463.639995 +1463.724310 +1463.800301 +1463.900068 +1464.158076 +1464.250417 +1464.311956 +1464.439361 +1464.650450 +1464.747187 +1464.790343 +1464.849584 +1464.907226 +1464.978788 +1465.063004 +1465.144056 +1465.276956 +1465.614785 +1465.917915 +1465.987378 +1466.065900 +1466.177155 +1466.315883 +1466.370562 +1466.421810 +1466.491407 +1466.616082 +1466.674124 +1466.753545 +1466.822110 +1466.873292 +1466.940125 +1467.002729 +1467.038460 +1467.252679 +1467.385645 +1467.695402 +1467.808722 +1467.943853 +1468.034030 +1468.151212 +1468.177719 +1468.220243 +1468.288775 +1468.338225 +1468.448382 +1468.505524 +1468.769693 +1469.090539 +1469.233396 +1469.330599 +1469.353909 +1469.411851 +1469.446249 +1469.474321 +1469.564165 +1469.650378 +1469.745916 +1469.812916 +1469.899229 +1469.940488 +1470.158869 +1470.373987 +1470.585442 +1470.647114 +1470.748812 +1470.821406 +1470.921439 +1471.159768 +1471.325968 +1471.440820 +1471.544982 +1471.624303 +1471.709917 +1471.797829 +1471.885275 +1471.985275 +1472.054172 +1472.239720 +1472.606286 +1472.827398 +1473.048477 +1473.253072 +1473.327631 +1473.452006 +1473.523701 +1473.573618 +1474.141516 +1474.297527 +1474.367057 +1474.448742 +1474.524633 +1474.661662 +1474.741116 +1474.920270 +1475.094595 +1475.294629 +1475.541948 +1475.911178 +1476.041248 +1476.085437 +1476.235254 +1476.357531 +1476.420801 +1476.532156 +1476.620635 +1476.678910 +1476.787068 +1476.869386 +1476.920501 +1476.989698 +1477.041313 +1477.106448 +1477.186834 +1477.500121 +1477.602418 +1477.699355 +1477.829957 +1477.878009 +1478.030057 +1478.150903 +1478.185901 +1478.314006 +1478.475478 +1478.566853 +1478.738481 +1478.854199 +1478.917935 +1479.016170 +1479.099753 +1479.206846 +1479.260525 +1479.472846 +1479.619133 +1479.718201 +1479.838680 +1479.911740 +1480.018100 +1480.104148 +1480.188763 +1480.295456 +1480.603481 +1480.995222 +1481.097953 +1481.178739 +1481.229887 +1481.319598 +1481.390460 +1481.516534 +1481.790693 +1481.905644 +1482.110772 +1482.224059 +1482.343406 +1482.421395 +1482.496220 +1482.577771 +1482.690958 +1482.743938 +1482.844837 +1483.022626 +1483.093955 +1483.221727 +1483.275806 +1483.365583 +1483.439476 +1484.127953 +1484.215266 +1484.293587 +1484.387094 +1484.536810 +1484.868112 +1485.443569 +1485.480965 +1485.542470 +1485.634012 +1485.858154 +1485.912567 +1486.111001 +1486.871906 +1487.088256 +1487.142669 +1487.284094 +1487.328716 +1487.695249 +1488.539104 +1488.650160 +1488.746663 +1488.863679 +1488.945331 +1489.250992 +1489.309167 +1489.415893 +1489.738370 +1490.082026 +1490.247561 +1490.319622 +1490.384790 +1490.442665 +1490.597177 +1490.851123 +1491.079861 +1491.363976 +1491.413960 +1491.494612 +1491.698209 +1492.005434 +1492.165974 +1492.313959 +1492.456949 +1492.712560 +1492.798640 +1492.855617 +1492.966506 +1493.053186 +1493.234138 +1493.374098 +1493.472532 +1493.546692 +1493.621850 +1493.701437 +1493.803268 +1493.903767 +1494.212092 +1494.270733 +1494.384653 +1494.501003 +1494.559644 +1494.617753 +1494.663207 +1494.709128 +1494.748955 +1494.843194 +1494.901336 +1494.970033 +1495.031638 +1495.148954 +1495.347755 +1495.587216 +1495.784318 +1495.838897 +1495.900036 +1495.964438 +1496.021015 +1496.084152 +1496.127908 +1496.192077 +1496.229739 +1496.302899 +1496.365603 +1496.444391 +1496.541793 +1496.684717 +1496.753315 +1496.834800 +1497.103931 +1497.630770 +1497.723111 +1497.876957 +1498.057543 +1498.141792 +1498.434066 +1498.854345 +1498.981551 +1499.188744 +1499.372493 +1499.566366 +1499.695870 +1499.877688 +1499.973858 +1500.099099 +1500.177487 +1500.750580 +1501.076288 +1501.192938 +1501.330400 +1501.461236 +1501.631432 +1501.692304 +1501.877386 +1501.996633 +1502.132897 +1502.281381 +1503.243785 +1503.387274 +1503.591736 +1503.796498 +1503.981047 +1505.152974 +1505.299027 +1505.395631 +1505.509450 +1505.600159 +1505.775617 +1505.828930 +1505.954105 +1506.391600 +1506.526932 +1506.766492 +1506.876981 +1507.392232 +1507.482342 +1508.083041 +1508.227829 +1508.301289 +1508.496926 +1508.825331 +1509.328228 +1509.395960 +1509.517638 +1509.621467 +1509.776346 +1509.927128 +1509.992130 +1510.151670 +1510.226528 +1511.282571 +1511.344076 +1511.722298 +1511.765088 +1511.916903 +1511.985901 +1512.057862 +1512.210676 +1512.285467 +1512.408111 +1512.530256 +1512.664488 +1512.893958 +1513.030954 +1513.275610 +1513.510474 +1513.714470 +1513.950334 +1514.278705 +1514.556694 +1514.696887 +1514.848668 +1515.785797 +1516.385696 +1516.704477 +1516.845003 +1516.981933 +1517.133781 +1517.168979 +1517.193221 +1517.284563 +1517.383298 +1517.661419 +1517.790157 +1517.913933 +1518.064982 +1518.209937 +1518.379034 +1518.864215 +1519.014831 +1519.203010 +1519.426586 +1519.486959 +1519.532946 +1519.575370 +1519.712033 +1519.826585 +1519.903908 +1520.035210 +1520.197481 +1520.444134 +1520.575003 +1520.707137 +1520.974303 +1521.783293 +1521.905371 +1521.984425 +1522.186257 +1522.305071 +1522.591817 +1523.214994 +1523.688719 +1523.881327 +1524.483391 +1524.707300 +1524.839534 +1525.137369 +1525.223983 +1525.301971 +1525.409830 +1525.452953 +1525.606133 +1525.767938 +1526.077495 +1526.184721 +1526.256149 +1526.306366 +1526.384121 +1526.478394 +1526.566505 +1526.648057 +1526.837234 +1526.948656 +1527.101836 +1527.668935 +1527.736601 +1527.781789 +1527.853950 +1527.926477 +1527.990813 +1528.059644 +1528.151818 +1528.192744 +1528.274962 +1528.320749 +1528.386117 +1528.449920 +1528.514655 +1528.629107 +1528.697372 +1528.749287 +1528.875294 +1528.897106 +1528.942127 +1529.072164 +1529.272497 +1529.792410 +1529.862340 +1529.905963 +1529.935200 +1529.999402 +1530.043691 +1530.149019 +1530.241527 +1530.610957 +1531.134666 +1531.199967 +1531.267000 +1531.347919 +1531.437363 +1531.645188 +1531.837229 +1532.135897 +1532.198668 +1532.271595 +1532.445987 +1532.568198 +1532.698700 +1532.762004 +1532.961704 +1533.216216 +1533.290142 +1533.615782 +1533.808989 +1534.042089 +1534.251812 +1534.490873 +1535.067196 +1535.155308 +1535.364199 +1535.596699 +1535.715814 +1535.813982 +1535.950046 +1536.352510 +1536.480981 +1536.519742 +1536.572123 +1536.604191 +1536.652210 +1536.789239 +1536.863731 +1536.973821 +1537.036958 +1537.210251 +1537.467327 +1537.561333 +1537.694433 +1537.761233 +1537.798429 +1538.003623 +1538.124669 +1538.328598 +1538.431628 +1538.562964 +1538.677416 +1539.258367 +1539.730528 +1539.899359 +1539.996562 +1540.093165 +1540.550607 +1540.674816 +1541.014976 +1541.256934 +1541.348409 +1541.600623 +1541.848675 +1541.948674 +1543.569352 +1544.818135 +1545.411275 +1546.916069 +1549.330918 +1549.887661 +1550.675805 +1550.890057 +1551.034613 +1551.523057 +1551.698581 +1551.854226 +1551.949597 +1552.122024 +1552.263216 +1552.785660 +1552.927451 +1553.099346 +1555.391918 +1557.436005 +1557.579428 +1557.624516 +1557.684157 +1557.740167 +1557.818222 +1557.839834 +1557.927380 +1558.049824 +1558.673833 +1558.823150 +1559.375264 +1559.594145 +1559.834371 +1559.921284 +1560.031607 +1560.087018 +1560.125879 +1560.196442 +1560.268936 +1560.482555 +1560.626078 +1560.709795 +1561.008129 +1561.150354 +1561.248722 +1561.318019 +1561.421116 +1561.504033 +1561.819850 +1562.719683 +1562.843625 +1562.980122 +1563.093275 +1563.277058 +1563.345556 +1563.429872 +1563.612356 +1563.673495 +1563.769898 +1563.970497 +1564.152948 +1564.244756 +1564.360973 +1574.290500 +1579.019134 +1579.179107 +1579.287964 +1579.345940 +1579.408777 +1580.513971 +1580.599951 +1581.445238 +1584.374972 +1587.076202 +1587.234210 +1587.304007 +1587.752758 +1588.007370 +1588.316827 +1588.509567 +1588.632178 +1588.705038 +1588.871838 +1588.980396 +1589.117325 +1589.290119 +1589.699942 +1589.995446 +1590.828912 +1592.451055 +1592.502037 +1592.513659 +1592.570569 +1592.702070 +1592.860312 +1592.940731 +1593.039732 +1593.299106 +1593.397274 +1597.167867 +1597.600567 +1598.136697 +1599.963901 +1600.908289 +1601.074423 +1602.494501 +1602.833029 +1606.521337 +1609.758264 +1609.921034 +1609.994128 +1610.268586 +1610.325862 +1610.372182 +1610.452635 +1610.606681 +1610.923697 +1611.142478 +1611.177776 +1611.270283 +1611.341612 +1611.382072 +1611.441612 +1612.072813 +1612.152667 +1614.787330 +1614.890626 +1615.242574 +1615.598218 +1615.650732 +1615.845703 +1615.879103 +1616.062886 +1616.158890 +1616.399050 +1616.729752 +1616.797517 +1616.848699 +1616.942739 +1617.121759 +1617.186461 +1617.239042 +1617.339442 +1617.474839 +1617.582898 +1617.811935 +1617.979801 +1618.009404 +1618.080700 +1618.169577 +1618.268145 +1618.441305 +1618.551262 +1618.619194 +1618.737109 +1618.749896 +1618.833246 +1618.914964 +1618.996350 +1619.065081 +1619.117195 +1619.179500 +1619.274704 +1619.370142 +1619.431181 +1619.453492 +1619.503375 +1619.580831 +1619.733079 +1619.844834 +1619.944800 +1619.976935 +1620.078200 +1620.178100 +1620.376202 +1620.455456 +1620.516595 +1620.564247 +1620.609135 +1620.658719 +1620.730714 +1620.792185 +1620.863547 +1620.908369 +1620.949095 +1620.996248 +1621.052158 +1621.133710 +1621.242967 +1621.338372 +1621.372105 +1621.403707 +1621.499677 +1621.567975 +1621.648528 +1621.703240 +1621.768375 +1621.830080 +1621.878198 +1621.928914 +1621.983127 +1622.045531 +1622.083426 +1622.167276 +1622.263945 +1622.356852 +1622.427315 +1622.494681 +1622.533009 +1622.584791 +1622.642167 +1622.693049 +1622.759583 +1622.803772 +1622.811531 +1622.842300 +1622.873602 +1622.948727 +1622.992216 +1623.034274 +1623.074534 +1623.173835 +1623.243132 +1623.320455 +1623.384657 +1623.439835 +1623.505236 +1623.573202 +1623.623784 +1623.699508 +1623.722719 +1623.776731 +1623.831510 +1623.886155 +1623.933308 +1623.987287 +1624.038136 +1624.093647 +1624.132009 +1624.176864 +1624.226548 +1624.312462 +1624.374766 +1624.456351 +1624.544995 +1624.630610 +1624.696843 +1624.739567 +1624.780693 +1624.817822 +1624.843763 +1624.870037 +1624.926214 +1624.996943 +1625.057449 +1625.104469 +1625.179494 +1625.242064 +1625.303669 +1625.400040 +1625.464475 +1625.528544 +1625.592480 +1625.642297 +1625.697475 +1625.744461 +1625.803303 +1625.881025 +1625.931574 +1626.046193 +1626.102470 +1626.141564 +1626.184354 +1626.247924 +1626.289116 +1626.334238 +1626.406499 +1626.443029 +1626.486385 +1626.535736 +1626.594844 +1626.673698 +1626.725280 +1626.915756 +1626.976162 +1627.035403 +1627.082489 +1627.133005 +1627.181423 +1627.224080 +1627.254550 +1627.314556 +1627.378759 +1627.430474 +1627.469868 +1627.568536 +1627.645492 +1627.699405 +1627.749654 +1627.824046 +1627.876394 +1627.948222 +1628.001935 +1628.051053 +1628.095308 +1628.129108 +1628.180656 +1628.237333 +1628.298305 +1628.449254 +1628.481022 +1628.523080 +1628.568535 +1628.614189 +1628.649886 +1628.697505 +1628.747689 +1628.806563 +1628.865837 +1628.956346 +1629.046023 +1629.101634 +1629.145923 +1629.190146 +1629.235534 +1629.265171 +1629.346622 +1629.403066 +1629.452516 +1629.552749 +1629.614254 +1629.669766 +1629.716019 +1629.770831 +1629.822146 +1629.868766 +1629.921447 +1629.977324 +1630.031570 +1630.088380 +1630.154414 +1630.212755 +1630.261207 +1630.308060 +1630.362805 +1630.421446 +1630.476991 +1630.534300 +1630.573960 +1630.628339 +1630.676458 +1630.716784 +1630.767067 +1630.829738 +1630.880221 +1630.904097 +1630.951882 +1630.993807 +1631.052415 +1631.085748 +1631.137130 +1631.182618 +1631.237330 +1631.288046 +1631.320780 +1631.363770 +1631.427506 +1631.482384 +1631.547819 +1631.595704 +1631.627539 +1631.679587 +1631.732001 +1631.789843 +1631.833433 +1631.879121 +1631.928904 +1631.997469 +1632.033999 +1632.084615 +1632.134165 +1632.171461 +1632.199766 +1632.226440 +1632.258241 +1632.302863 +1632.353479 +1632.412687 +1632.452547 +1632.500132 +1632.547219 +1632.599533 +1632.639992 +1632.698001 +1632.740625 +1632.791274 +1632.826772 +1632.848284 +1632.904661 +1632.942290 +1632.982516 +1633.031967 +1633.140658 +1633.182416 +1633.228636 +1633.281617 +1633.331533 +1633.356442 +1633.391440 +1633.421710 +1633.481816 +1633.550448 +1633.602795 +1633.660271 +1633.718446 +1633.767930 +1633.814450 +1633.852678 +1633.886245 +1633.965799 +1634.008689 +1634.047816 +1634.086578 +1634.139325 +1634.198732 +1634.233564 +1634.280450 +1634.321176 +1634.362435 +1634.387576 +1634.415349 +1634.444353 +1634.481649 +1634.525305 +1634.532598 +1634.577386 +1634.632598 +1634.679950 +1634.729800 +1634.775355 +1634.836893 +1634.888475 +1634.964499 +1635.004725 +1635.035528 +1635.066963 +1635.125438 +1635.170026 +1635.220576 +1635.302028 +1635.361402 +1635.413283 +1635.448381 +1635.487842 +1635.523506 +1635.572424 +1635.607921 +1635.639756 +1635.700495 +1635.772923 +1635.803725 +1635.855007 +1635.904558 +1636.013515 +1636.056772 +1636.099263 +1636.155507 +1636.187608 +1636.232962 +1636.285610 +1636.333828 +1636.462166 +1636.508287 +1636.547581 +1636.604757 +1636.638556 +1636.692736 +1636.741487 +1636.794201 +1636.832529 +1636.881780 +1636.927301 +1636.959036 +1637.017544 +1637.070657 +1637.132862 +1637.198995 +1637.247380 +1637.293667 +1637.351509 +1637.397330 +1637.487007 +1637.522139 +1637.578516 +1637.649811 +1637.720440 +1637.771323 +1637.802758 +1637.833127 +1637.872754 +1637.892568 +1637.947912 +1638.004722 +1638.051309 +1638.088072 +1638.142384 +1638.196530 +1638.231595 +1638.271555 +1638.309151 +1638.337889 +1638.382411 +1638.490669 +1638.550576 +1638.606553 +1638.645514 +1638.698428 +1638.756670 +1638.786506 +1638.843516 +1638.883942 +1638.999693 +1639.062597 +1639.133359 +1639.203356 +1639.247478 +1639.299326 +1639.381677 +1639.426099 +1639.470788 +1639.530229 +1639.579346 +1639.632593 +1639.674451 +1639.750441 +1639.796196 +1639.836722 +1639.877381 +1639.910215 +1639.953305 +1640.019739 +1640.062296 +1640.115409 +1640.172219 +1640.220005 +1640.275216 +1640.305053 +1640.344314 +1640.388503 +1640.438153 +1640.491666 +1640.526331 +1640.573617 +1640.629495 +1640.672385 +1640.708616 +1640.778013 +1640.822402 +1640.878013 +1640.930960 +1640.971186 +1641.003620 +1641.043314 +1641.089434 +1641.131659 +1641.180910 +1641.233457 +1641.284439 +1641.400956 +1641.512344 +1641.556800 +1641.617672 +1641.722134 +1641.772984 +1641.824599 +1641.873649 +1641.930193 +1641.985704 +1642.044345 +1642.137152 +1642.191032 +1642.264159 +1642.322633 +1642.359496 +1642.398524 +1642.441514 +1642.477545 +1642.515474 +1642.567821 +1642.620768 +1642.660861 +1642.699390 +1642.805517 +1642.851304 +1642.892230 +1642.952569 +1642.990798 +1643.038883 +1643.108047 +1643.144977 +1643.179276 +1643.227594 +1643.265922 +1643.299289 +1643.340215 +1643.374181 +1643.418337 +1643.460028 +1643.504450 +1643.545043 +1643.588233 +1643.628293 +1643.707680 +1643.748106 +1643.789831 +1643.824097 +1643.866921 +1643.917570 +1643.973547 +1644.023264 +1644.061992 +1644.118802 +1644.153734 +1644.229624 +1644.277477 +1644.311443 +1644.363091 +1644.438316 +1644.495525 +1644.540547 +1644.582738 +1644.618735 +1644.667686 +1644.718768 +1644.757762 +1644.806281 +1644.852568 +1644.910576 +1644.968785 +1645.015171 +1645.103117 +1645.143943 +1645.185468 +1645.223962 +1645.273413 +1645.303283 +1645.347239 +1645.396889 +1645.435750 +1645.484002 +1645.526893 +1645.573779 +1645.617535 +1645.662290 +1645.700552 +1645.747405 +1645.789863 +1645.838614 +1645.880239 +1645.936716 +1645.970182 +1646.015970 +1646.056030 +1646.099320 +1646.146006 +1646.185100 +1646.241111 +1646.318633 +1646.349802 +1646.387464 +1646.424894 +1646.453032 +1646.496422 +1646.538180 +1646.567551 +1646.611873 +1646.682369 +1646.733685 +1646.772712 +1646.816935 +1646.855263 +1646.909409 +1646.942276 +1646.974044 +1647.025592 +1647.146138 +1647.185066 +1647.228523 +1647.275509 +1647.314770 +1647.370547 +1647.401949 +1647.478772 +1647.546904 +1647.587996 +1647.649035 +1647.688396 +1647.742941 +1647.750367 +1647.784899 +1647.826058 +1647.879404 +1647.921163 +1647.998918 +1648.048002 +1648.084599 +1648.129387 +1648.223760 +1648.274109 +1648.324026 +1648.362388 +1648.396220 +1648.440909 +1648.467982 +1648.508774 +1648.555561 +1648.583133 +1648.644039 +1648.686530 +1648.794522 +1648.838811 +1648.896653 +1648.941375 +1648.978005 +1649.018531 +1649.074741 +1649.130885 +1649.167948 +1649.223193 +1649.276839 +1649.311804 +1649.349533 +1649.382167 +1649.418730 +1649.449233 +1649.492356 +1649.525423 +1649.566615 +1649.612103 +1649.674641 +1649.714667 +1649.751197 +1649.803045 +1649.840575 +1649.890724 +1649.920694 +1649.961420 +1649.991523 +1650.045936 +1650.079469 +1650.122692 +1650.166915 +1650.201846 +1650.280801 +1650.324024 +1650.353428 +1650.426988 +1650.474473 +1650.517397 +1650.591490 +1650.630484 +1650.666048 +1650.718329 +1650.771776 +1650.807540 +1650.839841 +1650.881999 +1651.011769 +1651.046701 +1651.124290 +1651.169078 +1651.205009 +1651.235245 +1651.270310 +1651.319627 +1651.364449 +1651.407739 +1651.492887 +1651.540906 +1651.582564 +1651.672574 +1651.714399 +1651.753993 +1651.784162 +1651.826520 +1651.874139 +1651.937975 +1651.980666 +1652.033413 +1652.086993 +1652.122590 +1652.161418 +1652.209503 +1652.262350 +1652.304508 +1652.357755 +1652.415664 +1652.458687 +1652.492420 +1652.525620 +1652.579333 +1652.621957 +1652.662084 +1652.724688 +1652.772207 +1652.806339 +1652.849363 +1652.902543 +1652.934278 +1652.977235 +1653.020924 +1653.065280 +1653.089722 +1653.129183 +1653.169942 +1653.209702 +1653.245799 +1653.296415 +1653.341770 +1653.411467 +1653.480897 +1653.506205 +1653.517161 +1653.565246 +1653.644933 +1653.692619 +1653.755722 +1653.788423 +1653.815362 +1653.857953 +1653.910767 +1653.943900 +1653.987057 +1654.027916 +1654.068442 +1654.124653 +1654.173937 +1654.251126 +1654.289321 +1654.330147 +1654.368875 +1654.419524 +1654.454356 +1654.487923 +1654.527783 +1654.571139 +1654.628682 +1654.670540 +1654.709234 +1654.775668 +1654.811698 +1654.846863 +1654.897945 +1654.940037 +1654.978298 +1655.011032 +1655.049094 +1655.085125 +1655.121289 +1655.175534 +1655.218391 +1655.253789 +1655.304339 +1655.346263 +1655.392917 +1655.438538 +1655.487589 +1655.624385 +1655.664412 +1655.704904 +1655.760415 +1655.811697 +1655.913729 +1655.955953 +1656.024052 +1656.068707 +1656.109899 +1656.136173 +1656.193515 +1656.236239 +1656.292916 +1656.332743 +1656.373502 +1656.419256 +1656.467941 +1656.504670 +1656.552423 +1656.589852 +1656.615726 +1656.657684 +1656.699875 +1656.734274 +1656.769905 +1656.801274 +1656.844996 +1656.889285 +1656.923917 +1656.968706 +1657.010830 +1657.036771 +1657.072602 +1657.125882 +1657.175033 +1657.219921 +1657.256551 +1657.310098 +1657.359581 +1657.402272 +1657.439135 +1657.475965 +1657.508832 +1657.552422 +1657.602771 +1657.637137 +1657.670970 +1657.712961 +1657.755751 +1657.798342 +1657.837436 +1657.873434 +1657.921019 +1657.958249 +1658.008765 +1658.055052 +1658.113860 +1658.148858 +1658.199840 +1658.223883 +1658.263876 +1658.302571 +1658.331608 +1658.372467 +1658.451688 +1658.498441 +1658.546826 +1658.601805 +1658.639533 +1658.682524 +1658.716989 +1658.757915 +1658.839034 +1658.869803 +1658.905234 +1658.962643 +1659.001371 +1659.033040 +1659.074698 +1659.110029 +1659.153286 +1659.219853 +1659.304401 +1659.358381 +1659.402869 +1659.433505 +1659.475397 +1659.513592 +1659.560045 +1659.605666 +1659.658014 +1659.707698 +1659.749755 +1659.777195 +1659.816156 +1659.849422 +1659.882989 +1659.911593 +1659.945759 +1659.983888 +1660.033771 +1660.071966 +1660.108696 +1660.149988 +1660.219918 +1660.253784 +1660.295542 +1660.332339 +1660.377627 +1660.422415 +1660.457813 +1660.504000 +1660.544427 +1660.618919 +1660.669335 +1660.705366 +1660.742029 +1660.785652 +1660.820151 +1660.855182 +1660.907630 +1660.942095 +1660.975195 +1661.020417 +1661.067103 +1661.117020 +1661.161342 +1661.202335 +1661.251685 +1661.299637 +1661.344925 +1661.434269 +1661.480257 +1661.526643 +1661.573530 +1661.614356 +1661.645857 +1661.699837 +1661.752151 +1661.799337 +1661.850486 +1661.885584 +1661.934568 +1661.971698 +1662.020116 +1662.058578 +1662.101035 +1662.168201 +1662.218318 +1662.258611 +1662.291844 +1662.331571 +1662.365437 +1662.407928 +1662.446223 +1662.490445 +1662.531105 +1662.580588 +1662.611091 +1662.647521 +1662.698304 +1662.742493 +1662.784651 +1662.836599 +1662.871797 +1662.909892 +1662.974694 +1663.020148 +1663.056179 +1663.112323 +1663.140928 +1663.175027 +1663.211823 +1663.252249 +1663.292243 +1663.316585 +1663.353881 +1663.394274 +1663.449685 +1663.482919 +1663.536631 +1663.585516 +1663.618716 +1663.642492 +1663.699568 +1663.727873 +1663.773794 +1663.822945 +1663.864303 +1663.892375 +1663.937264 +1663.962172 +1663.994173 +1664.022379 +1664.074260 +1664.084650 +1664.094540 +1664.134699 +1664.171130 +1664.215785 +1664.254280 +1664.310290 +1664.350117 +1664.395272 +1664.429937 +1664.470297 +1664.497470 +1664.537263 +1664.574925 +1664.623177 +1664.654845 +1664.715884 +1664.761306 +1664.804462 +1664.843257 +1664.875824 +1664.916983 +1664.968665 +1665.006727 +1665.053014 +1665.119514 +1665.151249 +1665.196170 +1665.218781 +1665.271994 +1665.327172 +1665.351215 +1665.388844 +1665.434998 +1665.492274 +1665.532067 +1665.570562 +1665.626539 +1665.664402 +1665.709590 +1665.747352 +1665.806859 +1665.922277 +1665.967365 +1666.027138 +1666.062769 +1666.091807 +1666.168797 +1666.203595 +1666.237261 +1666.266466 +1666.304761 +1666.342489 +1666.380285 +1666.416249 +1666.458440 +1666.495336 +1666.524507 +1666.556742 +1666.590941 +1666.629436 +1666.658074 +1666.697701 +1666.732599 +1666.778819 +1666.824340 +1666.857374 +1666.888676 +1666.924640 +1666.959971 +1667.005060 +1667.046118 +1667.077554 +1667.115982 +1667.152246 +1667.184780 +1667.212452 +1667.242255 +1667.266265 +1667.298899 +1667.337094 +1667.376454 +1667.424606 +1667.448283 +1667.485712 +1667.516681 +1667.547217 +1667.594636 +1667.627936 +1667.686577 +1667.733397 +1667.767763 +1667.789441 +1667.813384 +1667.845651 +1667.874722 +1667.919944 +1667.976054 +1668.023640 +1668.114549 +1668.142021 +1668.177886 +1668.206390 +1668.232331 +1668.289707 +1668.343020 +1668.418278 +1668.469327 +1668.512417 +1668.570526 +1668.604092 +1668.648648 +1668.696966 +1668.759337 +1668.875587 +1668.923373 +1668.962267 +1668.989906 +1669.055773 +1669.104058 +1669.151478 +1669.212650 +1669.242820 +1669.283745 +1669.333862 +1669.389872 +1669.431930 +1669.539489 +1669.578550 +1669.615080 +1669.662799 +1669.703692 +1669.748913 +1669.789006 +1669.856505 +1669.940654 +1669.987741 +1670.008420 +1670.037624 +1670.089472 +1670.143318 +1670.198929 +1670.235692 +1670.280381 +1670.317777 +1670.369825 +1670.415346 +1670.451443 +1670.495899 +1670.530930 +1670.573787 +1670.617543 +1670.659069 +1670.691802 +1670.732428 +1670.766861 +1670.813014 +1670.863963 +1670.907420 +1670.964563 +1671.019841 +1671.062598 +1671.095432 +1671.147646 +1671.182245 +1671.212082 +1671.270323 +1671.302291 +1671.335891 +1671.381445 +1671.427832 +1671.470323 +1671.538455 +1671.581245 +1671.632061 +1671.663863 +1671.698894 +1671.748545 +1671.830762 +1671.938887 +1671.969823 +1672.046047 +1672.111814 +1672.200259 +1672.274285 +1672.321738 +1672.347745 +1672.399127 +1672.441584 +1672.486573 +1672.566193 +1672.602057 +1672.645314 +1672.691168 +1672.739253 +1672.776549 +1672.804321 +1672.855636 +1672.906519 +1672.949110 +1672.977048 +1673.008450 +1673.073385 +1673.120904 +1673.149975 +1673.199692 +1673.233325 +1673.262562 +1673.300391 +1673.333791 +1673.369755 +1673.411513 +1673.456701 +1673.504320 +1673.525100 +1673.620504 +1673.681310 +1673.704786 +1673.758399 +1673.806784 +1673.857767 +1673.942682 +1674.010147 +1674.109881 +1674.159831 +1674.220037 +1674.251006 +1674.311845 +1674.354236 +1674.404886 +1674.452704 +1674.506750 +1674.536021 +1674.583807 +1674.646777 +1674.710180 +1674.771619 +1674.816940 +1674.862028 +1674.907116 +1674.941382 +1675.000256 +1675.035088 +1675.092930 +1675.129127 +1675.181941 +1675.222800 +1675.275214 +1675.319237 +1675.371052 +1675.415674 +1675.464458 +1675.500223 +1675.553769 +1675.596892 +1675.627295 +1675.681108 +1675.713676 +1675.745677 +1675.784638 +1675.836053 +1675.876945 +1675.932690 +1675.957465 +1675.999856 +1676.037884 +1676.078377 +1676.186769 +1676.234721 +1676.340548 +1676.379243 +1676.414641 +1676.456732 +1676.513308 +1676.590431 +1676.675380 +1676.731890 +1676.798423 +1676.871816 +1676.951670 +1677.011576 +1677.042246 +1677.081939 +1677.109312 +1677.135752 +1677.175579 +1677.221999 +1677.258296 +1677.298056 +1677.368919 +1677.414706 +1677.471583 +1677.528825 +1677.586934 +1677.624263 +1677.648172 +1677.684070 +1677.709511 +1677.745775 +1677.792595 +1677.832555 +1677.881705 +1677.944542 +1678.027693 +1678.067086 +1678.107013 +1678.155798 +1678.191395 +1678.224829 +1678.273546 +1678.320466 +1678.364689 +1678.416537 +1678.470816 +1678.513540 +1678.560759 +1678.607179 +1678.657662 +1678.714105 +1678.746173 +1678.746906 +1678.771581 +1678.810342 +1678.840113 +1678.899420 +1678.957329 +1679.021464 +1679.076376 +1679.136116 +1679.196955 +1679.241577 +1679.291994 +1679.322463 +1679.356995 +1679.397122 +1679.422630 +1679.464488 +1679.519899 +1679.575010 +1679.654298 +1679.717168 +1679.772146 +1679.835849 +1679.899652 +1679.941077 +1680.007777 +1680.037947 +1680.071746 +1680.121463 +1680.166685 +1680.201550 +1680.252266 +1680.324160 +1680.367018 +1680.411440 +1680.448170 +1680.476042 +1680.511273 +1680.548669 +1680.600617 +1680.658626 +1680.706944 +1680.752165 +1680.828156 +1680.867949 +1680.896121 +1680.929688 +1680.959591 +1680.995122 +1681.035482 +1681.064153 +1681.113970 +1681.169348 +1681.218598 +1681.243074 +1681.273011 +1681.311972 +1681.371412 +1681.407276 +1681.446037 +1681.497220 +1681.534882 +1681.593690 +1681.643473 +1681.685498 +1681.736913 +1681.776240 +1681.800682 +1681.863453 +1681.897519 +1681.941009 +1681.993090 +1682.054428 +1682.108208 +1682.147136 +1682.198151 +1682.266383 +1682.321095 +1682.354362 +1682.380169 +1682.431085 +1682.476906 +1682.512537 +1682.552363 +1682.579137 +1682.603212 +1682.638444 +1682.687961 +1682.734315 +1682.772843 +1682.822893 +1682.877238 +1682.931151 +1682.993955 +1683.044637 +1683.102413 +1683.132183 +1683.159456 +1683.190991 +1683.222193 +1683.292189 +1683.339975 +1683.398083 +1683.423158 +1683.459589 +1683.509339 +1683.549199 +1683.590857 +1683.682465 +1683.726754 +1683.779069 +1683.843771 +1683.894520 +1683.923957 +1683.973474 +1684.029185 +1684.080534 +1684.155325 +1684.185129 +1684.243737 +1684.280434 +1684.319261 +1684.362052 +1684.416031 +1684.450030 +1684.501546 +1684.537976 +1684.581599 +1684.732115 +1684.782731 +1684.825022 +1684.861186 +1684.911036 +1684.959787 +1684.988392 +1685.042437 +1685.087959 +1685.151994 +1685.186260 +1685.232381 +1685.279167 +1685.317229 +1685.378934 +1685.425554 +1685.498381 +1685.528751 +1685.618594 +1685.676236 +1685.730282 +1685.785360 +1685.826120 +1685.861251 +1685.916862 +1685.963049 +1686.109070 +1686.159752 +1686.229316 +1686.279233 +1686.319692 +1686.363315 +1686.409036 +1686.463382 +1686.516329 +1686.554524 +1686.581097 +1686.623921 +1686.670208 +1686.722223 +1686.754690 +1686.801443 +1686.859519 +1686.902509 +1686.961017 +1686.990021 +1687.043135 +1687.138573 +1687.179398 +1687.243101 +1687.311000 +1687.354024 +1687.433677 +1687.479698 +1687.525385 +1687.566011 +1687.604773 +1687.637606 +1687.688689 +1687.809101 +1687.861815 +1687.907536 +1687.982961 +1688.046630 +1688.069441 +1688.124019 +1688.172105 +1688.211532 +1688.266843 +1688.298112 +1688.344465 +1688.384492 +1688.430979 +1688.485458 +1688.546097 +1688.601541 +1688.648395 +1688.702607 +1688.775134 +1688.806270 +1688.833975 +1688.879830 +1688.929613 +1688.972936 +1689.017625 +1689.088554 +1689.117458 +1689.172070 +1689.238837 +1689.300209 +1689.360115 +1689.386722 +1689.427848 +1689.478297 +1689.535873 +1689.574434 +1689.612163 +1689.669739 +1689.726249 +1689.777997 +1689.837771 +1689.908100 +1690.022852 +1690.061547 +1690.105836 +1690.150158 +1690.213761 +1690.265309 +1690.303671 +1690.339402 +1690.391716 +1690.429378 +1690.458449 +1690.491383 +1690.542598 +1690.598509 +1690.651689 +1690.713594 +1690.762345 +1690.903437 +1690.955718 +1691.002471 +1691.071236 +1691.137270 +1691.172068 +1691.226081 +1691.274632 +1691.317156 +1691.356750 +1691.407599 +1691.447193 +1691.475398 +1691.510629 +1691.553886 +1691.600806 +1691.688185 +1691.730110 +1691.788052 +1691.842364 +1691.899573 +1691.960945 +1692.000572 +1692.050323 +1692.112161 +1692.171368 +1692.243995 +1692.293912 +1692.365174 +1692.403402 +1692.483589 +1692.517855 +1692.644361 +1692.698274 +1692.743029 +1692.819286 +1692.851854 +1692.886019 +1692.933272 +1692.960145 +1693.005866 +1693.040465 +1693.083122 +1693.130375 +1693.177960 +1693.217155 +1693.243362 +1693.266572 +1693.288816 +1693.332339 +1693.375962 +1693.426745 +1693.482522 +1693.528376 +1693.578027 +1693.595642 +1693.617820 +1693.663641 +1693.697507 +1693.734803 +1693.785719 +1693.822415 +1693.876594 +1693.923481 +1693.991479 +1694.038965 +1694.087317 +1694.127144 +1694.154716 +1694.221416 +1694.264673 +1694.301636 +1694.381722 +1694.439864 +1694.498439 +1694.550919 +1694.596840 +1694.639830 +1694.695075 +1694.735401 +1694.784386 +1694.824479 +1694.868335 +1694.892111 +1694.907696 +1694.958711 +1695.014256 +1695.060110 +1695.100736 +1695.157579 +1695.208461 +1695.250219 +1695.290113 +1695.326143 +1695.368434 +1695.483020 +1695.533403 +1695.598238 +1695.652350 +1695.712224 +1695.824012 +1695.911691 +1695.971298 +1696.007695 +1696.061241 +1696.094441 +1696.140162 +1696.226376 +1696.262906 +1696.310658 +1696.361174 +1696.401134 +1696.463072 +1696.501134 +1696.564237 +1696.612789 +1696.671130 +1696.730005 +1696.805496 +1696.894973 +1696.952549 +1697.025975 +1697.075093 +1697.143291 +1697.200034 +1697.232202 +1697.252349 +1697.277190 +1697.301966 +1697.342458 +1697.400101 +1697.419415 +1697.483917 +1697.539228 +1697.588412 +1697.643757 +1697.672528 +1697.720347 +1697.763271 +1697.816384 +1697.860107 +1697.914686 +1698.004096 +1698.066767 +1698.125508 +1698.171928 +1698.260806 +1698.334432 +1698.400732 +1698.467865 +1698.553546 +1698.622144 +1698.672893 +1698.745054 +1698.781252 +1698.834032 +1698.890675 +1698.917782 +1698.979420 +1699.044988 +1699.094605 +1699.148884 +1699.221078 +1699.274191 +1699.343422 +1699.390075 +1699.433032 +1699.488643 +1699.536462 +1699.575357 +1699.622543 +1699.656575 +1699.707924 +1699.743755 +1699.782050 +1699.817548 +1699.861204 +1699.901264 +1699.926205 +1699.950581 +1699.993571 +1700.031200 +1700.084847 +1700.136828 +1700.157774 +1700.210987 +1700.273092 +1700.340824 +1700.413584 +1700.497167 +1700.552612 +1700.635096 +1700.671459 +1700.714949 +1700.761236 +1700.787543 +1700.819578 +1700.863667 +1700.908489 +1700.924606 +1700.971559 +1701.012485 +1701.038192 +1701.078186 +1701.160303 +1701.228602 +1701.282215 +1701.333830 +1701.394902 +1701.471892 +1701.521808 +1701.590573 +1701.681881 +1701.713849 +1701.746417 +1701.796067 +1701.850679 +1701.910752 +1701.941588 +1701.974022 +1702.032763 +1702.077519 +1702.134595 +1702.173856 +1702.297698 +1702.346449 +1702.438224 +1702.521008 +1702.611351 +1702.667561 +1702.755340 +1702.832263 +1702.864831 +1702.905157 +1703.006289 +1703.037158 +1703.069959 +1703.143818 +1703.194501 +1703.289505 +1703.343618 +1703.395999 +1703.535692 +1703.591503 +1703.680614 +1703.710351 +1703.787540 +1703.836691 +1703.928399 +1703.976718 +1704.022738 +1704.099894 +1704.169758 +1704.236857 +1704.282079 +1704.326634 +1704.408952 +1704.473653 +1704.528798 +1704.557303 +1704.606221 +1704.717243 +1704.829364 +1704.875118 +1704.933593 +1704.976650 +1705.013913 +1705.074652 +1705.225068 +1705.286973 +1705.312747 +1705.367326 +1705.434425 +1705.511914 +1705.570056 +1705.654072 +1705.715077 +1705.749676 +1705.811115 +1705.852806 +1705.911747 +1705.982277 +1706.035823 +1706.134225 +1706.228963 +1706.283875 +1706.353405 +1706.396762 +1706.438686 +1706.513012 +1706.583608 +1706.635356 +1706.665626 +1706.713445 +1706.790568 +1706.853471 +1706.935323 +1707.019105 +1707.095995 +1707.153371 +1707.243581 +1707.302555 +1707.370187 +1707.426331 +1707.512378 +1707.608049 +1707.649108 +1707.740550 +1707.781309 +1707.802921 +1707.856401 +1707.949274 +1708.001722 +1708.048808 +1708.077513 +1708.149640 +1708.199224 +1708.254336 +1708.307416 +1708.358365 +1708.427129 +1708.498824 +1708.602254 +1708.683806 +1708.734355 +1708.796227 +1708.883373 +1708.990765 +1709.075181 +1709.150738 +1709.230225 +1709.305816 +1709.344078 +1709.397824 +1709.494827 +1709.530591 +1709.546775 +1709.647674 +1709.687867 +1709.743112 +1709.793129 +1709.866755 +1709.969019 +1710.016072 +1710.067720 +1710.118503 +1710.177577 +1710.221600 +1710.319935 +1710.475079 +1710.534187 +1710.571450 +1710.627427 +1710.677677 +1710.754000 +1710.789964 +1710.849704 +1710.913008 +1710.944110 +1710.982172 +1711.012042 +1711.050237 +1711.090497 +1711.139381 +1711.240247 +1711.308145 +1711.437649 +1711.503517 +1711.570583 +1711.646473 +1711.703749 +1711.765621 +1711.830622 +1711.892194 +1711.924662 +1711.958028 +1712.001485 +1712.043343 +1712.088198 +1712.122131 +1712.165987 +1712.217002 +1712.250103 +1712.328324 +1712.407811 +1712.484401 +1712.541977 +1712.586233 +1712.657528 +1712.723928 +1712.794724 +1712.846605 +1712.905946 +1712.945440 +1712.981570 +1713.008577 +1713.043342 +1713.076609 +1713.114171 +1713.155030 +1713.206911 +1713.290461 +1713.329189 +1713.375043 +1713.424360 +1713.476142 +1713.599652 +1713.643508 +1713.759358 +1713.812872 +1713.930088 +1713.985565 +1714.060457 +1714.165385 +1714.237280 +1714.286664 +1714.333117 +1714.353797 +1714.386231 +1714.422628 +1714.476041 +1714.510407 +1714.584766 +1714.651665 +1714.710973 +1714.834416 +1714.885897 +1714.973643 +1715.082501 +1715.162887 +1715.208408 +1715.353296 +1715.412870 +1715.446336 +1715.497052 +1715.552164 +1715.620828 +1715.666649 +1715.730585 +1715.801448 +1715.949466 +1716.013236 +1716.120229 +1716.215633 +1716.373408 +1716.550964 +1716.619928 +1716.668713 +1716.714733 +1716.769179 +1716.819595 +1716.851497 +1716.894454 +1716.959155 +1716.983032 +1717.070244 +1717.118529 +1717.216964 +1717.264084 +1717.306674 +1717.359821 +1717.453694 +1717.557690 +1717.620627 +1717.727320 +1717.796617 +1717.944436 +1717.989191 +1718.039840 +1718.101146 +1718.168978 +1718.216530 +1718.261185 +1718.309004 +1718.382364 +1718.449930 +1718.485627 +1718.556923 +1718.645401 +1718.748931 +1718.879800 +1718.919227 +1719.020758 +1719.102010 +1719.205573 +1719.297581 +1719.347665 +1719.445633 +1719.506539 +1719.573538 +1719.638940 +1719.713199 +1719.787791 +1719.821890 +1719.879965 +1719.928383 +1719.987025 +1720.031214 +1720.088756 +1720.148729 +1720.197913 +1720.272006 +1720.304707 +1720.417294 +1720.447231 +1720.514430 +1720.561649 +1720.617127 +1720.664979 +1720.786225 +1720.855855 +1720.939471 +1721.111865 +1721.175235 +1721.328149 +1721.397113 +1721.449627 +1721.495082 +1721.535674 +1721.606703 +1721.664079 +1721.690852 +1721.723353 +1721.770806 +1721.862181 +1721.940036 +1721.983260 +1722.034175 +1722.116959 +1722.195381 +1722.269606 +1722.369273 +1722.463612 +1722.542666 +1722.615560 +1722.680262 +1722.818690 +1722.854354 +1722.900109 +1722.938670 +1722.980695 +1723.021920 +1723.057651 +1723.096412 +1723.123851 +1723.158050 +1723.192782 +1723.231077 +1723.263944 +1723.311031 +1723.358749 +1723.465776 +1723.510764 +1723.560947 +1723.624250 +1723.668673 +1723.733175 +1723.808965 +1723.844596 +1723.883591 +1723.923418 +1723.972835 +1724.019022 +1724.136338 +1724.224749 +1724.292681 +1724.429011 +1724.491882 +1724.586953 +1724.647426 +1724.849457 +1724.926214 +1724.963410 +1725.021019 +1725.058581 +1725.108498 +1725.158781 +1725.265507 +1725.348458 +1725.381425 +1725.429876 +1725.474099 +1725.533206 +1725.590882 +1725.668104 +1725.751088 +1725.795544 +1725.892280 +1725.924082 +1725.985287 +1726.011894 +1726.049922 +1726.091481 +1726.173099 +1726.249056 +1726.351221 +1726.453618 +1726.526712 +1726.640065 +1726.761410 +1726.843095 +1726.912625 +1726.958213 +1727.003634 +1727.049155 +1727.093011 +1727.148889 +1727.201303 +1727.245992 +1727.289282 +1727.346724 +1727.415355 +1727.441796 +1727.532438 +1727.592645 +1727.637866 +1727.702868 +1727.781589 +1727.900137 +1727.981156 +1728.048921 +1728.223580 +1728.319617 +1728.381055 +1728.476027 +1728.548987 +1728.595607 +1728.637632 +1728.688115 +1728.720715 +1728.759843 +1728.811924 +1728.868867 +1728.954315 +1728.978757 +1729.033636 +1729.113556 +1729.179656 +1729.231737 +1729.364238 +1729.464538 +1729.543658 +1729.620615 +1729.710558 +1729.822046 +1729.867534 +1729.933202 +1730.047754 +1730.099702 +1730.195239 +1730.267234 +1730.323345 +1730.354813 +1730.436398 +1730.496038 +1730.558842 +1730.701233 +1730.781619 +1730.946987 +1731.039761 +1731.104163 +1731.255745 +1731.355844 +1731.432934 +1731.524908 +1731.607093 +1731.691841 +1731.813952 +1731.904096 +1732.130669 +1732.207692 +1732.312154 +1732.372427 +1732.413785 +1732.476156 +1732.503795 +1732.529803 +1732.574891 +1732.703595 +1732.857574 +1732.916848 +1732.964934 +1733.067797 +1733.112319 +1733.230634 +1733.316682 +1733.394071 +1733.547817 +1733.723275 +1733.854243 +1733.930500 +1734.147949 +1734.199531 +1734.233131 +1734.294469 +1734.368795 +1734.419744 +1734.450513 +1734.502028 +1734.542122 +1734.652145 +1734.715948 +1734.761169 +1734.805158 +1734.860836 +1734.891106 +1734.954642 +1735.011718 +1735.090106 +1735.162767 +1735.297665 +1735.367862 +1735.470026 +1735.513449 +1735.544518 +1735.578384 +1735.640289 +1735.724072 +1735.816779 +1735.950312 +1736.013915 +1736.080748 +1736.174987 +1736.234860 +1736.315813 +1736.347681 +1736.445550 +1736.517411 +1736.564530 +1736.639522 +1736.744151 +1736.788107 +1736.855206 +1736.925669 +1736.981313 +1737.025402 +1737.060667 +1737.096232 +1737.147081 +1737.185675 +1737.234360 +1737.328599 +1737.422438 +1737.511616 +1737.569092 +1737.619042 +1737.671189 +1737.730530 +1737.784676 +1737.834160 +1737.907919 +1738.081878 +1738.159534 +1738.215678 +1738.289137 +1738.345181 +1738.422504 +1738.476150 +1738.574419 +1738.635824 +1738.658668 +1738.751275 +1738.788304 +1738.832527 +1738.905520 +1738.958201 +1739.015544 +1739.076050 +1739.137089 +1739.218607 +1739.298294 +1739.382743 +1739.461297 +1739.529762 +1739.616176 +1739.665160 +1739.725200 +1739.799259 +1739.851107 +1739.894697 +1739.959565 +1740.036721 +1740.091567 +1740.153105 +1740.173318 +1740.223002 +1740.306218 +1740.360764 +1740.450774 +1740.540217 +1740.635422 +1740.712711 +1740.805985 +1740.937320 +1741.075448 +1741.221302 +1741.274549 +1741.370187 +1741.425798 +1741.462061 +1741.497992 +1741.551006 +1741.613610 +1741.674649 +1741.778245 +1741.829427 +1741.956933 +1742.156433 +1742.251371 +1742.528594 +1742.591864 +1742.650638 +1742.735254 +1742.804151 +1742.879875 +1742.926662 +1743.006082 +1743.059396 +1743.166921 +1743.242279 +1743.330158 +1743.370251 +1743.459895 +1743.508713 +1743.575213 +1743.630091 +1743.794260 +1743.864090 +1743.928925 +1743.988732 +1744.044543 +1744.125828 +1744.408312 +1744.626127 +1744.729224 +1744.792394 +1744.829890 +1744.880972 +1744.944942 +1744.984336 +1745.013473 +1745.101651 +1745.151435 +1745.223763 +1745.366753 +1745.391361 +1745.455397 +1745.526493 +1745.655597 +1745.774245 +1745.890029 +1746.127891 +1746.219133 +1746.296788 +1746.355729 +1746.455929 +1746.546205 +1746.650767 +1746.731686 +1746.839279 +1746.906978 +1746.949202 +1747.006811 +1747.044473 +1747.109075 +1747.181436 +1747.276408 +1747.375375 +1747.464719 +1747.555628 +1747.624992 +1747.704479 +1747.836514 +1747.894356 +1748.076107 +1748.115634 +1748.163853 +1748.203580 +1748.237612 +1748.283466 +1748.330320 +1748.421695 +1748.519164 +1748.580203 +1748.622194 +1748.707842 +1748.754795 +1748.792490 +1748.875774 +1748.951997 +1749.019696 +1749.123659 +1749.275207 +1749.367315 +1749.534514 +1749.697051 +1749.752529 +1749.871044 +1749.906109 +1749.930684 +1749.986129 +1750.032849 +1750.072576 +1750.144770 +1750.215466 +1750.262785 +1750.445103 +1750.524057 +1750.662219 +1750.951696 +1751.007773 +1751.060453 +1751.182764 +1751.233580 +1751.320426 +1751.475371 +1751.554159 +1751.637209 +1751.707472 +1751.808205 +1751.975637 +1752.062717 +1752.148464 +1752.191188 +1752.284828 +1752.326586 +1752.381431 +1752.444035 +1752.499280 +1752.569609 +1752.619293 +1752.698414 +1752.760851 +1752.823422 +1752.873472 +1753.108770 +1753.196215 +1753.345899 +1753.497847 +1753.639172 +1753.728349 +1753.812299 +1753.889022 +1753.960450 +1754.060617 +1754.111133 +1754.137873 +1754.163281 +1754.184393 +1754.216527 +1754.255155 +1754.295448 +1754.332844 +1754.380863 +1754.439671 +1754.479697 +1754.526351 +1754.565645 +1754.642135 +1754.704506 +1754.760450 +1754.804272 +1754.853457 +1754.876067 +1754.919557 +1754.961548 +1754.986590 +1755.018891 +1755.134742 +1755.273802 +1755.357252 +1755.486323 +1755.519856 +1755.566110 +1755.615993 +1755.654155 +1755.722420 +1755.754222 +1755.888787 +1755.939103 +1755.989253 +1756.033575 +1756.082793 +1756.198610 +1756.246529 +1756.408200 +1756.454221 +1756.506069 +1756.563911 +1756.629745 +1756.737904 +1756.829412 +1756.893481 +1756.935772 +1756.987920 +1757.048326 +1757.049192 +1757.074633 +1757.142032 +1757.203504 +1757.310264 +1757.356518 +1757.393081 +1757.443597 +1757.549191 +1757.626314 +1757.706834 +1757.777296 +1757.902871 +1758.143030 +1758.210063 +1758.319454 +1758.345494 +1758.373300 +1758.414658 +1758.451422 +1758.521252 +1758.598141 +1758.659280 +1758.754019 +1758.901871 +1758.971268 +1759.078993 +1759.232906 +1759.382623 +1759.410162 +1759.444128 +1759.480858 +1759.540198 +1759.586152 +1759.660944 +1759.715423 +1759.801537 +1759.887717 +1759.998739 +1760.092479 +1760.280890 +1760.401436 +1760.477127 +1760.523681 +1760.605399 +1760.709928 +1760.812225 +1760.943760 +1761.029008 +1761.284186 +1761.398738 +1761.454349 +1761.506697 +1761.601602 +1761.703033 +1761.736633 +1761.892277 +1762.062640 +1762.235467 +1762.323779 +1762.392577 +1762.446856 +1762.525577 +1762.602866 +1762.668467 +1762.722613 +1762.772829 +1762.821580 +1762.872063 +1762.958044 +1763.008826 +1763.037464 +1763.093508 +1763.171763 +1763.233668 +1763.353848 +1763.450351 +1763.513788 +1763.576258 +1763.635033 +1763.914753 +1763.985116 +1764.149651 +1764.246088 +1764.324543 +1764.392175 +1764.452481 +1764.507426 +1764.620280 +1764.740127 +1764.825741 +1764.901032 +1764.936064 +1764.993073 +1765.067899 +1765.244289 +1765.298235 +1765.394205 +1765.433466 +1765.486946 +1765.549117 +1765.642690 +1765.697635 +1765.818381 +1765.869330 +1766.197901 +1766.324274 +1766.415050 +1766.485579 +1766.544554 +1766.590141 +1766.648550 +1766.738793 +1766.997167 +1767.140191 +1767.300464 +1767.420444 +1767.626837 +1767.764200 +1767.806357 +1767.892504 +1767.930766 +1767.964599 +1768.038159 +1768.128102 +1768.215648 +1768.289440 +1768.391938 +1768.600396 +1768.789473 +1769.027135 +1769.090838 +1769.150279 +1769.195101 +1769.256905 +1769.400628 +1769.471191 +1769.567994 +1769.724204 +1769.813715 +1769.848147 +1769.951110 +1770.008520 +1770.121606 +1770.191536 +1770.611916 +1770.739821 +1770.832428 +1770.996531 +1771.029598 +1771.090170 +1771.143883 +1771.189804 +1771.274286 +1771.399161 +1771.522937 +1771.595098 +1771.649877 +1771.716244 +1771.856903 +1771.956769 +1772.032993 +1772.127965 +1772.257102 +1772.361131 +1772.410582 +1772.512613 +1772.735323 +1772.875283 +1773.083908 +1773.161830 +1773.264028 +1773.323901 +1773.405686 +1773.492699 +1773.588969 +1773.647510 +1773.707350 +1774.196128 +1774.316574 +1774.421136 +1774.468755 +1774.540783 +1774.614109 +1774.702687 +1774.759031 +1774.812011 +1774.868921 +1775.075747 +1775.114509 +1775.225597 +1775.371818 +1775.625963 +1775.772184 +1775.826796 +1775.868587 +1775.928560 +1775.977844 +1776.045910 +1776.084571 +1776.119203 +1776.213242 +1776.335953 +1776.433788 +1776.544910 +1776.741347 +1776.851004 +1776.940780 +1777.003751 +1777.039815 +1777.161426 +1777.299488 +1777.961825 +1777.991862 +1778.029457 +1778.083803 +1778.187233 +1778.266453 +1778.330423 +1778.498788 +1778.601418 +1778.669450 +1778.727392 +1778.847772 +1779.020665 +1779.220265 +1779.522763 +1779.574011 +1779.672246 +1779.716369 +1779.763055 +1779.833751 +1779.923695 +1780.065453 +1780.185433 +1780.329688 +1780.429755 +1780.516701 +1780.561656 +1780.744040 +1780.869415 +1780.930287 +1781.026957 +1781.134582 +1781.291425 +1781.410440 +1781.538278 +1781.635648 +1781.696154 +1781.828022 +1781.895188 +1781.962254 +1782.074974 +1782.157225 +1782.202114 +1782.250565 +1782.323326 +1782.632416 +1782.911104 +1783.048733 +1783.121593 +1783.251697 +1783.340608 +1783.453195 +1783.539175 +1783.779035 +1784.244203 +1784.345135 +1784.440939 +1784.560153 +1784.681266 +1784.771575 +1784.822924 +1784.978901 +1785.057556 +1785.122824 +1785.216663 +1785.288391 +1785.350862 +1785.426753 +1785.519926 +1785.680798 +1785.949962 +1786.046332 +1786.106339 +1786.208703 +1786.255756 +1786.330182 +1786.392919 +1786.480864 +1786.540205 +1786.583495 +1786.644933 +1786.918926 +1787.054956 +1787.171872 +1787.266544 +1787.303707 +1787.358352 +1787.479465 +1787.564513 +1787.628349 +1787.698412 +1787.773570 +1787.884825 +1787.987989 +1788.106337 +1788.402008 +1788.534242 +1788.615661 +1788.691218 +1788.820023 +1788.888321 +1788.986756 +1789.177931 +1789.257818 +1789.607168 +1789.688953 +1789.748060 +1789.829978 +1789.941700 +1790.053288 +1790.153055 +1790.284756 +1790.459248 +1790.733341 +1790.831443 +1791.257283 +1791.343297 +1791.428245 +1791.470336 +1791.537636 +1791.613327 +1791.672434 +1791.752854 +1791.851355 +1791.984888 +1792.119753 +1792.380259 +1792.399706 +1792.532873 +1792.631241 +1792.705433 +1792.781024 +1792.931174 +1793.061577 +1793.118320 +1793.186385 +1793.452585 +1793.919951 +1794.044426 +1794.121083 +1794.298805 +1794.494542 +1794.825445 +1794.877259 +1794.982054 +1795.338298 +1796.015254 +1796.109759 +1796.230238 +1796.855945 +1796.942958 +1797.168100 +1797.483451 +1797.492541 +1797.644589 +1797.768499 +1797.861306 +1798.178055 +1798.318615 +1798.407725 +1798.483250 +1799.162004 +1799.750947 +1800.375256 +1800.445286 +1800.549082 +1800.605026 +1801.226637 +1801.458338 +1801.618112 +1801.744019 +1801.804425 +1801.885577 +1802.582979 +1802.656173 +1802.780448 +1802.858270 +1802.953242 +1803.155107 +1803.244051 +1803.300128 +1803.357171 +1803.440521 +1803.778516 +1803.926634 +1804.113847 +1804.168159 +1804.392801 +1804.525468 +1804.819307 +1805.031861 +1805.183243 +1805.282777 +1805.336756 +1805.474884 +1805.599293 +1805.816542 +1805.898161 +1805.985540 +1806.058567 +1806.217841 +1806.574051 +1806.825766 +1806.861763 +1806.954703 +1807.068722 +1807.163261 +1807.251972 +1807.379245 +1807.570087 +1807.642082 +1807.818205 +1807.924765 +1808.019504 +1808.075681 +1808.129927 +1808.409414 +1808.607715 +1808.695993 +1808.821002 +1808.863226 +1808.916806 +1809.001554 +1809.129759 +1809.585470 +1809.683738 +1809.759362 +1809.814141 +1809.866189 +1809.932722 +1810.042346 +1810.219668 +1810.410744 +1810.484869 +1810.584969 +1810.918102 +1811.208079 +1811.257363 +1811.333054 +1811.373713 +1811.483603 +1811.550503 +1811.610742 +1811.675644 +1811.757829 +1811.884968 +1812.001385 +1812.268351 +1812.367585 +1812.632819 +1812.706479 +1812.872912 +1813.439678 +1813.488496 +1813.542709 +1813.622096 +1813.992358 +1814.530520 +1814.549667 +1814.573976 +1814.685864 +1814.757426 +1814.854196 +1814.918132 +1814.994522 +1815.139144 +1816.463085 +1816.521860 +1816.579202 +1816.665150 +1816.723658 +1816.854860 +1816.986761 +1817.219695 +1818.533313 +1818.600346 +1818.646100 +1818.773972 +1818.848864 +1819.138041 +1819.280332 +1819.335543 +1819.395517 +1819.500678 +1819.548197 +1819.695416 +1820.213131 +1820.242569 +1820.400844 +1820.562848 +1820.788489 +1820.901442 +1821.739504 +1821.817559 +1821.916260 +1822.064845 +1822.134208 +1822.228814 +1822.285490 +1822.539037 +1822.962779 +1823.023052 +1823.126049 +1823.314360 +1823.475666 +1823.698543 +1823.747260 +1823.846128 +1824.150357 +1824.386454 +1824.497543 +1824.548392 +1824.610197 +1824.668671 +1824.730643 +1824.776996 +1824.860446 +1824.912461 +1824.984489 +1825.096676 +1825.170835 +1825.282624 +1825.592680 +1825.650122 +1825.653919 +1825.798241 +1825.900638 +1825.974131 +1826.071567 +1826.185220 +1826.241897 +1826.408397 +1826.506865 +1826.621417 +1826.709895 +1826.903168 +1827.149821 +1827.229042 +1827.265072 +1827.304366 +1827.340364 +1827.361509 +1827.400570 +1827.450454 +1827.494709 +1827.559311 +1827.679591 +1827.873297 +1828.094043 +1828.228242 +1828.348122 +1828.385917 +1828.466770 +1828.574195 +1828.614422 +1828.653749 +1828.714222 +1828.837931 +1828.929739 +1829.060042 +1829.204265 +1829.509159 +1829.647554 +1829.747887 +1829.803332 +1829.875126 +1829.929672 +1829.974927 +1830.025010 +1830.086382 +1830.168133 +1830.266268 +1830.337397 +1830.417284 +1830.501866 +1830.690077 +1830.869964 +1830.916018 +1831.200500 +1831.291642 +1831.384382 +1831.486980 +1831.584882 +1831.660339 +1831.750416 +1832.072161 +1832.285447 +1832.558873 +1832.741058 +1832.832633 +1832.858873 +1832.890475 +1832.950115 +1833.022942 +1833.080418 +1833.161470 +1833.286112 +1833.353878 +1833.884446 +1834.071393 +1834.127803 +1834.155275 +1834.243820 +1834.346118 +1834.543087 +1834.627603 +1834.656307 +1835.251811 +1835.490272 +1835.699729 +1836.097764 +1836.255773 +1836.680947 +1837.156138 +1837.326035 +1837.371256 +1837.431762 +1837.500360 +1837.622738 +1837.796297 +1838.079680 +1838.143616 +1838.183809 +1838.273287 +1838.381611 +1838.629896 +1839.444514 +1839.491267 +1839.560631 +1839.631494 +1839.717574 +1839.820171 +1839.953871 +1840.125199 +1840.311413 +1840.489968 +1840.663194 +1840.750640 +1840.813111 +1840.907383 +1841.085771 +1841.189467 +1841.353969 +1841.557899 +1841.804352 +1841.941615 +1842.326096 +1842.460595 +1842.536086 +1842.626995 +1842.752936 +1842.837351 +1843.027994 +1843.239815 +1843.380041 +1843.507680 +1843.679675 +1843.865755 +1844.001020 +1844.124996 +1844.229791 +1844.339514 +1844.439015 +1844.882104 +1845.343709 +1845.587299 +1846.167917 +1846.281870 +1846.296389 +1846.333019 +1846.477874 +1846.592892 +1846.729888 +1846.898852 +1847.058925 +1847.142309 +1847.221096 +1847.344739 +1847.496388 +1847.586431 +1847.776307 +1848.335681 +1848.377039 +1848.516500 +1848.608041 +1848.792190 +1848.958258 +1849.159489 +1849.222227 +1849.282133 +1849.684664 +1849.766082 +1849.834514 +1849.851430 +1849.906741 +1850.000847 +1850.071876 +1850.185429 +1850.299948 +1850.441839 +1850.838409 +1851.069777 +1851.132348 +1851.191988 +1851.248798 +1851.336211 +1851.394386 +1851.481765 +1851.557189 +1851.635344 +1851.738175 +1851.890889 +1851.997449 +1852.122990 +1852.422223 +1852.529583 +1852.598847 +1852.741038 +1852.833145 +1852.925919 +1853.059752 +1853.267844 +1853.339971 +1853.391220 +1853.720124 +1853.834143 +1853.978366 +1854.059851 +1854.240803 +1854.422321 +1854.639171 +1854.711032 +1854.805804 +1854.909434 +1855.055554 +1855.250026 +1855.583859 +1855.740635 +1855.838870 +1856.028680 +1856.108767 +1856.173968 +1856.300108 +1856.541334 +1856.679862 +1856.741200 +1856.824450 +1856.896911 +1857.159015 +1857.302905 +1857.607500 +1857.799141 +1857.841499 +1857.870670 +1857.969238 +1858.040766 +1858.154286 +1858.253220 +1858.396477 +1858.447625 +1858.673732 +1858.988284 +1859.051821 +1859.210562 +1859.282989 +1859.385653 +1859.596708 +1859.703768 +1860.007464 +1860.064940 +1860.140131 +1860.214990 +1860.759511 +1860.811060 +1860.830007 +1860.988748 +1861.079591 +1861.143394 +1861.300836 +1861.382055 +1861.492877 +1861.828341 +1862.212390 +1862.301568 +1862.397305 +1862.498004 +1862.578857 +1862.810225 +1863.152283 +1863.300834 +1863.365203 +1863.479955 +1863.535099 +1863.572196 +1863.633068 +1863.686814 +1863.758376 +1863.821579 +1863.882185 +1863.940660 +1864.009425 +1864.098202 +1864.283284 +1864.387180 +1864.498002 +1864.661772 +1864.821145 +1864.881652 +1864.917482 +1864.959107 +1865.032034 +1865.124708 +1865.180719 +1865.253679 +1865.312853 +1865.425207 +1865.488144 +1865.533765 +1865.676656 +1865.889076 +1866.217448 +1866.265200 +1866.333865 +1866.361071 +1866.442023 +1866.597667 +1866.652312 +1866.712719 +1866.825706 +1866.891506 +1866.968496 +1867.051713 +1867.096967 +1867.202995 +1867.461636 +1867.628369 +1867.688575 +1867.717013 +1867.809454 +1867.865864 +1867.957073 +1868.017346 +1868.130067 +1868.207955 +1868.263833 +1868.302361 +1868.377119 +1868.432098 +1868.606423 +1868.721841 +1868.854941 +1868.957105 +1869.047115 +1869.095900 +1869.109786 +1869.167495 +1869.205923 +1869.246482 +1869.289406 +1869.315480 +1869.361534 +1869.452909 +1869.513948 +1869.610118 +1869.688473 +1869.828367 +1869.863831 +1869.932695 +1869.985576 +1870.050777 +1870.165196 +1870.279915 +1870.385143 +1870.443517 +1870.518243 +1870.628266 +1870.657437 +1870.711982 +1870.753074 +1870.826134 +1870.959101 +1871.009784 +1871.060300 +1871.100893 +1871.148345 +1871.191569 +1871.251309 +1871.307286 +1871.408318 +1871.499660 +1871.562431 +1871.639820 +1871.683110 +1871.723436 +1871.782810 +1871.816044 +1871.886939 +1871.943516 +1872.042650 +1872.107352 +1872.172920 +1872.248144 +1872.288171 +1872.345214 +1872.414112 +1872.448311 +1872.496129 +1872.558700 +1872.635989 +1872.715077 +1872.812779 +1872.863129 +1872.918607 +1872.966559 +1873.056702 +1873.102789 +1873.156369 +1873.203854 +1873.244447 +1873.278180 +1873.356601 +1873.413145 +1873.498226 +1873.560897 +1873.647910 +1873.693564 +1873.799691 +1873.884040 +1873.913211 +1873.945812 +1873.985872 +1874.021336 +1874.040284 +1874.128162 +1874.181542 +1874.224999 +1874.290900 +1874.355235 +1874.414676 +1874.471619 +1874.549707 +1874.601589 +1874.674715 +1874.751572 +1874.826896 +1874.888102 +1874.967422 +1875.016174 +1875.082341 +1875.113410 +1875.161228 +1875.204818 +1875.246776 +1875.291498 +1875.343546 +1875.410013 +1875.479110 +1875.548008 +1875.591897 +1875.641714 +1875.701121 +1875.774015 +1875.856099 +1875.900721 +1875.935187 +1875.963059 +1876.006349 +1876.070485 +1876.113808 +1876.170385 +1876.226795 +1876.362359 +1876.408613 +1876.430158 +1876.473215 +1876.527727 +1876.585936 +1876.645210 +1876.730957 +1876.901287 +1876.939815 +1876.969618 +1877.010777 +1877.077777 +1877.146741 +1877.241446 +1877.300520 +1877.384103 +1877.453800 +1877.499221 +1877.548006 +1877.594426 +1877.616904 +1877.669651 +1877.723197 +1877.808911 +1877.872914 +1877.940679 +1877.999920 +1878.087532 +1878.147273 +1878.209677 +1878.320266 +1878.387066 +1878.483802 +1878.543043 +1878.623896 +1878.673046 +1878.779506 +1878.818501 +1878.890329 +1878.938714 +1879.006746 +1879.050968 +1879.102483 +1879.144108 +1879.181371 +1879.226992 +1879.295390 +1879.354165 +1879.385733 +1879.454897 +1879.504181 +1879.556129 +1879.616069 +1879.681803 +1879.734451 +1879.799785 +1879.859259 +1879.912139 +1879.962622 +1880.011273 +1880.065652 +1880.125459 +1880.186998 +1880.233851 +1880.283401 +1880.320864 +1880.362722 +1880.423894 +1880.458326 +1880.507743 +1880.563521 +1880.655928 +1880.712005 +1880.768882 +1880.822928 +1880.904246 +1880.938112 +1880.999118 +1881.103613 +1881.157326 +1881.198185 +1881.241342 +1881.308708 +1881.368748 +1881.440942 +1881.480136 +1881.534349 +1881.584698 +1881.661155 +1881.703213 +1881.744505 +1881.792490 +1881.836879 +1881.885531 +1881.951331 +1882.000382 +1882.099017 +1882.159057 +1882.199883 +1882.242174 +1882.287462 +1882.334115 +1882.369346 +1882.427388 +1882.494521 +1882.585164 +1882.687927 +1882.733282 +1882.773941 +1882.819696 +1882.854328 +1882.896952 +1882.940874 +1882.960555 +1883.002413 +1883.040308 +1883.076172 +1883.135113 +1883.186628 +1883.228453 +1883.272176 +1883.306475 +1883.372942 +1883.450830 +1883.516365 +1883.580001 +1883.617996 +1883.698416 +1883.749998 +1883.831116 +1883.896917 +1883.955692 +1884.005409 +1884.067813 +1884.111336 +1884.153627 +1884.208505 +1884.254559 +1884.282731 +1884.342438 +1884.402611 +1884.455225 +1884.523856 +1884.589624 +1884.672607 +1884.782631 +1884.831981 +1884.875371 +1884.918595 +1884.993053 +1885.061218 +1885.126953 +1885.177868 +1885.218794 +1885.352161 +1885.416396 +1885.463482 +1885.512866 +1885.566013 +1885.625021 +1885.707105 +1885.763582 +1885.836076 +1885.872173 +1885.932113 +1885.992220 +1886.013066 +1886.043302 +1886.114697 +1886.165779 +1886.196249 +1886.278167 +1886.334377 +1886.386292 +1886.451360 +1886.505573 +1886.644567 +1886.687024 +1886.737041 +1886.777567 +1886.830314 +1886.878066 +1886.915729 +1886.977500 +1887.044833 +1887.099412 +1887.158253 +1887.227783 +1887.309834 +1887.365545 +1887.424053 +1887.479165 +1887.542302 +1887.606038 +1887.647763 +1887.705305 +1887.751226 +1887.818092 +1887.869074 +1887.927216 +1887.997479 +1888.045298 +1888.116660 +1888.179830 +1888.228381 +1888.273137 +1888.323453 +1888.362014 +1888.408634 +1888.455288 +1888.573436 +1888.634209 +1888.709034 +1888.760749 +1888.818591 +1888.872736 +1888.937338 +1888.991051 +1889.026849 +1889.070672 +1889.173868 +1889.225150 +1889.293815 +1889.351424 +1889.445430 +1889.490285 +1889.550425 +1889.592649 +1889.649892 +1889.691850 +1889.756285 +1889.823418 +1889.884823 +1889.953488 +1890.015659 +1890.058549 +1890.115792 +1890.160414 +1890.209831 +1890.252089 +1890.285589 +1890.342132 +1890.393081 +1890.477430 +1890.524217 +1890.561013 +1890.603271 +1890.646095 +1890.731409 +1890.789651 +1890.837370 +1890.886754 +1890.933374 +1890.976597 +1891.031575 +1891.100040 +1891.162811 +1891.221286 +1891.276197 +1891.314892 +1891.358881 +1891.459414 +1891.502071 +1891.562710 +1891.625148 +1891.693513 +1891.743796 +1891.804868 +1891.861245 +1891.917722 +1891.973566 +1892.034638 +1892.087618 +1892.126979 +1892.175797 +1892.208597 +1892.253053 +1892.291881 +1892.342863 +1892.380225 +1892.423715 +1892.463142 +1892.503202 +1892.543862 +1892.578360 +1892.616489 +1892.660678 +1892.715623 +1892.767271 +1892.811827 +1892.868703 +1892.905933 +1892.947358 +1893.004334 +1893.047458 +1893.084287 +1893.143961 +1893.173798 +1893.210228 +1893.238533 +1893.295975 +1893.330341 +1893.381024 +1893.429076 +1893.471666 +1893.523514 +1893.578426 +1893.619285 +1893.679525 +1893.736368 +1893.786251 +1893.836734 +1893.877294 +1893.907930 +1893.963541 +1893.992645 +1894.037700 +1894.085818 +1894.134936 +1894.180024 +1894.220184 +1894.323913 +1894.382488 +1894.427276 +1894.476560 +1894.526644 +1894.583154 +1894.627409 +1894.670733 +1894.719018 +1894.747556 +1894.787416 +1894.843060 +1894.873863 +1894.939197 +1894.981189 +1895.027975 +1895.085917 +1895.135134 +1895.174029 +1895.216653 +1895.270133 +1895.377525 +1895.414089 +1895.464538 +1895.509260 +1895.550519 +1895.606929 +1895.653948 +1895.703499 +1895.740995 +1895.808760 +1895.836566 +1895.881054 +1895.937132 +1895.976459 +1896.031471 +1896.077391 +1896.133668 +1896.182952 +1896.226442 +1896.266502 +1896.318816 +1896.371530 +1896.406828 +1896.447854 +1896.500634 +1896.539728 +1896.598270 +1896.639062 +1896.672595 +1896.708060 +1896.749585 +1896.796838 +1896.850984 +1896.900634 +1896.941127 +1896.982052 +1897.025409 +1897.066601 +1897.124776 +1897.167800 +1897.215519 +1897.312788 +1897.353381 +1897.405495 +1897.464070 +1897.516251 +1897.565835 +1897.608092 +1897.656277 +1897.705628 +1897.748052 +1897.822345 +1897.877056 +1897.929837 +1897.966833 +1898.002264 +1898.049151 +1898.093640 +1898.138495 +1898.189344 +1898.236930 +1898.295671 +1898.350516 +1898.411521 +1898.450882 +1898.506859 +1898.548318 +1898.686047 +1898.731068 +1898.771261 +1898.811854 +1898.854112 +1898.901265 +1898.937262 +1898.986746 +1899.025973 +1899.072360 +1899.104528 +1899.150182 +1899.179919 +1899.233665 +1899.281884 +1899.334664 +1899.385147 +1899.437761 +1899.483981 +1899.547684 +1899.597035 +1899.638127 +1899.679186 +1899.735596 +1899.774224 +1899.820045 +1899.860837 +1899.904560 +1899.961303 +1900.005959 +1900.053544 +1900.092539 +1900.137560 +1900.182016 +1900.221010 +1900.284680 +1900.342655 +1900.394503 +1900.437360 +1900.497134 +1900.545985 +1900.587377 +1900.649348 +1900.683148 +1900.749415 +1900.798765 +1900.835495 +1900.872591 +1900.917313 +1900.982182 +1901.045085 +1901.096267 +1901.140290 +1901.176554 +1901.223673 +1901.255641 +1901.319610 +1901.381116 +1901.420709 +1901.467363 +1901.526104 +1901.583180 +1901.626070 +1901.666530 +1901.709953 +1901.745784 +1901.796700 +1901.825737 +1901.864332 +1901.949646 +1902.002360 +1902.038191 +1902.070059 +1902.113682 +1902.151245 +1902.188707 +1902.238391 +1902.281115 +1902.314248 +1902.357405 +1902.402427 +1902.433262 +1902.476386 +1902.533795 +1902.577551 +1902.645250 +1902.715147 +1902.784644 +1902.838956 +1902.902359 +1902.934727 +1902.984078 +1903.020375 +1903.083378 +1903.123272 +1903.171790 +1903.212449 +1903.252509 +1903.302126 +1903.332362 +1903.363664 +1903.419042 +1903.492868 +1903.545616 +1903.588240 +1903.641286 +1903.688306 +1903.728133 +1903.769924 +1903.810617 +1903.843784 +1903.890204 +1903.942219 +1904.005555 +1904.063830 +1904.114679 +1904.133028 +1904.172288 +1904.218309 +1904.258802 +1904.320540 +1904.382012 +1904.431629 +1904.463397 +1904.499328 +1904.521372 +1904.558901 +1904.608085 +1904.643383 +1904.698994 +1904.736124 +1904.772055 +1904.813680 +1904.853073 +1904.887572 +1904.915111 +1904.949577 +1904.995065 +1905.056337 +1905.109017 +1905.149910 +1905.214678 +1905.241618 +1905.270755 +1905.301192 +1905.332460 +1905.372920 +1905.410116 +1905.473286 +1905.565061 +1905.608284 +1905.665394 +1905.700159 +1905.741184 +1905.795064 +1905.841417 +1905.884275 +1905.928830 +1906.006885 +1906.070022 +1906.123302 +1906.178746 +1906.229329 +1906.264194 +1906.315243 +1906.364660 +1906.430561 +1906.479645 +1906.533891 +1906.569489 +1906.606585 +1906.661230 +1906.707950 +1906.771753 +1906.837087 +1906.878080 +1906.921370 +1906.967757 +1907.011180 +1907.056768 +1907.108982 +1907.158566 +1907.222069 +1907.268922 +1907.303953 +1907.352438 +1907.387137 +1907.430660 +1907.486537 +1907.509148 +1907.623167 +1907.660064 +1907.695661 +1907.772285 +1907.818805 +1907.863760 +1907.932624 +1907.980942 +1908.045811 +1908.107649 +1908.138918 +1908.177146 +1908.219404 +1908.281575 +1908.315508 +1908.364259 +1908.403353 +1908.442181 +1908.497492 +1908.531958 +1908.574149 +1908.606649 +1908.648841 +1908.683706 +1908.737319 +1908.788001 +1908.868154 +1908.923133 +1908.970652 +1909.009480 +1909.062427 +1909.093029 +1909.128094 +1909.159296 +1909.202320 +1909.280109 +1909.355333 +1909.398657 +1909.428926 +1909.468820 +1909.536752 +1909.597524 +1909.672016 +1909.721434 +1909.764957 +1909.807914 +1909.846309 +1909.908913 +1909.961327 +1910.019868 +1910.077344 +1910.139115 +1910.197024 +1910.272249 +1910.326828 +1910.373614 +1910.477344 +1910.528659 +1910.604949 +1910.645076 +1910.681506 +1910.756298 +1910.815905 +1910.862591 +1910.903417 +1910.942045 +1910.987400 +1911.033220 +1911.080207 +1911.120833 +1911.159994 +1911.208978 +1911.251835 +1911.329957 +1911.374412 +1911.429157 +1911.462957 +1911.510176 +1911.546307 +1911.582704 +1911.612074 +1911.660992 +1911.717502 +1911.757396 +1911.813073 +1911.898155 +1911.935384 +1911.993859 +1912.021231 +1912.061624 +1912.106679 +1912.153399 +1912.193226 +1912.239846 +1912.276776 +1912.307944 +1912.359826 +1912.405846 +1912.452666 +1912.501917 +1912.546106 +1912.600785 +1912.636682 +1912.680172 +1912.732519 +1912.792193 +1912.840611 +1912.879839 +1912.972413 +1913.007777 +1913.044274 +1913.101450 +1913.126692 +1913.158193 +1913.200784 +1913.242342 +1913.291760 +1913.332985 +1913.371280 +1913.434783 +1913.482069 +1913.527823 +1913.579871 +1913.628023 +1913.676541 +1913.725192 +1913.780704 +1913.840843 +1913.889794 +1913.945938 +1913.985365 +1914.036614 +1914.089228 +1914.140943 +1914.175941 +1914.225858 +1914.277340 +1914.350733 +1914.404579 +1914.465585 +1914.519364 +1914.582667 +1914.632617 +1914.666117 +1914.733683 +1914.791625 +1914.840409 +1914.883267 +1914.931984 +1914.970979 +1915.043806 +1915.085731 +1915.128454 +1915.164485 +1915.209740 +1915.263020 +1915.315867 +1915.367282 +1915.405044 +1915.449933 +1915.511771 +1915.548001 +1915.596752 +1915.654528 +1915.709506 +1915.818963 +1915.858024 +1915.885463 +1915.930019 +1915.969013 +1916.012536 +1916.071610 +1916.119030 +1916.162852 +1916.184431 +1916.219862 +1916.254760 +1916.304943 +1916.351797 +1916.401513 +1916.441473 +1916.500814 +1916.536645 +1916.576305 +1916.610238 +1916.655992 +1916.710904 +1916.760188 +1916.804277 +1916.849898 +1916.892722 +1916.949998 +1917.009305 +1917.065049 +1917.120294 +1917.168512 +1917.200614 +1917.251896 +1917.284296 +1917.329351 +1917.378535 +1917.421859 +1917.477403 +1917.537643 +1917.570776 +1917.611769 +1917.676804 +1917.739874 +1917.798115 +1917.855958 +1917.909770 +1918.016597 +1918.054126 +1918.093453 +1918.131049 +1918.169244 +1918.203909 +1918.243903 +1918.307472 +1918.339240 +1918.382231 +1918.439240 +1918.506806 +1918.558488 +1918.617762 +1918.689124 +1918.756356 +1918.807838 +1918.849863 +1918.886959 +1918.936676 +1918.992586 +1919.027718 +1919.072407 +1919.131947 +1919.179533 +1919.220159 +1919.297448 +1919.338540 +1919.400412 +1919.444368 +1919.494917 +1919.554757 +1919.598880 +1919.650561 +1919.689156 +1919.710501 +1919.748796 +1919.794184 +1919.858287 +1919.901610 +1919.950528 +1920.006971 +1920.056621 +1920.087890 +1920.110800 +1920.150094 +1920.194816 +1920.248662 +1920.298912 +1920.353125 +1920.416361 +1920.464413 +1920.500810 +1920.551393 +1920.589921 +1920.626784 +1920.684160 +1920.734343 +1920.764413 +1920.806970 +1920.859085 +1920.910100 +1920.945365 +1920.991585 +1921.024719 +1921.078099 +1921.118092 +1921.150127 +1921.185758 +1921.244832 +1921.292318 +1921.338205 +1921.381762 +1921.419857 +1921.456953 +1921.497712 +1921.534542 +1921.577899 +1921.623753 +1921.676933 +1921.727316 +1921.772670 +1921.813429 +1921.856253 +1921.882793 +1921.916393 +1921.977032 +1922.014994 +1922.050725 +1922.096846 +1922.133176 +1922.175867 +1922.226016 +1922.277665 +1922.317791 +1922.351657 +1922.402107 +1922.444631 +1922.478930 +1922.507801 +1922.538470 +1922.577964 +1922.638670 +1922.682060 +1922.720788 +1922.744797 +1922.789286 +1922.836572 +1922.881327 +1922.933908 +1922.962979 +1923.001607 +1923.048593 +1923.079229 +1923.108566 +1923.188520 +1923.236405 +1923.298376 +1923.350324 +1923.392649 +1923.422386 +1923.457384 +1923.505203 +1923.582092 +1923.640168 +1923.657617 +1923.705202 +1923.731776 +1923.762012 +1923.805602 +1923.857683 +1923.916624 +1923.962012 +1923.997077 +1924.022651 +1924.063277 +1924.085722 +1924.105002 +1924.158649 +1924.227779 +1924.281359 +1924.326913 +1924.355085 +1924.384223 +1924.403237 +1924.473267 +1924.523217 +1924.550223 +1924.608432 +1924.648825 +1924.673000 +1924.699774 +1924.727313 +1924.760113 +1924.789317 +1924.846693 +1924.886920 +1924.924582 +1924.963043 +1925.002337 +1925.027645 +1925.076064 +1925.136270 +1925.203469 +1925.277695 +1925.352953 +1925.414924 +1925.457848 +1925.497475 +1925.550755 +1925.653952 +1925.711361 +1925.801937 +1925.836136 +1925.887918 +1925.924481 +1925.965040 +1925.994145 +1926.041331 +1926.113758 +1926.180458 +1926.236868 +1926.275496 +1926.308430 +1926.354717 +1926.368303 +1926.425846 +1926.461643 +1926.494943 +1926.538333 +1926.584920 +1926.630940 +1926.670701 +1926.718686 +1926.766172 +1926.795409 +1926.841330 +1926.897440 +1926.954750 +1926.998006 +1927.063807 +1927.113724 +1927.153184 +1927.191146 +1927.234037 +1927.271000 +1927.299338 +1927.330573 +1927.363807 +1927.406764 +1927.455915 +1927.505765 +1927.554216 +1927.609627 +1927.652518 +1927.692445 +1927.766104 +1927.817419 +1927.848788 +1927.882454 +1927.918585 +1927.950653 +1927.977559 +1928.007562 +1928.046091 +1928.084086 +1928.130872 +1928.178591 +1928.228242 +1928.276826 +1928.333203 +1928.374162 +1928.420882 +1928.467136 +1928.502700 +1928.532137 +1928.567369 +1928.649087 +1928.700835 +1928.751151 +1928.804465 +1928.847388 +1928.909426 +1928.942893 +1928.985916 +1929.045490 +1929.082553 +1929.133402 +1929.200102 +1929.248920 +1929.324811 +1929.400934 +1929.453149 +1929.531037 +1929.594141 +1929.656046 +1929.712656 +1929.776692 +1929.846189 +1929.909092 +1929.943558 +1929.983684 +1930.038230 +1930.125676 +1930.164270 +1930.196738 +1930.223111 +1930.276591 +1930.313388 +1930.373927 +1930.404696 +1930.447853 +1930.489145 +1930.539994 +1930.583484 +1930.635299 +1930.666701 +1930.700167 +1930.746288 +1930.791975 +1930.835332 +1930.882318 +1930.917683 +1930.947653 +1930.993440 +1931.040593 +1931.094772 +1931.133900 +1931.187046 +1931.224176 +1931.266034 +1931.303530 +1931.332634 +1931.381518 +1931.426906 +1931.470463 +1931.514752 +1931.542224 +1931.583683 +1931.628638 +1931.659807 +1931.705627 +1931.757242 +1931.801098 +1931.825174 +1931.879886 +1931.930835 +1931.995171 +1932.088378 +1932.135697 +1932.203995 +1932.279320 +1932.335830 +1932.374758 +1932.418980 +1932.498367 +1932.541058 +1932.571794 +1932.602863 +1932.626705 +1932.672593 +1932.711620 +1932.773758 +1932.807658 +1932.848650 +1932.880018 +1932.938693 +1932.990008 +1933.042855 +1933.088443 +1933.116615 +1933.143655 +1933.194271 +1933.244720 +1933.280651 +1933.314950 +1933.341590 +1933.375822 +1933.437261 +1933.461536 +1933.528902 +1933.623874 +1933.680584 +1933.736994 +1933.794203 +1933.855475 +1933.894436 +1933.944619 +1933.983347 +1934.061403 +1934.126171 +1934.200363 +1934.257639 +1934.312551 +1934.356740 +1934.398032 +1934.436161 +1934.459204 +1934.492737 +1934.544586 +1934.594702 +1934.651945 +1934.674289 +1934.725538 +1934.768928 +1934.805424 +1934.834429 +1934.893769 +1934.962034 +1935.022740 +1935.060436 +1935.104492 +1935.158171 +1935.215747 +1935.252843 +1935.308121 +1935.360269 +1935.440322 +1935.488241 +1935.554741 +1935.616279 +1935.658604 +1935.708454 +1935.747715 +1935.800961 +1935.872823 +1935.938424 +1935.966063 +1936.022140 +1936.057138 +1936.103026 +1936.164397 +1936.219243 +1936.282479 +1936.331996 +1936.379782 +1936.422572 +1936.504990 +1936.557937 +1936.623671 +1936.666661 +1936.720641 +1936.746215 +1936.842186 +1936.895732 +1936.919974 +1936.976052 +1937.041686 +1937.116045 +1937.152142 +1937.180580 +1937.219974 +1937.249878 +1937.295166 +1937.334293 +1937.380846 +1937.416045 +1937.452941 +1937.510050 +1937.552042 +1937.619274 +1937.739887 +1937.785941 +1937.840520 +1937.892268 +1937.916877 +1937.948611 +1937.988571 +1938.035425 +1938.084609 +1938.118874 +1938.149544 +1938.217409 +1938.270856 +1938.318208 +1938.355671 +1938.410782 +1938.465794 +1938.519740 +1938.556669 +1938.618274 +1938.671188 +1938.708850 +1938.761631 +1938.802557 +1938.837555 +1938.870422 +1938.933059 +1938.985141 +1939.037888 +1939.070588 +1939.108684 +1939.156303 +1939.199792 +1939.266526 +1939.312946 +1939.341983 +1939.386972 +1939.422469 +1939.482310 +1939.524567 +1939.580378 +1939.637587 +1939.677947 +1939.722636 +1939.777048 +1939.895696 +1939.957201 +1940.006252 +1940.052505 +1940.111580 +1940.159165 +1940.208649 +1940.285905 +1940.327230 +1940.368855 +1940.401023 +1940.438086 +1940.497960 +1940.538752 +1940.600157 +1940.650607 +1940.687536 +1940.731226 +1940.771919 +1940.837620 +1940.893430 +1940.967723 +1941.059497 +1941.115108 +1941.153903 +1941.207716 +1941.260097 +1941.313443 +1941.379544 +1941.416240 +1941.450439 +1941.511978 +1941.542680 +1941.615774 +1941.701588 +1941.749640 +1941.807482 +1941.884205 +1941.949207 +1941.999956 +1942.050872 +1942.076912 +1942.131691 +1942.175614 +1942.208680 +1942.219470 +1942.280608 +1942.319969 +1942.372317 +1942.423699 +1942.493828 +1942.576079 +1942.648807 +1942.709113 +1942.758197 +1942.799822 +1942.877711 +1942.918004 +1942.955866 +1943.004750 +1943.061793 +1943.104783 +1943.158496 +1943.211876 +1943.266355 +1943.306781 +1943.359429 +1943.423831 +1943.495159 +1943.555732 +1943.665955 +1943.730557 +1943.781639 +1943.843577 +1943.901353 +1943.940480 +1943.992129 +1944.031789 +1944.101985 +1944.156997 +1944.199021 +1944.261725 +1944.307180 +1944.367753 +1944.450004 +1944.488532 +1944.536350 +1944.602617 +1944.655931 +1944.737349 +1944.773147 +1944.860559 +1944.987399 +1945.050602 +1945.091661 +1945.132920 +1945.174179 +1945.232087 +1945.283269 +1945.358594 +1945.393159 +1945.464488 +1945.526959 +1945.584468 +1945.628890 +1945.681504 +1945.737115 +1945.782103 +1945.831720 +1945.957994 +1946.038880 +1946.097454 +1946.265553 +1946.309476 +1946.352133 +1946.421430 +1946.458593 +1946.513371 +1946.554397 +1946.599552 +1946.642442 +1946.681503 +1946.717068 +1946.775243 +1946.817700 +1946.848203 +1946.892126 +1946.944673 +1946.975242 +1947.036714 +1947.080337 +1947.144673 +1947.267517 +1947.321529 +1947.381436 +1947.443707 +1947.499651 +1947.551299 +1947.594356 +1947.637779 +1947.659990 +1947.704546 +1947.758159 +1947.808642 +1947.850566 +1947.919231 +1947.975741 +1948.014602 +1948.079404 +1948.131119 +1948.207409 +1948.262587 +1948.318498 +1948.385264 +1948.431751 +1948.475907 +1948.518764 +1948.596187 +1948.695620 +1948.754062 +1948.827821 +1948.879470 +1948.999516 +1949.051264 +1949.149466 +1949.194188 +1949.261188 +1949.306009 +1949.349033 +1949.398384 +1949.436013 +1949.454361 +1949.498816 +1949.548000 +1949.598184 +1949.658157 +1949.701713 +1949.788560 +1949.886362 +1949.989459 +1950.085063 +1950.141906 +1950.272275 +1950.316997 +1950.373141 +1950.440740 +1950.501846 +1950.547766 +1950.593221 +1950.634579 +1950.687260 +1950.735612 +1950.814533 +1950.880999 +1950.947699 +1951.005408 +1951.081965 +1951.151962 +1951.219960 +1951.277103 +1951.325022 +1951.389457 +1951.460153 +1951.535644 +1951.584795 +1951.658788 +1951.699747 +1951.758921 +1951.821225 +1951.886060 +1952.016996 +1952.076936 +1952.139773 +1952.367745 +1952.445766 +1952.533412 +1952.590855 +1952.665114 +1952.778200 +1952.852493 +1952.913432 +1952.966046 +1953.046332 +1953.107704 +1953.184793 +1953.223388 +1953.322655 +1953.380098 +1953.514164 +1953.602475 +1953.682295 +1953.743234 +1953.804573 +1953.884393 +1953.975668 +1954.034776 +1954.107403 +1954.149861 +1954.194483 +1954.282195 +1954.321056 +1954.371439 +1954.418925 +1954.492984 +1954.600609 +1954.645731 +1954.688288 +1954.738438 +1954.775601 +1954.810566 +1954.851791 +1954.904206 +1954.931678 +1954.970539 +1955.034209 +1955.073103 +1955.150526 +1955.188088 +1955.254322 +1955.314328 +1955.388754 +1955.402307 +1955.438204 +1955.460715 +1955.539736 +1955.604937 +1955.634075 +1955.679230 +1955.741634 +1955.798877 +1955.843166 +1955.886622 +1955.928514 +1955.979829 +1956.032376 +1956.129013 +1956.203671 +1956.258750 +1956.315626 +1956.372469 +1956.423884 +1956.484657 +1956.560614 +1956.615193 +1956.666708 +1956.710231 +1956.760647 +1956.809332 +1956.876931 +1956.961446 +1957.029844 +1957.089551 +1957.149791 +1957.216424 +1957.274400 +1957.312328 +1957.359015 +1957.404270 +1957.500107 +1957.590217 +1957.683790 +1957.733673 +1957.778662 +1957.825248 +1957.870669 +1957.928911 +1957.968338 +1958.029044 +1958.079227 +1958.100473 +1958.146427 +1958.184655 +1958.228278 +1958.309097 +1958.368837 +1958.442064 +1958.558015 +1958.644428 +1958.732540 +1958.782490 +1958.864841 +1958.944361 +1958.970335 +1959.038967 +1959.096276 +1959.150355 +1959.190082 +1959.242563 +1959.288683 +1959.330974 +1959.387118 +1959.470768 +1959.532939 +1959.603668 +1959.656082 +1959.695410 +1959.740531 +1959.813325 +1959.887218 +1959.952286 +1960.028576 +1960.240164 +1960.319485 +1960.359312 +1960.431906 +1960.486951 +1960.538665 +1960.667170 +1960.703500 +1960.815921 +1960.870034 +1960.919318 +1960.967836 +1961.036933 +1961.096807 +1961.130240 +1961.166670 +1961.234935 +1961.331372 +1961.397273 +1961.446590 +1961.529107 +1961.585251 +1961.630639 +1961.702234 +1961.789580 +1961.872197 +1961.945391 +1962.001568 +1962.060542 +1962.120915 +1962.167535 +1962.217285 +1962.302034 +1962.383885 +1962.466303 +1962.628274 +1962.803532 +1962.866335 +1962.940761 +1962.974960 +1963.051483 +1963.107328 +1963.170198 +1963.243991 +1963.319415 +1963.488979 +1963.631669 +1963.709258 +1963.788113 +1963.916118 +1964.161173 +1964.248752 +1964.409757 +1964.459740 +1964.523577 +1964.586114 +1964.702331 +1964.775491 +1964.864069 +1964.965101 +1965.030869 +1965.113386 +1965.278621 +1965.478854 +1965.563802 +1965.645187 +1965.719679 +1965.772993 +1965.895636 +1965.970462 +1966.064201 +1966.180585 +1966.330401 +1966.440225 +1966.568163 +1966.678153 +1966.748649 +1966.823508 +1966.873757 +1966.940124 +1966.995269 +1967.043154 +1967.082049 +1967.174223 +1967.308189 +1967.379385 +1967.430167 +1967.494536 +1967.556108 +1967.604759 +1967.743120 +1967.813184 +1967.866897 +1967.993203 +1968.047749 +1968.127236 +1968.187842 +1968.226337 +1968.293769 +1968.381781 +1968.448747 +1968.545884 +1968.594435 +1968.694168 +1968.739357 +1968.819110 +1968.901627 +1968.975553 +1969.179250 +1969.286376 +1969.348513 +1969.423305 +1969.507088 +1969.581447 +1969.626535 +1969.678683 +1969.739422 +1969.808053 +1969.839888 +1969.914713 +1969.967560 +1970.078083 +1970.221673 +1970.342585 +1970.484776 +1970.596964 +1970.916211 +1970.984343 +1971.035558 +1971.136690 +1971.211615 +1971.255405 +1971.327133 +1971.413646 +1971.472720 +1971.575484 +1971.703057 +1971.807818 +1971.988571 +1972.054072 +1972.132793 +1972.296596 +1972.348444 +1972.472886 +1972.519306 +1972.594964 +1972.671587 +1972.751407 +1972.865560 +1972.906485 +1972.989935 +1973.026732 +1973.088603 +1973.149675 +1973.205985 +1973.309215 +1973.532359 +1973.640084 +1973.710414 +1973.802422 +1973.824200 +1973.896960 +1973.969554 +1974.005019 +1974.076414 +1974.121069 +1974.220736 +1974.282241 +1974.371485 +1974.437153 +1974.575881 +1974.691099 +1974.927362 +1975.039750 +1975.079077 +1975.162094 +1975.289367 +1975.486236 +1975.660162 +1975.791164 +1975.843012 +1975.896359 +1975.981907 +1976.105050 +1976.277244 +1976.379109 +1976.433721 +1976.517437 +1976.730957 +1976.991263 +1977.174779 +1977.229458 +1977.320633 +1977.385568 +1977.486467 +1977.554499 +1977.778142 +1977.961858 +1978.033919 +1978.136716 +1978.229790 +1978.322564 +1978.578041 +1978.760425 +1978.805014 +1978.852267 +1978.936183 +1979.004514 +1979.072879 +1979.239313 +1979.285600 +1979.328923 +1979.356962 +1979.402150 +1979.486332 +1979.536582 +1979.587431 +1979.634051 +1979.700351 +1979.796622 +1980.014304 +1980.164786 +1980.228656 +1980.280537 +1980.401316 +1980.552498 +1980.656960 +1980.734316 +1981.028788 +1981.133783 +1981.182135 +1981.275308 +1981.337113 +1981.407010 +1981.502081 +1981.645837 +1981.689693 +1981.757958 +1981.839244 +1981.934182 +1982.000249 +1982.113269 +1982.275873 +1982.445204 +1982.532683 +1982.628886 +1982.674241 +1982.769446 +1982.848600 +1982.894720 +1982.955826 +1983.050298 +1983.116998 +1983.255126 +1983.466515 +1983.527920 +1983.603411 +1983.619129 +1983.678902 +1983.778436 +1983.904543 +1983.993354 +1984.097550 +1984.200313 +1984.303810 +1984.434346 +1984.645701 +1984.720859 +1984.751595 +1984.861385 +1984.902377 +1985.068644 +1985.211967 +1985.369077 +1985.560852 +1985.709203 +1985.775337 +1985.848530 +1985.993086 +1986.082862 +1986.183795 +1986.220758 +1986.258853 +1986.311467 +1986.354590 +1986.401843 +1986.448297 +1986.513698 +1986.600478 +1986.696448 +1986.782962 +1986.853191 +1986.916428 +1986.999045 +1987.046797 +1987.123454 +1987.170074 +1987.236341 +1987.357486 +1987.410334 +1987.466810 +1987.540703 +1987.597879 +1987.653390 +1987.731046 +1987.815361 +1987.897379 +1987.943566 +1988.073237 +1988.153623 +1988.279031 +1988.294782 +1988.382261 +1988.478331 +1988.530579 +1988.595913 +1988.660049 +1988.708501 +1988.948560 +1989.061547 +1989.180861 +1989.281327 +1989.429546 +1989.498044 +1989.576199 +1989.605270 +1989.672236 +1989.830511 +1990.006135 +1990.111763 +1990.338269 +1990.460380 +1990.676830 +1990.778629 +1990.839767 +1990.891349 +1990.970237 +1991.026181 +1991.071469 +1991.137270 +1991.235438 +1991.290216 +1991.417755 +1991.421818 +1991.511661 +1991.793280 +1991.910329 +1991.998308 +1992.081491 +1992.181591 +1992.247924 +1992.333272 +1992.393479 +1992.458181 +1992.536602 +1992.591347 +1992.641530 +1992.699006 +1992.881191 +1993.061144 +1993.196508 +1993.275229 +1993.390348 +1993.502269 +1993.565972 +1993.711326 +1993.773631 +1993.822648 +1993.925079 +1994.329741 +1994.476061 +1994.557546 +1994.640563 +1994.728575 +1994.814622 +1995.084685 +1995.919349 +1996.770997 +1996.948053 +1997.066734 +1997.385881 +1997.457709 +1997.540393 +1997.603697 +1997.662371 +1997.767000 +1997.914153 +1998.057010 +1998.325741 +1998.463136 +1998.640892 +1998.738827 +1998.817249 +1998.902929 +1999.054145 +1999.548317 +1999.610355 +1999.665866 +1999.794370 +1999.862003 +2000.050714 +2000.339958 +2000.558472 +2000.584912 +2000.733397 +2000.799031 +2000.948215 +2001.107822 +2001.370926 +2001.438325 +2001.588108 +2001.692937 +2001.810819 +2001.944252 +2002.137059 +2002.381980 +2002.535726 +2002.640888 +2002.797031 +2002.849312 +2003.143085 +2003.307754 +2003.364330 +2003.432129 +2003.476918 +2003.524636 +2003.601493 +2003.739655 +2003.835858 +2003.917077 +2003.980247 +2004.019341 +2004.048812 +2004.114613 +2004.174486 +2004.222172 +2004.343617 +2005.061598 +2005.164695 +2005.226999 +2005.260665 +2005.463995 +2005.517242 +2005.616476 +2005.703888 +2005.834724 +2005.932959 +2006.133691 +2006.889069 +2007.198892 +2008.324698 +2008.535521 +2008.621834 +2009.118637 +2009.331524 +2009.365723 +2009.453768 +2009.498523 +2009.574314 +2010.086701 +2010.400820 +2010.635119 +2010.845242 +2011.079041 +2012.321631 +2012.376243 +2012.497588 +2012.550035 +2012.692360 +2013.103914 +2013.797620 +2013.973510 +2014.068016 +2014.163187 +2014.328955 +2014.618198 +2015.353296 +2015.675873 +2016.095553 +2016.176605 +2016.394087 +2016.548633 +2016.628819 +2016.839741 +2017.320460 +2017.545635 +2017.667413 +2017.748865 +2017.869710 +2017.996617 +2018.215731 +2018.540339 +2018.651561 +2018.680033 +2018.765247 +2018.829683 +2018.877202 +2018.982963 +2019.096982 +2019.219626 +2019.312433 +2019.382896 +2019.444334 +2019.509336 +2019.588556 +2019.644401 +2019.727684 +2019.794817 +2019.840271 +2019.878699 +2019.952858 +2020.028383 +2020.065979 +2020.147297 +2020.258153 +2020.380963 +2020.415495 +2020.517826 +2020.593417 +2020.711932 +2020.850260 +2021.060416 +2021.312964 +2021.397646 +2021.480729 +2021.505404 +2021.918557 +2021.983792 +2023.423351 +2023.533674 +2026.269868 +2027.215189 +2027.338066 +2027.504799 +2028.128974 +2028.178991 +2028.273396 +2028.356613 +2028.449553 +2028.578924 +2028.701468 +2028.760109 +2029.036566 +2029.289546 +2029.359909 +2029.402300 +2029.641660 +2029.726941 +2030.141293 +2030.226941 +2030.303564 +2030.369465 +2030.524609 +2030.630404 +2031.495105 +2031.546986 +2031.697236 +2031.765301 +2031.910655 +2032.065567 +2032.198667 +2032.332200 +2032.754244 +2032.957607 +2032.996002 +2033.072825 +2033.228137 +2033.825605 +2034.011985 +2034.101695 +2034.326670 +2034.652577 +2034.734096 +2034.908754 +2035.156839 +2035.306456 +2035.549113 +2035.581181 +2035.643019 +2035.699296 +2035.801627 +2035.888973 +2035.932563 +2036.087175 +2036.182646 +2036.337224 +2036.483012 +2036.540521 +2036.644350 +2036.701426 +2036.772622 +2036.851543 +2036.979681 +2037.040787 +2037.258802 +2037.500094 +2037.585109 +2037.907519 +2038.113413 +2038.376516 +2038.462197 +2038.569157 +2038.641851 +2038.751175 +2038.849343 +2038.958101 +2039.007451 +2039.037888 +2039.077148 +2039.138753 +2039.165593 +2039.323702 +2039.412746 +2039.685240 +2039.741117 +2039.787371 +2039.898393 +2040.068722 +2040.191566 +2040.250141 +2040.381310 +2040.993896 +2041.206117 +2041.487602 +2041.634056 +2042.089133 +2042.875213 +2042.996359 +2044.859360 +2045.152900 +2045.734851 +2045.805746 +2045.930188 +2046.014637 +2046.106012 +2046.159958 +2046.357994 +2046.455030 +2046.633218 +2046.849002 +2046.987297 +2047.200417 +2047.378339 +2047.520730 +2047.578239 +2048.088561 +2048.119364 +2048.293057 +2048.552896 +2049.278770 +2049.680601 +2049.820761 +2049.887061 +2051.131682 +2051.277935 +2051.770309 +2051.880599 +2051.940439 +2051.972673 +2052.052760 +2052.111368 +2052.189023 +2052.320558 +2052.454158 +2052.549962 +2052.718660 +2052.772106 +2052.885260 +2053.067211 +2053.146165 +2053.262083 +2053.453025 +2053.645632 +2053.845798 +2054.068808 +2054.211099 +2054.333610 +2054.417160 +2054.895781 +2054.981128 +2055.049094 +2055.100143 +2055.173170 +2055.279397 +2055.328114 +2055.483093 +2055.676499 +2055.841933 +2056.302273 +2056.441800 +2056.491916 +2056.682292 +2056.915659 +2057.575232 +2057.671402 +2057.867706 +2058.105601 +2058.314458 +2058.360546 +2058.425048 +2058.489750 +2058.553353 +2058.617355 +2058.723782 +2058.797042 +2058.883755 +2058.986186 +2059.138434 +2059.695776 +2059.748723 +2059.802103 +2059.919785 +2060.078559 +2060.488482 +2060.826644 +2060.989681 +2061.047290 +2061.097073 +2061.339097 +2061.409927 +2061.620949 +2063.017817 +2065.521378 +2065.603595 +2065.707758 +2066.086246 +2066.557174 +2067.187144 +2067.375955 +2067.545851 +2067.859204 +2068.402294 +2068.449147 +2069.020309 +2069.092703 +2069.239955 +2069.331797 +2069.405856 +2069.446282 +2069.495733 +2069.554840 +2069.617511 +2069.673122 +2069.720108 +2069.788306 +2069.833361 +2069.900461 +2070.002958 +2070.245049 +2070.269958 +2070.298096 +2070.354173 +2070.419075 +2070.459135 +2070.535758 +2070.573287 +2070.627999 +2070.759268 +2070.873620 +2070.993067 +2071.189937 +2071.279414 +2071.330796 +2071.377149 +2071.446946 +2071.570689 +2071.660299 +2071.716110 +2071.783443 +2071.854805 +2071.923169 +2072.040552 +2072.163762 +2072.354504 +2072.469190 +2072.623602 +2072.675450 +2072.724367 +2072.985706 +2073.384906 +2073.433025 +2073.456634 +2073.522202 +2073.619538 +2073.667490 +2073.701389 +2073.749175 +2073.824100 +2073.917373 +2074.073850 +2074.232258 +2074.387203 +2074.532557 +2075.263559 +2075.334388 +2075.474281 +2076.573581 +2076.686601 +2076.756065 +2077.735485 +2078.015504 +2078.509543 +2078.641078 +2078.715570 +2078.829157 +2079.179939 +2080.233184 +2080.422495 +2080.591326 +2080.645272 +2083.593354 +2083.667014 +2083.712035 +2083.817497 +2083.996417 +2084.073840 +2084.201779 +2084.279734 +2084.470576 +2084.576104 +2084.674339 +2084.742537 +2084.786327 +2084.981931 +2085.084628 +2085.321591 +2085.489523 +2085.806539 +2085.983595 +2086.104074 +2086.255290 +2086.487024 +2086.763448 +2086.876102 +2087.444965 +2087.500077 +2087.810167 +2088.050692 +2088.083693 +2088.119956 +2088.170473 +2088.240902 +2088.287855 +2088.368175 +2088.440935 +2089.072203 +2089.370971 +2089.469772 +2089.572769 +2089.676365 +2089.739136 +2090.153055 +2090.535938 +2091.378328 +2091.665774 +2091.799307 +2091.856882 +2091.967638 +2092.195943 +2093.281490 +2094.408162 +2097.144589 +2097.222245 +2097.938661 +2098.018115 +2098.170762 +2098.269663 +2098.725141 +2099.155776 +2099.231467 +2099.409655 +2099.502329 +2099.642556 +2099.746518 +2099.811520 +2099.865832 +2099.974790 +2100.181683 +2100.193038 +2100.383281 +2100.518712 +2100.685445 +2100.805292 +2100.852345 +2101.109521 +2101.324705 +2101.456040 +2101.524339 +2101.586277 +2101.692370 +2101.751145 +2101.814448 +2101.883179 +2101.987608 +2102.111318 +2102.272856 +2102.477251 +2102.685676 +2102.944450 +2103.020208 +2103.190071 +2103.229765 +2103.306655 +2103.374753 +2103.464130 +2103.619508 +2103.665895 +2103.934360 +2104.206387 +2104.248046 +2104.376950 +2104.435957 +2104.542251 +2104.590136 +2104.645048 +2104.678315 +2104.722071 +2104.778781 +2104.869224 +2104.914112 +2104.950043 +2105.048311 +2105.121638 +2105.191701 +2105.244415 +2105.282776 +2105.365594 +2105.458201 +2105.552673 +2105.737954 +2105.865460 +2105.991367 +2106.114877 +2106.249376 +2106.344181 +2106.428197 +2106.501290 +2106.531926 +2106.587437 +2106.609615 +2106.652905 +2106.698493 +2106.733591 +2106.826431 +2106.936355 +2107.053604 +2107.126897 +2107.205086 +2107.251539 +2107.457067 +2107.572218 +2107.680110 +2107.969221 +2108.116140 +2108.304152 +2108.357965 +2108.428927 +2108.496626 +2108.615540 +2109.108147 +2109.156699 +2109.259462 +2109.310611 +2109.382806 +2109.521367 +2109.620767 +2109.681607 +2109.733788 +2109.802452 +2109.850171 +2110.035952 +2110.139182 +2110.512142 +2110.577876 +2110.643077 +2110.799954 +2110.951402 +2111.038681 +2111.116470 +2111.205881 +2111.300886 +2111.373779 +2111.451402 +2111.530323 +2111.670449 +2111.751668 +2111.838115 +2111.918534 +2112.242610 +2112.351068 +2112.550268 +2112.625993 +2112.717035 +2112.798487 +2112.873878 +2112.924394 +2113.071413 +2113.204813 +2113.282302 +2113.443741 +2113.602082 +2113.727290 +2113.777673 +2113.876408 +2114.026091 +2114.112205 +2114.190826 +2114.285332 +2114.421562 +2114.617333 +2114.684166 +2114.733683 +2114.797619 +2114.842307 +2114.977139 +2115.056726 +2115.127056 +2115.176573 +2115.251731 +2115.325657 +2115.369679 +2115.436579 +2115.502913 +2115.540309 +2115.626822 +2115.812836 +2115.870578 +2115.924990 +2116.009739 +2116.090192 +2116.226821 +2116.326122 +2116.482998 +2116.543405 +2116.619262 +2116.797817 +2116.863284 +2116.917796 +2116.971942 +2117.043571 +2117.099914 +2117.191256 +2117.269245 +2117.355625 +2117.482465 +2117.586427 +2117.692954 +2118.089657 +2118.209204 +2118.248598 +2118.324655 +2118.420126 +2118.463915 +2118.519293 +2118.565247 +2118.611767 +2118.723456 +2118.980765 +2119.056922 +2119.123555 +2119.222723 +2119.402509 +2119.466445 +2119.571407 +2119.631680 +2119.681463 +2119.724121 +2119.765180 +2119.797447 +2119.842236 +2119.883927 +2119.923721 +2119.981896 +2120.024587 +2120.067877 +2120.118026 +2120.190853 +2120.238439 +2120.289921 +2120.374803 +2120.432079 +2120.520523 +2120.703141 +2120.822088 +2120.922488 +2120.984026 +2121.021489 +2121.062914 +2121.108035 +2121.142334 +2121.223054 +2121.276667 +2121.350692 +2121.385491 +2121.442800 +2121.511365 +2121.605770 +2121.706470 +2121.831944 +2121.976899 +2122.045097 +2122.128747 +2122.171537 +2122.229646 +2122.272403 +2122.327748 +2122.395447 +2122.479196 +2122.521887 +2122.568806 +2122.657318 +2122.758783 +2122.825250 +2122.869739 +2122.916325 +2122.955253 +2123.002339 +2123.079495 +2123.125749 +2123.238869 +2123.312962 +2123.366175 +2123.460814 +2123.522052 +2123.592115 +2123.651889 +2123.686454 +2123.762978 +2123.827480 +2123.893980 +2123.965209 +2124.017656 +2124.095378 +2124.177563 +2124.236670 +2124.315625 +2124.344163 +2124.387153 +2124.426480 +2124.526414 +2124.611395 +2124.660546 +2124.684755 +2124.748691 +2124.792447 +2124.852254 +2124.915890 +2124.996676 +2125.064974 +2125.132207 +2125.205401 +2125.258847 +2125.305334 +2125.349789 +2125.391048 +2125.496842 +2125.572633 +2125.636569 +2125.706965 +2125.749656 +2125.791481 +2125.863975 +2125.916855 +2126.038134 +2126.116255 +2126.191447 +2126.276828 +2126.331207 +2126.374597 +2126.429941 +2126.570068 +2126.624713 +2126.665939 +2126.721749 +2126.766172 +2126.857580 +2126.916454 +2126.982455 +2127.041563 +2127.078359 +2127.122948 +2127.172665 +2127.217586 +2127.304766 +2127.353217 +2127.386784 +2127.454216 +2127.485951 +2127.513157 +2127.580956 +2127.637832 +2127.689081 +2127.738631 +2127.856081 +2127.919517 +2127.986783 +2128.047156 +2128.090446 +2128.143959 +2128.217985 +2128.287615 +2128.323313 +2128.357412 +2128.418118 +2128.456679 +2128.521514 +2128.563672 +2128.613556 +2128.656146 +2128.708094 +2128.770732 +2128.808594 +2128.831238 +2128.869866 +2128.901667 +2128.957744 +2128.995307 +2129.078590 +2129.131537 +2129.190745 +2129.217351 +2129.274228 +2129.321647 +2129.370631 +2129.429206 +2129.464304 +2129.516086 +2129.554547 +2129.599569 +2129.648719 +2129.709658 +2129.783418 +2129.843624 +2129.912122 +2129.975159 +2130.041160 +2130.098836 +2130.146355 +2130.213987 +2130.280354 +2130.342025 +2130.387846 +2130.416950 +2130.440827 +2130.481120 +2130.527407 +2130.575392 +2130.630770 +2130.705162 +2130.749884 +2130.813820 +2130.873560 +2130.928139 +2130.964702 +2131.009491 +2131.061505 +2131.101132 +2131.137429 +2131.186613 +2131.224176 +2131.279054 +2131.332168 +2131.380253 +2131.457642 +2131.507326 +2131.560739 +2131.612321 +2131.658641 +2131.719547 +2131.788577 +2131.831035 +2131.882550 +2131.931335 +2131.976523 +2132.013652 +2132.065267 +2132.119047 +2132.181551 +2132.255310 +2132.295903 +2132.359972 +2132.461903 +2132.519712 +2132.555576 +2132.616815 +2132.673958 +2132.719779 +2132.753645 +2132.794204 +2132.836662 +2132.885713 +2132.947717 +2133.006025 +2133.099532 +2133.131500 +2133.172326 +2133.219512 +2133.260038 +2133.341057 +2133.384813 +2133.427703 +2133.472592 +2133.521410 +2133.568962 +2133.613184 +2133.642255 +2133.677120 +2133.733963 +2133.772492 +2133.812518 +2133.857640 +2133.904293 +2133.953644 +2134.013650 +2134.068096 +2134.166297 +2134.203394 +2134.232331 +2134.275488 +2134.329434 +2134.417213 +2134.466230 +2134.520543 +2134.580982 +2134.623307 +2134.669927 +2134.704825 +2134.758305 +2134.802494 +2134.835294 +2134.881881 +2134.913316 +2134.991704 +2135.045950 +2135.097998 +2135.150446 +2135.165997 +2135.196733 +2135.245584 +2135.289240 +2135.314415 +2135.369027 +2135.419543 +2135.462333 +2135.500728 +2135.586576 +2135.624371 +2135.676186 +2135.712217 +2135.746582 +2135.776752 +2135.830798 +2135.881214 +2135.920342 +2135.968460 +2136.010385 +2136.060035 +2136.094068 +2136.135027 +2136.182712 +2136.233828 +2136.276951 +2136.316978 +2136.355339 +2136.388673 +2136.432862 +2136.483944 +2136.514414 +2136.551909 +2136.622039 +2136.649378 +2136.700760 +2136.738622 +2136.784210 +2136.833428 +2136.895765 +2136.985708 +2137.019042 +2137.058169 +2137.100860 +2137.159634 +2137.189271 +2137.229198 +2137.266527 +2137.306254 +2137.358502 +2137.400527 +2137.443783 +2137.477250 +2137.543683 +2137.576450 +2137.613780 +2137.669524 +2137.700893 +2137.748811 +2137.800659 +2137.838854 +2137.879913 +2137.919707 +2137.965594 +2138.016610 +2138.032494 +2138.073386 +2138.102724 +2138.150176 +2138.205288 +2138.254971 +2138.308518 +2138.356436 +2138.398394 +2138.457002 +2138.497395 +2138.597362 +2138.634325 +2138.677182 +2138.736689 +2138.774818 +2138.817475 +2138.887172 +2138.918640 +2138.948710 +2138.990568 +2139.036123 +2139.064861 +2139.095030 +2139.148677 +2139.183642 +2139.220338 +2139.258300 +2139.315909 +2139.350175 +2139.381610 +2139.402289 +2139.454304 +2139.499026 +2139.536855 +2139.577914 +2139.627864 +2139.682276 +2139.738619 +2139.790234 +2139.836322 +2139.874983 +2139.955602 +2139.994563 +2140.022102 +2140.054403 +2140.112279 +2140.206718 +2140.238652 +2140.265992 +2140.294829 +2140.337353 +2140.385006 +2140.430194 +2140.457800 +2140.484040 +2140.522868 +2140.569022 +2140.633057 +2140.683307 +2140.737686 +2140.788369 +2140.831692 +2140.880343 +2140.930060 +2140.973250 +2141.015208 +2141.057832 +2141.098558 +2141.126297 +2141.156300 +2141.198558 +2141.227229 +2141.271585 +2141.313310 +2141.338585 +2141.370020 +2141.410113 +2141.454502 +2141.521501 +2141.592164 +2141.623100 +2141.649207 +2141.686503 +2141.752537 +2141.811478 +2141.820868 +2141.890998 +2141.939150 +2141.967222 +2142.002387 +2142.028894 +2142.074281 +2142.169986 +2142.211810 +2142.259962 +2142.324198 +2142.364424 +2142.397791 +2142.434221 +2142.493295 +2142.549772 +2142.614141 +2142.670485 +2142.738317 +2142.814374 +2142.861793 +2142.938083 +2142.983172 +2143.026029 +2143.058097 +2143.104484 +2143.168353 +2143.267254 +2143.307514 +2143.329891 +2143.379042 +2143.437517 +2143.495625 +2143.554999 +2143.590097 +2143.648639 +2143.696391 +2143.739781 +2143.781539 +2143.813674 +2143.844176 +2143.905315 +2143.944842 +2143.996291 +2144.033853 +2144.096457 +2144.124895 +2144.157196 +2144.221099 +2144.256797 +2144.338948 +2144.387499 +2144.435651 +2144.489530 +2144.524729 +2144.574079 +2144.621632 +2144.658095 +2144.749603 +2144.799454 +2144.845641 +2144.890795 +2144.935351 +2144.972647 +2145.019533 +2145.044308 +2145.079939 +2145.140845 +2145.179240 +2145.212540 +2145.259793 +2145.316170 +2145.352633 +2145.419500 +2145.468917 +2145.526393 +2145.585334 +2145.635184 +2145.690395 +2145.748171 +2145.783968 +2145.849502 +2145.881803 +2145.922330 +2145.992659 +2146.110641 +2146.145606 +2146.201717 +2146.239479 +2146.284367 +2146.333684 +2146.386265 +2146.453731 +2146.508010 +2146.551966 +2146.585066 +2146.635649 +2146.671213 +2146.689129 +2146.738812 +2146.783701 +2146.842742 +2146.901150 +2146.965319 +2147.015269 +2147.062522 +2147.107743 +2147.165185 +2147.244939 +2147.295788 +2147.339211 +2147.384965 +2147.418232 +2147.470646 +2147.504179 +2147.544939 +2147.590793 +2147.632351 +2147.691958 +2147.731385 +2147.772744 +2147.815002 +2147.883600 +2147.954062 +2147.986030 +2148.026457 +2148.078904 +2148.117399 +2148.159224 +2148.206077 +2148.267649 +2148.307276 +2148.339643 +2148.385764 +2148.436579 +2148.504811 +2148.587528 +2148.624325 +2148.681901 +2148.741607 +2148.771511 +2148.809107 +2148.840242 +2148.927488 +2148.983432 +2149.036978 +2149.098350 +2149.138444 +2149.187494 +2149.226122 +2149.278670 +2149.303245 +2149.340008 +2149.378070 +2149.407175 +2149.495386 +2149.531683 +2149.599249 +2149.663118 +2149.729519 +2149.775539 +2149.814467 +2149.845369 +2149.893221 +2149.944137 +2150.000447 +2150.048766 +2150.092322 +2150.153128 +2150.189525 +2150.231816 +2150.269811 +2150.328985 +2150.390623 +2150.428852 +2150.472708 +2150.519628 +2150.572708 +2150.611502 +2150.661086 +2150.714832 +2150.769844 +2150.822758 +2150.865082 +2150.919328 +2150.982531 +2151.023590 +2151.050563 +2151.102777 +2151.147832 +2151.216563 +2151.251961 +2151.299380 +2151.359620 +2151.394285 +2151.445834 +2151.498748 +2151.544302 +2151.593986 +2151.651228 +2151.688324 +2151.747332 +2151.812500 +2151.845068 +2151.901611 +2151.938707 +2151.996749 +2152.087192 +2152.134744 +2152.166746 +2152.206273 +2152.254225 +2152.312833 +2152.374304 +2152.420924 +2152.487857 +2152.515496 +2152.561550 +2152.598913 +2152.637474 +2152.672040 +2152.720724 +2152.770874 +2152.798613 +2152.859985 +2152.914364 +2152.943901 +2152.994350 +2153.041803 +2153.102476 +2153.139672 +2153.181763 +2153.231813 +2153.269475 +2153.296714 +2153.342868 +2153.384760 +2153.425419 +2153.465246 +2153.520524 +2153.563814 +2153.613930 +2153.683894 +2153.708436 +2153.751393 +2153.820523 +2153.858652 +2153.893284 +2153.930880 +2153.993750 +2154.038872 +2154.084426 +2154.169974 +2154.220323 +2154.279930 +2154.342801 +2154.383626 +2154.433177 +2154.463147 +2154.486790 +2154.528015 +2154.578631 +2154.621821 +2154.677133 +2154.733543 +2154.763946 +2154.828315 +2154.924851 +2154.943166 +2155.000376 +2155.043033 +2155.122054 +2155.174535 +2155.231245 +2155.286190 +2155.332377 +2155.373935 +2155.426116 +2155.467941 +2155.520588 +2155.568907 +2155.614061 +2155.667408 +2155.765510 +2155.815460 +2155.863911 +2155.911231 +2155.965643 +2156.038237 +2156.095313 +2156.142166 +2156.203471 +2156.253255 +2156.313128 +2156.348659 +2156.390651 +2156.491450 +2156.523451 +2156.559715 +2156.592482 +2156.619588 +2156.670804 +2156.710031 +2156.738503 +2156.787753 +2156.824983 +2156.878263 +2156.906268 +2156.941366 +2156.973834 +2157.005236 +2157.046294 +2157.101140 +2157.140933 +2157.194013 +2157.235272 +2157.293414 +2157.330776 +2157.360380 +2157.408465 +2157.521918 +2157.632508 +2157.714526 +2157.726247 +2157.791782 +2157.845428 +2157.895844 +2157.936570 +2157.978628 +2158.045294 +2158.110962 +2158.146993 +2158.204901 +2158.260346 +2158.319986 +2158.384921 +2158.444561 +2158.496376 +2158.559580 +2158.595610 +2158.646426 +2158.682557 +2158.732373 +2158.774331 +2158.865407 +2158.901471 +2158.973299 +2159.018653 +2159.073931 +2159.131474 +2159.166838 +2159.203135 +2159.279626 +2159.336202 +2159.401637 +2159.475596 +2159.532472 +2159.564241 +2159.609495 +2159.656582 +2159.701969 +2159.744227 +2159.818919 +2159.868236 +2159.922549 +2159.986451 +2160.028676 +2160.092279 +2160.117454 +2160.165039 +2160.220217 +2160.257047 +2160.297540 +2160.330807 +2160.359378 +2160.394210 +2160.430007 +2160.468336 +2160.518752 +2160.574962 +2160.646457 +2160.692944 +2160.777127 +2160.831139 +2160.878292 +2160.919617 +2160.969767 +2161.057180 +2161.107762 +2161.164872 +2161.221615 +2161.257412 +2161.310260 +2161.341728 +2161.384252 +2161.425444 +2161.487848 +2161.542993 +2161.584951 +2161.629740 +2161.681821 +2161.715854 +2161.767435 +2161.814388 +2161.858577 +2161.896539 +2161.949819 +2162.015121 +2162.067735 +2162.106762 +2162.146056 +2162.182586 +2162.238763 +2162.295373 +2162.342360 +2162.386948 +2162.446256 +2162.485883 +2162.548953 +2162.596572 +2162.647421 +2162.700002 +2162.759043 +2162.843824 +2162.892010 +2162.941227 +2162.982719 +2163.037531 +2163.084950 +2163.131203 +2163.186115 +2163.238962 +2163.283551 +2163.326741 +2163.379954 +2163.424576 +2163.486248 +2163.557443 +2163.613487 +2163.671296 +2163.719215 +2163.769664 +2163.804929 +2163.856011 +2163.895505 +2163.945355 +2164.003231 +2164.058542 +2164.111023 +2164.137629 +2164.206560 +2164.269164 +2164.320979 +2164.365468 +2164.447819 +2164.491508 +2164.528272 +2164.581885 +2164.624742 +2164.661938 +2164.701065 +2164.748884 +2164.783749 +2164.837795 +2164.887945 +2164.933466 +2164.956643 +2164.988311 +2165.028071 +2165.058041 +2165.090176 +2165.131967 +2165.173060 +2165.221444 +2165.264235 +2165.315317 +2165.365600 +2165.411021 +2165.446885 +2165.479919 +2165.518281 +2165.579919 +2165.616482 +2165.671028 +2165.707358 +2165.733998 +2165.768930 +2165.822809 +2165.871061 +2165.909489 +2165.973725 +2166.009955 +2166.065533 +2166.101530 +2166.144587 +2166.199033 +2166.250814 +2166.285679 +2166.358107 +2166.390441 +2166.438826 +2166.479419 +2166.499332 +2166.529702 +2166.553977 +2166.610121 +2166.656008 +2166.715749 +2166.762968 +2166.827404 +2166.875589 +2166.917280 +2166.954343 +2166.999931 +2167.111819 +2167.153377 +2167.209288 +2167.254942 +2167.283480 +2167.339291 +2167.386810 +2167.432032 +2167.471892 +2167.546550 +2167.612118 +2167.688641 +2167.722841 +2167.765465 +2167.798398 +2167.847050 +2167.888508 +2167.953110 +2168.064265 +2168.097765 +2168.124372 +2168.174322 +2168.209087 +2168.263300 +2168.337658 +2168.396599 +2168.447382 +2168.494735 +2168.543053 +2168.581015 +2168.630399 +2168.670259 +2168.703925 +2168.743286 +2168.774788 +2168.804524 +2168.836459 +2168.915180 +2168.962600 +2169.008853 +2169.091704 +2169.143885 +2169.192037 +2169.245583 +2169.286176 +2169.328666 +2169.375187 +2169.440821 +2169.470191 +2169.505356 +2169.549845 +2169.606688 +2169.650578 +2169.701160 +2169.747547 +2169.792003 +2169.824370 +2169.873088 +2169.924037 +2169.958170 +2170.011583 +2170.058636 +2170.111749 +2170.144084 +2170.197264 +2170.240820 +2170.303824 +2170.350577 +2170.458402 +2170.501959 +2170.542052 +2170.583177 +2170.633594 +2170.671955 +2170.714479 +2170.782278 +2170.824736 +2170.863097 +2170.905588 +2170.939820 +2170.968392 +2171.022538 +2171.087306 +2171.149111 +2171.205554 +2171.281711 +2171.320972 +2171.400959 +2171.451708 +2171.486140 +2171.524135 +2171.555737 +2171.624235 +2171.679913 +2171.714045 +2171.744981 +2171.769057 +2171.800226 +2171.834725 +2171.870855 +2171.923303 +2172.002790 +2172.058068 +2172.104621 +2172.155470 +2172.204321 +2172.259166 +2172.306985 +2172.344781 +2172.387904 +2172.435823 +2172.478547 +2172.530228 +2172.571420 +2172.625699 +2172.659699 +2172.706186 +2172.731793 +2172.773751 +2172.836455 +2172.880911 +2172.959698 +2172.994430 +2173.023368 +2173.094097 +2173.149775 +2173.220870 +2173.272186 +2173.337054 +2173.397693 +2173.440650 +2173.497160 +2173.563860 +2173.622668 +2173.668089 +2173.708116 +2173.743247 +2173.795495 +2173.831925 +2173.865192 +2173.895795 +2173.928462 +2173.963627 +2174.002355 +2174.037120 +2174.088269 +2174.151006 +2174.208349 +2174.245578 +2174.310380 +2174.373517 +2174.407283 +2174.445211 +2174.525997 +2174.577812 +2174.656500 +2174.712877 +2174.763659 +2174.837352 +2174.877612 +2174.917472 +2174.953003 +2175.005451 +2175.058930 +2175.089500 +2175.132157 +2175.155467 +2175.200555 +2175.275913 +2175.348374 +2175.384271 +2175.441448 +2175.479143 +2175.548174 +2175.619036 +2175.705050 +2175.762193 +2175.842946 +2175.882739 +2175.956232 +2176.048706 +2176.080275 +2176.109645 +2176.163591 +2176.222333 +2176.255699 +2176.294860 +2176.335819 +2176.371150 +2176.472382 +2176.516705 +2176.547674 +2176.590164 +2176.651003 +2176.702552 +2176.756664 +2176.800654 +2176.855199 +2176.921966 +2176.969784 +2177.019035 +2177.059961 +2177.102452 +2177.199521 +2177.250470 +2177.304782 +2177.348905 +2177.380174 +2177.482804 +2177.587932 +2177.653766 +2177.722398 +2177.821865 +2177.867153 +2177.971249 +2178.014139 +2178.055031 +2178.098621 +2178.136983 +2178.179007 +2178.217202 +2178.271581 +2178.326426 +2178.392693 +2178.446107 +2178.484402 +2178.552500 +2178.599220 +2178.635683 +2178.707578 +2178.770315 +2178.848437 +2178.909643 +2178.940811 +2179.001584 +2179.076376 +2179.177008 +2179.304880 +2179.379339 +2179.451167 +2179.497288 +2179.526259 +2179.579072 +2179.650468 +2179.701550 +2179.754230 +2179.815935 +2179.865452 +2179.909808 +2179.954363 +2180.011773 +2180.091127 +2180.146171 +2180.183701 +2180.217833 +2180.257194 +2180.330254 +2180.468782 +2180.612771 +2180.667217 +2180.715701 +2180.756294 +2180.811472 +2180.872911 +2180.904313 +2180.960789 +2180.999051 +2181.065318 +2181.131285 +2181.167849 +2181.216733 +2181.318997 +2181.392191 +2181.480070 +2181.587196 +2181.678304 +2181.735947 +2181.785497 +2181.829387 +2181.905444 +2181.951931 +2181.996686 +2182.056892 +2182.105876 +2182.163685 +2182.204578 +2182.262520 +2182.322493 +2182.362686 +2182.436878 +2182.466349 +2182.501281 +2182.532716 +2182.564784 +2182.622759 +2182.685829 +2182.756891 +2182.942339 +2183.066348 +2183.120594 +2183.201746 +2183.241773 +2183.286195 +2183.334846 +2183.373907 +2183.404510 +2183.441739 +2183.493754 +2183.528885 +2183.578669 +2183.636178 +2183.675672 +2183.747333 +2183.823524 +2183.913367 +2183.964583 +2184.020860 +2184.059654 +2184.157556 +2184.185561 +2184.268112 +2184.402910 +2184.473107 +2184.551928 +2184.609703 +2184.654758 +2184.690689 +2184.735244 +2184.777735 +2184.834512 +2184.899180 +2184.944335 +2185.002011 +2185.093319 +2185.133612 +2185.175171 +2185.219859 +2185.285860 +2185.445833 +2185.528783 +2185.581264 +2185.654491 +2185.770042 +2185.907105 +2185.975336 +2186.028450 +2186.097980 +2186.132779 +2186.179565 +2186.213098 +2186.273605 +2186.344966 +2186.372572 +2186.411666 +2186.485026 +2186.571773 +2186.625086 +2186.720790 +2186.790920 +2186.843301 +2186.908303 +2186.972572 +2187.091253 +2187.194083 +2187.241735 +2187.301709 +2187.376967 +2187.419091 +2187.487989 +2187.550593 +2187.711265 +2187.792318 +2187.870273 +2187.935541 +2188.068708 +2188.098278 +2188.155088 +2188.211265 +2188.266476 +2188.320655 +2188.367941 +2188.430978 +2188.523153 +2188.589287 +2188.679430 +2188.727049 +2188.926682 +2189.027848 +2189.171038 +2189.252556 +2189.359615 +2189.422219 +2189.465709 +2189.526349 +2189.593748 +2189.657684 +2189.794846 +2189.841000 +2189.928413 +2190.015625 +2190.105735 +2190.203804 +2190.307700 +2190.406900 +2190.534673 +2190.629378 +2190.691849 +2190.788785 +2190.837469 +2190.890317 +2191.039001 +2191.095445 +2191.138601 +2191.201372 +2191.247459 +2191.292148 +2191.339500 +2191.403137 +2191.449257 +2191.500939 +2191.573966 +2191.669303 +2191.730575 +2191.835337 +2191.877062 +2191.916523 +2191.945360 +2192.041364 +2192.075730 +2192.101271 +2192.158580 +2192.213625 +2192.298407 +2192.401138 +2192.454817 +2192.557614 +2192.607431 +2192.668004 +2192.719019 +2192.750954 +2192.784887 +2192.821583 +2192.852186 +2192.897507 +2192.955449 +2192.986885 +2193.024247 +2193.059978 +2193.094044 +2193.150088 +2193.229608 +2193.282122 +2193.334969 +2193.378259 +2193.433870 +2193.477027 +2193.535469 +2193.684853 +2193.774696 +2193.853883 +2193.990746 +2194.113723 +2194.189780 +2194.269501 +2194.341096 +2194.368968 +2194.401502 +2194.458112 +2194.489647 +2194.522048 +2194.553783 +2194.588082 +2194.662141 +2194.717019 +2194.743892 +2194.804598 +2194.866903 +2194.923912 +2195.022946 +2195.071465 +2195.119616 +2195.160642 +2195.210925 +2195.304298 +2195.355347 +2195.393942 +2195.447854 +2195.524744 +2195.610625 +2195.683219 +2195.772529 +2195.833202 +2195.862639 +2195.899103 +2195.966435 +2196.011923 +2196.051750 +2196.099769 +2196.155946 +2196.273561 +2196.427607 +2196.509991 +2196.566834 +2196.595606 +2196.645089 +2196.664137 +2196.706495 +2196.756112 +2196.785815 +2196.848020 +2196.885082 +2196.972395 +2197.035399 +2197.204363 +2197.288812 +2197.354279 +2197.462371 +2197.639294 +2197.845987 +2198.030902 +2198.129936 +2198.205061 +2198.243190 +2198.348917 +2198.466133 +2198.525474 +2198.619147 +2198.870029 +2198.954877 +2199.059439 +2199.127072 +2199.248250 +2199.295669 +2199.326971 +2199.393605 +2199.484647 +2199.547984 +2199.603328 +2199.643155 +2199.743654 +2200.028702 +2200.109588 +2200.194936 +2200.236594 +2200.284580 +2200.347683 +2200.391373 +2200.453044 +2200.560270 +2200.653777 +2200.781615 +2201.004792 +2201.073823 +2201.133530 +2201.193403 +2201.235561 +2201.302494 +2201.383579 +2201.424572 +2201.509453 +2201.599663 +2201.697798 +2201.852710 +2202.136626 +2202.157838 +2202.421740 +2202.541920 +2202.637191 +2202.771390 +2202.830897 +2202.934993 +2203.179415 +2203.378449 +2203.419475 +2203.559668 +2203.588206 +2203.642818 +2203.713880 +2203.824669 +2203.930597 +2204.092102 +2204.168325 +2204.281579 +2204.410783 +2204.500293 +2204.617709 +2204.803390 +2205.097229 +2205.145680 +2205.214345 +2205.294831 +2205.389236 +2205.549509 +2205.672952 +2205.779712 +2205.869389 +2206.355702 +2206.414577 +2206.521436 +2206.833058 +2206.935589 +2207.106118 +2207.163161 +2207.261029 +2207.530360 +2207.557732 +2207.649041 +2207.729827 +2207.881642 +2208.082341 +2208.153869 +2208.357465 +2208.588168 +2209.186635 +2209.226629 +2209.361960 +2209.420002 +2209.615040 +2210.002452 +2210.270284 +2210.582704 +2210.639714 +2210.695392 +2210.795125 +2210.859427 +2210.963157 +2211.085468 +2211.166154 +2211.249237 +2211.389630 +2211.500053 +2211.588031 +2211.702217 +2211.795990 +2211.921598 +2212.109809 +2212.267285 +2212.371381 +2212.597954 +2212.617101 +2212.660558 +2212.694590 +2212.728790 +2212.773745 +2212.813205 +2212.864654 +2212.981070 +2213.021397 +2213.097154 +2213.178506 +2213.213171 +2213.346438 +2213.400983 +2213.456494 +2213.517766 +2213.602482 +2213.675608 +2213.733917 +2213.837746 +2213.933017 +2214.050700 +2214.127456 +2214.242774 +2214.408009 +2214.539644 +2214.597685 +2214.732684 +2214.895221 +2214.943606 +2214.977172 +2215.056793 +2215.171078 +2215.320562 +2215.451331 +2215.521627 +2215.664284 +2215.735813 +2215.786262 +2215.832749 +2216.089592 +2216.187827 +2216.306741 +2216.358190 +2216.513501 +2216.598150 +2216.606075 +2216.784230 +2216.938043 +2217.052395 +2217.183897 +2217.412967 +2217.481699 +2217.570943 +2217.631482 +2217.749664 +2217.847199 +2217.898082 +2217.976537 +2218.030316 +2218.293752 +2218.430016 +2218.543469 +2218.697049 +2218.779832 +2218.955523 +2218.998913 +2219.041637 +2219.094318 +2219.157221 +2219.327518 +2219.582596 +2219.789155 +2219.859185 +2219.918193 +2220.017294 +2220.118126 +2220.198745 +2220.497879 +2221.159018 +2221.199311 +2221.274802 +2221.414262 +2221.690219 +2221.883992 +2222.399542 +2222.693315 +2222.809432 +2223.171969 +2223.252322 +2223.354120 +2223.423085 +2223.534406 +2223.726947 +2223.834839 +2224.001039 +2224.885221 +2225.028378 +2225.107498 +2225.485487 +2226.234837 +2226.304767 +2226.374497 +2226.897140 +2227.151086 +2227.207063 +2227.305398 +2228.270299 +2228.362474 +2228.605963 +2228.694508 +2228.752783 +2228.853349 +2229.027874 +2229.174427 +2230.026541 +2230.104596 +2230.225209 +2230.271729 +2230.378456 +2230.425275 +2230.484849 +2230.782151 +2230.943357 +2231.080852 +2231.174159 +2231.222078 +2231.272927 +2231.454778 +2234.475887 +2234.560569 +2234.630699 +2234.706024 +2234.807256 +2234.856540 +2234.941122 +2235.069427 +2235.255807 +2235.656239 +2235.717544 +2235.793635 +2235.919176 +2236.116345 +2236.189505 +2236.252409 +2236.341087 +2236.415546 +2236.567993 +2237.098129 +2237.277516 +2239.577347 +2240.061929 +2240.138619 +2240.201856 +2240.273584 +2240.352738 +2240.561296 +2240.795029 +2241.167256 +2241.212544 +2241.590466 +2241.740182 +2241.912443 +2241.990199 +2242.068554 +2242.207781 +2242.344677 +2242.412609 +2247.584033 +2254.651658 +2256.941932 +2257.162345 +2257.385988 +2257.834938 +2257.958048 +2258.060213 +2258.107366 +2258.378894 +2258.709629 +2258.833339 +2258.856849 +2258.879393 +2258.950555 +2258.992313 +2259.078061 +2259.181390 +2259.348190 +2259.505566 +2259.614257 +2259.735103 +2259.904467 +2260.058346 +2260.184453 +2260.220384 +2260.274763 +2260.327044 +2260.375462 +2260.436101 +2260.498139 +2260.604066 +2260.706364 +2260.834502 +2260.925345 +2261.034402 +2261.110293 +2261.169101 +2261.280523 +2261.331771 +2261.410293 +2261.476426 +2261.544192 +2261.685717 +2261.747955 +2261.853382 +2261.948587 +2262.011191 +2262.099236 +2262.161208 +2262.211524 +2262.249153 +2262.278290 +2262.305430 +2262.344125 +2262.397738 +2262.455680 +2262.526675 +2262.596605 +2262.666768 +2262.723412 +2262.750151 +2262.802699 +2262.855113 +2262.895240 +2262.945156 +2263.000634 +2263.051183 +2263.092542 +2263.185482 +2263.262439 +2263.338929 +2263.402798 +2263.464004 +2263.504363 +2263.554213 +2263.602931 +2263.647653 +2263.687147 +2263.746021 +2263.809724 +2263.900467 +2263.954979 +2264.014819 +2264.064303 +2264.114552 +2264.146920 +2264.208292 +2264.321645 +2264.369597 +2264.444322 +2264.517782 +2264.577955 +2264.605894 +2264.665068 +2264.712720 +2264.758208 +2264.803396 +2264.851282 +2264.906426 +2264.974325 +2265.032467 +2265.085147 +2265.130435 +2265.170862 +2265.294005 +2265.369097 +2265.424108 +2265.472327 +2265.523609 +2265.574025 +2265.612087 +2265.671361 +2265.714051 +2265.783981 +2265.832999 +2265.898000 +2265.955676 +2266.078220 +2266.116615 +2266.145120 +2266.176855 +2266.230101 +2266.276954 +2266.328736 +2266.381183 +2266.434796 +2266.472925 +2266.511819 +2266.558273 +2266.618080 +2266.695169 +2266.732931 +2266.775256 +2266.823441 +2266.868029 +2266.978219 +2267.034529 +2267.108056 +2267.195002 +2267.246650 +2267.272758 +2267.298598 +2267.340490 +2267.362002 +2267.395801 +2267.452578 +2267.507689 +2267.586677 +2267.632398 +2267.694236 +2267.759004 +2267.816746 +2267.865697 +2267.891272 +2267.919011 +2267.950646 +2267.995101 +2268.029833 +2268.058405 +2268.131198 +2268.169826 +2268.212317 +2268.264498 +2268.336260 +2268.367429 +2268.422174 +2268.497798 +2268.534428 +2268.611684 +2268.656306 +2268.702227 +2268.739623 +2268.784777 +2268.831930 +2268.865497 +2268.909586 +2268.946149 +2269.003792 +2269.048613 +2269.080715 +2269.148713 +2269.197331 +2269.235626 +2269.297165 +2269.345316 +2269.369958 +2269.414281 +2269.455839 +2269.524204 +2269.572655 +2269.649046 +2269.712582 +2269.750877 +2269.799362 +2269.845116 +2269.883777 +2269.934760 +2269.974919 +2270.028566 +2270.088772 +2270.165329 +2270.194699 +2270.234893 +2270.273487 +2270.312581 +2270.360367 +2270.464829 +2270.525069 +2270.567260 +2270.615478 +2270.689438 +2270.772221 +2270.853207 +2270.873087 +2270.948711 +2270.995398 +2271.047279 +2271.078415 +2271.111282 +2271.152574 +2271.229663 +2271.286773 +2271.329197 +2271.358834 +2271.407918 +2271.447013 +2271.573419 +2271.616643 +2271.668757 +2271.713179 +2271.750309 +2271.787971 +2271.831128 +2271.874052 +2271.912313 +2271.947512 +2271.988437 +2272.034058 +2272.088637 +2272.131960 +2272.161098 +2272.211514 +2272.249176 +2272.292133 +2272.322303 +2272.368557 +2272.420538 +2272.465893 +2272.547944 +2272.597861 +2272.642283 +2272.682343 +2272.727964 +2272.790035 +2272.903754 +2272.938686 +2272.973118 +2273.036089 +2273.069821 +2273.107284 +2273.136621 +2273.174017 +2273.230461 +2273.304220 +2273.350008 +2273.383574 +2273.443081 +2273.488369 +2273.549708 +2273.597094 +2273.643947 +2273.689035 +2273.745645 +2273.787670 +2273.827929 +2273.873983 +2273.927530 +2273.976747 +2274.019271 +2274.061562 +2274.110313 +2274.157533 +2274.208082 +2274.251539 +2274.311112 +2274.384006 +2274.460429 +2274.532890 +2274.602887 +2274.631725 +2274.669920 +2274.717505 +2274.761295 +2274.843346 +2274.900855 +2274.945710 +2274.983339 +2275.043046 +2275.098224 +2275.127295 +2275.159829 +2275.228594 +2275.303819 +2275.342114 +2275.414175 +2275.515140 +2275.573782 +2275.619836 +2275.674781 +2275.714041 +2275.750738 +2275.795560 +2275.845809 +2275.896658 +2275.976612 +2276.031623 +2276.086935 +2276.146042 +2276.184903 +2276.258596 +2276.323265 +2276.379442 +2276.414140 +2276.449339 +2276.497457 +2276.550670 +2276.587900 +2276.647274 +2276.699954 +2276.764490 +2276.800620 +2276.842179 +2276.904183 +2277.031223 +2277.073980 +2277.117636 +2277.182072 +2277.247306 +2277.333587 +2277.394959 +2277.449704 +2277.521465 +2277.564456 +2277.626360 +2277.679241 +2277.722264 +2277.780173 +2277.829057 +2277.866786 +2277.920799 +2278.002217 +2278.062923 +2278.108345 +2278.147039 +2278.205514 +2278.269150 +2278.318767 +2278.354065 +2278.400019 +2278.460359 +2278.516769 +2278.570382 +2278.609010 +2278.644541 +2278.715170 +2278.769516 +2278.806646 +2278.863522 +2278.909676 +2278.946372 +2278.995756 +2279.037947 +2279.088530 +2279.180938 +2279.227924 +2279.281537 +2279.313438 +2279.357095 +2279.429755 +2279.478573 +2279.530621 +2279.570947 +2279.624660 +2279.681770 +2279.731287 +2279.765253 +2279.825959 +2279.870447 +2279.905845 +2279.945472 +2279.979571 +2280.037480 +2280.091626 +2280.141110 +2280.191459 +2280.238279 +2280.282002 +2280.336181 +2280.389827 +2280.435382 +2280.477240 +2280.543707 +2280.592491 +2280.636414 +2280.694889 +2280.751465 +2280.799118 +2280.858392 +2280.908075 +2280.997952 +2281.039111 +2281.074975 +2281.117233 +2281.148435 +2281.209074 +2281.248834 +2281.312337 +2281.363087 +2281.411105 +2281.468847 +2281.514435 +2281.584931 +2281.636346 +2281.700049 +2281.736812 +2281.789327 +2281.829486 +2281.874841 +2281.922293 +2281.987861 +2282.030985 +2282.092923 +2282.129020 +2282.169013 +2282.205543 +2282.259389 +2282.297318 +2282.338111 +2282.402213 +2282.450598 +2282.511204 +2282.552995 +2282.603611 +2282.673941 +2282.781700 +2282.820561 +2282.846868 +2282.901114 +2282.944637 +2283.033115 +2283.082898 +2283.122226 +2283.176005 +2283.219295 +2283.252129 +2283.299115 +2283.354593 +2283.396917 +2283.445768 +2283.489125 +2283.545535 +2283.591789 +2283.640973 +2283.692521 +2283.741672 +2283.790290 +2283.849831 +2283.927952 +2283.951029 +2284.004376 +2284.043603 +2284.077236 +2284.111169 +2284.146900 +2284.184895 +2284.222891 +2284.277103 +2284.323956 +2284.367246 +2284.400746 +2284.425454 +2284.482331 +2284.580832 +2284.618561 +2284.648997 +2284.694552 +2284.733213 +2284.784861 +2284.831648 +2284.882630 +2284.911035 +2284.956290 +2285.001078 +2285.038141 +2285.077202 +2285.127285 +2285.175137 +2285.217961 +2285.282197 +2285.326020 +2285.373306 +2285.430582 +2285.473572 +2285.518227 +2285.565480 +2285.617162 +2285.642803 +2285.676635 +2285.712466 +2285.755723 +2285.807471 +2285.848563 +2285.899546 +2285.963348 +2286.015763 +2286.053158 +2286.086791 +2286.120458 +2286.147697 +2286.185193 +2286.234710 +2286.273405 +2286.313997 +2286.349062 +2286.390920 +2286.437740 +2286.477534 +2286.518692 +2286.564913 +2286.596648 +2286.640637 +2286.690054 +2286.739904 +2286.789455 +2286.832645 +2286.877467 +2286.929614 +2286.963747 +2286.998679 +2287.027583 +2287.064513 +2287.111899 +2287.131979 +2287.173803 +2287.222788 +2287.263813 +2287.318325 +2287.336407 +2287.392784 +2287.423820 +2287.446763 +2287.488888 +2287.527483 +2287.558019 +2287.616260 +2287.649727 +2287.686623 +2287.750959 +2287.794649 +2287.864312 +2287.902008 +2287.929380 +2287.966243 +2288.005671 +2288.049294 +2288.095381 +2288.129813 +2288.180496 +2288.218891 +2288.255754 +2288.303539 +2288.355953 +2288.394049 +2288.413596 +2288.450992 +2288.475367 +2288.521887 +2288.563712 +2288.587488 +2288.623752 +2288.659516 +2288.701274 +2288.743166 +2288.767841 +2288.831344 +2288.872037 +2288.895214 +2288.940568 +2288.975233 +2289.022120 +2289.053389 +2289.103139 +2289.144198 +2289.201607 +2289.235173 +2289.274068 +2289.315992 +2289.346528 +2289.384058 +2289.460681 +2289.509199 +2289.533341 +2289.570704 +2289.603604 +2289.641100 +2289.678063 +2289.734307 +2289.765676 +2289.809965 +2289.855486 +2289.896611 +2289.934373 +2289.965043 +2289.998110 +2290.035239 +2290.084556 +2290.126514 +2290.150424 +2290.193214 +2290.223517 +2290.256984 +2290.299075 +2290.335871 +2290.386055 +2290.435905 +2290.484556 +2290.529045 +2290.567240 +2290.600040 +2290.639634 +2290.711495 +2290.755685 +2290.778428 +2290.807732 +2290.844229 +2290.872901 +2290.906867 +2290.926946 +2290.958548 +2290.994612 +2291.042531 +2291.092714 +2291.147459 +2291.178128 +2291.218255 +2291.243896 +2291.284788 +2291.335338 +2291.398907 +2291.453553 +2291.498874 +2291.553619 +2291.582723 +2291.624615 +2291.659047 +2291.698607 +2291.797375 +2291.836503 +2291.890515 +2291.943296 +2291.968071 +2292.006599 +2292.037535 +2292.135104 +2292.210029 +2292.245626 +2292.309329 +2292.367238 +2292.430475 +2292.472999 +2292.518920 +2292.555183 +2292.653984 +2292.694377 +2292.726112 +2292.769635 +2292.791114 +2292.832339 +2292.870301 +2292.918220 +2292.972765 +2293.029076 +2293.054217 +2293.097241 +2293.136801 +2293.171833 +2293.206498 +2293.243394 +2293.277494 +2293.326012 +2293.373797 +2293.416854 +2293.462375 +2293.513924 +2293.584853 +2293.634803 +2293.711359 +2293.781889 +2293.829008 +2293.888315 +2293.931705 +2293.976893 +2294.017053 +2294.067136 +2294.107862 +2294.164073 +2294.203200 +2294.258645 +2294.313357 +2294.362541 +2294.432304 +2294.459311 +2294.488981 +2294.548255 +2294.588848 +2294.626110 +2294.741894 +2294.777758 +2294.844358 +2294.890812 +2294.932936 +2294.979590 +2295.054748 +2295.117452 +2295.167302 +2295.219816 +2295.257611 +2295.307362 +2295.345024 +2295.391211 +2295.427541 +2295.462806 +2295.499436 +2295.561940 +2295.597205 +2295.643658 +2295.685616 +2295.741460 +2295.789546 +2295.840128 +2295.891177 +2295.964770 +2296.021380 +2296.062672 +2296.105596 +2296.150884 +2296.195073 +2296.264104 +2296.313155 +2296.362838 +2296.424344 +2296.482219 +2296.554080 +2296.577057 +2296.630737 +2296.679921 +2296.722645 +2296.782085 +2296.819148 +2296.862338 +2296.892342 +2296.939295 +2296.968199 +2297.008126 +2297.060940 +2297.102165 +2297.145422 +2297.187846 +2297.233334 +2297.273593 +2297.306993 +2297.344056 +2297.389477 +2297.466900 +2297.511089 +2297.559607 +2297.604496 +2297.646154 +2297.688112 +2297.745887 +2297.825008 +2297.867099 +2297.912754 +2297.962337 +2298.060805 +2298.109790 +2298.155044 +2298.189743 +2298.225407 +2298.271361 +2298.314318 +2298.362970 +2298.400366 +2298.435064 +2298.482417 +2298.525607 +2298.553146 +2298.600265 +2298.641824 +2298.679986 +2298.721244 +2298.764534 +2298.802097 +2298.832866 +2298.865333 +2298.898367 +2298.956975 +2298.996103 +2299.030002 +2299.069363 +2299.107824 +2299.160038 +2299.206525 +2299.252945 +2299.285579 +2299.318014 +2299.358606 +2299.395569 +2299.446385 +2299.477787 +2299.521443 +2299.557874 +2299.652612 +2299.702529 +2299.792439 +2299.831866 +2299.911520 +2299.951013 +2299.998466 +2300.036927 +2300.097300 +2300.144886 +2300.181649 +2300.228869 +2300.270860 +2300.311219 +2300.348715 +2300.392438 +2300.423740 +2300.465099 +2300.501096 +2300.543121 +2300.593370 +2300.641888 +2300.704592 +2300.738858 +2300.782714 +2300.833064 +2300.886077 +2300.937160 +2300.962201 +2300.994036 +2301.041355 +2301.080982 +2301.112817 +2301.149980 +2301.195534 +2301.233530 +2301.280982 +2301.314449 +2301.376353 +2301.419643 +2301.462800 +2301.505624 +2301.539523 +2301.577818 +2301.626636 +2301.652477 +2301.692670 +2301.710552 +2301.759703 +2301.803925 +2301.852077 +2301.886176 +2301.904425 +2301.937292 +2301.961268 +2302.007188 +2302.034095 +2302.077318 +2302.121407 +2302.167228 +2302.215214 +2302.281114 +2302.335859 +2302.362832 +2302.390105 +2302.424704 +2302.464164 +2302.513648 +2302.545816 +2302.580614 +2302.617944 +2302.668560 +2302.714181 +2302.811117 +2302.862665 +2302.919975 +2302.961134 +2302.997297 +2303.035326 +2303.081779 +2303.127700 +2303.167860 +2303.202692 +2303.252042 +2303.301493 +2303.349911 +2303.388805 +2303.424403 +2303.460567 +2303.524070 +2303.568559 +2303.608419 +2303.658769 +2303.714779 +2303.751676 +2303.800227 +2303.845348 +2303.896897 +2303.964829 +2304.045481 +2304.135358 +2304.186141 +2304.230530 +2304.266294 +2304.303490 +2304.347080 +2304.388538 +2304.417609 +2304.458668 +2304.508318 +2304.557802 +2304.586540 +2304.628631 +2304.680080 +2304.719174 +2304.755238 +2304.804821 +2304.842950 +2304.870356 +2304.921904 +2304.973752 +2305.017076 +2305.055304 +2305.106786 +2305.149077 +2305.189669 +2305.226533 +2305.266526 +2305.302523 +2305.363629 +2305.401824 +2305.475916 +2305.527165 +2305.570855 +2305.629263 +2305.676149 +2305.726266 +2305.763362 +2305.842050 +2305.886439 +2305.937321 +2305.982243 +2306.023402 +2306.053272 +2306.103355 +2306.146212 +2306.203088 +2306.240817 +2306.279046 +2306.331760 +2306.372918 +2306.420571 +2306.470487 +2306.515875 +2306.556468 +2306.591733 +2306.633657 +2306.678779 +2306.711846 +2306.754670 +2306.799958 +2306.849208 +2306.903521 +2306.948176 +2306.991699 +2307.018572 +2307.040950 +2307.096028 +2307.138852 +2307.188802 +2307.225498 +2307.262328 +2307.309381 +2307.338319 +2307.398525 +2307.444213 +2307.475115 +2307.508149 +2307.552304 +2307.599857 +2307.654169 +2307.706883 +2307.774782 +2307.811811 +2307.838884 +2307.871252 +2307.920136 +2307.971318 +2308.017972 +2308.087735 +2308.134755 +2308.182873 +2308.212477 +2308.253836 +2308.282407 +2308.327828 +2308.361395 +2308.407016 +2308.446809 +2308.492930 +2308.530991 +2308.602187 +2308.657765 +2308.753369 +2308.831790 +2308.927994 +2308.973748 +2309.004784 +2309.055799 +2309.100288 +2309.146942 +2309.189166 +2309.234854 +2309.272050 +2309.316705 +2309.392229 +2309.433821 +2309.466388 +2309.508280 +2309.560428 +2309.607847 +2309.655299 +2309.692729 +2309.756465 +2309.796058 +2309.833155 +2309.945309 +2309.997057 +2310.034187 +2310.076245 +2310.112408 +2310.153934 +2310.196025 +2310.233521 +2310.290364 +2310.386601 +2310.426727 +2310.459195 +2310.484736 +2310.532488 +2310.576710 +2310.640979 +2310.686234 +2310.720633 +2310.761492 +2310.795058 +2310.833154 +2310.901652 +2310.946807 +2310.995991 +2311.036717 +2311.070916 +2311.129424 +2311.196323 +2311.234385 +2311.269783 +2311.304482 +2311.354199 +2311.406580 +2311.475044 +2311.507678 +2311.546606 +2311.584035 +2311.630822 +2311.670915 +2311.704548 +2311.765920 +2311.815271 +2311.872214 +2311.923695 +2311.963955 +2312.050735 +2312.103349 +2312.145307 +2312.192593 +2312.227624 +2312.285866 +2312.322230 +2312.437881 +2312.473811 +2312.516902 +2312.553998 +2312.612106 +2312.653631 +2312.700984 +2312.760025 +2312.801950 +2312.847937 +2312.876075 +2312.923561 +2313.056528 +2313.098553 +2313.140677 +2313.179239 +2313.212605 +2313.253864 +2313.298519 +2313.347037 +2313.432385 +2313.474177 +2313.515169 +2313.565285 +2313.618199 +2313.669448 +2313.714869 +2313.760923 +2313.814569 +2313.854596 +2313.885765 +2313.922794 +2313.956394 +2314.019664 +2314.078305 +2314.119431 +2314.171112 +2314.219131 +2314.270013 +2314.321162 +2314.370180 +2314.410073 +2314.453663 +2314.496953 +2314.546237 +2314.610806 +2314.655128 +2314.677705 +2314.709240 +2314.759956 +2314.819264 +2314.854994 +2314.935247 +2314.986396 +2315.035247 +2315.096120 +2315.134981 +2315.187262 +2315.225124 +2315.270479 +2315.318464 +2315.369146 +2315.404877 +2315.442340 +2315.488660 +2315.515100 +2315.564717 +2315.606376 +2315.664018 +2315.761620 +2315.817331 +2315.848300 +2315.884897 +2315.935879 +2315.976039 +2316.022226 +2316.081334 +2316.127787 +2316.156225 +2316.191190 +2316.225190 +2316.263818 +2316.308273 +2316.348733 +2316.400947 +2316.455326 +2316.512535 +2316.561919 +2316.607807 +2316.635312 +2316.694220 +2316.752329 +2316.803944 +2316.859788 +2316.898083 +2316.926021 +2316.957057 +2316.989291 +2317.032248 +2317.106341 +2317.159288 +2317.213633 +2317.249631 +2317.287293 +2317.325555 +2317.362118 +2317.396684 +2317.438875 +2317.507772 +2317.561852 +2317.598981 +2317.624123 +2317.670543 +2317.709104 +2317.763516 +2317.806207 +2317.826986 +2317.858455 +2317.894019 +2317.941805 +2317.988391 +2318.048498 +2318.107672 +2318.145301 +2318.194318 +2318.226053 +2318.276170 +2318.308837 +2318.340039 +2318.383995 +2318.419526 +2318.458288 +2318.482130 +2318.527119 +2318.574172 +2318.615896 +2318.636676 +2318.677868 +2318.720525 +2318.739240 +2318.787958 +2318.835676 +2318.856955 +2318.903042 +2318.941337 +2318.966446 +2319.034511 +2319.169376 +2319.209469 +2319.288124 +2319.331880 +2319.365912 +2319.417461 +2319.463448 +2319.491820 +2319.541303 +2319.607870 +2319.654091 +2319.713598 +2319.750194 +2319.774304 +2319.800344 +2319.839072 +2319.855189 +2319.896881 +2319.937440 +2319.998146 +2320.031047 +2320.074903 +2320.122622 +2320.183561 +2320.217527 +2320.253857 +2320.283860 +2320.334743 +2320.377933 +2320.411266 +2320.444066 +2320.508469 +2320.557220 +2320.617626 +2320.704972 +2320.769274 +2320.818658 +2320.847329 +2320.894915 +2320.919690 +2320.969907 +2321.007336 +2321.045997 +2321.081662 +2321.113197 +2321.162414 +2321.205138 +2321.242600 +2321.289154 +2321.336240 +2321.386190 +2321.443799 +2321.494848 +2321.559283 +2321.608001 +2321.658884 +2321.692617 +2321.731278 +2321.762680 +2321.783359 +2321.867575 +2321.894814 +2321.912130 +2321.956453 +2322.055953 +2322.112896 +2322.161680 +2322.218424 +2322.262413 +2322.294214 +2322.327082 +2322.357651 +2322.384957 +2322.406336 +2322.448860 +2322.476965 +2322.510664 +2322.569905 +2322.624118 +2322.664510 +2322.711031 +2322.732909 +2322.776365 +2322.810098 +2322.847194 +2322.893215 +2322.943498 +2322.987321 +2323.050025 +2323.093048 +2323.172069 +2323.213861 +2323.267640 +2323.314060 +2323.358083 +2323.379894 +2323.411396 +2323.453487 +2323.488119 +2323.526947 +2323.561180 +2323.603837 +2323.640134 +2323.673534 +2323.712328 +2323.766740 +2323.817756 +2323.851223 +2323.904669 +2323.954819 +2323.981625 +2324.018755 +2324.055318 +2324.090683 +2324.144329 +2324.188418 +2324.249957 +2324.313260 +2324.379194 +2324.428312 +2324.469803 +2324.512993 +2324.554585 +2324.606000 +2324.653852 +2324.691715 +2324.729110 +2324.768538 +2324.812494 +2324.849490 +2324.880925 +2324.938468 +2324.995244 +2325.043562 +2325.096343 +2325.147292 +2325.187685 +2325.238334 +2325.301438 +2325.349656 +2325.411994 +2325.433572 +2325.489083 +2325.523116 +2325.557581 +2325.575896 +2325.609862 +2325.685586 +2325.718653 +2325.757947 +2325.803602 +2325.848557 +2325.879226 +2325.928343 +2325.969735 +2325.997807 +2326.036702 +2326.064607 +2326.102003 +2326.135603 +2326.160944 +2326.205566 +2326.249322 +2326.290514 +2326.330208 +2326.356282 +2326.381723 +2326.415223 +2326.462642 +2326.511426 +2326.550554 +2326.601503 +2326.643960 +2326.706131 +2326.764606 +2326.825745 +2326.852418 +2326.900404 +2326.938266 +2326.985452 +2327.023913 +2327.070900 +2327.110560 +2327.173697 +2327.243360 +2327.307330 +2327.359944 +2327.387782 +2327.434136 +2327.493577 +2327.552717 +2327.617519 +2327.672597 +2327.735634 +2327.786084 +2327.857446 +2327.927176 +2327.979190 +2328.013323 +2328.101401 +2328.140629 +2328.177126 +2328.220116 +2328.280222 +2328.308561 +2328.345324 +2328.405597 +2328.441561 +2328.483186 +2328.558344 +2328.614754 +2328.663306 +2328.719216 +2328.762939 +2328.798670 +2328.857078 +2328.890811 +2328.927108 +2328.986316 +2329.040395 +2329.138430 +2329.183452 +2329.225709 +2329.258909 +2329.301933 +2329.363072 +2329.419848 +2329.476791 +2329.528140 +2329.586715 +2329.632735 +2329.665736 +2329.710091 +2329.738563 +2329.767767 +2329.812455 +2329.859308 +2329.901500 +2329.937963 +2329.972928 +2330.022578 +2330.050184 +2330.096638 +2330.127673 +2330.234566 +2330.294706 +2330.323311 +2330.383251 +2330.457809 +2330.523510 +2330.586747 +2330.623477 +2330.676657 +2330.724309 +2330.784882 +2330.841592 +2330.886247 +2330.962404 +2331.007825 +2331.050316 +2331.087346 +2331.145155 +2331.186280 +2331.221944 +2331.247119 +2331.301298 +2331.343756 +2331.400632 +2331.427539 +2331.457109 +2331.490609 +2331.522976 +2331.569963 +2331.600466 +2331.626706 +2331.671328 +2331.712520 +2331.769896 +2331.819580 +2331.885847 +2331.944155 +2331.984448 +2332.038394 +2332.085214 +2332.140558 +2332.181251 +2332.223608 +2332.343022 +2332.374258 +2332.429369 +2332.483582 +2332.534331 +2332.607824 +2332.687677 +2332.726871 +2332.810521 +2332.871427 +2333.003095 +2333.047684 +2333.078786 +2333.114983 +2333.155376 +2333.196335 +2333.236495 +2333.277021 +2333.302195 +2333.333964 +2333.379118 +2333.410087 +2333.431732 +2333.503794 +2333.534063 +2333.578019 +2333.637060 +2333.671026 +2333.759138 +2333.797200 +2333.843687 +2333.879085 +2333.902794 +2333.936128 +2333.967230 +2334.021176 +2334.101329 +2334.156840 +2334.234995 +2334.316613 +2334.354842 +2334.382048 +2334.441022 +2334.476487 +2334.540489 +2334.626170 +2334.682480 +2334.728002 +2334.775188 +2334.777419 +2334.843553 +2334.909586 +2334.960669 +2335.001994 +2335.039257 +2335.082746 +2335.126569 +2335.185810 +2335.264132 +2335.319976 +2335.348347 +2335.377152 +2335.437092 +2335.467028 +2335.525770 +2335.585110 +2335.622206 +2335.663831 +2335.700095 +2335.774121 +2335.830831 +2335.950977 +2336.028167 +2336.114980 +2336.148879 +2336.197630 +2336.256871 +2336.309319 +2336.360467 +2336.420940 +2336.476018 +2336.524303 +2336.549711 +2336.611150 +2336.639755 +2336.694600 +2336.743817 +2336.807753 +2336.872788 +2336.928099 +2336.970324 +2337.016444 +2337.072455 +2337.101126 +2337.141452 +2337.199261 +2337.257869 +2337.319541 +2337.402358 +2337.513979 +2337.587872 +2337.653939 +2337.723769 +2337.758501 +2337.823103 +2337.990436 +2338.037855 +2338.082277 +2338.113513 +2338.163896 +2338.227332 +2338.319773 +2338.364828 +2338.428930 +2338.477582 +2338.512047 +2338.550442 +2338.594798 +2338.637954 +2338.684408 +2338.745613 +2338.813878 +2338.922003 +2338.967025 +2339.050441 +2339.116842 +2339.242483 +2339.334557 +2339.386039 +2339.436921 +2339.519405 +2339.567624 +2339.602123 +2339.673551 +2339.713944 +2339.844380 +2339.892265 +2339.987537 +2340.035089 +2340.116508 +2340.232558 +2340.308649 +2340.449008 +2340.506417 +2340.557000 +2340.605618 +2340.645145 +2340.836520 +2340.969021 +2341.064625 +2341.092730 +2341.123999 +2341.141715 +2341.197126 +2341.242481 +2341.312677 +2341.373416 +2341.434588 +2341.488967 +2341.572350 +2341.623699 +2341.669986 +2341.715241 +2341.752903 +2341.825031 +2341.927395 +2342.032989 +2342.096492 +2342.153768 +2342.189266 +2342.277877 +2342.322133 +2342.355267 +2342.420635 +2342.490298 +2342.542879 +2342.601820 +2342.662126 +2342.748273 +2342.795826 +2342.852136 +2342.907281 +2342.990298 +2343.043977 +2343.076245 +2343.115739 +2343.192662 +2343.268120 +2343.452668 +2343.511509 +2343.630124 +2343.737217 +2343.807646 +2343.934952 +2343.999154 +2344.009211 +2344.021665 +2344.039381 +2344.080606 +2344.203350 +2344.265688 +2344.308012 +2344.361825 +2344.444875 +2344.497689 +2344.557529 +2344.603150 +2344.654265 +2344.704149 +2344.759826 +2344.810576 +2344.853466 +2344.987532 +2345.280039 +2345.339912 +2345.405347 +2345.502383 +2345.570781 +2345.657728 +2345.703582 +2345.774344 +2345.838413 +2345.876076 +2345.931720 +2345.993225 +2346.033784 +2346.146005 +2346.241210 +2346.332885 +2346.427424 +2346.558060 +2346.636015 +2346.737280 +2346.887896 +2346.925692 +2346.998186 +2347.053564 +2347.113237 +2347.179504 +2347.286597 +2347.420630 +2347.546004 +2347.674975 +2347.750566 +2347.884765 +2347.953796 +2348.018897 +2348.112171 +2348.193256 +2348.241907 +2348.338378 +2348.370412 +2348.493689 +2348.579037 +2348.696919 +2348.773609 +2348.856625 +2348.958523 +2349.046735 +2349.101447 +2349.168147 +2349.243172 +2349.347834 +2349.417964 +2349.482432 +2349.558123 +2349.644836 +2349.708739 +2349.763618 +2349.818096 +2349.854493 +2349.894020 +2349.926221 +2349.958656 +2349.982765 +2350.052895 +2350.082798 +2350.143704 +2350.218595 +2350.268013 +2350.319628 +2350.447699 +2350.495119 +2350.574273 +2350.615565 +2350.652361 +2350.674040 +2350.709704 +2350.737143 +2350.778135 +2350.798948 +2350.821392 +2350.859421 +2350.881898 +2350.927519 +2350.967179 +2351.014565 +2351.076004 +2351.105308 +2351.139474 +2351.179134 +2351.213766 +2351.244702 +2351.281765 +2351.315564 +2351.398048 +2351.471208 +2351.509270 +2351.565714 +2351.599646 +2351.645034 +2351.709636 +2351.762583 +2351.811268 +2351.898814 +2351.931847 +2351.973106 +2352.060019 +2352.120059 +2352.151993 +2352.195117 +2352.265313 +2352.337874 +2352.397181 +2352.429749 +2352.509902 +2352.654424 +2352.802442 +2352.930181 +2352.969675 +2353.008336 +2353.047797 +2353.103308 +2353.172772 +2353.270274 +2353.298779 +2353.368109 +2353.457853 +2353.601609 +2353.696348 +2353.769741 +2353.926784 +2354.111632 +2354.161149 +2354.232577 +2354.274535 +2354.395148 +2354.513729 +2354.560083 +2354.727349 +2354.809234 +2354.930679 +2355.121821 +2355.175400 +2355.233542 +2355.286156 +2355.383092 +2355.463046 +2355.518490 +2355.662413 +2355.810731 +2355.973701 +2356.053455 +2356.208200 +2356.255586 +2356.342998 +2356.421386 +2356.458116 +2356.493914 +2356.551523 +2356.607500 +2356.685555 +2356.731110 +2356.769471 +2356.857650 +2357.025415 +2357.157949 +2357.251056 +2357.331309 +2357.389151 +2357.435105 +2357.561745 +2357.612394 +2357.661678 +2357.721418 +2357.767372 +2357.809996 +2357.861212 +2357.941099 +2358.065341 +2358.151288 +2358.357249 +2358.406899 +2358.449423 +2358.495710 +2358.539233 +2358.667771 +2358.918454 +2359.075063 +2359.163109 +2359.290481 +2359.407631 +2359.462043 +2359.589582 +2359.644660 +2359.698240 +2359.805299 +2359.846791 +2359.957347 +2360.051253 +2360.126911 +2360.225379 +2360.320517 +2360.344060 +2360.380090 +2360.404966 +2360.463607 +2360.502535 +2360.581189 +2360.624679 +2360.684785 +2360.744992 +2360.828708 +2360.881888 +2360.928475 +2361.013257 +2361.045924 +2361.166104 +2361.297772 +2361.388514 +2361.562906 +2361.619050 +2361.673196 +2361.717718 +2361.761907 +2361.802267 +2361.901401 +2361.947721 +2361.989246 +2362.092010 +2362.168600 +2362.214354 +2362.270665 +2362.332936 +2362.414687 +2362.575193 +2362.702499 +2362.787547 +2363.078056 +2363.199235 +2363.229005 +2363.247653 +2363.279155 +2363.306761 +2363.350883 +2363.566667 +2363.607660 +2363.705195 +2363.767533 +2363.990976 +2364.175325 +2364.230736 +2364.262105 +2364.309024 +2364.384948 +2364.492640 +2364.538395 +2364.648718 +2364.716683 +2364.787778 +2364.908524 +2365.001131 +2365.084648 +2365.147885 +2365.187478 +2365.354178 +2365.451048 +2365.516083 +2365.628071 +2365.719945 +2365.782383 +2365.928869 +2366.035962 +2366.065133 +2366.140924 +2366.182715 +2366.255110 +2366.342222 +2366.677853 +2367.150280 +2367.256740 +2367.302861 +2367.358572 +2367.408522 +2367.486277 +2367.524206 +2367.614549 +2367.675887 +2367.731199 +2367.777652 +2367.893137 +2367.945218 +2368.012217 +2368.079550 +2368.142753 +2368.248781 +2368.340122 +2368.493136 +2368.694235 +2368.838890 +2369.139689 +2369.210218 +2369.314847 +2369.535692 +2369.676218 +2369.709418 +2369.912116 +2370.072422 +2370.119175 +2370.171223 +2370.282878 +2370.412615 +2370.475918 +2370.594666 +2370.654339 +2370.714379 +2370.778448 +2370.838588 +2370.984342 +2371.065694 +2371.148311 +2371.266793 +2371.293866 +2371.335058 +2371.378914 +2371.433626 +2371.488871 +2371.543416 +2371.695597 +2371.945180 +2372.065527 +2372.155936 +2372.243382 +2372.370088 +2372.444980 +2372.510248 +2372.565326 +2372.595296 +2372.634857 +2372.725433 +2372.787004 +2372.865126 +2372.940617 +2373.042515 +2373.334123 +2373.513411 +2373.682941 +2373.713144 +2373.751006 +2373.811013 +2373.859031 +2373.946377 +2373.984739 +2374.051439 +2374.149507 +2374.258298 +2374.345278 +2374.417273 +2374.595727 +2374.754901 +2374.916373 +2375.005783 +2375.105750 +2375.181707 +2375.273083 +2375.339283 +2375.402686 +2375.453036 +2375.522233 +2375.688433 +2375.828993 +2376.038983 +2376.097957 +2376.155100 +2376.403484 +2376.475978 +2376.758995 +2377.124529 +2377.168152 +2377.350503 +2377.430523 +2377.480673 +2377.576111 +2377.670583 +2377.797655 +2377.931821 +2378.053499 +2378.094059 +2378.151301 +2378.225660 +2378.334418 +2378.653599 +2378.753932 +2378.884701 +2378.991094 +2379.072712 +2379.140611 +2379.202849 +2379.269782 +2379.360491 +2379.434584 +2379.565419 +2379.689761 +2379.796455 +2380.024127 +2380.089794 +2380.145372 +2380.218932 +2380.288995 +2380.387763 +2380.444872 +2380.500850 +2380.642608 +2380.897253 +2381.026457 +2381.282234 +2381.334715 +2381.407176 +2381.519863 +2381.584731 +2381.654661 +2381.837045 +2381.863719 +2381.964285 +2382.031551 +2382.169379 +2382.297584 +2382.394554 +2382.576905 +2382.893455 +2383.056125 +2383.256524 +2383.374873 +2383.419894 +2383.481433 +2383.532748 +2383.591922 +2383.668945 +2383.715731 +2383.781566 +2383.837909 +2383.875738 +2383.968612 +2383.992255 +2384.042604 +2384.128085 +2384.220127 +2384.270543 +2384.345434 +2384.565514 +2384.698548 +2384.867279 +2384.908737 +2385.007538 +2385.062750 +2385.125986 +2385.215031 +2385.357521 +2385.502243 +2385.547564 +2385.637807 +2385.724487 +2386.143035 +2386.489455 +2387.106304 +2387.153324 +2387.188722 +2387.274169 +2387.379164 +2388.291684 +2388.332677 +2388.406403 +2388.438604 +2388.497978 +2388.528580 +2388.670538 +2388.733875 +2388.931577 +2388.976632 +2389.025583 +2389.122286 +2389.211530 +2389.761679 +2389.804004 +2389.836405 +2389.908033 +2389.972968 +2390.014626 +2390.199175 +2390.257583 +2390.384922 +2390.632674 +2391.068305 +2391.111595 +2391.171601 +2391.234172 +2391.305900 +2391.364508 +2391.474631 +2391.533273 +2391.630775 +2391.721085 +2391.843329 +2392.122949 +2392.195843 +2392.243062 +2392.326878 +2392.486285 +2392.673764 +2392.971700 +2393.361643 +2393.461609 +2393.618086 +2393.830673 +2393.901935 +2393.921049 +2393.962674 +2394.107829 +2394.172431 +2394.258445 +2394.440629 +2394.742827 +2394.814055 +2395.064272 +2395.173229 +2395.218550 +2395.277891 +2395.592143 +2396.258476 +2396.368633 +2396.516385 +2396.643990 +2396.685882 +2396.734366 +2396.804163 +2397.085981 +2397.134200 +2397.327939 +2397.627772 +2397.737629 +2397.768431 +2397.857775 +2397.908591 +2397.978388 +2398.111155 +2398.190009 +2398.318048 +2398.415983 +2398.699932 +2398.814451 +2398.944920 +2399.017481 +2399.121877 +2399.211187 +2399.422942 +2399.537860 +2399.613151 +2399.722375 +2399.791972 +2399.881649 +2399.972825 +2400.438026 +2400.514915 +2400.791339 +2400.865764 +2400.911385 +2400.954209 +2401.169627 +2401.250812 +2401.487142 +2401.785444 +2401.823605 +2401.938291 +2402.038124 +2402.168094 +2402.269193 +2402.326202 +2402.389572 +2402.650644 +2402.672889 +2402.920641 +2403.042485 +2403.136891 +2403.220307 +2403.295865 +2403.387840 +2403.474120 +2403.740254 +2403.906387 +2404.036424 +2404.149311 +2404.272288 +2404.397396 +2404.551941 +2404.587073 +2404.620439 +2404.753339 +2404.930462 +2405.052007 +2405.222770 +2405.480711 +2405.693332 +2405.762096 +2405.872552 +2406.105652 +2406.183608 +2406.237853 +2406.297860 +2406.360397 +2406.454736 +2406.527730 +2406.638586 +2407.245245 +2407.520203 +2407.980376 +2408.154002 +2408.239383 +2408.454002 +2409.799388 +2409.957463 +2410.114207 +2410.176877 +2410.334986 +2410.380940 +2410.472315 +2410.550337 +2410.611642 +2410.935551 +2411.063956 +2411.106580 +2411.140579 +2411.195458 +2411.238781 +2411.314405 +2411.386267 +2411.463722 +2411.586499 +2411.638114 +2411.719300 +2411.753732 +2411.867085 +2412.000085 +2412.106113 +2412.356096 +2412.391327 +2412.465786 +2412.534717 +2412.731020 +2412.879305 +2413.050900 +2413.213038 +2413.807110 +2413.938978 +2413.990859 +2414.030853 +2414.080336 +2414.238645 +2414.338245 +2414.464718 +2414.567016 +2414.727222 +2414.907675 +2415.165683 +2415.450132 +2415.495853 +2415.531251 +2415.619063 +2415.741873 +2415.846335 +2415.927920 +2416.010937 +2416.155493 +2416.395352 +2416.489958 +2416.786794 +2416.826854 +2416.875638 +2416.979601 +2417.111602 +2417.221592 +2417.289224 +2417.377736 +2417.446900 +2417.504709 +2417.745601 +2418.129250 +2418.203276 +2418.241072 +2418.336210 +2418.412100 +2418.486393 +2418.569543 +2418.688224 +2418.916862 +2419.464847 +2419.528916 +2419.581663 +2419.636508 +2419.678766 +2419.719458 +2419.806871 +2419.893384 +2419.998279 +2420.273204 +2420.376934 +2420.643766 +2420.908402 +2420.952724 +2421.043033 +2421.335241 +2421.365944 +2421.441634 +2421.586756 +2421.704138 +2421.851025 +2422.028414 +2422.106602 +2422.176466 +2422.241401 +2422.673701 +2422.756951 +2422.819189 +2422.848226 +2422.997544 +2423.111530 +2423.264943 +2423.686054 +2423.764309 +2423.920520 +2423.965208 +2424.003537 +2424.102704 +2424.151489 +2424.258248 +2425.021784 +2425.084521 +2425.129443 +2425.175630 +2425.281724 +2425.563242 +2425.691847 +2425.774963 +2425.882456 +2426.120784 +2426.185852 +2426.262808 +2426.810427 +2426.883487 +2426.932538 +2427.086817 +2427.172997 +2427.320916 +2427.533437 +2427.626344 +2427.719783 +2427.817918 +2427.947256 +2428.085950 +2428.260642 +2428.325444 +2428.569466 +2428.612057 +2428.773695 +2429.348153 +2429.375260 +2429.429638 +2429.502865 +2429.545489 +2429.660740 +2429.722445 +2429.835366 +2429.924976 +2430.013354 +2430.065802 +2430.163537 +2430.265602 +2430.370696 +2430.518915 +2430.641659 +2430.756943 +2430.805728 +2430.878588 +2430.960606 +2431.048218 +2431.157242 +2431.296903 +2431.437828 +2432.113219 +2432.214451 +2432.314784 +2432.397834 +2432.520078 +2432.604294 +2432.721410 +2432.817980 +2433.038193 +2433.515116 +2433.605692 +2433.748016 +2433.798632 +2433.883280 +2434.186144 +2434.743386 +2434.937125 +2435.002127 +2435.042320 +2435.104192 +2435.166396 +2435.198131 +2435.299230 +2435.494934 +2435.726569 +2435.954474 +2436.011084 +2436.069592 +2436.128833 +2436.174753 +2436.261666 +2436.336991 +2436.556438 +2436.810417 +2436.891036 +2437.019608 +2437.126800 +2437.264562 +2437.398928 +2437.469257 +2437.553440 +2437.717675 +2437.948145 +2437.998894 +2438.128198 +2438.249443 +2438.363629 +2438.447012 +2438.601790 +2438.640985 +2438.807618 +2438.925899 +2439.024734 +2439.172153 +2439.306085 +2439.466192 +2439.499325 +2439.696828 +2439.835156 +2439.894929 +2439.943015 +2440.057833 +2440.208049 +2440.426531 +2440.666590 +2440.780010 +2440.864426 +2440.975914 +2441.123799 +2441.253003 +2441.500189 +2441.749806 +2441.852403 +2441.901055 +2441.981141 +2442.050372 +2442.125097 +2442.186336 +2442.330858 +2442.414807 +2442.547541 +2442.728826 +2443.140614 +2443.368586 +2443.487966 +2443.575412 +2443.654666 +2443.769884 +2443.861759 +2444.060693 +2444.211175 +2444.316270 +2444.834185 +2444.930389 +2445.085534 +2445.197621 +2445.419299 +2445.565886 +2446.316768 +2446.368283 +2446.457727 +2446.544140 +2446.701916 +2446.817633 +2446.943940 +2447.036214 +2447.737679 +2447.792923 +2447.872144 +2447.985397 +2448.182034 +2448.276406 +2448.546303 +2448.643905 +2448.708574 +2448.779136 +2448.883565 +2448.956425 +2449.053462 +2449.116399 +2449.191257 +2449.223325 +2449.329352 +2449.434514 +2449.492023 +2449.705775 +2449.826821 +2449.922359 +2450.015665 +2450.111436 +2450.199281 +2450.320793 +2450.371176 +2450.407540 +2450.480600 +2450.540040 +2450.607306 +2450.648765 +2450.700313 +2450.791389 +2450.884862 +2450.985428 +2451.064149 +2451.257722 +2451.376070 +2451.672473 +2451.759686 +2451.818660 +2451.926020 +2451.971141 +2452.041870 +2452.101644 +2452.178434 +2452.391920 +2452.526385 +2452.772472 +2453.477367 +2453.548795 +2453.738505 +2453.829547 +2453.895049 +2454.052524 +2454.147496 +2454.202474 +2454.364712 +2454.504905 +2454.808701 +2455.341667 +2455.400408 +2455.443232 +2455.492982 +2455.559749 +2455.603771 +2455.635273 +2455.653655 +2455.679629 +2455.729113 +2455.780128 +2455.855886 +2455.877331 +2455.932809 +2456.013994 +2456.103604 +2456.231410 +2456.284423 +2456.340268 +2456.414527 +2456.455219 +2456.496311 +2456.530710 +2456.594779 +2456.646594 +2456.688319 +2456.755718 +2456.865442 +2456.917024 +2457.037536 +2457.098742 +2457.231176 +2457.307732 +2457.383923 +2457.591515 +2457.881458 +2457.912294 +2457.937935 +2457.998508 +2458.065507 +2458.107365 +2458.134838 +2458.213226 +2458.306166 +2458.415057 +2458.565740 +2458.680025 +2458.789649 +2458.885553 +2459.072000 +2459.340631 +2459.581690 +2459.746425 +2459.852119 +2459.940430 +2460.019351 +2460.106198 +2460.228908 +2460.297973 +2460.398505 +2460.508595 +2460.703999 +2461.018651 +2461.073496 +2461.121715 +2461.178391 +2461.264172 +2461.311991 +2461.361674 +2461.454448 +2461.539996 +2461.592610 +2461.711624 +2461.850552 +2462.059676 +2462.217618 +2462.466668 +2462.621380 +2462.737664 +2462.834300 +2462.937197 +2463.015852 +2463.092575 +2463.225475 +2463.483417 +2463.620413 +2464.056211 +2464.153180 +2464.227539 +2464.282950 +2464.396204 +2464.491308 +2464.576889 +2464.809590 +2464.942057 +2465.085747 +2465.122377 +2465.168963 +2465.304361 +2465.385513 +2465.601797 +2465.852746 +2466.018713 +2466.148083 +2466.230134 +2466.283048 +2466.368563 +2466.399565 +2466.460304 +2466.503494 +2466.702761 +2466.842255 +2467.006191 +2467.084080 +2467.186477 +2467.236627 +2467.302428 +2467.354842 +2467.436027 +2467.498698 +2467.576620 +2467.658338 +2467.737059 +2467.901794 +2467.926037 +2467.964965 +2467.997099 +2468.058438 +2468.129999 +2468.183912 +2468.270792 +2468.424638 +2468.461201 +2468.531664 +2468.579749 +2468.667228 +2468.749812 +2468.796799 +2468.968493 +2469.247614 +2469.391537 +2469.468326 +2469.573121 +2469.709152 +2469.799761 +2469.906155 +2469.948712 +2470.004923 +2470.055106 +2470.277283 +2470.348545 +2470.500793 +2470.674586 +2470.794266 +2470.934892 +2471.080279 +2471.132794 +2471.190003 +2471.257835 +2471.298461 +2471.368358 +2471.431495 +2471.542916 +2471.647445 +2471.800792 +2471.977448 +2472.134424 +2472.281544 +2472.349276 +2472.402689 +2472.439585 +2472.497428 +2472.684540 +2472.802888 +2472.884707 +2472.985073 +2473.075649 +2473.176614 +2473.254403 +2473.437553 +2473.490533 +2473.693397 +2473.812678 +2474.007816 +2474.178745 +2474.502154 +2474.718238 +2474.811378 +2474.884272 +2474.948374 +2475.038750 +2475.100355 +2475.171850 +2475.228127 +2475.262893 +2475.361894 +2475.423232 +2475.733288 +2475.823998 +2475.875613 +2476.022632 +2476.200021 +2476.228459 +2476.364723 +2476.417903 +2476.517437 +2476.595858 +2476.706814 +2476.790031 +2476.839748 +2476.913440 +2476.987533 +2477.065455 +2477.137083 +2477.234486 +2477.343710 +2477.390063 +2477.495391 +2477.532554 +2477.667586 +2477.866054 +2478.038215 +2478.295624 +2478.425926 +2478.491261 +2478.598820 +2478.678640 +2478.767951 +2478.875743 +2478.937781 +2479.073345 +2479.188896 +2479.437647 +2479.726258 +2479.859258 +2479.981236 +2480.051366 +2480.180370 +2480.240044 +2480.319298 +2480.468382 +2480.575009 +2480.795355 +2481.114702 +2481.200915 +2481.367981 +2481.511371 +2481.703079 +2481.735347 +2481.768281 +2481.853729 +2481.923026 +2482.108807 +2482.244604 +2482.362952 +2482.445603 +2482.603978 +2482.644970 +2482.685563 +2482.725756 +2482.793887 +2482.863684 +2482.977204 +2483.071876 +2483.167513 +2483.233947 +2483.310737 +2483.416198 +2483.505642 +2483.577570 +2483.699581 +2483.999780 +2484.192254 +2484.267945 +2484.337509 +2484.420759 +2484.467945 +2484.524821 +2484.601778 +2484.652627 +2484.718494 +2484.810003 +2484.846832 +2484.926186 +2485.028384 +2485.177535 +2485.269576 +2485.477035 +2485.539872 +2485.587091 +2485.642969 +2485.699579 +2485.798513 +2485.870408 +2485.930481 +2485.980298 +2486.110401 +2486.174137 +2486.248163 +2486.323854 +2486.378965 +2486.465212 +2486.563348 +2486.687157 +2486.794683 +2486.920557 +2487.196181 +2487.263946 +2487.361948 +2487.419357 +2487.525917 +2487.594649 +2487.693550 +2487.758951 +2487.822321 +2487.937505 +2488.002307 +2488.157652 +2488.328514 +2488.629213 +2488.827281 +2488.892216 +2489.233575 +2489.318689 +2489.464011 +2489.588053 +2489.701140 +2489.972935 +2490.057117 +2490.149358 +2490.224083 +2490.291815 +2490.398109 +2490.453720 +2490.575764 +2490.666973 +2490.804502 +2491.156250 +2491.217356 +2491.255151 +2491.327545 +2491.406266 +2491.489650 +2491.534838 +2491.570269 +2491.725613 +2491.807998 +2491.872999 +2491.968837 +2492.017355 +2492.098174 +2492.214724 +2492.353518 +2492.482922 +2492.560345 +2492.682556 +2492.847857 +2492.905999 +2492.966172 +2493.006964 +2493.051520 +2493.139998 +2493.232006 +2493.351053 +2493.432705 +2493.606730 +2493.653051 +2493.749554 +2493.921582 +2494.019218 +2494.112191 +2494.304066 +2494.455880 +2494.500669 +2494.563040 +2494.617985 +2494.724412 +2494.769933 +2494.870932 +2494.976426 +2495.021314 +2495.071831 +2495.138031 +2495.211491 +2495.342227 +2495.504198 +2495.555213 +2495.626842 +2495.722213 +2495.750751 +2495.809525 +2495.882686 +2495.953981 +2496.025176 +2496.135199 +2496.209259 +2496.292775 +2496.362638 +2496.468033 +2496.534899 +2496.619215 +2496.700167 +2496.875458 +2496.941626 +2497.019015 +2497.099900 +2497.362271 +2497.472261 +2497.605827 +2497.710523 +2497.753346 +2497.895304 +2498.007026 +2498.105094 +2498.173925 +2498.262770 +2498.302896 +2498.379886 +2498.466499 +2498.619946 +2498.820312 +2498.951947 +2499.043588 +2499.137261 +2499.170228 +2499.216082 +2499.338759 +2499.393271 +2499.691240 +2499.739392 +2499.832598 +2499.908522 +2499.995236 +2500.088342 +2500.163900 +2500.218878 +2500.285678 +2500.348082 +2500.410154 +2500.490473 +2500.556607 +2500.630799 +2500.769394 +2500.869594 +2500.937226 +2500.997632 +2501.037992 +2501.073190 +2501.123506 +2501.172324 +2501.220143 +2501.251744 +2501.321908 +2501.414581 +2501.499730 +2501.556539 +2501.596033 +2501.640089 +2501.698730 +2501.759569 +2501.803759 +2501.951877 +2502.015447 +2502.067528 +2502.115380 +2502.172090 +2502.285476 +2502.380581 +2502.457737 +2502.503625 +2502.555273 +2502.627034 +2502.678516 +2502.766928 +2502.894933 +2502.970624 +2503.063797 +2503.149944 +2503.223138 +2503.283344 +2503.365462 +2503.426168 +2503.502658 +2503.565562 +2503.707420 +2503.749544 +2503.813680 +2503.870090 +2503.905188 +2503.962198 +2504.003090 +2504.061832 +2504.106986 +2504.179081 +2504.227366 +2504.294532 +2504.341552 +2504.372221 +2504.382844 +2504.472354 +2504.521705 +2504.571688 +2504.620739 +2504.658501 +2504.708185 +2504.761265 +2504.820838 +2504.874318 +2504.931195 +2504.995797 +2505.105687 +2505.137588 +2505.211015 +2505.256969 +2505.420838 +2505.472619 +2505.513445 +2505.562929 +2505.604987 +2505.654337 +2505.726632 +2505.835689 +2505.891667 +2505.953272 +2506.041883 +2506.065626 +2506.103788 +2506.147211 +2506.197827 +2506.259565 +2506.332392 +2506.381143 +2506.445113 +2506.496628 +2506.547577 +2506.588602 +2506.634323 +2506.676814 +2506.751672 +2506.827896 +2506.914210 +2506.954636 +2506.997293 +2507.047609 +2507.094629 +2507.130926 +2507.144413 +2507.201888 +2507.321602 +2507.385005 +2507.440816 +2507.494928 +2507.563027 +2507.616473 +2507.663593 +2507.716873 +2507.767056 +2507.814109 +2507.857033 +2507.904618 +2507.958897 +2508.007648 +2508.050572 +2508.099623 +2508.146676 +2508.193562 +2508.234055 +2508.285903 +2508.341847 +2508.385237 +2508.428128 +2508.481041 +2508.522700 +2508.576013 +2508.621601 +2508.662826 +2508.711710 +2508.824298 +2508.881008 +2508.935220 +2508.981607 +2509.018570 +2509.059429 +2509.110578 +2509.169419 +2509.210777 +2509.270251 +2509.297457 +2509.325463 +2509.366155 +2509.418969 +2509.489132 +2509.530890 +2509.579841 +2509.647607 +2509.699355 +2509.750837 +2509.818802 +2509.857796 +2509.899388 +2509.939182 +2509.995892 +2510.070650 +2510.118602 +2510.167220 +2510.242045 +2510.284603 +2510.324196 +2510.422032 +2510.472148 +2510.514872 +2510.554765 +2510.598222 +2510.678308 +2510.742977 +2510.791329 +2510.850636 +2510.897189 +2510.937316 +2510.980672 +2511.024895 +2511.061225 +2511.104915 +2511.159160 +2511.196024 +2511.241511 +2511.278175 +2511.318801 +2511.404681 +2511.456263 +2511.495291 +2511.538747 +2511.597988 +2511.641344 +2511.702250 +2511.759226 +2511.819300 +2511.911241 +2511.953832 +2511.987997 +2512.067251 +2512.107711 +2512.146039 +2512.205480 +2512.260192 +2512.323462 +2512.369349 +2512.404381 +2512.452100 +2512.500085 +2512.563022 +2512.632952 +2512.674843 +2512.714404 +2512.771513 +2512.811140 +2512.855929 +2512.904080 +2512.956894 +2512.996321 +2513.041743 +2513.078406 +2513.107244 +2513.146771 +2513.221929 +2513.276241 +2513.322661 +2513.372911 +2513.431319 +2513.487696 +2513.529321 +2513.581303 +2513.630986 +2513.701749 +2513.749934 +2513.802514 +2513.836048 +2513.887196 +2513.917832 +2513.957859 +2514.009874 +2514.047003 +2514.077339 +2514.120596 +2514.165351 +2514.224792 +2514.272044 +2514.308641 +2514.351365 +2514.420562 +2514.466250 +2514.512737 +2514.568381 +2514.632184 +2514.680036 +2514.713902 +2514.758125 +2514.834515 +2514.869446 +2514.916866 +2514.984864 +2515.037878 +2515.083466 +2515.129420 +2515.163152 +2515.196852 +2515.240642 +2515.280269 +2515.358790 +2515.400648 +2515.462220 +2515.498284 +2515.554860 +2515.598617 +2515.656958 +2515.690158 +2515.735912 +2515.800381 +2515.874141 +2515.951796 +2515.979835 +2516.039875 +2516.083631 +2516.197251 +2516.245303 +2516.297950 +2516.347667 +2516.422692 +2516.468779 +2516.518229 +2516.582898 +2516.625922 +2516.673141 +2516.728086 +2516.767080 +2516.806208 +2516.845002 +2516.881632 +2516.923790 +2516.955358 +2517.008072 +2517.061652 +2517.125788 +2517.180200 +2517.219894 +2517.259754 +2517.297982 +2517.335811 +2517.371009 +2517.427020 +2517.457423 +2517.493054 +2517.552361 +2517.601312 +2517.642770 +2517.704875 +2517.737209 +2517.759187 +2517.834545 +2517.880699 +2517.933413 +2517.987092 +2518.026786 +2518.085827 +2518.132114 +2518.183929 +2518.238041 +2518.307871 +2518.382696 +2518.441737 +2518.494018 +2518.544468 +2518.593286 +2518.648897 +2518.686326 +2518.730015 +2518.781464 +2518.825120 +2518.887458 +2518.941703 +2519.008603 +2519.054424 +2519.083328 +2519.136409 +2519.205906 +2519.261550 +2519.309302 +2519.393951 +2519.444800 +2519.468543 +2519.505606 +2519.556888 +2519.615629 +2519.655556 +2519.721756 +2519.769408 +2519.808636 +2519.871106 +2519.916628 +2519.958119 +2519.980464 +2520.031612 +2520.069042 +2520.132678 +2520.180930 +2520.210367 +2520.248129 +2520.314862 +2520.375169 +2520.425618 +2520.468775 +2520.543200 +2520.630713 +2520.687523 +2520.738405 +2520.778565 +2520.831811 +2520.875634 +2520.928748 +2520.974069 +2521.013430 +2521.070572 +2521.130979 +2521.179563 +2521.225517 +2521.301242 +2521.325451 +2521.359317 +2521.415194 +2521.451491 +2521.507801 +2521.538437 +2521.600076 +2521.660815 +2521.716626 +2521.770672 +2521.841268 +2521.878097 +2521.923685 +2521.977631 +2522.039203 +2522.089053 +2522.131344 +2522.188154 +2522.237205 +2522.286788 +2522.351457 +2522.418556 +2522.488653 +2522.622452 +2522.685123 +2522.739002 +2522.837604 +2522.873468 +2523.000774 +2523.054087 +2523.119621 +2523.186421 +2523.339068 +2523.380793 +2523.450357 +2523.485955 +2523.545195 +2523.579594 +2523.659881 +2523.725315 +2523.785888 +2523.833840 +2523.885488 +2523.927280 +2523.992781 +2524.061712 +2524.129710 +2524.215058 +2524.270702 +2524.317422 +2524.358648 +2524.411728 +2524.460146 +2524.531841 +2524.592514 +2524.643962 +2524.681758 +2524.730476 +2524.775830 +2524.856350 +2524.905534 +2524.951554 +2525.017988 +2525.078627 +2525.143096 +2525.173166 +2525.214691 +2525.266472 +2525.303535 +2525.365673 +2525.415257 +2525.450089 +2525.501704 +2525.579925 +2525.634737 +2525.695443 +2525.744794 +2525.779659 +2525.838500 +2525.892279 +2525.931706 +2525.995210 +2526.027211 +2526.112126 +2526.179492 +2526.239898 +2526.275163 +2526.297773 +2526.337400 +2526.375362 +2526.439232 +2526.497573 +2526.546125 +2526.596541 +2526.639565 +2526.692645 +2526.749088 +2526.806364 +2526.842262 +2526.897506 +2526.934603 +2526.956414 +2527.014856 +2527.115655 +2527.164439 +2527.201902 +2527.251552 +2527.329174 +2527.385152 +2527.441861 +2527.481022 +2527.545591 +2527.600469 +2527.666470 +2527.709727 +2527.782654 +2527.842127 +2527.894908 +2528.001967 +2528.075361 +2528.129640 +2528.189680 +2528.198171 +2528.248754 +2528.385017 +2528.437065 +2528.490379 +2528.530538 +2528.574894 +2528.629972 +2528.684651 +2528.729140 +2528.778990 +2528.820182 +2528.861574 +2528.936765 +2528.986315 +2529.050618 +2529.160141 +2529.211257 +2529.258177 +2529.307927 +2529.366235 +2529.415519 +2529.448353 +2529.494540 +2529.536332 +2529.591510 +2529.643757 +2529.688113 +2529.743857 +2529.805629 +2529.848386 +2529.912355 +2529.946787 +2530.016651 +2530.094073 +2530.137796 +2530.196071 +2530.246687 +2530.295971 +2530.347187 +2530.379288 +2530.429238 +2530.467899 +2530.531236 +2530.566867 +2530.653846 +2530.712454 +2530.768798 +2530.817815 +2530.861472 +2530.909390 +2530.960273 +2530.998068 +2531.033633 +2531.135364 +2531.197469 +2531.244855 +2531.283383 +2531.337162 +2531.399533 +2531.452214 +2531.489443 +2531.535664 +2531.640459 +2531.700499 +2531.816216 +2531.871894 +2531.931068 +2531.982783 +2532.043955 +2532.108024 +2532.156376 +2532.207891 +2532.262070 +2532.367964 +2532.412819 +2532.450581 +2532.491507 +2532.532466 +2532.574091 +2532.606625 +2532.658906 +2532.726372 +2532.771526 +2532.822575 +2532.847484 +2532.899365 +2532.938992 +2532.980884 +2533.029568 +2533.075722 +2533.163134 +2533.204393 +2533.235129 +2533.378952 +2533.416914 +2533.449315 +2533.493837 +2533.549081 +2533.607323 +2533.689374 +2533.737193 +2533.778219 +2533.830533 +2533.866630 +2533.915481 +2533.961702 +2534.000530 +2534.037326 +2534.128868 +2534.174056 +2534.227069 +2534.270126 +2534.302061 +2534.342654 +2534.398265 +2534.450779 +2534.495834 +2534.530299 +2534.578118 +2534.630998 +2534.673056 +2534.720209 +2534.770592 +2534.812717 +2534.861002 +2534.918144 +2534.960935 +2535.000395 +2535.045317 +2535.103292 +2535.139090 +2535.173788 +2535.201061 +2535.233395 +2535.284111 +2535.330065 +2535.389373 +2535.430365 +2535.479649 +2535.519509 +2535.555906 +2535.599362 +2535.672856 +2535.732729 +2535.771424 +2535.813748 +2535.857904 +2535.890138 +2535.945549 +2535.984743 +2536.077950 +2536.119009 +2536.169026 +2536.221573 +2536.255106 +2536.293268 +2536.327267 +2536.369725 +2536.418209 +2536.453408 +2536.489671 +2536.540287 +2536.582412 +2536.627300 +2536.668625 +2536.705755 +2536.798795 +2536.840953 +2536.879614 +2536.937057 +2536.976817 +2537.016910 +2537.065728 +2537.113780 +2537.159701 +2537.197796 +2537.254972 +2537.314312 +2537.362930 +2537.413080 +2537.474752 +2537.516810 +2537.563496 +2537.617975 +2537.667426 +2537.717376 +2537.766060 +2537.808884 +2537.864162 +2537.896363 +2537.939920 +2537.982410 +2538.038454 +2538.127632 +2538.182077 +2538.221737 +2538.267725 +2538.314778 +2538.348910 +2538.388471 +2538.443782 +2538.482643 +2538.528364 +2538.573452 +2538.629263 +2538.681244 +2538.730994 +2538.791234 +2538.831627 +2538.878813 +2538.933358 +2538.978447 +2539.026499 +2539.048077 +2539.108816 +2539.149409 +2539.181510 +2539.224134 +2539.272685 +2539.327797 +2539.361963 +2539.403588 +2539.451407 +2539.492399 +2539.555969 +2539.592499 +2539.640284 +2539.696994 +2539.780044 +2539.852239 +2539.897360 +2539.954903 +2540.004386 +2540.044413 +2540.099558 +2540.139518 +2540.181809 +2540.236154 +2540.276780 +2540.322967 +2540.365525 +2540.459697 +2540.508682 +2540.565458 +2540.636986 +2540.680510 +2540.726197 +2540.800023 +2540.841948 +2540.890666 +2540.942780 +2541.022734 +2541.083040 +2541.124998 +2541.177812 +2541.221168 +2541.264092 +2541.312710 +2541.368654 +2541.398191 +2541.439383 +2541.464325 +2541.484105 +2541.551638 +2541.585137 +2541.617205 +2541.661627 +2541.715440 +2541.756566 +2541.782540 +2541.824365 +2541.871584 +2541.918004 +2541.952836 +2541.993062 +2542.030458 +2542.085903 +2542.126962 +2542.173149 +2542.203818 +2542.243412 +2542.279109 +2542.318170 +2542.359029 +2542.400155 +2542.452935 +2542.508513 +2542.533222 +2542.603052 +2542.648340 +2542.696558 +2542.752302 +2542.785835 +2542.846675 +2542.929991 +2542.978509 +2543.035918 +2543.077344 +2543.105882 +2543.144210 +2543.201120 +2543.250304 +2543.315372 +2543.343411 +2543.382538 +2543.434753 +2543.464323 +2543.540980 +2543.588432 +2543.618269 +2543.661592 +2543.683737 +2543.767819 +2543.815272 +2543.849338 +2543.895525 +2543.967319 +2544.002351 +2544.058894 +2544.092328 +2544.121432 +2544.152201 +2544.193526 +2544.263923 +2544.309211 +2544.363889 +2544.414272 +2544.463656 +2544.519234 +2544.568951 +2544.584502 +2544.602284 +2544.654865 +2544.722663 +2544.771015 +2544.853499 +2544.893193 +2544.927791 +2544.970782 +2545.018034 +2545.056429 +2545.099553 +2545.139213 +2545.180838 +2545.241710 +2545.292227 +2545.373978 +2545.417801 +2545.452733 +2545.486732 +2545.532619 +2545.568750 +2545.632220 +2545.711807 +2545.763921 +2545.817567 +2545.844773 +2545.876309 +2545.915836 +2545.960025 +2546.049935 +2546.111873 +2546.151700 +2546.186565 +2546.220397 +2546.257960 +2546.313571 +2546.356328 +2546.411273 +2546.460357 +2546.506911 +2546.597753 +2546.702515 +2546.766151 +2546.808875 +2546.860090 +2546.943507 +2546.972644 +2547.008242 +2547.051232 +2547.091326 +2547.195788 +2547.220663 +2547.252731 +2547.293090 +2547.354329 +2547.384665 +2547.429920 +2547.482301 +2547.518964 +2547.541309 +2547.584465 +2547.620030 +2547.664618 +2547.725657 +2547.793523 +2547.836180 +2547.889793 +2547.932484 +2547.975474 +2548.008175 +2548.050366 +2548.128121 +2548.225224 +2548.286429 +2548.338244 +2548.412470 +2548.451131 +2548.490692 +2548.551031 +2548.655427 +2548.701447 +2548.742806 +2548.787228 +2548.818796 +2548.863052 +2548.922393 +2548.965516 +2549.004977 +2549.063119 +2549.115666 +2549.153661 +2549.205742 +2549.230684 +2549.260621 +2549.320061 +2549.377937 +2549.424823 +2549.470111 +2549.549632 +2549.595186 +2549.642638 +2549.683398 +2549.721293 +2549.742272 +2549.808206 +2549.872608 +2549.895519 +2549.967147 +2550.013501 +2550.070444 +2550.099714 +2550.139008 +2550.187726 +2550.232814 +2550.279601 +2550.345102 +2550.409804 +2550.470110 +2550.508605 +2550.544735 +2550.584795 +2550.624889 +2550.652694 +2550.711535 +2550.765448 +2550.820992 +2550.906607 +2550.942171 +2550.983263 +2551.050363 +2551.091089 +2551.115897 +2551.156123 +2551.190822 +2551.222524 +2551.250962 +2551.285827 +2551.323689 +2551.373239 +2551.420026 +2551.448464 +2551.515997 +2551.549330 +2551.597848 +2551.629716 +2551.660219 +2551.698081 +2551.724854 +2551.766379 +2551.850162 +2551.914131 +2551.950728 +2552.049962 +2552.101943 +2552.157721 +2552.207238 +2552.272739 +2552.314331 +2552.364580 +2552.415230 +2552.456189 +2552.510767 +2552.548197 +2552.577700 +2552.630681 +2552.683261 +2552.740038 +2552.802808 +2552.927584 +2552.994450 +2553.090920 +2553.169175 +2553.228382 +2553.296581 +2553.383927 +2553.435076 +2553.476101 +2553.545365 +2553.602808 +2553.678665 +2553.727416 +2553.783194 +2553.843933 +2553.915794 +2553.994316 +2554.043067 +2554.075035 +2554.116294 +2554.155554 +2554.194915 +2554.238671 +2554.307336 +2554.365011 +2554.403040 +2554.439204 +2554.479097 +2554.520323 +2554.562214 +2554.600076 +2554.751791 +2554.821121 +2554.904005 +2554.970006 +2554.994448 +2555.059982 +2555.147695 +2555.197345 +2555.250825 +2555.311997 +2555.344065 +2555.395114 +2555.433675 +2555.489020 +2555.557684 +2555.636272 +2555.696345 +2555.758117 +2555.803971 +2555.845663 +2555.893415 +2555.972169 +2556.022952 +2556.067973 +2556.122585 +2556.163511 +2556.226814 +2556.274900 +2556.317357 +2556.345029 +2556.396744 +2556.437237 +2556.474034 +2556.553288 +2556.620753 +2556.663677 +2556.780826 +2556.786321 +2556.841199 +2556.904469 +2556.929811 +2556.961046 +2557.000174 +2557.031009 +2557.077163 +2557.121119 +2557.190017 +2557.260346 +2557.296310 +2557.346960 +2557.405501 +2557.446826 +2557.508465 +2557.568571 +2557.639334 +2557.693546 +2557.730076 +2557.764975 +2557.796976 +2557.831641 +2557.874865 +2557.917289 +2557.973333 +2558.027279 +2558.101871 +2558.209197 +2558.271301 +2558.324914 +2558.366239 +2558.421218 +2558.483122 +2558.504468 +2558.581890 +2558.629509 +2558.661577 +2558.742430 +2558.775263 +2558.844860 +2558.920585 +2558.975363 +2559.037634 +2559.086752 +2559.132173 +2559.169236 +2559.218220 +2559.270268 +2559.346891 +2559.434703 +2559.544960 +2559.601736 +2559.661310 +2559.742595 +2559.788116 +2559.811493 +2559.862475 +2559.890414 +2559.945425 +2560.002435 +2560.048522 +2560.089448 +2560.156348 +2560.188582 +2560.275761 +2560.387516 +2560.440996 +2560.476094 +2560.527509 +2560.618685 +2560.668402 +2560.705398 +2560.756547 +2560.809527 +2560.882920 +2560.959377 +2561.028075 +2561.050120 +2561.118118 +2561.169833 +2561.260376 +2561.310126 +2561.405930 +2561.506363 +2561.600768 +2561.679290 +2561.749186 +2561.811990 +2561.868534 +2561.932003 +2561.982187 +2562.023279 +2562.079156 +2562.140894 +2562.174094 +2562.218017 +2562.275726 +2562.351017 +2562.395340 +2562.464404 +2562.505296 +2562.548953 +2562.594474 +2562.654480 +2562.697770 +2562.759076 +2562.816451 +2562.877091 +2562.984850 +2563.069665 +2563.115019 +2563.169465 +2563.246454 +2563.298869 +2563.327740 +2563.350650 +2563.441925 +2563.486747 +2563.546654 +2563.594406 +2563.663837 +2563.692075 +2563.753280 +2563.884283 +2563.936863 +2563.986946 +2564.060073 +2564.140693 +2564.186547 +2564.246553 +2564.320013 +2564.362804 +2564.475358 +2564.520845 +2564.557142 +2564.637529 +2564.698634 +2564.762071 +2564.870196 +2564.942956 +2565.004228 +2565.099433 +2565.161171 +2565.213319 +2565.315517 +2565.382083 +2565.453645 +2565.492306 +2565.531034 +2565.600398 +2565.669662 +2565.778953 +2565.838593 +2565.912486 +2565.993671 +2566.094071 +2566.132765 +2566.188576 +2566.244320 +2566.324007 +2566.365732 +2566.406791 +2566.446018 +2566.473424 +2566.534763 +2566.605425 +2566.690240 +2566.780284 +2566.876887 +2566.932398 +2567.007823 +2567.076287 +2567.156474 +2567.185245 +2567.253810 +2567.313283 +2567.345651 +2567.414982 +2567.465431 +2567.504126 +2567.560236 +2567.631698 +2567.688008 +2567.762401 +2567.910486 +2568.019810 +2568.065231 +2568.126303 +2568.157871 +2568.212550 +2568.281747 +2568.337125 +2568.381647 +2568.478084 +2568.526336 +2568.592237 +2568.662266 +2568.736659 +2568.795500 +2568.885010 +2568.950711 +2569.138656 +2569.206189 +2569.303325 +2569.339056 +2569.385409 +2569.481513 +2569.526035 +2569.570690 +2569.659102 +2569.703191 +2569.745582 +2569.844083 +2569.930031 +2569.992302 +2570.101060 +2570.166994 +2570.221073 +2570.288938 +2570.384409 +2570.431296 +2570.536257 +2570.604789 +2570.732461 +2570.792301 +2570.823170 +2570.896397 +2571.005554 +2571.135657 +2571.206187 +2571.284242 +2571.324868 +2571.380179 +2571.507418 +2571.589037 +2571.646080 +2571.737255 +2571.809150 +2571.990402 +2572.143415 +2572.192666 +2572.312413 +2572.389336 +2572.434557 +2572.485306 +2572.527031 +2572.599192 +2572.680378 +2572.770388 +2572.868456 +2572.945013 +2573.015442 +2573.059731 +2573.100923 +2573.174050 +2573.248576 +2573.326564 +2573.389102 +2573.463361 +2573.565259 +2573.678778 +2573.734423 +2573.847376 +2573.920103 +2573.997626 +2574.050639 +2574.103586 +2574.165691 +2574.247109 +2574.338118 +2574.416007 +2574.485271 +2574.560662 +2574.646776 +2574.720369 +2574.784771 +2574.905817 +2575.010146 +2575.111311 +2575.208947 +2575.319836 +2575.389066 +2575.463392 +2575.533022 +2575.579509 +2575.628893 +2575.731990 +2575.907647 +2575.995859 +2576.128093 +2576.253168 +2576.320534 +2576.488932 +2576.558296 +2576.625628 +2576.667720 +2576.737017 +2576.777110 +2576.836251 +2576.883171 +2576.937716 +2576.980373 +2577.126261 +2577.187832 +2577.288898 +2577.356863 +2577.458561 +2577.584535 +2577.665221 +2577.753533 +2577.826426 +2577.881038 +2577.989097 +2578.068051 +2578.126093 +2578.181804 +2578.237681 +2578.302017 +2578.339979 +2578.404947 +2578.472913 +2578.556362 +2578.655164 +2578.765153 +2578.854298 +2578.902449 +2579.002483 +2579.131986 +2579.173545 +2579.218233 +2579.256828 +2579.320398 +2579.404280 +2579.516335 +2579.557161 +2579.615735 +2579.778173 +2579.821663 +2579.876608 +2579.935216 +2580.001516 +2580.056727 +2580.084599 +2580.173843 +2580.252831 +2580.308442 +2580.393890 +2580.495754 +2580.570480 +2580.607909 +2580.641242 +2580.684799 +2580.840676 +2580.944372 +2581.024825 +2581.097053 +2581.143007 +2581.193323 +2581.289726 +2581.356759 +2581.435247 +2581.511105 +2581.561654 +2581.606443 +2581.677938 +2581.742839 +2581.837078 +2581.950332 +2582.025490 +2582.112136 +2582.171777 +2582.220561 +2582.274074 +2582.390791 +2582.460654 +2582.516365 +2582.580235 +2582.608306 +2582.708739 +2582.762985 +2582.833081 +2583.039208 +2583.234413 +2583.329218 +2583.425289 +2583.540673 +2583.659488 +2583.822591 +2583.947932 +2584.008538 +2584.057922 +2584.133813 +2584.210403 +2584.253160 +2584.302511 +2584.355524 +2584.423190 +2584.470043 +2584.585760 +2584.716896 +2584.840372 +2584.907638 +2584.971574 +2585.093852 +2585.160518 +2585.199646 +2585.238307 +2585.282563 +2585.320025 +2585.381331 +2585.430781 +2585.480631 +2585.582329 +2585.629815 +2585.691287 +2585.789289 +2585.824820 +2585.846398 +2585.981563 +2586.073338 +2586.113664 +2586.230614 +2586.283727 +2586.470074 +2586.538106 +2586.634476 +2586.679331 +2586.723254 +2586.764779 +2586.830014 +2586.890487 +2586.946497 +2586.997180 +2587.026084 +2587.066544 +2587.115928 +2587.235208 +2587.292950 +2587.417159 +2587.466443 +2587.533576 +2587.603673 +2587.643999 +2587.711831 +2587.768907 +2587.798145 +2587.866143 +2587.908601 +2587.976966 +2588.152657 +2588.490319 +2588.824784 +2588.864344 +2588.930045 +2588.975133 +2589.002439 +2589.074900 +2589.100408 +2589.151623 +2589.193748 +2589.251423 +2589.301307 +2589.383025 +2589.461113 +2589.610564 +2590.194446 +2590.398508 +2590.482624 +2590.607533 +2590.693913 +2590.746027 +2590.779893 +2590.828378 +2590.886986 +2590.936836 +2590.976530 +2590.996876 +2591.057515 +2591.159347 +2591.369303 +2591.564375 +2591.628377 +2591.727178 +2591.766206 +2591.867538 +2591.943262 +2591.998207 +2592.071767 +2592.150222 +2592.212493 +2592.287584 +2592.554450 +2592.663608 +2592.751486 +2592.832206 +2592.881090 +2592.938632 +2592.990880 +2593.119418 +2593.206165 +2593.448389 +2593.717686 +2593.780456 +2594.010493 +2594.054083 +2594.203400 +2594.284618 +2594.344159 +2594.458678 +2594.519050 +2594.592410 +2594.692777 +2594.750652 +2594.818551 +2594.911025 +2594.986682 +2595.041428 +2595.145790 +2595.262673 +2595.306928 +2595.349386 +2595.429572 +2595.490678 +2595.600168 +2595.665103 +2595.967734 +2596.064770 +2596.205063 +2596.364037 +2596.411956 +2596.448619 +2596.508559 +2596.563837 +2596.692575 +2596.765269 +2596.832035 +2596.909458 +2596.973993 +2597.094506 +2597.196337 +2597.403929 +2597.612487 +2597.690243 +2597.752680 +2597.799733 +2597.860006 +2597.917182 +2598.054844 +2598.123642 +2598.197102 +2598.230569 +2598.296769 +2598.381651 +2598.495304 +2598.704494 +2599.047218 +2599.180251 +2599.243555 +2599.322609 +2599.435096 +2599.505492 +2599.560737 +2599.839358 +2600.061802 +2600.131666 +2600.229534 +2600.329501 +2600.429900 +2600.545085 +2600.644086 +2600.790373 +2601.051711 +2601.153376 +2601.267895 +2601.409653 +2602.170458 +2602.310551 +2602.466162 +2602.657204 +2602.854440 +2602.942552 +2603.118909 +2603.188372 +2603.366594 +2603.454106 +2603.517676 +2603.573687 +2603.599528 +2603.627000 +2603.708818 +2603.737889 +2603.770123 +2603.834759 +2604.028365 +2604.538621 +2604.651641 +2604.737355 +2604.812713 +2604.841884 +2604.952840 +2605.029796 +2605.083675 +2605.214844 +2605.376649 +2605.441850 +2605.506086 +2605.583142 +2605.679878 +2605.849975 +2606.270221 +2606.471719 +2606.533124 +2606.743114 +2606.855668 +2606.940883 +2607.188102 +2607.315708 +2607.364093 +2607.416074 +2607.501455 +2608.114475 +2608.227328 +2608.372250 +2608.484404 +2608.775746 +2608.946176 +2609.027095 +2609.132189 +2609.184537 +2609.332023 +2609.381506 +2609.546075 +2609.624030 +2610.412042 +2610.531089 +2610.671648 +2610.842544 +2610.932321 +2611.131721 +2611.812240 +2611.906978 +2612.074444 +2612.114104 +2612.349535 +2612.566285 +2612.726858 +2612.849002 +2613.164220 +2613.417200 +2613.481669 +2613.553564 +2613.664286 +2613.835814 +2614.040043 +2614.079171 +2614.398951 +2614.531085 +2614.776140 +2614.878537 +2615.044638 +2615.269113 +2615.428587 +2615.589259 +2615.666748 +2615.751763 +2615.873175 +2615.936045 +2616.088726 +2616.223225 +2616.307041 +2616.473041 +2616.567979 +2616.646934 +2616.691356 +2617.037476 +2617.090923 +2617.397716 +2617.812400 +2618.141604 +2619.202276 +2619.761383 +2619.852292 +2620.206437 +2621.381062 +2621.593183 +2621.652889 +2621.705703 +2621.765011 +2621.907135 +2622.108966 +2622.373768 +2622.461780 +2622.525416 +2622.602372 +2622.686721 +2622.793914 +2623.060381 +2623.294879 +2623.416258 +2623.703170 +2623.949824 +2624.566806 +2624.803003 +2624.873632 +2624.944028 +2625.074797 +2625.469502 +2626.165139 +2626.634503 +2627.514522 +2627.694209 +2627.953249 +2628.123446 +2628.312124 +2628.549886 +2628.703698 +2629.145356 +2629.194274 +2629.365902 +2629.498270 +2629.781752 +2630.011323 +2630.384516 +2630.633100 +2630.793406 +2630.888644 +2631.015684 +2631.100066 +2631.729669 +2631.946119 +2632.091341 +2632.679685 +2633.761868 +2633.893903 +2634.264998 +2634.410952 +2634.613283 +2635.167561 +2635.394001 +2635.675286 +2635.903325 +2636.025236 +2636.565162 +2636.685675 +2636.785875 +2636.868392 +2636.959234 +2637.032128 +2637.298861 +2637.405854 +2637.591668 +2637.593300 +2637.748444 +2637.840153 +2638.155570 +2638.567658 +2638.658334 +2638.830128 +2638.980078 +2639.052706 +2639.143415 +2639.301756 +2640.046777 +2640.097859 +2640.185105 +2640.301422 +2640.424699 +2640.558232 +2640.668721 +2640.862427 +2641.065291 +2641.128961 +2641.335321 +2641.401421 +2641.684371 +2642.398057 +2642.476179 +2642.733787 +2643.349371 +2643.377410 +2643.798755 +2644.099254 +2644.273912 +2644.387665 +2644.458295 +2644.583769 +2644.757928 +2644.901584 +2645.496056 +2645.783668 +2645.881137 +2646.132286 +2646.215302 +2646.287064 +2646.368882 +2646.481736 +2646.555795 +2646.698319 +2647.116167 +2647.215102 +2647.305311 +2647.398385 +2647.452697 +2647.672277 +2647.835947 +2647.992757 +2648.062387 +2648.147368 +2648.334548 +2648.419529 +2648.631217 +2649.146602 +2649.943737 +2650.077270 +2650.244702 +2650.643636 +2651.016896 +2651.140439 +2651.361551 +2651.442137 +2651.493319 +2651.638540 +2651.765080 +2651.897381 +2651.967511 +2652.038906 +2652.098613 +2652.336275 +2652.518393 +2652.586325 +2652.693917 +2652.817227 +2652.965679 +2653.105439 +2653.765312 +2653.892318 +2654.027449 +2654.258351 +2654.536273 +2654.573569 +2654.653756 +2654.734408 +2654.823519 +2654.952157 +2654.988088 +2655.066043 +2655.189553 +2655.270705 +2655.331211 +2655.428214 +2655.477664 +2655.580261 +2655.669672 +2655.703372 +2656.074267 +2656.181193 +2656.371336 +2657.089184 +2657.198109 +2657.258848 +2657.335871 +2657.413426 +2657.542397 +2657.701738 +2658.098108 +2658.489882 +2658.685187 +2658.860145 +2659.178293 +2659.312592 +2660.268901 +2660.713456 +2660.867702 +2660.923579 +2661.015188 +2661.196073 +2661.756046 +2661.938763 +2662.128673 +2662.355446 +2663.283584 +2663.755145 +2665.105027 +2665.424008 +2665.577088 +2665.940458 +2667.025305 +2669.225802 +2669.540454 +2670.141752 +2671.310815 +2671.439253 +2671.559500 +2671.657501 +2671.909249 +2672.027098 +2672.266725 +2672.402422 +2672.465226 +2672.717241 +2672.826731 +2673.178146 +2673.485805 +2673.761795 +2673.888668 +2674.341348 +2674.849939 +2675.114707 +2675.156699 +2675.196659 +2675.255100 +2675.333821 +2675.477877 +2675.702752 +2675.858563 +2675.936452 +2675.986268 +2676.146741 +2676.250071 +2676.465855 +2676.839847 +2677.209677 +2677.281971 +2677.478208 +2678.039746 +2678.097522 +2678.154431 +2683.404409 +2683.616031 +2684.744368 +2685.637241 +2685.960418 +2688.912929 +2688.976532 +2689.036105 +2689.104004 +2689.166142 +2689.239935 +2690.153387 +2690.273700 +2690.328545 +2690.467006 +2690.885587 +2691.070402 +2693.272964 +2693.411126 +2693.449354 +2693.517353 +2693.592478 +2693.658545 +2693.711359 +2693.748122 +2693.833204 +2693.980889 +2694.040862 +2694.115554 +2695.447454 +2695.555047 +2695.817018 +2698.164967 +2707.283906 +2707.672650 +2708.496193 +2708.848873 +2709.251070 +2709.346175 +2710.322065 +2711.232320 +2711.306413 +2711.352334 +2711.456196 +2712.395856 +2712.597620 +2712.882502 +2713.857959 +2713.904246 +2713.936447 +2713.969747 +2713.993024 +2714.020096 +2714.079470 +2714.133649 +2714.278371 +2714.703412 +2715.210172 +2715.274374 +2715.470112 +2715.601147 +2715.781200 +2715.883498 +2715.993155 +2716.118696 +2716.206341 +2716.427820 +2717.061385 +2717.161852 +2717.321758 +2717.398282 +2717.614332 +2718.021424 +2718.129416 +2718.289190 +2718.385160 +2718.447831 +2718.545666 +2718.615463 +2718.665979 +2718.699546 +2718.779466 +2719.039872 +2719.194384 +2719.302442 +2719.388423 +2720.059984 +2720.134942 +2720.174070 +2720.236507 +2720.295148 +2720.338971 +2720.419924 +2720.537239 +2720.685824 +2721.467308 +2721.636639 +2721.848127 +2722.146862 +2722.247594 +2722.953021 +2723.110763 +2723.284057 +2723.506933 +2723.845994 +2724.193613 +2724.313992 +2724.380892 +2724.545194 +2724.739633 +2724.986186 +2725.545726 +2725.970667 +2726.986484 +2727.055615 +2727.115654 +2727.167902 +2727.241096 +2727.279291 +2727.303700 +2727.342294 +2727.383420 +2727.449121 +2727.509494 +2727.565537 +2727.669300 +2727.901268 +2728.032770 +2728.080622 +2728.140362 +2728.160142 +2728.203898 +2728.239030 +2728.311025 +2728.338430 +2728.565636 +2728.745689 +2728.892975 +2729.123977 +2729.202565 +2729.334800 +2729.477557 +2729.510890 +2729.666201 +2729.756644 +2729.812788 +2729.962205 +2729.993607 +2730.209091 +2730.771195 +2731.282217 +2731.957175 +2732.489575 +2738.314578 +2738.366492 +2738.429862 +2738.495796 +2738.570422 +2738.609449 +2738.716742 +2738.783009 +2738.842449 +2738.996795 +2739.097427 +2739.158433 +2739.246145 +2739.341117 +2739.437387 +2739.663427 +2741.135820 +2741.596626 +2741.995493 +2742.657897 +2742.946208 +2743.110177 +2743.173014 +2743.718335 +2744.001718 +2744.041145 +2744.228158 +2744.297322 +2744.405581 +2744.753066 +2744.905946 +2745.168883 +2745.268317 +2745.306412 +2745.364587 +2745.440078 +2745.546838 +2745.617934 +2745.722662 +2745.767584 +2745.896488 +2746.167950 +2746.559691 +2746.631885 +2746.700117 +2746.749368 +2746.854729 +2746.891326 +2746.943573 +2747.027956 +2747.114569 +2747.179903 +2747.326290 +2747.496686 +2747.578937 +2747.679736 +2747.738045 +2747.770479 +2747.857292 +2747.910605 +2747.980169 +2748.024724 +2748.142107 +2748.206509 +2748.306842 +2748.463285 +2748.587661 +2748.818796 +2748.878869 +2748.944104 +2748.983298 +2749.016365 +2749.076605 +2749.135779 +2749.211237 +2749.262452 +2749.311137 +2749.387693 +2749.530184 +2749.573974 +2749.629052 +2749.753294 +2749.821692 +2749.978702 +2750.070277 +2750.132015 +2750.196317 +2750.255691 +2750.290057 +2750.326420 +2750.368312 +2750.449297 +2750.502411 +2750.577869 +2750.640939 +2750.713300 +2750.799514 +2750.863383 +2750.952127 +2751.055724 +2751.110169 +2751.282763 +2751.314198 +2751.393552 +2751.435577 +2751.495117 +2751.523689 +2751.591587 +2751.671641 +2751.807838 +2751.851461 +2752.076935 +2752.149462 +2752.256655 +2752.293085 +2752.343501 +2752.400045 +2752.448929 +2752.499245 +2752.563148 +2752.620557 +2752.695349 +2752.791220 +2752.843601 +2752.908602 +2752.986991 +2753.079265 +2753.171206 +2753.196614 +2753.235841 +2753.273104 +2753.356954 +2753.400310 +2753.450127 +2753.508901 +2753.589854 +2753.650526 +2753.712065 +2753.794049 +2753.839737 +2753.895048 +2753.981695 +2754.043100 +2754.107702 +2754.171805 +2754.214628 +2754.263912 +2754.301508 +2754.353090 +2754.392750 +2754.423319 +2754.464345 +2754.579230 +2754.630712 +2754.674135 +2754.727615 +2754.803073 +2754.852157 +2754.881561 +2754.920555 +2754.962713 +2755.026183 +2755.090285 +2755.135973 +2755.184791 +2755.249559 +2755.293848 +2755.326216 +2755.380262 +2755.448760 +2755.564677 +2755.602273 +2755.644031 +2755.687920 +2755.762712 +2755.820987 +2755.946328 +2755.997544 +2756.062678 +2756.125915 +2756.203837 +2756.265842 +2756.296444 +2756.341766 +2756.380960 +2756.447127 +2756.489218 +2756.537503 +2756.576464 +2756.613960 +2756.654086 +2756.686487 +2756.724116 +2756.798009 +2756.869105 +2756.954253 +2757.013960 +2757.086454 +2757.128545 +2757.158948 +2757.201239 +2757.250323 +2757.289517 +2757.334006 +2757.368804 +2757.434572 +2757.484355 +2757.564375 +2757.671635 +2757.729510 +2757.806999 +2757.898274 +2757.968404 +2758.025314 +2758.066506 +2758.091914 +2758.144594 +2758.270901 +2758.378394 +2758.425313 +2758.472300 +2758.512226 +2758.572166 +2758.631773 +2758.677095 +2758.749422 +2758.846658 +2758.892113 +2758.961876 +2759.022482 +2759.074064 +2759.193611 +2759.269135 +2759.309462 +2759.367004 +2759.420717 +2759.466738 +2759.534004 +2759.573664 +2759.655482 +2759.700504 +2759.872065 +2759.941762 +2759.993111 +2760.047590 +2760.109994 +2760.169135 +2760.230273 +2760.342961 +2760.423813 +2760.519417 +2760.586217 +2760.652184 +2760.707396 +2760.773163 +2760.852417 +2760.959876 +2761.027808 +2761.110759 +2761.173196 +2761.204099 +2761.252217 +2761.296706 +2761.378058 +2761.430472 +2761.480389 +2761.507761 +2761.569233 +2761.652816 +2761.683086 +2761.712023 +2761.780555 +2761.886782 +2761.939096 +2761.988547 +2762.063771 +2762.104597 +2762.162772 +2762.215420 +2762.278456 +2762.324311 +2762.376425 +2762.421513 +2762.478356 +2762.534267 +2762.576891 +2762.625576 +2762.650417 +2762.697637 +2762.740161 +2762.805762 +2762.839162 +2762.887247 +2762.925009 +2762.968865 +2763.029904 +2763.090477 +2763.141692 +2763.189411 +2763.220480 +2763.272661 +2763.344090 +2763.401099 +2763.501799 +2763.563337 +2763.615052 +2763.664269 +2763.715451 +2763.786813 +2763.852747 +2763.915285 +2763.978821 +2764.015951 +2764.067033 +2764.126507 +2764.163536 +2764.189810 +2764.259140 +2764.315784 +2764.401598 +2764.454079 +2764.516150 +2764.568398 +2764.632001 +2764.680519 +2764.710755 +2764.753945 +2764.834798 +2764.893772 +2764.937195 +2765.010388 +2765.072526 +2765.124774 +2765.172759 +2765.219979 +2765.275756 +2765.309789 +2765.345420 +2765.428537 +2765.471960 +2765.491840 +2765.521810 +2765.575123 +2765.627804 +2765.685579 +2765.754544 +2765.802995 +2765.863235 +2765.924041 +2765.968196 +2766.025439 +2766.059172 +2766.102795 +2766.143521 +2766.184646 +2766.239358 +2766.267597 +2766.304460 +2766.370594 +2766.421143 +2766.473391 +2766.586078 +2766.636261 +2766.677520 +2766.712318 +2766.748815 +2766.777486 +2766.803627 +2766.974955 +2767.015448 +2767.061269 +2767.122940 +2767.185778 +2767.233663 +2767.299464 +2767.353343 +2767.412184 +2767.447316 +2767.498365 +2767.536593 +2767.574655 +2767.606623 +2767.647582 +2767.699663 +2767.729134 +2767.794635 +2767.857439 +2767.900396 +2767.946916 +2767.988174 +2768.036593 +2768.087641 +2768.129899 +2768.167195 +2768.213682 +2768.260635 +2768.292570 +2768.334394 +2768.396832 +2768.444684 +2768.504957 +2768.568926 +2768.609619 +2768.658470 +2768.698230 +2768.743518 +2768.787874 +2768.841920 +2768.886109 +2768.935260 +2768.988373 +2769.037924 +2769.065196 +2769.118942 +2769.170857 +2769.250944 +2769.296964 +2769.334560 +2769.359602 +2769.395965 +2769.441553 +2769.495765 +2769.527800 +2769.643984 +2769.683677 +2769.733627 +2769.779082 +2769.814446 +2769.868026 +2769.904556 +2769.947147 +2769.982345 +2770.014846 +2770.112381 +2770.151109 +2770.193300 +2770.251043 +2770.330929 +2770.378515 +2770.415445 +2770.463730 +2770.507253 +2770.550476 +2770.614412 +2770.666893 +2770.718175 +2770.769757 +2770.823803 +2770.863996 +2770.916776 +2770.955238 +2771.054239 +2771.096463 +2771.139187 +2771.189437 +2771.235324 +2771.281145 +2771.332327 +2771.387838 +2771.431195 +2771.470588 +2771.530362 +2771.564095 +2771.593132 +2771.638420 +2771.684175 +2771.729862 +2771.768623 +2771.829929 +2771.875650 +2771.922403 +2771.956835 +2771.996096 +2772.032759 +2772.124467 +2772.166359 +2772.207517 +2772.268157 +2772.296795 +2772.335789 +2772.365726 +2772.410681 +2772.451806 +2772.494663 +2772.520771 +2772.556468 +2772.592798 +2772.659998 +2772.705019 +2772.764693 +2772.811047 +2772.857267 +2772.896095 +2772.938519 +2772.983474 +2773.016874 +2773.049508 +2773.085305 +2773.124766 +2773.160364 +2773.204753 +2773.252904 +2773.287470 +2773.333890 +2773.370420 +2773.412078 +2773.462794 +2773.515941 +2773.567090 +2773.619770 +2773.657333 +2773.704785 +2773.741116 +2773.791965 +2773.823733 +2773.859164 +2773.909347 +2773.943047 +2773.997159 +2774.034589 +2774.073416 +2774.110912 +2774.153070 +2774.201122 +2774.223633 +2774.278378 +2774.322334 +2774.356300 +2774.391931 +2774.446443 +2774.486536 +2774.571951 +2774.616872 +2774.639650 +2774.680142 +2774.718171 +2774.755267 +2774.801787 +2774.845377 +2774.891864 +2774.916739 +2774.944844 +2774.979276 +2775.015940 +2775.053435 +2775.097425 +2775.128593 +2775.164691 +2775.189566 +2775.231524 +2775.274447 +2775.314674 +2775.357231 +2775.415873 +2775.455633 +2775.504484 +2775.539083 +2775.564357 +2775.626295 +2775.663458 +2775.690631 +2775.722899 +2775.764157 +2775.802119 +2775.842479 +2775.871583 +2775.919702 +2775.965889 +2776.014573 +2776.054034 +2776.083871 +2776.146408 +2776.186368 +2776.204550 +2776.237783 +2776.273914 +2776.394326 +2776.441180 +2776.476977 +2776.521932 +2776.549804 +2776.589797 +2776.646507 +2776.674846 +2776.707879 +2776.738715 +2776.778076 +2776.816504 +2776.850104 +2776.903916 +2776.950103 +2776.977842 +2777.031056 +2777.066753 +2777.107146 +2777.140513 +2777.183903 +2777.284535 +2777.343443 +2777.375944 +2777.412674 +2777.459460 +2777.501718 +2777.542943 +2777.587599 +2777.616703 +2777.655064 +2777.689330 +2777.729823 +2777.763323 +2777.799886 +2777.846306 +2777.884335 +2777.946906 +2777.998854 +2778.031055 +2778.065620 +2778.102949 +2778.141677 +2778.177508 +2778.217868 +2778.250968 +2778.282503 +2778.319200 +2778.354065 +2778.405447 +2778.438280 +2778.481704 +2778.517534 +2778.546572 +2778.572812 +2778.602616 +2778.639879 +2778.678240 +2778.729955 +2778.773179 +2778.820731 +2778.876808 +2778.898486 +2778.940278 +2779.015603 +2779.044640 +2779.137814 +2779.185699 +2779.214404 +2779.237880 +2779.282402 +2779.317301 +2779.349002 +2779.395489 +2779.433917 +2779.492625 +2779.521629 +2779.567717 +2779.594923 +2779.635549 +2779.667317 +2779.721296 +2779.764286 +2779.796621 +2779.836947 +2779.899285 +2779.939944 +2779.970214 +2780.014702 +2780.056194 +2780.100683 +2780.147536 +2780.205778 +2780.250433 +2780.298319 +2780.345838 +2780.384965 +2780.422228 +2780.459957 +2780.493157 +2780.590126 +2780.656593 +2780.692624 +2780.724892 +2780.783100 +2780.825324 +2780.848068 +2780.913270 +2780.978338 +2781.024225 +2781.066283 +2781.170179 +2781.214934 +2781.253962 +2781.284964 +2781.318397 +2781.348900 +2781.381534 +2781.408640 +2781.448101 +2781.488361 +2781.527288 +2781.552430 +2781.580568 +2781.608474 +2781.655960 +2781.703412 +2781.752796 +2781.800848 +2781.842939 +2781.880102 +2781.927121 +2782.009339 +2782.046502 +2782.083865 +2782.108773 +2782.146735 +2782.170112 +2782.199049 +2782.231517 +2782.273974 +2782.314534 +2782.366781 +2782.409305 +2782.434780 +2782.477970 +2782.518663 +2782.541939 +2782.584630 +2782.614334 +2782.647334 +2782.683498 +2782.723158 +2782.770577 +2782.823491 +2782.892322 +2782.940840 +2782.976071 +2783.035545 +2783.070910 +2783.141839 +2783.174939 +2783.210204 +2783.250197 +2783.286561 +2783.322192 +2783.363484 +2783.400646 +2783.433447 +2783.457356 +2783.508439 +2783.554359 +2783.599681 +2783.643870 +2783.704609 +2783.746966 +2783.774173 +2783.828918 +2783.866946 +2783.970110 +2784.009837 +2784.057456 +2784.096850 +2784.138674 +2784.180100 +2784.218261 +2784.275104 +2784.302477 +2784.336510 +2784.389190 +2784.423423 +2784.467179 +2784.519626 +2784.566346 +2784.613965 +2784.644435 +2784.674138 +2784.725087 +2784.815297 +2784.860385 +2784.972007 +2785.022556 +2785.085760 +2785.178067 +2785.221890 +2785.257255 +2785.300744 +2785.344700 +2785.379699 +2785.412366 +2785.451627 +2785.478600 +2785.531513 +2785.576169 +2785.623655 +2785.665779 +2785.744034 +2785.801643 +2785.857787 +2785.941303 +2786.006904 +2786.060517 +2786.097347 +2786.144367 +2786.191619 +2786.252758 +2786.289222 +2786.344966 +2786.405772 +2786.473704 +2786.513930 +2786.593783 +2786.637307 +2786.694916 +2786.744932 +2786.799444 +2786.852824 +2786.906204 +2786.988755 +2787.034409 +2787.067576 +2787.110899 +2787.144565 +2787.178864 +2787.214995 +2787.244565 +2787.312531 +2787.357952 +2787.404239 +2787.448761 +2787.485091 +2787.511798 +2787.557585 +2787.603273 +2787.653756 +2787.704505 +2787.740602 +2787.778165 +2787.827881 +2787.872570 +2787.906336 +2787.946796 +2787.985257 +2788.082160 +2788.118224 +2788.157651 +2788.196479 +2788.222320 +2788.271038 +2788.309832 +2788.349193 +2788.397844 +2788.451824 +2788.492583 +2788.528613 +2788.564378 +2788.625317 +2788.675100 +2788.714128 +2788.786355 +2788.836472 +2788.878430 +2788.925483 +2788.971337 +2789.012795 +2789.051157 +2789.094780 +2789.139335 +2789.192149 +2789.246128 +2789.278829 +2789.315959 +2789.344896 +2789.385889 +2789.431510 +2789.495545 +2789.546494 +2789.592016 +2789.626248 +2789.702405 +2789.750057 +2789.808299 +2789.851889 +2789.922618 +2789.975798 +2789.999208 +2790.044662 +2790.099508 +2790.122718 +2790.184223 +2790.219854 +2790.263577 +2790.300107 +2790.334306 +2790.414958 +2790.463044 +2790.509597 +2790.562611 +2790.614359 +2790.651755 +2790.702870 +2790.766174 +2790.783523 +2790.853453 +2790.891981 +2790.939500 +2790.971035 +2791.027412 +2791.073666 +2791.132773 +2791.190416 +2791.239566 +2791.262177 +2791.299140 +2791.419753 +2791.460612 +2791.512660 +2791.559479 +2791.590881 +2791.645427 +2791.674531 +2791.755816 +2791.819319 +2791.864907 +2791.893012 +2791.948856 +2792.047491 +2792.095909 +2792.128243 +2792.179858 +2792.243029 +2792.268636 +2792.310994 +2792.348923 +2792.407664 +2792.462276 +2792.497174 +2792.540564 +2792.588849 +2792.630141 +2792.682156 +2792.747324 +2792.791047 +2792.840331 +2792.891313 +2792.935236 +2792.961243 +2792.990314 +2793.036301 +2793.110161 +2793.223447 +2793.303201 +2793.359777 +2793.413757 +2793.462208 +2793.500770 +2793.576261 +2793.647722 +2793.682588 +2793.719717 +2793.754316 +2793.797473 +2793.834835 +2793.919450 +2793.973197 +2794.028008 +2794.096140 +2794.135268 +2794.177292 +2794.221148 +2794.270033 +2794.314655 +2794.362474 +2794.395541 +2794.463306 +2794.510459 +2794.549720 +2794.592144 +2794.619650 +2794.647688 +2794.676792 +2794.733569 +2794.767568 +2794.791211 +2794.835833 +2794.878990 +2794.928107 +2794.955147 +2794.978257 +2795.017052 +2795.064338 +2795.082586 +2795.113988 +2795.178324 +2795.229273 +2795.310924 +2795.425243 +2795.482819 +2795.552649 +2795.602099 +2795.666002 +2795.745955 +2795.829305 +2795.885149 +2795.953481 +2796.002532 +2796.085183 +2796.147021 +2796.201566 +2796.251183 +2796.310291 +2796.361906 +2796.416085 +2796.482252 +2796.529038 +2796.596404 +2796.711256 +2796.753247 +2796.813820 +2796.860373 +2796.900500 +2796.941459 +2796.976957 +2797.020446 +2797.066767 +2797.109957 +2797.159840 +2797.208358 +2797.234099 +2797.285747 +2797.310689 +2797.369830 +2797.411821 +2797.453912 +2797.504429 +2797.562371 +2797.607625 +2797.649883 +2797.685914 +2797.720978 +2797.822843 +2797.875357 +2797.921311 +2797.959107 +2798.015950 +2798.114251 +2798.156110 +2798.185547 +2798.225906 +2798.269363 +2798.308957 +2798.342157 +2798.389243 +2798.425540 +2798.454977 +2798.476123 +2798.516649 +2798.583182 +2798.647484 +2798.689709 +2798.727271 +2798.814351 +2798.849649 +2798.886079 +2798.926505 +2798.960338 +2799.001030 +2799.044587 +2799.083381 +2799.131100 +2799.173225 +2799.209655 +2799.273924 +2799.311586 +2799.351380 +2799.408289 +2799.457773 +2799.534363 +2799.583015 +2799.614516 +2799.675389 +2799.726271 +2799.764500 +2799.801696 +2799.885212 +2799.932332 +2799.982981 +2800.029734 +2800.057540 +2800.090107 +2800.133430 +2800.169927 +2800.203627 +2800.240989 +2800.297932 +2800.335528 +2800.374789 +2800.411186 +2800.457872 +2800.509820 +2800.533496 +2800.570093 +2800.626936 +2800.667063 +2800.708788 +2800.752144 +2800.795035 +2800.836160 +2800.878984 +2800.918544 +2800.962600 +2800.991638 +2801.102960 +2801.152543 +2801.193669 +2801.302826 +2801.387175 +2801.457605 +2801.500195 +2801.548048 +2801.595334 +2801.637758 +2801.671191 +2801.703725 +2801.795167 +2801.838290 +2801.888473 +2801.941654 +2801.978816 +2802.021274 +2802.063332 +2802.105323 +2802.184977 +2802.237857 +2802.287308 +2802.294933 +2802.328666 +2802.363964 +2802.410318 +2802.533761 +2802.580780 +2802.627167 +2802.656438 +2802.706721 +2802.751776 +2802.800560 +2802.833661 +2802.889338 +2802.930830 +2802.972888 +2803.016178 +2803.052042 +2803.088073 +2803.131529 +2803.165462 +2803.244816 +2803.278549 +2803.315678 +2803.356504 +2803.409617 +2803.446014 +2803.491669 +2803.538788 +2803.615378 +2803.672188 +2803.720273 +2803.767226 +2803.815211 +2803.864928 +2803.905088 +2803.949610 +2803.989770 +2804.038588 +2804.082810 +2804.137888 +2804.177549 +2804.227965 +2804.268025 +2804.361531 +2804.402257 +2804.435790 +2804.478914 +2804.529163 +2804.560665 +2804.595863 +2804.633725 +2804.681111 +2804.725067 +2804.751041 +2804.810449 +2804.862929 +2804.895830 +2804.939719 +2804.961298 +2805.018740 +2805.044980 +2805.057868 +2805.146512 +2805.190701 +2805.218473 +2805.369722 +2805.411247 +2805.447811 +2805.477947 +2805.527231 +2805.575816 +2805.618640 +2805.659998 +2805.697627 +2805.736888 +2805.772352 +2805.819172 +2805.854703 +2805.888003 +2805.940684 +2805.972186 +2805.999925 +2806.045013 +2806.096328 +2806.128196 +2806.166724 +2806.201190 +2806.240251 +2806.273884 +2806.316408 +2806.372019 +2806.399291 +2806.441083 +2806.480477 +2806.528096 +2806.570021 +2806.606118 +2806.666357 +2806.699924 +2806.737553 +2806.791199 +2806.839018 +2806.895728 +2806.946377 +2806.994296 +2807.029161 +2807.060063 +2807.109614 +2807.150007 +2807.182974 +2807.213410 +2807.301588 +2807.380876 +2807.414808 +2807.451472 +2807.510845 +2807.553003 +2807.592530 +2807.634255 +2807.678777 +2807.719603 +2807.752770 +2807.781175 +2807.808481 +2807.853736 +2807.904518 +2807.936886 +2807.967355 +2808.011844 +2808.045011 +2808.099956 +2808.141681 +2808.179976 +2808.223033 +2808.272883 +2808.318870 +2808.361028 +2808.442779 +2808.489632 +2808.514607 +2808.553568 +2808.598324 +2808.618603 +2808.659229 +2808.747874 +2808.779742 +2808.834354 +2808.876978 +2808.924664 +2808.960261 +2809.003451 +2809.043644 +2809.087501 +2809.112809 +2809.150005 +2809.190531 +2809.225363 +2809.272549 +2809.315939 +2809.357064 +2809.396991 +2809.438016 +2809.485036 +2809.532788 +2809.565555 +2809.619435 +2809.656231 +2809.735752 +2809.784137 +2809.813507 +2809.846341 +2809.875379 +2809.943144 +2809.984503 +2810.010776 +2810.051669 +2810.099155 +2810.130190 +2810.206048 +2810.249970 +2810.297389 +2810.337316 +2810.368718 +2810.399887 +2810.454965 +2810.500320 +2810.543243 +2810.584402 +2810.614006 +2810.657096 +2810.683403 +2810.716204 +2810.755165 +2810.814772 +2810.883303 +2810.920799 +2810.947805 +2810.976077 +2811.031055 +2811.106513 +2811.135018 +2811.173812 +2811.215737 +2811.249936 +2811.282836 +2811.309177 +2811.348437 +2811.384967 +2811.423529 +2811.467851 +2811.494291 +2811.526093 +2811.567352 +2811.604181 +2811.653898 +2811.693792 +2811.716602 +2811.763289 +2811.802683 +2811.836815 +2811.869216 +2811.907611 +2811.940578 +2811.985100 +2812.021663 +2812.069282 +2812.119166 +2812.190428 +2812.229655 +2812.282735 +2812.330221 +2812.374177 +2812.426991 +2812.472312 +2812.506511 +2812.532652 +2812.587397 +2812.628822 +2812.675043 +2812.708010 +2812.747670 +2812.782402 +2812.830853 +2812.855196 +2812.903681 +2812.950733 +2813.004513 +2813.071679 +2813.112571 +2813.153164 +2813.189528 +2813.223061 +2813.271712 +2813.317766 +2813.346471 +2813.403647 +2813.442075 +2813.482568 +2813.521429 +2813.563487 +2813.613470 +2813.669248 +2813.696587 +2813.745971 +2813.786197 +2813.814602 +2813.871845 +2813.959357 +2814.021661 +2814.141342 +2814.191358 +2814.243106 +2814.271545 +2814.306177 +2814.380336 +2814.421162 +2814.462320 +2814.535913 +2814.587528 +2814.652563 +2814.683998 +2814.727621 +2814.766682 +2814.808940 +2814.862653 +2814.914301 +2814.944871 +2814.971278 +2815.036812 +2815.084464 +2815.111038 +2815.160422 +2815.203878 +2815.261287 +2815.310038 +2815.354028 +2815.389759 +2815.432649 +2815.537045 +2815.579069 +2815.614400 +2815.657224 +2815.713301 +2815.758490 +2815.801213 +2815.865116 +2815.899582 +2815.940108 +2815.981899 +2816.039542 +2816.076771 +2816.126355 +2816.190557 +2816.252362 +2816.306075 +2816.372009 +2816.428419 +2816.461353 +2816.573973 +2816.633514 +2816.671809 +2816.706441 +2816.758688 +2816.813101 +2816.860420 +2816.886194 +2816.932215 +2816.989624 +2817.021192 +2817.082231 +2817.127786 +2817.221192 +2817.261085 +2817.296417 +2817.353426 +2817.392920 +2817.447033 +2817.489157 +2817.552427 +2817.621991 +2817.733912 +2817.791488 +2817.852327 +2817.913466 +2817.937608 +2817.963516 +2818.002743 +2818.028750 +2818.081098 +2818.150195 +2818.188191 +2818.256189 +2818.283262 +2818.321457 +2818.348330 +2818.376302 +2818.424521 +2818.483362 +2818.540904 +2818.573305 +2818.595350 +2818.638773 +2818.682862 +2818.744800 +2818.791653 +2818.811866 +2818.841570 +2818.900777 +2818.937374 +2818.963515 +2819.012632 +2819.053391 +2819.095749 +2819.140005 +2819.180930 +2819.228816 +2819.263181 +2819.316095 +2819.373271 +2819.408036 +2819.451426 +2819.491553 +2819.575735 +2819.612065 +2819.651692 +2819.695515 +2819.761383 +2819.788722 +2819.834043 +2819.876667 +2819.919358 +2819.978332 +2820.025185 +2820.067043 +2820.132944 +2820.192085 +2820.228881 +2820.274569 +2820.316627 +2820.375734 +2820.445498 +2820.501542 +2820.541801 +2820.576700 +2820.625051 +2820.676234 +2820.709101 +2820.773636 +2820.814695 +2820.862913 +2820.890119 +2820.935674 +2820.985291 +2821.071338 +2821.129280 +2821.167475 +2821.213129 +2821.254988 +2821.274268 +2821.317259 +2821.363379 +2821.387089 +2821.442034 +2821.478897 +2821.526316 +2821.583725 +2821.655620 +2821.700741 +2821.741634 +2821.798610 +2821.834474 +2821.876299 +2821.907734 +2821.979129 +2822.014694 +2822.068174 +2822.105536 +2822.159649 +2822.208733 +2822.285290 +2822.333641 +2822.384857 +2822.423185 +2822.470737 +2822.494147 +2822.564310 +2822.585356 +2822.657084 +2822.704537 +2822.746861 +2822.796078 +2822.836205 +2822.890517 +2822.941732 +2822.978063 +2823.017124 +2823.069371 +2823.114493 +2823.178662 +2823.221253 +2823.267340 +2823.306601 +2823.405535 +2823.435838 +2823.539934 +2823.614126 +2823.653187 +2823.696344 +2823.747792 +2823.780093 +2823.827679 +2823.874565 +2823.935105 +2823.994412 +2824.037236 +2824.081924 +2824.122617 +2824.178428 +2824.218854 +2824.276630 +2824.347525 +2824.389517 +2824.393546 +2824.448158 +2824.520352 +2824.572766 +2824.623882 +2824.685387 +2824.725880 +2824.759446 +2824.824348 +2824.873798 +2824.903735 +2824.966273 +2825.021151 +2825.062743 +2825.099239 +2825.222050 +2825.258513 +2825.319785 +2825.355117 +2825.508796 +2825.556349 +2825.595942 +2825.651553 +2825.703568 +2825.778959 +2825.828077 +2825.867237 +2825.919951 +2825.977660 +2826.017354 +2826.067237 +2826.097141 +2826.149954 +2826.186917 +2826.243061 +2826.327110 +2826.377826 +2826.431206 +2826.471899 +2826.538066 +2826.681622 +2826.723514 +2826.776560 +2826.836767 +2826.881189 +2826.942295 +2827.002601 +2827.046757 +2827.089514 +2827.149287 +2827.275261 +2827.335901 +2827.411225 +2827.475294 +2827.546057 +2827.577525 +2827.632737 +2827.716886 +2827.797672 +2827.917885 +2827.974994 +2828.029939 +2828.063938 +2828.127375 +2828.219683 +2828.278923 +2828.324811 +2828.373329 +2828.431404 +2828.488747 +2828.538530 +2828.594940 +2828.625843 +2828.676092 +2828.710425 +2828.806429 +2828.849685 +2828.906262 +2828.941926 +2828.995639 +2829.045123 +2829.090244 +2829.181387 +2829.239229 +2829.310424 +2829.370164 +2829.419815 +2829.451250 +2829.501233 +2829.546488 +2829.604729 +2829.665269 +2829.753647 +2829.807926 +2829.872262 +2829.991209 +2830.174492 +2830.712920 +2831.023642 +2831.271461 +2831.399966 +2831.607391 +2832.069063 +2832.507724 +2832.695536 +2832.867796 +2833.077720 +2833.322741 +2833.584579 +2833.854908 +2834.360702 +2835.176053 +2835.357671 +2835.457571 +2835.808386 +2836.323204 +2836.388272 +2836.465728 +2837.199261 +2837.411448 +2837.759200 +2838.882476 +2838.933058 +2839.131327 +2839.977380 +2840.276547 +2840.544512 +2841.317838 +2841.492163 +2841.780408 +2842.779308 +2842.949038 +2843.126361 +2843.776876 +2843.892760 +2843.955031 +2844.019800 +2844.061125 +2844.104682 +2844.211242 +2844.325660 +2844.421864 +2844.545940 +2844.643076 +2844.767485 +2845.129289 +2845.344041 +2845.482935 +2845.622196 +2845.831520 +2845.943141 +2846.011107 +2846.083834 +2846.210940 +2846.241909 +2846.437080 +2846.497620 +2846.599351 +2846.653064 +2846.715468 +2846.796787 +2846.843640 +2846.929021 +2847.020796 +2847.126490 +2847.167849 +2847.325724 +2847.379270 +2847.433849 +2847.481701 +2847.539577 +2847.642440 +2847.692457 +2847.840908 +2847.933183 +2848.020229 +2848.127854 +2848.220062 +2848.313335 +2848.391058 +2848.446702 +2848.631617 +2849.056858 +2849.095253 +2849.154427 +2849.210737 +2849.276638 +2849.336078 +2849.435912 +2849.585728 +2850.001945 +2850.104709 +2850.235778 +2850.331549 +2850.481798 +2850.558688 +2850.952394 +2851.311634 +2851.640239 +2851.942103 +2852.178766 +2852.567644 +2852.892951 +2852.925186 +2852.979664 +2853.028482 +2853.080663 +2853.140537 +2853.201875 +2853.227916 +2853.371506 +2853.419424 +2853.470307 +2853.648628 +2853.687289 +2853.773969 +2853.880962 +2853.938105 +2853.989887 +2854.040836 +2854.123919 +2854.355987 +2854.447195 +2854.576133 +2854.665144 +2854.722020 +2854.769107 +2854.855453 +2854.997012 +2855.219089 +2855.361347 +2855.824350 +2855.929012 +2855.950058 +2856.000141 +2856.074367 +2856.784689 +2856.991815 +2857.152055 +2857.555451 +2857.753786 +2858.201537 +2858.516855 +2858.690947 +2859.007331 +2859.285452 +2859.581556 +2859.962941 +2860.021749 +2860.091346 +2860.178292 +2860.253916 +2860.490679 +2860.540762 +2860.652950 +2860.834069 +2861.663572 +2862.429172 +2862.519215 +2863.100800 +2863.518482 +2864.055777 +2865.302662 +2865.662402 +2865.762369 +2865.972392 +2866.035562 +2866.168562 +2866.222375 +2868.316812 +2870.203057 +2870.321439 +2870.682244 +2872.465459 +2872.823268 +2872.987936 +2873.609181 +2873.717905 +2873.798292 +2873.973483 +2874.283206 +2874.420003 +2874.533023 +2874.683406 +2874.784371 +2874.914108 +2875.300222 +2876.707813 +2877.520166 +2877.868484 +2878.234884 +2878.292726 +2878.342010 +2878.524361 +2878.669482 +2878.741177 +2878.916868 +2878.994590 +2879.116735 +2879.254763 +2879.505146 +2879.707177 +2879.770147 +2879.819564 +2879.940876 +2880.102181 +2880.219098 +2880.649034 +2880.728688 +2881.123692 +2881.459589 +2881.613169 +2881.693222 +2881.814567 +2881.878070 +2881.925656 +2881.998650 +2882.125223 +2882.337977 +2882.428087 +2882.507907 +2882.667713 +2882.725855 +2883.283830 +2883.316564 +2883.334246 +2883.373940 +2883.531815 +2883.644203 +2883.798615 +2883.940040 +2884.086094 +2884.596549 +2884.681631 +2884.804608 +2884.874338 +2885.197747 +2885.427651 +2885.715096 +2885.856788 +2885.913631 +2886.135509 +2886.288489 +2886.874835 +2887.122587 +2887.182794 +2887.293616 +2887.367842 +2887.536207 +2887.561015 +2887.738637 +2888.017225 +2888.559715 +2888.614394 +2888.697145 +2888.729179 +2888.795313 +2889.953820 +2890.232674 +2890.443896 +2891.359413 +2891.855083 +2891.971234 +2892.127977 +2892.221583 +2893.072398 +2894.104698 +2894.213722 +2894.439630 +2894.702134 +2894.817052 +2895.207994 +2897.027006 +2898.178021 +2898.279719 +2899.024274 +2900.562334 +2900.644186 +2900.825637 +2900.945584 +2901.052810 +2901.114082 +2901.190372 +2901.338824 +2901.450578 +2901.600994 +2901.706023 +2901.783445 +2902.050245 +2902.387274 +2902.553641 +2902.720108 +2909.783604 +2912.350900 +2912.423761 +2912.481370 +2912.633751 +2912.707444 +2913.079504 +2913.348435 +2913.401316 +2913.486297 +2913.535648 +2913.611572 +2913.656793 +2913.799084 +2913.931984 +2914.198384 +2914.481834 +2914.564618 +2914.795853 +2916.455059 +2916.570610 +2916.612568 +2916.684329 +2918.063582 +2921.666109 +2923.510696 +2923.858348 +2923.960646 +2924.174132 +2924.268970 +2924.416623 +2925.010462 +2925.056882 +2925.247358 +2925.471300 +2925.612226 +2925.783721 +2925.908762 +2926.153950 +2926.289681 +2926.367370 +2926.408129 +2926.475428 +2926.550287 +2926.645891 +2926.912191 +2927.118951 +2927.237099 +2927.347555 +2927.397739 +2927.490113 +2927.550819 +2927.624845 +2927.702067 +2927.827142 +2928.246189 +2928.343825 +2928.378990 +2928.419516 +2928.515553 +2928.570298 +2928.628973 +2928.685183 +2928.768899 +2928.881553 +2929.009026 +2929.106395 +2929.422645 +2929.476691 +2929.515186 +2929.562372 +2929.669864 +2929.847753 +2929.935831 +2930.073327 +2930.230636 +2930.315185 +2930.539127 +2930.774658 +2931.018314 +2931.120778 +2931.171628 +2931.222810 +2931.314951 +2931.422177 +2931.520745 +2931.574491 +2931.615850 +2931.661038 +2931.851014 +2932.228370 +2932.300031 +2932.327271 +2932.379385 +2932.433165 +2932.507723 +2932.555742 +2932.601130 +2932.652212 +2932.687377 +2932.783980 +2932.824540 +2932.947117 +2933.130167 +2933.336694 +2933.401862 +2933.437093 +2933.547316 +2933.743453 +2933.806557 +2933.929300 +2933.997432 +2934.021408 +2934.127602 +2934.251977 +2934.309786 +2934.363033 +2934.551811 +2934.595567 +2934.669793 +2934.739323 +2934.813316 +2934.855706 +2934.930298 +2934.966729 +2935.077584 +2935.149279 +2935.238856 +2935.296232 +2935.352975 +2935.475886 +2935.559202 +2935.680081 +2935.717843 +2935.819941 +2935.884044 +2935.919542 +2935.976518 +2936.109019 +2936.163064 +2936.227500 +2936.330530 +2936.363897 +2936.402125 +2936.456870 +2936.497330 +2936.547813 +2936.616810 +2936.685308 +2936.737822 +2936.798195 +2936.855738 +2936.885908 +2936.928865 +2936.958302 +2937.012781 +2937.061931 +2937.104056 +2937.163863 +2937.243816 +2937.315644 +2937.405687 +2937.503956 +2937.557935 +2937.639020 +2937.729297 +2937.769057 +2937.869456 +2937.914145 +2937.982044 +2938.045180 +2938.115077 +2938.191834 +2938.264561 +2938.300258 +2938.456302 +2938.486339 +2938.543781 +2938.612513 +2938.659033 +2938.749276 +2938.806751 +2938.864860 +2938.910781 +2938.979978 +2939.034823 +2939.098926 +2939.167657 +2939.215875 +2939.274550 +2939.345912 +2939.440850 +2939.517440 +2939.605752 +2939.677080 +2939.744679 +2939.798925 +2939.868655 +2939.962694 +2939.986837 +2940.018705 +2940.065258 +2940.118605 +2940.146111 +2940.187536 +2940.220969 +2940.261862 +2940.291166 +2940.333357 +2940.382041 +2940.438418 +2940.502154 +2940.568821 +2940.632757 +2940.715707 +2940.759330 +2940.808514 +2940.858664 +2940.906416 +2940.974848 +2941.024198 +2941.104951 +2941.170219 +2941.305317 +2941.345843 +2941.405916 +2941.485337 +2941.575347 +2941.659762 +2941.799389 +2941.835087 +2941.876212 +2941.964690 +2942.063059 +2942.117138 +2942.208213 +2942.268653 +2942.311177 +2942.351869 +2942.407181 +2942.454533 +2942.491596 +2942.599155 +2942.642012 +2942.726328 +2942.814040 +2942.854500 +2942.898722 +2943.026128 +2943.066621 +2943.153833 +2943.218702 +2943.266953 +2943.318202 +2943.418069 +2943.483004 +2943.552834 +2943.597756 +2943.648538 +2943.692860 +2943.744875 +2943.829657 +2943.878175 +2943.940812 +2944.020832 +2944.056829 +2944.122364 +2944.149603 +2944.203516 +2944.255797 +2944.302717 +2944.351534 +2944.447205 +2944.529756 +2944.580106 +2944.653898 +2944.716003 +2944.768117 +2944.823728 +2944.870315 +2944.961524 +2945.004115 +2945.043841 +2945.097221 +2945.153498 +2945.221297 +2945.394091 +2945.477974 +2945.536315 +2945.581603 +2945.630088 +2945.756661 +2945.857860 +2945.899518 +2945.956894 +2946.012805 +2946.077207 +2946.132219 +2946.205012 +2946.274510 +2946.337713 +2946.409341 +2946.449468 +2946.488728 +2946.525225 +2946.625358 +2946.686297 +2946.722128 +2946.819730 +2946.845738 +2946.897852 +2947.014436 +2947.064852 +2947.106277 +2947.149900 +2947.199417 +2947.218798 +2947.250266 +2947.289960 +2947.395654 +2947.455960 +2947.510339 +2947.523959 +2947.567882 +2947.621661 +2947.679470 +2947.718764 +2947.806742 +2947.846336 +2947.947468 +2947.983632 +2948.062753 +2948.097352 +2948.127888 +2948.219496 +2948.268347 +2948.313602 +2948.345137 +2948.384731 +2948.443938 +2948.524124 +2948.562253 +2948.616798 +2948.714967 +2948.768913 +2948.815133 +2948.860654 +2948.901313 +2948.958157 +2948.991623 +2949.043338 +2949.171310 +2949.242106 +2949.309738 +2949.349998 +2949.389358 +2949.427853 +2949.468679 +2949.506608 +2949.556757 +2949.606008 +2949.650131 +2949.683730 +2949.750697 +2949.834979 +2949.874073 +2949.925122 +2949.961119 +2950.014699 +2950.059554 +2950.144502 +2950.182364 +2950.233547 +2950.284595 +2950.326520 +2950.377736 +2950.419028 +2950.466247 +2950.558222 +2950.608238 +2950.650829 +2950.696417 +2950.761352 +2950.837708 +2950.896316 +2950.945567 +2950.992653 +2951.034878 +2951.085028 +2951.127918 +2951.215630 +2951.269976 +2951.319127 +2951.376902 +2951.435277 +2951.482063 +2951.525520 +2951.603808 +2951.641337 +2951.680132 +2951.725586 +2951.756389 +2951.813398 +2951.866379 +2951.909702 +2951.950062 +2951.988656 +2952.021224 +2952.064247 +2952.100977 +2952.145499 +2952.195150 +2952.240904 +2952.284560 +2952.320857 +2952.379066 +2952.425053 +2952.465646 +2952.498146 +2952.539905 +2952.585925 +2952.624886 +2952.674237 +2952.722655 +2952.811433 +2952.897846 +2952.942035 +2953.004473 +2953.037640 +2953.095149 +2953.139038 +2953.186424 +2953.221389 +2953.267510 +2953.317759 +2953.362914 +2953.393117 +2953.454223 +2953.525718 +2953.575335 +2953.628881 +2953.667709 +2953.700676 +2953.827882 +2953.873503 +2953.931978 +2953.999777 +2954.034275 +2954.070672 +2954.113230 +2954.143633 +2954.183759 +2954.223253 +2954.269640 +2954.297212 +2954.342500 +2954.392717 +2954.420589 +2954.457652 +2954.513263 +2954.550459 +2954.598544 +2954.629779 +2954.696413 +2954.739869 +2954.784325 +2954.862979 +2954.937971 +2955.012396 +2955.089985 +2955.139735 +2955.191084 +2955.242333 +2955.283225 +2955.315559 +2955.347561 +2955.371503 +2955.414760 +2955.476798 +2955.507334 +2955.553455 +2955.597311 +2955.672635 +2955.828146 +2955.865243 +2955.915059 +2955.945995 +2955.998542 +2956.052722 +2956.091583 +2956.153321 +2956.198276 +2956.244763 +2956.271935 +2956.308732 +2956.351423 +2956.402372 +2956.439767 +2956.487486 +2956.531309 +2956.565841 +2956.623151 +2956.677396 +2956.707966 +2956.753287 +2956.780393 +2956.821419 +2956.858948 +2956.902871 +2956.951322 +2956.993979 +2957.043896 +2957.103636 +2957.137469 +2957.223616 +2957.258048 +2957.309730 +2957.356583 +2957.393113 +2957.434672 +2957.495344 +2957.550889 +2957.613559 +2957.649323 +2957.686786 +2957.735404 +2957.767006 +2957.815823 +2957.846359 +2957.899606 +2957.922050 +2957.964541 +2957.999306 +2958.036802 +2958.069936 +2958.131774 +2958.181091 +2958.209796 +2958.252020 +2958.298474 +2958.373066 +2958.414124 +2958.460611 +2958.498140 +2958.534504 +2958.592046 +2958.619552 +2958.659113 +2958.700038 +2958.741630 +2958.834171 +2958.872799 +2958.942262 +2958.998140 +2959.045193 +2959.104733 +2959.153484 +2959.198506 +2959.274430 +2959.320351 +2959.360011 +2959.408762 +2959.473064 +2959.526444 +2959.576627 +2959.653784 +2959.753317 +2959.799138 +2959.839897 +2959.889015 +2959.932038 +2959.963240 +2960.009594 +2960.061043 +2960.102368 +2960.153517 +2960.235202 +2960.269234 +2960.296407 +2960.386217 +2960.444159 +2960.492011 +2960.544692 +2960.598338 +2960.664439 +2960.715021 +2960.756613 +2960.830406 +2960.851551 +2960.888847 +2960.952051 +2960.996240 +2961.079823 +2961.132903 +2961.205930 +2961.244791 +2961.306363 +2961.348987 +2961.410625 +2961.463439 +2961.505064 +2961.619649 +2961.662206 +2961.735067 +2961.778490 +2961.840761 +2961.885550 +2961.943092 +2961.986415 +2962.034767 +2962.076991 +2962.108460 +2962.168366 +2962.225942 +2962.258276 +2962.316984 +2962.364004 +2962.407261 +2962.480154 +2962.546621 +2962.653248 +2962.688512 +2962.731070 +2962.769498 +2962.832235 +2962.877423 +2962.923844 +2962.985515 +2963.030737 +2963.070930 +2963.111189 +2963.151749 +2963.193607 +2963.231269 +2963.262438 +2963.285615 +2963.330570 +2963.366567 +2963.419214 +2963.473826 +2963.511988 +2963.598701 +2963.639627 +2963.728438 +2963.762138 +2963.835797 +2963.890509 +2963.925208 +2963.970196 +2964.019846 +2964.067932 +2964.127372 +2964.170163 +2964.217915 +2964.253180 +2964.298168 +2964.339693 +2964.375191 +2964.446053 +2964.486879 +2964.531301 +2964.571727 +2964.630069 +2964.685613 +2964.736196 +2964.816349 +2964.869596 +2964.937361 +2964.976156 +2965.063901 +2965.125273 +2965.212553 +2965.280285 +2965.340358 +2965.383049 +2965.442889 +2965.476455 +2965.513918 +2965.565832 +2965.637527 +2965.702462 +2965.745586 +2965.806991 +2965.871160 +2965.932832 +2966.006824 +2966.059904 +2966.137926 +2966.193271 +2966.236761 +2966.277520 +2966.340390 +2966.383514 +2966.435129 +2966.481449 +2966.570826 +2966.624806 +2966.671659 +2966.714416 +2966.767496 +2966.807889 +2966.904892 +2966.965931 +2967.015548 +2967.146883 +2967.182514 +2967.248115 +2967.277885 +2967.335394 +2967.385611 +2967.431132 +2967.472790 +2967.552144 +2967.605524 +2967.656373 +2967.718078 +2967.781115 +2967.836992 +2967.895234 +2967.935260 +2968.067128 +2968.108387 +2968.219110 +2968.280948 +2968.329466 +2968.387574 +2968.450445 +2968.492936 +2968.545749 +2968.592869 +2968.658770 +2968.712316 +2968.714514 +2968.756239 +2968.813248 +2968.870258 +2968.924970 +2968.981646 +2969.020075 +2969.058636 +2969.108419 +2969.147380 +2969.204523 +2969.236225 +2969.290071 +2969.341586 +2969.395033 +2969.476784 +2969.588339 +2969.646647 +2969.683444 +2969.736424 +2969.784742 +2969.828665 +2969.876517 +2969.919541 +2969.964229 +2970.003956 +2970.040553 +2970.086607 +2970.201958 +2970.240153 +2970.290736 +2970.334992 +2970.428964 +2970.469057 +2970.531395 +2970.569590 +2970.629763 +2970.670955 +2970.735724 +2970.788771 +2970.832527 +2970.864661 +2970.950309 +2970.986739 +2971.034292 +2971.073353 +2971.116443 +2971.155071 +2971.206153 +2971.253372 +2971.297795 +2971.349576 +2971.422736 +2971.467158 +2971.500159 +2971.542050 +2971.592266 +2971.657668 +2971.714611 +2971.753871 +2971.853305 +2971.897028 +2971.946179 +2971.980911 +2972.022769 +2972.069089 +2972.119272 +2972.157434 +2972.184607 +2972.231527 +2972.279479 +2972.417407 +2972.457434 +2972.513278 +2972.554037 +2972.588136 +2972.628629 +2972.688169 +2972.719438 +2972.768023 +2972.802289 +2972.856934 +2972.902255 +2972.957267 +2973.053737 +2973.086304 +2973.124533 +2973.176747 +2973.212578 +2973.253337 +2973.297793 +2973.396127 +2973.438885 +2973.500789 +2973.537652 +2973.583040 +2973.747909 +2973.797026 +2973.851838 +2973.881641 +2973.930692 +2973.985304 +2974.022867 +2974.100189 +2974.201688 +2974.233556 +2974.315041 +2974.354901 +2974.423666 +2974.458564 +2974.603685 +2974.663792 +2974.713742 +2974.755400 +2974.792663 +2974.838084 +2974.876113 +2974.919569 +2974.974148 +2975.062759 +2975.094727 +2975.127494 +2975.282073 +2975.329992 +2975.367920 +2975.400621 +2975.468786 +2975.530225 +2975.621167 +2975.658896 +2975.705682 +2975.760128 +2975.812642 +2975.842012 +2975.869851 +2975.920667 +2975.950237 +2975.983504 +2976.024463 +2976.069685 +2976.115072 +2976.159461 +2976.203118 +2976.249771 +2976.296724 +2976.336717 +2976.370883 +2976.476544 +2976.531556 +2976.596757 +2976.654899 +2976.696024 +2976.732554 +2976.781139 +2976.829324 +2976.873646 +2976.906114 +2976.960793 +2977.018235 +2977.069783 +2977.095524 +2977.126360 +2977.176210 +2977.213906 +2977.245607 +2977.280040 +2977.326193 +2977.371781 +2977.431821 +2977.504115 +2977.548404 +2977.628458 +2977.671814 +2977.815271 +2977.863955 +2977.908144 +2977.964188 +2978.068650 +2978.110575 +2978.157994 +2978.243675 +2978.283935 +2978.313905 +2978.351101 +2978.396356 +2978.434651 +2978.480038 +2978.509009 +2978.547038 +2978.610907 +2978.666086 +2978.720365 +2978.766585 +2978.848070 +2978.945806 +2979.005579 +2979.049768 +2979.090594 +2979.125626 +2979.151133 +2979.199219 +2979.256328 +2979.306744 +2979.330620 +2979.384233 +2979.421596 +2979.503414 +2979.575042 +2979.629455 +2979.684433 +2979.740776 +2979.780204 +2979.814369 +2979.859891 +2979.893490 +2979.939811 +2980.014736 +2980.060556 +2980.102814 +2980.154429 +2980.193124 +2980.284665 +2980.323293 +2980.394489 +2980.435881 +2980.484399 +2980.572078 +2980.626790 +2980.718098 +2980.779370 +2980.817465 +2980.861821 +2980.899517 +2980.952131 +2980.987928 +2981.042274 +2981.066316 +2981.122793 +2981.170945 +2981.212204 +2981.241907 +2981.277638 +2981.327255 +2981.370478 +2981.426855 +2981.470212 +2981.519163 +2981.585863 +2981.638177 +2981.678836 +2981.735213 +2981.813701 +2981.897851 +2981.937977 +2982.025623 +2982.080501 +2982.121160 +2982.172809 +2982.220195 +2982.263451 +2982.295619 +2982.335779 +2982.365416 +2982.426155 +2982.481200 +2982.544936 +2982.597983 +2982.646068 +2982.691556 +2982.730850 +2982.784363 +2982.823224 +2982.868512 +2982.927453 +2982.962884 +2983.008306 +2983.046001 +2983.080900 +2983.107673 +2983.153594 +2983.194053 +2983.229284 +2983.261852 +2983.315731 +2983.372974 +2983.415565 +2983.473806 +2983.513433 +2983.557456 +2983.604575 +2983.646200 +2983.678568 +2983.731848 +2983.769943 +2983.814365 +2983.846100 +2983.890190 +2983.925021 +2983.975771 +2984.022457 +2984.068678 +2984.134145 +2984.172241 +2984.213965 +2984.245900 +2984.286493 +2984.337242 +2984.367678 +2984.417195 +2984.457555 +2984.497582 +2984.545833 +2984.588590 +2984.641970 +2984.682363 +2984.734578 +2984.798314 +2984.840905 +2984.888024 +2984.888557 +2984.932646 +2985.015496 +2985.070908 +2985.136342 +2985.180964 +2985.227518 +2985.276935 +2985.328250 +2985.392119 +2985.429615 +2985.470874 +2985.507138 +2985.555822 +2985.608170 +2985.656222 +2985.697214 +2985.730714 +2985.766045 +2985.794483 +2985.835642 +2985.866844 +2985.903141 +2985.941370 +2985.974703 +2986.022655 +2986.075302 +2986.105705 +2986.148396 +2986.195549 +2986.233877 +2986.279465 +2986.324786 +2986.366411 +2986.434676 +2986.464812 +2986.497047 +2986.537406 +2986.555322 +2986.597246 +2986.645931 +2986.696847 +2986.739504 +2986.786624 +2986.819890 +2986.896713 +2986.931279 +2986.970073 +2987.002141 +2987.035141 +2987.080529 +2987.121155 +2987.163080 +2987.196580 +2987.227482 +2987.266710 +2987.317292 +2987.348261 +2987.393816 +2987.453756 +2987.517126 +2987.574901 +2987.613662 +2987.648161 +2987.686922 +2987.724052 +2987.780029 +2987.832643 +2987.883526 +2987.935240 +2987.966709 +2988.003272 +2988.057185 +2988.088687 +2988.123319 +2988.165943 +2988.200508 +2988.252190 +2988.283225 +2988.316659 +2988.370305 +2988.408933 +2988.439469 +2988.490485 +2988.525949 +2988.554687 +2988.597178 +2988.655120 +2988.700974 +2988.727914 +2988.776931 +2988.824817 +2988.861014 +2988.914427 +2988.939735 +2988.975266 +2989.016725 +2989.064377 +2989.111963 +2989.172069 +2989.244663 +2989.290317 +2989.329245 +2989.376298 +2989.417190 +2989.453787 +2989.492715 +2989.536671 +2989.590950 +2989.657450 +2989.701772 +2989.733008 +2989.762778 +2989.823850 +2989.869637 +2989.920020 +2989.974865 +2990.025248 +2990.056817 +2990.110130 +2990.149857 +2990.192081 +2990.245794 +2990.284289 +2990.338302 +2990.366274 +2990.444828 +2990.496910 +2990.563843 +2990.600905 +2990.644029 +2990.681591 +2990.711228 +2990.745361 +2990.797309 +2990.917355 +2990.968071 +2991.026946 +2991.056449 +2991.091814 +2991.213825 +2991.255217 +2991.304734 +2991.360612 +2991.424081 +2991.512560 +2991.551321 +2991.604767 +2991.647025 +2991.661144 +2991.734504 +2991.769369 +2991.819952 +2991.851154 +2991.898540 +2991.933771 +2991.986086 +2992.048390 +2992.115023 +2992.175696 +2992.227910 +2992.252286 +2992.297074 +2992.351553 +2992.391047 +2992.451420 +2992.511759 +2992.592445 +2992.643194 +2992.715422 +2992.786085 +2992.840231 +2992.923347 +2992.942495 +2992.985752 +2993.124080 +2993.172764 +2993.211925 +2993.252684 +2993.301769 +2993.345824 +2993.415888 +2993.481422 +2993.524312 +2993.572431 +2993.603333 +2993.646357 +2993.679224 +2993.726910 +2993.797306 +2993.855314 +2993.905564 +2993.944359 +2993.987083 +2994.027542 +2994.077659 +2994.147788 +2994.185983 +2994.266137 +2994.318251 +2994.365803 +2994.417751 +2994.445857 +2994.520116 +2994.560675 +2994.619483 +2994.664438 +2994.712889 +2994.754348 +2994.782520 +2994.872596 +2994.902866 +2994.954081 +2994.996905 +2995.043026 +2995.088014 +2995.141727 +2995.174993 +2995.210025 +2995.263904 +2995.312090 +2995.350884 +2995.452749 +2995.489479 +2995.536032 +2995.584284 +2995.639662 +2995.726908 +2995.787247 +2995.846721 +2995.879488 +2995.928839 +2995.996205 +2996.043324 +2996.068566 +2996.108892 +2996.160141 +2996.188912 +2996.212588 +2996.265202 +2996.306794 +2996.361006 +2996.396937 +2996.426174 +2996.472994 +2996.524309 +2996.617949 +2996.656011 +2996.699734 +2996.740893 +2996.791942 +2996.856211 +2996.909590 +2996.973227 +2997.021512 +2997.052847 +2997.109557 +2997.145321 +2997.169897 +2997.205528 +2997.329170 +2997.363769 +2997.420113 +2997.470396 +2997.495571 +2997.551614 +2997.608890 +2997.640559 +2997.682250 +2997.716816 +2997.754611 +2997.790009 +2997.821078 +2997.862537 +2997.891874 +2997.939293 +2997.981151 +2998.046619 +2998.127704 +2998.211620 +2998.263635 +2998.301930 +2998.358773 +2998.394238 +2998.430368 +2998.470894 +2998.519745 +2998.565466 +2998.594804 +2998.619878 +2998.653811 +2998.708923 +2998.783548 +2998.837161 +2998.880151 +2998.929036 +2998.988310 +2999.053478 +2999.088310 +2999.143288 +2999.221043 +2999.284080 +2999.340757 +2999.425938 +2999.478486 +2999.527969 +2999.560803 +2999.612818 +2999.675855 +2999.721609 +2999.775688 +2999.814516 +2999.850313 +2999.896134 +2999.982981 +3000.018312 +3000.059970 +3000.136760 +3000.189973 +3000.233963 +3000.293903 +3000.337193 +3000.386810 +3000.456806 +3000.512417 +3000.623906 +3000.683013 +3000.765198 +3000.812184 +3000.881814 +3000.938724 +3000.997532 +3001.053842 +3001.129300 +3001.181148 +3001.238324 +3001.310518 +3001.348813 +3001.430798 +3001.496599 +3001.547348 +3001.594268 +3001.694434 +3001.796632 +3001.876652 +3001.928700 +3001.987874 +3002.057704 +3002.126668 +3002.190438 +3002.291470 +3002.349911 +3002.426368 +3002.484976 +3002.538123 +3002.581713 +3002.633261 +3002.689538 +3002.723338 +3002.750377 +3002.812315 +3002.853041 +3002.895898 +3002.957104 +3003.015612 +3003.062831 +3003.103557 +3003.138522 +3003.187506 +3003.228832 +3003.279081 +3003.311249 +3003.359134 +3003.400060 +3003.463197 +3003.510816 +3003.558135 +3003.628531 +3003.688072 +3003.737356 +3003.799793 +3003.945015 +3004.013346 +3004.053306 +3004.102091 +3004.142184 +3004.170089 +3004.237722 +3004.276949 +3004.315744 +3004.385174 +3004.436856 +3004.487039 +3004.550176 +3004.635956 +3004.695364 +3004.730162 +3004.792833 +3004.851241 +3004.922902 +3004.967857 +3005.001291 +3005.063029 +3005.172319 +3005.230728 +3005.297095 +3005.381776 +3005.451540 +3005.526265 +3005.556968 +3005.584007 +3005.671953 +3005.777081 +3005.848243 +3005.916042 +3005.983141 +3006.029328 +3006.074516 +3006.123034 +3006.146711 +3006.176614 +3006.218406 +3006.271053 +3006.286771 +3006.336787 +3006.399691 +3006.465159 +3006.606018 +3006.665591 +3006.711445 +3006.745078 +3006.764859 +3006.784106 +3006.828861 +3006.900190 +3006.959930 +3007.061828 +3007.115374 +3007.156234 +3007.194862 +3007.243946 +3007.299357 +3007.384738 +3007.437885 +3007.496793 +3007.563692 +3007.599690 +3007.649939 +3007.699257 +3007.777711 +3007.853336 +3007.883106 +3007.924764 +3007.961294 +3008.008347 +3008.069486 +3008.099489 +3008.170518 +3008.219403 +3008.262859 +3008.345943 +3008.383072 +3008.445976 +3008.546475 +3008.636319 +3008.686169 +3008.761393 +3008.820934 +3008.855499 +3008.934121 +3008.981839 +3009.021133 +3009.065223 +3009.117304 +3009.168153 +3009.197024 +3009.235952 +3009.291330 +3009.400820 +3009.476944 +3009.539814 +3009.680573 +3009.709378 +3009.748772 +3009.781972 +3009.824729 +3009.847706 +3009.900387 +3009.936317 +3009.977942 +3010.040014 +3010.063157 +3010.143110 +3010.206014 +3010.260226 +3010.309977 +3010.377076 +3010.427725 +3010.486100 +3010.539480 +3010.665021 +3010.748771 +3010.813939 +3010.916103 +3010.950802 +3011.009410 +3011.059660 +3011.110908 +3011.144575 +3011.200752 +3011.248670 +3011.304048 +3011.338714 +3011.457728 +3011.486566 +3011.563056 +3011.610608 +3011.661724 +3011.757694 +3011.817734 +3011.918733 +3011.973079 +3012.023628 +3012.084800 +3012.127191 +3012.184167 +3012.291227 +3012.355030 +3012.394190 +3012.464220 +3012.506178 +3012.568816 +3012.633850 +3012.683867 +3012.768915 +3012.863654 +3012.918565 +3013.004912 +3013.115735 +3013.174476 +3013.281202 +3013.412471 +3013.537180 +3013.612604 +3013.673077 +3013.709174 +3013.763220 +3013.818531 +3013.878738 +3013.936180 +3014.010572 +3014.085497 +3014.158391 +3014.211205 +3014.305078 +3014.367848 +3014.498784 +3014.583199 +3014.669346 +3014.737545 +3014.793222 +3014.868514 +3014.976905 +3015.028953 +3015.076439 +3015.113202 +3015.182233 +3015.228453 +3015.268546 +3015.328953 +3015.387727 +3015.439076 +3015.492023 +3015.528353 +3015.737577 +3015.798716 +3015.893721 +3015.956658 +3016.010271 +3016.121692 +3016.185662 +3016.222125 +3016.280667 +3016.334646 +3016.399614 +3016.432581 +3016.483697 +3016.542305 +3016.573906 +3016.658322 +3016.715198 +3016.780566 +3016.857789 +3016.905241 +3016.997249 +3017.071075 +3017.108238 +3017.194885 +3017.244102 +3017.321591 +3017.408238 +3017.448198 +3017.473306 +3017.525953 +3017.565347 +3017.640472 +3017.673572 +3017.707838 +3017.758820 +3017.804075 +3017.848564 +3017.904574 +3017.963016 +3018.032080 +3018.138807 +3018.216695 +3018.305706 +3018.419959 +3018.496016 +3018.582030 +3018.660917 +3018.733511 +3018.798613 +3018.870241 +3018.988423 +3019.076668 +3019.113531 +3019.190321 +3019.251726 +3019.286425 +3019.312698 +3019.367077 +3019.401443 +3019.461882 +3019.509435 +3019.559351 +3019.627783 +3019.669807 +3019.710400 +3019.835408 +3019.900177 +3019.969041 +3020.061282 +3020.118092 +3020.265012 +3020.324386 +3020.397912 +3020.455921 +3020.489853 +3020.641934 +3020.685324 +3020.718957 +3020.755954 +3020.791418 +3020.863779 +3020.910599 +3020.978697 +3021.034541 +3021.123419 +3021.200442 +3021.226249 +3021.272037 +3021.332044 +3021.514361 +3021.612130 +3021.674301 +3021.775033 +3021.838570 +3021.950624 +3021.977497 +3022.017824 +3022.049958 +3022.083025 +3022.139768 +3022.179595 +3022.246595 +3022.282259 +3022.346561 +3022.412962 +3022.450424 +3022.505702 +3022.557084 +3022.622885 +3022.701573 +3022.732275 +3022.780294 +3022.841699 +3022.881692 +3022.943630 +3023.021119 +3023.065375 +3023.198142 +3023.230876 +3023.283557 +3023.318255 +3023.355685 +3023.404902 +3023.451322 +3023.509830 +3023.591948 +3023.648558 +3023.783223 +3023.839101 +3023.948524 +3024.058215 +3024.147126 +3024.197908 +3024.274498 +3024.316822 +3024.369603 +3024.415590 +3024.441031 +3024.508397 +3024.574531 +3024.624581 +3024.737035 +3024.772167 +3024.817788 +3024.893812 +3024.956782 +3024.994045 +3025.068403 +3025.100305 +3025.173099 +3025.246026 +3025.279359 +3025.322416 +3025.408763 +3025.472233 +3025.555483 +3025.668736 +3025.746258 +3025.799971 +3025.852319 +3025.902602 +3025.984586 +3026.087250 +3026.183754 +3026.227943 +3026.264206 +3026.381323 +3026.497073 +3026.573797 +3026.644226 +3026.728142 +3026.788515 +3026.824113 +3026.938964 +3027.009927 +3027.083486 +3027.188015 +3027.322314 +3027.383086 +3027.447688 +3027.501002 +3027.593276 +3027.641994 +3027.694641 +3027.811724 +3027.887149 +3028.033635 +3028.091311 +3028.155047 +3028.188380 +3028.223412 +3028.286149 +3028.356079 +3028.459143 +3028.533335 +3028.581054 +3028.692709 +3028.791443 +3028.909026 +3028.958809 +3029.023478 +3029.125542 +3029.226541 +3029.294340 +3029.362072 +3029.507760 +3029.613021 +3029.750783 +3029.866367 +3029.944056 +3029.979954 +3030.090077 +3030.134932 +3030.215285 +3030.281452 +3030.347785 +3030.420446 +3030.523643 +3030.642657 +3030.687013 +3030.757309 +3030.873759 +3031.070762 +3031.144555 +3031.306026 +3031.363302 +3031.420045 +3031.475490 +3031.539559 +3031.613818 +3031.724740 +3031.842955 +3031.906625 +3031.977687 +3032.117614 +3032.231233 +3032.347450 +3032.396335 +3032.463135 +3032.730067 +3032.788109 +3032.836661 +3032.914516 +3033.001895 +3033.081582 +3033.131332 +3033.195035 +3033.309654 +3033.387509 +3033.582248 +3033.718378 +3033.765065 +3033.814016 +3033.884812 +3033.929400 +3034.005957 +3034.163832 +3034.218278 +3034.295600 +3034.362200 +3034.444618 +3034.501095 +3034.539889 +3034.604524 +3034.642220 +3034.720142 +3034.796499 +3034.839989 +3034.952876 +3035.002859 +3035.082513 +3035.133328 +3035.234294 +3035.325569 +3035.356372 +3035.436891 +3035.565596 +3035.613847 +3035.761466 +3035.851743 +3035.921673 +3036.022905 +3036.116544 +3036.187140 +3036.295165 +3036.401825 +3036.462165 +3036.593167 +3036.663064 +3036.689471 +3036.780946 +3036.840353 +3036.876384 +3036.968225 +3037.057269 +3037.115911 +3037.381978 +3037.593799 +3037.663562 +3037.758967 +3037.932760 +3038.299859 +3038.394198 +3038.570788 +3038.618573 +3038.657701 +3038.814710 +3038.863428 +3038.873718 +3038.944680 +3038.992599 +3039.086005 +3039.259198 +3039.403121 +3039.553004 +3039.637653 +3039.744679 +3039.854103 +3039.988335 +3040.065824 +3040.110779 +3040.196394 +3040.240117 +3040.309614 +3040.392697 +3040.518072 +3040.568255 +3040.643979 +3040.693896 +3040.803652 +3041.062560 +3041.345110 +3041.397158 +3041.459030 +3041.560062 +3041.618570 +3041.713775 +3041.764457 +3041.836352 +3042.014840 +3042.101154 +3042.181706 +3042.234787 +3042.352102 +3042.502852 +3042.588965 +3042.730590 +3042.839781 +3042.913507 +3043.013341 +3043.127793 +3043.232521 +3043.394559 +3043.638049 +3043.759261 +3043.913040 +3044.005714 +3044.205148 +3044.354365 +3044.568617 +3044.617302 +3044.696023 +3044.830855 +3044.965819 +3045.126858 +3045.179206 +3045.225626 +3045.348137 +3045.430221 +3045.532519 +3045.675076 +3045.770214 +3045.807111 +3045.927024 +3046.193590 +3046.343008 +3046.502981 +3046.593457 +3046.709108 +3046.834282 +3047.010872 +3047.184598 +3047.293822 +3047.350699 +3047.595088 +3047.687295 +3047.891324 +3048.037411 +3048.123459 +3048.365783 +3048.450165 +3048.488427 +3048.565649 +3048.679835 +3048.736079 +3048.982132 +3049.245502 +3049.326887 +3049.531283 +3049.640107 +3049.701412 +3049.757556 +3049.856024 +3049.934213 +3049.980833 +3050.045501 +3050.152727 +3050.385261 +3050.605674 +3050.681898 +3050.815098 +3050.928251 +3050.991055 +3051.095584 +3051.388790 +3051.687291 +3051.755756 +3051.982129 +3052.157054 +3052.241869 +3052.350094 +3052.578100 +3052.659751 +3052.752691 +3052.838672 +3052.965412 +3053.040337 +3053.197313 +3053.297846 +3053.364213 +3053.447662 +3053.846730 +3054.061448 +3054.206503 +3054.261681 +3054.383326 +3054.464378 +3054.588154 +3054.834341 +3054.910831 +3055.296578 +3055.366642 +3055.410964 +3055.471969 +3055.526015 +3055.620621 +3055.730178 +3055.835572 +3055.998109 +3056.053154 +3056.119455 +3056.240001 +3056.357716 +3056.444762 +3056.592514 +3056.658548 +3056.693080 +3056.723850 +3056.932141 +3057.010230 +3057.241864 +3057.346593 +3057.439267 +3057.508364 +3057.565540 +3057.673399 +3057.790415 +3057.792014 +3057.905434 +3058.053286 +3058.144028 +3058.196376 +3058.226113 +3058.716588 +3058.860011 +3058.945492 +3059.002535 +3059.058280 +3059.115655 +3059.534869 +3059.665672 +3059.702768 +3059.742561 +3059.803367 +3059.860909 +3059.903067 +3059.970200 +3060.021748 +3060.098705 +3060.211858 +3060.299470 +3060.364805 +3060.438265 +3060.680989 +3060.913123 +3061.050152 +3061.145157 +3061.186649 +3061.308127 +3061.408327 +3061.497804 +3061.635899 +3061.724977 +3061.893408 +3061.961806 +3062.051417 +3062.341793 +3062.451083 +3062.594673 +3062.729438 +3062.755678 +3062.828672 +3062.953980 +3063.117916 +3063.314020 +3063.429770 +3063.487746 +3063.697369 +3063.747119 +3063.804362 +3063.842291 +3063.923043 +3063.982550 +3064.090442 +3064.183449 +3064.285014 +3064.365434 +3064.483049 +3064.571428 +3064.723908 +3064.803862 +3064.934398 +3065.539858 +3065.642722 +3065.680118 +3065.722575 +3065.809189 +3065.892572 +3065.954976 +3066.029501 +3066.405592 +3066.477020 +3066.550313 +3066.647816 +3066.915015 +3067.043520 +3067.199464 +3067.333663 +3067.500029 +3067.650079 +3067.835161 +3068.003192 +3068.039323 +3068.137724 +3068.177118 +3068.216279 +3068.273089 +3068.360668 +3068.450012 +3068.549146 +3068.625469 +3068.697031 +3068.951377 +3069.318609 +3069.565595 +3069.627633 +3069.800427 +3069.878948 +3069.948878 +3069.993167 +3070.082944 +3070.176916 +3070.281545 +3070.404089 +3071.041318 +3071.101125 +3071.172120 +3071.311747 +3071.423702 +3072.374350 +3072.655069 +3073.000756 +3073.117706 +3073.184106 +3073.376580 +3073.471685 +3073.558365 +3073.626796 +3073.735454 +3073.774948 +3073.857732 +3073.937719 +3073.977246 +3074.142147 +3074.260762 +3074.412610 +3074.460695 +3074.553502 +3074.658197 +3074.710978 +3074.749639 +3074.844877 +3074.937784 +3075.723131 +3075.775779 +3075.851969 +3075.876911 +3075.913308 +3075.962725 +3076.140347 +3076.320733 +3076.403051 +3076.572714 +3076.800053 +3077.095990 +3077.277442 +3077.359360 +3077.458161 +3077.546007 +3077.645540 +3077.809177 +3077.901318 +3077.995890 +3078.042576 +3078.188797 +3078.254497 +3078.314005 +3078.573511 +3078.826691 +3078.894390 +3079.155662 +3079.195555 +3079.338479 +3079.687130 +3079.779804 +3079.865452 +3079.925125 +3079.956127 +3080.023793 +3080.224392 +3080.434582 +3080.663819 +3080.783499 +3080.949899 +3081.125657 +3081.325224 +3081.737478 +3081.893055 +3082.057391 +3082.225123 +3082.492089 +3082.774506 +3082.824789 +3082.983464 +3083.177603 +3083.259654 +3083.455891 +3083.540706 +3083.672607 +3083.729850 +3083.792887 +3083.862417 +3083.899014 +3083.962983 +3084.117395 +3084.178401 +3084.235311 +3084.325920 +3084.407738 +3084.458454 +3084.536309 +3084.622856 +3084.831780 +3085.040938 +3085.217960 +3085.464880 +3085.508503 +3085.631480 +3085.722655 +3085.851326 +3086.378932 +3086.436141 +3086.461449 +3086.509734 +3086.596014 +3086.824286 +3087.401341 +3087.600842 +3087.691684 +3087.940735 +3088.007934 +3088.250525 +3088.548560 +3089.007201 +3089.989950 +3090.079927 +3090.268738 +3090.326647 +3090.566074 +3090.663909 +3091.238301 +3091.313825 +3091.470069 +3091.691614 +3091.800172 +3091.873099 +3091.961077 +3092.053085 +3092.091014 +3092.160944 +3092.224547 +3092.282455 +3092.349122 +3092.461443 +3092.517820 +3092.615522 +3092.658712 +3092.766105 +3092.858412 +3093.248855 +3093.425411 +3093.544992 +3093.601535 +3093.646124 +3093.714389 +3093.810826 +3093.906829 +3093.981821 +3094.012957 +3094.134735 +3094.227242 +3094.330838 +3094.445790 +3094.685483 +3094.927841 +3095.142493 +3095.484350 +3095.610457 +3095.742991 +3095.796505 +3095.859042 +3095.902965 +3095.934866 +3095.981053 +3096.137863 +3096.241159 +3096.567067 +3096.665102 +3096.811722 +3096.997735 +3097.046587 +3097.159141 +3097.248185 +3097.502896 +3097.706193 +3097.865567 +3097.978254 +3098.229236 +3098.399799 +3098.560571 +3098.633898 +3098.692339 +3098.779219 +3099.045586 +3099.148050 +3099.302595 +3099.412318 +3099.481050 +3099.565998 +3099.625006 +3099.687809 +3099.712718 +3099.787809 +3099.879018 +3099.980716 +3100.042588 +3100.353576 +3100.416846 +3100.677485 +3100.937891 +3101.167195 +3101.329066 +3101.566396 +3101.845849 +3101.917577 +3101.980481 +3102.070757 +3102.277450 +3102.306188 +3102.433195 +3102.949278 +3103.193633 +3103.447779 +3103.536590 +3103.600892 +3103.643350 +3103.828664 +3103.922304 +3104.442450 +3104.582710 +3104.746079 +3105.122769 +3105.207051 +3105.273618 +3105.375349 +3105.453271 +3105.515276 +3105.583008 +3105.803321 +3106.041150 +3106.442448 +3106.490600 +3106.526331 +3106.717073 +3106.896893 +3106.937319 +3107.229527 +3107.285038 +3107.499290 +3107.709147 +3107.872017 +3107.966689 +3108.054235 +3108.153402 +3108.350405 +3108.449938 +3108.526062 +3108.630225 +3108.860128 +3109.100054 +3109.627726 +3109.686667 +3109.879707 +3109.950203 +3110.072914 +3110.279640 +3110.386433 +3110.487399 +3110.558528 +3110.628791 +3110.781538 +3111.181771 +3111.482037 +3111.547471 +3111.676875 +3111.764188 +3111.918333 +3112.121363 +3112.218000 +3112.317301 +3112.600684 +3112.777540 +3112.846504 +3113.016334 +3113.146304 +3113.326790 +3113.414103 +3113.592624 +3113.674742 +3113.820030 +3114.116932 +3114.204911 +3114.293722 +3114.413702 +3115.059822 +3115.223325 +3115.926854 +3116.348299 +3116.605108 +3116.703543 +3116.774173 +3116.848332 +3116.976537 +3117.105441 +3117.174139 +3117.237409 +3117.311335 +3117.422457 +3117.546100 +3117.753692 +3117.836975 +3117.913166 +3118.000145 +3118.064514 +3118.116695 +3118.168943 +3118.238873 +3118.350295 +3118.740970 +3118.884926 +3118.982928 +3119.051460 +3119.139971 +3119.192385 +3119.262548 +3119.321956 +3119.375136 +3119.463014 +3119.543267 +3119.654556 +3119.834875 +3119.936574 +3120.132544 +3120.320123 +3120.394449 +3120.480396 +3120.584891 +3120.665577 +3120.846330 +3121.115260 +3121.348560 +3121.394481 +3121.470705 +3121.555420 +3121.641234 +3121.756052 +3121.976632 +3122.186888 +3122.364676 +3122.421919 +3122.551789 +3122.603804 +3122.701972 +3122.798076 +3123.358115 +3123.895910 +3124.680458 +3124.874564 +3124.918820 +3125.340831 +3126.157313 +3126.331672 +3126.830573 +3127.276560 +3127.505297 +3127.712656 +3128.070898 +3128.319516 +3128.393342 +3128.424577 +3128.516518 +3128.719981 +3128.824077 +3128.941993 +3129.222945 +3129.418682 +3129.652581 +3129.711023 +3129.770297 +3129.975958 +3130.107459 +3130.159174 +3130.209657 +3130.359141 +3130.415917 +3130.530669 +3130.609157 +3130.807159 +3131.367565 +3131.421411 +3131.548350 +3131.652180 +3131.992073 +3132.546618 +3132.675955 +3132.736095 +3132.864333 +3132.999131 +3133.043920 +3133.198199 +3133.323140 +3133.900229 +3134.030532 +3134.101095 +3134.559769 +3135.069659 +3135.204557 +3135.268160 +3135.336358 +3135.464597 +3135.586508 +3135.692802 +3135.916278 +3136.073820 +3136.174986 +3136.295698 +3136.375285 +3136.533826 +3136.710150 +3136.807686 +3136.919174 +3137.113912 +3137.166560 +3137.342917 +3137.414512 +3137.694032 +3137.834258 +3137.910848 +3138.003455 +3138.074151 +3138.178846 +3138.315510 +3138.362030 +3138.466192 +3138.612779 +3138.802289 +3138.889801 +3139.170054 +3139.250773 +3139.364060 +3139.449808 +3139.593763 +3139.680876 +3139.835422 +3140.007449 +3140.105651 +3140.255534 +3140.390133 +3140.490766 +3140.567189 +3140.622733 +3140.692763 +3140.784305 +3140.864059 +3140.896826 +3141.037851 +3141.196193 +3141.294394 +3141.423232 +3141.562992 +3141.787234 +3141.935519 +3142.053102 +3142.161427 +3142.229558 +3142.269185 +3142.332655 +3142.405382 +3142.462159 +3142.570151 +3142.612508 +3142.661260 +3142.727493 +3142.782139 +3142.842911 +3142.902285 +3143.053234 +3143.142711 +3143.200953 +3143.269018 +3143.349304 +3143.414272 +3143.550037 +3143.593093 +3143.640812 +3143.693526 +3143.798987 +3143.977542 +3144.033120 +3144.188131 +3144.459460 +3144.760558 +3144.814271 +3144.920565 +3144.976009 +3144.998054 +3145.052299 +3145.132686 +3145.187497 +3145.274577 +3145.416968 +3145.480771 +3145.593757 +3145.684733 +3146.076541 +3146.231286 +3146.332951 +3146.376541 +3146.430553 +3146.480503 +3146.512005 +3146.555195 +3146.633383 +3146.673843 +3146.761755 +3146.818665 +3146.878405 +3147.027689 +3147.078005 +3147.453030 +3147.574375 +3147.631551 +3147.676772 +3147.753829 +3147.798484 +3147.852530 +3147.922993 +3148.006542 +3148.063285 +3148.136978 +3148.217065 +3148.343105 +3148.792822 +3148.892922 +3148.949332 +3149.025655 +3149.050897 +3149.104843 +3149.163651 +3149.253561 +3149.526021 +3149.790223 +3150.028951 +3150.126054 +3150.327319 +3150.375737 +3150.436110 +3150.512600 +3150.612001 +3151.060852 +3151.149696 +3151.255057 +3151.460285 +3152.019892 +3152.109302 +3152.299878 +3152.496748 +3152.716861 +3152.865412 +3152.939071 +3152.980530 +3153.055655 +3153.114995 +3153.277966 +3153.384792 +3153.499144 +3153.763113 +3153.828248 +3153.893982 +3153.962913 +3154.018125 +3154.073303 +3154.159183 +3154.240202 +3154.387488 +3154.484125 +3155.056352 +3155.116325 +3155.153322 +3155.186089 +3155.229179 +3155.291983 +3155.360448 +3155.446628 +3155.489385 +3155.551923 +3155.634873 +3155.733141 +3155.890217 +3156.044296 +3156.218988 +3156.422218 +3156.626913 +3156.716390 +3156.815624 +3156.955185 +3157.024116 +3157.102837 +3157.172900 +3157.255351 +3157.313060 +3157.376962 +3157.442996 +3157.492780 +3157.532673 +3157.583189 +3157.682656 +3157.748457 +3158.020618 +3158.249656 +3158.272566 +3158.292213 +3158.396575 +3158.569835 +3158.640731 +3158.810761 +3158.861277 +3158.924280 +3159.032006 +3159.119385 +3159.271133 +3159.321416 +3159.440464 +3159.747456 +3159.940696 +3159.967603 +3160.088482 +3160.129341 +3160.207263 +3160.299670 +3160.589014 +3160.761142 +3160.894575 +3161.103898 +3161.145190 +3161.215120 +3161.266402 +3161.323612 +3161.377058 +3161.502666 +3161.572130 +3161.634034 +3161.713555 +3161.775460 +3161.871863 +3162.006895 +3162.216052 +3162.409492 +3162.474327 +3162.612322 +3162.734533 +3162.840727 +3162.942158 +3163.005262 +3163.337596 +3163.407193 +3163.456677 +3163.708591 +3163.954445 +3164.176689 +3164.335497 +3164.649183 +3164.708524 +3164.785247 +3164.828370 +3165.104061 +3165.227271 +3165.297301 +3165.359638 +3165.478020 +3165.598200 +3165.790873 +3165.847284 +3165.893970 +3166.046284 +3166.149847 +3166.274123 +3166.463833 +3166.635961 +3166.775588 +3166.962867 +3167.046283 +3167.115614 +3167.178651 +3167.232963 +3167.290173 +3167.352177 +3167.444052 +3167.593636 +3167.792703 +3167.915214 +3168.005790 +3168.197797 +3168.535559 +3168.604390 +3168.737624 +3168.997963 +3169.052975 +3169.099062 +3169.154307 +3169.266961 +3169.366294 +3169.444017 +3169.490870 +3169.609551 +3169.714413 +3169.787473 +3169.927066 +3170.038122 +3170.095165 +3170.177915 +3170.301925 +3170.350376 +3170.391934 +3170.446180 +3170.514345 +3170.563196 +3170.620273 +3170.674718 +3170.723569 +3170.819839 +3170.911814 +3170.991434 +3171.085207 +3171.162730 +3171.273219 +3171.476149 +3171.671787 +3171.736455 +3171.784474 +3171.827764 +3171.895962 +3171.943914 +3172.003255 +3172.065559 +3172.152439 +3172.192798 +3172.321203 +3172.387837 +3172.457300 +3172.535822 +3172.594630 +3172.640251 +3172.686304 +3172.772718 +3172.847543 +3172.975382 +3173.154003 +3173.257999 +3173.486437 +3173.631958 +3173.724166 +3173.784705 +3173.820736 +3173.904052 +3173.964025 +3174.001488 +3174.066223 +3174.178477 +3174.216306 +3174.267921 +3174.351937 +3174.417571 +3174.529693 +3174.668520 +3174.894794 +3174.943811 +3175.006382 +3175.097424 +3175.163725 +3175.224497 +3175.330957 +3175.410178 +3175.460161 +3175.564690 +3175.616771 +3175.665955 +3175.759295 +3175.878109 +3176.040081 +3176.215838 +3176.384403 +3176.422798 +3176.492728 +3176.543310 +3176.597323 +3176.668785 +3176.745541 +3176.920999 +3176.999454 +3177.080506 +3177.196523 +3177.268484 +3177.348371 +3177.442843 +3177.503316 +3177.541111 +3177.591661 +3177.656196 +3177.700352 +3177.758494 +3177.875876 +3177.987032 +3178.101084 +3178.243841 +3178.287531 +3178.376176 +3178.476542 +3178.688962 +3178.781270 +3178.874543 +3178.932086 +3179.037747 +3179.132818 +3179.205212 +3179.261856 +3179.286997 +3179.366917 +3179.422195 +3179.466651 +3179.525359 +3179.615502 +3179.684299 +3179.751232 +3179.846670 +3180.224159 +3180.285531 +3180.330353 +3180.474076 +3180.542807 +3180.642673 +3180.690026 +3180.718831 +3180.783233 +3180.852364 +3180.927355 +3181.130618 +3181.220062 +3181.260322 +3181.392390 +3181.541374 +3181.629619 +3181.783698 +3181.915832 +3181.942372 +3182.036645 +3182.102845 +3182.179768 +3182.245069 +3182.293155 +3182.386295 +3182.432149 +3182.541206 +3182.614000 +3182.689258 +3182.747733 +3182.850996 +3182.902312 +3182.980267 +3183.033913 +3183.087093 +3183.134746 +3183.192954 +3183.247166 +3183.309637 +3183.458022 +3183.493753 +3183.616363 +3183.681332 +3183.770709 +3183.832547 +3183.885427 +3183.928951 +3183.962384 +3184.013233 +3184.051028 +3184.097915 +3184.110103 +3184.155524 +3184.187525 +3184.247199 +3184.304375 +3184.379200 +3184.448098 +3184.523056 +3184.570209 +3184.650428 +3184.696216 +3184.744301 +3184.805906 +3184.911667 +3184.975669 +3185.067777 +3185.153691 +3185.208703 +3185.289688 +3185.342702 +3185.392053 +3185.492219 +3185.564846 +3185.623388 +3185.697014 +3185.781396 +3185.911366 +3185.985958 +3186.033311 +3186.177300 +3186.237640 +3186.280796 +3186.324486 +3186.396980 +3186.445898 +3186.528815 +3186.619291 +3186.691618 +3186.774835 +3186.835541 +3186.892351 +3186.951658 +3187.035274 +3187.100409 +3187.155454 +3187.195148 +3187.242367 +3187.308334 +3187.400775 +3187.452557 +3187.541767 +3187.635673 +3187.707768 +3187.741834 +3187.803339 +3187.854787 +3187.914061 +3187.956452 +3188.033675 +3188.099143 +3188.133575 +3188.223618 +3188.286455 +3188.337304 +3188.393715 +3188.432143 +3188.469838 +3188.524018 +3188.586222 +3188.659549 +3188.716458 +3188.826049 +3188.883191 +3188.951123 +3189.006734 +3189.053787 +3189.092315 +3189.128912 +3189.192881 +3189.236937 +3189.288752 +3189.326814 +3189.392482 +3189.444929 +3189.484822 +3189.549258 +3189.603703 +3189.678196 +3189.718022 +3189.751222 +3189.799907 +3189.831209 +3189.872634 +3189.951322 +3190.022384 +3190.055851 +3190.110629 +3190.238701 +3190.285654 +3190.388651 +3190.428311 +3190.511395 +3190.567072 +3190.608997 +3190.650089 +3190.711395 +3190.774598 +3190.812127 +3190.832806 +3190.874631 +3190.911128 +3190.940499 +3190.973332 +3191.014391 +3191.088251 +3191.123615 +3191.165840 +3191.231108 +3191.290848 +3191.326978 +3191.365939 +3191.409163 +3191.449489 +3191.493845 +3191.547658 +3191.612026 +3191.690148 +3191.738600 +3191.769968 +3191.854351 +3191.914557 +3191.974930 +3192.040664 +3192.111260 +3192.172366 +3192.201670 +3192.240064 +3192.280924 +3192.312226 +3192.347024 +3192.390814 +3192.433171 +3192.481922 +3192.537500 +3192.597373 +3192.642062 +3192.697906 +3192.778759 +3192.843727 +3192.877027 +3192.898805 +3192.945192 +3192.996674 +3193.081089 +3193.143893 +3193.229907 +3193.302667 +3193.398671 +3193.452584 +3193.562574 +3193.615188 +3193.658878 +3193.697739 +3193.737765 +3193.773063 +3193.818884 +3193.892510 +3193.946090 +3194.030039 +3194.088048 +3194.141961 +3194.208794 +3194.276526 +3194.323412 +3194.404598 +3194.479423 +3194.531770 +3194.609093 +3194.637631 +3194.678457 +3194.737465 +3194.772596 +3194.805929 +3194.849619 +3194.933602 +3194.990911 +3195.038164 +3195.089779 +3195.127674 +3195.189279 +3195.242526 +3195.284484 +3195.338863 +3195.403198 +3195.444424 +3195.487580 +3195.545822 +3195.595539 +3195.628706 +3195.665569 +3195.764770 +3195.810257 +3195.847653 +3195.926341 +3195.974326 +3195.999168 +3196.038595 +3196.096471 +3196.196604 +3196.227939 +3196.314453 +3196.369930 +3196.524942 +3196.595638 +3196.638229 +3196.690976 +3196.720480 +3196.778122 +3196.830003 +3196.877356 +3196.930769 +3196.990309 +3197.047885 +3197.114285 +3197.246386 +3197.288478 +3197.347652 +3197.491574 +3197.534665 +3197.569630 +3197.675124 +3197.733998 +3197.766566 +3197.833765 +3197.892273 +3197.952679 +3198.000398 +3198.056942 +3198.132832 +3198.205027 +3198.263635 +3198.298700 +3198.327205 +3198.366865 +3198.410754 +3198.567764 +3198.598600 +3198.647717 +3198.703128 +3198.742356 +3198.766998 +3198.827337 +3198.889142 +3199.010054 +3199.091773 +3199.149382 +3199.213884 +3199.282215 +3199.418812 +3199.465931 +3199.511552 +3199.546950 +3199.601729 +3199.646484 +3199.686011 +3199.713151 +3199.771725 +3199.867796 +3199.954576 +3199.993603 +3200.035628 +3200.121142 +3200.151312 +3200.200996 +3200.253843 +3200.341755 +3200.413882 +3200.498365 +3200.543986 +3200.574755 +3200.656107 +3200.770825 +3200.824205 +3200.911484 +3200.974788 +3201.012883 +3201.063332 +3201.112750 +3201.141954 +3201.184544 +3201.266429 +3201.301327 +3201.370591 +3201.423339 +3201.540521 +3201.618177 +3201.678583 +3201.729366 +3201.788440 +3201.843518 +3201.899462 +3201.955706 +3202.005789 +3202.072389 +3202.124104 +3202.187907 +3202.240354 +3202.266095 +3202.351077 +3202.411882 +3202.469392 +3202.515445 +3202.596131 +3202.654173 +3202.697030 +3202.774686 +3202.852675 +3202.988738 +3203.073187 +3203.104423 +3203.224935 +3203.277816 +3203.323903 +3203.383243 +3203.482411 +3203.555671 +3203.643383 +3203.695764 +3203.739454 +3203.790769 +3203.853240 +3203.929363 +3203.997062 +3204.124069 +3204.176316 +3204.245713 +3204.302190 +3204.350009 +3204.400159 +3204.477315 +3204.530462 +3204.595863 +3204.677215 +3204.906419 +3204.969489 +3205.007384 +3205.078746 +3205.123402 +3205.180977 +3205.241450 +3205.281510 +3205.317541 +3205.394264 +3205.502289 +3205.547577 +3205.592932 +3205.653271 +3205.712778 +3205.763394 +3205.833025 +3205.950474 +3205.992498 +3206.041483 +3206.098659 +3206.140783 +3206.205851 +3206.261329 +3206.334090 +3206.360097 +3206.393863 +3206.446877 +3206.488435 +3206.591599 +3206.626231 +3206.670053 +3206.726297 +3206.772418 +3206.912144 +3206.975514 +3207.018771 +3207.067256 +3207.202554 +3207.312077 +3207.397792 +3207.444911 +3207.483905 +3207.525763 +3207.585004 +3207.614974 +3207.696959 +3207.746010 +3207.778078 +3207.809546 +3207.900155 +3208.001787 +3208.092296 +3208.154101 +3208.206182 +3208.254700 +3208.333688 +3208.385969 +3208.423731 +3208.471950 +3208.512942 +3208.614174 +3208.714773 +3208.736685 +3208.800587 +3208.852136 +3208.910544 +3208.958063 +3209.007880 +3209.043644 +3209.077077 +3209.107913 +3209.141546 +3209.300587 +3209.441346 +3209.491429 +3209.541646 +3209.689997 +3209.725628 +3209.813140 +3209.969983 +3209.997023 +3210.040413 +3210.094259 +3210.128691 +3210.156197 +3210.210376 +3210.244142 +3210.274912 +3210.315904 +3210.359926 +3210.400086 +3210.449836 +3210.566287 +3210.626893 +3210.679706 +3210.780206 +3210.844508 +3210.901651 +3210.953166 +3211.034784 +3211.117901 +3211.225227 +3211.282237 +3211.412773 +3211.460991 +3211.516502 +3211.565786 +3211.619599 +3211.676109 +3211.735583 +3211.769582 +3211.803748 +3211.844440 +3211.889928 +3211.937514 +3211.976542 +3212.063921 +3212.113171 +3212.201616 +3212.239478 +3212.297021 +3212.448502 +3212.480337 +3212.526091 +3212.574943 +3212.613904 +3212.726791 +3212.771912 +3212.816567 +3212.857693 +3212.911273 +3212.968615 +3213.025525 +3213.094889 +3213.157126 +3213.273976 +3213.311172 +3213.357759 +3213.406011 +3213.464286 +3213.517699 +3213.566050 +3213.606110 +3213.660023 +3213.717965 +3213.755960 +3213.803313 +3213.858924 +3214.016100 +3214.054795 +3214.142773 +3214.190858 +3214.223659 +3214.264418 +3214.313869 +3214.353429 +3214.402613 +3214.444871 +3214.487794 +3214.545803 +3214.586862 +3214.642873 +3214.690225 +3214.746669 +3214.802613 +3214.838776 +3214.898184 +3214.965150 +3215.015733 +3215.067281 +3215.138277 +3215.169712 +3215.213968 +3215.282166 +3215.336045 +3215.448200 +3215.479402 +3215.530784 +3215.593321 +3215.631516 +3215.710437 +3215.824523 +3215.876904 +3215.919861 +3215.961919 +3216.009305 +3216.067080 +3216.113334 +3216.171143 +3216.209804 +3216.232615 +3216.269644 +3216.313700 +3216.364249 +3216.416897 +3216.451162 +3216.492954 +3216.548032 +3216.589657 +3216.627586 +3216.655025 +3216.694785 +3216.746533 +3216.784962 +3216.848165 +3216.923190 +3216.973207 +3217.032214 +3217.082930 +3217.169943 +3217.206406 +3217.236976 +3217.284928 +3217.341871 +3217.381065 +3217.418028 +3217.472573 +3217.533346 +3217.578168 +3217.631947 +3217.728417 +3217.774038 +3217.803309 +3217.831048 +3217.863782 +3217.901044 +3217.972240 +3218.070641 +3218.161783 +3218.214231 +3218.276802 +3218.315996 +3218.338640 +3218.372373 +3218.404174 +3218.444567 +3218.481297 +3218.532446 +3218.582795 +3218.630414 +3218.675869 +3218.723588 +3218.762049 +3218.804107 +3218.856455 +3218.897713 +3218.980031 +3219.006571 +3219.049795 +3219.101010 +3219.195815 +3219.301609 +3219.334276 +3219.386191 +3219.404040 +3219.459884 +3219.510001 +3219.536174 +3219.639837 +3219.729547 +3219.782361 +3219.836440 +3219.898612 +3219.952458 +3219.998578 +3220.045465 +3220.080196 +3220.128248 +3220.177266 +3220.219424 +3220.257186 +3220.307402 +3220.343500 +3220.409966 +3220.465378 +3220.522953 +3220.564478 +3220.668641 +3220.741035 +3220.798011 +3220.873869 +3220.915294 +3220.956453 +3221.014994 +3221.038371 +3221.084358 +3221.128247 +3221.245996 +3221.284424 +3221.323485 +3221.360149 +3221.412396 +3221.465776 +3221.519689 +3221.561880 +3221.626349 +3221.680228 +3221.716792 +3221.863112 +3221.924484 +3221.978430 +3222.016458 +3222.099608 +3222.169239 +3222.213794 +3222.261280 +3222.329545 +3222.407933 +3222.462445 +3222.523584 +3222.587886 +3222.659015 +3222.699208 +3222.740833 +3222.804603 +3222.865042 +3222.926347 +3222.966008 +3222.998775 +3223.131043 +3223.178761 +3223.245728 +3223.283490 +3223.316590 +3223.347093 +3223.396210 +3223.478495 +3223.516057 +3223.565541 +3223.624515 +3223.694578 +3223.756650 +3223.810596 +3223.882757 +3223.959979 +3224.013259 +3224.053053 +3224.122916 +3224.233472 +3224.304568 +3224.345627 +3224.390715 +3224.441497 +3224.502869 +3224.573232 +3224.613325 +3224.673732 +3224.747158 +3224.812326 +3224.876928 +3224.915223 +3224.964574 +3225.021916 +3225.097274 +3225.133605 +3225.191880 +3225.233038 +3225.274231 +3225.318486 +3225.472432 +3225.529608 +3225.577261 +3225.633704 +3225.695975 +3225.791413 +3225.826911 +3225.883521 +3226.055149 +3226.111359 +3226.163707 +3226.204732 +3226.233537 +3226.280623 +3226.312458 +3226.355448 +3226.420783 +3226.468901 +3226.510993 +3226.563074 +3226.612491 +3226.645092 +3226.672897 +3226.732471 +3226.898072 +3226.936733 +3226.971964 +3227.015587 +3227.046756 +3227.070666 +3227.116886 +3227.171731 +3227.223746 +3227.283286 +3227.380356 +3227.428607 +3227.480089 +3227.516419 +3227.534468 +3227.581488 +3227.657611 +3227.710192 +3227.752750 +3227.794974 +3227.838664 +3227.873928 +3227.922946 +3228.004165 +3228.063172 +3228.116119 +3228.174727 +3228.209159 +3228.242126 +3228.288680 +3228.314887 +3228.344857 +3228.411324 +3228.462639 +3228.504797 +3228.557511 +3228.592309 +3228.655513 +3228.713188 +3228.748952 +3228.784916 +3228.880354 +3228.926674 +3229.052615 +3229.104863 +3229.157044 +3229.199868 +3229.254313 +3229.264636 +3229.366201 +3229.404130 +3229.462505 +3229.561506 +3229.591942 +3229.624409 +3229.656477 +3229.693740 +3229.737163 +3229.816217 +3229.843090 +3229.894073 +3230.023210 +3230.083450 +3230.121712 +3230.187612 +3230.299167 +3230.347452 +3230.385448 +3230.443456 +3230.568165 +3230.613886 +3230.699233 +3230.753746 +3230.792207 +3230.835097 +3230.879153 +3230.937994 +3230.968930 +3231.002064 +3231.034165 +3231.087745 +3231.131234 +3231.169463 +3231.246985 +3231.292073 +3231.370195 +3231.430568 +3231.470595 +3231.625406 +3231.689176 +3231.732899 +3231.766365 +3231.800897 +3231.831433 +3231.866731 +3231.910454 +3231.968130 +3232.014883 +3232.062469 +3232.099365 +3232.139292 +3232.220078 +3232.256808 +3232.359738 +3232.417414 +3232.455842 +3232.507290 +3232.559138 +3232.609921 +3232.628136 +3232.703860 +3232.749115 +3232.791273 +3232.849514 +3232.905458 +3232.940723 +3233.041622 +3233.071093 +3233.118811 +3233.157972 +3233.298099 +3233.325271 +3233.354908 +3233.428368 +3233.466863 +3233.515847 +3233.563799 +3233.617146 +3233.651145 +3233.742787 +3233.796633 +3233.818245 +3233.929600 +3234.021408 +3234.089506 +3234.150312 +3234.270059 +3234.323672 +3234.382913 +3234.426136 +3234.519676 +3234.551511 +3234.588374 +3234.634894 +3234.699163 +3234.754774 +3234.830698 +3234.878517 +3234.919942 +3234.956938 +3235.002726 +3235.052809 +3235.116245 +3235.171324 +3235.241720 +3235.285376 +3235.319309 +3235.372222 +3235.403191 +3235.459702 +3235.546215 +3235.621906 +3235.663198 +3235.722938 +3235.778549 +3235.846581 +3235.966594 +3236.027633 +3236.103890 +3236.142851 +3236.190503 +3236.243584 +3236.291769 +3236.325601 +3236.384076 +3236.415911 +3236.453240 +3236.528165 +3236.577549 +3236.625768 +3236.695798 +3236.731928 +3236.836590 +3236.947079 +3236.990036 +3237.051974 +3237.097862 +3237.156103 +3237.249044 +3237.303389 +3237.363796 +3237.416942 +3237.550142 +3237.657568 +3237.792566 +3237.854538 +3237.917874 +3237.971354 +3238.034724 +3238.145280 +3238.217541 +3238.253039 +3238.310182 +3238.367657 +3238.406752 +3238.493232 +3238.560298 +3238.623401 +3238.679578 +3238.744114 +3238.789535 +3238.878513 +3238.978513 +3239.012678 +3239.208849 +3239.335955 +3239.383174 +3239.438685 +3239.521269 +3239.580910 +3239.641516 +3239.739284 +3239.796394 +3239.838352 +3239.863227 +3239.908648 +3239.958598 +3240.031958 +3240.097892 +3240.150906 +3240.222867 +3240.287302 +3240.407016 +3240.467322 +3240.579577 +3240.633389 +3240.668488 +3240.721435 +3240.752470 +3240.803885 +3240.874914 +3240.910645 +3240.986203 +3241.022300 +3241.071418 +3241.123399 +3241.174781 +3241.242713 +3241.309979 +3241.361361 +3241.423532 +3241.484804 +3241.558264 +3241.620435 +3241.662160 +3241.730924 +3241.776712 +3241.834620 +3241.867387 +3241.908213 +3241.969652 +3242.020667 +3242.072482 +3242.147707 +3242.205449 +3242.274880 +3242.356897 +3242.465455 +3242.547940 +3242.610677 +3242.674480 +3242.720667 +3242.774346 +3242.828159 +3242.886734 +3242.925229 +3242.977809 +3243.031056 +3243.070450 +3243.140347 +3243.255365 +3243.391562 +3243.451102 +3243.544176 +3243.597389 +3243.639847 +3243.717336 +3243.804016 +3243.933419 +3243.982071 +3244.006713 +3244.052700 +3244.100552 +3244.175677 +3244.255064 +3244.310009 +3244.380239 +3244.400785 +3244.513539 +3244.643342 +3244.691461 +3244.809043 +3244.867618 +3244.924561 +3244.963954 +3245.058493 +3245.105013 +3245.142875 +3245.213505 +3245.272179 +3245.327457 +3245.379572 +3245.429955 +3245.486565 +3245.544307 +3245.630720 +3245.685432 +3245.745372 +3245.824193 +3245.926091 +3246.040743 +3246.098619 +3246.196987 +3246.267683 +3246.374110 +3246.492325 +3246.549700 +3246.651732 +3246.679804 +3246.721662 +3246.749534 +3246.850766 +3246.902714 +3246.968148 +3247.058158 +3247.210805 +3247.280602 +3247.348334 +3247.445470 +3247.547535 +3247.599117 +3247.677971 +3247.734048 +3247.864651 +3247.966915 +3248.066316 +3248.120362 +3248.178770 +3248.218630 +3248.281800 +3248.351863 +3248.398084 +3248.455759 +3248.503245 +3248.568346 +3248.640774 +3248.734147 +3248.891923 +3248.949698 +3249.015499 +3249.175206 +3249.234513 +3249.363983 +3249.405175 +3249.428985 +3249.469644 +3249.508838 +3249.561919 +3249.612801 +3249.704176 +3249.754992 +3249.781732 +3249.889824 +3250.047466 +3250.171941 +3250.286893 +3250.379434 +3250.414432 +3250.448797 +3250.484662 +3250.537409 +3250.572474 +3250.611135 +3250.667312 +3250.764315 +3250.868944 +3251.073772 +3251.186026 +3251.363215 +3251.457887 +3251.571041 +3251.818593 +3251.899412 +3251.947997 +3252.023887 +3252.036508 +3252.079232 +3252.111866 +3252.201410 +3252.243101 +3252.507137 +3252.575435 +3252.661449 +3252.726018 +3252.897946 +3252.980863 +3253.065545 +3253.148262 +3253.303806 +3253.381895 +3253.434475 +3253.485724 +3253.658152 +3253.716626 +3253.761515 +3253.778764 +3253.836340 +3253.878331 +3253.922087 +3253.984392 +3254.034109 +3254.082360 +3254.201674 +3254.266143 +3254.362413 +3254.453422 +3254.521987 +3254.614661 +3254.732410 +3254.827747 +3254.889919 +3254.954454 +3255.009898 +3255.059915 +3255.132942 +3255.212695 +3255.242765 +3255.313428 +3255.372469 +3255.558216 +3255.655019 +3255.841466 +3255.909165 +3256.134939 +3256.332708 +3256.445794 +3256.552388 +3256.616956 +3256.700872 +3256.806467 +3256.891182 +3256.975531 +3257.063010 +3257.093113 +3257.119120 +3257.250489 +3257.291881 +3257.364175 +3257.429377 +3257.511328 +3257.583156 +3257.776662 +3257.918187 +3258.023016 +3258.112693 +3258.191747 +3258.265040 +3258.312959 +3258.352020 +3258.420584 +3258.483821 +3258.561077 +3258.600571 +3258.616355 +3258.674797 +3258.779525 +3258.849555 +3258.912292 +3258.982588 +3259.229242 +3259.298605 +3259.381822 +3259.483687 +3259.604932 +3259.787982 +3259.907463 +3260.034802 +3260.054382 +3260.135035 +3260.189680 +3260.226044 +3260.277193 +3260.350219 +3260.399104 +3260.463073 +3260.527409 +3260.562407 +3260.634502 +3260.747122 +3260.826776 +3260.916985 +3261.010525 +3261.083485 +3261.136166 +3261.253948 +3261.376059 +3261.471131 +3261.799102 +3261.901367 +3261.978889 +3262.044190 +3262.076991 +3262.152882 +3262.244557 +3262.277857 +3262.359075 +3262.438662 +3262.503830 +3262.586281 +3262.703364 +3262.771696 +3263.064403 +3263.228172 +3263.282418 +3263.336830 +3263.375891 +3263.438861 +3263.551149 +3263.602630 +3263.665434 +3263.736230 +3263.885814 +3263.967332 +3264.062004 +3264.179486 +3264.334997 +3264.685247 +3264.765200 +3264.801131 +3264.883582 +3265.004627 +3265.303761 +3265.358206 +3265.528036 +3265.731400 +3265.934629 +3266.163933 +3266.201029 +3266.297633 +3266.423873 +3266.609054 +3266.726104 +3266.817379 +3266.949280 +3267.116879 +3267.329400 +3267.507855 +3267.551011 +3267.644551 +3267.673056 +3267.842753 +3268.001694 +3268.098930 +3268.315513 +3268.416811 +3268.702592 +3268.788872 +3269.005988 +3269.508918 +3269.577916 +3269.670690 +3269.836990 +3269.974619 +3270.020972 +3270.290736 +3270.555804 +3271.149776 +3271.227531 +3271.257768 +3271.324601 +3271.420138 +3271.537821 +3271.604021 +3271.735523 +3271.808883 +3271.931460 +3272.120870 +3272.270820 +3272.352505 +3272.477447 +3272.593198 +3272.685672 +3272.729861 +3272.883307 +3273.145645 +3273.419737 +3273.508448 +3273.596327 +3273.690299 +3273.833922 +3274.012244 +3274.146742 +3274.250838 +3274.293862 +3274.355334 +3274.416905 +3274.437984 +3274.478943 +3274.527361 +3274.610611 +3274.778210 +3274.819069 +3274.911910 +3275.073948 +3275.185403 +3275.298922 +3275.434986 +3275.607946 +3275.667820 +3275.852668 +3275.909278 +3276.002252 +3276.074912 +3276.229824 +3276.361659 +3276.528858 +3276.667186 +3276.762124 +3276.890063 +3276.922531 +3277.054365 +3277.129756 +3277.185601 +3277.207579 +3277.308577 +3277.342277 +3277.382137 +3277.494891 +3277.584601 +3277.745374 +3277.937947 +3278.102649 +3278.173145 +3278.375776 +3278.438546 +3278.629722 +3278.735982 +3278.879338 +3278.979405 +3279.068149 +3279.199485 +3279.244540 +3279.311173 +3279.369714 +3279.472778 +3279.716634 +3279.913037 +3280.136846 +3280.225957 +3280.310439 +3280.408341 +3280.500749 +3280.588894 +3280.725457 +3280.812537 +3280.918464 +3281.001647 +3281.185230 +3281.305343 +3281.428120 +3281.537844 +3281.714567 +3281.902745 +3282.253627 +3282.364849 +3282.499881 +3282.563584 +3282.648033 +3282.719195 +3282.781333 +3282.921792 +3283.021059 +3283.115931 +3283.641305 +3283.927585 +3283.998714 +3284.028318 +3284.083296 +3284.115297 +3284.175604 +3284.211235 +3284.293918 +3284.371108 +3284.513032 +3284.568477 +3284.627118 +3284.762749 +3285.084094 +3285.425652 +3285.504673 +3285.731013 +3285.867943 +3286.357753 +3286.656687 +3287.398045 +3287.516060 +3287.629080 +3287.890984 +3288.789751 +3289.024916 +3290.366074 +3290.629810 +3290.742763 +3290.979160 +3291.063242 +3291.442230 +3291.598340 +3291.684187 +3291.719053 +3291.787484 +3291.843062 +3291.909529 +3291.947457 +3291.978460 +3292.045226 +3292.110394 +3292.248756 +3292.378393 +3292.529142 +3292.645259 +3292.741929 +3292.962108 +3293.004932 +3293.122581 +3293.233437 +3293.321449 +3293.397939 +3293.519550 +3293.832337 +3293.941894 +3294.148554 +3294.434901 +3294.516719 +3294.583585 +3294.758410 +3295.104464 +3295.237331 +3295.408792 +3295.521280 +3295.611390 +3295.710590 +3295.763637 +3295.892175 +3296.012388 +3296.225508 +3296.476990 +3296.809590 +3297.220745 +3297.274192 +3297.358940 +3297.420978 +3297.514451 +3297.544455 +3297.579686 +3297.632933 +3297.745986 +3298.244554 +3298.741190 +3298.868796 +3298.917713 +3299.043621 +3299.101962 +3299.325006 +3299.560670 +3299.796667 +3300.064033 +3300.255874 +3300.425604 +3300.606390 +3300.830232 +3300.920109 +3301.022839 +3301.180815 +3301.539256 +3301.630465 +3301.774953 +3301.914613 +3302.748212 +3302.958535 +3303.052974 +3303.151509 +3303.323070 +3303.480346 +3303.657269 +3303.817242 +3304.595563 +3304.682976 +3304.763995 +3304.808983 +3304.921437 +3304.966658 +3305.031094 +3305.088037 +3305.224667 +3305.510947 +3305.628829 +3305.738486 +3305.803121 +3305.888236 +3305.989002 +3306.206584 +3306.303653 +3306.406517 +3307.297725 +3307.333855 +3307.523332 +3307.579942 +3307.738184 +3307.804118 +3308.006948 +3308.275013 +3308.461760 +3308.729958 +3308.789099 +3309.280374 +3309.913140 +3310.226893 +3310.283669 +3310.444975 +3310.510975 +3311.044375 +3311.117102 +3311.207778 +3311.295490 +3311.481237 +3311.548270 +3311.861290 +3312.141043 +3312.349501 +3312.879871 +3313.026957 +3313.137779 +3313.206943 +3313.336780 +3313.446903 +3313.785164 +3313.974175 +3314.484797 +3314.960554 +3315.026988 +3315.350664 +3315.520494 +3315.604343 +3315.701646 +3315.956957 +3316.033214 +3316.302977 +3317.377635 +3317.712333 +3318.425719 +3318.592019 +3318.780497 +3319.036874 +3319.192385 +3319.826584 +3320.081795 +3320.351425 +3320.736739 +3320.802706 +3320.910532 +3321.042999 +3321.230512 +3321.843365 +3322.104637 +3322.228479 +3322.382558 +3322.479761 +3322.663810 +3322.849657 +3322.923284 +3323.101605 +3323.250323 +3323.393113 +3323.466407 +3323.536204 +3323.659314 +3323.713060 +3323.799540 +3323.853852 +3323.998907 +3324.159280 +3324.226746 +3324.283156 +3324.341065 +3324.398540 +3324.495477 +3324.564274 +3324.690348 +3324.772799 +3324.866572 +3324.927910 +3325.372299 +3325.466305 +3325.512359 +3325.592212 +3325.681822 +3325.868103 +3325.984819 +3326.140264 +3326.189048 +3326.242128 +3326.302601 +3326.415355 +3327.055314 +3327.131338 +3327.186483 +3327.239963 +3327.497338 +3327.961840 +3328.067235 +3328.190311 +3328.319948 +3328.351017 +3329.219814 +3330.656909 +3331.286412 +3331.649515 +3332.258706 +3332.397567 +3332.680717 +3333.679683 +3334.807787 +3334.893468 +3335.152609 +3335.253275 +3335.497830 +3335.727034 +3335.815379 +3335.927433 +3336.143017 +3336.256271 +3336.416544 +3336.631162 +3336.743650 +3336.925401 +3337.101758 +3337.193000 +3337.481111 +3337.554138 +3337.740885 +3337.988970 +3338.120205 +3338.314144 +3338.507051 +3338.896295 +3339.072418 +3339.291000 +3339.313810 +3339.443480 +3339.517573 +3339.587137 +3339.658299 +3339.699058 +3339.750140 +3339.863726 +3339.929760 +3339.989600 +3340.117006 +3340.294029 +3340.492131 +3340.671718 +3340.783672 +3341.010312 +3341.770085 +3341.983671 +3342.514506 +3343.248938 +3343.514572 +3344.030888 +3344.247405 +3344.517102 +3345.280537 +3345.434250 +3346.044872 +3346.171179 +3346.502481 +3346.813636 +3347.252930 +3347.550698 +3347.892090 +3348.230385 +3349.747233 +3350.142171 +3350.566579 +3350.660619 +3350.863815 +3351.028817 +3351.256888 +3351.834410 +3352.256155 +3352.546930 +3353.748994 +3354.130579 +3354.211198 +3354.282593 +3354.598011 +3354.694747 +3354.813728 +3354.877398 +3354.936572 +3354.984257 +3355.061214 +3355.155020 +3355.194747 +3355.267174 +3355.421953 +3355.475066 +3355.519422 +3355.633874 +3356.640266 +3356.809430 +3356.844129 +3357.324515 +3357.481091 +3357.712093 +3358.048590 +3358.954716 +3360.242327 +3363.029437 +3363.070530 +3363.165202 +3365.509322 +3365.562702 +3365.627737 +3367.763932 +3368.104424 +3369.803157 +3369.859834 +3369.902924 +3369.977283 +3370.649410 +3371.024934 +3374.591231 +3374.916705 +3375.912375 +3375.953334 +3376.304782 +3376.416537 +3382.756291 +3382.807473 +3382.867380 +3383.318262 +3384.416962 +3385.284560 +3386.839104 +3386.987156 +3387.094848 +3387.156586 +3387.302007 +3387.425783 +3387.914361 +3387.977231 +3388.053555 +3388.115426 +3388.227314 +3388.652289 +3388.709332 +3388.779828 +3388.893414 +3388.956984 +3389.040001 +3389.130444 +3389.391715 +3389.543297 +3389.748025 +3390.071402 +3390.168738 +3390.211528 +3390.294945 +3390.562244 +3390.710196 +3391.069769 +3391.175896 +3391.237768 +3391.311227 +3391.392213 +3391.564307 +3392.318020 +3392.801469 +3400.277485 +3400.710652 +3400.774055 +3400.873722 +3401.069359 +3401.177651 +3401.360868 +3401.468493 +3401.537724 +3401.619842 +3401.705489 +3401.927467 +3401.987241 +3402.160001 +3402.323271 +3402.512382 +3402.924403 +3403.182811 +3403.592600 +3403.740919 +3403.786806 +3403.822437 +3403.910116 +3404.148144 +3404.245480 +3404.353372 +3404.473285 +3404.517774 +3404.710082 +3404.773751 +3404.809249 +3404.953138 +3404.968656 +3405.041050 +3405.104021 +3405.189102 +3405.253671 +3405.344247 +3405.532092 +3405.696061 +3405.785006 +3405.889801 +3405.975548 +3406.028162 +3406.103254 +3406.130427 +3406.179045 +3406.214409 +3406.303420 +3406.352404 +3406.427130 +3406.508648 +3406.599224 +3406.707749 +3406.755801 +3406.850473 +3407.085404 +3407.164758 +3407.219037 +3407.267222 +3407.322100 +3407.371351 +3407.437818 +3407.505583 +3407.603952 +3407.672916 +3407.751004 +3407.807548 +3407.900821 +3407.970352 +3408.129992 +3408.193661 +3408.242379 +3408.274347 +3408.303585 +3408.480374 +3408.524064 +3408.640914 +3408.752302 +3408.816438 +3408.861260 +3408.994160 +3409.129058 +3409.199721 +3409.242778 +3409.316371 +3409.444210 +3409.498089 +3409.536484 +3409.571515 +3409.703383 +3409.758595 +3409.807446 +3409.860426 +3409.919667 +3409.976577 +3410.025228 +3410.097755 +3410.317202 +3410.405714 +3410.481471 +3410.553399 +3410.610142 +3410.751901 +3410.796822 +3410.862357 +3410.930022 +3410.986333 +3411.137082 +3411.293225 +3411.345873 +3411.428090 +3411.497787 +3411.540278 +3411.583268 +3411.634617 +3411.686299 +3411.764687 +3411.947903 +3412.030354 +3412.095722 +3412.226957 +3412.266684 +3412.363221 +3412.415002 +3412.450300 +3412.484266 +3412.679737 +3412.766717 +3412.801882 +3412.835315 +3412.877206 +3412.927623 +3412.987762 +3413.081668 +3413.119664 +3413.179837 +3413.335648 +3413.407176 +3413.524092 +3413.607209 +3413.734815 +3413.785031 +3414.017998 +3414.084098 +3414.103512 +3414.162653 +3414.212170 +3414.241174 +3414.300648 +3414.410538 +3414.466316 +3414.509040 +3414.572709 +3414.761986 +3414.821727 +3414.913568 +3414.950831 +3415.002246 +3415.065749 +3415.237044 +3415.347667 +3415.387660 +3415.436278 +3415.481200 +3415.521160 +3415.604676 +3415.656891 +3415.702079 +3415.728019 +3415.766881 +3415.878302 +3415.937610 +3416.038176 +3416.086427 +3416.156657 +3416.189591 +3416.240640 +3416.299414 +3416.376737 +3416.440040 +3416.474206 +3416.512368 +3416.554459 +3416.589091 +3416.671109 +3416.722990 +3416.786227 +3416.830849 +3416.891521 +3416.931248 +3416.987425 +3417.046833 +3417.211035 +3417.299879 +3417.379366 +3417.426186 +3417.493552 +3417.534112 +3417.571108 +3417.650428 +3417.684628 +3417.767811 +3417.859919 +3417.957654 +3418.019326 +3418.081730 +3418.125653 +3418.224154 +3418.278100 +3418.324820 +3418.393018 +3418.456788 +3418.631646 +3418.678499 +3418.823621 +3418.909834 +3418.990487 +3419.031379 +3419.129881 +3419.178732 +3419.206038 +3419.315795 +3419.365079 +3419.419857 +3419.460683 +3419.553024 +3419.610300 +3419.696147 +3419.748262 +3419.811598 +3419.864679 +3419.908268 +3419.975235 +3420.000343 +3420.057919 +3420.095681 +3420.212397 +3420.274535 +3420.374635 +3420.532244 +3420.583892 +3420.659083 +3420.740335 +3420.771837 +3420.890052 +3421.028913 +3421.082393 +3421.154188 +3421.213362 +3421.272136 +3421.319622 +3421.384990 +3421.448460 +3421.491484 +3421.589785 +3421.630211 +3421.673635 +3421.724617 +3421.793448 +3421.883924 +3421.959648 +3422.059681 +3422.119288 +3422.176498 +3422.237237 +3422.289418 +3422.368772 +3422.464510 +3422.572435 +3422.648026 +3422.774799 +3422.812528 +3422.870570 +3422.915458 +3422.965741 +3423.022484 +3423.063177 +3423.098375 +3423.133007 +3423.216390 +3423.270603 +3423.395944 +3423.461745 +3423.538534 +3423.706766 +3423.782524 +3423.923216 +3424.140998 +3424.172833 +3424.313559 +3424.343895 +3424.390548 +3424.478693 +3424.536769 +3424.621584 +3424.700804 +3424.777494 +3424.828377 +3424.877727 +3424.987384 +3425.141596 +3425.192379 +3425.250521 +3425.312725 +3425.434803 +3425.592945 +3425.648023 +3425.680524 +3425.722948 +3425.797107 +3425.849854 +3425.905332 +3425.964806 +3426.206098 +3426.249621 +3426.304333 +3426.343194 +3426.391878 +3426.460776 +3426.623147 +3426.662707 +3426.720083 +3426.775128 +3426.872397 +3426.934102 +3426.972664 +3427.033170 +3427.074861 +3427.216719 +3427.244824 +3427.279157 +3427.332104 +3427.461807 +3427.518684 +3427.564904 +3427.619616 +3427.660042 +3427.705830 +3427.746422 +3427.854481 +3427.923478 +3428.099069 +3428.169166 +3428.221247 +3428.275426 +3428.304697 +3428.411290 +3428.435233 +3428.484550 +3428.533002 +3428.615386 +3428.649985 +3428.689378 +3428.749984 +3428.809159 +3428.857310 +3428.903531 +3428.951083 +3429.066667 +3429.197470 +3429.247986 +3429.313321 +3429.350850 +3429.430337 +3429.473593 +3429.532368 +3429.571762 +3429.756910 +3429.869297 +3429.916317 +3430.027173 +3430.073560 +3430.108325 +3430.110656 +3430.171761 +3430.231934 +3430.335131 +3430.389177 +3430.426040 +3430.544755 +3430.598501 +3430.654245 +3430.809956 +3430.853113 +3430.938460 +3430.974458 +3431.019546 +3431.055676 +3431.153112 +3431.202330 +3431.244654 +3431.354910 +3431.410022 +3431.453845 +3431.536828 +3431.575556 +3431.626472 +3431.731833 +3432.038493 +3432.073025 +3432.138393 +3432.187976 +3432.237627 +3432.274257 +3432.374923 +3432.472858 +3432.555275 +3432.584979 +3432.628535 +3432.673024 +3432.711119 +3432.754076 +3432.847982 +3432.909154 +3432.961269 +3433.006224 +3433.063933 +3433.155941 +3433.253443 +3433.335461 +3433.403992 +3433.574255 +3433.627735 +3433.658737 +3433.697765 +3433.741921 +3433.782780 +3433.842054 +3433.880882 +3433.902860 +3433.920775 +3433.962833 +3434.014714 +3434.078617 +3434.117845 +3434.143119 +3434.249113 +3434.288674 +3434.324404 +3434.365064 +3434.449546 +3434.543718 +3434.589739 +3434.716512 +3434.784078 +3434.839822 +3434.911450 +3434.956205 +3434.992303 +3435.054574 +3435.147081 +3435.201660 +3435.332662 +3435.381879 +3435.463664 +3435.487640 +3435.514180 +3435.609185 +3435.819708 +3435.877350 +3435.945648 +3436.048512 +3436.089071 +3436.168225 +3436.232561 +3436.500293 +3436.555571 +3436.622138 +3436.663330 +3436.699127 +3436.752441 +3436.826800 +3436.871322 +3436.908385 +3436.956436 +3437.041351 +3437.085208 +3437.129696 +3437.188671 +3437.225367 +3437.281111 +3437.328031 +3437.372720 +3437.420539 +3437.458334 +3437.495297 +3437.543815 +3437.578281 +3437.678247 +3437.731194 +3437.778880 +3437.864794 +3437.973185 +3438.110148 +3438.173485 +3438.274717 +3438.320404 +3438.405186 +3438.448709 +3438.522602 +3438.585373 +3438.745312 +3438.771719 +3438.812512 +3438.913611 +3439.070487 +3439.216241 +3439.274683 +3439.325065 +3439.363494 +3439.395928 +3439.469254 +3439.578745 +3439.681409 +3439.693397 +3439.738185 +3439.863060 +3439.910180 +3439.972351 +3440.025831 +3440.098891 +3440.160329 +3440.210246 +3440.259996 +3440.481741 +3440.538284 +3440.698258 +3440.734621 +3440.850106 +3440.903086 +3440.952137 +3441.015840 +3441.075913 +3441.189799 +3441.300721 +3441.357531 +3441.419702 +3441.516805 +3441.541047 +3441.615939 +3441.698190 +3441.768286 +3441.815706 +3441.851170 +3441.875579 +3441.914607 +3442.099488 +3442.321133 +3442.425129 +3442.571383 +3442.682671 +3442.731322 +3442.819068 +3443.045841 +3443.173447 +3443.229058 +3443.290929 +3443.348671 +3443.416204 +3443.527026 +3443.589563 +3443.685800 +3443.765887 +3443.826127 +3443.875810 +3443.920932 +3443.975777 +3444.018667 +3444.056796 +3444.103715 +3444.137615 +3444.188730 +3444.311674 +3444.429023 +3444.483069 +3444.546505 +3444.590928 +3444.619799 +3444.655297 +3444.748170 +3444.805013 +3444.869848 +3444.910974 +3444.964953 +3445.011140 +3445.056928 +3445.105113 +3445.177407 +3445.218899 +3445.264587 +3445.427823 +3445.471879 +3445.537580 +3445.617300 +3445.675442 +3445.712405 +3445.741809 +3445.749501 +3445.792625 +3445.838312 +3445.983867 +3446.062421 +3446.109508 +3446.163387 +3446.215235 +3446.293057 +3446.330120 +3446.371412 +3446.552697 +3446.605345 +3446.658491 +3446.741475 +3446.784199 +3446.837312 +3446.932717 +3446.985497 +3447.155860 +3447.227855 +3447.263086 +3447.304112 +3447.367482 +3447.413669 +3447.457691 +3447.606742 +3447.670945 +3447.720195 +3447.850798 +3447.890292 +3447.937278 +3447.974074 +3448.015133 +3448.063219 +3448.105177 +3448.161154 +3448.200681 +3448.355859 +3448.525656 +3448.573541 +3448.822392 +3448.865915 +3448.961153 +3449.002678 +3449.036411 +3449.079202 +3449.178169 +3449.264283 +3449.311935 +3449.344070 +3449.431083 +3449.467613 +3449.509238 +3449.549531 +3449.652128 +3449.708738 +3449.790589 +3449.831282 +3449.873007 +3449.921492 +3449.966047 +3450.008704 +3450.131015 +3450.183596 +3450.279100 +3450.323589 +3450.493985 +3450.543869 +3450.583662 +3450.639240 +3450.680199 +3450.778134 +3450.822290 +3450.868344 +3450.903142 +3450.941604 +3451.020025 +3451.065646 +3451.107538 +3451.154358 +3451.170775 +3451.211001 +3451.246665 +3451.290088 +3451.382130 +3451.472739 +3451.555090 +3451.682562 +3451.718693 +3451.760518 +3451.811966 +3451.862982 +3452.005639 +3452.038373 +3452.120391 +3452.157653 +3452.283594 +3452.388189 +3452.472738 +3452.512398 +3452.563580 +3452.655688 +3452.735209 +3452.772971 +3452.866577 +3452.910933 +3452.953057 +3452.996614 +3453.036041 +3453.129048 +3453.182128 +3453.220156 +3453.316160 +3453.413030 +3453.455887 +3453.480130 +3453.562947 +3453.599244 +3453.641768 +3453.765377 +3453.813496 +3453.856686 +3453.895214 +3453.959350 +3454.065144 +3454.151924 +3454.192816 +3454.337904 +3454.428247 +3454.463878 +3454.507268 +3454.615660 +3454.680928 +3454.726116 +3454.770505 +3454.908300 +3455.030411 +3455.075100 +3455.106635 +3455.226814 +3455.326082 +3455.373767 +3455.427847 +3455.480161 +3455.589884 +3455.644297 +3455.695246 +3455.730976 +3455.810330 +3455.856551 +3455.894779 +3455.937903 +3456.003670 +3456.022884 +3456.085455 +3456.205701 +3456.249957 +3456.299308 +3456.353154 +3456.442431 +3456.485987 +3456.550889 +3456.593080 +3456.627779 +3456.688751 +3456.729377 +3456.779860 +3456.846660 +3456.940333 +3456.990682 +3457.194345 +3457.280259 +3457.321351 +3457.440632 +3457.468004 +3457.521451 +3457.564308 +3457.610928 +3457.655950 +3457.692546 +3457.733738 +3457.786219 +3457.824880 +3457.872166 +3457.921151 +3457.971933 +3458.090881 +3458.143129 +3458.230441 +3458.266838 +3458.308896 +3458.411693 +3458.502502 +3458.644027 +3458.700837 +3458.750221 +3458.798706 +3458.841796 +3458.921183 +3458.958512 +3459.002102 +3459.065305 +3459.113457 +3459.216621 +3459.325079 +3459.360177 +3459.413557 +3459.495908 +3459.546990 +3459.692711 +3459.733736 +3459.774329 +3459.814789 +3459.898072 +3459.961042 +3460.026643 +3460.081189 +3460.143426 +3460.193010 +3460.232304 +3460.283153 +3460.329473 +3460.368401 +3460.419850 +3460.566636 +3460.601634 +3460.643859 +3460.742027 +3460.929673 +3460.978091 +3461.020648 +3461.048920 +3461.086682 +3461.133335 +3461.294574 +3461.364737 +3461.413621 +3461.476758 +3461.527807 +3461.578723 +3461.630804 +3461.754514 +3461.779788 +3461.823877 +3461.915452 +3462.002332 +3462.073794 +; +1.484214 +1.488443 +1.572959 +2.639624 +4.002993 +4.238624 +4.433062 +16.443307 +16.446237 +22.486125 +23.118025 +23.129680 +23.238172 +29.988481 +29.990313 +29.992011 +29.994142 +30.005631 +30.205264 +30.209061 +30.708794 +31.174028 +31.179423 +31.422413 +37.998563 +38.001793 +38.080581 +38.988905 +40.924967 +51.092023 +51.152430 +51.154328 +51.290325 +51.291923 +51.294454 +51.355227 +51.356992 +51.358790 +51.425157 +51.487195 +51.496119 +51.498084 +51.888793 +52.463983 +52.466481 +53.145801 +53.154526 +56.874169 +56.876966 +59.051156 +59.067507 +59.182791 +59.187287 +59.196910 +59.279927 +59.347027 +59.348892 +59.352721 +59.416457 +59.418522 +59.420820 +59.483490 +59.485655 +59.542564 +59.545661 +59.549491 +59.623883 +59.628245 +60.151522 +60.153819 +60.155917 +60.304235 +60.539600 +60.774498 +60.979659 +60.983222 +61.099506 +61.102003 +61.104268 +65.892009 +66.614852 +66.616650 +66.617882 +66.618348 +66.622944 +66.705994 +66.708558 +66.710623 +66.805727 +66.812521 +67.143989 +67.146286 +67.148384 +67.240525 +67.242856 +67.245187 +67.689276 +67.690875 +67.692406 +67.694138 +67.702963 +67.705960 +67.834831 +67.836496 +67.837228 +67.839193 +67.839659 +67.971594 +67.976023 +67.977121 +67.979353 +68.117647 +68.119712 +68.200964 +68.743388 +68.743754 +68.746285 +68.749881 +69.000797 +69.003461 +72.520740 +72.523171 +72.605488 +72.618575 +72.698029 +72.769158 +72.771422 +72.773520 +74.510914 +77.294728 +78.073215 +78.446841 +78.453135 +79.205981 +79.367153 +85.597250 +85.599548 +85.601346 +85.603444 +85.704610 +85.707673 +86.941538 +87.307006 +87.309303 +87.311301 +87.385727 +87.573772 +87.631714 +87.689856 +87.753925 +87.756322 +90.476000 +97.218351 +97.660575 +97.773229 +97.775726 +97.840728 +97.843225 +97.941227 +98.219482 +98.317218 +98.760940 +101.552080 +101.553978 +101.557008 +101.559073 +101.656741 +101.661670 +101.835829 +104.316446 +104.717211 +110.191332 +110.194362 +110.262161 +110.265091 +110.380043 +110.381841 +110.385071 +110.388334 +110.458331 +110.460629 +110.531125 +113.149604 +113.152268 +116.697419 +116.699983 +118.140674 +118.614234 +118.616764 +118.618163 +118.618696 +118.620194 +118.622126 +118.719129 +120.078634 +120.104675 +120.107206 +121.580731 +121.582562 +121.584294 +121.586492 +121.597181 +121.599679 +121.741070 +121.743335 +121.744067 +121.745866 +121.810667 +121.814330 +121.944800 +121.947131 +121.949229 +122.013364 +122.091053 +123.107403 +123.205837 +123.208368 +123.334808 +123.409267 +123.410965 +123.412664 +123.483060 +123.496913 +123.500776 +123.575101 +124.823951 +124.848893 +124.851490 +125.049226 +125.649724 +125.653154 +125.788219 +125.851922 +126.794578 +126.796210 +126.797975 +126.799374 +126.801505 +126.803569 +126.960612 +126.962311 +126.964109 +126.966040 +126.968105 +127.111661 +127.114924 +127.115890 +127.191015 +127.193945 +128.280291 +128.285619 +129.735768 +132.845688 +132.989977 +132.992075 +133.038828 +133.042058 +133.166567 +133.224309 +133.226973 +133.231102 +133.347952 +133.412854 +133.415584 +133.483050 +134.206492 +134.208391 +134.210255 +134.212320 +134.305560 +134.307558 +134.309290 +134.311687 +134.312220 +134.403695 +134.405660 +135.223674 +135.224340 +135.226405 +135.226871 +135.228536 +135.317713 +135.383081 +135.389442 +135.525372 +135.527370 +135.600664 +137.542953 +137.544618 +137.765996 +137.911217 +137.913049 +138.055240 +138.057205 +138.059236 +140.383276 +141.650175 +141.652539 +143.996260 +147.619266 +151.874673 +153.401978 +153.403909 +153.405208 +153.405707 +153.407272 +153.412301 +153.489657 +153.491721 +153.493619 +153.642470 +153.704109 +153.706107 +153.708005 +153.772240 +153.773939 +153.775570 +153.777369 +153.857455 +153.858721 +153.860985 +153.862350 +162.060111 +164.039663 +165.514653 +165.879155 +165.948186 +178.743278 +178.941479 +179.011110 +182.949001 +183.061389 +183.415401 +183.416833 +183.863686 +183.959123 +184.094455 +184.446702 +188.783428 +193.418521 +193.498408 +193.612127 +193.760212 +193.833006 +193.898174 +194.056749 +194.196476 +194.375097 +194.412193 +194.561777 +194.776362 +194.939166 +195.007830 +195.025379 +195.046458 +195.079292 +195.107997 +195.163807 +195.375795 +195.415456 +195.628243 +195.711293 +195.768502 +195.808162 +195.884519 +196.088215 +196.225478 +196.426577 +196.779290 +196.815121 +196.903499 +196.986117 +197.083219 +197.097938 +197.201867 +197.245124 +197.324644 +197.363472 +197.389246 +197.425444 +197.477158 +197.549619 +197.584051 +197.619916 +197.697238 +197.733602 +197.807395 +197.866369 +197.897404 +197.922712 +197.994541 +198.032569 +198.112855 +198.261174 +198.316718 +198.402033 +198.438929 +198.498636 +198.565735 +198.675292 +198.870863 +199.033467 +199.131336 +199.169398 +199.224343 +199.266667 +199.308325 +199.356943 +199.405495 +199.440127 +199.478522 +199.573327 +199.636730 +199.741792 +199.762038 +200.012953 +200.136863 +200.187179 +200.224342 +200.303529 +200.342024 +200.579220 +200.582383 +200.837561 +200.926173 +200.946552 +201.141058 +201.181584 +201.515116 +201.553944 +201.833731 +202.192172 +202.194736 +202.901629 +202.992937 +203.173823 +203.228768 +204.417544 +205.798262 +211.388300 +211.392796 +212.229724 +213.643576 +217.898950 +220.278767 +226.882890 +226.891082 +226.896709 +228.480990 +228.483454 +228.485519 +228.630074 +229.576161 +229.746590 +229.748954 +229.823713 +229.825678 +229.827409 +229.829807 +229.909893 +230.148688 +230.152018 +230.310426 +230.316952 +233.840159 +235.176688 +235.177687 +235.179985 +235.182182 +235.286245 +235.288476 +235.290441 +238.938056 +238.941752 +240.257269 +240.259167 +240.260965 +240.469856 +240.470489 +240.472154 +240.473885 +240.655603 +240.663496 +240.666992 +240.668957 +243.741814 +243.888734 +244.441014 +245.513274 +246.421232 +246.946839 +246.948871 +246.950635 +246.952733 +247.028924 +247.119533 +247.121398 +247.123129 +247.125094 +247.885999 +247.888563 +247.890694 +247.976675 +248.077674 +248.207844 +248.212406 +248.659325 +252.441506 +253.912367 +254.051461 +254.182563 +254.185393 +254.281930 +254.446632 +255.178133 +255.180897 +255.184760 +255.343434 +255.345299 +255.478666 +256.086157 +256.543999 +258.334240 +261.249123 +261.250921 +261.252985 +261.365506 +261.367071 +261.368536 +261.370102 +261.371833 +261.424547 +261.426412 +261.428243 +261.429875 +261.458047 +261.460078 +261.462176 +261.464607 +261.632605 +262.296907 +262.506131 +262.579324 +262.581855 +262.583887 +263.029374 +265.979155 +266.076324 +267.207325 +267.209456 +267.211554 +267.213452 +267.215217 +267.340825 +267.378454 +267.380785 +267.382650 +268.604260 +275.743447 +275.838752 +275.840650 +275.913410 +275.976580 +275.978312 +276.053836 +276.109614 +276.111212 +276.112811 +276.180177 +276.183140 +276.254536 +277.793062 +277.795260 +277.796126 +277.798124 +277.884637 +277.886402 +277.888367 +277.890431 +277.955133 +278.034920 +278.036752 +278.114307 +278.376212 +279.490463 +279.492727 +279.587999 +279.589897 +279.591795 +279.680107 +279.684569 +279.756597 +279.758828 +279.831921 +279.833919 +279.835651 +285.406408 +285.507407 +288.072040 +289.369274 +289.371039 +289.372771 +289.373970 +289.375635 +289.377300 +289.558685 +289.562414 +289.668641 +289.670639 +289.728315 +289.771505 +293.395511 +293.397276 +293.398841 +293.400506 +293.461245 +293.464408 +293.466207 +293.549224 +293.550922 +293.551754 +293.552620 +293.555784 +293.692513 +293.756449 +293.758148 +293.760112 +293.884288 +293.886319 +293.888284 +293.888917 +293.890615 +293.892347 +293.962377 +293.964608 +294.054151 +295.683787 +295.798106 +295.802401 +295.900170 +295.974596 +295.976161 +295.977626 +295.980790 +296.051885 +296.053650 +296.055215 +296.058379 +296.059844 +296.202701 +296.204765 +296.271998 +296.273696 +296.349587 +296.350919 +296.351718 +296.353683 +296.418984 +296.421648 +296.426144 +296.428408 +297.800068 +297.801933 +297.805530 +297.887947 +297.889679 +297.891377 +297.895140 +298.047721 +298.049319 +298.051017 +298.052216 +298.054780 +298.193575 +298.195306 +298.197337 +298.309026 +298.452316 +303.943652 +304.384711 +304.484844 +304.486575 +304.565729 +304.567328 +304.568959 +304.571024 +304.622872 +304.624670 +304.692602 +304.694367 +304.760002 +304.816045 +304.817744 +304.821174 +304.823172 +304.893901 +304.896532 +305.710783 +305.712681 +305.714479 +305.888838 +305.890936 +305.892834 +305.896630 +305.986907 +305.989637 +306.085808 +306.088039 +306.090103 +306.099394 +306.192601 +306.273753 +308.526631 +308.528230 +308.531260 +308.670187 +308.671919 +308.673551 +308.675682 +308.676947 +308.677480 +308.749375 +308.749675 +308.751706 +308.820604 +308.826964 +311.941413 +311.943444 +311.945276 +312.101419 +312.192129 +312.194726 +312.258496 +312.259994 +312.261493 +312.263291 +312.332921 +312.334886 +312.406148 +312.407846 +312.410510 +312.554066 +312.614639 +314.367285 +314.369383 +314.371114 +314.378740 +314.381038 +314.606578 +314.608144 +314.611274 +314.727158 +314.860025 +314.862089 +314.864320 +314.868616 +314.870514 +314.872612 +314.933718 +314.936581 +314.939079 +315.727656 +315.731319 +316.267016 +316.270579 +316.348268 +316.350033 +316.351632 +316.424559 +316.426523 +316.492457 +316.494056 +316.495554 +316.497119 +316.499184 +316.570446 +316.572644 +316.576207 +316.653696 +317.783731 +317.785929 +317.787727 +317.789725 +317.801047 +319.768678 +322.981628 +322.983260 +322.984759 +322.988488 +323.182727 +323.188288 +323.480695 +323.547628 +323.630113 +326.955717 +326.957249 +326.959114 +327.117322 +327.118887 +327.120319 +327.121917 +327.290482 +327.297708 +327.352919 +327.355084 +327.527611 +327.586585 +327.672699 +327.674631 +327.681890 +327.686053 +327.764674 +331.243625 +331.245556 +331.247321 +331.301500 +331.597903 +331.599502 +331.601000 +331.602565 +331.604697 +331.694274 +331.695839 +331.758176 +331.759975 +331.761673 +331.764070 +331.819748 +331.823411 +331.963471 +331.966834 +332.093574 +332.584383 +332.730403 +332.732401 +333.177589 +333.179420 +333.688011 +333.690975 +333.692573 +333.694438 +333.697535 +334.059739 +334.061471 +334.064235 +334.416948 +334.421977 +334.423808 +334.744720 +334.746452 +334.747917 +334.751613 +334.911287 +334.913451 +334.915682 +336.029701 +336.031299 +336.032731 +336.034329 +336.036194 +336.434029 +336.435661 +336.437126 +336.438724 +336.440589 +336.910053 +336.913083 +336.914715 +336.919377 +337.475587 +337.478617 +337.482080 +337.484844 +337.738657 +337.743652 +337.927667 +337.929432 +337.930964 +337.932762 +338.327401 +338.330497 +338.333961 +338.808586 +338.809984 +338.811516 +338.813347 +338.815812 +339.234659 +339.236324 +339.237756 +339.239288 +339.241186 +339.529397 +339.530996 +339.532394 +339.533993 +339.866959 +339.868891 +339.870689 +339.872887 +340.209583 +340.211248 +340.212680 +340.214278 +340.216177 +340.529496 +340.531228 +340.532760 +340.534491 +340.536756 +340.946579 +340.948210 +340.949609 +340.951108 +340.952906 +340.955203 +341.401190 +341.402889 +341.404387 +341.406085 +341.408283 +341.719871 +341.721636 +341.723201 +341.725066 +341.728929 +342.241183 +342.242815 +342.244213 +342.245778 +342.247576 +342.251572 +342.456501 +342.590167 +342.591832 +342.593297 +342.594929 +342.596927 +343.091632 +343.093430 +343.095028 +343.096860 +343.444578 +343.446210 +343.447642 +343.449207 +343.451138 +343.700023 +343.701654 +343.704685 +343.706549 +344.054901 +344.056499 +344.057898 +344.059429 +344.061228 +344.064691 +344.424098 +344.425729 +344.427128 +344.428726 +344.430625 +344.433155 +344.761360 +344.764390 +344.771750 +345.181773 +345.184703 +345.190297 +345.507580 +345.509212 +345.510577 +345.512175 +345.513973 +345.516871 +345.874080 +345.875778 +345.881206 +346.346507 +346.349470 +346.355265 +346.667352 +346.670349 +346.671814 +346.673646 +347.008144 +347.014605 +347.471381 +347.474478 +347.478041 +347.892992 +347.897687 +347.899952 +348.281603 +348.283268 +348.284600 +348.286232 +348.288030 +348.291427 +348.695122 +348.696721 +348.698153 +348.699718 +348.701616 +349.041109 +349.042774 +349.044173 +349.045705 +349.047536 +349.410606 +349.412271 +349.413703 +349.415335 +349.417366 +349.786363 +349.787795 +349.789394 +349.791358 +349.793823 +350.167149 +350.168814 +350.170213 +350.171811 +350.173742 +350.518664 +350.521694 +350.523259 +350.525224 +350.863618 +350.865283 +350.866715 +350.868347 +350.870345 +351.219995 +351.221660 +351.223059 +351.224657 +351.226622 +351.595952 +351.597617 +351.600614 +351.605809 +351.898083 +351.899781 +351.902911 +352.257024 +352.258722 +352.260154 +352.261719 +352.263850 +352.594552 +352.596184 +352.597616 +352.599248 +352.601079 +353.012134 +353.013833 +353.015265 +353.016930 +353.019494 +353.354259 +353.355890 +353.676037 +353.677668 +353.680665 +353.682597 +354.019826 +354.024588 +354.384161 +354.385793 +354.387191 +354.388756 +354.390655 +354.694650 +354.900677 +354.903874 +354.906005 +355.327950 +355.329615 +355.331047 +355.332645 +355.334543 +355.634942 +355.636374 +355.637939 +355.639804 +355.642335 +356.046564 +356.048195 +356.049627 +356.051192 +356.053024 +356.374569 +356.379231 +356.381062 +356.750226 +356.753290 +356.754788 +356.756753 +357.037305 +357.040502 +357.044465 +357.376499 +357.378164 +357.379563 +357.383226 +357.887354 +357.889153 +357.890751 +357.892649 +358.183291 +358.564510 +358.566208 +358.567673 +358.938469 +358.940200 +358.943331 +358.945429 +359.266474 +359.679094 +359.680792 +359.682291 +359.684023 +359.686220 +360.010862 +360.012527 +360.013992 +360.335770 +360.338867 +360.340499 +360.342364 +360.664874 +360.666572 +360.668004 +360.669603 +360.671701 +361.034404 +361.039133 +361.041231 +361.350787 +361.352519 +361.354018 +361.355683 +361.358347 +361.676262 +361.677927 +361.679392 +361.681024 +361.683321 +362.012692 +362.014357 +362.015822 +362.017387 +362.019318 +362.342761 +362.344393 +362.345825 +362.347390 +362.349754 +362.657479 +362.658878 +362.662441 +363.108661 +363.110359 +363.111758 +363.115421 +363.378824 +363.380522 +363.382021 +363.387349 +363.660442 +363.662107 +363.663539 +363.665171 +363.667269 +363.672064 +364.050219 +364.053549 +364.055913 +364.375759 +364.378956 +364.380621 +364.382586 +364.703332 +364.705030 +364.706462 +365.014920 +365.016585 +365.019815 +365.021846 +365.313487 +365.315219 +365.316817 +365.318782 +365.601133 +365.602831 +365.604330 +365.605961 +365.608226 +365.781386 +365.783151 +365.784749 +365.786714 +365.940227 +365.942092 +365.943856 +365.962038 +365.966001 +366.058542 +366.061139 +366.296870 +366.299001 +366.301032 +370.481814 +370.483479 +370.484977 +370.486842 +370.494401 +370.496599 +370.625803 +370.694168 +370.695966 +370.697531 +370.699463 +370.767561 +370.770159 +370.770458 +370.771424 +370.839190 +370.840688 +370.842686 +370.844484 +370.923505 +372.856104 +372.869424 +374.098460 +374.102223 +374.106719 +374.108683 +374.110948 +374.229929 +374.231560 +374.233059 +374.233592 +374.234757 +374.235989 +374.299226 +374.301790 +374.373985 +374.378447 +375.585871 +375.730660 +377.453535 +378.127427 +380.778907 +392.377463 +392.483857 +393.794145 +393.965906 +394.471867 +394.751120 +395.159045 +395.394410 +405.599228 +405.599961 +405.644216 +405.706854 +405.758735 +406.066460 +406.441751 +406.504222 +406.634692 +406.665760 +407.583608 +408.191100 +408.236388 +408.329462 +408.370188 +408.420437 +408.579778 +415.657160 +415.869414 +416.014136 +416.271245 +416.374142 +416.418764 +416.558524 +416.695421 +416.728787 +416.805344 +416.845804 +416.906709 +416.958025 +416.985430 +417.016000 +417.037179 +417.097851 +417.204378 +417.279569 +417.404977 +417.486829 +417.535213 +417.653395 +417.702379 +417.764917 +417.865117 +417.899649 +417.962552 +418.034414 +418.073774 +418.101313 +418.145536 +418.196352 +418.275306 +418.324657 +418.354726 +418.409505 +418.519728 +418.571010 +418.614700 +418.667314 +418.722059 +418.766481 +418.775738 +418.792122 +418.864683 +418.905342 +418.946234 +418.998649 +419.071675 +419.159687 +419.246534 +419.344769 +419.419361 +419.457789 +419.539607 +419.598914 +419.639640 +419.674938 +419.731915 +419.784229 +419.812567 +419.842404 +419.967412 +419.994552 +420.011468 +420.047399 +420.117562 +420.173173 +420.321424 +420.541005 +420.755124 +420.806006 +420.839772 +420.891953 +420.932513 +420.958354 +421.034910 +421.052459 +421.081697 +421.102210 +421.119226 +421.189189 +421.225386 +421.293784 +421.352892 +421.528982 +421.564047 +421.580664 +421.636808 +421.666878 +421.695416 +421.747097 +421.791187 +421.849262 +421.875069 +421.933677 +421.982295 +422.060184 +422.105372 +422.143267 +422.196115 +422.230414 +422.261549 +422.298445 +422.349295 +422.408402 +422.463214 +422.554389 +422.603640 +422.677566 +422.716560 +422.741569 +422.812098 +422.879464 +423.000876 +423.032544 +423.163646 +423.260383 +423.296047 +423.338138 +423.457219 +423.534775 +423.596246 +423.609733 +423.633442 +423.877731 +423.926849 +423.948594 +423.972869 +424.024651 +424.070372 +424.180861 +424.285656 +424.441067 +424.472469 +424.675066 +424.705536 +424.728646 +424.986388 +425.027014 +425.126881 +425.264876 +425.323684 +425.364776 +425.394213 +425.493913 +425.585355 +425.700107 +425.756284 +425.809631 +425.871169 +425.904269 +426.022518 +426.117789 +426.210430 +426.320519 +426.341099 +426.377362 +426.405501 +426.442397 +426.594945 +426.639400 +426.717655 +426.731841 +426.812227 +426.954318 +427.112460 +427.159979 +427.266406 +427.341364 +427.384155 +427.415090 +427.512892 +427.615024 +427.816522 +427.852519 +427.958779 +428.001637 +428.192113 +428.219918 +428.282489 +428.419352 +428.472299 +428.530840 +428.600104 +428.643427 +428.685352 +428.731273 +428.808762 +428.855848 +428.904699 +428.944626 +429.016654 +429.049288 +429.114489 +429.169368 +429.284253 +429.337666 +429.463706 +429.532837 +429.592144 +429.639697 +429.720116 +429.936233 +430.065004 +430.235134 +430.408194 +430.491211 +430.781587 +431.359542 +431.567700 +431.605163 +431.632435 +432.071163 +432.122778 +432.162205 +432.224010 +432.344523 +432.408892 +432.672727 +432.721645 +432.873726 +432.878222 +433.060240 +433.260139 +434.066332 +434.105293 +434.203562 +434.395503 +434.893571 +435.171293 +435.212285 +435.913883 +436.253976 +436.280449 +436.356373 +436.437958 +436.609886 +437.022507 +437.960668 +440.759033 +440.873185 +440.875183 +440.914178 +440.916475 +441.529695 +441.531793 +441.533924 +441.536188 +441.540751 +442.489767 +443.692363 +443.694595 +443.774748 +446.836150 +448.948602 +448.951399 +451.238976 +455.934642 +455.936440 +455.939204 +463.733036 +463.735567 +463.891910 +464.068434 +478.351669 +478.353334 +478.354234 +478.355133 +478.355732 +478.552002 +478.553734 +478.557896 +478.559595 +478.683571 +478.684270 +478.685202 +478.687000 +478.751336 +479.124329 +479.806380 +480.230988 +485.223358 +485.225356 +485.227320 +485.229618 +485.231583 +485.233914 +485.362785 +485.364483 +485.366148 +485.368446 +485.501845 +485.503710 +485.505508 +485.507773 +485.568246 +487.001644 +487.003909 +487.141105 +487.239806 +487.242403 +490.208800 +493.663109 +502.288276 +502.289674 +502.290973 +502.292405 +502.293870 +502.295535 +502.354110 +502.357306 +502.359038 +502.364066 +502.422075 +502.425072 +502.426670 +502.488175 +502.492471 +502.494602 +502.558438 +502.562368 +502.566064 +502.567996 +503.220542 +503.223506 +503.965030 +503.970858 +504.388074 +504.390738 +504.393335 +505.259734 +510.084938 +510.673449 +510.676712 +511.339415 +511.357364 +511.778642 +511.781173 +511.885302 +511.888266 +511.975179 +511.978942 +512.847040 +512.850136 +514.119399 +514.121264 +514.123062 +514.257528 +514.259459 +514.261224 +514.263289 +514.269849 +514.273778 +514.411640 +514.412572 +514.413338 +514.415070 +514.542376 +515.323128 +515.325325 +515.327090 +515.329022 +515.416667 +515.418932 +515.498186 +515.693191 +515.695855 +515.806211 +516.038245 +516.243373 +518.187793 +518.638176 +518.641006 +518.753760 +518.924456 +518.949997 +519.122258 +519.228685 +519.231182 +519.233247 +519.350863 +520.128184 +520.225820 +521.301776 +523.593216 +523.594381 +523.595247 +523.597112 +523.597711 +523.687055 +523.826815 +525.472102 +525.474133 +525.475898 +525.477863 +525.546461 +525.548159 +525.549791 +525.551656 +525.628812 +525.631975 +525.633107 +525.635905 +525.772834 +525.774433 +525.775565 +525.905335 +525.908965 +525.974099 +525.978129 +529.822514 +529.824279 +529.825910 +529.827742 +529.893076 +529.895041 +529.897206 +530.013789 +530.015720 +530.076493 +530.089447 +532.401432 +533.779120 +534.103795 +537.403858 +540.476383 +540.479080 +540.578580 +540.635823 +540.718740 +540.720771 +540.861797 +540.863562 +540.865293 +540.926299 +540.928264 +540.995696 +540.997627 +541.119905 +541.122236 +541.130661 +541.133192 +543.096726 +543.739283 +544.171750 +544.174148 +544.176013 +544.178077 +544.264058 +544.267488 +544.269552 +544.272383 +544.274181 +544.275813 +544.277711 +544.414807 +544.489599 +544.491130 +544.558663 +544.635752 +544.698889 +545.272781 +545.280940 +545.384336 +545.386701 +545.388832 +545.625495 +545.627893 +545.851835 +545.853866 +545.978375 +545.981072 +545.990629 +547.166253 +548.007311 +548.008876 +548.010008 +548.186831 +550.618464 +550.620928 +552.306374 +552.307939 +552.309404 +552.311069 +552.313434 +552.440040 +552.441505 +552.442904 +552.443836 +552.444636 +552.561219 +552.562584 +552.565848 +552.691655 +552.693586 +552.695584 +552.764582 +553.474938 +553.918194 +553.920925 +553.927385 +554.280931 +555.046831 +557.619556 +557.621454 +557.623185 +557.690351 +557.692083 +557.693648 +557.695779 +557.767774 +557.769306 +557.771037 +557.830678 +557.832376 +557.833941 +557.835772 +557.906335 +557.907900 +557.909399 +557.910231 +558.037371 +558.056585 +559.131142 +559.133707 +559.928078 +559.929776 +562.549621 +563.781188 +563.872097 +564.228940 +564.231304 +564.233002 +564.235600 +564.378690 +564.385483 +564.387581 +564.389545 +564.531037 +564.533468 +564.535433 +566.156177 +566.828571 +566.830902 +566.834298 +566.842690 +567.064534 +567.067032 +567.154278 +567.156509 +567.158374 +567.319479 +567.321677 +567.323708 +567.416515 +568.091107 +570.374788 +571.125536 +571.185509 +571.186908 +571.189772 +571.258170 +571.262632 +571.384810 +571.386541 +571.388140 +571.389805 +571.391936 +571.392402 +571.460734 +571.462532 +571.464397 +571.548146 +572.416577 +574.393498 +574.395629 +574.397727 +574.464727 +574.468789 +574.537221 +574.538786 +574.540251 +574.542016 +574.543215 +574.673218 +574.807351 +574.811080 +574.812445 +574.813345 +574.816108 +574.932026 +574.934923 +575.727929 +577.050106 +578.082272 +578.083771 +578.085569 +578.145043 +578.146641 +578.148140 +578.149805 +578.151869 +578.230690 +578.293694 +578.296824 +578.360461 +578.367520 +578.435552 +578.438083 +578.439948 +578.442212 +578.444010 +579.950569 +580.114838 +580.120798 +580.796622 +582.086531 +582.161789 +582.164320 +582.423660 +582.425525 +582.427256 +582.499750 +582.501415 +582.503014 +582.503713 +582.632551 +582.635947 +582.751132 +584.185163 +584.438576 +584.441540 +585.134546 +585.591789 +585.823523 +585.901079 +585.902877 +585.904542 +585.977003 +585.978601 +585.980167 +585.981865 +585.983796 +585.987393 +586.173440 +586.175171 +586.178668 +586.633912 +586.651594 +587.484494 +587.486825 +587.488690 +587.492752 +587.589322 +587.663015 +587.753059 +588.846531 +590.020855 +590.210798 +590.212796 +590.214595 +591.403371 +591.405303 +591.474667 +591.601573 +591.603271 +591.661679 +591.662379 +591.665109 +591.667107 +592.577030 +593.522716 +593.524381 +593.525947 +593.527778 +593.602936 +593.604701 +593.757948 +593.759946 +593.829976 +593.831507 +593.832906 +593.834371 +593.835970 +593.909995 +593.911727 +593.913425 +593.914291 +593.916189 +594.107431 +594.109662 +594.115490 +594.183721 +594.256882 +594.257914 +594.260445 +594.328443 +594.336568 +595.620383 +595.629341 +597.525909 +597.540861 +598.930770 +598.932368 +598.933900 +598.935698 +599.002298 +599.003863 +599.005295 +599.006893 +599.008825 +599.087113 +599.088545 +599.156610 +599.159008 +599.218082 +599.219947 +599.279820 +599.281685 +599.283383 +599.285315 +599.287113 +603.145950 +603.221308 +603.222873 +603.224305 +603.225837 +603.227868 +603.374222 +603.379117 +603.448614 +603.450679 +603.452710 +603.591604 +603.595334 +603.811651 +603.947914 +603.952809 +606.429996 +606.515444 +606.522204 +606.675084 +606.676849 +606.678514 +606.682943 +606.756103 +606.831261 +606.831761 +606.833659 +606.971987 +606.975717 +606.980312 +606.981244 +606.983775 +606.985607 +607.059067 +607.061065 +607.134924 +607.205853 +607.207951 +607.259599 +607.860364 +608.750573 +608.755968 +608.758432 +608.896028 +608.897826 +608.979544 +608.981742 +609.043547 +609.045911 +609.259064 +613.225327 +613.228291 +613.234518 +613.301485 +613.448937 +613.450902 +613.452733 +613.576276 +613.576909 +613.578474 +613.580172 +615.878538 +615.880370 +616.072511 +616.073909 +616.075508 +616.077173 +616.122527 +616.124359 +616.126024 +616.128055 +616.331352 +616.332917 +616.396020 +616.397652 +616.399150 +616.400716 +616.402414 +616.403346 +616.406044 +616.467449 +616.532184 +617.348933 +617.350964 +617.352663 +617.355560 +617.401048 +617.404045 +617.565883 +617.729885 +617.914800 +622.072172 +622.074103 +622.076068 +622.194682 +622.196381 +622.259551 +622.327017 +622.388722 +622.390653 +622.398079 +622.462181 +622.463846 +622.464845 +622.466077 +622.536740 +622.538671 +625.087021 +625.088952 +625.090684 +625.286920 +625.288785 +625.344330 +625.347360 +625.488419 +625.562045 +625.564110 +625.628345 +625.631309 +625.695245 +625.697310 +628.315456 +628.445692 +630.630805 +630.632669 +630.634434 +630.695839 +630.697405 +630.780388 +630.781920 +630.783585 +630.844790 +630.846355 +630.847821 +630.849586 +630.853282 +630.918150 +630.919649 +630.986482 +630.988147 +631.054447 +631.056412 +631.060341 +631.128673 +631.195506 +631.197970 +631.250851 +632.481952 +639.748444 +639.750642 +639.752607 +639.793633 +639.795264 +639.796829 +639.798594 +639.927798 +639.988737 +639.989370 +640.117309 +640.121604 +640.123336 +640.126699 +644.402253 +644.404117 +644.405949 +644.407747 +644.488966 +644.632955 +644.634587 +644.636285 +644.638083 +644.704883 +644.825429 +644.827294 +644.828992 +644.831057 +645.804349 +645.887533 +645.889364 +645.891029 +645.891495 +645.893460 +645.895258 +645.897223 +646.096590 +646.098621 +646.100852 +646.168718 +646.170782 +646.172514 +646.174579 +646.254365 +647.193792 +648.142076 +649.096254 +651.721792 +651.823357 +652.667612 +655.472405 +655.474003 +655.475535 +655.478166 +655.599078 +655.600810 +655.602475 +655.604373 +655.606138 +655.607736 +655.724952 +655.727050 +655.729181 +655.733643 +655.735475 +655.805438 +657.031011 +657.838503 +657.841034 +657.854687 +657.856751 +657.858716 +657.951290 +658.034607 +658.114060 +658.116325 +658.118223 +658.213894 +658.267507 +658.269904 +658.283458 +660.013159 +660.015324 +660.091614 +660.093279 +660.094978 +660.164108 +660.166173 +660.170302 +660.233672 +660.238001 +660.371068 +660.373099 +660.375097 +660.377162 +660.379326 +660.381391 +660.447724 +660.456582 +660.906365 +661.418886 +661.422182 +661.431273 +661.774863 +661.809028 +662.042029 +663.302067 +663.390778 +663.392943 +663.394841 +663.441528 +663.443659 +663.445790 +663.593109 +663.595007 +663.596672 +663.598404 +663.600502 +663.711790 +663.719849 +665.332568 +665.338529 +665.450317 +665.452381 +665.524842 +665.526507 +665.528039 +665.529771 +665.531902 +665.683883 +665.685315 +665.686714 +665.687013 +665.688245 +665.816084 +665.816850 +665.817782 +665.950117 +665.951948 +666.014019 +666.275391 +667.337894 +667.341957 +667.346952 +667.458407 +667.460471 +667.461271 +667.544953 +667.607624 +667.609888 +667.681284 +667.683248 +667.685080 +667.770894 +668.868395 +668.871759 +669.701328 +669.703726 +669.709087 +669.718444 +669.720942 +669.882880 +670.050179 +670.052377 +670.054275 +670.965629 +671.928765 +673.136323 +673.139786 +673.200193 +673.265427 +673.336689 +673.337422 +673.467891 +673.471055 +673.539553 +673.541518 +673.543249 +673.543615 +673.610449 +673.613612 +673.616243 +676.127962 +676.270686 +676.272950 +676.359763 +676.363126 +676.365258 +676.472284 +676.475680 +676.541848 +676.544878 +676.548508 +676.548874 +676.692297 +676.762160 +676.766056 +680.671980 +680.674045 +680.676009 +680.695590 +681.072679 +681.074377 +681.076042 +681.154064 +681.155829 +681.225393 +681.290294 +681.359492 +681.361923 +681.433484 +681.505845 +681.507344 +681.585865 +684.039742 +684.128453 +684.130118 +684.131584 +684.135180 +684.282100 +684.283598 +684.285330 +684.357291 +684.358789 +684.364917 +684.435846 +684.511303 +684.513335 +684.575206 +684.577237 +684.643171 +684.657058 +684.659455 +688.293384 +688.353324 +688.355622 +688.414396 +688.590021 +688.593184 +688.593750 +688.594716 +688.713497 +688.715795 +688.717959 +690.297012 +690.585756 +690.680628 +691.126282 +691.128047 +691.129612 +691.133275 +691.135706 +691.235273 +691.236904 +691.238669 +691.240468 +691.295446 +691.298842 +691.300674 +691.434074 +691.435672 +691.438569 +691.440401 +691.516991 +691.518789 +691.519655 +691.520487 +691.521586 +691.523851 +691.644630 +691.646728 +691.648992 +691.656285 +691.658283 +691.660147 +691.777397 +692.100740 +692.408498 +692.750256 +692.752354 +692.872467 +693.265041 +693.267072 +693.337868 +693.547059 +693.548857 +693.550522 +693.742063 +693.743795 +693.744761 +693.745460 +693.747458 +693.823082 +694.031540 +695.650020 +696.393742 +696.396173 +696.663772 +696.665604 +696.667369 +696.676693 +696.833103 +696.835034 +696.966169 +697.019649 +697.021348 +697.098570 +700.727271 +700.729369 +700.731034 +700.804261 +700.935563 +700.937294 +700.938993 +700.997501 +701.002929 +701.072792 +701.074957 +701.196135 +701.198100 +701.199865 +701.201863 +702.443653 +702.446084 +702.595068 +702.598265 +706.146080 +706.148445 +706.150776 +707.786605 +707.944980 +707.946678 +708.008616 +708.197760 +708.199458 +708.327597 +708.329228 +708.331326 +708.404420 +710.052304 +710.109480 +710.111811 +710.116273 +711.234620 +711.413474 +711.415572 +711.417770 +711.702252 +711.791995 +712.014606 +712.018369 +712.087400 +712.090397 +712.093360 +712.316903 +712.398022 +713.796356 +714.694790 +714.697654 +714.811673 +714.813404 +714.814969 +715.236448 +715.239844 +715.305079 +715.307843 +715.527390 +715.529088 +715.530620 +715.534649 +715.543274 +715.544905 +715.638345 +715.650267 +715.652797 +715.831452 +715.834049 +717.251231 +717.253362 +717.257291 +717.625856 +717.630085 +717.631750 +717.634947 +717.826089 +717.830484 +717.900214 +717.901813 +717.903245 +717.908007 +718.066914 +718.068746 +718.070411 +718.079069 +718.246268 +718.248166 +718.310903 +718.317330 +718.491756 +718.736744 +718.739341 +719.064382 +719.068378 +719.207273 +719.209237 +719.211169 +719.343769 +719.346633 +719.654858 +719.656590 +719.658121 +719.659986 +719.663316 +719.861285 +719.904042 +719.905774 +719.907372 +719.909137 +720.142603 +720.364714 +720.366412 +720.367911 +720.371541 +720.442303 +720.445833 +720.782396 +720.784061 +720.785460 +720.786991 +720.788989 +720.994384 +720.998813 +721.156488 +721.158120 +721.159618 +721.161250 +721.163348 +721.239638 +721.241503 +721.243135 +721.530647 +721.577633 +721.579265 +721.582395 +721.584526 +721.951659 +721.953990 +721.956221 +721.983660 +721.985192 +722.361382 +722.362914 +722.364612 +722.367543 +722.371772 +722.373470 +722.563846 +722.565511 +722.658085 +722.854822 +722.856653 +722.858218 +722.860249 +723.209999 +723.212164 +723.214262 +723.592217 +723.607002 +723.898943 +723.900708 +723.902173 +723.903805 +723.906835 +723.912663 +723.914428 +724.295013 +724.296911 +724.318623 +724.320288 +724.321653 +724.323218 +724.325083 +724.327947 +724.734973 +724.736671 +724.738070 +724.739701 +724.741766 +725.056984 +725.058616 +725.061779 +725.063810 +725.326314 +725.328412 +725.330344 +725.737403 +725.739168 +725.740799 +725.742731 +726.101239 +726.457349 +726.458947 +726.460379 +726.461944 +726.463842 +726.467938 +726.793279 +726.794911 +726.796309 +726.797908 +726.799739 +726.803769 +727.071900 +727.073632 +727.075064 +727.076729 +727.079126 +727.556582 +727.558313 +727.559812 +727.561510 +727.563841 +727.661976 +728.035069 +728.036801 +728.038266 +728.039931 +728.042196 +728.417520 +728.420617 +728.424546 +728.747190 +728.748888 +728.750387 +728.752085 +728.754849 +728.823847 +729.125012 +729.126610 +729.128009 +729.129574 +729.131539 +729.468601 +729.470033 +729.636367 +729.637998 +729.639863 +729.901501 +730.374161 +730.375960 +730.377491 +730.379223 +730.774094 +730.775726 +730.777191 +730.778856 +730.780954 +731.139096 +731.142159 +731.143824 +731.145656 +731.508226 +731.509858 +731.512888 +731.514786 +731.877457 +731.880587 +731.884017 +732.198935 +732.200600 +732.201998 +732.205595 +732.557110 +732.559008 +732.562637 +732.925474 +732.927106 +732.928471 +732.930003 +732.931801 +733.284648 +733.286313 +733.287678 +733.289210 +733.291175 +733.294039 +733.660538 +733.662137 +733.663502 +733.665100 +733.666799 +733.986412 +733.988110 +733.989642 +733.991307 +733.993438 +734.284680 +734.286279 +734.287744 +734.289342 +734.291240 +734.626671 +734.629702 +734.631267 +734.633098 +734.971526 +734.973158 +734.974590 +734.976121 +734.978020 +735.337626 +735.338992 +735.340523 +735.342322 +735.688442 +735.690140 +735.691572 +735.693204 +736.113616 +736.115281 +736.116746 +736.118311 +736.120409 +736.424472 +736.425904 +736.427402 +736.429200 +736.827968 +736.830931 +736.832963 +737.174821 +737.176486 +737.177984 +737.181680 +737.504690 +737.506489 +737.507954 +737.827001 +737.828666 +737.830098 +737.831663 +737.833528 +738.066861 +738.068493 +738.069925 +738.071556 +738.073654 +738.397363 +738.399894 +738.401559 +738.402891 +738.404423 +738.406255 +738.410217 +738.640387 +738.705622 +738.708785 +738.710450 +738.712448 +739.042251 +739.043883 +739.045315 +739.046947 +739.048811 +739.365861 +739.368891 +739.370389 +739.372188 +739.439454 +739.669690 +739.671388 +739.672820 +739.674385 +739.676383 +740.062363 +740.063829 +740.065460 +740.067425 +740.388204 +740.392833 +740.394797 +740.398693 +740.741051 +740.742682 +740.744081 +740.745646 +740.747544 +740.793898 +741.068257 +741.069888 +741.071287 +741.074683 +741.307917 +741.309648 +741.311147 +741.587503 +741.588169 +741.922901 +741.924699 +741.926331 +741.928229 +742.308215 +742.309547 +742.311112 +742.312977 +742.639217 +742.640816 +742.642214 +742.643779 +742.645578 +742.960462 +742.962094 +742.963526 +742.966923 +743.309180 +743.312277 +743.313842 +743.688267 +743.689899 +743.691331 +743.692929 +744.068820 +744.070451 +744.071850 +744.073448 +744.075280 +744.493228 +744.496258 +744.497757 +744.499622 +744.502785 +744.795559 +744.797191 +744.798622 +744.800188 +744.802086 +745.149138 +745.150737 +745.152135 +745.153700 +745.155732 +745.470184 +745.471815 +745.473247 +745.474779 +745.476644 +745.826161 +745.827759 +745.829124 +745.830656 +745.832488 +746.134785 +746.136417 +746.137782 +746.139280 +746.143410 +746.370183 +746.444641 +746.446306 +746.447705 +746.451002 +746.822730 +746.824428 +746.825926 +746.827591 +746.829589 +747.194724 +747.196422 +747.197821 +747.199386 +747.201284 +747.497587 +747.499219 +747.502283 +747.504114 +747.893824 +747.895489 +747.896888 +747.898453 +747.900318 +747.921297 +748.199385 +748.201017 +748.202415 +748.204014 +748.205912 +748.236381 +748.533550 +748.535215 +748.536647 +748.538312 +748.540344 +748.793857 +748.795555 +748.797020 +748.798718 +748.800650 +749.052964 +749.055994 +749.059657 +749.323693 +749.325424 +749.326956 +749.328754 +749.689060 +749.690759 +749.692224 +749.693989 +749.991591 +749.993289 +749.994754 +749.996453 +749.998617 +750.413935 +750.415600 +750.417032 +750.418663 +750.420661 +750.721261 +750.722926 +750.724391 +750.726056 +751.045769 +751.047401 +751.048866 +751.050531 +751.052596 +751.467247 +751.468945 +751.470411 +751.472042 +751.475173 +751.804976 +751.806741 +751.808272 +751.810037 +752.174972 +752.176604 +752.178102 +752.179734 +752.181832 +752.253760 +752.596983 +752.598681 +752.601778 +752.952427 +752.954092 +752.956123 +753.285594 +753.287225 +753.288624 +753.290189 +753.291987 +753.653425 +753.655090 +753.656456 +753.658021 +753.659986 +754.068876 +754.071940 +754.073505 +754.075470 +754.409702 +754.411400 +754.412899 +754.414597 +754.416661 +754.731913 +754.733578 +754.734976 +754.736508 +754.738339 +755.119858 +755.121523 +755.122888 +755.124453 +755.126351 +755.421622 +755.764712 +755.766577 +755.768142 +755.770073 +756.078331 +756.080063 +756.083293 +756.085458 +756.369940 +756.374701 +756.851791 +756.853422 +756.854854 +756.856486 +756.858417 +757.102706 +757.104371 +757.105903 +757.373968 +757.375633 +757.377031 +757.378663 +757.380561 +757.622819 +757.626082 +757.627814 +757.878796 +757.880461 +757.883391 +758.263078 +758.264710 +758.266141 +758.267740 +758.269671 +758.605402 +758.607367 +758.609165 +758.984156 +758.985821 +758.987253 +758.988885 +758.991116 +759.401938 +759.403603 +759.405068 +759.406666 +759.408498 +759.812327 +759.814025 +759.815524 +759.817189 +759.819387 +760.163143 +760.164541 +760.166173 +760.168271 +760.428310 +760.430009 +760.431474 +760.433239 +760.436769 +760.529909 +760.701837 +760.703502 +760.705000 +760.706698 +760.871300 +761.019385 +761.021050 +761.022549 +761.024281 +761.301803 +761.304966 +761.306665 +761.308729 +761.561376 +761.818652 +761.820617 +762.246424 +762.248089 +762.249554 +762.251252 +762.253317 +762.577526 +762.579157 +762.580589 +762.582188 +762.584286 +762.850619 +762.853649 +762.855248 +763.165471 +763.166869 +763.168501 +763.170432 +763.523346 +763.524778 +763.526409 +763.529539 +763.834734 +763.836466 +763.839762 +763.842326 +764.145523 +764.146988 +764.148620 +764.150584 +764.491643 +764.493308 +764.494740 +764.498403 +764.748786 +764.750417 +764.751916 +764.753548 +764.756711 +765.027107 +765.028839 +765.030304 +765.032035 +765.371362 +765.373094 +765.374626 +765.376424 +765.669864 +765.671529 +765.672927 +765.674526 +765.676590 +766.000866 +766.002564 +766.009857 +766.373226 +766.374958 +766.376456 +766.378188 +766.669330 +766.670962 +766.672493 +766.674192 +766.676922 +766.991840 +766.993472 +766.994937 +766.996569 +766.998634 +767.309456 +767.311254 +767.312852 +767.314684 +767.614018 +767.619112 +768.009788 +768.011520 +768.362602 +768.364500 +768.366265 +768.652445 +768.654243 +768.655841 +768.657606 +768.964333 +768.966064 +768.967629 +768.969561 +769.266397 +769.268062 +769.269594 +769.271325 +769.273656 +769.614781 +769.618012 +769.619710 +769.987775 +769.989506 +769.990972 +769.992836 +770.428567 +770.430298 +770.431797 +770.433562 +770.468993 +770.745616 +770.747381 +770.748846 +770.755340 +771.122006 +771.123838 +771.125369 +771.127367 +771.463831 +771.467061 +771.468792 +771.512149 +771.628033 +771.702292 +771.704057 +771.705555 +771.707387 +771.709618 +772.056371 +772.059601 +772.061699 +772.174686 +772.354339 +772.355871 +772.357636 +772.403756 +772.595365 +772.597063 +772.600293 +773.049277 +773.051208 +773.052940 +773.054938 +773.360166 +773.361997 +773.651907 +773.655337 +773.657468 +774.023801 +774.028730 +774.313944 +774.315742 +774.317374 +774.319206 +774.601390 +774.603754 +774.888902 +774.891233 +775.227496 +775.229395 +775.231193 +775.410979 +775.412944 +775.608349 +775.673883 +775.827962 +776.045145 +776.263892 +776.587069 +779.842777 +779.992926 +780.065887 +780.203715 +780.510974 +780.605147 +780.899685 +781.146838 +781.148902 +781.151833 +781.205279 +781.269682 +781.325426 +787.120025 +787.770141 +787.894217 +787.929948 +787.975636 +789.044865 +789.048661 +789.067243 +794.486185 +794.489482 +796.828840 +796.971564 +797.251783 +797.307561 +797.362406 +797.440395 +797.558876 +798.041393 +798.413687 +803.910551 +804.268293 +804.375952 +804.410051 +804.509152 +804.593201 +804.610584 +804.669991 +804.724936 +804.767593 +804.890604 +804.925269 +804.939588 +804.967493 +805.013481 +805.057670 +805.084010 +805.152175 +805.198229 +805.226168 +805.298595 +805.433061 +805.498029 +805.508985 +805.545948 +805.587140 +805.596397 +808.069488 +808.151972 +808.332958 +808.346378 +808.369555 +808.401256 +808.429728 +808.502022 +808.561596 +808.643114 +808.978612 +809.070819 +809.092997 +809.113443 +809.148342 +809.178478 +809.337486 +809.369820 +809.400989 +809.429127 +809.462760 +809.551671 +809.597425 +809.664458 +809.708980 +809.765224 +809.769087 +809.839084 +809.871551 +810.152437 +810.221967 +811.367687 +811.397757 +811.482439 +811.550038 +811.622565 +811.667353 +811.702318 +811.749838 +811.754633 +811.808146 +811.867153 +811.909744 +811.928592 +812.057330 +812.110210 +812.145908 +812.265055 +812.353067 +812.456031 +812.531488 +812.572481 +812.652734 +812.681572 +812.912041 +812.977409 +813.285500 +813.548837 +813.588830 +813.626725 +813.670815 +813.717801 +813.803049 +813.873811 +813.932220 +813.979006 +814.028989 +814.043841 +814.091960 +814.178640 +814.223961 +814.275043 +814.346538 +814.446472 +814.518999 +814.581536 +814.930487 +814.997120 +815.477806 +815.574975 +815.678205 +815.716234 +815.718232 +815.816034 +815.904046 +816.002581 +816.091192 +816.140276 +816.325591 +816.403579 +816.452064 +816.688827 +816.704778 +816.728987 +830.536532 +830.539762 +831.262872 +838.453274 +839.776250 +841.239685 +841.312978 +841.354137 +841.370754 +841.406251 +841.429761 +841.513344 +841.695295 +841.754569 +841.888469 +841.914376 +841.970320 +842.128195 +842.183407 +842.210446 +842.226997 +842.320303 +842.381209 +842.407116 +842.433090 +842.463793 +842.504785 +842.548175 +842.576147 +842.636453 +842.653669 +842.675781 +842.762361 +842.887336 +842.911944 +842.914808 +842.949906 +842.985704 +843.012810 +843.062827 +843.108814 +843.181741 +843.184338 +843.225597 +843.273815 +843.314408 +843.362959 +843.407615 +843.417172 +843.429693 +843.469120 +843.562227 +843.576745 +843.584904 +843.616239 +843.650472 +843.653236 +843.701188 +843.733755 +843.766023 +843.770618 +843.848473 +843.874814 +843.895759 +843.926062 +843.943145 +843.965823 +844.016372 +844.044277 +844.089998 +844.123365 +844.155766 +844.198123 +844.243478 +844.291730 +844.352236 +844.381840 +844.400454 +844.424131 +844.475446 +844.537717 +844.637450 +844.676345 +844.816038 +844.837850 +844.896225 +844.960261 +845.009145 +845.047174 +845.132022 +845.208246 +845.360327 +845.455798 +845.644942 +845.694126 +845.725594 +845.760493 +845.940646 +845.985601 +846.039447 +846.044009 +846.079207 +846.104981 +846.176243 +846.237249 +846.296223 +846.324162 +846.365820 +846.427192 +846.476576 +846.543243 +846.634618 +846.690096 +846.788197 +846.854598 +846.912773 +846.961624 +847.005214 +847.086599 +847.152133 +847.199153 +847.220365 +847.254364 +847.298220 +847.343408 +847.397121 +847.431520 +847.507278 +847.569449 +847.696189 +847.757727 +847.797154 +847.859592 +847.952765 +847.981170 +848.019032 +848.077174 +848.153930 +848.258259 +848.355928 +848.368915 +848.382102 +848.466251 +848.548169 +848.645205 +848.705412 +848.803647 +848.900450 +848.968981 +849.140942 +849.202214 +849.560722 +849.589327 +849.719297 +849.839776 +849.904878 +849.963719 +850.060422 +850.252197 +850.324657 +850.369146 +850.391657 +850.460488 +850.528920 +850.876072 +851.137311 +851.549598 +851.951895 +855.171306 +859.863742 +860.674297 +862.398072 +866.684182 +866.690742 +869.010952 +869.919576 +870.251278 +870.653575 +870.658104 +874.986071 +879.285001 +879.377409 +879.379407 +879.381305 +879.387033 +880.207178 +880.209176 +880.211008 +880.213805 +880.216369 +880.286432 +880.357961 +880.361424 +880.432653 +880.555596 +880.556828 +880.557494 +880.559459 +881.263854 +887.441503 +887.446265 +887.533678 +889.031479 +889.033477 +889.035574 +889.037739 +889.040703 +889.124719 +889.126783 +889.128581 +893.201471 +895.367236 +895.927376 +896.005065 +896.006830 +896.008561 +896.078225 +896.081322 +896.193043 +896.194675 +896.196207 +896.197938 +896.204731 +896.262807 +896.321182 +896.323113 +896.324878 +896.327475 +896.773562 +896.775793 +896.780622 +896.935733 +896.938097 +896.940262 +897.573395 +897.838296 +897.842992 +900.609089 +901.315649 +904.642319 +904.706455 +905.452741 +905.519574 +905.522471 +905.621838 +905.623870 +905.709983 +905.712081 +905.788471 +905.790769 +905.854172 +905.855904 +905.857602 +905.935791 +905.939853 +906.013513 +909.541481 +909.669487 +914.696854 +914.698652 +914.700417 +914.701416 +914.702415 +914.832319 +914.834583 +914.838945 +914.840577 +914.842275 +914.919764 +914.982402 +914.985898 +916.532650 +916.846602 +917.134114 +917.294021 +917.521060 +917.523025 +917.525190 +917.526222 +917.528553 +917.611070 +917.612769 +917.614367 +917.616432 +917.685796 +917.687760 +917.692189 +917.825023 +917.826888 +917.828653 +917.829718 +917.830517 +917.908373 +918.268879 +926.473965 +926.475530 +926.476996 +926.478261 +926.478561 +926.479726 +926.481191 +926.482990 +926.605567 +926.607398 +926.608497 +926.608997 +926.611061 +926.611461 +926.676662 +926.678161 +926.679193 +926.680392 +926.747924 +927.345393 +927.348223 +928.206364 +928.455448 +933.434431 +933.611754 +933.614817 +933.616482 +933.622876 +933.625407 +933.670628 +933.739193 +934.718879 +934.818446 +934.820577 +934.822408 +935.001363 +935.098599 +935.705092 +935.707689 +935.709620 +935.811885 +938.119475 +938.122139 +938.144650 +938.147513 +938.322072 +938.498962 +938.500960 +938.502625 +938.504523 +938.585575 +938.589304 +938.657536 +938.659168 +938.663464 +938.843883 +938.846514 +938.848878 +938.981046 +940.334458 +940.620704 +945.650003 +945.730489 +945.732554 +945.734352 +945.832521 +945.834452 +945.836117 +945.838082 +945.916170 +945.918401 +945.986267 +945.987865 +945.989364 +945.990995 +945.992893 +946.063623 +946.127392 +946.129157 +946.130789 +946.135651 +946.199986 +946.200819 +946.204348 +946.275511 +946.278274 +946.280739 +946.848037 +946.852733 +946.854764 +946.856629 +946.934518 +947.783767 +948.114969 +948.249701 +948.253231 +952.227686 +952.229684 +952.231449 +952.232781 +952.312368 +952.380566 +952.382897 +952.560886 +952.562784 +952.563916 +952.565914 +952.635644 +952.702244 +952.705374 +952.756123 +952.830649 +953.956089 +953.957754 +953.959386 +953.961317 +953.962183 +953.964347 +954.108103 +954.110035 +954.111733 +954.114031 +954.197880 +955.628715 +955.629947 +955.630979 +955.632844 +955.635375 +955.739104 +955.740969 +955.742634 +955.744699 +955.749760 +955.751292 +955.972304 +955.973336 +955.974369 +955.975368 +955.977066 +958.571569 +958.572967 +958.573733 +958.574999 +958.576730 +958.711063 +958.712794 +958.714426 +958.778562 +958.780260 +958.781892 +958.845628 +958.847426 +958.905801 +958.908099 +958.975331 +958.977429 +958.980626 +959.048392 +960.256882 +960.258780 +960.260512 +960.262643 +960.416622 +960.419819 +960.425213 +960.505533 +960.505899 +960.580558 +960.582523 +960.584953 +960.661444 +960.663741 +960.745659 +961.596974 +962.787882 +963.532436 +963.535000 +963.537165 +963.640828 +964.397470 +964.403464 +965.628072 +965.631469 +965.633700 +965.784049 +965.785714 +965.787379 +965.869464 +965.871195 +965.872827 +965.874725 +965.944555 +965.947053 +966.003763 +966.071828 +966.195737 +967.158473 +967.160272 +967.161903 +967.243089 +967.322476 +967.324507 +967.389242 +967.456741 +967.458373 +967.459905 +967.461570 +967.525806 +967.527571 +967.529202 +967.531067 +967.597434 +967.668163 +967.670228 +967.743088 +967.746118 +967.950347 +968.050580 +968.062735 +968.070527 +968.620909 +968.839524 +969.963832 +970.701460 +970.706089 +970.728167 +970.798663 +970.800727 +970.802692 +970.888040 +971.715012 +971.731662 +971.736358 +971.855338 +971.860333 +971.894033 +971.896664 +972.839453 +972.841085 +972.842584 +972.844215 +972.846247 +972.974751 +972.976616 +972.978348 +972.980645 +972.989570 +973.056270 +973.060465 +973.063096 +973.677148 +973.680445 +973.992999 +974.007018 +974.165226 +974.169489 +974.332326 +974.861463 +975.057300 +976.300689 +976.302587 +976.304352 +976.306483 +976.313243 +976.317372 +976.453935 +976.455900 +976.519503 +976.522034 +976.599057 +976.601488 +976.603652 +976.697059 +981.133584 +981.135249 +981.137347 +981.139678 +981.141610 +981.278173 +981.280171 +981.282235 +981.353897 +981.490693 +981.492691 +981.494756 +982.780969 +983.486662 +986.640006 +986.814098 +987.073039 +987.206772 +987.410401 +987.885093 +987.886691 +988.012665 +988.014230 +988.015595 +988.017660 +988.076568 +988.078000 +988.079365 +988.080863 +988.082662 +988.144766 +988.206338 +988.208069 +988.209701 +988.211732 +988.350327 +988.352192 +988.423187 +988.425785 +988.803607 +992.766040 +993.287651 +993.290382 +994.559878 +994.561676 +994.563308 +994.565572 +994.642995 +994.644560 +994.646125 +994.647690 +994.651420 +994.662475 +994.664606 +994.829841 +994.832838 +994.833804 +994.893943 +994.896008 +995.024579 +995.026311 +995.027976 +995.029741 +995.031373 +995.096774 +996.735800 +1001.027604 +1001.088509 +1001.090707 +1001.093005 +1001.242755 +1001.245985 +1001.445852 +1001.447716 +1001.449481 +1001.453278 +1001.606224 +1001.608023 +1001.609721 +1001.610787 +1001.612751 +1001.683580 +1001.687510 +1001.817380 +1001.819611 +1001.824906 +1001.826837 +1001.829001 +1001.951113 +1001.953876 +1004.140221 +1005.583310 +1005.588172 +1006.959466 +1007.117674 +1008.009948 +1008.012911 +1008.252738 +1008.256501 +1008.354569 +1008.356101 +1008.357666 +1008.359331 +1008.359964 +1008.361096 +1008.490300 +1008.492132 +1008.493763 +1008.552371 +1008.615974 +1008.621236 +1008.745645 +1008.747576 +1008.749308 +1008.751539 +1010.482073 +1010.484271 +1010.486502 +1010.555966 +1010.557564 +1010.559063 +1010.560728 +1010.562759 +1010.639515 +1010.641047 +1010.645842 +1010.647341 +1010.781706 +1010.782772 +1010.783272 +1010.784737 +1010.785936 +1010.786701 +1010.848506 +1010.851770 +1010.855666 +1010.922266 +1010.923931 +1010.924930 +1010.926994 +1011.843477 +1011.845641 +1011.847839 +1011.870050 +1011.872648 +1012.021965 +1012.034985 +1012.036883 +1012.038582 +1012.040513 +1012.125128 +1012.127326 +1012.129158 +1012.131688 +1012.138948 +1013.328490 +1013.485400 +1013.488297 +1013.493092 +1013.629090 +1013.630688 +1013.632286 +1013.634085 +1013.636216 +1013.638147 +1013.750302 +1013.752466 +1013.756229 +1013.758127 +1015.874575 +1017.529918 +1019.720825 +1019.857089 +1019.858953 +1019.860752 +1020.005041 +1020.006706 +1020.008704 +1020.075836 +1020.077401 +1020.078833 +1020.080565 +1020.143002 +1020.143402 +1020.201844 +1020.203542 +1020.205207 +1020.265646 +1020.397315 +1020.399246 +1020.400944 +1020.402976 +1020.406239 +1020.476136 +1020.478433 +1020.480431 +1022.067643 +1023.145097 +1029.934035 +1030.008827 +1030.867234 +1030.868866 +1030.870564 +1030.928073 +1030.931337 +1030.998070 +1031.120114 +1031.127374 +1031.189545 +1031.191942 +1031.194340 +1031.266102 +1031.754080 +1031.757177 +1031.757709 +1031.760873 +1031.890044 +1031.892341 +1032.030570 +1032.031102 +1032.032734 +1032.033467 +1032.034899 +1032.131402 +1036.891804 +1038.192302 +1039.495431 +1039.502057 +1039.505154 +1039.588038 +1040.325899 +1040.328130 +1040.362496 +1040.364427 +1040.366525 +1040.464927 +1040.565526 +1040.568057 +1069.171059 +1069.183446 +1069.215614 +1069.246783 +1069.290306 +1069.732330 +1069.790272 +1069.799496 +1069.853842 +1069.864798 +1070.072390 +1070.111950 +1070.231031 +1070.427801 +1070.433328 +1070.478783 +1071.278416 +1071.373521 +1071.954972 +1072.021372 +1072.198828 +1072.239187 +1072.239687 +1072.269624 +1072.314945 +1072.401458 +1073.170056 +1073.672519 +1073.778447 +1074.992132 +1075.037320 +1075.041949 +1075.127130 +1075.145645 +1075.209880 +1075.310313 +1075.506750 +1076.299024 +1076.301787 +1076.306017 +1076.308880 +1076.312110 +1076.402420 +1087.265280 +1087.489588 +1087.635709 +1087.697114 +1088.186491 +1088.302874 +1088.343367 +1088.441569 +1088.532012 +1088.626351 +1088.711832 +1088.752857 +1088.775202 +1088.794049 +1088.845032 +1088.941302 +1088.962780 +1089.047529 +1089.050026 +1089.052391 +1089.125384 +1089.129447 +1089.188921 +1089.276200 +1089.346596 +1089.388255 +1089.432510 +1089.468641 +1089.582027 +1089.684125 +1089.755687 +1089.961381 +1090.020322 +1090.030612 +1090.076665 +1090.118524 +1090.185790 +1090.227881 +1090.288087 +1090.327781 +1090.346629 +1090.361680 +1090.481893 +1090.496345 +1090.583991 +1090.651423 +1090.702939 +1090.725782 +1090.728546 +1090.769605 +1090.799575 +1090.843664 +1090.926382 +1090.953521 +1090.955985 +1091.022752 +1091.182425 +1091.255152 +1091.295379 +1091.325982 +1091.337803 +1091.369371 +1091.402905 +1091.449924 +1091.511796 +1091.560513 +1091.598342 +1091.635605 +1091.693680 +1091.747160 +1091.792748 +1091.892348 +1091.901605 +1091.931742 +1091.969671 +1091.995378 +1092.058249 +1092.094479 +1092.125681 +1092.157682 +1092.172201 +1092.189251 +1092.215524 +1092.265841 +1092.348258 +1092.394312 +1092.423383 +1092.454152 +1092.479360 +1092.505734 +1092.574565 +1092.617156 +1092.658614 +1092.724482 +1092.783822 +1092.811495 +1092.821618 +1092.843862 +1092.873899 +1092.929610 +1092.973999 +1092.991448 +1093.039466 +1093.082357 +1093.101404 +1093.111927 +1093.126912 +1093.162377 +1093.192014 +1093.192780 +1093.218887 +1093.339832 +1093.417155 +1093.552153 +1093.581957 +1093.608364 +1093.645959 +1093.663808 +1093.702869 +1093.785653 +1093.894843 +1093.959279 +1094.061410 +1094.368702 +1094.436235 +1094.571499 +1094.726311 +1094.797673 +1095.076128 +1095.186950 +1095.235069 +1095.311792 +1095.393410 +1095.457746 +1095.607462 +1095.651618 +1095.731305 +1095.804465 +1095.826710 +1095.909793 +1095.949154 +1096.173995 +1096.241594 +1096.384451 +1096.672929 +1097.000035 +1097.027674 +1097.187214 +1097.584184 +1097.828073 +1097.884616 +1099.269796 +1099.290775 +1099.398068 +1099.914351 +1108.140650 +1108.141183 +1108.142415 +1108.143414 +1108.144147 +1108.293197 +1108.295395 +1108.297393 +1108.695228 +1108.925165 +1109.153470 +1109.528194 +1109.535088 +1110.446509 +1110.787467 +1111.033654 +1111.183371 +1112.892327 +1113.996821 +1113.999352 +1114.114404 +1117.789258 +1117.791556 +1117.792722 +1117.795352 +1117.797583 +1117.904443 +1117.908539 +1118.579867 +1118.582964 +1121.451293 +1121.453890 +1123.618856 +1123.620488 +1123.622086 +1123.624051 +1123.757384 +1123.758383 +1123.759016 +1123.762746 +1123.825816 +1123.954021 +1123.956352 +1123.958383 +1124.588219 +1124.591416 +1124.598909 +1124.852521 +1125.180293 +1125.700473 +1129.063806 +1129.787681 +1131.190710 +1131.192775 +1131.194540 +1131.274993 +1131.277224 +1131.279288 +1131.405362 +1131.407127 +1131.408725 +1131.476624 +1131.478589 +1131.539894 +1131.541859 +1131.543857 +1131.680254 +1133.113319 +1133.258840 +1133.906159 +1133.913618 +1134.025106 +1134.027371 +1134.029169 +1134.136195 +1135.000796 +1135.729500 +1135.731731 +1135.733796 +1136.483079 +1137.107721 +1138.199894 +1138.206654 +1138.325935 +1139.329763 +1139.331794 +1139.333559 +1139.335824 +1139.372254 +1139.374152 +1139.376017 +1139.558834 +1139.561698 +1144.529491 +1144.531689 +1144.533854 +1144.803684 +1146.040779 +1146.043809 +1146.044175 +1146.045341 +1146.174711 +1146.175644 +1146.176376 +1146.179906 +1146.306946 +1146.308677 +1146.310276 +1146.311941 +1146.383402 +1146.385633 +1146.387598 +1146.459093 +1146.461724 +1151.719195 +1151.720760 +1151.722225 +1151.723790 +1151.725954 +1151.790057 +1151.793154 +1151.794885 +1151.866647 +1151.927586 +1151.930916 +1152.059953 +1152.065315 +1152.132614 +1152.135178 +1152.137243 +1152.212168 +1152.341938 +1152.934078 +1153.229716 +1153.426486 +1153.428484 +1153.430315 +1153.432280 +1153.577101 +1153.620924 +1154.457653 +1154.582628 +1154.586424 +1154.737107 +1154.739238 +1154.741170 +1154.743800 +1154.890287 +1154.892218 +1154.893917 +1154.896114 +1154.903008 +1154.905239 +1155.073537 +1155.075735 +1155.077566 +1155.097280 +1155.294782 +1155.297379 +1155.387589 +1155.389953 +1155.392018 +1155.401675 +1155.525518 +1155.825251 +1155.826683 +1156.181295 +1156.184125 +1156.186689 +1156.559849 +1157.837370 +1157.839402 +1157.841200 +1157.843331 +1157.987487 +1158.083457 +1158.126081 +1158.791548 +1158.958848 +1158.961112 +1158.962910 +1158.965108 +1158.974232 +1158.976530 +1159.226646 +1159.229177 +1159.260512 +1159.440565 +1159.441798 +1159.442397 +1159.444029 +1159.525014 +1159.606799 +1159.741531 +1159.742263 +1159.743429 +1159.817355 +1162.961574 +1163.538763 +1163.541061 +1163.589845 +1163.803998 +1163.805496 +1163.878690 +1163.939296 +1163.941094 +1163.944124 +1163.944723 +1164.079422 +1164.081220 +1164.083251 +1164.135000 +1164.138030 +1164.146322 +1164.211057 +1167.540757 +1167.542589 +1167.544254 +1167.558772 +1167.560737 +1167.562469 +1167.564334 +1167.747550 +1167.749049 +1167.750481 +1167.886478 +1167.888076 +1167.889541 +1167.889908 +1167.891073 +1167.892938 +1167.960870 +1167.962801 +1167.964500 +1167.964766 +1167.966631 +1167.966964 +1168.042821 +1168.044819 +1168.125672 +1168.962234 +1169.201595 +1169.203160 +1169.203959 +1169.205224 +1169.205924 +1169.207089 +1169.208321 +1169.312084 +1169.314415 +1169.316646 +1171.133394 +1171.155972 +1172.378914 +1172.382511 +1172.462664 +1172.464429 +1172.532660 +1172.534359 +1172.537622 +1172.605254 +1172.606719 +1172.608151 +1172.610316 +1172.681012 +1172.745247 +1172.748378 +1172.750009 +1172.813346 +1172.821338 +1172.896196 +1172.898527 +1172.900525 +1174.289235 +1174.292599 +1174.352339 +1174.355302 +1174.356834 +1174.358732 +1174.364094 +1174.435755 +1174.437254 +1174.438619 +1174.440151 +1174.444580 +1174.446811 +1174.585306 +1174.587004 +1174.588502 +1174.588902 +1174.590001 +1174.591499 +1174.667224 +1174.669055 +1174.670387 +1174.672818 +1174.744313 +1174.748809 +1174.750673 +1174.820770 +1177.047108 +1177.048906 +1177.050738 +1177.052736 +1177.137018 +1177.140481 +1177.205416 +1177.206881 +1177.208513 +1177.336851 +1177.338783 +1177.340548 +1177.405150 +1177.406881 +1177.410178 +1177.522366 +1178.983270 +1178.985201 +1178.986034 +1178.986966 +1178.987799 +1178.989397 +1179.123729 +1179.125361 +1179.201052 +1179.203649 +1179.271748 +1179.273912 +1179.276177 +1179.350802 +1180.902249 +1181.201982 +1181.503747 +1181.505578 +1181.509474 +1181.631752 +1181.633384 +1181.690926 +1181.692924 +1181.694922 +1181.745139 +1181.746937 +1181.901349 +1181.903247 +1181.905112 +1181.959491 +1181.961389 +1181.963187 +1181.965518 +1181.976940 +1182.111505 +1182.815234 +1182.817432 +1182.819363 +1184.727487 +1184.811103 +1184.813301 +1184.815432 +1184.993254 +1185.016198 +1185.018129 +1185.019927 +1185.245235 +1185.246767 +1185.248532 +1185.315764 +1185.318761 +1185.391988 +1185.455458 +1185.458854 +1185.536177 +1185.538675 +1189.245098 +1189.246763 +1189.292117 +1189.294215 +1189.298011 +1189.457385 +1189.608101 +1189.608867 +1189.742000 +1189.743499 +1189.746929 +1189.809300 +1189.811964 +1189.875966 +1189.877731 +1189.880528 +1189.883292 +1189.956652 +1189.958850 +1190.034707 +1192.581691 +1192.583989 +1192.699606 +1193.332440 +1193.334171 +1193.335703 +1193.337401 +1193.340032 +1193.343162 +1193.507897 +1193.509562 +1193.511028 +1193.517055 +1193.659279 +1193.661011 +1193.663275 +1193.664807 +1193.809995 +1193.812592 +1193.894677 +1193.896375 +1193.897407 +1193.901903 +1193.987617 +1195.498705 +1195.974595 +1196.526409 +1196.606296 +1196.607994 +1196.609593 +1196.611624 +1196.772430 +1196.773895 +1196.829706 +1196.871863 +1196.876392 +1196.878490 +1197.023944 +1197.025543 +1197.113988 +1197.115852 +1197.292909 +1197.297038 +1197.617051 +1198.382351 +1198.720113 +1198.945588 +1199.319913 +1199.322843 +1199.337196 +1199.339094 +1199.648218 +1199.652347 +1199.828803 +1199.830602 +1199.832200 +1199.833898 +1199.835963 +1199.914218 +1199.915883 +1199.917381 +1199.919013 +1199.921178 +1200.039326 +1200.040825 +1200.044821 +1200.109589 +1200.112719 +1200.114684 +1200.295170 +1200.298433 +1200.300265 +1200.317048 +1200.492040 +1200.493771 +1200.495270 +1200.497035 +1200.576388 +1200.579619 +1200.582216 +1200.700398 +1200.787810 +1202.340989 +1203.189906 +1203.283079 +1203.284877 +1203.286476 +1203.288374 +1203.384078 +1203.385643 +1203.388507 +1203.467961 +1203.469825 +1203.471590 +1203.535526 +1203.537125 +1203.540222 +1203.679649 +1203.681480 +1203.683212 +1203.684810 +1203.685210 +1203.687841 +1203.834460 +1205.829563 +1206.645913 +1206.857101 +1208.331725 +1208.620536 +1208.776347 +1208.778878 +1208.846677 +1208.848608 +1209.351138 +1209.776779 +1210.060795 +1210.285070 +1210.287268 +1210.487934 +1210.489765 +1210.491397 +1210.493528 +1210.835919 +1210.837684 +1210.841180 +1210.878676 +1210.882139 +1211.023398 +1211.025329 +1211.027061 +1211.029991 +1211.034320 +1211.037617 +1211.039282 +1211.124263 +1212.424195 +1212.426826 +1212.717735 +1212.962124 +1213.243875 +1213.246572 +1213.765753 +1213.767318 +1213.768750 +1213.770348 +1213.772113 +1213.774610 +1214.055729 +1214.057461 +1214.294390 +1214.296022 +1214.297420 +1214.299019 +1214.300950 +1214.532552 +1214.534217 +1214.535815 +1214.538079 +1215.228921 +1215.810472 +1215.812104 +1215.813569 +1215.815168 +1215.817066 +1215.882001 +1215.883732 +1215.885298 +1215.886996 +1216.150998 +1216.153030 +1216.178005 +1216.179769 +1216.181434 +1216.183566 +1216.419563 +1216.421694 +1216.423559 +1216.425823 +1216.531384 +1216.620229 +1216.622027 +1216.623658 +1216.625623 +1216.726988 +1216.728920 +1216.730685 +1216.732849 +1216.962553 +1216.964218 +1216.965649 +1216.967314 +1216.969279 +1217.064750 +1217.066615 +1217.068313 +1217.070245 +1217.336911 +1217.338643 +1217.340208 +1217.341840 +1217.569645 +1217.571476 +1217.573141 +1217.575106 +1217.588626 +1217.590357 +1217.922425 +1218.008439 +1218.010104 +1218.011602 +1218.013367 +1218.189857 +1218.194719 +1218.355591 +1218.435178 +1218.436744 +1218.438209 +1218.441572 +1218.443570 +1218.605608 +1218.607539 +1218.608871 +1218.609138 +1218.752394 +1218.753959 +1218.754725 +1218.756523 +1218.925621 +1218.928784 +1219.066580 +1220.821157 +1220.823221 +1220.825219 +1220.929348 +1221.766311 +1221.786923 +1221.788722 +1221.790287 +1221.792085 +1222.013430 +1222.015328 +1222.126683 +1222.128282 +1222.222387 +1222.302607 +1222.305538 +1222.307469 +1222.377665 +1222.379797 +1222.458684 +1222.531078 +1222.533010 +1222.534808 +1222.542034 +1222.620389 +1222.625650 +1222.629846 +1222.720222 +1223.767907 +1223.770072 +1223.772269 +1223.792149 +1224.045829 +1224.415525 +1224.520221 +1224.521886 +1224.523884 +1224.802039 +1224.804403 +1224.945695 +1224.947593 +1224.949291 +1224.951422 +1225.100340 +1225.104169 +1225.106700 +1225.335971 +1225.340733 +1225.427080 +1225.428811 +1225.430343 +1225.432174 +1225.516890 +1225.522984 +1225.620253 +1225.687785 +1225.689550 +1225.863210 +1225.868371 +1225.970735 +1225.972700 +1225.974598 +1226.155117 +1226.157515 +1226.159746 +1227.289182 +1227.290881 +1227.292379 +1227.294077 +1227.296808 +1227.884520 +1227.887417 +1227.888949 +1227.893044 +1228.209761 +1228.211392 +1228.212758 +1228.214290 +1228.216188 +1228.427476 +1228.429075 +1228.431006 +1228.713490 +1228.815454 +1228.818918 +1229.065637 +1229.146390 +1229.148022 +1229.150919 +1229.152684 +1229.412124 +1229.413622 +1229.417652 +1229.793109 +1229.793542 +1229.796606 +1229.798271 +1229.800169 +1229.980522 +1230.171064 +1230.174161 +1230.175793 +1230.177857 +1230.663105 +1230.664837 +1230.666335 +1230.668000 +1230.670131 +1231.054480 +1231.056145 +1231.057643 +1231.059308 +1231.061706 +1231.474093 +1231.475758 +1231.477157 +1231.478689 +1231.480553 +1231.729970 +1231.786847 +1231.788545 +1231.790010 +1231.791742 +1231.794139 +1232.246886 +1232.248585 +1232.250083 +1232.251815 +1232.253979 +1232.694671 +1232.696303 +1232.697768 +1232.699400 +1232.701431 +1233.053412 +1233.058141 +1233.060172 +1233.425873 +1233.427504 +1233.428970 +1233.430568 +1233.432533 +1233.831400 +1233.832999 +1233.834430 +1233.835996 +1233.837894 +1233.840757 +1234.195869 +1234.197534 +1234.198966 +1234.200531 +1234.202495 +1234.205259 +1234.580017 +1234.581716 +1234.583048 +1234.584646 +1234.586578 +1234.983047 +1234.984779 +1234.986244 +1234.987876 +1234.990074 +1235.330033 +1235.331665 +1235.333097 +1235.334729 +1235.336693 +1235.713050 +1235.716613 +1236.096133 +1236.097765 +1236.099163 +1236.100762 +1236.102627 +1236.453209 +1236.454874 +1236.456273 +1236.457871 +1236.459836 +1236.464231 +1236.790971 +1236.792603 +1236.794001 +1236.795533 +1236.797398 +1236.799862 +1237.125869 +1237.127501 +1237.130398 +1237.132296 +1237.135293 +1237.426335 +1237.492569 +1237.494234 +1237.495632 +1237.497197 +1237.498996 +1237.501293 +1237.837224 +1237.838822 +1237.840154 +1237.841719 +1237.843551 +1237.851143 +1238.204123 +1238.205755 +1238.207187 +1238.208785 +1238.210783 +1238.569224 +1238.570856 +1238.572288 +1238.573886 +1238.575818 +1239.023669 +1239.025401 +1239.363063 +1239.366160 +1239.367758 +1239.369690 +1239.688437 +1239.690036 +1239.691900 +1240.014478 +1240.017574 +1240.019106 +1240.020904 +1240.384441 +1240.387471 +1240.389069 +1240.390934 +1240.820604 +1240.822269 +1240.823734 +1240.825299 +1240.827297 +1241.084640 +1241.086471 +1241.088036 +1241.090201 +1241.378745 +1241.380377 +1241.381776 +1241.383341 +1241.385205 +1241.388735 +1241.457633 +1241.745611 +1241.747243 +1241.748775 +1241.750373 +1241.752504 +1242.052071 +1242.053736 +1242.055201 +1242.056866 +1242.059164 +1242.339350 +1242.341149 +1242.342614 +1242.344312 +1242.346310 +1242.556500 +1242.687668 +1242.689134 +1242.690699 +1242.692797 +1243.011244 +1243.013043 +1243.014574 +1243.016406 +1243.019836 +1243.361760 +1243.363459 +1243.364957 +1243.366655 +1243.368720 +1243.664457 +1243.666089 +1243.667488 +1243.669053 +1243.670884 +1243.673815 +1244.043478 +1244.048140 +1244.050105 +1244.053168 +1244.418802 +1244.420467 +1244.421899 +1244.423531 +1244.425495 +1244.734553 +1244.735951 +1244.737550 +1244.739381 +1244.742545 +1245.072881 +1245.074546 +1245.075944 +1245.077543 +1245.079374 +1245.487899 +1245.489564 +1245.490996 +1245.492627 +1245.494592 +1245.821631 +1245.823296 +1245.824728 +1245.826327 +1245.828191 +1246.146040 +1246.147738 +1246.149137 +1246.150669 +1246.152600 +1246.450135 +1246.451800 +1246.453266 +1246.454864 +1246.456962 +1246.786199 +1246.787864 +1246.789329 +1246.790928 +1246.792992 +1247.124194 +1247.125859 +1247.127291 +1247.128889 +1247.130787 +1247.411007 +1247.412672 +1247.414137 +1247.415769 +1247.417800 +1247.803714 +1247.805412 +1247.806844 +1247.808409 +1247.810407 +1248.142908 +1248.144539 +1248.147536 +1248.149368 +1248.450333 +1248.453463 +1248.455095 +1248.456927 +1248.476307 +1248.478072 +1248.479604 +1248.481336 +1248.483700 +1248.772278 +1248.773943 +1248.775375 +1248.777006 +1248.785431 +1249.013969 +1249.015667 +1249.018931 +1249.045171 +1249.046836 +1249.048301 +1249.049900 +1249.388394 +1249.390093 +1249.391524 +1249.393090 +1249.395221 +1249.410206 +1249.411837 +1249.678204 +1249.679869 +1249.957957 +1249.959656 +1249.961088 +1249.962786 +1249.965117 +1250.223592 +1250.225157 +1250.269978 +1250.271444 +1250.273042 +1250.275007 +1250.591290 +1250.592922 +1250.594354 +1250.597917 +1250.874340 +1250.876038 +1250.880501 +1251.241006 +1251.242738 +1251.244170 +1251.245968 +1251.249165 +1251.347267 +1251.721292 +1251.723024 +1251.724489 +1251.726187 +1251.728352 +1252.058055 +1252.059787 +1252.061285 +1252.062984 +1252.402277 +1252.404109 +1252.405774 +1252.407838 +1252.696516 +1252.699546 +1252.701145 +1252.703176 +1253.204408 +1253.207538 +1253.209136 +1253.211134 +1253.521390 +1253.523055 +1253.524554 +1253.526252 +1253.528284 +1253.807404 +1253.809469 +1254.166145 +1254.172772 +1254.490720 +1254.492152 +1254.495715 +1254.888788 +1254.890487 +1254.891919 +1254.893617 +1255.230280 +1255.233477 +1255.235142 +1255.237173 +1255.626949 +1255.628648 +1255.630113 +1255.631778 +1255.633942 +1255.927948 +1255.929646 +1255.931078 +1255.932743 +1255.934875 +1256.248694 +1256.250325 +1256.251791 +1256.253422 +1256.255487 +1256.762746 +1256.764444 +1256.765943 +1256.767541 +1256.769805 +1257.105003 +1257.106668 +1257.108133 +1257.109732 +1257.111896 +1257.312362 +1257.413195 +1257.414826 +1257.417757 +1257.419622 +1257.791516 +1257.793214 +1257.794613 +1257.796278 +1257.798243 +1258.125016 +1258.126714 +1258.128179 +1258.129877 +1258.132275 +1258.419554 +1258.421252 +1258.422718 +1258.424383 +1258.713760 +1258.715458 +1258.716890 +1258.718521 +1258.720353 +1259.023450 +1259.026513 +1259.028078 +1259.030043 +1259.338334 +1259.340066 +1259.341564 +1259.343263 +1259.565307 +1259.624082 +1259.625813 +1259.627345 +1259.629143 +1260.001104 +1260.002836 +1260.004334 +1260.006033 +1260.008197 +1260.466039 +1260.467737 +1260.469202 +1260.470867 +1260.472799 +1260.703668 +1260.798206 +1260.799905 +1260.801370 +1260.805166 +1261.135868 +1261.137567 +1261.139065 +1261.140763 +1261.596940 +1261.598738 +1261.600270 +1261.602168 +1261.974762 +1261.976460 +1261.977925 +1261.979657 +1262.285617 +1262.287316 +1262.288781 +1262.290546 +1262.292710 +1262.318351 +1262.521681 +1262.523413 +1262.525044 +1262.526976 +1262.850019 +1262.851751 +1262.853249 +1262.854948 +1263.158277 +1263.160009 +1263.161474 +1263.163172 +1263.633801 +1263.637231 +1263.639063 +1264.025276 +1264.399635 +1264.401333 +1264.402831 +1264.404563 +1264.696271 +1264.697969 +1264.699435 +1264.701100 +1265.061872 +1265.063503 +1265.064969 +1265.066600 +1265.069631 +1265.231169 +1265.236564 +1265.425275 +1265.426973 +1265.430103 +1265.432268 +1265.744255 +1265.751015 +1266.351314 +1266.353113 +1266.354611 +1266.356343 +1266.358807 +1266.456209 +1266.458074 +1267.007624 +1267.009522 +1267.080851 +1267.085513 +1267.087178 +1267.544886 +1267.546618 +1267.548183 +1267.550081 +1267.633764 +1267.635362 +1267.642921 +1267.997500 +1267.999265 +1268.000797 +1268.002661 +1268.348948 +1268.350680 +1268.352211 +1268.353976 +1268.525371 +1268.527070 +1268.631931 +1268.633663 +1268.635095 +1268.638791 +1268.814982 +1269.031831 +1269.033496 +1269.034895 +1269.036493 +1269.038458 +1269.078518 +1269.079150 +1269.412450 +1269.414148 +1269.415580 +1269.417245 +1269.419510 +1269.802660 +1269.804424 +1269.805923 +1269.807655 +1269.809852 +1270.109186 +1270.110851 +1270.112316 +1270.113915 +1270.115879 +1270.179582 +1270.182879 +1270.184677 +1270.461300 +1270.462999 +1270.464497 +1270.466162 +1270.468693 +1270.744517 +1270.746248 +1270.747680 +1270.749379 +1270.751576 +1271.113547 +1271.116811 +1271.118509 +1271.440387 +1271.441852 +1271.443517 +1271.445582 +1271.774319 +1271.776117 +1271.777683 +1271.779447 +1272.162697 +1272.164362 +1272.165761 +1272.167359 +1272.169457 +1272.409350 +1272.411115 +1272.412647 +1272.414379 +1272.694731 +1272.696529 +1272.698095 +1272.699959 +1272.979280 +1272.981078 +1272.982576 +1272.984375 +1273.280179 +1273.282077 +1273.283742 +1273.287172 +1273.657667 +1273.659466 +1273.661031 +1273.662862 +1273.970587 +1273.972119 +1273.973951 +1274.285938 +1274.291300 +1274.499658 +1274.530760 +1274.532592 +1274.534190 +1274.536188 +1274.867390 +1274.870886 +1274.872818 +1275.093297 +1275.096727 +1275.192931 +1275.194795 +1275.196460 +1275.198625 +1275.603952 +1275.605851 +1275.607449 +1275.609547 +1275.925997 +1275.927862 +1275.929527 +1275.931658 +1275.974781 +1275.976579 +1276.257665 +1276.259430 +1276.261028 +1276.263026 +1276.480542 +1276.483872 +1276.485537 +1276.743445 +1276.745177 +1276.746642 +1276.748374 +1276.750605 +1277.049805 +1277.051470 +1277.054667 +1277.056732 +1277.285269 +1277.286835 +1277.288666 +1277.630624 +1277.632688 +1277.634586 +1277.931356 +1277.933287 +1277.935086 +1278.274979 +1278.276977 +1278.278941 +1278.582304 +1278.954898 +1278.985634 +1279.169017 +1279.478074 +1279.749003 +1281.654962 +1283.678736 +1284.211603 +1284.287727 +1284.374240 +1284.430750 +1284.614000 +1284.707573 +1284.922425 +1285.023490 +1285.095751 +1285.170809 +1285.288192 +1285.355092 +1285.440007 +1285.599613 +1285.649430 +1285.714831 +1285.753060 +1285.805407 +1286.040272 +1286.041105 +1286.073139 +1286.125121 +1286.297815 +1286.396416 +1286.621357 +1286.719992 +1286.816196 +1286.919426 +1286.984094 +1287.062216 +1287.106472 +1287.351726 +1287.461949 +1287.607770 +1287.738539 +1287.772971 +1288.130114 +1288.394383 +1288.528348 +1288.556953 +1288.563047 +1288.679397 +1288.777799 +1288.806137 +1288.886623 +1289.243499 +1289.275834 +1289.315893 +1289.344232 +1289.396346 +1289.457019 +1289.477598 +1289.498211 +1289.538238 +1289.552190 +1289.588354 +1289.608734 +1289.651324 +1289.842300 +1289.955054 +1290.013928 +1290.081194 +1290.116559 +1290.181594 +1290.223052 +1290.290185 +1290.341833 +1290.407534 +1290.496279 +1290.689851 +1290.756984 +1290.863811 +1290.903804 +1290.929611 +1290.939735 +1290.975432 +1291.036804 +1291.112295 +1291.155052 +1291.378662 +1291.458682 +1291.824049 +1291.928978 +1291.967040 +1291.990716 +1291.998575 +1292.079261 +1292.170170 +1292.217522 +1292.574398 +1292.748358 +1293.041964 +1293.126213 +1293.353851 +1293.496276 +1293.498174 +1293.563974 +1293.604301 +1293.703302 +1293.904867 +1293.989582 +1293.991513 +1293.993245 +1293.995443 +1293.999372 +1294.001636 +1294.066305 +1294.068736 +1294.377460 +1294.379225 +1294.381290 +1294.382189 +1294.493611 +1294.495209 +1294.497207 +1294.554316 +1294.555648 +1294.696241 +1295.347922 +1298.693173 +1298.996969 +1299.051248 +1299.211588 +1299.282450 +1299.290875 +1299.327072 +1299.381085 +1299.459073 +1299.533066 +1299.566832 +1299.570928 +1299.602330 +1299.737661 +1299.830801 +1299.901497 +1299.932033 +1299.949716 +1300.006925 +1300.172626 +1300.254411 +1300.306958 +1300.357374 +1300.367065 +1300.396335 +1300.442556 +1300.501896 +1300.559439 +1300.606492 +1300.738726 +1300.812352 +1300.899765 +1300.977154 +1301.018612 +1301.051946 +1301.095569 +1301.154277 +1301.197234 +1301.214483 +1301.280384 +1301.301296 +1301.327636 +1301.387843 +1301.414050 +1301.423241 +1301.457440 +1301.477320 +1301.503827 +1301.543920 +1301.618146 +1301.642788 +1301.693836 +1301.773490 +1301.796900 +1301.816780 +1301.845118 +1301.902494 +1301.948315 +1301.986244 +1302.022641 +1302.050346 +1302.124006 +1302.173323 +1302.201062 +1302.204459 +1302.228035 +1302.265697 +1302.267662 +1302.432530 +1302.473722 +1302.492903 +1302.536726 +1302.637192 +1302.666097 +1302.700495 +1302.806556 +1302.872590 +1302.998231 +1303.006123 +1303.067861 +1303.094434 +1303.151311 +1303.166296 +1303.188340 +1303.267162 +1303.363232 +1303.407022 +1303.439456 +1303.440888 +1303.463032 +1303.483478 +1303.520674 +1303.571590 +1303.606588 +1303.614880 +1303.645150 +1303.675653 +1303.688773 +1303.697997 +1303.738856 +1303.744717 +1303.793235 +1303.833428 +1303.843651 +1303.888673 +1304.014680 +1304.061633 +1304.063631 +1304.089105 +1304.166495 +1304.201193 +1304.283045 +1304.339854 +1304.372688 +1304.403324 +1304.483144 +1304.685608 +1304.713614 +1304.757603 +1304.800893 +1304.807220 +1304.848845 +1304.878549 +1304.929631 +1304.994000 +1305.039920 +1305.060367 +1305.074552 +1305.129664 +1305.170123 +1305.188971 +1305.224269 +1305.269191 +1305.294665 +1305.439887 +1305.445381 +1305.561232 +1305.588604 +1305.626999 +1305.753539 +1305.782510 +1305.809950 +1305.853106 +1305.888737 +1305.919740 +1305.931395 +1306.007851 +1306.056236 +1306.109383 +1306.141551 +1306.147112 +1306.225600 +1306.261831 +1306.291434 +1306.376449 +1306.387105 +1306.434991 +1306.470055 +1306.503755 +1306.515443 +1306.542283 +1306.564261 +1306.573885 +1306.615909 +1306.643116 +1306.645713 +1306.692699 +1306.726199 +1306.787937 +1306.810048 +1306.812280 +1306.833125 +1306.852373 +1306.854437 +1306.985473 +1307.042649 +1307.062995 +1307.086039 +1307.113878 +1307.119206 +1307.165226 +1307.165792 +1307.209182 +1307.211813 +1307.251207 +1307.312779 +1307.373784 +1307.406651 +1307.444980 +1307.504453 +1307.537554 +1307.561629 +1307.669921 +1307.817174 +1308.030693 +1308.083241 +1308.208116 +1308.277813 +1308.368056 +1308.494629 +1308.547842 +1308.651738 +1308.698591 +1308.752437 +1308.812078 +1308.874515 +1308.879410 +1308.917139 +1308.938018 +1309.070952 +1309.072051 +1309.116640 +1309.217738 +1309.243679 +1309.283273 +1309.371151 +1309.431291 +1309.532790 +1309.636952 +1309.696426 +1309.743612 +1309.807548 +1309.850738 +1310.033821 +1310.114607 +1310.146242 +1310.175613 +1310.315240 +1310.537484 +1310.739482 +1310.785136 +1311.048339 +1311.133521 +1311.208745 +1311.312575 +1311.471949 +1311.497323 +1311.525062 +1311.705182 +1312.187199 +1312.230090 +1312.255231 +1312.296423 +1312.302817 +1312.327892 +1312.349637 +1312.379340 +1312.489896 +1312.515637 +1312.518568 +1312.546007 +1312.586699 +1312.629124 +1312.638947 +1312.674645 +1312.709643 +1312.797189 +1312.817668 +1312.818334 +1312.841677 +1312.859859 +1312.894525 +1312.902616 +1312.926659 +1312.974944 +1313.001950 +1313.045340 +1313.108877 +1313.160092 +1313.188297 +1313.217768 +1313.272979 +1313.319632 +1313.385799 +1313.411840 +1313.412406 +1313.435550 +1313.464254 +1313.473079 +1313.507344 +1313.558060 +1313.570914 +1313.645639 +1313.661490 +1313.686365 +1313.711007 +1313.714038 +1313.896255 +1313.937880 +1313.939046 +1313.988097 +1314.005912 +1314.070114 +1314.073478 +1314.157360 +1314.248869 +1314.295822 +1314.324460 +1314.406211 +1314.479505 +1314.535981 +1314.615402 +1314.639478 +1314.686531 +1314.707143 +1314.723760 +1314.777706 +1314.781203 +1314.840910 +1314.864686 +1314.920230 +1314.965651 +1315.010640 +1315.065585 +1315.074476 +1315.113470 +1315.116434 +1315.158425 +1315.188095 +1315.222361 +1315.252697 +1315.261422 +1315.284799 +1315.313903 +1315.374442 +1315.397386 +1315.416833 +1315.456393 +1315.492857 +1315.522394 +1315.560589 +1315.595721 +1315.599750 +1315.636014 +1315.652031 +1315.700582 +1315.737512 +1315.779603 +1315.875740 +1315.918797 +1315.966383 +1316.030752 +1316.064318 +1316.122460 +1316.158757 +1316.180369 +1316.184498 +1316.218830 +1316.360555 +1316.416932 +1316.454228 +1316.541774 +1316.584498 +1316.642440 +1316.701247 +1316.748500 +1316.774407 +1316.806342 +1316.808473 +1316.831284 +1316.860754 +1316.896618 +1316.961553 +1316.965450 +1317.031417 +1317.069512 +1317.139309 +1317.164251 +1317.199848 +1317.265682 +1317.322692 +1317.336678 +1317.439841 +1317.485762 +1317.556624 +1317.607374 +1317.632848 +1317.677004 +1317.727853 +1317.754393 +1317.826854 +1317.893587 +1317.942172 +1317.978735 +1318.017263 +1318.190323 +1318.229684 +1318.275705 +1318.311702 +1318.421992 +1318.475405 +1318.507606 +1318.554426 +1318.616031 +1318.635711 +1318.663050 +1318.697549 +1318.748232 +1318.844802 +1318.872441 +1318.917895 +1319.022957 +1319.099913 +1319.119360 +1319.160519 +1319.214165 +1319.258021 +1319.321824 +1319.323689 +1319.375504 +1319.404774 +1319.445900 +1319.589456 +1319.633745 +1319.658021 +1319.669410 +1319.684295 +1319.718327 +1319.756223 +1319.786725 +1319.811234 +1319.835377 +1319.906605 +1319.910135 +1319.941337 +1319.988091 +1320.020691 +1320.044068 +1320.099213 +1320.101843 +1320.137741 +1320.169975 +1320.231347 +1320.273272 +1320.335609 +1320.398846 +1320.440704 +1320.461450 +1320.519192 +1320.579432 +1320.612299 +1320.629315 +1320.702409 +1320.747197 +1320.811699 +1320.902009 +1320.939871 +1320.957620 +1320.994117 +1321.190554 +1321.254290 +1321.286624 +1321.355722 +1321.419591 +1321.627516 +1321.708668 +1321.766610 +1321.843400 +1321.902008 +1321.942234 +1321.992418 +1322.067109 +1322.097512 +1322.189920 +1322.342567 +1322.385124 +1322.409567 +1322.431045 +1322.458618 +1322.476433 +1322.516893 +1322.535374 +1322.565744 +1322.612630 +1322.630279 +1322.649493 +1322.678464 +1322.785923 +1322.830046 +1322.849793 +1322.883426 +1322.925717 +1323.005670 +1323.048394 +1323.144631 +1323.203505 +1323.438104 +1323.441833 +1323.568040 +1324.016758 +1324.208533 +1324.210630 +1326.673765 +1326.727311 +1326.842529 +1326.980258 +1327.019053 +1327.045693 +1327.075929 +1327.242496 +1327.473065 +1327.667737 +1327.719218 +1327.739964 +1327.741130 +1327.760177 +1327.912159 +1327.952518 +1327.958079 +1327.995142 +1328.014889 +1328.121649 +1328.177127 +1328.217753 +1328.247490 +1328.249521 +1328.290713 +1328.355115 +1328.457979 +1328.489214 +1328.512957 +1328.518618 +1328.557413 +1328.622914 +1328.646723 +1328.690180 +1328.824712 +1328.829740 +1328.879424 +1328.885551 +1328.917985 +1328.937499 +1328.947189 +1328.962041 +1328.999603 +1329.031438 +1329.034036 +1329.081521 +1329.113023 +1329.175627 +1329.223213 +1329.278324 +1329.309793 +1329.326909 +1329.344491 +1329.365937 +1329.386017 +1329.398970 +1329.433802 +1329.472130 +1329.472563 +1329.536166 +1329.601501 +1329.657178 +1329.678324 +1329.701667 +1329.744158 +1329.779556 +1329.797971 +1329.803432 +1329.853782 +1329.912190 +1329.934468 +1329.961374 +1329.972330 +1330.017318 +1330.037598 +1330.062673 +1330.086149 +1330.102133 +1330.123845 +1330.160575 +1330.166335 +1330.186549 +1330.206828 +1330.210891 +1330.234267 +1330.258976 +1330.295040 +1330.367467 +1330.386415 +1330.419382 +1330.434367 +1330.453948 +1330.511457 +1330.514587 +1330.530238 +1330.543658 +1330.609725 +1330.639995 +1330.662972 +1330.694174 +1330.729405 +1330.761473 +1330.801433 +1330.821813 +1330.832102 +1330.841926 +1330.858642 +1330.915219 +1330.971763 +1331.018416 +1331.036731 +1331.086015 +1331.130137 +1331.179621 +1331.212721 +1331.265202 +1331.329937 +1331.400200 +1331.471529 +1331.520880 +1331.586614 +1331.625841 +1331.678622 +1331.725508 +1331.875425 +1331.919847 +1331.966933 +1332.056643 +1332.061971 +1332.172461 +1332.215218 +1332.261105 +1332.393373 +1332.423742 +1332.463303 +1332.504928 +1332.610922 +1332.625674 +1332.650282 +1332.676723 +1332.714152 +1332.741158 +1332.783616 +1332.887245 +1332.980119 +1333.035264 +1333.083582 +1333.106626 +1333.178087 +1333.210522 +1333.242323 +1333.293139 +1333.325407 +1333.359706 +1333.400032 +1333.454877 +1333.492240 +1333.520711 +1333.565899 +1333.608124 +1333.655376 +1333.704061 +1333.755876 +1333.794171 +1333.824673 +1333.882649 +1333.991806 +1334.020045 +1334.071626 +1334.126838 +1334.225439 +1334.267064 +1334.314150 +1334.342722 +1334.414783 +1334.494669 +1334.593937 +1334.627170 +1334.673923 +1334.739358 +1334.810453 +1334.834829 +1334.837493 +1334.874722 +1334.892904 +1334.939091 +1335.000796 +1335.044852 +1335.060170 +1335.098931 +1335.199198 +1335.231132 +1335.257905 +1335.391139 +1335.418511 +1335.458738 +1335.508754 +1335.580016 +1335.672890 +1335.698498 +1335.731931 +1335.769094 +1335.804525 +1335.903959 +1335.988907 +1336.030465 +1336.091538 +1336.177518 +1336.216679 +1336.251178 +1336.332963 +1336.396366 +1336.421607 +1336.446116 +1336.511717 +1336.617977 +1336.643419 +1336.679283 +1336.742320 +1336.817478 +1336.904724 +1336.992869 +1337.092969 +1337.127934 +1337.172655 +1337.209985 +1337.216911 +1337.253441 +1337.274553 +1337.308153 +1337.333161 +1337.372056 +1337.392868 +1337.397930 +1337.427001 +1337.482412 +1337.540587 +1337.585775 +1337.628599 +1337.649711 +1337.698895 +1337.715346 +1337.747647 +1337.834460 +1337.997197 +1338.085941 +1338.146880 +1338.183344 +1338.238788 +1338.371189 +1338.448945 +1338.831861 +1338.902923 +1338.947945 +1339.007818 +1339.060732 +1339.135790 +1339.157835 +1339.186773 +1339.229763 +1339.276083 +1339.312180 +1339.340619 +1339.395064 +1339.445947 +1339.519972 +1339.552307 +1339.658101 +1339.697128 +1339.777182 +1339.890268 +1339.932027 +1339.958367 +1340.043282 +1340.184441 +1340.229462 +1340.276082 +1340.345746 +1340.360498 +1340.395929 +1340.487571 +1340.530228 +1340.742848 +1340.870454 +1340.982775 +1341.134523 +1341.364126 +1341.391466 +1341.430893 +1341.469821 +1341.525798 +1341.593996 +1341.690034 +1341.788535 +1341.790766 +1341.792631 +1341.794662 +1341.796693 +1341.798758 +1341.894795 +1341.897160 +1341.899224 +1342.022134 +1342.290033 +1343.143012 +1343.145110 +1343.147308 +1343.158830 +1343.162493 +1343.576911 +1343.578843 +1343.908480 +1343.911110 +1344.501486 +1344.522398 +1346.462157 +1347.467717 +1347.598952 +1347.878839 +1347.880603 +1347.882302 +1347.989128 +1347.991825 +1348.092292 +1349.570046 +1355.331345 +1355.702274 +1356.093216 +1356.958283 +1359.062477 +1361.087050 +1361.090014 +1365.945254 +1365.958907 +1365.961538 +1386.230482 +1386.356922 +1386.357721 +1386.767911 +1387.038373 +1387.193951 +1387.225453 +1387.345099 +1387.384160 +1387.440770 +1387.532379 +1387.591986 +1387.775635 +1387.868509 +1387.985425 +1388.001109 +1388.044499 +1388.097879 +1388.186657 +1388.264479 +1388.305305 +1388.324652 +1388.343234 +1388.349794 +1388.393217 +1388.473870 +1388.486956 +1388.535075 +1388.535608 +1388.591019 +1388.629680 +1388.675634 +1388.698212 +1388.787922 +1388.814961 +1388.839603 +1388.860649 +1388.887822 +1388.943000 +1388.991551 +1388.993616 +1389.044632 +1389.100009 +1389.141035 +1389.199576 +1389.234408 +1389.297678 +1389.310199 +1389.317125 +1389.380229 +1389.429346 +1389.501108 +1389.545963 +1389.614661 +1389.654121 +1389.756752 +1389.770605 +1389.797911 +1389.813029 +1389.837638 +1389.893515 +1389.910665 +1389.942499 +1389.973402 +1390.003239 +1390.033741 +1390.041301 +1390.107534 +1390.127947 +1390.182559 +1390.182925 +1390.243298 +1390.259615 +1390.339036 +1390.377864 +1390.410797 +1390.418523 +1390.438403 +1390.461214 +1390.483858 +1390.528446 +1390.592515 +1390.635805 +1390.665542 +1390.690417 +1390.721953 +1390.767607 +1390.785089 +1390.794979 +1390.850024 +1390.882092 +1390.899841 +1390.913294 +1391.030644 +1391.038203 +1391.077896 +1391.106701 +1391.123884 +1391.128745 +1391.193447 +1391.306800 +1391.333041 +1391.351822 +1391.374233 +1391.399041 +1391.412262 +1391.429145 +1391.450856 +1391.459514 +1391.531642 +1391.569704 +1391.603570 +1391.614726 +1391.631742 +1391.671169 +1391.698009 +1391.709797 +1391.735804 +1391.753986 +1391.757483 +1391.824915 +1391.827679 +1391.854019 +1391.917256 +1391.954152 +1391.977229 +1391.980959 +1391.993280 +1392.008198 +1392.014092 +1392.025215 +1392.060846 +1392.156417 +1392.161312 +1392.162577 +1392.165374 +1392.175065 +1392.234205 +1392.281924 +1392.321385 +1392.326080 +1392.342264 +1392.377895 +1392.383256 +1392.406866 +1392.454918 +1392.478594 +1392.508464 +1392.535004 +1392.584188 +1392.640232 +1392.668504 +1392.705567 +1392.712926 +1392.723516 +1392.743662 +1392.794112 +1392.797542 +1392.849823 +1392.852287 +1392.934072 +1392.977994 +1393.007065 +1393.013992 +1393.034737 +1393.054451 +1393.094578 +1393.132739 +1393.157748 +1393.160345 +1393.210195 +1393.267738 +1393.318287 +1393.333871 +1393.339732 +1393.357081 +1393.384221 +1393.396875 +1393.435070 +1393.482223 +1393.579692 +1393.603535 +1393.619219 +1393.635802 +1393.659046 +1393.685086 +1393.711560 +1393.752952 +1393.771633 +1393.800304 +1393.897807 +1393.944793 +1393.946325 +1393.989815 +1394.049688 +1394.092012 +1394.137966 +1394.150920 +1394.181390 +1394.256514 +1394.347523 +1394.431606 +1394.477027 +1394.491912 +1394.502768 +1394.531006 +1394.564440 +1394.621782 +1394.629474 +1394.665438 +1394.684852 +1394.724113 +1394.736401 +1394.803334 +1394.847789 +1394.876294 +1394.970400 +1394.998705 +1395.032271 +1395.035468 +1395.079990 +1395.158045 +1395.184186 +1395.210892 +1395.262574 +1395.312990 +1395.334102 +1395.359311 +1395.379390 +1395.389647 +1395.424445 +1395.519683 +1395.575594 +1395.622680 +1395.652184 +1395.677359 +1395.701435 +1395.736833 +1395.801535 +1395.921348 +1395.956047 +1396.192277 +1396.197072 +1396.240029 +1396.246822 +1396.259743 +1396.295041 +1396.319516 +1396.356013 +1396.366136 +1396.400668 +1396.475527 +1396.501201 +1396.532969 +1396.540328 +1396.596639 +1396.666003 +1396.788946 +1396.823578 +1396.890544 +1396.910258 +1396.944557 +1396.989445 +1397.060841 +1397.129772 +1397.143425 +1397.158343 +1397.178123 +1397.207627 +1397.313155 +1397.356411 +1397.426341 +1397.433601 +1397.512122 +1397.566901 +1397.608792 +1397.680187 +1397.735599 +1397.757710 +1397.779388 +1397.787880 +1397.797004 +1397.829005 +1397.888712 +1397.950450 +1398.041559 +1398.081486 +1398.314552 +1398.353613 +1398.415418 +1398.485947 +1398.511089 +1398.553813 +1398.575092 +1398.611155 +1398.616084 +1398.658675 +1398.684449 +1398.717915 +1398.782417 +1398.827206 +1398.876790 +1398.889710 +1399.010356 +1399.012820 +1399.015684 +1399.023476 +1399.118081 +1399.152647 +1399.228404 +1399.288111 +1399.400865 +1399.420812 +1399.446619 +1399.487179 +1399.537828 +1399.548351 +1399.590508 +1399.654478 +1399.733698 +1399.765333 +1399.819846 +1399.849915 +1399.955443 +1400.143788 +1400.199133 +1400.223042 +1400.276455 +1400.495669 +1400.532166 +1400.700764 +1400.743821 +1400.782515 +1400.883048 +1400.916481 +1400.996368 +1401.023208 +1401.072791 +1401.168429 +1401.195402 +1401.203527 +1401.249714 +1401.267996 +1401.270627 +1401.308689 +1401.353244 +1401.391905 +1401.442388 +1401.470860 +1401.553244 +1401.600130 +1401.649880 +1401.671792 +1401.672258 +1401.713683 +1401.746717 +1401.856407 +1401.857140 +1401.907423 +1401.942587 +1401.987542 +1402.048548 +1402.128368 +1402.192371 +1402.308221 +1402.317745 +1402.358138 +1402.416513 +1402.487275 +1402.653109 +1402.787575 +1402.916113 +1402.958470 +1403.038790 +1403.162167 +1403.197132 +1403.340688 +1403.456872 +1403.497165 +1403.559502 +1403.586275 +1403.746049 +1403.939688 +1404.056938 +1404.111250 +1404.230131 +1404.355339 +1404.415778 +1404.432928 +1404.534360 +1404.541120 +1404.580114 +1404.659068 +1404.686840 +1404.750577 +1404.832295 +1404.877849 +1404.891036 +1404.918708 +1404.933394 +1404.957003 +1404.996597 +1405.053007 +1405.125734 +1405.205221 +1405.209484 +1405.249244 +1405.308118 +1405.391735 +1405.394965 +1405.482577 +1405.503356 +1405.578714 +1405.705720 +1405.743916 +1405.772820 +1405.775517 +1405.808784 +1405.884675 +1405.919273 +1405.919939 +1406.057102 +1406.228764 +1406.285806 +1406.349476 +1406.441784 +1406.600392 +1406.724634 +1406.726898 +1406.729263 +1406.738886 +1406.743115 +1406.844947 +1406.956901 +1407.054237 +1407.216741 +1407.278313 +1407.383241 +1407.485039 +1407.881276 +1407.931626 +1408.270020 +1408.299857 +1408.350973 +1408.427529 +1408.495495 +1408.546943 +1408.578911 +1408.624099 +1409.093529 +1409.399856 +1409.538917 +1409.655234 +1409.698857 +1409.830125 +1409.987135 +1411.038715 +1411.520367 +1411.565288 +1411.749471 +1411.811608 +1411.860093 +1411.959061 +1412.145175 +1412.243310 +1412.559393 +1412.561758 +1412.562923 +1412.565754 +1421.113597 +1423.505969 +1425.662877 +1425.824015 +1425.927878 +1426.910195 +1427.000038 +1427.002069 +1427.070434 +1427.072099 +1427.073764 +1427.075762 +1427.232505 +1427.241929 +1427.353584 +1427.358513 +1428.056680 +1428.059278 +1428.063307 +1428.223014 +1428.226144 +1428.693843 +1440.928096 +1443.082673 +1443.180708 +1445.109411 +1445.112308 +1445.114639 +1445.199021 +1447.239778 +1447.241277 +1448.092957 +1448.444839 +1448.590892 +1448.632651 +1448.634782 +1449.279936 +1449.393422 +1449.682699 +1449.831650 +1450.144404 +1456.137838 +1456.227548 +1457.886654 +1457.889518 +1457.950457 +1457.952921 +1459.517122 +1460.718086 +1460.723714 +1462.071898 +1462.183786 +1462.655947 +1462.658344 +1462.660375 +1462.662706 +1462.809460 +1462.811025 +1462.813356 +1462.814188 +1462.816552 +1462.878191 +1462.923878 +1462.925810 +1462.928141 +1462.982453 +1462.984584 +1463.108327 +1463.110258 +1463.112090 +1463.115120 +1463.757244 +1463.882319 +1468.523207 +1468.525138 +1468.526370 +1468.528035 +1472.037356 +1472.039354 +1472.041219 +1472.046313 +1472.250276 +1472.252207 +1472.253639 +1472.255671 +1472.384042 +1472.386839 +1472.388604 +1472.390436 +1472.392267 +1472.532926 +1473.501457 +1473.650108 +1476.792296 +1481.257859 +1482.552230 +1482.667815 +1482.778970 +1483.373442 +1483.473109 +1486.714597 +1486.716895 +1486.725520 +1486.727684 +1486.729882 +1486.933478 +1486.936808 +1486.939072 +1487.026618 +1487.404040 +1490.671403 +1490.673568 +1490.675732 +1490.821719 +1490.823850 +1490.825649 +1491.184090 +1491.297243 +1491.382058 +1492.508031 +1492.891181 +1494.800203 +1494.937699 +1495.524179 +1496.112490 +1496.222113 +1496.253682 +1496.255746 +1496.418151 +1496.419582 +1496.421314 +1496.423379 +1496.572829 +1496.574427 +1496.574694 +1496.575959 +1496.576625 +1496.577591 +1496.578490 +1496.651683 +1496.655746 +1496.787248 +1496.789379 +1496.791144 +1496.792476 +1496.874394 +1502.605890 +1502.609020 +1502.611085 +1504.425036 +1504.427333 +1504.498029 +1504.646081 +1504.729564 +1504.731329 +1504.732961 +1504.734959 +1504.821139 +1504.822671 +1504.824070 +1504.825601 +1504.897762 +1504.901392 +1505.025468 +1505.027266 +1505.084176 +1505.085741 +1505.087206 +1505.088372 +1505.088904 +1505.091802 +1505.156603 +1505.158568 +1505.223037 +1505.227999 +1505.230696 +1505.888970 +1506.128497 +1508.288035 +1508.440649 +1511.026594 +1511.028259 +1511.029891 +1511.032355 +1511.033687 +1511.035385 +1511.345608 +1511.404682 +1511.407280 +1511.409411 +1511.881006 +1511.981405 +1511.984102 +1511.986467 +1511.998754 +1512.166919 +1512.167952 +1512.168817 +1512.170549 +1512.172247 +1512.874678 +1513.104681 +1514.565851 +1514.570647 +1516.735579 +1516.948067 +1517.256791 +1517.258589 +1517.260254 +1517.262286 +1517.480467 +1517.482099 +1517.483564 +1517.485129 +1517.560187 +1517.632015 +1517.634546 +1517.719528 +1519.663715 +1519.664548 +1519.667611 +1519.982096 +1519.983861 +1519.985460 +1519.987424 +1520.143501 +1520.145166 +1520.146665 +1520.149495 +1520.151094 +1520.152792 +1520.278200 +1520.278799 +1520.280498 +1520.405073 +1520.406771 +1520.409968 +1520.519592 +1523.193515 +1524.394480 +1524.396244 +1524.397843 +1524.399541 +1524.401806 +1524.551156 +1524.552788 +1524.554320 +1524.555951 +1524.624583 +1524.686287 +1524.687786 +1524.871868 +1524.873034 +1524.874599 +1524.877629 +1524.879294 +1524.995778 +1525.059081 +1525.088019 +1525.094113 +1525.449590 +1526.152087 +1526.154318 +1526.156216 +1526.261178 +1526.263309 +1526.265074 +1526.328244 +1526.330075 +1526.331940 +1526.563508 +1526.700604 +1527.242662 +1527.445892 +1527.624313 +1528.020983 +1528.022614 +1528.025845 +1528.028242 +1528.030573 +1528.197007 +1528.199837 +1528.772131 +1528.774129 +1528.775894 +1528.778092 +1528.866969 +1528.869300 +1529.292343 +1529.338031 +1529.548021 +1529.981221 +1529.982919 +1529.986415 +1530.215619 +1530.218217 +1530.258243 +1530.263538 +1530.793208 +1530.879821 +1531.191343 +1531.326374 +1531.328039 +1531.329538 +1531.331302 +1531.359774 +1531.361506 +1531.534432 +1531.535998 +1531.538062 +1531.683517 +1531.685182 +1531.686680 +1531.688445 +1531.692707 +1531.702664 +1531.839427 +1531.841225 +1531.842957 +1531.845355 +1531.847319 +1531.973926 +1531.987379 +1534.745019 +1535.588308 +1535.589973 +1535.591438 +1535.593070 +1535.595101 +1535.741987 +1535.743552 +1535.810852 +1535.883013 +1535.887375 +1535.958304 +1535.961767 +1536.037392 +1536.039057 +1536.040555 +1536.116179 +1536.118311 +1536.120475 +1536.152809 +1536.159669 +1536.242220 +1536.244484 +1537.662532 +1537.664563 +1537.668426 +1537.757736 +1537.759834 +1537.836457 +1538.002691 +1538.010816 +1538.093334 +1538.095265 +1538.097529 +1538.180180 +1538.182211 +1538.333393 +1538.335158 +1538.410150 +1538.641119 +1538.644149 +1538.648844 +1538.815311 +1538.899760 +1540.561729 +1540.985805 +1540.989834 +1541.234656 +1541.236321 +1541.237919 +1541.334523 +1541.336587 +1541.338618 +1541.606617 +1541.771019 +1541.774249 +1541.775847 +1541.857399 +1541.859231 +1541.935354 +1541.937186 +1541.938918 +1541.984405 +1541.987036 +1542.875280 +1543.249839 +1543.871083 +1543.876511 +1544.246641 +1544.250604 +1544.364157 +1544.365988 +1544.367653 +1544.444476 +1544.447740 +1544.626794 +1544.628592 +1544.630190 +1544.706148 +1544.837150 +1544.839148 +1544.840879 +1544.917303 +1545.005581 +1545.007612 +1545.009577 +1545.104582 +1545.107646 +1545.181405 +1546.333718 +1546.338780 +1546.505846 +1546.601217 +1546.603015 +1546.751767 +1546.753531 +1546.755163 +1546.914404 +1546.919865 +1547.080404 +1547.083934 +1547.085965 +1547.087830 +1547.178939 +1547.249135 +1547.251000 +1547.252732 +1547.254730 +1547.323228 +1547.643907 +1549.051032 +1549.053130 +1549.365517 +1549.368114 +1549.388194 +1549.393689 +1549.706076 +1549.708540 +1549.710472 +1550.017564 +1550.020794 +1550.321027 +1550.322759 +1550.324290 +1550.326122 +1550.329752 +1550.392655 +1550.394720 +1550.396485 +1550.398783 +1550.699781 +1550.701413 +1550.704377 +1550.706275 +1550.868779 +1550.870544 +1550.872142 +1550.873874 +1551.020327 +1551.092288 +1551.094519 +1551.161219 +1551.437643 +1551.697982 +1551.700579 +1551.702677 +1552.014765 +1552.016596 +1552.020592 +1552.101012 +1552.103077 +1552.105108 +1552.319393 +1552.321824 +1552.323589 +1552.578934 +1552.822223 +1552.824155 +1552.835910 +1552.837475 +1552.839306 +1552.843302 +1553.090954 +1553.092986 +1553.094684 +1553.369143 +1553.370841 +1553.372339 +1553.374038 +1553.376202 +1553.382063 +1553.568843 +1553.570441 +1553.571840 +1553.573438 +1553.575403 +1553.587124 +1553.590021 +1553.781163 +1553.782995 +1553.949761 +1553.951593 +1554.083827 +1554.085925 +1554.088090 +1554.479664 +1554.482295 +1554.793950 +1554.796381 +1555.092351 +1555.094416 +1555.096547 +1556.117958 +1556.119689 +1556.121188 +1556.122853 +1556.374268 +1556.627980 +1556.629712 +1556.631211 +1556.722819 +1556.724883 +1556.730944 +1557.127480 +1557.129245 +1557.130777 +1557.132509 +1557.501306 +1557.504237 +1557.505835 +1557.507667 +1557.702305 +1557.704203 +1557.705901 +1557.849524 +1557.940034 +1557.941765 +1557.943364 +1557.945195 +1558.157949 +1558.457116 +1558.458781 +1558.460280 +1558.461878 +1558.464076 +1558.814359 +1558.817622 +1558.819254 +1558.821418 +1558.823116 +1558.824582 +1558.826147 +1558.826846 +1558.828145 +1559.084455 +1559.086253 +1559.087785 +1559.211727 +1559.213326 +1559.214724 +1559.216323 +1559.218088 +1559.220752 +1559.335570 +1559.337268 +1559.338834 +1559.340565 +1559.342563 +1559.600039 +1559.601670 +1559.603102 +1559.604767 +1559.606699 +1559.795077 +1559.796942 +1559.978593 +1559.980192 +1559.981557 +1559.983055 +1559.984820 +1559.988317 +1560.013658 +1560.020951 +1560.329409 +1560.332672 +1560.366738 +1560.368370 +1560.369768 +1560.371267 +1560.375529 +1560.651120 +1560.655915 +1560.783288 +1560.784886 +1560.786251 +1560.789615 +1560.792612 +1560.910427 +1560.912325 +1560.913990 +1560.915755 +1560.918153 +1561.178692 +1561.180490 +1561.182088 +1561.183853 +1561.186817 +1561.202568 +1561.204000 +1561.205665 +1561.207496 +1561.503134 +1561.504899 +1561.506430 +1561.508162 +1561.528741 +1561.532171 +1561.533870 +1561.535768 +1561.868635 +1561.870966 +1561.873097 +1561.947722 +1561.949387 +1561.950852 +1561.952484 +1561.954615 +1561.958178 +1562.475927 +1562.479390 +1562.605730 +1562.607395 +1562.608794 +1562.610459 +1562.612490 +1563.018051 +1563.019682 +1563.021048 +1563.022613 +1563.024511 +1563.329639 +1563.331304 +1563.332702 +1563.334267 +1563.695306 +1563.696971 +1563.698370 +1563.700068 +1563.965702 +1563.967434 +1563.968932 +1563.970664 +1563.974127 +1564.301299 +1564.302931 +1564.304896 +1564.431536 +1564.701499 +1564.703164 +1564.704562 +1564.706161 +1564.708126 +1565.032001 +1565.033700 +1565.035198 +1565.036863 +1565.175225 +1565.403763 +1565.405527 +1565.407925 +1565.419214 +1565.422244 +1565.425374 +1565.639194 +1565.644222 +1565.657675 +1565.659373 +1565.660905 +1565.662670 +1565.984681 +1565.986346 +1565.989276 +1565.991175 +1566.316149 +1566.319146 +1566.320678 +1566.322510 +1566.326472 +1566.331767 +1566.336629 +1566.622642 +1566.677920 +1566.680951 +1566.682483 +1566.684347 +1567.033465 +1567.035096 +1567.039891 +1567.168330 +1567.175023 +1567.341823 +1567.343554 +1567.345086 +1567.346784 +1567.349448 +1567.761802 +1567.764832 +1567.766398 +1567.768196 +1567.771226 +1568.096600 +1568.098232 +1568.099597 +1568.101129 +1568.102927 +1568.105158 +1568.349514 +1568.351179 +1568.352577 +1568.354176 +1568.356074 +1568.693669 +1568.695368 +1568.696833 +1568.698398 +1568.700396 +1569.107289 +1569.110419 +1569.112051 +1569.113915 +1569.331631 +1569.333329 +1569.336393 +1569.338291 +1569.342753 +1569.716346 +1569.719376 +1569.720941 +1570.059802 +1570.063032 +1570.067894 +1570.386941 +1570.388839 +1570.390537 +1570.392702 +1570.732495 +1570.734193 +1570.735692 +1570.737357 +1570.739455 +1571.065329 +1571.066794 +1571.070790 +1571.390170 +1571.393467 +1571.395964 +1571.816577 +1571.818275 +1571.819740 +1571.821372 +1571.823337 +1572.125301 +1572.128365 +1572.129963 +1572.131994 +1572.441018 +1572.442717 +1572.444182 +1572.445780 +1572.447678 +1572.787738 +1572.789403 +1572.790835 +1572.794265 +1573.118507 +1573.123169 +1573.125200 +1573.395097 +1573.396762 +1573.398260 +1573.399892 +1573.402023 +1573.719738 +1573.721403 +1573.722868 +1573.724500 +1573.726432 +1573.796495 +1573.802222 +1574.030760 +1574.032159 +1574.033724 +1574.035655 +1574.039651 +1574.115276 +1574.324366 +1574.325798 +1574.327497 +1574.488069 +1574.489834 +1574.676714 +1574.678412 +1574.679744 +1574.683174 +1574.764526 +1574.766058 +1574.963260 +1574.965025 +1574.966623 +1574.968322 +1575.279910 +1575.283040 +1575.398857 +1575.400522 +1575.401921 +1575.403519 +1575.405517 +1575.594195 +1575.728761 +1575.730426 +1575.733423 +1575.735254 +1575.868554 +1575.873216 +1576.154834 +1576.156566 +1576.158031 +1576.159696 +1576.162327 +1576.468387 +1576.470085 +1576.471450 +1576.473082 +1576.474914 +1576.490232 +1576.492063 +1576.861294 +1576.864490 +1576.866189 +1576.868386 +1577.277510 +1577.278876 +1577.280507 +1577.282339 +1577.314273 +1577.615705 +1577.617403 +1577.618802 +1577.620434 +1577.622365 +1577.946008 +1577.947673 +1577.949138 +1577.950736 +1577.952768 +1578.345441 +1578.347173 +1578.348671 +1578.350336 +1578.696323 +1578.698022 +1578.699454 +1578.701119 +1578.703117 +1579.033286 +1579.034951 +1579.036416 +1579.037981 +1579.039946 +1579.158294 +1579.491727 +1579.493192 +1579.494824 +1579.498187 +1579.839479 +1579.841177 +1579.842609 +1579.844208 +1579.846306 +1580.181270 +1580.182935 +1580.184301 +1580.185899 +1580.187830 +1580.464420 +1580.467450 +1580.468949 +1580.470914 +1580.803980 +1580.805679 +1580.807077 +1580.808676 +1580.810540 +1581.135082 +1581.136747 +1581.138179 +1581.139811 +1581.141775 +1581.384133 +1581.485065 +1581.486697 +1581.488129 +1581.489727 +1581.491559 +1581.494522 +1581.774642 +1581.776307 +1581.777706 +1582.084931 +1582.086596 +1582.087962 +1582.089493 +1582.091292 +1582.394055 +1582.395654 +1582.397052 +1582.398584 +1583.044238 +1583.046103 +1583.047801 +1583.049865 +1583.347867 +1583.349532 +1583.350931 +1583.352529 +1583.354394 +1583.759455 +1583.761120 +1583.762652 +1583.764350 +1583.766415 +1583.859155 +1583.998816 +1584.000347 +1584.446900 +1584.448599 +1584.450064 +1584.451696 +1584.453594 +1584.554260 +1584.556091 +1584.873973 +1584.875704 +1584.877170 +1584.878868 +1584.881032 +1584.890856 +1584.895385 +1584.897116 +1584.899680 +1585.226620 +1585.228418 +1585.229883 +1585.231615 +1585.235178 +1585.405141 +1585.408438 +1585.410103 +1585.413799 +1585.415697 +1585.417396 +1585.660952 +1585.663982 +1585.667212 +1585.670575 +1585.699313 +1585.701012 +1585.702510 +1585.704242 +1585.707672 +1586.023189 +1586.024721 +1586.026686 +1586.082763 +1586.084494 +1586.085960 +1586.087625 +1586.089323 +1586.439406 +1586.441071 +1586.442503 +1586.444134 +1586.446099 +1586.489522 +1586.496216 +1586.750861 +1586.752492 +1586.754557 +1586.987824 +1586.989489 +1586.990920 +1586.992486 +1586.994484 +1586.998912 +1587.207037 +1587.210334 +1587.212199 +1587.470540 +1587.473704 +1587.475435 +1587.725985 +1587.727716 +1587.730946 +1587.733943 +1588.084259 +1588.085991 +1588.087489 +1588.089254 +1588.091785 +1588.388388 +1588.390120 +1588.391618 +1588.395548 +1588.716593 +1588.718291 +1588.719790 +1588.721455 +1588.723886 +1588.885491 +1588.888921 +1588.890752 +1589.041168 +1589.042966 +1589.044465 +1589.047462 +1589.163979 +1589.170539 +1589.359383 +1589.361148 +1589.362680 +1589.364411 +1589.459250 +1589.461081 +1589.462613 +1589.464311 +1589.468307 +1589.711464 +1589.713195 +1589.714694 +1589.716359 +1589.719289 +1589.799476 +1589.801207 +1590.038104 +1590.039902 +1590.041434 +1590.043198 +1590.049892 +1590.051557 +1590.056419 +1590.330644 +1590.332342 +1590.335506 +1590.338803 +1590.499575 +1590.501606 +1590.503305 +1590.505502 +1590.682126 +1590.683824 +1590.685289 +1590.686987 +1590.790351 +1590.793381 +1591.011163 +1591.012828 +1591.014226 +1591.015925 +1591.017956 +1591.275398 +1591.277430 +1591.330843 +1591.332708 +1591.336271 +1591.575898 +1591.577696 +1591.720986 +1591.722751 +1591.724282 +1591.726147 +1591.730110 +1592.066373 +1592.070969 +1592.072734 +1592.099473 +1592.101438 +1592.103170 +1592.106267 +1592.503136 +1592.504868 +1592.506399 +1592.508164 +1592.511228 +1592.533705 +1592.536702 +1592.541631 +1592.853219 +1592.856449 +1592.858281 +1593.212626 +1593.214391 +1593.215923 +1593.217754 +1593.609196 +1593.612526 +1593.614490 +1593.702735 +1593.704500 +1593.706099 +1593.707764 +1593.927910 +1593.929608 +1593.931007 +1593.932605 +1593.934803 +1594.216821 +1594.220217 +1594.224113 +1594.368868 +1594.370567 +1594.372032 +1594.373830 +1594.377360 +1594.598638 +1594.600636 +1594.602335 +1594.604233 +1594.698738 +1594.702002 +1594.703900 +1594.914422 +1594.916121 +1594.917619 +1594.919284 +1595.000103 +1595.001802 +1595.003233 +1595.004865 +1595.006896 +1595.189014 +1595.192078 +1595.193576 +1595.197239 +1595.287116 +1595.288814 +1595.290246 +1595.291911 +1595.485617 +1595.602733 +1595.604432 +1595.605864 +1595.607429 +1595.609293 +1595.784418 +1595.789113 +1595.993309 +1595.995074 +1595.996539 +1595.998237 +1596.000302 +1596.105896 +1596.110825 +1596.203665 +1596.205530 +1596.207128 +1596.209193 +1596.308194 +1596.658277 +1596.661507 +1596.985150 +1596.986848 +1596.988313 +1596.989978 +1596.992309 +1597.017950 +1597.192109 +1597.243924 +1597.245655 +1597.247121 +1597.252582 +1597.649118 +1597.650883 +1597.652415 +1597.654246 +1597.658076 +1597.664669 +1597.666534 +1597.668166 +1597.670164 +1597.979454 +1597.981452 +1597.983284 +1598.077556 +1598.079454 +1598.081019 +1598.082751 +1598.287579 +1598.289511 +1598.291142 +1598.293074 +1598.361971 +1598.365168 +1598.648718 +1598.971861 +1598.973592 +1598.975024 +1599.029636 +1599.031335 +1599.032900 +1599.034531 +1599.037229 +1599.261338 +1599.262903 +1599.264801 +1599.281651 +1599.283282 +1599.284848 +1599.288277 +1599.290342 +1599.558440 +1599.560105 +1599.562070 +1599.659439 +1599.906692 +1599.909889 +1599.911653 +1600.178253 +1600.180251 +1600.181983 +1600.184414 +1600.522542 +1600.524973 +1600.924773 +1600.926504 +1600.927903 +1600.931766 +1601.265465 +1601.267163 +1601.268562 +1601.270094 +1601.271925 +1601.444086 +1601.581016 +1601.582647 +1601.584079 +1601.585711 +1601.587642 +1601.907889 +1601.909554 +1601.910952 +1601.912617 +1601.914915 +1602.176686 +1602.178318 +1602.179716 +1602.497931 +1602.499630 +1602.501128 +1602.502826 +1602.873189 +1602.874887 +1602.877918 +1602.879816 +1603.177451 +1603.179116 +1603.180548 +1603.182113 +1603.184078 +1603.566129 +1603.567860 +1603.569392 +1603.571057 +1603.573388 +1603.908153 +1603.909851 +1603.911316 +1603.913048 +1603.916445 +1604.292468 +1604.294167 +1604.295598 +1604.297197 +1604.299195 +1604.593400 +1604.595165 +1604.596597 +1604.896697 +1604.898362 +1604.899794 +1604.901392 +1604.903557 +1605.176750 +1605.178415 +1605.179847 +1605.181445 +1605.183410 +1605.361065 +1605.363097 +1605.364861 +1605.671521 +1605.673353 +1605.674951 +1605.676783 +1605.917608 +1605.921038 +1605.922870 +1606.234824 +1606.236689 +1606.238254 +1606.240352 +1606.504121 +1606.505919 +1606.507518 +1606.509416 +1606.671387 +1606.854071 +1606.855802 +1606.857367 +1606.859199 +1607.169788 +1607.171520 +1607.174750 +1607.177813 +1607.512112 +1607.513877 +1607.515409 +1607.517207 +1607.859931 +1607.861662 +1607.863094 +1607.864759 +1607.933657 +1608.240916 +1608.539917 +1608.544745 +1608.548641 +1608.635821 +1608.637585 +1608.639084 +1608.640882 +1608.643346 +1608.783806 +1608.788734 +1608.880176 +1608.882640 +1609.113775 +1609.115574 +1609.118804 +1609.123666 +1609.345011 +1609.346842 +1609.348474 +1609.457065 +1609.462093 +1609.623698 +1609.625596 +1609.627195 +1609.949372 +1609.951237 +1609.952902 +1609.955033 +1610.084504 +1610.086468 +1610.088133 +1610.090131 +1610.291663 +1610.293428 +1610.294926 +1610.296625 +1610.299489 +1610.479941 +1610.483471 +1610.485203 +1610.596591 +1610.598389 +1610.710610 +1610.811776 +1610.813674 +1610.815405 +1611.105915 +1611.107813 +1611.109511 +1611.111809 +1611.171349 +1611.176611 +1611.422997 +1611.424829 +1611.426327 +1611.428192 +1611.436950 +1611.438615 +1611.732288 +1611.734019 +1611.735551 +1612.040413 +1612.042211 +1612.045641 +1612.188198 +1612.189930 +1612.194991 +1612.398121 +1612.487965 +1612.489863 +1612.491528 +1612.493426 +1612.786532 +1612.788264 +1612.789696 +1612.791328 +1612.793459 +1612.857361 +1613.133851 +1613.135583 +1613.137081 +1613.138880 +1613.449169 +1613.735416 +1613.737114 +1613.738646 +1613.740444 +1614.067117 +1614.068915 +1614.070514 +1614.332984 +1614.334982 +1614.337114 +1614.566317 +1614.568282 +1614.766484 +1614.998019 +1616.104811 +1618.442271 +1619.804940 +1620.010068 +1620.127584 +1621.003274 +1621.601908 +1622.252890 +1622.391684 +1622.613662 +1623.242066 +1623.361014 +1623.562079 +1624.264543 +1624.268772 +1624.270737 +1624.272535 +1624.275132 +1624.342631 +1624.345528 +1624.348692 +1624.350757 +1624.427913 +1629.444025 +1629.529073 +1629.648320 +1629.738597 +1629.790345 +1629.858443 +1629.913455 +1629.944491 +1630.012123 +1630.019715 +1630.087048 +1630.152715 +1630.273028 +1630.335133 +1630.542059 +1630.581686 +1630.786248 +1630.841593 +1630.955878 +1631.574725 +1631.719614 +1632.254645 +1632.432900 +1632.766166 +1632.826306 +1632.909889 +1632.960338 +1633.000864 +1633.010022 +1633.028304 +1633.076955 +1633.079552 +1633.198733 +1633.200664 +1633.233498 +1633.270228 +1633.312852 +1633.378586 +1633.400997 +1633.441623 +1633.540957 +1633.588609 +1633.688842 +1633.743554 +1633.791906 +1633.825739 +1633.889675 +1633.963767 +1633.989908 +1634.030267 +1634.080717 +1634.127703 +1634.182115 +1634.208522 +1634.257373 +1634.351979 +1634.406524 +1634.456574 +1634.497866 +1634.544486 +1634.677087 +1634.708855 +1634.751912 +1634.930966 +1635.089041 +1635.097299 +1635.171658 +1635.345318 +1635.618611 +1635.628101 +1635.662866 +1636.012616 +1636.104691 +1636.381680 +1636.397065 +1636.417345 +1636.443885 +1636.453608 +1636.517677 +1636.526335 +1636.558636 +1636.593235 +1636.747114 +1636.816045 +1637.033494 +1637.071190 +1637.125269 +1637.137024 +1637.199795 +1637.270291 +1637.935325 +1639.248344 +1639.338620 +1639.421637 +1639.436056 +1639.491334 +1639.598793 +1639.709782 +1639.728097 +1639.741450 +1639.773918 +1639.797195 +1639.801257 +1639.820238 +1639.853438 +1639.889669 +1639.898626 +1639.982709 +1639.990468 +1640.070521 +1640.146378 +1640.253538 +1640.385273 +1640.440351 +1640.446978 +1641.117839 +1641.156234 +1641.169721 +1641.186770 +1641.261829 +1641.273017 +1641.316341 +1641.321436 +1641.361296 +1641.363660 +1641.403387 +1641.458965 +1641.503487 +1641.509381 +1641.552704 +1641.572085 +1641.580443 +1641.636354 +1641.644179 +1641.686703 +1641.688868 +1641.722234 +1641.730459 +1641.778478 +1641.816040 +1641.819037 +1641.837885 +1641.846044 +1641.859231 +1641.891565 +1641.913343 +1641.996460 +1642.041182 +1642.054468 +1642.064425 +1642.136320 +1642.163892 +1642.188667 +1642.226163 +1642.238018 +1642.257399 +1642.273249 +1642.297259 +1642.327262 +1642.340349 +1642.358065 +1642.383639 +1642.405051 +1642.427861 +1642.515673 +1642.626995 +1642.640315 +1642.643612 +1642.690965 +1642.695527 +1642.731391 +1642.784371 +1642.941847 +1642.962559 +1643.021600 +1643.084471 +1643.101820 +1643.176945 +1643.237651 +1643.239582 +1643.312110 +1643.316472 +1643.335819 +1643.372383 +1643.396725 +1643.421134 +1643.427261 +1643.470518 +1643.537051 +1643.572349 +1643.574047 +1643.636518 +1643.676545 +1643.734920 +1643.771516 +1643.840880 +1643.855199 +1643.874047 +1643.906381 +1643.938316 +1643.955532 +1643.957730 +1644.010610 +1644.029525 +1644.053634 +1644.078309 +1644.097290 +1644.186035 +1644.208179 +1644.245775 +1644.293860 +1644.329258 +1644.370284 +1644.373680 +1644.387999 +1644.413207 +1644.416471 +1644.496924 +1644.553600 +1644.595059 +1644.713906 +1644.744909 +1644.747340 +1644.773713 +1644.802018 +1644.803950 +1644.822598 +1644.852601 +1644.869750 +1644.930789 +1644.962258 +1645.037183 +1645.085401 +1645.123430 +1645.161159 +1645.174945 +1645.223330 +1645.269950 +1645.303716 +1645.352101 +1645.397622 +1645.428458 +1645.473146 +1645.512041 +1645.549803 +1645.555231 +1645.582204 +1645.698987 +1645.705281 +1645.726093 +1645.775311 +1645.820266 +1645.843442 +1645.950036 +1645.967651 +1646.016769 +1646.033186 +1646.060692 +1646.134951 +1646.168817 +1646.218667 +1646.277475 +1646.337481 +1646.385067 +1646.415004 +1646.476775 +1646.542010 +1646.573611 +1646.593791 +1646.642709 +1646.683735 +1646.812372 +1646.849768 +1646.945006 +1646.952665 +1647.026924 +1647.099485 +1647.141310 +1647.239312 +1647.251400 +1647.292492 +1647.326857 +1647.367883 +1647.410274 +1647.446804 +1647.508109 +1647.565252 +1647.588762 +1647.599418 +1647.626491 +1647.669714 +1647.698585 +1647.723793 +1647.816867 +1647.819098 +1647.875641 +1647.925159 +1648.058991 +1648.092158 +1648.146137 +1648.262854 +1648.380236 +1648.582967 +1648.666183 +1648.793989 +1648.855960 +1648.932750 +1649.343639 +1649.786429 +1650.305842 +1650.334980 +1650.598283 +1651.028985 +1651.212235 +1651.417862 +1651.568112 +1651.761418 +1651.820393 +1651.858688 +1651.907805 +1652.039673 +1652.247432 +1652.487758 +1652.600612 +1652.887358 +1652.970908 +1653.030448 +1653.031813 +1653.083728 +1653.119925 +1653.192120 +1653.220425 +1653.222756 +1653.269209 +1653.332080 +1653.506871 +1653.619658 +1653.639205 +1653.698912 +1653.752592 +1653.834210 +1653.856222 +1653.872405 +1653.923821 +1653.964280 +1654.062349 +1654.106671 +1654.146997 +1654.187823 +1654.320990 +1654.397347 +1654.430680 +1654.468708 +1654.523054 +1654.653723 +1654.685591 +1654.726684 +1654.771905 +1654.848562 +1654.886557 +1654.915528 +1654.944232 +1654.965478 +1655.011365 +1655.058551 +1655.123553 +1655.162680 +1655.201675 +1655.224552 +1655.245864 +1655.267575 +1655.276200 +1655.318558 +1655.372204 +1655.469706 +1655.492717 +1655.535940 +1655.560982 +1655.570073 +1655.625850 +1655.695347 +1655.837272 +1655.955587 +1656.140269 +1656.164711 +1656.201774 +1656.252589 +1656.367774 +1656.468074 +1656.524917 +1656.567141 +1656.650524 +1656.727414 +1656.760847 +1656.803804 +1656.862412 +1656.972103 +1657.060081 +1657.221153 +1657.254720 +1657.290517 +1657.327147 +1657.458116 +1657.475632 +1657.597676 +1657.669704 +1657.697410 +1657.841066 +1657.909198 +1658.107233 +1658.153420 +1658.190916 +1658.245828 +1658.294779 +1658.356250 +1658.427779 +1658.506866 +1658.646193 +1658.671468 +1658.721252 +1658.865341 +1658.907832 +1658.938234 +1659.101338 +1659.160246 +1659.204901 +1659.271834 +1659.316689 +1659.344494 +1659.351021 +1659.375996 +1659.398940 +1659.437601 +1659.456582 +1659.468370 +1659.493212 +1659.527744 +1659.619219 +1659.621384 +1659.653219 +1659.669835 +1659.707964 +1659.721117 +1659.760678 +1659.792679 +1659.812626 +1659.821983 +1659.838234 +1659.893012 +1659.912992 +1660.023148 +1660.087517 +1660.138666 +1660.166871 +1660.205466 +1660.208863 +1660.264374 +1660.325046 +1660.370800 +1660.538233 +1660.573930 +1660.643960 +1660.672965 +1660.712059 +1660.954150 +1660.968136 +1660.990214 +1661.011393 +1661.037367 +1661.075595 +1661.093277 +1661.107729 +1661.109394 +1661.132738 +1661.174729 +1661.198772 +1661.212391 +1661.236301 +1661.257180 +1661.284919 +1661.287383 +1661.307663 +1661.368435 +1661.405398 +1661.428175 +1661.496640 +1661.561309 +1661.628242 +1661.735634 +1661.757346 +1661.771598 +1661.800203 +1661.839630 +1661.966670 +1662.059210 +1662.181921 +1662.292444 +1662.338664 +1662.373229 +1662.406096 +1662.459610 +1662.572830 +1662.603765 +1662.629539 +1662.678624 +1662.756479 +1663.037698 +1663.412489 +1663.844357 +1664.863037 +1665.722210 +1666.211254 +1666.358307 +1666.831900 +1667.003927 +1667.280317 +1667.631599 +1667.730900 +1667.921342 +1668.397033 +1668.595434 +1668.773756 +1668.816213 +1668.927935 +1669.017811 +1669.055540 +1669.120176 +1669.189606 +1669.319176 +1669.377385 +1669.422939 +1669.515047 +1669.597032 +1669.630531 +1669.677318 +1669.912582 +1669.938257 +1669.971424 +1670.087241 +1670.127367 +1670.163198 +1670.225769 +1670.270957 +1670.311117 +1670.412815 +1670.478250 +1670.496198 +1670.527800 +1670.610084 +1670.689172 +1670.692568 +1670.739055 +1670.757270 +1670.976085 +1671.109518 +1671.164929 +1671.166627 +1671.261466 +1671.275418 +1671.520440 +1671.609118 +1671.799693 +1671.803556 +1672.098827 +1674.668289 +1674.763260 +1680.285799 +1680.361157 +1680.403747 +1680.412339 +1680.758959 +1680.815535 +1693.350188 +1695.375627 +1701.208089 +1704.624502 +1704.943084 +1704.963363 +1705.332494 +1710.012742 +1712.006746 +1714.523693 +1730.430171 +1730.651782 +1730.654446 +1730.661373 +1736.090272 +1736.183812 +1741.772784 +1741.774615 +1741.776313 +1741.790066 +1741.792431 +1741.978944 +1741.980509 +1741.981908 +1741.983606 +1741.985571 +1742.110312 +1742.113776 +1742.115740 +1742.749906 +1742.752869 +1750.405909 +1750.411403 +1754.290753 +1757.054054 +1762.860075 +1762.862040 +1762.863838 +1762.872363 +1763.057311 +1763.059243 +1763.061007 +1763.064038 +1763.139096 +1764.222745 +1770.108753 +1774.509314 +1775.000656 +1775.341481 +1775.870752 +1776.881240 +1776.984936 +1776.987567 +1776.997224 +1777.098556 +1777.259528 +1777.261493 +1785.215864 +1785.216696 +1785.217595 +1785.404708 +1785.407239 +1786.108737 +1786.322856 +1792.661977 +1792.664608 +1795.011492 +1795.044159 +1795.051318 +1797.985781 +1798.150050 +1798.152714 +1798.293140 +1798.294872 +1798.296537 +1798.423376 +1798.425940 +1798.428205 +1798.968997 +1799.165900 +1800.741589 +1801.770359 +1801.773223 +1802.918144 +1802.918344 +1803.349345 +1803.708619 +1805.282610 +1806.114511 +1806.142250 +1806.144947 +1806.287604 +1808.439051 +1808.618837 +1808.753902 +1808.968621 +1809.121368 +1809.860961 +1810.494060 +1810.645708 +1811.490896 +1811.493227 +1811.738048 +1811.741578 +1811.783969 +1811.972380 +1812.032187 +1812.033886 +1812.035484 +1812.037216 +1812.100319 +1821.734542 +1821.739004 +1821.767809 +1821.770239 +1821.982660 +1821.987122 +1822.070372 +1822.549293 +1822.552390 +1822.658717 +1822.660582 +1822.662313 +1822.733542 +1822.735573 +1822.737571 +1822.806402 +1822.808001 +1822.809466 +1822.811031 +1822.813162 +1822.916359 +1822.918190 +1823.033209 +1823.034907 +1823.036405 +1823.039902 +1823.100508 +1823.103538 +1824.100307 +1824.103471 +1829.283052 +1829.707794 +1830.092176 +1830.094840 +1830.096971 +1832.571427 +1832.575457 +1841.179477 +1841.181342 +1841.183041 +1841.185771 +1841.189401 +1841.191499 +1841.316307 +1841.366857 +1841.368755 +1841.370753 +1841.472850 +1846.348670 +1846.350501 +1846.352000 +1846.496322 +1846.498087 +1846.499885 +1846.559892 +1846.561690 +1846.773644 +1846.775443 +1846.777407 +1846.779106 +1846.781104 +1848.098551 +1858.064842 +1858.170603 +1859.161744 +1867.058306 +1867.981282 +1883.014667 +1887.896614 +1888.937305 +1889.692383 +1890.943430 +1890.974366 +1891.020686 +1891.401139 +1891.936936 +1891.999440 +1892.066839 +1892.204302 +1892.358614 +1892.461078 +1892.521884 +1892.555383 +1892.663375 +1892.778227 +1894.349721 +1894.443394 +1894.575661 +1894.716753 +1894.910826 +1895.075727 +1895.147189 +1895.299070 +1895.321082 +1895.647355 +1896.354780 +1896.560341 +1896.667900 +1896.777024 +1896.993807 +1897.083384 +1897.192642 +1897.356211 +1897.508159 +1897.641526 +1897.898801 +1897.976857 +1898.018515 +1898.102830 +1898.225508 +1898.714019 +1898.827538 +1899.006026 +1900.057041 +1900.083548 +1900.115449 +1900.125073 +1900.166132 +1900.258273 +1900.334263 +1900.386844 +1900.460637 +1900.528969 +1900.634097 +1900.681982 +1900.734529 +1900.773890 +1900.835095 +1900.932864 +1901.021143 +1901.204592 +1901.346717 +1901.650779 +1903.053342 +1903.134028 +1903.342852 +1903.650244 +1906.173818 +1906.345147 +1906.787337 +1906.939119 +1906.999858 +1909.780608 +1909.955499 +1910.016938 +1910.093661 +1910.187567 +1910.221799 +1910.332222 +1910.357497 +1910.472149 +1910.561692 +1910.621999 +1910.797989 +1910.826627 +1910.863257 +1910.877343 +1911.329857 +1911.359827 +1911.401152 +1911.685601 +1911.725494 +1911.802484 +1911.992960 +1912.137249 +1912.184168 +1912.257761 +1912.443642 +1912.539579 +1912.597155 +1912.639446 +1912.700285 +1912.733119 +1912.834151 +1912.893059 +1912.990794 +1913.027957 +1913.282469 +1913.312173 +1913.349036 +1913.390927 +1913.432652 +1913.506478 +1913.555829 +1913.621696 +1913.721862 +1913.767583 +1913.876474 +1914.031985 +1914.073477 +1914.136514 +1914.205245 +1914.267849 +1914.467616 +1914.521762 +1914.577573 +1914.588229 +1914.638645 +1914.690626 +1914.784399 +1914.905578 +1914.937679 +1914.993789 +1915.024026 +1915.046337 +1915.064685 +1915.088128 +1915.239443 +1915.245904 +1915.270546 +1915.295054 +1915.355128 +1915.400482 +1915.449799 +1915.547502 +1915.593223 +1915.651498 +1915.657991 +1915.766716 +1915.817731 +1915.860622 +1915.885097 +1915.916133 +1915.927155 +1915.961487 +1916.042872 +1916.096086 +1916.526721 +1916.531250 +1916.565083 +1916.601979 +1916.760154 +1916.819595 +1916.987394 +1917.053794 +1917.067047 +1917.127453 +1917.154193 +1917.165549 +1917.235279 +1917.297949 +1917.317730 +1917.345302 +1917.485262 +1917.518062 +1917.557023 +1917.578802 +1917.628419 +1917.640140 +1917.774273 +1917.825788 +1917.853926 +1917.868745 +1917.891389 +1917.899447 +1917.950263 +1917.952095 +1918.098914 +1918.127785 +1918.161585 +1918.217063 +1918.364016 +1918.434212 +1918.618361 +1918.719227 +1918.753659 +1918.780066 +1918.811335 +1918.820958 +1918.879466 +1918.947465 +1919.038441 +1919.072007 +1919.078467 +1919.119426 +1919.176869 +1919.204874 +1919.292586 +1919.356023 +1919.385460 +1919.414531 +1919.440405 +1919.714497 +1919.956488 +1920.046598 +1920.116894 +1920.193251 +1920.264780 +1920.380530 +1920.458586 +1920.542901 +1920.581429 +1920.627517 +1920.662015 +1920.718492 +1920.877433 +1920.919324 +1920.922788 +1921.178831 +1921.205272 +1921.295548 +1921.496047 +1921.667242 +1922.077165 +1922.430545 +1923.296079 +1923.503771 +1923.580194 +1923.913128 +1923.982325 +1924.007500 +1925.607964 +1926.044461 +1928.029873 +1929.067601 +1929.785250 +1930.060208 +1930.599202 +1930.601732 +1930.634200 +1938.457602 +1942.211478 +1942.214475 +1942.216739 +1944.486767 +1945.867884 +1949.584664 +1950.910470 +1951.761052 +1951.943636 +1952.045867 +1952.177302 +1952.186060 +1953.171373 +1953.173738 +1953.185559 +1954.356754 +1954.358885 +1954.834708 +1960.808629 +1961.490446 +1961.496174 +1962.066536 +1967.662668 +1970.036691 +1973.025133 +1973.131693 +1973.137387 +1975.178344 +1975.180409 +1975.182440 +1975.251771 +1975.253236 +1975.254635 +1975.256966 +1975.386403 +1976.007248 +1976.011677 +1976.292396 +1976.294594 +1976.296492 +1976.396891 +1976.555066 +1976.771749 +1976.915106 +1976.920401 +1977.095958 +1977.285735 +1981.074476 +1981.314469 +1981.316733 +1981.318798 +1982.753195 +1982.755193 +1982.756892 +1982.759456 +1982.792090 +1983.010238 +1983.012802 +1983.015067 +1983.728619 +1983.733547 +1983.850031 +1983.852595 +1984.219161 +1984.221326 +1984.223124 +1984.225122 +1985.018428 +1985.021025 +1985.022957 +1985.068711 +1985.071075 +1985.195484 +1986.344600 +1986.347331 +1986.475270 +1986.477068 +1986.478699 +1986.481796 +1986.613198 +1986.614663 +1986.615130 +1986.683161 +1986.814363 +1986.816128 +1986.892319 +1987.608002 +1987.609900 +1987.621023 +1987.623320 +1987.703374 +1987.859684 +1987.861715 +1987.863846 +1987.868009 +1988.052524 +1988.462081 +1988.465078 +1989.384358 +1991.035638 +1991.038169 +1991.040100 +1993.883088 +1995.442327 +1997.609125 +1997.611056 +1997.799068 +1997.800866 +1997.802931 +1997.905328 +1997.907160 +1997.909058 +1997.951615 +1998.041525 +1998.474758 +1998.477122 +1998.479120 +1998.562570 +1998.794038 +1998.941524 +1998.944122 +1999.048783 +1999.816781 +2000.633597 +2002.485943 +2003.392635 +2003.653974 +2004.087340 +2004.089338 +2004.091169 +2004.096298 +2004.240986 +2004.310084 +2004.311482 +2004.312814 +2004.317609 +2004.384343 +2004.386141 +2004.387839 +2004.449344 +2004.450943 +2004.452441 +2004.454173 +2004.582178 +2004.583843 +2004.585341 +2004.586207 +2004.587040 +2004.589304 +2004.650842 +2004.763763 +2005.745846 +2005.940318 +2005.942816 +2005.944847 +2006.086039 +2006.611513 +2007.869787 +2007.871618 +2007.873283 +2007.877479 +2008.033690 +2008.038418 +2008.042015 +2008.042447 +2008.044279 +2008.045977 +2008.134755 +2008.198192 +2008.199823 +2008.201455 +2008.203420 +2008.248641 +2008.359430 +2008.361428 +2008.363193 +2012.154265 +2012.155963 +2012.157495 +2012.159326 +2012.307478 +2012.309077 +2012.310575 +2012.312273 +2012.452466 +2012.454098 +2012.455597 +2012.518167 +2012.521231 +2012.522330 +2012.649736 +2012.649969 +2012.651667 +2012.653365 +2012.655097 +2012.721097 +2012.723428 +2012.725560 +2012.802649 +2012.804281 +2012.806778 +2014.945504 +2015.146270 +2015.149567 +2015.150998 +2015.290226 +2015.290892 +2015.291758 +2015.296186 +2015.371578 +2015.375041 +2015.439010 +2015.441075 +2015.442940 +2015.444638 +2015.451598 +2015.536446 +2016.198050 +2016.199948 +2016.203711 +2016.360355 +2016.363185 +2016.365583 +2016.486129 +2017.453727 +2017.610104 +2017.680999 +2017.735045 +2017.840606 +2017.956257 +2018.025022 +2018.057256 +2018.192454 +2018.439806 +2018.840439 +2018.843935 +2018.846166 +2019.021091 +2019.023289 +2019.027751 +2019.063815 +2019.066079 +2019.068277 +2019.199812 +2019.929049 +2020.072872 +2020.074770 +2020.078566 +2020.080364 +2020.082062 +2020.205605 +2020.208569 +2020.273071 +2020.274736 +2020.277866 +2020.279565 +2020.375036 +2021.344732 +2021.346330 +2021.347762 +2021.349361 +2021.351492 +2021.575701 +2021.578964 +2021.718158 +2021.719890 +2021.721488 +2021.723353 +2021.726450 +2021.797079 +2021.800209 +2021.868274 +2021.868741 +2021.873469 +2021.949293 +2021.951191 +2021.953456 +2022.071005 +2024.282758 +2024.983256 +2024.985088 +2024.986919 +2025.204069 +2025.205667 +2025.322950 +2025.324814 +2025.379793 +2025.433539 +2025.436103 +2026.305499 +2026.324447 +2026.485786 +2026.577660 +2026.579792 +2026.581956 +2026.678559 +2026.680457 +2026.682056 +2026.683854 +2026.827277 +2026.829408 +2026.831506 +2026.996907 +2026.998672 +2027.000304 +2027.002002 +2027.006731 +2027.084586 +2027.160710 +2027.165106 +2027.168003 +2027.242695 +2027.259811 +2027.262775 +2028.251185 +2030.480520 +2030.605495 +2030.790643 +2030.793340 +2030.795305 +2030.854180 +2030.856344 +2030.858409 +2031.096104 +2031.097636 +2031.099101 +2031.100699 +2031.162571 +2031.164436 +2031.304462 +2031.304695 +2031.369630 +2031.373360 +2031.440493 +2031.444988 +2031.447719 +2031.447952 +2031.515418 +2033.785778 +2033.787676 +2033.789408 +2033.791772 +2034.033930 +2034.035662 +2034.037260 +2034.168429 +2034.176854 +2034.309721 +2034.311585 +2034.316214 +2034.400729 +2034.406057 +2034.498631 +2034.940256 +2034.943186 +2035.851610 +2035.857438 +2037.242252 +2037.429598 +2037.490370 +2037.492268 +2037.494000 +2037.496131 +2037.670090 +2037.672987 +2038.220506 +2038.574884 +2038.648078 +2039.951240 +2039.953238 +2039.955103 +2040.056734 +2040.058433 +2040.149974 +2040.222968 +2040.293497 +2040.295196 +2040.296761 +2040.298659 +2040.366924 +2040.373384 +2040.444480 +2040.446944 +2040.453504 +2040.523068 +2040.590767 +2040.592864 +2040.595162 +2040.611446 +2043.385835 +2043.387567 +2043.389099 +2043.390697 +2043.456898 +2043.458662 +2043.460194 +2043.462059 +2043.538749 +2043.540714 +2043.603651 +2043.729891 +2043.731822 +2043.733621 +2043.735319 +2043.736917 +2043.868386 +2043.870184 +2043.871849 +2043.874480 +2043.945042 +2043.947839 +2043.950404 +2043.952468 +2043.954300 +2044.028192 +2044.039714 +2044.042345 +2044.980706 +2044.982770 +2044.984502 +2044.987066 +2044.989097 +2044.991095 +2044.992893 +2045.084701 +2045.086699 +2045.088364 +2045.090263 +2046.047404 +2046.528256 +2046.530488 +2046.533152 +2046.638213 +2046.640577 +2046.642642 +2046.798519 +2046.800251 +2046.801949 +2046.803947 +2046.810208 +2046.812172 +2046.813970 +2046.963654 +2046.970048 +2047.038712 +2047.170747 +2047.177107 +2047.236980 +2047.240310 +2047.249734 +2047.330220 +2050.514766 +2050.516531 +2050.518163 +2050.520061 +2050.746767 +2050.750030 +2050.821992 +2050.824023 +2050.890490 +2051.030616 +2051.034646 +2051.089890 +2051.095152 +2051.680666 +2052.689589 +2052.865579 +2052.874171 +2053.358186 +2053.358986 +2053.361050 +2053.551726 +2053.553624 +2053.555389 +2053.562082 +2053.564780 +2053.735775 +2053.738173 +2053.740404 +2054.681129 +2054.813729 +2055.242833 +2055.244531 +2055.246196 +2055.248228 +2055.311298 +2055.314128 +2055.315594 +2055.317359 +2055.447262 +2055.449193 +2055.450991 +2055.520255 +2055.522220 +2055.524185 +2055.643465 +2055.645530 +2055.718024 +2055.720488 +2056.367774 +2058.351488 +2058.438268 +2058.443230 +2058.566539 +2058.568204 +2058.571368 +2058.630775 +2058.633706 +2058.696210 +2058.876829 +2058.878660 +2058.967272 +2062.236865 +2062.238564 +2062.240129 +2062.241960 +2062.243892 +2062.245623 +2062.247155 +2062.388380 +2062.391577 +2062.463272 +2062.530438 +2062.533269 +2062.601134 +2062.602899 +2062.744258 +2062.750185 +2062.752583 +2063.150418 +2065.702163 +2065.703762 +2065.705693 +2065.729902 +2065.731767 +2065.733332 +2065.735097 +2065.739559 +2066.004860 +2066.122975 +2066.124940 +2066.126838 +2066.128836 +2066.131034 +2066.132999 +2066.134797 +2066.309289 +2067.088043 +2067.406757 +2067.409088 +2067.537226 +2067.739724 +2068.390705 +2068.867295 +2068.869526 +2068.871624 +2069.050612 +2069.052243 +2069.053708 +2069.055307 +2069.057371 +2069.322140 +2069.323605 +2069.326635 +2069.328134 +2069.398863 +2069.471857 +2069.532796 +2069.604224 +2069.666761 +2069.668660 +2069.670325 +2069.672189 +2069.766528 +2070.476085 +2070.621239 +2070.766561 +2070.942418 +2074.643979 +2076.339382 +2076.410777 +2076.412909 +2076.414973 +2076.451836 +2076.650937 +2076.652669 +2076.654234 +2076.656098 +2076.662359 +2076.664024 +2076.797823 +2076.799588 +2076.801686 +2076.917170 +2076.943777 +2078.497522 +2079.107678 +2079.800151 +2080.672545 +2080.674076 +2080.675475 +2080.676974 +2080.678705 +2080.752598 +2080.756594 +2080.758325 +2080.891026 +2080.892691 +2080.895721 +2080.899717 +2081.033816 +2081.035282 +2081.177639 +2081.179737 +2081.181768 +2081.183067 +2081.185098 +2081.306011 +2082.559556 +2082.844970 +2082.847534 +2082.849599 +2083.092988 +2083.482265 +2083.484097 +2083.485695 +2083.487327 +2083.489924 +2083.491556 +2083.493021 +2083.494653 +2083.496784 +2083.811436 +2083.812135 +2083.813700 +2083.816431 +2083.819661 +2084.079235 +2084.080900 +2084.082298 +2084.082898 +2084.083996 +2084.085695 +2084.086028 +2084.398448 +2084.399214 +2084.401012 +2084.404243 +2084.406174 +2084.533713 +2084.537709 +2085.116430 +2085.914864 +2086.125053 +2086.127418 +2086.129282 +2086.443135 +2086.734810 +2086.868909 +2086.896048 +2086.898246 +2086.900111 +2087.040570 +2087.815495 +2087.818924 +2087.820689 +2087.827383 +2088.068308 +2088.070006 +2088.071472 +2088.073137 +2088.206736 +2088.273436 +2088.489620 +2088.491318 +2088.545364 +2088.626416 +2088.956719 +2088.961747 +2089.250491 +2089.502739 +2089.507334 +2089.681060 +2089.739668 +2089.741600 +2089.743365 +2089.745762 +2089.949891 +2089.952156 +2090.155918 +2090.157583 +2090.159082 +2090.160714 +2090.162778 +2090.163378 +2090.167940 +2090.169538 +2090.324816 +2090.328213 +2090.451056 +2090.453454 +2090.461046 +2090.614959 +2090.651656 +2090.656784 +2090.658815 +2091.208531 +2091.210163 +2091.211562 +2091.213127 +2091.215025 +2091.391548 +2091.394312 +2091.395744 +2091.397309 +2091.399041 +2091.401372 +2091.470602 +2091.472134 +2091.473533 +2091.475031 +2091.476863 +2091.479926 +2091.505434 +2091.742397 +2091.744095 +2091.745128 +2091.748458 +2091.925347 +2091.928644 +2092.096343 +2092.098141 +2092.099906 +2092.101837 +2092.249856 +2092.251920 +2092.253552 +2092.255650 +2092.257648 +2092.270402 +2092.487784 +2092.589249 +2092.591114 +2092.592746 +2092.594711 +2092.719419 +2092.721817 +2093.011294 +2093.013158 +2093.014857 +2093.016755 +2093.426844 +2093.428609 +2093.430108 +2093.431873 +2093.435802 +2093.815022 +2093.816454 +2093.818086 +2093.819951 +2093.921849 +2094.220550 +2094.222215 +2094.223613 +2094.225278 +2094.227276 +2094.537899 +2094.541195 +2094.592444 +2094.594142 +2094.595608 +2094.597239 +2094.599137 +2094.841828 +2094.966536 +2094.968634 +2094.970632 +2095.172597 +2095.174628 +2095.539130 +2095.540828 +2095.548920 +2095.571564 +2095.573229 +2095.574694 +2095.576326 +2095.578790 +2095.759609 +2095.761274 +2095.762706 +2095.764338 +2095.766436 +2095.848187 +2095.854148 +2095.855879 +2095.935133 +2095.938397 +2095.940595 +2096.020282 +2096.021913 +2096.024910 +2096.029739 +2096.094008 +2096.095939 +2096.097704 +2096.100268 +2096.228273 +2096.230138 +2096.231703 +2096.233501 +2096.337164 +2096.451583 +2096.453681 +2096.455379 +2096.457544 +2096.760774 +2096.762638 +2096.766068 +2096.767833 +2097.062671 +2097.064936 +2097.095172 +2097.097437 +2097.249251 +2097.251316 +2097.253181 +2097.342658 +2097.344290 +2097.347320 +2097.429071 +2097.430903 +2097.432535 +2097.434533 +2097.448552 +2097.548985 +2097.622045 +2097.718648 +2097.803097 +2097.806727 +2097.808691 +2097.916517 +2097.921712 +2098.319480 +2099.059073 +2099.438060 +2099.440225 +2099.519279 +2099.670594 +2099.672459 +2099.674224 +2099.782083 +2099.783881 +2099.950447 +2099.952445 +2099.954344 +2100.018346 +2100.020677 +2100.030268 +2100.108689 +2104.071622 +2104.079381 +2105.390202 +2110.697190 +2111.415304 +2113.735382 +2113.737147 +2113.738779 +2113.795122 +2113.796687 +2113.798219 +2113.800084 +2113.915135 +2114.030820 +2114.754928 +2114.851898 +2115.244005 +2121.182061 +2125.956748 +2126.449222 +2126.532472 +2126.583421 +2126.638966 +2126.781656 +2126.836335 +2126.903800 +2127.074663 +2127.121549 +2130.359242 +2130.363004 +2131.171961 +2131.216084 +2131.353713 +2131.455211 +2132.183582 +2132.339692 +2132.504694 +2144.351902 +2157.874565 +2157.913327 +2157.954718 +2157.985055 +2158.032973 +2158.084222 +2158.095877 +2158.194279 +2158.220386 +2158.236869 +2158.292980 +2158.356083 +2158.423582 +2158.467172 +2158.519453 +2158.522350 +2158.576496 +2158.603203 +2158.630042 +2158.663542 +2158.669003 +2158.821517 +2158.851954 +2158.889449 +2158.994677 +2159.076462 +2159.149989 +2159.340731 +2159.390681 +2159.418919 +2159.426046 +2159.500438 +2159.538034 +2159.620218 +2159.683888 +2159.760444 +2159.806265 +2159.838333 +2159.944726 +2159.993944 +2160.067404 +2160.123414 +2160.217354 +2160.245159 +2160.262209 +2160.327310 +2160.475828 +2160.547223 +2160.550054 +2160.606830 +2160.652851 +2160.739597 +2160.772132 +2160.792378 +2160.815655 +2160.858245 +2160.963040 +2161.044859 +2161.095275 +2161.119784 +2161.122914 +2161.198471 +2161.318718 +2161.504332 +2161.524046 +2161.530206 +2161.546756 +2161.562607 +2161.588548 +2161.641395 +2161.666936 +2161.690879 +2161.772797 +2161.774695 +2161.795807 +2161.831105 +2161.923179 +2161.947588 +2161.962673 +2161.981021 +2162.043359 +2162.082553 +2162.101634 +2162.140195 +2162.217019 +2162.304031 +2162.461441 +2162.502599 +2162.520848 +2162.556379 +2162.625676 +2162.682819 +2162.817751 +2162.905862 +2162.926841 +2163.075359 +2163.231170 +2163.258276 +2163.290710 +2163.475192 +2163.544989 +2163.575326 +2163.784283 +2163.824776 +2163.850217 +2163.864902 +2163.885149 +2163.963737 +2164.002232 +2164.048752 +2164.088112 +2164.168798 +2164.215984 +2164.272827 +2164.452781 +2164.484549 +2164.580320 +2164.615484 +2164.724076 +2164.752048 +2164.777555 +2164.834765 +2165.058175 +2165.092906 +2165.120512 +2165.162237 +2165.697268 +2165.827005 +2165.834664 +2166.210987 +2166.317314 +2166.779318 +2166.996301 +2167.075389 +2167.463667 +2167.891672 +2169.119576 +2169.121973 +2169.212549 +2182.260355 +2182.262586 +2182.264518 +2187.571505 +2187.655555 +2187.657752 +2187.659983 +2187.668974 +2187.792484 +2189.037338 +2189.039836 +2189.040435 +2191.116657 +2191.120819 +2191.342764 +2192.086186 +2192.908596 +2194.659244 +2196.739828 +2196.741826 +2196.743757 +2196.815219 +2196.817417 +2196.883184 +2196.884816 +2196.886747 +2196.948319 +2196.950151 +2196.951816 +2196.953647 +2197.016284 +2197.017816 +2197.019248 +2197.020880 +2197.078822 +2197.080687 +2197.214519 +2197.217250 +2201.750146 +2201.752077 +2201.754075 +2201.825704 +2201.828068 +2201.830199 +2203.428499 +2204.106121 +2204.235724 +2204.237489 +2204.314179 +2204.446680 +2204.450676 +2204.577649 +2204.578448 +2204.581512 +2204.583410 +2204.653673 +2204.660433 +2204.662697 +2204.734525 +2204.736656 +2204.813946 +2205.798593 +2205.801257 +2205.826898 +2207.919404 +2207.921935 +2207.979211 +2207.980842 +2207.982907 +2208.107982 +2208.109647 +2208.111178 +2208.112111 +2208.250805 +2208.252604 +2208.254302 +2208.257832 +2208.327029 +2208.329560 +2208.331491 +2209.374481 +2209.377211 +2209.431091 +2209.435852 +2209.677111 +2209.679142 +2209.680974 +2209.687800 +2209.782505 +2209.784437 +2209.786202 +2209.915506 +2209.917204 +2209.917670 +2209.919768 +2210.054666 +2210.059994 +2210.062658 +2210.119069 +2210.122066 +2210.126228 +2210.195192 +2210.198223 +2210.201086 +2210.275579 +2210.877076 +2211.001685 +2211.010843 +2211.825727 +2212.696955 +2213.973011 +2214.364419 +2214.458625 +2214.460589 +2214.462421 +2214.971578 +2214.974908 +2215.370046 +2215.371877 +2215.373109 +2215.373742 +2215.602113 +2215.676372 +2215.748334 +2215.749899 +2215.815267 +2215.818697 +2215.876172 +2215.880135 +2215.952596 +2215.956126 +2215.957924 +2215.958956 +2216.031717 +2216.034947 +2216.036945 +2216.038909 +2216.111037 +2216.118863 +2216.121394 +2217.097084 +2217.101712 +2217.281066 +2217.284429 +2217.379068 +2217.380733 +2217.382265 +2217.383896 +2217.386594 +2217.493354 +2217.495285 +2217.575172 +2217.720559 +2217.768911 +2217.772308 +2217.774406 +2217.913167 +2217.915098 +2217.916930 +2217.918961 +2218.080133 +2218.083862 +2218.086360 +2218.088558 +2218.192354 +2218.797282 +2219.109469 +2223.684856 +2223.693647 +2223.978795 +2223.980527 +2223.982092 +2223.983923 +2223.989984 +2224.142797 +2224.220719 +2224.224649 +2224.359481 +2224.363110 +2224.494778 +2224.496843 +2224.498641 +2224.571002 +2226.797806 +2226.854849 +2226.858346 +2226.919318 +2227.039398 +2227.099971 +2227.101802 +2227.154283 +2227.192378 +2227.207596 +2227.210593 +2227.592378 +2227.693710 +2227.734402 +2227.877526 +2228.322280 +2228.518451 +2228.540828 +2228.824045 +2229.030472 +2229.098370 +2229.101167 +2229.103265 +2229.192576 +2229.236932 +2229.349918 +2229.388114 +2229.417584 +2229.491344 +2229.524810 +2229.565969 +2229.624410 +2229.674560 +2229.719149 +2229.756378 +2229.809125 +2229.840394 +2229.914786 +2230.056811 +2230.295272 +2230.297870 +2230.412422 +2230.414153 +2230.417550 +2230.476491 +2230.478289 +2230.479854 +2230.481586 +2230.483384 +2230.799401 +2230.802664 +2230.804363 +2230.806460 +2230.895638 +2230.897369 +2230.898868 +2230.900699 +2231.093207 +2231.094872 +2231.096404 +2231.100100 +2231.158741 +2231.160806 +2231.162571 +2231.277589 +2231.279487 +2231.281052 +2231.456476 +2231.641525 +2232.010955 +2232.013785 +2232.015284 +2232.017115 +2232.019213 +2232.149017 +2232.150382 +2232.151780 +2232.235530 +2232.237262 +2232.238760 +2232.399566 +2232.402529 +2232.460005 +2232.461737 +2232.463235 +2232.465067 +2232.545853 +2232.699532 +2232.701197 +2232.702662 +2232.704361 +2232.706558 +2232.713918 +2232.873824 +2232.875856 +2232.877720 +2233.074623 +2233.077088 +2233.482482 +2233.484979 +2233.852844 +2233.854776 +2233.856474 +2233.858572 +2234.174489 +2234.176154 +2234.177619 +2234.179184 +2234.181182 +2234.544186 +2234.727535 +2234.730899 +2234.732797 +2234.816180 +2234.817745 +2234.819110 +2234.820642 +2234.932630 +2234.934362 +2234.937692 +2235.037259 +2235.164332 +2235.166063 +2235.167662 +2235.169293 +2235.220242 +2235.222007 +2235.223539 +2235.225504 +2235.422973 +2235.425237 +2235.427135 +2235.430765 +2235.750844 +2235.754174 +2235.755873 +2235.757904 +2235.788140 +2235.789872 +2235.791404 +2235.793135 +2236.058237 +2236.061200 +2236.062666 +2236.064331 +2236.066162 +2236.143318 +2236.144917 +2236.146282 +2236.147814 +2236.149712 +2236.256139 +2236.257604 +2236.259236 +2236.260967 +2236.264330 +2236.364197 +2236.365762 +2236.367494 +2236.370324 +2236.489505 +2236.491403 +2236.493235 +2236.704090 +2236.705822 +2236.707354 +2236.709185 +2236.711982 +2236.821173 +2236.823071 +2236.824670 +2236.826434 +2236.830564 +2237.054706 +2237.056371 +2237.057736 +2237.059401 +2237.148246 +2237.149777 +2237.154373 +2237.156171 +2237.338888 +2237.342351 +2237.344183 +2237.404789 +2237.406454 +2237.407952 +2237.409584 +2237.411316 +2237.414746 +2237.660666 +2237.662464 +2237.663996 +2237.665728 +2237.729564 +2237.731262 +2237.734359 +2237.736124 +2237.739254 +2238.015844 +2238.017709 +2238.021305 +2238.023603 +2238.325234 +2238.328597 +2238.452240 +2238.454039 +2238.455670 +2238.566659 +2238.569956 +2238.571621 +2238.573719 +2238.987438 +2238.989236 +2238.990801 +2238.992533 +2238.995563 +2239.023335 +2239.024900 +2239.026332 +2239.029496 +2239.302023 +2239.318207 +2239.319905 +2239.321337 +2239.323035 +2239.326465 +2239.615309 +2239.617008 +2239.618440 +2239.620071 +2239.621969 +2239.986671 +2239.988303 +2239.989735 +2239.991266 +2239.993198 +2240.357067 +2240.358732 +2240.360064 +2240.361596 +2240.363327 +2240.366424 +2240.680310 +2240.681942 +2240.683307 +2240.684872 +2240.686704 +2240.690533 +2241.073750 +2241.075348 +2241.076747 +2241.078345 +2241.080210 +2241.083473 +2241.432291 +2241.433889 +2241.435288 +2241.436819 +2241.438618 +2241.443579 +2241.446876 +2241.448841 +2241.667888 +2241.669620 +2241.671118 +2241.672850 +2241.675847 +2241.688867 +2241.690632 +2241.692164 +2241.693729 +2241.695727 +2241.947708 +2241.949373 +2241.950838 +2241.952537 +2241.954401 +2242.093895 +2242.097225 +2242.099057 +2242.100988 +2242.303852 +2242.305550 +2242.306982 +2242.308547 +2242.310445 +2242.316006 +2242.410911 +2242.414075 +2242.415640 +2242.417471 +2242.611577 +2242.613475 +2242.615040 +2242.617238 +2242.619169 +2242.621267 +2242.845243 +2242.848406 +2242.850038 +2242.851870 +2242.985669 +2242.987334 +2242.988733 +2242.990298 +2242.992163 +2242.995293 +2243.176844 +2243.180940 +2243.349971 +2243.351636 +2243.352968 +2243.354533 +2243.356298 +2243.359195 +2243.475346 +2243.478409 +2243.562425 +2243.564157 +2243.565622 +2243.567320 +2243.569618 +2243.934886 +2243.936584 +2243.938216 +2243.939980 +2244.254166 +2244.255864 +2244.257396 +2244.259161 +2244.261692 +2244.478108 +2244.718002 +2244.719667 +2244.721065 +2244.722730 +2245.122463 +2245.124128 +2245.125627 +2245.127292 +2245.131088 +2245.456529 +2245.458094 +2245.459693 +2245.461957 +2245.854198 +2245.855829 +2245.857295 +2245.858860 +2245.860824 +2246.212439 +2246.214104 +2246.215536 +2246.217101 +2246.219166 +2246.413305 +2246.570547 +2246.572212 +2246.573644 +2246.575243 +2246.577107 +2246.720164 +2246.725093 +2246.944007 +2246.945638 +2246.947070 +2246.948602 +2247.044839 +2247.271479 +2247.273111 +2247.274609 +2247.276274 +2247.278439 +2247.366617 +2247.670779 +2247.674476 +2247.677539 +2247.679071 +2247.680936 +2247.858991 +2247.860722 +2248.015168 +2248.016666 +2248.018431 +2248.172943 +2248.312037 +2248.313769 +2248.315101 +2248.318498 +2248.424891 +2248.428188 +2248.432150 +2248.518697 +2248.520529 +2248.522127 +2248.524192 +2248.910172 +2248.911837 +2248.913236 +2248.914834 +2248.916765 +2249.281001 +2249.282666 +2249.284064 +2249.285596 +2249.287461 +2249.348467 +2249.522193 +2249.523791 +2249.525156 +2249.526655 +2249.528386 +2249.532316 +2249.691623 +2249.693388 +2249.839442 +2249.841073 +2249.842505 +2249.844104 +2249.846568 +2250.011370 +2250.013567 +2250.015399 +2250.194686 +2250.197650 +2250.199148 +2250.200947 +2250.203810 +2250.311203 +2250.315865 +2250.475305 +2250.477004 +2250.478469 +2250.480134 +2250.625055 +2250.626920 +2250.628452 +2250.630250 +2250.897649 +2250.899281 +2250.900713 +2250.902344 +2250.904276 +2251.093553 +2251.096883 +2251.098448 +2251.100280 +2251.256856 +2251.258521 +2251.259920 +2251.263350 +2251.266946 +2251.623356 +2251.624988 +2251.626386 +2251.627951 +2251.629783 +2251.632747 +2251.916196 +2251.918061 +2251.919659 +2251.933179 +2251.936309 +2251.938008 +2252.249829 +2252.251494 +2252.252893 +2252.254458 +2252.256322 +2252.606539 +2252.608204 +2252.611267 +2252.617328 +2252.814131 +2252.817294 +2252.819059 +2252.821190 +2253.010234 +2253.011966 +2253.013531 +2253.015263 +2253.227017 +2253.227783 +2253.231380 +2253.418692 +2253.506737 +2253.508469 +2253.510001 +2253.511633 +2253.513797 +2253.711732 +2253.713863 +2253.715961 +2253.883061 +2254.152791 +2254.223120 +2254.224919 +2254.226484 +2254.524519 +2254.526250 +2254.527782 +2254.529514 +2254.531678 +2254.824152 +2254.825817 +2254.827249 +2254.828847 +2254.830779 +2255.122720 +2255.124318 +2255.135041 +2255.136972 +2255.138737 +2255.326749 +2255.406702 +2255.408434 +2255.409966 +2255.411697 +2255.413762 +2255.426016 +2255.590984 +2255.592683 +2255.594148 +2255.595813 +2255.599276 +2255.812130 +2255.816692 +2255.820655 +2255.822419 +2256.007801 +2256.009765 +2256.011530 +2256.013661 +2256.220854 +2256.320088 +2256.322719 +2256.502705 +2256.512595 +2256.517857 +2256.756285 +2256.758516 +2256.760514 +2256.876797 +2256.878762 +2256.880494 +2256.962578 +2256.966208 +2256.968472 +2257.106434 +2257.108465 +2257.110330 +2257.344895 +2257.346660 +2257.348192 +2257.349990 +2257.352221 +2257.467606 +2257.469271 +2257.578928 +2257.580793 +2257.584189 +2257.893413 +2257.897176 +2258.004069 +2258.007532 +2258.009297 +2258.197675 +2258.199840 +2258.202037 +2258.213659 +2258.369004 +2258.371135 +2258.373599 +2258.375297 +2258.377129 +2258.378694 +2258.528611 +2258.530542 +2258.532274 +2258.533406 +2258.535104 +2258.536702 +2258.695810 +2258.697541 +2258.699939 +2258.702303 +2258.796542 +2258.799473 +2258.801637 +2258.803502 +2261.475061 +2261.895773 +2261.970698 +2262.090845 +2264.580419 +2265.422743 +2265.815250 +2266.032599 +2266.165166 +2266.362502 +2266.429635 +2266.527237 +2266.662369 +2266.900464 +2267.229168 +2267.341256 +2267.393237 +2267.402528 +2267.674289 +2267.730633 +2267.773157 +2267.812784 +2267.883846 +2267.929933 +2268.062234 +2268.158305 +2268.226270 +2268.281681 +2268.348148 +2268.395234 +2268.448947 +2268.612217 +2268.614281 +2268.724038 +2268.805024 +2270.042518 +2277.050737 +2277.436251 +2277.522731 +2277.617569 +2277.672414 +2277.698888 +2277.750902 +2277.794026 +2277.817269 +2277.844442 +2277.871182 +2277.922031 +2277.994325 +2278.057828 +2278.192094 +2278.233819 +2278.266153 +2278.403316 +2278.510309 +2278.611208 +2278.738314 +2279.000052 +2279.099053 +2279.347571 +2279.352466 +2279.793924 +2279.893857 +2279.914969 +2280.043474 +2280.103947 +2280.273044 +2280.499518 +2281.229487 +2281.541108 +2281.607642 +2281.676073 +2281.775341 +2281.870212 +2281.929853 +2282.109906 +2282.134448 +2282.151664 +2282.152963 +2282.192157 +2282.249200 +2282.278004 +2282.341607 +2282.517098 +2282.573708 +2282.970844 +2283.113368 +2283.198116 +2283.256125 +2283.552095 +2285.312200 +2285.386759 +2285.445700 +2286.247930 +2288.981794 +2294.053850 +2294.110593 +2294.192844 +2294.259943 +2294.262341 +2294.301302 +2294.363240 +2294.425211 +2294.434003 +2294.603533 +2294.674129 +2294.682321 +2294.741029 +2295.029740 +2295.232337 +2295.307661 +2295.334801 +2295.341894 +2295.372496 +2295.393209 +2295.440362 +2295.533036 +2295.593775 +2295.645024 +2295.664571 +2295.716552 +2295.760708 +2295.799769 +2295.858277 +2295.909193 +2295.928107 +2296.030471 +2296.032935 +2296.035067 +2296.105163 +2296.113788 +2296.221347 +2296.274127 +2296.388213 +2296.529738 +2296.530637 +2296.587347 +2296.638229 +2296.705862 +2297.246387 +2297.333900 +2297.375758 +2297.444356 +2297.541525 +2297.581285 +2297.604196 +2297.655711 +2297.674559 +2297.705827 +2297.724875 +2297.782484 +2297.784249 +2297.828871 +2297.868098 +2297.917882 +2297.955045 +2297.987712 +2298.021911 +2298.082917 +2298.121678 +2298.187079 +2298.274958 +2298.313253 +2298.345088 +2298.393572 +2298.419580 +2298.422277 +2298.474924 +2298.515251 +2298.561970 +2298.637195 +2298.707059 +2298.748450 +2298.796303 +2298.821611 +2298.848783 +2298.924674 +2298.968797 +2299.015516 +2299.043522 +2299.084814 +2299.152613 +2299.186079 +2299.241390 +2299.287045 +2299.417714 +2299.464367 +2299.662702 +2299.731300 +2299.788842 +2299.833964 +2299.955975 +2299.991573 +2300.023174 +2300.065399 +2300.096534 +2300.198965 +2300.269828 +2300.305592 +2300.348482 +2300.435895 +2300.488276 +2300.519045 +2300.548216 +2300.561902 +2300.581183 +2300.617779 +2300.702994 +2300.813317 +2300.840290 +2300.851545 +2300.855142 +2300.884812 +2300.920543 +2300.995534 +2301.037959 +2301.096467 +2301.117812 +2301.170626 +2301.278784 +2301.297499 +2301.375687 +2301.404192 +2301.493003 +2301.529666 +2301.565031 +2301.600462 +2301.691371 +2301.790639 +2302.010585 +2302.022107 +2302.024405 +2302.026835 +2302.056805 +2302.169859 +2302.183179 +2302.215580 +2302.266762 +2302.273422 +2302.301394 +2302.331997 +2302.335893 +2302.427301 +2302.502626 +2302.549113 +2302.550045 +2302.577984 +2302.591270 +2302.603691 +2302.618277 +2302.634227 +2302.638590 +2302.662433 +2302.671357 +2302.712949 +2302.754840 +2302.760967 +2302.796632 +2302.827201 +2302.851643 +2302.875186 +2302.897131 +2302.901060 +2302.926069 +2302.949978 +2303.025003 +2303.027933 +2303.043784 +2303.046348 +2303.048646 +2303.156138 +2303.163065 +2303.165629 +2303.167793 +2303.182079 +2303.217643 +2303.244883 +2303.277883 +2303.278582 +2303.321373 +2303.321806 +2303.347447 +2303.403724 +2303.439155 +2303.439754 +2303.471389 +2303.481413 +2303.517244 +2303.555539 +2303.626101 +2303.662598 +2303.754306 +2303.764196 +2303.788805 +2303.842585 +2303.931496 +2303.975252 +2303.995631 +2304.003890 +2304.098428 +2304.135758 +2304.176883 +2304.260167 +2304.355438 +2304.362697 +2304.440519 +2304.469990 +2304.519673 +2304.590469 +2304.749144 +2304.886107 +2304.910815 +2305.051375 +2305.127032 +2305.205154 +2305.238054 +2305.306586 +2305.339386 +2305.408684 +2305.600258 +2305.604554 +2305.619806 +2305.622969 +2305.650242 +2305.725733 +2305.838254 +2305.979779 +2306.037820 +2306.191900 +2306.253904 +2306.289868 +2306.695928 +2307.069055 +2308.018871 +2308.349973 +2308.444045 +2308.524165 +2308.642447 +2308.747974 +2309.089366 +2309.238983 +2309.589166 +2309.693461 +2310.678975 +2311.216104 +2311.288398 +2311.337316 +2311.398821 +2311.432520 +2311.565887 +2311.691827 +2311.769516 +2312.001318 +2312.028424 +2312.138847 +2312.258860 +2312.277508 +2312.319932 +2312.340245 +2312.364487 +2312.441211 +2312.593292 +2312.754530 +2312.757827 +2312.763888 +2312.765719 +2312.767584 +2312.769316 +2312.847238 +2313.052699 +2313.131220 +2313.475942 +2313.645705 +2313.820963 +2314.196554 +2314.533250 +2314.608042 +2314.641775 +2314.770146 +2314.826923 +2315.005577 +2315.364518 +2315.482366 +2315.680568 +2315.803578 +2316.054094 +2316.103411 +2316.105676 +2316.151996 +2316.171410 +2316.315699 +2316.409105 +2316.448133 +2316.477504 +2317.061752 +2317.276271 +2317.407706 +2317.579900 +2317.808305 +2318.147798 +2320.369275 +2322.799642 +2323.482625 +2324.607133 +2325.406765 +2325.663275 +2331.937561 +2334.900895 +2335.151211 +2335.350245 +2335.761234 +2336.000295 +2336.759768 +2338.510615 +2338.699659 +2339.098926 +2339.100625 +2339.102290 +2339.104188 +2339.106052 +2339.108184 +2339.110182 +2339.216842 +2339.217940 +2339.218640 +2339.220571 +2339.222136 +2339.357035 +2339.359399 +2339.360931 +2339.499459 +2339.501890 +2339.504753 +2339.572053 +2339.574517 +2339.639385 +2339.641283 +2339.759332 +2339.761463 +2339.764960 +2340.371519 +2346.406578 +2346.805445 +2347.813003 +2347.925324 +2347.927356 +2347.929187 +2347.931618 +2348.089960 +2348.093789 +2348.818497 +2349.618929 +2350.829051 +2351.213200 +2351.220226 +2354.246830 +2355.462346 +2356.050258 +2357.762777 +2359.091913 +2359.097374 +2359.099839 +2359.198140 +2359.200405 +2359.202436 +2359.284054 +2359.289449 +2359.292113 +2359.382289 +2359.385053 +2359.487317 +2359.812325 +2359.902169 +2360.004167 +2360.106065 +2360.507296 +2366.818845 +2366.820943 +2367.004693 +2367.006324 +2367.007923 +2367.135628 +2367.141389 +2369.867094 +2370.129232 +2370.482145 +2370.944615 +2370.973819 +2371.153373 +2371.514578 +2371.531228 +2372.044381 +2372.046879 +2372.109816 +2372.175816 +2372.183009 +2372.346112 +2372.347811 +2372.404554 +2372.461164 +2372.463295 +2372.465260 +2372.530295 +2373.618539 +2373.621003 +2373.733790 +2373.735655 +2373.737719 +2373.739618 +2373.876114 +2373.877779 +2373.879411 +2373.881143 +2373.883507 +2374.016141 +2374.018339 +2374.020403 +2375.180209 +2375.235054 +2375.412643 +2376.198256 +2376.209845 +2378.232121 +2378.234085 +2378.235917 +2378.243010 +2378.405514 +2378.408178 +2378.410409 +2378.410842 +2378.413273 +2379.196522 +2379.198786 +2379.201683 +2379.206612 +2379.320431 +2379.621563 +2380.455162 +2381.788461 +2382.817997 +2383.791422 +2386.807870 +2388.448461 +2388.519989 +2388.569573 +2388.571870 +2388.574168 +2388.670039 +2393.493710 +2393.496508 +2393.596374 +2399.948383 +2399.950114 +2399.951713 +2399.953378 +2400.097500 +2400.099265 +2400.100863 +2400.102994 +2400.103694 +2400.105292 +2400.106824 +2400.108422 +2400.182848 +2400.295402 +2400.300064 +2401.970558 +2401.976652 +2404.199494 +2404.716376 +2404.719240 +2406.450274 +2406.632392 +2407.035289 +2407.036954 +2407.038419 +2407.040050 +2407.042415 +2407.046278 +2407.167856 +2407.171153 +2407.341049 +2407.341915 +2407.404919 +2409.460694 +2409.706481 +2409.708246 +2409.709845 +2409.711709 +2409.812875 +2409.814606 +2409.816205 +2409.818103 +2409.975645 +2409.977277 +2409.978676 +2409.980207 +2409.982105 +2410.056265 +2410.119335 +2410.122365 +2410.123930 +2410.126894 +2410.292861 +2410.295558 +2411.190063 +2411.533686 +2411.536117 +2411.538214 +2411.619700 +2411.736849 +2411.739546 +2412.661623 +2418.819326 +2418.824021 +2418.940771 +2418.947298 +2419.034144 +2419.771839 +2419.775635 +2419.944466 +2420.537639 +2420.806071 +2421.317892 +2421.320323 +2421.322321 +2422.065676 +2427.000237 +2427.071432 +2427.266837 +2427.267569 +2427.272664 +2427.360077 +2427.449687 +2428.499803 +2428.805596 +2429.303332 +2429.584017 +2429.587747 +2429.589845 +2429.591843 +2429.594041 +2429.701100 +2429.704164 +2429.795106 +2434.936959 +2436.461167 +2436.943850 +2437.003091 +2437.005122 +2438.049443 +2438.628963 +2439.406518 +2439.616342 +2439.838053 +2440.261562 +2440.409947 +2440.632524 +2440.968588 +2441.263759 +2441.266057 +2441.268022 +2441.411611 +2441.551305 +2441.636053 +2441.675114 +2441.711278 +2442.103918 +2442.107148 +2442.109180 +2442.161527 +2442.218004 +2442.219802 +2442.277411 +2442.280641 +2442.338284 +2442.339582 +2442.340115 +2442.397091 +2442.399023 +2442.400854 +2442.482106 +2443.657496 +2443.756297 +2443.758595 +2443.760493 +2443.951902 +2443.956564 +2444.091329 +2444.093293 +2444.095425 +2444.096557 +2444.239747 +2444.241845 +2444.322564 +2444.324629 +2444.405348 +2444.877941 +2445.158827 +2445.161791 +2445.555330 +2445.828556 +2446.012606 +2447.054729 +2448.375707 +2451.597115 +2451.663016 +2451.664748 +2451.666379 +2451.668244 +2451.754425 +2451.756156 +2451.758554 +2451.833512 +2451.835810 +2451.894551 +2451.896316 +2451.897881 +2451.899746 +2452.045866 +2452.880964 +2452.894450 +2453.637506 +2453.644200 +2453.800010 +2455.855053 +2455.858283 +2456.123884 +2461.798937 +2461.800735 +2461.802500 +2461.887881 +2461.889513 +2461.970432 +2462.091211 +2462.092843 +2462.094374 +2462.096073 +2462.159942 +2462.235400 +2463.193108 +2463.209425 +2463.311190 +2463.314153 +2463.316484 +2463.398635 +2463.501233 +2463.602298 +2466.374923 +2466.390674 +2466.393937 +2467.169694 +2467.172491 +2467.174822 +2467.276420 +2467.565498 +2467.568328 +2467.908188 +2467.913116 +2468.528401 +2468.640555 +2468.884178 +2470.056338 +2470.620739 +2471.134958 +2471.144215 +2471.923968 +2471.925700 +2471.927398 +2471.933559 +2472.046046 +2472.137055 +2472.139153 +2472.141451 +2472.974617 +2473.965458 +2474.038585 +2474.139384 +2474.271751 +2474.567522 +2474.971085 +2475.101587 +2475.104385 +2475.772682 +2476.131423 +2476.295259 +2476.499521 +2477.067986 +2477.071449 +2477.073613 +2477.304283 +2477.306147 +2477.307846 +2477.308645 +2477.310277 +2477.311276 +2477.443810 +2477.447073 +2477.576477 +2479.465752 +2479.467750 +2479.469682 +2479.543574 +2479.546605 +2479.548270 +2479.607044 +2479.613837 +2479.677940 +2479.679438 +2479.686864 +2479.804380 +2479.811340 +2479.813238 +2479.815202 +2479.883001 +2479.885499 +2479.889428 +2480.413370 +2480.595421 +2480.640643 +2480.877572 +2481.614468 +2488.196912 +2488.203639 +2488.807834 +2488.811397 +2489.495912 +2489.805835 +2491.227179 +2507.144080 +2507.946976 +2508.024565 +2508.055967 +2508.156333 +2508.388600 +2508.484171 +2508.550672 +2508.698390 +2509.243744 +2509.626861 +2509.678010 +2509.804716 +2509.845376 +2509.859894 +2510.008978 +2510.026694 +2510.049838 +2510.114773 +2510.156298 +2510.200187 +2510.276011 +2510.755098 +2511.123030 +2511.173846 +2511.201418 +2511.259660 +2511.289497 +2511.400619 +2511.444042 +2511.550169 +2511.668451 +2511.846406 +2512.066819 +2512.164188 +2512.192593 +2512.196089 +2512.237281 +2512.306412 +2512.378440 +2512.465852 +2512.483435 +2512.514737 +2512.537980 +2512.665319 +2512.703515 +2512.752232 +2512.782669 +2512.833018 +2512.869881 +2512.892825 +2512.906645 +2512.919265 +2512.943208 +2512.951699 +2513.017300 +2513.138579 +2513.230853 +2513.287097 +2513.334783 +2513.368549 +2513.412438 +2513.447736 +2513.494057 +2513.552265 +2513.621562 +2513.770114 +2513.822894 +2513.932351 +2514.015834 +2514.054163 +2514.056560 +2514.104712 +2514.170313 +2514.244172 +2514.467649 +2514.536247 +2514.649567 +2514.651731 +2515.268547 +2515.273076 +2522.771603 +2524.493779 +2524.816423 +2524.821651 +2524.865707 +2524.902337 +2524.912393 +2525.080192 +2525.098207 +2525.115324 +2525.137735 +2525.161045 +2525.199406 +2525.216489 +2525.230075 +2525.241997 +2525.328710 +2525.629909 +2525.651087 +2525.679126 +2525.786718 +2525.896841 +2525.910328 +2526.001870 +2526.018619 +2526.032173 +2526.063108 +2526.089648 +2526.120451 +2526.148023 +2526.202935 +2526.223414 +2526.249721 +2526.324913 +2526.374164 +2526.413624 +2526.509461 +2526.585319 +2526.596141 +2526.654183 +2526.694276 +2526.818719 +2526.827610 +2526.861409 +2526.886717 +2526.940297 +2527.095275 +2527.108995 +2527.139897 +2527.153450 +2527.266837 +2527.365138 +2527.459177 +2527.463906 +2527.568834 +2527.633037 +2527.775694 +2527.982254 +2528.044691 +2528.090146 +2528.148920 +2528.227775 +2528.264938 +2528.312323 +2528.356879 +2528.481154 +2528.532869 +2528.548953 +2528.586516 +2528.617318 +2528.659543 +2528.704764 +2528.805896 +2528.850285 +2528.854614 +2528.915620 +2529.013821 +2529.092476 +2529.135666 +2529.222379 +2529.264637 +2529.510857 +2529.559475 +2529.569199 +2529.593441 +2529.615086 +2529.995672 +2530.062005 +2530.383983 +2530.451948 +2530.531569 +2530.677289 +2530.823743 +2530.960439 +2531.081185 +2531.137562 +2531.225740 +2531.269930 +2531.439693 +2531.474358 +2531.546586 +2531.607325 +2531.774924 +2531.794338 +2531.938061 +2531.967298 +2532.177121 +2532.249116 +2532.273592 +2532.385246 +2532.477887 +2532.544887 +2532.578220 +2532.634231 +2532.759439 +2532.791040 +2532.857740 +2532.861803 +2532.907657 +2532.975522 +2533.005226 +2533.083481 +2533.097533 +2533.248049 +2533.279684 +2533.291639 +2533.353910 +2533.435695 +2533.468429 +2533.473124 +2533.496567 +2533.556008 +2533.558006 +2533.581516 +2533.629434 +2533.777686 +2533.810153 +2533.863633 +2533.895335 +2533.971192 +2533.978885 +2534.008189 +2534.096767 +2534.168528 +2534.195834 +2534.254808 +2534.280716 +2534.296000 +2534.309687 +2534.382747 +2534.485977 +2534.554209 +2534.595934 +2534.673689 +2534.759570 +2534.800162 +2534.862700 +2534.892936 +2534.950878 +2534.994501 +2535.072690 +2535.148414 +2535.180881 +2535.206289 +2535.256406 +2535.301128 +2535.373788 +2535.486076 +2535.522140 +2535.576685 +2535.602992 +2535.645350 +2535.677518 +2535.683778 +2535.768493 +2535.798297 +2535.805057 +2535.861633 +2535.886342 +2535.939122 +2535.960235 +2535.980514 +2536.007254 +2536.091503 +2536.100161 +2536.102559 +2536.105056 +2536.166228 +2536.172522 +2536.218110 +2536.220907 +2536.243984 +2536.273654 +2536.349212 +2536.406288 +2536.477583 +2536.481679 +2536.535259 +2536.563298 +2536.577150 +2536.592535 +2536.686441 +2536.787440 +2536.822771 +2536.841286 +2536.869225 +2536.875685 +2536.927699 +2537.030896 +2537.046447 +2537.062165 +2537.162265 +2537.203457 +2537.207886 +2537.234193 +2537.278981 +2537.286107 +2537.321772 +2537.398062 +2537.421072 +2537.537989 +2537.604622 +2537.637689 +2537.661498 +2537.697762 +2537.736623 +2537.792600 +2537.887505 +2537.954338 +2538.072620 +2538.076316 +2538.172487 +2538.197162 +2538.218541 +2538.234225 +2538.315810 +2538.376216 +2538.443948 +2538.733825 +2538.887604 +2539.134124 +2539.144181 +2539.214943 +2539.279712 +2539.496328 +2539.542182 +2539.585572 +2539.695396 +2539.825699 +2539.845013 +2539.846678 +2539.894896 +2540.018106 +2540.193530 +2540.569021 +2540.640450 +2540.666224 +2541.102787 +2541.175481 +2541.626896 +2542.440914 +2542.554800 +2542.642812 +2542.745909 +2542.828027 +2542.942379 +2542.977011 +2543.106381 +2543.195492 +2543.240214 +2543.279774 +2543.371516 +2543.416371 +2543.504316 +2543.558029 +2543.584303 +2543.629191 +2543.671316 +2543.755798 +2543.796124 +2543.886733 +2543.924729 +2543.952334 +2544.008778 +2544.055365 +2544.084835 +2544.109510 +2544.167353 +2544.199987 +2544.278941 +2544.546273 +2544.575877 +2544.592327 +2544.608677 +2544.629190 +2544.684601 +2544.721864 +2544.812007 +2544.857162 +2544.907612 +2544.923795 +2544.962357 +2545.009376 +2545.026426 +2545.081571 +2545.091761 +2545.113472 +2545.148770 +2545.173146 +2545.213938 +2545.239046 +2545.281404 +2545.307678 +2545.376009 +2545.424661 +2545.450035 +2545.512473 +2545.545273 +2545.568550 +2545.605247 +2545.647904 +2545.733185 +2545.750201 +2545.778007 +2545.807144 +2545.809142 +2545.890028 +2545.933018 +2545.977341 +2546.042642 +2546.094657 +2546.114437 +2546.136748 +2546.240078 +2546.263887 +2546.300317 +2546.334716 +2546.368749 +2546.400284 +2546.418666 +2546.450401 +2546.452498 +2546.492625 +2546.513937 +2546.550067 +2546.568649 +2546.624526 +2546.635449 +2546.662555 +2546.695322 +2546.867416 +2547.000017 +2547.001849 +2547.003547 +2547.005811 +2547.031652 +2547.033317 +2547.125192 +2547.149701 +2547.198785 +2547.202648 +2547.232618 +2547.453430 +2547.470779 +2547.550766 +2547.582800 +2547.655994 +2547.789027 +2547.892424 +2547.942907 +2548.020063 +2548.080669 +2548.126456 +2548.186962 +2548.206443 +2548.216699 +2548.243206 +2548.276872 +2548.317165 +2548.373809 +2548.380735 +2548.407308 +2548.452496 +2548.478837 +2548.481168 +2548.568813 +2548.621094 +2548.624824 +2548.660855 +2548.678470 +2548.705743 +2548.706642 +2548.740708 +2548.777205 +2548.830418 +2548.863652 +2548.873475 +2548.882433 +2548.909173 +2549.060821 +2549.112902 +2549.117897 +2549.154527 +2549.384131 +2549.423225 +2549.521426 +2549.575006 +2549.648599 +2549.704976 +2549.705709 +2549.776571 +2550.030217 +2550.105841 +2550.902577 +2551.307505 +2552.793418 +2552.970774 +2553.321389 +2553.416994 +2553.458485 +2553.501576 +2553.613530 +2553.649161 +2553.706337 +2553.774269 +2553.785192 +2553.818325 +2553.876234 +2553.902807 +2554.184525 +2554.381561 +2555.507135 +2555.509366 +2555.511264 +2555.521187 +2555.524051 +2555.648194 +2555.706835 +2556.022186 +2556.388985 +2556.415659 +2556.420887 +2556.600940 +2556.603571 +2556.604370 +2557.015425 +2564.447419 +2564.525707 +2564.528638 +2567.098132 +2567.100929 +2567.102195 +2567.605125 +2572.066093 +2574.937518 +2574.940349 +2575.038983 +2575.045044 +2576.883870 +2576.885668 +2576.887267 +2577.013174 +2577.016271 +2578.661158 +2579.472812 +2579.708809 +2580.006644 +2580.569048 +2581.367016 +2581.457592 +2581.566649 +2581.773709 +2581.955560 +2582.275440 +2582.277338 +2582.279169 +2582.281700 +2582.283398 +2582.285063 +2582.471577 +2582.473841 +2582.757058 +2583.273774 +2583.500780 +2583.507440 +2583.623623 +2583.625621 +2583.627420 +2583.629584 +2583.732914 +2583.804143 +2583.809138 +2583.875438 +2583.877369 +2583.940340 +2583.941971 +2583.943636 +2584.003776 +2584.513000 +2584.516729 +2584.519227 +2584.618861 +2584.621458 +2584.625354 +2589.038670 +2591.897175 +2591.899140 +2591.964108 +2591.965640 +2591.967105 +2591.969236 +2592.088883 +2592.092646 +2592.096309 +2592.098473 +2592.221184 +2592.222050 +2592.222649 +2592.224680 +2592.225446 +2592.226712 +2592.291047 +2592.621949 +2592.623981 +2592.625846 +2592.627977 +2592.794144 +2593.213258 +2593.215688 +2593.217786 +2593.608595 +2593.794043 +2593.795941 +2593.797673 +2593.800203 +2593.947489 +2596.783584 +2597.304396 +2597.380053 +2597.779287 +2598.059673 +2598.306726 +2600.684046 +2600.705092 +2600.707622 +2600.710053 +2600.921908 +2600.923639 +2600.924638 +2600.925438 +2600.926503 +2601.070592 +2601.072524 +2601.075854 +2601.077386 +2601.215481 +2601.217412 +2601.219244 +2601.276286 +2601.802160 +2601.920941 +2601.923905 +2601.980914 +2602.064664 +2602.066396 +2602.069726 +2602.175986 +2602.178050 +2602.309319 +2602.311750 +2602.902559 +2603.587373 +2603.781978 +2605.603455 +2605.716109 +2606.707650 +2606.710180 +2606.796561 +2606.820104 +2606.822801 +2607.384505 +2607.527496 +2607.847942 +2607.850539 +2608.360562 +2608.363093 +2608.365690 +2608.505350 +2608.509812 +2608.987301 +2609.464557 +2609.635286 +2610.041845 +2610.049671 +2610.672281 +2613.896853 +2614.245105 +2614.473310 +2615.013535 +2615.108274 +2615.637311 +2615.639775 +2615.698017 +2615.702546 +2615.857058 +2616.180334 +2616.283231 +2616.480034 +2616.526987 +2616.789491 +2616.791389 +2616.793021 +2616.794886 +2616.797849 +2616.926820 +2616.928385 +2616.929851 +2616.931516 +2616.933680 +2617.134579 +2617.140673 +2617.268378 +2617.269178 +2617.270643 +2617.394086 +2618.918160 +2619.658219 +2619.803940 +2619.895515 +2619.899944 +2619.968209 +2619.969874 +2619.971373 +2619.973104 +2620.045765 +2620.175069 +2620.177167 +2620.181562 +2620.183360 +2620.185225 +2620.298678 +2620.304806 +2621.248960 +2621.251258 +2621.253156 +2621.257652 +2622.229945 +2622.532909 +2622.868939 +2622.870670 +2622.872502 +2622.874500 +2622.952322 +2622.954287 +2623.030610 +2623.032309 +2623.033874 +2623.036504 +2623.150457 +2623.295845 +2623.297743 +2623.299441 +2623.371303 +2623.474633 +2624.429244 +2624.437735 +2624.649823 +2624.652187 +2624.660512 +2624.915324 +2627.819483 +2627.846989 +2627.971465 +2628.825110 +2628.827341 +2628.893142 +2628.894940 +2628.896539 +2628.898370 +2628.971064 +2629.041027 +2629.106129 +2629.107760 +2629.242093 +2629.244057 +2629.248120 +2629.834766 +2629.837730 +2629.839961 +2630.803596 +2630.806493 +2630.808625 +2630.957376 +2630.959540 +2630.961405 +2631.822843 +2631.897102 +2631.899233 +2631.901297 +2632.049982 +2632.051847 +2632.053412 +2632.055377 +2632.185080 +2632.187311 +2632.189442 +2632.800131 +2633.351679 +2633.772957 +2634.171658 +2634.363366 +2635.450578 +2635.456572 +2635.459869 +2635.583245 +2635.837491 +2636.895931 +2636.897796 +2636.899827 +2636.975085 +2636.976850 +2636.978415 +2636.980180 +2637.047413 +2637.048978 +2637.052008 +2637.053740 +2637.181812 +2637.183676 +2637.247046 +2637.248678 +2637.250210 +2637.251708 +2637.253873 +2637.324835 +2637.419008 +2637.422038 +2638.111781 +2639.001657 +2639.106019 +2639.212246 +2639.214710 +2639.223601 +2639.373185 +2639.374850 +2639.376515 +2639.463061 +2639.464860 +2639.466758 +2639.576048 +2639.577780 +2639.579278 +2639.580910 +2639.582775 +2639.726298 +2640.487802 +2640.489900 +2640.491765 +2640.493030 +2640.494829 +2640.498325 +2640.500257 +2640.594029 +2640.595861 +2640.597559 +2640.599590 +2640.676747 +2640.678811 +2640.680842 +2640.773616 +2640.775814 +2640.898558 +2643.719734 +2643.937449 +2643.939747 +2643.991828 +2643.993560 +2644.145541 +2644.192128 +2644.193826 +2644.197189 +2644.261458 +2644.265221 +2644.321598 +2644.323529 +2644.390795 +2644.392660 +2644.394259 +2644.396024 +2644.398388 +2644.472947 +2646.875875 +2646.877706 +2646.879371 +2646.994389 +2646.996054 +2646.997653 +2647.110406 +2647.165318 +2647.167583 +2647.527522 +2647.664052 +2647.725924 +2647.999283 +2648.008607 +2648.161854 +2648.166116 +2648.422027 +2648.464151 +2648.728753 +2648.742340 +2648.891757 +2648.921360 +2648.939842 +2648.957524 +2649.020861 +2649.063951 +2649.114733 +2649.209838 +2649.247767 +2649.289159 +2649.345136 +2649.376272 +2649.419495 +2649.457990 +2649.490690 +2649.532182 +2649.557091 +2649.574207 +2649.599115 +2649.630617 +2649.682698 +2649.706807 +2649.720927 +2649.774473 +2649.837310 +2649.890524 +2649.913234 +2649.975072 +2650.009671 +2650.023890 +2650.072475 +2650.098715 +2650.117163 +2650.136411 +2650.138542 +2650.181998 +2650.203177 +2650.229218 +2650.252861 +2650.292688 +2650.336777 +2650.374106 +2650.399214 +2650.429917 +2650.495851 +2650.532448 +2650.611901 +2650.639807 +2650.683064 +2650.708072 +2650.729750 +2650.753360 +2650.787725 +2650.805275 +2650.832581 +2650.849064 +2650.873673 +2650.891621 +2650.917729 +2650.941472 +2650.983196 +2651.051128 +2651.244901 +2651.247066 +2651.407638 +2651.409570 +2651.410036 +2651.411368 +2651.414631 +2651.968810 +2651.971807 +2651.973572 +2652.049263 +2652.052126 +2652.053558 +2652.128617 +2652.130481 +2652.132246 +2652.280365 +2652.282130 +2652.360651 +2652.430947 +2652.432712 +2652.434377 +2652.515396 +2652.517094 +2652.518726 +2652.595050 +2652.600644 +2652.683594 +2652.689722 +2652.775436 +2652.777101 +2654.034475 +2654.671638 +2654.673602 +2654.675167 +2654.676999 +2654.681961 +2654.693815 +2654.695647 +2654.697379 +2654.699310 +2654.905137 +2654.906902 +2654.947029 +2654.949027 +2654.950858 +2655.107068 +2655.177631 +2655.181228 +2655.250159 +2655.251857 +2655.253422 +2655.255054 +2655.257085 +2655.350025 +2655.352423 +2655.433142 +2655.434740 +2655.436405 +2655.523718 +2655.525849 +2655.615759 +2655.617857 +2655.686222 +2655.769239 +2655.771104 +2655.772869 +2655.774667 +2655.907001 +2657.728678 +2658.014425 +2658.016456 +2658.018221 +2658.020053 +2658.139167 +2658.140965 +2658.142663 +2658.144561 +2658.243928 +2658.254118 +2658.335404 +2658.337168 +2658.477328 +2658.480725 +2658.487851 +2658.490115 +2658.623848 +2658.625047 +2658.625480 +2658.627644 +2658.701970 +2658.703868 +2658.705700 +2658.786119 +2660.806230 +2660.808328 +2660.810160 +2660.812690 +2660.902267 +2662.013355 +2662.081254 +2662.082886 +2662.084351 +2662.087248 +2662.087947 +2662.088547 +2662.090478 +2662.229506 +2662.232536 +2662.233035 +2662.235999 +2662.301667 +2662.305529 +2662.308193 +2662.365503 +2662.367401 +2662.369099 +2662.448953 +2662.450418 +2662.451550 +2662.452382 +2662.454181 +2662.457111 +2662.540861 +2664.746320 +2664.967365 +2665.226639 +2665.228903 +2665.230934 +2665.343688 +2666.020111 +2666.023141 +2666.073824 +2666.076022 +2666.078053 +2666.305892 +2666.307690 +2666.309288 +2666.311220 +2666.315582 +2666.317081 +2666.521110 +2666.524273 +2666.525838 +2666.604626 +2666.606557 +2666.700463 +2666.703194 +2666.705858 +2667.880049 +2668.139390 +2668.143352 +2668.204125 +2668.205723 +2668.207189 +2668.210985 +2668.420941 +2668.423905 +2668.427535 +2668.493402 +2668.575919 +2668.577651 +2668.659869 +2668.662832 +2668.666129 +2668.735260 +2668.736992 +2668.739755 +2668.739989 +2668.827601 +2668.991370 +2669.082945 +2669.958036 +2669.960633 +2669.962864 +2670.263896 +2670.266294 +2670.268192 +2670.590270 +2670.912947 +2670.915378 +2670.917209 +2671.130795 +2671.132527 +2671.134092 +2671.135924 +2671.285507 +2671.290436 +2671.292467 +2671.653972 +2671.655537 +2671.657868 +2671.875883 +2671.878880 +2671.880412 +2671.882276 +2672.040218 +2672.041950 +2672.043615 +2672.045713 +2672.190102 +2672.191633 +2672.193165 +2672.194597 +2672.269822 +2672.271553 +2672.274983 +2672.369489 +2672.372586 +2672.374217 +2672.425200 +2672.518007 +2672.521137 +2672.823168 +2673.242182 +2673.248176 +2673.500490 +2673.502921 +2673.505352 +2673.898125 +2673.899757 +2673.901189 +2673.904685 +2673.910946 +2673.912511 +2674.080742 +2674.082474 +2674.083939 +2674.085704 +2674.087003 +2674.088868 +2674.090766 +2674.238085 +2674.240383 +2674.282174 +2674.284039 +2674.285771 +2674.287569 +2674.322833 +2674.482773 +2674.605217 +2674.733789 +2674.736053 +2674.737951 +2674.740316 +2674.988001 +2674.990632 +2675.062193 +2675.064291 +2675.065956 +2675.069120 +2675.308813 +2675.310778 +2675.312509 +2675.315473 +2675.438983 +2675.441081 +2675.443145 +2675.496625 +2675.624564 +2675.722399 +2675.724131 +2675.810045 +2675.814340 +2675.911110 +2675.917304 +2675.998889 +2676.002352 +2676.094194 +2676.161260 +2676.162892 +2676.165889 +2676.167653 +2676.169651 +2676.279475 +2676.283238 +2676.406148 +2676.413108 +2676.619901 +2676.621599 +2676.623131 +2676.624763 +2676.704449 +2676.707913 +2676.709844 +2676.896857 +2676.899021 +2676.900720 +2677.017236 +2677.209644 +2677.211542 +2677.213240 +2677.215005 +2677.217336 +2677.398421 +2677.400619 +2677.471415 +2677.475478 +2677.815404 +2677.817102 +2677.818601 +2677.820233 +2677.822464 +2677.838914 +2678.109310 +2678.168884 +2678.170682 +2678.172247 +2678.174112 +2678.580771 +2678.582436 +2678.583868 +2678.585533 +2678.587465 +2678.646206 +2678.649436 +2678.893292 +2678.973645 +2678.975276 +2678.976675 +2678.978273 +2678.980271 +2679.237247 +2679.352299 +2679.353964 +2679.355396 +2679.357028 +2679.359026 +2679.473511 +2679.881702 +2679.883101 +2679.884766 +2679.886797 +2679.912705 +2680.231652 +2680.530753 +2680.531618 +2680.533283 +2680.534749 +2680.536380 +2680.538545 +2680.865384 +2680.866983 +2680.868381 +2680.869880 +2680.871578 +2680.875274 +2681.061122 +2681.067582 +2681.104612 +2681.106277 +2681.107742 +2681.109340 +2681.296087 +2681.297985 +2681.543073 +2681.544704 +2681.546103 +2681.547635 +2681.549366 +2681.551964 +2681.601448 +2681.737978 +2681.739976 +2681.798683 +2681.930285 +2681.932117 +2681.938011 +2682.654793 +2682.825955 +2682.869312 +2682.873807 +2682.878336 +2682.931050 +2683.075139 +2683.427753 +2683.429884 +2683.431849 +2683.443703 +2683.445901 +2683.680866 +2683.683397 +2683.684396 +2683.685395 +2683.686527 +2683.977835 +2683.979833 +2683.981565 +2683.985594 +2683.986960 +2683.988791 +2683.990456 +2683.992354 +2684.064615 +2684.176836 +2684.178634 +2684.181898 +2684.183729 +2684.500046 +2684.502377 +2684.504308 +2684.783662 +2685.013166 +2685.014864 +2685.016263 +2685.017894 +2685.020292 +2685.107971 +2685.109702 +2685.112866 +2685.205573 +2685.207205 +2685.449029 +2685.453891 +2685.455823 +2685.562483 +2685.564281 +2685.565846 +2685.567611 +2685.726851 +2685.728550 +2685.731647 +2685.733645 +2685.736075 +2685.896548 +2685.901909 +2686.027051 +2686.028683 +2686.030114 +2686.031713 +2686.033578 +2686.036874 +2686.221023 +2686.222822 +2686.350194 +2686.352026 +2686.353557 +2686.355356 +2686.938505 +2686.940070 +2686.941402 +2686.942934 +2686.944599 +2686.947330 +2687.064179 +2687.228382 +2687.229980 +2687.231312 +2687.232811 +2687.234509 +2687.236507 +2687.237306 +2687.437472 +2687.439071 +2687.440469 +2687.443766 +2687.447462 +2687.827981 +2687.829646 +2687.831045 +2687.832577 +2687.834475 +2687.838604 +2687.872903 +2688.152590 +2688.154188 +2688.155587 +2688.157119 +2688.158983 +2688.162313 +2688.545563 +2688.547162 +2688.548560 +2688.550159 +2688.551990 +2688.932509 +2688.934141 +2688.937005 +2688.938703 +2688.941034 +2689.167141 +2689.234007 +2689.235639 +2689.237004 +2689.238470 +2689.240234 +2689.243764 +2689.562778 +2689.564410 +2689.565809 +2689.567340 +2689.569172 +2689.912162 +2689.913794 +2689.915126 +2689.916657 +2689.918389 +2689.920620 +2690.252554 +2690.254186 +2690.255551 +2690.257117 +2690.258948 +2690.263310 +2690.599141 +2690.600773 +2690.602171 +2690.603703 +2690.605601 +2690.966107 +2690.967739 +2690.969104 +2690.972500 +2690.975797 +2691.185121 +2691.188318 +2691.269736 +2691.271401 +2691.272800 +2691.276463 +2691.498940 +2691.604768 +2691.606499 +2691.607998 +2691.609563 +2691.611661 +2691.809363 +2691.821051 +2691.925613 +2691.927278 +2691.928677 +2691.930242 +2691.932140 +2692.294644 +2692.296275 +2692.297641 +2692.299139 +2692.300904 +2692.303302 +2692.564873 +2692.566571 +2692.613092 +2692.614723 +2692.616089 +2692.617620 +2692.621750 +2692.977560 +2692.979192 +2692.980590 +2692.982155 +2692.984054 +2693.041796 +2693.046624 +2693.048356 +2693.196707 +2693.196940 +2693.198306 +2693.199937 +2693.383920 +2693.385452 +2693.388316 +2693.453883 +2693.455681 +2693.457180 +2693.458878 +2693.461276 +2693.697273 +2693.700536 +2693.702068 +2693.762308 +2693.763973 +2693.767036 +2693.769134 +2694.007562 +2694.010593 +2694.012091 +2694.079191 +2694.080889 +2694.082321 +2694.083886 +2694.085784 +2694.358711 +2694.360376 +2694.361808 +2694.363439 +2694.365471 +2694.476160 +2694.482787 +2694.484984 +2694.755547 +2694.757378 +2694.759010 +2694.760975 +2694.768634 +2694.770399 +2694.771964 +2694.773629 +2694.775527 +2695.129473 +2695.131138 +2695.132536 +2695.134068 +2695.136099 +2695.482586 +2695.484251 +2695.485649 +2695.487215 +2695.489079 +2695.517751 +2695.806628 +2695.808293 +2695.809725 +2695.813222 +2696.109558 +2696.111223 +2696.112655 +2696.114287 +2696.116285 +2696.336797 +2696.453647 +2696.455345 +2696.456844 +2696.458542 +2696.815052 +2696.816417 +2696.817982 +2696.819847 +2696.822345 +2697.189744 +2697.191342 +2697.192741 +2697.194272 +2697.196137 +2697.362837 +2697.364569 +2697.552580 +2697.554245 +2697.555677 +2697.557276 +2697.559307 +2697.946586 +2697.948318 +2697.949716 +2697.951348 +2697.953179 +2697.970662 +2697.973925 +2697.975557 +2697.977455 +2698.297735 +2698.299400 +2698.300798 +2698.302297 +2698.304128 +2698.307425 +2698.441024 +2698.443089 +2698.445154 +2698.447085 +2698.601197 +2698.602862 +2698.604361 +2698.606026 +2698.607924 +2698.728237 +2698.888110 +2698.889742 +2698.891141 +2698.892706 +2698.894637 +2698.897101 +2699.119678 +2699.121543 +2699.123275 +2699.126305 +2699.282382 +2699.284047 +2699.285479 +2699.287044 +2699.289042 +2699.394370 +2699.396168 +2699.402662 +2699.720077 +2699.721809 +2699.725072 +2699.912618 +2699.914716 +2699.916781 +2700.216447 +2700.218179 +2700.219644 +2700.221376 +2700.276054 +2700.548948 +2700.550746 +2700.552211 +2700.553976 +2700.557639 +2701.015880 +2701.017645 +2701.019144 +2701.020842 +2701.024006 +2701.167695 +2701.277818 +2701.279383 +2701.281248 +2701.377019 +2701.378684 +2701.628867 +2701.630598 +2701.632097 +2701.633895 +2701.636925 +2702.023938 +2702.025636 +2702.027135 +2702.028800 +2702.031597 +2702.035493 +2702.037091 +2702.038490 +2702.297864 +2702.299629 +2702.301160 +2702.302859 +2702.306855 +2702.673954 +2702.677018 +2702.678683 +2702.680647 +2702.963331 +2702.966694 +2703.018043 +2703.019741 +2703.021173 +2703.022805 +2703.024836 +2703.381113 +2703.382778 +2703.384210 +2703.385775 +2703.387739 +2703.752874 +2703.754273 +2703.755838 +2703.757802 +2703.835325 +2703.838555 +2703.840087 +2703.886940 +2704.038455 +2704.040186 +2704.041652 +2704.043383 +2704.453273 +2704.456403 +2704.457968 +2704.459999 +2704.788304 +2704.789969 +2704.791434 +2704.793033 +2704.794931 +2705.140785 +2705.142350 +2705.143748 +2705.145313 +2705.147212 +2705.428763 +2705.430495 +2705.431993 +2705.433725 +2705.437255 +2705.697960 +2705.699592 +2705.701024 +2705.702622 +2705.704654 +2705.978479 +2705.980111 +2705.981576 +2705.983208 +2705.985173 +2706.114843 +2706.323168 +2706.324899 +2706.326331 +2706.327996 +2706.329961 +2706.454037 +2706.455668 +2706.458632 +2706.460330 +2706.462262 +2706.657500 +2706.659198 +2706.660597 +2706.662162 +2706.664126 +2706.788902 +2706.790600 +2706.792198 +2706.793797 +2706.795695 +2706.950407 +2706.951872 +2706.953470 +2706.955368 +2707.170253 +2707.173417 +2707.174982 +2707.176647 +2707.326230 +2707.327962 +2707.331026 +2707.472384 +2707.475248 +2707.476746 +2707.478278 +2707.480010 +2707.633156 +2707.634855 +2707.636353 +2707.638052 +2707.915341 +2707.919803 +2707.921501 +2707.924631 +2707.927728 +2707.929393 +2707.930958 +2708.121867 +2708.123665 +2708.125663 +2708.134888 +2708.409413 +2708.413708 +2708.513309 +2708.516639 +2708.518637 +2708.623066 +2708.808114 +2708.809945 +2708.818503 +2709.013208 +2709.014008 +2709.015140 +2709.016905 +2709.108580 +2709.111244 +2709.291929 +2709.294127 +2709.406448 +2709.409045 +2709.588799 +2709.591529 +2709.798522 +2709.803484 +2709.889198 +2709.891596 +2709.994093 +2710.816969 +2710.820133 +2711.274844 +2711.791494 +2711.794791 +2712.708876 +2716.878069 +2716.879601 +2716.881066 +2716.943903 +2716.988325 +2716.989990 +2716.991589 +2716.993287 +2717.119294 +2718.136143 +2718.524754 +2718.527751 +2718.722922 +2718.893951 +2718.971840 +2719.105639 +2719.362882 +2719.365346 +2719.367177 +2719.390654 +2719.481430 +2719.512998 +2719.652458 +2719.731213 +2719.768276 +2719.806271 +2719.806937 +2719.902775 +2719.986524 +2720.316827 +2720.319091 +2720.327017 +2720.329447 +2720.448162 +2720.806770 +2720.836340 +2720.860949 +2720.873936 +2720.946796 +2720.985124 +2721.101674 +2721.103972 +2721.105937 +2721.174235 +2721.249094 +2721.589186 +2721.633908 +2721.759050 +2722.139735 +2722.210165 +2722.212796 +2722.807800 +2722.809831 +2722.811896 +2722.813195 +2722.815426 +2722.817390 +2722.918822 +2722.921819 +2723.508299 +2724.203170 +2724.205234 +2724.207033 +2724.822117 +2724.914724 +2725.359113 +2725.362343 +2725.363242 +2725.503035 +2725.504734 +2725.506166 +2725.512259 +2725.580358 +2725.621117 +2725.622882 +2725.624547 +2725.626878 +2725.697974 +2725.701070 +2725.702636 +2725.793911 +2725.857580 +2725.859812 +2726.966271 +2727.035368 +2727.040030 +2727.209028 +2727.529474 +2727.531372 +2727.533070 +2727.652983 +2727.915154 +2727.917019 +2727.918651 +2727.920782 +2727.956879 +2727.958844 +2727.960542 +2727.962906 +2728.309459 +2728.311657 +2728.313555 +2728.336965 +2728.339063 +2728.341427 +2728.605430 +2728.607561 +2728.797538 +2728.799536 +2728.801300 +2728.908160 +2728.911490 +2728.913455 +2729.262472 +2729.264304 +2729.358676 +2729.360141 +2729.361906 +2729.365602 +2729.505129 +2729.611390 +2729.613088 +2729.706628 +2729.709891 +2729.713654 +2729.976691 +2729.978955 +2730.037563 +2730.039927 +2730.309258 +2730.311256 +2730.337796 +2730.582085 +2730.820746 +2730.822477 +2730.824009 +2730.825707 +2730.905994 +2730.908058 +2731.182850 +2731.186113 +2731.187878 +2731.194938 +2731.196703 +2731.463003 +2731.464568 +2731.470862 +2731.478787 +2731.480452 +2731.485547 +2731.879453 +2731.881184 +2731.882749 +2731.884514 +2732.103728 +2732.106825 +2732.108423 +2732.202962 +2732.204827 +2732.206459 +2732.559239 +2732.561004 +2732.562635 +2732.564467 +2733.026138 +2733.385179 +2733.386910 +2733.390007 +2733.392804 +2733.602461 +2733.752311 +2733.754176 +2733.756041 +2734.389007 +2734.390672 +2734.392204 +2734.394035 +2734.716846 +2734.718644 +2734.720276 +2734.902293 +2734.905557 +2735.228167 +2735.229932 +2735.231431 +2735.233262 +2735.576485 +2735.578150 +2735.579515 +2735.581081 +2735.583178 +2735.587041 +2735.729865 +2735.732862 +2735.799495 +2735.801194 +2735.802625 +2735.804257 +2735.806288 +2736.238789 +2736.241819 +2736.243517 +2736.245382 +2736.319142 +2736.541652 +2736.543317 +2736.544716 +2736.546281 +2736.548146 +2736.916377 +2736.918009 +2736.920939 +2736.922904 +2737.056803 +2737.060100 +2737.061765 +2737.255804 +2737.257436 +2737.258834 +2737.262331 +2737.378048 +2737.570656 +2737.572287 +2737.573686 +2737.575284 +2737.577049 +2737.580179 +2737.693633 +2737.695298 +2737.696829 +2737.943849 +2737.946912 +2737.948477 +2737.950376 +2737.996396 +2738.267858 +2738.269489 +2738.270855 +2738.272420 +2738.274385 +2738.535623 +2738.537321 +2738.538753 +2738.540385 +2738.542350 +2738.673751 +2738.925466 +2738.927098 +2738.928563 +2738.930095 +2738.932060 +2739.232759 +2739.234457 +2739.237520 +2739.239585 +2739.374983 +2739.564626 +2739.566258 +2739.567657 +2739.569255 +2739.571186 +2739.873617 +2739.875249 +2739.876647 +2739.878179 +2739.880210 +2740.205718 +2740.207350 +2740.208748 +2740.210313 +2740.212211 +2740.533057 +2740.534755 +2740.536154 +2740.537719 +2740.540416 +2740.997292 +2740.998991 +2741.000422 +2741.001988 +2741.004052 +2741.032823 +2741.034622 +2741.037918 +2741.040116 +2741.272916 +2741.275947 +2741.277478 +2741.279277 +2741.362360 +2741.368121 +2741.466289 +2741.467954 +2741.469353 +2741.470985 +2741.473083 +2741.656799 +2741.660129 +2741.807914 +2741.809912 +2741.815507 +2741.888300 +2741.994627 +2741.996359 +2741.999689 +2742.088933 +2742.203951 +2742.205916 +2742.207581 +2742.209512 +2742.439882 +2742.513508 +2742.516605 +2742.706948 +2742.710211 +2742.711976 +2742.802019 +2742.804184 +2742.900421 +2742.977710 +2742.980107 +2742.990464 +2743.082039 +2743.157730 +2743.159261 +2743.160926 +2743.162791 +2743.178242 +2743.296025 +2743.902151 +2751.614831 +2751.616929 +2751.678534 +2751.790921 +2753.540203 +2754.898810 +2755.079396 +2757.004003 +2757.342930 +2757.346327 +2757.398808 +2757.423949 +2757.494445 +2758.504667 +2758.510062 +2766.162102 +2766.332598 +2766.344187 +2766.384513 +2766.434263 +2766.607889 +2766.682082 +2766.799165 +2767.094436 +2769.209951 +2769.246814 +2769.382745 +2771.072753 +2771.104788 +2771.133726 +2771.280179 +2771.326966 +2771.492600 +2771.528697 +2771.545180 +2771.570222 +2771.595996 +2771.621005 +2771.629529 +2771.672453 +2771.699359 +2771.774851 +2771.787305 +2771.801724 +2771.839353 +2771.854204 +2771.879812 +2771.909283 +2771.914944 +2772.025766 +2772.067424 +2772.112846 +2772.114178 +2772.151906 +2772.195363 +2772.207984 +2772.238387 +2772.354337 +2772.445246 +2772.566525 +2772.953038 +2773.203687 +2773.825331 +2773.827363 +2773.881675 +2773.988035 +2774.030826 +2774.045877 +2774.060563 +2774.079011 +2774.084872 +2774.112710 +2774.128195 +2774.167755 +2774.194861 +2774.392131 +2774.392930 +2774.423965 +2774.721235 +2774.987002 +2774.988400 +2775.019103 +2775.148240 +2775.196192 +2775.281241 +2775.414274 +2775.444244 +2775.794960 +2781.391025 +2781.469946 +2781.591890 +2788.018990 +2788.733475 +2788.932609 +2790.026048 +2790.079528 +2790.307066 +2791.136037 +2791.355850 +2791.491814 +2791.690282 +2792.055450 +2792.383088 +2792.389149 +2792.456248 +2792.537201 +2792.540231 +2792.658146 +2793.096841 +2793.816487 +2794.738797 +2794.744391 +2794.766602 +2795.708326 +2795.714121 +2795.800534 +2795.822612 +2795.870564 +2795.872129 +2795.911024 +2795.915652 +2796.016351 +2796.107027 +2796.128639 +2796.183751 +2796.185482 +2796.291576 +2796.297503 +2796.335232 +2796.349418 +2796.390410 +2796.441459 +2796.469132 +2796.540926 +2796.587014 +2796.628072 +2796.640527 +2796.727573 +2796.808159 +2796.829071 +2796.854379 +2796.876790 +2796.957243 +2796.973993 +2797.020313 +2797.051682 +2797.055045 +2797.077023 +2797.113986 +2797.116084 +2797.190509 +2797.221046 +2797.240293 +2797.250849 +2797.278155 +2797.281119 +2797.316150 +2797.344822 +2797.365601 +2797.399101 +2797.443823 +2797.458774 +2797.500899 +2797.594339 +2797.630902 +2797.668997 +2797.697136 +2797.739260 +2797.761338 +2797.838194 +2797.855078 +2797.888844 +2797.912953 +2797.921578 +2797.969263 +2797.993306 +2797.999633 +2798.014684 +2798.048551 +2798.093772 +2798.157675 +2798.200831 +2798.213652 +2798.250715 +2798.269163 +2798.276156 +2798.306193 +2798.308757 +2798.328570 +2798.378054 +2798.419313 +2798.446719 +2798.462503 +2798.487211 +2798.501297 +2798.534964 +2798.543688 +2798.600565 +2798.619612 +2798.643655 +2798.653378 +2798.666832 +2798.683515 +2798.714584 +2798.724041 +2798.758473 +2798.786712 +2798.792106 +2798.818447 +2798.880984 +2798.895370 +2798.898233 +2798.944620 +2798.973258 +2798.996768 +2799.023541 +2799.032166 +2799.057640 +2799.058306 +2799.084880 +2799.092506 +2799.112619 +2799.145885 +2799.184380 +2799.207324 +2799.209422 +2799.230434 +2799.243688 +2799.245686 +2799.281516 +2799.323674 +2799.385146 +2799.447783 +2799.468463 +2799.486711 +2799.513784 +2799.556574 +2799.591439 +2799.596201 +2799.643054 +2799.669761 +2799.703561 +2799.732865 +2799.754809 +2799.772958 +2799.806857 +2799.838026 +2799.902595 +2799.926970 +2799.962801 +2800.004293 +2800.032498 +2800.053943 +2800.119411 +2800.153144 +2800.170427 +2800.171093 +2800.185412 +2800.220077 +2800.262101 +2800.290340 +2800.294636 +2800.365631 +2800.381848 +2800.391106 +2800.446883 +2800.498964 +2800.530433 +2800.584146 +2800.613117 +2800.627869 +2800.637226 +2800.664965 +2800.667862 +2800.695901 +2800.734196 +2800.745018 +2800.770493 +2800.812617 +2800.869926 +2800.963566 +2800.989740 +2801.021008 +2801.033030 +2801.060835 +2801.093935 +2801.119243 +2801.122807 +2801.143985 +2801.165331 +2801.186976 +2801.212284 +2801.236326 +2801.275853 +2801.324671 +2801.336759 +2801.353442 +2801.397765 +2801.398464 +2801.440156 +2801.498730 +2801.500995 +2801.565630 +2801.580082 +2801.652743 +2801.695400 +2801.749413 +2801.783279 +2801.787241 +2801.819376 +2801.826669 +2801.848147 +2801.873155 +2801.882146 +2801.914814 +2801.922007 +2801.944018 +2801.965063 +2801.982679 +2801.984577 +2802.019609 +2802.042286 +2802.070724 +2802.085543 +2802.094001 +2802.095000 +2802.114148 +2802.125436 +2802.145416 +2802.203691 +2802.287907 +2802.345183 +2802.348480 +2802.397830 +2802.437191 +2802.439322 +2802.491170 +2802.539522 +2802.659701 +2802.678383 +2802.705689 +2802.753541 +2802.764330 +2802.805389 +2802.810417 +2802.832528 +2802.878149 +2802.922339 +2802.983744 +2803.034460 +2803.040920 +2803.070091 +2803.114946 +2803.146448 +2803.168259 +2803.196331 +2803.201193 +2803.219208 +2803.314779 +2803.344083 +2803.363197 +2803.406987 +2803.417110 +2803.452741 +2803.481246 +2803.533260 +2803.561798 +2803.587772 +2803.615312 +2803.659134 +2803.661465 +2803.696630 +2803.746147 +2803.779114 +2803.799660 +2803.804955 +2803.837123 +2803.887439 +2803.938854 +2803.993300 +2804.033293 +2804.036423 +2804.048545 +2804.077416 +2804.125534 +2804.130962 +2804.167559 +2804.196064 +2804.231195 +2804.262097 +2804.267259 +2804.300326 +2804.326300 +2804.354538 +2804.412114 +2804.417342 +2804.445947 +2804.448577 +2804.461698 +2804.491401 +2804.510649 +2804.533825 +2804.555171 +2804.570389 +2804.578547 +2804.599393 +2804.646180 +2804.656336 +2804.690169 +2804.715677 +2804.730429 +2804.749643 +2804.762030 +2804.780512 +2804.808784 +2804.842183 +2804.877648 +2804.960498 +2804.988670 +2804.989969 +2805.029429 +2805.055337 +2805.067258 +2805.075217 +2805.113479 +2805.115976 +2805.149676 +2805.152073 +2805.183109 +2805.206585 +2805.238520 +2805.252906 +2805.270954 +2805.311880 +2805.324234 +2805.371087 +2805.416542 +2805.416941 +2805.449309 +2805.485373 +2805.502756 +2805.594297 +2805.623268 +2805.636388 +2805.652206 +2805.688103 +2805.697694 +2805.732692 +2805.759032 +2805.782043 +2805.823301 +2805.834690 +2805.851806 +2805.877081 +2805.903321 +2805.949475 +2806.015043 +2806.082275 +2806.123601 +2806.189368 +2806.225798 +2806.248143 +2806.262495 +2806.288236 +2806.310380 +2806.356301 +2806.374949 +2806.464526 +2806.522735 +2806.553770 +2806.565592 +2806.598892 +2806.661362 +2806.812877 +2806.840516 +2806.865225 +2806.866058 +2806.927196 +2806.956733 +2807.001855 +2807.018139 +2807.027163 +2807.054835 +2807.114675 +2807.136220 +2807.152105 +2807.169887 +2807.192697 +2807.228928 +2807.253869 +2807.258298 +2807.291698 +2807.307249 +2807.320103 +2807.355434 +2807.397193 +2807.434522 +2807.479210 +2807.488801 +2807.498624 +2807.538518 +2807.548874 +2807.607415 +2807.656366 +2807.657798 +2807.683473 +2807.712077 +2807.747109 +2807.803020 +2807.854568 +2807.903752 +2807.911378 +2807.943113 +2808.003053 +2808.039416 +2808.089633 +2808.155833 +2808.161894 +2808.200056 +2808.250405 +2808.312310 +2808.352969 +2808.390298 +2808.395560 +2808.421834 +2808.450372 +2808.468187 +2808.509779 +2808.540681 +2808.572949 +2808.598623 +2808.599755 +2808.634354 +2808.679609 +2808.747141 +2808.786169 +2808.847075 +2808.887134 +2808.925563 +2808.971050 +2808.972049 +2809.008047 +2809.042279 +2809.073947 +2809.126295 +2809.205383 +2809.242812 +2809.320334 +2809.335253 +2809.371050 +2809.421666 +2809.433554 +2809.484603 +2809.725862 +2809.767287 +2809.803317 +2809.962125 +2809.974513 +2810.029824 +2810.089764 +2810.137649 +2810.329324 +2810.411608 +2810.439580 +2810.461558 +2810.629490 +2810.730289 +2810.795158 +2810.937216 +2811.031455 +2811.150769 +2811.324028 +2811.483302 +2811.667018 +2812.203282 +2812.378140 +2813.006344 +2813.200483 +2813.701782 +2814.369713 +2814.909273 +2815.077038 +2815.183831 +2821.878130 +2821.880095 +2821.881860 +2823.907033 +2824.176397 +2824.319587 +2825.650155 +2826.232938 +2826.296008 +2826.360643 +2826.396141 +2826.433504 +2826.458712 +2826.483021 +2826.568635 +2826.658945 +2826.707763 +2826.982987 +2827.141728 +2827.883153 +2827.966203 +2828.198137 +2830.743556 +2830.883516 +2832.260005 +2832.261770 +2832.263302 +2832.265033 +2832.265966 +2832.269262 +2832.416815 +2832.418613 +2832.420511 +2832.467930 +2832.473491 +2832.551580 +2832.553311 +2832.556608 +2832.558373 +2832.631833 +2832.633231 +2832.633764 +2832.710054 +2834.824538 +2834.827102 +2834.833296 +2835.076286 +2835.077951 +2835.079483 +2835.081214 +2835.090005 +2835.094701 +2835.238157 +2835.307421 +2835.309153 +2835.310618 +2835.312449 +2835.376785 +2835.378383 +2835.379915 +2835.383112 +2835.527334 +2837.044815 +2837.047080 +2837.049377 +2837.054139 +2837.056304 +2837.323203 +2837.325001 +2837.326600 +2837.328498 +2837.331195 +2837.408951 +2837.480845 +2837.482744 +2837.484442 +2837.487805 +2837.576050 +2837.576716 +2837.579147 +2837.659400 +2837.729330 +2837.737122 +2837.809650 +2837.815877 +2839.117640 +2841.009547 +2841.011611 +2841.013509 +2841.071485 +2841.078211 +2841.242713 +2841.247408 +2841.250905 +2841.452203 +2841.453868 +2841.455500 +2841.588800 +2841.590731 +2841.591397 +2841.592496 +2841.664558 +2841.666855 +2841.667754 +2841.668787 +2841.670818 +2844.508477 +2844.510109 +2844.513706 +2844.521964 +2844.725960 +2844.726559 +2844.727691 +2844.729556 +2844.795923 +2844.858627 +2844.861358 +2844.926959 +2845.006745 +2845.480771 +2845.680438 +2845.792692 +2845.982735 +2845.986565 +2846.068183 +2846.152498 +2846.154297 +2846.155096 +2846.240544 +2846.314836 +2846.316767 +2846.318499 +2846.321929 +2846.452132 +2846.573311 +2846.693857 +2846.786697 +2846.880137 +2846.984266 +2847.085198 +2847.277372 +2847.366949 +2847.369647 +2847.785431 +2847.879570 +2848.679902 +2848.994787 +2849.074740 +2849.173008 +2849.288692 +2850.544768 +2850.547099 +2850.548998 +2850.551428 +2850.668811 +2850.670443 +2850.672041 +2850.747965 +2850.750196 +2850.894219 +2850.966013 +2850.968045 +2851.037608 +2851.041937 +2853.151892 +2853.158519 +2853.263947 +2853.265578 +2853.329314 +2853.332078 +2853.406104 +2853.407803 +2853.411133 +2853.414096 +2853.486524 +2853.488488 +2853.490253 +2853.557686 +2853.560683 +2853.563946 +2853.566211 +2853.716460 +2853.718225 +2853.788854 +2853.789687 +2853.795082 +2855.038670 +2855.041401 +2855.107934 +2855.109499 +2855.111098 +2855.112729 +2855.115926 +2855.298210 +2855.302373 +2855.839002 +2855.842199 +2856.318422 +2856.372069 +2856.465209 +2856.503470 +2856.525881 +2856.918755 +2856.982291 +2857.198675 +2857.272434 +2857.350756 +2857.915923 +2858.545393 +2858.547391 +2858.618087 +2858.620684 +2858.625879 +2858.685686 +2859.069802 +2859.466138 +2859.574130 +2859.623181 +2859.655282 +2859.691446 +2859.818019 +2860.115521 +2860.120017 +2860.121782 +2860.314023 +2860.317553 +2860.374995 +2860.379224 +2860.574296 +2860.576127 +2860.577792 +2860.579890 +2860.587216 +2860.810659 +2860.813922 +2860.887582 +2860.891345 +2861.062573 +2861.066936 +2862.223778 +2862.225842 +2862.227574 +2862.229539 +2862.295806 +2862.297571 +2862.299169 +2862.301000 +2862.482319 +2862.485682 +2862.487314 +2862.489279 +2862.490644 +2862.641027 +2862.641793 +2862.643724 +2862.711256 +2862.868399 +2862.871829 +2862.873061 +2862.873727 +2862.876325 +2862.944023 +2862.945655 +2862.946354 +2862.950117 +2863.015519 +2863.017117 +2863.020214 +2863.022079 +2863.023777 +2863.101532 +2863.103797 +2863.177723 +2863.188878 +2863.259241 +2863.351482 +2863.358142 +2865.136362 +2865.139726 +2865.143755 +2865.259073 +2865.404594 +2865.406459 +2865.484747 +2865.548383 +2865.554510 +2865.557874 +2865.628103 +2865.629535 +2865.702196 +2865.779752 +2865.780318 +2865.782216 +2865.856641 +2867.329933 +2869.981945 +2869.983943 +2870.053540 +2870.055305 +2870.056937 +2870.058802 +2870.238988 +2870.300127 +2870.301892 +2870.303557 +2870.373020 +2870.427699 +2870.497263 +2870.569424 +2870.991934 +2872.055736 +2872.057401 +2872.058833 +2872.060498 +2872.062729 +2872.137954 +2872.140817 +2872.218107 +2872.219838 +2872.281210 +2872.282675 +2872.285606 +2872.346179 +2872.348043 +2872.417407 +2872.420571 +2872.426398 +2872.556102 +2872.558366 +2872.984273 +2872.987503 +2872.989734 +2873.999457 +2874.001155 +2874.002720 +2874.005118 +2874.073882 +2874.075514 +2874.076946 +2874.080376 +2874.226396 +2874.228128 +2874.229793 +2874.303153 +2874.377312 +2874.382007 +2874.384039 +2874.460995 +2874.464059 +2874.535654 +2874.986602 +2877.661092 +2877.662890 +2877.664455 +2877.666320 +2877.830189 +2877.909976 +2877.911874 +2878.059127 +2878.139713 +2878.141577 +2878.143309 +2878.145507 +2878.220465 +2879.505612 +2880.275575 +2880.277273 +2880.278671 +2880.280403 +2880.457026 +2880.458558 +2880.462687 +2880.605078 +2880.606976 +2880.608874 +2880.651498 +2880.751065 +2880.757625 +2880.815834 +2880.817998 +2880.819930 +2880.901548 +2880.903812 +2880.905977 +2881.778903 +2881.780701 +2881.782300 +2881.784131 +2881.786362 +2881.790591 +2881.888260 +2881.981534 +2881.986295 +2882.067414 +2882.069113 +2882.074540 +2882.165017 +2882.167914 +2882.169978 +2882.242539 +2882.245836 +2882.247601 +2882.357024 +2882.361786 +2882.363618 +2882.448067 +2882.449998 +2882.451829 +2882.663185 +2882.664450 +2882.665316 +2882.767680 +2882.770011 +2882.878735 +2882.885762 +2883.271709 +2883.273740 +2883.275472 +2883.362551 +2883.466580 +2883.467146 +2883.473973 +2883.564549 +2883.654892 +2883.656191 +2883.656757 +2883.658388 +2883.753227 +2883.757556 +2883.847632 +2883.857955 +2883.862251 +2883.952194 +2884.069843 +2884.170542 +2884.180432 +2884.268344 +2884.278501 +2884.370709 +2884.464948 +2884.562250 +2884.563582 +2884.565880 +2884.567711 +2884.658254 +2884.661484 +2884.751361 +2884.757721 +2884.760152 +2884.762250 +2884.864781 +2884.865413 +2884.867178 +2886.462748 +2886.640237 +2886.721755 +2886.785625 +2886.787390 +2886.861182 +2886.863480 +2886.865511 +2888.749559 +2888.835406 +2888.837371 +2888.839136 +2888.841600 +2888.951557 +2888.953255 +2888.954787 +2888.956385 +2889.018490 +2889.020454 +2889.022252 +2889.091084 +2889.092715 +2889.094280 +2889.096245 +2889.245895 +2889.299475 +2889.428246 +2889.515059 +2890.047127 +2890.199274 +2890.560046 +2890.654252 +2890.716057 +2890.975164 +2891.165973 +2891.332373 +2891.381890 +2891.481391 +2891.493445 +2891.503302 +2891.510462 +2891.563808 +2891.656649 +2891.714091 +2891.745926 +2891.891181 +2891.893245 +2891.895010 +2892.060911 +2892.064141 +2892.158513 +2892.236768 +2892.279292 +2892.360045 +2892.422282 +2892.454983 +2892.501203 +2892.624047 +2892.668503 +2892.979125 +2893.008329 +2893.119784 +2893.175995 +2893.254083 +2893.324646 +2893.377027 +2893.458911 +2893.516587 +2893.796640 +2893.801102 +2893.919417 +2894.064938 +2894.328774 +2894.330905 +2894.332670 +2894.334868 +2894.746356 +2894.748687 +2894.847288 +2894.849386 +2894.851251 +2894.853649 +2895.251051 +2895.255613 +2895.257544 +2895.324810 +2895.326242 +2895.330505 +2895.332503 +2895.481320 +2895.483019 +2895.484550 +2895.486315 +2895.551750 +2895.557278 +2895.760607 +2895.762372 +2895.764037 +2895.765869 +2895.767534 +2895.769165 +2895.771030 +2895.968033 +2895.970431 +2895.972362 +2896.152548 +2896.154480 +2896.156278 +2896.269964 +2896.276691 +2896.572095 +2896.574293 +2896.576191 +2896.668365 +2896.670030 +2896.672028 +2896.934566 +2896.939527 +2896.941359 +2897.058275 +2897.060007 +2897.061505 +2897.063270 +2897.065801 +2897.203163 +2897.204962 +2897.206527 +2897.208258 +2897.210256 +2897.380952 +2897.509590 +2897.511255 +2897.512753 +2897.514385 +2897.516683 +2897.519813 +2897.521411 +2897.523310 +2897.526706 +2897.757542 +2897.765534 +2897.891907 +2897.893572 +2897.895004 +2897.896569 +2897.898401 +2898.059706 +2898.062636 +2898.141058 +2898.142723 +2898.144155 +2898.145820 +2898.147884 +2898.247684 +2898.317581 +2898.319246 +2898.473026 +2898.474824 +2898.476489 +2898.478487 +2898.486279 +2898.488044 +2898.655043 +2898.657108 +2898.728370 +2898.731567 +2898.733165 +2898.734897 +2898.866165 +2898.868596 +2898.870794 +2898.905992 +2898.909755 +2898.911886 +2899.387011 +2899.388875 +2899.390540 +2899.392605 +2899.446551 +2899.448549 +2899.450281 +2899.454310 +2899.691706 +2899.695469 +2899.954210 +2899.956607 +2899.988309 +2899.991772 +2900.367895 +2900.385178 +2900.387110 +2900.388874 +2900.601861 +2900.711285 +2900.712950 +2900.714449 +2900.716147 +2900.893136 +2900.894835 +2900.976986 +2900.978751 +2900.980183 +2900.981848 +2901.080982 +2901.163599 +2901.165430 +2901.167129 +2901.241787 +2901.243419 +2901.245317 +2901.421940 +2901.423872 +2901.425637 +2901.482347 +2901.781780 +2901.783845 +2901.785743 +2901.815913 +2902.189972 +2902.213381 +2902.215280 +2902.216978 +2902.219375 +2902.504390 +2902.594866 +2902.599495 +2902.968359 +2902.970524 +2903.152441 +2903.154106 +2903.156471 +2903.623603 +2903.625235 +2903.626600 +2903.628099 +2903.629897 +2903.632561 +2903.898761 +2903.900426 +2903.901891 +2903.903590 +2903.905654 +2903.977649 +2903.980712 +2904.234092 +2904.249943 +2904.251541 +2904.254505 +2904.256370 +2904.523502 +2904.526699 +2904.569356 +2904.571088 +2904.572587 +2904.574285 +2904.576483 +2904.814145 +2904.955537 +2904.957135 +2904.958500 +2904.960032 +2904.961764 +2904.965094 +2905.263029 +2905.264561 +2905.268989 +2905.431127 +2905.432792 +2905.434224 +2905.435856 +2905.619872 +2905.623368 +2905.626631 +2905.728829 +2905.744747 +2905.746645 +2906.024800 +2906.105485 +2906.107350 +2906.109049 +2906.111047 +2906.300590 +2906.561629 +2906.563460 +2906.565059 +2906.567023 +2906.648808 +2906.652438 +2906.654369 +2906.904919 +2906.908448 +2906.912045 +2906.913876 +2906.995561 +2906.998691 +2907.000323 +2907.002288 +2907.293030 +2907.294728 +2907.296260 +2907.297992 +2907.301455 +2907.410080 +2907.411911 +2907.824898 +2907.826629 +2907.828128 +2907.829926 +2908.004618 +2908.089333 +2908.092463 +2908.094062 +2908.292896 +2908.295959 +2908.429393 +2908.432489 +2908.434121 +2908.436053 +2908.614407 +2908.741480 +2908.743145 +2908.744577 +2908.746209 +2908.748107 +2908.752136 +2908.830524 +2909.129891 +2909.131590 +2909.134587 +2909.136551 +2909.428959 +2909.433654 +2909.553867 +2909.755865 +2909.757696 +2909.759295 +2909.761126 +2909.877010 +2909.878642 +2910.018635 +2910.020533 +2910.022231 +2910.024529 +2910.371515 +2910.373280 +2910.374812 +2910.376643 +2910.379274 +2910.574978 +2910.746506 +2910.748338 +2910.749970 +2910.753433 +2910.789896 +2911.140878 +2911.142577 +2911.144075 +2911.145807 +2911.148804 +2911.162657 +2911.347738 +2911.349470 +2911.351334 +2911.700119 +2911.701850 +2911.703315 +2911.704914 +2911.706912 +2911.723096 +2911.727791 +2911.729589 +2911.937181 +2911.938880 +2911.940378 +2911.943808 +2912.038147 +2912.039712 +2912.041543 +2912.198320 +2912.199852 +2912.203515 +2912.414071 +2912.415736 +2912.417134 +2912.418666 +2912.420497 +2912.535049 +2912.539978 +2912.541776 +2912.756761 +2912.758426 +2912.759791 +2912.761356 +2912.763254 +2912.863554 +2912.866518 +2912.868049 +2912.869814 +2912.871579 +2913.114469 +2913.116068 +2913.117466 +2913.118998 +2913.120763 +2913.123694 +2913.162854 +2913.164486 +2913.169081 +2913.487330 +2913.488995 +2913.490393 +2913.491958 +2913.638079 +2913.642940 +2913.841375 +2913.843040 +2913.844439 +2913.846037 +2913.847769 +2913.934815 +2914.194022 +2914.195454 +2914.196986 +2914.198817 +2914.220862 +2914.222460 +2914.556593 +2914.558258 +2914.559623 +2914.561188 +2914.563386 +2914.819063 +2914.909273 +2914.912336 +2914.914001 +2915.109472 +2915.202246 +2915.206675 +2915.208407 +2915.306575 +2915.308140 +2915.401480 +2915.404510 +2915.603012 +2915.604577 +2915.606342 +2915.803578 +2915.910970 +2916.103411 +2916.105342 +2916.106974 +2916.109072 +2916.215532 +2916.405608 +2916.406474 +2916.407773 +2916.409771 +2916.601379 +2916.601978 +2916.603544 +2916.707939 +2916.709038 +2916.709804 +2916.714299 +2916.808771 +2916.810969 +2916.912934 +2916.995451 +2916.997616 +2916.999747 +2917.114166 +2917.116497 +2917.427752 +2917.430416 +2917.704009 +2918.000845 +2918.004175 +2918.204075 +2918.207338 +2918.209070 +2918.399746 +2918.401510 +2918.402942 +2918.404674 +2918.404940 +2918.409602 +2918.604807 +2918.606539 +2918.713631 +2918.777334 +2918.779399 +2919.071939 +2919.073837 +2919.197913 +2919.199545 +2919.205206 +2919.401909 +2919.403840 +2919.405572 +2919.705372 +2919.707237 +2919.708802 +2919.905472 +2919.907237 +2919.908802 +2920.027716 +2920.029314 +2920.032311 +2920.035974 +2920.055721 +2920.057586 +2920.128448 +2920.131845 +2920.133743 +2920.412531 +2920.414462 +2920.416194 +2920.417992 +2920.450160 +2920.452191 +2920.454056 +2920.929313 +2920.931045 +2920.932544 +2920.934275 +2921.085457 +2921.088754 +2921.232676 +2921.234375 +2921.235840 +2921.237505 +2921.239603 +2921.486789 +2921.490052 +2921.493415 +2921.563812 +2921.565510 +2921.566975 +2921.568607 +2921.570805 +2921.820688 +2921.822320 +2921.825383 +2921.827115 +2921.898010 +2922.132676 +2922.132909 +2922.136272 +2922.138237 +2922.257551 +2922.491550 +2922.673667 +2922.675466 +2922.676997 +2922.678796 +2922.774666 +2923.051189 +2923.052988 +2923.054553 +2923.056384 +2923.247659 +2923.249191 +2923.250956 +2923.385155 +2923.454652 +2923.456550 +2923.458182 +2923.461612 +2923.582324 +2923.754319 +2923.756450 +2923.758382 +2923.854585 +2924.092847 +2924.094645 +2924.096277 +2924.384422 +2924.389550 +2924.461178 +2924.462910 +2924.464475 +2924.466206 +2924.470302 +2924.642230 +2924.644062 +2924.645693 +2924.662543 +2924.829310 +2924.837768 +2925.034671 +2925.036569 +2925.262309 +2925.264740 +2925.266738 +2926.500970 +2927.641694 +2930.145355 +2930.147419 +2930.149251 +2930.284449 +2933.630566 +2933.632664 +2933.634462 +2933.692671 +2946.345106 +2948.571777 +2949.189358 +2949.734912 +2949.806674 +2949.867047 +2950.366647 +2950.470210 +2950.788458 +2951.277202 +2951.487292 +2951.581131 +2951.880032 +2952.660284 +2952.862582 +2952.971872 +2953.067610 +2953.366510 +2953.854322 +2953.963579 +2954.182494 +2954.278964 +2954.382727 +2955.235306 +2958.018520 +2961.826076 +2961.928773 +2962.303465 +2962.311357 +2965.110521 +2965.211054 +2965.357974 +2965.412419 +2965.451347 +2965.488809 +2965.524574 +2965.615716 +2965.658107 +2965.745419 +2965.803694 +2965.813085 +2965.877320 +2965.888343 +2965.931067 +2965.951080 +2966.013085 +2966.017480 +2966.064500 +2966.081183 +2966.104893 +2966.135695 +2966.241423 +2966.242388 +2966.281183 +2966.302129 +2966.313950 +2966.380017 +2966.381782 +2966.475255 +2966.528935 +2966.565265 +2966.594369 +2966.605924 +2966.629701 +2966.639591 +2966.690640 +2966.726171 +2966.730400 +2966.765265 +2966.823373 +2966.857339 +2966.863933 +2966.891372 +2966.936427 +2966.958172 +2966.960503 +2967.025038 +2967.068262 +2967.118245 +2967.146950 +2967.179883 +2967.181648 +2967.205957 +2967.238225 +2967.262467 +2967.354009 +2967.392071 +2967.398831 +2967.420309 +2967.425571 +2967.442920 +2967.476453 +2967.479783 +2967.517179 +2967.569094 +2967.587842 +2967.593636 +2967.619210 +2967.655108 +2967.691105 +2967.698964 +2967.765597 +2967.791171 +2967.826669 +2967.843319 +2967.869160 +2967.882313 +2967.899796 +2967.937092 +2967.971158 +2967.976786 +2968.045284 +2968.057072 +2968.069459 +2968.104724 +2968.180648 +2968.215746 +2968.227634 +2968.249346 +2968.281580 +2968.303692 +2968.316579 +2968.364464 +2968.372889 +2968.395866 +2968.409785 +2968.421174 +2968.495866 +2968.533362 +2968.562965 +2968.585743 +2968.589339 +2968.647048 +2968.661833 +2968.664764 +2968.715579 +2968.737025 +2968.737857 +2968.807521 +2968.819009 +2968.845116 +2968.876352 +2968.918942 +2968.939022 +2968.948413 +2968.981813 +2969.009918 +2969.042485 +2969.073621 +2969.101327 +2969.223105 +2969.231729 +2969.234493 +2969.256138 +2969.315978 +2969.330164 +2969.335525 +2969.369458 +2969.372189 +2969.404190 +2969.444949 +2969.503391 +2969.536291 +2969.551076 +2969.563764 +2969.599328 +2969.600260 +2969.639355 +2969.680813 +2969.685742 +2969.704822 +2969.742751 +2969.751775 +2969.768525 +2969.796031 +2969.804689 +2969.844116 +2969.851143 +2969.867426 +2969.904589 +2969.933061 +2969.964962 +2970.023137 +2970.058735 +2970.078682 +2970.117210 +2970.173220 +2970.178282 +2970.229331 +2970.270956 +2970.284575 +2970.295631 +2970.362198 +2970.400626 +2970.438388 +2970.502258 +2970.536224 +2970.588138 +2970.643916 +2970.678714 +2970.721105 +2970.749743 +2970.783409 +2970.842017 +2970.913979 +2970.927665 +2970.963929 +2971.001225 +2971.003023 +2971.049277 +2971.073752 +2971.136956 +2971.181444 +2971.229996 +2971.279979 +2971.332360 +2971.351607 +2971.374951 +2971.392133 +2971.392666 +2971.420172 +2971.479979 +2971.521171 +2971.572120 +2971.624767 +2971.645014 +2971.726266 +2971.732559 +2971.755869 +2971.858300 +2971.906718 +2971.918806 +2971.984008 +2971.998793 +2972.043914 +2972.131926 +2972.205453 +2972.244880 +2972.274883 +2972.276848 +2972.340451 +2972.357234 +2972.410980 +2972.451273 +2972.482575 +2972.498892 +2972.509282 +2972.564726 +2972.634323 +2972.693164 +2972.758765 +2972.818705 +2972.841982 +2972.884040 +2972.951806 +2972.978512 +2973.037520 +2973.057067 +2973.088102 +2973.125199 +2973.223966 +2973.237087 +2973.271153 +2973.342115 +2973.406018 +2973.486037 +2973.500390 +2973.544213 +2973.572651 +2973.638884 +2973.752537 +2973.857332 +2973.873083 +2973.952704 +2973.955135 +2974.009480 +2974.072584 +2974.117206 +2974.171152 +2974.200689 +2974.240282 +2974.304252 +2974.327628 +2974.372417 +2974.452270 +2974.469386 +2974.472084 +2974.521767 +2974.554901 +2974.593362 +2974.603685 +2974.648674 +2974.669886 +2974.682573 +2974.730125 +2974.758064 +2974.804618 +2974.883605 +2974.949339 +2975.042812 +2975.184837 +2975.225130 +2975.236618 +2975.254001 +2975.281107 +2975.330158 +2975.415173 +2975.423931 +2975.474314 +2975.508180 +2975.527860 +2975.530757 +2975.587401 +2975.653701 +2975.753235 +2975.812942 +2975.844976 +2975.855099 +2975.866088 +2975.887234 +2975.978542 +2976.025629 +2976.115405 +2976.141246 +2976.177643 +2976.205582 +2976.210044 +2976.234786 +2976.259395 +2976.274646 +2976.312641 +2976.315372 +2976.351269 +2976.397157 +2976.457929 +2976.489964 +2976.520500 +2976.603217 +2976.635551 +2976.699920 +2976.744642 +2976.754333 +2976.788232 +2976.811142 +2976.844975 +2976.884203 +2976.968551 +2977.025761 +2977.137649 +2977.198222 +2977.211209 +2977.247073 +2977.283370 +2977.296024 +2977.311974 +2977.376476 +2977.432987 +2977.446739 +2977.456963 +2977.498221 +2977.547106 +2977.614605 +2977.640113 +2977.699287 +2977.791228 +2977.799986 +2977.847139 +2977.864088 +2977.882070 +2977.985866 +2977.995091 +2978.013073 +2978.027392 +2978.044208 +2978.045840 +2978.077708 +2978.108377 +2978.130988 +2978.176176 +2978.225793 +2978.296755 +2978.322430 +2978.328856 +2978.529988 +2978.633318 +2978.732253 +2978.757894 +2978.787431 +2978.837281 +2978.872379 +2978.964553 +2979.024127 +2979.052499 +2979.080770 +2979.133418 +2979.201483 +2979.263388 +2979.308609 +2979.367916 +2979.369981 +2979.408076 +2979.469748 +2979.523960 +2979.563953 +2979.584133 +2979.708442 +2979.747836 +2979.796987 +2979.821362 +2979.850533 +2979.886098 +2979.987563 +2979.998119 +2980.076274 +2980.118998 +2980.229521 +2980.278405 +2980.344772 +2980.350966 +2980.401415 +2980.442940 +2980.474842 +2980.524892 +2980.545804 +2980.623793 +2980.696320 +2980.727023 +2980.740143 +2980.746103 +2980.804811 +2980.870312 +2980.897752 +2980.944605 +2981.029786 +2981.134282 +2981.139177 +2981.192723 +2981.220928 +2981.266516 +2981.298717 +2981.417964 +2981.478237 +2981.535513 +2981.601514 +2981.637178 +2981.718697 +2981.742506 +2981.764251 +2981.881667 +2981.911437 +2981.946502 +2982.044337 +2982.126488 +2982.207973 +2982.248866 +2982.282799 +2982.341973 +2982.464284 +2982.575272 +2982.681533 +2982.721593 +2982.768879 +2982.828053 +2983.084762 +2983.085761 +2983.171109 +2983.191489 +2983.192088 +2983.207972 +2983.232148 +2983.283930 +2983.327519 +2983.400580 +2983.534079 +2983.705974 +2983.973206 +2984.216929 +2984.554291 +2984.774904 +2984.866812 +2984.962649 +2984.969642 +2985.049895 +2985.088324 +2985.186192 +2985.285693 +2985.381863 +2985.491753 +2985.977001 +2986.273937 +2986.375235 +2986.484093 +2986.573204 +2986.690553 +2987.061582 +2987.065245 +2987.376566 +2988.282226 +2989.681393 +2990.692447 +2990.694811 +2990.696943 +2992.588849 +2994.339363 +2995.090545 +2995.093309 +2995.524910 +2998.712186 +3000.134929 +3000.197133 +3000.317879 +3000.386943 +3000.393603 +3000.426370 +3000.480416 +3000.891771 +3000.955207 +3000.957905 +3000.984878 +3000.986243 +3001.012783 +3001.049846 +3001.063532 +3001.104058 +3001.167961 +3001.188008 +3001.265497 +3001.348314 +3001.524371 +3001.605457 +3001.647681 +3001.736059 +3001.756905 +3001.766129 +3001.781813 +3001.879915 +3001.882413 +3001.884644 +3001.940521 +3001.945649 +3002.003591 +3002.011683 +3002.212582 +3002.214613 +3002.359535 +3002.363032 +3002.713947 +3003.398495 +3003.404356 +3009.969784 +3010.964921 +3014.512204 +3019.329481 +3019.333810 +3020.068242 +3020.070340 +3020.071539 +3020.228082 +3020.230213 +3020.232777 +3020.240170 +3020.342867 +3020.658251 +3020.879230 +3025.954650 +3034.651711 +3035.217811 +3035.219908 +3035.299229 +3035.301893 +3035.391337 +3035.393868 +3035.440354 +3035.447847 +3035.451077 +3036.120540 +3036.888771 +3036.891335 +3036.893500 +3037.129031 +3037.131229 +3037.133093 +3037.206287 +3037.304089 +3037.311148 +3037.411515 +3041.799023 +3041.800754 +3041.802286 +3041.867188 +3041.868919 +3041.870518 +3041.872483 +3041.944810 +3041.946608 +3042.071517 +3042.073448 +3042.075113 +3042.076945 +3042.139049 +3042.833088 +3042.835285 +3042.837150 +3042.915472 +3042.918369 +3043.001319 +3043.003717 +3043.786766 +3049.980267 +3049.982098 +3049.982931 +3050.076071 +3055.139502 +3055.141400 +3055.143165 +3055.243099 +3055.454887 +3055.974833 +3056.074500 +3056.164643 +3056.175032 +3056.269771 +3056.369538 +3056.467673 +3056.690317 +3056.767606 +3056.769571 +3056.870669 +3057.183057 +3057.280592 +3057.381058 +3057.476063 +3057.578527 +3059.952951 +3062.397770 +3062.499368 +3063.479454 +3064.069663 +3064.075457 +3064.204728 +3065.191374 +3070.983409 +3070.988171 +3071.016976 +3071.019606 +3071.579413 +3071.589403 +3071.692133 +3071.694397 +3071.778413 +3071.780445 +3071.924900 +3071.926765 +3071.928796 +3071.991733 +3071.993298 +3072.133491 +3072.194697 +3072.199858 +3072.258999 +3072.260731 +3072.262629 +3072.336754 +3073.433323 +3073.435321 +3073.437086 +3073.439018 +3073.570320 +3073.695827 +3073.843979 +3074.174015 +3078.965652 +3078.967550 +3078.969382 +3079.047271 +3079.049368 +3079.051600 +3079.131020 +3079.228456 +3079.230654 +3079.296887 +3079.298652 +3079.300317 +3079.302049 +3079.371779 +3079.372378 +3079.373777 +3079.374776 +3079.376108 +3079.443474 +3079.966717 +3079.969015 +3079.971013 +3080.046637 +3080.048269 +3080.050333 +3080.126490 +3080.192358 +3080.194289 +3080.266717 +3080.268781 +3080.270679 +3080.376973 +3080.382234 +3081.961087 +3082.017997 +3082.022692 +3089.976730 +3089.979461 +3090.142131 +3090.143929 +3090.145594 +3090.245195 +3090.246826 +3090.248358 +3090.317289 +3090.319454 +3090.447392 +3090.449191 +3090.450955 +3090.540000 +3090.885754 +3091.076096 +3091.080692 +3091.161478 +3091.166239 +3091.168271 +3091.170469 +3091.257115 +3091.258980 +3091.260745 +3091.263309 +3091.352220 +3091.354717 +3091.358447 +3091.472766 +3091.475630 +3091.576262 +3091.685786 +3091.770868 +3091.872433 +3091.874397 +3091.960711 +3092.161310 +3092.169136 +3092.268436 +3092.472732 +3092.475928 +3092.569402 +3092.575196 +3092.672798 +3092.678526 +3092.789348 +3092.881522 +3092.887949 +3092.987017 +3093.192078 +3093.283820 +3094.962373 +3100.066264 +3100.068428 +3100.073090 +3100.075022 +3100.077120 +3100.384745 +3101.583145 +3101.852975 +3102.239688 +3102.611183 +3102.755239 +3103.197763 +3103.544682 +3104.064262 +3104.177548 +3104.719939 +3104.804488 +3105.208250 +3105.209815 +3105.211513 +3105.266858 +3105.268690 +3105.433724 +3105.436921 +3105.438753 +3105.485506 +3105.649375 +3105.651673 +3105.653704 +3107.691864 +3108.806082 +3108.807714 +3108.809678 +3108.905782 +3108.910511 +3108.981073 +3109.048706 +3109.118602 +3109.122632 +3109.194260 +3109.195426 +3109.264690 +3109.339548 +3110.782737 +3110.785134 +3110.788697 +3110.909643 +3110.911907 +3110.913805 +3111.017535 +3111.020399 +3111.035484 +3111.102017 +3112.327990 +3112.329821 +3112.331453 +3112.332752 +3112.333451 +3112.377773 +3112.486831 +3112.489495 +3112.557260 +3112.696921 +3112.767483 +3114.994954 +3115.069845 +3115.071677 +3115.194554 +3115.196419 +3115.197850 +3115.198250 +3115.200914 +3115.202746 +3115.330751 +3115.332682 +3115.391623 +3115.519395 +3115.521760 +3115.523758 +3115.526721 +3115.527254 +3115.978203 +3115.985329 +3115.987593 +3115.989391 +3116.082365 +3116.160687 +3116.166781 +3116.169378 +3116.983796 +3117.183696 +3117.983029 +3119.007537 +3119.996713 +3121.679462 +3125.067438 +3125.070668 +3125.072699 +3125.163541 +3125.166772 +3125.350421 +3125.351953 +3125.353385 +3125.445326 +3125.447424 +3125.501869 +3125.503967 +3125.505799 +3125.977027 +3125.981656 +3125.987050 +3126.072332 +3126.073897 +3126.076461 +3126.167869 +3126.169135 +3126.171766 +3126.174030 +3126.259811 +3126.275428 +3126.279058 +3126.364006 +3126.366737 +3126.369068 +3126.450820 +3126.453117 +3126.454915 +3126.561942 +3126.564073 +3126.566038 +3126.571765 +3126.669601 +3126.672065 +3126.674129 +3126.769134 +3126.773430 +3126.779091 +3126.866337 +3126.978225 +3127.080523 +3127.185118 +3127.281621 +3127.383919 +3127.387249 +3127.463672 +3127.468634 +3127.470532 +3127.472697 +3127.563539 +3127.564305 +3127.565537 +3127.567269 +3127.661641 +3127.663639 +3127.767368 +3127.769699 +3127.771731 +3127.877025 +3127.879290 +3127.881188 +3127.887548 +3127.971397 +3127.976959 +3127.979290 +3128.068534 +3128.069133 +3128.073129 +3128.165037 +3128.171164 +3128.173495 +3128.251450 +3128.260009 +3128.262240 +3128.264637 +3128.364837 +3128.469799 +3129.482851 +3129.579588 +3129.694006 +3129.781419 +3129.879721 +3129.984849 +3130.336663 +3135.079649 +3135.081780 +3135.190837 +3135.192569 +3135.246981 +3135.344017 +3136.349844 +3137.369690 +3137.371421 +3137.371921 +3137.373786 +3137.574185 +3138.230561 +3138.233192 +3138.888869 +3139.468089 +3139.807416 +3140.163427 +3140.231159 +3140.375448 +3140.376946 +3140.377179 +3140.378744 +3140.583506 +3140.585471 +3140.587502 +3140.684438 +3140.759696 +3140.892330 +3140.897625 +3143.105681 +3143.253100 +3143.254732 +3143.257796 +3143.259794 +3143.338681 +3143.342078 +3143.406613 +3143.408278 +3143.410510 +3143.482504 +3143.549337 +3143.551102 +3143.612008 +3143.613606 +3143.615138 +3143.616703 +3143.618401 +3143.690662 +3143.758994 +3143.760659 +3143.762324 +3143.764156 +3143.830156 +3143.831721 +3143.832287 +3143.836616 +3145.129056 +3145.131187 +3145.212339 +3145.393391 +3145.395389 +3145.397221 +3145.468749 +3145.471213 +3145.564187 +3145.566285 +3145.568150 +3145.649868 +3145.652066 +3145.653931 +3145.734450 +3145.780171 +3145.782635 +3145.972778 +3146.515901 +3146.640010 +3150.054958 +3150.057056 +3150.059021 +3150.065348 +3150.214499 +3150.216164 +3150.217729 +3150.219594 +3150.223357 +3150.353160 +3150.355025 +3150.424355 +3150.428818 +3150.979433 +3150.981131 +3150.982930 +3151.048963 +3151.050628 +3151.052127 +3151.053859 +3151.127785 +3151.130782 +3151.200978 +3151.203575 +3151.268977 +3151.327684 +3151.407105 +3151.410069 +3151.412266 +3151.976768 +3151.979632 +3151.998979 +3152.132479 +3152.134677 +3152.136974 +3152.138673 +3152.140637 +3152.142436 +3152.212998 +3152.213664 +3152.215862 +3152.304107 +3152.991952 +3152.994250 +3153.068309 +3153.069841 +3153.139537 +3153.141469 +3153.143400 +3153.279031 +3153.981994 +3153.986989 +3153.989320 +3154.071871 +3154.074069 +3154.076100 +3154.078098 +3154.080129 +3154.158351 +3154.160382 +3154.162846 +3154.239270 +3154.241534 +3154.243432 +3154.323352 +3154.326349 +3154.974534 +3154.988087 +3154.990651 +3154.992583 +3155.148327 +3155.227547 +3155.229312 +3155.230911 +3155.232109 +3155.372935 +3155.447394 +3155.450291 +3157.457449 +3157.459380 +3157.461378 +3157.542930 +3157.543462 +3157.544695 +3157.546260 +3157.620652 +3157.622750 +3157.697841 +3157.768304 +3157.770269 +3157.772167 +3157.774398 +3157.844794 +3157.847658 +3157.849723 +3157.927878 +3157.930275 +3157.932240 +3158.423914 +3158.614990 +3158.891014 +3159.083954 +3159.984219 +3160.069467 +3160.071465 +3160.073330 +3160.086151 +3160.147023 +3160.148688 +3160.151851 +3160.237666 +3160.240030 +3160.457046 +3160.459577 +3161.078158 +3161.374727 +3162.180754 +3165.460637 +3165.463668 +3165.543188 +3165.547384 +3165.619778 +3165.627604 +3166.033064 +3166.530200 +3166.717279 +3170.061199 +3170.189171 +3172.694996 +3174.089333 +3176.459661 +3176.571116 +3176.841145 +3176.887333 +3176.928924 +3177.048771 +3177.099620 +3177.939779 +3177.941511 +3177.943142 +3178.020032 +3178.022230 +3178.084834 +3178.087165 +3178.144507 +3178.146239 +3178.148071 +3178.203215 +3178.205546 +3178.263855 +3178.265686 +3178.325659 +3185.974570 +3196.054912 +3196.266534 +3196.268998 +3196.465668 +3196.963403 +3206.581775 +3206.688502 +3206.719704 +3206.873450 +3206.976014 +3206.980476 +3207.000722 +3207.022434 +3207.077079 +3207.116973 +3207.142614 +3207.167689 +3207.195927 +3207.226063 +3207.275114 +3207.312144 +3207.326563 +3207.377012 +3207.418904 +3207.431425 +3207.439949 +3207.541081 +3207.604851 +3207.704118 +3207.767521 +3207.861994 +3207.912376 +3208.064857 +3208.130258 +3208.239449 +3208.446875 +3208.715339 +3208.934953 +3209.297557 +3209.541279 +3209.688132 +3209.853001 +3210.241612 +3210.244176 +3210.458661 +3210.464921 +3210.538248 +3210.662690 +3210.728125 +3210.744175 +3210.801318 +3210.836083 +3210.923229 +3210.949436 +3210.967385 +3211.004415 +3211.006812 +3211.118700 +3211.125693 +3211.149270 +3211.173479 +3211.192959 +3211.219166 +3211.238114 +3211.261258 +3211.270781 +3211.288164 +3211.330488 +3211.346839 +3211.363389 +3211.396955 +3211.428190 +3211.489762 +3211.503115 +3211.514471 +3211.547837 +3211.617634 +3211.653432 +3211.667884 +3211.711207 +3211.724194 +3211.734184 +3211.784267 +3211.800118 +3211.818367 +3211.838280 +3211.846139 +3211.867018 +3211.909009 +3211.937414 +3211.941910 +3211.975010 +3212.010408 +3212.034250 +3212.071780 +3212.072212 +3212.094357 +3212.174477 +3212.274976 +3212.277141 +3212.279239 +3212.280204 +3212.281336 +3212.282469 +3212.284733 +3212.414037 +3212.453497 +3212.505778 +3212.558126 +3212.594223 +3212.605678 +3212.638812 +3212.653031 +3212.684266 +3212.710607 +3212.806810 +3212.867217 +3212.922495 +3212.924493 +3212.948236 +3213.072012 +3213.199617 +3213.346903 +3213.393790 +3213.631485 +3213.714469 +3213.759623 +3213.773043 +3213.793856 +3213.808208 +3214.102780 +3214.171078 +3214.342873 +3214.584431 +3214.713702 +3214.874274 +3215.598782 +3215.638942 +3215.888026 +3215.942572 +3216.031649 +3216.138709 +3216.147766 +3216.271009 +3216.284363 +3216.325688 +3216.365548 +3216.468145 +3216.485695 +3216.532881 +3216.575471 +3216.627286 +3216.638109 +3216.769510 +3216.774472 +3216.811668 +3216.881199 +3216.982830 +3217.030582 +3217.165314 +3217.372007 +3217.429383 +3217.485361 +3217.601245 +3217.850062 +3217.968477 +3218.009602 +3218.058487 +3218.141038 +3218.571174 +3219.090354 +3219.735974 +3219.968442 +3219.976633 +3219.978964 +3220.089021 +3220.095148 +3220.097413 +3220.174602 +3220.223686 +3220.277399 +3220.513729 +3220.957785 +3221.016193 +3221.121288 +3221.210998 +3221.262147 +3221.289553 +3221.331044 +3221.966708 +3221.979229 +3221.981826 +3221.984224 +3222.074866 +3222.354553 +3222.411496 +3222.606801 +3222.685555 +3222.755019 +3222.758282 +3222.806101 +3222.837004 +3222.873167 +3222.984256 +3223.137936 +3223.173833 +3223.474732 +3223.957915 +3224.320885 +3225.048423 +3225.220884 +3225.354950 +3225.406864 +3225.614390 +3225.655149 +3225.680357 +3225.704700 +3225.746658 +3225.790214 +3225.901902 +3225.944659 +3225.954550 +3225.970900 +3226.031040 +3226.093044 +3226.134136 +3226.216088 +3226.233970 +3226.387350 +3226.743060 +3226.824878 +3226.925211 +3226.961075 +3227.190079 +3227.335434 +3227.499270 +3227.514621 +3227.620815 +3227.650652 +3227.708294 +3227.828274 +3228.059209 +3228.117584 +3228.581387 +3228.737930 +3228.795339 +3228.813987 +3228.872962 +3228.893408 +3228.929272 +3229.043824 +3229.111290 +3229.152515 +3229.208859 +3229.249418 +3229.260973 +3229.282052 +3229.335965 +3229.530836 +3229.620447 +3229.668832 +3229.708658 +3229.975924 +3229.979953 +3230.186746 +3230.269663 +3230.564335 +3231.171527 +3231.546352 +3231.549183 +3233.273956 +3234.075520 +3234.086310 +3240.184172 +3242.120168 +3242.136884 +3242.315972 +3242.496191 +3244.261191 +3245.273145 +3245.275709 +3245.924726 +3246.044206 +3246.473543 +3246.919730 +3246.922993 +3246.991658 +3246.993290 +3246.994855 +3246.996620 +3246.999384 +3247.067715 +3247.069447 +3247.124725 +3247.126490 +3247.130186 +3247.187928 +3247.189593 +3247.191591 +3247.252897 +3247.254661 +3247.256593 +3247.325324 +3248.241274 +3248.592256 +3253.945497 +3254.980195 +3255.036305 +3255.038337 +3255.040768 +3255.117457 +3255.119455 +3255.121354 +3255.205636 +3255.971769 +3255.974533 +3256.968937 +3257.966372 +3259.985784 +3259.988415 +3263.427839 +3264.970694 +3265.067098 +3265.069329 +3265.071127 +3265.163501 +3265.165932 +3265.167997 +3265.264767 +3265.267730 +3265.685079 +3265.775389 +3265.871260 +3265.975056 +3265.982448 +3266.074756 +3266.160970 +3266.294436 +3266.473856 +3266.568428 +3266.684212 +3266.777619 +3266.872424 +3266.967296 +3267.071824 +3267.173756 +3267.295434 +3267.369660 +3267.485344 +3267.675054 +3267.876486 +3268.083911 +3268.485443 +3268.568893 +3268.668260 +3271.211581 +3274.623965 +3274.628161 +3275.125296 +3277.246207 +3277.369017 +3277.728357 +3278.040778 +3278.217634 +3278.636448 +3279.146504 +3279.326191 +3279.328922 +3279.468116 +3279.784233 +3280.228222 +3280.229887 +3280.231518 +3280.235348 +3280.357093 +3280.359157 +3280.360656 +3280.361422 +3280.372710 +3280.474775 +3280.538644 +3280.544338 +3281.525656 +3282.924056 +3282.925755 +3282.927619 +3282.929584 +3283.141405 +3283.147300 +3283.298049 +3283.299847 +3283.303110 +3283.488924 +3283.725221 +3284.345500 +3284.347731 +3284.426319 +3284.429083 +3284.523688 +3286.347763 +3286.383960 +3290.056117 +3290.060613 +3290.062411 +3290.066240 +3290.068904 +3290.138401 +3290.188684 +3290.190516 +3290.191948 +3290.193546 +3290.194312 +3290.195245 +3290.196776 +3290.313093 +3290.381292 +3290.446726 +3290.449324 +3290.979127 +3290.982756 +3290.983955 +3290.986386 +3291.062710 +3291.064708 +3291.066772 +3291.130275 +3291.132140 +3291.133938 +3291.136069 +3291.140565 +3291.142863 +3291.145127 +3291.225580 +3291.231174 +3291.775862 +3291.780924 +3292.033671 +3292.035769 +3292.037700 +3292.978392 +3294.007329 +3294.539196 +3294.997471 +3294.998403 +3295.000002 +3295.082319 +3295.222712 +3295.224577 +3295.228007 +3295.229772 +3295.295239 +3295.297903 +3295.300634 +3295.372828 +3296.671995 +3296.674226 +3296.676057 +3296.681385 +3296.685348 +3296.689111 +3296.784415 +3296.786347 +3296.788212 +3296.867865 +3296.955877 +3297.023609 +3297.039693 +3297.112420 +3297.114652 +3297.116650 +3297.204328 +3298.678753 +3298.679752 +3298.681949 +3298.682682 +3298.683614 +3298.684513 +3298.805259 +3298.806025 +3298.806891 +3298.870494 +3298.873757 +3298.875522 +3298.884746 +3298.944820 +3298.946518 +3298.948116 +3299.085612 +3299.087643 +3299.089342 +3299.091373 +3299.179651 +3299.990473 +3300.065797 +3300.068928 +3300.070126 +3300.070659 +3300.073590 +3300.153277 +3300.156107 +3300.157572 +3300.235561 +3300.237259 +3300.238824 +3300.240622 +3300.247382 +3300.343053 +3300.348714 +3300.405657 +3300.454408 +3300.872923 +3300.876220 +3300.878717 +3300.965330 +3301.084078 +3301.087075 +3301.089673 +3301.177085 +3301.180681 +3301.183978 +3301.265730 +3301.269659 +3301.272090 +3301.272889 +3301.275886 +3301.446715 +3301.454441 +3301.458537 +3301.544650 +3301.546349 +3301.548547 +3301.657304 +3301.875419 +3301.953042 +3301.954973 +3301.958070 +3302.064130 +3302.068992 +3302.178949 +3302.181946 +3302.183944 +3302.271856 +3302.273854 +3302.360467 +3302.363697 +3302.365895 +3302.457204 +3302.459435 +3302.463397 +3302.558602 +3302.559568 +3302.561732 +3302.563897 +3302.566294 +3302.660101 +3302.662665 +3302.664829 +3302.779148 +3303.071222 +3303.169657 +3303.277116 +3303.571455 +3304.779779 +3304.959898 +3306.396327 +3307.165724 +3307.170286 +3308.802052 +3310.035451 +3310.037649 +3310.221598 +3310.324895 +3310.893759 +3311.319299 +3311.669515 +3311.708543 +3311.746938 +3311.868749 +3312.013538 +3312.029555 +3312.119798 +3312.344873 +3312.389062 +3312.444040 +3312.541576 +3312.588029 +3312.764020 +3312.872145 +3313.107176 +3313.204512 +3313.335781 +3313.473776 +3313.533450 +3313.670779 +3313.756426 +3313.796620 +3313.920196 +3313.951198 +3314.021528 +3314.075374 +3314.091857 +3314.153695 +3314.190692 +3314.229753 +3314.300548 +3314.320295 +3314.340642 +3314.385697 +3314.427355 +3314.494787 +3314.526988 +3314.550631 +3314.634514 +3314.663152 +3314.703445 +3314.749266 +3314.827488 +3315.193555 +3315.195319 +3315.197018 +3315.198949 +3315.462385 +3315.467480 +3315.529219 +3315.530884 +3315.532349 +3315.533980 +3315.727886 +3315.729718 +3315.731449 +3315.738442 +3315.742205 +3315.885562 +3315.888259 +3315.893387 +3318.312033 +3318.499345 +3318.570974 +3318.572705 +3318.574537 +3318.641370 +3318.715496 +3318.718792 +3318.720591 +3318.788722 +3318.793351 +3318.861150 +3318.928549 +3318.932245 +3318.940637 +3319.005239 +3319.075968 +3320.799143 +3320.866942 +3320.868607 +3320.870072 +3320.871737 +3320.873869 +3320.958717 +3321.027248 +3321.028880 +3321.030445 +3321.032310 +3321.036173 +3321.038437 +3321.178031 +3321.179862 +3321.181494 +3321.182426 +3321.329679 +3321.331744 +3321.332243 +3321.333908 +3321.335506 +3321.337171 +3321.412596 +3321.414328 +3321.417824 +3321.420455 +3323.305967 +3323.307999 +3323.334572 +3323.336437 +3323.338168 +3323.497709 +3323.641032 +3323.654985 +3323.794911 +3323.796743 +3323.798408 +3323.804035 +3323.805934 +3323.946892 +3323.948391 +3323.949756 +3324.032207 +3324.035637 +3324.037935 +3324.195943 +3324.197675 +3324.200405 +3324.272300 +3324.277295 +3324.284954 +3324.287585 +3324.401338 +3324.411461 +3325.009962 +3325.488016 +3325.582655 +3325.584720 +3325.642229 +3325.644626 +3325.646658 +3325.818852 +3325.820617 +3325.822249 +3325.824113 +3325.896208 +3325.971433 +3325.975462 +3326.045192 +3326.048356 +3326.050021 +3326.123247 +3326.125345 +3326.208628 +3326.212092 +3326.213923 +3326.998837 +3327.001335 +3327.002600 +3327.164005 +3327.243459 +3327.326976 +3327.330073 +3327.331738 +3327.405597 +3327.409060 +3327.411058 +3327.422480 +3327.489346 +3327.555713 +3327.557711 +3327.559576 +3327.635400 +3327.638431 +3327.639929 +3327.714221 +3327.717818 +3327.722280 +3327.983652 +3329.001866 +3329.004796 +3329.162139 +3329.165602 +3329.167533 +3329.172628 +3329.174326 +3329.338362 +3329.465801 +3329.471995 +3329.472761 +3329.546021 +3330.005195 +3330.008691 +3330.023776 +3332.569794 +3332.982881 +3332.987776 +3332.989741 +3333.057140 +3333.058771 +3333.060270 +3333.139990 +3333.204492 +3333.206823 +3333.359104 +3333.360869 +3333.364499 +3333.365131 +3333.366697 +3333.443520 +3333.445618 +3333.517912 +3333.608621 +3333.675621 +3333.748914 +3333.750845 +3333.752610 +3333.754675 +3334.982413 +3334.984311 +3334.985909 +3334.987741 +3334.990072 +3335.169259 +3335.170891 +3335.172356 +3335.173954 +3335.175852 +3335.181480 +3335.183112 +3335.191969 +3335.338789 +3335.340454 +3335.341953 +3335.343584 +3335.345582 +3335.348779 +3335.350378 +3335.401227 +3335.403491 +3335.470591 +3335.554407 +3335.562465 +3335.564430 +3335.566261 +3335.568759 +3335.570690 +3335.572522 +3335.678383 +3335.745982 +3335.748013 +3335.883477 +3335.968625 +3335.969791 +3335.970324 +3335.971689 +3336.054040 +3336.055905 +3336.057636 +3336.059368 +3336.158968 +3336.267326 +3336.778548 +3336.780513 +3336.782344 +3336.863130 +3336.951974 +3336.953806 +3336.955471 +3336.958568 +3337.069157 +3337.075084 +3337.169024 +3337.176150 +3337.263296 +3337.265760 +3337.351008 +3337.357668 +3337.502290 +3337.504288 +3337.506253 +3337.508317 +3337.991234 +3338.090368 +3338.199559 +3338.279545 +3338.372586 +3338.543248 +3338.546278 +3338.773251 +3338.893198 +3339.194296 +3339.290167 +3339.294696 +3339.489035 +3339.568455 +3339.573750 +3339.576247 +3339.578312 +3339.672784 +3339.674616 +3339.767989 +3339.770087 +3339.770620 +3339.771918 +3339.774316 +3339.869188 +3339.871352 +3339.873317 +3339.966190 +3339.974049 +3340.940482 +3341.075547 +3341.079509 +3341.085970 +3341.208014 +3342.483504 +3342.485469 +3342.487267 +3342.489931 +3342.677044 +3342.679275 +3342.681139 +3342.801952 +3342.805881 +3343.301951 +3343.365221 +3343.821764 +3343.913905 +3343.915570 +3343.917069 +3343.918734 +3343.921531 +3344.001984 +3344.007911 +3344.083402 +3344.158694 +3344.161757 +3344.226592 +3344.228524 +3344.230555 +3344.356030 +3344.376010 +3345.048004 +3345.050035 +3345.051766 +3345.175543 +3345.520597 +3345.617633 +3345.652965 +3345.717134 +3345.934017 +3345.938446 +3346.052931 +3346.090227 +3346.130287 +3346.379371 +3346.896886 +3346.929054 +3347.011671 +3347.185963 +3347.245337 +3347.297585 +3347.346270 +3347.390059 +3347.434615 +3347.538144 +3347.571311 +3347.603779 +3347.653362 +3347.777471 +3347.825090 +3347.921794 +3347.962686 +3348.009706 +3348.093155 +3348.169612 +3348.171477 +3348.174940 +3348.320994 +3348.362452 +3348.462852 +3348.479635 +3348.506375 +3348.531017 +3348.550464 +3348.576305 +3348.617630 +3348.642139 +3348.693854 +3348.737477 +3348.750797 +3348.767847 +3348.791756 +3348.817464 +3348.838876 +3348.858856 +3348.912069 +3348.944703 +3348.966248 +3348.988326 +3349.021759 +3349.059954 +3349.099248 +3349.120161 +3349.179535 +3349.216165 +3349.242472 +3349.272641 +3349.337044 +3349.361153 +3349.380833 +3349.405209 +3349.437210 +3349.457923 +3349.498848 +3349.540007 +3349.568612 +3349.585994 +3349.615731 +3349.639208 +3349.662318 +3349.684929 +3349.759787 +3349.781832 +3349.798215 +3349.817196 +3350.271675 +3350.379966 +3350.381365 +3350.382997 +3350.384861 +3350.460619 +3350.465281 +3350.595084 +3350.596783 +3350.598348 +3350.730116 +3350.735977 +3350.930948 +3350.932580 +3350.934078 +3350.935643 +3350.937541 +3351.152460 +3351.156389 +3351.295483 +3351.297115 +3351.298513 +3351.300079 +3351.302043 +3351.490754 +3351.492586 +3351.494284 +3351.496282 +3351.669276 +3351.672772 +3351.747198 +3351.750727 +3351.752592 +3351.762949 +3351.941037 +3351.944533 +3351.946665 +3351.958087 +3351.963048 +3352.124154 +3352.126018 +3352.127683 +3352.130148 +3352.133245 +3352.307970 +3352.309934 +3352.311832 +3352.317493 +3352.320757 +3352.324586 +3352.507403 +3352.508835 +3352.509634 +3352.511866 +3352.837340 +3352.839205 +3352.840803 +3352.846131 +3352.884193 +3352.886391 +3352.888655 +3353.211965 +3353.214063 +3353.215961 +3353.320656 +3353.322521 +3353.324219 +3353.326483 +3353.540503 +3353.543500 +3353.620423 +3353.915061 +3353.967175 +3353.968807 +3353.970272 +3353.971871 +3353.974102 +3354.157418 +3354.273469 +3354.275034 +3354.276899 +3354.281128 +3354.636605 +3354.638270 +3354.639736 +3354.641334 +3354.643199 +3354.655753 +3354.658750 +3354.972835 +3354.974500 +3354.977597 +3354.979529 +3354.982959 +3354.987787 +3355.188486 +3355.190151 +3355.191650 +3355.193281 +3355.196378 +3355.310431 +3355.314960 +3355.449092 +3355.450990 +3355.452788 +3355.544064 +3355.547360 +3355.548992 +3355.838036 +3355.839734 +3355.841233 +3355.842964 +3355.845295 +3355.912328 +3355.920720 +3356.122951 +3356.192981 +3356.194712 +3356.196211 +3356.197876 +3356.200140 +3356.321918 +3356.323883 +3356.571069 +3356.574299 +3356.577729 +3356.579860 +3356.581592 +3356.583024 +3356.584789 +3356.751089 +3356.752754 +3356.936170 +3356.937835 +3356.939267 +3356.940865 +3356.943130 +3357.190649 +3357.285754 +3357.287419 +3357.288850 +3357.290449 +3357.292513 +3357.492780 +3357.494411 +3357.499140 +3357.632307 +3357.634005 +3357.635537 +3357.637335 +3357.639799 +3357.961078 +3357.975929 +3357.977561 +3357.979026 +3357.980625 +3357.982589 +3358.244128 +3358.351021 +3358.352686 +3358.354117 +3358.355782 +3358.357681 +3358.740797 +3358.743861 +3358.748223 +3358.749888 +3358.750521 +3358.751853 +3359.028842 +3359.030640 +3359.032139 +3359.033937 +3359.050321 +3359.307663 +3359.309395 +3359.310893 +3359.312558 +3359.314922 +3359.329508 +3359.335801 +3359.338033 +3359.721815 +3359.723513 +3359.726610 +3359.728542 +3359.835435 +3359.838865 +3359.840629 +3360.025678 +3360.028874 +3360.030573 +3360.145990 +3360.502800 +3360.506063 +3360.710625 +3360.712390 +3360.713889 +3360.715887 +3360.778624 +3361.012024 +3361.013855 +3361.053349 +3361.055114 +3361.056712 +3361.058544 +3361.430738 +3361.435999 +3361.446189 +3361.448020 +3361.449586 +3361.451617 +3361.790544 +3361.792342 +3361.793808 +3361.795506 +3361.797870 +3361.993841 +3361.998503 +3362.000368 +3362.002632 +3362.101200 +3362.104363 +3362.105995 +3362.107960 +3362.238063 +3362.516617 +3362.518316 +3362.519748 +3362.521413 +3362.523511 +3362.543790 +3362.546887 +3362.550384 +3362.755045 +3362.756777 +3362.758309 +3362.760074 +3362.762238 +3362.867932 +3362.967067 +3362.969031 +3362.970696 +3362.973061 +3363.154113 +3363.159973 +3363.300400 +3363.303630 +3363.305361 +3363.308824 +3363.404762 +3363.409324 +3363.679187 +3363.680952 +3363.682417 +3363.686213 +3364.049949 +3364.051681 +3364.053113 +3364.056976 +3364.269396 +3364.275823 +3364.311388 +3364.313053 +3364.314551 +3364.316216 +3364.318580 +3364.659739 +3364.661404 +3364.662836 +3364.664401 +3364.666366 +3365.016948 +3365.022343 +3365.079685 +3365.081383 +3365.082815 +3365.084447 +3365.086412 +3365.346618 +3365.348183 +3365.350214 +3365.506957 +3365.652379 +3365.654044 +3365.655542 +3365.657140 +3365.659105 +3365.706458 +3365.916148 +3365.917879 +3365.919278 +3365.920910 +3365.922941 +3366.191972 +3366.193737 +3366.195302 +3366.197067 +3366.199398 +3366.344652 +3366.530333 +3366.532065 +3366.533563 +3366.535295 +3366.537759 +3366.675355 +3366.678651 +3366.815215 +3366.817013 +3366.818611 +3366.820509 +3366.822874 +3367.187875 +3367.189606 +3367.191138 +3367.192770 +3367.194901 +3367.330932 +3367.332397 +3367.339456 +3367.347482 +3367.592403 +3367.594068 +3367.595500 +3367.597099 +3367.599330 +3367.904058 +3367.905723 +3367.907122 +3367.908720 +3367.910618 +3368.142919 +3368.146315 +3368.281280 +3368.282979 +3368.284444 +3368.286076 +3368.288040 +3368.566595 +3368.569392 +3368.571090 +3368.640221 +3368.641653 +3368.643285 +3368.805722 +3368.807853 +3368.810151 +3368.864097 +3368.868826 +3368.870524 +3368.872522 +3369.286174 +3369.289471 +3369.289971 +3369.291269 +3369.292834 +3369.294599 +3369.597063 +3369.600193 +3369.601825 +3369.606088 +3369.902990 +3369.904722 +3369.906087 +3369.907686 +3369.909850 +3370.105821 +3370.113713 +3370.305521 +3370.307252 +3370.308718 +3370.310449 +3370.313080 +3370.406853 +3370.408384 +3370.501325 +3370.502823 +3370.616210 +3370.701058 +3370.702856 +3370.901757 +3370.903555 +3370.906985 +3370.911214 +3370.915943 +3371.013645 +3371.118340 +3371.214244 +3371.216342 +3371.218374 +3371.308350 +3371.311547 +3371.505753 +3371.507551 +3371.509116 +3371.511081 +3371.515010 +3371.518240 +3371.519839 +3371.522103 +3371.781643 +3371.783641 +3371.785406 +3371.806618 +3372.010914 +3372.013045 +3372.118106 +3372.119671 +3372.198259 +3372.200124 +3372.202722 +3372.203621 +3372.307450 +3372.310547 +3372.313744 +3372.412512 +3372.414543 +3372.416474 +3372.513844 +3372.515509 +3372.616674 +3372.618705 +3372.620803 +3372.698159 +3372.805585 +3372.891565 +3372.893464 +3372.897360 +3373.070919 +3373.072917 +3373.074749 +3373.265025 +3373.266856 +3373.268455 +3373.270353 +3373.304319 +3373.468788 +3373.470819 +3373.472750 +3373.818338 +3373.820169 +3373.821734 +3373.823566 +3374.102820 +3374.104518 +3374.106016 +3374.107748 +3374.113509 +3374.405050 +3374.505117 +3374.584604 +3374.586502 +3374.588234 +3374.717238 +3374.804884 +3374.906981 +3374.908746 +3375.158263 +3375.160428 +3375.186601 +3375.497823 +3375.499621 +3375.501187 +3375.503085 +3375.662592 +3375.835652 +3375.837417 +3375.838915 +3375.840713 +3375.843610 +3376.127560 +3376.129391 +3376.130989 +3376.132754 +3376.251702 +3376.258162 +3376.557396 +3376.559227 +3376.560759 +3376.562591 +3376.573613 +3376.584502 +3376.847839 +3376.850869 +3376.852367 +3377.028258 +3377.030023 +3377.031455 +3377.033120 +3377.035184 +3377.233819 +3377.240113 +3377.303183 +3377.305048 +3377.306613 +3377.308544 +3377.607012 +3377.607678 +3377.609376 +3377.614171 +3377.987897 +3377.990162 +3377.994824 +3377.996689 +3378.003349 +3378.157727 +3378.159692 +3378.163588 +3378.237880 +3378.246205 +3378.447504 +3378.469515 +3378.735283 +3378.736881 +3378.738812 +3378.876275 +3378.880704 +3379.072512 +3379.074243 +3379.075675 +3379.077274 +3379.079272 +3379.198785 +3379.307976 +3379.309941 +3379.311572 +3379.313637 +3379.508742 +3379.673244 +3379.674975 +3379.676440 +3379.678139 +3379.680370 +3379.878705 +3380.012604 +3380.014336 +3380.017499 +3380.019497 +3380.082667 +3380.572677 +3381.065017 +3381.070079 +3381.350898 +3381.353295 +3381.400015 +3381.553695 +3381.555992 +3381.557857 +3381.718596 +3381.776605 +3381.900015 +3381.902113 +3381.906775 +3382.080567 +3382.082299 +3382.083797 +3382.085629 +3382.088692 +3382.155126 +3382.156724 +3382.232215 +3382.330817 +3382.549764 +3382.553361 +3382.808672 +3382.810403 +3382.811968 +3382.813767 +3382.816963 +3382.833780 +3383.054392 +3383.057623 +3383.066680 +3383.068545 +3383.070243 +3383.192221 +3383.196151 +3383.495784 +3383.677236 +3383.684195 +3383.877302 +3383.879467 +3383.881398 +3383.886160 +3384.169709 +3384.174871 +3384.368410 +3384.370142 +3384.371641 +3384.373306 +3384.377002 +3384.535843 +3384.606838 +3384.608803 +3384.610601 +3384.760618 +3384.766146 +3385.286025 +3385.292818 +3385.294450 +3385.296415 +3385.574037 +3385.575868 +3385.577467 +3385.854823 +3385.857953 +3385.859684 +3385.943967 +3385.945299 +3385.950394 +3386.174203 +3386.175901 +3386.177366 +3386.178965 +3386.181096 +3386.509534 +3386.511166 +3386.511965 +3386.512531 +3386.516094 +3386.516693 +3386.864612 +3386.867609 +3386.869207 +3386.871172 +3386.875135 +3386.939370 +3386.945631 +3387.198944 +3387.200575 +3387.201974 +3387.203473 +3387.205237 +3387.208867 +3387.222720 +3387.224318 +3387.230812 +3387.486656 +3387.488387 +3387.489853 +3387.491518 +3387.493549 +3387.794048 +3387.795680 +3387.797078 +3387.798677 +3387.800641 +3387.991950 +3388.107867 +3388.109532 +3388.110997 +3388.112662 +3388.115293 +3388.474300 +3388.476065 +3388.477531 +3388.479162 +3388.481393 +3388.762778 +3388.792216 +3388.793881 +3388.795312 +3388.796911 +3388.798942 +3389.128812 +3389.130211 +3389.131876 +3389.134040 +3389.137204 +3389.198542 +3389.459947 +3389.461679 +3389.463111 +3389.464709 +3389.821319 +3389.823017 +3389.824449 +3389.826147 +3389.828312 +3390.034472 +3390.043030 +3390.155784 +3390.160513 +3390.162577 +3390.301671 +3390.481991 +3390.483756 +3390.485188 +3390.486886 +3390.488884 +3390.833872 +3390.835603 +3390.837035 +3390.838700 +3390.840665 +3390.872034 +3390.873732 +3390.878927 +3391.187085 +3391.188783 +3391.190248 +3391.191947 +3391.195277 +3391.532439 +3391.534171 +3391.535636 +3391.537368 +3391.539432 +3391.702069 +3391.706998 +3391.962942 +3391.964673 +3391.966138 +3391.967803 +3392.022815 +3392.289648 +3392.458379 +3392.460310 +3392.462009 +3392.630540 +3392.733937 +3392.735768 +3392.737366 +3392.739231 +3393.061142 +3393.062841 +3393.064273 +3393.065938 +3393.068102 +3393.376393 +3393.378092 +3393.379590 +3393.381289 +3393.383220 +3393.484186 +3393.670299 +3393.672164 +3393.673796 +3393.675827 +3394.164172 +3394.165936 +3394.167502 +3394.169333 +3394.445057 +3394.446722 +3394.448154 +3394.449786 +3394.451884 +3394.558310 +3394.564371 +3394.566236 +3394.620648 +3394.622380 +3394.806262 +3394.813522 +3395.009925 +3395.011723 +3395.013255 +3395.015020 +3395.359675 +3395.361373 +3395.362805 +3395.364470 +3395.366668 +3395.639928 +3395.641626 +3395.643058 +3395.644656 +3395.763238 +3396.058609 +3396.061872 +3396.063604 +3396.073527 +3396.075358 +3396.076890 +3396.078755 +3396.384216 +3396.400899 +3396.404429 +3396.735931 +3396.737695 +3396.739194 +3396.740859 +3396.742957 +3397.031635 +3397.033300 +3397.164335 +3397.166100 +3397.167632 +3397.169330 +3397.360172 +3397.473725 +3397.477322 +3397.749483 +3397.751181 +3397.752679 +3397.754311 +3398.102896 +3398.106492 +3398.108690 +3398.152446 +3398.154178 +3398.155709 +3398.157574 +3398.417514 +3398.419345 +3398.504893 +3398.506492 +3398.507957 +3398.509755 +3398.680251 +3398.682049 +3398.683614 +3398.685612 +3398.748616 +3398.911153 +3398.914483 +3398.916315 +3399.095768 +3399.097833 +3399.099731 +3399.112385 +3399.274556 +3399.275688 +3399.278219 +3399.564399 +3399.566863 +3399.568695 +3399.729700 +3399.731965 +3399.735928 +3399.991938 +3399.995068 +3400.257272 +3400.510885 +3401.791836 +3404.996928 +3405.052139 +3405.053971 +3405.055736 +3405.071054 +3405.194697 +3405.680277 +3405.772651 +3405.873950 +3406.088535 +3406.178545 +3420.050093 +3420.143733 +3420.802540 +3420.887188 +3421.001474 +3421.805902 +3421.978862 +3422.544430 +3434.960634 +3443.487732 +3444.785766 +3444.963355 +3445.032419 +3445.096855 +3445.301949 +3445.351600 +3445.358493 +3445.410674 +3445.558093 +3445.883334 +3445.956594 +3445.988096 +3446.133916 +3446.372777 +3446.400217 +3446.402881 +3446.709374 +3446.792890 +3446.909540 +3446.997119 +3447.006077 +3447.074641 +3447.107775 +3447.119430 +3447.211871 +3447.248667 +3447.335380 +3447.378537 +3447.424525 +3447.493156 +3447.585963 +3447.593922 +3447.673076 +3447.738877 +3447.848800 +3447.857924 +3447.898017 +3447.922926 +3447.925057 +3447.952862 +3447.978004 +3447.995320 +3448.028653 +3448.092389 +3448.095853 +3448.141340 +3448.238510 +3448.302046 +3448.332283 +3448.337411 +3448.418097 +3448.556625 +3448.650697 +3448.695452 +3448.761553 +3448.833081 +3448.998616 +3449.055259 +3449.062318 +3449.175072 +3449.224856 +3449.323257 +3449.353893 +3449.379534 +3449.479068 +3449.549098 +3449.597916 +3449.713800 +3449.715565 +3449.809804 +3449.869211 +3451.017328 +3451.046166 +3451.222090 +3452.955055 +3453.061016 +3453.128848 +3453.237772 +3453.520922 +3453.741235 +3453.824851 +3454.008168 +3454.105404 +3454.436938 +3454.468407 +3454.833874 +3455.108866 +3455.208067 +3455.210431 +3455.249492 +3455.288919 +3455.383724 +3455.428346 +3455.428812 +3455.480028 +3455.507833 +3455.509132 +3455.550890 +3455.555119 +3455.634240 +3455.634839 +3455.704436 +3455.709931 +3455.750157 +3455.868639 +3455.890683 +3455.898376 +3455.910796 +3455.927680 +3455.935538 +3455.955319 +3455.980960 +3455.995845 +3456.010563 +3456.064309 +3456.079028 +3456.097476 +3456.107899 +3456.198941 +3456.206734 +3456.228312 +3456.272634 +3456.299940 +3456.300706 +3456.321652 +3456.373067 +3456.400273 +3456.411795 +3456.447060 +3456.471235 +3456.474332 +3456.505035 +3456.530210 +3456.576364 +3456.585321 +3456.595511 +3456.625481 +3456.629077 +3456.648858 +3456.658748 +3456.661845 +3456.681259 +3456.682857 +3456.730576 +3456.763609 +3456.793480 +3456.806933 +3456.830509 +3456.846593 +3456.925847 +3456.942197 +3456.980592 +3457.040299 +3457.061911 +3457.064741 +3457.093213 +3457.132940 +3457.179427 +3457.199273 +3457.209963 +3457.221351 +3457.230409 +3457.279693 +3457.282257 +3457.297608 +3457.302803 +3457.327811 +3457.439266 +3457.500272 +3457.507798 +3457.519386 +3457.534571 +3457.563509 +3457.566073 +3457.598940 +3457.655850 +3457.683122 +3457.696209 +3457.719752 +3457.722450 +3457.752786 +3457.756049 +3457.780825 +3457.782889 +3457.826845 +3457.886885 +3457.894178 +3457.928011 +3457.979992 +3458.013025 +3458.035703 +3458.040731 +3458.084953 +3458.093878 +3458.138766 +3458.141264 +3458.170834 +3458.188150 +3458.205333 +3458.210961 +3458.247258 +3458.266738 +3458.275962 +3458.323814 +3458.416255 +3458.421916 +3458.474896 +3458.501936 +3458.503801 +3458.537900 +3458.543328 +3458.573698 +3458.575795 +3458.632172 +3458.645626 +3458.684487 +3458.723381 +3458.751286 +3458.783721 +3458.809262 +3458.811460 +3458.855049 +3458.859278 +3458.870134 +3458.891679 +3458.906198 +3458.939898 +3458.986185 +3459.020817 +3459.056914 +3459.072099 +3459.110294 +3459.145126 +3459.172565 +3459.182755 +3459.207863 +3459.238199 +3459.247357 +3459.267004 +3459.339664 +3459.388715 +3459.394276 +3459.516088 +3459.518552 +3459.619484 +3459.691212 +3459.742428 +3459.797306 +3459.820050 +3459.839730 +3459.845291 +3459.862075 +3459.891978 +3459.908262 +3459.920583 +3459.949354 +3459.979024 +3460.011159 +3460.050952 +3460.057712 +3460.105531 +3460.156014 +3460.162574 +3460.178857 +3460.204099 +3460.224345 +3460.251884 +3460.319916 +3460.322647 +3460.406829 +3460.455647 +3460.462807 +3460.508361 +3460.534934 +3460.594841 +3460.611258 +3460.737665 +3460.744624 +3460.796606 +3461.010358 +3461.131071 +3461.171764 +3461.263938 +3461.394307 +3461.398670 +3461.469266 +3461.576758 +3461.626408 +3461.632436 +3461.668666 +3461.696438 +3461.704830 +3461.725809 +3461.762839 +3461.800634 +3461.819515 +3461.822446 +3461.845090 +3461.913121 +3461.945889 +3462.039295 +3462.061240 +3462.092409 +; +4.078617 +4.081248 +31.625842 +46.789197 +46.983802 +46.985634 +46.987665 +47.059660 +47.136583 +51.083266 +53.119594 +53.370043 +58.967973 +58.970337 +59.127813 +59.222785 +59.280394 +59.282958 +59.415525 +59.474200 +67.453113 +67.595803 +67.598167 +67.698067 +67.841657 +67.914484 +67.916815 +68.046652 +68.050182 +68.129369 +68.173325 +68.175390 +84.039643 +84.046836 +84.191058 +84.192656 +84.194355 +84.196552 +84.317698 +84.319496 +84.321261 +84.323625 +84.324191 +84.388061 +84.391158 +84.394321 +86.951162 +87.315597 +87.317662 +87.452460 +87.559619 +87.561651 +87.563749 +87.568843 +87.626219 +87.626985 +88.979298 +91.299243 +91.301807 +91.455686 +91.565376 +91.565676 +91.635806 +91.637937 +91.640235 +93.231642 +93.233740 +93.371135 +97.969832 +97.971364 +98.243891 +98.248953 +98.250817 +104.109786 +104.234961 +105.405589 +105.632662 +105.633827 +105.634526 +105.634660 +105.759535 +105.817710 +105.879514 +108.784440 +108.786238 +108.787970 +108.790101 +108.799691 +108.802089 +108.929561 +108.995762 +108.997993 +109.000257 +109.002522 +109.002855 +110.808647 +110.896393 +110.907781 +111.069419 +111.250771 +121.875436 +123.277666 +123.432311 +123.434242 +123.436107 +123.501608 +123.565411 +123.567442 +123.569440 +123.643932 +125.346928 +125.526315 +125.528746 +126.777496 +126.783556 +126.858348 +126.925048 +131.184584 +131.187215 +131.188713 +131.691610 +132.835864 +132.838595 +132.901166 +132.903264 +132.905228 +132.979754 +133.097702 +133.099301 +133.099834 +133.106294 +133.107060 +133.160872 +133.164269 +133.224542 +133.225608 +133.283317 +133.349883 +137.909752 +138.049879 +138.115246 +138.191037 +138.193968 +138.332962 +138.334660 +138.336125 +138.337624 +138.405756 +138.470258 +138.472089 +138.541353 +138.611017 +138.614613 +138.684343 +138.687474 +140.388904 +148.696455 +148.698519 +152.756357 +154.349529 +154.432047 +164.345523 +164.438797 +180.191328 +197.950951 +238.859468 +239.984642 +240.266460 +240.327032 +240.402956 +246.953832 +246.957562 +247.146173 +252.678302 +261.184054 +261.309329 +264.801966 +266.755311 +266.758474 +266.829703 +266.900998 +269.219644 +279.508745 +279.511076 +279.641712 +279.643810 +279.675544 +279.799254 +279.800886 +279.807745 +279.809977 +279.901352 +279.943776 +279.945907 +280.002251 +283.076340 +283.078471 +283.079704 +283.151831 +283.154329 +286.314066 +289.086291 +289.249861 +289.295848 +289.296247 +289.399910 +289.478798 +289.479964 +289.480396 +289.481096 +289.495248 +289.499011 +289.652857 +289.659650 +293.812160 +294.220818 +294.381224 +294.480391 +296.939230 +297.081954 +297.084085 +297.085550 +297.799669 +297.846922 +297.849119 +297.852516 +297.986582 +298.127407 +298.312755 +298.315153 +298.315852 +298.319182 +298.391110 +301.428836 +301.430634 +301.432432 +301.434763 +301.514051 +301.516249 +301.582482 +301.709222 +301.711353 +303.478151 +303.481015 +303.490472 +303.492537 +303.493036 +303.494768 +303.612284 +304.554474 +304.556505 +304.626835 +305.788339 +305.994366 +306.081878 +306.161032 +306.165095 +306.241785 +306.251941 +308.955668 +309.164759 +309.165458 +309.461629 +310.859496 +310.861694 +311.145743 +313.858993 +313.861158 +313.869949 +313.872846 +314.024095 +314.093892 +314.095790 +314.097421 +314.169516 +314.239013 +314.241011 +314.242843 +314.248270 +314.387265 +314.462589 +314.465120 +314.728690 +319.210004 +319.211735 +319.213334 +319.350796 +319.352694 +319.354759 +319.356957 +319.469377 +319.516497 +319.516763 +319.518828 +321.962215 +322.201210 +322.203208 +322.205206 +322.363048 +322.993650 +323.404971 +323.507768 +323.611231 +323.613229 +323.695747 +323.698178 +323.760615 +323.823586 +323.830645 +323.892517 +326.601938 +326.604502 +326.660779 +326.921152 +326.923116 +326.924981 +326.927545 +327.124848 +327.127145 +327.259879 +327.262243 +327.264808 +327.292879 +327.450655 +327.451221 +327.453519 +327.514491 +327.516289 +327.518287 +327.675397 +327.677195 +327.678960 +327.679859 +327.743229 +327.749089 +327.759246 +327.761610 +327.843462 +327.845326 +327.847225 +327.908064 +327.909995 +327.928810 +327.932140 +328.014757 +328.016655 +328.018320 +328.096608 +328.098606 +328.101736 +328.181190 +328.183555 +328.270701 +328.273398 +330.606529 +331.052416 +331.319382 +331.322213 +331.471330 +331.473495 +331.638596 +331.789745 +331.791743 +331.793574 +331.793841 +331.795439 +331.797104 +331.799069 +331.821013 +331.822812 +331.933201 +331.934899 +331.936531 +331.938429 +331.957643 +331.959541 +331.961539 +332.016052 +332.017517 +332.089278 +332.091343 +332.093974 +332.122578 +332.182785 +332.185116 +332.571662 +332.581019 +332.586414 +332.698069 +332.700100 +332.702198 +332.803064 +332.805095 +332.807193 +332.954379 +332.956610 +333.004895 +333.143390 +333.145921 +333.148252 +333.260273 +333.262903 +333.572660 +333.619613 +333.621644 +333.623676 +333.862470 +333.866133 +333.868064 +333.972626 +333.974125 +333.974658 +334.143955 +334.148850 +334.151314 +334.246885 +334.249050 +334.323908 +334.325307 +334.326972 +334.327704 +334.408623 +334.410388 +334.414484 +334.509655 +334.511887 +334.572060 +334.574024 +334.575656 +334.616948 +334.620078 +334.623475 +334.624707 +334.669828 +334.672093 +334.729569 +334.733332 +334.824907 +334.827437 +334.842522 +334.947451 +335.515515 +335.783614 +336.092571 +336.094669 +336.096567 +336.129734 +336.131665 +336.341488 +336.362334 +336.363933 +336.473157 +336.475188 +336.477352 +336.701428 +336.703859 +336.862001 +336.864232 +336.943453 +336.945351 +336.947182 +337.197298 +337.199296 +337.201261 +337.296666 +337.298530 +337.300262 +337.302460 +337.544351 +337.546149 +337.547714 +337.549679 +337.627768 +337.629899 +337.632063 +337.857538 +337.859336 +337.860901 +337.862799 +337.893768 +337.898197 +338.093668 +338.095366 +338.096965 +338.098829 +338.200827 +338.202659 +338.204390 +338.206621 +338.335426 +338.432395 +338.434294 +338.436058 +338.562066 +338.563997 +338.565862 +338.745282 +338.745915 +338.748579 +338.749278 +338.924936 +338.926767 +338.928499 +338.930830 +338.999261 +339.000926 +339.002758 +339.021339 +339.023038 +339.025069 +339.245115 +339.247113 +339.249244 +339.356637 +339.591668 +339.593666 +339.666760 +339.668658 +339.670356 +339.672388 +339.914678 +339.916610 +339.918408 +339.992500 +339.996097 +339.997828 +340.001092 +340.272420 +340.274252 +340.276017 +340.297628 +340.299193 +340.300659 +340.302324 +340.304422 +340.578314 +340.580212 +340.582010 +340.612913 +340.614711 +340.616309 +340.619972 +340.621704 +340.623202 +340.624867 +340.933159 +340.935124 +340.938587 +340.939952 +340.941584 +340.943515 +340.953871 +341.246778 +341.248410 +341.249875 +341.251540 +341.253438 +341.263728 +341.265559 +341.267091 +341.268823 +341.270754 +341.292100 +341.294031 +341.295862 +341.539652 +341.541250 +341.542649 +341.546145 +341.579911 +341.651407 +341.653238 +341.654970 +341.657101 +341.777314 +341.778979 +341.780477 +341.782209 +341.784806 +341.891466 +341.894896 +341.899225 +341.967357 +341.969288 +341.971153 +342.112945 +342.114610 +342.116008 +342.117573 +342.325265 +342.327030 +342.328695 +342.330793 +342.422401 +342.424033 +342.425032 +342.425432 +342.427097 +342.429095 +342.575515 +342.659331 +342.661162 +342.662861 +342.743247 +342.744845 +342.746277 +342.747909 +342.749840 +342.769720 +343.024299 +343.026563 +343.075015 +343.076746 +343.078312 +343.079943 +343.082874 +343.349473 +343.351438 +343.353203 +343.385571 +343.387569 +343.389300 +343.666090 +343.667888 +343.669620 +343.672117 +343.681941 +343.683706 +343.685237 +343.687002 +343.689267 +343.731058 +343.875913 +343.877611 +343.880975 +343.883938 +343.970385 +343.972250 +343.973948 +343.977012 +344.143645 +344.146842 +344.148574 +344.150705 +344.218071 +344.219836 +344.221501 +344.223698 +344.379343 +344.469885 +344.471650 +344.473249 +344.475013 +344.583205 +344.585370 +344.600821 +344.665090 +344.667288 +344.669519 +344.760161 +344.761926 +344.763525 +344.765256 +344.768620 +344.914141 +344.916505 +344.967987 +344.970184 +344.972449 +345.207214 +345.217537 +345.219435 +345.221400 +345.350470 +345.352235 +345.353867 +345.355965 +345.497357 +345.499288 +345.501153 +345.705781 +345.707713 +345.709444 +345.711942 +345.863823 +345.865788 +345.867653 +345.920067 +345.965688 +345.967619 +345.969351 +346.226860 +346.228958 +346.231056 +346.273846 +346.275611 +346.277243 +346.279108 +346.552800 +346.554499 +346.555930 +346.557629 +346.667053 +346.668817 +346.963289 +346.965321 +346.967219 +347.108710 +347.220898 +347.222696 +347.224328 +347.226160 +347.262956 +347.427824 +347.429856 +347.431687 +347.525593 +347.527391 +347.528990 +347.531121 +347.531820 +347.560025 +347.804214 +347.806012 +347.807611 +347.809542 +347.845207 +347.847271 +347.849269 +347.897454 +348.178406 +348.180304 +348.181969 +348.192792 +348.194524 +348.196022 +348.558293 +348.559691 +348.563055 +348.631619 +348.633517 +348.635382 +348.771912 +348.773810 +348.775642 +348.973910 +348.975875 +348.977673 +349.330919 +349.411972 +349.413936 +349.415868 +349.519098 +349.667116 +349.668914 +349.670546 +349.672477 +349.846237 +349.848068 +349.849733 +349.851765 +350.052231 +350.054329 +350.183699 +350.274408 +350.276173 +350.277772 +350.435713 +350.437678 +350.489493 +350.605144 +350.607109 +350.608807 +350.611038 +350.830618 +350.832516 +350.834448 +350.937578 +350.939376 +350.940941 +350.942872 +351.297717 +351.299582 +351.301247 +351.303378 +351.398217 +351.401413 +351.403445 +351.502346 +351.603311 +351.606342 +351.607873 +351.609738 +351.720061 +351.842472 +351.844503 +351.913801 +351.915665 +351.917297 +351.920494 +352.215399 +352.217330 +352.219095 +352.478635 +352.480567 +352.482265 +352.484363 +352.846267 +352.848032 +352.849697 +352.851595 +353.142171 +353.144136 +353.145834 +353.148032 +353.307539 +353.509370 +353.511401 +353.513433 +353.563882 +353.565580 +353.570975 +353.632047 +353.905740 +353.907505 +353.909070 +353.910968 +353.913998 +353.949196 +353.951028 +353.952760 +353.955224 +354.387757 +354.389622 +354.391221 +354.393385 +354.699945 +354.701643 +354.703175 +354.704973 +354.891720 +354.893285 +354.895083 +354.914530 +354.916695 +354.918759 +354.920757 +355.152226 +355.158120 +355.231579 +355.481196 +355.483128 +355.485026 +355.731313 +355.733144 +355.734776 +355.736607 +355.771206 +355.773037 +355.774836 +356.405038 +356.406670 +356.408601 +356.440669 +356.442467 +356.448794 +356.484625 +356.772604 +356.933476 +356.935341 +356.939137 +357.262147 +357.264012 +357.265643 +357.267475 +357.271904 +357.273702 +357.275300 +357.277465 +357.553855 +357.555553 +357.557085 +357.558750 +357.561181 +357.882659 +357.884324 +357.885789 +357.887521 +357.912929 +357.927681 +357.929645 +357.931810 +358.189119 +358.190551 +358.192116 +358.194114 +358.319189 +358.322985 +358.326015 +358.424350 +358.425915 +358.514327 +358.515958 +358.517390 +358.518955 +358.521053 +358.652855 +358.703737 +358.844130 +358.845728 +358.847127 +358.848659 +358.850457 +359.008066 +359.138902 +359.140567 +359.143597 +359.145528 +359.254120 +359.255984 +359.258016 +359.488984 +359.490916 +359.492714 +359.664842 +359.666607 +359.668105 +359.669903 +359.797609 +359.929543 +359.931142 +359.932574 +359.934139 +359.935937 +359.939500 +360.030343 +360.032241 +360.034039 +360.036603 +360.317555 +360.318654 +360.320152 +360.321784 +360.323716 +360.344861 +360.346726 +360.348457 +360.624681 +360.626413 +360.628011 +360.629743 +360.644794 +360.814324 +360.816289 +360.818187 +360.994810 +361.000072 +361.051587 +361.053352 +361.054950 +361.056782 +361.059379 +361.314257 +361.316155 +361.316988 +361.317920 +361.626145 +361.652019 +361.653951 +361.655649 +361.663042 +361.664773 +361.884553 +361.886418 +361.888083 +361.890114 +361.983754 +362.104100 +362.105965 +362.107730 +362.109861 +362.664572 +362.667936 +362.679025 +362.870999 +362.872797 +362.876260 +362.889381 +362.891312 +362.892977 +363.124812 +363.126510 +363.128075 +363.129807 +363.450153 +363.451784 +363.454948 +363.457079 +363.767202 +363.768867 +363.770266 +363.774028 +364.014588 +364.021314 +364.023379 +364.154081 +364.155780 +364.157278 +364.159143 +364.161341 +364.275660 +364.391244 +364.392876 +364.480255 +364.482086 +364.483885 +364.682752 +364.684351 +364.685716 +364.687348 +364.689246 +364.691876 +364.855146 +364.856911 +364.858576 +364.860641 +364.910258 +364.960208 +364.961906 +364.963471 +364.965669 +365.224377 +365.226241 +365.227906 +365.230271 +365.241326 +365.243291 +365.514952 +365.516684 +365.518316 +365.601766 +365.603697 +365.605595 +365.730470 +365.886048 +365.889244 +365.895172 +365.897270 +366.109391 +366.111522 +366.113453 +366.114952 +366.147286 +366.324043 +366.326607 +366.437529 +366.566500 +366.568964 +366.710189 +367.604328 +369.012218 +369.237726 +369.239791 +369.241789 +370.293469 +370.391338 +370.393769 +370.518144 +375.791199 +375.792798 +375.872485 +375.874582 +375.944213 +376.025098 +376.107549 +402.260703 +405.986707 +412.759927 +421.225986 +421.971639 +430.523579 +478.213474 +478.409578 +478.472182 +478.473747 +478.478842 +478.480940 +478.666121 +485.263384 +490.639569 +497.427408 +497.505763 +497.567468 +497.685316 +505.238123 +510.646742 +518.279302 +518.360487 +518.420028 +518.421826 +518.423691 +518.526488 +518.532548 +518.605142 +518.665848 +521.029815 +521.031247 +521.119359 +525.770470 +525.772534 +525.898242 +525.900373 +525.902971 +525.905235 +525.974699 +525.983557 +526.116224 +526.118521 +526.259014 +529.826843 +529.936133 +534.529635 +534.531400 +534.533098 +534.535396 +534.679052 +534.742356 +534.744354 +534.746285 +534.751480 +534.888776 +534.956408 +537.266895 +537.400928 +540.250542 +540.324768 +542.314909 +543.951138 +544.484204 +550.346436 +550.347402 +550.349599 +550.482300 +550.484198 +550.486296 +550.602413 +550.605144 +550.615367 +552.497982 +552.767612 +552.789790 +557.908600 +559.602770 +559.805168 +559.906699 +559.933040 +564.286449 +564.431637 +564.503232 +564.505463 +564.567734 +564.635433 +564.780088 +566.817748 +566.889410 +566.964734 +566.968764 +566.971095 +567.039193 +567.110522 +567.112553 +567.192640 +567.338760 +567.343156 +567.345953 +571.611749 +571.614880 +572.729797 +572.923303 +574.379013 +574.458167 +574.528663 +574.529928 +574.531726 +574.599525 +574.602289 +574.607251 +574.607884 +574.668290 +574.672419 +574.673218 +574.733658 +574.737487 +574.804786 +574.816009 +574.935855 +580.316136 +580.536849 +580.600785 +580.602949 +580.604781 +582.219098 +582.222461 +582.315701 +582.322661 +582.325125 +582.370780 +582.569381 +582.571545 +582.638978 +582.998951 +587.912632 +588.051793 +588.053491 +588.054190 +588.055722 +588.059918 +588.126518 +588.191020 +588.193285 +588.200344 +588.201443 +588.268809 +590.713129 +590.715227 +590.856718 +590.905736 +590.906435 +590.908500 +590.980628 +590.987121 +591.049692 +591.099908 +591.116658 +591.256885 +593.425514 +593.683522 +593.845294 +593.845793 +593.847958 +593.985586 +593.988583 +594.040665 +594.113558 +594.117787 +594.183189 +594.184154 +594.186452 +594.187185 +594.189416 +594.193378 +594.257914 +594.328909 +598.532502 +598.689744 +598.691709 +598.693707 +598.832701 +598.836697 +598.903164 +598.905928 +598.973460 +598.988345 +599.064536 +599.148685 +600.537428 +602.154976 +602.156807 +602.158838 +602.311053 +602.313217 +602.464399 +602.466897 +603.520375 +603.733962 +603.735493 +603.737125 +603.739756 +603.743053 +603.813216 +603.875187 +603.879016 +603.942786 +603.943718 +603.946016 +604.007887 +604.009985 +604.011850 +604.015979 +604.212250 +605.708152 +605.710084 +605.711948 +605.715778 +605.717776 +605.861332 +605.863097 +605.924003 +606.743815 +606.745947 +606.913479 +606.915777 +606.983143 +606.983376 +607.058101 +607.131827 +607.197395 +607.199293 +607.201091 +607.202356 +607.203822 +607.205720 +607.207818 +607.275350 +607.335223 +608.653038 +608.655069 +608.817873 +608.819871 +608.821769 +608.822801 +608.823034 +608.830826 +608.894230 +608.964892 +608.966890 +608.969920 +608.986770 +609.048442 +609.106317 +609.108415 +609.109381 +609.110646 +609.111712 +609.129994 +609.185971 +609.191632 +609.193896 +609.200989 +609.265591 +609.266091 +613.440745 +613.668550 +614.012939 +614.146372 +614.223362 +614.225393 +614.225759 +614.228224 +614.229689 +614.232419 +614.370181 +616.114469 +616.116400 +616.118132 +616.199484 +616.268115 +616.269847 +616.271445 +616.342074 +616.404645 +616.406576 +616.407242 +616.408674 +616.412404 +616.464851 +616.465817 +616.466916 +616.521095 +616.522893 +617.385696 +617.389393 +617.480934 +621.252492 +621.358819 +621.433478 +621.515462 +621.519458 +622.194816 +622.326151 +622.330480 +622.333210 +622.465511 +624.850491 +625.093581 +625.096311 +625.339035 +625.418622 +625.420553 +625.422418 +625.565242 +625.813760 +630.848520 +631.059642 +631.061473 +631.063671 +631.131870 +631.133868 +631.136232 +631.261473 +631.263871 +631.265236 +631.267334 +631.320314 +631.436831 +631.508859 +632.903030 +632.988478 +632.991009 +632.992807 +633.081984 +633.158508 +636.236327 +638.976184 +638.980147 +639.068125 +639.138688 +639.140586 +639.142618 +639.212414 +639.214579 +639.274885 +639.276916 +639.345714 +639.349411 +645.872614 +652.837376 +652.838575 +652.841338 +655.701575 +657.578130 +658.124417 +658.127747 +658.138369 +658.141333 +658.296711 +658.298709 +658.371603 +658.372468 +658.440301 +658.509165 +658.513427 +658.515492 +658.580926 +658.659315 +662.629274 +662.757579 +662.759444 +662.761642 +662.825411 +662.826943 +662.830839 +662.835268 +666.280453 +666.393007 +666.395537 +667.594804 +667.666965 +667.669362 +667.689242 +667.750814 +667.756042 +667.828769 +667.966798 +669.711485 +673.264894 +673.266659 +673.268324 +673.339553 +673.341751 +673.348511 +673.472653 +673.474651 +673.576216 +673.579579 +673.659599 +676.075747 +676.077745 +676.339717 +676.572617 +676.709779 +676.768088 +676.774548 +676.831458 +676.833522 +676.835420 +676.897292 +680.795123 +680.797155 +680.957028 +680.959159 +681.079672 +681.144041 +681.222928 +681.224893 +681.351367 +681.353598 +681.429755 +681.430121 +681.431886 +681.435416 +681.436115 +683.431218 +683.449766 +683.559523 +683.644738 +683.646935 +683.653429 +683.738943 +683.740875 +683.743039 +683.810172 +683.935447 +684.005410 +684.007441 +684.009539 +684.141374 +684.280634 +684.363651 +684.364883 +684.431617 +684.516265 +684.518097 +687.128917 +687.131281 +687.273672 +687.280065 +687.280731 +687.282430 +687.455756 +688.216828 +688.220790 +688.284427 +688.286458 +688.347530 +688.349461 +688.406604 +688.408369 +688.469974 +688.531246 +688.594483 +688.648828 +688.778865 +691.301373 +691.703005 +691.706634 +691.845762 +691.847693 +691.976398 +693.177129 +693.179293 +693.457915 +693.532640 +693.536469 +693.614558 +693.750755 +693.754085 +693.815723 +693.817688 +693.819819 +693.820119 +693.884721 +696.260542 +696.530472 +696.532803 +696.631038 +696.700968 +696.701468 +696.702800 +696.704498 +696.772530 +696.830705 +696.834268 +698.770930 +698.773460 +698.851682 +698.915818 +698.917816 +699.057310 +700.837761 +700.840192 +700.925440 +700.927671 +701.047251 +701.115782 +701.118213 +701.216881 +701.373824 +706.213246 +708.002888 +708.004587 +708.085239 +708.087770 +708.181310 +708.189801 +708.246311 +708.251373 +708.320604 +708.322768 +708.386771 +708.450007 +708.452172 +711.189066 +711.484870 +711.486468 +711.486834 +711.487966 +711.488699 +711.489631 +711.624263 +711.630424 +711.632355 +711.706648 +711.785369 +711.787966 +711.868486 +711.942345 +711.943544 +711.945175 +711.946308 +712.025395 +712.095325 +712.169717 +714.806944 +714.912838 +714.915402 +715.121862 +715.124460 +715.150767 +715.152998 +715.297353 +715.387796 +715.389461 +715.391059 +715.391559 +715.450500 +715.537013 +715.538878 +715.540610 +715.542475 +715.550067 +715.629854 +715.631485 +715.632984 +715.639344 +715.641176 +715.650833 +715.653130 +715.727056 +715.728755 +715.887296 +715.985698 +717.641440 +717.642206 +717.643705 +717.644504 +717.836412 +717.838443 +717.908906 +717.911004 +717.962818 +717.964783 +717.966814 +718.126188 +718.133015 +718.136844 +718.149831 +718.152029 +718.321360 +718.323158 +718.324756 +718.391423 +718.596118 +718.598282 +718.647899 +718.649797 +718.651629 +718.653993 +718.879501 +718.883397 +718.885595 +719.161219 +719.506440 +719.509770 +719.527652 +719.530682 +719.626586 +719.629084 +719.703543 +719.824189 +719.882930 +719.885660 +719.995983 +720.138874 +720.141071 +720.143469 +720.240738 +720.242869 +720.245567 +720.340771 +720.342403 +720.344268 +720.443835 +720.445866 +720.448464 +720.584095 +720.586093 +720.588124 +720.712266 +720.715963 +720.717894 +720.768310 +720.770242 +720.772173 +720.911234 +720.913165 +720.915030 +721.035409 +721.036941 +721.038739 +721.040937 +721.051660 +721.247098 +721.248829 +721.250927 +721.272805 +721.350994 +721.352758 +721.354390 +721.356255 +721.380631 +721.382296 +721.384360 +721.605872 +721.607737 +721.687690 +721.689388 +721.690887 +721.692685 +721.748629 +721.750327 +721.751826 +721.753457 +721.755522 +721.759451 +721.954989 +721.966178 +721.968043 +721.969841 +721.971139 +721.974136 +721.975801 +721.977799 +721.995715 +721.997613 +722.001376 +722.298179 +722.300143 +722.301875 +722.313630 +722.315528 +722.317293 +722.319591 +722.327549 +722.332611 +722.334609 +722.541568 +722.553956 +722.555854 +722.559684 +722.572571 +722.574369 +722.576234 +722.599977 +722.601775 +722.603307 +722.605072 +722.607103 +722.661415 +722.830879 +722.832644 +722.834309 +722.893050 +722.894848 +722.896347 +722.897978 +722.899876 +722.914728 +722.916593 +722.918325 +722.920922 +723.067109 +723.068508 +723.070406 +723.143899 +723.145830 +723.147662 +723.220123 +723.221821 +723.223286 +723.225983 +723.226783 +723.227582 +723.229047 +723.230645 +723.236673 +723.347728 +723.352623 +723.527715 +723.529779 +723.531877 +723.552989 +723.554887 +723.556652 +723.588720 +723.872270 +723.873968 +723.875533 +723.877265 +723.884291 +723.886056 +723.887621 +723.889386 +723.891550 +723.906302 +723.908300 +723.910198 +724.168207 +724.169972 +724.171637 +724.173801 +724.213961 +724.215793 +724.217324 +724.219056 +724.221687 +724.271304 +724.273535 +724.536372 +724.541200 +724.547061 +724.548793 +724.550358 +724.552222 +724.636938 +724.638736 +724.643131 +724.868473 +724.870204 +724.871703 +724.873468 +724.875466 +725.009132 +725.011063 +725.012895 +725.150124 +725.151856 +725.153321 +725.154986 +725.157150 +725.347460 +725.349258 +725.350990 +725.353321 +725.485621 +725.487353 +725.488852 +725.490683 +725.494213 +725.686254 +725.691515 +725.745128 +725.746827 +725.748292 +725.749924 +725.752088 +725.811062 +726.063343 +726.064908 +726.066340 +726.070103 +726.074532 +726.076663 +726.157882 +726.306566 +726.365807 +726.368937 +726.370602 +726.372534 +726.629110 +726.630908 +726.651321 +726.653053 +726.654585 +726.656483 +726.688584 +726.926845 +726.928577 +726.930175 +726.932107 +726.964375 +727.220585 +727.222749 +727.225746 +727.227644 +727.229276 +727.540098 +727.542030 +727.550521 +727.552453 +727.554251 +727.557015 +727.560478 +727.562309 +727.563974 +727.565972 +727.857814 +727.859545 +727.861110 +727.862908 +727.865506 +727.868936 +727.903768 +727.905599 +727.907364 +727.909695 +728.141496 +728.143627 +728.145792 +728.205266 +728.222648 +728.224380 +728.225878 +728.227643 +728.229741 +728.427244 +728.441230 +728.443194 +728.458146 +728.510893 +728.707963 +728.711526 +728.713823 +728.737133 +728.739065 +728.740863 +728.942594 +728.945092 +729.077226 +729.247423 +729.249254 +729.249887 +729.250952 +729.253150 +729.581721 +729.583553 +729.585184 +729.587249 +729.591445 +729.871897 +729.873596 +729.875128 +729.876892 +729.912890 +730.105264 +730.107129 +730.108794 +730.110892 +730.430072 +730.431770 +730.433302 +730.435100 +730.437431 +730.554181 +730.556046 +730.557644 +730.559476 +730.710458 +730.712190 +730.713721 +730.715620 +730.911623 +731.021180 +731.024377 +731.026109 +731.028373 +731.159975 +731.182186 +731.307594 +731.309359 +731.310990 +731.312855 +731.479322 +731.491576 +731.495439 +731.609059 +731.610857 +731.612355 +731.614087 +731.616385 +731.765202 +731.767167 +731.769132 +731.865635 +731.867400 +731.869032 +731.870930 +732.187746 +732.189411 +732.190876 +732.192641 +732.202831 +732.533300 +732.555378 +732.557343 +732.559341 +732.851149 +732.853047 +732.874625 +732.876556 +732.878321 +733.169929 +733.171794 +733.173493 +733.175923 +733.206593 +733.208424 +733.210056 +733.212454 +733.511055 +733.512820 +733.514385 +733.516183 +733.529403 +733.531268 +733.567165 +733.769762 +733.771494 +733.773026 +733.774824 +733.777122 +733.802829 +734.088377 +734.093505 +734.095303 +734.096935 +734.440324 +734.442056 +734.445253 +734.533964 +734.535862 +734.816614 +734.818413 +734.819978 +734.821942 +734.834630 +734.836428 +735.097167 +735.098965 +735.100497 +735.102295 +735.157939 +735.159871 +735.161736 +735.164833 +735.426870 +735.428602 +735.430134 +735.431932 +735.543354 +735.545218 +735.800163 +735.802095 +735.803926 +735.941322 +735.945018 +736.086943 +736.088674 +736.090306 +736.092238 +736.374355 +736.466496 +736.468294 +736.469926 +736.471924 +736.857971 +736.859769 +736.861368 +736.863565 +736.932829 +736.934961 +736.937358 +737.130232 +737.131897 +737.133295 +737.134894 +737.137158 +737.281580 +737.285743 +737.425603 +737.427334 +737.428900 +737.430731 +737.741553 +737.743185 +737.744683 +737.746282 +737.818942 +737.820474 +737.847214 +737.849379 +737.852675 +737.855905 +738.068859 +738.070524 +738.071989 +738.073588 +738.075519 +738.078516 +738.115679 +738.169192 +738.390837 +738.392535 +738.393201 +738.394100 +738.395865 +738.477916 +738.479981 +738.481979 +738.702625 +738.704956 +738.783877 +738.785675 +738.787240 +738.789238 +738.790437 +738.792368 +738.794100 +738.796431 +739.164429 +739.166294 +739.168059 +739.219008 +739.220773 +739.222371 +739.224236 +739.359534 +739.361199 +739.363330 +739.454539 +739.455771 +739.456370 +739.458068 +739.460233 +739.500126 +739.501791 +739.503290 +739.504988 +739.507053 +739.670789 +739.819340 +739.821038 +739.822603 +739.824435 +739.826866 +739.956869 +739.958800 +739.960465 +740.194098 +740.195963 +740.197528 +740.199426 +740.510182 +740.511880 +740.513379 +740.515010 +740.518906 +740.520638 +740.523335 +740.839053 +740.840751 +740.842249 +740.844048 +740.846312 +740.962096 +740.963928 +740.965593 +741.077281 +741.090901 +741.092632 +741.094064 +741.095696 +741.097794 +741.236255 +741.238153 +741.239951 +741.242549 +741.382775 +741.384540 +741.386105 +741.387837 +741.527097 +741.528196 +741.752971 +741.754736 +741.756235 +741.758066 +741.798559 +741.800457 +742.146810 +742.148542 +742.150074 +742.152072 +742.382041 +742.383940 +742.385605 +742.388402 +742.490167 +742.491798 +742.494729 +742.496560 +742.885937 +742.887769 +742.889533 +742.891964 +742.893829 +742.942947 +742.944645 +742.947842 +742.950572 +742.960562 +743.189300 +743.192863 +743.194262 +743.195993 +743.197558 +743.199623 +743.202687 +743.204452 +743.353636 +743.434521 +743.436220 +743.439350 +743.454335 +743.456166 +743.458064 +743.460329 +743.483339 +744.158863 +744.160694 +744.164324 +744.166222 +744.167954 +744.379409 +744.381307 +744.382972 +744.385070 +744.812675 +744.814373 +744.815872 +744.817670 +745.090297 +745.091962 +745.093394 +745.094959 +745.096891 +745.124030 +745.126195 +745.321233 +745.323031 +745.326427 +745.327626 +745.618369 +745.620200 +745.621798 +745.635518 +745.642777 +745.644842 +746.209943 +746.211841 +746.213606 +746.386666 +746.415904 +746.417968 +746.565887 +746.567518 +746.568950 +746.570549 +746.572580 +746.844841 +746.846739 +746.848404 +746.850668 +747.001184 +747.003182 +747.005014 +747.039446 +747.042843 +747.044807 +747.047205 +747.380471 +747.438447 +747.440378 +747.442309 +747.656262 +747.657860 +747.809875 +747.811806 +747.813571 +747.816035 +747.878073 +747.879971 +747.881670 +747.884067 +748.093391 +748.100218 +748.158925 +748.160657 +748.162222 +748.162988 +748.261290 +748.263021 +748.264586 +748.266518 +748.967150 +748.968648 +748.970313 +748.972444 +749.000983 +749.002881 +749.004745 +749.356893 +749.358791 +749.360556 +749.438112 +749.440110 +749.441841 +749.732783 +749.734615 +749.740942 +749.742773 +749.744338 +749.746170 +750.071145 +750.072810 +750.074275 +750.076073 +750.557325 +750.561254 +750.650598 +750.652396 +750.653961 +750.655959 +750.995053 +750.996718 +750.998183 +750.999782 +751.122059 +751.123991 +751.125822 +751.169512 +751.334080 +751.335779 +751.337244 +751.338909 +751.902545 +752.051995 +752.053960 +752.055891 +752.063117 +752.064949 +752.066514 +752.068645 +752.178402 +752.425954 +752.427919 +752.429384 +752.429684 +752.431116 +752.432548 +752.434246 +752.605807 +752.607506 +752.612567 +752.732248 +752.733879 +752.735344 +752.736910 +752.738874 +753.012833 +753.014365 +753.015764 +753.019094 +753.526952 +753.528617 +753.530016 +753.531581 +753.578534 +753.582596 +753.870675 +754.186625 +754.282729 +754.284394 +754.285826 +754.287358 +754.289289 +754.730447 +754.732179 +754.733644 +754.735342 +754.740204 +754.745932 +755.226784 +755.228482 +755.231612 +755.304140 +755.569840 +755.571472 +755.572904 +755.574469 +755.576500 +756.192417 +756.194149 +756.195647 +756.197279 +756.199810 +756.239537 +756.465610 +756.467309 +756.468741 +756.470372 +756.472304 +756.512297 +756.514295 +756.516093 +756.904405 +756.906136 +756.907568 +756.909333 +756.911797 +757.011397 +757.013429 +757.174867 +757.224784 +757.226482 +757.227914 +757.229512 +757.231644 +757.627880 +757.629778 +757.848859 +757.850624 +757.852256 +757.853887 +757.916691 +757.918589 +758.160747 +758.165709 +758.167374 +758.168772 +758.172302 +758.216025 +758.743231 +758.746894 +759.014093 +759.015891 +759.017756 +759.020520 +759.056251 +759.057949 +759.059447 +759.061146 +759.063910 +759.154852 +759.282391 +759.284322 +759.286021 +759.288218 +759.448391 +759.593413 +759.595078 +759.596510 +759.598208 +759.638235 +759.640000 +759.941564 +759.941797 +759.943163 +759.944595 +759.948091 +760.213159 +760.214891 +760.270502 +760.272000 +760.273632 +760.275796 +760.531507 +760.533272 +760.534904 +760.950721 +761.060278 +761.062009 +761.063441 +761.065140 +761.234404 +761.236435 +761.530540 +761.532305 +761.533737 +761.535535 +761.537866 +761.661143 +761.761476 +761.766704 +761.780390 +761.782122 +761.783587 +761.785252 +761.849055 +762.070333 +762.072065 +762.073564 +762.075428 +762.078026 +762.242328 +762.246324 +762.604132 +762.798538 +762.800269 +762.801868 +762.803733 +762.866037 +762.867935 +762.869800 +763.036400 +763.037865 +763.039730 +763.361008 +763.362640 +763.364072 +763.365670 +763.367435 +763.596706 +763.598803 +763.601035 +763.658044 +763.659476 +763.661041 +763.663206 +763.749985 +763.751917 +764.010558 +764.012190 +764.013655 +764.015220 +764.017618 +764.101567 +764.640128 +764.642059 +764.644257 +764.649019 +764.963071 +764.965003 +764.966901 +765.174626 +765.176791 +765.442358 +765.444223 +765.445988 +765.448319 +765.764902 +765.766667 +765.768165 +765.769963 +765.961805 +765.963803 +766.130636 +766.132301 +766.133766 +766.135364 +766.137362 +766.406293 +766.408025 +766.409457 +766.411122 +766.413086 +766.479786 +766.481884 +766.483949 +766.779753 +766.781484 +766.783116 +766.785014 +767.031967 +767.034265 +767.201364 +767.203096 +767.204527 +767.208424 +767.291973 +767.585246 +767.586945 +767.588443 +767.590208 +767.767397 +767.770894 +767.773092 +767.968663 +767.970328 +767.971759 +767.975855 +768.101263 +768.103028 +768.104660 +768.531932 +768.533997 +768.535861 +768.789641 +769.180450 +769.182281 +769.183879 +769.185911 +769.592870 +769.594668 +769.596300 +769.598032 +769.624438 +769.652644 +770.592869 +770.594834 +770.596465 +770.598397 +770.756705 +770.758803 +770.760668 +770.855839 +770.860035 +770.899229 +770.902925 +771.187940 +771.189805 +771.193201 +771.197098 +771.477650 +771.479615 +771.481213 +771.483078 +771.730730 +771.732628 +771.734293 +771.736324 +772.047247 +772.050810 +772.052575 +772.319041 +772.321872 +772.347779 +772.349611 +772.351276 +772.353074 +772.355272 +772.407852 +772.409983 +772.693033 +772.695364 +772.852940 +773.063329 +773.065228 +773.066926 +773.229130 +773.231361 +773.393466 +773.395131 +773.396662 +773.398561 +773.400925 +773.550575 +773.694997 +773.696829 +773.698394 +773.700225 +773.810149 +773.812047 +773.813911 +774.004687 +774.006319 +774.007817 +774.009482 +774.012046 +774.243348 +774.245346 +774.247111 +774.248676 +774.250441 +774.594264 +774.596029 +774.597527 +774.599525 +774.682375 +774.684107 +774.686904 +774.800690 +774.802655 +774.804287 +774.833025 +774.855302 +775.002289 +775.004953 +775.093497 +775.095229 +775.096827 +775.098759 +775.159864 +775.260064 +775.283474 +775.285605 +775.287536 +775.338219 +775.340317 +775.509015 +775.519870 +775.523767 +775.526098 +775.667290 +775.669687 +775.775947 +775.797060 +775.906284 +775.908881 +776.106816 +776.173916 +776.448807 +781.254796 +781.344007 +794.483554 +813.871114 +815.615401 +829.730206 +829.892610 +841.186338 +843.663792 +844.633321 +845.098988 +858.625781 +866.404894 +867.493571 +892.520919 +892.886153 +892.889050 +893.047658 +893.049523 +893.056216 +893.107432 +893.109763 +893.179093 +893.180758 +905.068892 +910.405217 +918.490623 +918.823856 +919.980099 +923.818324 +924.030877 +924.033342 +933.354578 +933.432100 +933.505560 +933.510821 +933.621044 +933.678487 +933.744721 +933.817281 +938.675385 +938.914412 +938.920706 +940.506385 +940.508383 +946.896422 +947.189163 +947.190295 +947.191360 +947.192293 +947.258094 +947.329089 +947.331886 +947.403748 +947.477740 +952.257722 +952.362251 +952.364016 +952.364882 +952.367080 +952.493087 +952.496350 +952.501378 +952.634112 +952.895084 +952.897116 +954.002542 +954.028117 +954.030115 +954.032013 +954.192519 +954.194617 +954.196715 +954.334510 +954.336741 +955.830213 +955.971904 +958.646494 +958.909331 +958.974199 +959.079793 +959.241398 +965.514186 +965.515918 +965.517882 +965.626773 +965.695038 +965.696737 +965.763004 +965.765168 +965.828205 +965.829970 +965.831835 +966.005860 +967.155110 +967.160838 +967.240225 +967.377954 +967.525539 +967.594470 +967.596868 +967.666265 +967.671959 +968.823640 +969.958737 +970.149846 +970.227202 +970.229466 +971.842351 +971.994000 +972.055571 +973.785506 +974.004654 +974.012113 +974.014843 +974.040684 +974.041417 +974.550940 +975.084007 +980.870015 +980.872579 +981.017600 +981.082435 +981.083002 +981.085466 +981.088063 +981.152965 +981.155163 +981.221663 +981.298319 +983.569379 +987.883261 +987.890554 +988.129615 +988.131446 +988.133278 +988.269408 +988.271905 +988.342735 +988.345199 +994.706498 +994.894976 +994.971266 +994.973264 +995.094010 +995.272098 +995.274063 +995.274562 +995.275828 +995.345591 +996.935167 +996.937165 +996.939196 +996.946822 +997.155779 +997.221613 +1001.597733 +1001.619511 +1001.864166 +1001.866930 +1001.972524 +1003.598730 +1003.891737 +1003.902459 +1004.024570 +1004.105023 +1007.429162 +1007.721703 +1007.851873 +1008.028196 +1008.028429 +1008.030727 +1008.042282 +1008.290467 +1009.134256 +1009.321535 +1009.324498 +1009.366723 +1009.372184 +1009.470586 +1009.484738 +1012.460859 +1013.080972 +1013.083569 +1013.148504 +1013.209976 +1013.211041 +1013.212007 +1013.214138 +1013.278441 +1013.282470 +1013.348171 +1013.414671 +1013.417002 +1013.419533 +1013.423129 +1014.022462 +1017.677803 +1018.544969 +1018.546867 +1018.550596 +1018.552428 +1018.685295 +1018.748965 +1018.751129 +1018.753260 +1018.756457 +1018.758189 +1020.324288 +1020.326619 +1020.355357 +1020.492186 +1020.634344 +1024.185689 +1025.691848 +1025.829277 +1031.321613 +1031.323611 +1031.447120 +1031.449485 +1031.455512 +1031.521313 +1032.366400 +1040.234091 +1040.234458 +1040.237155 +1040.421071 +1040.477847 +1040.480744 +1090.823718 +1099.195704 +1116.058324 +1118.448632 +1120.637807 +1120.722689 +1120.723388 +1120.844633 +1120.846232 +1120.848063 +1121.437706 +1121.441436 +1129.061575 +1129.068235 +1129.210159 +1129.213922 +1129.279823 +1129.281921 +1129.342793 +1129.346390 +1129.348055 +1129.406430 +1129.408627 +1129.414522 +1129.472830 +1129.604831 +1129.605464 +1133.213852 +1133.910854 +1135.783313 +1138.142385 +1139.303256 +1139.318841 +1139.469923 +1139.545314 +1139.598894 +1146.320665 +1146.321964 +1146.395723 +1146.456962 +1146.457661 +1146.459460 +1146.460825 +1146.584168 +1146.586166 +1146.587531 +1146.604448 +1146.606412 +1146.641544 +1146.643609 +1146.645740 +1148.993223 +1149.221428 +1149.223493 +1151.736044 +1151.740507 +1151.927386 +1151.996450 +1151.998249 +1151.999947 +1152.066414 +1152.129684 +1152.133979 +1152.190356 +1152.191755 +1152.192388 +1152.194019 +1152.261418 +1152.265081 +1152.330216 +1152.332914 +1154.909734 +1154.914496 +1155.041302 +1155.195248 +1155.197146 +1155.199211 +1155.347596 +1155.348362 +1155.351159 +1155.464412 +1155.528015 +1158.752221 +1158.977362 +1158.979294 +1158.981259 +1159.009863 +1159.067106 +1159.141498 +1159.225681 +1159.309996 +1159.311961 +1159.518887 +1159.533306 +1159.601538 +1159.602370 +1159.736403 +1163.666602 +1163.675726 +1163.678224 +1163.867401 +1163.873328 +1163.938396 +1163.939995 +1163.941627 +1163.943491 +1164.011823 +1164.077224 +1164.151816 +1167.005160 +1167.021577 +1167.245020 +1167.246185 +1167.247118 +1167.392306 +1167.394171 +1167.396901 +1167.399066 +1167.464134 +1167.529335 +1167.531600 +1167.602429 +1167.612452 +1167.745752 +1171.155372 +1171.419142 +1171.421006 +1171.422871 +1171.424803 +1171.568292 +1171.615079 +1172.754338 +1172.754904 +1172.887905 +1172.891801 +1172.957968 +1174.302522 +1174.538686 +1174.540584 +1174.542415 +1174.576614 +1174.579045 +1174.587936 +1174.745012 +1174.745978 +1174.747210 +1174.816607 +1174.870054 +1174.886271 +1174.947143 +1175.086970 +1175.229827 +1177.265589 +1177.268386 +1177.342213 +1177.344677 +1177.414041 +1177.416338 +1177.534687 +1177.537151 +1177.548473 +1177.577843 +1178.802651 +1178.876810 +1178.879107 +1178.881239 +1178.897722 +1178.983003 +1178.983669 +1179.052501 +1179.201418 +1179.210676 +1179.277808 +1181.419298 +1181.528822 +1181.692391 +1181.695089 +1181.963653 +1181.966251 +1182.039877 +1182.042341 +1182.815201 +1182.819097 +1182.894388 +1182.963652 +1182.964918 +1183.046203 +1183.057525 +1184.749864 +1184.751762 +1184.753660 +1184.815698 +1184.895552 +1184.897350 +1184.898982 +1184.901013 +1184.906974 +1184.955691 +1184.957823 +1185.105308 +1185.106374 +1185.108472 +1185.110969 +1185.172641 +1185.174406 +1185.177536 +1185.236577 +1185.238508 +1185.243936 +1185.313267 +1185.320626 +1185.386593 +1185.387160 +1185.388625 +1185.455924 +1189.393616 +1189.396213 +1189.467142 +1189.469407 +1189.536240 +1189.541701 +1189.606536 +1189.608134 +1189.612830 +1189.678331 +1189.680795 +1189.748794 +1189.749659 +1189.754088 +1189.863679 +1189.865910 +1189.868807 +1189.941434 +1189.946529 +1190.101907 +1193.651154 +1193.829509 +1193.831540 +1193.898706 +1193.900471 +1193.903568 +1193.905699 +1193.976129 +1193.989549 +1193.993711 +1194.057381 +1194.058979 +1194.065373 +1194.145659 +1194.147823 +1194.150221 +1194.153917 +1194.156248 +1194.305299 +1194.307297 +1194.309328 +1194.318453 +1195.520982 +1195.523913 +1196.580022 +1196.592809 +1196.946355 +1196.948587 +1197.078223 +1197.079922 +1197.081487 +1197.083518 +1197.177624 +1197.198803 +1197.201067 +1197.274727 +1197.276691 +1197.353914 +1197.357610 +1197.447221 +1197.448952 +1197.456212 +1197.459475 +1197.536998 +1197.584950 +1197.587380 +1197.763071 +1197.765269 +1197.765868 +1199.391941 +1199.765234 +1200.001098 +1200.107291 +1200.279053 +1200.302529 +1200.304660 +1200.306692 +1200.404261 +1200.476089 +1200.481783 +1200.483581 +1200.485180 +1200.487078 +1200.494304 +1200.571726 +1200.583015 +1200.641690 +1200.785146 +1200.795469 +1200.856941 +1200.859039 +1200.868962 +1200.931400 +1201.081749 +1201.084247 +1201.112419 +1201.114650 +1201.283980 +1204.152609 +1204.154873 +1204.234227 +1204.237057 +1204.303957 +1204.438889 +1204.442785 +1204.510284 +1204.513747 +1206.059067 +1208.894529 +1208.954702 +1208.956933 +1209.028794 +1209.096193 +1209.100423 +1209.101155 +1209.103686 +1209.253636 +1210.094161 +1210.499422 +1210.690964 +1210.692995 +1210.911243 +1211.101786 +1211.104017 +1212.120699 +1212.163423 +1212.165754 +1212.201918 +1212.204016 +1212.205881 +1212.206180 +1212.391062 +1212.392893 +1212.394658 +1212.399420 +1212.403450 +1212.476243 +1212.478574 +1212.500386 +1212.608711 +1212.611242 +1212.613606 +1212.616237 +1214.044640 +1214.046372 +1214.048203 +1214.143641 +1214.293857 +1214.298786 +1214.300351 +1214.302249 +1214.303847 +1214.441609 +1214.443840 +1214.613337 +1214.615369 +1214.619598 +1214.796920 +1214.799151 +1215.717599 +1215.719763 +1215.721728 +1215.731651 +1215.734016 +1215.923559 +1216.011238 +1216.013569 +1216.027156 +1216.029120 +1216.033582 +1216.222993 +1216.280569 +1216.380702 +1216.382999 +1216.519196 +1216.676905 +1216.679136 +1216.685596 +1216.817664 +1216.819795 +1216.821960 +1216.955560 +1217.074507 +1217.076339 +1217.076672 +1217.077970 +1217.338476 +1217.340940 +1217.369445 +1217.372842 +1217.423591 +1217.425622 +1217.429618 +1217.640474 +1217.643038 +1217.693787 +1217.696018 +1217.774573 +1217.776438 +1217.778070 +1217.779968 +1217.901346 +1217.999947 +1218.003744 +1218.059754 +1218.061419 +1218.063251 +1218.101746 +1218.105475 +1218.278635 +1218.280633 +1218.282964 +1218.366314 +1218.523057 +1218.592288 +1218.594253 +1218.602811 +1218.604509 +1218.665548 +1218.667279 +1218.668778 +1218.670443 +1218.765481 +1218.829084 +1218.830982 +1218.836077 +1218.837775 +1218.839674 +1218.842671 +1218.927685 +1218.929850 +1219.001778 +1219.003776 +1219.005607 +1219.008971 +1219.011169 +1219.013133 +1219.064415 +1219.102344 +1219.204175 +1219.206107 +1219.211202 +1219.363050 +1221.773437 +1221.775501 +1221.823287 +1221.861848 +1221.881096 +1221.883926 +1222.011832 +1222.013830 +1222.082627 +1222.084625 +1222.086823 +1222.154489 +1222.156420 +1222.158152 +1222.160050 +1222.169407 +1222.321388 +1222.323187 +1222.324852 +1222.355687 +1222.357652 +1222.359517 +1222.361914 +1222.477366 +1222.512863 +1222.515561 +1224.526847 +1224.559714 +1224.562378 +1224.637836 +1224.797610 +1224.953953 +1224.957550 +1225.163677 +1225.165841 +1225.167772 +1225.295744 +1225.298242 +1225.412261 +1225.414792 +1225.441665 +1225.443929 +1225.446160 +1225.596577 +1225.599307 +1225.696610 +1225.699673 +1225.721785 +1225.724182 +1225.963010 +1226.027312 +1226.139267 +1226.141498 +1226.143462 +1226.259147 +1226.333406 +1226.335204 +1226.336869 +1226.358847 +1226.361011 +1226.362843 +1226.562177 +1226.564275 +1226.566372 +1226.811194 +1226.814491 +1226.885153 +1226.887717 +1227.272332 +1227.274897 +1227.472565 +1227.475129 +1227.776894 +1227.778859 +1227.780624 +1227.783088 +1227.890147 +1228.047457 +1228.049155 +1228.155515 +1228.157446 +1228.231905 +1228.300603 +1228.302202 +1228.372798 +1228.429607 +1228.665671 +1228.672764 +1228.674662 +1228.676394 +1228.934768 +1228.936733 +1228.938565 +1228.948288 +1228.950386 +1229.030273 +1229.035701 +1229.037965 +1229.235268 +1229.237166 +1229.238897 +1229.241228 +1229.251585 +1229.447755 +1229.536133 +1229.556812 +1229.559010 +1229.726110 +1229.729306 +1229.730871 +1229.830039 +1229.831870 +1229.833569 +1229.835667 +1229.898670 +1229.900468 +1230.039130 +1230.040728 +1230.044724 +1230.165170 +1230.166835 +1230.168334 +1230.169999 +1230.239163 +1230.241161 +1230.243225 +1230.254514 +1230.301101 +1230.306029 +1230.481753 +1230.483485 +1230.485017 +1230.486781 +1230.633168 +1230.653015 +1230.654980 +1230.795539 +1230.797271 +1230.798869 +1230.800634 +1230.967867 +1231.001400 +1231.003764 +1231.357377 +1231.359375 +1231.361373 +1231.460806 +1231.462871 +1231.464936 +1231.609891 +1231.696937 +1231.698868 +1231.700533 +1231.984549 +1231.986847 +1232.211455 +1232.267299 +1232.268997 +1232.270529 +1232.272394 +1232.516949 +1232.602264 +1232.604062 +1232.605627 +1232.607492 +1232.927039 +1232.928770 +1232.930269 +1232.932067 +1233.254045 +1233.255743 +1233.258973 +1233.261404 +1233.359905 +1233.453112 +1233.610122 +1233.612153 +1233.614184 +1233.698100 +1233.925972 +1233.927637 +1233.929102 +1233.930867 +1233.932998 +1234.000431 +1234.228070 +1234.229768 +1234.231300 +1234.232998 +1234.236661 +1234.319412 +1234.536494 +1234.538093 +1234.539525 +1234.541090 +1234.543121 +1234.605958 +1234.891939 +1234.893670 +1234.895169 +1234.896867 +1234.899331 +1235.195202 +1235.197233 +1235.199231 +1235.279584 +1235.461102 +1235.463100 +1235.464965 +1235.801528 +1235.803360 +1235.804858 +1235.806856 +1235.850712 +1236.170359 +1236.172090 +1236.173622 +1236.175387 +1236.487608 +1236.489373 +1236.490805 +1236.492503 +1236.494601 +1236.766229 +1236.767927 +1236.769393 +1236.771091 +1237.030498 +1237.032163 +1237.033728 +1237.035493 +1237.039089 +1237.248380 +1237.341919 +1237.343584 +1237.345183 +1237.349179 +1237.666661 +1237.668326 +1237.669758 +1237.671423 +1237.673354 +1237.678749 +1237.680580 +1237.990970 +1237.992668 +1237.994133 +1237.995865 +1237.999162 +1238.001126 +1238.002958 +1238.006055 +1238.056071 +1238.301492 +1238.303191 +1238.304689 +1238.306421 +1238.308585 +1238.354040 +1238.355971 +1238.557836 +1238.559567 +1238.561132 +1238.562897 +1238.574819 +1238.649977 +1238.794599 +1238.796230 +1238.797662 +1238.799261 +1238.801458 +1238.987206 +1238.989204 +1239.087439 +1239.089170 +1239.090736 +1239.092467 +1239.095231 +1239.101059 +1239.102624 +1239.299660 +1239.301425 +1239.303123 +1239.305654 +1239.426233 +1239.427998 +1239.429430 +1239.431161 +1239.434458 +1239.735557 +1239.738754 +1239.740452 +1239.742750 +1239.964361 +1240.018807 +1240.020505 +1240.022003 +1240.023835 +1240.025999 +1240.341217 +1240.342882 +1240.344381 +1240.346079 +1240.348643 +1240.366325 +1240.368257 +1240.641350 +1240.643581 +1240.689502 +1240.691200 +1240.692699 +1240.694497 +1240.941550 +1240.947211 +1240.955835 +1240.957600 +1240.958999 +1240.960830 +1241.129328 +1241.290500 +1241.292298 +1241.293930 +1241.295828 +1241.549374 +1241.551139 +1241.572152 +1241.573883 +1241.575382 +1241.577313 +1241.945811 +1241.947476 +1241.949008 +1241.950606 +1241.953570 +1242.241515 +1242.243380 +1242.251405 +1242.253037 +1242.254535 +1242.256200 +1242.258232 +1242.561828 +1242.563559 +1242.565124 +1242.566956 +1242.876246 +1242.878111 +1242.879743 +1242.881774 +1243.032923 +1243.037119 +1243.230059 +1243.231824 +1243.233355 +1243.235187 +1243.335919 +1243.584870 +1243.585803 +1243.587534 +1243.589099 +1243.590864 +1243.759129 +1243.866455 +1243.868153 +1243.869685 +1243.871450 +1244.175113 +1244.176878 +1244.178443 +1244.180308 +1244.182705 +1244.475279 +1244.477011 +1244.478542 +1244.480241 +1244.482638 +1245.103883 +1245.105715 +1245.107346 +1245.109311 +1245.344076 +1245.345808 +1245.349071 +1245.354332 +1245.953233 +1245.955297 +1245.957395 +1246.083802 +1246.200818 +1246.202550 +1246.204015 +1246.205713 +1246.558693 +1246.560658 +1246.562456 +1246.564987 +1246.827957 +1246.829689 +1246.831187 +1246.832986 +1246.836082 +1247.101117 +1247.102815 +1247.104314 +1247.105946 +1247.108077 +1247.228523 +1247.447371 +1247.449135 +1247.450634 +1247.452299 +1247.454630 +1247.790094 +1247.791892 +1247.793391 +1247.795056 +1247.935415 +1247.937380 +1248.045305 +1248.046904 +1248.048336 +1248.282801 +1248.284632 +1248.284899 +1248.286331 +1248.286930 +1248.463387 +1248.549068 +1248.551099 +1248.552997 +1248.692591 +1248.694689 +1248.696753 +1248.822028 +1248.823793 +1248.825325 +1248.827123 +1248.993323 +1249.142274 +1249.144239 +1249.178571 +1249.180269 +1249.181701 +1249.183300 +1249.185298 +1249.302680 +1249.304512 +1249.306276 +1249.308341 +1249.486296 +1249.490059 +1249.492224 +1249.499949 +1249.501847 +1249.503646 +1249.505810 +1249.546036 +1249.565850 +1249.567781 +1249.569646 +1249.572377 +1249.797451 +1249.799749 +1249.824225 +1249.825990 +1249.827588 +1249.829519 +1250.138610 +1250.149865 +1250.151564 +1250.152962 +1250.154594 +1250.156559 +1250.213402 +1250.215366 +1250.217231 +1250.261620 +1250.444637 +1250.449965 +1250.511104 +1250.604011 +1250.605809 +1250.608906 +1250.815532 +1250.844270 +1250.846235 +1250.848066 +1251.249232 +1251.337909 +1251.339708 +1251.341173 +1251.345535 +1251.492621 +1251.499448 +1251.691389 +1251.693087 +1251.694652 +1251.696451 +1251.954592 +1251.976370 +1251.977969 +1251.979467 +1251.981265 +1251.983397 +1252.329850 +1252.331348 +1252.333213 +1252.335777 +1252.342071 +1252.666579 +1252.809303 +1252.811002 +1252.812433 +1252.815997 +1252.978101 +1253.157022 +1253.158787 +1253.160252 +1253.161950 +1253.305939 +1253.526119 +1253.529316 +1253.532513 +1253.817394 +1253.819026 +1253.820491 +1253.825020 +1254.381430 +1254.383161 +1254.384660 +1254.386425 +1254.391952 +1254.881962 +1254.971073 +1255.100044 +1255.101709 +1255.109334 +1255.111132 +1255.112598 +1255.114363 +1255.676367 +1255.916992 +1255.952490 +1255.955421 +1256.303039 +1256.304937 +1256.306636 +1256.308634 +1256.616692 +1256.800575 +1256.802240 +1256.803771 +1256.805536 +1257.244564 +1257.414394 +1257.416158 +1257.419821 +1257.420521 +1257.600840 +1257.817956 +1257.819655 +1257.821086 +1257.822718 +1257.825748 +1258.392714 +1258.394379 +1258.395811 +1258.399940 +1258.489651 +1259.054285 +1259.056150 +1259.057749 +1259.059647 +1259.342663 +1259.344428 +1259.345993 +1259.347858 +1259.368338 +1259.641731 +1259.668704 +1259.670369 +1259.671934 +1259.673599 +1259.676862 +1260.010828 +1260.035437 +1260.037102 +1260.038533 +1260.040198 +1260.042130 +1260.390847 +1260.697141 +1260.700371 +1260.702069 +1260.704700 +1261.026811 +1261.028443 +1261.029808 +1261.031473 +1261.033704 +1262.035568 +1262.037466 +1262.039131 +1262.319084 +1262.320749 +1262.322148 +1262.323746 +1262.326110 +1262.332471 +1262.567668 +1262.569234 +1262.571032 +1263.141228 +1263.143026 +1263.144691 +1263.146522 +1263.180588 +1263.374128 +1263.375993 +1263.377591 +1263.379556 +1263.470931 +1263.472563 +1263.484984 +1263.940561 +1263.942392 +1263.944024 +1263.946122 +1264.079189 +1264.081153 +1264.515219 +1264.517017 +1264.518616 +1264.520414 +1264.648053 +1264.650384 +1264.876324 +1264.877956 +1264.879454 +1264.881186 +1264.883550 +1265.516617 +1265.538961 +1265.540826 +1265.542790 +1265.545155 +1265.665101 +1265.668997 +1265.811588 +1265.827805 +1265.847352 +1265.851315 +1265.855411 +1265.857309 +1265.872927 +1265.908191 +1265.994571 +1265.996403 +1265.998068 +1266.000532 +1266.281151 +1266.282850 +1266.330735 +1266.332467 +1266.333932 +1266.335697 +1266.337961 +1266.585913 +1266.587611 +1266.779552 +1266.781517 +1266.783315 +1266.808657 +1266.810421 +1266.811987 +1266.813951 +1266.950448 +1266.951980 +1266.953778 +1266.955743 +1267.120711 +1267.122376 +1267.123841 +1267.125473 +1267.127737 +1267.210055 +1267.211886 +1267.229902 +1267.231567 +1267.233498 +1267.507424 +1267.509055 +1267.510487 +1267.512119 +1267.514084 +1267.578253 +1267.585246 +1267.590441 +1268.118112 +1268.119844 +1268.121376 +1268.123307 +1268.418845 +1268.452511 +1268.734928 +1268.736793 +1269.050512 +1269.052277 +1269.053909 +1269.055840 +1269.112950 +1269.337558 +1269.339290 +1269.340789 +1269.342553 +1269.491504 +1269.914048 +1269.915846 +1269.917378 +1269.919309 +1270.053508 +1270.309053 +1270.310751 +1270.313948 +1270.715945 +1270.768792 +1270.770691 +1270.772422 +1271.073188 +1271.074886 +1271.076318 +1271.078083 +1271.079282 +1271.080614 +1271.081679 +1271.349278 +1271.351010 +1271.352508 +1271.354206 +1271.356238 +1271.638489 +1271.640253 +1271.641785 +1271.643484 +1271.739687 +1271.918275 +1271.931096 +1271.932794 +1271.934359 +1271.936024 +1272.206820 +1272.209883 +1272.213613 +1272.445547 +1272.449310 +1272.533426 +1272.535158 +1272.536689 +1272.538388 +1272.540819 +1272.726133 +1272.831261 +1272.832926 +1272.834325 +1272.835890 +1272.837821 +1273.026566 +1273.108550 +1273.110149 +1273.111581 +1273.113146 +1273.115110 +1273.417075 +1273.481410 +1273.483442 +1273.485240 +1273.772785 +1273.774617 +1273.776215 +1273.778080 +1274.081410 +1274.083141 +1274.084673 +1274.086438 +1274.372918 +1274.374616 +1274.376082 +1274.377680 +1274.514410 +1274.670520 +1274.679045 +1274.680976 +1274.684773 +1274.755435 +1274.757367 +1274.759032 +1274.857400 +1275.076647 +1275.078445 +1275.079944 +1275.081775 +1275.201256 +1275.411145 +1275.412910 +1275.414475 +1275.416340 +1275.674016 +1275.681142 +1275.682907 +1275.684372 +1275.686137 +1275.697459 +1275.984305 +1275.986037 +1275.987602 +1275.989267 +1275.990166 +1276.291165 +1276.292929 +1276.294428 +1276.296226 +1276.298857 +1276.346542 +1276.348341 +1276.543812 +1276.545577 +1276.547075 +1276.548840 +1276.733788 +1276.948440 +1276.950271 +1276.951936 +1276.954001 +1277.270185 +1277.272083 +1277.273748 +1277.275746 +1277.549372 +1277.551303 +1277.553035 +1277.822698 +1277.824396 +1277.825928 +1277.827826 +1278.021100 +1278.023131 +1278.101020 +1278.102784 +1278.104483 +1278.305015 +1278.306913 +1278.423930 +1278.426294 +1278.428225 +1278.429957 +1278.596191 +1278.598621 +1278.600120 +1278.875078 +1278.928291 +1278.930456 +1279.040479 +1279.152534 +1279.218834 +1279.221098 +1279.450669 +1284.687926 +1286.893685 +1290.927480 +1291.014060 +1295.886583 +1299.433166 +1301.507323 +1302.140789 +1303.198564 +1303.705523 +1303.844550 +1303.980581 +1307.916374 +1308.049741 +1308.052138 +1310.264491 +1310.692096 +1313.044275 +1313.528257 +1313.978340 +1314.921129 +1316.041608 +1316.387828 +1317.062020 +1318.447533 +1318.502611 +1318.741871 +1320.278500 +1320.426152 +1321.098246 +1321.376201 +1322.590652 +1327.162342 +1327.684320 +1329.568301 +1329.717884 +1329.973628 +1331.107160 +1332.690409 +1333.939725 +1337.840354 +1337.870257 +1337.872888 +1340.014244 +1360.971766 +1387.994882 +1388.472071 +1388.821621 +1389.601374 +1389.682460 +1390.309632 +1390.692282 +1392.539800 +1398.570929 +1426.863841 +1426.987517 +1427.046625 +1427.049156 +1430.477824 +1438.365128 +1447.123261 +1448.254962 +1454.633743 +1454.721389 +1454.723187 +1459.530575 +1460.884620 +1460.886618 +1461.602734 +1462.682320 +1462.797272 +1462.874827 +1462.895074 +1471.185042 +1471.263597 +1476.670851 +1486.717694 +1491.184556 +1496.036399 +1496.766935 +1497.066435 +1497.070564 +1497.145689 +1497.146089 +1504.702824 +1504.799661 +1504.801759 +1504.957536 +1504.959767 +1505.020806 +1505.024069 +1505.090303 +1505.149943 +1505.154572 +1505.220473 +1505.279780 +1505.284708 +1506.558001 +1510.559495 +1510.918303 +1510.920567 +1511.074213 +1511.074979 +1511.151835 +1511.217203 +1511.219301 +1511.223664 +1511.281705 +1511.343976 +1511.855198 +1516.512603 +1516.515000 +1516.675906 +1516.738343 +1516.741374 +1516.742106 +1516.811770 +1516.813701 +1516.881200 +1516.883098 +1520.067544 +1520.069842 +1520.071906 +1520.072539 +1520.077634 +1520.205606 +1520.270541 +1520.273205 +1520.276468 +1520.397481 +1520.526685 +1520.529149 +1520.531646 +1524.613793 +1524.686188 +1524.686387 +1524.687353 +1524.688019 +1524.817057 +1524.873633 +1524.934406 +1524.986021 +1527.968768 +1528.171432 +1528.173563 +1528.183054 +1528.254582 +1529.311158 +1529.975426 +1529.977891 +1530.062339 +1530.148986 +1530.185816 +1530.188646 +1530.209725 +1530.212689 +1531.197836 +1531.200966 +1531.361239 +1531.363071 +1531.364769 +1531.444922 +1531.446687 +1531.466334 +1531.524642 +1531.526607 +1531.528472 +1531.679521 +1531.685248 +1531.686214 +1531.687945 +1531.689677 +1531.690510 +1531.692308 +1531.694106 +1531.695604 +1531.854445 +1531.969364 +1531.972094 +1531.974226 +1535.214449 +1535.377053 +1535.494868 +1535.638125 +1535.714881 +1535.716713 +1535.740023 +1535.741821 +1535.743419 +1535.811418 +1535.813782 +1535.884178 +1535.886176 +1535.951977 +1535.952676 +1535.954475 +1536.024937 +1536.093635 +1536.095733 +1536.104758 +1536.118577 +1536.225537 +1536.227934 +1536.309053 +1536.310452 +1536.311650 +1537.927666 +1538.009451 +1538.052841 +1538.260433 +1538.263930 +1538.265661 +1538.267359 +1538.268991 +1538.415611 +1538.480113 +1538.481945 +1538.485608 +1538.488072 +1538.488272 +1538.490037 +1538.491801 +1538.567859 +1538.568691 +1538.569890 +1538.643849 +1538.645781 +1538.648212 +1538.652274 +1538.718808 +1538.721105 +1538.799260 +1538.799826 +1538.801325 +1538.801991 +1538.883243 +1538.956303 +1538.957569 +1538.960699 +1540.808449 +1540.966291 +1540.969155 +1541.147143 +1541.256301 +1541.258965 +1541.390333 +1541.393763 +1541.396361 +1541.448142 +1541.454902 +1541.535122 +1541.537053 +1541.539218 +1541.603786 +1541.605385 +1541.644745 +1541.692264 +1541.694229 +1541.769254 +1541.860729 +1541.862827 +1541.866856 +1541.931891 +1542.079210 +1543.846675 +1544.031623 +1544.033621 +1544.035852 +1544.118802 +1544.251336 +1544.253734 +1544.256065 +1544.270217 +1544.271882 +1544.272615 +1544.439215 +1544.443144 +1544.444809 +1544.447506 +1544.592395 +1544.682638 +1544.684636 +1544.688332 +1544.834552 +1544.837150 +1544.908612 +1544.911309 +1545.025095 +1546.309043 +1546.378906 +1546.381038 +1546.383535 +1546.426059 +1546.427524 +1546.674477 +1546.676375 +1546.683135 +1546.685733 +1546.691660 +1546.821730 +1546.823794 +1546.839778 +1546.842109 +1546.922662 +1547.007943 +1547.009608 +1547.011240 +1547.013138 +1547.018666 +1547.088296 +1547.090594 +1547.176142 +1547.178173 +1547.180371 +1547.183368 +1547.186764 +1547.190094 +1547.395655 +1547.398053 +1547.412305 +1547.560524 +1547.563421 +1548.870213 +1548.871278 +1549.204744 +1549.206942 +1549.208374 +1549.486229 +1549.488527 +1549.545470 +1549.550065 +1549.558324 +1549.560522 +1549.562520 +1549.792689 +1549.795253 +1549.834980 +1549.837911 +1550.426621 +1550.428852 +1550.431084 +1550.497051 +1550.499016 +1550.500681 +1550.501946 +1550.503944 +1550.505975 +1550.702678 +1550.705143 +1550.764949 +1550.766714 +1550.792255 +1550.910137 +1550.939541 +1550.941972 +1551.026254 +1551.028452 +1551.524156 +1551.611935 +1552.191355 +1552.193153 +1552.347765 +1552.350196 +1552.394951 +1552.396649 +1552.398647 +1552.402643 +1552.404508 +1552.406306 +1552.500812 +1552.597015 +1552.599147 +1552.605973 +1552.608238 +1552.676436 +1552.678600 +1552.680598 +1552.785960 +1552.795883 +1552.914398 +1552.917095 +1552.921591 +1552.925786 +1553.214864 +1553.285726 +1553.287591 +1553.291054 +1553.318094 +1553.320724 +1553.587457 +1553.589955 +1553.593152 +1553.620591 +1553.622522 +1553.624354 +1553.685426 +1553.687291 +1553.783528 +1553.834943 +1553.893518 +1553.895249 +1553.896681 +1553.898346 +1553.905039 +1554.101909 +1554.193717 +1554.196881 +1554.198779 +1554.368342 +1554.583993 +1554.585958 +1554.587823 +1554.688355 +1554.694150 +1554.872371 +1554.874669 +1555.151325 +1555.153690 +1555.514662 +1555.517026 +1555.611265 +1555.701808 +1555.703706 +1555.705437 +1555.707469 +1555.923752 +1556.038970 +1556.041135 +1556.290885 +1556.293715 +1556.300242 +1556.302007 +1556.303472 +1556.305137 +1556.307967 +1556.577364 +1556.579329 +1556.581127 +1556.617724 +1556.619622 +1556.859149 +1556.860914 +1556.862479 +1556.864410 +1557.134407 +1557.136138 +1557.137704 +1557.139535 +1557.242532 +1557.438802 +1557.440634 +1557.442232 +1557.444230 +1557.740966 +1557.744563 +1557.774699 +1557.776631 +1557.778329 +1557.780760 +1557.886188 +1558.068305 +1558.070037 +1558.071669 +1558.094546 +1558.096610 +1558.204969 +1558.358149 +1558.361245 +1558.363077 +1558.364209 +1558.365475 +1558.451056 +1558.509430 +1558.512561 +1558.515891 +1558.518988 +1558.608465 +1558.610396 +1558.612128 +1558.659280 +1558.661112 +1558.662710 +1558.664842 +1558.812960 +1558.816157 +1558.818221 +1558.820752 +1558.947425 +1558.949523 +1558.951588 +1558.967372 +1558.969070 +1558.970569 +1558.972367 +1558.974465 +1559.122317 +1559.125647 +1559.127379 +1559.129377 +1559.264275 +1559.265973 +1559.267438 +1559.269070 +1559.271834 +1559.309896 +1559.311927 +1559.314225 +1559.422949 +1559.424814 +1559.426313 +1559.428011 +1559.430009 +1559.544394 +1559.548291 +1559.572267 +1559.574031 +1559.575630 +1559.577361 +1559.742729 +1559.749689 +1559.869303 +1559.871301 +1559.873232 +1559.903468 +1559.905167 +1559.906698 +1559.908530 +1560.058513 +1560.060511 +1560.182323 +1560.184254 +1560.186119 +1560.218053 +1560.219785 +1560.221383 +1560.223248 +1560.355449 +1560.360511 +1560.362942 +1560.499072 +1560.507297 +1560.508829 +1560.511193 +1560.676594 +1560.680024 +1560.681756 +1560.754616 +1560.786651 +1560.791280 +1560.791846 +1560.793411 +1560.794476 +1560.962342 +1560.963973 +1560.965971 +1560.983787 +1560.985718 +1560.987517 +1561.005299 +1561.097540 +1561.099338 +1561.199704 +1561.201569 +1561.203301 +1561.204399 +1561.205865 +1561.209827 +1561.341829 +1561.448722 +1561.450786 +1561.452651 +1561.454449 +1561.487683 +1561.528642 +1561.534136 +1561.669434 +1561.693610 +1561.695508 +1561.842361 +1561.890613 +1561.892611 +1561.894375 +1561.896806 +1561.966636 +1561.968834 +1561.971032 +1562.242860 +1562.244958 +1562.246823 +1562.248954 +1562.345624 +1562.347755 +1562.349620 +1562.534168 +1562.623312 +1562.625244 +1562.626842 +1563.024311 +1563.026309 +1563.028074 +1563.033702 +1563.035533 +1563.314920 +1563.316685 +1563.318317 +1563.320248 +1563.416452 +1563.533168 +1563.534867 +1563.538396 +1563.745656 +1563.762439 +1563.764337 +1563.766002 +1563.768000 +1563.981686 +1563.983451 +1563.985016 +1563.986947 +1564.071796 +1564.183684 +1564.185482 +1564.187114 +1564.189045 +1564.294873 +1564.461173 +1564.463137 +1564.687613 +1564.689677 +1564.691609 +1564.912621 +1564.914519 +1564.937995 +1564.939760 +1564.943090 +1564.945222 +1564.959640 +1564.961339 +1564.962871 +1564.964735 +1565.229703 +1565.231535 +1565.233067 +1565.234832 +1565.236930 +1565.283883 +1565.419480 +1565.421345 +1565.425241 +1565.448018 +1565.451415 +1565.453146 +1565.455477 +1565.554911 +1565.556943 +1565.558774 +1565.773393 +1565.775291 +1565.777056 +1565.781618 +1565.788844 +1565.954711 +1565.956509 +1565.958074 +1565.959939 +1566.092440 +1566.095670 +1566.097335 +1566.099233 +1566.261637 +1566.263435 +1566.265000 +1566.266965 +1566.425706 +1566.427405 +1566.429436 +1566.431467 +1566.435696 +1566.508557 +1566.575290 +1566.577055 +1566.578587 +1566.580418 +1566.738593 +1566.740425 +1566.741890 +1566.743655 +1566.745619 +1566.747917 +1566.750215 +1566.938560 +1567.096368 +1567.176655 +1567.178453 +1567.180051 +1567.181883 +1567.347350 +1567.349348 +1567.351180 +1567.587610 +1567.589341 +1567.590840 +1567.592572 +1567.659105 +1567.661103 +1567.662901 +1567.859638 +1567.861502 +1567.863001 +1567.864932 +1567.967530 +1568.142921 +1568.144719 +1568.146317 +1568.438891 +1568.440523 +1568.442021 +1568.443686 +1568.521608 +1568.523540 +1568.673589 +1568.709753 +1568.711485 +1568.713017 +1568.714782 +1568.718644 +1569.049347 +1569.051278 +1569.052976 +1569.055441 +1569.134661 +1569.136360 +1569.137791 +1569.139423 +1569.141987 +1569.268327 +1569.269992 +1569.468194 +1569.469859 +1569.471324 +1569.472856 +1569.474754 +1569.635060 +1569.786575 +1569.788340 +1569.789905 +1569.791537 +1569.794967 +1569.861634 +1569.863632 +1569.866795 +1570.156705 +1570.158337 +1570.159735 +1570.161400 +1570.163232 +1570.513148 +1570.514813 +1570.516245 +1570.517877 +1570.524903 +1570.782379 +1570.784010 +1570.785475 +1570.789205 +1570.976584 +1571.199727 +1571.201526 +1571.203057 +1571.204822 +1571.526134 +1571.527932 +1571.529531 +1571.531462 +1571.859034 +1571.860732 +1571.862298 +1571.864062 +1571.866560 +1571.932261 +1572.170023 +1572.171655 +1572.173120 +1572.174751 +1572.176849 +1572.458701 +1572.463263 +1572.464794 +1572.466426 +1572.467858 +1572.469456 +1572.731594 +1572.765693 +1572.767358 +1572.768790 +1572.770455 +1573.123868 +1573.125566 +1573.127065 +1573.128730 +1573.130794 +1573.430328 +1573.432126 +1573.433758 +1573.436389 +1573.479812 +1573.702023 +1573.703754 +1573.705253 +1573.707018 +1573.709315 +1573.765959 +1573.767657 +1573.999159 +1574.000890 +1574.002322 +1574.004020 +1574.205086 +1574.207150 +1574.217074 +1574.219005 +1574.220837 +1574.302755 +1574.304453 +1574.305951 +1574.307616 +1574.654969 +1574.656767 +1574.658299 +1574.660164 +1574.703154 +1574.792198 +1574.914576 +1574.916374 +1574.917972 +1574.919870 +1575.106284 +1575.199524 +1575.202987 +1575.204718 +1575.206783 +1575.461794 +1575.463493 +1575.464958 +1575.466823 +1575.524365 +1575.527629 +1575.529893 +1575.610179 +1575.612211 +1575.756666 +1575.758364 +1575.759896 +1575.761628 +1575.901321 +1576.212343 +1576.214175 +1576.215773 +1576.217771 +1576.471850 +1576.473715 +1576.475446 +1576.477478 +1576.480974 +1576.482872 +1576.576079 +1576.751004 +1576.752835 +1576.754500 +1576.921467 +1576.923465 +1576.928859 +1576.931257 +1577.308945 +1577.311010 +1577.409645 +1577.411410 +1577.412941 +1577.414806 +1577.628159 +1577.631922 +1577.694326 +1577.696025 +1577.697556 +1577.699288 +1578.213274 +1578.215138 +1578.216737 +1578.218735 +1578.919733 +1578.921598 +1578.923230 +1578.925094 +1579.183003 +1579.184701 +1579.186266 +1579.188064 +1579.434418 +1579.561124 +1579.562889 +1579.564454 +1579.566253 +1579.859759 +1579.861457 +1579.864521 +1579.867784 +1579.868250 +1579.869982 +1580.177108 +1580.178739 +1580.180138 +1580.181703 +1580.183568 +1580.188363 +1580.190295 +1580.192093 +1580.560357 +1580.561956 +1580.564886 +1580.566585 +1580.569915 +1580.571446 +1580.896088 +1580.897720 +1580.899185 +1580.900883 +1581.289994 +1581.291692 +1581.293191 +1581.294889 +1581.621229 +1581.622894 +1581.624392 +1581.626091 +1581.628222 +1581.767316 +1581.964219 +1581.965984 +1581.967482 +1581.969280 +1581.971545 +1582.271911 +1582.280569 +1582.509906 +1582.511671 +1582.513203 +1582.515201 +1582.526123 +1582.909906 +1582.911704 +1582.913302 +1583.013968 +1583.017798 +1583.426222 +1583.427954 +1583.525423 +1583.527288 +1583.528886 +1583.531750 +1583.706408 +1583.708340 +1583.710071 +1583.984996 +1583.986794 +1583.989791 +1583.991723 +1584.409638 +1584.575372 +1584.577403 +1584.694486 +1584.696650 +1584.704576 +1584.706441 +1584.708006 +1584.709870 +1584.967912 +1584.969877 +1584.971875 +1584.996883 +1585.025321 +1585.048232 +1585.049963 +1585.051562 +1585.053327 +1585.056757 +1585.073040 +1585.245834 +1585.247799 +1585.260020 +1585.261751 +1585.263250 +1585.265148 +1585.351628 +1585.353726 +1585.403776 +1585.434811 +1585.438408 +1585.440772 +1585.597782 +1585.599580 +1585.601178 +1585.603110 +1585.712600 +1585.715863 +1585.718061 +1585.731348 +1585.733113 +1585.734778 +1585.865847 +1585.867612 +1585.869077 +1585.870808 +1585.965514 +1585.967611 +1585.969576 +1586.020292 +1586.024455 +1586.115730 +1586.117461 +1586.118993 +1586.120692 +1586.195750 +1586.199979 +1586.585959 +1586.587558 +1586.588923 +1586.590455 +1586.592419 +1586.790787 +1586.792486 +1586.794184 +1587.089255 +1587.091287 +1587.099279 +1587.102575 +1587.104740 +1587.309502 +1587.311533 +1587.313398 +1587.645632 +1587.647463 +1587.648995 +1587.650793 +1587.900976 +1587.902708 +1587.904206 +1587.905905 +1588.519091 +1588.521055 +1588.522820 +1588.525151 +1588.601775 +1588.645864 +1588.880562 +1588.882560 +1588.996846 +1588.998644 +1589.004005 +1589.009633 +1589.012064 +1589.078464 +1589.080329 +1589.081861 +1589.218391 +1589.296046 +1589.299576 +1589.301374 +1589.303572 +1589.412896 +1589.483359 +1589.485290 +1589.487055 +1589.489386 +1589.510132 +1589.617891 +1589.619489 +1589.621354 +1589.790618 +1589.792782 +1589.795147 +1589.898410 +1589.903938 +1589.906069 +1589.986255 +1589.988054 +1589.989552 +1589.991250 +1590.226781 +1590.230844 +1590.231410 +1590.232675 +1590.236072 +1590.329412 +1590.331243 +1590.332842 +1590.334840 +1590.524783 +1590.526515 +1590.528046 +1590.529745 +1590.532076 +1590.574833 +1590.577097 +1590.579428 +1590.626881 +1590.628679 +1590.630277 +1590.632342 +1590.858782 +1590.860414 +1590.862445 +1591.007167 +1591.008965 +1591.010597 +1591.012428 +1591.181326 +1591.183124 +1591.270104 +1591.271902 +1591.273500 +1591.275831 +1591.399541 +1591.402271 +1591.429178 +1591.652987 +1591.655185 +1591.657449 +1591.699640 +1591.701538 +1591.703203 +1591.713626 +1591.716757 +1591.962277 +1592.039101 +1592.040865 +1592.042397 +1592.044229 +1592.155850 +1592.158081 +1592.242231 +1592.243962 +1592.245927 +1592.354252 +1592.356017 +1592.357548 +1592.359513 +1592.479160 +1592.481225 +1592.514658 +1592.517289 +1592.682823 +1592.684521 +1592.686020 +1592.687785 +1592.690116 +1593.028910 +1593.030541 +1593.032040 +1593.033738 +1593.177561 +1593.183222 +1593.303934 +1593.306332 +1593.317021 +1593.318686 +1593.320152 +1593.321717 +1593.323615 +1593.493511 +1593.498873 +1593.606199 +1593.607864 +1593.609362 +1593.610960 +1593.612925 +1593.714956 +1593.935902 +1593.937600 +1593.939132 +1593.940664 +1593.943861 +1594.019551 +1594.021583 +1594.023448 +1594.163541 +1594.279691 +1594.281423 +1594.282954 +1594.284786 +1594.477393 +1594.479458 +1594.491512 +1594.493410 +1594.559877 +1594.561609 +1594.563141 +1594.564906 +1594.761575 +1594.812025 +1595.047589 +1595.049554 +1595.051518 +1595.053217 +1595.055348 +1595.328708 +1595.330473 +1595.332004 +1595.333669 +1595.336167 +1595.623080 +1595.624878 +1595.626410 +1595.628208 +1595.654049 +1595.680089 +1595.681621 +1595.955680 +1595.957545 +1595.959210 +1596.014188 +1596.317718 +1596.319549 +1596.321014 +1596.322779 +1596.376525 +1596.384484 +1596.747454 +1596.996405 +1596.998303 +1596.999868 +1597.002133 +1597.119215 +1597.121180 +1597.123045 +1597.129438 +1597.196405 +1597.198336 +1597.201866 +1597.204863 +1597.207827 +1597.209925 +1597.211823 +1597.414453 +1597.595705 +1597.597803 +1597.599734 +1597.624609 +1597.626707 +1597.765369 +1597.945355 +1597.947187 +1597.948718 +1597.950517 +1597.991209 +1597.993041 +1598.277190 +1598.279154 +1598.386580 +1598.388312 +1598.389910 +1598.391808 +1598.639161 +1598.643556 +1598.783882 +1598.896436 +1598.898368 +1598.900166 +1599.003063 +1599.142290 +1599.144088 +1599.145687 +1599.147718 +1599.351547 +1599.353379 +1599.397535 +1599.401065 +1599.465467 +1599.467232 +1599.468830 +1599.470695 +1599.799799 +1599.924407 +1599.926206 +1599.927737 +1599.929502 +1600.171993 +1600.173891 +1600.175523 +1600.470960 +1600.472592 +1600.899664 +1600.900364 +1600.903461 +1600.907423 +1601.168362 +1601.170060 +1601.171526 +1601.173057 +1601.175089 +1601.306191 +1601.493637 +1601.495268 +1601.496767 +1601.498432 +1601.501096 +1601.689807 +1601.824605 +1601.826337 +1601.827835 +1601.829500 +1601.832397 +1601.999064 +1602.109653 +1602.111385 +1602.112817 +1602.114482 +1602.120043 +1602.468527 +1602.470226 +1602.471724 +1602.583412 +1602.587342 +1602.727168 +1602.728800 +1602.730232 +1602.731864 +1602.733828 +1603.147348 +1603.149146 +1603.150711 +1603.152676 +1603.214947 +1603.217145 +1603.741287 +1603.743185 +1603.744850 +1604.032828 +1604.035992 +1604.039988 +1604.455572 +1604.457470 +1604.459168 +1604.765894 +1604.767593 +1604.769124 +1604.770789 +1605.057036 +1605.058701 +1605.060166 +1605.061732 +1605.063863 +1605.182244 +1605.352008 +1605.361332 +1605.363363 +1605.365095 +1605.628697 +1605.630462 +1605.631894 +1605.633626 +1605.925667 +1605.927332 +1605.928797 +1605.930395 +1605.932959 +1606.163762 +1606.165527 +1606.167092 +1606.169056 +1606.466126 +1606.467724 +1606.469189 +1606.470888 +1606.472886 +1606.931793 +1606.933624 +1606.935190 +1606.937054 +1607.229362 +1607.231193 +1607.232692 +1607.638086 +1607.797327 +1607.799258 +1607.800956 +1608.099025 +1608.100989 +1608.102688 +1608.105019 +1608.314043 +1608.316041 +1608.509281 +1608.511245 +1608.693529 +1608.695527 +1608.697525 +1608.776546 +1608.780010 +1608.781774 +1608.829393 +1608.840049 +1608.842014 +1608.843946 +1609.034288 +1609.036120 +1609.037785 +1609.039583 +1609.090798 +1609.092763 +1609.094561 +1609.366722 +1609.368654 +1609.370252 +1609.372150 +1609.390465 +1609.392197 +1609.435687 +1609.438018 +1609.512310 +1609.514141 +1609.640482 +1609.713109 +1609.715074 +1609.716972 +1609.728493 +1609.730225 +1609.731790 +1609.733455 +1609.950405 +1609.952336 +1609.953968 +1609.956066 +1610.032256 +1610.034054 +1610.035619 +1610.037484 +1610.060794 +1610.062825 +1610.064790 +1610.243411 +1610.246808 +1610.248506 +1610.292829 +1610.294494 +1610.295992 +1610.297724 +1610.330791 +1610.332655 +1610.334420 +1610.535819 +1610.537683 +1610.616238 +1610.618269 +1610.630058 +1610.631856 +1610.633454 +1610.635552 +1610.845142 +1610.846974 +1610.848539 +1610.850304 +1610.885668 +1610.887367 +1610.888899 +1610.890763 +1610.892928 +1610.989864 +1610.992328 +1611.133387 +1611.136984 +1611.138915 +1611.221233 +1611.223031 +1611.224496 +1611.226394 +1611.315005 +1611.316937 +1611.318835 +1611.365555 +1611.417003 +1611.418868 +1611.420433 +1611.422165 +1611.424762 +1611.721032 +1611.722497 +1611.722830 +1611.724562 +1611.726294 +1611.912374 +1611.955431 +1611.957262 +1611.958927 +1612.030123 +1612.032154 +1612.204215 +1612.206147 +1612.208211 +1612.260925 +1612.262723 +1612.264322 +1612.266020 +1612.302950 +1612.304881 +1612.306546 +1612.308478 +1612.593459 +1612.595424 +1612.597189 +1612.632786 +1612.634718 +1612.636516 +1612.665886 +1612.669982 +1612.850335 +1612.852233 +1612.853932 +1613.129356 +1613.218034 +1613.221297 +1613.223029 +1613.609109 +1613.611040 +1613.612739 +1613.911939 +1613.913937 +1613.915835 +1614.301216 +1614.303114 +1614.304813 +1614.553397 +1614.556194 +1614.722494 +1620.145066 +1620.147864 +1620.151294 +1620.153591 +1620.276535 +1628.675061 +1629.954114 +1630.342759 +1633.034697 +1634.014150 +1634.692338 +1634.807623 +1641.709114 +1641.830226 +1641.976680 +1642.150739 +1642.727595 +1644.088732 +1644.175645 +1644.401020 +1644.692827 +1644.734286 +1646.100652 +1646.989662 +1656.341500 +1657.840267 +1659.383655 +1661.130240 +1661.187350 +1662.306996 +1670.188373 +1680.113105 +1689.205037 +1703.781913 +1716.822059 +1716.822459 +1716.825489 +1725.823516 +1741.937086 +1748.765051 +1759.660711 +1759.662176 +1762.411657 +1780.999917 +1786.478666 +1798.971694 +1799.115617 +1799.276822 +1811.652834 +1811.832454 +1811.833619 +1811.836117 +1811.971082 +1824.204703 +1824.271303 +1825.953552 +1838.140186 +1838.341285 +1838.402324 +1838.834325 +1846.353998 +1846.405646 +1846.407278 +1846.408943 +1846.410741 +1846.412806 +1846.554097 +1846.556562 +1852.894950 +1910.052868 +1914.167550 +1926.620584 +1927.903000 +1942.064525 +1954.684759 +1954.856420 +1959.490615 +1959.492579 +1976.813008 +1977.038949 +1977.098955 +1977.101053 +1977.162159 +1977.166554 +1981.154596 +1986.344201 +1986.345999 +1986.347797 +1986.348263 +1986.412133 +1986.417494 +1986.484693 +1986.486991 +1986.550128 +1986.604240 +1986.606105 +1986.607970 +1986.611866 +1986.613564 +1986.677401 +1986.741603 +1986.744633 +1986.805672 +1987.868775 +1987.946330 +1987.949094 +1993.431773 +1993.584453 +1993.588249 +1993.853084 +1995.797571 +1995.881720 +1997.711189 +1997.713820 +1997.824709 +1997.899367 +1998.447818 +1998.858407 +2004.243017 +2004.377683 +2004.440853 +2004.513780 +2004.515445 +2004.517176 +2004.518575 +2004.645514 +2004.646513 +2004.647679 +2004.772954 +2005.950908 +2005.963628 +2007.698991 +2007.846544 +2008.022867 +2008.095095 +2008.097592 +2008.343113 +2008.488667 +2010.348772 +2010.554433 +2010.556764 +2010.618968 +2010.687200 +2010.692162 +2010.769118 +2010.776810 +2010.850670 +2011.930023 +2011.931421 +2011.938747 +2012.062190 +2012.062990 +2012.066519 +2012.069983 +2012.154698 +2015.700915 +2015.791058 +2015.853795 +2015.855593 +2015.857658 +2015.929786 +2015.930718 +2015.994687 +2016.065416 +2016.193455 +2016.196086 +2016.322026 +2016.324324 +2018.746866 +2018.750429 +2018.813732 +2018.937109 +2019.019493 +2021.263813 +2021.265445 +2021.267010 +2021.268941 +2021.279597 +2021.279897 +2021.281628 +2021.354322 +2021.504605 +2021.509001 +2021.510999 +2021.576566 +2021.644732 +2021.645564 +2021.646630 +2021.649194 +2021.722787 +2021.724818 +2021.793849 +2021.796147 +2021.802007 +2021.871804 +2021.938771 +2021.941368 +2021.944265 +2021.946763 +2024.929810 +2025.050323 +2025.052354 +2025.130642 +2025.133906 +2025.134172 +2025.203469 +2025.203836 +2025.205101 +2025.259546 +2025.317355 +2025.319520 +2025.371401 +2025.374998 +2025.377995 +2025.426579 +2025.490848 +2026.791446 +2026.793877 +2026.815189 +2026.882455 +2026.914090 +2026.984953 +2026.998006 +2029.685150 +2030.551849 +2030.630670 +2030.699601 +2030.702032 +2030.873327 +2030.876024 +2031.065568 +2031.068032 +2031.070063 +2031.144489 +2031.146953 +2031.164702 +2031.224875 +2031.227273 +2031.232967 +2031.308791 +2033.973823 +2033.976787 +2034.091106 +2034.095102 +2034.095901 +2034.228202 +2034.230600 +2034.236494 +2034.300496 +2034.302594 +2034.304659 +2034.524173 +2036.771989 +2037.482878 +2037.744482 +2037.746314 +2037.906953 +2038.058002 +2038.146713 +2038.222570 +2038.224668 +2038.226633 +2038.298794 +2038.300792 +2038.375884 +2038.378181 +2038.383343 +2038.471355 +2038.473786 +2038.558234 +2038.560066 +2038.723935 +2038.724468 +2038.726433 +2039.825399 +2039.827730 +2040.050974 +2043.460660 +2043.590297 +2043.593194 +2043.655998 +2043.658063 +2043.661193 +2043.670417 +2043.735419 +2043.737250 +2043.800853 +2043.937350 +2043.939115 +2043.940647 +2044.004183 +2044.006114 +2044.007846 +2044.009744 +2044.082804 +2044.084636 +2044.092395 +2044.155065 +2044.155898 +2044.157197 +2044.228059 +2046.814636 +2046.816801 +2046.818999 +2046.822029 +2046.827390 +2046.963854 +2046.965585 +2046.966484 +2046.967284 +2046.968216 +2047.039312 +2047.107577 +2047.111073 +2047.113104 +2047.173577 +2047.175742 +2047.177273 +2047.241010 +2047.307476 +2047.313570 +2050.446468 +2050.743570 +2050.821692 +2050.965715 +2051.001978 +2051.004276 +2051.032015 +2051.149231 +2051.152394 +2051.264049 +2051.270143 +2052.997847 +2053.012632 +2053.016695 +2053.248163 +2053.251260 +2053.253358 +2053.399112 +2053.404706 +2053.406771 +2053.408669 +2053.411133 +2053.415263 +2053.676568 +2054.389687 +2055.177798 +2055.318291 +2055.319923 +2055.321554 +2055.323552 +2055.384391 +2055.452557 +2055.458784 +2055.513629 +2055.520921 +2055.522720 +2055.524418 +2055.591018 +2055.644764 +2055.646795 +2055.702573 +2058.447792 +2058.450223 +2058.454951 +2058.565940 +2058.678194 +2058.732307 +2058.734172 +2058.735903 +2058.744262 +2058.746526 +2058.747025 +2058.869803 +2060.661109 +2060.785651 +2060.788449 +2060.932138 +2062.393475 +2062.592743 +2062.594741 +2062.598304 +2062.667268 +2062.669333 +2062.671530 +2062.858610 +2062.858909 +2062.861174 +2062.934267 +2062.936498 +2063.013854 +2063.021447 +2065.998200 +2067.062868 +2067.173724 +2067.395968 +2067.398032 +2067.400530 +2067.402595 +2067.404426 +2067.409454 +2067.409921 +2067.525805 +2067.596401 +2067.598066 +2067.601229 +2067.602062 +2067.666963 +2067.727103 +2067.728935 +2067.804292 +2067.806590 +2067.815648 +2069.195267 +2069.196965 +2069.447448 +2069.450778 +2069.451211 +2069.459169 +2069.599762 +2069.601660 +2069.602759 +2069.603458 +2069.743651 +2069.745882 +2069.750378 +2069.758503 +2069.805822 +2069.808286 +2069.811084 +2069.884943 +2076.152636 +2076.154700 +2076.225196 +2076.231424 +2076.233555 +2076.298556 +2076.308580 +2076.310844 +2076.313009 +2076.313242 +2076.315206 +2076.374047 +2076.375513 +2076.481806 +2076.484171 +2076.486135 +2076.488100 +2080.611805 +2080.614170 +2080.616667 +2080.642774 +2080.887763 +2080.888828 +2081.025991 +2081.027922 +2081.104213 +2081.105678 +2081.106211 +2081.174342 +2081.176773 +2081.242541 +2081.244472 +2081.246437 +2081.255927 +2081.391625 +2081.392790 +2081.395354 +2083.618829 +2083.695286 +2083.697117 +2083.698915 +2083.747900 +2083.750064 +2083.907007 +2083.908905 +2083.910637 +2083.912635 +2083.996917 +2083.998782 +2084.000447 +2084.005009 +2084.090590 +2084.092987 +2084.167280 +2084.169045 +2084.176471 +2084.321858 +2084.323890 +2084.438442 +2084.440240 +2084.444469 +2084.446534 +2084.531182 +2084.620193 +2084.622957 +2087.997479 +2087.999311 +2088.000909 +2088.002707 +2088.043267 +2088.045131 +2088.046930 +2088.049860 +2088.085324 +2088.087256 +2088.089021 +2088.276400 +2088.281095 +2088.283293 +2088.346729 +2088.348461 +2088.349893 +2088.351525 +2088.353623 +2088.422653 +2088.490519 +2088.492184 +2088.495447 +2088.551624 +2088.553556 +2088.557052 +2088.629746 +2088.632144 +2089.441733 +2089.444164 +2089.446462 +2089.997111 +2089.999408 +2090.023085 +2090.073534 +2090.075899 +2090.189485 +2090.338169 +2090.342731 +2090.382025 +2090.383757 +2091.166707 +2091.168305 +2091.168472 +2091.171635 +2091.173367 +2091.175664 +2091.183923 +2091.185455 +2091.187286 +2091.234905 +2091.238168 +2091.492647 +2091.493579 +2091.495078 +2091.496643 +2091.500706 +2091.502437 +2091.506433 +2091.661678 +2091.663343 +2091.664975 +2091.750089 +2091.846526 +2091.848158 +2091.849823 +2091.851754 +2091.855484 +2091.930542 +2091.932773 +2092.029310 +2092.031175 +2092.032873 +2092.042630 +2092.151188 +2092.155817 +2092.171701 +2092.173765 +2092.175763 +2092.294411 +2092.296476 +2092.298507 +2092.422450 +2092.424581 +2092.426479 +2092.438367 +2092.440631 +2092.601038 +2092.603102 +2092.605034 +2092.755949 +2092.765207 +2092.767038 +2092.768636 +2092.770501 +2092.772466 +2092.844993 +2093.082289 +2093.123681 +2093.125513 +2093.127144 +2093.129176 +2093.379392 +2093.381257 +2093.382988 +2093.433970 +2093.435702 +2093.437234 +2093.439099 +2093.679458 +2093.690181 +2093.692112 +2093.699238 +2093.701036 +2093.702568 +2093.704533 +2093.995542 +2093.997406 +2093.999171 +2094.013624 +2094.017187 +2094.250520 +2094.252351 +2094.254116 +2094.256281 +2094.358845 +2094.362541 +2094.365771 +2094.580789 +2094.582621 +2094.584286 +2094.586350 +2094.662774 +2094.664672 +2094.666437 +2094.860609 +2094.862374 +2094.863972 +2094.865870 +2094.886816 +2094.888881 +2094.891012 +2094.929274 +2095.161475 +2095.163806 +2095.184085 +2095.185784 +2095.187349 +2095.189114 +2095.211824 +2095.213622 +2095.215121 +2095.216852 +2095.218917 +2095.455247 +2095.457112 +2095.458877 +2095.499003 +2095.500668 +2095.502134 +2095.503799 +2095.506030 +2095.545557 +2095.548787 +2095.550452 +2095.552650 +2095.555580 +2095.752183 +2095.753848 +2095.755280 +2095.756978 +2095.758777 +2095.861274 +2095.863006 +2095.866868 +2096.019882 +2096.020481 +2096.021480 +2096.022446 +2096.022979 +2096.024577 +2096.025576 +2096.139329 +2096.141494 +2096.259409 +2096.272263 +2096.274194 +2096.276092 +2096.349885 +2096.433168 +2096.435399 +2096.503265 +2096.639562 +2096.641993 +2096.749019 +2096.753581 +2096.761107 +2096.864703 +2096.866901 +2096.870497 +2096.872295 +2096.874027 +2096.876425 +2096.924277 +2097.094240 +2097.168532 +2097.170530 +2097.172528 +2097.261772 +2097.365968 +2097.618115 +2097.634532 +2097.636197 +2097.637163 +2097.841991 +2099.502862 +2099.505027 +2099.647318 +2099.647950 +2099.649049 +2099.650414 +2099.725706 +2099.777987 +2099.780051 +2099.782682 +2099.884713 +2099.885912 +2099.893238 +2107.649541 +2113.938312 +2114.123327 +2114.125758 +2117.254426 +2117.257024 +2158.086453 +2158.284488 +2158.301405 +2158.335404 +2160.417187 +2160.866870 +2164.584549 +2164.587979 +2183.187960 +2183.398882 +2194.651785 +2194.654415 +2196.952182 +2197.540160 +2197.610057 +2197.734299 +2201.716013 +2201.795967 +2204.095631 +2204.098129 +2204.244616 +2204.300759 +2204.308651 +2204.370123 +2204.372854 +2204.427566 +2204.429764 +2204.446813 +2204.500992 +2204.503623 +2204.580979 +2204.581945 +2204.583576 +2204.658068 +2206.792765 +2206.901290 +2206.903720 +2208.094828 +2208.189034 +2208.322101 +2209.224797 +2209.235153 +2209.334754 +2209.497691 +2209.551903 +2209.554001 +2210.051137 +2210.262458 +2210.983004 +2215.039277 +2215.110772 +2215.112703 +2215.190758 +2215.196486 +2215.198484 +2215.200582 +2215.260322 +2215.262653 +2215.329020 +2215.425390 +2215.427921 +2215.519396 +2215.521960 +2215.589559 +2215.597385 +2215.880035 +2216.028820 +2217.798581 +2217.970509 +2218.047998 +2218.297515 +2218.377469 +2218.378867 +2218.379733 +2218.456889 +2218.459287 +2220.433078 +2220.515295 +2220.518326 +2220.668409 +2223.969637 +2224.071602 +2224.140433 +2224.214526 +2224.282624 +2224.284223 +2224.284889 +2224.359913 +2224.363610 +2224.432940 +2226.921416 +2226.978159 +2226.988649 +2226.991113 +2227.035435 +2227.041829 +2227.043361 +2227.089448 +2227.095575 +2227.104599 +2227.144693 +2227.146857 +2227.154583 +2227.201369 +2227.201602 +2230.439494 +2230.553580 +2230.607093 +2230.608991 +2230.610690 +2230.828738 +2230.830769 +2230.887346 +2230.889178 +2230.890843 +2230.976057 +2231.102697 +2231.104662 +2231.106460 +2231.908724 +2231.910322 +2231.911721 +2231.913386 +2231.926639 +2231.930702 +2232.149849 +2232.151381 +2232.239493 +2232.313985 +2232.379453 +2232.387378 +2232.389609 +2232.460471 +2232.462336 +2232.464001 +2232.546219 +2232.630235 +2232.632033 +2232.633631 +2232.790341 +2232.792339 +2232.794637 +2232.841090 +2233.021110 +2233.410254 +2233.412485 +2233.643387 +2233.645985 +2233.761269 +2233.976387 +2233.978718 +2234.217879 +2234.220243 +2234.222041 +2234.223607 +2234.440756 +2234.456041 +2234.546250 +2234.548481 +2234.646816 +2234.818711 +2234.821009 +2234.822207 +2234.824771 +2235.069693 +2235.072257 +2235.185577 +2235.209386 +2235.328600 +2235.398830 +2235.472690 +2235.526735 +2235.745317 +2235.747415 +2235.749313 +2235.774121 +2235.776552 +2235.880282 +2235.975753 +2235.977584 +2235.980448 +2236.051810 +2236.165396 +2236.168360 +2236.182646 +2236.184244 +2236.186109 +2236.374520 +2236.376551 +2236.378949 +2236.415246 +2236.417011 +2236.418609 +2236.420607 +2236.436025 +2236.437724 +2236.627567 +2236.629798 +2236.631962 +2236.697663 +2236.699561 +2236.701526 +2236.757570 +2236.759335 +2236.764663 +2236.844450 +2236.846381 +2236.848179 +2237.044949 +2237.046880 +2237.059901 +2237.069291 +2237.306387 +2237.308052 +2237.311349 +2237.313114 +2237.335358 +2237.337723 +2237.638122 +2237.641552 +2237.643283 +2237.646414 +2237.698528 +2237.708785 +2237.711282 +2237.722904 +2237.727100 +2237.941851 +2237.943816 +2237.946913 +2237.966393 +2237.968291 +2237.970023 +2238.027033 +2238.028864 +2238.032694 +2238.301092 +2238.302990 +2238.304755 +2238.310416 +2238.327299 +2238.565527 +2238.589203 +2238.591168 +2238.592900 +2238.655204 +2238.890502 +2238.893698 +2238.896396 +2238.983875 +2238.985706 +2239.009716 +2239.011514 +2239.013079 +2239.261963 +2239.263661 +2239.265227 +2239.266958 +2239.379912 +2239.468823 +2239.566592 +2239.569688 +2239.574484 +2239.783807 +2239.785606 +2239.787237 +2239.789135 +2240.084007 +2240.085872 +2240.087503 +2240.089701 +2240.406584 +2240.408349 +2240.409847 +2240.411512 +2240.413877 +2240.747176 +2240.748841 +2240.750307 +2240.751972 +2241.002654 +2241.004352 +2241.005818 +2241.007516 +2241.009814 +2241.281775 +2241.283506 +2241.285071 +2241.286803 +2241.562061 +2241.565657 +2241.566556 +2241.567289 +2241.570253 +2241.572184 +2241.853636 +2241.861028 +2241.873149 +2241.874781 +2241.876146 +2241.877811 +2241.879776 +2241.942713 +2241.989000 +2242.133822 +2242.135453 +2242.136885 +2242.138450 +2242.138950 +2242.140215 +2242.142313 +2242.143912 +2242.145843 +2242.335653 +2242.339316 +2242.342280 +2242.439216 +2242.444311 +2242.446442 +2242.522033 +2242.523731 +2242.525263 +2242.527061 +2242.529792 +2242.540648 +2242.567887 +2242.569685 +2242.571384 +2242.573448 +2242.606882 +2242.843012 +2242.932988 +2242.934887 +2242.936718 +2242.949339 +2242.951037 +2242.952536 +2242.954234 +2242.956432 +2242.965989 +2243.085636 +2243.087567 +2243.090497 +2243.255899 +2243.257564 +2243.258995 +2243.260660 +2243.262592 +2243.268486 +2243.270151 +2243.272748 +2243.375412 +2243.571849 +2243.573547 +2243.580873 +2243.583804 +2243.585269 +2243.587067 +2243.913873 +2243.915538 +2243.920733 +2243.927460 +2244.176644 +2244.178542 +2244.180173 +2244.181405 +2244.497289 +2244.499121 +2244.500653 +2244.502750 +2244.528658 +2244.530822 +2244.829856 +2244.831521 +2244.832953 +2244.834585 +2244.836550 +2245.018101 +2245.131221 +2245.131787 +2245.133186 +2245.135018 +2245.383802 +2245.385567 +2245.387099 +2245.389097 +2245.422097 +2245.703116 +2245.705180 +2245.713938 +2245.715536 +2245.717002 +2245.718633 +2245.720631 +2245.896122 +2245.897921 +2245.899519 +2245.901484 +2245.921663 +2246.064554 +2246.164387 +2246.166219 +2246.167850 +2246.169882 +2246.424294 +2246.530554 +2246.532385 +2246.534017 +2246.713238 +2246.715169 +2246.878805 +2246.880437 +2246.881902 +2246.883534 +2246.885832 +2247.033151 +2247.037180 +2247.219265 +2247.220996 +2247.222461 +2247.224126 +2247.226224 +2247.443174 +2247.445305 +2247.447569 +2247.527056 +2247.529454 +2247.805145 +2247.806943 +2247.815235 +2247.816933 +2247.886130 +2247.887762 +2247.889560 +2248.158591 +2248.162221 +2248.174941 +2248.293889 +2248.295654 +2248.297186 +2248.298884 +2248.434615 +2248.468947 +2248.694854 +2248.710405 +2248.712203 +2248.713902 +2248.715833 +2248.796186 +2248.797918 +2249.104944 +2249.106709 +2249.108307 +2249.110238 +2249.173342 +2249.175240 +2249.177171 +2249.491423 +2249.493122 +2249.497517 +2249.499049 +2249.500747 +2249.753295 +2249.784830 +2249.786728 +2249.790624 +2249.862319 +2249.864250 +2249.865882 +2250.022958 +2250.026421 +2250.028186 +2250.030384 +2250.053527 +2250.057290 +2250.131882 +2250.133614 +2250.135112 +2250.136811 +2250.140341 +2250.362585 +2250.363451 +2250.364483 +2250.370410 +2250.394952 +2250.396751 +2250.398416 +2250.423091 +2250.424756 +2250.426221 +2250.427753 +2250.429917 +2250.652428 +2250.654359 +2250.658156 +2250.660054 +2250.661685 +2250.663484 +2250.666214 +2250.712634 +2250.714299 +2250.715765 +2250.717529 +2250.720693 +2250.982464 +2250.984163 +2250.985927 +2250.988059 +2250.998581 +2251.000213 +2251.001578 +2251.003144 +2251.005008 +2251.132681 +2251.271009 +2251.272607 +2251.274006 +2251.275504 +2251.277336 +2251.279633 +2251.284961 +2251.286660 +2251.289191 +2251.298215 +2251.299847 +2251.301445 +2251.303543 +2251.548631 +2251.550163 +2251.551595 +2251.553193 +2251.555024 +2251.586127 +2251.589523 +2251.591255 +2251.618960 +2251.622623 +2251.839739 +2251.841338 +2251.842736 +2251.844302 +2251.846200 +2251.924288 +2251.926186 +2251.929416 +2252.130548 +2252.131148 +2252.235077 +2252.236709 +2252.238107 +2252.239772 +2252.241471 +2252.429249 +2252.431780 +2252.525187 +2252.526718 +2252.528150 +2252.529715 +2252.531480 +2252.729449 +2252.732646 +2252.734277 +2253.014697 +2253.016328 +2253.225352 +2253.227084 +2253.228616 +2253.230347 +2253.231979 +2253.332146 +2253.421156 +2253.422888 +2253.424353 +2253.426085 +2253.533278 +2253.719891 +2253.721622 +2253.723187 +2253.725518 +2253.935142 +2253.937440 +2254.218392 +2254.220323 +2254.227749 +2254.438138 +2254.650459 +2254.652491 +2254.733909 +2254.736207 +2254.833476 +2254.835008 +2254.931678 +2254.933376 +2254.935807 +2255.028914 +2255.133343 +2255.135008 +2255.136772 +2255.413396 +2255.415127 +2255.416592 +2255.418391 +2255.421021 +2255.524651 +2255.616725 +2255.621787 +2255.627714 +2255.892782 +2255.895546 +2255.923718 +2255.930178 +2255.936705 +2256.130378 +2256.132209 +2256.133774 +2256.214194 +2256.225349 +2256.322053 +2256.323917 +2256.325716 +2256.493847 +2256.740833 +2256.882758 +2256.885822 +2256.912328 +2256.914759 +2257.046561 +2257.048759 +2257.146594 +2257.150357 +2257.155951 +2257.336637 +2257.378395 +2257.380726 +2257.431209 +2257.433540 +2257.614426 +2257.616390 +2257.617489 +2257.618255 +2257.750789 +2257.886620 +2257.888784 +2257.935804 +2258.011228 +2258.013626 +2258.016057 +2258.144229 +2258.228544 +2258.232973 +2258.379260 +2258.381891 +2258.454618 +2258.456849 +2259.226612 +2259.333472 +2264.569464 +2264.748484 +2265.096669 +2269.159269 +2280.117067 +2294.367369 +2294.872797 +2296.021813 +2297.436231 +2297.485948 +2297.506394 +2297.766067 +2298.081784 +2298.258940 +2298.402497 +2298.958407 +2299.009489 +2299.218380 +2299.306525 +2299.385979 +2299.757241 +2300.087144 +2300.525172 +2300.936127 +2301.855041 +2301.901794 +2302.326802 +2302.544084 +2303.030930 +2310.269718 +2312.937680 +2312.951000 +2312.958060 +2312.974410 +2312.986465 +2313.000884 +2313.011839 +2313.033218 +2313.045006 +2313.053997 +2313.064287 +2313.080637 +2313.121030 +2327.707795 +2335.705390 +2337.050244 +2337.154672 +2341.746276 +2341.747042 +2349.689026 +2349.857124 +2349.906808 +2350.628452 +2350.630683 +2350.756091 +2350.762784 +2350.765714 +2350.907239 +2351.223556 +2361.039497 +2366.867197 +2372.043582 +2372.046179 +2372.046945 +2372.106419 +2372.107485 +2372.110815 +2372.171354 +2372.171687 +2372.173519 +2372.287604 +2372.290135 +2372.290368 +2372.465460 +2373.816307 +2375.159030 +2375.160928 +2375.162826 +2375.290665 +2379.956195 +2404.119208 +2404.248811 +2407.043680 +2407.047010 +2407.107416 +2407.213976 +2407.218971 +2407.219537 +2407.278312 +2407.342781 +2407.400356 +2412.000818 +2427.001636 +2427.170700 +2427.172531 +2427.274429 +2427.276893 +2427.278858 +2428.602966 +2428.604398 +2428.605630 +2428.607362 +2428.696239 +2428.701700 +2429.596804 +2431.190409 +2434.069894 +2434.164965 +2434.297599 +2434.304625 +2434.306357 +2434.308754 +2434.386776 +2434.388275 +2436.369092 +2441.316706 +2441.397658 +2441.400889 +2442.028427 +2442.030059 +2442.031724 +2442.034155 +2442.163192 +2442.165323 +2442.167455 +2442.219835 +2442.221967 +2442.277478 +2442.279875 +2442.281607 +2442.283805 +2442.340415 +2442.402919 +2442.404118 +2442.469286 +2443.868252 +2443.870916 +2443.872914 +2443.875278 +2444.013840 +2444.154699 +2444.157329 +2444.243077 +2444.245408 +2448.369047 +2448.444405 +2448.638577 +2448.644105 +2448.739609 +2455.806768 +2455.877697 +2456.002905 +2456.139802 +2456.141433 +2462.145390 +2462.189179 +2462.383718 +2462.387614 +2462.460708 +2464.105495 +2466.431500 +2470.192968 +2471.858833 +2472.006685 +2472.089736 +2472.092133 +2472.102290 +2472.190202 +2472.247611 +2476.981606 +2476.983304 +2476.984936 +2477.177376 +2477.180407 +2477.182171 +2477.182904 +2477.183803 +2477.185968 +2477.251868 +2477.254000 +2477.256197 +2477.313540 +2477.373380 +2477.375445 +2477.452168 +2477.506647 +2477.511275 +2479.829688 +2479.894756 +2480.629754 +2500.185445 +2500.192338 +2508.056167 +2509.056132 +2511.674078 +2512.463122 +2526.341896 +2543.527560 +2543.609578 +2546.873910 +2546.876008 +2546.935415 +2546.943241 +2547.024992 +2547.030387 +2547.032251 +2547.077506 +2548.696819 +2549.037811 +2557.810363 +2574.841448 +2581.920295 +2582.082599 +2582.212236 +2582.337577 +2582.340175 +2582.401347 +2582.402612 +2582.403611 +2582.464417 +2583.571309 +2583.623091 +2583.625288 +2583.791722 +2583.794086 +2583.877036 +2583.936144 +2583.942571 +2584.507972 +2591.554185 +2591.556016 +2591.696309 +2595.845756 +2596.704529 +2602.174920 +2602.182979 +2602.276552 +2602.325303 +2602.427534 +2603.769491 +2606.128596 +2606.130661 +2606.211813 +2611.121332 +2611.856929 +2614.555161 +2614.607242 +2614.609606 +2615.086496 +2615.645836 +2616.991955 +2617.008205 +2617.140573 +2617.143337 +2617.146867 +2617.330882 +2617.332681 +2617.334479 +2617.335778 +2617.401012 +2617.458288 +2619.982561 +2619.984593 +2620.142035 +2620.143933 +2620.280197 +2620.290919 +2620.349028 +2622.910431 +2622.912762 +2622.939135 +2623.009432 +2623.083358 +2623.085156 +2623.086854 +2623.089285 +2623.257583 +2623.334739 +2623.400940 +2623.403504 +2623.489218 +2624.848091 +2630.849717 +2631.026107 +2631.027306 +2631.157908 +2631.219347 +2631.220312 +2631.221611 +2631.286679 +2631.288577 +2632.032599 +2632.869395 +2632.872658 +2633.728402 +2633.889208 +2633.989108 +2635.896798 +2637.365827 +2637.374252 +2639.687703 +2639.835922 +2639.892698 +2643.251902 +2643.325362 +2643.407347 +2643.409345 +2643.411309 +2643.518868 +2643.520567 +2643.565888 +2643.567886 +2643.569784 +2643.583370 +2643.644742 +2643.652135 +2643.743577 +2643.745708 +2643.840113 +2643.846574 +2643.908445 +2643.910976 +2646.884399 +2646.937446 +2647.002048 +2647.161222 +2647.215934 +2647.218598 +2648.112503 +2648.962819 +2649.705442 +2649.752462 +2649.866980 +2650.024756 +2650.210303 +2650.366447 +2651.177735 +2651.885427 +2651.887025 +2651.888390 +2651.889955 +2651.891787 +2651.976569 +2652.044701 +2652.047897 +2652.049596 +2652.192453 +2652.194118 +2652.195550 +2652.197148 +2652.200078 +2652.200878 +2652.202975 +2652.356855 +2652.358753 +2652.360052 +2652.441070 +2652.443002 +2652.493651 +2652.565712 +2652.567511 +2652.629648 +2652.634477 +2652.637507 +2652.684926 +2652.687657 +2652.740038 +2652.742402 +2652.759585 +2652.762515 +2652.845566 +2652.949162 +2654.969406 +2655.181860 +2655.183792 +2655.344830 +2655.348360 +2655.350292 +2655.350791 +2655.352090 +2655.365010 +2655.505137 +2655.509233 +2655.511131 +2655.512696 +2655.518623 +2655.665476 +2655.667574 +2655.686821 +2655.767041 +2655.823185 +2656.015426 +2657.917688 +2657.921351 +2658.063309 +2658.065041 +2658.066473 +2658.068604 +2658.144128 +2658.145993 +2658.149689 +2658.257948 +2658.260179 +2658.336369 +2658.337701 +2658.339932 +2658.412793 +2658.416789 +2658.488750 +2658.549722 +2658.555283 +2658.624015 +2662.010558 +2662.162573 +2662.165037 +2662.168467 +2662.237331 +2662.299802 +2662.301667 +2662.303365 +2662.373029 +2662.418516 +2662.422479 +2662.423844 +2662.424577 +2662.575060 +2665.355843 +2665.356908 +2665.361570 +2665.364567 +2665.576522 +2665.578253 +2665.580451 +2665.582749 +2665.591007 +2665.728037 +2665.795869 +2665.799765 +2665.863268 +2665.865100 +2665.867198 +2665.872292 +2665.940324 +2666.013951 +2666.109721 +2668.050279 +2668.202893 +2668.204558 +2668.208920 +2668.339489 +2668.341188 +2668.342720 +2668.344584 +2668.345517 +2668.432130 +2668.500562 +2668.502293 +2668.503858 +2668.576519 +2668.581913 +2668.670192 +2668.735793 +2668.816412 +2668.818343 +2668.820275 +2668.820575 +2668.822706 +2668.902726 +2668.985942 +2668.997731 +2670.097463 +2670.554639 +2670.913746 +2670.916144 +2671.077049 +2671.079413 +2671.114711 +2671.117942 +2671.186673 +2671.189170 +2671.334325 +2671.405387 +2671.623269 +2671.624501 +2671.627598 +2671.628630 +2671.706153 +2671.886772 +2671.888703 +2671.892466 +2671.969855 +2671.971587 +2672.049376 +2672.106385 +2672.109449 +2672.186805 +2672.188736 +2672.190335 +2672.192166 +2672.209715 +2672.282309 +2672.291067 +2672.299059 +2672.301290 +2672.303388 +2672.424767 +2672.431460 +2673.422468 +2673.722035 +2673.727130 +2673.822568 +2673.912511 +2673.914242 +2673.915774 +2673.917639 +2673.926996 +2674.000656 +2674.007616 +2674.013110 +2674.015508 +2674.018438 +2674.020503 +2674.023233 +2674.129993 +2674.210812 +2674.212943 +2674.214908 +2674.220003 +2674.226197 +2674.330259 +2674.439716 +2674.446443 +2674.448974 +2674.512477 +2674.515307 +2674.526030 +2675.019403 +2675.118703 +2675.418503 +2675.421001 +2675.427528 +2675.505949 +2675.530957 +2675.719003 +2675.719802 +2675.721766 +2675.801254 +2675.804517 +2675.806215 +2675.808247 +2675.810045 +2675.826029 +2675.828027 +2675.989732 +2675.992063 +2675.992762 +2675.996158 +2676.025196 +2676.027327 +2676.228393 +2676.231190 +2676.294427 +2676.519601 +2676.604383 +2676.606980 +2676.633054 +2676.795625 +2676.799388 +2676.801452 +2676.803017 +2676.804749 +2676.806314 +2676.808312 +2676.940913 +2676.943277 +2677.009011 +2677.011475 +2677.095724 +2677.230689 +2677.243310 +2677.305115 +2677.454998 +2677.456763 +2677.458961 +2677.543743 +2677.545907 +2677.697855 +2677.700219 +2677.702650 +2677.879207 +2678.016203 +2678.017968 +2678.021298 +2678.178341 +2678.384501 +2678.386399 +2678.387998 +2678.457428 +2678.659626 +2678.661257 +2678.662723 +2678.664354 +2678.666952 +2678.933518 +2678.935283 +2678.936915 +2678.939945 +2678.967484 +2679.215702 +2679.221263 +2679.337347 +2679.421630 +2679.487730 +2679.489462 +2679.492658 +2679.495456 +2679.783934 +2679.785665 +2679.787264 +2679.788862 +2680.029221 +2680.032685 +2680.034749 +2680.310573 +2680.312405 +2680.314070 +2680.316101 +2680.422827 +2680.584565 +2680.586297 +2680.587762 +2680.589560 +2680.592924 +2680.749067 +2680.758192 +2680.897519 +2680.899184 +2680.900716 +2680.902447 +2680.904945 +2681.200149 +2681.203513 +2681.205577 +2681.575307 +2681.577072 +2681.578804 +2681.617931 +2681.733915 +2681.785630 +2681.787461 +2681.789160 +2681.791058 +2681.855926 +2681.859456 +2681.861421 +2681.863552 +2683.242538 +2683.244370 +2683.246001 +2683.253694 +2683.301845 +2683.305209 +2683.307573 +2683.391356 +2683.545735 +2683.547433 +2683.548965 +2683.550730 +2683.552694 +2683.558455 +2683.681532 +2683.683397 +2683.685029 +2683.687093 +2683.814632 +2683.817363 +2684.313699 +2684.316297 +2684.599014 +2684.602477 +2684.604275 +2684.629317 +2684.629849 +2684.631048 +2684.632680 +2684.634578 +2684.770409 +2684.772873 +2684.833879 +2684.835544 +2684.919493 +2684.922623 +2684.924654 +2685.040139 +2685.041804 +2685.043336 +2685.045034 +2685.047198 +2685.052360 +2685.054025 +2685.095583 +2685.097448 +2685.099213 +2685.102576 +2685.205040 +2685.210368 +2685.270974 +2685.273239 +2685.346765 +2685.513598 +2685.515263 +2685.521923 +2685.523755 +2685.525553 +2685.527851 +2685.690521 +2685.692686 +2685.695083 +2685.745266 +2685.758453 +2685.760484 +2685.764380 +2685.816062 +2685.817760 +2685.819292 +2685.821090 +2685.823821 +2686.102076 +2686.123521 +2686.125219 +2686.126618 +2686.128250 +2686.128649 +2686.130314 +2686.201276 +2686.204773 +2686.206671 +2686.294084 +2686.296181 +2686.296481 +2686.298446 +2686.392285 +2686.394683 +2686.396348 +2686.467277 +2686.469508 +2686.910333 +2686.911898 +2686.913264 +2686.914829 +2686.919624 +2687.230246 +2687.231878 +2687.233144 +2687.236573 +2687.238971 +2687.369041 +2687.441435 +2687.443366 +2687.444965 +2687.446996 +2687.638837 +2687.640502 +2687.735074 +2687.736673 +2687.738105 +2687.739703 +2687.741635 +2688.000575 +2688.002140 +2688.003439 +2688.004871 +2688.006569 +2688.008767 +2688.009733 +2688.015594 +2688.036706 +2688.340435 +2688.342133 +2688.343599 +2688.345297 +2688.596412 +2688.598111 +2688.599542 +2688.601074 +2688.602872 +2688.910465 +2688.912063 +2688.913495 +2688.915093 +2688.916825 +2689.212829 +2689.214427 +2689.215792 +2689.217357 +2689.219255 +2689.222386 +2689.506068 +2689.507600 +2689.508999 +2689.510564 +2689.512362 +2689.817490 +2689.818988 +2689.820320 +2689.821819 +2689.823484 +2690.060946 +2690.097376 +2690.098942 +2690.100373 +2690.101839 +2690.103670 +2690.427180 +2690.428711 +2690.430177 +2690.433573 +2690.436803 +2690.658681 +2690.735471 +2690.737069 +2690.738468 +2690.740033 +2690.741831 +2690.969404 +2691.031741 +2691.033340 +2691.034705 +2691.036303 +2691.038201 +2691.303003 +2691.304701 +2691.306166 +2691.307898 +2691.666506 +2691.668104 +2691.669503 +2691.671134 +2691.673199 +2691.734238 +2691.944361 +2691.946059 +2691.947458 +2691.949056 +2691.950988 +2691.978593 +2692.222616 +2692.224247 +2692.225679 +2692.227311 +2692.229642 +2692.354251 +2692.356149 +2692.358014 +2692.548123 +2692.556548 +2692.558280 +2692.559712 +2692.561410 +2692.564007 +2692.867803 +2692.869502 +2692.872865 +2693.170267 +2693.171932 +2693.175029 +2693.176927 +2693.178159 +2693.180257 +2693.397906 +2693.476561 +2693.478259 +2693.479757 +2693.480323 +2693.481456 +2693.483653 +2693.493377 +2693.502435 +2693.505698 +2693.507629 +2693.684519 +2693.686284 +2693.687816 +2693.689614 +2693.692211 +2693.786683 +2693.790280 +2693.984519 +2693.986184 +2693.987616 +2693.989314 +2693.991345 +2694.027476 +2694.049687 +2694.101868 +2694.107962 +2694.109927 +2694.282754 +2694.284452 +2694.285950 +2694.287715 +2694.301202 +2694.356014 +2694.357912 +2694.427908 +2694.432837 +2694.640895 +2694.642926 +2694.644658 +2694.698604 +2694.700336 +2694.703366 +2694.705897 +2694.707828 +2694.993209 +2694.994974 +2694.996472 +2694.998404 +2695.067535 +2695.110259 +2695.112923 +2695.117585 +2695.130771 +2695.132703 +2695.344258 +2695.345923 +2695.347355 +2695.349053 +2695.529039 +2695.596106 +2695.597804 +2695.599269 +2695.600901 +2695.890977 +2695.892609 +2695.895572 +2695.897637 +2696.198269 +2696.199968 +2696.201466 +2696.203298 +2696.462172 +2696.463837 +2696.469065 +2696.728672 +2696.735332 +2696.736997 +2696.738395 +2696.740493 +2696.974093 +2697.046087 +2697.047886 +2697.049451 +2697.051349 +2697.270629 +2697.272394 +2697.273959 +2697.275924 +2697.528271 +2697.534865 +2697.607226 +2697.616916 +2697.618448 +2697.619547 +2697.620279 +2697.621445 +2697.623343 +2697.940659 +2697.942324 +2697.943789 +2697.945454 +2697.947685 +2697.963036 +2697.964768 +2698.193839 +2698.200532 +2698.201930 +2698.203462 +2698.205527 +2698.210455 +2698.212620 +2698.212986 +2698.312287 +2698.313818 +2698.315517 +2698.317648 +2698.543888 +2698.545553 +2698.546952 +2698.548617 +2698.551547 +2698.612886 +2698.616515 +2698.663235 +2698.667065 +2698.893305 +2698.918780 +2698.920478 +2698.921943 +2698.923641 +2698.925872 +2698.954177 +2698.960704 +2698.962935 +2699.246385 +2699.249915 +2699.259572 +2699.261237 +2699.262735 +2699.264467 +2699.277287 +2699.278986 +2699.281350 +2699.611586 +2699.613251 +2699.614750 +2699.616348 +2699.618646 +2699.716947 +2699.971726 +2699.984146 +2700.073557 +2700.075355 +2700.076820 +2700.078752 +2700.322141 +2700.324139 +2700.326171 +2700.462734 +2700.464499 +2700.466197 +2700.743953 +2700.745618 +2700.747049 +2700.748714 +2700.751378 +2700.950779 +2701.040189 +2701.041854 +2701.043286 +2701.046849 +2701.104791 +2701.106623 +2701.378218 +2701.380049 +2701.383546 +2701.407688 +2701.409320 +2701.726136 +2701.727768 +2701.728600 +2701.734328 +2702.031031 +2702.032762 +2702.034294 +2702.036026 +2702.147181 +2702.418177 +2702.419942 +2702.421507 +2702.423371 +2702.701759 +2702.703358 +2702.704856 +2702.706521 +2702.822372 +2702.824070 +2702.947014 +2702.948579 +2702.950044 +2702.951543 +2702.953441 +2703.121706 +2703.129465 +2703.214113 +2703.215745 +2703.217110 +2703.218875 +2703.220973 +2703.562564 +2703.564363 +2703.566028 +2703.567992 +2703.885508 +2703.887539 +2703.888172 +2703.889770 +2703.891935 +2704.174818 +2704.176983 +2704.477782 +2704.479580 +2704.481078 +2704.751374 +2704.757002 +2704.854638 +2704.856369 +2704.857868 +2704.859500 +2705.001091 +2705.003222 +2705.347644 +2705.349376 +2705.350908 +2705.352739 +2705.666125 +2705.680345 +2705.681876 +2705.683375 +2705.684907 +2705.686805 +2705.954137 +2705.957201 +2706.071020 +2706.072752 +2706.074350 +2706.076315 +2706.218739 +2706.231226 +2706.234556 +2706.236288 +2706.285172 +2706.364493 +2706.366191 +2706.367690 +2706.369388 +2706.371619 +2706.592365 +2706.596228 +2706.597793 +2706.599624 +2706.606218 +2706.607816 +2706.609981 +2706.891466 +2706.893164 +2706.894762 +2706.896494 +2706.961462 +2706.963127 +2707.125798 +2707.226031 +2707.229294 +2707.230959 +2707.244645 +2707.246577 +2707.248375 +2707.328994 +2707.512877 +2707.514509 +2707.516040 +2707.517639 +2707.530726 +2707.532590 +2707.745211 +2707.746909 +2707.748408 +2707.750206 +2707.785571 +2707.787435 +2707.831092 +2708.056732 +2708.058464 +2708.059929 +2708.061727 +2708.065890 +2708.067788 +2708.111711 +2708.115174 +2708.119303 +2708.303885 +2708.305184 +2708.307215 +2708.525863 +2708.527495 +2708.529060 +2708.530958 +2708.626462 +2708.721301 +2708.723265 +2708.914640 +2708.916572 +2708.918437 +2709.087201 +2709.088966 +2709.372482 +2709.376711 +2709.607014 +2709.608979 +2709.610943 +2709.875379 +2710.114573 +2710.196191 +2716.881199 +2716.944070 +2717.007240 +2717.068279 +2717.069710 +2717.079800 +2719.041637 +2719.977300 +2720.217360 +2720.276301 +2720.278931 +2721.315993 +2721.393882 +2721.539736 +2721.547961 +2721.549992 +2721.739003 +2722.882692 +2725.355783 +2725.358014 +2725.360045 +2725.364308 +2725.511294 +2725.585020 +2725.645559 +2725.650355 +2725.652053 +2725.652819 +2725.654983 +2725.783388 +2725.861976 +2728.028074 +2728.839362 +2729.063405 +2729.065603 +2729.702398 +2729.706261 +2730.085049 +2730.088678 +2730.218515 +2730.413320 +2730.476124 +2730.799667 +2730.884016 +2730.886114 +2730.888178 +2731.000033 +2731.002497 +2731.078887 +2731.082550 +2731.084781 +2731.254278 +2731.500865 +2731.502596 +2731.504761 +2731.521211 +2731.724441 +2731.726639 +2731.818081 +2731.820045 +2731.821710 +2731.823775 +2731.911853 +2732.000498 +2732.112886 +2732.114584 +2732.116382 +2732.196835 +2732.198800 +2732.200664 +2732.288843 +2732.291473 +2732.493072 +2732.495436 +2732.783714 +2732.787510 +2733.148715 +2733.150913 +2733.153111 +2733.402028 +2733.403893 +2733.405558 +2733.585578 +2733.736327 +2733.738159 +2733.739857 +2733.959437 +2733.961102 +2733.962634 +2733.964366 +2733.968628 +2733.970759 +2734.308654 +2734.311052 +2734.597365 +2734.611118 +2734.612916 +2734.614548 +2734.616613 +2734.896199 +2734.901328 +2735.079416 +2735.081447 +2735.083445 +2735.313548 +2735.317744 +2735.632795 +2735.634694 +2735.636458 +2735.942818 +2735.944650 +2735.946315 +2735.948280 +2736.317510 +2736.319541 +2736.391436 +2736.393367 +2736.395032 +2736.464996 +2736.714779 +2736.716710 +2736.718409 +2736.720940 +2736.736557 +2736.738222 +2737.259068 +2737.260899 +2737.262431 +2737.264396 +2737.560033 +2737.561731 +2737.563263 +2737.565028 +2737.949143 +2737.968191 +2737.969989 +2737.971554 +2737.973519 +2738.208684 +2738.257868 +2738.259566 +2738.260998 +2738.262630 +2738.264794 +2738.514677 +2738.516309 +2738.517774 +2738.527498 +2738.541550 +2738.543349 +2738.765227 +2738.766958 +2738.768457 +2738.770222 +2738.791167 +2738.798560 +2739.087038 +2739.088669 +2739.090201 +2739.094364 +2739.103188 +2739.106352 +2739.364294 +2739.366025 +2739.369388 +2739.388303 +2739.625366 +2739.632958 +2739.931559 +2739.933224 +2739.934623 +2739.936288 +2739.938252 +2740.228195 +2740.229860 +2740.231292 +2740.232957 +2740.235155 +2740.533157 +2740.534789 +2740.536220 +2740.537885 +2740.540117 +2740.606150 +2740.629127 +2740.812844 +2740.814509 +2740.816007 +2740.817639 +2741.119204 +2741.120835 +2741.122334 +2741.124032 +2741.126063 +2741.233989 +2741.241148 +2741.281508 +2741.284938 +2741.381907 +2741.383572 +2741.385037 +2741.386969 +2741.565224 +2741.646975 +2741.648574 +2741.651537 +2741.727461 +2741.815140 +2741.899656 +2741.973715 +2742.024298 +2742.026462 +2742.029359 +2742.214108 +2742.518003 +2742.521200 +2742.705116 +2742.813841 +2745.194358 +2751.814564 +2751.817395 +2755.514094 +2764.641891 +2770.972787 +2772.155403 +2772.816774 +2774.162627 +2774.565690 +2790.153054 +2794.961341 +2796.997469 +2797.299067 +2797.665834 +2798.236596 +2798.393239 +2799.227670 +2800.215215 +2801.884677 +2802.692902 +2806.526930 +2810.058961 +2825.600005 +2827.029907 +2828.745922 +2829.929571 +2829.932302 +2832.252046 +2832.415582 +2832.551313 +2832.553211 +2832.561670 +2832.629435 +2832.635695 +2832.637693 +2832.701163 +2832.702961 +2832.704760 +2832.766931 +2832.768729 +2832.771826 +2832.774423 +2832.844287 +2832.846718 +2832.847517 +2832.848782 +2832.913617 +2832.916148 +2834.885843 +2834.887908 +2835.217111 +2835.307854 +2835.386076 +2835.454207 +2835.456139 +2835.458170 +2835.527401 +2835.530997 +2835.532429 +2835.596365 +2835.598263 +2835.600061 +2835.600827 +2835.674354 +2835.674820 +2835.676518 +2835.676851 +2835.683977 +2835.755806 +2835.756139 +2835.759335 +2835.835559 +2838.172720 +2840.392831 +2840.394562 +2840.396094 +2840.397859 +2840.478545 +2840.546477 +2840.548108 +2840.549707 +2840.551505 +2840.551938 +2840.621668 +2840.751039 +2840.752171 +2840.827895 +2840.886137 +2841.366789 +2841.450239 +2844.370815 +2844.392494 +2844.448138 +2844.512240 +2844.512873 +2844.516802 +2844.518967 +2844.586999 +2844.721597 +2844.784501 +2844.786599 +2844.788697 +2844.792427 +2844.858327 +2844.861924 +2844.925294 +2845.695023 +2849.396485 +2849.491256 +2849.497717 +2851.191288 +2851.446466 +2851.449929 +2851.652726 +2853.109501 +2853.110567 +2853.111566 +2853.113530 +2853.273271 +2853.275701 +2853.414096 +2853.415695 +2853.480263 +2853.483593 +2853.484859 +2853.486724 +2853.489721 +2853.561615 +2853.563347 +2853.565078 +2853.571539 +2853.645365 +2853.705172 +2853.705738 +2853.785824 +2853.788155 +2853.863713 +2855.266475 +2856.503604 +2856.569138 +2856.577063 +2856.685655 +2857.148758 +2857.150190 +2859.793144 +2860.137799 +2860.139431 +2860.140929 +2860.142961 +2860.245658 +2860.247389 +2860.249521 +2860.252484 +2860.391146 +2860.393044 +2860.442028 +2860.443693 +2860.445325 +2860.447056 +2860.451851 +2860.506930 +2860.589847 +2860.591678 +2860.593643 +2860.667669 +2860.667869 +2860.669700 +2860.729807 +2860.731671 +2860.733503 +2860.734568 +2860.736134 +2860.886383 +2860.888614 +2860.890912 +2861.045824 +2861.051584 +2862.436598 +2862.520547 +2862.524410 +2862.707360 +2862.709025 +2862.715286 +2862.786548 +2862.788346 +2862.791709 +2862.794173 +2862.795972 +2862.796904 +2862.803497 +2862.865336 +2862.867034 +2862.868532 +2862.943058 +2862.945122 +2862.945822 +2862.947154 +2862.947653 +2862.951050 +2863.028639 +2863.103331 +2863.104596 +2863.186114 +2863.189478 +2863.325275 +2863.336064 +2864.939193 +2864.941624 +2865.139726 +2865.141790 +2865.262669 +2865.329669 +2865.341290 +2865.402662 +2865.404494 +2865.406126 +2865.407924 +2865.482283 +2865.551047 +2865.551347 +2865.552845 +2865.555776 +2865.556475 +2865.622742 +2865.624707 +2865.626572 +2865.701630 +2865.703961 +2865.707091 +2867.967229 +2868.703325 +2869.027267 +2870.238655 +2870.241685 +2870.363263 +2870.435258 +2870.437456 +2870.565661 +2870.567825 +2870.569990 +2870.656403 +2870.718408 +2872.287271 +2872.348643 +2872.350274 +2872.354903 +2872.418639 +2872.419505 +2872.420771 +2872.486172 +2872.489468 +2872.489935 +2872.558799 +2872.620437 +2872.625965 +2872.686172 +2872.688536 +2874.004918 +2874.164159 +2874.166656 +2874.315541 +2874.465590 +2874.466789 +2874.467522 +2874.533356 +2877.416403 +2877.418668 +2877.489031 +2877.571714 +2877.651301 +2877.653166 +2877.654831 +2877.656996 +2877.657795 +2877.730322 +2877.730689 +2877.732853 +2877.737615 +2877.894391 +2878.149536 +2878.152633 +2878.313139 +2880.281502 +2880.471911 +2880.473843 +2880.475774 +2880.599184 +2880.600949 +2880.602581 +2880.810672 +2880.812870 +2880.815035 +2880.914069 +2880.916899 +2880.980069 +2880.982067 +2880.983899 +2881.059223 +2881.063186 +2881.137578 +2881.140675 +2881.811004 +2882.006275 +2882.155493 +2882.314467 +2882.316532 +2882.318463 +2882.374640 +2882.484463 +2882.495253 +2882.578403 +2882.580201 +2882.666781 +2882.841673 +2882.843704 +2882.845602 +2882.909272 +2882.978036 +2883.572141 +2883.661818 +2883.681199 +2883.764948 +2883.864149 +2883.867679 +2884.478168 +2888.524151 +2888.526982 +2889.011064 +2889.015126 +2889.083358 +2889.154354 +2889.156352 +2889.158583 +2889.230144 +2889.234473 +2889.295978 +2889.362179 +2889.367440 +2890.542264 +2890.643163 +2890.960013 +2891.379193 +2891.487318 +2891.556249 +2891.580325 +2891.759546 +2892.230341 +2892.239166 +2892.269569 +2892.607497 +2893.044559 +2893.231073 +2893.770633 +2894.798137 +2894.800069 +2894.801800 +2894.895174 +2895.055646 +2895.057178 +2895.058577 +2895.060109 +2895.062107 +2895.085283 +2895.092443 +2895.154148 +2895.271830 +2895.273295 +2895.274960 +2895.342026 +2895.345223 +2895.349419 +2895.534367 +2895.537864 +2895.540295 +2895.551916 +2895.682019 +2895.683784 +2895.685849 +2895.688213 +2895.690511 +2895.776658 +2895.780421 +2895.868866 +2895.941826 +2895.950950 +2896.052149 +2896.083184 +2896.304929 +2896.611655 +2896.835065 +2896.961006 +2897.253080 +2897.255311 +2897.396869 +2897.397735 +2897.399800 +2897.486180 +2897.487878 +2897.602064 +2897.604895 +2897.634232 +2897.636163 +2897.637895 +2897.723010 +2897.724841 +2897.866233 +2897.915650 +2897.918048 +2897.959107 +2897.962836 +2898.050648 +2898.052979 +2898.161770 +2898.379852 +2898.583582 +2898.585879 +2898.649749 +2898.651713 +2898.659772 +2898.834664 +2898.837361 +2898.937594 +2898.940291 +2899.016748 +2899.455742 +2899.457940 +2899.460171 +2899.793004 +2899.794703 +2899.796201 +2899.797999 +2899.887243 +2900.001029 +2900.002495 +2900.002894 +2900.222175 +2900.224506 +2900.522974 +2900.524838 +2900.526736 +2900.714116 +2900.716347 +2900.997798 +2900.999830 +2901.001794 +2901.337691 +2901.342653 +2901.554508 +2901.556639 +2901.558870 +2901.862300 +2901.864531 +2902.227101 +2902.229132 +2902.231064 +2902.352842 +2902.567327 +2902.569259 +2902.570924 +2902.573155 +2902.913081 +2902.914979 +2902.916611 +2902.918576 +2903.389005 +2903.391036 +2903.392934 +2903.737356 +2903.739054 +2903.740486 +2903.742151 +2903.744416 +2904.003023 +2904.004722 +2904.006187 +2904.008285 +2904.153739 +2904.264495 +2904.266160 +2904.267658 +2904.269290 +2904.271488 +2904.575883 +2904.577815 +2904.579546 +2904.581711 +2904.886006 +2904.887838 +2904.889469 +2904.891434 +2905.096562 +2905.098493 +2905.100225 +2905.179179 +2905.257434 +2905.259466 +2905.348443 +2905.350241 +2905.353605 +2905.538053 +2905.541716 +2905.543648 +2905.622735 +2905.834057 +2905.835855 +2905.837520 +2905.839785 +2906.031027 +2906.094363 +2906.096161 +2906.097660 +2906.099591 +2906.119904 +2906.124400 +2906.272618 +2906.274616 +2906.276414 +2906.492565 +2906.494762 +2906.496727 +2906.742814 +2906.775448 +2906.777280 +2906.778911 +2906.780909 +2907.115907 +2907.117639 +2907.119171 +2907.424665 +2907.426397 +2907.427862 +2907.429627 +2907.480809 +2907.771285 +2907.773083 +2907.774581 +2908.083139 +2908.084837 +2908.089999 +2908.285670 +2908.324664 +2908.326462 +2908.328127 +2908.528027 +2908.626628 +2908.631390 +2908.633388 +2908.636852 +2908.890198 +2908.891963 +2908.893395 +2909.203051 +2909.204816 +2909.289532 +2909.412342 +2909.414307 +2909.416105 +2909.607946 +2909.718336 +2909.720167 +2909.721766 +2909.723797 +2910.004316 +2910.006148 +2910.339714 +2910.341678 +2910.343410 +2910.613939 +2910.644475 +2910.646007 +2910.647772 +2911.039613 +2911.041411 +2911.043010 +2911.044941 +2911.361724 +2911.598254 +2911.660625 +2911.662723 +2911.749203 +2911.758360 +2911.930288 +2911.932486 +2912.099485 +2912.105246 +2912.138347 +2912.141044 +2912.205579 +2912.207411 +2912.208976 +2912.211007 +2912.439179 +2912.444507 +2912.494557 +2912.496255 +2912.497820 +2912.499652 +2912.502049 +2912.553431 +2912.555362 +2912.699585 +2912.762355 +2912.836881 +2912.838546 +2912.839978 +2912.841543 +2912.843641 +2912.889728 +2912.891393 +2912.893657 +2913.067450 +2913.069514 +2913.094989 +2913.096721 +2913.322861 +2913.359890 +2913.362022 +2913.363886 +2913.365485 +2913.367216 +2913.369514 +2913.456594 +2913.458525 +2913.460290 +2913.777139 +2913.778804 +2913.782101 +2914.014036 +2914.049067 +2914.051032 +2914.052863 +2914.351098 +2914.353229 +2914.504611 +2914.613169 +2914.614868 +2914.616399 +2914.618297 +2914.670911 +2914.675207 +2914.815267 +2914.903645 +2914.917398 +2915.108473 +2915.298184 +2915.299882 +2915.305743 +2915.307841 +2915.417065 +2915.420494 +2915.498550 +2915.508207 +2915.611803 +2915.705309 +2915.707274 +2915.805076 +2915.808506 +2915.913967 +2916.003744 +2916.005609 +2916.209605 +2916.210404 +2916.409171 +2916.411336 +2916.416031 +2916.601213 +2916.603111 +2916.606474 +2916.714199 +2916.718795 +2916.813500 +2916.908338 +2916.913900 +2917.109137 +2917.110936 +2917.308604 +2917.536909 +2917.836476 +2917.838607 +2917.840738 +2918.104308 +2918.105940 +2918.108870 +2918.110702 +2918.113599 +2918.203276 +2918.206039 +2918.309103 +2918.310801 +2918.311367 +2918.312333 +2918.314165 +2918.410135 +2918.509303 +2918.511101 +2918.710534 +2918.715796 +2918.806239 +2918.893218 +2918.895050 +2918.898580 +2919.009702 +2919.011833 +2919.203608 +2919.204540 +2919.205572 +2919.407270 +2919.414130 +2919.415928 +2919.417826 +2919.614929 +2919.725851 +2919.807869 +2920.020257 +2920.021689 +2920.023220 +2920.025252 +2920.090786 +2920.092817 +2920.094815 +2920.109667 +2920.247529 +2920.249394 +2920.251026 +2920.253224 +2920.529414 +2920.531245 +2920.532944 +2920.534808 +2920.656054 +2920.659650 +2920.665511 +2920.667542 +2920.739270 +2920.894848 +2920.896613 +2920.898178 +2920.899876 +2921.030246 +2921.036706 +2921.103539 +2921.112130 +2921.113995 +2921.149593 +2921.151358 +2921.153023 +2921.154821 +2921.205670 +2921.503572 +2921.516659 +2921.518557 +2921.520089 +2921.522120 +2921.541168 +2921.543132 +2921.795147 +2921.796912 +2921.798410 +2921.800175 +2921.862080 +2921.886189 +2921.903572 +2922.093848 +2922.095579 +2922.098743 +2922.100941 +2922.129379 +2922.405169 +2922.406968 +2922.408466 +2922.410198 +2922.709864 +2922.711563 +2922.713028 +2922.714793 +2923.010230 +2923.012195 +2923.014093 +2923.328978 +2923.330643 +2923.332208 +2923.334006 +2923.336604 +2923.449025 +2923.688651 +2923.690450 +2923.692081 +2923.693879 +2923.732308 +2923.996077 +2924.294179 +2924.296010 +2924.297742 +2924.299906 +2924.381092 +2924.390182 +2924.392147 +2924.393845 +2924.474998 +2924.561511 +2924.563276 +2924.564841 +2924.566339 +2924.566606 +2924.569436 +2924.654118 +2924.830608 +2924.832373 +2924.834005 +2924.836169 +2924.859379 +2924.963109 +2924.969403 +2925.038700 +2925.040798 +2929.468432 +2930.112821 +2930.116450 +2930.174459 +2930.336230 +2932.693504 +2933.605425 +2934.116913 +2954.081395 +2961.827175 +2963.755345 +2964.545021 +2965.827903 +2965.895436 +2966.025972 +2966.306324 +2966.405891 +2966.519911 +2967.068062 +2967.138991 +2967.216846 +2967.483146 +2967.682214 +2967.773023 +2968.103958 +2968.106123 +2968.598796 +2968.658570 +2969.321773 +2969.564629 +2969.632195 +2969.951109 +2970.149744 +2970.438888 +2974.429926 +2974.435121 +2975.073548 +2979.223294 +2980.620263 +2980.674109 +2980.708741 +2980.714235 +2980.726357 +2980.731118 +2980.782567 +2980.796586 +2983.445901 +2985.744267 +2990.914558 +2994.400535 +2998.297701 +2998.302563 +3002.125170 +3002.422705 +3012.732785 +3012.735216 +3012.736581 +3012.738646 +3012.741010 +3012.746871 +3019.988056 +3024.810362 +3024.816056 +3030.348352 +3030.350350 +3033.543686 +3033.545984 +3035.071324 +3035.073588 +3035.151710 +3035.241653 +3035.313948 +3035.316046 +3035.436525 +3035.486209 +3035.553907 +3036.831695 +3036.924069 +3036.926034 +3036.928465 +3037.002924 +3037.005554 +3037.136357 +3037.145914 +3039.846943 +3039.849241 +3039.852604 +3039.854869 +3041.398291 +3041.399489 +3041.731057 +3042.995059 +3050.959919 +3050.962017 +3050.963716 +3050.971541 +3059.852152 +3059.856347 +3059.943727 +3060.079024 +3064.092407 +3065.693737 +3070.211415 +3071.608583 +3071.691667 +3071.700192 +3071.774884 +3071.776682 +3071.850974 +3071.982209 +3071.984840 +3073.284872 +3073.287503 +3073.509481 +3078.957694 +3079.170048 +3079.240744 +3079.300517 +3079.369182 +3079.435782 +3079.442342 +3079.969281 +3083.984329 +3083.986027 +3083.987525 +3083.988924 +3083.990789 +3083.993220 +3084.253326 +3089.986087 +3090.248591 +3090.249624 +3090.320253 +3090.378961 +3091.775396 +3091.880991 +3091.967904 +3092.125679 +3094.137998 +3094.140096 +3094.145224 +3094.148354 +3098.594470 +3098.596668 +3098.598200 +3098.605260 +3099.369961 +3100.129168 +3104.317009 +3104.318840 +3104.320905 +3104.322670 +3104.325434 +3105.054071 +3105.055636 +3105.057001 +3105.058567 +3105.078080 +3105.139352 +3105.141017 +3105.142649 +3105.271453 +3105.273085 +3105.274750 +3105.278347 +3105.280111 +3105.339319 +3105.341583 +3105.343381 +3105.343648 +3105.345912 +3105.460797 +3105.463062 +3105.525066 +3105.538087 +3105.587071 +3105.588270 +3108.274681 +3108.277678 +3108.367721 +3108.369785 +3108.450005 +3108.455666 +3108.512842 +3108.576978 +3108.578610 +3108.721200 +3108.723198 +3108.725196 +3108.806914 +3108.878709 +3109.057097 +3109.121366 +3111.196123 +3111.292793 +3111.298287 +3111.437415 +3111.441277 +3111.441544 +3111.659259 +3112.345939 +3112.349435 +3112.354497 +3112.375642 +3112.379871 +3112.568449 +3112.573244 +3112.626125 +3112.629122 +3112.703614 +3112.709575 +3112.852665 +3112.870846 +3114.994154 +3115.001680 +3115.253861 +3115.320261 +3115.324390 +3115.378869 +3115.390691 +3115.463917 +3115.525156 +3115.592189 +3117.997848 +3120.162448 +3120.167709 +3121.411764 +3121.414095 +3121.417092 +3121.561281 +3121.666142 +3121.674900 +3124.026180 +3125.139033 +3125.141597 +3125.141963 +3125.252985 +3125.256715 +3128.369932 +3135.056472 +3135.060368 +3135.068693 +3135.187741 +3135.190937 +3135.191337 +3135.192869 +3135.310917 +3137.692000 +3140.071052 +3140.072617 +3140.074049 +3140.075614 +3140.077513 +3140.102687 +3140.304152 +3140.305684 +3140.307083 +3140.308648 +3140.310779 +3140.318505 +3140.320036 +3140.469254 +3140.535021 +3140.536819 +3140.540316 +3140.548175 +3140.549973 +3140.552837 +3140.553103 +3140.554835 +3140.631358 +3140.817505 +3140.892530 +3140.894894 +3143.321898 +3143.327726 +3143.328891 +3143.332687 +3143.473913 +3143.475711 +3143.543044 +3143.544808 +3143.546607 +3143.549937 +3143.610942 +3143.612607 +3143.685834 +3143.687699 +3143.760026 +3143.761458 +3143.824928 +3143.953266 +3145.252399 +3148.031817 +3148.110172 +3148.248267 +3148.250831 +3148.325590 +3148.399749 +3150.287526 +3150.355358 +3150.983862 +3150.989823 +3151.133745 +3151.182663 +3151.192453 +3151.332013 +3153.202208 +3153.332777 +3153.410699 +3153.481495 +3153.483560 +3153.485991 +3153.613763 +3156.832641 +3156.913060 +3156.981858 +3156.984089 +3157.047093 +3157.049690 +3157.055717 +3157.237469 +3157.239833 +3157.384888 +3159.991312 +3160.159577 +3160.238598 +3160.240729 +3160.292977 +3160.293809 +3160.295008 +3160.295707 +3160.433736 +3160.434202 +3160.544891 +3161.088580 +3177.718034 +3177.721498 +3177.898920 +3177.905080 +3178.075477 +3178.077708 +3178.080538 +3178.138713 +3178.140778 +3178.200318 +3178.258493 +3182.786461 +3197.010689 +3207.191132 +3207.380009 +3207.433556 +3207.439883 +3208.585003 +3209.298955 +3210.041778 +3210.043776 +3210.045741 +3231.396535 +3237.136357 +3239.164327 +3239.168356 +3239.170321 +3239.172252 +3239.176081 +3241.510645 +3241.514674 +3241.517438 +3241.520734 +3245.052433 +3245.060857 +3245.192592 +3245.198287 +3245.358060 +3245.478439 +3246.838944 +3246.841075 +3246.842407 +3247.000349 +3247.006943 +3247.065151 +3247.125124 +3247.127655 +3247.128288 +3247.138178 +3247.188295 +3247.188894 +3247.190492 +3247.192823 +3247.195154 +3247.195687 +3255.050558 +3255.978529 +3256.548558 +3257.587219 +3258.088384 +3258.223915 +3265.182582 +3266.076454 +3266.200264 +3268.213182 +3268.216978 +3268.218710 +3268.226402 +3274.405617 +3274.960594 +3276.884968 +3279.747203 +3280.067649 +3280.071678 +3280.132584 +3280.207276 +3280.209340 +3280.211705 +3280.369347 +3280.371645 +3280.417066 +3280.418831 +3280.421328 +3280.477838 +3280.479703 +3280.543173 +3282.911036 +3282.996018 +3283.108838 +3283.111202 +3283.284196 +3283.287160 +3283.290123 +3283.292721 +3283.299747 +3283.377702 +3283.452994 +3283.455991 +3283.519294 +3283.534645 +3289.986687 +3290.136237 +3290.137702 +3290.257416 +3290.259014 +3290.311894 +3290.313693 +3290.315091 +3290.316223 +3290.516157 +3290.611594 +3290.613659 +3290.615757 +3290.618288 +3291.772066 +3291.962809 +3292.042662 +3292.123681 +3293.211392 +3293.371765 +3293.441761 +3294.993808 +3295.004264 +3295.226908 +3295.301300 +3295.375193 +3295.378789 +3295.382386 +3298.209689 +3298.294570 +3298.350115 +3298.352246 +3298.354411 +3298.355110 +3298.357008 +3298.421577 +3298.520844 +3298.598200 +3298.599032 +3298.608922 +3298.677687 +3298.681150 +3298.683914 +3298.742855 +3298.879019 +3298.879951 +3299.017613 +3299.989174 +3300.161235 +3300.162201 +3300.163966 +3300.345085 +3300.346949 +3300.348847 +3300.349513 +3300.552510 +3300.557772 +3300.559836 +3300.560136 +3300.635594 +3301.963664 +3302.083844 +3302.271456 +3302.272822 +3302.371290 +3302.459568 +3302.544716 +3304.884940 +3306.236787 +3306.238086 +3306.238652 +3306.323367 +3306.325365 +3306.327363 +3306.391099 +3306.395761 +3306.397559 +3306.471952 +3306.473816 +3306.586237 +3307.453669 +3308.558563 +3308.563158 +3310.109710 +3310.111408 +3310.116104 +3310.116337 +3310.118734 +3310.121299 +3313.149834 +3315.077204 +3315.258157 +3315.258989 +3315.260654 +3315.264284 +3315.265649 +3315.289925 +3315.475572 +3315.477637 +3315.535712 +3315.536511 +3315.537144 +3315.538176 +3315.656258 +3315.658323 +3315.660287 +3315.745935 +3318.222989 +3318.225187 +3318.500877 +3318.642735 +3318.652559 +3318.713498 +3318.787723 +3318.788489 +3318.860983 +3318.862748 +3318.929482 +3318.932945 +3318.935642 +3318.944666 +3319.003674 +3320.963379 +3321.263712 +3321.348427 +3321.414894 +3323.507599 +3323.638102 +3323.856217 +3323.858281 +3323.860246 +3323.866207 +3323.870302 +3323.871202 +3324.029377 +3324.105334 +3324.113392 +3324.178228 +3324.179926 +3324.181458 +3324.181591 +3324.183389 +3324.265007 +3324.267405 +3324.272933 +3324.273399 +3324.274764 +3324.410062 +3324.988383 +3325.998006 +3326.123380 +3326.201336 +3326.203534 +3326.208196 +3326.284652 +3326.288981 +3326.289747 +3326.356880 +3326.360343 +3326.361242 +3326.362474 +3326.362974 +3326.364539 +3326.365405 +3326.366171 +3326.441395 +3326.443893 +3326.446057 +3326.448422 +3326.515621 +3326.721848 +3329.232568 +3329.235499 +3329.255279 +3329.327373 +3329.339794 +3329.341759 +3329.412521 +3329.414419 +3329.416384 +3329.445855 +3329.448485 +3329.471096 +3329.609890 +3329.613121 +3329.617216 +3329.618482 +3329.693840 +3329.696038 +3329.770630 +3331.362669 +3331.500698 +3331.501530 +3331.591007 +3331.654877 +3331.656608 +3331.719246 +3331.769895 +3331.770861 +3331.773358 +3333.207489 +3333.360603 +3333.363933 +3333.377619 +3333.445285 +3333.519510 +3333.603859 +3333.605890 +3333.619177 +3333.674522 +3333.676220 +3333.677752 +3333.679617 +3333.686177 +3333.689240 +3333.692071 +3333.767995 +3333.768727 +3333.770026 +3333.835660 +3333.837559 +3333.904991 +3333.919643 +3334.642686 +3335.180148 +3335.184943 +3335.266828 +3335.362399 +3335.463564 +3335.561100 +3335.563431 +3335.665229 +3335.675186 +3335.739588 +3335.877350 +3335.881513 +3335.883311 +3335.888272 +3336.062065 +3336.102125 +3336.114379 +3336.154972 +3336.157137 +3336.363130 +3337.066593 +3337.078081 +3337.080779 +3337.083443 +3337.171222 +3337.175517 +3337.266360 +3337.268491 +3337.270689 +3337.270955 +3337.428764 +3337.430962 +3337.436156 +3337.445713 +3338.287537 +3338.375649 +3338.381310 +3338.458133 +3338.562462 +3338.649908 +3339.866224 +3342.298756 +3342.497656 +3342.499488 +3342.501752 +3342.568086 +3342.625262 +3342.632255 +3342.686601 +3342.874080 +3342.892361 +3343.149404 +3344.088064 +3345.602582 +3345.665885 +3345.673644 +3345.697120 +3345.759325 +3345.846138 +3345.847170 +3345.849834 +3345.852065 +3346.797519 +3347.366316 +3347.478937 +3347.577272 +3347.587162 +3348.470544 +3348.472309 +3349.437543 +3349.445002 +3349.584762 +3349.634546 +3349.654126 +3349.799747 +3350.058754 +3350.060186 +3350.062950 +3350.064582 +3350.066713 +3350.222191 +3350.243070 +3350.244602 +3350.245967 +3350.247499 +3350.249264 +3350.501911 +3350.652294 +3350.679533 +3350.681564 +3350.746100 +3350.943202 +3350.947365 +3351.197781 +3351.233645 +3351.235243 +3351.237142 +3351.498780 +3351.499912 +3351.849862 +3351.851427 +3352.024420 +3352.026318 +3352.028050 +3352.041703 +3352.049728 +3352.130947 +3352.133411 +3352.228616 +3352.230580 +3352.437274 +3352.479365 +3352.496980 +3352.501143 +3352.778765 +3352.781129 +3353.032145 +3353.034442 +3353.265145 +3353.389654 +3353.508901 +3353.511432 +3353.669573 +3353.726516 +3353.728947 +3353.858684 +3353.860516 +3353.862214 +3353.864212 +3353.999010 +3354.263512 +3354.396279 +3354.398277 +3354.399876 +3354.455287 +3354.695446 +3354.697411 +3354.699010 +3354.701474 +3354.713861 +3354.715560 +3354.717125 +3354.719023 +3354.730844 +3354.915659 +3354.917424 +3354.918989 +3354.933908 +3354.987987 +3354.989952 +3355.164810 +3355.168140 +3355.173668 +3355.177864 +3355.431809 +3355.433541 +3355.435006 +3355.436771 +3355.512762 +3355.629911 +3355.720887 +3355.722585 +3355.724117 +3355.725882 +3355.728579 +3355.875532 +3355.942365 +3356.062545 +3356.064343 +3356.065875 +3356.067773 +3356.193780 +3356.195645 +3356.278628 +3356.345894 +3356.347593 +3356.349025 +3356.350623 +3356.352654 +3356.563776 +3356.565408 +3356.567173 +3356.570503 +3356.835604 +3356.930742 +3356.932441 +3356.933906 +3356.935604 +3357.017056 +3357.214791 +3357.216456 +3357.217888 +3357.219586 +3357.221984 +3357.282956 +3357.284655 +3357.286519 +3357.375897 +3357.499839 +3357.503269 +3357.778360 +3357.780192 +3357.781724 +3358.106632 +3358.108330 +3358.324314 +3358.326212 +3358.327877 +3358.330241 +3358.566571 +3358.631540 +3358.635536 +3358.642329 +3358.768969 +3358.874896 +3358.876395 +3358.878093 +3358.887317 +3358.888183 +3358.895675 +3358.903001 +3359.040997 +3359.043028 +3359.044959 +3359.078559 +3359.225245 +3359.304733 +3359.306597 +3359.308362 +3359.538365 +3359.605065 +3359.606897 +3359.608528 +3359.610760 +3359.841961 +3359.844226 +3359.910160 +3360.109427 +3360.111092 +3360.214855 +3360.287549 +3360.289680 +3360.292311 +3360.547122 +3360.552450 +3360.590745 +3360.592643 +3360.594308 +3360.597938 +3360.772663 +3361.046822 +3361.048820 +3361.050518 +3361.076959 +3361.078823 +3361.141527 +3361.143359 +3361.334168 +3361.336166 +3361.337997 +3361.581320 +3361.614088 +3361.615952 +3361.617651 +3361.620048 +3361.729372 +3361.733501 +3361.735300 +3361.813355 +3361.909991 +3361.911956 +3361.913954 +3362.049352 +3362.212489 +3362.214220 +3362.215819 +3362.217617 +3362.226241 +3362.227906 +3362.229971 +3362.324610 +3362.326441 +3362.328805 +3362.338096 +3362.442492 +3362.444190 +3362.447820 +3362.558775 +3362.678256 +3362.680220 +3362.681919 +3362.684216 +3362.788412 +3362.854546 +3362.856644 +3362.872195 +3362.874126 +3363.068731 +3363.070729 +3363.072761 +3363.078055 +3363.317183 +3363.522777 +3363.524842 +3363.527539 +3363.661471 +3363.664468 +3363.812287 +3363.813852 +3363.816150 +3364.028005 +3364.292473 +3364.294105 +3364.295603 +3364.297268 +3364.494138 +3364.590608 +3364.592206 +3364.594038 +3364.835962 +3364.904061 +3364.905593 +3364.909489 +3365.079785 +3365.205459 +3365.207324 +3365.208956 +3365.210887 +3365.425739 +3365.515049 +3365.516981 +3365.518679 +3365.701163 +3365.864000 +3365.865765 +3365.867297 +3365.869128 +3365.872159 +3365.946784 +3365.952711 +3366.039957 +3366.041955 +3366.189807 +3366.191372 +3366.193071 +3366.385645 +3366.520177 +3366.521975 +3366.523507 +3366.525305 +3366.711585 +3366.713317 +3366.866896 +3366.868728 +3366.870326 +3366.872257 +3367.126070 +3367.129167 +3367.131132 +3367.159836 +3367.161535 +3367.162966 +3367.164598 +3367.166929 +3367.497465 +3367.498963 +3367.500695 +3367.503226 +3367.811584 +3367.813249 +3367.814714 +3367.816412 +3367.818477 +3368.090105 +3368.091703 +3368.093668 +3368.109352 +3368.380081 +3368.381647 +3368.383012 +3368.384577 +3368.386375 +3368.389039 +3368.392735 +3368.466462 +3368.668193 +3368.729498 +3368.731163 +3368.732595 +3368.736058 +3368.864696 +3369.223537 +3369.226934 +3369.227433 +3369.228532 +3369.230364 +3369.481712 +3369.864562 +3369.866260 +3369.867759 +3369.869457 +3369.877249 +3370.209650 +3370.212780 +3370.214545 +3370.311415 +3370.407119 +3370.410316 +3370.414245 +3370.415844 +3370.505221 +3370.510782 +3370.707785 +3370.713812 +3370.920139 +3370.921604 +3370.923369 +3371.020105 +3371.118074 +3371.308617 +3371.310515 +3371.312146 +3371.319772 +3371.404254 +3371.406319 +3371.507651 +3371.509482 +3371.511147 +3371.606785 +3371.711014 +3371.712612 +3371.714610 +3371.920238 +3371.922336 +3371.924600 +3372.023002 +3372.205819 +3372.211546 +3372.212778 +3372.404353 +3372.406185 +3372.611879 +3372.613810 +3372.693863 +3372.903787 +3372.904852 +3372.906983 +3373.012644 +3373.107216 +3373.307349 +3373.309347 +3373.617372 +3373.619004 +3373.620935 +3373.705151 +3373.707016 +3374.025830 +3374.109280 +3374.304218 +3374.305417 +3374.411278 +3374.499589 +3374.501121 +3374.510778 +3374.708780 +3374.801254 +3374.802952 +3374.804484 +3374.807847 +3374.811244 +3374.912209 +3374.914774 +3374.919369 +3375.604483 +3375.606614 +3375.608579 +3376.137849 +3376.139647 +3376.367353 +3376.380506 +3376.382571 +3376.543044 +3376.544942 +3376.546707 +3376.548738 +3376.721898 +3376.727093 +3376.835784 +3376.837316 +3376.839214 +3377.052400 +3377.124761 +3377.179806 +3377.181604 +3377.183269 +3377.185267 +3377.386932 +3377.653699 +3377.655597 +3377.913305 +3377.995523 +3377.998553 +3378.105580 +3378.272046 +3378.382269 +3378.384800 +3378.435549 +3378.725659 +3378.979871 +3378.983201 +3378.984933 +3379.072079 +3379.073910 +3379.075375 +3379.076874 +3379.832284 +3379.853164 +3379.855128 +3379.856827 +3379.859690 +3379.909607 +3380.034216 +3380.172311 +3380.826856 +3380.829486 +3381.453728 +3381.454427 +3381.456026 +3381.654327 +3381.964017 +3382.091689 +3382.204410 +3382.206275 +3382.209838 +3382.528319 +3382.530717 +3382.770477 +3382.885095 +3382.886893 +3383.083363 +3383.086027 +3383.267379 +3383.390889 +3383.392920 +3383.394785 +3383.807339 +3383.809969 +3384.131881 +3384.135044 +3384.138707 +3384.538107 +3384.539739 +3384.610934 +3384.622789 +3384.745200 +3384.746998 +3384.748696 +3384.751061 +3384.760651 +3384.846532 +3385.167511 +3385.173871 +3385.498546 +3385.500111 +3385.501510 +3385.504640 +3385.863614 +3385.865079 +3385.930081 +3385.949161 +3386.192651 +3386.200010 +3386.205139 +3386.273370 +3386.274969 +3386.314895 +3386.859084 +3386.861049 +3386.981994 +3386.983726 +3387.160449 +3387.162247 +3387.163812 +3387.427348 +3387.428780 +3387.430379 +3387.774301 +3387.775999 +3387.777498 +3387.779329 +3388.045363 +3388.046828 +3388.048493 +3388.050491 +3388.057218 +3388.059482 +3388.353388 +3388.354820 +3388.356452 +3388.358450 +3388.674300 +3388.677364 +3388.678929 +3388.805169 +3389.116025 +3389.117723 +3389.119288 +3389.121086 +3389.124350 +3389.479228 +3389.480926 +3389.482358 +3389.483956 +3389.486088 +3389.680127 +3389.916790 +3389.918521 +3389.920053 +3389.921785 +3390.239767 +3390.241598 +3390.243130 +3390.245061 +3390.563209 +3390.564608 +3390.917322 +3390.919053 +3390.920585 +3390.922250 +3391.166106 +3391.174831 +3391.176262 +3391.177894 +3391.577561 +3391.883221 +3391.885053 +3391.886851 +3392.506930 +3392.508462 +3392.510227 +3393.024146 +3393.027609 +3393.325844 +3393.327642 +3393.329174 +3393.331072 +3393.670266 +3393.672031 +3393.673496 +3393.677592 +3394.292843 +3394.296972 +3394.362706 +3394.371531 +3394.373529 +3394.561574 +3394.567168 +3394.602899 +3394.861873 +3394.863638 +3394.865137 +3394.866968 +3395.158010 +3395.159708 +3395.439994 +3395.442126 +3395.443058 +3395.446255 +3395.447953 +3395.450451 +3395.585083 +3395.731369 +3395.733168 +3396.073127 +3396.085182 +3396.090210 +3396.342025 +3396.343756 +3396.349284 +3396.406294 +3396.409557 +3396.423843 +3396.687379 +3396.689277 +3396.691009 +3396.786413 +3396.788112 +3397.046486 +3397.048051 +3397.049716 +3397.073359 +3397.075524 +3397.347885 +3397.349616 +3397.351048 +3397.354911 +3397.381951 +3397.383682 +3397.696469 +3397.698201 +3397.699699 +3397.701531 +3397.905094 +3397.905726 +3397.909189 +3398.139625 +3398.141457 +3398.143022 +3398.145486 +3398.192739 +3398.194471 +3398.211720 +3398.213685 +3398.217381 +3398.310521 +3398.314051 +3398.448383 +3398.450215 +3398.451780 +3398.453878 +3398.465965 +3398.469529 +3398.585179 +3398.590774 +3398.604260 +3398.606059 +3398.657873 +3398.659605 +3398.661203 +3398.663101 +3398.672758 +3398.688443 +3398.739525 +3398.858639 +3398.860437 +3398.862036 +3398.907024 +3398.924207 +3399.008123 +3399.082981 +3399.084513 +3399.086311 +3399.095435 +3399.271559 +3399.273424 +3399.276954 +3399.278252 +3399.278552 +3399.280717 +3399.282515 +3399.514816 +3399.516647 +3399.518212 +3399.518645 +3399.520110 +3399.527236 +3399.528502 +3399.531699 +3399.692871 +3399.695335 +3399.711352 +3400.266330 +3400.545917 +3401.288873 +3405.158599 +3405.194797 +3405.197727 +3408.251903 +3408.254201 +3408.255799 +3408.257531 +3408.259329 +3408.261460 +3416.047966 +3416.054593 +3420.273203 +3424.098541 +3424.723249 +3425.314324 +3425.316821 +3425.320318 +3425.322848 +3429.654046 +3429.656444 +3429.658342 +3429.660273 +3429.662571 +3429.668532 +3447.358457 +3450.868277 +3452.364446 +3454.351357 +3454.386223 +3454.386422 +3454.554021 +3454.771603 +3455.027148 +3455.035373 +3455.100075 +3455.127214 +3455.129445 +3456.624649 +3458.282922 +3458.751986 +3458.880690 +3459.963240 +3461.823678 +; +4.028701 +4.232297 +22.532145 +23.231012 +38.933128 +51.210072 +51.424790 +63.051452 +67.758141 +67.760671 +67.764135 +68.102995 +68.314384 +68.316715 +68.318746 +68.468763 +68.471726 +69.021010 +69.304260 +69.956673 +75.763361 +78.092463 +87.139740 +87.141971 +87.144035 +87.380665 +87.382563 +87.384262 +87.386193 +87.565747 +87.567711 +87.569509 +87.571507 +87.762050 +87.763882 +87.765680 +87.957921 +87.959785 +87.961550 +88.036409 +97.911657 +97.922946 +98.223778 +98.225942 +98.227907 +98.230205 +98.409226 +98.412689 +98.697870 +104.139323 +104.702160 +104.704258 +104.706089 +104.708753 +109.765125 +110.454235 +112.215239 +112.217037 +112.218702 +112.220434 +112.223897 +112.574546 +113.409077 +120.165048 +120.657588 +120.834544 +120.836676 +120.838540 +120.840572 +121.867444 +121.870008 +121.872739 +125.194647 +125.196811 +125.198776 +125.201007 +125.647327 +125.649125 +125.650723 +125.652588 +125.784223 +125.786454 +125.788619 +126.981225 +126.984355 +132.677157 +132.907160 +132.908725 +132.910257 +132.911855 +132.913653 +132.915685 +133.222511 +133.224076 +133.225508 +133.227073 +133.228804 +133.352114 +133.415451 +133.418115 +136.334795 +136.945251 +137.775453 +137.778650 +138.114447 +138.116279 +138.118010 +138.119842 +138.121906 +138.449079 +138.451610 +138.784177 +138.785875 +138.787474 +138.789172 +138.910684 +139.065595 +143.991598 +146.793226 +148.227724 +148.365619 +148.490960 +148.673611 +148.984267 +149.215602 +149.432485 +149.729887 +153.777136 +153.779034 +153.780865 +153.782996 +155.404806 +158.213961 +161.310894 +161.544394 +161.546292 +161.548090 +161.992246 +162.050154 +162.301469 +162.472398 +163.185618 +163.254649 +164.576559 +165.467434 +165.526574 +165.762238 +165.870996 +165.914453 +166.351116 +166.769663 +167.227705 +167.229969 +167.231834 +167.233799 +167.236396 +167.749349 +171.602526 +171.919275 +177.815673 +178.730491 +178.795958 +178.996957 +179.074147 +182.922628 +182.988928 +183.467282 +193.204902 +193.341665 +193.384156 +193.420885 +193.459047 +193.504568 +193.587552 +193.637469 +193.710029 +193.774099 +193.793746 +193.818554 +193.867771 +193.907831 +193.960712 +194.020252 +194.066073 +194.167138 +194.285154 +194.402636 +194.460245 +194.507931 +194.564840 +194.797075 +194.822316 +194.892179 +194.944727 +194.997874 +195.023082 +195.181024 +195.230008 +195.301436 +195.350820 +195.378293 +195.426045 +195.491946 +195.542362 +195.643827 +195.693078 +195.746191 +195.810693 +195.865006 +195.932072 +195.969101 +196.085585 +196.137932 +196.227043 +196.341762 +196.366670 +196.445691 +196.588315 +196.662374 +196.742527 +196.927009 +197.240495 +197.283452 +197.378557 +197.440828 +197.475260 +197.535034 +197.594941 +197.661774 +197.689812 +197.779256 +197.839862 +197.912989 +197.943458 +197.976292 +198.002200 +198.081254 +198.157378 +198.196305 +198.290245 +198.342193 +198.381720 +198.433601 +198.498270 +198.539095 +198.701699 +198.767300 +199.014220 +199.090910 +199.153281 +199.176224 +199.208326 +199.261472 +199.327273 +199.428938 +199.552781 +199.629038 +199.664968 +199.738129 +200.003263 +200.064768 +200.211155 +200.334398 +200.966532 +201.077155 +201.189309 +201.422909 +201.465866 +201.571360 +201.653478 +201.950214 +202.859737 +202.944652 +203.210220 +203.277885 +203.798764 +233.339660 +239.445049 +239.448179 +240.339253 +246.417403 +246.419767 +246.421998 +247.041211 +247.043176 +247.045008 +247.046972 +247.268451 +247.270882 +247.272880 +254.038307 +254.040472 +254.042437 +254.295650 +254.584028 +254.586492 +254.794251 +255.484093 +255.991119 +261.422716 +261.424314 +261.425746 +261.427444 +261.629975 +261.631840 +261.633571 +261.635935 +261.799705 +262.584186 +269.838924 +270.028568 +270.031298 +272.516677 +273.036490 +273.038954 +273.041152 +273.218841 +273.223270 +276.121502 +279.690196 +279.692061 +279.693793 +279.696091 +280.138215 +280.139780 +280.141545 +280.279273 +280.281205 +280.283003 +280.284868 +280.439546 +282.018166 +282.019864 +282.021463 +282.023194 +282.025093 +282.166584 +282.168516 +282.170414 +282.172578 +288.297048 +289.097280 +289.327083 +289.328981 +289.330713 +289.332644 +289.563114 +289.564912 +289.566777 +289.568741 +289.773603 +289.777366 +289.779297 +291.070705 +292.503104 +293.699207 +293.701638 +293.974298 +293.976030 +293.977661 +293.979526 +294.105467 +294.107232 +294.108797 +294.110528 +294.112859 +294.257015 +294.258980 +294.260778 +294.262709 +294.266106 +294.386719 +294.389616 +294.395044 +295.964639 +295.966237 +295.967669 +295.969201 +295.970866 +295.970899 +295.972764 +295.974895 +295.977260 +295.980223 +296.191545 +296.193310 +296.194909 +296.196707 +296.198738 +296.345758 +296.347356 +296.349387 +296.496440 +298.032869 +298.034667 +298.036332 +298.038163 +298.040128 +298.314986 +298.317084 +298.319116 +298.464337 +298.596172 +301.099865 +304.866029 +304.867960 +304.869725 +304.873222 +305.794633 +306.110716 +306.112548 +306.114246 +306.117643 +306.310616 +306.312414 +306.314113 +306.315844 +306.317776 +306.488038 +307.244381 +307.367525 +308.062196 +308.792265 +308.794230 +308.795895 +308.797760 +308.799991 +309.389734 +309.500023 +309.502255 +309.504253 +309.647609 +309.649740 +309.651738 +309.868321 +309.870253 +309.872218 +310.012843 +310.015008 +310.017439 +311.605915 +311.765989 +312.402551 +312.404849 +312.406814 +312.410710 +314.477741 +314.479372 +314.481004 +314.482802 +314.734950 +314.736615 +314.738213 +314.739945 +314.931453 +314.933251 +314.934950 +314.936748 +314.939012 +315.004447 +317.580502 +317.625623 +318.983297 +319.341539 +319.755524 +320.774737 +321.221823 +321.288989 +321.334977 +321.468043 +322.855555 +322.857153 +322.858618 +322.860150 +322.861815 +322.863713 +322.867409 +323.135841 +323.137472 +323.139004 +323.140702 +323.142867 +323.382960 +323.384692 +323.386257 +323.388121 +323.390053 +323.392184 +323.606936 +323.608767 +323.610466 +323.612297 +323.614428 +323.747695 +325.928079 +325.930177 +325.932108 +325.936537 +327.033439 +327.035271 +327.036902 +327.038667 +327.040732 +327.044461 +327.438334 +327.440099 +327.441964 +327.593179 +327.594844 +327.596342 +327.598007 +327.600039 +327.748090 +327.750022 +327.751920 +327.851121 +328.073998 +331.212589 +331.214454 +331.216086 +331.217917 +331.220348 +331.223745 +331.595406 +331.597071 +331.598536 +331.600135 +331.601999 +331.603964 +331.833268 +331.834966 +331.836531 +331.838230 +331.840028 +331.842259 +332.151949 +332.153780 +332.155379 +332.157210 +332.159275 +332.165569 +333.140026 +333.141791 +333.143423 +333.145155 +333.147119 +333.149284 +333.668065 +333.669896 +333.671528 +333.673226 +333.675124 +333.677222 +334.041624 +334.043289 +334.044787 +334.046452 +334.048184 +334.050282 +334.054278 +334.232433 +334.234165 +334.235730 +334.237428 +334.239426 +334.410988 +334.412886 +334.414551 +334.416615 +334.660105 +334.661770 +334.663302 +334.664933 +334.666698 +334.668630 +334.835230 +334.837161 +334.838859 +334.840724 +335.380051 +335.765465 +335.767263 +335.768862 +335.770893 +335.772858 +336.158205 +336.159870 +336.161402 +336.163034 +336.164832 +336.166697 +336.585244 +336.586909 +336.588408 +336.589973 +336.591738 +336.593669 +336.598931 +336.985644 +336.987275 +336.988741 +336.990372 +336.992071 +336.994069 +336.998231 +337.322773 +337.324471 +337.325936 +337.327501 +337.329200 +337.331164 +337.335094 +337.629066 +337.630731 +337.632196 +337.633762 +337.635493 +337.637391 +337.641820 +337.945450 +337.947115 +337.948613 +337.950211 +337.952076 +337.954041 +337.958070 +338.309618 +338.311283 +338.312815 +338.314347 +338.316012 +338.318110 +338.323105 +338.741120 +338.742785 +338.744250 +338.745882 +338.747713 +338.749778 +338.753308 +339.151642 +339.153307 +339.154806 +339.156471 +339.158269 +339.160333 +339.164329 +339.463397 +339.466527 +339.468092 +339.469857 +339.471688 +339.474486 +339.728998 +339.730796 +339.732394 +339.734126 +339.735991 +339.738022 +340.005321 +340.007119 +340.008751 +340.010516 +340.012414 +340.015677 +340.386007 +340.387905 +340.389570 +340.391335 +340.393499 +340.396130 +340.643948 +340.646013 +340.647944 +340.650975 +341.029096 +341.030928 +341.032526 +341.034291 +341.036189 +341.039053 +341.447377 +341.449076 +341.450608 +341.452173 +341.453904 +341.456069 +341.460364 +341.802522 +341.804187 +341.805652 +341.807284 +341.809049 +341.810980 +341.814710 +342.193364 +342.195062 +342.196561 +342.198159 +342.199957 +342.202222 +342.207517 +342.523367 +342.524999 +342.526464 +342.527962 +342.529661 +342.531492 +342.533956 +342.897259 +342.898924 +342.900390 +342.901921 +342.903653 +342.905584 +342.907649 +343.119837 +343.121568 +343.123100 +343.124798 +343.126597 +343.128661 +343.511545 +343.513276 +343.514841 +343.516506 +343.518304 +343.522334 +343.527395 +343.749606 +343.751504 +343.753136 +343.754868 +343.756899 +344.130192 +344.131957 +344.133489 +344.135187 +344.137085 +344.140215 +344.533821 +344.535586 +344.537151 +344.538816 +344.540581 +344.543878 +344.843644 +344.845343 +344.846908 +344.848606 +344.850338 +344.852436 +345.214307 +345.216072 +345.217570 +345.219268 +345.221233 +345.223498 +345.499987 +345.501819 +345.503417 +345.505216 +345.507347 +345.509511 +345.749771 +345.751569 +345.753134 +345.754899 +345.756864 +345.760627 +346.044076 +346.045908 +346.047506 +346.049304 +346.051336 +346.402617 +346.404349 +346.405847 +346.407579 +346.409344 +346.412474 +346.656696 +346.658461 +346.659993 +346.661725 +346.663523 +346.956330 +346.958128 +346.959760 +346.961458 +346.963589 +347.258993 +347.260725 +347.262290 +347.263988 +347.265720 +347.267751 +347.610208 +347.611940 +347.613572 +347.615170 +347.617168 +347.619299 +347.917101 +347.918833 +347.920365 +347.922296 +348.240211 +348.241876 +348.243341 +348.244906 +348.246638 +348.248636 +348.252732 +348.601250 +348.602948 +348.604447 +348.606012 +348.607777 +348.609808 +348.612705 +348.936814 +348.938545 +348.940111 +348.941776 +348.943574 +348.945538 +348.948935 +349.343007 +349.344772 +349.346371 +349.348069 +349.349900 +349.352431 +349.683600 +349.685464 +349.686963 +349.688628 +349.690859 +349.693223 +349.989227 +349.990992 +349.992490 +349.994122 +349.995987 +349.998052 +350.000149 +350.329253 +350.330918 +350.332317 +350.333882 +350.335647 +350.337645 +350.340709 +350.683632 +350.685364 +350.686862 +350.688494 +350.690225 +350.692190 +350.694488 +351.037844 +351.039542 +351.041074 +351.042673 +351.044471 +351.046669 +351.049066 +351.359356 +351.361054 +351.362586 +351.365916 +351.369246 +351.682033 +351.683764 +351.685263 +351.686928 +351.688859 +351.690957 +351.992455 +351.994153 +351.995652 +351.997250 +351.999082 +352.001812 +352.336344 +352.338043 +352.339508 +352.341106 +352.342971 +352.344902 +352.350264 +352.680367 +352.682198 +352.683896 +352.685695 +352.687859 +353.033313 +353.034978 +353.036510 +353.038142 +353.040007 +353.041938 +353.046034 +353.485860 +353.487559 +353.489057 +353.490689 +353.492420 +353.494485 +353.496716 +353.817428 +353.819193 +353.820725 +353.822523 +353.824421 +353.826553 +354.150761 +354.152560 +354.154058 +354.155756 +354.157555 +354.160951 +354.524421 +354.526119 +354.527617 +354.529216 +354.531014 +354.533345 +354.811467 +354.813165 +354.814630 +354.816229 +354.817927 +354.820657 +355.098346 +355.100178 +355.101909 +355.103707 +355.105772 +355.396747 +355.398546 +355.400077 +355.401709 +355.403607 +355.407270 +355.760517 +355.762348 +355.763980 +355.765745 +355.767743 +355.771173 +356.115928 +356.117759 +356.119324 +356.121089 +356.124486 +356.470506 +356.472371 +356.473936 +356.475568 +356.477399 +356.481861 +356.780462 +356.782294 +356.783859 +356.785591 +356.787489 +356.789820 +357.139370 +357.141101 +357.142666 +357.144365 +357.146329 +357.149193 +357.425950 +357.427681 +357.429313 +357.430978 +357.432876 +357.436739 +357.821287 +357.823019 +357.824584 +357.826282 +357.828280 +358.190684 +358.192382 +358.193848 +358.195413 +358.197244 +358.199275 +358.494746 +358.496478 +358.497943 +358.499575 +358.501373 +358.504603 +358.811796 +358.813561 +358.815059 +358.816724 +358.818556 +358.821985 +359.173067 +359.174799 +359.176331 +359.178062 +359.179994 +359.182691 +359.631508 +359.633273 +359.634872 +359.636570 +359.638601 +359.642298 +359.897842 +359.899573 +359.901105 +359.902737 +359.904602 +359.906833 +360.190582 +360.192380 +360.193945 +360.195677 +360.197808 +360.487851 +360.489683 +360.491281 +360.492979 +360.495310 +360.786885 +360.788650 +360.790149 +360.791780 +360.793612 +360.796409 +361.071767 +361.073532 +361.075163 +361.076862 +361.078926 +361.400504 +361.402269 +361.403834 +361.405566 +361.407431 +361.744294 +361.746092 +361.747690 +361.749455 +361.751320 +361.753451 +362.062375 +362.064207 +362.065738 +362.067437 +362.069468 +362.383587 +362.385319 +362.386817 +362.390380 +362.392711 +362.713990 +362.715788 +362.717320 +362.718985 +362.720849 +362.723014 +363.020283 +363.022015 +363.023513 +363.025111 +363.026910 +363.030073 +363.332637 +363.334369 +363.335900 +363.337565 +363.339463 +363.341794 +363.671631 +363.673363 +363.674894 +363.676593 +363.678491 +363.680422 +364.033069 +364.034901 +364.036466 +364.038197 +364.040795 +364.294075 +364.295873 +364.297504 +364.299203 +364.301101 +364.304198 +364.545190 +364.546921 +364.548487 +364.550118 +364.551983 +364.556412 +364.908593 +364.910524 +364.912256 +364.914187 +364.917950 +365.170098 +365.172662 +365.175326 +365.531070 +365.533068 +365.534799 +365.536697 +365.797836 +365.799867 +365.801599 +365.959874 +365.961672 +365.965335 +366.127906 +366.129970 +366.131868 +366.225874 +370.682413 +370.688440 +372.519075 +372.661366 +372.846280 +373.103090 +373.172221 +373.300726 +373.488637 +373.743482 +373.922070 +374.233925 +374.643681 +375.466791 +375.468822 +375.470554 +375.472518 +375.580144 +378.213508 +379.634785 +379.636883 +379.638681 +391.346628 +392.329378 +392.676264 +393.801637 +393.926979 +394.823415 +395.538632 +405.550011 +405.626734 +405.674419 +405.721039 +405.780580 +405.825601 +405.865428 +405.946780 +406.039820 +406.105455 +406.235524 +406.659400 +406.787472 +407.729795 +408.169688 +408.237720 +408.300990 +408.367091 +408.421936 +408.517340 +408.575349 +408.641882 +408.722169 +408.830827 +415.602481 +415.685565 +415.754163 +415.841143 +415.928289 +416.002115 +416.089427 +416.160989 +416.242208 +416.392158 +416.612171 +416.673343 +416.704911 +416.777372 +416.854595 +416.902180 +416.944305 +417.021694 +417.106143 +417.183799 +417.236413 +417.297851 +417.349100 +417.427521 +417.454927 +417.492823 +417.574574 +417.617198 +417.708873 +417.759789 +417.800881 +417.891424 +417.957391 +418.019062 +418.089658 +418.137444 +418.228253 +418.297018 +418.332882 +418.443804 +418.506108 +418.557757 +418.598349 +418.647367 +418.691489 +418.783697 +418.831249 +418.858356 +418.979335 +419.049598 +419.072175 +419.192521 +419.250730 +419.324389 +419.449597 +419.504575 +419.608039 +419.663716 +419.703776 +419.794352 +419.884762 +419.976070 +420.074438 +420.158354 +420.228085 +420.325820 +420.405540 +420.462217 +420.515530 +420.557388 +420.665280 +420.706039 +420.726486 +420.800711 +420.828184 +420.869909 +420.921357 +420.946232 +420.986792 +421.011101 +421.058087 +421.104740 +421.126252 +421.153725 +421.187424 +421.218060 +421.239972 +421.307970 +421.332446 +421.383528 +421.439638 +421.543634 +421.579099 +421.599645 +421.697047 +421.746664 +421.790787 +421.824853 +421.861783 +421.899012 +421.962715 +422.066111 +422.111033 +422.151493 +422.204972 +422.271539 +422.306238 +422.356954 +422.403940 +422.448295 +422.502008 +422.546031 +422.611232 +422.642568 +422.682561 +422.717426 +422.862880 +422.897679 +423.008968 +423.065478 +423.130846 +423.188388 +423.243633 +423.284292 +423.325251 +423.372670 +423.502240 +423.504372 +423.506370 +423.508434 +423.549293 +423.621521 +423.722720 +423.803073 +423.828913 +423.984358 +424.051957 +424.128347 +424.180129 +424.218390 +424.276299 +424.309233 +424.367974 +424.464111 +424.501107 +424.611530 +424.759449 +424.863345 +424.916292 +424.981493 +425.050391 +425.145429 +425.201773 +425.251356 +425.325582 +425.433241 +425.497377 +425.544030 +425.585821 +425.878195 +426.023217 +426.136637 +426.178961 +426.222684 +426.256717 +426.322750 +426.376863 +426.454618 +426.601738 +426.604102 +426.606233 +426.645527 +426.705867 +426.823283 +426.897975 +426.974165 +427.027212 +427.088051 +427.196209 +427.240798 +427.303269 +427.374231 +427.416389 +427.487018 +427.549389 +427.623748 +427.703768 +427.776695 +427.887251 +427.958580 +428.094677 +428.207597 +428.293045 +428.367570 +428.415089 +428.436368 +428.458846 +428.482755 +428.512359 +428.627210 +428.698539 +428.731506 +428.756714 +428.811193 +428.838499 +428.872332 +428.926045 +429.001969 +429.081356 +429.122714 +429.176427 +429.224646 +429.285451 +429.335834 +429.439264 +429.558978 +429.658578 +429.736433 +429.775594 +429.836233 +430.052783 +430.230739 +430.344325 +430.715553 +430.789013 +430.860109 +430.933402 +430.982486 +431.114654 +431.184217 +431.353448 +431.522912 +431.619582 +431.693241 +431.750950 +431.950717 +432.258875 +432.261406 +432.269797 +432.412155 +432.482784 +432.688911 +432.813387 +433.024109 +433.076690 +433.202764 +433.364835 +433.748451 +433.914584 +433.995637 +434.139393 +434.164601 +434.214451 +434.395803 +434.441257 +434.517048 +434.638660 +434.793305 +434.933964 +434.986212 +435.172259 +435.214716 +435.374889 +435.539558 +435.777919 +436.167496 +436.325704 +436.394202 +436.996100 +437.035494 +437.344085 +437.671390 +438.290604 +440.806319 +440.810781 +441.404953 +441.530261 +441.873284 +442.936886 +442.972184 +443.055667 +443.116074 +443.352237 +445.977842 +451.262219 +463.924012 +478.616438 +478.618203 +478.619868 +478.621766 +478.864623 +478.866388 +478.868053 +478.994759 +487.295217 +487.297615 +487.300978 +500.544454 +500.826439 +501.640058 +501.641889 +501.643687 +501.645685 +502.028436 +502.413650 +502.415415 +502.417013 +502.418778 +502.420810 +502.424439 +502.559437 +502.899664 +504.228367 +504.371757 +511.749272 +514.269149 +514.270881 +514.272579 +514.274544 +514.532253 +514.534850 +515.769547 +515.771512 +515.773310 +515.775808 +515.946271 +516.700749 +517.421427 +517.423492 +517.425390 +517.793022 +518.640474 +519.109637 +519.111436 +519.113101 +519.115132 +519.356057 +519.358255 +524.847927 +525.776197 +525.778096 +525.779960 +525.982458 +525.984256 +525.985987 +525.987886 +526.125714 +530.061674 +530.066103 +533.875923 +534.224707 +536.619144 +538.821872 +539.487872 +539.535558 +539.729264 +539.817775 +540.649443 +540.651041 +540.652540 +540.654238 +540.656302 +540.658534 +540.916675 +540.918706 +541.126332 +541.128297 +541.130195 +541.196095 +541.198660 +541.297427 +543.839916 +544.417438 +544.419269 +544.420901 +544.422932 +544.727627 +545.699887 +545.702018 +545.703817 +545.706247 +546.096690 +546.098521 +546.100220 +546.102517 +550.617598 +550.747201 +552.682930 +557.246596 +557.321987 +557.982659 +557.986388 +559.285521 +559.287386 +559.289051 +559.290849 +559.294512 +559.685987 +559.689350 +559.691415 +559.819154 +559.823250 +559.891048 +563.775460 +563.777458 +563.779223 +563.781188 +563.783352 +564.182653 +564.185083 +564.187115 +564.365203 +567.090475 +567.092140 +567.093672 +567.095404 +567.239593 +567.242356 +569.818444 +569.956306 +570.316779 +570.562966 +570.625870 +570.745583 +570.854541 +570.916812 +571.320674 +571.322539 +571.324304 +571.326268 +571.460867 +572.253374 +572.255072 +572.256704 +572.258668 +572.440620 +572.442984 +572.444949 +572.525335 +573.618008 +574.167025 +574.404454 +574.406618 +574.408483 +574.410548 +574.793531 +574.795396 +574.797094 +574.798959 +574.800957 +575.025033 +575.029928 +575.236654 +575.479211 +575.481709 +575.710979 +575.715641 +578.356198 +578.364390 +579.030190 +579.033187 +579.035252 +582.159724 +582.161323 +582.162821 +582.164419 +582.166417 +582.306277 +582.500083 +582.501782 +582.503280 +582.505112 +582.629021 +582.630952 +582.632717 +582.634649 +585.992321 +586.001146 +589.240736 +589.343067 +589.490353 +589.579164 +589.660016 +589.762780 +590.165644 +590.167542 +590.169307 +590.171205 +590.173569 +590.647528 +590.989852 +591.588120 +591.589885 +591.591516 +591.593314 +591.595312 +591.737037 +591.740134 +591.892348 +592.621752 +592.817323 +592.908565 +593.013060 +593.150189 +593.152387 +593.154552 +593.156849 +593.545793 +593.547492 +593.549023 +593.550922 +593.833472 +593.835104 +593.836636 +593.838534 +593.979293 +593.981224 +593.983455 +594.116922 +594.119053 +594.187551 +597.378690 +597.979355 +598.196938 +599.159341 +599.996270 +600.216016 +600.365200 +601.125506 +601.127238 +601.128769 +601.130734 +601.335096 +601.336761 +601.338426 +601.340458 +601.394737 +601.518546 +601.957973 +603.366230 +603.367895 +603.369393 +603.371058 +603.372856 +603.376053 +603.597831 +603.599430 +603.600995 +603.602726 +603.809553 +603.811451 +603.813549 +603.974188 +603.979449 +604.153408 +604.155739 +604.158004 +604.238523 +605.150377 +606.210782 +606.266327 +606.296030 +606.759666 +606.761365 +606.762963 +606.764728 +606.768025 +607.127365 +607.129296 +607.131028 +607.133026 +607.135257 +607.328430 +607.330595 +607.453805 +607.455836 +607.457601 +607.592333 +607.594231 +607.596262 +607.669056 +608.543647 +608.754703 +610.155800 +610.427328 +612.293161 +612.404183 +612.594792 +613.176077 +613.177808 +613.179673 +613.494758 +613.496356 +613.497788 +613.499453 +613.641011 +613.642976 +613.644874 +613.808444 +614.364187 +614.649668 +615.052831 +615.804079 +615.805778 +615.987529 +615.989294 +615.991026 +616.130553 +616.132417 +616.134382 +616.266383 +616.268381 +616.405810 +616.410439 +617.416765 +617.870544 +620.008304 +622.131046 +622.132778 +622.328149 +622.330147 +622.332145 +622.400510 +622.538505 +623.279996 +623.517925 +623.721854 +624.346329 +624.539302 +624.789352 +625.207000 +625.210231 +625.212162 +625.418156 +625.419854 +625.421486 +625.425115 +625.564909 +625.566874 +625.568638 +625.699008 +626.152720 +626.206400 +626.375731 +626.582857 +627.091281 +627.474730 +627.608030 +627.686219 +627.768337 +627.859479 +627.913391 +628.007697 +629.212857 +629.258745 +629.983786 +630.045224 +630.126409 +630.287315 +630.373429 +630.448454 +630.920748 +630.922346 +630.923845 +630.925476 +630.927574 +631.056811 +631.058543 +631.060408 +631.253448 +631.378090 +631.379988 +631.382019 +634.676322 +634.678553 +634.680517 +634.682549 +636.107822 +636.110153 +636.112118 +638.416744 +638.418409 +638.420008 +638.421673 +638.423404 +638.425535 +638.622738 +638.624636 +638.626268 +638.628332 +643.945144 +644.555066 +644.792795 +644.795825 +649.515867 +649.822594 +649.824225 +649.825724 +649.827522 +649.829720 +650.012537 +650.014668 +650.016533 +650.020162 +654.218160 +654.702642 +654.786724 +654.965279 +655.252425 +655.598445 +655.600243 +655.602008 +655.604073 +655.606271 +657.352689 +658.039202 +658.041233 +658.042998 +658.045562 +658.207600 +658.437970 +659.753952 +659.828711 +660.245827 +660.737135 +661.627910 +661.839964 +661.841796 +661.844027 +662.037766 +662.039564 +662.041263 +662.165871 +662.794908 +662.955248 +663.037832 +663.264505 +664.570531 +665.759074 +665.761705 +665.763903 +666.006593 +666.009224 +666.011488 +670.982679 +671.167361 +671.168793 +671.170324 +671.171989 +671.173821 +671.307920 +671.442852 +671.445049 +671.519209 +673.066426 +673.068558 +673.070722 +673.398361 +673.400559 +673.402490 +673.534525 +675.423334 +675.425365 +675.427130 +675.429361 +676.276513 +676.278245 +676.279910 +676.425164 +676.426996 +676.429060 +676.633090 +676.634888 +676.636486 +676.638384 +676.767921 +678.641046 +678.835052 +678.870350 +680.284867 +680.286732 +680.288397 +680.290295 +680.292427 +680.678007 +680.679672 +680.681304 +680.682969 +680.684900 +680.687065 +680.940678 +680.942309 +680.943808 +680.945639 +681.148037 +681.149768 +681.151333 +681.153132 +681.155862 +681.293758 +681.295622 +681.297421 +681.374011 +682.376640 +683.778470 +683.780235 +683.781834 +683.783632 +683.785663 +684.131683 +684.134814 +684.136612 +684.364084 +684.365816 +684.367514 +684.369778 +684.506009 +684.507840 +684.509539 +684.652396 +684.655659 +687.776002 +687.844867 +688.012965 +688.294483 +688.296381 +688.298213 +688.595515 +688.597280 +688.598945 +688.602142 +688.799111 +689.246730 +689.652690 +689.963679 +690.034974 +690.270405 +691.156518 +691.587587 +691.590917 +692.838135 +692.840499 +693.010462 +693.012161 +693.013792 +693.061911 +693.305334 +693.307165 +693.308864 +693.310662 +693.316556 +693.463442 +693.465241 +693.466972 +693.469003 +693.544528 +695.599637 +696.689380 +696.691145 +696.692843 +696.694608 +696.696939 +696.963672 +696.965470 +696.967335 +697.126243 +697.128640 +697.130705 +697.216885 +698.859141 +698.861139 +698.862904 +698.864802 +699.431435 +699.525741 +700.282816 +701.005992 +701.007724 +701.009455 +701.206825 +701.208623 +701.210288 +701.212119 +701.334663 +701.854909 +702.372091 +704.533927 +704.867494 +705.160434 +705.267793 +705.357004 +705.407220 +705.453440 +705.522438 +705.578615 +705.630996 +705.662764 +705.764695 +706.392367 +706.394432 +706.396230 +706.398361 +706.633393 +707.853871 +709.036587 +709.093963 +709.719570 +709.772717 +710.455134 +710.658264 +711.543777 +711.545409 +711.547007 +711.549039 +711.551703 +711.861726 +711.863257 +711.864656 +711.866288 +712.011509 +712.013107 +712.014639 +712.016238 +712.018169 +712.162624 +712.164356 +712.165954 +712.167819 +712.308379 +712.310177 +712.311808 +712.313607 +712.316470 +712.403450 +712.405615 +712.407546 +714.856661 +714.858226 +714.859658 +714.861190 +714.862855 +714.864753 +714.868083 +715.304513 +715.306144 +715.307676 +715.309441 +715.459624 +715.461256 +715.462754 +715.464586 +715.623294 +715.625059 +715.626624 +715.628355 +715.630753 +715.839477 +715.841275 +715.842974 +715.844705 +715.848468 +715.958858 +717.822825 +717.824590 +717.826189 +717.827887 +717.829852 +718.090990 +718.092888 +718.094553 +718.096285 +718.321426 +718.323091 +718.324590 +718.326188 +718.327920 +718.330217 +718.583930 +718.585728 +718.587360 +718.589225 +718.592455 +719.800279 +719.801977 +719.803543 +719.805141 +719.806939 +719.809936 +720.305540 +720.307205 +720.308737 +720.310468 +720.312233 +720.314165 +720.319526 +720.787691 +720.789356 +720.790821 +720.792386 +720.794084 +720.796182 +720.798547 +720.800878 +721.324254 +721.325885 +721.327317 +721.328916 +721.330647 +721.332745 +721.334743 +721.732678 +721.734243 +721.735675 +721.737207 +721.738939 +721.741003 +721.744000 +721.747264 +722.093584 +722.095182 +722.096614 +722.098246 +722.099977 +722.101942 +722.104173 +722.107536 +722.451925 +722.453523 +722.454922 +722.458052 +722.459917 +722.462081 +722.756953 +722.758551 +722.760016 +722.761648 +722.763513 +722.765711 +722.769640 +723.119290 +723.120988 +723.122520 +723.124085 +723.125950 +723.127848 +723.131977 +723.498211 +723.499942 +723.501474 +723.503173 +723.504971 +723.507202 +723.509966 +724.012030 +724.013795 +724.015426 +724.017158 +724.019089 +724.022819 +724.475466 +724.477098 +724.478596 +724.480128 +724.481959 +724.484191 +724.487854 +724.832742 +724.834373 +724.835905 +724.837404 +724.839135 +724.841200 +724.843398 +724.848859 +725.120920 +725.122618 +725.124083 +725.125715 +725.127547 +725.129778 +725.515292 +725.516990 +725.518489 +725.520154 +725.521952 +725.524050 +726.003436 +726.005201 +726.006733 +726.008431 +726.010330 +726.013526 +726.345128 +726.346759 +726.348225 +726.349856 +726.351655 +726.353719 +726.359147 +726.643363 +726.645227 +726.646892 +726.648591 +726.650689 +726.654918 +727.034971 +727.036702 +727.038267 +727.039899 +727.041897 +727.044028 +727.399572 +727.401204 +727.402636 +727.404234 +727.406032 +727.409129 +727.415423 +727.811660 +727.813325 +727.814823 +727.816422 +727.818187 +727.821383 +727.824447 +728.115123 +728.116854 +728.118286 +728.119951 +728.121783 +728.124180 +728.536301 +728.537966 +728.539465 +728.541063 +728.542861 +728.546857 +728.823847 +728.827177 +728.828775 +728.830573 +728.832771 +729.229540 +729.231205 +729.232704 +729.234302 +729.236101 +729.238132 +729.244426 +729.638964 +729.640696 +729.642161 +729.643759 +729.645557 +729.649220 +730.013489 +730.015187 +730.016719 +730.018451 +730.020415 +730.023146 +730.315687 +730.317451 +730.319050 +730.320748 +730.322646 +730.326243 +730.693475 +730.695173 +730.696639 +730.698270 +730.700135 +730.702200 +730.968700 +730.970498 +730.972063 +730.973961 +730.975992 +730.980621 +731.233568 +731.235366 +731.236931 +731.238796 +731.240794 +731.523078 +731.524876 +731.526408 +731.528073 +731.530204 +731.533534 +731.895305 +731.897070 +731.898635 +731.900300 +731.902531 +731.909058 +732.285382 +732.287047 +732.288545 +732.290210 +732.292208 +732.295238 +732.664236 +732.665901 +732.667399 +732.668998 +732.670762 +732.672760 +732.675591 +733.037495 +733.039127 +733.040592 +733.042191 +733.043922 +733.045887 +733.049483 +733.381951 +733.383649 +733.385147 +733.386879 +733.388710 +733.390708 +733.393739 +733.778420 +733.780119 +733.781617 +733.783182 +733.784947 +733.787478 +733.845420 +734.090674 +734.092373 +734.093838 +734.095470 +734.097401 +734.099732 +734.102096 +734.461403 +734.463135 +734.464600 +734.466232 +734.468030 +734.470228 +734.847550 +734.849182 +734.850647 +734.852212 +734.854144 +734.856075 +735.260936 +735.262635 +735.264133 +735.265732 +735.267563 +735.270560 +735.656008 +735.657673 +735.659104 +735.660703 +735.662468 +735.665232 +735.999031 +736.000762 +736.002294 +736.003926 +736.005658 +736.007689 +736.393536 +736.395201 +736.396699 +736.398265 +736.399963 +736.401828 +736.404758 +736.688541 +736.690272 +736.691804 +736.693436 +736.695267 +736.699729 +737.140222 +737.141953 +737.143519 +737.145184 +737.147015 +737.149246 +737.494834 +737.496665 +737.498297 +737.500095 +737.502726 +737.844450 +737.846115 +737.847614 +737.849245 +738.055506 +738.057171 +738.058669 +738.060401 +738.062199 +738.064430 +738.305555 +738.307487 +738.309218 +738.311416 +738.647313 +738.649012 +738.650543 +738.652175 +738.653840 +738.655905 +739.021039 +739.022704 +739.024169 +739.025734 +739.027499 +739.029464 +739.350010 +739.351741 +739.353207 +739.354972 +739.357069 +739.359367 +739.687539 +739.689270 +739.690769 +739.692434 +739.694332 +739.697629 +740.050209 +740.051907 +740.053406 +740.055037 +740.056736 +740.059600 +740.336023 +740.337721 +740.339153 +740.340718 +740.342583 +740.344648 +740.346845 +740.687438 +740.689203 +740.690768 +740.692466 +740.694497 +740.696529 +741.062296 +741.063928 +741.065359 +741.066925 +741.068689 +741.070754 +741.075416 +741.316808 +741.318539 +741.320071 +741.321769 +741.323568 +741.325732 +741.721303 +741.723001 +741.724466 +741.725998 +741.727663 +741.729528 +742.079677 +742.081442 +742.082941 +742.084573 +742.086304 +742.090067 +742.381009 +742.382741 +742.384273 +742.385971 +742.388768 +742.710446 +742.712144 +742.713676 +742.715374 +742.717472 +742.721602 +742.993896 +742.995627 +742.997192 +742.998891 +743.000889 +743.004751 +743.340549 +743.342114 +743.343879 +743.346043 +743.753502 +743.755533 +743.757265 +743.759296 +743.763525 +744.110711 +744.112576 +744.114174 +744.116139 +744.118104 +744.413908 +744.415739 +744.417371 +744.419202 +744.421200 +744.798789 +744.800554 +744.802086 +744.803717 +744.805782 +744.809012 +745.091762 +745.093494 +745.095026 +745.096724 +745.098489 +745.101453 +745.441113 +745.442944 +745.444576 +745.446407 +745.448405 +745.759128 +745.760859 +745.762324 +745.763890 +745.765721 +745.768052 +746.104648 +746.106347 +746.107812 +746.109444 +746.111242 +746.114339 +746.457295 +746.458960 +746.460426 +746.462057 +746.463822 +746.465920 +746.724928 +746.726626 +746.728191 +746.729856 +746.731721 +746.734751 +747.022796 +747.024561 +747.026126 +747.027724 +747.029523 +747.033052 +747.332786 +747.334517 +747.336049 +747.337681 +747.339512 +747.342676 +747.647271 +747.648969 +747.650434 +747.652133 +747.654097 +748.035949 +748.037647 +748.039145 +748.040944 +748.042842 +748.045339 +748.398153 +748.399984 +748.401516 +748.403181 +748.405179 +748.805811 +748.807576 +748.809141 +748.810840 +748.812771 +748.816667 +749.045138 +749.046837 +749.048335 +749.050033 +749.051898 +749.058625 +749.297053 +749.298851 +749.300383 +749.302181 +749.304146 +749.310040 +749.588295 +749.590093 +749.591691 +749.593456 +749.595421 +749.798251 +749.800083 +749.801648 +749.803279 +749.805311 +749.809507 +750.096319 +750.098118 +750.099749 +750.101814 +750.105577 +750.487162 +750.488827 +750.490392 +750.492090 +750.493988 +750.895453 +750.897251 +750.898916 +750.900681 +750.902779 +751.230151 +751.231949 +751.233481 +751.235246 +751.237244 +751.565549 +751.567214 +751.568712 +751.570244 +751.572109 +751.574207 +751.920560 +751.922358 +751.923923 +751.925622 +751.927486 +751.933048 +752.179801 +752.181599 +752.183197 +752.185062 +752.187027 +752.638608 +752.640639 +752.642338 +752.644435 +752.648498 +752.944468 +752.946300 +752.947865 +752.949663 +752.951761 +753.269177 +753.270908 +753.272407 +753.274039 +753.275803 +753.277935 +753.568411 +753.570175 +753.571707 +753.573339 +753.575237 +753.578734 +753.834677 +753.836542 +753.838141 +753.839939 +753.843335 +754.100578 +754.102343 +754.103941 +754.105673 +754.109169 +754.378566 +754.380298 +754.381896 +754.383661 +754.385859 +754.388123 +754.662382 +754.664247 +754.665945 +754.667943 +754.671340 +755.083694 +755.085425 +755.086957 +755.088622 +755.090487 +755.413264 +755.415062 +755.416660 +755.418392 +755.683693 +755.685558 +755.687223 +755.689221 +755.693383 +755.957253 +755.959051 +755.960649 +755.962348 +755.964412 +756.363146 +756.364978 +756.366610 +756.368341 +756.370306 +756.849959 +756.851724 +756.853322 +756.855054 +756.857751 +757.101008 +757.102906 +757.104604 +757.107435 +757.529312 +757.531277 +757.533109 +757.534907 +757.848027 +757.849758 +757.851357 +757.853122 +757.855086 +758.071936 +758.073767 +758.075532 +758.077564 +758.334906 +758.336737 +758.338369 +758.340167 +758.342299 +758.692914 +758.694679 +758.696211 +758.698009 +758.699974 +759.016457 +759.018189 +759.019754 +759.021452 +759.023417 +759.025648 +759.339201 +759.341132 +759.342830 +759.344762 +759.810562 +759.812494 +759.814192 +759.815990 +760.186419 +760.188151 +760.189649 +760.191214 +760.193046 +760.504334 +760.505999 +760.507498 +760.509196 +760.511028 +760.512892 +760.515290 +760.713525 +760.715257 +760.716755 +760.718420 +760.720152 +760.723282 +761.081790 +761.083788 +761.085519 +761.087351 +761.092446 +761.452252 +761.454084 +761.455649 +761.457314 +761.459512 +761.817120 +761.818885 +761.820384 +761.822182 +761.823980 +762.078858 +762.080723 +762.082388 +762.084220 +762.086251 +762.354616 +762.356347 +762.357912 +762.359611 +762.361842 +762.792111 +762.793909 +762.795474 +762.797272 +762.799237 +762.801801 +763.050086 +763.051918 +763.053516 +763.055314 +763.057412 +763.351951 +763.353815 +763.355447 +763.357279 +763.359343 +763.651884 +763.653615 +763.655180 +763.656912 +763.658777 +763.984717 +763.986515 +763.988080 +763.989745 +763.991610 +764.273861 +764.275659 +764.277158 +764.278823 +764.280821 +764.283085 +764.566501 +764.568266 +764.569865 +764.571496 +764.573395 +764.575859 +764.873860 +764.875659 +764.877257 +764.878989 +764.880853 +765.123444 +765.125275 +765.126907 +765.128705 +765.441492 +765.443224 +765.444756 +765.446521 +765.448452 +765.451815 +765.765102 +765.766966 +765.768532 +765.770230 +765.772294 +766.027173 +766.029071 +766.030736 +766.032700 +766.326473 +766.328171 +766.329736 +766.331435 +766.333599 +766.335730 +766.770995 +766.773193 +766.774891 +766.776955 +767.068597 +767.070528 +767.072193 +767.074158 +767.415316 +767.417115 +767.418646 +767.420378 +767.422376 +767.424774 +767.735962 +767.737760 +767.739292 +767.741024 +767.742889 +767.744820 +767.748916 +768.004260 +768.006158 +768.007790 +768.009755 +768.214683 +768.216681 +768.218479 +768.220610 +768.536095 +768.537926 +768.539591 +768.541556 +768.543720 +768.883880 +768.885711 +768.887310 +768.889141 +768.891206 +769.225738 +769.227569 +769.229134 +769.230799 +769.232697 +769.587642 +769.589407 +769.590872 +769.592537 +769.594402 +769.596400 +769.964864 +769.966696 +769.968328 +769.970059 +769.972423 +770.270825 +770.272656 +770.274288 +770.275986 +770.278117 +770.580881 +770.582746 +770.584311 +770.586043 +770.588240 +770.949412 +770.951277 +770.952942 +770.954907 +771.265829 +771.267860 +771.269592 +771.273288 +771.596032 +771.597796 +771.599395 +771.601060 +771.603091 +771.919241 +771.921106 +771.922671 +771.924436 +771.926534 +772.248811 +772.250676 +772.252375 +772.254506 +772.579314 +772.581046 +772.582611 +772.584309 +772.586140 +772.906054 +772.907885 +772.909483 +772.911215 +772.913380 +772.915644 +773.215411 +773.217242 +773.218840 +773.220639 +773.223802 +773.588903 +773.590735 +773.592300 +773.594065 +773.596229 +773.963928 +773.965793 +773.967424 +773.969256 +773.971187 +774.251773 +774.253571 +774.255203 +774.256868 +774.259998 +774.663295 +774.665526 +774.667790 +774.982841 +774.984839 +774.986538 +774.988469 +775.406218 +775.408582 +775.411079 +778.503917 +778.599854 +778.719967 +778.977143 +779.103750 +779.439414 +779.627092 +779.689996 +779.750069 +779.856496 +779.948604 +780.087498 +780.240845 +780.467718 +780.558027 +780.626392 +780.669083 +780.924660 +781.510474 +781.726591 +782.102248 +782.266384 +782.759857 +783.128554 +783.205177 +784.699615 +786.839573 +786.841970 +786.844201 +786.925021 +787.069110 +787.354058 +787.518493 +787.581697 +787.715363 +787.813897 +791.244297 +794.243461 +794.644060 +794.870401 +794.872332 +794.874097 +794.875995 +794.941363 +796.608128 +797.262639 +797.331137 +798.185182 +798.954779 +800.208524 +800.256676 +804.030864 +804.273854 +804.447148 +804.599295 +804.660234 +804.715745 +804.752509 +804.824170 +804.851942 +804.909585 +804.999561 +805.094766 +805.146081 +805.201293 +805.312914 +805.471189 +805.612814 +805.743217 +808.051739 +808.093298 +808.147677 +808.189968 +808.232925 +808.300157 +808.351473 +808.396095 +808.451639 +808.502588 +808.574916 +808.637020 +808.727363 +808.808515 +808.835655 +809.004419 +809.071618 +809.105485 +809.161928 +809.219803 +809.288235 +809.343147 +809.373949 +809.428361 +809.490000 +809.563992 +809.681841 +809.733289 +809.842280 +809.901588 +809.976080 +811.421533 +811.465755 +811.518269 +811.545942 +811.595925 +811.626328 +811.674080 +811.700853 +811.717703 +811.772881 +811.795925 +811.827193 +811.894626 +811.930290 +811.982205 +812.077177 +812.113906 +812.191495 +812.263590 +812.328625 +812.407879 +812.508012 +812.573813 +812.687299 +812.764988 +813.066253 +813.168684 +813.447305 +813.545307 +813.627824 +813.666586 +813.691694 +813.734318 +813.765553 +813.801384 +813.836149 +813.858360 +813.885167 +813.932886 +813.992459 +814.040045 +814.071613 +814.164754 +814.234284 +814.277641 +814.314903 +814.377374 +814.450068 +814.488629 +814.564653 +814.927057 +815.502248 +815.567849 +815.595222 +815.618598 +815.646271 +815.673377 +815.712837 +815.755328 +815.813536 +815.900050 +815.970546 +816.034449 +816.103946 +816.200149 +816.270712 +816.355128 +816.526922 +816.690692 +819.467412 +827.012926 +829.930738 +830.606262 +830.608726 +831.260441 +831.262439 +831.264570 +831.950483 +831.953181 +839.155904 +839.202591 +839.301592 +839.392800 +839.496730 +839.553972 +839.676849 +839.736589 +839.817742 +839.860366 +840.973385 +841.060597 +841.142549 +841.175349 +841.223634 +841.291300 +841.330727 +841.369721 +841.403521 +841.474050 +841.531593 +841.576381 +841.614110 +841.675748 +841.727996 +841.771686 +841.932591 +841.982441 +842.054070 +842.098092 +842.137653 +842.197892 +842.250673 +842.270353 +842.295961 +842.316940 +842.378878 +842.406950 +842.437386 +842.476780 +842.518671 +842.543180 +842.574415 +842.594562 +842.641981 +842.673083 +842.704885 +842.758564 +842.864991 +842.891631 +842.933223 +842.962494 +842.982607 +843.022600 +843.061461 +843.097692 +843.151738 +843.190132 +843.222833 +843.247975 +843.276246 +843.309380 +843.344811 +843.370718 +843.383572 +843.419636 +843.444977 +843.481574 +843.510878 +843.528793 +843.588567 +843.613209 +843.634787 +843.657997 +843.674980 +843.715174 +843.753335 +843.792430 +843.809246 +843.835986 +843.860728 +843.894994 +843.945709 +843.978510 +844.000122 +844.045243 +844.088233 +844.124131 +844.154767 +844.193728 +844.237018 +844.266988 +844.313874 +844.368153 +844.433355 +844.472848 +844.518969 +844.554433 +844.633021 +844.663990 +844.695692 +844.724696 +844.768053 +844.793827 +844.816305 +844.882272 +844.919102 +844.958662 +845.018502 +845.075745 +845.116637 +845.202984 +845.223131 +845.248072 +845.308745 +845.339980 +845.389464 +845.435984 +845.485968 +845.553933 +845.609477 +845.676743 +845.724962 +845.782804 +845.810376 +845.837782 +845.877809 +845.911675 +845.960426 +846.025095 +846.078241 +846.128191 +846.184968 +846.262923 +846.299986 +846.352733 +846.376609 +846.410942 +846.453599 +846.485234 +846.506013 +846.543576 +846.598820 +846.631188 +846.664321 +846.699753 +846.759793 +846.795091 +846.829423 +846.874145 +846.903682 +846.997621 +847.036649 +847.095923 +847.140312 +847.174344 +847.211674 +847.251600 +847.297821 +847.352732 +847.421763 +847.448869 +847.501550 +847.541643 +847.568183 +847.596655 +847.632452 +847.671513 +847.703448 +847.757494 +847.819632 +847.865919 +847.907743 +847.950268 +847.983235 +848.001749 +848.048802 +848.095322 +848.140177 +848.170980 +848.259325 +848.309275 +848.349202 +848.399318 +848.448902 +848.490660 +848.510840 +848.579737 +848.690094 +848.787463 +848.850233 +848.877373 +849.002581 +849.100982 +849.164352 +849.215035 +849.359723 +849.401948 +849.530985 +849.577072 +849.622693 +849.648701 +849.711571 +849.748035 +849.778171 +849.882700 +849.918564 +849.964118 +850.015434 +850.107908 +850.185697 +850.225190 +850.324058 +850.360755 +850.398117 +850.501114 +850.543272 +850.584231 +850.629352 +850.666349 +850.736112 +850.845969 +850.878769 +850.996918 +851.071210 +851.107940 +851.179702 +851.245869 +851.331982 +851.471243 +851.664883 +851.706774 +851.950763 +852.190290 +852.234679 +858.684789 +870.374687 +881.997453 +890.642433 +890.644297 +890.646295 +890.769972 +890.772236 +890.898809 +896.130606 +896.132504 +896.134235 +896.136333 +896.934901 +898.208759 +903.401661 +903.583179 +904.836891 +908.913910 +908.915575 +908.917040 +908.918738 +909.118238 +909.120136 +909.121901 +915.155928 +915.158226 +915.165085 +917.141107 +917.143105 +917.144970 +917.147002 +917.149932 +917.331084 +918.484563 +923.939469 +924.093981 +924.317824 +925.651588 +925.653353 +925.655085 +925.656916 +925.860846 +925.863243 +925.865175 +926.047492 +926.307032 +926.855383 +926.859213 +933.508657 +933.511687 +933.745953 +933.748450 +934.807257 +934.809754 +935.698465 +935.706024 +938.590037 +938.592168 +938.594266 +938.850143 +938.852341 +938.854339 +944.274613 +945.403783 +950.233382 +950.235014 +950.236612 +950.446169 +950.448067 +950.449865 +950.451797 +950.597950 +950.600048 +950.601847 +950.676472 +950.681234 +952.151296 +952.152927 +952.154426 +952.156091 +952.158055 +952.301479 +952.303177 +952.304842 +952.502178 +952.504176 +952.505974 +952.632114 +952.634079 +952.636077 +952.753360 +952.757189 +956.048328 +958.039635 +958.129645 +958.302372 +958.622418 +958.624016 +958.625515 +958.627113 +958.628878 +958.631076 +958.633074 +958.835838 +958.837603 +958.839268 +958.841232 +959.046660 +959.048491 +959.050256 +959.185354 +959.187319 +959.189117 +959.191249 +962.953483 +962.964571 +964.848652 +964.850384 +964.851916 +964.853614 +964.855479 +964.857610 +965.024143 +965.026474 +965.030170 +965.240460 +965.242824 +965.244989 +965.948584 +965.951215 +966.071495 +966.074592 +966.640459 +967.309755 +967.311420 +967.312985 +967.314617 +967.316648 +967.465200 +967.467231 +967.601663 +967.603528 +967.605326 +967.732366 +967.734763 +970.113848 +970.116179 +970.118244 +970.733395 +971.125269 +971.369824 +971.844616 +971.846780 +971.849011 +972.048612 +972.135958 +972.987339 +972.990802 +977.374980 +977.859095 +981.404546 +983.557358 +983.560488 +988.015396 +988.017160 +988.019092 +988.201609 +988.203341 +988.204939 +988.207037 +988.353890 +988.357253 +990.945962 +991.026315 +991.226348 +991.371136 +992.004070 +992.150390 +992.347692 +992.498674 +992.567506 +993.612426 +993.614291 +993.616189 +993.814324 +993.816788 +993.941064 +994.697074 +1000.636995 +1000.723808 +1001.432099 +1001.433730 +1001.435262 +1001.436894 +1001.438859 +1001.440990 +1001.749614 +1001.751179 +1001.752678 +1001.754343 +1001.756907 +1001.883480 +1001.885478 +1001.955608 +1001.958172 +1002.023640 +1002.096101 +1002.398465 +1002.947215 +1005.642418 +1006.267359 +1006.631594 +1007.482442 +1008.362128 +1008.363860 +1008.365425 +1008.367323 +1008.551339 +1008.555202 +1008.692198 +1010.056632 +1010.726828 +1011.188932 +1011.354633 +1012.291329 +1012.749170 +1012.751102 +1012.752800 +1012.754665 +1012.756796 +1013.067552 +1013.069550 +1013.275510 +1013.277442 +1013.279340 +1013.487531 +1013.489529 +1013.620531 +1019.855024 +1019.856989 +1019.858820 +1020.079966 +1020.082829 +1020.332080 +1020.483129 +1020.485393 +1030.048987 +1031.194440 +1031.196971 +1031.955811 +1033.064401 +1033.066932 +1033.209390 +1038.298129 +1039.580046 +1040.427531 +1040.429829 +1068.972824 +1069.214482 +1069.344385 +1069.375554 +1069.435094 +1069.674555 +1069.728234 +1069.798531 +1069.841188 +1069.881547 +1069.992037 +1070.037425 +1070.109453 +1070.334894 +1072.022604 +1072.119940 +1072.157636 +1072.249943 +1072.320872 +1072.349211 +1072.484242 +1072.666626 +1074.981010 +1075.042148 +1075.100390 +1075.173983 +1075.244546 +1075.296827 +1087.084860 +1087.132346 +1087.211467 +1087.283395 +1087.337674 +1087.376602 +1087.443435 +1087.473671 +1087.624820 +1087.689921 +1087.771440 +1088.234176 +1088.518825 +1088.625418 +1088.744665 +1088.822521 +1089.246563 +1089.309267 +1089.406303 +1089.595980 +1089.694415 +1089.865410 +1089.948927 +1090.055986 +1090.115560 +1090.167341 +1090.195846 +1090.237205 +1090.279529 +1090.324684 +1090.381627 +1090.459149 +1090.565543 +1090.630911 +1090.731743 +1090.848426 +1090.894314 +1090.927181 +1091.102172 +1091.197077 +1091.257617 +1091.302638 +1091.339601 +1091.377930 +1091.412928 +1091.452621 +1091.494480 +1091.528412 +1091.570570 +1091.616258 +1091.682791 +1091.754286 +1091.788452 +1091.832708 +1091.889351 +1091.922385 +1091.971702 +1092.001705 +1092.045828 +1092.098342 +1092.153020 +1092.191615 +1092.244562 +1092.322018 +1092.348724 +1092.380293 +1092.401771 +1092.431275 +1092.461811 +1092.504036 +1092.551921 +1092.632041 +1092.671668 +1092.745760 +1092.825281 +1092.864641 +1092.904735 +1092.947725 +1093.017821 +1093.071568 +1093.098341 +1093.123948 +1093.179293 +1093.203968 +1093.271301 +1093.340698 +1093.376396 +1093.406532 +1093.483455 +1093.545393 +1093.599173 +1093.651321 +1093.712493 +1093.769769 +1093.878393 +1093.919519 +1094.028410 +1094.129808 +1094.196075 +1094.421316 +1094.509994 +1094.577560 +1094.622349 +1094.747290 +1094.801036 +1094.839132 +1095.116421 +1095.154050 +1095.206264 +1095.259211 +1095.326644 +1095.359777 +1095.454549 +1095.572897 +1095.613956 +1095.667569 +1095.735601 +1095.776726 +1095.912757 +1095.976293 +1096.053949 +1096.107995 +1096.219883 +1096.305997 +1096.434268 +1096.899136 +1097.004231 +1097.059109 +1097.171763 +1097.266269 +1097.363904 +1097.411756 +1097.566235 +1097.808559 +1098.062738 +1098.159941 +1098.620646 +1098.622678 +1098.624509 +1098.628239 +1098.681086 +1102.688275 +1110.964557 +1111.024896 +1111.050238 +1111.300021 +1111.356464 +1111.505215 +1112.764621 +1112.766886 +1112.768751 +1112.773446 +1120.975169 +1121.068143 +1121.592385 +1121.594350 +1121.596181 +1121.598179 +1121.776267 +1121.915128 +1121.917027 +1121.919091 +1129.102534 +1129.106763 +1131.282352 +1131.338396 +1131.539827 +1131.541459 +1131.543058 +1131.544922 +1131.678089 +1131.680953 +1132.010057 +1134.024740 +1135.066597 +1136.571657 +1136.626636 +1137.127867 +1137.687274 +1137.689072 +1137.690737 +1137.692802 +1137.815013 +1137.817210 +1144.920067 +1145.112608 +1145.114739 +1145.116670 +1145.120600 +1145.270949 +1145.425028 +1146.302550 +1146.306146 +1146.631221 +1146.635050 +1147.541676 +1147.695156 +1147.828189 +1147.884500 +1148.034550 +1148.238645 +1148.316201 +1148.485498 +1148.556094 +1148.634749 +1148.710207 +1148.842574 +1149.557159 +1149.558724 +1149.560289 +1149.562021 +1149.724758 +1149.726722 +1149.728720 +1149.917598 +1149.919563 +1149.921294 +1150.063618 +1150.066116 +1150.757058 +1150.883198 +1150.914733 +1151.286827 +1151.881066 +1151.882831 +1151.884429 +1151.886261 +1152.066847 +1152.068911 +1152.071575 +1152.211269 +1152.213533 +1155.140337 +1155.142135 +1155.143767 +1155.145598 +1155.147763 +1155.305971 +1155.307969 +1155.309967 +1155.460416 +1155.602940 +1157.113628 +1157.669538 +1158.348825 +1159.069237 +1159.071002 +1159.072634 +1159.074399 +1159.076663 +1159.399840 +1159.401571 +1159.403170 +1159.404868 +1159.406833 +1159.409064 +1159.651321 +1159.653153 +1159.654851 +1159.815590 +1161.083055 +1161.798439 +1162.333470 +1163.448087 +1163.449819 +1163.451451 +1163.453249 +1163.731470 +1163.733135 +1163.734800 +1163.875160 +1163.877158 +1164.078823 +1164.955279 +1165.293673 +1165.558608 +1165.995704 +1167.033132 +1167.035629 +1167.038293 +1167.813018 +1167.814849 +1167.816548 +1167.818579 +1167.976121 +1167.978019 +1167.979884 +1168.163334 +1168.165532 +1168.167696 +1171.617976 +1171.619874 +1171.621506 +1171.623304 +1171.765428 +1171.767160 +1171.769025 +1171.901692 +1171.903756 +1172.048445 +1172.529130 +1173.244115 +1173.390202 +1173.748710 +1173.878946 +1174.435256 +1174.436887 +1174.438419 +1174.440084 +1174.442016 +1174.445479 +1174.674649 +1174.676781 +1174.818139 +1174.820304 +1174.950473 +1174.952804 +1174.954836 +1175.749940 +1176.003253 +1176.081142 +1176.244778 +1176.858863 +1176.861394 +1177.145976 +1177.147940 +1177.149672 +1177.152070 +1177.456032 +1177.982505 +1177.985302 +1178.672215 +1178.986100 +1179.266020 +1179.884901 +1180.124627 +1180.238080 +1180.406012 +1180.635116 +1180.690328 +1180.753864 +1180.872778 +1180.911007 +1181.013304 +1181.104313 +1181.174676 +1181.292292 +1181.331786 +1181.496354 +1181.498219 +1181.499951 +1181.688795 +1181.690660 +1181.692358 +1181.923094 +1181.925025 +1181.926723 +1181.928755 +1182.113603 +1182.116101 +1182.118964 +1182.193823 +1182.491092 +1182.630519 +1183.626056 +1183.628686 +1183.633915 +1183.914001 +1184.811536 +1184.813434 +1184.815332 +1184.817563 +1185.113767 +1185.115598 +1185.117296 +1185.395218 +1187.541337 +1187.710467 +1187.814230 +1187.945665 +1188.073670 +1188.197580 +1188.255855 +1189.235374 +1189.237106 +1189.238837 +1189.240869 +1189.519157 +1189.520788 +1189.522287 +1189.524019 +1189.526183 +1189.810865 +1189.812829 +1189.950358 +1189.952257 +1189.954055 +1189.956253 +1189.958817 +1190.039269 +1190.121587 +1190.921953 +1191.013261 +1192.189584 +1192.192281 +1192.196610 +1193.571933 +1193.573532 +1193.575063 +1193.576662 +1193.578460 +1193.580558 +1193.811394 +1193.812992 +1193.814490 +1193.816089 +1193.817920 +1193.820251 +1193.973498 +1193.975230 +1193.976795 +1193.978526 +1193.980624 +1193.982955 +1194.074164 +1194.200937 +1194.206665 +1196.468534 +1196.470332 +1196.471930 +1196.473662 +1196.475760 +1196.479356 +1196.696905 +1196.698803 +1197.006762 +1197.008460 +1197.009958 +1197.011557 +1197.013288 +1197.016452 +1197.131337 +1197.133701 +1197.351150 +1198.932101 +1198.933899 +1198.935498 +1198.937196 +1198.939061 +1198.942924 +1199.641458 +1199.643223 +1199.644821 +1199.646553 +1199.648384 +1199.651681 +1200.014085 +1200.015683 +1200.017148 +1200.018713 +1200.020611 +1200.022843 +1200.287111 +1200.288776 +1200.292839 +1200.543788 +1200.545619 +1200.547284 +1200.549149 +1200.551180 +1200.653511 +1200.785746 +1202.478917 +1203.444151 +1203.445949 +1203.447614 +1203.449479 +1203.753475 +1203.755706 +1203.895100 +1203.896931 +1203.898563 +1203.900328 +1204.037624 +1204.039422 +1204.041120 +1204.111750 +1204.182978 +1204.191004 +1205.089271 +1205.271722 +1205.447979 +1205.613513 +1206.325134 +1206.327765 +1206.329929 +1207.712678 +1207.911280 +1208.041616 +1208.325032 +1209.585737 +1210.296492 +1210.298057 +1210.299522 +1210.301054 +1210.302786 +1210.304684 +1210.308247 +1210.623365 +1210.625063 +1210.626661 +1210.628493 +1210.769219 +1210.771217 +1210.772982 +1210.934054 +1210.936784 +1212.216503 +1212.218102 +1212.219567 +1212.221132 +1212.222930 +1212.224862 +1212.229191 +1212.647638 +1212.649337 +1212.650835 +1212.652534 +1212.654365 +1212.656696 +1212.664588 +1213.901716 +1213.903381 +1213.904947 +1213.906778 +1214.206045 +1214.207677 +1214.209142 +1214.210674 +1214.212472 +1214.372612 +1214.374343 +1214.376042 +1214.377840 +1214.607377 +1214.609208 +1214.610840 +1214.612638 +1214.614769 +1214.815002 +1215.975973 +1215.977838 +1215.979370 +1215.981035 +1215.983000 +1215.985963 +1216.454994 +1216.456726 +1216.458257 +1216.459889 +1216.461687 +1216.464318 +1217.163784 +1217.165483 +1217.167015 +1217.168713 +1217.170544 +1217.172609 +1217.178237 +1217.424523 +1217.426488 +1217.428286 +1217.430184 +1217.433681 +1217.915332 +1217.917097 +1217.918629 +1217.920327 +1217.922259 +1218.185595 +1218.187227 +1218.188659 +1218.190290 +1218.192055 +1218.194253 +1218.357190 +1218.358988 +1218.360753 +1218.522491 +1218.524289 +1218.525954 +1218.677869 +1218.679700 +1218.840906 +1218.843470 +1218.988991 +1218.991055 +1218.992953 +1219.141471 +1219.144269 +1222.204539 +1222.206503 +1222.208302 +1222.210166 +1222.461015 +1222.462714 +1222.464212 +1222.465944 +1222.624685 +1222.627082 +1222.630179 +1225.203603 +1225.205701 +1225.207633 +1225.209497 +1225.488851 +1225.490616 +1225.492248 +1225.494013 +1225.495977 +1225.498475 +1225.828211 +1225.832574 +1226.233406 +1226.235271 +1226.236869 +1226.238634 +1226.240765 +1226.877661 +1226.879592 +1226.881191 +1226.883189 +1226.887118 +1227.388216 +1227.389881 +1227.391347 +1227.393012 +1227.394810 +1227.397074 +1227.725612 +1227.727510 +1227.729142 +1227.731007 +1227.733105 +1228.037666 +1228.039098 +1228.040597 +1228.042328 +1228.044559 +1228.218652 +1228.220550 +1228.222282 +1228.224146 +1228.228142 +1228.529807 +1228.531938 +1228.533637 +1228.536667 +1229.010792 +1229.012690 +1229.014322 +1229.016020 +1229.018618 +1229.385883 +1229.387748 +1229.389413 +1229.391245 +1229.394775 +1229.769466 +1229.771198 +1229.772663 +1229.774295 +1229.776093 +1229.779556 +1230.170998 +1230.172929 +1230.174627 +1230.176592 +1230.179955 +1230.670664 +1230.672496 +1230.674061 +1230.675859 +1230.677790 +1230.684350 +1231.052815 +1231.054546 +1231.056078 +1231.057743 +1231.059508 +1231.061506 +1231.479688 +1231.481286 +1231.482784 +1231.484316 +1231.486081 +1231.488079 +1231.490943 +1231.790543 +1231.792308 +1231.793940 +1231.795705 +1231.797636 +1231.802098 +1232.170396 +1232.172094 +1232.173660 +1232.175291 +1232.177356 +1232.512221 +1232.513986 +1232.515551 +1232.517316 +1232.519180 +1232.917981 +1232.919713 +1232.921245 +1232.922910 +1232.924708 +1232.928104 +1233.289110 +1233.290741 +1233.292140 +1233.293705 +1233.295370 +1233.297368 +1233.299999 +1233.728403 +1233.730102 +1233.731567 +1233.733165 +1233.734897 +1233.737028 +1233.740624 +1234.111353 +1234.112985 +1234.114450 +1234.115982 +1234.117714 +1234.119645 +1234.122775 +1234.483980 +1234.485645 +1234.487110 +1234.488709 +1234.490440 +1234.492605 +1234.495169 +1234.879751 +1234.881416 +1234.882914 +1234.884446 +1234.886111 +1234.888076 +1234.890340 +1234.893271 +1235.271825 +1235.273490 +1235.274988 +1235.276587 +1235.278285 +1235.280217 +1235.283480 +1235.593903 +1235.595767 +1235.597399 +1235.599131 +1235.601095 +1235.605358 +1235.943120 +1235.944785 +1235.946350 +1235.948048 +1235.949979 +1235.953376 +1236.286509 +1236.288241 +1236.289706 +1236.291338 +1236.293835 +1236.520708 +1236.522573 +1236.524171 +1236.525870 +1236.527801 +1236.530132 +1236.853808 +1236.855506 +1236.857038 +1236.858637 +1236.860401 +1236.863065 +1237.200994 +1237.202692 +1237.204157 +1237.205789 +1237.207687 +1237.210418 +1237.509585 +1237.511283 +1237.512782 +1237.514480 +1237.516278 +1237.519175 +1237.869258 +1237.870890 +1237.872355 +1237.873987 +1237.875885 +1237.878183 +1238.255505 +1238.257203 +1238.258735 +1238.260333 +1238.262065 +1238.264962 +1238.615012 +1238.616643 +1238.618075 +1238.619640 +1238.621372 +1238.623403 +1238.626534 +1238.993599 +1238.995298 +1238.996763 +1238.998361 +1239.000226 +1239.002424 +1239.366460 +1239.368091 +1239.369556 +1239.371155 +1239.372986 +1239.375151 +1239.710881 +1239.712480 +1239.713912 +1239.715410 +1239.717075 +1239.719040 +1239.721171 +1240.121171 +1240.122869 +1240.124334 +1240.125933 +1240.127797 +1240.129829 +1240.439752 +1240.441483 +1240.443082 +1240.444813 +1240.446645 +1240.449109 +1240.895129 +1240.896828 +1240.898326 +1240.900024 +1240.901989 +1240.903987 +1241.146178 +1241.147843 +1241.149342 +1241.150973 +1241.152838 +1241.155036 +1241.448176 +1241.449841 +1241.451339 +1241.452938 +1241.454669 +1241.457000 +1241.724433 +1241.726231 +1241.727829 +1241.729627 +1241.731592 +1241.735022 +1242.051072 +1242.052737 +1242.054202 +1242.055834 +1242.057599 +1242.060196 +1242.063227 +1242.407982 +1242.409713 +1242.411245 +1242.412910 +1242.414941 +1242.418072 +1242.851737 +1242.853369 +1242.854834 +1242.856366 +1242.858131 +1242.860262 +1242.862227 +1243.256799 +1243.258530 +1243.260095 +1243.261827 +1243.263792 +1243.266489 +1243.652070 +1243.653768 +1243.655266 +1243.656965 +1243.658696 +1243.661993 +1244.025030 +1244.026795 +1244.028326 +1244.030125 +1244.032023 +1244.034454 +1244.392362 +1244.394060 +1244.395525 +1244.397091 +1244.398955 +1244.401420 +1244.403584 +1244.988632 +1244.990463 +1244.991995 +1244.993660 +1244.995758 +1245.332088 +1245.333786 +1245.335285 +1245.336950 +1245.338815 +1245.341046 +1245.726859 +1245.728524 +1245.729956 +1245.731588 +1245.733486 +1245.735451 +1246.084834 +1246.086466 +1246.087965 +1246.089596 +1246.091428 +1246.093459 +1246.097189 +1246.432453 +1246.434118 +1246.435583 +1246.437182 +1246.438980 +1246.443542 +1246.753032 +1246.754797 +1246.756329 +1246.758061 +1246.760025 +1247.040211 +1247.041843 +1247.043308 +1247.044873 +1247.046638 +1247.050035 +1247.370781 +1247.372612 +1247.374177 +1247.375942 +1247.377774 +1247.381736 +1247.695589 +1247.697387 +1247.698985 +1247.700650 +1247.702682 +1248.027490 +1248.029221 +1248.030687 +1248.032252 +1248.034050 +1248.036214 +1248.397852 +1248.399717 +1248.401349 +1248.403147 +1248.405944 +1248.762987 +1248.764685 +1248.766250 +1248.767982 +1248.769714 +1248.772711 +1249.037978 +1249.039743 +1249.041308 +1249.042940 +1249.045038 +1249.048601 +1249.466017 +1249.467815 +1249.469347 +1249.471078 +1249.473010 +1249.801248 +1249.803079 +1249.804644 +1249.806376 +1249.808274 +1249.811471 +1250.142373 +1250.144138 +1250.145703 +1250.147335 +1250.149666 +1250.517331 +1250.519162 +1250.520827 +1250.522559 +1250.524690 +1250.860720 +1250.862485 +1250.863984 +1250.865649 +1250.867414 +1250.870810 +1251.188559 +1251.190324 +1251.191889 +1251.193587 +1251.195485 +1251.198649 +1251.433547 +1251.435312 +1251.436844 +1251.438609 +1251.440507 +1251.442738 +1251.799780 +1251.801445 +1251.802944 +1251.804609 +1251.806674 +1251.809204 +1252.054093 +1252.055891 +1252.057456 +1252.059221 +1252.061552 +1252.302877 +1252.304875 +1252.306706 +1252.310203 +1252.664282 +1252.666047 +1252.669410 +1252.671641 +1252.906839 +1252.908670 +1252.910302 +1252.912267 +1252.915996 +1253.202177 +1253.203908 +1253.205507 +1253.207105 +1253.209036 +1253.212366 +1253.528050 +1253.529782 +1253.531314 +1253.533045 +1253.535177 +1253.919792 +1253.921557 +1253.923088 +1253.924820 +1253.926984 +1254.360983 +1254.362682 +1254.364180 +1254.365812 +1254.367643 +1254.369708 +1254.654290 +1254.655955 +1254.657553 +1254.659152 +1254.661183 +1254.663414 +1254.966677 +1254.968442 +1254.970040 +1254.971772 +1254.974003 +1255.375268 +1255.377299 +1255.379064 +1255.381029 +1255.383127 +1255.724585 +1255.726450 +1255.728082 +1255.729913 +1255.733909 +1256.055720 +1256.057518 +1256.059117 +1256.060848 +1256.064245 +1256.430112 +1256.431844 +1256.433376 +1256.434941 +1256.437804 +1256.762579 +1256.764211 +1256.765643 +1256.767275 +1256.769040 +1256.771371 +1257.207268 +1257.208999 +1257.210464 +1257.212129 +1257.213928 +1257.215992 +1257.555885 +1257.557584 +1257.559115 +1257.560780 +1257.562678 +1257.909331 +1257.911063 +1257.912595 +1257.914260 +1257.916125 +1257.919588 +1258.227080 +1258.228878 +1258.230443 +1258.232142 +1258.234006 +1258.236004 +1258.580560 +1258.582391 +1258.584023 +1258.585788 +1258.589417 +1258.892847 +1258.894545 +1258.896077 +1258.897742 +1258.899840 +1258.903103 +1259.222084 +1259.223916 +1259.225581 +1259.227379 +1259.230542 +1259.508697 +1259.510429 +1259.511994 +1259.513725 +1259.515790 +1259.518354 +1259.812426 +1259.814125 +1259.815623 +1259.817355 +1259.819286 +1259.823382 +1260.147524 +1260.149422 +1260.151054 +1260.152852 +1260.154884 +1260.496142 +1260.497907 +1260.499505 +1260.501237 +1260.503235 +1260.506831 +1260.751953 +1260.753751 +1260.755383 +1260.757247 +1260.759245 +1261.112958 +1261.114723 +1261.116255 +1261.117986 +1261.119884 +1261.122149 +1261.403833 +1261.405698 +1261.407263 +1261.409028 +1261.411060 +1261.702168 +1261.703900 +1261.705432 +1261.707230 +1261.709261 +1262.067203 +1262.069101 +1262.070733 +1262.072564 +1262.075861 +1262.307029 +1262.308761 +1262.310259 +1262.311858 +1262.313589 +1262.315787 +1262.318418 +1262.513056 +1262.514821 +1262.516420 +1262.518151 +1262.520249 +1262.888181 +1262.889913 +1262.891478 +1262.893109 +1262.895207 +1263.206762 +1263.208494 +1263.210025 +1263.211790 +1263.213589 +1263.582852 +1263.584417 +1263.586282 +1263.588313 +1263.964970 +1263.966668 +1263.968167 +1263.969832 +1263.971763 +1263.974960 +1264.286315 +1264.288080 +1264.289611 +1264.291310 +1264.293241 +1264.607094 +1264.608892 +1264.610424 +1264.612055 +1264.613953 +1264.616817 +1265.003364 +1265.005362 +1265.007160 +1265.009158 +1265.358208 +1265.360173 +1265.361772 +1265.363670 +1265.365734 +1265.659906 +1265.661738 +1265.663303 +1265.665035 +1265.667166 +1265.965900 +1265.967665 +1265.969197 +1265.970795 +1265.972593 +1265.975990 +1266.322510 +1266.324275 +1266.325840 +1266.327571 +1266.329470 +1266.695836 +1266.697734 +1266.699366 +1266.701231 +1266.703762 +1267.126272 +1267.128103 +1267.129602 +1267.131234 +1267.133065 +1267.136895 +1267.413118 +1267.415116 +1267.416848 +1267.418779 +1267.728702 +1267.730467 +1267.731999 +1267.733764 +1267.735729 +1268.037127 +1268.038892 +1268.040490 +1268.042288 +1268.044852 +1268.385145 +1268.387010 +1268.388542 +1268.390273 +1268.394269 +1268.715281 +1268.717146 +1268.718878 +1268.720743 +1268.724772 +1269.037259 +1269.039224 +1269.040889 +1269.042987 +1269.357305 +1269.359170 +1269.360769 +1269.362667 +1269.365464 +1269.665397 +1269.667395 +1269.669160 +1269.670991 +1269.677019 +1269.981913 +1269.983911 +1269.985676 +1269.987641 +1270.335127 +1270.336925 +1270.338490 +1270.340155 +1270.342186 +1270.660301 +1270.662133 +1270.663698 +1270.665529 +1270.668859 +1270.994367 +1270.996198 +1270.997863 +1270.999628 +1271.002092 +1271.351309 +1271.353108 +1271.354673 +1271.356404 +1271.358669 +1271.664862 +1271.666760 +1271.668425 +1271.670257 +1271.960033 +1271.961865 +1271.963430 +1271.965162 +1271.967259 +1272.318608 +1272.320406 +1272.322004 +1272.323803 +1272.325667 +1272.716210 +1272.717975 +1272.719573 +1272.721371 +1272.723269 +1273.106952 +1273.108684 +1273.110282 +1273.111980 +1273.113912 +1273.443615 +1273.445446 +1273.447078 +1273.448910 +1273.451141 +1273.762496 +1273.764294 +1273.765926 +1273.767890 +1274.108549 +1274.110314 +1274.111946 +1274.113744 +1274.116208 +1274.399991 +1274.402255 +1274.404087 +1274.704719 +1274.706684 +1274.708382 +1274.710347 +1275.084040 +1275.085838 +1275.087503 +1275.089434 +1275.092964 +1275.483406 +1275.485471 +1275.487269 +1275.489201 +1275.771884 +1275.774115 +1275.775880 +1276.178078 +1276.180209 +1276.181941 +1276.184105 +1276.512310 +1276.514075 +1276.515706 +1276.517571 +1276.519736 +1276.867488 +1276.869352 +1276.870918 +1276.872682 +1276.874780 +1277.277544 +1277.279275 +1277.280841 +1277.282506 +1277.284537 +1277.287434 +1277.667687 +1277.669585 +1277.671250 +1277.673081 +1277.675279 +1278.017203 +1278.019035 +1278.020667 +1278.022531 +1278.025861 +1278.428625 +1278.430856 +1278.432754 +1278.642777 +1278.645075 +1278.647239 +1278.965421 +1279.129990 +1280.591926 +1280.598320 +1281.605478 +1281.795821 +1281.922494 +1282.424292 +1282.565983 +1282.734981 +1282.797718 +1282.892690 +1283.574208 +1283.956725 +1284.089825 +1284.259988 +1284.621426 +1284.709671 +1284.770210 +1284.882232 +1285.015198 +1285.122624 +1285.237975 +1285.697016 +1285.818994 +1286.065747 +1286.148031 +1286.226819 +1286.495583 +1286.593285 +1286.700478 +1286.842569 +1286.885859 +1286.963748 +1287.120424 +1287.255822 +1287.413598 +1287.477001 +1287.811233 +1288.072638 +1288.126917 +1288.197679 +1288.319358 +1288.377067 +1288.489487 +1288.749227 +1288.886357 +1288.953823 +1289.097645 +1289.228714 +1289.298045 +1289.370672 +1289.440202 +1289.487588 +1289.547262 +1289.606436 +1289.657818 +1289.734441 +1289.853555 +1289.942599 +1290.021154 +1290.078830 +1290.193881 +1290.227248 +1290.331510 +1290.412562 +1290.516525 +1290.648559 +1290.760780 +1290.823851 +1290.916225 +1290.971869 +1291.058116 +1291.118023 +1291.227014 +1291.367340 +1291.448492 +1291.534972 +1291.874699 +1291.975864 +1292.101572 +1292.169803 +1292.209231 +1292.732207 +1293.109063 +1293.133439 +1293.339899 +1293.492113 +1293.494078 +1293.495943 +1293.499339 +1293.609163 +1293.701903 +1295.010293 +1295.804199 +1295.985517 +1296.373662 +1298.627739 +1298.747153 +1298.905195 +1299.025174 +1299.104828 +1299.187112 +1299.232167 +1299.304062 +1299.383616 +1299.435064 +1299.498467 +1299.542523 +1299.591441 +1299.664867 +1299.714018 +1299.814118 +1299.898334 +1299.990575 +1300.227038 +1300.229203 +1300.231167 +1300.271627 +1300.310521 +1300.339026 +1300.376588 +1300.425439 +1300.468330 +1300.540591 +1300.700830 +1300.855043 +1300.952479 +1301.005226 +1301.029834 +1301.057740 +1301.095102 +1301.153311 +1301.215349 +1301.259704 +1301.300097 +1301.391006 +1301.483580 +1301.519777 +1301.574056 +1301.623374 +1301.656507 +1301.685545 +1301.809621 +1301.812118 +1301.815282 +1301.844785 +1301.888841 +1301.933796 +1302.009654 +1302.054043 +1302.089074 +1302.121075 +1302.183813 +1302.239757 +1302.281715 +1302.346916 +1302.406723 +1302.469693 +1302.495434 +1302.626936 +1302.674555 +1302.724738 +1302.804025 +1302.880449 +1302.926036 +1302.959636 +1303.031398 +1303.069060 +1303.125936 +1303.175653 +1303.239589 +1303.322539 +1303.372123 +1303.401194 +1303.435360 +1303.479815 +1303.517977 +1303.591137 +1303.688706 +1303.759569 +1303.820974 +1303.877451 +1303.911184 +1303.964730 +1304.007620 +1304.075752 +1304.101426 +1304.171889 +1304.197264 +1304.214380 +1304.369758 +1304.426468 +1304.477983 +1304.515312 +1304.595732 +1304.667360 +1304.710317 +1304.763097 +1304.824736 +1304.922138 +1304.960467 +1305.006887 +1305.035125 +1305.087872 +1305.127433 +1305.154006 +1305.204922 +1305.253806 +1305.300360 +1305.340353 +1305.538754 +1305.612814 +1305.719507 +1305.775484 +1305.804755 +1305.846713 +1305.899293 +1305.963895 +1306.043449 +1306.094631 +1306.143149 +1306.215810 +1306.253872 +1306.292367 +1306.331894 +1306.365194 +1306.445713 +1306.528330 +1306.584108 +1306.639486 +1306.668757 +1306.708717 +1306.782476 +1306.815510 +1306.854904 +1306.879046 +1306.954371 +1306.992466 +1307.044114 +1307.073585 +1307.109082 +1307.137954 +1307.164527 +1307.256601 +1307.324101 +1307.357734 +1307.381277 +1307.413078 +1307.479645 +1307.539685 +1307.597660 +1307.690167 +1307.737021 +1307.809415 +1307.967723 +1308.102322 +1308.179278 +1308.240184 +1308.378279 +1308.422268 +1308.476647 +1308.568488 +1308.618438 +1308.681708 +1308.780976 +1308.861162 +1308.924965 +1308.976380 +1309.045977 +1309.114309 +1309.200356 +1309.280442 +1309.393030 +1309.475880 +1309.516373 +1309.570818 +1309.621068 +1309.684971 +1309.729892 +1309.792097 +1309.832789 +1309.886968 +1310.011877 +1310.114108 +1310.167354 +1310.433988 +1310.508346 +1310.661626 +1310.797857 +1310.930824 +1310.974613 +1311.096424 +1311.279341 +1311.364822 +1311.434153 +1311.472282 +1311.514306 +1311.626960 +1311.708911 +1311.777576 +1311.921598 +1312.031422 +1312.165521 +1312.185867 +1312.208278 +1312.256896 +1312.281272 +1312.302151 +1312.331055 +1312.365721 +1312.475511 +1312.514605 +1312.567852 +1312.594159 +1312.635617 +1312.668085 +1312.704948 +1312.771947 +1312.811141 +1312.842776 +1312.878674 +1312.912806 +1312.954897 +1312.981071 +1313.006845 +1313.045640 +1313.083102 +1313.121031 +1313.161990 +1313.211474 +1313.240611 +1313.296622 +1313.361191 +1313.405646 +1313.443209 +1313.518833 +1313.553898 +1313.586765 +1313.614937 +1313.648869 +1313.675043 +1313.718500 +1313.831387 +1313.887297 +1313.942043 +1313.994057 +1314.065885 +1314.094990 +1314.145805 +1314.186764 +1314.234383 +1314.271280 +1314.332851 +1314.378073 +1314.422895 +1314.483634 +1314.516035 +1314.547537 +1314.595056 +1314.623760 +1314.673044 +1314.706144 +1314.742275 +1314.767083 +1314.807543 +1314.870979 +1314.907276 +1314.987896 +1315.030653 +1315.064286 +1315.085764 +1315.108242 +1315.139944 +1315.169447 +1315.201882 +1315.229654 +1315.261022 +1315.283167 +1315.313170 +1315.354296 +1315.382134 +1315.416300 +1315.468681 +1315.519530 +1315.594156 +1315.617066 +1315.665018 +1315.688195 +1315.707709 +1315.722127 +1315.758691 +1315.790925 +1315.836080 +1315.880336 +1315.957225 +1316.008374 +1316.059357 +1316.089959 +1316.142040 +1316.171011 +1316.215567 +1316.302080 +1316.328720 +1316.357691 +1316.389792 +1316.453562 +1316.510205 +1316.556659 +1316.687661 +1316.726655 +1316.759955 +1316.830751 +1316.889492 +1316.939376 +1316.973741 +1317.028353 +1317.061587 +1317.105143 +1317.162719 +1317.242938 +1317.316565 +1317.344437 +1317.389525 +1317.441240 +1317.481200 +1317.503578 +1317.535013 +1317.557857 +1317.575506 +1317.596451 +1317.762685 +1317.787860 +1317.832848 +1317.877137 +1317.922791 +1317.941572 +1318.011403 +1318.187227 +1318.267313 +1318.339141 +1318.380233 +1318.441306 +1318.477436 +1318.535445 +1318.602611 +1318.739607 +1318.775571 +1318.808305 +1318.863050 +1318.955524 +1319.106307 +1319.157322 +1319.211734 +1319.301145 +1319.342370 +1319.395317 +1319.431248 +1319.467578 +1319.542836 +1319.603975 +1319.655124 +1319.720159 +1319.765114 +1319.798813 +1320.000412 +1320.052393 +1320.100411 +1320.143102 +1320.183861 +1320.286392 +1320.337674 +1320.381730 +1320.438007 +1320.487591 +1320.554257 +1320.608536 +1320.690354 +1320.720091 +1320.772938 +1320.806105 +1320.875402 +1320.924953 +1320.986158 +1321.030580 +1321.161616 +1321.212765 +1321.286191 +1321.346564 +1321.395382 +1321.438705 +1321.479664 +1321.535908 +1321.584160 +1321.696880 +1321.791186 +1321.862481 +1321.923220 +1321.987889 +1322.074169 +1322.103773 +1322.138338 +1322.217725 +1322.269007 +1322.308601 +1322.331878 +1322.371138 +1322.422920 +1322.452157 +1322.496846 +1322.527615 +1322.568940 +1322.604272 +1322.651391 +1322.706469 +1322.769640 +1322.810599 +1322.821854 +1322.856220 +1322.913296 +1322.929879 +1322.974601 +1323.103972 +1323.145064 +1323.175800 +1323.212896 +1323.246396 +1323.605569 +1323.608333 +1323.683858 +1323.806868 +1323.895279 +1324.017424 +1324.248293 +1324.300607 +1324.462079 +1324.464576 +1324.466974 +1324.702238 +1324.850523 +1325.261578 +1325.544595 +1326.614091 +1326.664008 +1326.720718 +1326.759013 +1326.799439 +1326.860911 +1326.949988 +1326.989948 +1327.028243 +1327.074697 +1327.130741 +1327.180691 +1327.232772 +1327.314923 +1327.396675 +1327.429841 +1327.469701 +1327.511193 +1327.638999 +1327.669501 +1327.713924 +1327.756281 +1327.888615 +1327.922548 +1327.964306 +1327.999804 +1328.045825 +1328.086351 +1328.125678 +1328.157013 +1328.193444 +1328.245858 +1328.259444 +1328.290879 +1328.324313 +1328.351252 +1328.385385 +1328.416687 +1328.447156 +1328.482654 +1328.512891 +1328.545791 +1328.606031 +1328.650286 +1328.692444 +1328.722714 +1328.794209 +1328.815987 +1328.849320 +1328.897805 +1328.922847 +1328.946124 +1328.967202 +1328.990313 +1329.009860 +1329.028841 +1329.075860 +1329.113589 +1329.135334 +1329.160276 +1329.183020 +1329.209860 +1329.229373 +1329.243692 +1329.277392 +1329.311158 +1329.334368 +1329.364571 +1329.399836 +1329.435334 +1329.467435 +1329.487981 +1329.516120 +1329.544691 +1329.567934 +1329.587115 +1329.618151 +1329.663805 +1329.696306 +1329.722546 +1329.755946 +1329.774161 +1329.794341 +1329.814621 +1329.844591 +1329.864837 +1329.877491 +1329.881021 +1329.899736 +1329.931737 +1329.948021 +1329.955313 +1329.977624 +1330.020615 +1330.042859 +1330.069566 +1330.105630 +1330.141560 +1330.169332 +1330.188547 +1330.209193 +1330.239296 +1330.261940 +1330.279555 +1330.296805 +1330.330238 +1330.358776 +1330.382586 +1330.402699 +1330.424344 +1330.452715 +1330.478090 +1330.500767 +1330.525043 +1330.563072 +1330.575526 +1330.586115 +1330.601367 +1330.656944 +1330.681287 +1330.717018 +1330.728639 +1330.744590 +1330.793974 +1330.823211 +1330.858842 +1330.895805 +1330.917983 +1330.947387 +1330.977823 +1331.007360 +1331.042292 +1331.061906 +1331.097403 +1331.118216 +1331.139994 +1331.164370 +1331.202865 +1331.240427 +1331.265269 +1331.295938 +1331.322844 +1331.355179 +1331.402898 +1331.429471 +1331.487879 +1331.520513 +1331.560773 +1331.581852 +1331.612554 +1331.675192 +1331.719414 +1331.739128 +1331.773260 +1331.806094 +1331.832401 +1331.881785 +1331.918482 +1331.958075 +1331.985914 +1332.008791 +1332.046021 +1332.096403 +1332.133466 +1332.175591 +1332.226074 +1332.266933 +1332.308425 +1332.362670 +1332.391941 +1332.439693 +1332.465934 +1332.494572 +1332.520412 +1332.545321 +1332.588444 +1332.617282 +1332.638661 +1332.691708 +1332.732001 +1332.765367 +1332.787478 +1332.803895 +1332.823775 +1332.853645 +1332.885847 +1332.896036 +1332.905926 +1332.953212 +1332.985613 +1333.037062 +1333.075357 +1333.097768 +1333.119379 +1333.164434 +1333.200465 +1333.231600 +1333.252779 +1333.295104 +1333.325706 +1333.352513 +1333.363235 +1333.383715 +1333.395070 +1333.408523 +1333.499532 +1333.550781 +1333.570728 +1333.580285 +1333.721577 +1333.726905 +1333.754410 +1333.794237 +1333.842988 +1333.897834 +1333.938926 +1333.968163 +1334.005526 +1334.049249 +1334.079385 +1334.096202 +1334.163967 +1334.230501 +1334.287677 +1334.332265 +1334.344986 +1334.362069 +1334.426571 +1334.455276 +1334.504227 +1334.544453 +1334.616048 +1334.651879 +1334.714816 +1334.783747 +1334.849115 +1334.887543 +1334.921376 +1334.942155 +1334.959970 +1334.967463 +1334.976520 +1335.041822 +1335.064333 +1335.090506 +1335.121642 +1335.147316 +1335.192637 +1335.234995 +1335.268395 +1335.300330 +1335.341122 +1335.367163 +1335.420376 +1335.455175 +1335.497832 +1335.513583 +1335.520543 +1335.576720 +1335.628734 +1335.683213 +1335.726470 +1335.745651 +1335.774422 +1335.823040 +1335.863033 +1335.912384 +1335.957106 +1336.010519 +1336.085677 +1336.164232 +1336.191937 +1336.277984 +1336.314348 +1336.344551 +1336.396632 +1336.426802 +1336.436093 +1336.477751 +1336.518677 +1336.542952 +1336.609786 +1336.657005 +1336.686775 +1336.737191 +1336.769093 +1336.838590 +1336.898230 +1336.929632 +1336.978217 +1337.089672 +1337.129332 +1337.167694 +1337.201993 +1337.225702 +1337.243185 +1337.266595 +1337.293534 +1337.315746 +1337.340787 +1337.373355 +1337.402692 +1337.430697 +1337.462299 +1337.502758 +1337.545749 +1337.576684 +1337.601360 +1337.629931 +1337.661333 +1337.689938 +1337.715146 +1337.747946 +1337.791036 +1337.826368 +1337.876418 +1337.934426 +1337.982511 +1338.045648 +1338.139221 +1338.188738 +1338.235591 +1338.284676 +1338.380446 +1338.440819 +1338.485674 +1338.532561 +1338.576517 +1338.629397 +1338.671255 +1338.793267 +1338.837322 +1338.887272 +1338.925368 +1339.003123 +1339.031461 +1339.095397 +1339.132827 +1339.175884 +1339.210582 +1339.267159 +1339.306952 +1339.335024 +1339.360732 +1339.386706 +1339.417775 +1339.452840 +1339.484974 +1339.534758 +1339.562763 +1339.605154 +1339.631827 +1339.657934 +1339.677981 +1339.697928 +1339.741750 +1339.765160 +1339.805453 +1339.845746 +1339.891800 +1339.924767 +1339.956802 +1339.994398 +1340.046912 +1340.083342 +1340.140252 +1340.192333 +1340.231993 +1340.264094 +1340.318074 +1340.345846 +1340.363894 +1340.395862 +1340.418806 +1340.479412 +1340.534057 +1340.577814 +1340.631859 +1340.719672 +1340.795862 +1340.904287 +1340.977447 +1341.051639 +1341.131493 +1341.174716 +1341.233024 +1341.371519 +1341.424166 +1341.475315 +1341.525698 +1341.595262 +1341.656634 +1341.783940 +1341.821036 +1341.918938 +1341.970553 +1342.005618 +1342.044079 +1342.132391 +1342.203553 +1342.251938 +1342.301788 +1342.402354 +1342.489567 +1342.567822 +1342.678810 +1342.740682 +1342.785171 +1342.811378 +1342.862260 +1342.929127 +1342.991164 +1343.193895 +1343.195826 +1343.197924 +1343.200588 +1343.343445 +1343.345576 +1343.347974 +1343.718037 +1344.149871 +1345.815937 +1346.010575 +1346.097089 +1346.256196 +1346.297288 +1346.418400 +1346.469216 +1346.720232 +1346.923695 +1347.009875 +1347.085366 +1347.221130 +1347.313804 +1347.467850 +1347.615169 +1348.015235 +1348.018066 +1348.112138 +1348.242408 +1348.526091 +1349.062087 +1349.349633 +1350.341540 +1350.461620 +1350.651696 +1350.654460 +1351.103977 +1352.306240 +1355.415894 +1355.593316 +1355.664212 +1356.268674 +1356.936072 +1357.857417 +1357.955818 +1374.024367 +1386.257888 +1386.633179 +1387.181663 +1387.635142 +1387.944433 +1387.999411 +1388.053823 +1388.391619 +1388.476201 +1388.658252 +1388.681628 +1388.710699 +1388.770872 +1388.914329 +1388.942367 +1388.975168 +1389.043399 +1389.224851 +1389.254555 +1389.331911 +1389.413695 +1389.483426 +1389.545131 +1389.860315 +1389.914194 +1389.970238 +1390.107601 +1390.173035 +1390.218956 +1390.275699 +1390.332309 +1390.416725 +1390.497444 +1390.591550 +1390.619622 +1390.665409 +1390.717191 +1390.766242 +1390.794513 +1390.939668 +1391.100307 +1391.164843 +1391.283424 +1391.335438 +1391.383024 +1391.405768 +1391.413760 +1391.423217 +1391.450090 +1391.474000 +1391.495811 +1391.539900 +1391.584456 +1391.613593 +1391.670370 +1391.701472 +1391.735971 +1391.758182 +1391.802937 +1391.828312 +1391.859014 +1391.881192 +1391.905801 +1391.926081 +1391.941032 +1391.958015 +1391.975065 +1392.021119 +1392.043763 +1392.064509 +1392.142397 +1392.172234 +1392.203503 +1392.238135 +1392.266540 +1392.290482 +1392.323882 +1392.365241 +1392.420619 +1392.457549 +1392.494045 +1392.520719 +1392.552886 +1392.590349 +1392.624948 +1392.637535 +1392.659247 +1392.689849 +1392.732174 +1392.776496 +1392.829443 +1392.872267 +1392.929709 +1392.950422 +1392.971168 +1392.999573 +1393.041131 +1393.090915 +1393.118986 +1393.170535 +1393.202403 +1393.222616 +1393.243429 +1393.282756 +1393.334271 +1393.368670 +1393.402469 +1393.483322 +1393.520718 +1393.547491 +1393.579792 +1393.606765 +1393.639632 +1393.692046 +1393.757148 +1393.840431 +1393.881523 +1393.925046 +1393.943694 +1394.003235 +1394.077827 +1394.105732 +1394.143095 +1394.191446 +1394.242362 +1394.388382 +1394.391013 +1394.393311 +1394.493211 +1394.534270 +1394.582422 +1394.628342 +1394.675828 +1394.711925 +1394.744160 +1394.776261 +1394.808229 +1394.846491 +1394.896008 +1394.967536 +1395.044293 +1395.200536 +1395.233536 +1395.390513 +1395.424945 +1395.498038 +1395.530606 +1395.567935 +1395.655880 +1395.708794 +1395.762707 +1395.827808 +1395.867069 +1395.900635 +1395.937432 +1396.148820 +1396.193542 +1396.285850 +1396.334601 +1396.363372 +1396.397671 +1396.434734 +1396.474927 +1396.498204 +1396.538597 +1396.571164 +1396.628174 +1396.677391 +1396.723978 +1396.761474 +1396.799536 +1396.866069 +1396.913621 +1396.939296 +1396.966135 +1396.996771 +1397.036931 +1397.084251 +1397.129239 +1397.185516 +1397.227840 +1397.265869 +1397.303698 +1397.341460 +1397.386348 +1397.489512 +1397.540993 +1397.588179 +1397.640527 +1397.691443 +1397.792009 +1397.831303 +1397.886914 +1397.984350 +1398.100666 +1398.205795 +1398.268498 +1398.313953 +1398.362638 +1398.402564 +1398.440893 +1398.493240 +1398.523144 +1398.545588 +1398.599700 +1398.639627 +1398.697869 +1398.766267 +1398.835697 +1398.880053 +1398.999866 +1399.083682 +1399.152780 +1399.260239 +1399.320279 +1399.376223 +1399.430535 +1399.485547 +1399.516349 +1399.541757 +1399.599166 +1399.627938 +1399.663236 +1399.726705 +1399.794171 +1399.830768 +1399.905826 +1400.000032 +1400.078953 +1400.116449 +1400.182816 +1400.246585 +1400.349116 +1400.384081 +1400.417581 +1400.477188 +1400.545153 +1400.641323 +1400.719179 +1400.841989 +1400.914883 +1401.035895 +1401.122475 +1401.165532 +1401.207756 +1401.257873 +1401.305625 +1401.366031 +1401.403860 +1401.509288 +1401.556774 +1401.616913 +1401.667529 +1401.697666 +1401.726004 +1401.810220 +1401.855241 +1401.881049 +1401.915381 +1401.937293 +1402.027336 +1402.063300 +1402.134395 +1402.204225 +1402.247416 +1402.272291 +1402.307122 +1402.391505 +1402.419976 +1402.471525 +1402.612783 +1402.706856 +1402.770459 +1402.841521 +1402.886209 +1402.963066 +1403.140355 +1403.185243 +1403.317111 +1403.319043 +1403.321074 +1403.323272 +1403.391237 +1403.431830 +1403.483645 +1403.547148 +1404.069292 +1404.111616 +1404.207420 +1404.308752 +1404.363964 +1404.402558 +1404.444783 +1404.480480 +1404.527433 +1404.561399 +1404.619308 +1404.684010 +1404.725835 +1404.764962 +1404.812448 +1404.853740 +1404.894832 +1404.946447 +1404.993067 +1405.055272 +1405.133693 +1405.182744 +1405.253873 +1405.297496 +1405.410682 +1405.495930 +1405.556670 +1405.613513 +1405.657602 +1405.705587 +1405.768424 +1405.791002 +1405.871887 +1405.951874 +1406.073985 +1406.186173 +1406.298893 +1406.347645 +1406.467658 +1406.567291 +1406.603988 +1406.717374 +1406.933358 +1407.002822 +1407.072685 +1407.192432 +1407.319272 +1408.117906 +1408.190600 +1408.250706 +1408.363194 +1408.460663 +1408.501788 +1408.578045 +1408.616940 +1409.461394 +1409.580309 +1409.703985 +1409.769186 +1409.906182 +1410.150105 +1410.254634 +1411.461126 +1411.570050 +1411.647539 +1411.702618 +1411.742877 +1411.846307 +1411.955731 +1412.265021 +1415.747269 +1416.109839 +1416.360988 +1416.493355 +1421.199345 +1422.431944 +1426.018121 +1426.081990 +1426.132140 +1426.200039 +1426.247958 +1426.422816 +1426.597408 +1427.130841 +1427.132938 +1427.134803 +1427.415988 +1428.806830 +1428.810526 +1428.815687 +1447.442475 +1448.152365 +1448.649733 +1456.204171 +1458.889850 +1460.779725 +1461.924812 +1462.920282 +1463.106662 +1464.867666 +1474.515841 +1476.816971 +1476.824730 +1482.560056 +1482.786130 +1483.373508 +1485.739373 +1486.867278 +1487.195116 +1487.197114 +1487.199112 +1487.496681 +1487.499045 +1487.502642 +1496.025077 +1496.539629 +1496.731570 +1496.733402 +1496.735100 +1496.737364 +1496.872795 +1496.874860 +1496.877025 +1497.029272 +1500.174590 +1500.409355 +1500.626871 +1503.385276 +1503.431297 +1503.818976 +1504.308586 +1504.310284 +1504.311849 +1504.313447 +1504.315312 +1504.317377 +1504.576884 +1504.578549 +1504.580380 +1504.787573 +1504.789271 +1504.790803 +1504.792668 +1504.940087 +1506.110981 +1511.040014 +1511.043277 +1511.045642 +1512.154732 +1512.156896 +1512.159061 +1512.288731 +1514.988595 +1514.993124 +1515.584898 +1516.351397 +1516.353129 +1516.355060 +1516.556659 +1516.558623 +1516.733715 +1516.735480 +1516.738177 +1517.876770 +1519.474538 +1519.731747 +1519.733379 +1519.734877 +1519.736509 +1519.739739 +1519.935143 +1519.936875 +1519.938473 +1519.940172 +1520.145233 +1520.147198 +1520.149262 +1520.338506 +1520.340937 +1522.606969 +1524.753886 +1524.755618 +1524.757216 +1524.759181 +1525.089484 +1525.091282 +1525.092880 +1525.094612 +1525.098142 +1525.219987 +1525.222018 +1525.223849 +1525.226913 +1525.291082 +1525.359680 +1526.403102 +1526.404900 +1526.406632 +1526.648357 +1528.043960 +1528.045791 +1528.047390 +1528.049188 +1528.054483 +1528.236167 +1528.239531 +1528.242961 +1528.391112 +1529.371531 +1529.501501 +1529.672030 +1530.114987 +1530.116818 +1530.118516 +1530.120381 +1530.274127 +1530.276225 +1530.278090 +1531.525974 +1531.527506 +1531.528938 +1531.530470 +1531.532734 +1531.690410 +1531.692008 +1531.693540 +1531.695305 +1531.909723 +1531.911422 +1531.912954 +1531.914552 +1531.916617 +1532.099367 +1532.101864 +1532.105794 +1532.186180 +1535.625737 +1535.627269 +1535.628767 +1535.630299 +1535.632064 +1535.635660 +1535.950745 +1535.952310 +1535.953709 +1535.955207 +1535.956972 +1535.958804 +1536.164198 +1536.165896 +1536.167528 +1536.169293 +1536.248147 +1536.383911 +1536.461700 +1538.166094 +1538.167693 +1538.169191 +1538.170756 +1538.172521 +1538.175218 +1538.342284 +1538.344416 +1538.493034 +1538.494699 +1538.496230 +1538.497829 +1538.642118 +1538.643816 +1538.645414 +1538.647213 +1538.811215 +1538.813047 +1538.814778 +1538.891535 +1538.893732 +1538.969157 +1538.972953 +1541.161562 +1541.164027 +1541.525998 +1541.527729 +1541.529261 +1541.530926 +1541.532791 +1541.536287 +1541.697792 +1541.699690 +1541.701455 +1541.852604 +1541.854302 +1541.855934 +1541.857599 +1541.859763 +1542.065957 +1542.068488 +1542.070752 +1544.101819 +1544.103850 +1544.105649 +1544.107513 +1544.575079 +1544.577010 +1544.578708 +1544.580607 +1544.584303 +1544.854699 +1544.856497 +1544.858095 +1544.859994 +1544.862524 +1545.122964 +1545.124928 +1545.126760 +1545.128858 +1546.518134 +1546.899752 +1546.901483 +1546.903015 +1546.904713 +1546.906578 +1546.909808 +1547.082502 +1547.084234 +1547.085932 +1547.321496 +1547.323261 +1547.324760 +1547.326391 +1547.328256 +1547.331719 +1547.479105 +1547.480903 +1547.482568 +1547.484300 +1547.488862 +1547.576341 +1547.578639 +1547.580670 +1547.722162 +1549.188028 +1549.190525 +1549.192457 +1549.992689 +1549.995120 +1549.997051 +1550.508273 +1550.509905 +1550.511337 +1550.512935 +1550.514766 +1550.712036 +1550.713900 +1550.715599 +1550.717896 +1550.880534 +1550.882565 +1550.884463 +1550.886528 +1551.061120 +1551.063251 +1551.065182 +1551.068246 +1551.577436 +1551.969044 +1551.970842 +1551.972474 +1551.974372 +1551.976337 +1552.262284 +1552.266313 +1552.268411 +1553.283595 +1553.285626 +1553.287391 +1553.490321 +1553.492020 +1553.493518 +1553.495316 +1553.672306 +1553.674137 +1553.675902 +1553.854024 +1553.855789 +1553.857420 +1553.859152 +1553.862282 +1554.030114 +1554.032112 +1554.033811 +1554.035942 +1554.242002 +1555.018092 +1555.020290 +1555.022155 +1555.481761 +1555.483926 +1555.485724 +1555.746796 +1555.750525 +1556.082460 +1556.084758 +1556.086855 +1556.091817 +1556.545896 +1556.548027 +1556.549959 +1556.552090 +1556.995879 +1556.997610 +1556.999142 +1557.000874 +1557.002672 +1557.006601 +1557.404903 +1557.406634 +1557.408199 +1557.409898 +1557.412029 +1557.413960 +1557.499641 +1557.715126 +1557.716824 +1557.718389 +1557.720087 +1557.721852 +1557.724017 +1557.727380 +1557.977530 +1557.979261 +1557.980826 +1557.982624 +1557.984556 +1557.986787 +1558.373367 +1558.375032 +1558.376563 +1558.378095 +1558.379794 +1558.382624 +1558.386121 +1558.799240 +1558.800939 +1558.802404 +1558.804069 +1558.805800 +1558.808797 +1558.812161 +1559.080093 +1559.081791 +1559.083323 +1559.084921 +1559.086852 +1559.088950 +1559.091015 +1559.498440 +1559.500105 +1559.501571 +1559.503169 +1559.505034 +1559.507764 +1559.510795 +1559.857081 +1559.858746 +1559.860212 +1559.861743 +1559.863542 +1559.866172 +1559.868270 +1560.274097 +1560.275729 +1560.277128 +1560.278693 +1560.280358 +1560.282389 +1560.285353 +1560.638533 +1560.640164 +1560.641596 +1560.643161 +1560.644860 +1560.646724 +1560.649688 +1561.045858 +1561.047457 +1561.048922 +1561.050487 +1561.052285 +1561.054183 +1561.057680 +1561.425079 +1561.426943 +1561.428508 +1561.430340 +1561.432338 +1561.810959 +1561.812691 +1561.814256 +1561.815954 +1561.817985 +1561.821049 +1562.279923 +1562.281754 +1562.283353 +1562.285084 +1562.286982 +1562.722014 +1562.723745 +1562.725277 +1562.726942 +1562.728740 +1562.731937 +1562.734401 +1563.040062 +1563.041727 +1563.043225 +1563.044924 +1563.046722 +1563.050185 +1563.425410 +1563.427108 +1563.428706 +1563.430438 +1563.432269 +1563.438263 +1563.732702 +1563.734533 +1563.736232 +1563.738230 +1563.743025 +1563.947620 +1563.949352 +1563.950983 +1563.952715 +1563.954547 +1563.957810 +1564.291909 +1564.293640 +1564.295206 +1564.296937 +1564.298902 +1564.601865 +1564.603697 +1564.605295 +1564.607260 +1564.609824 +1564.969864 +1564.971595 +1564.973094 +1564.974725 +1564.976557 +1564.980386 +1565.391741 +1565.393340 +1565.394805 +1565.396370 +1565.398068 +1565.400399 +1565.403996 +1565.714318 +1565.716050 +1565.717515 +1565.719114 +1565.720912 +1565.724075 +1566.065567 +1566.067198 +1566.068697 +1566.070295 +1566.071960 +1566.074092 +1566.079220 +1566.413752 +1566.415383 +1566.416815 +1566.418414 +1566.420278 +1566.422909 +1566.426073 +1566.786179 +1566.787810 +1566.789342 +1566.790974 +1566.792905 +1566.796102 +1567.195869 +1567.197534 +1567.199032 +1567.200631 +1567.202462 +1567.204493 +1567.208856 +1567.567763 +1567.569661 +1567.571426 +1567.573224 +1567.576321 +1567.851179 +1567.852878 +1567.854376 +1567.856041 +1567.857973 +1567.860004 +1568.122774 +1568.124539 +1568.126071 +1568.127736 +1568.129601 +1568.131832 +1568.428335 +1568.430166 +1568.431798 +1568.433596 +1568.436127 +1568.668495 +1568.670226 +1568.671891 +1568.673723 +1568.677252 +1568.949547 +1568.951478 +1568.953210 +1568.955274 +1569.295267 +1569.297032 +1569.298597 +1569.300295 +1569.302160 +1569.305990 +1569.573722 +1569.575520 +1569.577118 +1569.578817 +1569.580815 +1569.586243 +1569.812649 +1569.814514 +1569.816112 +1569.818044 +1569.821474 +1570.059968 +1570.063132 +1570.064730 +1570.066595 +1570.215413 +1570.217278 +1570.218943 +1570.220608 +1570.223771 +1570.523404 +1570.525136 +1570.526734 +1570.528466 +1570.530497 +1570.534726 +1570.866761 +1570.868459 +1570.870024 +1570.871623 +1570.873354 +1570.876451 +1571.221173 +1571.222871 +1571.224403 +1571.226034 +1571.228099 +1571.230264 +1571.580147 +1571.581845 +1571.583377 +1571.585042 +1571.587073 +1571.589171 +1571.905088 +1571.906720 +1571.908185 +1571.909750 +1571.911548 +1571.913546 +1572.225867 +1572.227565 +1572.229064 +1572.230695 +1572.232494 +1572.234392 +1572.631661 +1572.633326 +1572.634891 +1572.636589 +1572.638521 +1572.640652 +1572.996995 +1572.998593 +1573.000059 +1573.001690 +1573.003455 +1573.005786 +1573.308450 +1573.310148 +1573.311647 +1573.313378 +1573.315177 +1573.318906 +1573.700058 +1573.701956 +1573.703621 +1573.705453 +1574.031260 +1574.032925 +1574.034423 +1574.036055 +1574.037920 +1574.039884 +1574.360797 +1574.362528 +1574.364127 +1574.365825 +1574.367756 +1574.371486 +1574.692365 +1574.694130 +1574.695628 +1574.697360 +1574.699391 +1574.990067 +1574.992098 +1574.993863 +1574.996194 +1575.390233 +1575.391964 +1575.393496 +1575.395194 +1575.397093 +1575.734888 +1575.736553 +1575.738018 +1575.739650 +1575.741481 +1575.744312 +1576.090165 +1576.091897 +1576.093495 +1576.095127 +1576.097158 +1576.102720 +1576.430392 +1576.432090 +1576.433588 +1576.435220 +1576.437085 +1576.440282 +1576.773315 +1576.775047 +1576.776612 +1576.778443 +1576.780175 +1577.178176 +1577.179941 +1577.181506 +1577.183205 +1577.187101 +1577.526394 +1577.528126 +1577.529658 +1577.531323 +1577.533188 +1577.864156 +1577.865821 +1577.867320 +1577.868918 +1577.870750 +1577.874113 +1578.113607 +1578.115338 +1578.116837 +1578.118468 +1578.120267 +1578.123397 +1578.511908 +1578.513573 +1578.515038 +1578.516637 +1578.518468 +1578.521065 +1578.913639 +1578.915404 +1578.916869 +1578.918501 +1578.920299 +1578.924095 +1579.214571 +1579.216369 +1579.217968 +1579.219733 +1579.222164 +1579.520132 +1579.521797 +1579.523296 +1579.524894 +1579.526792 +1579.529722 +1579.822463 +1579.824161 +1579.825593 +1579.827258 +1579.829289 +1579.832719 +1580.188729 +1580.190461 +1580.191960 +1580.193558 +1580.195290 +1580.197221 +1580.562022 +1580.563754 +1580.565219 +1580.566984 +1580.568782 +1580.571180 +1580.878306 +1580.880071 +1580.881603 +1580.883234 +1580.885266 +1580.887630 +1581.184932 +1581.186631 +1581.188096 +1581.189761 +1581.191592 +1581.195055 +1581.519131 +1581.520896 +1581.522494 +1581.524326 +1581.526291 +1581.815235 +1581.816966 +1581.818498 +1581.820196 +1581.822394 +1582.120396 +1582.122061 +1582.123493 +1582.125025 +1582.126789 +1582.128821 +1582.585231 +1582.586995 +1582.588627 +1582.590425 +1582.595587 +1582.894654 +1582.896386 +1582.897951 +1582.899649 +1582.901514 +1583.264051 +1583.265716 +1583.267215 +1583.268880 +1583.270844 +1583.274840 +1583.636278 +1583.638243 +1583.639941 +1583.642073 +1583.987760 +1583.989558 +1583.991090 +1583.992888 +1583.994686 +1583.998316 +1584.215099 +1584.217097 +1584.218862 +1584.220760 +1584.521159 +1584.522991 +1584.524556 +1584.526288 +1584.528219 +1584.823057 +1584.824855 +1584.826387 +1584.828152 +1584.830350 +1585.163516 +1585.165181 +1585.166680 +1585.168312 +1585.170310 +1585.175138 +1585.485161 +1585.486993 +1585.488658 +1585.490522 +1585.492787 +1585.823056 +1585.824821 +1585.826419 +1585.828184 +1585.830349 +1586.181164 +1586.182896 +1586.184561 +1586.186293 +1586.190122 +1586.582529 +1586.584228 +1586.585726 +1586.587391 +1586.590088 +1586.963281 +1586.965113 +1586.966645 +1586.968443 +1586.971074 +1587.289588 +1587.291386 +1587.292951 +1587.294716 +1587.296881 +1587.501376 +1587.503374 +1587.505172 +1587.508103 +1587.843034 +1587.845332 +1587.847396 +1588.164779 +1588.166843 +1588.168508 +1588.170406 +1588.515195 +1588.517193 +1588.518824 +1588.521955 +1588.862114 +1588.864079 +1588.865810 +1588.867875 +1589.195947 +1589.197945 +1589.199643 +1589.203273 +1589.506636 +1589.508434 +1589.510032 +1589.511830 +1589.515593 +1589.888520 +1589.890451 +1589.892116 +1589.894148 +1589.898676 +1590.417590 +1590.419888 +1590.421786 +1590.802572 +1590.804536 +1590.806301 +1590.808499 +1591.124183 +1591.126015 +1591.127613 +1591.129478 +1591.132075 +1591.419288 +1591.421219 +1591.422884 +1591.424882 +1591.753919 +1591.755917 +1591.757582 +1591.759580 +1592.078561 +1592.080459 +1592.082124 +1592.083956 +1592.086953 +1592.444828 +1592.446526 +1592.448058 +1592.449756 +1592.451721 +1592.456882 +1592.845493 +1592.847258 +1592.848823 +1592.850555 +1592.852520 +1592.857115 +1593.160312 +1593.162176 +1593.163841 +1593.165673 +1593.167904 +1593.417421 +1593.419186 +1593.420718 +1593.422383 +1593.425380 +1593.729775 +1593.731506 +1593.733005 +1593.734637 +1593.736568 +1594.160710 +1594.162442 +1594.164040 +1594.165705 +1594.168636 +1594.483654 +1594.485452 +1594.486984 +1594.488649 +1594.490780 +1594.768901 +1594.770700 +1594.772331 +1594.774063 +1594.778359 +1595.258112 +1595.260243 +1595.262008 +1595.264605 +1595.604332 +1595.606063 +1595.607662 +1595.609360 +1595.611291 +1595.915054 +1595.916985 +1595.918717 +1595.920748 +1595.923745 +1596.276292 +1596.278057 +1596.279622 +1596.281421 +1596.284351 +1596.608760 +1596.611024 +1596.612789 +1596.616885 +1596.985216 +1596.986981 +1596.988546 +1596.990244 +1596.993208 +1597.229005 +1597.230770 +1597.232369 +1597.234100 +1597.237097 +1597.481419 +1597.483717 +1597.486814 +1597.761373 +1597.763337 +1597.765102 +1597.767067 +1598.094472 +1598.096137 +1598.097669 +1598.099234 +1598.101166 +1598.103730 +1598.387413 +1598.389277 +1598.390909 +1598.392807 +1598.396237 +1598.710889 +1598.712654 +1598.714252 +1598.716017 +1598.718248 +1599.147352 +1599.149117 +1599.150582 +1599.152280 +1599.154345 +1599.485746 +1599.487478 +1599.488943 +1599.490542 +1599.492307 +1599.494604 +1599.793438 +1599.795203 +1599.796835 +1599.798567 +1599.800665 +1600.048283 +1600.050281 +1600.052146 +1600.054877 +1600.334264 +1600.336262 +1600.337927 +1600.341024 +1600.718945 +1600.720744 +1600.722275 +1600.724040 +1600.726238 +1601.138625 +1601.140390 +1601.141922 +1601.143587 +1601.146817 +1601.555441 +1601.557173 +1601.558805 +1601.560636 +1601.562634 +1601.846750 +1601.848515 +1601.850046 +1601.851745 +1601.853643 +1602.170659 +1602.172390 +1602.173922 +1602.175554 +1602.177718 +1602.465763 +1602.467428 +1602.468927 +1602.470592 +1602.472523 +1602.476553 +1602.743918 +1602.745583 +1602.747082 +1602.748714 +1602.750745 +1603.060435 +1603.062133 +1603.063665 +1603.065397 +1603.067461 +1603.072023 +1603.350345 +1603.352209 +1603.353841 +1603.355706 +1603.359136 +1603.635160 +1603.636924 +1603.638423 +1603.640121 +1603.642053 +1603.962132 +1603.963764 +1603.965229 +1603.966927 +1603.968626 +1603.971889 +1604.239055 +1604.240753 +1604.242318 +1604.243983 +1604.245882 +1604.248379 +1604.499894 +1604.501692 +1604.503390 +1604.505055 +1604.507620 +1604.783943 +1604.785708 +1604.787206 +1604.788838 +1604.790670 +1604.793833 +1605.052441 +1605.054206 +1605.055804 +1605.057536 +1605.060733 +1605.480546 +1605.482344 +1605.483909 +1605.485574 +1605.488538 +1605.905154 +1605.906919 +1605.908517 +1605.910249 +1605.912047 +1605.914911 +1606.211780 +1606.213479 +1606.215910 +1606.633425 +1606.635256 +1606.636855 +1606.638586 +1606.642183 +1606.904986 +1606.906785 +1606.908416 +1606.910048 +1606.912013 +1607.197860 +1607.199791 +1607.201523 +1607.203321 +1607.205885 +1607.519105 +1607.521003 +1607.522668 +1607.524466 +1607.835189 +1607.836887 +1607.838385 +1607.840117 +1607.842248 +1607.845745 +1608.162661 +1608.164526 +1608.166191 +1608.167922 +1608.170386 +1608.493330 +1608.495261 +1608.497159 +1608.500356 +1608.782341 +1608.784205 +1608.785870 +1608.787702 +1609.149073 +1609.150972 +1609.152637 +1609.154501 +1609.447342 +1609.449106 +1609.450705 +1609.452470 +1609.454434 +1609.694095 +1609.696059 +1609.697857 +1609.699955 +1610.028327 +1610.030258 +1610.031923 +1610.033854 +1610.037418 +1610.336119 +1610.337950 +1610.339648 +1610.341313 +1610.343278 +1610.582006 +1610.584037 +1610.586035 +1610.588366 +1610.841046 +1610.843044 +1610.844743 +1610.847873 +1611.119434 +1611.121266 +1611.122864 +1611.124629 +1611.126894 +1611.442877 +1611.444742 +1611.446341 +1611.448272 +1611.453300 +1611.770350 +1611.772214 +1611.773846 +1611.775478 +1612.063156 +1612.064955 +1612.066553 +1612.068285 +1612.070316 +1612.396290 +1612.398221 +1612.399819 +1612.401651 +1612.403749 +1612.635151 +1612.637115 +1612.638880 +1612.640845 +1612.964920 +1612.967018 +1612.968883 +1613.271447 +1613.273678 +1613.275709 +1613.575443 +1613.577341 +1613.578906 +1613.580771 +1613.749102 +1613.751200 +1613.752998 +1613.756628 +1614.065485 +1614.069049 +1614.404080 +1614.406544 +1614.411406 +1614.654396 +1614.657160 +1620.391520 +1620.394051 +1620.396415 +1620.486125 +1629.469333 +1629.588946 +1629.655580 +1629.696838 +1629.751217 +1629.802266 +1629.861174 +1629.902000 +1630.009326 +1630.146921 +1630.293008 +1630.521346 +1632.333599 +1632.811954 +1632.970362 +1633.009656 +1633.080784 +1633.281883 +1633.425706 +1633.543555 +1633.768629 +1633.802762 +1633.939059 +1635.622873 +1636.079083 +1636.148547 +1636.184111 +1636.317478 +1636.371890 +1636.425070 +1636.474654 +1636.534927 +1636.683844 +1636.739089 +1636.863964 +1637.009019 +1639.396129 +1639.449143 +1639.540585 +1639.605753 +1639.641750 +1639.686406 +1639.737454 +1639.776615 +1639.816475 +1639.857468 +1640.023901 +1640.184540 +1641.118106 +1641.167823 +1641.208315 +1641.251173 +1641.306584 +1641.334156 +1641.370220 +1641.403620 +1641.426863 +1641.472118 +1641.541315 +1641.576147 +1641.621169 +1641.667256 +1641.701555 +1641.746510 +1641.769853 +1641.822667 +1641.868654 +1641.904752 +1641.934522 +1641.974915 +1642.013743 +1642.031092 +1642.061861 +1642.100023 +1642.134255 +1642.171285 +1642.213309 +1642.245977 +1642.279410 +1642.309114 +1642.399123 +1642.517139 +1642.652903 +1642.718137 +1642.748707 +1642.893096 +1642.947341 +1643.143911 +1643.176379 +1643.221067 +1643.286568 +1643.333988 +1643.414574 +1643.454867 +1643.525063 +1643.555732 +1643.587567 +1643.606448 +1643.684737 +1643.720567 +1643.751969 +1643.792562 +1643.822266 +1643.847041 +1643.888999 +1643.934020 +1643.971183 +1644.002285 +1644.029924 +1644.066887 +1644.164590 +1644.202984 +1644.244643 +1644.289231 +1644.324563 +1644.418302 +1644.547639 +1644.588332 +1644.611709 +1644.650137 +1644.683170 +1644.704915 +1644.731888 +1644.757962 +1644.806980 +1644.849637 +1644.867253 +1644.904549 +1644.950669 +1645.008844 +1645.047805 +1645.081638 +1645.104549 +1645.151435 +1645.192727 +1645.269850 +1645.323796 +1645.423230 +1645.482737 +1645.512940 +1645.544342 +1645.628324 +1645.666619 +1645.714471 +1645.737881 +1645.792760 +1645.834618 +1645.961058 +1646.226526 +1646.258427 +1646.288464 +1646.404714 +1646.618200 +1646.773445 +1647.032952 +1647.132152 +1647.159292 +1647.239512 +1647.266851 +1647.299984 +1647.329621 +1647.361822 +1647.410207 +1647.443974 +1647.527323 +1647.573144 +1647.628123 +1647.681003 +1647.750667 +1647.822428 +1647.869980 +1647.935049 +1647.970080 +1648.160823 +1648.262388 +1648.494256 +1648.819097 +1650.149166 +1650.345236 +1650.380800 +1650.487627 +1651.568811 +1651.647599 +1651.723789 +1651.822124 +1652.195617 +1652.406872 +1652.470808 +1652.496682 +1652.553892 +1652.641970 +1652.776669 +1652.869176 +1652.897681 +1652.930648 +1652.975903 +1653.011800 +1653.066545 +1653.103342 +1653.144900 +1653.169709 +1653.240205 +1653.268943 +1653.320058 +1653.360718 +1653.448463 +1653.536608 +1653.628383 +1653.674037 +1653.732412 +1653.810168 +1653.875169 +1653.922355 +1653.993351 +1654.038339 +1654.117060 +1654.186524 +1654.255588 +1654.306338 +1654.394350 +1654.436807 +1654.490087 +1654.514196 +1654.542268 +1654.635808 +1654.653590 +1654.687856 +1654.719657 +1654.760650 +1654.796880 +1654.822155 +1654.885525 +1654.903140 +1654.931079 +1654.950759 +1654.994182 +1655.035175 +1655.055854 +1655.111632 +1655.145331 +1655.171771 +1655.225884 +1655.265211 +1655.310932 +1655.352923 +1655.419257 +1655.438205 +1655.470006 +1655.511898 +1655.559150 +1655.602607 +1655.666176 +1655.746463 +1655.908168 +1656.058384 +1656.103039 +1656.126382 +1656.173768 +1656.253389 +1656.358184 +1656.436472 +1656.490052 +1656.552789 +1656.828846 +1657.243431 +1657.268639 +1657.364743 +1657.475898 +1657.560647 +1657.652388 +1657.808732 +1657.917290 +1657.950457 +1658.015591 +1658.060913 +1658.124882 +1658.169970 +1658.259580 +1658.367306 +1658.718921 +1658.831541 +1658.868404 +1658.948557 +1658.998441 +1659.059779 +1659.094678 +1659.115923 +1659.155317 +1659.230542 +1659.275264 +1659.316722 +1659.376462 +1659.401238 +1659.432873 +1659.489816 +1659.506199 +1659.622916 +1659.657881 +1659.717288 +1659.760411 +1659.811227 +1659.848024 +1660.022649 +1660.067204 +1660.163774 +1660.206032 +1660.243395 +1660.302502 +1660.340930 +1660.491580 +1660.636834 +1660.666871 +1660.817453 +1660.865738 +1660.947556 +1661.022282 +1661.055615 +1661.101769 +1661.144393 +1661.172331 +1661.225911 +1661.281589 +1661.303267 +1661.340763 +1661.509394 +1661.569634 +1661.759244 +1661.871332 +1661.968301 +1662.347688 +1662.509160 +1662.557412 +1662.685916 +1665.922177 +1669.430232 +1670.062199 +1670.597797 +1670.707453 +1671.068392 +1671.138455 +1671.164596 +1671.469857 +1671.521305 +1671.573686 +1671.622371 +1671.659434 +1671.795631 +1672.973685 +1674.224000 +1674.355235 +1674.881642 +1680.025792 +1680.230221 +1680.313138 +1680.371513 +1680.432752 +1680.616168 +1680.742109 +1680.809774 +1680.888496 +1689.139669 +1692.751687 +1706.310748 +1706.382243 +1737.910716 +1741.180210 +1741.291665 +1762.883585 +1765.030270 +1780.757527 +1800.775455 +1801.913882 +1801.916113 +1801.918045 +1806.221371 +1808.576147 +1811.902950 +1811.904648 +1811.906247 +1811.908078 +1812.127692 +1823.104637 +1826.401970 +1827.436701 +1828.774761 +1830.099735 +1830.102033 +1830.104497 +1839.120905 +1839.128564 +1841.121669 +1841.123767 +1841.456833 +1841.458765 +1841.460629 +1841.462661 +1841.643513 +1841.647243 +1846.410275 +1846.412506 +1846.414604 +1846.619632 +1846.621597 +1846.624061 +1857.904636 +1881.702447 +1888.052025 +1888.153357 +1888.274668 +1888.386423 +1888.541202 +1888.590919 +1890.933507 +1891.122518 +1891.263244 +1891.356217 +1891.565574 +1891.823849 +1891.943030 +1892.180559 +1892.366972 +1892.406433 +1892.548524 +1892.597674 +1892.638101 +1892.779026 +1892.948623 +1894.264106 +1894.341529 +1894.460044 +1894.806996 +1895.095474 +1895.164505 +1895.230672 +1895.307928 +1895.536566 +1895.598937 +1895.760675 +1896.610724 +1896.957577 +1897.093840 +1897.277157 +1897.315152 +1897.500600 +1897.578755 +1898.386114 +1899.672493 +1899.790175 +1900.070960 +1900.112952 +1900.168663 +1900.213318 +1900.263867 +1900.316082 +1900.350947 +1900.403827 +1900.457906 +1900.494603 +1900.528236 +1900.609555 +1900.830467 +1900.928302 +1901.043420 +1901.246284 +1903.160634 +1903.359102 +1906.229562 +1906.357567 +1906.942615 +1909.757864 +1909.839682 +1909.892496 +1909.982572 +1910.079642 +1910.139215 +1910.228359 +1910.304483 +1910.417703 +1910.600520 +1910.880740 +1911.283403 +1911.664622 +1912.104015 +1912.211907 +1912.467718 +1912.770581 +1912.846072 +1913.139812 +1913.694257 +1914.253264 +1914.545804 +1914.651099 +1914.926323 +1914.996154 +1915.084632 +1915.291691 +1915.363319 +1915.445704 +1915.546569 +1915.674175 +1915.910871 +1915.945004 +1916.090858 +1916.121660 +1916.202712 +1916.371477 +1916.471277 +1916.534214 +1916.569912 +1916.622026 +1916.698849 +1916.776438 +1916.832549 +1917.024690 +1917.074939 +1917.141473 +1917.195352 +1917.254659 +1917.286627 +1917.321493 +1917.359521 +1917.427387 +1917.476304 +1917.527719 +1917.574906 +1917.606674 +1917.694519 +1917.725821 +1917.762251 +1917.790956 +1917.845568 +1917.890290 +1917.920027 +1917.947866 +1917.981465 +1918.068278 +1918.246567 +1918.302078 +1918.353293 +1918.473406 +1918.680166 +1918.734978 +1918.810036 +1918.907039 +1918.956889 +1919.033346 +1919.079566 +1919.184927 +1919.232513 +1919.269942 +1919.462982 +1919.581564 +1920.050761 +1920.437673 +1920.511166 +1920.616794 +1920.737506 +1920.877633 +1920.947596 +1921.026317 +1921.103540 +1921.287456 +1921.394582 +1922.426915 +1923.590551 +1925.513725 +1927.416521 +1928.032937 +1928.035368 +1928.037666 +1928.651651 +1929.095840 +1929.758077 +1929.838396 +1929.872129 +1929.933335 +1930.071430 +1930.145522 +1930.340361 +1930.432801 +1947.873710 +1951.108039 +1951.226254 +1951.608604 +1951.777735 +1951.892520 +1951.964149 +1952.020359 +1952.269276 +1952.421990 +1952.497315 +1954.885491 +1954.887589 +1970.076784 +1970.081180 +1974.547143 +1981.316467 +1981.318332 +1981.320163 +1981.445404 +1981.448701 +1981.731118 +1983.034813 +1985.180899 +1986.478733 +1986.480364 +1986.481863 +1986.483728 +1986.617527 +1986.619159 +1986.620924 +1986.748296 +1986.749995 +1986.751726 +1986.753624 +1986.875203 +1986.877700 +1987.464013 +1987.623553 +1989.744997 +1989.750191 +1991.033806 +1992.642629 +1997.916583 +1997.918315 +1997.920013 +1997.921911 +1998.069197 +1998.072561 +1998.771095 +1998.776623 +1999.078454 +1999.082450 +1999.922609 +2000.164234 +2000.166498 +2000.168662 +2004.234692 +2004.236224 +2004.237656 +2004.239221 +2004.240953 +2004.242784 +2004.518741 +2004.520506 +2004.522304 +2004.719407 +2004.721405 +2004.783043 +2004.907552 +2004.986007 +2005.622237 +2005.854238 +2006.573951 +2006.789002 +2008.179344 +2012.371248 +2012.373179 +2012.375077 +2012.585933 +2012.587564 +2012.589196 +2012.730022 +2012.731953 +2012.733751 +2012.866885 +2012.868983 +2012.870981 +2012.873245 +2012.953765 +2015.392190 +2015.396553 +2016.279169 +2016.281467 +2016.283498 +2016.476538 +2017.644469 +2017.947799 +2018.047799 +2018.075704 +2018.182730 +2018.319094 +2018.836676 +2018.838441 +2018.840106 +2018.842037 +2019.021224 +2019.022889 +2019.024488 +2019.026486 +2019.028417 +2019.227851 +2019.229716 +2019.231780 +2019.726785 +2020.230614 +2020.233045 +2021.494149 +2021.495714 +2021.497213 +2021.498778 +2021.500509 +2021.504039 +2021.651092 +2021.652757 +2021.654422 +2021.656387 +2021.795048 +2021.796746 +2021.798344 +2021.931611 +2021.933609 +2021.935540 +2023.383125 +2024.993047 +2024.995011 +2024.996643 +2025.212294 +2025.214092 +2025.370336 +2025.501837 +2025.625846 +2025.629077 +2025.714957 +2026.305599 +2027.608762 +2027.610626 +2027.612291 +2027.614123 +2027.766271 +2027.768635 +2027.772531 +2030.963503 +2031.241026 +2031.242890 +2031.374692 +2031.376823 +2032.922942 +2033.200564 +2033.954043 +2034.240889 +2034.242654 +2034.244286 +2034.246284 +2034.410320 +2034.412351 +2034.414316 +2034.585478 +2034.781082 +2034.783113 +2034.785278 +2034.843886 +2035.550279 +2035.742520 +2037.205522 +2037.207553 +2037.209385 +2037.211449 +2037.380047 +2037.383277 +2037.543217 +2038.593199 +2040.217274 +2040.219105 +2040.220704 +2040.222502 +2040.224766 +2040.435222 +2040.436987 +2040.438552 +2040.440251 +2040.442348 +2040.672152 +2040.673850 +2040.675382 +2040.677113 +2040.680144 +2040.803820 +2041.127662 +2043.664490 +2043.666521 +2043.668386 +2043.954499 +2046.848503 +2046.850367 +2046.852199 +2047.099318 +2047.101283 +2047.102948 +2047.106078 +2047.174376 +2047.177307 +2049.311271 +2049.776239 +2049.919362 +2050.670510 +2050.672308 +2050.674306 +2050.890989 +2050.892554 +2050.894020 +2050.895551 +2051.033647 +2051.035378 +2051.037110 +2051.161785 +2051.163850 +2051.165714 +2051.931248 +2052.957454 +2053.477600 +2053.480997 +2053.677667 +2053.679398 +2053.681063 +2053.682895 +2053.685692 +2055.243033 +2055.244864 +2055.246729 +2055.248661 +2055.479363 +2055.481361 +2055.483126 +2055.714195 +2056.750124 +2057.692981 +2058.357815 +2058.359580 +2058.361245 +2058.364642 +2058.625347 +2058.626946 +2058.628411 +2058.630043 +2058.758447 +2058.760279 +2058.762210 +2058.888784 +2058.893579 +2059.833205 +2059.952286 +2060.900303 +2061.055548 +2062.170998 +2062.172996 +2062.174694 +2062.177092 +2062.377658 +2062.379389 +2062.380921 +2062.382719 +2062.385017 +2062.544191 +2062.546755 +2062.755413 +2062.757344 +2062.759176 +2062.761107 +2062.766169 +2065.698101 +2065.700032 +2065.701897 +2065.704328 +2066.066199 +2066.067831 +2066.069362 +2066.071194 +2066.211553 +2066.213551 +2066.353911 +2067.622241 +2067.626837 +2069.269159 +2069.394767 +2069.396632 +2069.398530 +2069.612216 +2069.614580 +2073.918872 +2073.920537 +2073.922202 +2073.924166 +2074.052405 +2074.982241 +2076.439582 +2076.441547 +2076.443278 +2076.445876 +2076.720467 +2076.722299 +2076.723997 +2076.725862 +2076.872349 +2076.874813 +2077.582837 +2080.594290 +2080.596188 +2080.597819 +2080.599951 +2080.951066 +2080.952598 +2080.954030 +2080.955528 +2080.957526 +2081.111772 +2081.113770 +2081.115868 +2082.825157 +2082.826955 +2082.828620 +2082.830584 +2082.833815 +2083.735179 +2083.736744 +2083.738209 +2083.739774 +2083.741606 +2083.744237 +2084.002078 +2084.003644 +2084.005109 +2084.006807 +2084.160520 +2084.162218 +2084.163750 +2084.165515 +2084.322624 +2084.324456 +2084.326087 +2084.327986 +2084.331415 +2084.533746 +2084.536077 +2084.538475 +2086.228084 +2086.229948 +2086.231613 +2086.233345 +2086.236708 +2087.120690 +2087.122888 +2087.124719 +2087.961715 +2087.963546 +2087.965211 +2087.967043 +2087.970573 +2088.352723 +2088.354388 +2088.355820 +2088.357452 +2088.360216 +2088.591751 +2088.593416 +2088.594981 +2088.596613 +2088.598611 +2088.600775 +2088.748927 +2088.751158 +2088.753089 +2088.755154 +2089.943398 +2089.945229 +2089.946961 +2089.948826 +2090.374433 +2090.376364 +2090.378129 +2090.380094 +2090.382092 +2090.527780 +2090.530011 +2090.533441 +2091.424981 +2091.426713 +2091.428245 +2091.429943 +2091.432041 +2091.434172 +2091.709830 +2091.711628 +2091.713326 +2091.715258 +2091.718288 +2091.929909 +2091.931541 +2091.932940 +2091.934571 +2092.109663 +2092.111394 +2092.113059 +2092.115057 +2092.287485 +2092.289649 +2092.291780 +2092.452520 +2092.454884 +2092.457215 +2092.690215 +2092.692546 +2092.694677 +2093.120484 +2093.122715 +2093.124647 +2093.540497 +2093.542229 +2093.543794 +2093.545492 +2093.547324 +2093.550221 +2093.928975 +2093.930640 +2093.932138 +2093.933737 +2093.935568 +2093.937733 +2093.940830 +2094.337766 +2094.339431 +2094.340896 +2094.342494 +2094.344526 +2094.347623 +2094.593377 +2094.595075 +2094.596573 +2094.598272 +2094.600103 +2094.602734 +2094.961342 +2094.963073 +2094.964605 +2094.966237 +2094.968235 +2094.970299 +2095.331105 +2095.332803 +2095.334335 +2095.336100 +2095.338164 +2095.342127 +2095.748221 +2095.749819 +2095.751251 +2095.752849 +2095.754681 +2095.756912 +2095.760775 +2095.945190 +2095.947221 +2095.949486 +2096.174927 +2096.176792 +2096.178523 +2096.180788 +2096.445123 +2096.834733 +2096.836531 +2096.838096 +2096.840128 +2096.842625 +2096.998536 +2097.000767 +2097.174759 +2097.176824 +2097.178722 +2097.345122 +2097.347087 +2097.348852 +2097.350850 +2099.656009 +2099.657740 +2099.659306 +2099.661070 +2099.663401 +2099.832033 +2099.834031 +2099.955909 +2099.960371 +2100.037827 +2104.627965 +2110.699121 +2113.850533 +2113.853764 +2113.960057 +2115.251564 +2118.858754 +2121.201908 +2126.113225 +2126.181590 +2126.267371 +2126.337334 +2126.410494 +2126.554717 +2126.615056 +2126.678926 +2126.743494 +2126.810594 +2126.872532 +2126.998206 +2131.235231 +2131.370962 +2131.416317 +2157.815624 +2157.882324 +2157.986953 +2158.118055 +2158.159813 +2158.191049 +2158.320219 +2158.546859 +2158.881824 +2160.745392 +2160.784086 +2160.835069 +2160.943826 +2161.000936 +2161.094942 +2161.139564 +2161.211492 +2161.449054 +2161.493609 +2161.545491 +2161.563007 +2161.594908 +2161.641828 +2161.691311 +2161.750785 +2161.784585 +2161.823779 +2161.859943 +2161.936266 +2162.045357 +2162.148187 +2162.175527 +2162.218817 +2162.306496 +2162.480488 +2162.519849 +2162.695173 +2162.820281 +2162.942059 +2163.028240 +2163.328939 +2163.423211 +2163.486415 +2163.558276 +2163.649884 +2163.862205 +2163.949884 +2164.014186 +2164.099035 +2164.201732 +2164.298502 +2164.433300 +2164.513620 +2164.659773 +2164.704795 +2164.741292 +2173.955169 +2185.249097 +2185.256789 +2191.153853 +2191.155951 +2191.157882 +2191.366473 +2196.954013 +2197.078589 +2197.298402 +2201.574688 +2201.576386 +2201.577952 +2201.579617 +2201.581581 +2201.584778 +2202.053942 +2202.055973 +2202.197232 +2204.318408 +2204.320173 +2204.321938 +2204.518342 +2204.520306 +2204.664096 +2204.665960 +2204.668558 +2204.743017 +2206.819638 +2207.910513 +2207.912178 +2207.913709 +2207.915674 +2208.173649 +2208.175481 +2208.177146 +2208.178944 +2209.421866 +2209.423831 +2209.425529 +2209.427894 +2209.634554 +2209.640115 +2209.987400 +2210.133254 +2210.198489 +2211.829989 +2214.421595 +2214.423560 +2214.425425 +2214.427423 +2214.885164 +2214.887196 +2214.889094 +2214.892923 +2215.247668 +2215.249633 +2215.251364 +2215.253596 +2215.523292 +2215.524924 +2215.526356 +2215.528087 +2215.671610 +2215.673275 +2215.674874 +2215.816499 +2215.818763 +2215.956625 +2215.958756 +2215.960754 +2216.885296 +2217.207739 +2217.378002 +2217.380000 +2217.382231 +2217.669144 +2217.671176 +2217.672940 +2217.677702 +2217.879667 +2218.086060 +2222.354288 +2222.461347 +2222.523885 +2222.678796 +2223.039369 +2223.164810 +2223.260414 +2223.896178 +2223.898142 +2223.900240 +2223.902305 +2224.142598 +2224.358482 +2224.360380 +2224.362078 +2224.364043 +2224.637469 +2224.639367 +2224.641032 +2224.643030 +2224.647592 +2224.778927 +2224.781525 +2224.784921 +2226.341064 +2227.034936 +2227.036501 +2227.037966 +2227.039564 +2227.041529 +2227.151519 +2227.153517 +2228.869932 +2228.871730 +2228.873395 +2228.875294 +2228.878091 +2229.256445 +2229.258776 +2229.260808 +2229.265203 +2230.677823 +2230.679554 +2230.681153 +2230.682917 +2230.684915 +2230.691376 +2230.959874 +2230.961772 +2230.963403 +2230.965335 +2230.970763 +2231.227506 +2231.229670 +2231.232401 +2231.443423 +2231.445854 +2231.449916 +2232.128737 +2232.130302 +2232.131767 +2232.133366 +2232.135031 +2232.138460 +2232.381684 +2232.383382 +2232.384880 +2232.386545 +2232.390175 +2232.709456 +2232.711287 +2232.713052 +2232.958373 +2232.960071 +2232.961636 +2232.963435 +2232.966964 +2233.510087 +2233.514683 +2233.874822 +2233.876587 +2233.878252 +2233.880084 +2233.882282 +2233.888475 +2234.238758 +2234.240490 +2234.242088 +2234.243820 +2234.245751 +2234.250979 +2234.555608 +2234.557572 +2234.559504 +2234.784279 +2234.786443 +2234.788375 +2234.791039 +2235.034195 +2235.035927 +2235.037492 +2235.039257 +2235.041188 +2235.221474 +2235.223306 +2235.225004 +2235.229067 +2235.382380 +2235.384378 +2235.386176 +2235.388074 +2235.390838 +2235.725237 +2235.727401 +2235.729599 +2236.155340 +2236.157404 +2236.159336 +2236.161267 +2236.540554 +2236.542552 +2236.544417 +2236.546781 +2236.955305 +2236.957137 +2236.958669 +2236.960467 +2236.962598 +2237.253174 +2237.255072 +2237.256804 +2237.258702 +2237.263797 +2237.548212 +2237.549944 +2237.551575 +2237.553407 +2237.555938 +2237.843117 +2237.844882 +2237.846380 +2237.848112 +2237.851342 +2238.139820 +2238.142517 +2238.146280 +2238.564361 +2238.566260 +2238.567858 +2238.569656 +2238.572520 +2239.042916 +2239.044681 +2239.046246 +2239.047877 +2239.049909 +2239.053638 +2239.312612 +2239.314377 +2239.316009 +2239.318007 +2239.678646 +2239.680411 +2239.682043 +2239.683774 +2239.685939 +2240.025366 +2240.026864 +2240.028463 +2240.030427 +2240.399191 +2240.400890 +2240.402388 +2240.403987 +2240.405985 +2240.410114 +2240.767190 +2240.768888 +2240.770387 +2240.772052 +2240.773916 +2241.119171 +2241.120836 +2241.122334 +2241.123966 +2241.125764 +2241.127762 +2241.542614 +2241.544312 +2241.545744 +2241.547375 +2241.549107 +2241.551072 +2241.555467 +2241.880775 +2241.882473 +2241.883972 +2241.885637 +2241.887635 +2241.890465 +2242.177278 +2242.179010 +2242.180575 +2242.182273 +2242.184105 +2242.188201 +2242.531291 +2242.532922 +2242.534454 +2242.536052 +2242.537917 +2242.540282 +2242.544511 +2242.832189 +2242.833988 +2242.835519 +2242.837318 +2242.839349 +2242.841480 +2243.239149 +2243.240947 +2243.242545 +2243.244410 +2243.246708 +2243.542845 +2243.544543 +2243.546041 +2243.547706 +2243.550570 +2243.554866 +2243.810943 +2243.812675 +2243.814273 +2243.816005 +2243.818003 +2243.820267 +2244.141512 +2244.143277 +2244.144842 +2244.146574 +2244.148672 +2244.151302 +2244.444076 +2244.445841 +2244.447472 +2244.449237 +2244.451968 +2244.832054 +2244.833786 +2244.835284 +2244.836916 +2244.838881 +2245.212340 +2245.214138 +2245.215637 +2245.217468 +2245.219533 +2245.225227 +2245.584534 +2245.586199 +2245.587731 +2245.589429 +2245.591394 +2245.594291 +2245.908377 +2245.910108 +2245.911607 +2245.913272 +2245.915170 +2245.917634 +2246.268783 +2246.270514 +2246.272013 +2246.273644 +2246.275709 +2246.277874 +2246.582835 +2246.584533 +2246.586065 +2246.587663 +2246.589495 +2246.591992 +2246.955129 +2246.956827 +2246.958326 +2246.959891 +2246.961689 +2246.963654 +2247.248835 +2247.250500 +2247.252065 +2247.253697 +2247.255628 +2247.257693 +2247.526291 +2247.528022 +2247.529654 +2247.531552 +2247.534782 +2248.002580 +2248.004245 +2248.005677 +2248.007309 +2248.009141 +2248.292224 +2248.294022 +2248.295620 +2248.297385 +2248.300482 +2248.510006 +2248.511837 +2248.513436 +2248.515400 +2248.518697 +2248.799316 +2248.801148 +2248.802779 +2248.804644 +2248.807408 +2249.154194 +2249.155893 +2249.157391 +2249.159056 +2249.160888 +2249.164584 +2249.496885 +2249.498550 +2249.500048 +2249.501680 +2249.503445 +2249.506275 +2249.718563 +2249.720228 +2249.721760 +2249.723524 +2249.725456 +2249.727687 +2250.090124 +2250.091856 +2250.093388 +2250.094986 +2250.096951 +2250.100081 +2250.479335 +2250.481033 +2250.482631 +2250.484330 +2250.486294 +2250.875971 +2250.877736 +2250.879301 +2250.880999 +2250.884762 +2251.233713 +2251.235378 +2251.236876 +2251.238541 +2251.240373 +2251.244668 +2251.536310 +2251.538041 +2251.539540 +2251.541172 +2251.543203 +2251.545667 +2251.901045 +2251.902710 +2251.904242 +2251.905907 +2251.907771 +2251.911168 +2252.134877 +2252.136642 +2252.138141 +2252.139839 +2252.141704 +2252.146732 +2252.423455 +2252.425153 +2252.426652 +2252.428450 +2252.718760 +2252.720458 +2252.722023 +2252.723721 +2252.725686 +2252.920824 +2252.922589 +2252.924187 +2252.925952 +2253.149761 +2253.152092 +2253.154224 +2253.421689 +2253.423687 +2253.426884 +2253.727450 +2253.729381 +2253.731113 +2254.085059 +2254.087523 +2254.090653 +2254.327349 +2254.329447 +2254.491951 +2254.493849 +2254.495514 +2254.497379 +2254.499477 +2254.731412 +2254.733343 +2254.735008 +2254.737139 +2255.127682 +2255.129513 +2255.131045 +2255.132943 +2255.409466 +2255.411231 +2255.412763 +2255.414528 +2255.416659 +2255.714294 +2255.716126 +2255.717724 +2255.719556 +2255.911564 +2255.913861 +2255.916425 +2256.142832 +2256.417657 +2256.419522 +2256.421253 +2256.423385 +2256.645029 +2256.647560 +2256.649591 +2256.915325 +2256.918356 +2257.293580 +2257.638069 +2257.640233 +2257.642065 +2258.026580 +2258.029111 +2258.286553 +2258.289783 +2258.375730 +2258.539233 +2258.541864 +2261.979323 +2261.982453 +2266.838459 +2267.005758 +2267.047017 +2267.120377 +2267.168962 +2267.216647 +2267.267130 +2267.302694 +2267.346084 +2267.416281 +2267.452478 +2267.510986 +2267.536860 +2267.612551 +2267.655341 +2267.697999 +2267.749181 +2267.784079 +2267.854409 +2267.894635 +2267.926104 +2267.961368 +2268.016546 +2268.053376 +2268.090173 +2268.145118 +2268.227369 +2268.285377 +2268.380182 +2268.410186 +2268.469859 +2268.733396 +2268.829766 +2269.186842 +2269.339822 +2269.477551 +2269.523904 +2269.942519 +2277.091129 +2277.197257 +2277.420200 +2277.479574 +2277.544942 +2277.601152 +2277.670416 +2277.806480 +2277.861691 +2278.044575 +2278.214838 +2278.266686 +2278.533619 +2279.784966 +2279.980004 +2280.030820 +2281.912470 +2282.062420 +2282.139176 +2282.169946 +2282.288427 +2282.341640 +2282.397185 +2283.123225 +2294.032038 +2294.084519 +2294.162874 +2294.232604 +2294.346923 +2294.443560 +2294.679424 +2295.376459 +2295.461474 +2295.500901 +2295.552416 +2295.649253 +2295.772762 +2296.506928 +2296.605995 +2296.697870 +2297.752381 +2298.323542 +2301.854308 +2302.172723 +2302.209120 +2302.231963 +2302.267628 +2302.323572 +2302.349979 +2302.493635 +2302.543385 +2302.591603 +2302.627368 +2302.703991 +2302.731364 +2302.760035 +2302.796032 +2302.834660 +2302.858037 +2302.878949 +2302.929931 +2303.003591 +2303.069425 +2303.145049 +2303.171989 +2303.196198 +2303.235792 +2303.291969 +2303.324403 +2303.360034 +2303.403757 +2303.440820 +2303.479881 +2303.499661 +2303.529764 +2303.559535 +2303.579448 +2303.636091 +2303.670190 +2303.697596 +2303.732661 +2303.772555 +2303.808885 +2303.841253 +2303.861233 +2303.882478 +2303.905355 +2303.939821 +2303.984809 +2304.018109 +2304.046247 +2304.071455 +2304.129930 +2304.261399 +2304.302158 +2304.373287 +2304.405221 +2304.446813 +2304.499294 +2304.539287 +2304.652607 +2304.801691 +2305.043915 +2305.133559 +2305.265227 +2305.364028 +2305.498993 +2305.675983 +2305.720138 +2305.856036 +2306.038586 +2306.277014 +2306.779678 +2307.048575 +2311.358261 +2311.532554 +2311.604615 +2312.193892 +2312.231854 +2312.324694 +2312.464487 +2312.584401 +2312.597854 +2312.610275 +2312.657994 +2312.820564 +2312.824094 +2312.843841 +2313.159525 +2314.597386 +2314.866183 +2315.363485 +2316.128620 +2316.174973 +2317.165781 +2317.238342 +2317.310270 +2317.517329 +2317.624955 +2336.771223 +2337.039288 +2337.124569 +2337.153540 +2337.267027 +2337.415545 +2337.538155 +2337.627699 +2337.679048 +2337.730529 +2337.775518 +2337.823137 +2337.883376 +2337.927232 +2337.994798 +2338.071555 +2338.130529 +2338.160632 +2338.203289 +2338.251175 +2338.353672 +2338.400792 +2338.480878 +2338.544681 +2339.106985 +2339.108716 +2339.110415 +2339.114944 +2339.313811 +2339.437654 +2339.569089 +2346.026558 +2346.029622 +2349.572542 +2349.783098 +2350.646234 +2350.649331 +2350.822990 +2350.829684 +2358.599839 +2359.104434 +2359.506232 +2367.065965 +2367.067963 +2367.069894 +2367.071992 +2371.568890 +2372.228364 +2372.229995 +2372.231594 +2372.402356 +2372.404088 +2372.405719 +2372.407884 +2372.469789 +2372.890268 +2373.043781 +2373.158299 +2373.238652 +2373.351340 +2373.393364 +2373.443747 +2373.483973 +2374.934388 +2374.937285 +2374.940682 +2375.147242 +2375.149273 +2375.151271 +2375.353236 +2375.355367 +2375.357498 +2382.099483 +2394.005332 +2394.205698 +2395.298137 +2402.007988 +2407.092032 +2407.093897 +2407.095928 +2407.338385 +2407.340317 +2407.342181 +2407.462161 +2407.963459 +2408.262593 +2408.323599 +2408.442280 +2408.502120 +2408.576746 +2408.678610 +2408.722300 +2408.819269 +2408.890198 +2408.925563 +2409.022932 +2409.065257 +2409.160661 +2409.664457 +2409.666122 +2409.667753 +2409.669585 +2409.805915 +2410.054300 +2410.056265 +2410.058296 +2410.287666 +2418.820092 +2419.806205 +2422.093915 +2427.179791 +2427.181622 +2427.183320 +2427.185252 +2427.369068 +2427.371132 +2427.373030 +2427.478924 +2437.086307 +2440.181709 +2442.228793 +2442.398390 +2442.400721 +2442.402852 +2443.419002 +2444.035684 +2448.420129 +2448.425490 +2448.765283 +2448.767182 +2448.768980 +2448.771211 +2448.898317 +2448.900282 +2452.096715 +2455.883791 +2455.886122 +2455.888253 +2456.084790 +2456.087521 +2456.895612 +2462.160442 +2462.162373 +2462.164238 +2462.467368 +2463.200967 +2470.123071 +2470.326534 +2470.328599 +2470.330430 +2470.420273 +2472.100425 +2472.102423 +2472.107218 +2477.171149 +2477.173480 +2477.177043 +2477.377243 +2477.382538 +2478.287865 +2478.451001 +2479.076509 +2479.366385 +2479.370281 +2488.804937 +2511.833952 +2511.893092 +2512.096522 +2512.169882 +2512.205047 +2512.236016 +2512.263622 +2512.304447 +2512.339146 +2512.374777 +2512.414504 +2512.466685 +2512.515603 +2512.547304 +2512.585832 +2512.623794 +2512.666651 +2512.699052 +2512.727890 +2512.762322 +2512.788063 +2512.822695 +2512.846971 +2512.868549 +2512.918033 +2513.015536 +2513.088662 +2513.142808 +2513.246604 +2513.287463 +2513.321196 +2513.361356 +2513.429388 +2513.464286 +2513.503913 +2513.586164 +2513.649368 +2513.886730 +2514.010073 +2514.088728 +2514.573876 +2522.818489 +2524.802503 +2524.832540 +2524.883622 +2524.970735 +2525.015024 +2525.088417 +2525.120985 +2525.164874 +2525.219220 +2525.265773 +2525.468737 +2525.655017 +2525.697574 +2525.849056 +2525.900205 +2525.944560 +2526.094011 +2526.135070 +2526.204667 +2526.272232 +2526.370301 +2526.478892 +2526.595076 +2526.694410 +2526.821183 +2526.873297 +2526.934436 +2528.120449 +2528.217152 +2528.436233 +2528.525443 +2528.857578 +2529.550384 +2531.274592 +2531.419313 +2531.618481 +2531.803562 +2532.184214 +2532.309389 +2532.383448 +2532.605393 +2532.799532 +2533.001363 +2533.293770 +2533.684346 +2533.707623 +2533.807123 +2533.905292 +2534.898131 +2534.993036 +2535.208087 +2535.308287 +2535.600661 +2535.683045 +2535.782779 +2535.985076 +2536.074354 +2536.170191 +2536.263897 +2536.308286 +2536.351809 +2536.464596 +2536.576085 +2536.679781 +2536.810850 +2536.836824 +2536.861632 +2536.917376 +2537.061865 +2537.169457 +2537.208552 +2537.282111 +2537.330296 +2537.406454 +2537.433826 +2537.700226 +2537.793599 +2537.938987 +2538.008984 +2538.308717 +2539.660297 +2541.656266 +2541.658930 +2541.661528 +2546.418066 +2546.491060 +2546.847237 +2547.084566 +2547.088495 +2547.197852 +2547.301282 +2547.384432 +2547.459257 +2547.519231 +2547.555594 +2547.583033 +2547.674442 +2547.713070 +2547.753996 +2547.792024 +2547.828355 +2547.870246 +2547.897685 +2547.929154 +2547.963886 +2547.991591 +2548.013935 +2548.026490 +2548.083233 +2548.117998 +2548.154029 +2548.180635 +2548.219430 +2548.248501 +2548.291358 +2548.332683 +2548.370345 +2548.410738 +2548.447235 +2548.473376 +2548.597318 +2548.668081 +2548.703445 +2548.739409 +2548.763618 +2548.805843 +2548.827921 +2548.847767 +2548.887228 +2548.931151 +2548.946835 +2548.963685 +2549.065117 +2549.180734 +2549.273042 +2549.384464 +2549.422059 +2549.468213 +2549.539542 +2549.610571 +2549.682865 +2549.775838 +2550.040873 +2550.156957 +2550.357856 +2551.981131 +2553.463214 +2553.534842 +2553.574469 +2553.647097 +2553.683960 +2553.746164 +2553.831246 +2553.919657 +2554.020256 +2582.338843 +2582.340874 +2582.342706 +2582.545836 +2582.550631 +2582.749165 +2582.954460 +2583.087960 +2583.178169 +2583.259088 +2583.339741 +2583.361619 +2583.404743 +2583.496417 +2583.872474 +2583.874173 +2583.875838 +2584.063716 +2584.065847 +2584.180166 +2584.182164 +2584.184495 +2584.513433 +2585.293219 +2585.461251 +2592.091247 +2592.093778 +2592.350321 +2592.352120 +2592.353818 +2592.356981 +2592.425946 +2602.058237 +2602.059869 +2602.061500 +2602.063332 +2602.281946 +2602.283845 +2602.285643 +2602.410052 +2605.772419 +2606.787570 +2606.793364 +2607.930159 +2609.288400 +2609.477311 +2610.673313 +2610.682438 +2612.099119 +2616.822025 +2616.824256 +2616.826421 +2616.829851 +2617.136910 +2617.138575 +2617.140173 +2617.142071 +2617.330549 +2617.457855 +2617.900246 +2618.164848 +2618.332313 +2618.384062 +2618.481298 +2618.578733 +2618.637808 +2618.731680 +2618.826186 +2618.898979 +2619.021856 +2619.061084 +2619.141337 +2619.268942 +2619.798213 +2619.800211 +2620.029981 +2620.031746 +2620.034077 +2620.177833 +2620.306104 +2620.308435 +2620.375435 +2620.821488 +2620.891851 +2623.015858 +2623.018223 +2623.295612 +2623.297909 +2624.735271 +2629.041826 +2629.044091 +2629.231636 +2629.363305 +2630.789877 +2631.825673 +2632.043222 +2632.045420 +2632.047418 +2632.195736 +2635.442020 +2635.451044 +2637.188605 +2637.190570 +2637.367992 +2637.370123 +2637.373653 +2639.108749 +2639.373118 +2639.651739 +2639.654170 +2639.656135 +2644.462690 +2644.464655 +2644.466386 +2644.586167 +2644.588231 +2644.590129 +2644.592560 +2644.657162 +2646.616900 +2647.120696 +2647.122528 +2647.262354 +2648.210872 +2648.963085 +2649.346635 +2650.704742 +2651.408437 +2651.410802 +2652.114098 +2652.115663 +2652.117128 +2652.118660 +2652.120491 +2652.122756 +2652.279432 +2652.281031 +2652.282496 +2652.284227 +2652.432845 +2652.434510 +2652.436075 +2652.437874 +2652.440538 +2652.595349 +2652.597148 +2652.598846 +2652.600677 +2652.603341 +2652.690055 +2652.841570 +2652.843801 +2652.846698 +2652.923854 +2655.176732 +2655.178797 +2655.180994 +2655.418124 +2655.419855 +2655.421487 +2655.423252 +2655.426082 +2656.003471 +2656.006002 +2658.415057 +2658.417055 +2658.699639 +2658.701803 +2658.856082 +2658.859812 +2662.216852 +2662.218783 +2662.220614 +2662.222579 +2662.518550 +2662.520215 +2662.521780 +2662.523478 +2662.526075 +2662.675925 +2662.677823 +2662.679522 +2662.846621 +2662.849152 +2662.852582 +2665.929036 +2665.930701 +2665.932232 +2665.933964 +2665.935862 +2665.938326 +2666.239358 +2666.240957 +2666.242389 +2666.244020 +2666.245885 +2666.460737 +2666.462402 +2666.463967 +2666.465599 +2666.604959 +2666.607623 +2668.155907 +2668.157638 +2668.159270 +2668.160968 +2668.492170 +2668.493768 +2668.495267 +2668.496832 +2668.498797 +2668.662533 +2668.664164 +2668.665630 +2668.667295 +2668.825270 +2668.827035 +2668.828600 +2668.830365 +2668.992336 +2668.994234 +2668.996066 +2668.998263 +2670.570157 +2671.000226 +2671.002424 +2671.004222 +2671.007485 +2671.236823 +2671.238521 +2671.240119 +2671.241984 +2671.245481 +2671.555970 +2671.557735 +2671.559333 +2671.561131 +2671.791334 +2671.793066 +2671.794664 +2671.796462 +2671.798594 +2671.977348 +2671.979080 +2671.981078 +2672.277847 +2672.279845 +2672.281710 +2672.397361 +2672.401257 +2672.577880 +2672.580544 +2673.683940 +2673.685838 +2673.687469 +2673.689301 +2673.693530 +2674.005351 +2674.007149 +2674.008715 +2674.010446 +2674.218038 +2674.219903 +2674.221535 +2674.223400 +2674.671751 +2674.675880 +2675.192796 +2675.610511 +2675.612809 +2675.617271 +2675.915572 +2675.917337 +2675.918936 +2675.920734 +2676.093195 +2676.094926 +2676.279275 +2676.281206 +2676.282938 +2676.285103 +2676.394360 +2676.396358 +2676.398156 +2676.400187 +2676.523997 +2676.526128 +2676.707313 +2676.709944 +2676.884869 +2676.886900 +2676.888798 +2677.709910 +2677.714871 +2678.086932 +2678.089396 +2678.093892 +2678.476243 +2678.478041 +2678.479639 +2678.481371 +2678.484235 +2678.684534 +2678.686366 +2678.687897 +2678.689562 +2678.691860 +2679.042509 +2679.044207 +2679.045739 +2679.047471 +2679.049469 +2679.420031 +2679.421729 +2679.423295 +2679.424993 +2679.426958 +2679.788629 +2679.790294 +2679.791759 +2679.793391 +2679.795289 +2679.797353 +2679.801150 +2679.973377 +2679.975209 +2679.976807 +2679.978572 +2679.981769 +2680.286164 +2680.287862 +2680.289394 +2680.291026 +2680.292924 +2680.295954 +2680.673177 +2680.674808 +2680.676207 +2680.677772 +2680.679437 +2680.682001 +2680.684499 +2680.873576 +2680.875374 +2680.876906 +2680.878604 +2680.880702 +2681.097019 +2681.098784 +2681.100316 +2681.102047 +2681.104612 +2681.107409 +2681.420029 +2681.421894 +2681.423592 +2681.425424 +2681.429153 +2681.790092 +2681.791690 +2681.793922 +2681.924691 +2681.927122 +2681.929253 +2682.857823 +2682.863684 +2683.485761 +2683.800746 +2684.037176 +2684.039041 +2684.040639 +2684.042504 +2684.324888 +2684.327086 +2684.329184 +2684.331581 +2684.699713 +2684.701911 +2684.703742 +2684.707339 +2685.054291 +2685.056056 +2685.057655 +2685.059719 +2685.414264 +2685.416262 +2685.418060 +2685.420058 +2685.714497 +2685.717028 +2686.032312 +2686.034477 +2686.036541 +2686.040604 +2686.386724 +2686.388522 +2686.390187 +2686.391952 +2686.395715 +2686.892118 +2686.893750 +2686.895149 +2686.896714 +2686.898379 +2686.900443 +2686.903240 +2687.355921 +2687.357519 +2687.358984 +2687.360483 +2687.362181 +2687.364212 +2687.557719 +2687.559417 +2687.560949 +2687.562714 +2687.564678 +2687.567675 +2687.838005 +2687.839703 +2687.841168 +2687.842800 +2687.844765 +2687.846929 +2688.134841 +2688.136439 +2688.137938 +2688.139536 +2688.141368 +2688.143532 +2688.381228 +2688.382893 +2688.384391 +2688.385990 +2688.387921 +2688.391151 +2688.683192 +2688.684990 +2688.686589 +2688.688354 +2688.690285 +2688.694181 +2689.054187 +2689.055886 +2689.057351 +2689.058983 +2689.060781 +2689.062812 +2689.404270 +2689.405902 +2689.407301 +2689.408832 +2689.410564 +2689.412895 +2689.416924 +2689.779361 +2689.780960 +2689.782425 +2689.784023 +2689.785688 +2689.787786 +2689.791316 +2690.045062 +2690.046727 +2690.048192 +2690.049857 +2690.051622 +2690.053654 +2690.057683 +2690.351788 +2690.353387 +2690.354819 +2690.356450 +2690.358415 +2690.360946 +2690.366840 +2690.754752 +2690.756417 +2690.757849 +2690.759380 +2690.761079 +2690.763243 +2690.767372 +2691.083290 +2691.084988 +2691.086453 +2691.088151 +2691.090116 +2691.092247 +2691.378361 +2691.380026 +2691.381491 +2691.383089 +2691.384854 +2691.386952 +2691.391947 +2691.808430 +2691.810328 +2691.811993 +2691.813758 +2691.817155 +2692.199472 +2692.201237 +2692.202802 +2692.204467 +2692.206532 +2692.208730 +2692.476195 +2692.477960 +2692.479492 +2692.481323 +2692.484087 +2692.772898 +2692.774630 +2692.776195 +2692.777827 +2692.779658 +2692.782122 +2693.039931 +2693.041629 +2693.043261 +2693.045059 +2693.047190 +2693.382521 +2693.384220 +2693.385718 +2693.387450 +2693.389481 +2693.391612 +2693.692145 +2693.693910 +2693.695408 +2693.697073 +2693.698938 +2694.097206 +2694.098938 +2694.100403 +2694.102001 +2694.103933 +2694.105897 +2694.108561 +2694.408761 +2694.410492 +2694.412057 +2694.413922 +2694.416120 +2694.694208 +2694.696007 +2694.697638 +2694.699337 +2694.701268 +2695.034767 +2695.036566 +2695.038231 +2695.040029 +2695.042526 +2695.366802 +2695.368533 +2695.370032 +2695.371664 +2695.373695 +2695.377724 +2695.621180 +2695.622979 +2695.624544 +2695.626309 +2695.628540 +2695.917184 +2695.918916 +2695.920448 +2695.922079 +2695.924044 +2695.927973 +2696.355912 +2696.357743 +2696.359308 +2696.361140 +2696.363404 +2696.666634 +2696.668399 +2696.669931 +2696.671596 +2696.673560 +2696.931502 +2696.933200 +2696.934666 +2696.936231 +2696.938229 +2696.942358 +2697.211022 +2697.212787 +2697.214352 +2697.216117 +2697.218015 +2697.223543 +2697.451149 +2697.452847 +2697.454312 +2697.456044 +2697.457842 +2697.461805 +2697.850416 +2697.852247 +2697.853879 +2697.855710 +2697.857775 +2698.148584 +2698.150282 +2698.151781 +2698.153412 +2698.155410 +2698.157708 +2698.481151 +2698.482916 +2698.484514 +2698.486179 +2698.488377 +2698.838360 +2698.840058 +2698.841557 +2698.843155 +2698.845153 +2698.849049 +2699.157041 +2699.158806 +2699.160371 +2699.162269 +2699.164700 +2699.521143 +2699.522975 +2699.524640 +2699.526405 +2699.528503 +2699.875888 +2699.877653 +2699.879118 +2699.880817 +2699.882615 +2699.884779 +2700.145219 +2700.146884 +2700.148382 +2700.150147 +2700.465898 +2700.467629 +2700.469161 +2700.470926 +2700.472990 +2700.893669 +2700.895534 +2700.897232 +2700.899197 +2700.902527 +2701.278551 +2701.280482 +2701.282280 +2701.284345 +2701.627268 +2701.629133 +2701.630831 +2701.632630 +2701.635560 +2701.926169 +2701.927867 +2701.929366 +2701.930964 +2701.932763 +2701.935660 +2702.255539 +2702.257304 +2702.258903 +2702.260534 +2702.262499 +2702.266162 +2702.547780 +2702.549512 +2702.551044 +2702.552775 +2702.554873 +2702.905056 +2702.906721 +2702.908219 +2702.909884 +2702.911683 +2702.913847 +2703.198396 +2703.200194 +2703.201792 +2703.203624 +2703.205755 +2703.476917 +2703.478682 +2703.480247 +2703.481978 +2703.484409 +2703.774386 +2703.776151 +2703.777682 +2703.779347 +2703.781179 +2703.784409 +2704.008318 +2704.010050 +2704.011648 +2704.013380 +2704.015411 +2704.018541 +2704.409150 +2704.410949 +2704.412514 +2704.414245 +2704.416143 +2704.714178 +2704.715910 +2704.717408 +2704.719173 +2704.721305 +2704.723569 +2705.077481 +2705.079346 +2705.081011 +2705.082809 +2705.085040 +2705.357335 +2705.359133 +2705.360764 +2705.362629 +2705.672219 +2705.674051 +2705.675683 +2705.677447 +2705.988836 +2705.990567 +2705.992132 +2705.993864 +2705.995862 +2706.000591 +2706.239385 +2706.241183 +2706.242782 +2706.244680 +2706.246811 +2706.557999 +2706.559731 +2706.561329 +2706.563128 +2706.564959 +2706.885072 +2706.886804 +2706.888369 +2706.890134 +2706.892098 +2706.895062 +2707.200989 +2707.202787 +2707.204486 +2707.206484 +2707.210813 +2707.545078 +2707.547109 +2707.549041 +2707.551338 +2707.886236 +2707.888001 +2707.889600 +2707.891365 +2707.894328 +2708.118437 +2708.120269 +2708.121901 +2708.123699 +2708.301254 +2708.510611 +2708.512410 +2708.514008 +2708.515773 +2708.519303 +2708.712210 +2708.713975 +2708.715673 +2708.902819 +2708.904684 +2708.906282 +2708.908413 +2709.098923 +2709.100821 +2709.102586 +2709.104650 +2709.297890 +2709.299955 +2709.301753 +2709.303951 +2709.492196 +2709.494160 +2709.495925 +2709.500987 +2709.681439 +2709.683437 +2709.685302 +2709.687200 +2709.797290 +2709.988099 +2710.091729 +2716.939441 +2716.941605 +2717.092787 +2719.850394 +2720.423986 +2720.939503 +2721.406702 +2722.910697 +2722.918423 +2725.515356 +2725.715123 +2725.716955 +2725.718553 +2725.933305 +2727.797872 +2727.800003 +2727.801934 +2727.809826 +2728.213689 +2728.215720 +2728.217485 +2728.220049 +2728.686382 +2728.688314 +2728.690045 +2728.692110 +2729.123278 +2729.125210 +2729.126808 +2729.128773 +2729.133102 +2729.500667 +2729.502665 +2729.504463 +2729.507627 +2729.824709 +2729.826574 +2729.828339 +2729.830270 +2730.173560 +2730.175292 +2730.176857 +2730.178522 +2730.181019 +2730.645221 +2730.647020 +2730.648618 +2730.650483 +2730.653913 +2731.077089 +2731.078854 +2731.080419 +2731.082084 +2731.084182 +2731.473226 +2731.474924 +2731.476423 +2731.478088 +2731.480119 +2731.836595 +2731.838260 +2731.839659 +2731.841257 +2731.843022 +2731.845586 +2732.195869 +2732.197634 +2732.199099 +2732.200731 +2732.202662 +2732.545353 +2732.547084 +2732.548749 +2732.550547 +2732.553345 +2732.878885 +2732.880650 +2732.882149 +2732.883947 +2732.885978 +2733.155608 +2733.157340 +2733.158839 +2733.160570 +2733.162635 +2733.165332 +2733.458505 +2733.460237 +2733.461769 +2733.463434 +2733.465298 +2733.467729 +2733.707722 +2733.709521 +2733.711186 +2733.713117 +2733.715148 +2733.989907 +2733.991771 +2733.993536 +2733.995434 +2734.000063 +2734.446250 +2734.448015 +2734.449580 +2734.451311 +2734.453176 +2734.708521 +2734.710352 +2734.712117 +2734.714282 +2734.906223 +2734.907988 +2734.909586 +2734.911551 +2735.183245 +2735.185643 +2735.188507 +2735.599562 +2735.601527 +2735.603258 +2735.605390 +2735.886741 +2735.888606 +2735.890238 +2735.892003 +2735.894101 +2736.218909 +2736.220640 +2736.222239 +2736.224104 +2736.226435 +2736.524603 +2736.526501 +2736.528166 +2736.530164 +2736.533993 +2736.828166 +2736.830064 +2736.831662 +2736.833427 +2736.839587 +2737.220406 +2737.222105 +2737.223603 +2737.225235 +2737.227266 +2737.230063 +2737.474285 +2737.476050 +2737.477649 +2737.479314 +2737.481478 +2737.681645 +2737.683409 +2737.685041 +2737.686806 +2737.688771 +2737.693133 +2738.031927 +2738.033659 +2738.035191 +2738.036922 +2738.038920 +2738.375017 +2738.376749 +2738.378247 +2738.380012 +2738.382077 +2738.719572 +2738.721370 +2738.723002 +2738.724700 +2738.726698 +2739.088570 +2739.090334 +2739.091866 +2739.093531 +2739.095929 +2739.439185 +2739.440950 +2739.442515 +2739.444147 +2739.446045 +2739.805186 +2739.806917 +2739.808416 +2739.810147 +2739.812179 +2739.815575 +2740.146844 +2740.148575 +2740.150107 +2740.151805 +2740.154103 +2740.440017 +2740.441648 +2740.443180 +2740.444812 +2740.446677 +2740.449507 +2740.757998 +2740.759697 +2740.761195 +2740.762894 +2740.764825 +2740.768588 +2741.074249 +2741.075947 +2741.077479 +2741.079110 +2741.081608 +2741.085104 +2741.373682 +2741.375414 +2741.376912 +2741.378611 +2741.380475 +2741.572716 +2741.574581 +2741.576213 +2741.799323 +2741.801054 +2741.802619 +2741.804418 +2741.806382 +2741.968320 +2741.970185 +2741.971883 +2741.974048 +2742.200654 +2742.414041 +2742.604483 +2743.079242 +2743.083204 +2743.184003 +2743.278142 +2756.946194 +2757.001139 +2757.127746 +2757.396843 +2757.556283 +2757.643563 +2757.706533 +2757.761878 +2757.837235 +2758.067871 +2758.126812 +2758.519786 +2758.523748 +2766.276554 +2766.314250 +2766.362768 +2766.435961 +2766.488509 +2766.583813 +2766.670693 +2771.097395 +2771.133226 +2771.176516 +2771.261065 +2771.289869 +2771.322237 +2771.499426 +2771.540752 +2771.590535 +2771.642183 +2771.687771 +2771.797162 +2771.843382 +2771.885340 +2771.924035 +2772.017508 +2772.098194 +2772.126865 +2772.170388 +2772.199093 +2772.228363 +2772.462629 +2772.662529 +2773.889467 +2773.939917 +2773.983373 +2774.022234 +2774.099157 +2774.161395 +2774.194762 +2774.221368 +2774.539783 +2774.937318 +2774.998424 +2775.135553 +2775.291231 +2781.597485 +2782.208140 +2791.830874 +2791.865873 +2792.134670 +2792.206665 +2792.273165 +2792.296741 +2792.361843 +2792.388783 +2792.516288 +2792.910460 +2792.966071 +2793.047024 +2793.097873 +2793.301036 +2793.477926 +2793.612458 +2795.702699 +2795.765103 +2795.811057 +2795.856212 +2795.914354 +2795.960308 +2796.033568 +2796.095938 +2796.184084 +2796.295239 +2796.347753 +2796.413687 +2796.448319 +2796.501233 +2796.533900 +2796.612322 +2796.693740 +2796.828305 +2796.869464 +2796.905095 +2796.932002 +2796.990676 +2797.029337 +2797.050316 +2797.080486 +2797.118848 +2797.197769 +2797.242258 +2797.284415 +2797.341991 +2797.378688 +2797.432401 +2797.487845 +2797.531901 +2797.586913 +2797.613952 +2797.648717 +2797.696436 +2797.775624 +2797.810722 +2797.872527 +2797.926839 +2797.981185 +2798.028604 +2798.073126 +2798.120845 +2798.151681 +2798.188544 +2798.212853 +2798.254777 +2798.278987 +2798.310355 +2798.337495 +2798.358374 +2798.378920 +2798.411188 +2798.428104 +2798.480651 +2798.504161 +2798.525207 +2798.605193 +2798.689376 +2798.770162 +2798.805892 +2798.908956 +2798.960504 +2798.986412 +2799.042389 +2799.080051 +2799.099998 +2799.127138 +2799.152346 +2799.184480 +2799.216581 +2799.268130 +2799.291173 +2799.318180 +2799.362202 +2799.425972 +2799.573524 +2799.618745 +2799.672125 +2799.691306 +2799.718579 +2799.758173 +2799.806191 +2799.833098 +2799.841955 +2799.927170 +2799.955242 +2799.977753 +2799.996700 +2800.052944 +2800.096367 +2800.167829 +2800.203693 +2800.235428 +2800.250213 +2800.316181 +2800.377486 +2800.428435 +2800.453710 +2800.501229 +2800.532697 +2800.611085 +2800.661568 +2800.683280 +2800.715548 +2800.729400 +2800.772391 +2800.827702 +2800.869860 +2800.974222 +2801.014648 +2801.033729 +2801.104192 +2801.141088 +2801.165597 +2801.235660 +2801.260802 +2801.275887 +2801.303892 +2801.325204 +2801.349979 +2801.381514 +2801.407288 +2801.450312 +2801.472257 +2801.523172 +2801.561634 +2801.588341 +2801.620741 +2801.658037 +2801.701594 +2801.819842 +2801.858404 +2801.883012 +2801.902926 +2801.916179 +2801.964131 +2802.021640 +2802.040321 +2802.075286 +2802.108753 +2802.149545 +2802.187008 +2802.213448 +2802.242686 +2802.315546 +2802.387374 +2802.411650 +2802.458969 +2802.496631 +2802.550211 +2802.569458 +2802.627800 +2802.676684 +2802.781513 +2802.820507 +2802.864796 +2802.889538 +2803.019808 +2803.073521 +2803.113580 +2803.160034 +2803.214246 +2803.303091 +2803.393101 +2803.420440 +2803.460100 +2803.488472 +2803.543084 +2803.591269 +2803.623170 +2803.663330 +2803.754705 +2803.800726 +2803.927432 +2803.952874 +2803.988338 +2804.051675 +2804.093266 +2804.120739 +2804.154439 +2804.186473 +2804.218841 +2804.265727 +2804.290236 +2804.308584 +2804.337489 +2804.394165 +2804.417042 +2804.444881 +2804.480346 +2804.516110 +2804.555504 +2804.595264 +2804.618008 +2804.638720 +2804.658734 +2804.689736 +2804.740086 +2804.772253 +2804.791268 +2804.815077 +2804.881711 +2804.922037 +2804.999126 +2805.038520 +2805.056203 +2805.076316 +2805.109349 +2805.145280 +2805.179379 +2805.203289 +2805.222536 +2805.243215 +2805.264527 +2805.342882 +2805.378147 +2805.420205 +2805.449642 +2805.467125 +2805.478513 +2805.523002 +2805.566658 +2805.598193 +2805.639818 +2805.687071 +2805.802888 +2805.832059 +2805.882276 +2805.894397 +2805.943714 +2805.974084 +2806.036122 +2806.098493 +2806.137320 +2806.200690 +2806.241449 +2806.286238 +2806.336821 +2806.390933 +2806.427397 +2806.508882 +2806.541549 +2806.589235 +2806.654036 +2806.845878 +2806.907083 +2806.960863 +2807.007316 +2807.064958 +2807.102621 +2807.147676 +2807.182174 +2807.225032 +2807.255501 +2807.318938 +2807.361628 +2807.405384 +2807.449507 +2807.477812 +2807.503120 +2807.574149 +2807.629127 +2807.657932 +2807.678911 +2807.770918 +2807.828994 +2807.864059 +2807.903419 +2808.115673 +2808.158564 +2808.243912 +2808.309146 +2808.370518 +2808.438583 +2808.464691 +2808.505084 +2808.597658 +2808.685769 +2808.785803 +2808.833222 +2808.889432 +2808.953535 +2809.017970 +2809.044277 +2809.091130 +2809.160694 +2809.195892 +2809.283171 +2809.388832 +2809.451669 +2809.523331 +2809.602851 +2809.816204 +2810.003983 +2810.112774 +2810.192728 +2810.382970 +2810.849870 +2812.795622 +2814.203746 +2815.064551 +2821.895280 +2826.683554 +2826.837899 +2827.081722 +2827.164406 +2827.203566 +2827.291279 +2827.322181 +2827.372630 +2827.532437 +2827.704232 +2827.759543 +2827.819983 +2827.856446 +2827.890679 +2827.913056 +2827.938331 +2827.973629 +2827.996273 +2828.017518 +2828.089813 +2828.182620 +2828.328773 +2828.891310 +2829.519382 +2829.617517 +2829.655545 +2829.719015 +2829.803863 +2829.992075 +2831.117848 +2831.249650 +2831.334298 +2831.370062 +2831.497069 +2831.667964 +2831.669796 +2831.671494 +2831.673559 +2832.031134 +2832.032932 +2832.034564 +2832.178953 +2833.580650 +2835.045616 +2835.047315 +2835.049180 +2835.241687 +2835.243618 +2835.245583 +2835.380281 +2835.382180 +2835.384178 +2835.528433 +2835.531197 +2835.535093 +2837.099827 +2837.493499 +2837.495631 +2837.497762 +2837.886639 +2837.888770 +2837.890968 +2838.036589 +2838.038487 +2838.040252 +2838.042217 +2838.111980 +2838.536056 +2839.137687 +2839.140484 +2840.173850 +2840.176048 +2840.177946 +2842.085803 +2843.256031 +2843.381406 +2843.444143 +2843.559328 +2843.853600 +2843.932787 +2843.973247 +2844.046740 +2844.150169 +2844.855497 +2844.857062 +2844.858560 +2844.860192 +2844.861957 +2845.040711 +2845.042410 +2845.044208 +2845.137181 +2845.674111 +2845.986565 +2846.150534 +2846.152432 +2846.154163 +2846.351866 +2849.364217 +2849.366048 +2849.367713 +2849.369611 +2849.541439 +2849.543471 +2849.545302 +2849.733780 +2849.736344 +2851.485061 +2851.805240 +2851.973638 +2852.239872 +2852.872305 +2852.874037 +2852.875602 +2852.877334 +2852.879298 +2853.332178 +2853.333976 +2853.562614 +2853.564313 +2853.565811 +2853.567576 +2853.719491 +2853.721222 +2853.723220 +2854.006470 +2854.008967 +2854.010965 +2855.167774 +2855.169772 +2855.171803 +2855.348926 +2858.151521 +2858.166972 +2860.324645 +2860.326377 +2860.328075 +2860.330406 +2860.580423 +2860.582154 +2860.583753 +2860.585584 +2860.587549 +2860.738498 +2860.740463 +2860.742361 +2860.892710 +2860.894875 +2860.897039 +2862.633401 +2862.635133 +2862.636764 +2862.712022 +2862.872129 +2862.873860 +2862.875492 +2862.877623 +2863.025608 +2863.027706 +2863.107626 +2863.110057 +2863.257909 +2863.260473 +2864.334132 +2865.324940 +2865.326772 +2865.328636 +2865.481217 +2865.483015 +2865.485213 +2865.624773 +2865.626472 +2865.628103 +2865.630301 +2865.707824 +2865.853045 +2865.936395 +2867.451811 +2869.152942 +2870.185641 +2870.187306 +2870.189005 +2870.376617 +2870.378948 +2872.071220 +2872.074084 +2872.283575 +2872.285240 +2872.286738 +2872.288669 +2872.418440 +2872.420204 +2872.421969 +2872.550407 +2872.552505 +2872.554470 +2872.556934 +2872.978213 +2874.071884 +2874.073483 +2874.075048 +2874.076680 +2874.078511 +2874.238584 +2874.380975 +2874.382773 +2874.384538 +2874.525497 +2874.527428 +2874.529227 +2874.531824 +2874.599756 +2874.602187 +2877.601585 +2877.603682 +2877.605481 +2877.608911 +2877.986799 +2877.988564 +2877.990096 +2877.991894 +2877.994092 +2878.231421 +2878.233585 +2878.235517 +2878.539945 +2878.541777 +2878.543442 +2878.545307 +2878.547371 +2878.663688 +2878.665819 +2878.667784 +2878.673545 +2880.173610 +2880.175275 +2880.176740 +2880.178339 +2880.180237 +2880.183667 +2880.366817 +2880.368415 +2880.369847 +2880.371512 +2880.373443 +2880.667282 +2880.669181 +2880.670912 +2880.674076 +2880.850566 +2880.853230 +2881.057292 +2882.073475 +2882.075206 +2882.076838 +2882.252762 +2882.254460 +2882.256025 +2882.257757 +2882.448300 +2882.450198 +2882.452029 +2882.559688 +2882.662519 +2882.669079 +2882.768812 +2882.771410 +2883.070011 +2883.181865 +2883.278602 +2883.560053 +2883.562218 +2883.656390 +2883.754992 +2883.758055 +2883.856923 +2883.859554 +2883.963550 +2884.067346 +2884.165914 +2884.273240 +2884.275737 +2884.369776 +2884.372240 +2884.460252 +2884.462783 +2884.464914 +2884.562383 +2884.564881 +2884.654591 +2884.657522 +2884.750562 +2884.756023 +2884.863649 +2884.969176 +2886.009535 +2887.098245 +2887.882926 +2888.720321 +2888.722120 +2888.723851 +2888.725849 +2889.149891 +2889.151823 +2889.154087 +2889.295679 +2889.297577 +2889.433607 +2889.435805 +2890.109564 +2890.111828 +2892.063841 +2894.565037 +2895.072430 +2895.074061 +2895.075560 +2895.077158 +2895.079056 +2895.082353 +2895.328606 +2895.330371 +2895.542759 +2895.544490 +2895.546089 +2895.547887 +2895.549918 +2895.768300 +2895.770398 +2895.772196 +2895.776491 +2895.960740 +2897.562937 +2897.564701 +2897.566400 +2897.568431 +2897.571162 +2897.873159 +2897.874691 +2897.876356 +2897.879353 +2898.134431 +2898.136096 +2898.137728 +2898.139559 +2898.141824 +2898.319779 +2898.321377 +2898.323242 +2898.395337 +2898.397568 +2898.401963 +2898.563435 +2898.566032 +2899.576654 +2899.578486 +2899.580151 +2899.582049 +2899.584913 +2900.111985 +2900.113883 +2900.115581 +2900.117579 +2900.121043 +2900.557073 +2900.558738 +2900.560203 +2900.561801 +2900.563633 +2900.566430 +2900.974522 +2900.976220 +2900.977685 +2900.979350 +2900.981281 +2901.233096 +2901.234894 +2901.236526 +2901.238391 +2901.497698 +2901.499529 +2901.501128 +2901.502926 +2901.506556 +2901.681314 +2901.683445 +2901.685243 +2901.688607 +2902.071224 +2902.073621 +2902.079216 +2902.521906 +2902.527067 +2902.529898 +2902.956904 +2902.958602 +2902.960134 +2902.961766 +2902.963830 +2902.971056 +2903.441019 +2903.442718 +2903.444283 +2903.445981 +2903.447912 +2903.450476 +2903.833926 +2903.835624 +2903.837123 +2903.838821 +2903.840786 +2904.180046 +2904.181778 +2904.183343 +2904.185208 +2904.187339 +2904.191635 +2904.548044 +2904.549843 +2904.551441 +2904.553239 +2904.555803 +2904.978913 +2904.980545 +2904.982010 +2904.983575 +2904.985540 +2904.988337 +2905.167891 +2905.169622 +2905.171187 +2905.172852 +2905.174750 +2905.178147 +2905.344980 +2905.346778 +2905.348377 +2905.350108 +2905.352239 +2905.538786 +2905.540751 +2905.542682 +2905.546045 +2905.748443 +2905.751173 +2905.757467 +2906.029928 +2906.031826 +2906.033524 +2906.035489 +2906.496394 +2906.499258 +2906.890267 +2906.892098 +2906.893696 +2906.895495 +2906.899591 +2907.046144 +2907.047975 +2907.049740 +2907.051672 +2907.311545 +2907.313243 +2907.314808 +2907.316573 +2907.318505 +2907.542747 +2907.544778 +2907.546610 +2907.550372 +2907.784372 +2907.786336 +2907.788101 +2907.791498 +2908.089533 +2908.091364 +2908.092929 +2908.094661 +2908.096859 +2908.492130 +2908.493961 +2908.495693 +2908.497924 +2908.819102 +2908.821067 +2908.822765 +2908.824797 +2909.095992 +2909.097823 +2909.099422 +2909.101187 +2909.103285 +2909.518436 +2909.520167 +2909.521732 +2909.523397 +2909.525462 +2909.530057 +2909.725129 +2909.726994 +2909.728625 +2909.730424 +2909.732521 +2910.030523 +2910.032321 +2910.033886 +2910.035751 +2910.038349 +2910.279574 +2910.281572 +2910.283303 +2910.286700 +2910.635284 +2910.637382 +2910.639214 +2910.641412 +2910.919567 +2910.921398 +2910.923063 +2910.924928 +2911.246473 +2911.248138 +2911.249603 +2911.251235 +2911.513805 +2911.515703 +2911.517468 +2911.519466 +2911.523429 +2911.941244 +2911.943042 +2911.944640 +2911.946305 +2911.948503 +2912.256229 +2912.258160 +2912.259925 +2912.261923 +2912.656395 +2912.658193 +2912.659758 +2912.661456 +2912.663687 +2913.049501 +2913.051199 +2913.052731 +2913.054363 +2913.056228 +2913.058592 +2913.442341 +2913.443973 +2913.445438 +2913.447070 +2913.448968 +2913.451132 +2913.799251 +2913.800916 +2913.802447 +2913.804013 +2913.805777 +2913.807942 +2914.158325 +2914.159956 +2914.161388 +2914.163020 +2914.164818 +2914.167116 +2914.170046 +2914.532084 +2914.533749 +2914.535247 +2914.536812 +2914.538677 +2914.540842 +2914.869080 +2914.870778 +2914.872243 +2914.873908 +2914.875640 +2914.877738 +2914.882067 +2915.094587 +2915.096286 +2915.097817 +2915.099549 +2915.405110 +2915.406575 +2915.408307 +2915.609039 +2915.611004 +2915.613035 +2915.802712 +2915.804577 +2915.806342 +2915.998416 +2916.000281 +2916.001979 +2916.004044 +2916.212035 +2916.214133 +2916.216098 +2916.422125 +2916.424856 +2916.713767 +2916.715898 +2916.968645 +2916.970709 +2916.972474 +2916.974905 +2917.204842 +2917.206806 +2917.208571 +2917.468711 +2917.470576 +2917.472241 +2917.474172 +2917.476503 +2917.806872 +2917.808937 +2917.810768 +2917.813965 +2918.205340 +2918.207172 +2918.208803 +2918.403209 +2918.405040 +2918.406772 +2918.608703 +2918.610601 +2918.612399 +2918.887591 +2918.889555 +2918.891254 +2918.893218 +2919.184760 +2919.186758 +2919.188489 +2919.190421 +2919.425685 +2919.428283 +2919.793351 +2919.795182 +2919.796814 +2919.798579 +2920.015828 +2920.017593 +2920.019125 +2920.020923 +2920.023220 +2920.275501 +2920.277466 +2920.279164 +2920.282061 +2920.614728 +2920.616560 +2920.618158 +2920.620023 +2920.622088 +2920.961248 +2920.963013 +2920.964611 +2920.966443 +2920.968474 +2921.400409 +2921.402240 +2921.403905 +2921.405670 +2921.408800 +2921.750625 +2921.752390 +2921.754021 +2921.755753 +2921.758583 +2922.247028 +2922.248826 +2922.250424 +2922.252189 +2922.254787 +2922.480760 +2922.482659 +2922.484423 +2922.486555 +2922.774133 +2922.776065 +2922.777796 +2922.780127 +2923.250956 +2923.252721 +2923.254353 +2923.256084 +2923.258382 +2923.554386 +2923.556817 +2923.558848 +2923.916856 +2923.918888 +2923.920586 +2923.923416 +2924.285354 +2924.654485 +2924.656283 +2924.657914 +2924.659879 +2924.663342 +2924.843629 +2924.846459 +2924.848524 +2925.209229 +2930.565601 +2930.696303 +2930.888378 +2931.026806 +2931.090109 +2931.211754 +2931.284248 +2931.361604 +2931.604561 +2931.724474 +2931.803595 +2931.904294 +2932.222309 +2932.364933 +2932.910487 +2936.995065 +2936.996896 +2936.998628 +2941.234821 +2949.063018 +2949.417230 +2949.854226 +2949.880600 +2951.579666 +2952.689388 +2953.091020 +2953.481962 +2954.485757 +2955.088687 +2965.114251 +2965.187045 +2965.205127 +2965.216482 +2965.239292 +2965.279319 +2965.348084 +2965.447950 +2965.507657 +2965.566398 +2965.603761 +2965.657973 +2965.706125 +2965.742689 +2965.773624 +2965.823941 +2965.863534 +2965.900897 +2965.950814 +2966.003061 +2966.028736 +2966.059338 +2966.094703 +2966.133564 +2966.169694 +2966.224440 +2966.293171 +2966.385079 +2966.443520 +2966.479051 +2966.540890 +2966.577486 +2966.604959 +2966.637693 +2966.685412 +2966.746217 +2966.787343 +2966.829034 +2966.861202 +2966.885878 +2966.937193 +2966.963966 +2967.068561 +2967.116680 +2967.176920 +2967.205691 +2967.233996 +2967.284479 +2967.323306 +2967.377319 +2967.412783 +2967.457805 +2967.494069 +2967.526803 +2967.573656 +2967.596599 +2967.612717 +2967.642187 +2967.661967 +2967.688874 +2967.716446 +2967.798031 +2967.843053 +2967.853476 +2967.893702 +2967.924971 +2967.956006 +2967.974488 +2968.014814 +2968.042953 +2968.072756 +2968.105257 +2968.157904 +2968.184178 +2968.222240 +2968.253509 +2968.292969 +2968.331098 +2968.354208 +2968.379982 +2968.396232 +2968.411883 +2968.443718 +2968.458870 +2968.484810 +2968.500694 +2968.532829 +2968.560868 +2968.672822 +2968.721374 +2968.754773 +2968.781813 +2968.819842 +2968.848147 +2968.931630 +2968.979881 +2968.998396 +2969.022073 +2969.047747 +2969.088273 +2969.304190 +2969.360301 +2969.377717 +2969.412582 +2969.446781 +2969.530663 +2969.554240 +2969.599095 +2969.664097 +2969.700993 +2969.736557 +2969.778848 +2969.820806 +2969.851842 +2969.909551 +2969.928032 +2969.958702 +2970.004289 +2970.036291 +2970.070157 +2970.114879 +2970.212181 +2970.249877 +2970.294665 +2970.331129 +2970.399061 +2970.444415 +2970.524036 +2970.553406 +2970.561931 +2970.739354 +2970.799660 +2970.831361 +2970.880179 +2970.934691 +2970.962297 +2971.087372 +2971.137155 +2971.159400 +2971.193233 +2971.336889 +2971.368324 +2971.433958 +2971.505287 +2971.545513 +2971.585307 +2971.652273 +2971.752240 +2971.836888 +2971.925366 +2971.959266 +2971.990401 +2972.101057 +2972.198027 +2972.243315 +2972.307018 +2972.401456 +2972.453871 +2972.510581 +2972.577047 +2972.627330 +2972.737553 +2972.823234 +2972.888469 +2972.953537 +2973.032758 +2973.067556 +2973.106384 +2973.147510 +2973.216341 +2973.290966 +2973.347210 +2973.400723 +2973.507283 +2973.554835 +2973.612244 +2973.654069 +2973.677779 +2973.762461 +2973.852504 +2973.924732 +2973.987169 +2974.052604 +2974.138218 +2974.205551 +2974.239050 +2974.342147 +2974.402487 +2974.448074 +2974.549540 +2974.633988 +2974.646676 +2974.777245 +2974.813808 +2974.837951 +2974.986436 +2975.039582 +2975.123532 +2975.180641 +2975.269619 +2975.399322 +2975.452669 +2975.514074 +2975.609146 +2975.651836 +2975.711310 +2975.801586 +2975.849838 +2975.982239 +2976.230457 +2976.273647 +2976.295092 +2976.422398 +2976.473647 +2976.537982 +2976.580640 +2976.639880 +2976.688265 +2976.742145 +2976.782038 +2976.990663 +2977.093993 +2977.253466 +2977.331621 +2977.375344 +2977.438814 +2977.491428 +2977.565254 +2977.682503 +2977.761225 +2977.825061 +2977.968983 +2978.014971 +2978.055863 +2978.123529 +2978.179506 +2978.222296 +2978.307711 +2978.333518 +2978.537514 +2978.667118 +2978.737114 +2978.790761 +2978.836615 +2978.865419 +2979.012106 +2979.075709 +2979.234084 +2979.304313 +2979.371879 +2979.538412 +2979.586731 +2979.701383 +2979.836847 +2979.868216 +2979.991259 +2980.042474 +2980.085332 +2980.206677 +2980.318099 +2980.363786 +2980.400716 +2980.457059 +2980.651099 +2980.726590 +2980.779703 +2980.940043 +2981.211338 +2981.288627 +2981.415267 +2981.465417 +2981.504744 +2981.640808 +2981.767514 +2981.830485 +2981.923658 +2981.963785 +2982.133315 +2982.216065 +2982.282732 +2982.457224 +2982.662752 +2982.835778 +2983.195552 +2983.435012 +2983.622224 +2983.736510 +2983.782031 +2984.057489 +2984.359953 +2984.467711 +2984.699513 +2985.175037 +2985.277101 +2985.385393 +2986.585991 +2990.045262 +3000.133930 +3000.203427 +3000.276454 +3000.316214 +3000.364299 +3000.400962 +3000.425471 +3000.457839 +3000.480449 +3000.548781 +3000.606656 +3000.651511 +3000.854475 +3000.892803 +3000.948081 +3000.975987 +3001.042720 +3001.076852 +3001.153576 +3001.202060 +3001.239956 +3001.310385 +3001.367328 +3001.415080 +3001.454208 +3001.506123 +3001.586908 +3001.643585 +3001.694101 +3001.732629 +3001.749679 +3001.768627 +3001.872756 +3001.945017 +3002.004857 +3002.065896 +3002.208553 +3002.210950 +3002.508852 +3002.511083 +3003.103324 +3009.981039 +3011.000319 +3035.810351 +3035.922039 +3035.999162 +3036.134959 +3036.630929 +3036.652408 +3037.321838 +3040.794795 +3041.942512 +3041.944544 +3041.946442 +3042.905016 +3042.907546 +3055.267174 +3055.269605 +3055.469638 +3055.472769 +3055.567407 +3055.572835 +3056.083424 +3056.166807 +3056.263644 +3056.362245 +3056.578495 +3056.783290 +3056.878928 +3057.072201 +3057.189350 +3057.273999 +3057.575597 +3070.249044 +3070.366860 +3070.499527 +3071.990568 +3071.992499 +3072.269322 +3078.971147 +3080.049401 +3080.051365 +3080.053297 +3080.255761 +3080.257592 +3080.259391 +3080.439610 +3080.442041 +3080.444206 +3083.986926 +3090.211362 +3090.213593 +3090.216224 +3090.388118 +3090.549024 +3091.076463 +3091.166173 +3091.170369 +3091.259912 +3091.776162 +3091.969302 +3092.172266 +3092.373331 +3092.478093 +3092.884653 +3100.219477 +3100.221409 +3100.223373 +3105.399159 +3105.400824 +3105.402689 +3105.641983 +3105.643914 +3105.645712 +3105.648043 +3105.791433 +3107.196094 +3107.437985 +3107.789233 +3109.123864 +3109.125662 +3109.127360 +3109.129392 +3109.340114 +3109.341846 +3109.343544 +3109.535385 +3109.537716 +3109.539947 +3110.812174 +3111.030355 +3111.032587 +3111.262090 +3111.264221 +3111.266286 +3111.270049 +3112.412505 +3115.389559 +3115.391590 +3115.393421 +3115.570777 +3115.984163 +3116.781099 +3116.783430 +3117.141305 +3117.984761 +3121.838670 +3121.840768 +3122.827979 +3122.830510 +3122.994246 +3125.253085 +3125.254883 +3125.256515 +3125.258713 +3125.462176 +3125.560910 +3126.074863 +3126.078992 +3126.173963 +3126.268302 +3126.271133 +3126.368535 +3126.774829 +3126.863373 +3127.079457 +3127.291112 +3127.376027 +3127.482953 +3127.576226 +3127.674628 +3127.781454 +3127.878424 +3127.981021 +3128.076093 +3128.181587 +3128.361340 +3134.688640 +3135.235459 +3135.237591 +3135.239522 +3140.366423 +3140.367988 +3140.369420 +3140.371052 +3140.372850 +3140.598258 +3140.600089 +3140.601821 +3140.603686 +3140.608781 +3140.748607 +3140.750506 +3140.752237 +3140.756433 +3140.897092 +3140.899223 +3140.901355 +3140.972783 +3142.087367 +3142.264057 +3142.366921 +3142.685569 +3143.408944 +3143.410609 +3143.412274 +3143.414006 +3143.685901 +3143.687432 +3143.688931 +3143.690529 +3143.692527 +3143.828691 +3143.830389 +3143.832121 +3143.834185 +3143.948371 +3143.954065 +3144.023429 +3145.317234 +3145.319665 +3145.579438 +3145.581769 +3145.584300 +3150.280799 +3150.283063 +3150.480699 +3151.129383 +3151.131148 +3151.132780 +3151.134478 +3151.260685 +3151.262683 +3151.264648 +3151.473372 +3151.475836 +3151.478234 +3151.555223 +3152.226019 +3153.068742 +3153.070540 +3153.072338 +3153.278065 +3153.279964 +3153.281728 +3153.480463 +3153.482461 +3153.484259 +3153.486623 +3153.566943 +3153.991551 +3155.150857 +3155.152522 +3155.154121 +3155.155886 +3155.294480 +3155.296445 +3155.298343 +3155.374067 +3157.613925 +3157.616256 +3157.618521 +3157.786253 +3160.078825 +3160.080623 +3160.082254 +3160.084219 +3160.341761 +3160.343460 +3160.345091 +3160.984585 +3161.168367 +3161.266869 +3161.370798 +3170.184076 +3170.187606 +3175.127394 +3175.207414 +3175.239848 +3175.337650 +3175.441746 +3175.522599 +3175.669951 +3175.787200 +3176.066920 +3176.153767 +3176.212641 +3176.342844 +3176.448605 +3176.496957 +3176.535418 +3176.574646 +3176.771315 +3176.947672 +3177.007146 +3177.051668 +3177.091561 +3177.826359 +3210.336217 +3210.453100 +3210.554232 +3210.618368 +3210.665654 +3210.703816 +3210.750236 +3210.803815 +3210.825627 +3210.854998 +3210.890196 +3210.945307 +3210.983536 +3211.001717 +3211.039746 +3211.157062 +3211.203682 +3211.230788 +3211.274178 +3211.311607 +3211.346306 +3211.370215 +3211.433685 +3211.464487 +3211.516469 +3211.543941 +3211.562290 +3211.586532 +3211.600818 +3211.643841 +3211.684234 +3211.731886 +3211.787164 +3211.855862 +3212.016402 +3212.052399 +3212.107544 +3212.152732 +3212.188130 +3212.272212 +3212.400151 +3212.506511 +3212.543940 +3212.609242 +3212.682102 +3212.773177 +3212.863554 +3212.916434 +3212.946038 +3212.994090 +3213.070780 +3213.117666 +3213.172111 +3213.252065 +3213.339477 +3213.526257 +3213.573876 +3213.669247 +3213.785964 +3213.906676 +3213.990592 +3214.138644 +3214.386396 +3214.501681 +3214.922459 +3215.618796 +3216.084696 +3216.388558 +3216.480833 +3216.539274 +3216.720859 +3216.817962 +3216.887592 +3216.958921 +3217.541737 +3217.875437 +3220.039404 +3220.041968 +3220.045231 +3220.987055 +3221.291684 +3221.406669 +3221.983691 +3222.864076 +3223.031742 +3225.594310 +3225.624080 +3225.646092 +3225.678093 +3225.713757 +3225.815189 +3225.943594 +3226.034603 +3226.076594 +3226.212058 +3226.662341 +3227.650985 +3228.801700 +3228.850384 +3228.918216 +3228.960208 +3229.059941 +3229.111956 +3229.159741 +3229.215985 +3229.278689 +3229.334733 +3229.388412 +3229.984549 +3230.155378 +3230.270429 +3245.413704 +3245.503814 +3245.572778 +3245.797886 +3245.883268 +3245.922828 +3246.004147 +3246.130820 +3246.228755 +3246.294856 +3246.361988 +3246.448835 +3246.513836 +3246.553863 +3246.607409 +3246.722228 +3247.190193 +3247.191958 +3247.193922 +3247.321428 +3259.980723 +3266.072591 +3266.286544 +3266.366331 +3266.771159 +3266.964066 +3267.069327 +3267.671824 +3267.881214 +3280.352464 +3280.354262 +3280.533916 +3280.535780 +3280.537479 +3281.127122 +3281.252430 +3281.645736 +3282.491922 +3282.570810 +3282.612235 +3283.200013 +3283.201845 +3283.203843 +3283.415231 +3283.416996 +3283.418595 +3283.420493 +3283.637942 +3283.639873 +3283.641805 +3283.783596 +3290.137502 +3290.139567 +3290.315424 +3290.317156 +3290.443196 +3290.445261 +3290.447126 +3290.569803 +3290.987851 +3291.229676 +3291.966238 +3298.748283 +3298.750148 +3298.752112 +3298.957407 +3299.112052 +3300.073889 +3300.075654 +3300.077652 +3300.242421 +3300.244086 +3300.245518 +3300.247449 +3300.551078 +3300.553210 +3300.555274 +3300.639690 +3300.878384 +3301.087774 +3301.183112 +3301.186875 +3301.276386 +3301.458304 +3301.661001 +3301.875819 +3301.951443 +3302.083611 +3302.182778 +3302.271656 +3302.371556 +3302.467760 +3302.472588 +3302.568559 +3302.665462 +3302.669524 +3302.773021 +3302.977117 +3303.070090 +3303.572687 +3309.782071 +3310.278375 +3315.525922 +3315.529885 +3315.793088 +3315.795186 +3315.797417 +3315.986694 +3316.823689 +3317.088358 +3317.184262 +3317.822789 +3318.488789 +3318.490354 +3318.491753 +3318.493318 +3318.495016 +3318.496948 +3318.646232 +3318.648163 +3318.862782 +3318.864613 +3318.866311 +3319.068509 +3319.070940 +3319.075402 +3319.620523 +3321.019556 +3321.021221 +3321.022720 +3321.024451 +3321.026383 +3321.029846 +3321.195280 +3321.197078 +3321.198810 +3321.336972 +3321.338703 +3321.340302 +3321.494614 +3321.496712 +3321.498776 +3321.589819 +3323.317656 +3323.319654 +3323.321452 +3323.323583 +3323.563843 +3323.565674 +3323.567439 +3323.569204 +3323.572001 +3323.855051 +3323.856849 +3323.858414 +3323.860213 +3323.862211 +3324.026113 +3324.027878 +3324.029510 +3324.031275 +3324.033306 +3324.113725 +3324.115857 +3324.118054 +3324.279127 +3324.281358 +3324.283422 +3325.045826 +3325.358979 +3325.360944 +3325.652885 +3325.654650 +3325.656281 +3325.742162 +3325.965106 +3326.998271 +3327.000702 +3327.169900 +3327.172064 +3327.332004 +3327.334035 +3327.336033 +3327.488081 +3327.490012 +3327.491844 +3327.637365 +3327.639396 +3327.641661 +3327.722680 +3327.796905 +3329.255046 +3329.256777 +3329.258409 +3329.260340 +3329.463370 +3329.467366 +3330.316616 +3330.322244 +3333.452910 +3333.455075 +3333.457639 +3333.851545 +3333.853276 +3333.854808 +3333.856506 +3333.859803 +3335.466928 +3335.468626 +3335.470124 +3335.471856 +3335.473854 +3335.666994 +3335.668792 +3335.670357 +3335.672289 +3335.868159 +3335.870024 +3335.871722 +3335.873754 +3335.876651 +3336.065428 +3336.067660 +3336.155305 +3336.338755 +3336.662964 +3336.763396 +3336.766793 +3336.972987 +3337.082610 +3337.263562 +3337.265461 +3337.267425 +3337.437855 +3337.439886 +3337.441951 +3338.185540 +3338.281344 +3338.373818 +3338.376682 +3338.464527 +3338.647011 +3339.671485 +3339.782241 +3339.871852 +3341.996725 +3344.003616 +3344.214937 +3344.216636 +3344.218134 +3344.219799 +3344.221831 +3344.363589 +3344.365420 +3344.367052 +3344.512173 +3344.514804 +3344.586099 +3350.183197 +3350.184795 +3350.186227 +3350.187925 +3350.189857 +3350.195518 +3350.581465 +3350.583130 +3350.584661 +3350.586360 +3350.588458 +3350.933645 +3350.935444 +3350.937075 +3350.938973 +3351.134578 +3351.136376 +3351.138107 +3351.140139 +3351.401144 +3351.403042 +3351.404807 +3351.406705 +3351.669875 +3351.671673 +3351.673305 +3351.675136 +3351.679332 +3351.952093 +3351.953824 +3351.955456 +3351.957421 +3352.324453 +3352.326351 +3352.328016 +3352.329914 +3352.640803 +3352.642768 +3352.644832 +3352.903740 +3352.906071 +3352.908102 +3353.207469 +3353.209234 +3353.210866 +3353.212697 +3353.444499 +3353.446397 +3353.448095 +3353.449927 +3353.452258 +3353.938604 +3353.940469 +3353.942167 +3353.943932 +3353.946663 +3354.336106 +3354.337804 +3354.339303 +3354.340968 +3354.342866 +3354.345963 +3354.708866 +3354.710631 +3354.712296 +3354.714128 +3354.716026 +3355.010664 +3355.012629 +3355.014327 +3355.016359 +3355.434806 +3355.436671 +3355.438369 +3355.842165 +3355.843997 +3355.845662 +3355.847360 +3355.849791 +3356.260014 +3356.261745 +3356.263244 +3356.264875 +3356.266674 +3356.270770 +3356.568738 +3356.570403 +3356.571868 +3356.573467 +3356.575331 +3356.962910 +3356.964642 +3356.966207 +3356.968005 +3356.969903 +3356.974532 +3357.374798 +3357.376563 +3357.378128 +3357.379859 +3357.382224 +3357.738101 +3357.739866 +3357.741331 +3357.743129 +3357.745194 +3358.105666 +3358.107398 +3358.108896 +3358.110628 +3358.112559 +3358.114757 +3358.519951 +3358.521650 +3358.523182 +3358.524880 +3358.526878 +3358.529109 +3358.862875 +3358.864573 +3358.866205 +3358.868170 +3358.870534 +3359.097274 +3359.099038 +3359.100537 +3359.102269 +3359.104333 +3359.106664 +3359.522714 +3359.524513 +3359.526111 +3359.527909 +3359.530074 +3359.811059 +3359.812724 +3359.814189 +3359.815788 +3359.817752 +3359.820516 +3360.000536 +3360.002234 +3360.003799 +3360.005531 +3360.007462 +3360.009694 +3360.221382 +3360.223180 +3360.224778 +3360.226543 +3360.228641 +3360.596872 +3360.598537 +3360.600069 +3360.601668 +3360.603499 +3360.607262 +3360.778657 +3360.780589 +3360.782320 +3360.785350 +3361.100102 +3361.102100 +3361.103798 +3361.105796 +3361.534534 +3361.536299 +3361.537831 +3361.539595 +3361.541460 +3361.544824 +3362.020947 +3362.022612 +3362.024144 +3362.025809 +3362.027873 +3362.030571 +3362.350450 +3362.352215 +3362.353914 +3362.355778 +3362.652914 +3362.654679 +3362.656211 +3362.657976 +3362.660140 +3362.662471 +3362.950916 +3362.952648 +3362.954179 +3362.955778 +3362.957609 +3363.064369 +3363.066201 +3363.067899 +3363.069864 +3363.072394 +3363.292341 +3363.294206 +3363.295871 +3363.297736 +3363.299734 +3363.851048 +3363.852913 +3363.854545 +3363.856343 +3363.859307 +3364.139093 +3364.140991 +3364.142590 +3364.144421 +3364.147785 +3364.491940 +3364.493672 +3364.495270 +3364.496902 +3364.498733 +3364.825007 +3364.826672 +3364.828204 +3364.829802 +3364.831567 +3364.833798 +3365.195203 +3365.197001 +3365.198599 +3365.200298 +3365.203628 +3365.408056 +3365.409821 +3365.411353 +3365.413118 +3365.415216 +3365.419878 +3365.679618 +3365.681483 +3365.683181 +3365.685046 +3365.689042 +3365.933098 +3365.934796 +3365.936361 +3365.937893 +3365.939857 +3365.943221 +3366.196467 +3366.198332 +3366.199964 +3366.201829 +3366.206923 +3366.634529 +3366.636360 +3366.637959 +3366.639857 +3366.643054 +3366.979284 +3366.981148 +3366.982747 +3366.984478 +3366.986476 +3367.369959 +3367.372790 +3367.711018 +3367.712650 +3367.714115 +3367.715746 +3367.717744 +3367.721108 +3368.074454 +3368.076152 +3368.077651 +3368.079249 +3368.081081 +3368.083179 +3368.346715 +3368.348446 +3368.349978 +3368.351677 +3368.353675 +3368.355939 +3368.744950 +3368.746615 +3368.748013 +3368.749612 +3368.751277 +3368.753341 +3369.026301 +3369.028199 +3369.029898 +3369.031729 +3369.035359 +3369.336657 +3369.338489 +3369.340087 +3369.341785 +3369.344083 +3369.584309 +3369.586108 +3369.587673 +3369.589704 +3369.591769 +3369.831762 +3369.833460 +3369.835158 +3369.836857 +3369.839953 +3370.313380 +3370.315211 +3370.316876 +3370.609350 +3370.611082 +3370.612780 +3370.614745 +3370.805021 +3370.807019 +3370.808917 +3371.090502 +3371.092333 +3371.093965 +3371.095763 +3371.097828 +3371.401324 +3371.403289 +3371.405053 +3371.607384 +3371.609549 +3371.810448 +3371.812612 +3371.814477 +3372.007617 +3372.009848 +3372.012978 +3372.193731 +3372.195762 +3372.197660 +3372.400723 +3372.402655 +3372.404653 +3372.690433 +3372.692365 +3372.694130 +3372.696228 +3372.912911 +3372.914875 +3372.916574 +3373.220037 +3373.222068 +3373.223899 +3373.600855 +3373.602953 +3373.604918 +3373.607083 +3374.009513 +3374.011478 +3374.013243 +3374.015307 +3374.308747 +3374.310645 +3374.312343 +3374.504085 +3374.505983 +3374.695227 +3374.697025 +3374.698690 +3374.702653 +3374.921367 +3374.925663 +3375.163458 +3375.166621 +3375.517270 +3375.519069 +3375.520667 +3375.522465 +3375.524463 +3376.008046 +3376.009811 +3376.011409 +3376.013141 +3376.015738 +3376.244909 +3376.246873 +3376.248605 +3376.250570 +3376.568152 +3376.570117 +3376.571815 +3376.573979 +3376.579108 +3376.853599 +3376.855298 +3376.856830 +3376.858528 +3376.860459 +3377.254998 +3377.256696 +3377.258228 +3377.259993 +3377.261957 +3377.266220 +3377.586832 +3377.588630 +3377.590162 +3377.591894 +3377.593925 +3377.898587 +3377.900318 +3377.901750 +3377.903349 +3377.905247 +3377.908410 +3378.164121 +3378.166019 +3378.167717 +3378.169715 +3378.471347 +3378.473278 +3378.475076 +3378.477274 +3378.939079 +3378.941010 +3378.942742 +3378.944640 +3378.947270 +3379.237480 +3379.239045 +3379.240743 +3379.245172 +3379.521362 +3379.523161 +3379.524726 +3379.526557 +3379.528455 +3379.872544 +3379.874242 +3379.875841 +3379.877572 +3379.879670 +3379.883267 +3380.209607 +3380.211571 +3380.213336 +3380.215334 +3380.511971 +3381.548533 +3381.551330 +3382.059488 +3382.061953 +3382.064250 +3382.304210 +3382.306441 +3382.308239 +3382.842271 +3382.844935 +3383.067313 +3383.069244 +3383.071009 +3383.349197 +3383.351362 +3383.353327 +3383.585627 +3383.979466 +3383.981531 +3383.983229 +3383.985694 +3384.525753 +3384.527584 +3384.529249 +3384.531081 +3384.774071 +3384.776702 +3385.152925 +3385.154557 +3385.156089 +3385.157687 +3385.159652 +3385.163182 +3385.505839 +3385.507504 +3385.509002 +3385.510700 +3385.512565 +3385.515762 +3385.868342 +3385.870274 +3386.120523 +3386.122255 +3386.123820 +3386.125552 +3386.129048 +3386.494049 +3386.495814 +3386.497379 +3386.499078 +3386.500976 +3386.504306 +3386.794815 +3386.796646 +3386.798212 +3386.800076 +3386.802141 +3387.088188 +3387.089953 +3387.091451 +3387.093050 +3387.095214 +3387.413263 +3387.414961 +3387.416493 +3387.418124 +3387.419989 +3387.423519 +3387.777365 +3387.779030 +3387.780528 +3387.782127 +3387.784058 +3387.787255 +3388.085490 +3388.087255 +3388.088886 +3388.090718 +3388.092682 +3388.406368 +3388.408033 +3388.409532 +3388.411164 +3388.412929 +3388.416492 +3388.724750 +3388.726381 +3388.727780 +3388.729412 +3388.731143 +3388.734473 +3389.046061 +3389.047793 +3389.049325 +3389.051090 +3389.053054 +3389.407699 +3389.409331 +3389.410830 +3389.412495 +3389.414326 +3389.416424 +3389.739700 +3389.741432 +3389.742931 +3389.744695 +3389.746560 +3389.749690 +3390.034705 +3390.036403 +3390.037869 +3390.039467 +3390.041199 +3390.043297 +3390.285987 +3390.287719 +3390.289284 +3390.290949 +3390.292980 +3390.577262 +3390.579027 +3390.580725 +3390.582690 +3390.917422 +3390.919220 +3390.920718 +3390.922450 +3390.924614 +3391.206532 +3391.208297 +3391.209929 +3391.211827 +3391.215457 +3391.539998 +3391.541730 +3391.543295 +3391.545060 +3391.547125 +3391.839332 +3391.841097 +3391.842629 +3391.844327 +3391.846858 +3392.206931 +3392.208762 +3392.210361 +3392.212392 +3392.215689 +3392.615355 +3392.617253 +3392.618818 +3392.620650 +3392.624812 +3393.043660 +3393.045425 +3393.047056 +3393.048788 +3393.050819 +3393.293377 +3393.295108 +3393.296707 +3393.298438 +3393.301169 +3393.646856 +3393.648688 +3393.650353 +3393.652184 +3393.654382 +3393.900968 +3393.902866 +3393.904565 +3393.906663 +3394.239529 +3394.241261 +3394.242793 +3394.244558 +3394.246489 +3394.700934 +3394.702633 +3394.704198 +3394.705829 +3394.707861 +3394.712556 +3395.014054 +3395.015886 +3395.017417 +3395.019216 +3395.022446 +3395.437597 +3395.439495 +3395.441127 +3395.443125 +3395.805695 +3395.807393 +3395.808925 +3395.810590 +3395.812921 +3396.210590 +3396.212321 +3396.213920 +3396.215585 +3396.217949 +3396.221579 +3396.475724 +3396.477556 +3396.479188 +3396.481152 +3396.827539 +3396.829337 +3396.830969 +3396.832700 +3396.836064 +3397.084448 +3397.086613 +3397.088478 +3397.412920 +3397.414718 +3397.416449 +3397.418347 +3397.670029 +3397.671927 +3397.673659 +3397.676223 +3398.002063 +3398.003928 +3398.005526 +3398.007325 +3398.394337 +3398.396335 +3398.398200 +3398.670960 +3398.672792 +3398.674490 +3398.676355 +3398.853877 +3398.856108 +3398.858173 +3399.011419 +3399.013950 +3399.169861 +3399.433231 +3399.604726 +3404.983342 +3405.135922 +3405.138253 +3420.049727 +3420.145198 +3420.280862 +3420.325318 +3420.463746 +3420.544165 +3420.638204 +3420.742000 +3420.779030 +3420.861381 +3420.896945 +3421.002107 +3421.130412 +3421.255420 +3421.345197 +3421.473335 +3421.903038 +3422.451423 +3445.071014 +3445.101949 +3445.321696 +3446.952497 +3446.988561 +3447.061754 +3447.112304 +3447.151831 +3447.191158 +3447.260156 +3447.328254 +3447.441408 +3447.518963 +3447.543339 +3447.585330 +3447.672576 +3447.723192 +3447.832250 +3447.897684 +3448.028453 +3448.141540 +3448.192756 +3448.250931 +3448.308739 +3448.515133 +3448.728852 +3448.844536 +3449.374739 +3449.400380 +3449.559354 +3449.618828 +3449.680533 +3449.729551 +3455.311330 +3455.385089 +3455.447127 +3455.477563 +3455.503937 +3455.543930 +3455.568606 +3455.587753 +3455.618689 +3455.644097 +3455.688452 +3455.702671 +3455.729545 +3455.747893 +3455.822984 +3455.857350 +3455.894013 +3455.928978 +3455.952821 +3455.983057 +3456.044196 +3456.073933 +3456.093447 +3456.103437 +3456.178928 +3456.208365 +3456.225681 +3456.238335 +3456.261579 +3456.303936 +3456.332907 +3456.344263 +3456.416157 +3456.459214 +3456.477696 +3456.504769 +3456.517123 +3456.529211 +3456.581725 +3456.610196 +3456.640200 +3456.670736 +3456.685354 +3456.745761 +3456.775731 +3456.793779 +3456.810096 +3456.825747 +3456.916556 +3456.953253 +3456.974865 +3456.985421 +3457.003003 +3457.042797 +3457.066839 +3457.087818 +3457.103769 +3457.112194 +3457.132307 +3457.143829 +3457.185987 +3457.209030 +3457.233772 +3457.272533 +3457.288384 +3457.306166 +3457.314292 +3457.330609 +3457.360878 +3457.393812 +3457.440931 +3457.485487 +3457.504201 +3457.540931 +3457.563309 +3457.598141 +3457.629243 +3457.654917 +3457.694444 +3457.715557 +3457.763409 +3457.803335 +3457.840165 +3457.874098 +3457.904234 +3457.924381 +3457.947025 +3457.973265 +3457.996209 +3458.022583 +3458.051653 +3458.088949 +3458.144361 +3458.165206 +3458.183355 +3458.224813 +3458.256448 +3458.372865 +3458.408430 +3458.445426 +3458.478326 +3458.516255 +3458.548256 +3458.588782 +3458.622582 +3458.666638 +3458.742928 +3458.766105 +3458.795309 +3458.830674 +3458.861276 +3458.897207 +3458.926777 +3458.952352 +3458.996608 +3459.059678 +3459.109195 +3459.135735 +3459.157580 +3459.202302 +3459.230973 +3459.267070 +3459.302202 +3459.324546 +3459.359911 +3459.399238 +3459.689014 +3459.757080 +3459.788415 +3459.853683 +3459.894875 +3459.935867 +3459.973896 +3460.012291 +3460.047256 +3460.069733 +3460.176360 +3460.237166 +3460.294608 +3460.346023 +3460.457712 +3460.590612 +3460.921248 +3460.998570 +3461.432269 +3461.541160 +3461.590811 +3461.621047 +3461.674560 +3461.720048 +3461.789112 +3461.840661 +3461.908926 +3461.955479 +3462.021080 +3462.083218 +; +2.556574 +7.746046 +9.380077 +15.090528 +39.442818 +41.893897 +41.973851 +49.539344 +53.860552 +62.419285 +68.262303 +70.536892 +80.439014 +97.880755 +116.925258 +128.283621 +136.625171 +138.733228 +145.791562 +146.820100 +150.130786 +157.365743 +168.516082 +170.458671 +171.526369 +172.187840 +182.746304 +193.369803 +212.281406 +212.605115 +212.609711 +217.538044 +221.879865 +226.318621 +227.452353 +231.082353 +231.459043 +250.127023 +252.352095 +268.000897 +272.785275 +273.698860 +277.984670 +288.879132 +291.152389 +294.538000 +296.991078 +299.807259 +312.847373 +314.026925 +314.029323 +314.099120 +315.621263 +326.490916 +335.146351 +336.632797 +336.634628 +336.636460 +336.638758 +336.974388 +336.976486 +336.978617 +337.208687 +337.593768 +337.596599 +339.488005 +340.258867 +342.679711 +342.681575 +342.683440 +342.685938 +343.158365 +343.160429 +343.162594 +343.645510 +343.647542 +343.649540 +343.652337 +344.382306 +344.384171 +344.386003 +344.388234 +344.643578 +344.645543 +344.648640 +345.576045 +345.577710 +346.862690 +347.155630 +347.157761 +347.159926 +349.842441 +349.844206 +349.845871 +349.847802 +349.850466 +350.278804 +350.280502 +350.282533 +350.285231 +353.243669 +353.245567 +353.247399 +353.249597 +353.252461 +353.779699 +354.824653 +355.768076 +355.769841 +355.771472 +355.773404 +356.418958 +356.421055 +356.423053 +356.868508 +356.870339 +356.872204 +356.874135 +356.877232 +357.566376 +357.568240 +357.572936 +359.183024 +359.184822 +359.186521 +359.188519 +359.191149 +363.811857 +380.046706 +380.582603 +412.889697 +414.662223 +421.857587 +423.068208 +454.998146 +456.527615 +458.773900 +462.856647 +467.253079 +469.715248 +470.240389 +474.413911 +483.575041 +492.922417 +497.201534 +504.571157 +504.921906 +513.537582 +524.228513 +546.039947 +546.537116 +547.227591 +547.229722 +556.985057 +572.092202 +573.022038 +573.022670 +580.018368 +585.443903 +588.338606 +593.238767 +613.553932 +617.498117 +621.465945 +623.634608 +625.874832 +627.830141 +628.505499 +630.431770 +630.433036 +632.931335 +632.932867 +635.225072 +639.577849 +642.479078 +643.496559 +644.782738 +645.815505 +646.931055 +652.088992 +654.950627 +658.619887 +659.242131 +659.359813 +661.399672 +664.112123 +666.082617 +666.559440 +667.879885 +668.322375 +669.663766 +673.692933 +676.120336 +676.760162 +690.916225 +691.932508 +692.778928 +696.840362 +697.981387 +698.820347 +701.050881 +702.027736 +702.862367 +703.690339 +703.691704 +706.967924 +711.865688 +713.495757 +715.153031 +715.674676 +723.539003 +724.863111 +724.864876 +724.866541 +724.871470 +725.117956 +725.120121 +725.122385 +725.313028 +726.274066 +726.275864 +726.277562 +726.279493 +726.282557 +726.685420 +726.687252 +726.689050 +726.691414 +727.557148 +729.924944 +729.926876 +729.928741 +730.123579 +730.126543 +730.999535 +731.001367 +731.003132 +731.006395 +734.083681 +734.085446 +734.087711 +734.090874 +734.981583 +734.983481 +735.387709 +735.389541 +735.392471 +735.675521 +735.677752 +735.680050 +736.222507 +736.224405 +736.400929 +736.402960 +736.978084 +736.981581 +736.984245 +737.217345 +737.221441 +737.222406 +737.371291 +737.373688 +737.376452 +740.398693 +740.906585 +744.142979 +744.694860 +744.696758 +745.336884 +746.323363 +746.325194 +746.327659 +746.813406 +749.782367 +753.030715 +753.032514 +753.034212 +753.036443 +754.015197 +754.016995 +754.018726 +754.020824 +754.025287 +754.861350 +754.863148 +754.864946 +754.867177 +756.058518 +756.060649 +758.479261 +759.599540 +759.601338 +759.603037 +759.605134 +760.088184 +760.089982 +760.091714 +760.093845 +760.298407 +760.300172 +760.303502 +760.303835 +760.306732 +760.540731 +760.542796 +760.544827 +760.893911 +760.895942 +760.898240 +761.054284 +761.057148 +761.310194 +761.312259 +761.315755 +761.611593 +761.615156 +761.617287 +761.824879 +762.536300 +762.537999 +762.539630 +762.541562 +762.858844 +762.860542 +762.862141 +762.864072 +762.866603 +763.301801 +763.303532 +763.305231 +763.307162 +763.309793 +763.712490 +763.714321 +763.716153 +763.718184 +764.231004 +764.712355 +765.008459 +765.010424 +765.012289 +765.015718 +765.307660 +765.669064 +765.670963 +767.728170 +768.732931 +768.734829 +768.736694 +768.738758 +768.741522 +769.437759 +769.439557 +769.441255 +769.711018 +769.713016 +769.715014 +769.717712 +772.754439 +773.565127 +774.442849 +775.282009 +777.515673 +777.517005 +781.734516 +782.582701 +782.587596 +782.802481 +782.811305 +784.473641 +784.812069 +784.815732 +786.607139 +786.615097 +790.644531 +790.820987 +793.948457 +798.838928 +798.841126 +799.098169 +799.102031 +805.512015 +815.122095 +815.694023 +816.406276 +818.505175 +818.507107 +819.010237 +819.591555 +819.728284 +820.385194 +823.213562 +826.744495 +826.746226 +830.661474 +831.754180 +835.159604 +836.503426 +836.505724 +838.357503 +838.358869 +838.950443 +841.379245 +843.470119 +852.277369 +853.253359 +859.131575 +862.180490 +863.654548 +863.655846 +863.868933 +869.095601 +871.858835 +871.860167 +872.692267 +876.605683 +876.607249 +880.009743 +883.144338 +883.146703 +885.934612 +885.936410 +891.074900 +892.356850 +892.491282 +893.345460 +893.365740 +894.030808 +895.944026 +897.667933 +898.579887 +898.581319 +900.749349 +901.951912 +902.777585 +903.399430 +903.403059 +908.610580 +909.481841 +909.485704 +909.805051 +911.086635 +911.577477 +912.077609 +912.082238 +912.234053 +915.881069 +915.893023 +915.981768 +920.753491 +920.755057 +921.654423 +922.462481 +922.464013 +923.290186 +923.386955 +924.076831 +930.896172 +931.519948 +933.435463 +933.976255 +933.979885 +936.439024 +941.584406 +941.798992 +941.801955 +942.111945 +944.035786 +945.434286 +945.436084 +946.294991 +946.298088 +948.234283 +950.735246 +950.737045 +951.259222 +951.657523 +953.781930 +960.162443 +966.856942 +968.670360 +968.672724 +971.323038 +973.307818 +973.309882 +977.541646 +979.143143 +984.994586 +984.997050 +985.633313 +986.981131 +986.982463 +994.418786 +996.495207 +996.497372 +998.510357 +1006.042450 +1007.375316 +1010.020435 +1011.979174 +1012.162491 +1012.164722 +1012.970049 +1016.133250 +1016.135547 +1016.158391 +1017.013002 +1017.014867 +1017.363019 +1017.570244 +1017.573375 +1023.489553 +1027.030774 +1027.832971 +1027.834903 +1027.916887 +1030.518117 +1030.519815 +1031.183950 +1032.072494 +1032.074259 +1032.614985 +1032.618181 +1035.659803 +1037.922705 +1038.997929 +1039.000459 +1039.059467 +1039.596962 +1041.284740 +1041.818672 +1042.603519 +1042.605984 +1044.722698 +1044.871316 +1044.981606 +1046.216736 +1051.102445 +1051.103744 +1052.953592 +1052.956423 +1053.400678 +1055.032611 +1055.034409 +1055.397912 +1055.401708 +1057.162712 +1058.754952 +1058.756717 +1059.550123 +1060.296842 +1060.298240 +1062.237133 +1062.239231 +1063.980921 +1063.982719 +1065.126474 +1067.577054 +1068.335828 +1070.954806 +1073.516176 +1076.136520 +1077.931756 +1078.165955 +1079.221099 +1080.354497 +1080.357228 +1080.804946 +1080.807877 +1080.960424 +1081.109775 +1082.056827 +1084.340441 +1084.345336 +1084.818429 +1088.723487 +1091.004070 +1092.851721 +1093.522716 +1096.240396 +1098.814885 +1098.820013 +1099.110156 +1099.113686 +1102.242487 +1103.101161 +1105.397329 +1105.401292 +1105.499827 +1107.303388 +1107.639518 +1107.642482 +1109.500689 +1109.504185 +1110.779342 +1110.780807 +1113.442776 +1113.447538 +1117.013302 +1117.016798 +1125.848891 +1126.454185 +1128.332038 +1129.450719 +1129.461674 +1131.178789 +1131.180354 +1133.369929 +1134.414050 +1134.416981 +1137.714913 +1139.898927 +1141.213644 +1141.218073 +1142.785371 +1142.786636 +1143.955100 +1144.697057 +1145.431089 +1146.559060 +1151.439175 +1152.536210 +1152.699147 +1156.250026 +1157.258616 +1157.509399 +1160.743694 +1160.745060 +1162.483153 +1162.484652 +1163.107462 +1163.356379 +1163.357944 +1163.365703 +1171.163997 +1171.165262 +1171.699861 +1171.702691 +1172.235691 +1172.628131 +1175.419870 +1175.421435 +1175.804319 +1177.297690 +1177.303451 +1177.806248 +1178.809111 +1180.200218 +1183.630285 +1183.633249 +1184.301580 +1185.068612 +1185.592288 +1191.296844 +1196.014055 +1196.457511 +1198.132202 +1198.813720 +1198.909823 +1200.463168 +1201.404160 +1202.003327 +1203.041088 +1205.235625 +1205.237822 +1207.504354 +1207.589801 +1209.359663 +1218.368379 +1219.140306 +1219.670642 +1220.406439 +1223.222320 +1227.896641 +1228.286018 +1228.287716 +1228.418951 +1230.286615 +1230.310391 +1232.161905 +1232.164069 +1232.895470 +1232.899433 +1232.902097 +1233.169962 +1233.171927 +1233.173992 +1234.354510 +1234.356308 +1234.358106 +1234.360271 +1235.779184 +1235.781182 +1235.783080 +1235.785344 +1236.414215 +1236.416080 +1236.417778 +1236.419842 +1237.098463 +1237.100261 +1237.101960 +1237.104091 +1238.051043 +1238.610849 +1238.703257 +1240.011181 +1240.012946 +1240.015044 +1240.020738 +1240.419306 +1240.421270 +1240.423768 +1240.663761 +1240.665925 +1240.940551 +1240.942382 +1240.944214 +1240.946378 +1240.950441 +1241.052772 +1241.861629 +1241.863393 +1241.864992 +1241.867123 +1241.870453 +1242.147176 +1242.149074 +1242.150839 +1242.153004 +1242.443746 +1242.445677 +1242.447542 +1242.449840 +1242.749307 +1242.751138 +1242.752803 +1242.754868 +1243.477012 +1243.478810 +1243.480541 +1243.482673 +1247.456495 +1247.458426 +1247.460224 +1247.462722 +1248.018699 +1248.020497 +1248.022295 +1248.025359 +1248.220530 +1248.222928 +1248.301948 +1249.113336 +1249.381135 +1250.245503 +1250.666581 +1250.668713 +1250.670744 +1251.800746 +1251.803277 +1251.806074 +1251.975571 +1252.249131 +1252.339440 +1253.291121 +1253.292853 +1253.294484 +1253.296582 +1253.484228 +1253.485926 +1253.487591 +1253.489589 +1253.492253 +1253.675303 +1253.677234 +1253.681364 +1253.990121 +1253.992885 +1254.139871 +1254.142635 +1254.348895 +1254.350694 +1254.352359 +1254.354723 +1254.485559 +1254.735475 +1254.737240 +1254.738972 +1254.741169 +1255.333909 +1255.335741 +1255.337473 +1255.339570 +1255.342434 +1256.060915 +1256.062780 +1256.067076 +1256.070172 +1256.321055 +1258.048426 +1259.717455 +1260.097841 +1261.816321 +1261.818085 +1261.819784 +1261.821882 +1261.825744 +1262.126110 +1262.128075 +1262.131938 +1262.583486 +1262.585284 +1262.587648 +1263.294807 +1263.296506 +1263.298670 +1263.558177 +1263.560075 +1263.562772 +1263.990178 +1265.742724 +1268.901795 +1269.210619 +1270.121607 +1270.365496 +1272.471222 +1272.473186 +1272.475051 +1272.477615 +1272.480412 +1273.048744 +1273.050642 +1273.052473 +1273.390535 +1273.392366 +1273.394198 +1273.396729 +1273.899425 +1273.901390 +1273.903355 +1273.906019 +1274.362961 +1274.365093 +1274.367257 +1274.638186 +1274.640683 +1278.690196 +1280.787164 +1282.240776 +1282.242141 +1282.850698 +1285.548498 +1287.749362 +1287.907969 +1289.257186 +1289.258917 +1289.621754 +1289.625017 +1290.478363 +1292.469337 +1292.471934 +1293.664008 +1293.666705 +1294.151253 +1294.156515 +1296.444158 +1296.778024 +1296.932336 +1296.934667 +1297.374826 +1298.516717 +1299.772060 +1300.787044 +1301.690440 +1301.691139 +1303.310185 +1303.313016 +1303.755806 +1304.055373 +1304.107987 +1304.110850 +1304.697996 +1307.426798 +1307.430028 +1308.451572 +1308.454935 +1308.609947 +1310.675379 +1310.679275 +1312.781704 +1312.785301 +1313.176675 +1313.179439 +1313.580704 +1315.591725 +1315.663020 +1315.777705 +1315.780502 +1316.244505 +1316.931417 +1318.605075 +1318.608438 +1319.416063 +1319.928550 +1320.607004 +1321.540636 +1324.374866 +1326.726046 +1326.727411 +1326.875663 +1326.883755 +1327.359678 +1327.365106 +1329.013756 +1329.019217 +1330.452682 +1332.584015 +1332.742124 +1339.208118 +1339.210815 +1343.327961 +1345.388631 +1345.389830 +1345.403483 +1349.692823 +1349.744971 +1351.107207 +1351.111036 +1353.635376 +1353.638473 +1354.601709 +1354.605838 +1354.670740 +1355.123420 +1355.612497 +1357.505469 +1359.548824 +1359.550189 +1361.713823 +1363.547221 +1363.549419 +1363.918216 +1363.922379 +1364.099202 +1365.411388 +1366.435530 +1366.436895 +1367.050448 +1367.053245 +1367.203461 +1367.215216 +1367.378586 +1367.383548 +1369.264698 +1369.266030 +1371.450477 +1371.452708 +1373.460331 +1374.806850 +1374.809481 +1375.400722 +1376.580475 +1378.024163 +1378.025595 +1378.707679 +1378.709410 +1378.856763 +1378.860426 +1379.216603 +1381.791425 +1381.794389 +1382.755394 +1382.756792 +1385.904042 +1385.906173 +1386.803009 +1388.202774 +1388.452824 +1388.461748 +1389.993049 +1389.994880 +1390.338137 +1390.339635 +1391.224816 +1392.324415 +1392.327112 +1392.503070 +1392.507399 +1393.685752 +1393.688383 +1397.442292 +1398.153880 +1398.589577 +1398.593040 +1399.194272 +1401.553410 +1401.555874 +1402.164132 +1402.168428 +1404.175286 +1404.177550 +1404.315412 +1404.317910 +1407.771286 +1408.645678 +1408.647076 +1408.957232 +1408.962827 +1409.783172 +1409.787401 +1410.376945 +1410.384404 +1413.008144 +1413.011308 +1413.867018 +1413.869049 +1413.884067 +1414.507477 +1414.512039 +1415.539377 +1415.544106 +1415.700682 +1415.753296 +1415.754562 +1416.030885 +1416.993255 +1417.319828 +1417.861786 +1418.186261 +1419.583262 +1419.587125 +1421.258585 +1421.801109 +1421.805971 +1422.123653 +1424.641499 +1425.794645 +1425.796043 +1427.318153 +1427.322815 +1428.871165 +1428.873996 +1431.797636 +1433.112986 +1433.114384 +1434.819777 +1434.822441 +1437.338389 +1437.340154 +1439.095064 +1439.097329 +1439.545180 +1439.546546 +1443.023932 +1443.025530 +1443.059629 +1445.120400 +1445.503483 +1447.262755 +1447.265686 +1447.915935 +1447.918599 +1448.384566 +1449.140742 +1449.143273 +1449.380036 +1449.383099 +1451.351496 +1451.357057 +1454.201676 +1454.203807 +1454.510067 +1458.492314 +1458.494745 +1460.841030 +1461.058912 +1461.062042 +1464.039562 +1464.041293 +1464.965501 +1465.198801 +1465.205295 +1466.359939 +1466.364701 +1466.751280 +1466.754610 +1468.478751 +1468.480250 +1470.193435 +1471.873720 +1471.876650 +1473.662862 +1473.665160 +1475.102787 +1475.104153 +1478.187633 +1478.189398 +1478.371815 +1478.373313 +1480.294757 +1480.296422 +1480.576275 +1480.579871 +1480.882668 +1480.886598 +1483.350098 +1484.717296 +1484.719894 +1485.252328 +1485.254992 +1485.572607 +1485.573839 +1485.578701 +1486.354657 +1486.356922 +1488.479697 +1489.355920 +1489.357984 +1491.708998 +1491.710763 +1492.237069 +1492.313359 +1492.319087 +1494.127810 +1494.129142 +1494.144027 +1494.385718 +1494.402035 +1495.105997 +1495.110826 +1497.575226 +1497.577257 +1500.114917 +1500.117314 +1500.466598 +1500.469329 +1501.858738 +1501.860469 +1501.900629 +1501.906390 +1502.699929 +1502.703359 +1502.792803 +1502.801794 +1504.266494 +1504.268293 +1510.257198 +1510.395326 +1511.381472 +1511.383470 +1513.904647 +1513.913571 +1514.205812 +1514.209142 +1514.319132 +1515.172178 +1515.175708 +1515.359823 +1515.362454 +1516.021528 +1520.431646 +1520.432912 +1520.712299 +1520.714430 +1521.857752 +1521.859084 +1525.804701 +1526.963541 +1526.965473 +1527.170967 +1527.173831 +1527.671266 +1527.674463 +1530.185549 +1530.504164 +1532.346386 +1532.676955 +1532.789509 +1534.307024 +1534.308289 +1534.798498 +1534.800064 +1535.084679 +1535.148248 +1535.150146 +1535.468028 +1535.470426 +1535.474955 +1535.739390 +1535.744785 +1536.053209 +1536.561167 +1536.563299 +1539.162397 +1540.328230 +1543.816705 +1545.548005 +1546.055164 +1547.718699 +1550.263351 +1550.267314 +1550.510171 +1550.511969 +1551.054693 +1551.058622 +1554.752758 +1555.138538 +1555.380396 +1556.250691 +1556.732576 +1557.190251 +1558.181958 +1558.285388 +1558.287086 +1561.211892 +1561.606863 +1562.785483 +1562.959876 +1562.962373 +1563.359109 +1563.361906 +1563.403565 +1563.804996 +1563.808060 +1564.072096 +1564.214653 +1564.217217 +1564.464003 +1565.434831 +1565.764302 +1566.305094 +1566.306958 +1566.309622 +1567.316814 +1567.318646 +1567.321243 +1567.647750 +1568.205092 +1568.206857 +1568.209121 +1568.487676 +1568.489740 +1568.492371 +1568.653043 +1568.655841 +1571.319041 +1571.320906 +1571.322671 +1571.325035 +1571.523004 +1571.525435 +1572.169490 +1572.171255 +1572.172853 +1572.174851 +1572.177948 +1572.496696 +1572.498627 +1572.500459 +1572.503089 +1573.385906 +1573.387804 +1573.389569 +1573.391667 +1573.394630 +1573.936821 +1574.295462 +1575.169887 +1575.173550 +1575.847275 +1575.849273 +1577.598156 +1577.608812 +1579.046506 +1580.619865 +1580.621962 +1580.624094 +1580.989961 +1580.991959 +1580.993923 +1581.322228 +1581.324259 +1581.326424 +1581.678472 +1581.680370 +1581.682268 +1581.684998 +1582.063653 +1582.065517 +1582.067316 +1582.069480 +1582.593889 +1582.595653 +1582.597951 +1582.601215 +1582.938810 +1582.940442 +1582.942506 +1583.399815 +1583.402146 +1583.466815 +1583.496985 +1583.710604 +1583.713534 +1583.861853 +1583.863618 +1583.867247 +1584.013900 +1584.786427 +1584.788558 +1584.982631 +1586.752293 +1586.754257 +1586.756255 +1587.449595 +1587.451326 +1587.452958 +1587.454956 +1590.332809 +1591.106834 +1591.108166 +1591.408232 +1593.119253 +1593.268337 +1593.524347 +1594.465205 +1595.070200 +1595.698138 +1596.145856 +1597.028440 +1598.240027 +1598.978920 +1598.980852 +1599.055211 +1599.249183 +1599.324042 +1599.412253 +1599.414817 +1600.032599 +1600.034564 +1600.036562 +1600.039359 +1600.230801 +1601.602128 +1601.603860 +1601.605525 +1601.607489 +1601.610187 +1602.129200 +1603.399529 +1603.640954 +1604.570856 +1604.572654 +1604.574319 +1604.576118 +1604.578882 +1605.140653 +1605.142484 +1605.144182 +1605.146247 +1607.009881 +1607.011879 +1607.013844 +1607.544047 +1607.546378 +1607.945845 +1607.947609 +1607.949274 +1607.951173 +1607.953770 +1608.140583 +1608.142981 +1609.611078 +1609.757931 +1610.073148 +1611.848205 +1612.977375 +1612.979406 +1612.981471 +1614.318832 +1614.320797 +1614.322894 +1615.692623 +1615.697518 +1616.680401 +1616.682499 +1618.423257 +1618.425854 +1618.435911 +1621.807835 +1621.809367 +1622.759350 +1625.938068 +1625.940865 +1627.473930 +1627.477294 +1628.080823 +1628.083187 +1628.253616 +1628.255848 +1628.271099 +1628.823579 +1632.022177 +1632.026240 +1632.406093 +1632.656209 +1632.658940 +1634.171226 +1634.174856 +1634.293637 +1634.295901 +1636.248214 +1636.250478 +1636.570924 +1636.575420 +1642.153270 +1642.156233 +1643.288167 +1645.534918 +1645.586466 +1645.589563 +1645.677675 +1645.940678 +1645.946572 +1646.465520 +1646.470182 +1649.060356 +1649.595087 +1649.596719 +1652.124089 +1652.718494 +1652.720758 +1654.614895 +1654.616227 +1655.115261 +1655.118192 +1657.057617 +1657.058949 +1659.066106 +1659.068238 +1659.760811 +1659.766439 +1660.379825 +1661.632771 +1661.636167 +1661.914156 +1661.916553 +1663.076092 +1663.350218 +1665.088744 +1667.099299 +1667.104693 +1667.601895 +1667.607024 +1672.411648 +1672.413412 +1672.632160 +1672.803322 +1673.315443 +1674.044180 +1674.045878 +1678.218801 +1678.990362 +1680.352665 +1680.357227 +1682.902546 +1682.906143 +1685.164149 +1685.166047 +1685.424655 +1685.428251 +1685.848131 +1685.851328 +1687.456055 +1687.460051 +1689.190618 +1689.193149 +1689.954520 +1690.684323 +1690.685788 +1691.479960 +1691.486454 +1694.502768 +1694.504366 +1696.048054 +1696.050319 +1700.684147 +1700.736261 +1700.739724 +1701.505125 +1701.507955 +1701.778718 +1701.782148 +1702.049380 +1702.050979 +1704.462365 +1704.464163 +1704.678948 +1704.681612 +1705.413479 +1705.418008 +1708.515641 +1708.516973 +1709.280941 +1709.282673 +1709.924764 +1709.926195 +1712.647471 +1712.649936 +1713.137980 +1713.140411 +1713.991160 +1713.993824 +1714.373444 +1714.581968 +1714.584466 +1714.980037 +1714.982601 +1715.831218 +1715.836180 +1718.157423 +1718.158788 +1718.924721 +1718.927252 +1721.389954 +1721.391219 +1723.913561 +1723.915093 +1724.154786 +1724.158183 +1724.476264 +1725.136903 +1725.140466 +1727.483521 +1727.486185 +1727.593211 +1727.594776 +1727.722615 +1727.727610 +1729.793608 +1729.795939 +1730.119782 +1730.123278 +1731.365535 +1731.366933 +1731.455944 +1731.458242 +1735.280349 +1735.282247 +1737.789771 +1737.791302 +1739.098094 +1739.100026 +1740.985405 +1740.987470 +1743.489332 +1743.942978 +1743.944443 +1743.951636 +1745.612240 +1745.614804 +1746.185866 +1746.188364 +1746.306612 +1746.315436 +1746.423661 +1747.604313 +1747.605978 +1748.942007 +1748.943406 +1749.037545 +1749.052430 +1752.671308 +1752.672606 +1752.870475 +1752.873072 +1754.076701 +1754.079331 +1755.374602 +1755.377066 +1757.264044 +1757.265775 +1757.410264 +1757.413194 +1757.739667 +1757.755085 +1760.280957 +1760.282256 +1761.305898 +1761.309094 +1762.165271 +1762.167901 +1763.730670 +1763.733667 +1765.369264 +1765.370596 +1766.145420 +1766.147951 +1768.241155 +1768.242554 +1769.083079 +1769.085643 +1769.649246 +1769.652176 +1773.681143 +1777.188233 +1777.189665 +1777.441046 +1777.443477 +1777.682138 +1777.685801 +1777.987366 +1777.991562 +1781.322794 +1781.324059 +1782.249866 +1782.251165 +1784.144037 +1784.147000 +1785.111268 +1785.112534 +1786.928416 +1786.929781 +1790.783857 +1790.785855 +1793.016855 +1793.018120 +1793.856947 +1795.764338 +1795.765770 +1797.308326 +1797.588978 +1797.590344 +1798.728071 +1798.729370 +1799.402729 +1799.404261 +1801.422008 +1801.423440 +1802.126803 +1802.129633 +1805.044882 +1805.046680 +1807.866990 +1807.869421 +1808.396493 +1808.397825 +1808.712877 +1808.714941 +1809.132157 +1809.135220 +1811.236783 +1811.238115 +1813.068883 +1813.070681 +1818.122191 +1818.123357 +1818.124755 +1819.132014 +1826.278960 +1826.280591 +1826.940064 +1826.942329 +1830.665402 +1831.570330 +1831.572228 +1832.371294 +1832.372693 +1833.639025 +1833.640191 +1833.641923 +1833.769761 +1833.773791 +1841.333790 +1841.335455 +1846.123728 +1846.124994 +1846.136016 +1849.598084 +1849.599283 +1849.605443 +1851.507972 +1851.510136 +1851.511502 +1853.280165 +1853.281896 +1854.408136 +1854.410167 +1854.927349 +1859.822516 +1859.824048 +1859.944261 +1859.946325 +1860.148456 +1860.156848 +1861.066138 +1861.068901 +1862.486183 +1862.488414 +1863.359509 +1863.360841 +1863.679721 +1863.681286 +1864.018948 +1864.020181 +1864.030071 +1865.102231 +1865.105461 +1865.840592 +1865.844488 +1866.553245 +1866.554610 +1867.364533 +1867.365898 +1870.465729 +1870.467394 +1870.708486 +1870.711549 +1872.281245 +1872.282876 +1872.288504 +1872.462763 +1873.824200 +1873.830760 +1875.413809 +1875.415174 +1875.782906 +1875.787335 +1877.508079 +1877.509511 +1878.008711 +1878.010576 +1878.675577 +1878.679740 +1879.384268 +1879.387631 +1880.995455 +1880.997586 +1881.574942 +1883.528353 +1883.529785 +1884.204609 +1884.206308 +1886.970341 +1886.971773 +1887.337740 +1887.343101 +1889.362246 +1889.364211 +1891.562477 +1891.564908 +1891.673699 +1891.676696 +1893.860910 +1893.862475 +1895.321315 +1895.322680 +1899.422743 +1899.424474 +1899.745952 +1899.748483 +1899.802462 +1899.803728 +1900.032632 +1900.037594 +1900.605292 +1902.129233 +1902.132031 +1902.921773 +1902.925570 +1904.853606 +1904.858901 +1909.492962 +1909.494294 +1910.943677 +1910.945275 +1911.383270 +1911.386234 +1911.444142 +1912.576809 +1912.579706 +1912.779206 +1912.782203 +1914.740643 +1914.744306 +1916.718463 +1916.721360 +1918.688058 +1918.689257 +1918.693652 +1920.111866 +1920.113198 +1920.524220 +1920.536641 +1921.539004 +1921.892084 +1921.896147 +1922.691018 +1922.696612 +1923.282526 +1923.284191 +1923.761679 +1923.769305 +1925.945127 +1926.743428 +1926.744660 +1926.757780 +1928.108295 +1928.110459 +1928.219683 +1928.225178 +1928.620316 +1929.259942 +1929.262007 +1930.099302 +1930.103964 +1931.508325 +1931.509757 +1933.352579 +1933.487277 +1933.491640 +1934.113684 +1934.122108 +1934.299464 +1936.133395 +1936.137291 +1936.761200 +1936.766029 +1940.880676 +1940.889334 +1946.835283 +1946.837214 +1951.606074 +1951.607805 +1953.838339 +1953.839904 +1954.748828 +1954.750659 +1955.435807 +1955.438304 +1956.326215 +1956.327614 +1957.047926 +1957.182658 +1957.184456 +1957.356517 +1957.358482 +1957.659814 +1959.020419 +1959.022750 +1959.247758 +1959.252187 +1959.599605 +1959.610495 +1960.361276 +1960.364906 +1960.788982 +1960.797007 +1962.454914 +1962.457212 +1963.904629 +1963.907527 +1966.719845 +1966.721210 +1966.786711 +1966.790174 +1967.452411 +1967.454976 +1968.989273 +1968.990472 +1970.342518 +1970.343884 +1973.681043 +1973.683807 +1973.989102 +1973.992398 +1974.857732 +1975.184605 +1975.185804 +1975.572417 +1975.574148 +1975.974248 +1975.978310 +1977.742411 +1977.744109 +1978.122797 +1978.126693 +1978.785733 +1978.791561 +1982.943472 +1985.127852 +1985.129317 +1986.629016 +1986.713131 +1986.714930 +1990.006801 +1990.008733 +1991.467339 +1991.469637 +1995.283186 +1995.285018 +1995.377991 +1995.380222 +1996.109725 +1996.113355 +1996.508027 +1996.512622 +1998.152647 +1998.154512 +1998.358375 +1998.363070 +1999.593405 +1999.595270 +2000.725605 +2000.730567 +2001.605990 +2001.607522 +2002.527668 +2002.529299 +2002.691637 +2002.839223 +2002.916345 +2002.919442 +2003.226968 +2003.549079 +2005.000759 +2005.336090 +2005.337255 +2005.342384 +2005.868823 +2005.872420 +2010.023231 +2010.025929 +2010.774479 +2010.775811 +2010.869617 +2012.529955 +2012.533186 +2012.788130 +2012.790262 +2013.408576 +2013.411706 +2015.071145 +2015.412836 +2015.572976 +2015.577971 +2015.874607 +2015.876139 +2019.198214 +2019.199812 +2019.483495 +2019.484727 +2020.477766 +2020.479864 +2022.467408 +2022.866608 +2022.868040 +2023.650590 +2023.651922 +2024.391216 +2024.394046 +2026.129909 +2026.131840 +2026.184221 +2028.535001 +2028.536266 +2029.661440 +2029.663571 +2030.638729 +2030.641359 +2031.781351 +2031.784082 +2032.000099 +2032.001498 +2032.447984 +2032.451114 +2032.767265 +2032.771261 +2032.800864 +2036.429032 +2036.431430 +2036.919242 +2039.009516 +2039.011048 +2039.373751 +2039.379146 +2040.033591 +2040.489967 +2040.814409 +2042.123499 +2042.126896 +2043.622099 +2043.623797 +2043.781206 +2043.782572 +2045.076243 +2045.077642 +2046.746305 +2048.628887 +2048.630386 +2051.206107 +2051.208305 +2051.212601 +2053.545466 +2053.546731 +2053.572838 +2054.010600 +2054.012665 +2055.034808 +2055.037872 +2055.121288 +2055.123120 +2056.329545 +2056.331477 +2057.323351 +2057.325515 +2058.298208 +2059.028044 +2059.780891 +2059.782256 +2060.388815 +2060.391413 +2061.987016 +2061.989546 +2062.517085 +2062.518450 +2062.742992 +2062.746422 +2063.004031 +2063.006528 +2064.708158 +2064.710589 +2065.104761 +2065.108025 +2066.641823 +2066.644653 +2067.036095 +2067.037393 +2067.526138 +2067.530067 +2067.889940 +2067.891405 +2068.957338 +2069.392902 +2069.395200 +2069.708919 +2070.153008 +2070.154174 +2070.529631 +2070.533893 +2070.944782 +2070.945981 +2070.981479 +2071.093367 +2071.095898 +2073.714943 +2073.717174 +2078.787565 +2079.766785 +2079.768117 +2080.693723 +2080.695089 +2080.991092 +2081.008841 +2081.918697 +2081.919863 +2081.921228 +2082.127322 +2082.129286 +2082.422992 +2082.424324 +2083.365582 +2083.367747 +2083.696717 +2084.243703 +2085.996549 +2086.043868 +2086.045366 +2086.352859 +2089.468040 +2089.469938 +2090.517190 +2090.519388 +2090.522052 +2090.523650 +2090.950889 +2090.952621 +2091.470336 +2091.472201 +2091.787119 +2091.788651 +2091.790549 +2091.793180 +2092.301338 +2092.303269 +2092.537634 +2092.539466 +2092.938933 +2093.164174 +2093.165839 +2093.167804 +2093.170734 +2093.445193 +2094.162075 +2094.455448 +2094.837732 +2094.839830 +2095.305897 +2095.307229 +2095.621514 +2095.697938 +2095.699469 +2096.700867 +2097.047054 +2099.576289 +2099.579652 +2102.992869 +2102.994134 +2104.841918 +2104.843183 +2106.990034 +2106.991666 +2108.320236 +2108.321535 +2108.415407 +2108.419204 +2108.809380 +2108.813076 +2109.506848 +2109.508213 +2109.874214 +2109.875612 +2110.697123 +2110.699987 +2111.791461 +2111.794458 +2116.225789 +2116.227587 +2117.460187 +2117.461552 +2117.968478 +2119.538939 +2119.541470 +2120.246231 +2120.250094 +2122.248227 +2122.250492 +2122.740102 +2122.743998 +2124.143930 +2124.146161 +2126.354484 +2126.356615 +2132.178454 +2132.179719 +2133.479851 +2133.481216 +2134.686277 +2134.689407 +2136.479682 +2136.480980 +2139.848110 +2139.849808 +2141.291299 +2141.293330 +2142.860195 +2144.965687 +2144.966986 +2145.502516 +2145.504015 +2147.074177 +2147.076907 +2147.764885 +2147.766350 +2149.181767 +2149.183965 +2150.610004 +2150.612302 +2151.822190 +2151.824755 +2154.650892 +2154.652657 +2155.687888 +2155.689186 +2155.762979 +2155.764244 +2156.439602 +2156.442732 +2157.123184 +2157.124583 +2158.064375 +2158.066573 +2160.503068 +2160.504499 +2161.395441 +2161.397905 +2162.534268 +2162.535433 +2162.540128 +2168.048881 +2168.050080 +2171.835590 +2171.837322 +2172.074018 +2172.075950 +2172.781210 +2172.782642 +2173.586138 +2173.587670 +2175.724764 +2175.727028 +2176.737017 +2176.738316 +2179.777207 +2179.779339 +2181.600449 +2181.601781 +2182.936245 +2182.938743 +2184.629850 +2184.632347 +2187.993350 +2188.149593 +2188.153290 +2190.103038 +2190.106235 +2190.867906 +2190.870703 +2192.342296 +2192.346392 +2192.428377 +2192.429542 +2192.539599 +2193.302002 +2195.655846 +2195.657445 +2197.437829 +2197.439627 +2198.665001 +2198.667765 +2198.785480 +2198.795004 +2201.534895 +2201.536693 +2202.376952 +2202.378151 +2202.383978 +2202.695100 +2202.822006 +2202.831830 +2203.632395 +2203.636524 +2204.354772 +2204.357636 +2205.158035 +2205.160665 +2206.000025 +2206.410048 +2206.413345 +2207.118039 +2207.119471 +2208.228228 +2208.231092 +2209.137584 +2209.139782 +2209.399789 +2211.014905 +2211.017003 +2211.785800 +2211.787165 +2212.467385 +2212.468717 +2212.518933 +2214.966150 +2214.967315 +2214.968581 +2215.744471 +2216.351097 +2216.353195 +2217.099481 +2217.104976 +2217.137044 +2217.139042 +2217.560786 +2217.562984 +2218.325021 +2218.328118 +2220.319491 +2220.548129 +2220.551592 +2221.972803 +2221.975267 +2225.761744 +2225.763042 +2226.166538 +2228.072297 +2228.074528 +2229.123978 +2229.583918 +2229.586382 +2229.926142 +2229.927540 +2230.946420 +2230.948252 +2232.764001 +2232.765932 +2232.767897 +2233.308056 +2233.309821 +2233.311619 +2233.314350 +2233.657840 +2233.659971 +2233.662135 +2233.742188 +2233.778119 +2233.779618 +2235.563932 +2235.565830 +2235.719376 +2235.720908 +2236.492202 +2236.494667 +2237.035958 +2237.037956 +2237.905521 +2237.907286 +2237.909251 +2238.078281 +2238.095731 +2238.097262 +2238.959200 +2239.404987 +2239.406618 +2239.408183 +2239.410015 +2239.412546 +2240.744679 +2240.746444 +2240.748175 +2240.750407 +2242.574148 +2242.576012 +2242.578144 +2243.500520 +2243.502152 +2243.504083 +2243.506614 +2243.926228 +2243.927992 +2243.929624 +2243.931855 +2244.129691 +2244.301019 +2244.302884 +2244.304749 +2244.307046 +2244.617935 +2244.619966 +2244.661425 +2245.036616 +2245.038381 +2245.121897 +2245.123895 +2245.125860 +2245.444907 +2245.447338 +2245.506612 +2245.508910 +2245.515204 +2246.117800 +2246.119499 +2246.121463 +2246.347138 +2246.349069 +2246.729155 +2246.731087 +2246.733118 +2246.990627 +2246.993424 +2247.259058 +2247.473577 +2247.475108 +2247.533583 +2247.931318 +2247.933316 +2248.397319 +2248.399383 +2248.443606 +2248.444904 +2248.551664 +2248.555727 +2249.716565 +2249.979568 +2249.980867 +2250.246734 +2251.825054 +2251.827352 +2252.391754 +2252.396049 +2252.620724 +2252.622756 +2252.831813 +2252.834710 +2253.418992 +2253.421023 +2253.423154 +2253.584060 +2253.686125 +2253.825751 +2254.062981 +2254.924152 +2255.003905 +2255.005737 +2255.602273 +2255.604105 +2255.605803 +2255.607934 +2257.110330 +2257.112162 +2257.113361 +2257.114726 +2258.068105 +2262.154814 +2262.156179 +2262.985582 +2262.986948 +2265.481151 +2265.482583 +2268.418344 +2268.419743 +2268.621974 +2268.624804 +2270.207953 +2270.209318 +2270.697097 +2270.702991 +2270.925168 +2271.235558 +2271.237722 +2272.496129 +2272.500025 +2274.831791 +2274.834588 +2276.067288 +2276.069818 +2276.175846 +2276.766554 +2276.768119 +2276.954866 +2276.957763 +2279.057661 +2279.060392 +2280.610939 +2280.612871 +2280.849967 +2280.851332 +2282.545903 +2282.547401 +2283.104410 +2283.108473 +2283.420127 +2283.423191 +2283.980167 +2283.985495 +2285.244035 +2285.245467 +2285.870341 +2287.023321 +2287.026118 +2288.005504 +2288.006936 +2288.077299 +2288.081228 +2288.941168 +2288.945263 +2293.189582 +2293.191180 +2293.816221 +2293.817653 +2295.338031 +2295.341095 +2296.637464 +2296.638762 +2296.935399 +2296.937963 +2297.203330 +2297.935031 +2297.942158 +2300.238659 +2300.239957 +2301.727801 +2301.730632 +2302.037791 +2302.082913 +2302.086975 +2303.203125 +2303.206721 +2303.696497 +2303.702958 +2309.193828 +2309.195493 +2310.124163 +2310.934486 +2310.936484 +2313.143175 +2313.145539 +2314.898551 +2314.900083 +2315.035447 +2315.038011 +2317.110037 +2317.112734 +2317.631116 +2317.632547 +2318.222257 +2318.224655 +2319.250295 +2319.251527 +2319.257055 +2324.839700 +2324.842231 +2325.135770 +2325.846159 +2325.849223 +2326.609262 +2326.613091 +2326.724846 +2328.291311 +2328.459210 +2328.460375 +2328.831537 +2331.209191 +2331.218481 +2333.549048 +2333.550247 +2336.139555 +2336.141853 +2337.105122 +2337.107620 +2338.858700 +2338.860032 +2339.863394 +2339.865492 +2339.995995 +2340.000324 +2344.114872 +2344.116837 +2345.075843 +2345.077009 +2345.078574 +2345.598553 +2345.602150 +2346.285299 +2346.287897 +2346.853131 +2346.857893 +2346.997054 +2347.001915 +2348.573176 +2348.577838 +2350.140241 +2350.142771 +2351.768144 +2351.769610 +2353.310234 +2353.312032 +2354.140203 +2354.142734 +2355.229879 +2355.232843 +2356.257317 +2356.260015 +2360.831805 +2360.833870 +2361.285484 +2361.286849 +2362.246955 +2362.249386 +2364.483017 +2364.484182 +2364.485514 +2364.836163 +2364.837562 +2367.168295 +2367.170127 +2368.339723 +2368.341488 +2369.833727 +2369.837790 +2370.658735 +2370.662065 +2370.965428 +2370.968292 +2371.141885 +2372.191367 +2372.194764 +2373.006884 +2373.011879 +2373.818206 +2373.944213 +2373.946477 +2373.997626 +2374.005185 +2374.879743 +2374.885604 +2376.906614 +2376.909245 +2377.967119 +2377.969850 +2377.972614 +2380.827889 +2380.829054 +2380.833417 +2382.510471 +2382.511837 +2382.887527 +2382.890757 +2385.131281 +2385.133679 +2385.301977 +2385.304708 +2385.898713 +2385.900178 +2386.703974 +2386.706804 +2386.845432 +2386.847863 +2388.063812 +2388.066510 +2388.311564 +2388.316559 +2389.377764 +2389.380661 +2389.814560 +2389.818856 +2391.113160 +2391.116190 +2391.995643 +2391.998141 +2392.150455 +2392.154950 +2395.064971 +2395.066636 +2395.238764 +2395.240029 +2395.674960 +2397.656011 +2397.657209 +2397.662038 +2397.721711 +2400.070860 +2400.072425 +2401.491172 +2401.493136 +2404.021639 +2404.023370 +2404.454872 +2404.457802 +2404.671988 +2404.675717 +2405.068924 +2405.070322 +2406.646877 +2406.649042 +2409.235586 +2409.238017 +2409.434620 +2409.437251 +2409.815006 +2409.817537 +2411.754298 +2411.756696 +2412.008877 +2412.010408 +2412.062257 +2412.066419 +2413.568848 +2413.570946 +2415.392490 +2415.393822 +2420.268709 +2420.269941 +2422.908233 +2424.157716 +2424.159281 +2424.846626 +2424.849157 +2425.665207 +2425.667338 +2426.168936 +2426.171500 +2426.736135 +2426.738932 +2431.392940 +2431.965700 +2431.967831 +2436.703624 +2436.705355 +2437.238788 +2437.240786 +2438.405520 +2438.406819 +2442.143012 +2442.144378 +2442.217271 +2442.768886 +2442.770051 +2442.772416 +2444.000653 +2444.004549 +2444.932087 +2444.934685 +2445.383202 +2445.385933 +2447.749167 +2447.750632 +2450.896550 +2450.898348 +2451.168544 +2451.169677 +2451.173639 +2455.767374 +2455.768939 +2456.087221 +2456.088553 +2456.384723 +2456.389085 +2457.723183 +2457.725181 +2458.927711 +2458.930342 +2461.643659 +2461.645324 +2462.146655 +2463.893374 +2463.894672 +2464.008758 +2464.015451 +2465.149716 +2465.152513 +2465.396869 +2465.401231 +2467.037293 +2467.038858 +2470.566327 +2470.568392 +2472.610115 +2472.611547 +2472.796795 +2472.802689 +2474.671918 +2474.673916 +2476.069519 +2476.071350 +2476.091896 +2476.831722 +2476.834353 +2477.151868 +2477.153300 +2478.404448 +2478.406080 +2479.406212 +2479.407710 +2480.708142 +2480.710473 +2484.108105 +2484.109704 +2485.967477 +2485.969009 +2487.256920 +2487.258618 +2492.050288 +2492.051887 +2493.056648 +2493.058246 +2495.205130 +2495.206529 +2498.860638 +2498.862403 +2499.285346 +2499.288610 +2499.527504 +2499.532366 +2500.710120 +2500.712051 +2504.315811 +2504.317043 +2505.564627 +2505.566659 +2507.206750 +2507.208282 +2507.528295 +2507.534555 +2507.739983 +2510.385568 +2510.388998 +2510.986966 +2510.988132 +2510.992993 +2512.052067 +2512.053698 +2513.796687 +2513.799085 +2514.062587 +2514.111505 +2514.117066 +2516.260454 +2516.263917 +2516.396518 +2516.398882 +2517.159188 +2517.163583 +2519.060185 +2519.063715 +2520.020357 +2520.022621 +2520.494549 +2520.501076 +2520.878964 +2520.883060 +2523.866141 +2523.867473 +2525.546392 +2525.547924 +2525.550888 +2529.540994 +2529.542758 +2531.320745 +2531.322444 +2531.669530 +2531.672959 +2531.734931 +2531.736962 +2532.944587 +2532.949115 +2533.128602 +2533.131300 +2533.637360 +2536.200461 +2536.201826 +2540.604952 +2540.606750 +2541.602154 +2541.606250 +2541.620102 +2541.621901 +2541.779176 +2544.377609 +2544.640179 +2544.643909 +2545.170748 +2545.175210 +2545.357761 +2547.136214 +2547.138811 +2547.502614 +2547.504379 +2549.479768 +2549.481333 +2551.890022 +2551.891354 +2553.346431 +2554.288788 +2554.290153 +2556.135739 +2556.138569 +2556.519521 +2556.521553 +2558.559613 +2558.560978 +2560.053650 +2560.055082 +2560.242361 +2560.641162 +2560.719118 +2560.721948 +2563.385482 +2563.388545 +2563.860973 +2563.865635 +2564.910122 +2564.912287 +2566.111220 +2566.112852 +2566.301097 +2566.303328 +2566.505725 +2567.982014 +2567.987442 +2568.954474 +2568.957871 +2569.493534 +2569.494700 +2572.181011 +2572.182543 +2572.907683 +2572.910181 +2573.943547 +2573.944978 +2574.253903 +2574.259064 +2576.941346 +2576.942511 +2576.951802 +2578.320931 +2578.323362 +2579.729022 +2579.730853 +2581.122860 +2581.124159 +2582.840407 +2582.844104 +2584.248898 +2584.250529 +2585.166446 +2586.284793 +2586.286691 +2587.236141 +2587.237639 +2588.692882 +2588.694481 +2589.878263 +2589.879661 +2591.021918 +2591.025647 +2596.312056 +2596.313721 +2597.742757 +2597.744056 +2599.942788 +2599.944486 +2605.293265 +2605.295430 +2609.434553 +2609.436318 +2610.345641 +2610.347706 +2611.949569 +2611.951267 +2617.014399 +2617.015898 +2617.243004 +2618.904174 +2618.906106 +2619.983294 +2619.985026 +2621.770472 +2622.084391 +2622.088520 +2622.689618 +2623.657583 +2623.659214 +2625.084454 +2625.087218 +2627.942061 +2627.943726 +2628.476559 +2628.477891 +2629.465769 +2629.467101 +2629.811056 +2629.812522 +2630.221612 +2630.225442 +2630.484582 +2630.488978 +2630.630603 +2630.637796 +2631.606859 +2631.610489 +2631.986312 +2633.795501 +2633.797133 +2634.006956 +2634.010686 +2636.710483 +2636.711749 +2637.360366 +2638.019640 +2638.021638 +2638.218507 +2638.220006 +2640.009448 +2640.012079 +2643.616937 +2643.618335 +2645.123662 +2645.125294 +2645.640445 +2649.462752 +2650.694552 +2650.696417 +2652.649728 +2652.651227 +2652.767877 +2652.769275 +2652.998679 +2653.003641 +2654.290419 +2654.694515 +2654.696413 +2654.698311 +2654.701275 +2656.279561 +2656.280927 +2657.905667 +2657.907798 +2657.910163 +2659.950187 +2659.951985 +2660.974595 +2660.975894 +2661.509260 +2661.512157 +2662.194074 +2662.198969 +2663.006228 +2663.008959 +2663.625575 +2663.628139 +2664.819313 +2666.542288 +2666.543754 +2666.553677 +2669.693467 +2669.694733 +2669.697330 +2670.010317 +2670.011582 +2670.109218 +2670.330463 +2671.422237 +2671.424135 +2671.426466 +2672.699725 +2673.006851 +2673.008516 +2673.228296 +2673.230593 +2673.927296 +2673.929560 +2674.002121 +2675.179309 +2675.180908 +2675.427894 +2675.429126 +2675.445277 +2675.622632 +2675.628293 +2676.793161 +2676.794892 +2676.796457 +2676.798322 +2676.804383 +2676.806514 +2676.947773 +2676.949338 +2678.258893 +2678.260825 +2678.262656 +2678.265054 +2679.253831 +2679.255829 +2679.257893 +2679.529355 +2679.531586 +2679.534283 +2679.815635 +2679.817267 +2679.999318 +2680.001682 +2680.036348 +2680.038112 +2680.849001 +2680.850866 +2680.852630 +2680.854895 +2681.177239 +2681.458757 +2681.460922 +2681.463053 +2681.773975 +2681.776206 +2684.530516 +2684.531981 +2684.633346 +2684.635710 +2684.775470 +2684.777868 +2684.780665 +2685.111967 +2687.247562 +2687.249194 +2687.250793 +2687.252791 +2687.922920 +2687.924651 +2687.926316 +2687.928248 +2687.931245 +2688.212297 +2688.215660 +2688.217658 +2688.449726 +2688.451557 +2688.453355 +2688.455587 +2689.446295 +2690.551455 +2690.553287 +2690.554985 +2690.557083 +2691.359713 +2691.361411 +2691.363010 +2691.364908 +2691.367372 +2691.495677 +2692.076395 +2692.079925 +2692.082023 +2692.084621 +2692.609062 +2692.610827 +2692.612459 +2692.614790 +2693.438499 +2693.440197 +2693.442228 +2693.444926 +2693.449521 +2693.555881 +2693.557213 +2693.737766 +2693.739364 +2693.741196 +2693.743693 +2693.747922 +2694.303666 +2694.307462 +2694.622913 +2696.189445 +2696.191210 +2696.192842 +2696.194773 +2696.197204 +2696.298869 +2696.384683 +2696.925541 +2696.927306 +2696.929238 +2697.282817 +2697.496537 +2697.497802 +2698.482383 +2698.484081 +2698.485613 +2698.487511 +2698.490042 +2698.703562 +2698.707658 +2698.908523 +2698.912586 +2699.496468 +2699.502362 +2699.808456 +2699.810121 +2699.813717 +2699.816548 +2700.142654 +2700.144453 +2700.148349 +2700.169561 +2700.345751 +2700.347616 +2700.349348 +2700.351912 +2700.727969 +2700.730366 +2701.043153 +2701.044951 +2701.047382 +2701.258870 +2701.543219 +2701.545650 +2701.620675 +2701.622007 +2702.102593 +2702.581680 +2702.583178 +2702.837257 +2702.842052 +2702.844084 +2702.846614 +2704.679113 +2704.681078 +2704.683176 +2705.770588 +2705.772352 +2705.774017 +2705.776115 +2705.829096 +2705.966425 +2705.968656 +2705.970920 +2706.449941 +2706.451706 +2706.453870 +2706.631626 +2706.635888 +2706.637387 +2706.696860 +2706.698958 +2706.701023 +2707.523366 +2707.525098 +2707.527595 +2707.694062 +2707.695328 +2707.899690 +2707.903952 +2707.922900 +2707.924931 +2708.648573 +2708.655966 +2711.391328 +2711.393692 +2711.396822 +2715.853628 +2715.854926 +2715.870844 +2721.360049 +2721.361781 +2721.456319 +2721.459583 +2723.402338 +2723.405368 +2725.594078 +2725.597541 +2725.654517 +2725.939698 +2726.710860 +2728.216819 +2728.218784 +2728.220682 +2728.862173 +2728.864371 +2728.866335 +2729.780554 +2729.782418 +2729.784649 +2730.012521 +2730.014619 +2730.016784 +2730.338428 +2730.340593 +2730.342757 +2730.426307 +2730.427772 +2730.586547 +2730.590776 +2730.854412 +2731.143622 +2731.145620 +2731.147552 +2731.620145 +2731.621577 +2731.944221 +2731.945486 +2732.846185 +2732.848116 +2732.849981 +2732.853611 +2733.785511 +2733.787609 +2733.789674 +2733.795035 +2734.800995 +2734.802993 +2734.804924 +2734.951777 +2734.953975 +2734.956073 +2735.429133 +2735.431131 +2735.433095 +2735.724104 +2735.808153 +2735.810351 +2735.813281 +2736.098762 +2736.100993 +2737.024735 +2737.025968 +2737.027666 +2738.477881 +2738.479646 +2738.481777 +2738.485007 +2739.424200 +2739.426065 +2739.427663 +2739.429695 +2740.353570 +2740.355335 +2740.357000 +2740.359264 +2740.643513 +2740.646110 +2741.261261 +2741.263326 +2741.268021 +2741.993428 +2741.994727 +2741.996192 +2742.576178 +2742.578143 +2743.196890 +2743.201186 +2743.682871 +2744.772979 +2744.774212 +2745.640944 +2745.642243 +2745.837281 +2745.839712 +2747.239344 +2747.241475 +2747.925957 +2747.927289 +2748.197119 +2748.198484 +2748.781534 +2748.785030 +2750.084496 +2750.085961 +2750.672108 +2750.675371 +2753.372904 +2753.374702 +2755.251457 +2755.253389 +2755.510831 +2755.514061 +2757.255551 +2757.257383 +2757.483689 +2757.486686 +2758.207998 +2758.711394 +2758.714457 +2761.030339 +2761.032304 +2761.294841 +2761.300435 +2765.191008 +2765.194138 +2765.325240 +2765.330601 +2765.995402 +2765.999365 +2766.295435 +2766.297766 +2766.479218 +2769.545749 +2769.547780 +2770.334892 +2770.336424 +2770.474019 +2770.475218 +2770.491868 +2772.412246 +2772.413878 +2774.031325 +2774.093097 +2774.095061 +2775.354601 +2775.356599 +2776.585135 +2778.204015 +2778.207212 +2781.802080 +2781.803245 +2781.804544 +2785.679599 +2785.681463 +2785.979565 +2785.982529 +2786.901875 +2786.903540 +2790.194446 +2790.195878 +2791.143762 +2791.145394 +2791.802603 +2791.804035 +2792.553451 +2792.554683 +2792.561143 +2794.553283 +2794.557445 +2795.413488 +2795.414887 +2797.169131 +2797.171828 +2798.789575 +2798.996368 +2799.710354 +2799.866431 +2800.152112 +2800.316081 +2800.334329 +2800.451245 +2800.741089 +2800.781082 +2801.019810 +2801.227036 +2801.936592 +2801.938057 +2802.338257 +2802.340588 +2802.680880 +2802.684610 +2803.636257 +2803.640853 +2803.843849 +2803.849244 +2804.227965 +2804.264495 +2804.830162 +2804.833192 +2807.225864 +2807.551638 +2807.554369 +2808.203752 +2808.206649 +2809.904949 +2809.906314 +2810.123930 +2810.125129 +2810.136617 +2811.194691 +2811.199220 +2811.418068 +2811.425860 +2812.263088 +2812.264687 +2812.885132 +2812.889295 +2817.740672 +2817.743702 +2818.116995 +2818.118494 +2819.678199 +2819.681629 +2819.859851 +2819.863880 +2820.816327 +2820.821888 +2826.197573 +2826.199505 +2826.640164 +2826.643061 +2826.707629 +2826.715888 +2827.116187 +2827.118252 +2828.095307 +2829.693874 +2829.695039 +2829.699235 +2829.895938 +2829.896304 +2829.897603 +2829.899834 +2829.903597 +2829.904130 +2831.045188 +2831.329736 +2832.010421 +2832.137627 +2832.139825 +2832.260837 +2832.262036 +2832.585179 +2832.587510 +2832.858006 +2832.860504 +2833.146284 +2833.735361 +2833.738492 +2834.375754 +2834.528567 +2834.816879 +2834.819276 +2836.142785 +2836.144916 +2836.146981 +2837.585474 +2838.020672 +2838.161164 +2838.162796 +2838.997694 +2839.000458 +2839.134424 +2839.136288 +2840.149507 +2840.150839 +2840.561528 +2840.564758 +2841.352537 +2841.353835 +2843.009378 +2845.934883 +2847.373043 +2847.751065 +2847.752663 +2847.879869 +2848.271444 +2848.275174 +2848.475973 +2849.656924 +2850.611269 +2850.642038 +2850.643303 +2852.116262 +2852.117960 +2852.650727 +2852.653524 +2852.998146 +2853.000310 +2853.003441 +2853.418292 +2853.420790 +2854.401341 +2854.884125 +2854.886023 +2857.789849 +2860.287483 +2860.705631 +2860.706896 +2860.826077 +2860.829440 +2861.022747 +2861.024312 +2861.024911 +2861.026010 +2861.027875 +2861.821181 +2861.823245 +2863.951781 +2863.953013 +2864.236230 +2864.238494 +2864.240892 +2864.834897 +2864.837794 +2865.831367 +2865.833265 +2865.853911 +2866.016748 +2866.017980 +2866.024240 +2866.434563 +2866.437826 +2866.535728 +2868.237625 +2868.239456 +2868.435027 +2868.437957 +2868.541587 +2868.543785 +2869.327201 +2869.332429 +2869.357004 +2869.854340 +2869.855838 +2869.883111 +2869.884676 +2870.110883 +2870.502124 +2870.549743 +2870.551841 +2870.664262 +2872.068956 +2872.595795 +2872.598026 +2872.600524 +2873.186171 +2873.860263 +2873.861861 +2874.743146 +2874.745077 +2874.746975 +2874.749506 +2875.427328 +2876.687633 +2877.059461 +2877.067852 +2877.069118 +2877.157629 +2878.556995 +2878.558993 +2878.561157 +2879.228623 +2879.230854 +2879.233185 +2879.740610 +2879.742075 +2880.300683 +2880.303014 +2880.697019 +2880.974808 +2881.096753 +2881.098418 +2881.715733 +2881.717531 +2881.801647 +2882.777737 +2883.786893 +2883.789157 +2884.171508 +2884.766313 +2886.710167 +2886.711432 +2888.714427 +2892.687950 +2892.689382 +2895.952016 +2896.321046 +2896.322678 +2896.324310 +2896.326241 +2896.329005 +2896.654413 +2896.656044 +2898.728303 +2898.729835 +2898.838893 +2898.840624 +2898.842389 +2898.844454 +2898.981383 +2899.795335 +2899.797167 +2899.798998 +2900.081649 +2900.083613 +2900.136327 +2900.142022 +2900.910519 +2900.912317 +2900.914049 +2900.916213 +2902.418443 +2902.420174 +2902.421873 +2902.424037 +2902.718609 +2902.721206 +2904.198661 +2904.200559 +2904.202390 +2904.205487 +2904.446613 +2904.448511 +2904.450276 +2904.452440 +2904.456736 +2904.718407 +2905.706651 +2905.708450 +2905.710381 +2905.712679 +2906.106784 +2906.216241 +2906.219971 +2906.420237 +2906.422335 +2906.425765 +2906.511579 +2906.513111 +2907.386470 +2907.388201 +2907.389900 +2907.391964 +2907.653136 +2907.655367 +2907.975081 +2907.977012 +2907.979010 +2908.205617 +2908.207714 +2908.693761 +2908.759096 +2908.761061 +2908.762892 +2908.765689 +2909.215039 +2909.216871 +2909.218702 +2910.029890 +2910.031789 +2910.033620 +2910.035685 +2910.433886 +2910.435751 +2910.437549 +2910.439813 +2910.720899 +2910.723363 +2911.153732 +2911.156096 +2911.273213 +2911.841943 +2911.843675 +2912.091394 +2912.093225 +2912.095057 +2912.097288 +2912.157128 +2912.160724 +2912.618266 +2912.619565 +2913.786730 +2914.279370 +2914.280869 +2915.201147 +2915.202979 +2915.204877 +2915.404177 +2915.407174 +2915.606941 +2915.609439 +2915.800780 +2915.802579 +2916.109471 +2916.111836 +2916.303211 +2916.305209 +2916.307140 +2916.605342 +2916.607972 +2916.910237 +2916.912301 +2916.914765 +2917.103243 +2917.105441 +2917.106473 +2917.205941 +2917.208205 +2917.403210 +2917.510402 +2917.704974 +2917.803309 +2917.805407 +2917.909603 +2918.306139 +2918.308204 +2918.510768 +2918.513199 +2919.102975 +2919.105805 +2919.500510 +2919.502375 +2919.502608 +2919.604440 +2919.607170 +2920.622454 +2920.624485 +2920.626350 +2920.952790 +2920.954155 +2921.526815 +2921.528780 +2921.533076 +2922.076698 +2922.078230 +2922.218823 +2922.220687 +2922.222519 +2922.225483 +2923.297909 +2924.620485 +2924.748024 +2924.749356 +2924.943795 +2925.285353 +2926.106098 +2926.107763 +2926.960376 +2926.962308 +2929.117917 +2929.119815 +2930.253880 +2930.256111 +2930.274159 +2930.276191 +2930.407626 +2930.408891 +2931.407924 +2931.409922 +2939.679811 +2939.681443 +2940.197293 +2940.200490 +2941.750072 +2941.751437 +2949.497150 +2949.498815 +2949.694919 +2949.696917 +2951.951394 +2951.953358 +2955.451390 +2955.453122 +2956.861412 +2956.862944 +2957.571301 +2957.575331 +2957.650755 +2957.657449 +2960.419351 +2960.421548 +2961.597771 +2961.599003 +2961.609592 +2962.245090 +2962.251350 +2962.746521 +2963.098435 +2963.100866 +2965.038394 +2965.041058 +2965.149382 +2965.916215 +2965.918546 +2966.255542 +2966.258406 +2966.786877 +2966.788242 +2968.406189 +2968.408087 +2968.766928 +2968.800894 +2969.245083 +2969.488372 +2969.981446 +2970.234126 +2970.456170 +2970.459067 +2970.851508 +2971.165860 +2971.262696 +2971.322037 +2971.354571 +2971.770721 +2972.328663 +2972.507683 +2972.568622 +2972.570887 +2972.796261 +2972.799025 +2973.155269 +2973.188069 +2973.247609 +2973.345445 +2973.867156 +2973.889434 +2976.128759 +2976.347373 +2976.348938 +2978.452466 +2978.458427 +2979.133717 +2979.134883 +2979.139745 +2979.640011 +2979.646438 +2980.887096 +2981.043439 +2981.139310 +2981.142840 +2983.459920 +2983.462185 +2988.878530 +2988.879662 +2988.881094 +2991.376729 +2991.378161 +2994.754015 +2994.755314 +2995.213522 +2995.215153 +2996.560273 +2996.561439 +2996.661206 +2999.059472 +2999.061936 +2999.383214 +2999.384646 +3001.929133 +3001.930698 +3003.581645 +3003.583510 +3004.200792 +3004.204155 +3004.824867 +3004.826199 +3004.830495 +3006.961462 +3006.963693 +3008.530225 +3008.531424 +3008.534154 +3009.398056 +3009.401486 +3010.089397 +3010.093393 +3012.989528 +3012.991060 +3016.892121 +3016.893653 +3017.834311 +3017.835710 +3019.204107 +3019.207404 +3021.851956 +3021.853755 +3023.213027 +3023.214493 +3023.664342 +3023.665807 +3025.565739 +3025.568303 +3026.999837 +3027.001069 +3027.004132 +3027.264905 +3027.268335 +3029.875059 +3030.365967 +3030.367666 +3030.722177 +3030.724042 +3030.844288 +3033.810220 +3033.811552 +3035.747680 +3035.749745 +3038.260631 +3038.261863 +3039.028929 +3039.030927 +3039.530494 +3041.609912 +3041.611211 +3042.749072 +3042.751270 +3042.869285 +3049.052062 +3049.053261 +3050.175471 +3050.176737 +3050.179401 +3050.375305 +3050.378235 +3052.062815 +3052.063981 +3052.069908 +3052.268509 +3052.274703 +3058.058314 +3058.060312 +3058.273898 +3058.276063 +3060.425411 +3060.426610 +3060.434102 +3060.529340 +3060.531438 +3061.009393 +3062.531203 +3062.534200 +3062.633134 +3062.639128 +3065.200531 +3065.202363 +3067.845350 +3067.847015 +3068.279216 +3069.519341 +3069.521939 +3070.641385 +3070.642584 +3070.650209 +3071.217342 +3074.302220 +3074.304751 +3077.032920 +3077.034219 +3077.323596 +3077.325094 +3079.704546 +3079.991092 +3079.992824 +3080.574908 +3080.576240 +3082.608572 +3082.609871 +3084.178434 +3084.179800 +3087.134808 +3087.136140 +3087.520123 +3087.522886 +3088.946894 +3088.948293 +3091.322616 +3091.324381 +3092.154883 +3092.155416 +3093.880722 +3093.883519 +3093.887449 +3095.437131 +3095.438296 +3095.441060 +3095.756112 +3095.759641 +3099.086578 +3099.088010 +3101.030199 +3101.031564 +3101.575387 +3101.578217 +3102.476185 +3102.477717 +3103.776850 +3103.780213 +3104.531860 +3104.533059 +3104.538520 +3104.735024 +3104.740685 +3106.471819 +3106.474050 +3108.488966 +3108.490897 +3108.862426 +3108.865289 +3109.144909 +3110.964521 +3110.966253 +3111.029223 +3111.605446 +3111.610475 +3116.022059 +3116.023324 +3116.038609 +3117.217196 +3117.219294 +3118.736442 +3118.737774 +3118.882595 +3120.277199 +3120.302574 +3120.304572 +3122.911396 +3122.913627 +3124.874997 +3124.876828 +3124.973132 +3124.975630 +3125.802469 +3125.885053 +3125.886684 +3126.834236 +3126.836500 +3126.861941 +3126.946890 +3126.949554 +3128.805529 +3129.346754 +3129.348053 +3129.970696 +3129.973427 +3132.337627 +3132.338892 +3135.729365 +3135.730697 +3136.526367 +3136.528565 +3137.172221 +3137.173586 +3139.232292 +3139.233524 +3141.899322 +3141.901453 +3141.903685 +3142.534653 +3142.536718 +3143.873280 +3145.237481 +3145.239079 +3149.418262 +3149.419561 +3149.425822 +3150.582164 +3151.070941 +3151.072407 +3151.772706 +3151.774038 +3152.436708 +3152.438939 +3153.668408 +3154.220222 +3154.657518 +3154.659583 +3155.498210 +3155.723917 +3155.729778 +3155.950157 +3155.952089 +3156.123750 +3156.126115 +3157.475930 +3157.778594 +3157.781058 +3161.856645 +3165.110421 +3165.111787 +3165.707790 +3165.709522 +3165.873890 +3165.876987 +3166.294403 +3166.297200 +3167.394302 +3167.396766 +3167.995167 +3167.999230 +3170.185508 +3170.186806 +3170.290036 +3170.569157 +3170.577915 +3172.205286 +3172.207717 +3173.020337 +3173.820403 +3173.822367 +3176.035818 +3176.049671 +3180.948068 +3180.949267 +3180.950632 +3181.043006 +3181.051697 +3181.367415 +3181.372643 +3185.223421 +3185.225653 +3187.228814 +3187.230246 +3188.313295 +3188.314694 +3189.736870 +3189.738435 +3192.513790 +3192.515222 +3194.895473 +3194.897038 +3195.994673 +3195.997503 +3198.216982 +3198.218980 +3198.302030 +3198.304194 +3200.243520 +3200.244818 +3200.411285 +3200.418178 +3203.723370 +3203.724802 +3204.287405 +3205.220837 +3205.222203 +3205.436555 +3205.441350 +3207.409380 +3207.410712 +3208.339282 +3208.341913 +3209.098955 +3209.101087 +3210.136617 +3210.140313 +3210.299287 +3210.301585 +3212.561822 +3212.564187 +3214.844604 +3214.846302 +3219.882894 +3219.884559 +3220.777165 +3220.981761 +3220.984358 +3223.959380 +3223.961078 +3224.504168 +3224.505633 +3224.593412 +3224.706033 +3224.714058 +3226.569967 +3226.571266 +3227.010060 +3227.551451 +3227.554581 +3227.907228 +3228.783684 +3228.789312 +3228.904863 +3229.147354 +3229.148586 +3231.222410 +3232.064467 +3232.065865 +3232.101663 +3232.734529 +3232.737826 +3232.855642 +3234.173223 +3234.176286 +3235.358936 +3235.362466 +3237.573219 +3237.574518 +3237.952972 +3237.956968 +3239.092998 +3239.094463 +3239.625065 +3239.626531 +3240.365691 +3240.637186 +3241.240548 +3241.243912 +3243.424762 +3243.428824 +3244.411341 +3244.414038 +3245.696788 +3245.699152 +3246.123960 +3246.126724 +3248.420095 +3248.421460 +3249.025522 +3249.028319 +3249.828385 +3249.830650 +3250.773173 +3250.774938 +3251.831880 +3251.835210 +3253.050626 +3253.053324 +3254.067542 +3254.069273 +3258.377827 +3258.379892 +3258.835069 +3258.836435 +3260.835967 +3260.837532 +3261.877857 +3261.879555 +3262.999201 +3263.003131 +3264.558574 +3264.560505 +3264.891973 +3264.895336 +3265.104194 +3265.107358 +3265.292972 +3265.389941 +3265.392938 +3271.038421 +3271.039986 +3271.384408 +3271.535456 +3271.538287 +3274.478943 +3281.491624 +3281.494387 +3283.334279 +3283.335877 +3287.240036 +3287.242134 +3287.478531 +3287.508168 +3289.448092 +3289.449591 +3291.834803 +3291.836768 +3293.634802 +3293.636400 +3296.837096 +3296.838694 +3299.213218 +3299.274889 +3299.746950 +3299.748781 +3300.416480 +3300.418444 +3301.760767 +3301.762965 +3301.809885 +3301.811916 +3302.104423 +3302.106521 +3302.535725 +3302.542352 +3302.883577 +3303.789037 +3304.570522 +3304.572153 +3305.564527 +3307.702853 +3307.704551 +3308.356399 +3308.358630 +3314.998283 +3314.999982 +3316.407106 +3316.698748 +3316.701545 +3317.586060 +3317.587258 +3317.588524 +3317.742037 +3317.744534 +3319.224919 +3319.227417 +3319.231513 +3319.335742 +3319.691685 +3319.694249 +3320.031445 +3320.033876 +3320.644365 +3320.982859 +3321.535939 +3321.537338 +3321.566409 +3321.568606 +3321.571137 +3322.024983 +3322.025416 +3322.025782 +3322.056019 +3322.057351 +3322.714959 +3322.716691 +3323.025415 +3323.664475 +3323.776430 +3323.778361 +3323.780259 +3323.789383 +3323.807032 +3323.808864 +3324.902269 +3324.905266 +3325.510427 +3325.512559 +3326.868801 +3326.870799 +3326.872797 +3326.879956 +3330.174958 +3330.177223 +3331.500365 +3331.502529 +3331.504694 +3332.364700 +3332.563900 +3332.565832 +3332.567763 +3333.126437 +3333.128768 +3333.369127 +3333.370559 +3333.783046 +3335.298430 +3336.303823 +3336.306054 +3336.973653 +3336.975517 +3337.741817 +3337.743515 +3338.765959 +3338.767257 +3339.330727 +3339.332358 +3339.460796 +3340.869053 +3341.842446 +3342.604616 +3342.715638 +3342.716870 +3342.720900 +3343.350070 +3343.955431 +3344.109177 +3350.142870 +3350.144469 +3350.146034 +3350.147932 +3350.152894 +3352.175069 +3352.176868 +3352.178566 +3352.180697 +3352.307170 +3352.570240 +3352.882195 +3352.884060 +3352.885991 +3352.889721 +3353.131912 +3353.133943 +3353.136074 +3353.213497 +3353.217326 +3353.310699 +3354.912096 +3356.191482 +3356.193214 +3356.222784 +3356.224483 +3356.449258 +3356.882191 +3356.884022 +3356.885821 +3356.888152 +3357.269470 +3357.773365 +3357.775130 +3357.776795 +3357.778760 +3357.781524 +3357.840365 +3358.364274 +3358.366006 +3358.367704 +3358.369735 +3358.372865 +3358.908296 +3360.742227 +3360.744025 +3360.745690 +3360.747855 +3361.054315 +3361.055813 +3361.810558 +3361.812522 +3361.814454 +3361.817018 +3362.348985 +3362.350917 +3362.609325 +3362.721113 +3362.722978 +3362.948585 +3362.948951 +3362.953946 +3364.068064 +3364.788410 +3365.102496 +3365.104327 +3365.106159 +3365.108390 +3365.108989 +3365.110554 +3365.418346 +3365.420377 +3366.118978 +3366.120910 +3366.122774 +3366.303327 +3366.304792 +3366.472158 +3366.473923 +3366.475721 +3366.477819 +3366.546284 +3366.550480 +3366.734995 +3366.737059 +3367.187775 +3367.189507 +3367.192970 +3367.195834 +3367.740855 +3367.742153 +3367.905223 +3367.907022 +3367.908687 +3367.913748 +3368.565196 +3368.567028 +3368.568892 +3368.707087 +3368.826701 +3368.829765 +3368.879981 +3369.350810 +3369.352808 +3369.354772 +3369.420640 +3370.001392 +3370.003357 +3370.302590 +3370.304588 +3370.412081 +3370.503223 +3370.603023 +3370.605088 +3370.702823 +3370.705087 +3370.705287 +3370.804788 +3370.908284 +3371.101824 +3371.103655 +3371.304621 +3371.307018 +3371.604287 +3371.606152 +3371.608050 +3371.808083 +3371.904787 +3371.906818 +3371.908916 +3372.107117 +3372.243048 +3372.303487 +3372.305585 +3372.408249 +3372.901955 +3372.904952 +3373.102654 +3373.104785 +3373.204885 +3373.211079 +3373.306983 +3373.405151 +3373.515574 +3373.906250 +3373.908581 +3374.005417 +3374.104018 +3374.106183 +3374.304551 +3374.306616 +3374.601187 +3374.617338 +3377.032287 +3377.034352 +3377.036849 +3377.369183 +3377.371548 +3377.532620 +3377.533785 +3377.646739 +3377.648637 +3377.650535 +3377.653932 +3377.657695 +3378.166685 +3378.170348 +3378.173312 +3378.391094 +3378.394124 +3378.395423 +3378.396289 +3378.398386 +3378.744107 +3378.746804 +3378.755496 +3379.041443 +3379.042908 +3379.070480 +3379.319831 +3379.321696 +3379.323460 +3379.661156 +3379.662488 +3379.771945 +3379.773743 +3379.775441 +3379.777706 +3379.942607 +3379.945405 +3380.360123 +3385.502242 +3385.503874 +3385.505472 +3385.507370 +3385.509868 +3385.759318 +3385.759518 +3385.761283 +3385.763214 +3385.940870 +3385.990453 +3385.992352 +3385.994183 +3385.996547 +3387.634974 +3388.462845 +3388.963511 +3390.103403 +3390.485587 +3390.487352 +3390.489150 +3390.491248 +3390.494878 +3390.644095 +3390.645727 +3391.257681 +3391.259646 +3391.263808 +3391.639099 +3391.640897 +3391.642662 +3391.644793 +3391.648190 +3392.106798 +3392.398672 +3392.400637 +3392.402468 +3392.404933 +3393.070866 +3393.072631 +3393.074329 +3393.076460 +3393.079424 +3393.377859 +3393.382021 +3393.384385 +3393.479457 +3393.835467 +3393.837765 +3393.840063 +3393.863806 +3394.343026 +3394.458577 +3394.462573 +3394.540628 +3394.542992 +3394.666535 +3394.668866 +3394.672529 +3394.674527 +3394.676492 +3395.214886 +3395.216751 +3395.218516 +3395.220947 +3395.617750 +3395.619648 +3395.621613 +3395.624077 +3395.727307 +3396.141492 +3396.143490 +3396.145555 +3396.284882 +3396.355045 +3396.357043 +3396.547652 +3396.548318 +3397.172194 +3397.174059 +3397.175957 +3397.241658 +3397.350349 +3397.705460 +3397.710955 +3397.712953 +3397.714984 +3398.615582 +3398.924340 +3398.926571 +3398.928835 +3399.672491 +3399.685178 +3399.689707 +3399.878285 +3399.879584 +3400.932397 +3400.934062 +3402.123871 +3402.125469 +3406.387270 +3406.389001 +3406.525198 +3406.527562 +3406.661861 +3406.664825 +3408.092030 +3408.578410 +3408.579742 +3410.848737 +3410.850702 +3412.144606 +3415.017764 +3415.019029 +3416.862284 +3416.864249 +3418.227684 +3418.229016 +3419.784093 +3419.785591 +3420.312697 +3420.314062 +3421.114228 +3421.116759 +3428.576725 +3428.578356 +3429.312721 +3429.314186 +3429.909923 +3429.912754 +3433.024705 +3433.026204 +3433.083380 +3435.031830 +3435.033728 +3435.458736 +3435.461200 +3435.947446 +3435.955405 +3437.298494 +3437.302823 +3437.640219 +3437.641684 +3438.647277 +3438.653138 +3438.837187 +3440.553835 +3440.556233 +3440.727595 +3441.303252 +3441.417904 +3441.420401 +3441.835919 +3443.008612 +3443.010277 +3443.616503 +3443.620999 +3446.655594 +3446.657326 +3447.232950 +3448.834480 +3449.826254 +3449.840573 +3450.927984 +3452.423088 +3452.425186 +3454.104871 +3454.106236 +3454.212230 +3454.993948 +3454.995479 +3455.178330 +3455.180194 +3455.182159 +3455.184523 +3455.263644 +3456.720020 +3458.964207 +3459.014257 +3459.483121 +3459.493843 +3459.503234 +3459.523547 +3459.834103 +3459.854482 +3459.886384 +3460.675527 +3460.726443 +3461.678823 +3461.831670 +3461.853248 +3461.886082 +; +4.030965 +4.032863 +4.034728 +4.037059 +4.226303 +4.228467 +4.230565 +4.232896 +4.236459 +4.344052 +4.346749 +4.349413 +4.351378 +4.353808 +4.357372 +4.717911 +5.105822 +5.115513 +5.308819 +5.341653 +5.365895 +5.395199 +5.447480 +5.601293 +5.629265 +5.757936 +5.842452 +5.894999 +5.977417 +6.057670 +6.111849 +6.247713 +6.276317 +6.303124 +6.358069 +6.416144 +6.528532 +6.556137 +6.583010 +6.613513 +6.641019 +6.667526 +6.693267 +6.721771 +6.744915 +6.769657 +6.787772 +6.806587 +6.821505 +6.846680 +6.862830 +6.882544 +6.899860 +6.939986 +6.972787 +6.982011 +7.017176 +7.046546 +7.076683 +7.109617 +7.140352 +7.169490 +7.202990 +7.234325 +7.268624 +7.293566 +7.329330 +7.359666 +7.391601 +7.421338 +7.453306 +7.481777 +7.507119 +7.538054 +7.563496 +7.597728 +7.628897 +7.661198 +7.687372 +7.718740 +7.747878 +7.779313 +7.810482 +7.838986 +7.868524 +7.894498 +7.929995 +7.966759 +8.030262 +8.061131 +8.096562 +8.125533 +8.157534 +8.189968 +8.259199 +8.291933 +8.323035 +8.358000 +8.390534 +8.425033 +8.455236 +8.489202 +8.522103 +8.553904 +8.587404 +8.618240 +8.651040 +8.681843 +8.717074 +8.751939 +8.784706 +8.814976 +8.842882 +8.874050 +8.904853 +8.935755 +8.977314 +9.009848 +9.042715 +9.074583 +9.105452 +9.152005 +9.182175 +9.226564 +9.259298 +9.293431 +9.329295 +9.363860 +9.398525 +9.424766 +9.463094 +9.496294 +9.533490 +9.570686 +9.605918 +9.637253 +9.670819 +9.703087 +9.740983 +9.775581 +9.812478 +9.846777 +9.882474 +9.917872 +9.952304 +9.981575 +10.018738 +10.051771 +10.086403 +10.119903 +10.151605 +10.188135 +10.221169 +10.257133 +10.287535 +10.311611 +10.342847 +10.374049 +10.407682 +10.436520 +10.475747 +10.513343 +10.548175 +10.597558 +10.625764 +10.669420 +10.705517 +10.747908 +10.783905 +10.818637 +10.857365 +10.898657 +10.928227 +10.964258 +10.996959 +11.036186 +11.071218 +11.112476 +11.151071 +11.186169 +11.224498 +11.257897 +11.294561 +11.330591 +11.360295 +11.401520 +11.436918 +11.476046 +11.509179 +11.546076 +11.585270 +11.620435 +11.654068 +11.685503 +11.723465 +11.756265 +11.787700 +11.821800 +11.849572 +11.876012 +11.913075 +11.952769 +11.991163 +12.028693 +12.071383 +12.107713 +12.145376 +12.178176 +12.219435 +12.253801 +12.292062 +12.330690 +12.367254 +12.406448 +12.428792 +12.454699 +12.483770 +12.515572 +12.540946 +12.566787 +12.600687 +12.655765 +12.682505 +12.731389 +12.759794 +12.798355 +12.841779 +12.871948 +12.921532 +12.959194 +12.999288 +13.040713 +13.073613 +13.120133 +13.199720 +13.425195 +13.501685 +13.574745 +13.804315 +13.832520 +13.912640 +13.996922 +14.044508 +14.133785 +14.309077 +14.356329 +14.600452 +14.641444 +14.727225 +14.801284 +14.944307 +15.065453 +15.110008 +15.313205 +15.366751 +15.410907 +15.457527 +15.502016 +15.543441 +15.596055 +15.633950 +15.669348 +15.716967 +15.750700 +15.793124 +15.826724 +15.872811 +15.912338 +15.952298 +15.991459 +16.027690 +16.059724 +16.104180 +16.141043 +16.176241 +16.212704 +16.252198 +16.334582 +16.372944 +16.419830 +16.476907 +16.513603 +16.550433 +16.586930 +16.629454 +16.656860 +16.682800 +16.714702 +16.763686 +16.785897 +16.809574 +16.861954 +16.888261 +16.964585 +17.010040 +17.068281 +17.118498 +17.158724 +17.199250 +17.239710 +17.291891 +17.328887 +17.373409 +17.413136 +17.454195 +17.493256 +17.581867 +17.792689 +17.929319 +18.012203 +18.098850 +18.136778 +18.297850 +18.779468 +19.015832 +19.151662 +19.246201 +19.281133 +19.353960 +19.462118 +19.674073 +19.709238 +19.742704 +19.768711 +19.806107 +19.828285 +19.862884 +19.886427 +19.927386 +19.948565 +19.974472 +20.016930 +20.050829 +20.081798 +20.123923 +20.168212 +20.210736 +20.247898 +20.281298 +20.318295 +20.349597 +20.393919 +20.425854 +20.466413 +20.504808 +20.545367 +20.575404 +20.607672 +20.645034 +20.680033 +20.714398 +20.744635 +20.796183 +20.810435 +20.841937 +20.875570 +20.898381 +20.935244 +20.969110 +21.012566 +21.058920 +21.102809 +21.139040 +21.182430 +21.215030 +21.254058 +21.298114 +21.333545 +21.376469 +21.421957 +21.457055 +21.494983 +21.534111 +21.583295 +21.616928 +21.656389 +21.685759 +21.724753 +21.769575 +22.009668 +22.074903 +22.119125 +22.167244 +22.253191 +22.286691 +22.326984 +22.445066 +22.580763 +22.723587 +23.022554 +23.028682 +23.041569 +23.176001 +23.183726 +23.322088 +23.586556 +23.588621 +23.598211 +23.751958 +24.105803 +24.115360 +24.253356 +24.258617 +24.262546 +24.274901 +24.361081 +24.366309 +24.381627 +24.428713 +24.437338 +24.479063 +24.567208 +24.617258 +24.642633 +24.663645 +24.688687 +24.801007 +24.931044 +25.017624 +25.060081 +25.132276 +25.193048 +25.263278 +25.288486 +25.310764 +25.334240 +25.543930 +25.566874 +25.739968 +25.957017 +26.131476 +26.180327 +26.207466 +26.234772 +26.258682 +26.281659 +26.309364 +26.333640 +26.361212 +26.388885 +26.443963 +26.470436 +26.500240 +26.528212 +26.552421 +26.579394 +26.606933 +26.630743 +26.657682 +26.679294 +26.701771 +26.732607 +26.753187 +26.778095 +26.804768 +26.841998 +26.872634 +26.901805 +26.927479 +26.952387 +26.983356 +27.014825 +27.044528 +27.075397 +27.103802 +27.131941 +27.159413 +27.189583 +27.216190 +27.245993 +27.276296 +27.305534 +27.334671 +27.364741 +27.393279 +27.424348 +27.453119 +27.510695 +27.535237 +27.564574 +27.591115 +27.620352 +27.657515 +27.688450 +27.716656 +27.748557 +27.783322 +27.817788 +27.856416 +27.889982 +27.928177 +27.951421 +27.988250 +28.016256 +28.047957 +28.077095 +28.112526 +28.151121 +28.180891 +28.215323 +28.249056 +28.280258 +28.313025 +28.347724 +28.379559 +28.419419 +28.457114 +28.487817 +28.518886 +28.558380 +28.589315 +28.618153 +28.684120 +28.719319 +28.751919 +28.782722 +28.816987 +28.849322 +28.887051 +28.919252 +28.953251 +28.981489 +29.020650 +29.049322 +29.072398 +29.095009 +29.113224 +29.152651 +29.185485 +29.219018 +29.254783 +29.279624 +29.319684 +29.363074 +29.404433 +29.439298 +29.486018 +29.524746 +29.567902 +29.608828 +29.642794 +29.683553 +29.721882 +29.754049 +29.794009 +29.824612 +29.861242 +29.892411 +29.933869 +29.968834 +30.005764 +30.037432 +30.073563 +30.098105 +30.142094 +30.172364 +30.198604 +30.231638 +30.269933 +30.307729 +30.349420 +30.387182 +30.424179 +30.458078 +30.500469 +30.543026 +30.624778 +30.668667 +30.752483 +30.786083 +30.932703 +30.973495 +31.003798 +31.156879 +31.228640 +31.301101 +31.340894 +31.611257 +31.792476 +32.306661 +32.391110 +32.431869 +32.648452 +32.767933 +32.818549 +32.853347 +32.891975 +32.929937 +32.968598 +33.005461 +33.040626 +33.076524 +33.118948 +33.154679 +33.194772 +33.233966 +33.279421 +33.317849 +33.352081 +33.391442 +33.418981 +33.506060 +33.546586 +33.589943 +33.631235 +33.693340 +33.733599 +33.771328 +33.818914 +33.840992 +33.844755 +33.847852 +33.850216 +33.881018 +33.922144 +33.968597 +33.973426 +33.975557 +33.986313 +34.887278 +34.891374 +34.893871 +34.898367 +35.218080 +35.222342 +35.225473 +35.236195 +35.433697 +35.435929 +35.438026 +35.441157 +35.450214 +35.633497 +35.635462 +35.637627 +35.640557 +35.646784 +35.789808 +35.794303 +35.804426 +35.939191 +35.941622 +35.944053 +35.947516 +35.959571 +36.079251 +36.082248 +36.085179 +36.170660 +36.177353 +36.190307 +36.213284 +36.232997 +36.252644 +36.273357 +36.295834 +36.313816 +36.362135 +36.384079 +36.403127 +36.425738 +36.449514 +36.471991 +36.492438 +36.514116 +36.535894 +36.557672 +36.581116 +36.604559 +36.646883 +36.667462 +36.690872 +36.713217 +36.733796 +36.756973 +36.778385 +36.800296 +36.822374 +36.845518 +36.870193 +36.891372 +36.915614 +36.938891 +36.959737 +36.983779 +37.008055 +37.032664 +37.054741 +37.078384 +37.177519 +37.294535 +37.313915 +37.338158 +37.385910 +37.433529 +37.554841 +37.629133 +37.680382 +37.777518 +37.800895 +37.821507 +37.869792 +37.894601 +38.002393 +38.106822 +38.158603 +38.257471 +38.576718 +38.668659 +38.793068 +38.817310 +38.944550 +39.087573 +39.228732 +39.504789 +39.546014 +39.576850 +39.608785 +39.633860 +40.000393 +40.075051 +40.113646 +40.146313 +40.255471 +40.327099 +40.498694 +40.649177 +40.677315 +40.829263 +40.905587 +40.977914 +41.049709 +41.192633 +41.331460 +41.432759 +41.505220 +41.535756 +41.572819 +41.686572 +41.952572 +41.993464 +42.031293 +42.062362 +42.139152 +42.259032 +42.500857 +42.620304 +42.668522 +42.751339 +42.793164 +42.894363 +43.037086 +43.215608 +43.259797 +43.323799 +43.444312 +43.670086 +43.709380 +43.752937 +43.798757 +43.846077 +43.890199 +43.946876 +43.971318 +44.013975 +44.067189 +44.104385 +44.126596 +44.201488 +44.246043 +44.297292 +44.347808 +44.401987 +44.450305 +44.489932 +44.549140 +44.599822 +44.648074 +44.696758 +44.746076 +44.785669 +44.833422 +44.878810 +44.959895 +45.002419 +45.055033 +45.119202 +45.167787 +45.222066 +45.280008 +45.345043 +45.388633 +45.468652 +45.512442 +45.579541 +45.635319 +45.686434 +45.738482 +45.755832 +46.250070 +47.996023 +48.186898 +48.191893 +48.197954 +48.393391 +48.405413 +48.561423 +48.574444 +48.710041 +48.712772 +48.719265 +48.869415 +48.875409 +48.880770 +48.969481 +48.975609 +49.094723 +49.138912 +49.199485 +49.342808 +49.440144 +49.492991 +49.546870 +49.573077 +49.656694 +49.684066 +49.842541 +49.870813 +49.925458 +50.011805 +50.097852 +50.126856 +50.179737 +50.199916 +50.220130 +50.251598 +50.277905 +50.305711 +50.329287 +50.349966 +50.371645 +50.394555 +50.417099 +50.448135 +50.480569 +50.509074 +50.539643 +50.565850 +50.589260 +50.618098 +50.645071 +50.673143 +50.706742 +50.739809 +50.768381 +50.790925 +50.815833 +50.853129 +50.875274 +50.904112 +50.924391 +50.948101 +50.967748 +50.995553 +51.029886 +51.042606 +51.066183 +51.079270 +51.102247 +51.139975 +51.171744 +51.186729 +51.273275 +51.315300 +51.350431 +51.386062 +51.423725 +51.458057 +51.523059 +51.556392 +51.586162 +51.624624 +51.657557 +51.691024 +51.724657 +51.757124 +51.785196 +51.815266 +51.843771 +51.876971 +51.906808 +51.938876 +51.971510 +52.008406 +52.046734 +52.086062 +52.118163 +52.154427 +52.187427 +52.219628 +52.262419 +52.289292 +52.333481 +52.372642 +52.418562 +52.459488 +52.501746 +52.537710 +52.575605 +52.615598 +52.654892 +52.696684 +52.734546 +52.774273 +52.803211 +52.849298 +52.883763 +52.918861 +52.950896 +52.989191 +53.009271 +53.027486 +53.069844 +53.114532 +53.164282 +53.214199 +53.248565 +53.295851 +53.335444 +53.375504 +53.408638 +53.453426 +53.501012 +53.533579 +53.570176 +53.619893 +53.657156 +53.697815 +53.734711 +53.779467 +53.852660 +53.885161 +53.925587 +53.961684 +53.982097 +54.003809 +54.036776 +54.089490 +54.110569 +54.143702 +54.191954 +54.256989 +54.300678 +54.347165 +54.387458 +54.434111 +54.474704 +54.517195 +54.932546 +54.977467 +55.117660 +55.350028 +55.600011 +55.834077 +56.060383 +56.192684 +56.230780 +56.284925 +56.346930 +56.443134 +56.554289 +58.912096 +58.918489 +59.229045 +59.231709 +59.233674 +59.235871 +59.239068 +59.243464 +59.248792 +59.570170 +59.572068 +59.574033 +59.576597 +59.581093 +59.703670 +59.705834 +59.708265 +59.711296 +59.725115 +59.912294 +59.914659 +59.917090 +59.920453 +60.077163 +60.079960 +60.083123 +60.087519 +60.217023 +60.221252 +60.225547 +60.234772 +60.355084 +60.358947 +60.364741 +60.397775 +60.423016 +60.448791 +60.479826 +60.502936 +60.530409 +60.558747 +60.587019 +60.609430 +60.642197 +60.665940 +60.693313 +60.717855 +60.746160 +60.772300 +60.798607 +60.828411 +60.854351 +60.879027 +60.909030 +60.931974 +60.958147 +60.987019 +61.013359 +61.040698 +61.070502 +61.093912 +61.122183 +61.147658 +61.177861 +61.199872 +61.225413 +61.249090 +61.276362 +61.299239 +61.323915 +61.351021 +61.381657 +61.401670 +61.431141 +61.465972 +61.501637 +61.533305 +61.560245 +61.592612 +61.627644 +61.658546 +61.694910 +61.720185 +61.749822 +61.778992 +61.797574 +61.820751 +61.855150 +61.877461 +61.905399 +61.940098 +61.980258 +62.010128 +62.050421 +62.084420 +62.121050 +62.154217 +62.186818 +62.220684 +62.252352 +62.286052 +62.314357 +62.349588 +62.385252 +62.424446 +62.457813 +62.495475 +62.534603 +62.576228 +62.615722 +62.651919 +62.685452 +62.711592 +62.746058 +62.777027 +62.806264 +62.822348 +62.857180 +62.886717 +62.927643 +62.969667 +63.013457 +63.054049 +63.105631 +63.137233 +63.163573 +63.250053 +63.312557 +63.350886 +63.417552 +63.454149 +63.503666 +63.546490 +63.594275 +63.648887 +63.693676 +63.741595 +63.785617 +63.823013 +63.847755 +63.917752 +63.968201 +64.030705 +64.086416 +64.125544 +64.188947 +64.235700 +64.297938 +64.350818 +64.407262 +64.448087 +64.496339 +64.559609 +64.594974 +64.651684 +64.768533 +64.838097 +64.882386 +64.951617 +65.013555 +65.066768 +65.140694 +65.176958 +65.246488 +65.294973 +65.368932 +65.414786 +65.500933 +65.558443 +65.607993 +65.675725 +65.717916 +65.766001 +69.604659 +69.606457 +69.697366 +69.700097 +69.822274 +69.838025 +70.432297 +70.434462 +70.439856 +70.810785 +70.813149 +70.815713 +70.819609 +71.003525 +71.005956 +71.008887 +71.013116 +71.176219 +71.179582 +71.184078 +71.195866 +71.246083 +71.258870 +71.343751 +71.353508 +71.384877 +71.426402 +71.466728 +71.491837 +71.530298 +71.559835 +71.591337 +71.628833 +71.661100 +71.694267 +71.728033 +71.790637 +71.829465 +71.864697 +71.896998 +71.908453 +71.929265 +71.963864 +71.995566 +72.027900 +72.064896 +72.095532 +72.130164 +72.155173 +72.199828 +72.233994 +72.268892 +72.298429 +72.314546 +72.347214 +72.387207 +72.428732 +72.474653 +72.514579 +72.550743 +72.590337 +72.625768 +72.652275 +72.699794 +72.732694 +72.782478 +72.816577 +72.856804 +72.897663 +72.936790 +72.975218 +73.011382 +73.046980 +73.089371 +73.132061 +73.172454 +73.209850 +73.251076 +73.287972 +73.331895 +73.377749 +73.412680 +73.456870 +73.494998 +73.537955 +73.570389 +73.609883 +73.647445 +73.691968 +73.731195 +73.769790 +73.818274 +73.864129 +73.894165 +73.937655 +73.973719 +74.017642 +74.057535 +74.097661 +74.151607 +74.246080 +74.301557 +74.342716 +74.383875 +74.445380 +74.489669 +74.531461 +74.612579 +74.657368 +74.727964 +74.774184 +74.834923 +74.878646 +74.932126 +75.036155 +75.078113 +75.138353 +75.191999 +75.251806 +75.348576 +75.418240 +75.463494 +75.519072 +75.576981 +75.624400 +75.653504 +87.156656 +87.160486 +87.162284 +87.164482 +87.168544 +87.285194 +87.286959 +87.288557 +87.290189 +87.291821 +87.357355 +87.375104 +87.471741 +87.477835 +87.534711 +87.537175 +87.548131 +88.240405 +88.244434 +88.252726 +88.878499 +88.885226 +89.087856 +89.089954 +89.163247 +89.167976 +89.171639 +89.462914 +89.469774 +89.742834 +89.746430 +89.750626 +89.766277 +90.048495 +90.051791 +90.055288 +90.067975 +90.448927 +90.452390 +90.455654 +90.488454 +90.745330 +90.748527 +90.752024 +90.755920 +90.781960 +91.078963 +91.083126 +91.087688 +91.154188 +91.172270 +91.262846 +91.278130 +91.341600 +91.425483 +91.460781 +91.516658 +91.545496 +91.597444 +91.629978 +91.684823 +91.727581 +91.768406 +91.812662 +91.851856 +91.907234 +91.954820 +91.995479 +92.036438 +92.085456 +92.138103 +92.181360 +92.234573 +92.289918 +92.337637 +92.402205 +92.417323 +92.495712 +92.548825 +92.724749 +92.788119 +92.870370 +92.916757 +92.979960 +93.042198 +93.107133 +93.162411 +93.223816 +93.286920 +93.334938 +93.407932 +93.483256 +93.538235 +93.626680 +93.687252 +93.864442 +93.896243 +94.009963 +94.091115 +94.158714 +94.166373 +94.228744 +94.297009 +94.312926 +94.450355 +98.121380 +98.123512 +98.126009 +98.128107 +98.130105 +98.132935 +98.187181 +98.189346 +98.191510 +98.194141 +98.197537 +98.267667 +98.275593 +98.410391 +98.412356 +98.421380 +98.496904 +98.546888 +98.557211 +99.350583 +99.528572 +99.730336 +99.911322 +99.913886 +99.917050 +99.922244 +100.078222 +100.081518 +100.094672 +100.238794 +100.345254 +100.412520 +100.440958 +100.500532 +100.535264 +100.622543 +100.657741 +100.750582 +100.882750 +100.946386 +101.010688 +101.038693 +101.113718 +101.183515 +101.457241 +101.498233 +101.538593 +101.724607 +101.961636 +101.995402 +102.082882 +102.201829 +102.282115 +102.325639 +102.541589 +102.589241 +102.635928 +102.673157 +102.712418 +102.751912 +102.809821 +102.856041 +102.902561 +102.955908 +103.008289 +103.064166 +103.110553 +103.157972 +103.251279 +103.295734 +103.356473 +103.424239 +103.490106 +103.546616 +103.663066 +103.695934 +103.740755 +103.794735 +103.797698 +103.802294 +103.805158 +103.864765 +103.879383 +103.934162 +103.937958 +105.759601 +105.761899 +105.763797 +105.945848 +106.137023 +106.139654 +106.180447 +106.186540 +106.256137 +106.541518 +106.547413 +106.552507 +106.703923 +106.823736 +106.914712 +106.933226 +106.978548 +107.030529 +107.078914 +107.151974 +107.176216 +107.245447 +107.349743 +107.376016 +107.486006 +107.507751 +107.586539 +107.612846 +107.638021 +107.692033 +107.720538 +107.770788 +107.829263 +107.856136 +107.944581 +108.066892 +108.123402 +108.150641 +108.206585 +108.239685 +108.297161 +108.328563 +108.359399 +108.390068 +108.487437 +108.548443 +108.646611 +108.680278 +108.707683 +108.880544 +109.083041 +109.388868 +109.761395 +109.845744 +109.896826 +109.940916 +110.013010 +110.299690 +110.340249 +110.390865 +110.496959 +110.685104 +110.730725 +110.792563 +111.049639 +112.788365 +112.792628 +112.795991 +112.826594 +112.833254 +112.836251 +112.840713 +112.850170 +112.922231 +112.924995 +112.928359 +112.935285 +112.985035 +112.990663 +112.994626 +112.999487 +113.047739 +113.052701 +113.057995 +113.063756 +113.399820 +113.402650 +113.405314 +113.410043 +113.599687 +113.602151 +113.604781 +113.608644 +113.753866 +113.757129 +113.760559 +113.767086 +113.889130 +113.893026 +113.898854 +113.922830 +113.964588 +113.979673 +114.012740 +114.033785 +114.061757 +114.084768 +114.115837 +114.141244 +114.172247 +114.195590 +114.224994 +114.250335 +114.277375 +114.305880 +114.331321 +114.356895 +114.384434 +114.415403 +114.439912 +114.466086 +114.490894 +114.517201 +114.546006 +114.575809 +114.604414 +114.633052 +114.664521 +114.696688 +114.727724 +114.755363 +114.787664 +114.811607 +114.839978 +114.873678 +114.908377 +114.944807 +114.974710 +115.008243 +115.042276 +115.077874 +115.103315 +115.137181 +115.165985 +115.204380 +115.236015 +115.272579 +115.299485 +115.338180 +115.364853 +115.398286 +115.424460 +115.451167 +115.477973 +115.511440 +115.547936 +115.581370 +115.622262 +115.656494 +115.822162 +115.974376 +116.284166 +116.319897 +116.471479 +116.508308 +116.551299 +116.578638 +116.715068 +116.804745 +116.980336 +117.244338 +117.248534 +117.372343 +118.015699 +118.020528 +118.027088 +118.347434 +118.569778 +118.580334 +118.800847 +118.805209 +118.808406 +118.815066 +119.008872 +119.011503 +119.017363 +119.184663 +119.187327 +119.190057 +119.334613 +119.343537 +119.442904 +119.450830 +119.610470 +119.692554 +119.745568 +119.777269 +119.835311 +119.860553 +119.985028 +120.037109 +120.064382 +120.103376 +120.130183 +120.164482 +120.196683 +120.227119 +120.255191 +120.287792 +120.322823 +120.353626 +120.385361 +120.418761 +120.449763 +120.478834 +120.518394 +120.546233 +120.577036 +120.604808 +120.634645 +120.663549 +120.690822 +120.722790 +120.750862 +120.786026 +120.816729 +120.848364 +120.884161 +120.914032 +120.917861 +120.923622 +120.958620 +120.995550 +121.043269 +121.069076 +121.094118 +121.113532 +121.174171 +121.196782 +121.251028 +121.290555 +121.328383 +121.369209 +121.407438 +121.445333 +121.486092 +121.519559 +121.568976 +121.605240 +121.658786 +121.698979 +121.740604 +121.787690 +121.839305 +121.880797 +121.934011 +121.972306 +122.027683 +122.081130 +122.119924 +122.186358 +122.230414 +122.282428 +122.328049 +122.369541 +122.424619 +122.474569 +122.525119 +122.570240 +122.632744 +122.675502 +122.721056 +122.766011 +122.824020 +122.872771 +122.925019 +122.962015 +123.063547 +124.079629 +124.082194 +124.084158 +124.086656 +124.091351 +124.096013 +124.173036 +124.178497 +124.180695 +124.183459 +124.189819 +124.830911 +124.942899 +125.024450 +125.037604 +125.250291 +125.256418 +125.368140 +125.561413 +125.577297 +125.619588 +125.791316 +125.865442 +125.985222 +126.061612 +126.187753 +126.540599 +126.591016 +126.616557 +126.642597 +126.680626 +126.691748 +126.718921 +126.749956 +126.803969 +126.818155 +126.850889 +126.862444 +126.898574 +126.924582 +126.926713 +126.952321 +127.034072 +127.101038 +127.162144 +127.210196 +127.287152 +127.329576 +127.362643 +127.449756 +127.511228 +127.557315 +127.603102 +127.667205 +127.712626 +127.753652 +127.804667 +127.842996 +127.886152 +127.957548 +127.988617 +128.039599 +128.075296 +128.107264 +128.140698 +128.162143 +128.190048 +128.227211 +128.266006 +128.322016 +128.383421 +128.446991 +128.494444 +128.542562 +128.589282 +128.648256 +128.687783 +128.737700 +128.776761 +128.820950 +128.864773 +128.909162 +128.958679 +128.992645 +129.040630 +129.083054 +129.122581 +129.158113 +129.216721 +129.244859 +129.293311 +129.335735 +129.391213 +129.432971 +129.520983 +129.562907 +129.595608 +129.648022 +129.716221 +129.771265 +132.293874 +132.540360 +132.553281 +132.721679 +132.725775 +132.832768 +132.834999 +132.840360 +132.920380 +132.923710 +132.973760 +132.975458 +132.981152 +132.986813 +133.031935 +133.047886 +133.098235 +133.110689 +133.228771 +133.234432 +133.298335 +133.698734 +133.869730 +133.872627 +133.875890 +133.881784 +134.029969 +134.034165 +134.158607 +134.164701 +134.244121 +134.324608 +134.350282 +134.485347 +134.517514 +134.544621 +134.578220 +134.696036 +134.754844 +134.879119 +134.915882 +135.009389 +135.073158 +135.137560 +135.169961 +135.209422 +135.355509 +135.423741 +135.717880 +135.768462 +135.876687 +135.933297 +136.379484 +136.445152 +138.765429 +138.769658 +138.771556 +138.773454 +138.775918 +138.780680 +138.834460 +138.836225 +138.837723 +138.839555 +138.841686 +138.844317 +138.849312 +138.904390 +138.905855 +138.908885 +138.911250 +138.914113 +138.919708 +138.968592 +138.970590 +138.972888 +138.975818 +138.979248 +139.036491 +139.038789 +139.040554 +139.042818 +139.045549 +139.053441 +139.110517 +139.115878 +139.118709 +139.123004 +139.184077 +139.187340 +139.189504 +139.193001 +139.205722 +139.281612 +139.285275 +139.287806 +139.290470 +139.295065 +139.675451 +139.677682 +139.679980 +139.682911 +139.845215 +139.847612 +139.850376 +139.854006 +140.020406 +140.023370 +140.026600 +140.031462 +140.152307 +140.156270 +140.179214 +140.237422 +140.246779 +140.270422 +140.303589 +140.328331 +140.361698 +140.385640 +140.414778 +140.450242 +140.479180 +140.507052 +140.532360 +140.560232 +140.590202 +140.615244 +140.643049 +140.670222 +140.698794 +140.725600 +140.752906 +140.780911 +140.810282 +140.838221 +140.864794 +140.894731 +140.927565 +140.956003 +140.981544 +141.012746 +141.042350 +141.069489 +141.101857 +141.133159 +141.161064 +141.191634 +141.219805 +141.277348 +141.307984 +141.336589 +141.368257 +141.393998 +141.424367 +141.452539 +141.481743 +141.510415 +141.539252 +141.568623 +141.596295 +141.631160 +141.658233 +141.690667 +141.718573 +141.751740 +141.782975 +141.815176 +141.847111 +141.875649 +141.906318 +141.935389 +141.968922 +142.003921 +142.036688 +142.070854 +142.102888 +142.134124 +142.168922 +142.203554 +142.237187 +142.267157 +142.303920 +142.333258 +142.367124 +142.397094 +142.433424 +142.462495 +142.497260 +142.532092 +142.557267 +142.590001 +142.625099 +142.668056 +142.698958 +142.736987 +142.767023 +142.840084 +142.872684 +142.908415 +142.944512 +142.982774 +143.017306 +143.047709 +143.088135 +143.118472 +143.158964 +143.192464 +143.229227 +143.265491 +143.298158 +143.331025 +143.362294 +143.400489 +143.426996 +143.463959 +143.497725 +143.535754 +143.570286 +143.611578 +143.647009 +143.680875 +143.713110 +143.751105 +143.782673 +143.812477 +143.853835 +143.875680 +143.922167 +143.961128 +144.074781 +144.118604 +144.156133 +144.196492 +144.233522 +144.272183 +144.307848 +144.351104 +144.393728 +144.433355 +144.478244 +144.519203 +144.558530 +144.611577 +144.651737 +144.677311 +144.738949 +144.771117 +144.792130 +144.831956 +144.867354 +144.908180 +144.949605 +144.990564 +145.033155 +145.073215 +145.113175 +145.163957 +145.207714 +145.286601 +145.337817 +145.380541 +145.430990 +145.465622 +145.569651 +145.612841 +145.655032 +145.732888 +145.779907 +145.827327 +145.878276 +145.918669 +145.941845 +145.974246 +146.017536 +146.071116 +146.139747 +146.184702 +146.245974 +146.315138 +146.362924 +146.408811 +146.457296 +146.506846 +146.558828 +146.600020 +146.646573 +146.691295 +146.798421 +146.839747 +146.906513 +146.947605 +146.999320 +147.062823 +147.118834 +147.164055 +147.225394 +147.286333 +147.341245 +147.390795 +147.437315 +147.496789 +147.554131 +147.606146 +147.668950 +147.726193 +147.778507 +147.852533 +147.903981 +147.991294 +148.051334 +148.120997 +148.251400 +148.304247 +148.385766 +148.428523 +152.081433 +152.083431 +152.085262 +152.087494 +152.091356 +152.145569 +152.153228 +152.158955 +152.160920 +152.162419 +152.165316 +152.170011 +152.254227 +152.256291 +152.258289 +152.259821 +152.262718 +152.276138 +152.331050 +152.333048 +152.336245 +152.338642 +152.341339 +152.345402 +152.410803 +152.415931 +152.418462 +152.420926 +152.424889 +152.471676 +152.480767 +152.483997 +152.489824 +152.540607 +152.543903 +152.547367 +152.552195 +152.641339 +152.643437 +152.645169 +152.647400 +152.649864 +152.653960 +152.711569 +152.714100 +152.717596 +152.720094 +152.723557 +152.793886 +153.237309 +153.423456 +153.562550 +153.663916 +153.732813 +153.916296 +154.088690 +154.111634 +154.161917 +154.211467 +154.260452 +154.286559 +154.534011 +154.654291 +154.681663 +154.753059 +154.780997 +154.804207 +154.928983 +154.959252 +154.988856 +155.068476 +155.096248 +155.255556 +155.579864 +155.608802 +155.693184 +155.776534 +155.893251 +155.920157 +155.972438 +156.056787 +156.086624 +156.319324 +156.376067 +156.743033 +156.934242 +157.028215 +157.181494 +157.208534 +157.230346 +157.263712 +157.298111 +157.366176 +157.395747 +157.430812 +157.459583 +157.492650 +157.557318 +157.589919 +157.621587 +157.648261 +157.680428 +157.713029 +157.745297 +157.774135 +157.803505 +157.843066 +157.874134 +157.905536 +157.930178 +157.958950 +157.996545 +158.027881 +158.058017 +158.095413 +158.127448 +158.160748 +158.191084 +158.221587 +158.252123 +158.285456 +158.309465 +158.341733 +158.374201 +158.401007 +158.437204 +158.471104 +158.507567 +158.540134 +158.575832 +158.610964 +158.646295 +158.677763 +158.706301 +158.739835 +158.769338 +158.797876 +158.828579 +158.861513 +158.893847 +158.929711 +158.962778 +159.001739 +159.038769 +159.070437 +159.103504 +159.135805 +159.173634 +159.206368 +159.281659 +159.319554 +159.461845 +159.562811 +159.598209 +159.730843 +159.763477 +159.931675 +160.004868 +160.046127 +160.123250 +160.162044 +160.205501 +160.234172 +160.512627 +160.724315 +160.762010 +160.872633 +160.906066 +160.937901 +160.974131 +161.041098 +161.077195 +161.260112 +161.449256 +161.482123 +161.520418 +161.556149 +161.594644 +161.625146 +161.668703 +161.706731 +161.739166 +161.773398 +161.814157 +161.849555 +161.884354 +161.931540 +161.990514 +162.039199 +162.078826 +162.125379 +162.178026 +162.216621 +162.255415 +162.301436 +162.343228 +162.415988 +162.453251 +162.492911 +162.542095 +162.571699 +162.604999 +162.635102 +162.673131 +162.706531 +162.736967 +162.770733 +162.813290 +162.850620 +162.888815 +162.927443 +162.962108 +162.998938 +163.039864 +163.080490 +163.117419 +163.146623 +163.182587 +163.219684 +163.262541 +163.302667 +163.332004 +163.373563 +163.413256 +163.441728 +163.472997 +163.509094 +163.547722 +163.592144 +163.627042 +163.657279 +163.692743 +163.756979 +163.792610 +163.860642 +164.126609 +164.187748 +164.249819 +164.305896 +164.437964 +164.475726 +164.542493 +164.639895 +164.695373 +164.729705 +164.827541 +165.007860 +165.088147 +165.160041 +165.193208 +165.222945 +165.297537 +165.629538 +165.665236 +165.740693 +165.852581 +166.037829 +166.190077 +166.293240 +166.322578 +166.387379 +166.536996 +166.573660 +166.709290 +166.810356 +166.839760 +166.910622 +167.102297 +167.162304 +167.203196 +167.426839 +167.491408 +167.737295 +167.806093 +167.980018 +167.995836 +168.030368 +168.071860 +168.108357 +168.147717 +168.191573 +168.223675 +168.262802 +168.310987 +168.351247 +168.384480 +168.418246 +168.457907 +168.485046 +168.531833 +168.564234 +168.614750 +168.640491 +168.682648 +168.729235 +168.771393 +168.809588 +168.850980 +168.877853 +168.919178 +168.963601 +169.005126 +169.029768 +169.065499 +169.089808 +169.126637 +169.171726 +169.230467 +169.276487 +169.313983 +169.353244 +169.384679 +169.418279 +169.456108 +169.515415 +169.536127 +169.564266 +169.600563 +169.643653 +169.689374 +169.743054 +169.779883 +169.818878 +169.862800 +169.895434 +169.927502 +169.963366 +170.002261 +170.018345 +170.035794 +170.056340 +170.085011 +170.126636 +170.162667 +170.207622 +170.250313 +170.287575 +170.329600 +170.365697 +170.399230 +170.440655 +170.474921 +170.519943 +170.559636 +170.601494 +170.638457 +170.677518 +170.716446 +170.746416 +170.781781 +170.819509 +170.857738 +170.892203 +170.924205 +170.963199 +171.009253 +171.040921 +171.080781 +171.111584 +171.148314 +171.187208 +171.264797 +171.302226 +171.339955 +171.406755 +171.446449 +171.482313 +171.521374 +171.603325 +171.642619 +171.675686 +171.707321 +171.733661 +171.768326 +171.813448 +171.872389 +171.912082 +171.961500 +172.003990 +172.033294 +172.084210 +172.127134 +172.157836 +172.198762 +172.244983 +172.291969 +172.333594 +172.372055 +172.400427 +172.435525 +172.489271 +172.533061 +172.581246 +172.625868 +172.672155 +172.711116 +172.749644 +172.783377 +172.826534 +172.859900 +172.901692 +172.943483 +172.981179 +173.015678 +173.059600 +173.097130 +173.134759 +173.175118 +173.213913 +173.249577 +173.285608 +173.321738 +173.348578 +173.379680 +173.415644 +173.454805 +173.490602 +173.527399 +173.555637 +173.592434 +173.624735 +173.662497 +173.702024 +173.739054 +173.774218 +173.811415 +173.845514 +173.880878 +173.916942 +173.955037 +173.997328 +174.030162 +174.064028 +174.089536 +174.126899 +174.163229 +174.195197 +174.234524 +174.312679 +174.350142 +174.387871 +174.425500 +174.460099 +174.499093 +174.524268 +174.556835 +174.765726 +174.924767 +174.966025 +175.008916 +175.042915 +175.145979 +175.353837 +175.476215 +175.558432 +175.680277 +175.990900 +176.035954 +176.107416 +176.142681 +176.303220 +176.482874 +176.569187 +176.610979 +176.731258 +176.809280 +176.852437 +176.884205 +176.924032 +176.976779 +177.017872 +177.050972 +177.088567 +177.117605 +177.152970 +177.197925 +177.235254 +177.273316 +177.322766 +177.356166 +177.381008 +177.419203 +177.459862 +177.497258 +177.529792 +177.559862 +177.602653 +177.632590 +177.674414 +177.722599 +177.769120 +177.811877 +177.847974 +177.885070 +177.914374 +177.959562 +178.038517 +178.079942 +178.120701 +178.161693 +178.191597 +178.219535 +178.263092 +178.307014 +178.353501 +178.386968 +178.424230 +178.469818 +178.507980 +178.543911 +178.576345 +178.611709 +178.649871 +178.696658 +178.724763 +178.771683 +178.824496 +178.867986 +178.901719 +178.936717 +178.974546 +179.001619 +179.051369 +179.106448 +179.156997 +179.197257 +179.244143 +179.285102 +179.314040 +179.356331 +179.390363 +179.435418 +179.478375 +179.517303 +179.553900 +179.594093 +179.624229 +179.671815 +179.715405 +179.755831 +179.787000 +179.816970 +179.859494 +179.910276 +179.952967 +179.989697 +180.026893 +180.058428 +180.090729 +180.124495 +180.169317 +180.240712 +180.267685 +180.295657 +180.335317 +180.366686 +180.408944 +180.437715 +180.471348 +180.515304 +180.558694 +180.596589 +180.637082 +180.683602 +180.720832 +180.748038 +180.791561 +180.834551 +180.870948 +180.918467 +180.955297 +181.002716 +181.048071 +181.085533 +181.113805 +181.143841 +181.173578 +181.214837 +181.251600 +181.295123 +181.332220 +181.362622 +181.409709 +181.447704 +181.486032 +181.519432 +181.556062 +181.594657 +181.623428 +181.664487 +181.707810 +181.747604 +181.786731 +181.816335 +181.851067 +181.894490 +181.920431 +181.949801 +181.977374 +182.014803 +182.060124 +182.095089 +182.126624 +182.165219 +182.208376 +182.249501 +182.290860 +182.329954 +182.366917 +182.408342 +182.446537 +182.485132 +182.526990 +182.561156 +182.594323 +182.627856 +182.652232 +182.698452 +182.771945 +183.279004 +183.299084 +183.391492 +183.410639 +183.482867 +183.520762 +183.580636 +183.619597 +183.656326 +183.719530 +183.748900 +183.794954 +183.828920 +183.868081 +183.897285 +183.941674 +183.978437 +184.059656 +184.094521 +184.133615 +184.159756 +184.199649 +184.233515 +184.267748 +184.304411 +184.338577 +184.365150 +184.394421 +184.433782 +184.470511 +184.505876 +184.546169 +184.571377 +184.610804 +184.645903 +184.674474 +184.716399 +184.750631 +184.785796 +184.824024 +184.863518 +184.898983 +184.929852 +184.965882 +185.002779 +185.037577 +185.074307 +185.108872 +185.140674 +185.173408 +185.207907 +185.243171 +185.274407 +185.308406 +185.345069 +185.381466 +185.412335 +185.448333 +185.478269 +185.506408 +185.570211 +185.594287 +185.628053 +185.657190 +185.688359 +185.722991 +185.763184 +185.795652 +185.867247 +185.900080 +185.932248 +185.968179 +186.006141 +186.041772 +186.078502 +186.114932 +186.152062 +186.189990 +186.227886 +186.264849 +186.302178 +186.331182 +186.372574 +186.406573 +186.440806 +186.469411 +186.508238 +186.546167 +186.579667 +186.617929 +186.653826 +186.688858 +186.725288 +186.756290 +186.790589 +186.823889 +186.864548 +186.904575 +186.937575 +187.019593 +187.058954 +187.099347 +187.134711 +187.204408 +187.239806 +187.278834 +187.320325 +187.360951 +187.402277 +187.449729 +187.481964 +187.522690 +187.568710 +187.613698 +187.654891 +187.684827 +187.725786 +187.769875 +187.801111 +187.844667 +187.891787 +187.942270 +187.987091 +188.029083 +188.069575 +188.104074 +188.140238 +188.169409 +188.207770 +188.243068 +188.290621 +188.334377 +188.372106 +188.410001 +188.452026 +188.487457 +188.521656 +188.557354 +188.600810 +188.690953 +188.736841 +188.779731 +188.807004 +188.850860 +188.886724 +188.918093 +188.958552 +188.994616 +189.025285 +189.058852 +189.093650 +189.125285 +189.156154 +189.190886 +189.227117 +189.260983 +189.289921 +189.331579 +189.367143 +189.410167 +189.442035 +189.474702 +189.513397 +189.549894 +189.587556 +189.626084 +189.653157 +189.684692 +189.711432 +189.734642 +189.762547 +189.800343 +189.834642 +189.872704 +189.910100 +189.949827 +189.986690 +190.026417 +190.061015 +190.090852 +190.132111 +190.170739 +190.203573 +190.232843 +190.261948 +190.296147 +190.333076 +190.367442 +190.401042 +190.433043 +190.469407 +190.504605 +190.537072 +190.567508 +190.598444 +190.631911 +190.663712 +190.694015 +190.724751 +190.763079 +190.775667 +190.804871 +190.848960 +190.887255 +190.924018 +190.968707 +191.006702 +191.044664 +191.081660 +191.117358 +191.156952 +191.197544 +191.235806 +191.272603 +191.313861 +191.357351 +191.393715 +191.430311 +191.472036 +191.505603 +191.542266 +191.580927 +191.613561 +191.658916 +191.690884 +191.724317 +191.760248 +191.791017 +191.841167 +191.882758 +191.921986 +191.974800 +192.010764 +192.057450 +192.130244 +192.231076 +192.276631 +192.311096 +192.602538 +192.718455 +192.765608 +192.936470 +192.977962 +193.016191 +193.069504 +193.108631 +193.153287 +193.271335 +193.375231 +193.440532 +193.493846 +193.768604 +193.824415 +194.017821 +194.106333 +194.310328 +194.420485 +194.462842 +194.579159 +194.641031 +195.182356 +195.756647 +195.916088 +196.133803 +196.211126 +196.244126 +196.362674 +196.449088 +196.502334 +196.539197 +196.589480 +196.682654 +196.743393 +196.846090 +196.910559 +196.978924 +197.031172 +197.120016 +197.167668 +197.220649 +197.262007 +197.390012 +197.443792 +197.481154 +197.536865 +197.596239 +197.676292 +197.743159 +197.838630 +197.916052 +197.988580 +198.036499 +198.039063 +198.141660 +198.242959 +198.248220 +198.312589 +198.363804 +198.462972 +198.523744 +198.575059 +198.688313 +198.742858 +198.802365 +198.851749 +198.896138 +198.935632 +198.992641 +199.065102 +199.122012 +199.175558 +199.212788 +199.259441 +199.312255 +199.347353 +199.387946 +199.441192 +199.474193 +199.523843 +199.598668 +199.656677 +199.709291 +199.744289 +199.774992 +199.819913 +199.876057 +199.926373 +199.977789 +200.038461 +200.091741 +200.134199 +200.180253 +200.227306 +200.287445 +200.348018 +200.400099 +200.449117 +200.494105 +200.535963 +200.568064 +200.668630 +200.732233 +200.848517 +201.027804 +201.254511 +201.367531 +201.517081 +201.603062 +201.703728 +202.028003 +202.081150 +202.132632 +202.180517 +202.311453 +202.341023 +202.522408 +202.753743 +202.793537 +202.825705 +202.927836 +203.115981 +203.160203 +203.210320 +203.249547 +203.554109 +203.599130 +203.635827 +203.809320 +203.929766 +204.021408 +204.230632 +204.276985 +204.384444 +204.478983 +204.624571 +204.763631 +204.840221 +204.883478 +204.935426 +205.083078 +205.132828 +205.178383 +205.222505 +205.250844 +205.305522 +205.344383 +205.401826 +205.449445 +205.498296 +205.534060 +205.568659 +205.611682 +205.688506 +205.737723 +205.773787 +205.816544 +205.860267 +205.913247 +205.956537 +206.005988 +206.051009 +206.093767 +206.142684 +206.180913 +206.222371 +206.255438 +206.297296 +206.328898 +206.361099 +206.402158 +206.451742 +206.487073 +206.541252 +206.577649 +206.617043 +206.665095 +206.710915 +206.757036 +206.806187 +206.846713 +206.894232 +206.932627 +206.977116 +207.015544 +207.051608 +207.097395 +207.145281 +207.199393 +207.255204 +207.309516 +207.415111 +207.467325 +207.511148 +207.565327 +207.622103 +207.671754 +207.714844 +207.755303 +207.789702 +207.919073 +207.962896 +208.017974 +208.063695 +208.115676 +208.207917 +208.250841 +208.344980 +208.433458 +208.682176 +208.726564 +208.764826 +208.820504 +208.866158 +208.964893 +209.100424 +209.157533 +209.311479 +209.350340 +209.521236 +209.577946 +209.645545 +209.689267 +209.736953 +209.781742 +209.833090 +209.875847 +209.926663 +209.976780 +210.025464 +210.081708 +210.136520 +210.184139 +210.232057 +210.285138 +210.338984 +210.372484 +210.439017 +210.466489 +210.570219 +210.635487 +210.694495 +210.744112 +210.789067 +210.838684 +210.884438 +210.936952 +210.980375 +211.030392 +211.076046 +211.139582 +211.180508 +211.195426 +211.242346 +211.301853 +211.348473 +211.401620 +211.446175 +211.491097 +211.537750 +211.579675 +211.624197 +211.674181 +211.716472 +211.759495 +211.805616 +211.862092 +211.905349 +211.926162 +211.994360 +212.015639 +212.179641 +212.223264 +212.292062 +212.336018 +212.383970 +212.435918 +212.483570 +212.535885 +212.585935 +212.636251 +212.682571 +212.733187 +212.776610 +212.827060 +212.872215 +212.924329 +212.966920 +213.009710 +213.061259 +213.104749 +213.144975 +213.195058 +213.232920 +213.274645 +213.319534 +213.358961 +213.396590 +213.446706 +213.486633 +213.536550 +213.576510 +213.620033 +213.661658 +213.708910 +213.754198 +213.799786 +213.842011 +213.930755 +214.033552 +214.077208 +214.127591 +214.316302 +214.346938 +214.403182 +214.448437 +214.807544 +214.940011 +215.021097 +215.167018 +215.209542 +215.494956 +215.542009 +215.764220 +215.814370 +215.973943 +216.027256 +216.069214 +216.175908 +216.221196 +216.260257 +216.325058 +216.378904 +216.444472 +216.496287 +216.540609 +216.627389 +216.689360 +216.748867 +216.831019 +216.857459 +216.902713 +216.948701 +216.996486 +217.051132 +217.108874 +217.161554 +217.221161 +217.275707 +217.323925 +217.414501 +217.464651 +217.517232 +217.570412 +217.600382 +217.638677 +217.681933 +217.719562 +217.816998 +217.886895 +217.931550 +217.967548 +217.997384 +218.057890 +218.118397 +218.192323 +218.364484 +218.916265 +219.473507 +219.699081 +219.863516 +219.913133 +220.128151 +220.187026 +220.327852 +220.452826 +220.529583 +220.587425 +220.647199 +220.797881 +220.839906 +220.903176 +220.959053 +221.038074 +221.091121 +221.547797 +221.597447 +221.829682 +222.035176 +222.112265 +222.171306 +222.247297 +222.638672 +222.708635 +222.887356 +223.075035 +223.307236 +230.074029 +230.075894 +230.077692 +230.080256 +230.084985 +232.418649 +232.527873 +232.529937 +232.532068 +233.020579 +233.205061 +233.209624 +233.432933 +233.611888 +233.614751 +233.617748 +233.623476 +233.769097 +233.772327 +233.775890 +233.785347 +233.908058 +233.912154 +233.919646 +233.968364 +233.981118 +233.996236 +234.034165 +234.055876 +234.089443 +234.107891 +234.130535 +234.157308 +234.173092 +234.201964 +234.225473 +234.258107 +234.282150 +234.312753 +234.349716 +234.389809 +234.418813 +234.454777 +234.485480 +234.519546 +234.553378 +234.591474 +234.625839 +234.656042 +234.687677 +234.721044 +234.755609 +234.784880 +234.811620 +234.847784 +234.873591 +234.905692 +234.939059 +234.974990 +235.006325 +235.039625 +235.066798 +235.125872 +235.160371 +235.187743 +235.207590 +235.245919 +235.267197 +235.296967 +235.342422 +235.372625 +235.413751 +235.443920 +235.475389 +235.507257 +235.530600 +235.565432 +235.602162 +235.655142 +235.732265 +235.776754 +235.825006 +235.864999 +235.912451 +235.946251 +235.982048 +236.024339 +236.047982 +236.078785 +236.109987 +236.157673 +236.200463 +236.249647 +236.290007 +236.344519 +236.396134 +236.431632 +236.473590 +236.518312 +236.563866 +236.602494 +236.643520 +236.693270 +236.733030 +236.784279 +236.821242 +236.863932 +236.907755 +236.951511 +236.990406 +237.030799 +237.079017 +237.100662 +237.142354 +237.182347 +237.221674 +237.254674 +237.314614 +237.362333 +237.398930 +237.437891 +237.482047 +237.524138 +237.577318 +237.621474 +237.673688 +237.720442 +237.760435 +237.812283 +237.862866 +237.918843 +237.957071 +238.003691 +238.054940 +238.109785 +238.159169 +238.207054 +238.253908 +238.300761 +238.358203 +238.398230 +238.445083 +238.495965 +238.542918 +238.601693 +238.648879 +238.677850 +238.726135 +238.750777 +238.837890 +238.865129 +239.942451 +239.944549 +239.946547 +239.949377 +239.956736 +240.595830 +240.598461 +240.601358 +240.611281 +240.821671 +240.824135 +240.826899 +240.832193 +241.001824 +241.004521 +241.007418 +241.014211 +241.177648 +241.180844 +241.184074 +241.190435 +241.320937 +241.324834 +241.329762 +241.371454 +241.394997 +241.429828 +241.451407 +241.487537 +241.510981 +241.541284 +241.568856 +241.595429 +241.624134 +241.650241 +241.683308 +241.713211 +241.738286 +241.767790 +241.795363 +241.829662 +241.854503 +241.880044 +241.902655 +241.933824 +241.962362 +241.994363 +242.022568 +242.055336 +242.094829 +242.123501 +242.155302 +242.189901 +242.217107 +242.249508 +242.278512 +242.308249 +242.335322 +242.361463 +242.390933 +242.419971 +242.452605 +242.485372 +242.516108 +242.549041 +242.617706 +242.643447 +242.662861 +242.676680 +242.715941 +242.748309 +242.788402 +242.825098 +242.857799 +242.895495 +242.929727 +242.962827 +242.989867 +243.015974 +243.055102 +243.092664 +243.122035 +243.152770 +243.183706 +243.216973 +243.237486 +243.280243 +243.351838 +243.390499 +243.427962 +243.463293 +243.505484 +243.547908 +243.590632 +243.630193 +243.667921 +243.708314 +243.747442 +243.784671 +243.823299 +243.857065 +243.898058 +243.941581 +243.984338 +244.024298 +244.069653 +244.107082 +244.150172 +244.187635 +244.219503 +244.261760 +244.284105 +244.313275 +244.349173 +244.361893 +244.411877 +244.439349 +244.807281 +244.845842 +245.153534 +245.326561 +245.417204 +245.458096 +245.642611 +245.742212 +245.845009 +246.027859 +246.066287 +246.105415 +246.307912 +246.553999 +247.024795 +247.026826 +247.029756 +247.036882 +247.505613 +247.508011 +247.510475 +247.514438 +247.799419 +247.801584 +247.805180 +247.997621 +247.999885 +248.002249 +248.005713 +248.117734 +248.120964 +248.125826 +248.143408 +248.303581 +248.306811 +248.311240 +248.321863 +248.432785 +248.437813 +248.446138 +248.479039 +248.505446 +248.538446 +248.564387 +248.590760 +248.619598 +248.649568 +248.682202 +248.708576 +248.737547 +248.764953 +248.799118 +248.825292 +248.854530 +248.884000 +248.941676 +248.972611 +249.001949 +249.030820 +249.058192 +249.089062 +249.116234 +249.144506 +249.177739 +249.208942 +249.240077 +249.272112 +249.298285 +249.321962 +249.357460 +249.381169 +249.412105 +249.431852 +249.465918 +249.491825 +249.525158 +249.558092 +249.585997 +249.615934 +249.683866 +249.715634 +249.748635 +249.786463 +249.814469 +249.848035 +249.879604 +249.912637 +249.946836 +249.982001 +250.013703 +250.041375 +250.073010 +250.110672 +250.143040 +250.175308 +250.210273 +250.246003 +250.282400 +250.315501 +250.346869 +250.384665 +250.420795 +250.456992 +250.488094 +250.523592 +250.558990 +250.586896 +250.616699 +250.638277 +250.680702 +250.709606 +250.741075 +250.773775 +250.822160 +250.862986 +250.901747 +250.936512 +250.978703 +251.019130 +251.050365 +251.096053 +251.136179 +251.177971 +251.217031 +251.259689 +251.299615 +251.337178 +251.373075 +251.415999 +251.457790 +251.498550 +251.535146 +251.587960 +251.632216 +251.676938 +251.720361 +251.765183 +251.811636 +251.854460 +251.906708 +251.954626 +251.995585 +252.045602 +252.096151 +252.141872 +252.197050 +252.243737 +252.288625 +252.326354 +252.382265 +252.434779 +252.487493 +252.535179 +252.586261 +252.632581 +252.685961 +252.734779 +252.816730 +252.859654 +252.945701 +252.968645 +253.040806 +253.075371 +253.115864 +253.343936 +253.547299 +253.637442 +253.794518 +253.824022 +253.903043 +253.908204 +254.050628 +254.053192 +254.066679 +254.116396 +254.234944 +254.237441 +254.314764 +255.187690 +255.297580 +255.302808 +255.621523 +255.623820 +255.626085 +255.629215 +255.654057 +255.841669 +255.843933 +255.846198 +255.849761 +255.878832 +256.030813 +256.033543 +256.040603 +256.185092 +256.192118 +256.201842 +256.307935 +256.312997 +256.320290 +256.351026 +256.376633 +256.405271 +256.430280 +256.457119 +256.480496 +256.510066 +256.534109 +256.562347 +256.586523 +256.613463 +256.641002 +256.671705 +256.700975 +256.727549 +256.754056 +256.783726 +256.810099 +256.835141 +256.863679 +256.891485 +256.917692 +256.945297 +256.970572 +256.995680 +257.019223 +257.045830 +257.073169 +257.098144 +257.118058 +257.145331 +257.162347 +257.191351 +257.215261 +257.263645 +257.291851 +257.327182 +257.359549 +257.390252 +257.421388 +257.446696 +257.480362 +257.515493 +257.731244 +257.761014 +257.925350 +257.992649 +258.027115 +258.120621 +258.177331 +258.194947 +258.248360 +258.356019 +258.405569 +258.481193 +258.555153 +258.603038 +258.761080 +258.859348 +259.054719 +259.186654 +259.528645 +259.569437 +259.610996 +259.810896 +259.854685 +259.970303 +260.009630 +260.141964 +260.373799 +260.477595 +260.792147 +260.850155 +261.131807 +261.287784 +261.472233 +261.680890 +261.737700 +261.867370 +262.277293 +262.738399 +263.007796 +263.222514 +263.224579 +263.390979 +263.535534 +263.694075 +263.796739 +264.075360 +264.100302 +264.128374 +264.154881 +264.182586 +264.209326 +264.240295 +264.267202 +264.292476 +264.318583 +264.346722 +264.373861 +264.400168 +264.430638 +264.458610 +264.487048 +264.518617 +264.545523 +264.575260 +264.602999 +264.632669 +264.663405 +264.691743 +264.711057 +264.722046 +264.749585 +264.775426 +264.799835 +264.823711 +264.851650 +264.880388 +264.907860 +264.938097 +264.963704 +264.987381 +265.021014 +265.050085 +265.080288 +265.116951 +265.146455 +265.175026 +265.206062 +265.236964 +265.269199 +265.298802 +265.329205 +265.360574 +265.388146 +265.422612 +265.457110 +265.487746 +265.517517 +265.554047 +265.584849 +265.620280 +265.653247 +265.687447 +265.724942 +265.756045 +265.788878 +265.826874 +265.864236 +265.895172 +265.927706 +265.962338 +265.996171 +266.025342 +266.065801 +266.097569 +266.135398 +266.169231 +266.197936 +266.231202 +266.359740 +266.432401 +266.515817 +266.630536 +266.760406 +266.841192 +266.881351 +266.964535 +267.009623 +267.211421 +267.536662 +267.615250 +267.651580 +267.686845 +267.737395 +267.983115 +268.163168 +268.259106 +268.446951 +268.498166 +268.524840 +268.543621 +268.579219 +268.611986 +268.656142 +268.682482 +268.736395 +268.785279 +268.857540 +268.897700 +268.955275 +269.096168 +269.146251 +269.193637 +269.260037 +269.316414 +269.368096 +269.421242 +269.472458 +269.527070 +269.578885 +269.649381 +269.680183 +269.713183 +269.738392 +269.792770 +269.812717 +269.829800 +269.900596 +269.921175 +269.990173 +269.995301 +270.060569 +270.071924 +271.559435 +271.561666 +271.563898 +271.567294 +272.215645 +272.217943 +272.220007 +272.223571 +272.496930 +272.499328 +272.501526 +272.505355 +272.729997 +272.732361 +272.734459 +272.737523 +272.746980 +272.923370 +272.925535 +272.927699 +272.930796 +272.938688 +273.109717 +273.111948 +273.114412 +273.118009 +273.269024 +273.272820 +273.277382 +273.291635 +273.402490 +273.407219 +273.416110 +273.453939 +273.479347 +273.510049 +273.536223 +273.564162 +273.590902 +273.615710 +273.643083 +273.674984 +273.731827 +273.759700 +273.789936 +273.814978 +273.841751 +273.869490 +273.899460 +273.929097 +273.951541 +273.980845 +274.014778 +274.040385 +274.075350 +274.101358 +274.130229 +274.164195 +274.191934 +274.223002 +274.256769 +274.285007 +274.318673 +274.353372 +274.379213 +274.412546 +274.442982 +274.475583 +274.507551 +274.541051 +274.576882 +274.604720 +274.636688 +274.673984 +274.705020 +274.740085 +274.770255 +274.803088 +274.829529 +274.860831 +274.897261 +274.926565 +274.963195 +274.991267 +275.032825 +275.061796 +275.230294 +275.265958 +275.300257 +275.340817 +275.451506 +275.488236 +275.563028 +275.708083 +275.742648 +275.785339 +275.815675 +275.855735 +275.889068 +276.192831 +276.223433 +276.362994 +276.448408 +276.487369 +276.618371 +276.704185 +276.788201 +276.831591 +276.932590 +277.187235 +277.223932 +277.226829 +277.230292 +277.232856 +277.308947 +277.313542 +277.362926 +277.365057 +277.367222 +277.370019 +277.425264 +277.427928 +277.431724 +277.475613 +277.519536 +277.550338 +277.616206 +277.622100 +277.624597 +277.692097 +277.695726 +277.705616 +278.252869 +278.255166 +278.259928 +278.265323 +278.627893 +278.630024 +278.632222 +278.635252 +278.644010 +278.895325 +278.897457 +278.899555 +278.902651 +278.911143 +279.120433 +279.122798 +279.125029 +279.128525 +279.150736 +279.320533 +279.323064 +279.329224 +279.351968 +279.425295 +279.428592 +279.432887 +279.445208 +279.545175 +279.550370 +279.564256 +279.569218 +279.658228 +279.667786 +279.693693 +279.733686 +279.795591 +279.822964 +279.855864 +279.882071 +279.917635 +279.943177 +279.984169 +280.006613 +280.046506 +280.059160 +280.098621 +280.130522 +280.165487 +280.198621 +280.232787 +280.260625 +280.297322 +280.326326 +280.356097 +280.388164 +280.418201 +280.454165 +280.484801 +280.515004 +280.545673 +280.610442 +280.637914 +280.670215 +280.695024 +280.724228 +280.756296 +280.779673 +280.812173 +280.845340 +280.874811 +280.911307 +280.945074 +280.978007 +281.011474 +281.047371 +281.085866 +281.122696 +281.164754 +281.203215 +281.238913 +281.272945 +281.314737 +281.345673 +281.390361 +281.427524 +281.514071 +281.789961 +281.838613 +281.875775 +281.968849 +282.010074 +282.047270 +282.105978 +282.293923 +282.331486 +282.592691 +282.641376 +282.648935 +282.779104 +282.784899 +282.865085 +282.872977 +283.814135 +283.817998 +284.079603 +284.081834 +284.084098 +284.087262 +284.098284 +284.267714 +284.269979 +284.272110 +284.275340 +284.281800 +284.428220 +284.430551 +284.433082 +284.436545 +284.446735 +284.592289 +284.594887 +284.597717 +284.601747 +284.710837 +284.714167 +284.718263 +284.727721 +284.821960 +284.827421 +284.837477 +284.871743 +284.892356 +284.948100 +284.974307 +284.997550 +285.049465 +285.071177 +285.104743 +285.131183 +285.158323 +285.183797 +285.210371 +285.235879 +285.264949 +285.289525 +285.345535 +285.371776 +285.399282 +285.425622 +285.454127 +285.482032 +285.506807 +285.533780 +285.564916 +285.591922 +285.619894 +285.648565 +285.678036 +285.704609 +285.732914 +285.766547 +285.790756 +285.822458 +285.852295 +285.881299 +285.934146 +285.998648 +286.025222 +286.082531 +286.144169 +286.227952 +286.261319 +286.343736 +286.432747 +286.463217 +286.497283 +286.796916 +286.830982 +286.964715 +286.997449 +287.168078 +287.515164 +287.551694 +287.591654 +287.690921 +287.727151 +287.758220 +287.941270 +287.971107 +288.117727 +288.150461 +288.187024 +288.222755 +288.255289 +288.289289 +288.325919 +288.365546 +288.396148 +288.444433 +288.493151 +288.578799 +288.613498 +288.668576 +288.709168 +288.755589 +288.792485 +288.838572 +288.872605 +288.908302 +288.935475 +288.970707 +289.001476 +289.027483 +289.070307 +289.086091 +289.162448 +289.172471 +289.178832 +289.222122 +289.254056 +289.298778 +289.328149 +289.394682 +289.424752 +289.492418 +289.495714 +289.501076 +289.553823 +289.556354 +289.608568 +289.616460 +294.071634 +294.073432 +294.075497 +294.077495 +294.079826 +294.083289 +294.140099 +294.143129 +294.146059 +294.148291 +294.150755 +294.155383 +294.214757 +294.218487 +294.223582 +294.227545 +294.281391 +294.284221 +294.288750 +294.291481 +294.294511 +294.306665 +294.340631 +294.342163 +294.344761 +294.348790 +294.354018 +294.410128 +294.412992 +294.416256 +294.419652 +294.424947 +294.478627 +294.480558 +294.483488 +294.486685 +294.490615 +295.886417 +295.888748 +295.891146 +295.894110 +296.074063 +296.076161 +296.078492 +296.081555 +296.423347 +296.425777 +296.427975 +296.431705 +296.711025 +296.713656 +296.715987 +296.719483 +296.926476 +296.929107 +296.931804 +296.935933 +297.128740 +297.131604 +297.134601 +297.139663 +297.310392 +297.313489 +297.316852 +297.323013 +297.493708 +297.497105 +297.500302 +297.510325 +297.633901 +297.637997 +297.643925 +297.660408 +297.678590 +297.713255 +297.733801 +297.759542 +297.812689 +297.877924 +297.881054 +297.891510 +297.929173 +297.958443 +297.988347 +298.051084 +298.053115 +298.055979 +298.059942 +298.067634 +298.124311 +298.126342 +298.179056 +298.196438 +298.245523 +298.247454 +298.251916 +298.314587 +298.320281 +298.715053 +298.721413 +298.729938 +298.837830 +298.849351 +298.895006 +298.922478 +298.963903 +299.002531 +299.037097 +299.068865 +299.101899 +299.144156 +299.176824 +299.214253 +299.249118 +299.291942 +299.330037 +299.364935 +299.397636 +299.436697 +299.472594 +299.513453 +299.548019 +299.586181 +299.619314 +299.650183 +299.696637 +299.730703 +299.771495 +299.807692 +299.846320 +299.884382 +299.926573 +299.966167 +300.003663 +300.041458 +300.076290 +300.112487 +300.156510 +300.195204 +300.231834 +300.275158 +300.313086 +300.346919 +300.394039 +300.430802 +300.470595 +300.504894 +300.548983 +300.584981 +300.619280 +300.675923 +300.712653 +300.782017 +300.820312 +300.880252 +300.910855 +300.969529 +301.013052 +301.053911 +301.098700 +301.155177 +301.319545 +301.596335 +301.701663 +301.752146 +301.883781 +302.142222 +302.304027 +302.346850 +302.459737 +302.557773 +302.979051 +303.141655 +303.190839 +303.244219 +303.301828 +305.828332 +305.830796 +305.832694 +305.835125 +305.839021 +306.044249 +306.046514 +306.048179 +306.050077 +306.052008 +306.119074 +306.123004 +306.125401 +306.127899 +306.131529 +306.178182 +306.180213 +306.183943 +306.187106 +306.191702 +306.253573 +306.256537 +306.260566 +306.314645 +306.319274 +306.323869 +306.423769 +306.426467 +306.429430 +306.432860 +306.445081 +306.481245 +307.311214 +307.313978 +307.316776 +307.323036 +307.877514 +307.880711 +307.883875 +309.729860 +309.731991 +309.733823 +309.735987 +309.738818 +309.931192 +309.938052 +309.940782 +310.002687 +310.010413 +310.139050 +310.143513 +313.526526 +313.532986 +313.540346 +313.692593 +313.748704 +313.891461 +313.893625 +313.896289 +313.904448 +313.958927 +313.965520 +313.968051 +314.036482 +314.101917 +314.111407 +314.260958 +314.267385 +315.205912 +315.208876 +315.212172 +315.228523 +315.447836 +315.451100 +315.454530 +315.463654 +315.630087 +315.633484 +315.636747 +315.643674 +315.787163 +315.790593 +315.794489 +315.805345 +315.943840 +315.950134 +315.999284 +316.011339 +316.044373 +316.079138 +316.106344 +316.136414 +316.168315 +316.169980 +316.199650 +316.271745 +316.311139 +316.388528 +316.539910 +316.578371 +316.659590 +316.699150 +316.782267 +317.058324 +317.104145 +317.372510 +317.444638 +317.488394 +317.631950 +317.805310 +318.858522 +318.862452 +318.865915 +319.074240 +319.077137 +319.081499 +319.085329 +319.140274 +319.142838 +319.208039 +319.283797 +319.367812 +319.374106 +319.468578 +319.474406 +323.826916 +323.834708 +323.952856 +323.954854 +324.154588 +324.157884 +324.159849 +324.232709 +324.234408 +324.308833 +324.316692 +324.319656 +324.389386 +324.458983 +324.463045 +324.465909 +324.468473 +324.472902 +324.541034 +324.543099 +324.546395 +326.961711 +328.033605 +328.171400 +328.177827 +328.249655 +328.257547 +328.329209 +328.334903 +328.337600 +328.340164 +328.418786 +328.421683 +328.484320 +328.486252 +328.489482 +328.495509 +328.732505 +328.735102 +328.805166 +328.811393 +328.814057 +331.681819 +331.685083 +331.810924 +331.815253 +331.817317 +331.820214 +332.024110 +332.025675 +332.027840 +332.029738 +332.031603 +332.034533 +332.233967 +332.235565 +332.237430 +332.239295 +332.241426 +332.244556 +332.315918 +332.321746 +332.324276 +332.327007 +332.336231 +332.580953 +333.742390 +333.745221 +333.747185 +333.749217 +333.751548 +333.755677 +334.051581 +334.238627 +334.316049 +334.324574 +334.329969 +334.408290 +334.410754 +334.490808 +334.496569 +334.498766 +334.502196 +336.438325 +336.440856 +336.442887 +336.444685 +336.447349 +336.451878 +336.525571 +336.527635 +336.530266 +336.532397 +336.611119 +336.613416 +336.616014 +336.618311 +336.621308 +336.711551 +336.714349 +336.716546 +336.719610 +336.794202 +336.796533 +336.798864 +336.801062 +336.803359 +336.807788 +336.980615 +336.984212 +336.986509 +336.988441 +336.990805 +336.994102 +337.089107 +337.094035 +337.096599 +337.100762 +338.484377 +338.486541 +338.490504 +339.365128 +339.367126 +339.372887 +340.863096 +340.865893 +340.867858 +340.870122 +340.874950 +340.992067 +341.205386 +341.207551 +341.210515 +341.212346 +341.214943 +341.697327 +341.699625 +341.703854 +341.706818 +341.965492 +341.968456 +341.970487 +341.972585 +341.974750 +341.978679 +342.433957 +342.436121 +342.665025 +342.666890 +342.668655 +342.670387 +342.672651 +342.675715 +342.993397 +342.995361 +342.997859 +343.380642 +343.425797 +343.428195 +343.430059 +343.432124 +343.434455 +343.440316 +343.729859 +343.732290 +343.734388 +343.736852 +343.742014 +343.967055 +344.062360 +344.064391 +344.066189 +344.068087 +344.070652 +344.076079 +344.393628 +344.395793 +344.397724 +344.399722 +344.402919 +344.678410 +344.680441 +344.682073 +344.683938 +344.686435 +344.690831 +345.704316 +345.884070 +345.886068 +345.887899 +345.896957 +346.458195 +346.464622 +346.659493 +346.662324 +346.666720 +346.669350 +346.769916 +346.986932 +346.991961 +346.995690 +348.003548 +348.006412 +348.413005 +348.415702 +348.421197 +348.876674 +349.523560 +349.527689 +349.530020 +349.532950 +351.416931 +351.602179 +351.603911 +351.605776 +351.607640 +351.611403 +351.614367 +351.944203 +351.947400 +351.949698 +351.951796 +351.954427 +352.230883 +352.232648 +352.234246 +352.236178 +352.238109 +352.240673 +352.245868 +352.739807 +352.747866 +352.750297 +353.145901 +353.148365 +353.150429 +353.152594 +353.158921 +354.819359 +354.821323 +356.718891 +356.722420 +356.724452 +357.374335 +357.378930 +357.384424 +359.368672 +359.371102 +359.375465 +359.380593 +360.023816 +360.329710 +360.331508 +360.333506 +360.337735 +360.340965 +362.706730 +362.710926 +362.718518 +363.167802 +363.477126 +363.481188 +363.483319 +363.485784 +364.500868 +364.503998 +364.507960 +364.848753 +364.852682 +364.854414 +364.859875 +365.123611 +365.127340 +365.131203 +365.134633 +365.489378 +365.492075 +365.498569 +365.502099 +365.603431 +365.607493 +365.695738 +365.783317 +365.797969 +365.961938 +365.963404 +366.131069 +366.203896 +366.211289 +366.294539 +366.300433 +366.382484 +366.585681 +366.588012 +366.594272 +375.662994 +375.667357 +375.723101 +375.729028 +375.834589 +375.837087 +376.086970 +376.143347 +376.397359 +376.545811 +376.697226 +376.740416 +376.982873 +377.052936 +377.090099 +377.123033 +377.149240 +377.213542 +377.334388 +377.423632 +377.632856 +377.691664 +377.756898 +378.024797 +378.060561 +378.109612 +378.273781 +378.337684 +378.426694 +378.503484 +378.765022 +378.862758 +378.965322 +379.033587 +379.391795 +379.458029 +379.529091 +379.873613 +379.975411 +380.078374 +380.213473 +380.302717 +380.417135 +380.452900 +380.479839 +380.535017 +380.545707 +380.692726 +380.738414 +380.776542 +380.911540 +380.950968 +380.980238 +381.081903 +381.112273 +381.139079 +381.170714 +381.205613 +381.412106 +381.495822 +381.621230 +381.648103 +381.674310 +381.764686 +381.818766 +381.906977 +381.964387 +382.057127 +382.084267 +382.143907 +382.204746 +382.432085 +382.526557 +382.551699 +382.606910 +382.639144 +382.760590 +382.822394 +383.004013 +383.035881 +383.101149 +383.332184 +383.364652 +383.393456 +383.424858 +383.511771 +383.648834 +383.736646 +383.847169 +384.048101 +384.115600 +384.148167 +384.181967 +384.219895 +384.252263 +384.280834 +384.314667 +384.342539 +384.378104 +384.405110 +384.434581 +384.468447 +384.498716 +384.528586 +384.563285 +384.596152 +384.622626 +384.663918 +384.696085 +384.731084 +384.760421 +384.788160 +384.820861 +384.846868 +384.882532 +384.920228 +384.950664 +384.978270 +385.006974 +385.035313 +385.069412 +385.100048 +385.128919 +385.152961 +385.178869 +385.215565 +385.244603 +385.277503 +385.305975 +385.329751 +385.354826 +385.384630 +385.414799 +385.447300 +385.473640 +385.497716 +385.527919 +385.555758 +385.583597 +385.612168 +385.635911 +385.670910 +385.696484 +385.731249 +385.757723 +385.781332 +385.814100 +385.840407 +385.865948 +385.892088 +385.916664 +385.942471 +385.967380 +386.000746 +386.024422 +386.053260 +386.080100 +386.113333 +386.141738 +386.167346 +386.193087 +386.229051 +386.251528 +386.280766 +386.302711 +386.336843 +386.360419 +386.389990 +386.418395 +386.444635 +386.476570 +386.500779 +386.527785 +386.553526 +386.576969 +386.600546 +386.630516 +386.652660 +386.682797 +386.709104 +386.743369 +386.804075 +386.836643 +386.869477 +386.900013 +386.930216 +386.961052 +386.998780 +387.030615 +387.061817 +387.093053 +387.124788 +387.152094 +387.181797 +387.215863 +387.245367 +387.273905 +387.304108 +387.329316 +387.351527 +387.383962 +387.412533 +387.441371 +387.478600 +387.508870 +387.539073 +387.571574 +387.602876 +387.633478 +387.669409 +387.707171 +387.737374 +387.769609 +387.801910 +387.831380 +387.868510 +387.935842 +387.970874 +388.008004 +388.039472 +388.070941 +388.108669 +388.142269 +388.173871 +388.207970 +388.236974 +388.266412 +388.323921 +388.351060 +388.382595 +388.420424 +388.445332 +388.476435 +388.505239 +388.536408 +388.561516 +388.593817 +388.621190 +388.653557 +388.686258 +388.716195 +388.747097 +388.776534 +388.808602 +388.839305 +388.876234 +388.909235 +388.937173 +388.970307 +389.003740 +389.035309 +389.065012 +389.099278 +389.132112 +389.164879 +389.195382 +389.223420 +389.254589 +389.321822 +389.360150 +389.390420 +389.423254 +389.453823 +389.480496 +389.518625 +389.550793 +389.590286 +389.626017 +389.659783 +389.689287 +389.723253 +389.759384 +389.783859 +389.814862 +389.842401 +389.871139 +389.895781 +389.925018 +389.962381 +389.992251 +390.017392 +390.044898 +390.073436 +390.112996 +390.142966 +390.174402 +390.209833 +390.244198 +390.274035 +390.309666 +390.339769 +390.374868 +390.407901 +390.440469 +390.467009 +390.501774 +390.532477 +390.566509 +390.596146 +390.622420 +390.655487 +390.687854 +390.715493 +390.750758 +390.785523 +390.818757 +390.847195 +390.925849 +390.960448 +390.989452 +391.023785 +391.055919 +391.081327 +391.117191 +391.156852 +391.189252 +391.215826 +391.245763 +391.277031 +391.304637 +391.339702 +391.370804 +391.404803 +391.424084 +391.453588 +391.486122 +391.515925 +391.552189 +391.588919 +391.626215 +391.658716 +391.689552 +391.762912 +391.789718 +391.812262 +391.844097 +391.868373 +391.894913 +391.928579 +391.962678 +391.998576 +392.032209 +392.062678 +392.094213 +392.120620 +392.156584 +392.187620 +392.227680 +392.268938 +392.297976 +392.325115 +392.372235 +392.411096 +392.443064 +392.473167 +392.505701 +392.539701 +392.581159 +392.612994 +392.636171 +392.667872 +392.696177 +392.741299 +392.776264 +392.799108 +392.825548 +392.864942 +392.889617 +392.919754 +392.952354 +392.981625 +393.010929 +393.047792 +393.087253 +393.113859 +393.148691 +393.175231 +393.204535 +393.238534 +393.279061 +393.306300 +393.332074 +393.356616 +393.385154 +393.452753 +393.484555 +393.520552 +393.553219 +393.585720 +393.614658 +393.644561 +393.679327 +393.715124 +393.745394 +393.778161 +393.807232 +393.853153 +393.892080 +393.928177 +393.966206 +393.999939 +394.035637 +394.071867 +394.101337 +394.129309 +394.171634 +394.208530 +394.247991 +394.282689 +394.310228 +394.350921 +394.388583 +394.418320 +394.454517 +394.483988 +394.512759 +394.548656 +394.591713 +394.628377 +394.659079 +394.684987 +394.711593 +394.747557 +394.790015 +394.817054 +394.846325 +394.878559 +394.914657 +394.942229 +394.979325 +395.008829 +395.101470 +395.315922 +395.347790 +395.374263 +395.399671 +395.532305 +395.565572 +395.781389 +395.924446 +396.052118 +396.091246 +396.209194 +396.247156 +396.278558 +396.310027 +396.580989 +396.723646 +396.794342 +396.908994 +397.106396 +397.201701 +397.336133 +397.363039 +397.429140 +397.489213 +397.551883 +397.583485 +397.714987 +397.749053 +397.783618 +397.813422 +397.913621 +398.018383 +398.084517 +398.186448 +398.212189 +398.447287 +398.475759 +398.511723 +398.619182 +398.717983 +398.779022 +398.839561 +399.021346 +399.051216 +399.075492 +399.099834 +399.125275 +399.187047 +399.254779 +399.365601 +399.396271 +399.776690 +399.874459 +399.907093 +399.932967 +400.077156 +400.170962 +400.450449 +400.484348 +400.694904 +400.901597 +401.027038 +401.132533 +401.256009 +401.365333 +401.404527 +401.474424 +401.503395 +401.565100 +401.600264 +401.630734 +401.674124 +401.699465 +401.741490 +401.774024 +401.810787 +401.851946 +401.885712 +401.923774 +401.959405 +401.993171 +402.028203 +402.063101 +402.097234 +402.131965 +402.159138 +402.191173 +402.229201 +402.260970 +402.302162 +402.347650 +402.382648 +402.411652 +402.448482 +402.482115 +402.524639 +402.558139 +402.591539 +402.627902 +402.665365 +402.709321 +402.740190 +402.773024 +402.805658 +402.842454 +402.872058 +402.891672 +402.921775 +402.948948 +402.986843 +403.027469 +403.065198 +403.103726 +403.129467 +403.159071 +403.191305 +403.226303 +403.270892 +403.313483 +403.346783 +403.388041 +403.431864 +403.472524 +403.512384 +403.550246 +403.593103 +403.629799 +403.668794 +403.705390 +403.739356 +403.780116 +403.816879 +403.855707 +403.895966 +403.935160 +403.970292 +404.008387 +404.046982 +404.082713 +404.113715 +404.155806 +404.193768 +404.232396 +404.258470 +404.294368 +404.323538 +404.357238 +404.394301 +404.431231 +404.474387 +404.511017 +404.574221 +404.603891 +404.639855 +404.681447 +404.721873 +404.766595 +404.835726 +404.870058 +404.905656 +404.932562 +404.975686 +405.003957 +405.033394 +405.063864 +405.095832 +405.134327 +405.174820 +405.215379 +405.253374 +405.284010 +405.317776 +405.349744 +405.376618 +405.411283 +405.455239 +405.490104 +405.532428 +405.578948 +405.615046 +405.661333 +405.717077 +405.769291 +405.834526 +405.877483 +405.924969 +405.972754 +405.995132 +406.010416 +406.044849 +406.130230 +406.187439 +406.235425 +406.270523 +406.297263 +406.329530 +406.361731 +406.410649 +406.511948 +406.545281 +406.572387 +406.614811 +406.650409 +406.684109 +406.723869 +406.772887 +406.817076 +406.859533 +406.902157 +406.937222 +406.963562 +406.988271 +407.026166 +407.068258 +407.105753 +407.149043 +407.188970 +407.224068 +407.253838 +407.286173 +407.323868 +407.367824 +407.405187 +407.433059 +407.466126 +407.507218 +407.544148 +407.586472 +407.635357 +407.658267 +407.698760 +407.750808 +407.791334 +407.830761 +407.858600 +407.901057 +407.930195 +407.972086 +408.046245 +408.090834 +408.143481 +408.183008 +408.224467 +408.281044 +408.331360 +408.404653 +408.443381 +408.488569 +408.541916 +408.608316 +408.674949 +408.731692 +408.781309 +408.822901 +408.865359 +408.910946 +408.950806 +409.004020 +409.050673 +409.083107 +409.128262 +409.161962 +409.194429 +409.227296 +409.263893 +409.306351 +409.344512 +409.386870 +409.430793 +409.457866 +409.499457 +409.536820 +409.577612 +409.616507 +409.657832 +409.707349 +409.753270 +409.796194 +409.833423 +409.863460 +409.899357 +409.941115 +409.990099 +410.021668 +410.054402 +410.100123 +410.145677 +410.181508 +410.222833 +410.260495 +410.292597 +410.329593 +410.366789 +410.419403 +410.465157 +410.502287 +410.540415 +410.579576 +410.611977 +410.644544 +410.684704 +410.724697 +410.766356 +410.807581 +410.847674 +410.879776 +410.923965 +410.952469 +410.978976 +411.003418 +411.038084 +411.079642 +411.120801 +411.157031 +411.197890 +411.238417 +411.275113 +411.320634 +411.364091 +411.400454 +411.441547 +411.479475 +411.518070 +411.559162 +411.597724 +411.625729 +411.678243 +411.723598 +411.764523 +411.805915 +411.835785 +411.875279 +411.911143 +411.942412 +411.982006 +412.016904 +412.040247 +412.066954 +412.083670 +412.111176 +412.149105 +412.187200 +412.224363 +412.270051 +412.317137 +412.358928 +412.406414 +412.448206 +412.501386 +412.541212 +412.670816 +412.777376 +412.818468 +412.898288 +412.939514 +413.106813 +413.186333 +413.228957 +413.352867 +413.440712 +413.663356 +413.712840 +413.860392 +413.909443 +414.038480 +414.175477 +414.308144 +414.496422 +414.688663 +414.722895 +414.763754 +414.800185 +414.851833 +414.903448 +414.952565 +414.990760 +415.027857 +415.078473 +415.115336 +415.160357 +415.199585 +415.239045 +415.272712 +415.314536 +415.357926 +415.380237 +415.392492 +415.425159 +415.471612 +415.523227 +415.549801 +415.595455 +415.649767 +415.688895 +415.718998 +415.763221 +415.827956 +415.875408 +415.908941 +415.953264 +416.004879 +416.054829 +416.102381 +416.195921 +416.245638 +416.291292 +416.333350 +416.378738 +416.415434 +416.442174 +416.472544 +416.525324 +416.642773 +416.704045 +416.783033 +416.980968 +417.361720 +417.539742 +417.595153 +417.721460 +417.881267 +418.137644 +418.272309 +418.358856 +418.459621 +418.576438 +418.671876 +418.733314 +418.786061 +419.027453 +419.130250 +419.184529 +419.256657 +419.334845 +419.365681 +419.413333 +419.453860 +419.525155 +419.596650 +419.638874 +419.676836 +419.721425 +419.778135 +419.843137 +419.875038 +419.910203 +419.969976 +420.013533 +420.059054 +420.113399 +420.152394 +420.212667 +420.269843 +420.335977 +420.396016 +420.451028 +420.492553 +420.534944 +420.597848 +420.659553 +420.710368 +420.786992 +420.864448 +420.994584 +421.052026 +421.138507 +421.205273 +421.239972 +421.306505 +421.400644 +421.461250 +421.514164 +421.517494 +421.584394 +421.651127 +421.723188 +421.774736 +421.850960 +421.929049 +422.000410 +422.066411 +422.136441 +422.188689 +422.249694 +422.312598 +422.389521 +422.613563 +422.679364 +422.756420 +422.966710 +423.002607 +423.080862 +423.152491 +423.251125 +423.322021 +423.616226 +423.748960 +424.081061 +424.207901 +424.530211 +424.734141 +424.896145 +425.062778 +425.166841 +425.204337 +425.461712 +425.676997 +425.757450 +425.980826 +426.169870 +426.274699 +426.316457 +426.482291 +426.573333 +426.849856 +426.975863 +427.075564 +427.334804 +427.483322 +427.558980 +427.655250 +427.747824 +427.863741 +427.904700 +428.015223 +428.072832 +428.255083 +428.505998 +428.615555 +428.870001 +428.913357 +429.089914 +429.214423 +429.318718 +429.422448 +429.533237 +429.572597 +429.659311 +429.719384 +429.831172 +430.293842 +430.540162 +430.725044 +430.773828 +430.815620 +431.035400 +431.169366 +431.219749 +431.318783 +431.491377 +431.538030 +431.576025 +431.730238 +431.779455 +431.823378 +431.863071 +432.091243 +432.127840 +432.176358 +432.415618 +432.590277 +432.637729 +432.677156 +432.823077 +433.052314 +433.158275 +433.214818 +433.367665 +433.503263 +433.806393 +433.860572 +434.066665 +434.206625 +434.264134 +434.295470 +434.352546 +434.411554 +434.453545 +434.493605 +434.542056 +434.622542 +434.688976 +434.760171 +434.824973 +434.902063 +434.966165 +435.026804 +435.079452 +435.138559 +435.190840 +435.240757 +435.298299 +435.351080 +435.406091 +435.456008 +435.501229 +435.549548 +435.595369 +435.660370 +435.709288 +435.769261 +435.837027 +435.884879 +435.935062 +435.980916 +436.022141 +436.064699 +436.118611 +436.166597 +436.221109 +436.266397 +436.300796 +436.336726 +436.405924 +436.465131 +436.531598 +436.591671 +436.632997 +436.691105 +436.714681 +436.744751 +436.805790 +436.845018 +436.923639 +436.996999 +437.063266 +437.118344 +437.184311 +437.240089 +437.288574 +437.338324 +437.389473 +437.436226 +437.497265 +437.546815 +437.604058 +437.656539 +437.710085 +437.755506 +437.813548 +437.871224 +437.917444 +437.971657 +438.083778 +438.141187 +438.199462 +438.263731 +438.295865 +438.332728 +438.385043 +438.443418 +438.490604 +438.546248 +438.612648 +438.649212 +438.904123 +439.068026 +439.103057 +439.199328 +439.260466 +439.314845 +439.482677 +439.544249 +440.382277 +440.450675 +440.596629 +441.600491 +441.986971 +442.166224 +442.276248 +442.325931 +442.500423 +442.686870 +442.741815 +443.596859 +443.601954 +443.605850 +443.727695 +443.730425 +443.733889 +443.747375 +444.054568 +444.057132 +444.059629 +444.063825 +444.238950 +444.242779 +444.248307 +444.315573 +444.324098 +444.352236 +444.397191 +444.418437 +444.452203 +444.480308 +444.511943 +444.541813 +444.571217 +444.596758 +444.628526 +444.654400 +444.688167 +444.711244 +444.733255 +444.760894 +444.793162 +444.823265 +444.863092 +444.883971 +444.910278 +444.952169 +444.976711 +445.014340 +445.048006 +445.082239 +445.116172 +445.149938 +445.181240 +445.216338 +445.250104 +445.281573 +445.315339 +445.348339 +445.376677 +445.413274 +445.446075 +445.477943 +445.513973 +445.544243 +445.575678 +445.604816 +445.637183 +445.652668 +445.678509 +445.692894 +445.725728 +445.757263 +445.787500 +445.821599 +445.850503 +445.866121 +445.892228 +445.917403 +445.969384 +446.007146 +446.040280 +446.065455 +446.095391 +446.147239 +446.190396 +446.223363 +446.267119 +446.315305 +446.358961 +446.394625 +446.434019 +446.471415 +446.498221 +446.535717 +446.577209 +446.614072 +446.656197 +446.703283 +446.755730 +446.794159 +446.832454 +446.869750 +446.914238 +446.999187 +447.033019 +447.074678 +447.112174 +447.151900 +447.192826 +447.232320 +447.266919 +447.304714 +447.351900 +447.541477 +447.585700 +447.623895 +447.750068 +447.845606 +447.968050 +448.010741 +448.036582 +448.081370 +448.241343 +448.285299 +448.332718 +448.373411 +448.706744 +448.804779 +448.821562 +448.913937 +448.948768 +449.024260 +449.125125 +449.377606 +449.571012 +449.613070 +449.658425 +449.694755 +449.737179 +449.789360 +449.852730 +449.906943 +449.953596 +449.999483 +450.046037 +450.081535 +450.113036 +450.142074 +450.160489 +450.187495 +450.210739 +450.227255 +450.256226 +450.265217 +450.337845 +450.374941 +450.405810 +450.440142 +450.497951 +450.549200 +450.594588 +450.649066 +450.715100 +450.767248 +450.837211 +450.879569 +450.927921 +450.970844 +451.007441 +451.041141 +451.074541 +451.113968 +451.134913 +451.152329 +451.312902 +451.367980 +451.431450 +451.463485 +451.501646 +451.545935 +451.591989 +451.604943 +451.628752 +451.694620 +451.744437 +451.833181 +451.954826 +452.248998 +452.346934 +452.394719 +452.482331 +452.799347 +452.974605 +453.009803 +453.057988 +453.762850 +453.968177 +454.029716 +454.079200 +454.130581 +454.185793 +454.237741 +454.283728 +454.334411 +454.391853 +454.438273 +454.482063 +454.541404 +454.581730 +454.631214 +454.654257 +454.703774 +454.740604 +454.762216 +454.795716 +454.833778 +454.864580 +454.909968 +455.034676 +455.079365 +455.140970 +455.188056 +455.243101 +455.287557 +455.341270 +455.446664 +455.498013 +455.544999 +455.592451 +455.637706 +455.684859 +455.736707 +455.785225 +455.832844 +455.890653 +455.947230 +456.008468 +456.030480 +456.071106 +456.102508 +456.144865 +456.215261 +456.256287 +456.317559 +456.372737 +456.429647 +456.481362 +456.537006 +456.586024 +456.642500 +456.683293 +456.739204 +456.791784 +456.833276 +456.872670 +456.921155 +456.943499 +457.017259 +457.059283 +457.122720 +457.175733 +457.215760 +457.272070 +457.305570 +457.361481 +457.404071 +457.482626 +457.535407 +457.590152 +457.641667 +457.700541 +457.753988 +457.801940 +457.856785 +457.886622 +457.924417 +457.955186 +458.018956 +458.061713 +458.130677 +458.202972 +458.258183 +458.307234 +458.455153 +458.508433 +459.068838 +459.181292 +459.226780 +459.347926 +459.501305 +459.694079 +460.067772 +460.262810 +460.361777 +460.412493 +460.451155 +461.350488 +461.707930 +461.934636 +462.355815 +462.573996 +462.624412 +462.669800 +462.742627 +462.804932 +462.880090 +462.972897 +463.055947 +463.127442 +463.192011 +463.317052 +463.369666 +463.447921 +463.524212 +463.591378 +463.624545 +463.687249 +463.709826 +463.731038 +463.859310 +463.895640 +463.972030 +464.018217 +464.113489 +464.183652 +464.243891 +464.310758 +464.407228 +464.470731 +464.545656 +464.615220 +464.697271 +464.755513 +464.828972 +465.029005 +465.082152 +465.190111 +465.240261 +465.330637 +465.376091 +465.503164 +465.591209 +465.821412 +465.932867 +478.870384 +478.879807 +478.925761 +478.934419 +479.058462 +479.112907 +479.119268 +483.720862 +484.327821 +485.362718 +495.212159 +495.214157 +495.215822 +495.217620 +495.219818 +495.222582 +495.425845 +495.431439 +501.588143 +501.591340 +501.714217 +501.790574 +501.864167 +501.909521 +501.913218 +501.919511 +501.972025 +502.928135 +503.060003 +503.062534 +503.197932 +503.204658 +503.209986 +503.365630 +503.556273 +503.734328 +503.817711 +503.839256 +503.994534 +504.062533 +504.098164 +504.421507 +504.561200 +504.640121 +504.757471 +504.791903 +504.825636 +504.861433 +504.894300 +505.106355 +505.189005 +505.246315 +505.392435 +505.456870 +505.626168 +505.891269 +505.938022 +506.168325 +506.356037 +506.392634 +506.509284 +506.544315 +506.599027 +506.643516 +506.687838 +506.735324 +506.790169 +506.837322 +506.889703 +506.943982 +506.985540 +507.017908 +507.070422 +507.124834 +507.179846 +507.241384 +507.286939 +507.344181 +507.375184 +507.417042 +507.459666 +507.497195 +507.650042 +507.669389 +507.708017 +507.779779 +507.801257 +507.850907 +507.918040 +507.982909 +508.194130 +508.200457 +508.212212 +508.295496 +508.304653 +508.364693 +508.404353 +508.485639 +508.520371 +508.559165 +508.599558 +508.668556 +508.696960 +508.729761 +508.858033 +508.890633 +508.945145 +509.003787 +509.051539 +509.113177 +509.159031 +509.205884 +509.257566 +509.320736 +509.362428 +509.449074 +509.490333 +509.591232 +509.640982 +509.691465 +509.751205 +509.785271 +509.831858 +509.872550 +509.917539 +509.954102 +510.020769 +510.096626 +510.189733 +510.261594 +510.322300 +510.539116 +510.586636 +510.653435 +510.660195 +510.745044 +510.758397 +510.812643 +510.824098 +510.861127 +510.864457 +510.948706 +518.617597 +518.620127 +519.654126 +519.933479 +520.165480 +520.169210 +521.172373 +521.211733 +521.247964 +521.350528 +521.424021 +521.456988 +521.490754 +521.600211 +521.631213 +521.660251 +521.694250 +521.728516 +521.761283 +521.802209 +521.835575 +521.872239 +521.902642 +521.941170 +522.004207 +522.042535 +522.078765 +522.116794 +522.145798 +522.184659 +522.228782 +522.268509 +522.304939 +522.345831 +522.384792 +522.424985 +522.470074 +522.505838 +522.548029 +522.582161 +522.625052 +522.669108 +522.709267 +522.761082 +522.812131 +522.848262 +522.885891 +522.948861 +522.989653 +523.033077 +523.091984 +523.130246 +523.174901 +523.231611 +523.273036 +523.318857 +523.365144 +523.415927 +523.454921 +523.520156 +523.565377 +523.630046 +523.683059 +523.746130 +523.794947 +523.854121 +523.906569 +523.990385 +524.042566 +524.084924 +524.120788 +526.197010 +526.199041 +526.200872 +526.203337 +526.213726 +526.396743 +526.401272 +526.403436 +526.405634 +526.408598 +526.418321 +526.450489 +526.452221 +526.453753 +526.456683 +526.460546 +526.522018 +526.523949 +526.526080 +526.528844 +526.532241 +526.582690 +526.589483 +526.594378 +526.651388 +526.655517 +526.659680 +526.663409 +526.675630 +526.716689 +526.718221 +526.721718 +526.725847 +526.735171 +527.268404 +527.270768 +527.272899 +527.276029 +527.515523 +527.517887 +527.519985 +527.523149 +527.703735 +527.706432 +527.708863 +527.712426 +527.858646 +527.861710 +527.865340 +527.871766 +527.985686 +527.990015 +527.995110 +528.013225 +528.078992 +528.086418 +528.105799 +528.136535 +528.165139 +528.188816 +528.223215 +528.244593 +528.280324 +528.301303 +528.327743 +528.351586 +528.379825 +528.410860 +528.435336 +528.461376 +528.483421 +528.520084 +528.548056 +528.582622 +528.614123 +528.647290 +528.678093 +528.710360 +528.747057 +528.778625 +528.809261 +528.842295 +528.876328 +528.908595 +528.937666 +528.969135 +529.001669 +529.031506 +529.069701 +529.098705 +529.131605 +529.164739 +529.194509 +529.227143 +529.265971 +529.296241 +529.329174 +529.361842 +529.394809 +529.426210 +529.468601 +529.498238 +529.538631 +529.572331 +529.613723 +529.646723 +529.666969 +529.705531 +529.745058 +529.765471 +529.803799 +529.840929 +529.874229 +529.893909 +529.967635 +529.999770 +530.044458 +530.104964 +530.148754 +530.199303 +530.245124 +530.288880 +530.547888 +530.599170 +530.685916 +530.900701 +530.990012 +531.029272 +531.075260 +531.134800 +531.235899 +531.453215 +531.514453 +531.653081 +531.699868 +531.832002 +531.876757 +532.074260 +532.119814 +532.502298 +532.580620 +532.631236 +532.686014 +534.388843 +534.391074 +534.393272 +534.394604 +534.396702 +534.399232 +534.407924 +534.479485 +534.481683 +534.483814 +534.486345 +534.490674 +534.538693 +534.540358 +534.545986 +534.550181 +534.607158 +534.615649 +534.618380 +534.621377 +534.626705 +535.188143 +535.193804 +535.419644 +535.424007 +535.632431 +535.637693 +535.797433 +535.963333 +536.068195 +536.075588 +536.099897 +536.146850 +536.203926 +536.394868 +536.442221 +536.465731 +536.538891 +536.607322 +536.626270 +536.657439 +536.755873 +536.886443 +536.941388 +536.970692 +536.996266 +537.347015 +537.478850 +537.674287 +537.820541 +537.850977 +537.952143 +538.168060 +538.559002 +538.609052 +538.670224 +538.710017 +538.803757 +538.848612 +538.902525 +538.960999 +539.005688 +539.046680 +539.107986 +539.139854 +539.189104 +539.238388 +539.280913 +539.333027 +539.379714 +539.410350 +539.442784 +539.507919 +539.532960 +539.568325 +539.614279 +539.658335 +539.747379 +539.787106 +539.800726 +539.802191 +539.972953 +539.984175 +539.987039 +539.990203 +540.053506 +540.055304 +540.058468 +540.061098 +540.084375 +540.118707 +540.123003 +540.192866 +540.195630 +540.200758 +540.649409 +540.651707 +540.654005 +540.656935 +540.888703 +540.891500 +540.894064 +540.896962 +540.907484 +541.055403 +541.060431 +541.264161 +541.267058 +541.270021 +541.274517 +541.442149 +541.445279 +541.448676 +541.454803 +541.570121 +541.574783 +541.593364 +541.683441 +541.710347 +541.765559 +541.794297 +541.817007 +541.847244 +541.877980 +541.909481 +541.937587 +541.972085 +541.998659 +542.028962 +542.063627 +542.126398 +542.156601 +542.189002 +542.223001 +542.265425 +542.298658 +542.332558 +542.370886 +542.404419 +542.442015 +542.477080 +542.513943 +542.553703 +542.583607 +542.625964 +542.658798 +542.696460 +542.736021 +542.779177 +542.814009 +542.856700 +542.894262 +542.932724 +542.977779 +543.016673 +543.056467 +543.092830 +543.139250 +543.176779 +543.216739 +543.249706 +543.292863 +543.327995 +543.362027 +543.400089 +543.459496 +543.494328 +543.553536 +543.599689 +543.646110 +543.686802 +543.732024 +543.780608 +543.860029 +543.896592 +543.959096 +544.019935 +544.088001 +544.141381 +544.213675 +544.274248 +544.352569 +544.407148 +544.480408 +544.555533 +544.621134 +544.679875 +544.725296 +544.805449 +544.859861 +544.934553 +545.000088 +545.084936 +545.168719 +545.333354 +545.408978 +545.490164 +545.659361 +546.666719 +546.670682 +546.960425 +546.964188 +546.968617 +547.032154 +547.034917 +547.505813 +547.508810 +547.732286 +547.899619 +547.902516 +547.905746 +547.910541 +548.047670 +548.051500 +548.054464 +548.071946 +548.149868 +548.157028 +548.170581 +548.224127 +548.242575 +548.274710 +548.336315 +548.369515 +548.399252 +548.428889 +548.462056 +548.480038 +548.488296 +548.517234 +548.519631 +548.528989 +548.587463 +548.589461 +548.591659 +548.603114 +548.659858 +548.662688 +548.681536 +548.727423 +548.730487 +548.735049 +548.788795 +548.805978 +548.810607 +548.824559 +548.889494 +548.900217 +548.991059 +549.030853 +549.066950 +549.108642 +549.144173 +549.186930 +549.225025 +549.259391 +549.296720 +549.332817 +549.367849 +549.403114 +549.439943 +549.480669 +549.514735 +549.550233 +549.591858 +549.624758 +549.665984 +549.699650 +549.781668 +549.818964 +549.858424 +549.895854 +549.941441 +549.980835 +550.022693 +550.063752 +550.105344 +550.147835 +550.186729 +550.225757 +550.266416 +550.310472 +550.348101 +550.392390 +550.431051 +550.472909 +550.507475 +550.553262 +550.595653 +550.643372 +550.689559 +550.738244 +550.778603 +550.838277 +550.888260 +550.938177 +550.980501 +551.033715 +551.097884 +551.141840 +551.196851 +551.250531 +551.302246 +551.349265 +551.402645 +551.452729 +551.498283 +551.557890 +551.621560 +551.666614 +551.739508 +551.782265 +551.834147 +551.895818 +551.941206 +551.996484 +552.048665 +552.135046 +552.207173 +552.275871 +552.382964 +552.420526 +557.372703 +557.375267 +557.378031 +557.379895 +557.381927 +557.384591 +557.447827 +557.450059 +557.452356 +557.454954 +557.459782 +557.564544 +557.566875 +557.569006 +557.571004 +557.573368 +557.577131 +557.689985 +557.691783 +557.693615 +557.697011 +557.701840 +557.751690 +557.755153 +557.758150 +557.760947 +557.765443 +557.819655 +557.822919 +557.825583 +557.828280 +557.832709 +557.885456 +557.887487 +557.890884 +557.893381 +557.896678 +557.958283 +557.962213 +557.964943 +557.967840 +557.973035 +558.435805 +558.437970 +558.440034 +558.443164 +558.634939 +558.637170 +558.639435 +558.643098 +558.818722 +558.820920 +558.823417 +558.826647 +558.840900 +558.978795 +558.981559 +558.984223 +558.988385 +558.993214 +559.118122 +559.120986 +559.124383 +559.130110 +559.279927 +559.283224 +559.287519 +559.296344 +559.438501 +559.442331 +559.447526 +559.463310 +559.579527 +559.585454 +559.599274 +559.645960 +559.662877 +559.696377 +559.724082 +559.753386 +559.788951 +559.812827 +559.841431 +559.866573 +559.901272 +559.924748 +559.956849 +559.993612 +560.027212 +560.064109 +560.095244 +560.132240 +560.157548 +560.191414 +560.222084 +560.251854 +560.280459 +560.304068 +560.324881 +560.358347 +560.381857 +560.419120 +560.491547 +560.524015 +560.561910 +560.590215 +560.633572 +560.666039 +560.706432 +560.738733 +560.783688 +560.820218 +560.856982 +560.893179 +560.939499 +560.973498 +561.011793 +561.043129 +561.079892 +561.115723 +561.151820 +561.183255 +561.223781 +561.262842 +561.294677 +561.314224 +561.349588 +561.376894 +561.416388 +561.460544 +561.462842 +561.512592 +561.544393 +561.548090 +561.565905 +561.618453 +561.624147 +561.628110 +561.715289 +561.717886 +561.780857 +561.791479 +562.335002 +562.338099 +562.341129 +562.346790 +562.412258 +562.416687 +562.421948 +562.496707 +562.499737 +562.504865 +562.511958 +562.542961 +562.650686 +562.655115 +562.661242 +562.801169 +562.807030 +562.817153 +563.026876 +563.033669 +563.047156 +563.158012 +563.169667 +563.198305 +563.239830 +563.269800 +563.309060 +563.343559 +563.382853 +563.415953 +563.452217 +563.491911 +563.527542 +563.562074 +563.592710 +563.619749 +563.662706 +563.698637 +563.743958 +563.765936 +563.798504 +563.840329 +563.876259 +563.934501 +563.961774 +564.000768 +564.022480 +564.034201 +564.056046 +564.067401 +564.124611 +564.127574 +564.130638 +564.136432 +564.220814 +564.230771 +564.270898 +564.340195 +564.342759 +564.404131 +564.406728 +564.412489 +564.473495 +564.571763 +565.842558 +565.844789 +565.846920 +565.850017 +565.994672 +565.996936 +565.999168 +566.001632 +566.004262 +566.218881 +566.221112 +566.223543 +566.226140 +566.230203 +566.310756 +566.312221 +566.314718 +566.319047 +566.330303 +566.536396 +566.539360 +566.542723 +566.548684 +566.703063 +566.705694 +566.708391 +566.712420 +566.861071 +566.864535 +566.868464 +566.998101 +567.005394 +567.023342 +567.077055 +567.096902 +567.135730 +567.168697 +567.202463 +567.231201 +567.261537 +567.294504 +567.322743 +567.358041 +567.388011 +567.412852 +567.437728 +567.468763 +567.487678 +567.500731 +567.516915 +567.553212 +567.573125 +567.596968 +567.619412 +567.638160 +567.686645 +567.705326 +567.751613 +567.786811 +567.824973 +567.857774 +567.894504 +567.924440 +567.952046 +567.987277 +568.022809 +568.037760 +568.100031 +568.133298 +568.162602 +568.203428 +568.243121 +568.285546 +568.321676 +568.359805 +568.392905 +568.428502 +568.460437 +568.499964 +568.538725 +568.608955 +568.647750 +568.681516 +568.716281 +568.756741 +568.795269 +568.871659 +568.906191 +568.948715 +568.982248 +569.025472 +569.064133 +569.104825 +569.140856 +569.182215 +569.221708 +569.259204 +569.299764 +569.327836 +569.390939 +569.415248 +569.452877 +569.479684 +569.520343 +569.539257 +569.619177 +569.669660 +569.732464 +569.780249 +569.845917 +569.888308 +569.925604 +569.953975 +570.052477 +570.101028 +570.150112 +570.202926 +570.251478 +570.306722 +570.367861 +570.424504 +570.482813 +570.536759 +570.574188 +570.669559 +570.718144 +570.831331 +570.892902 +571.112482 +571.159102 +571.389672 +574.600358 +574.604054 +574.663961 +574.668523 +574.729429 +574.732792 +574.734790 +574.799658 +574.802023 +574.807251 +574.810914 +574.811347 +574.864493 +574.865592 +574.867390 +574.869555 +574.875249 +574.933358 +574.935123 +574.951406 +575.002921 +575.004287 +575.009348 +575.016108 +575.075249 +575.078479 +575.081143 +575.084074 +575.737553 +575.739917 +575.741948 +575.745412 +576.032224 +576.034522 +576.036753 +576.040183 +576.261595 +576.263793 +576.269554 +576.472850 +576.475447 +576.478045 +576.482274 +576.645710 +576.648674 +576.651671 +576.656966 +576.797159 +576.800722 +576.804285 +576.811678 +576.951837 +576.955867 +576.960495 +576.983539 +577.056766 +577.065923 +577.100655 +577.128194 +577.161294 +577.196159 +577.230525 +577.265656 +577.300422 +577.331324 +577.376246 +577.402886 +577.441014 +577.478910 +577.514807 +577.556166 +577.595260 +577.627661 +577.667055 +577.703884 +577.738783 +577.780541 +577.817671 +577.861227 +577.940414 +577.989265 +578.029159 +578.069918 +578.115772 +578.159229 +578.202985 +578.286934 +578.601786 +578.643544 +578.781206 +578.947140 +579.071515 +579.195558 +579.795591 +579.888231 +580.031155 +580.162690 +580.392660 +580.467685 +582.355195 +583.069280 +583.390858 +583.625124 +583.627688 +583.823992 +583.826789 +584.352729 +584.355892 +584.360654 +584.506442 +584.632016 +584.712469 +585.212002 +585.455125 +585.692221 +585.841405 +585.940040 +586.117529 +586.165747 +586.278102 +586.601078 +586.603543 +587.734710 +588.218160 +588.230980 +588.699445 +588.706970 +591.260381 +591.267274 +591.320221 +591.327880 +591.516225 +591.586155 +591.596145 +591.603105 +591.669571 +591.672102 +591.678463 +593.420286 +593.434039 +593.510296 +593.556383 +593.650389 +593.661145 +593.716989 +593.877228 +594.120518 +594.340398 +594.564207 +594.719086 +594.869701 +594.873997 +594.879159 +594.902735 +595.027743 +595.216488 +595.313557 +595.345925 +595.536934 +595.664373 +595.756680 +595.861975 +595.935268 +596.372364 +596.411491 +596.930738 +596.977258 +597.075260 +597.125976 +597.679522 +598.069265 +598.149052 +598.503364 +598.754080 +598.827706 +599.049151 +599.051149 +599.123510 +599.184749 +599.196803 +599.261539 +599.335298 +599.396370 +604.019842 +604.079915 +604.082679 +604.084644 +604.086542 +604.088773 +604.092769 +604.143085 +604.145150 +604.146915 +604.149246 +604.151311 +604.154274 +604.213615 +604.216079 +604.221540 +604.228633 +604.272156 +604.274687 +604.281314 +604.285809 +604.336192 +604.337591 +604.340854 +604.343085 +604.345783 +604.354341 +604.416179 +604.419109 +604.421973 +604.425536 +604.473521 +604.475653 +604.478716 +604.482246 +604.486841 +604.609985 +604.629532 +605.794000 +606.255637 +606.645414 +606.704022 +606.706786 +606.710049 +606.773053 +606.775184 +606.777848 +606.780745 +606.786539 +606.844881 +606.849310 +606.851608 +606.855770 +606.916942 +606.925267 +606.984641 +606.988770 +606.992633 +606.998194 +607.057768 +607.063429 +607.067192 +607.077881 +607.126932 +607.130195 +607.131794 +607.132227 +607.136689 +607.200858 +607.204621 +607.208517 +607.287505 +607.347644 +607.353006 +607.370355 +607.736155 +607.739019 +607.741450 +607.744980 +607.854204 +607.857700 +607.860331 +607.869156 +607.946978 +607.953904 +607.963994 +608.264660 +608.267790 +608.270687 +608.277414 +608.468556 +608.471786 +608.475082 +608.481509 +608.546777 +608.551473 +608.555668 +608.599891 +608.632625 +608.635522 +608.643747 +608.665692 +608.734489 +608.736687 +608.745445 +608.770720 +608.809315 +608.811146 +608.815442 +608.886837 +608.896627 +608.902255 +608.959864 +608.961396 +608.965425 +609.034123 +609.035854 +609.040350 +609.110113 +609.117007 +609.369787 +609.410879 +609.700489 +609.719404 +609.786936 +609.902520 +609.944745 +609.998058 +610.048574 +610.104718 +610.154734 +610.189400 +610.246476 +610.315374 +610.383639 +610.445177 +610.506682 +610.556199 +610.624431 +610.700988 +610.792862 +611.007980 +611.104051 +613.550935 +613.553199 +613.555330 +613.557195 +613.559593 +613.560958 +613.681704 +613.683968 +613.685866 +613.687531 +613.689529 +613.692926 +613.748704 +613.750302 +613.752267 +613.753932 +613.756596 +613.764055 +613.888231 +613.890095 +613.892326 +613.894757 +613.898953 +613.953465 +613.955263 +613.962856 +613.967751 +614.025660 +614.031454 +614.034451 +614.038414 +614.094158 +614.097022 +614.099985 +614.110142 +614.161823 +614.164887 +614.168883 +614.177175 +614.297954 +615.853796 +615.856294 +615.861955 +615.969747 +615.971712 +615.973843 +615.976507 +615.982035 +616.080170 +616.082501 +616.084865 +616.087829 +616.101182 +616.142674 +616.147303 +616.155428 +616.207875 +616.213003 +616.217899 +616.227988 +616.269014 +616.269147 +616.278005 +616.339943 +616.345005 +616.355960 +616.412770 +616.414835 +616.422893 +616.444738 +616.467615 +616.470945 +616.473742 +616.524492 +616.532517 +616.566283 +616.580635 +616.976339 +616.980002 +616.983732 +617.035247 +617.071444 +617.141174 +617.163186 +617.176606 +617.206276 +617.225989 +617.267781 +617.287228 +617.309439 +617.350365 +617.376739 +617.397351 +617.408673 +617.476106 +617.483598 +617.517598 +617.561787 +617.570311 +617.619795 +618.553061 +618.596751 +618.722092 +618.915698 +619.505241 +619.608937 +619.803976 +619.861451 +619.896350 +619.971541 +620.307005 +621.547397 +621.865945 +622.132012 +622.249927 +622.254223 +622.274203 +622.739171 +622.933177 +622.935774 +623.240769 +623.243599 +623.468740 +623.691950 +623.914561 +623.920888 +624.169972 +624.637670 +624.800707 +624.810531 +624.959815 +625.372568 +625.637936 +625.648325 +625.730177 +625.805202 +625.870536 +625.875365 +626.008831 +626.012261 +628.066205 +628.096242 +628.123181 +628.152519 +628.181923 +628.213358 +628.243394 +628.276861 +628.307797 +628.337167 +628.364207 +628.395309 +628.427177 +628.454250 +628.491413 +628.517453 +628.546724 +628.575995 +628.601003 +628.632571 +628.664040 +628.692511 +628.728742 +628.763674 +628.796940 +628.830440 +628.862508 +628.897906 +628.930340 +628.962941 +628.996108 +629.030007 +629.067969 +629.100270 +629.134236 +629.170533 +629.202268 +629.234735 +629.269467 +629.307596 +629.340829 +629.376493 +629.419151 +629.451019 +629.488182 +629.531005 +629.566170 +629.605930 +629.640829 +629.680589 +629.722347 +629.763473 +629.800236 +629.841128 +629.879423 +629.920416 +629.950985 +629.991877 +630.024745 +630.062540 +630.095374 +630.129440 +630.166270 +630.214222 +630.255047 +630.296040 +630.337065 +630.383086 +630.425477 +630.472729 +630.514854 +630.555313 +630.602866 +630.644857 +630.693375 +630.740828 +630.781054 +630.822912 +630.868267 +630.912889 +630.919615 +630.954847 +631.020181 +631.064137 +631.117484 +631.146921 +631.192642 +631.230571 +631.278057 +631.335266 +631.453714 +631.534100 +631.582219 +631.636997 +631.650184 +631.749918 +631.791310 +631.862305 +631.889212 +631.925808 +631.927740 +631.931569 +631.991476 +631.992708 +631.994473 +631.997869 +632.063437 +632.065668 +632.068798 +632.074659 +632.128505 +632.130803 +632.134999 +632.229704 +632.268099 +632.273727 +632.336197 +632.351715 +641.492965 +641.494530 +641.496361 +641.498459 +641.501590 +641.706551 +641.759931 +641.763860 +641.768522 +641.924833 +642.890999 +643.074249 +643.222234 +643.427761 +643.800555 +643.836319 +643.873715 +643.904151 +643.934821 +643.970119 +643.994428 +644.030392 +644.060128 +644.097358 +644.127428 +644.164191 +644.189399 +644.225629 +644.262859 +644.292363 +644.323265 +644.359229 +644.386402 +644.417904 +644.450338 +644.487967 +644.521267 +644.555200 +644.592795 +644.655799 +644.684304 +644.718203 +644.753901 +644.785336 +644.859195 +644.896125 +644.931323 +644.961393 +644.993894 +645.025862 +645.055765 +645.093261 +645.133487 +645.174679 +645.217503 +645.256398 +645.291662 +645.335985 +645.373680 +645.407946 +645.450104 +645.492028 +645.536517 +645.581905 +645.624529 +645.665721 +645.697856 +645.742777 +645.790263 +645.826860 +645.871549 +645.922631 +645.960493 +646.056530 +646.139047 +646.318901 +646.414705 +646.593193 +647.146739 +647.574777 +647.661257 +647.820431 +647.967251 +648.174943 +648.208942 +648.272079 +648.275509 +648.385166 +648.406178 +648.462488 +648.476574 +648.530554 +648.532651 +648.551866 +648.593557 +648.595422 +648.596920 +648.600217 +648.721396 +648.723660 +648.783400 +648.787696 +658.655785 +658.665841 +658.788519 +658.840134 +659.050889 +659.054619 +659.059880 +660.164408 +662.714122 +662.716520 +662.829973 +662.837133 +662.896273 +662.903866 +662.952883 +663.032637 +666.949150 +666.954245 +666.955943 +666.957741 +666.959939 +666.963735 +667.087778 +667.090175 +667.094171 +667.096802 +667.102263 +667.147085 +667.149316 +667.150881 +667.152646 +667.155177 +667.158907 +667.215616 +667.217681 +667.220545 +667.223142 +667.226206 +667.231467 +667.314051 +667.316182 +667.319146 +667.321444 +667.324441 +667.331201 +667.391307 +667.393405 +667.396369 +667.400864 +667.514451 +667.516116 +667.518613 +667.520711 +667.523275 +667.529635 +667.676522 +667.683348 +667.688610 +668.040624 +668.042888 +668.045286 +668.048916 +668.270194 +668.272825 +668.275023 +668.279185 +668.452179 +668.454943 +668.457607 +668.461936 +668.624473 +668.636527 +668.779984 +668.783281 +668.787843 +668.796834 +668.913184 +668.918578 +668.928735 +669.012484 +669.025571 +669.071326 +669.105058 +669.147849 +669.177919 +669.211852 +669.257639 +669.295534 +669.334096 +669.368661 +669.403493 +669.444685 +669.477486 +669.512684 +669.547982 +669.585644 +669.623406 +669.661934 +669.704991 +669.792670 +669.837359 +669.925371 +669.975787 +670.031797 +670.287109 +670.432763 +670.479516 +670.584577 +670.899662 +670.957005 +671.006122 +671.079682 +671.272023 +671.311816 +673.669123 +673.677248 +673.679180 +673.681244 +673.684042 +673.856735 +673.858300 +673.860232 +673.861997 +673.864195 +673.867058 +673.928863 +673.932060 +673.934025 +673.936389 +673.939786 +674.004088 +674.007085 +674.009949 +674.016309 +674.059566 +674.062063 +674.065360 +674.069289 +674.116742 +674.118740 +674.122003 +674.126332 +674.183009 +674.185639 +674.189469 +674.196928 +674.279279 +674.282010 +674.285373 +674.291600 +674.822702 +674.825332 +674.827630 +674.831393 +675.074317 +675.076648 +675.079078 +675.082941 +675.292765 +675.295362 +675.297926 +675.302222 +675.481342 +675.483973 +675.486204 +675.490633 +675.676247 +675.679577 +675.683307 +675.694696 +675.867722 +675.871452 +675.876380 +675.934089 +675.954202 +676.026530 +676.040716 +676.095994 +676.109680 +676.114542 +676.118771 +676.120736 +676.123600 +676.161295 +676.262161 +676.270552 +676.341182 +676.343080 +676.367622 +676.489234 +676.546776 +676.624198 +676.726729 +676.853635 +676.901654 +677.021401 +677.064991 +677.245277 +677.330225 +680.798720 +680.800818 +680.803149 +680.805047 +680.807245 +680.811007 +681.021563 +681.025160 +681.028889 +681.080038 +681.081503 +681.085599 +681.096089 +681.142909 +681.227824 +681.270148 +681.271913 +681.274843 +681.279239 +681.384001 +681.388629 +681.390461 +681.393225 +681.399385 +681.505845 +681.534317 +681.536415 +681.538646 +681.544174 +683.500782 +683.504511 +683.513669 +683.784131 +683.855327 +683.856892 +683.867648 +683.945670 +683.948833 +684.011704 +684.018597 +684.023825 +684.089126 +684.242972 +684.317897 +684.322959 +684.380901 +684.565449 +688.311466 +688.452658 +688.457920 +688.536907 +688.589754 +688.598878 +688.670773 +688.729714 +691.480627 +691.485922 +691.567274 +691.569272 +691.581693 +691.641566 +691.646628 +691.772235 +691.857450 +691.918123 +691.920620 +691.923484 +691.987620 +693.828976 +693.889050 +693.906232 +695.118452 +695.135169 +695.511526 +695.517486 +695.523946 +695.718851 +695.891112 +696.034169 +696.040663 +696.355847 +696.373096 +696.695274 +696.840529 +697.394407 +697.510358 +698.117384 +698.156045 +698.196971 +698.617417 +698.673694 +700.481784 +700.486113 +700.488577 +700.602829 +700.605060 +700.607658 +700.611088 +700.688943 +700.694870 +700.705793 +700.770694 +700.787744 +700.842323 +700.851480 +700.863368 +700.869496 +700.907358 +700.909189 +700.919812 +700.976355 +700.977621 +700.983814 +701.058973 +701.070128 +701.109922 +701.111820 +701.113684 +701.118580 +701.580284 +701.583481 +701.585679 +701.588343 +701.593837 +701.793604 +701.848649 +701.851180 +701.853544 +701.857573 +702.063201 +702.076254 +702.079085 +702.081516 +702.085445 +702.251146 +702.256474 +702.260536 +702.278951 +702.318945 +702.332864 +702.348382 +702.351878 +702.384013 +702.410753 +702.439690 +702.516514 +702.525205 +702.583147 +702.598931 +702.637925 +702.662667 +702.698931 +702.784445 +702.849747 +702.874156 +702.904459 +703.003626 +703.163366 +703.223539 +703.347249 +703.540855 +703.579117 +703.719676 +703.799063 +703.878484 +704.001727 +704.034927 +704.321207 +704.713581 +704.903557 +704.972155 +705.040187 +705.100560 +705.186907 +705.257437 +707.990467 +708.131926 +708.134090 +708.140218 +708.197061 +708.201157 +708.203254 +708.263627 +708.321902 +708.331659 +708.401023 +708.458899 +708.470986 +708.612978 +711.360727 +711.365156 +711.482372 +711.484204 +711.486168 +711.487733 +711.489698 +711.496591 +711.555732 +711.561027 +711.566987 +711.631290 +711.637717 +711.640547 +711.644143 +711.931223 +711.933321 +711.935785 +715.364320 +715.371512 +715.446504 +715.459258 +718.036844 +718.039109 +718.040974 +718.043338 +718.050131 +718.306708 +718.308572 +718.310470 +718.312602 +718.315798 +718.467047 +718.469778 +718.471876 +718.473973 +718.477004 +718.556524 +718.558289 +718.560587 +718.562685 +718.568312 +718.733447 +718.735911 +718.738109 +718.740240 +718.743104 +718.815065 +718.817130 +718.820693 +718.822724 +718.989124 +718.991356 +718.993287 +718.995218 +718.997449 +719.075804 +719.078102 +719.080300 +719.082764 +719.087060 +719.250063 +719.252194 +719.254392 +719.256424 +719.259554 +719.703976 +720.809136 +720.858686 +720.861583 +720.863648 +720.865679 +720.869076 +721.230414 +721.234410 +721.236175 +721.489688 +721.493684 +721.495849 +721.499212 +721.664047 +721.666078 +721.668176 +721.670307 +721.675236 +721.747630 +721.749661 +721.751726 +721.756488 +721.916994 +721.918858 +721.921289 +721.925851 +721.999444 +722.003940 +722.006737 +722.009801 +722.098479 +722.100543 +722.106637 +722.110134 +722.694882 +722.698411 +723.039370 +723.042367 +723.831144 +723.843965 +724.817490 +724.819788 +724.821653 +724.823884 +724.826648 +725.599241 +725.602338 +725.604369 +725.606600 +725.609597 +725.857716 +725.860147 +725.862344 +725.864642 +725.868971 +726.078928 +726.081292 +726.083323 +726.085621 +726.089284 +726.170702 +726.173033 +726.174965 +726.442830 +726.445228 +726.447026 +726.448990 +726.451188 +726.455983 +726.636336 +726.639100 +726.641298 +726.643462 +726.646293 +727.557348 +727.561876 +727.563741 +727.745759 +727.747957 +727.753185 +728.027211 +728.031806 +728.033971 +728.037001 +728.623680 +728.625678 +728.627776 +728.630007 +728.633371 +728.835002 +728.926411 +728.929574 +728.932105 +729.627575 +729.629274 +729.631771 +729.636067 +730.073129 +730.078191 +730.080389 +730.253216 +730.257645 +730.264238 +731.054014 +731.056112 +731.058610 +731.310091 +731.312023 +731.314087 +731.315952 +731.317983 +731.321513 +731.763571 +732.374559 +732.376823 +732.378821 +732.381352 +732.602164 +732.718115 +732.720546 +732.722444 +732.725041 +732.730469 +733.189943 +733.193073 +733.195204 +733.197269 +733.200399 +733.566366 +733.570462 +733.850415 +733.852246 +733.856076 +734.662935 +737.228200 +737.232563 +737.864663 +737.868193 +737.870224 +737.872356 +737.875819 +737.954973 +737.957171 +737.959602 +737.961866 +737.964397 +738.067627 +738.069625 +738.074220 +738.076585 +738.307120 +738.311216 +738.313681 +738.317177 +738.397297 +738.630297 +738.634126 +738.636158 +738.943717 +738.945781 +738.947979 +738.951575 +739.529730 +740.406652 +740.413479 +740.416276 +741.587737 +741.590234 +741.591966 +741.593764 +741.728229 +741.734756 +742.348841 +742.350906 +742.889733 +743.046976 +743.050239 +743.316939 +743.324964 +743.328028 +744.066988 +744.074847 +744.363858 +745.208712 +745.213374 +745.217803 +746.480506 +746.483103 +746.484801 +746.486966 +746.489963 +746.984235 +746.986399 +746.988097 +746.990329 +746.992660 +747.666385 +747.669382 +747.671513 +747.674011 +748.568316 +748.572778 +748.574743 +748.849634 +748.855661 +748.857793 +748.861056 +749.070446 +749.074276 +749.076474 +749.079071 +751.921659 +751.924290 +751.926521 +751.928952 +752.257023 +752.258655 +752.262185 +754.277234 +754.279865 +754.282063 +754.286991 +755.433277 +755.435442 +755.437373 +755.439471 +755.442734 +756.615227 +756.617558 +756.619456 +756.621821 +756.627582 +757.038137 +757.040002 +757.092450 +757.095746 +757.097578 +757.099876 +757.618257 +757.626482 +757.628180 +757.630378 +757.634740 +759.166906 +759.171402 +759.173899 +759.177662 +761.233871 +761.236335 +761.238266 +761.240497 +761.242962 +761.564373 +761.573065 +761.575695 +761.577727 +761.580291 +761.586684 +761.759078 +762.823113 +763.187415 +763.193143 +763.604531 +766.011855 +766.014985 +766.018914 +767.769196 +767.771227 +767.774191 +769.065065 +769.067829 +769.069594 +769.071625 +769.383679 +769.573190 +769.577252 +770.165996 +770.169926 +770.746782 +770.853675 +770.855306 +770.857138 +770.859569 +770.941620 +770.943918 +770.946082 +770.948180 +770.951044 +771.871056 +771.875985 +771.878149 +771.881446 +772.400127 +773.651740 +774.236821 +774.240518 +774.242383 +774.248243 +774.522502 +774.524400 +774.526698 +774.531227 +774.818606 +774.820604 +774.822635 +774.824533 +774.826498 +774.829528 +774.920404 +774.922069 +774.923967 +774.925832 +774.927930 +774.932791 +775.012645 +775.017040 +775.019272 +775.021403 +775.024267 +775.102122 +775.108282 +775.267523 +775.269421 +775.271386 +775.274050 +775.276847 +775.754369 +775.757066 +775.760629 +775.924998 +775.927696 +775.930393 +775.933823 +775.942048 +776.191498 +776.194162 +776.196660 +776.200722 +776.416406 +776.419437 +776.428061 +776.615440 +776.620136 +776.625697 +776.686836 +776.693562 +776.728960 +776.789866 +776.819103 +776.883172 +776.912476 +776.962959 +777.007015 +777.055000 +777.097025 +777.140615 +777.184071 +777.235986 +777.268986 +777.311610 +777.364757 +777.400555 +777.447441 +777.510944 +777.555799 +777.605017 +777.642079 +777.687467 +777.724597 +777.770318 +777.810311 +777.871084 +777.906615 +777.959329 +778.012375 +778.055432 +778.102885 +778.146108 +778.184836 +778.227094 +778.268519 +778.313041 +778.363824 +778.403817 +778.435885 +778.464823 +778.492994 +778.520467 +778.564989 +778.612808 +778.648872 +778.693360 +778.737250 +778.795425 +778.845475 +778.889597 +778.948472 +778.989864 +779.033453 +779.086300 +779.127259 +779.160926 +779.201319 +779.241345 +779.281771 +779.323963 +779.359693 +779.392960 +779.438015 +779.476810 +779.520033 +779.562557 +779.594159 +779.626327 +779.665954 +779.694492 +779.727858 +779.770149 +779.817968 +779.859027 +779.908411 +779.953832 +779.996023 +780.033119 +780.068517 +780.110009 +780.148437 +780.181604 +780.216769 +780.253066 +780.288863 +780.317235 +780.352100 +780.394757 +780.430755 +780.467884 +780.513439 +780.557261 +780.596356 +780.634451 +780.673312 +780.713538 +780.758593 +780.794224 +780.834084 +780.877141 +780.911207 +780.949269 +780.982602 +781.016668 +781.046572 +781.075676 +781.111973 +781.147504 +781.180038 +781.213438 +781.247304 +781.305812 +781.340111 +781.369715 +781.408676 +781.442509 +781.498053 +781.531619 +781.559625 +781.587830 +781.617467 +781.649934 +781.686764 +781.718799 +781.746904 +781.779005 +781.812405 +781.842974 +781.877107 +781.900217 +781.927423 +781.951599 +781.992891 +782.032518 +782.067949 +782.097087 +782.129587 +782.155894 +782.185531 +782.223560 +782.251299 +782.281136 +782.309874 +782.334349 +782.364719 +782.392657 +782.419131 +782.452131 +782.482001 +782.512937 +782.536447 +782.562421 +782.591359 +782.620296 +782.651165 +782.679237 +782.705045 +782.724725 +782.756626 +782.783932 +782.811105 +782.837645 +782.863852 +782.897585 +782.921495 +782.946270 +782.976373 +783.004378 +783.030885 +783.064119 +783.092490 +783.115068 +783.140775 +783.167149 +783.191191 +783.216033 +783.246569 +783.276306 +783.301048 +783.324691 +783.353063 +783.376706 +783.404478 +783.427688 +783.454594 +783.483066 +783.538444 +783.759822 +783.783965 +783.915333 +783.972110 +783.997917 +784.201946 +784.232216 +784.393621 +784.425856 +784.570677 +784.676571 +784.758556 +784.788626 +784.869645 +784.920594 +784.943737 +785.184363 +785.316497 +785.340040 +785.422458 +785.531848 +785.668412 +785.698115 +785.719794 +785.753993 +785.777236 +785.807872 +785.839141 +785.865847 +785.894485 +785.923690 +785.956057 +785.984662 +786.015265 +786.040439 +786.065514 +786.095484 +786.124189 +786.155424 +786.188158 +786.217462 +786.244502 +786.278701 +786.310003 +786.336310 +786.362151 +786.391888 +786.416396 +786.441271 +786.465347 +786.487259 +786.512866 +786.535377 +786.564848 +786.593852 +786.625420 +786.658687 +786.686692 +786.714398 +786.747865 +786.771841 +786.827751 +786.858654 +786.896316 +786.925187 +786.953692 +786.986293 +787.016895 +787.041337 +787.065613 +787.095517 +787.126885 +787.156023 +787.177834 +787.203742 +787.241504 +787.286359 +787.325819 +787.365846 +787.447697 +787.488556 +787.541537 +787.580664 +787.606771 +787.654157 +787.691054 +787.761517 +787.795283 +787.822056 +787.862349 +788.025852 +788.270507 +788.326651 +788.352025 +788.456954 +788.507303 +788.533277 +788.581529 +788.638805 +788.838472 +788.978232 +789.007003 +789.036407 +789.122388 +789.239670 +789.329547 +789.361249 +789.391485 +789.443433 +789.501841 +789.525717 +789.582793 +789.637805 +789.933542 +789.961814 +790.062580 +790.089386 +790.411930 +790.544864 +790.625683 +790.682692 +790.707934 +790.817324 +791.016791 +791.101840 +791.130811 +791.229478 +791.757883 +791.856351 +791.967406 +792.058748 +792.206833 +792.232674 +792.259181 +792.306700 +792.335505 +792.365841 +792.392914 +792.415158 +792.444396 +792.476230 +792.532907 +792.560879 +792.586920 +792.615924 +792.644029 +792.672900 +792.700406 +792.726047 +792.752887 +792.776130 +792.802903 +792.824881 +792.849290 +792.874998 +792.923449 +792.949190 +792.971035 +792.999207 +793.027312 +793.049423 +793.073066 +793.096443 +793.115757 +793.137402 +793.160512 +793.187385 +793.214192 +793.237502 +793.259480 +793.289117 +793.314658 +793.340166 +793.368471 +793.399273 +793.428910 +793.454052 +793.482457 +793.505866 +793.531308 +793.550389 +793.573699 +793.596609 +793.678327 +793.707731 +793.734404 +793.764974 +793.794011 +793.824980 +793.858513 +793.886885 +793.915456 +793.943162 +793.978793 +794.015323 +794.045626 +794.072899 +794.102303 +794.131374 +794.159279 +794.193378 +794.223015 +794.255416 +794.280358 +794.304400 +794.331706 +794.355449 +794.571600 +794.630707 +794.656681 +794.719418 +794.747390 +794.779758 +794.959345 +795.048655 +795.141562 +795.299804 +795.515621 +795.577093 +795.777060 +795.835801 +795.892411 +796.258211 +796.346889 +796.387415 +796.420449 +796.486683 +796.539197 +796.615420 +796.694008 +796.725643 +796.956412 +797.101567 +797.226509 +797.343958 +797.414720 +797.534101 +797.631936 +797.732036 +797.802066 +797.832469 +797.878789 +797.965569 +798.196305 +798.229039 +798.539861 +798.624076 +798.650583 +798.733867 +798.765268 +798.793174 +798.817083 +798.865934 +798.887746 +798.916317 +798.973360 +799.004862 +799.039461 +799.068032 +799.101465 +799.130869 +799.161139 +799.191841 +799.216117 +799.242890 +799.273260 +799.299667 +799.330736 +799.356210 +799.382184 +799.406660 +799.437729 +799.463536 +799.493440 +799.521545 +799.555577 +799.583916 +799.614918 +799.644755 +799.676390 +799.703529 +799.730769 +799.759973 +799.788944 +799.822011 +799.850216 +799.881951 +799.908724 +799.937528 +799.964968 +799.990675 +800.023709 +800.059506 +800.137129 +800.169330 +800.198567 +800.227405 +800.257741 +800.289076 +800.325007 +800.360438 +800.395936 +800.431600 +800.461404 +800.495536 +800.525573 +800.553279 +800.587178 +800.618513 +800.647518 +800.686445 +800.713618 +800.747717 +800.775689 +800.795137 +800.805826 +800.829436 +800.861603 +800.887144 +800.906558 +801.024074 +801.247217 +801.276754 +801.423408 +801.513950 +801.689874 +801.869328 +801.955075 +801.985811 +802.098898 +802.312917 +802.426437 +802.450080 +802.512418 +802.570859 +802.699830 +802.757905 +802.895301 +802.955507 +803.086310 +803.113716 +803.139823 +803.169526 +803.201395 +803.230232 +803.256140 +803.281981 +803.312983 +803.346816 +803.373356 +803.403292 +803.434894 +803.457705 +803.485876 +803.506889 +803.561601 +803.585410 +803.618311 +803.642553 +803.675753 +803.713682 +803.749912 +803.778850 +803.812083 +803.840988 +803.872856 +803.902926 +803.951477 +803.993368 +804.024837 +804.051344 +804.078517 +804.107887 +804.143485 +804.170924 +804.210884 +804.243585 +804.281613 +804.343884 +804.369625 +804.390637 +804.434860 +804.469492 +804.503391 +804.537024 +804.570391 +804.601593 +804.683311 +804.736325 +804.773687 +804.810251 +804.847180 +804.901260 +804.941719 +804.971090 +805.016611 +805.059102 +805.098429 +805.143351 +805.204789 +805.243084 +805.273121 +805.299628 +805.378782 +805.634592 +805.859800 +806.804122 +806.985407 +807.104021 +807.135723 +807.218240 +807.476382 +807.498593 +807.528963 +807.558966 +807.591933 +807.618806 +807.653238 +807.679112 +807.711114 +807.735822 +807.762329 +807.798726 +807.833092 +807.867424 +807.900924 +807.926431 +807.985273 +808.014543 +808.051040 +808.088269 +808.127397 +808.162329 +808.210048 +808.230261 +808.263094 +808.307417 +808.340217 +808.382608 +808.434589 +808.491199 +808.547843 +808.594729 +808.639318 +808.671386 +808.712644 +808.746244 +808.782108 +808.815841 +808.842248 +808.882574 +808.924466 +808.977746 +809.039850 +809.093563 +809.136687 +809.186537 +809.245145 +809.288401 +809.330926 +809.376413 +809.428694 +809.472384 +809.515807 +809.559996 +809.598558 +809.629460 +809.882740 +810.165224 +810.730891 +810.999422 +811.301320 +811.550271 +811.847273 +811.927593 +811.971116 +812.018569 +812.079441 +812.136284 +812.173081 +812.217203 +812.257130 +812.285202 +812.324895 +812.363490 +812.415172 +812.450703 +812.487166 +812.521032 +812.562025 +812.639913 +812.673913 +812.717569 +812.754998 +812.788631 +812.830123 +812.874578 +812.912307 +812.950935 +812.983503 +813.015670 +813.057329 +813.097822 +813.135351 +813.180639 +813.220865 +813.244741 +813.280372 +813.308710 +813.338414 +813.378707 +813.416969 +813.457462 +813.495823 +813.565986 +813.599786 +813.680105 +813.737315 +813.780039 +813.820365 +813.866286 +813.960025 +814.004447 +814.036149 +814.070381 +814.104381 +814.145806 +814.185566 +814.233318 +814.275876 +814.323095 +814.369116 +814.411806 +814.454930 +814.487431 +814.532386 +814.575376 +814.628290 +814.664420 +814.695356 +814.727757 +814.773311 +814.809575 +814.847304 +814.885232 +814.914037 +814.945805 +814.987563 +815.031020 +815.071779 +815.112338 +815.151499 +815.187330 +815.223127 +815.251666 +815.281003 +815.318132 +815.354696 +815.391093 +815.424126 +815.456893 +815.488329 +815.530220 +815.572078 +815.616600 +815.665751 +815.703180 +815.740210 +815.779171 +815.832451 +815.887795 +815.942141 +815.983167 +816.015601 +816.057925 +816.102048 +816.138844 +816.182267 +816.234448 +816.283999 +816.322827 +816.350532 +816.381734 +816.433816 +816.465251 +816.508907 +816.560222 +816.603313 +816.642640 +816.675241 +816.712836 +816.749833 +816.786463 +816.820329 +816.862786 +816.900016 +816.939776 +816.977405 +817.024358 +817.051830 +817.086962 +817.114001 +817.221860 +817.259989 +817.289059 +817.319895 +817.351231 +817.384231 +817.420461 +817.455559 +817.491390 +817.521793 +817.549832 +817.575639 +817.608240 +817.644104 +817.679569 +817.715566 +817.749199 +817.782033 +817.813701 +817.844870 +817.878603 +817.911403 +817.938110 +817.970544 +818.002445 +818.041007 +818.076937 +818.114034 +818.145302 +818.171743 +818.209172 +818.238809 +818.273108 +818.308306 +818.340407 +818.374873 +818.399182 +818.427553 +818.462685 +818.531782 +818.563251 +818.602511 +818.639175 +818.670776 +818.703477 +818.735711 +818.761885 +818.795185 +818.826987 +818.860620 +818.887992 +818.916730 +818.950563 +818.981732 +819.035378 +819.065415 +819.143370 +819.179634 +819.210236 +819.243370 +819.279134 +819.318195 +819.354658 +819.396916 +819.433546 +819.469044 +819.499347 +819.534212 +819.568045 +819.597582 +819.628484 +819.669776 +819.749830 +819.785760 +819.820192 +819.852094 +819.890122 +819.964381 +820.005174 +820.040172 +820.076702 +820.100878 +820.132879 +820.156556 +820.189390 +820.227651 +820.268211 +820.302410 +820.337008 +820.368544 +820.407671 +820.439772 +820.472440 +820.508603 +820.571407 +820.603309 +820.638773 +820.673305 +820.706505 +820.737674 +820.774504 +820.809269 +820.845366 +820.878733 +820.942969 +820.978600 +821.017427 +821.052925 +821.087590 +821.121956 +821.155589 +821.189155 +821.213698 +821.251460 +821.284227 +821.316861 +821.347430 +821.380098 +821.418892 +821.455289 +821.491553 +821.523721 +821.558219 +821.622222 +821.659551 +821.688755 +821.720191 +821.753824 +821.826418 +821.864613 +821.890753 +821.928016 +821.955588 +821.990853 +822.023054 +822.090753 +822.121689 +822.147596 +822.176833 +822.211266 +822.241202 +822.274602 +822.306870 +822.342934 +822.378765 +822.411998 +822.446097 +822.478065 +822.513430 +822.547895 +822.578032 +822.611165 +822.641002 +822.671538 +822.810333 +822.909667 +823.235574 +823.310066 +823.634008 +823.781294 +823.815526 +823.850758 +823.913828 +824.104004 +824.227148 +824.439635 +824.526148 +824.650324 +824.692082 +824.845029 +824.990251 +825.026248 +825.046361 +825.064310 +825.099774 +825.140500 +825.176697 +825.217856 +825.262511 +825.306168 +825.349058 +825.386421 +825.417223 +825.449691 +825.485022 +825.508099 +825.536004 +825.580993 +825.627246 +825.669704 +825.709497 +825.753353 +825.828278 +825.871002 +825.908132 +825.930942 +825.962944 +825.997409 +826.031708 +826.068305 +826.109064 +826.147792 +826.182857 +826.216057 +826.257848 +826.292647 +826.326513 +826.360213 +826.390649 +826.423183 +826.455384 +826.515357 +826.552220 +826.593679 +826.633439 +826.675830 +826.710928 +826.751721 +826.788950 +826.831241 +826.861544 +826.899806 +826.978127 +827.020385 +827.063875 +827.147891 +827.182356 +827.221151 +827.254318 +827.285753 +827.324980 +827.362676 +827.395476 +827.440931 +827.480591 +827.513558 +827.550421 +827.585020 +827.618287 +827.692412 +827.718653 +827.762809 +827.804500 +827.836701 +827.866005 +827.901769 +827.933271 +827.974730 +828.012925 +828.044094 +828.076994 +828.110361 +828.148123 +828.178426 +828.211426 +828.238599 +828.269701 +828.306398 +828.342828 +828.384220 +828.423547 +828.451919 +828.485385 +828.515522 +828.549721 +828.586517 +828.620350 +828.656680 +828.690979 +828.724646 +828.759777 +828.796973 +828.838532 +828.870999 +828.906364 +828.929641 +828.950153 +828.998105 +829.044792 +829.088182 +829.128009 +829.166537 +829.205831 +829.241062 +829.278724 +829.318418 +829.354382 +829.390046 +829.426044 +829.465771 +829.510026 +829.553017 +829.597072 +829.635834 +829.679590 +829.717219 +829.744358 +829.760775 +829.801634 +829.887881 +829.927042 +829.976959 +830.027542 +830.078191 +830.119982 +830.161907 +830.207328 +830.255214 +830.302333 +830.311790 +830.343525 +830.387015 +830.428207 +830.491377 +830.569699 +830.627141 +830.646888 +830.745922 +830.791377 +830.842792 +830.890078 +830.949752 +830.991776 +831.041127 +831.079189 +831.112988 +831.144856 +831.180421 +831.214254 +831.273694 +831.313588 +831.366135 +831.413587 +831.460341 +831.511023 +831.555545 +831.604929 +831.657144 +831.695305 +831.742924 +831.777190 +831.861672 +831.902098 +831.954579 +832.044090 +832.099701 +832.161872 +832.206161 +832.256077 +832.300533 +832.348885 +832.395338 +832.437163 +832.480486 +832.519081 +832.612188 +832.654445 +832.703996 +832.746453 +832.788178 +832.834665 +832.883816 +832.928271 +832.973593 +833.021445 +833.076689 +833.147818 +833.208724 +833.257708 +833.308657 +833.351248 +833.385980 +833.429703 +833.485180 +833.532333 +833.562670 +834.347384 +834.382749 +834.689442 +834.894803 +834.940757 +835.208755 +835.336161 +835.623373 +835.754675 +835.877419 +835.965931 +836.056606 +836.149913 +836.235894 +836.316679 +836.603093 +837.032663 +837.072057 +837.192869 +837.345982 +837.425969 +837.461300 +837.784610 +837.935159 +837.975852 +838.092402 +838.132662 +838.434127 +838.547380 +838.617343 +839.509051 +839.986439 +840.024634 +840.124135 +840.457568 +840.709449 +840.779579 +840.992099 +841.516541 +841.811013 +841.996094 +842.031426 +842.149574 +842.277879 +842.391998 +842.487136 +842.557233 +842.631125 +842.729593 +842.787702 +842.904652 +843.008414 +843.060462 +843.154768 +843.201022 +843.303086 +843.365024 +843.438983 +843.590232 +843.593795 +843.662726 +843.741814 +843.851171 +843.910345 +843.958164 +844.060495 +844.144777 +844.214940 +844.264390 +844.278177 +844.357697 +844.448340 +844.510178 +844.544510 +844.724763 +844.811842 +844.869818 +845.398355 +845.454033 +845.681139 +845.802817 +845.958461 +846.164688 +846.294791 +846.542910 +846.726526 +846.780838 +846.832420 +846.903882 +846.937948 +846.995523 +847.044374 +847.100518 +847.156562 +847.194857 +847.244374 +847.277208 +847.319432 +847.364487 +847.402549 +847.451567 +847.457061 +847.505013 +847.563854 +847.614470 +847.649169 +847.687664 +847.723495 +847.846904 +847.907111 +847.958493 +847.993957 +848.033151 +848.065319 +848.095988 +848.142608 +848.194889 +848.248369 +848.298386 +848.319531 +848.345006 +848.377773 +848.424892 +848.477074 +848.533484 +848.578039 +848.618998 +848.652132 +848.688695 +848.730753 +848.772445 +848.820397 +848.871279 +848.912638 +849.291358 +849.809473 +849.903046 +850.149932 +850.298284 +850.354061 +850.491024 +850.699982 +850.893954 +850.923225 +851.042272 +851.137610 +851.234180 +851.274174 +851.311170 +851.349365 +851.385096 +851.436445 +851.532715 +851.564616 +851.597816 +851.633647 +851.672941 +851.708173 +851.752528 +851.832282 +851.913634 +851.958256 +852.002911 +852.044469 +852.083197 +852.120926 +852.148432 +852.177703 +852.211669 +852.241439 +852.276537 +852.329750 +852.377203 +852.420626 +852.464615 +852.508372 +852.541638 +852.584229 +852.617995 +852.656057 +852.699613 +852.743569 +852.785561 +852.827452 +852.864149 +852.907405 +852.941238 +852.982564 +853.021158 +853.057655 +853.096450 +853.134878 +853.174138 +853.210435 +853.252427 +853.298914 +853.333912 +853.373006 +853.417228 +853.449596 +853.483129 +853.527718 +853.572673 +853.623256 +853.657055 +853.696382 +853.735810 +853.761950 +853.809969 +853.853925 +853.889922 +853.933645 +853.971074 +854.017727 +854.059852 +854.104241 +854.150161 +854.198313 +854.236209 +854.268376 +854.299912 +854.348296 +854.399012 +854.443102 +854.487790 +854.532146 +854.576734 +854.617560 +854.648896 +854.744200 +854.784993 +854.832046 +854.875968 +854.921889 +854.967443 +855.014197 +855.062948 +855.107303 +855.156188 +855.205838 +855.255089 +855.299844 +855.342401 +855.400243 +855.442601 +855.498145 +855.555455 +855.604406 +855.634709 +855.680530 +855.734476 +855.785624 +855.834842 +855.874569 +855.918625 +855.964079 +856.013729 +856.060682 +856.095880 +856.129913 +856.176466 +856.223220 +856.273636 +856.320689 +856.366443 +856.411032 +856.455754 +856.508567 +856.548594 +856.596413 +856.640668 +856.682893 +856.726716 +856.769606 +856.870272 +856.917325 +856.959150 +857.011497 +857.051724 +857.090385 +857.140801 +857.184091 +857.217291 +857.276399 +857.319522 +857.370604 +857.405470 +857.422786 +857.466808 +857.493848 +857.521087 +857.576698 +857.617224 +857.659349 +857.703105 +857.759415 +857.805236 +857.846894 +857.890850 +857.939735 +857.992648 +858.050624 +858.101107 +858.152722 +858.208099 +858.258283 +858.302605 +858.390151 +858.427780 +858.468872 +858.509231 +858.541133 +858.562944 +858.608732 +858.649857 +858.688552 +858.770170 +858.846094 +858.892348 +858.951189 +859.005202 +859.051788 +859.099307 +859.152721 +859.185055 +859.236137 +859.290749 +859.326513 +859.374931 +859.417489 +859.460279 +859.528411 +859.585021 +859.631575 +859.678328 +859.719620 +859.768204 +859.816123 +860.117755 +860.477328 +860.514524 +860.840631 +860.917354 +861.757680 +861.931972 +862.052518 +862.107696 +862.162574 +862.211492 +862.266337 +862.310793 +862.364805 +862.404632 +862.461708 +862.515454 +862.562974 +862.616087 +862.658711 +862.716586 +862.769667 +862.830439 +862.882853 +862.933203 +862.980289 +863.028907 +863.076326 +863.123945 +863.172697 +863.219050 +863.280855 +863.325111 +863.370199 +863.423179 +863.484052 +863.521814 +863.551118 +863.586283 +863.627108 +863.731171 +863.839929 +863.936132 +863.971097 +863.993875 +864.101600 +864.477624 +864.483551 +864.496771 +864.766734 +864.773261 +864.826075 +864.871696 +864.907127 +864.956911 +864.997337 +865.041393 +865.083284 +865.127839 +865.166334 +865.209291 +865.254446 +865.296471 +865.353880 +865.405395 +865.443424 +865.492208 +865.531102 +865.569064 +865.620713 +865.670263 +865.715951 +865.750583 +865.789677 +865.853047 +865.894106 +865.958008 +866.009857 +866.057709 +866.109557 +866.168897 +866.230735 +866.249350 +866.284981 +866.313719 +866.352547 +866.379154 +866.471694 +866.677888 +867.333298 +867.391940 +868.224140 +868.267796 +868.600064 +868.651113 +868.696367 +868.756540 +868.814283 +868.865531 +868.920376 +868.963000 +869.009454 +869.065231 +869.119610 +869.176553 +869.286343 +869.348814 +869.399297 +869.451012 +869.502893 +869.548348 +869.602427 +869.645983 +869.676486 +869.702560 +869.751711 +869.787275 +869.834994 +869.904758 +869.992337 +870.062134 +870.113049 +870.181414 +870.248114 +870.308653 +870.380581 +870.435193 +870.532296 +870.568860 +870.578317 +870.587141 +870.619009 +870.659103 +870.697531 +870.739655 +870.808387 +871.861499 +871.863797 +871.866094 +871.869358 +871.877849 +872.120706 +872.123137 +872.125601 +872.129997 +872.395964 +872.398162 +872.400593 +872.404322 +872.532094 +872.534992 +872.538055 +872.543949 +872.689603 +872.692567 +872.696696 +872.708152 +872.816909 +872.821771 +872.829630 +872.870389 +872.891068 +872.921904 +872.950309 +873.385840 +873.408684 +873.486739 +873.607951 +873.741684 +873.869089 +873.919739 +874.122003 +874.248210 +874.325066 +874.486771 +874.588969 +874.809382 +874.871553 +874.887703 +875.094430 +875.151839 +875.186904 +875.237053 +875.270920 +875.298825 +875.342648 +875.378512 +875.421902 +875.458199 +875.497593 +875.532857 +875.571419 +875.605118 +875.673616 +875.713776 +875.748408 +875.787802 +875.828195 +875.868055 +875.903287 +875.943413 +876.016407 +876.087835 +876.121168 +876.162694 +876.192997 +876.225531 +876.258098 +876.300056 +876.330292 +876.378311 +876.410412 +876.440116 +876.497059 +876.546409 +876.588034 +876.638484 +876.678710 +876.723232 +876.765590 +876.807881 +876.850771 +876.897991 +876.942113 +876.984538 +877.030358 +877.157098 +877.194161 +877.230225 +877.269752 +877.475946 +877.616405 +877.974180 +878.073547 +878.166787 +878.304982 +878.348073 +878.544443 +878.743777 +879.146207 +879.952267 +879.955264 +879.957495 +879.959859 +879.964255 +880.393026 +880.395323 +880.397588 +880.401251 +880.584367 +880.586465 +880.588830 +880.592359 +880.614537 +880.730088 +880.733318 +880.736382 +880.742076 +880.915936 +880.918267 +880.921230 +880.925859 +881.083002 +881.085865 +881.088729 +881.094523 +881.232652 +881.235516 +881.239212 +881.246238 +881.346871 +881.351033 +881.357027 +881.384933 +881.415036 +881.435249 +881.460823 +881.485798 +881.540211 +881.566218 +881.587763 +881.624593 +881.644273 +881.666185 +881.693690 +881.719398 +881.749168 +881.771413 +881.791825 +881.816567 +881.840244 +881.865352 +881.914369 +881.934250 +881.969614 +881.997952 +882.026757 +882.055362 +882.084233 +882.110673 +882.139544 +882.165152 +882.190526 +882.213170 +882.236480 +882.264452 +882.291958 +882.314735 +882.338145 +882.364652 +882.390260 +882.420063 +882.448002 +882.478705 +882.506943 +882.533350 +882.564918 +882.594688 +882.625058 +882.657026 +882.685165 +882.714768 +882.745704 +882.774109 +882.801115 +882.832317 +882.860689 +882.890259 +882.921328 +882.950998 +882.979370 +883.007409 +883.037046 +883.074974 +883.102314 +883.162920 +883.190326 +883.222660 +883.250499 +883.269746 +883.300948 +883.331717 +883.363053 +883.393555 +883.426389 +883.458291 +883.490891 +883.516499 +883.537878 +883.565783 +883.595054 +883.630585 +883.671577 +883.699383 +883.730085 +883.760921 +883.794721 +883.821594 +883.846835 +883.880268 +883.998117 +884.041374 +884.077005 +884.154627 +884.187494 +884.258356 +884.401613 +884.470577 +884.619528 +884.718529 +884.756624 +884.895152 +885.067413 +885.358522 +885.403510 +885.474672 +885.705741 +885.948598 +885.993286 +886.081931 +886.204941 +886.445401 +886.579067 +886.834644 +886.882163 +887.027884 +887.070908 +887.319825 +887.719525 +887.817227 +887.856322 +887.962049 +888.143467 +888.679131 +888.730180 +888.889754 +889.111532 +889.231079 +889.301708 +889.385591 +889.435840 +889.478365 +890.056852 +890.115127 +890.355054 +890.450725 +890.498910 +890.563245 +890.637904 +890.697478 +890.746861 +890.806868 +890.955020 +891.021320 +891.073867 +891.168906 +891.274300 +891.358316 +891.447360 +891.542432 +891.611130 +891.676198 +891.786055 +891.855685 +891.912295 +892.019321 +892.074233 +892.155385 +892.256350 +892.310030 +892.392148 +892.455984 +892.583123 +892.842930 +893.016190 +893.074931 +893.181724 +893.258914 +893.498907 +893.612093 +893.693179 +893.776862 +893.866339 +893.955982 +894.031074 +894.121184 +894.179259 +899.098335 +899.101299 +899.103630 +899.105561 +899.107892 +899.111455 +899.157109 +899.159807 +899.162804 +899.167432 +899.172228 +899.265334 +899.267199 +899.269097 +899.271129 +899.274259 +899.286080 +899.327639 +899.331701 +899.335864 +899.350349 +899.390476 +899.394805 +899.406227 +900.045121 +900.047718 +900.056010 +900.273425 +900.275823 +900.278587 +900.282982 +900.460738 +900.463335 +900.466132 +900.470428 +900.637394 +900.640192 +900.643954 +900.652945 +900.777454 +900.781617 +900.787744 +900.866698 +900.874624 +900.910155 +900.931300 +900.990474 +901.018879 +901.047817 +901.071693 +901.164600 +901.196868 +901.222575 +901.250714 +901.277554 +901.315682 +901.488742 +901.634596 +901.855475 +901.959171 +902.068595 +902.098099 +902.128302 +902.169794 +902.365698 +902.570892 +902.683846 +902.765131 +902.813283 +903.513482 +903.563998 +903.610285 +903.662366 +903.711917 +903.761667 +903.807821 +903.852310 +903.960102 +904.006788 +904.052542 +904.112083 +904.153009 +904.208087 +904.264164 +904.309319 +904.360101 +904.412382 +904.452775 +904.500827 +904.555805 +904.591336 +904.650011 +904.691669 +904.732329 +904.778815 +904.818775 +904.868293 +904.913514 +904.965728 +905.011349 +905.057570 +905.105921 +905.170823 +905.219408 +905.280580 +905.320007 +905.377783 +905.434359 +905.486840 +905.536357 +905.586840 +905.647246 +905.714745 +905.766227 +905.827432 +905.878348 +905.934126 +905.982844 +906.036823 +906.104056 +906.206953 +906.248478 +906.320572 +906.373985 +906.428564 +906.494698 +906.547079 +906.597129 +906.656636 +906.776915 +906.829163 +906.885440 +906.944714 +907.105586 +907.154238 +907.209083 +907.258067 +907.301524 +907.346445 +907.454304 +907.499659 +907.647777 +907.684906 +907.762029 +907.818206 +907.877713 +907.948243 +907.998559 +908.046178 +908.141183 +908.258133 +908.366857 +908.440983 +908.522435 +908.563827 +908.615308 +908.697260 +909.558531 +909.560662 +909.562993 +912.425661 +912.428691 +915.365751 +915.370247 +915.372578 +915.376207 +926.900705 +926.904001 +926.905833 +926.907731 +926.910162 +926.914757 +927.041131 +927.042563 +927.045360 +927.047225 +927.049356 +927.052786 +927.103502 +927.106199 +927.108730 +927.111560 +927.114491 +927.121983 +927.166572 +927.170568 +927.173199 +927.180325 +927.283988 +927.286385 +927.289682 +927.292113 +927.294610 +927.298906 +928.086151 +928.090747 +929.172597 +929.175161 +929.431338 +929.856313 +929.858977 +929.862074 +929.866936 +929.922280 +929.939030 +929.942959 +929.949919 +930.077425 +930.084484 +930.108660 +930.150285 +930.184351 +930.224711 +930.254947 +930.296106 +930.320415 +930.381387 +930.413255 +930.441527 +930.486016 +930.516086 +930.552283 +930.592942 +930.628473 +930.670531 +930.716452 +930.752216 +930.785782 +930.827740 +930.859442 +930.897238 +930.935033 +930.974893 +931.016884 +931.063738 +931.106661 +931.151450 +931.185316 +931.220647 +931.243957 +931.280820 +931.304130 +931.343324 +931.388646 +931.424710 +931.486414 +931.538895 +931.589911 +931.637596 +931.691309 +931.725475 +931.776025 +931.845955 +931.922811 +932.272894 +932.425941 +932.575458 +932.626240 +933.064069 +933.587578 +933.811420 +933.877821 +933.880385 +934.029469 +938.659601 +938.661565 +938.663397 +938.665528 +938.668792 +938.767393 +938.769158 +938.771722 +938.776084 +938.779114 +938.833294 +938.835258 +938.836790 +938.838655 +938.840819 +938.843816 +938.893900 +938.896597 +938.900626 +938.904089 +938.910883 +938.976084 +938.979547 +938.984476 +939.006653 +939.008551 +939.010849 +939.071422 +939.075018 +939.084842 +939.836290 +939.838621 +939.841151 +939.845380 +940.099293 +940.101691 +940.104055 +940.108217 +940.247911 +940.250375 +940.252939 +940.257301 +940.345114 +940.349509 +940.354138 +940.362030 +940.418507 +940.427098 +940.430062 +940.448943 +940.480411 +940.541617 +940.543681 +940.549975 +940.563129 +940.620538 +940.628064 +941.093764 +941.167291 +941.438919 +941.704886 +941.820903 +941.848276 +942.006517 +942.660463 +942.809014 +942.867822 +942.913909 +942.973816 +943.020602 +943.080043 +943.124864 +943.178844 +943.237219 +943.284771 +943.353669 +943.435820 +943.480708 +943.535120 +943.571850 +943.623765 +943.683905 +943.762926 +943.928460 +944.004151 +944.097757 +944.167154 +944.248639 +944.423698 +944.495725 +944.590664 +944.767587 +944.827294 +945.068286 +945.071982 +945.075778 +945.082372 +945.203117 +945.204916 +945.206481 +945.208778 +945.212242 +945.219967 +945.267619 +945.269418 +945.330290 +945.344709 +945.351868 +945.390929 +945.402052 +948.135948 +948.139678 +948.145938 +952.002445 +952.004309 +952.006108 +952.008439 +952.012834 +952.112168 +952.115198 +952.117030 +952.118995 +952.121059 +952.123124 +952.181232 +952.182797 +952.185894 +952.187826 +952.190423 +952.243337 +952.245535 +952.248631 +952.251862 +952.257423 +952.318728 +952.321592 +952.324855 +952.329118 +952.371608 +952.378368 +952.381698 +952.438941 +952.442970 +952.446733 +952.450496 +952.499414 +952.565181 +952.568045 +952.571175 +952.577236 +953.471208 +953.473572 +953.475903 +953.479499 +953.695683 +953.697914 +953.814664 +953.822789 +953.890022 +953.976136 +954.040205 +954.041936 +954.060784 +954.111700 +954.188290 +954.279965 +955.018392 +955.022954 +955.178532 +955.333444 +955.368342 +955.529114 +955.799244 +955.873237 +955.910533 +955.942534 +955.978931 +956.018025 +956.054155 +956.088821 +956.161381 +956.200276 +956.247562 +956.290486 +956.324352 +956.361148 +956.396479 +956.432976 +956.472503 +956.517192 +956.560981 +956.597345 +956.642233 +956.684358 +956.724018 +956.761614 +956.813862 +956.857951 +956.906802 +956.964145 +957.005337 +957.053155 +957.103605 +957.143498 +957.194780 +957.251657 +957.306002 +957.362512 +957.401906 +957.465709 +957.532276 +957.640501 +957.693481 +957.756252 +957.817590 +957.882958 +957.962179 +958.039535 +959.320319 +960.984687 +960.988683 +960.991247 +960.996175 +961.095209 +961.097374 +961.099538 +961.102269 +961.107930 +961.155715 +961.157680 +961.159878 +961.163141 +961.166038 +961.170268 +961.260577 +961.263341 +961.265805 +961.268136 +961.271500 +961.313125 +961.315489 +961.317454 +961.319918 +961.323747 +961.377926 +961.379725 +961.381889 +961.386118 +961.389515 +961.447590 +961.449255 +961.451419 +961.454616 +961.459178 +962.071299 +962.076094 +962.080390 +962.284619 +962.287316 +962.290047 +962.293576 +962.469833 +962.472730 +962.475794 +962.480689 +962.649520 +962.652784 +962.656180 +962.663040 +962.820316 +962.823479 +962.827009 +962.833369 +962.971331 +962.975827 +962.981921 +963.050419 +963.060908 +963.102800 +963.126243 +963.153949 +963.184518 +963.214688 +963.238897 +963.284085 +963.308294 +963.339063 +963.367069 +963.396672 +963.427508 +963.460009 +963.487615 +963.519449 +963.558144 +963.628340 +963.664404 +963.695240 +963.734401 +963.770198 +963.810225 +963.847654 +963.884417 +963.927241 +963.967834 +964.005163 +964.041760 +964.078756 +964.115719 +964.152682 +964.192209 +964.232469 +964.271663 +964.312422 +964.360707 +964.399169 +964.446488 +964.488379 +964.529272 +964.573095 +964.617051 +964.644124 +964.693641 +964.733634 +964.780953 +964.830137 +964.873860 +964.922012 +964.970697 +965.022412 +965.077190 +965.135898 +965.193740 +965.245755 +965.312355 +965.361272 +965.480453 +965.496004 +965.543357 +965.554213 +965.565368 +965.616950 +965.621745 +965.692907 +965.695504 +965.769997 +965.781252 +965.849084 +965.892108 +965.894305 +965.947419 +965.960439 +966.017682 +966.020646 +966.052147 +966.080686 +966.114485 +967.019013 +967.021610 +967.023575 +967.026239 +967.031267 +967.096569 +967.099532 +967.103728 +967.113085 +967.252846 +967.255376 +967.260505 +967.264267 +967.386145 +967.392406 +967.394670 +967.458340 +967.466632 +967.470961 +967.530534 +967.538560 +967.545719 +967.595769 +967.599265 +967.603661 +967.611287 +968.005292 +968.007757 +968.011753 +968.247317 +968.251279 +968.255375 +968.268096 +968.425771 +968.430367 +968.435961 +968.457140 +968.496234 +968.509754 +968.534962 +968.566297 +968.600330 +968.622142 +968.647183 +968.677519 +968.705725 +968.715748 +968.752478 +968.794969 +968.821908 +968.860936 +968.895701 +968.968495 +969.005325 +969.047649 +969.092071 +969.138225 +969.186743 +969.236860 +969.273256 +969.325704 +969.373290 +969.421974 +969.514015 +969.566829 +969.607588 +969.650579 +969.702460 +969.750146 +969.798664 +969.833229 +969.864565 +969.888008 +969.927768 +969.941854 +969.974088 +970.047082 +970.089240 +970.109786 +970.159036 +970.162366 +970.225170 +970.236759 +970.328533 +970.342986 +970.600095 +970.606089 +970.614414 +970.628267 +970.772289 +970.773555 +970.780315 +970.785376 +970.830697 +971.473954 +971.476851 +971.481413 +971.636058 +971.640021 +971.797696 +971.843184 +972.208219 +972.439287 +972.451042 +972.639354 +972.642517 +972.646380 +972.844115 +972.987439 +973.033559 +973.170755 +973.249609 +973.279213 +973.313446 +973.342716 +973.368291 +973.402690 +973.435990 +973.465527 +973.503522 +973.537588 +973.559000 +973.589369 +973.625500 +973.656702 +973.674184 +973.707218 +973.758800 +973.776349 +973.789402 +973.859699 +973.871121 +973.913378 +973.927498 +973.929362 +973.938720 +973.988803 +973.992033 +973.999059 +974.055902 +974.065526 +974.111413 +974.113178 +974.119206 +974.807517 +974.810514 +974.813211 +974.817440 +975.026464 +975.029161 +975.032125 +975.036321 +975.176880 +975.179977 +975.183507 +975.193830 +975.348642 +975.352604 +975.357100 +975.368056 +975.515874 +975.519437 +975.525631 +975.549441 +975.616840 +975.626930 +975.655168 +975.685538 +975.712278 +975.748808 +975.779510 +975.812444 +975.845944 +975.871585 +975.918105 +975.947109 +975.978877 +976.013343 +976.044012 +976.076280 +976.107649 +976.145644 +976.175148 +976.208847 +976.241814 +976.274515 +976.311644 +976.342180 +976.380043 +976.413176 +976.445743 +976.483739 +976.515940 +976.550239 +976.582540 +976.618237 +976.656266 +976.685870 +976.727495 +976.761561 +976.801887 +976.829726 +976.871351 +976.901953 +976.941014 +976.977511 +977.020968 +977.054567 +977.093928 +977.127261 +977.165956 +977.204118 +977.243412 +977.291763 +977.328693 +977.383871 +977.423598 +977.466655 +977.507014 +977.561893 +977.601187 +977.690497 +977.777610 +977.874047 +978.178809 +978.271516 +978.724662 +978.973347 +979.040013 +979.393826 +979.583536 +979.938447 +979.968051 +980.031121 +980.070981 +980.116236 +980.161457 +980.219000 +980.307045 +980.360292 +980.396555 +980.443408 +980.491627 +980.534850 +980.580804 +980.653931 +980.693525 +980.761756 +980.823694 +980.885566 +980.997021 +981.057127 +981.126058 +981.173977 +981.240644 +981.283634 +981.375076 +981.434583 +981.494323 +981.552631 +981.619098 +981.688429 +981.756061 +981.816534 +981.865685 +981.957892 +982.030153 +982.716333 +983.118631 +983.812369 +983.876039 +983.878537 +983.945370 +984.061320 +987.822256 +987.827983 +987.831480 +988.063614 +988.065679 +988.067543 +988.069675 +988.072738 +988.130114 +988.131679 +988.139072 +988.143301 +988.212132 +988.225086 +988.342202 +988.343933 +988.345532 +988.347829 +988.349761 +988.357187 +988.415195 +988.417859 +988.420657 +988.424253 +988.721788 +988.723986 +988.726051 +988.728981 +989.055921 +989.058118 +989.060083 +989.062847 +989.068208 +989.251891 +989.254156 +989.256320 +989.259650 +989.270306 +989.436973 +989.439570 +989.441701 +989.445164 +989.578631 +989.582061 +989.585990 +989.597179 +989.723752 +989.727981 +989.733642 +989.761215 +989.793349 +989.819756 +989.843332 +989.874235 +989.905603 +989.935740 +989.959616 +989.991051 +990.021754 +990.053622 +990.081694 +990.111830 +990.142000 +990.167142 +990.200475 +990.232077 +990.260881 +990.321920 +990.351224 +990.381394 +990.412796 +990.450125 +990.482260 +990.514993 +990.548693 +990.579262 +990.609133 +990.643698 +990.674534 +990.703838 +990.734008 +990.767241 +990.802006 +990.839835 +990.875632 +990.911197 +990.950591 +990.993281 +991.037304 +991.076831 +991.112029 +991.150524 +991.184823 +991.224017 +991.264776 +991.300074 +991.339368 +991.384423 +991.419355 +991.469838 +991.514560 +991.562811 +991.606734 +991.654020 +991.701539 +991.755652 +991.810297 +991.864576 +991.928978 +991.976930 +992.027246 +992.084189 +992.143197 +992.223283 +992.284955 +992.357849 +992.409331 +992.465441 +992.528245 +994.962808 +995.353317 +995.355581 +995.357413 +995.362774 +995.539830 +995.541795 +995.543793 +995.546290 +995.551385 +995.568801 +995.570400 +995.572597 +995.574729 +995.577892 +995.584086 +995.705997 +995.707729 +995.709594 +995.711525 +995.714023 +995.720216 +995.868068 +995.869633 +995.871265 +995.873230 +995.878025 +995.975927 +995.978291 +995.980822 +995.984752 +996.385184 +996.387515 +996.389713 +996.393076 +996.592477 +996.594708 +996.597338 +996.600668 +996.772630 +996.776093 +996.780322 +996.793509 +996.912689 +996.918384 +996.930238 +996.981820 +996.999070 +997.028940 +997.057544 +997.085017 +997.115719 +997.142859 +997.173661 +997.207328 +997.242226 +997.271464 +997.304231 +997.340261 +997.376891 +997.413022 +997.440827 +997.471863 +997.499269 +997.529239 +997.557910 +997.582019 +997.613654 +997.639861 +997.676591 +997.711223 +997.746788 +997.777091 +997.811723 +997.847920 +997.889545 +997.921113 +997.954213 +997.988313 +998.033268 +998.072562 +998.109658 +998.147453 +998.187746 +998.226907 +998.270563 +998.314286 +998.354280 +998.391676 +998.429638 +998.470130 +998.511622 +998.551249 +998.598435 +998.634466 +998.675858 +998.711589 +998.768265 +998.805728 +998.865768 +998.907826 +998.955511 +999.003496 +999.056677 +999.100566 +999.161105 +999.202730 +999.249450 +999.323876 +999.384815 +999.462537 +999.514085 +999.595171 +999.743323 +1003.362766 +1003.533362 +1003.592769 +1003.597065 +1003.606655 +1003.659602 +1003.662832 +1003.723339 +1003.730665 +1003.848880 +1003.853941 +1003.863765 +1004.587673 +1004.590304 +1004.592968 +1004.598995 +1004.840953 +1004.843717 +1004.846581 +1004.852142 +1005.096997 +1005.099894 +1005.106621 +1005.326234 +1005.329164 +1005.332128 +1005.337756 +1005.524802 +1005.528199 +1005.531628 +1005.564729 +1005.696963 +1005.702258 +1005.713413 +1005.833593 +1005.841219 +1005.859400 +1005.915411 +1005.932594 +1005.995398 +1006.022071 +1006.056436 +1006.104721 +1006.140852 +1006.202091 +1006.241351 +1006.291501 +1006.394465 +1006.451741 +1006.519673 +1006.592000 +1006.657102 +1006.727831 +1006.788737 +1006.846546 +1006.930162 +1007.001291 +1007.049709 +1007.108317 +1007.144181 +1007.248377 +1007.329962 +1007.395596 +1007.492632 +1007.570787 +1007.588436 +1007.653971 +1007.658067 +1007.712046 +1007.714610 +1007.717008 +1007.720704 +1007.774084 +1007.776248 +1007.781543 +1007.848409 +1007.850874 +1007.875382 +1007.917307 +1007.922402 +1007.965492 +1008.011946 +1008.814909 +1008.895728 +1008.949108 +1009.004719 +1009.176380 +1009.304718 +1009.308082 +1009.451205 +1009.919037 +1010.239216 +1010.247774 +1010.382306 +1010.389999 +1010.490898 +1010.493994 +1010.497824 +1010.505649 +1010.678676 +1010.682639 +1010.687101 +1010.785902 +1010.826262 +1010.854567 +1010.910378 +1010.934287 +1010.974214 +1011.007547 +1011.045243 +1011.074613 +1011.101819 +1011.135452 +1011.167520 +1011.204383 +1011.235918 +1011.265822 +1011.299821 +1011.335652 +1011.372948 +1011.399721 +1011.425695 +1011.450504 +1011.485402 +1011.519901 +1011.557530 +1011.596058 +1011.636151 +1011.679141 +1011.725761 +1011.765555 +1011.802485 +1011.848572 +1011.907813 +1011.952568 +1012.001552 +1012.038748 +1012.096091 +1012.143976 +1012.202085 +1012.252334 +1012.303417 +1012.376776 +1012.446240 +1012.502850 +1012.573546 +1012.667652 +1012.751302 +1012.754865 +1012.812074 +1012.918201 +1012.939546 +1012.941245 +1012.949037 +1013.012240 +1013.013672 +1013.093159 +1013.113139 +1013.150602 +1013.212240 +1013.218900 +1013.697055 +1013.699020 +1013.701817 +1013.708011 +1014.491693 +1014.493324 +1014.495922 +1014.498020 +1014.504047 +1014.599418 +1014.601949 +1014.603880 +1014.606145 +1014.608509 +1014.614570 +1014.739878 +1014.742009 +1014.743940 +1014.746338 +1014.749801 +1014.799418 +1014.800817 +1014.802615 +1014.805345 +1014.808243 +1014.812871 +1014.948369 +1014.952298 +1014.954696 +1014.957160 +1014.960490 +1015.062988 +1015.065718 +1015.069315 +1015.076074 +1015.310440 +1015.313004 +1015.315768 +1015.319664 +1015.497253 +1015.500350 +1015.503846 +1015.509774 +1015.643806 +1015.647169 +1015.651931 +1015.662154 +1015.738345 +1015.746570 +1015.760656 +1015.795321 +1015.812837 +1015.841608 +1015.868614 +1015.891958 +1015.916833 +1015.947336 +1015.971412 +1016.007975 +1016.032717 +1016.066383 +1016.098251 +1016.127822 +1016.155827 +1016.185830 +1016.221927 +1016.248734 +1016.280968 +1016.314368 +1016.342773 +1016.376173 +1016.410339 +1016.443839 +1016.476373 +1016.510172 +1016.541907 +1016.576073 +1016.609240 +1016.645104 +1016.679503 +1016.713635 +1016.746969 +1016.780335 +1016.812070 +1016.846769 +1016.878903 +1016.909406 +1016.943339 +1016.978004 +1017.017231 +1017.051997 +1017.087461 +1017.132116 +1017.166848 +1017.206742 +1017.236512 +1017.265416 +1017.296552 +1017.334747 +1017.356991 +1017.393721 +1017.426155 +1017.464317 +1017.497051 +1017.550031 +1017.583265 +1017.630284 +1017.679535 +1017.708673 +1017.738742 +1017.785929 +1017.844570 +1017.880900 +1017.964916 +1018.009971 +1018.089691 +1018.144403 +1018.229884 +1018.273141 +1018.391489 +1018.435512 +1018.502378 +1018.578069 +1018.639174 +1018.701212 +1018.761385 +1018.816497 +1018.988558 +1019.140040 +1019.176703 +1019.178801 +1019.183696 +1019.187026 +1019.241904 +1019.244002 +1019.255791 +1019.313499 +1019.315364 +1019.318195 +1019.387659 +1019.389057 +1019.396550 +1019.515464 +1019.518694 +1019.523989 +1019.532380 +1019.663482 +1019.666613 +1019.671375 +1020.262350 +1021.556687 +1022.610266 +1023.007435 +1023.009966 +1023.014029 +1023.384424 +1023.630278 +1023.633209 +1023.637738 +1023.865210 +1023.868040 +1023.870971 +1023.877231 +1024.071736 +1024.074434 +1024.077164 +1024.081560 +1024.242799 +1024.245696 +1024.248826 +1024.253421 +1024.367440 +1024.370904 +1024.374933 +1024.385123 +1024.547260 +1024.551290 +1024.556085 +1024.580227 +1024.660247 +1024.670171 +1024.700074 +1024.732741 +1024.768539 +1024.794613 +1024.824416 +1024.854819 +1024.883391 +1024.912095 +1024.941832 +1024.972435 +1025.006667 +1025.036204 +1025.068306 +1025.099108 +1025.136038 +1025.168006 +1025.199441 +1025.234606 +1025.264742 +1025.292614 +1025.327479 +1025.362644 +1025.423483 +1025.450923 +1025.484755 +1025.522418 +1025.552887 +1025.577096 +1025.606733 +1025.648325 +1025.680226 +1025.718388 +1025.927845 +1026.240599 +1026.431741 +1026.529843 +1026.614391 +1026.655517 +1026.712526 +1026.738434 +1026.801004 +1026.864075 +1027.252419 +1027.616521 +1027.816588 +1028.050720 +1028.155149 +1028.261143 +1028.486884 +1028.557979 +1028.632971 +1028.670466 +1028.707729 +1028.747223 +1028.827343 +1028.935601 +1029.021648 +1029.063673 +1029.226710 +1029.703899 +1029.965803 +1030.079689 +1030.125743 +1030.160175 +1030.204697 +1030.259509 +1030.300302 +1030.350218 +1030.399735 +1030.438297 +1030.489912 +1030.536765 +1030.587481 +1030.634167 +1030.682752 +1030.740161 +1030.784284 +1030.830471 +1030.876558 +1030.915519 +1030.971130 +1031.011989 +1031.055612 +1031.099701 +1031.144357 +1031.201566 +1031.246355 +1031.294673 +1031.342458 +1031.378689 +1031.431869 +1031.492475 +1031.526541 +1031.599501 +1031.615951 +1031.651915 +1031.675092 +1031.758642 +1031.772162 +1031.796704 +1031.817716 +1031.843590 +1031.873494 +1031.881918 +1031.942724 +1031.944023 +1031.946088 +1032.028472 +1032.035465 +1032.084982 +1032.086347 +1032.087946 +1032.093207 +1032.145388 +1032.147153 +1032.154845 +1032.199234 +1032.201166 +1032.207426 +1032.267199 +1032.273427 +1032.286347 +1032.323610 +1032.330136 +1032.402064 +1032.410323 +1032.776323 +1032.778821 +1032.783349 +1032.787645 +1032.946586 +1032.951281 +1032.954511 +1032.958241 +1033.157475 +1033.159506 +1033.161571 +1033.164235 +1033.168764 +1033.374058 +1033.376256 +1033.378387 +1033.381251 +1033.386646 +1033.549416 +1033.551714 +1033.554078 +1033.565800 +1033.705060 +1033.707524 +1033.710222 +1033.713818 +1033.723642 +1033.841324 +1033.844787 +1033.848184 +1033.899332 +1033.908723 +1033.928437 +1033.949815 +1033.972692 +1033.994970 +1034.013019 +1034.034464 +1034.055509 +1034.079652 +1034.100598 +1034.123275 +1034.144653 +1034.160604 +1034.188310 +1034.205626 +1034.218746 +1034.243688 +1034.264434 +1034.289442 +1034.310721 +1034.333564 +1034.350114 +1034.369262 +1034.388043 +1034.406458 +1034.427071 +1034.537960 +1034.566698 +1034.618113 +1034.760703 +1034.875555 +1035.118678 +1035.144220 +1035.170360 +1035.268329 +1035.344752 +1035.371725 +1035.397433 +1035.473257 +1035.498798 +1035.581249 +1035.662434 +1035.688042 +1035.759537 +1035.833330 +1035.952577 +1035.983380 +1036.393036 +1036.511551 +1036.537392 +1036.761301 +1036.790638 +1036.841920 +1036.894567 +1037.015113 +1037.046549 +1037.239123 +1037.300628 +1037.372689 +1037.408819 +1037.795233 +1037.899928 +1037.931496 +1038.099628 +1038.744882 +1038.816444 +1038.866260 +1038.910017 +1038.952507 +1038.987206 +1039.032161 +1039.065794 +1039.113413 +1039.149444 +1039.185707 +1039.225567 +1039.265328 +1039.300892 +1039.334891 +1039.361165 +1039.379080 +1039.404555 +1039.423436 +1039.445148 +1039.458634 +1039.505554 +1039.507951 +1039.557202 +1039.656536 +1040.155670 +1040.158733 +1040.161764 +1040.165826 +1040.345313 +1040.348410 +1040.352173 +1040.357301 +1040.365093 +1040.417741 +1040.419939 +1040.424101 +1040.427964 +1040.441883 +1040.480844 +1040.483375 +1040.486239 +1040.499392 +1040.813445 +1040.819938 +1040.843581 +1040.881510 +1040.911646 +1040.954437 +1040.975283 +1041.022102 +1041.058333 +1041.087737 +1041.117241 +1041.150840 +1041.179645 +1041.212412 +1041.239851 +1041.274084 +1041.299491 +1041.332092 +1041.364759 +1041.397260 +1041.429861 +1041.459498 +1041.490500 +1041.517840 +1041.548309 +1041.574150 +1041.607050 +1041.643514 +1041.672019 +1041.701989 +1041.731159 +1041.759398 +1041.790200 +1041.821136 +1041.846677 +1041.879977 +1041.908915 +1041.940516 +1041.968322 +1042.000190 +1042.026231 +1042.053936 +1042.083074 +1042.105851 +1042.136887 +1042.167223 +1042.201588 +1042.232458 +1042.257466 +1042.301688 +1042.334988 +1042.365358 +1042.398558 +1042.439117 +1042.479410 +1042.512710 +1042.581641 +1042.627462 +1042.662560 +1042.696360 +1042.728261 +1042.759730 +1042.794328 +1042.820735 +1042.854202 +1042.883106 +1042.916906 +1042.955267 +1042.989966 +1043.019436 +1043.050272 +1043.109713 +1043.147608 +1043.186070 +1043.222300 +1043.253769 +1043.293895 +1043.323699 +1043.359063 +1043.391464 +1043.452070 +1043.483439 +1043.516705 +1043.549473 +1043.581707 +1043.613309 +1043.641947 +1043.674248 +1043.699656 +1043.728793 +1043.760928 +1043.791464 +1043.817138 +1043.874747 +1043.926562 +1043.955233 +1043.984271 +1044.011277 +1044.038783 +1044.069519 +1044.094161 +1044.124064 +1044.151437 +1044.171949 +1044.203185 +1044.230324 +1044.255932 +1044.280607 +1044.310045 +1044.336285 +1044.366288 +1044.394460 +1044.422132 +1044.453001 +1044.483371 +1044.508846 +1044.535785 +1044.564756 +1044.595525 +1044.622432 +1044.648639 +1044.672082 +1044.700154 +1044.723697 +1044.751736 +1044.782572 +1044.809578 +1044.834619 +1044.863024 +1044.892095 +1044.921932 +1044.942112 +1044.974380 +1045.005981 +1045.037050 +1045.066521 +1045.095159 +1045.125595 +1045.154632 +1045.183537 +1045.209944 +1045.239914 +1045.268685 +1045.295991 +1045.327126 +1045.416737 +1045.473247 +1045.527992 +1045.650037 +1045.766820 +1045.876943 +1045.963689 +1045.987432 +1046.222131 +1046.293692 +1046.350968 +1046.503749 +1046.669616 +1046.702650 +1046.735184 +1046.839180 +1046.877574 +1046.907511 +1046.940811 +1046.975909 +1047.075410 +1047.105580 +1047.163988 +1047.195356 +1047.251334 +1047.468749 +1047.538513 +1047.570048 +1047.602882 +1047.636948 +1047.671513 +1047.702582 +1047.741643 +1047.771047 +1047.801117 +1047.827723 +1047.864453 +1047.893125 +1047.925392 +1047.958193 +1047.993191 +1048.018399 +1048.053164 +1048.088529 +1048.118965 +1048.147969 +1048.181569 +1048.209241 +1048.240543 +1048.270747 +1048.304246 +1048.334816 +1048.364053 +1048.394023 +1048.426191 +1048.457460 +1048.486664 +1048.518732 +1048.548469 +1048.577473 +1048.607077 +1048.637546 +1048.666384 +1048.696987 +1048.722961 +1048.751166 +1048.779770 +1048.811039 +1048.838711 +1048.869314 +1048.898785 +1048.959990 +1048.989560 +1049.016167 +1049.044772 +1049.073443 +1049.099617 +1049.128288 +1049.159823 +1049.185930 +1049.213070 +1049.243839 +1049.276640 +1049.304911 +1049.330186 +1049.357825 +1049.386863 +1049.415234 +1049.445504 +1049.472310 +1049.500782 +1049.527255 +1049.553163 +1049.583133 +1049.609806 +1049.636912 +1049.663819 +1049.691358 +1049.719663 +1049.749600 +1049.775174 +1049.799616 +1049.826922 +1049.859589 +1049.883665 +1049.916066 +1049.943006 +1049.976073 +1050.003246 +1050.037578 +1050.071477 +1050.101581 +1050.130518 +1050.162386 +1050.185596 +1050.215134 +1050.238743 +1050.296319 +1050.322093 +1050.352529 +1050.380135 +1050.415000 +1050.440242 +1050.468014 +1050.499449 +1050.527521 +1050.556192 +1050.583132 +1050.614001 +1050.639775 +1050.663818 +1050.696052 +1050.724424 +1050.753694 +1050.782366 +1050.809605 +1050.841939 +1050.875572 +1050.906109 +1050.936112 +1050.965649 +1050.995885 +1051.024690 +1051.054194 +1051.087627 +1051.118296 +1051.150231 +1051.181433 +1051.217197 +1051.244936 +1051.272275 +1051.302878 +1051.330517 +1051.359621 +1051.391423 +1051.420194 +1051.449265 +1051.481766 +1051.506441 +1051.569478 +1051.597150 +1051.620593 +1051.645468 +1051.675871 +1051.703544 +1051.739141 +1051.765681 +1051.792721 +1051.853693 +1051.885795 +1051.914299 +1051.939174 +1051.966913 +1051.998648 +1052.027752 +1052.055458 +1052.082664 +1052.111302 +1052.137476 +1052.171442 +1052.200679 +1052.227120 +1052.255358 +1052.282997 +1052.312934 +1052.344735 +1052.393020 +1052.423556 +1052.453726 +1052.482564 +1052.511601 +1052.543869 +1052.571575 +1052.597782 +1052.620126 +1052.650462 +1052.676503 +1052.706440 +1052.732913 +1052.790988 +1052.813766 +1052.839473 +1052.868278 +1052.894718 +1052.924188 +1052.951361 +1052.981298 +1053.009004 +1053.038974 +1053.070475 +1053.098581 +1053.124488 +1053.152027 +1053.182230 +1053.206939 +1053.232946 +1053.259453 +1053.291854 +1053.321258 +1053.349829 +1053.376069 +1053.400878 +1053.427351 +1053.451927 +1053.481231 +1053.508703 +1053.536476 +1053.571441 +1053.599213 +1053.631913 +1053.666945 +1053.693985 +1053.721224 +1053.747464 +1053.775203 +1053.802809 +1053.831247 +1053.863382 +1053.891687 +1053.919759 +1053.949063 +1054.006039 +1054.035276 +1054.060684 +1054.093118 +1054.120058 +1054.146199 +1054.173804 +1054.202509 +1054.232479 +1054.259052 +1054.288656 +1054.316528 +1054.342802 +1054.370308 +1054.402442 +1054.427550 +1054.455023 +1054.483161 +1054.514430 +1054.543667 +1054.573204 +1054.599578 +1054.630048 +1054.658452 +1054.691086 +1054.722222 +1054.748263 +1054.778332 +1054.808669 +1054.840537 +1054.869574 +1054.896281 +1054.922921 +1054.952791 +1054.978299 +1055.007137 +1055.034576 +1055.102142 +1055.130280 +1055.159950 +1055.198146 +1055.224786 +1055.248062 +1055.278698 +1055.305372 +1055.344965 +1055.383726 +1055.416494 +1055.446797 +1055.479264 +1055.507935 +1055.535208 +1055.563213 +1055.597779 +1055.629014 +1055.657785 +1055.683826 +1055.709867 +1055.744365 +1055.777432 +1055.810299 +1055.840036 +1055.871005 +1055.896613 +1055.927382 +1055.960716 +1055.992251 +1056.053856 +1056.084558 +1056.112797 +1056.133243 +1056.164278 +1056.192017 +1056.215494 +1056.246896 +1056.276366 +1056.311464 +1056.339303 +1056.367175 +1056.393982 +1056.430545 +1056.452656 +1056.489853 +1056.526816 +1056.560182 +1056.587888 +1056.616759 +1056.650658 +1056.681694 +1056.746329 +1056.776765 +1056.804271 +1056.830312 +1056.860049 +1056.891417 +1056.916226 +1056.950458 +1056.979829 +1057.006502 +1057.033608 +1057.061014 +1057.084124 +1057.128946 +1057.152556 +1057.184790 +1057.213095 +1057.246029 +1057.268340 +1057.297844 +1057.330777 +1057.366375 +1057.397011 +1057.421620 +1057.446328 +1057.480128 +1057.509732 +1057.548926 +1057.578496 +1057.608766 +1057.649026 +1057.678629 +1057.709398 +1057.777264 +1057.806135 +1057.878895 +1057.909931 +1057.941832 +1057.966141 +1058.033374 +1058.063577 +1058.095945 +1058.128679 +1058.156751 +1058.177763 +1058.202738 +1058.240434 +1058.273667 +1058.307200 +1058.331576 +1058.359747 +1058.393980 +1058.457350 +1058.484356 +1058.506600 +1058.533607 +1058.560879 +1058.598642 +1058.631609 +1058.661112 +1058.687186 +1058.713194 +1058.745694 +1058.770969 +1058.804069 +1058.832774 +1058.864809 +1058.901572 +1058.935338 +1058.969537 +1058.993646 +1059.022617 +1059.065508 +1059.101438 +1059.136903 +1059.160546 +1059.181725 +1059.205135 +1059.231741 +1059.270702 +1059.302304 +1059.333673 +1059.368638 +1059.400672 +1059.431275 +1059.462577 +1059.490782 +1059.515257 +1059.544828 +1059.580093 +1059.609663 +1059.643862 +1059.675963 +1059.712260 +1059.735703 +1059.762943 +1059.791314 +1059.823316 +1059.858514 +1059.894378 +1059.915490 +1059.944827 +1059.970535 +1060.002270 +1060.042396 +1060.073898 +1060.104634 +1060.137102 +1060.165540 +1060.193778 +1060.218620 +1060.249589 +1060.280025 +1060.308530 +1060.339699 +1060.370268 +1060.394411 +1060.421184 +1060.449156 +1060.473831 +1060.501803 +1060.531107 +1060.559712 +1060.587984 +1060.618486 +1060.646658 +1060.671467 +1060.697541 +1060.728510 +1060.758080 +1060.787617 +1060.820418 +1060.850854 +1060.873098 +1060.904134 +1060.933904 +1060.959179 +1061.012892 +1061.042495 +1061.069701 +1061.094810 +1061.121483 +1061.153151 +1061.179425 +1061.201270 +1061.231140 +1061.258246 +1061.283654 +1061.313524 +1061.335802 +1061.363707 +1061.390547 +1061.418053 +1061.444726 +1061.474063 +1061.505199 +1061.532472 +1061.563108 +1061.588016 +1061.614123 +1061.635502 +1061.662208 +1061.683121 +1061.708362 +1061.736900 +1061.766004 +1061.792644 +1061.823980 +1061.852451 +1061.876527 +1061.897606 +1061.926144 +1061.951219 +1061.997173 +1062.025411 +1062.048155 +1062.076327 +1062.104665 +1062.139497 +1062.200636 +1062.260376 +1062.292444 +1062.323680 +1062.355714 +1062.387749 +1062.424146 +1062.455747 +1062.485351 +1062.516720 +1062.544725 +1062.576826 +1062.607995 +1062.641495 +1062.671898 +1062.699004 +1062.725244 +1062.760675 +1062.785850 +1062.818418 +1062.851218 +1062.880123 +1062.910059 +1062.938198 +1062.967169 +1062.999536 +1063.030705 +1063.059410 +1063.088414 +1063.116253 +1063.145024 +1063.230339 +1063.259476 +1063.288048 +1063.316819 +1063.344957 +1063.374961 +1063.403532 +1063.433435 +1063.459642 +1063.486815 +1063.518650 +1063.544657 +1063.575560 +1063.607295 +1063.637897 +1063.669799 +1063.697771 +1063.726375 +1063.753615 +1063.783019 +1063.810957 +1063.843225 +1063.871963 +1063.899302 +1063.927674 +1063.955479 +1063.984783 +1064.015053 +1064.044157 +1064.078390 +1064.109392 +1064.149252 +1064.186015 +1064.219848 +1064.251583 +1064.280987 +1064.314087 +1064.350784 +1064.381819 +1064.425842 +1064.461040 +1064.493274 +1064.534933 +1064.562006 +1064.591110 +1064.627107 +1064.665902 +1064.702332 +1064.742125 +1064.772928 +1064.804596 +1064.834699 +1064.867433 +1064.900334 +1064.933567 +1064.962039 +1065.000001 +1065.027140 +1065.058775 +1065.092908 +1065.133534 +1065.162172 +1065.180154 +1065.210257 +1065.237696 +1065.266167 +1065.307559 +1065.341359 +1065.378721 +1065.414752 +1065.442957 +1065.469564 +1065.501099 +1065.535498 +1065.570097 +1065.599167 +1065.628771 +1065.656410 +1065.698135 +1065.738528 +1065.775125 +1065.808225 +1065.832401 +1065.858208 +1065.883816 +1065.909956 +1065.949950 +1065.981185 +1066.031934 +1066.062071 +1066.090176 +1066.122877 +1066.159906 +1066.194272 +1066.227705 +1066.265134 +1066.291008 +1066.321045 +1066.355211 +1066.397801 +1066.439360 +1066.465300 +1066.492040 +1066.535164 +1066.570762 +1066.608890 +1066.647285 +1066.679486 +1066.704461 +1066.736196 +1066.780285 +1066.819746 +1066.854511 +1066.893572 +1066.921311 +1066.948284 +1066.975390 +1067.013851 +1067.050082 +1067.092339 +1067.124108 +1067.158606 +1067.186911 +1067.215816 +1067.252746 +1067.290042 +1067.326738 +1067.357974 +1067.395736 +1067.430434 +1067.468896 +1067.500498 +1067.530601 +1067.555909 +1067.623841 +1067.663701 +1067.701297 +1067.744520 +1067.780983 +1067.811320 +1067.844720 +1067.878819 +1067.898932 +1067.931766 +1067.968129 +1068.002262 +1068.038792 +1068.066931 +1068.093571 +1068.123108 +1068.154576 +1068.194769 +1068.228802 +1068.262435 +1068.293604 +1068.329135 +1068.357207 +1068.390407 +1068.431199 +1068.458672 +1068.489774 +1068.520077 +1068.551246 +1068.582681 +1068.614116 +1068.652977 +1068.686910 +1068.729934 +1068.757140 +1068.790440 +1068.832464 +1068.871492 +1068.904858 +1068.944719 +1068.976753 +1069.003327 +1069.038225 +1069.064132 +1069.098764 +1069.153177 +1069.201228 +1069.240223 +1069.279250 +1069.341322 +1069.487442 +1069.520842 +1069.554908 +1069.598398 +1069.638790 +1069.710885 +1069.813016 +1069.853242 +1069.888374 +1069.991571 +1070.038490 +1070.075686 +1070.115114 +1070.153742 +1070.185144 +1070.226868 +1070.278417 +1070.333362 +1070.396698 +1070.429732 +1070.465430 +1070.500661 +1070.539955 +1070.580248 +1070.629066 +1070.679282 +1070.732429 +1070.772755 +1070.822039 +1070.861999 +1070.898496 +1070.941686 +1070.967627 +1071.003058 +1071.043418 +1071.079881 +1071.120174 +1071.175852 +1071.220907 +1071.257570 +1071.286408 +1071.326268 +1071.366494 +1071.405189 +1071.452608 +1071.490104 +1071.529265 +1071.570523 +1071.645648 +1071.756604 +1071.794166 +1072.049544 +1072.350709 +1072.458535 +1072.762297 +1072.868391 +1072.926666 +1073.010049 +1073.050276 +1073.091068 +1073.438953 +1073.605720 +1073.737055 +1073.787771 +1073.823002 +1073.863861 +1073.897328 +1073.945180 +1073.997261 +1074.045712 +1074.095230 +1074.131227 +1074.165126 +1074.192699 +1074.240751 +1074.281044 +1074.323168 +1074.365692 +1074.404753 +1074.450274 +1074.491300 +1074.532159 +1074.579478 +1074.619372 +1074.658799 +1074.696727 +1074.734390 +1074.789202 +1074.844013 +1074.897893 +1074.957600 +1075.025598 +1075.071086 +1075.121669 +1075.166757 +1075.218971 +1075.245112 +1075.310480 +1075.366457 +1075.394929 +1075.434889 +1075.557366 +1075.610280 +1075.643779 +1075.685604 +1075.746443 +1075.805684 +1075.850373 +1075.904518 +1075.935820 +1075.988434 +1076.044212 +1076.104951 +1076.144578 +1076.186236 +1076.224698 +1076.246543 +1076.320036 +1076.362094 +1076.411544 +1076.464691 +1076.515041 +1076.566589 +1076.618937 +1076.662160 +1076.706749 +1076.736685 +1076.773582 +1076.806183 +1076.852070 +1076.900122 +1076.949073 +1076.985969 +1077.020901 +1077.076212 +1077.122599 +1077.164191 +1077.200221 +1077.239016 +1077.290831 +1077.334221 +1077.373948 +1077.420434 +1077.459662 +1077.512043 +1077.558496 +1077.601553 +1077.640414 +1077.687767 +1077.726062 +1077.778942 +1077.821366 +1077.865888 +1077.907780 +1077.944976 +1077.993094 +1078.036917 +1078.074380 +1078.114273 +1078.168452 +1078.780573 +1078.875112 +1078.958262 +1079.138381 +1079.275144 +1079.318801 +1079.352334 +1079.724328 +1079.806080 +1079.884368 +1079.963322 +1080.000385 +1080.108410 +1080.340778 +1080.467118 +1080.760857 +1080.804547 +1081.277374 +1081.551732 +1081.939877 +1082.146504 +1082.187929 +1082.263620 +1082.302081 +1082.383933 +1082.460756 +1082.507476 +1082.552797 +1082.589527 +1082.626723 +1082.665684 +1082.699650 +1082.731684 +1082.761954 +1082.798085 +1082.823592 +1082.870945 +1082.897552 +1082.912737 +1082.944138 +1082.986896 +1083.023759 +1083.077305 +1083.121228 +1083.169413 +1083.211005 +1083.250165 +1083.300415 +1083.341607 +1083.384564 +1083.427355 +1083.463285 +1083.503578 +1083.542040 +1083.589792 +1083.628687 +1083.667747 +1083.712503 +1083.752762 +1083.788693 +1083.828120 +1083.857657 +1083.921993 +1083.958956 +1083.983098 +1084.028153 +1084.079602 +1084.120927 +1084.163385 +1084.206109 +1084.245169 +1084.283764 +1084.305309 +1084.325789 +1084.380134 +1084.424856 +1084.469079 +1084.514333 +1084.556758 +1084.598549 +1084.993187 +1085.034246 +1085.183663 +1085.486460 +1085.630449 +1085.667046 +1085.830549 +1085.948931 +1085.994052 +1086.146100 +1086.668977 +1086.818593 +1086.862549 +1086.902276 +1086.966112 +1087.024954 +1087.094151 +1087.144867 +1087.194118 +1087.257354 +1087.374337 +1087.469808 +1087.553758 +1087.638340 +1087.709602 +1087.767344 +1087.818859 +1087.885492 +1087.943867 +1087.991752 +1088.036941 +1088.095315 +1088.169208 +1088.243367 +1088.307436 +1088.344899 +1088.394516 +1088.452425 +1088.517160 +1088.604406 +1088.667376 +1088.716827 +1088.755421 +1088.812298 +1088.890819 +1088.932677 +1088.988288 +1089.506303 +1089.781927 +1089.822919 +1090.071238 +1090.242433 +1090.387288 +1090.569006 +1090.761846 +1091.098276 +1091.182558 +1091.235938 +1091.282991 +1091.319455 +1091.361579 +1091.451223 +1091.536571 +1091.578895 +1091.620120 +1091.666507 +1091.725582 +1091.794912 +1091.874832 +1091.923850 +1092.015891 +1092.127246 +1092.179028 +1092.213760 +1092.289417 +1092.392181 +1092.457316 +1092.529111 +1092.576763 +1092.610662 +1092.731674 +1092.776929 +1092.806599 +1092.884721 +1093.053186 +1093.096876 +1093.182423 +1093.264974 +1093.339866 +1093.388950 +1093.395477 +1093.471168 +1093.611061 +1093.678260 +1093.706665 +1093.724447 +1093.790748 +1093.898473 +1093.978959 +1094.025113 +1094.067337 +1094.150954 +1094.209828 +1094.273032 +1094.324114 +1094.371766 +1094.425279 +1094.508463 +1094.573897 +1094.639698 +1094.647290 +1094.745592 +1094.791779 +1094.862741 +1094.932904 +1094.993077 +1095.033104 +1095.077992 +1095.121682 +1095.157446 +1095.201202 +1095.257879 +1095.312824 +1095.367736 +1095.434436 +1095.478591 +1095.507829 +1095.765438 +1095.799437 +1096.063573 +1096.427875 +1096.600835 +1096.642127 +1096.830904 +1096.947854 +1096.998137 +1097.043891 +1097.116152 +1097.151384 +1097.279722 +1097.319349 +1097.358277 +1097.447188 +1097.491976 +1097.606062 +1097.763804 +1097.809325 +1097.839928 +1097.872995 +1097.899501 +1097.932735 +1097.974793 +1098.013254 +1098.048919 +1098.090777 +1098.128306 +1098.165036 +1098.207027 +1098.249351 +1098.280720 +1098.323444 +1098.364969 +1098.402864 +1098.438262 +1098.474592 +1098.510656 +1098.554479 +1098.585914 +1098.625342 +1098.664769 +1098.693740 +1098.732867 +1098.775491 +1098.821345 +1098.867000 +1098.900733 +1098.940693 +1098.980386 +1099.015751 +1099.058341 +1099.101398 +1099.141625 +1099.221878 +1099.261105 +1099.295537 +1099.329403 +1099.370762 +1099.416483 +1099.466000 +1099.511887 +1099.558940 +1099.605960 +1099.645054 +1099.677222 +1099.716316 +1099.741957 +1099.769263 +1099.791008 +1099.817115 +1099.886313 +1099.935230 +1099.964401 +1099.998800 +1100.036163 +1100.100432 +1100.165067 +1100.221011 +1100.256309 +1100.331634 +1100.376056 +1100.426838 +1100.469995 +1100.534930 +1100.578553 +1100.614783 +1100.651980 +1100.676189 +1100.707457 +1100.756308 +1100.806492 +1100.855343 +1100.905726 +1100.927770 +1100.981483 +1101.016948 +1101.050447 +1101.082149 +1101.130367 +1101.204993 +1101.254543 +1101.293870 +1101.344886 +1101.393437 +1101.444919 +1101.475822 +1101.499798 +1101.537959 +1101.575921 +1101.599231 +1101.627503 +1101.658772 +1101.729035 +1101.771692 +1101.829468 +1101.885012 +1101.932298 +1101.989241 +1102.033763 +1102.084379 +1102.122541 +1102.151945 +1102.173556 +1102.219044 +1102.255075 +1102.282547 +1102.298598 +1102.324339 +1102.351412 +1102.432997 +1102.453909 +1102.468095 +1102.705158 +1102.712584 +1102.737259 +1102.829267 +1102.871025 +1102.916546 +1102.967695 +1102.999729 +1103.019177 +1103.047648 +1103.087042 +1103.140888 +1103.187908 +1103.229866 +1103.258038 +1103.299696 +1103.371391 +1103.407821 +1103.430465 +1103.465064 +1103.525270 +1103.570625 +1103.615047 +1103.654441 +1103.695100 +1103.722206 +1103.761833 +1103.854707 +1103.898163 +1103.936192 +1103.980981 +1104.023272 +1104.060001 +1104.088073 +1104.120674 +1104.157371 +1104.208553 +1104.254540 +1104.299295 +1104.331263 +1104.379282 +1104.426235 +1104.468526 +1104.514746 +1104.553308 +1104.591436 +1104.630863 +1104.668659 +1104.711183 +1104.746714 +1104.787806 +1104.828166 +1104.872122 +1104.920607 +1104.953407 +1105.005388 +1105.048146 +1105.093434 +1105.138788 +1105.180613 +1105.222804 +1105.264496 +1105.288905 +1105.328532 +1105.361365 +1105.407752 +1105.451642 +1105.503556 +1105.536024 +1105.575518 +1105.600426 +1105.639321 +1105.663729 +1105.686473 +1105.783909 +1105.825801 +1105.876283 +1105.915211 +1105.962863 +1106.004522 +1106.027865 +1106.032061 +1106.041585 +1106.091468 +1106.137855 +1106.189603 +1106.234092 +1106.266193 +1106.308950 +1106.348511 +1106.379280 +1106.409283 +1106.546612 +1106.601358 +1107.059099 +1107.109316 +1107.231660 +1107.286638 +1107.505819 +1107.803521 +1107.843614 +1107.885139 +1107.998992 +1108.087204 +1108.267123 +1108.398259 +1108.656001 +1108.718172 +1108.775581 +1108.858099 +1108.913476 +1108.982774 +1109.021835 +1109.084439 +1109.134988 +1109.237585 +1109.292397 +1109.383373 +1109.464658 +1109.529227 +1109.578877 +1109.630359 +1109.709280 +1109.773482 +1109.826329 +1109.870252 +1109.935220 +1110.008647 +1110.064691 +1110.112043 +1110.159829 +1110.227861 +1110.275546 +1110.463225 +1110.605982 +1111.385868 +1111.388233 +1111.390231 +1111.391962 +1111.394893 +1111.401586 +1111.452169 +1111.455865 +1111.457596 +1111.460827 +1111.465156 +1112.076710 +1112.079241 +1112.082205 +1112.089064 +1112.312108 +1112.317569 +1112.322664 +1112.447705 +1112.450702 +1112.454499 +1112.473746 +1112.602384 +1112.607246 +1112.701318 +1112.721698 +1112.801751 +1112.814405 +1112.844641 +1112.870549 +1112.893792 +1112.926326 +1112.973912 +1113.058327 +1113.092660 +1113.135617 +1113.208211 +1113.245107 +1113.281704 +1113.319233 +1113.352966 +1113.389596 +1113.423695 +1113.455730 +1113.492326 +1113.528590 +1113.568184 +1113.598687 +1113.631054 +1113.667085 +1113.704414 +1113.747937 +1113.787997 +1113.819166 +1113.850002 +1113.891993 +1113.924327 +1113.952166 +1113.997820 +1114.029589 +1114.057327 +1114.091293 +1114.118666 +1114.150834 +1114.200384 +1114.243375 +1114.283268 +1114.325792 +1114.361789 +1114.400884 +1114.431853 +1114.480138 +1114.522595 +1114.559059 +1114.596022 +1114.630554 +1114.672512 +1114.708576 +1114.742941 +1114.777273 +1114.816834 +1114.850267 +1114.890160 +1114.923327 +1114.944206 +1114.975575 +1115.009374 +1115.043707 +1115.077639 +1115.125225 +1115.160490 +1115.216500 +1115.246038 +1115.440543 +1115.614602 +1115.845238 +1116.012537 +1116.103979 +1116.264518 +1116.404378 +1116.913102 +1116.987195 +1117.141407 +1117.317597 +1117.371643 +1117.425955 +1117.475306 +1117.518563 +1117.573042 +1117.616698 +1117.665116 +1117.752329 +1117.795785 +1117.827653 +1117.885795 +1117.925655 +1117.973907 +1118.029018 +1118.076871 +1118.135745 +1118.186328 +1118.244203 +1118.286594 +1118.343937 +1118.396218 +1118.453061 +1118.515165 +1118.556957 +1118.620793 +1118.678968 +1118.731782 +1118.796384 +1118.843770 +1118.891555 +1118.949297 +1119.002111 +1119.062750 +1119.114132 +1119.165214 +1119.218528 +1119.268644 +1119.303709 +1119.354292 +1119.427652 +1119.467479 +1119.570775 +1119.723855 +1119.780399 +1119.799813 +1119.852726 +1119.921524 +1119.949529 +1119.979399 +1120.162450 +1120.165946 +1120.178034 +1120.204474 +1120.231214 +1129.665670 +1129.667535 +1129.669366 +1129.671631 +1129.675327 +1129.726676 +1129.730072 +1129.735600 +1129.738198 +1129.742760 +1129.791744 +1129.793609 +1129.795074 +1129.797871 +1129.800568 +1129.804997 +1129.858211 +1129.861541 +1129.864072 +1129.866736 +1129.872130 +1129.915653 +1129.922446 +1129.925943 +1129.929972 +1129.971031 +1129.973662 +1129.983519 +1129.989180 +1130.943125 +1130.945056 +1131.088313 +1131.287547 +1131.761472 +1131.950650 +1131.960107 +1132.104029 +1132.376124 +1132.411155 +1132.525974 +1132.563936 +1133.020312 +1133.052247 +1133.209423 +1133.694371 +1134.526438 +1134.640723 +1134.884746 +1134.943287 +1135.008056 +1135.064066 +1135.129667 +1135.186044 +1135.235728 +1135.314416 +1135.358738 +1135.396500 +1135.476720 +1135.511851 +1135.561202 +1135.596200 +1135.609420 +1135.654142 +1135.715747 +1135.771492 +1135.847948 +1135.865298 +1135.932364 +1135.948881 +1136.868061 +1136.870258 +1136.872323 +1136.874554 +1136.876485 +1136.879482 +1145.875244 +1146.081738 +1146.196989 +1146.198721 +1146.203849 +1146.213273 +1146.585800 +1146.590495 +1152.135078 +1152.138042 +1152.142438 +1152.146700 +1152.264948 +1152.266713 +1152.274539 +1152.324955 +1152.331082 +1152.405541 +1152.520526 +1152.525487 +1152.579467 +1152.586926 +1152.589990 +1152.707239 +1154.170807 +1154.191187 +1154.535775 +1154.540670 +1154.544333 +1154.721356 +1154.724020 +1154.726584 +1154.731213 +1154.818592 +1154.821522 +1154.825785 +1154.834343 +1154.923554 +1154.927117 +1154.930913 +1154.938639 +1155.102075 +1155.105072 +1155.108102 +1155.112764 +1155.276933 +1155.288222 +1155.344732 +1155.346430 +1155.348362 +1155.359018 +1155.427649 +1155.437239 +1155.442501 +1155.508102 +1155.531545 +1155.579297 +1155.923686 +1155.928081 +1155.933443 +1156.017492 +1156.026883 +1156.106037 +1156.119490 +1156.171438 +1156.255321 +1156.300142 +1156.348394 +1156.385857 +1156.454055 +1156.511398 +1156.570538 +1156.638037 +1156.700475 +1156.787022 +1156.868940 +1156.921121 +1156.986888 +1157.064244 +1157.152123 +1157.194880 +1157.326981 +1157.439069 +1157.524084 +1157.628479 +1157.723717 +1157.836571 +1159.359547 +1159.371202 +1159.473532 +1159.546559 +1159.599806 +1159.666073 +1159.668038 +1159.732074 +1159.750122 +1159.800638 +1159.883589 +1159.932873 +1159.943529 +1160.844460 +1161.113591 +1161.121017 +1161.340564 +1161.550220 +1161.553018 +1161.561309 +1161.761842 +1161.970267 +1162.149587 +1162.153250 +1162.168568 +1162.384519 +1162.474229 +1162.571065 +1162.743326 +1162.835600 +1162.929640 +1163.131937 +1163.234368 +1163.268767 +1163.328907 +1163.360641 +1163.413688 +1163.537764 +1163.611124 +1163.674561 +1163.740162 +1163.804797 +1163.809392 +1163.833035 +1163.898170 +1163.938729 +1163.939962 +1163.941560 +1164.011856 +1164.076558 +1164.083684 +1164.091210 +1164.157344 +1164.161606 +1164.760906 +1164.763870 +1164.766767 +1164.776424 +1165.042158 +1165.044756 +1165.047653 +1165.052115 +1165.286347 +1165.289178 +1165.291942 +1165.296870 +1165.649384 +1166.152247 +1166.169796 +1166.238960 +1166.363902 +1166.400299 +1166.627305 +1166.820678 +1166.865433 +1166.927271 +1167.124973 +1167.136096 +1167.198466 +1167.337594 +1167.340191 +1167.412053 +1170.412816 +1170.414614 +1170.418310 +1170.420774 +1170.426136 +1170.560101 +1170.563631 +1170.565962 +1170.571357 +1171.556671 +1171.559434 +1171.564030 +1171.567993 +1171.681912 +1171.684076 +1171.686074 +1171.692035 +1171.744483 +1171.746048 +1171.748345 +1171.751076 +1171.754273 +1171.807952 +1171.809451 +1171.814246 +1171.826833 +1171.878282 +1171.880347 +1171.882844 +1171.885874 +1171.889870 +1171.948245 +1171.952241 +1171.956537 +1171.967060 +1172.011349 +1172.013080 +1172.018009 +1172.021239 +1172.614678 +1172.792300 +1172.795031 +1172.798028 +1172.803456 +1172.821171 +1173.064162 +1173.067025 +1173.070022 +1173.075850 +1173.454038 +1173.457501 +1173.460698 +1173.468856 +1173.810348 +1173.813878 +1173.817574 +1173.994597 +1174.000990 +1174.029162 +1174.195862 +1174.223135 +1174.318006 +1174.423301 +1174.569388 +1174.605152 +1174.671186 +1174.675315 +1174.749608 +1174.751206 +1174.756501 +1174.951572 +1175.037453 +1175.165791 +1176.944144 +1176.946409 +1177.212509 +1177.224131 +1177.818103 +1177.822665 +1178.093794 +1178.351036 +1178.354566 +1178.560660 +1178.564689 +1178.569284 +1178.600786 +1178.681106 +1178.695458 +1178.739814 +1178.770882 +1178.815005 +1178.842011 +1178.900186 +1178.927892 +1179.068851 +1179.112607 +1179.160892 +1179.281571 +1179.324062 +1179.385667 +1179.452167 +1179.518601 +1179.594458 +1179.640012 +1179.752400 +1179.800252 +1179.908311 +1180.093925 +1180.329422 +1181.343840 +1181.348635 +1181.351466 +1181.358825 +1181.451199 +1181.454629 +1181.457893 +1181.461389 +1181.531452 +1181.534316 +1181.539178 +1181.541642 +1181.547803 +1181.611872 +1181.614569 +1181.619098 +1181.640343 +1181.672711 +1181.674776 +1181.676674 +1181.678305 +1181.756227 +1181.760190 +1181.767616 +1181.784965 +1181.841409 +1181.847836 +1181.852431 +1181.985065 +1181.987829 +1182.029920 +1182.039011 +1182.044639 +1182.109740 +1182.113603 +1182.115901 +1182.118565 +1182.121562 +1182.272844 +1182.275641 +1182.278605 +1182.282168 +1182.697585 +1182.700049 +1182.702347 +1182.705677 +1185.118795 +1185.120793 +1185.122591 +1185.125155 +1185.129651 +1185.173940 +1185.175039 +1185.177303 +1185.179734 +1185.182531 +1185.188125 +1185.248665 +1185.258355 +1185.316164 +1185.320926 +1185.323856 +1185.330450 +1185.385095 +1185.393054 +1185.397849 +1185.458122 +1185.460586 +1185.463783 +1185.467179 +1185.526354 +1185.528152 +1185.530516 +1185.533047 +1185.537076 +1185.607606 +1185.610603 +1185.613500 +1185.617163 +1185.671308 +1185.673939 +1185.677769 +1185.680965 +1185.688225 +1185.757622 +1185.760053 +1185.762883 +1185.765947 +1185.772640 +1189.245031 +1189.247062 +1189.248961 +1189.251225 +1189.255387 +1189.467642 +1189.469640 +1189.471771 +1189.474069 +1189.477698 +1189.536106 +1189.541201 +1189.546330 +1189.610965 +1189.612830 +1189.615127 +1189.617525 +1189.687388 +1189.689453 +1189.694548 +1189.697711 +1189.775200 +1189.777931 +1189.781061 +1189.785890 +1189.836939 +1189.838803 +1189.841767 +1189.844897 +1189.847861 +1189.855587 +1189.917225 +1189.920089 +1189.922953 +1189.926049 +1189.930179 +1189.994448 +1189.996346 +1189.998710 +1190.001640 +1190.005037 +1194.492745 +1194.494943 +1194.497207 +1194.508696 +1194.572731 +1194.741995 +1194.825945 +1194.828009 +1194.834469 +1194.990880 +1194.994409 +1194.996241 +1194.998172 +1195.262441 +1195.265172 +1195.271332 +1197.365269 +1197.371630 +1197.373994 +1197.378356 +1197.681253 +1197.682852 +1197.685016 +1197.692908 +1197.772129 +1197.774427 +1197.776624 +1197.778922 +1197.782419 +1197.841593 +1197.843258 +1197.845522 +1197.847487 +1197.849884 +1197.853747 +1197.933934 +1197.936165 +1197.938895 +1197.941959 +1197.997104 +1197.998735 +1198.001466 +1198.003764 +1198.006827 +1198.073527 +1198.075692 +1198.077623 +1198.080121 +1198.083018 +1198.245255 +1200.646219 +1200.725939 +1200.732199 +1200.735429 +1200.801996 +1200.805459 +1200.807424 +1200.809788 +1200.813185 +1200.867863 +1200.870461 +1200.874157 +1200.933265 +1200.942589 +1201.086211 +1201.087577 +1201.089375 +1201.091539 +1201.093704 +1201.096834 +1201.161569 +1201.164799 +1201.167996 +1201.170594 +1201.173624 +1201.237593 +1201.239991 +1201.242821 +1201.245252 +1201.249448 +1201.315482 +1201.319212 +1201.322042 +1201.324606 +1201.328769 +1201.388109 +1201.390640 +1201.392671 +1201.395435 +1201.476787 +1201.480850 +1201.483747 +1201.487077 +1204.499894 +1204.501726 +1204.504223 +1204.506288 +1204.508020 +1204.651609 +1204.654939 +1204.658802 +1204.662165 +1204.724969 +1204.727000 +1204.729198 +1204.731895 +1204.735525 +1204.787040 +1204.789571 +1204.791436 +1204.795432 +1204.799661 +1204.857436 +1204.859301 +1204.863797 +1204.867060 +1204.871089 +1204.928432 +1204.930264 +1204.932728 +1204.935825 +1204.939354 +1208.897592 +1208.906650 +1209.042913 +1209.053103 +1209.105351 +1209.116540 +1209.237352 +1209.239050 +1209.246743 +1209.326330 +1209.331258 +1209.334355 +1212.161325 +1212.240280 +1212.242544 +1212.248371 +1212.250936 +1212.259494 +1212.386134 +1212.390929 +1212.395791 +1212.564155 +1212.569250 +1212.579007 +1212.635884 +1212.641145 +1212.719500 +1212.722597 +1212.725361 +1212.728324 +1213.908843 +1213.927191 +1214.235016 +1214.463421 +1214.470547 +1214.711339 +1214.804746 +1214.955828 +1215.029354 +1215.031885 +1215.209740 +1215.285098 +1216.983532 +1216.985729 +1216.999582 +1217.270578 +1217.274307 +1217.276605 +1217.444703 +1217.453128 +1217.540174 +1217.546901 +1217.741273 +1217.743471 +1217.745436 +1217.747833 +1217.754826 +1218.287360 +1218.292888 +1218.628984 +1218.833047 +1218.835245 +1218.912367 +1218.920260 +1219.013000 +1219.166746 +1219.298781 +1219.376836 +1219.464448 +1219.468677 +1219.472041 +1219.476869 +1219.545400 +1219.547965 +1221.440603 +1221.444133 +1221.446131 +1221.448495 +1221.453424 +1221.597080 +1221.599378 +1221.601476 +1221.603407 +1221.606171 +1221.614762 +1221.792518 +1221.794982 +1221.796547 +1221.798845 +1221.801242 +1221.803806 +1221.885791 +1221.887989 +1221.890353 +1221.892851 +1221.995681 +1221.998112 +1222.002541 +1222.006171 +1222.080663 +1222.084392 +1222.086490 +1222.088888 +1222.091752 +1222.374635 +1225.029111 +1225.031442 +1225.033274 +1225.035472 +1225.038802 +1226.004968 +1226.007032 +1226.008597 +1226.010496 +1226.172567 +1226.178960 +1226.181658 +1226.248524 +1226.253019 +1226.255117 +1226.257282 +1226.260912 +1226.439832 +1226.441697 +1226.443162 +1226.444994 +1226.446759 +1226.449290 +1226.583622 +1226.586219 +1226.588983 +1226.591081 +1226.593312 +1226.598107 +1227.750554 +1227.752019 +1227.753717 +1227.755649 +1227.757846 +1227.762142 +1227.888949 +1227.890980 +1227.893278 +1227.895209 +1227.897440 +1228.028842 +1228.031273 +1228.033171 +1228.126544 +1228.128908 +1228.131572 +1228.345758 +1228.347423 +1228.348988 +1228.350853 +1228.352618 +1228.354882 +1228.430140 +1228.433170 +1228.436534 +1228.722880 +1228.725178 +1228.727409 +1228.729940 +1228.736234 +1229.763006 +1229.955813 +1229.958011 +1229.960242 +1229.962306 +1229.964304 +1229.967868 +1230.301900 +1230.305296 +1230.307461 +1230.309659 +1230.312256 +1231.062439 +1231.913886 +1231.922411 +1232.345954 +1233.355377 +1233.359073 +1233.450615 +1233.456875 +1234.634663 +1234.640723 +1235.307589 +1235.310087 +1235.311918 +1235.314116 +1235.316680 +1235.993702 +1235.996300 +1235.998098 +1236.002394 +1236.279050 +1236.280848 +1236.283246 +1236.293502 +1237.046482 +1237.049079 +1237.051310 +1237.053242 +1237.056106 +1237.348246 +1237.349745 +1237.353441 +1238.160700 +1238.166527 +1238.606354 +1238.611049 +1238.983776 +1239.459700 +1239.461797 +1239.465460 +1239.467991 +1239.471321 +1241.881442 +1241.883806 +1241.885904 +1241.887902 +1241.890566 +1242.454668 +1242.456933 +1242.458964 +1242.460795 +1242.462694 +1242.466590 +1242.766723 +1242.768954 +1242.770818 +1242.772883 +1242.775714 +1243.463858 +1243.466056 +1243.467921 +1243.469752 +1243.472949 +1244.093661 +1244.098023 +1248.050600 +1248.163287 +1248.165285 +1248.167583 +1248.170114 +1248.172545 +1248.270880 +1248.277440 +1248.421196 +1248.423993 +1249.054762 +1250.131584 +1250.135713 +1250.137777 +1250.139975 +1250.264684 +1251.422758 +1251.425289 +1251.427253 +1251.429418 +1251.433680 +1252.705940 +1252.708005 +1252.952760 +1253.614630 +1253.621690 +1253.804241 +1253.808903 +1254.053558 +1254.055256 +1254.057620 +1254.061816 +1254.064946 +1254.880996 +1255.477865 +1255.480263 +1255.800975 +1255.803573 +1255.807802 +1258.412694 +1258.414259 +1258.415958 +1258.419421 +1258.422018 +1258.769171 +1258.771102 +1258.772967 +1258.775032 +1258.777263 +1259.364442 +1259.366839 +1259.368937 +1259.371035 +1259.373466 +1259.507798 +1259.510229 +1259.512660 +1259.514924 +1259.519120 +1260.844793 +1260.847723 +1260.851753 +1260.854883 +1262.125678 +1262.130173 +1262.919083 +1262.931138 +1263.188281 +1263.194874 +1266.057975 +1266.060073 +1266.062137 +1266.064901 +1266.182517 +1267.007491 +1267.009689 +1267.011720 +1267.014118 +1267.175523 +1267.177754 +1267.179818 +1267.181816 +1267.185446 +1267.692538 +1267.695236 +1267.698999 +1267.701896 +1268.747649 +1268.749980 +1268.751945 +1268.756440 +1270.045017 +1270.054474 +1270.226102 +1270.228400 +1270.230298 +1270.232529 +1270.235360 +1270.329665 +1270.332196 +1270.334194 +1270.336492 +1270.339955 +1271.008819 +1271.012548 +1271.014646 +1271.016977 +1271.021373 +1271.350810 +1271.353207 +1271.354673 +1271.356471 +1271.358535 +1271.361100 +1272.203456 +1272.299660 +1272.302491 +1272.306353 +1272.437755 +1272.443483 +1272.721504 +1272.723403 +1273.233525 +1273.235590 +1273.239386 +1274.280244 +1274.390234 +1274.666491 +1274.668422 +1274.670220 +1274.672252 +1274.674649 +1275.406750 +1275.413310 +1275.416473 +1276.824730 +1277.057597 +1277.059962 +1277.062259 +1277.066189 +1277.070251 +1277.460760 +1277.462459 +1277.464090 +1277.466022 +1277.467887 +1277.771949 +1277.773980 +1277.775845 +1277.782738 +1278.041146 +1278.042944 +1278.045009 +1278.047740 +1278.231489 +1278.233554 +1278.235452 +1278.237416 +1278.240214 +1278.349937 +1278.351968 +1278.356098 +1278.359694 +1278.537583 +1278.539514 +1278.541778 +1278.544243 +1278.650669 +1278.653067 +1278.655365 +1278.657995 +1278.663889 +1279.144975 +1279.147472 +1279.149836 +1279.154199 +1279.379207 +1279.382104 +1279.384801 +1279.389030 +1279.631321 +1279.634651 +1279.663356 +1279.821464 +1279.826392 +1279.846939 +1279.965653 +1279.982037 +1280.030188 +1280.104747 +1280.135550 +1280.187631 +1280.231820 +1280.266252 +1280.311307 +1280.351367 +1280.410807 +1280.445439 +1280.486132 +1280.526025 +1280.569082 +1280.616002 +1280.659492 +1280.713904 +1280.754763 +1280.797121 +1280.846438 +1280.901316 +1280.931220 +1280.975309 +1281.021430 +1281.083101 +1281.122362 +1281.167450 +1281.213604 +1281.266751 +1281.327090 +1281.375375 +1281.417866 +1281.464120 +1281.505179 +1281.551899 +1281.608775 +1281.655462 +1281.701049 +1281.738811 +1281.779471 +1281.821828 +1281.855828 +1281.899517 +1281.944639 +1281.987529 +1282.027023 +1282.062421 +1282.148002 +1282.194955 +1282.237779 +1282.283000 +1282.330686 +1282.374409 +1282.414002 +1282.453030 +1282.497452 +1282.536513 +1282.572011 +1282.617265 +1282.656093 +1282.698418 +1282.739543 +1282.782034 +1282.836346 +1282.873209 +1282.921228 +1282.964751 +1283.005743 +1283.049766 +1283.087062 +1283.123559 +1283.170012 +1283.207142 +1283.320295 +1283.353495 +1283.396252 +1283.720827 +1283.820594 +1284.015532 +1284.058190 +1284.284530 +1284.325955 +1284.371509 +1284.409705 +1284.522925 +1284.607207 +1284.731249 +1284.826854 +1284.866614 +1284.925688 +1284.966247 +1285.228585 +1285.275704 +1285.316663 +1285.350962 +1285.423290 +1285.463483 +1285.498848 +1285.539241 +1285.577502 +1285.614332 +1285.651695 +1285.686260 +1285.721358 +1285.743869 +1285.783030 +1285.819893 +1285.855524 +1285.885960 +1285.922390 +1285.961551 +1286.000446 +1286.035644 +1286.072207 +1286.102743 +1286.144834 +1286.176236 +1286.207538 +1286.239040 +1286.271108 +1286.310402 +1286.345434 +1286.378034 +1286.409503 +1286.442137 +1286.475603 +1286.505473 +1286.537808 +1286.564015 +1286.594817 +1286.629849 +1286.661850 +1286.698513 +1286.724021 +1286.764281 +1286.800944 +1286.834278 +1286.862682 +1286.901710 +1286.938939 +1286.979898 +1287.016195 +1287.058986 +1287.083295 +1287.116861 +1287.161750 +1287.205140 +1287.247198 +1287.283861 +1287.316928 +1287.344966 +1287.377301 +1287.414164 +1287.451160 +1287.486758 +1287.524720 +1287.561716 +1287.791486 +1287.917227 +1287.956354 +1288.032878 +1288.588322 +1288.759084 +1288.797213 +1289.077066 +1289.135507 +1289.195714 +1289.233842 +1289.369873 +1289.485590 +1289.518024 +1289.593915 +1289.706003 +1289.754055 +1289.785224 +1289.815027 +1289.849593 +1289.889519 +1289.934374 +1289.968174 +1290.006036 +1290.040901 +1290.075167 +1290.108001 +1290.144797 +1290.178197 +1290.206335 +1290.232642 +1290.267241 +1290.303571 +1290.331810 +1290.369006 +1290.403538 +1290.438470 +1290.468773 +1290.513461 +1290.590518 +1290.630777 +1290.674234 +1290.711430 +1290.751889 +1290.790284 +1290.824783 +1290.894979 +1290.939268 +1290.973734 +1291.008399 +1291.049392 +1291.085056 +1291.121919 +1291.157916 +1291.195112 +1291.231876 +1291.269172 +1291.307400 +1291.347826 +1291.381093 +1291.416557 +1291.450124 +1291.489151 +1291.525715 +1291.566174 +1291.596377 +1291.632175 +1291.664309 +1291.697509 +1291.726181 +1291.755318 +1291.788185 +1291.818821 +1291.850390 +1291.880260 +1291.912994 +1291.944529 +1291.973666 +1292.000673 +1292.031342 +1292.060113 +1292.089384 +1292.122251 +1292.147925 +1292.175364 +1292.204569 +1292.233773 +1292.265907 +1292.299973 +1292.358015 +1292.388917 +1292.416024 +1292.445661 +1292.468604 +1292.492713 +1292.522350 +1292.556982 +1292.586120 +1292.613160 +1292.647825 +1292.679760 +1292.708065 +1292.743596 +1292.779426 +1292.811095 +1292.846792 +1292.881358 +1292.911960 +1292.945593 +1292.979859 +1293.005866 +1293.035370 +1293.067205 +1293.097508 +1293.122883 +1293.137834 +1293.170135 +1293.195676 +1293.223449 +1293.246625 +1293.278860 +1293.310029 +1293.339899 +1293.364707 +1293.396376 +1293.428843 +1293.457914 +1293.490914 +1293.524714 +1293.555516 +1293.584254 +1293.612393 +1293.640764 +1293.675996 +1293.707431 +1293.736302 +1293.768670 +1293.797507 +1293.831207 +1293.857714 +1293.883488 +1293.940298 +1293.966871 +1294.003068 +1294.034803 +1294.068003 +1294.101670 +1294.125046 +1294.530840 +1294.821582 +1294.943660 +1295.080090 +1295.447056 +1295.506530 +1295.652118 +1295.671265 +1295.783619 +1295.893110 +1296.024678 +1296.090346 +1296.342293 +1296.439263 +1296.755213 +1296.790278 +1296.890045 +1296.918949 +1296.985882 +1297.013854 +1297.045390 +1297.140727 +1297.319915 +1297.352782 +1297.433335 +1297.596038 +1297.828173 +1297.909158 +1297.942258 +1297.978189 +1298.041326 +1298.074792 +1298.206627 +1298.270097 +1298.495804 +1298.527872 +1298.565801 +1298.589477 +1298.621212 +1298.658808 +1298.689610 +1298.725308 +1298.755345 +1298.788245 +1298.816317 +1298.846054 +1298.883250 +1298.915351 +1298.988644 +1299.022477 +1299.060905 +1299.108191 +1299.144821 +1299.189776 +1299.229670 +1299.272227 +1299.303562 +1299.341158 +1299.379020 +1299.419946 +1299.460805 +1299.488644 +1299.529370 +1299.570462 +1299.609956 +1299.651115 +1299.682317 +1299.721144 +1299.763535 +1299.840592 +1299.882017 +1299.915350 +1299.951647 +1299.987578 +1300.023109 +1300.062569 +1300.094071 +1300.141823 +1300.175223 +1300.211254 +1300.259106 +1300.290674 +1300.318080 +1300.358873 +1300.398466 +1300.429236 +1300.474624 +1300.517680 +1300.553178 +1300.585080 +1300.616282 +1300.653711 +1300.762102 +1300.904393 +1301.027137 +1301.161769 +1301.202395 +1301.234863 +1301.275422 +1301.308555 +1301.466564 +1301.503827 +1301.528435 +1301.744985 +1301.934429 +1302.005058 +1302.039124 +1302.194902 +1302.260436 +1302.296933 +1302.469826 +1302.808987 +1302.845883 +1302.876519 +1302.917145 +1302.950212 +1302.986276 +1303.022939 +1303.064598 +1303.108987 +1303.149246 +1303.187841 +1303.216945 +1303.247148 +1303.282946 +1303.322606 +1303.362466 +1303.403492 +1303.443951 +1303.493602 +1303.548014 +1303.597331 +1303.643618 +1303.696066 +1303.729732 +1303.778816 +1303.828600 +1303.873488 +1303.916412 +1303.963698 +1304.003325 +1304.040987 +1304.078083 +1304.113115 +1304.177750 +1304.208886 +1304.246781 +1304.283078 +1304.333661 +1304.365462 +1304.396931 +1304.438223 +1304.509318 +1304.551742 +1304.600993 +1304.641419 +1304.697796 +1304.733927 +1304.771955 +1304.806021 +1304.855971 +1304.901093 +1304.945881 +1304.994532 +1305.039820 +1305.068791 +1305.105255 +1305.167126 +1305.193800 +1305.238055 +1305.285208 +1305.323337 +1305.361332 +1305.413413 +1305.461532 +1305.502424 +1305.533593 +1305.569890 +1305.609151 +1305.655271 +1305.695997 +1305.737589 +1305.766859 +1305.804655 +1305.841318 +1305.888205 +1305.934858 +1305.959134 +1305.991967 +1306.029397 +1306.067758 +1306.110149 +1306.156003 +1306.186073 +1306.219107 +1306.279246 +1306.328364 +1306.370122 +1306.412380 +1306.493032 +1306.549010 +1306.617708 +1306.664095 +1306.725100 +1306.780611 +1306.824934 +1306.859765 +1306.923069 +1306.974284 +1307.031493 +1307.069822 +1307.125000 +1307.164027 +1307.180011 +1307.462529 +1307.540784 +1307.628063 +1307.673784 +1307.817906 +1308.106351 +1308.533157 +1308.570320 +1308.745078 +1309.102021 +1309.233523 +1309.382607 +1309.474248 +1309.517338 +1309.656666 +1309.764957 +1310.032023 +1310.161860 +1310.263325 +1310.284570 +1310.310245 +1310.354734 +1310.477178 +1310.525762 +1310.883005 +1311.066654 +1311.237783 +1311.341279 +1311.572748 +1311.605348 +1311.637949 +1311.680007 +1311.723896 +1311.763890 +1311.796424 +1311.827593 +1311.875278 +1311.915571 +1311.951935 +1311.987399 +1312.025694 +1312.065721 +1312.101552 +1312.136417 +1312.170283 +1312.204116 +1312.244908 +1312.324895 +1312.353166 +1312.434085 +1312.435984 +1312.499853 +1312.546839 +1312.617868 +1312.686699 +1312.719400 +1312.777009 +1312.826493 +1312.887498 +1312.944375 +1313.068051 +1313.117635 +1313.161357 +1313.213072 +1313.267818 +1313.336316 +1313.389363 +1313.430188 +1313.477941 +1313.538880 +1313.611607 +1313.660158 +1313.698120 +1313.727291 +1313.771347 +1313.822096 +1313.893192 +1313.946472 +1313.993691 +1314.050368 +1314.096388 +1314.134317 +1314.187430 +1314.241510 +1314.281503 +1314.332019 +1314.382568 +1314.427124 +1314.485832 +1314.557826 +1314.594157 +1314.653963 +1314.710440 +1314.755095 +1314.806944 +1314.853663 +1314.880703 +1314.913004 +1315.022494 +1315.104313 +1315.150600 +1315.207476 +1315.264286 +1315.314669 +1315.361755 +1315.406543 +1315.459790 +1315.521528 +1315.544872 +1315.611605 +1315.652031 +1315.707542 +1315.827489 +1315.884265 +1315.942407 +1316.018830 +1316.068514 +1316.113502 +1316.150099 +1316.187195 +1316.245304 +1316.300548 +1316.352829 +1316.411238 +1316.446069 +1316.482733 +1316.518031 +1316.564451 +1316.619463 +1316.670645 +1316.725789 +1316.764351 +1316.798483 +1316.842406 +1316.941207 +1316.994354 +1317.043238 +1317.091024 +1317.131850 +1317.169945 +1317.213301 +1317.249066 +1317.292955 +1317.337211 +1317.376571 +1317.415366 +1317.472176 +1317.527354 +1317.572608 +1317.656092 +1317.712968 +1317.772175 +1317.834646 +1317.874939 +1317.928519 +1317.978835 +1318.017363 +1318.066814 +1318.100780 +1318.186694 +1318.237443 +1318.542404 +1318.631815 +1318.838275 +1319.191821 +1319.348464 +1319.470409 +1319.582896 +1319.972639 +1320.060551 +1320.389589 +1320.538440 +1320.630081 +1321.030181 +1321.449761 +1321.919724 +1322.034775 +1322.073869 +1322.274302 +1322.624551 +1323.019190 +1323.123452 +1323.173968 +1324.002838 +1324.039935 +1324.071570 +1324.247727 +1324.327047 +1324.718755 +1324.770470 +1325.286553 +1325.869470 +1325.965540 +1326.317089 +1326.367105 +1326.408763 +1326.487185 +1326.818254 +1326.944028 +1327.078360 +1327.163774 +1327.233005 +1327.312159 +1327.380524 +1327.449222 +1327.502036 +1327.565605 +1327.656048 +1327.729375 +1327.787217 +1327.856847 +1327.976860 +1328.015988 +1328.062308 +1328.170267 +1328.303334 +1328.456047 +1328.525545 +1328.569534 +1328.627609 +1328.782088 +1328.889514 +1328.968934 +1329.056713 +1329.252717 +1329.758977 +1329.925643 +1330.125010 +1330.243591 +1330.467168 +1331.207693 +1331.252815 +1331.299634 +1331.417350 +1331.470130 +1331.519781 +1331.577556 +1331.646454 +1331.715485 +1331.764969 +1331.804762 +1331.843390 +1331.891142 +1331.959540 +1332.020213 +1332.074725 +1332.139094 +1332.188178 +1332.244788 +1332.304595 +1332.369963 +1332.450449 +1332.539626 +1332.585547 +1332.606160 +1332.717648 +1332.766266 +1332.814551 +1332.898168 +1332.981617 +1333.013918 +1333.102063 +1333.184781 +1333.271161 +1333.320178 +1333.359273 +1333.413119 +1333.483848 +1333.539992 +1333.640191 +1333.679219 +1333.734797 +1333.795136 +1333.844021 +1333.892772 +1333.938992 +1333.999332 +1334.075789 +1334.151946 +1334.207124 +1334.252245 +1334.320277 +1334.377054 +1334.435395 +1334.464999 +1334.475089 +1334.536528 +1334.622208 +1334.694003 +1334.753144 +1334.872824 +1334.947783 +1334.982481 +1335.033230 +1335.116314 +1335.183613 +1335.247349 +1335.308255 +1335.350080 +1335.364765 +1335.401062 +1335.474555 +1335.528668 +1335.594302 +1335.662101 +1335.706057 +1335.772524 +1335.836393 +1335.889740 +1336.017678 +1336.066396 +1336.116213 +1336.164931 +1336.254075 +1336.300728 +1336.331997 +1336.379250 +1336.427734 +1336.492336 +1336.558770 +1336.623305 +1336.667761 +1336.702226 +1336.732529 +1336.767028 +1336.821707 +1336.950778 +1337.003392 +1337.059302 +1337.106988 +1337.166628 +1337.204590 +1337.244517 +1337.322406 +1337.393235 +1337.432895 +1337.498230 +1337.574653 +1337.644117 +1337.702225 +1337.747647 +1337.808352 +1337.884909 +1337.953241 +1337.996131 +1338.048079 +1338.128166 +1338.169791 +1338.216844 +1338.278382 +1338.327166 +1338.380613 +1338.432694 +1338.483976 +1338.553007 +1338.606653 +1338.690902 +1338.741252 +1338.785774 +1338.839354 +1338.876550 +1338.921305 +1338.960333 +1339.003190 +1339.067159 +1339.115377 +1339.165361 +1339.211848 +1339.254105 +1339.371754 +1339.435923 +1339.478181 +1339.522303 +1339.569789 +1339.626632 +1339.684541 +1339.752040 +1339.861464 +1339.963029 +1340.050708 +1340.121637 +1340.186738 +1340.278213 +1340.359132 +1340.424700 +1340.473684 +1340.515443 +1340.576448 +1340.631427 +1340.684473 +1340.755169 +1340.826997 +1340.885306 +1340.934090 +1340.997260 +1341.060863 +1341.116108 +1341.165991 +1341.218539 +1341.281642 +1341.362095 +1341.421735 +1341.479311 +1341.537053 +1341.572451 +1341.627063 +1341.710713 +1341.766390 +1341.834223 +1341.926697 +1341.999324 +1342.063693 +1342.133057 +1342.585570 +1342.927495 +1343.252836 +1343.324897 +1343.440115 +1343.581673 +1343.807281 +1343.903451 +1344.206348 +1344.340081 +1344.404949 +1344.465688 +1344.524796 +1344.560893 +1344.607713 +1344.659827 +1344.721066 +1344.787533 +1344.849171 +1344.912408 +1344.973647 +1345.035918 +1345.109511 +1345.165388 +1345.216570 +1345.256896 +1345.292994 +1345.314605 +1345.336816 +1345.462724 +1345.535351 +1345.603216 +1345.669983 +1345.740712 +1345.814638 +1345.867852 +1345.937848 +1345.986133 +1346.040512 +1346.092893 +1346.154232 +1346.201518 +1346.264455 +1346.325560 +1346.388664 +1346.449003 +1346.512040 +1346.567584 +1346.634850 +1346.696555 +1346.751933 +1346.820365 +1346.884534 +1346.929955 +1346.994424 +1347.051567 +1347.100884 +1347.150701 +1347.201616 +1347.261357 +1347.307444 +1347.371813 +1347.413538 +1347.475742 +1347.523228 +1347.569715 +1347.633884 +1347.688030 +1347.730154 +1347.767716 +1347.786231 +1347.802315 +1347.815902 +1347.875675 +1347.892258 +1347.911905 +1347.949901 +1347.992891 +1348.036114 +1348.142108 +1348.163254 +1348.448335 +1348.465585 +1348.533050 +1348.583666 +1348.629787 +1348.686264 +1348.789660 +1349.133216 +1349.183566 +1349.225524 +1349.272976 +1349.310139 +1350.097251 +1350.149699 +1350.449199 +1350.518063 +1350.528753 +1350.608273 +1351.154193 +1351.386228 +1351.479967 +1351.607806 +1351.899114 +1351.984129 +1352.271841 +1353.069776 +1353.122490 +1353.172639 +1353.217761 +1353.267345 +1353.311301 +1353.365247 +1353.420891 +1353.482163 +1353.530781 +1353.578700 +1353.631081 +1353.692719 +1353.751893 +1353.817894 +1353.863281 +1353.908736 +1353.950594 +1354.017727 +1354.062415 +1354.113398 +1354.161816 +1354.245232 +1354.309335 +1354.368276 +1354.415995 +1354.463014 +1354.521489 +1354.583960 +1354.647663 +1354.702508 +1354.768575 +1354.822388 +1354.926517 +1354.977932 +1355.054656 +1355.112131 +1355.169840 +1355.225485 +1355.732843 +1355.792850 +1355.891351 +1355.935940 +1356.099976 +1356.110965 +1356.130012 +1356.466276 +1356.848626 +1357.042233 +1357.470204 +1357.618223 +1357.794646 +1357.926115 +1357.977696 +1358.407200 +1358.474399 +1358.898741 +1358.946626 +1359.060546 +1359.532207 +1359.570435 +1359.617355 +1359.659346 +1359.697741 +1359.756416 +1359.845893 +1359.879892 +1359.938700 +1359.987951 +1360.034338 +1360.083355 +1360.167271 +1360.219585 +1360.259346 +1360.303435 +1360.403368 +1360.452386 +1360.496242 +1360.545826 +1360.603068 +1360.651054 +1360.687317 +1360.716521 +1360.745359 +1360.799905 +1360.838133 +1360.877527 +1360.907497 +1360.929175 +1360.948223 +1360.966271 +1360.988050 +1360.990181 +1360.992645 +1360.995808 +1360.999372 +1361.178392 +1361.184220 +1361.318552 +1361.322515 +1361.338632 +1361.402468 +1361.411059 +1361.429741 +1361.457480 +1361.478126 +1361.501369 +1361.524746 +1361.549188 +1361.576860 +1361.597906 +1361.625012 +1361.647090 +1361.671232 +1361.693344 +1361.716554 +1361.739031 +1361.762508 +1361.783353 +1361.948688 +1362.039297 +1362.110459 +1362.263073 +1362.308994 +1362.357978 +1362.430273 +1362.547422 +1362.673296 +1362.699603 +1362.753982 +1362.925277 +1363.000568 +1363.173828 +1363.214254 +1363.420448 +1363.480188 +1363.536665 +1363.589812 +1363.621747 +1363.707594 +1363.939595 +1364.020015 +1364.050484 +1364.070597 +1364.407593 +1364.502199 +1364.531902 +1364.860273 +1364.985814 +1365.048552 +1365.108125 +1365.320713 +1365.712487 +1365.741891 +1365.828937 +1365.855677 +1366.175091 +1366.196602 +1366.244055 +1366.296436 +1366.325074 +1366.358341 +1366.389576 +1366.418414 +1366.446819 +1366.476422 +1366.500465 +1366.551014 +1366.592373 +1366.614950 +1366.642190 +1366.670195 +1366.695103 +1366.728337 +1366.760072 +1366.789642 +1366.819945 +1366.849582 +1366.879019 +1366.908756 +1366.935563 +1366.958839 +1366.987777 +1367.014351 +1367.045653 +1367.073658 +1367.107091 +1367.139425 +1367.170528 +1367.201463 +1367.229935 +1367.263668 +1367.292972 +1367.322209 +1367.355642 +1367.384380 +1367.412685 +1367.438193 +1367.470960 +1367.503794 +1367.533964 +1367.564899 +1367.595835 +1367.626171 +1367.655009 +1367.680817 +1367.712019 +1367.746384 +1367.776488 +1367.807989 +1367.838159 +1367.867863 +1367.895169 +1367.923807 +1367.951812 +1367.975655 +1368.006358 +1368.035495 +1368.069461 +1368.100230 +1368.132931 +1368.194869 +1368.222741 +1368.256241 +1368.281915 +1368.312951 +1368.344586 +1368.376087 +1368.404592 +1368.433630 +1368.463100 +1368.495401 +1368.526304 +1368.556807 +1368.584978 +1368.617313 +1368.644952 +1368.672990 +1368.703093 +1368.731931 +1368.759470 +1368.790006 +1368.819277 +1368.847649 +1368.878285 +1368.908321 +1368.933296 +1368.962634 +1368.992704 +1369.018811 +1369.046416 +1369.072191 +1369.101195 +1369.127236 +1369.153043 +1369.181248 +1369.206989 +1369.231231 +1369.255441 +1369.287375 +1369.314881 +1369.339157 +1369.364698 +1369.416446 +1369.442653 +1369.471158 +1369.496200 +1369.524771 +1369.552576 +1369.578451 +1369.606090 +1369.632430 +1369.662999 +1369.686875 +1369.715513 +1369.745783 +1369.795167 +1369.826169 +1369.851144 +1369.876486 +1369.903059 +1369.931863 +1369.954441 +1369.981014 +1370.012749 +1370.041354 +1370.072556 +1370.099562 +1370.128933 +1370.156206 +1370.184477 +1370.211817 +1370.240188 +1370.268127 +1370.317777 +1370.347814 +1370.377051 +1370.404624 +1370.433195 +1370.460934 +1370.491070 +1370.540687 +1370.569159 +1370.594200 +1370.620041 +1370.648812 +1370.674886 +1370.702059 +1370.729831 +1370.754174 +1370.783011 +1370.810684 +1370.836991 +1370.864164 +1370.890304 +1370.919708 +1370.947280 +1370.973521 +1371.025702 +1371.051143 +1371.082445 +1371.108386 +1371.136624 +1371.163764 +1371.192901 +1371.222571 +1371.251143 +1371.279348 +1371.308352 +1371.333793 +1371.363397 +1371.390270 +1371.417177 +1371.439987 +1371.470890 +1371.498129 +1371.526967 +1371.552708 +1371.582278 +1371.614080 +1371.645881 +1371.672921 +1371.702824 +1371.733993 +1371.760633 +1371.790203 +1371.823969 +1371.855704 +1371.885974 +1371.913580 +1371.946047 +1371.974719 +1372.004122 +1372.034492 +1372.064595 +1372.099860 +1372.129264 +1372.189603 +1372.220373 +1372.246680 +1372.272754 +1372.305154 +1372.330030 +1372.362031 +1372.393499 +1372.416843 +1372.469723 +1372.498727 +1372.525134 +1372.555837 +1372.584908 +1372.616743 +1372.644481 +1372.673419 +1372.698994 +1372.726999 +1372.756969 +1372.781777 +1372.814112 +1372.843715 +1372.876816 +1372.903822 +1372.928464 +1372.958734 +1372.984774 +1373.012080 +1373.038787 +1373.067924 +1373.090302 +1373.122070 +1373.148577 +1373.177914 +1373.204587 +1373.236156 +1373.272986 +1373.301624 +1373.327131 +1373.350974 +1373.377847 +1373.410348 +1373.437887 +1373.474917 +1373.505220 +1373.534724 +1373.575416 +1373.611813 +1373.647411 +1373.676448 +1373.706418 +1373.738353 +1373.762895 +1373.795363 +1373.830994 +1373.857834 +1373.888769 +1373.921004 +1373.958666 +1373.996461 +1374.021769 +1374.049442 +1374.082409 +1374.117807 +1374.144214 +1374.171753 +1374.198959 +1374.242149 +1374.277081 +1374.311280 +1374.338486 +1374.367890 +1374.395562 +1374.415975 +1374.444913 +1374.467523 +1374.505452 +1374.538552 +1374.575915 +1374.630493 +1374.661329 +1374.689368 +1374.719371 +1374.751572 +1374.779644 +1374.811379 +1374.841915 +1374.875815 +1374.898392 +1374.929128 +1374.965059 +1374.995994 +1375.029261 +1375.056167 +1375.085238 +1375.121136 +1375.148442 +1375.183473 +1375.240683 +1375.272584 +1375.300589 +1375.334289 +1375.352204 +1375.364359 +1375.387536 +1375.425098 +1375.465358 +1375.493396 +1375.531192 +1375.595128 +1375.610080 +1375.635820 +1375.666423 +1375.704918 +1375.729893 +1375.759164 +1375.800289 +1375.839417 +1375.879077 +1375.908214 +1375.941781 +1375.966956 +1376.017305 +1376.045077 +1376.075647 +1376.092597 +1376.110279 +1376.140182 +1376.165557 +1376.249206 +1376.289333 +1376.319303 +1376.349606 +1376.382406 +1376.422067 +1376.480508 +1376.508514 +1376.537917 +1376.567588 +1376.589532 +1376.619436 +1376.671517 +1376.684837 +1376.711743 +1376.736485 +1376.769819 +1376.792396 +1376.824730 +1376.864224 +1376.938683 +1376.974147 +1377.000654 +1377.029126 +1377.059795 +1377.151936 +1377.243511 +1377.488233 +1377.873647 +1377.924496 +1378.190696 +1378.322098 +1378.362724 +1378.696290 +1378.947073 +1379.125627 +1379.389030 +1379.543176 +1379.825327 +1379.858793 +1379.880039 +1379.906745 +1380.112173 +1380.316801 +1380.850034 +1380.884034 +1380.955329 +1381.022462 +1381.082701 +1381.151932 +1381.251033 +1381.441842 +1381.467450 +1381.494456 +1381.545771 +1381.611639 +1381.651132 +1381.687363 +1381.725791 +1381.795987 +1381.826657 +1381.859024 +1381.887196 +1381.917566 +1381.950899 +1381.982334 +1382.009773 +1382.047003 +1382.076607 +1382.105877 +1382.143273 +1382.175308 +1382.237912 +1382.269314 +1382.301215 +1382.331851 +1382.362054 +1382.422927 +1382.448368 +1382.518065 +1382.552630 +1382.587162 +1382.618564 +1382.653662 +1382.684598 +1382.718231 +1382.749933 +1382.788827 +1382.823359 +1382.857691 +1382.892590 +1382.924491 +1382.954894 +1382.988594 +1383.022993 +1383.050332 +1383.082100 +1383.114001 +1383.178737 +1383.207241 +1383.241774 +1383.271877 +1383.305710 +1383.338810 +1383.398683 +1383.427055 +1383.459256 +1383.493322 +1383.524457 +1383.587761 +1383.619629 +1383.648100 +1383.672243 +1383.702046 +1383.729852 +1383.763351 +1383.815266 +1383.844837 +1383.870777 +1383.900181 +1383.928852 +1383.957224 +1383.986162 +1384.012202 +1384.040641 +1384.070710 +1384.103378 +1384.131849 +1384.158789 +1384.192122 +1384.220993 +1384.247034 +1384.271243 +1384.297717 +1384.322159 +1384.353794 +1384.382232 +1384.407174 +1384.465449 +1384.494786 +1384.551263 +1384.576604 +1384.608306 +1384.666947 +1384.702711 +1384.731049 +1384.755358 +1384.782398 +1384.812235 +1384.844170 +1384.864083 +1384.890057 +1384.920626 +1384.945668 +1384.973440 +1385.002944 +1385.033780 +1385.062751 +1385.091322 +1385.116897 +1385.149730 +1385.178601 +1385.208072 +1385.238075 +1385.266314 +1385.294086 +1385.317296 +1385.346001 +1385.377502 +1385.405041 +1385.433846 +1385.467512 +1385.499613 +1385.529517 +1385.563716 +1385.592054 +1385.624988 +1385.655124 +1385.687559 +1385.720426 +1385.752693 +1385.783463 +1385.935977 +1386.111068 +1386.238441 +1386.333379 +1386.374438 +1386.493951 +1386.675503 +1386.841171 +1387.330747 +1387.461117 +1387.487757 +1387.595549 +1388.537306 +1388.775001 +1389.266743 +1389.321221 +1389.417758 +1389.451158 +1389.723186 +1389.812663 +1389.961780 +1390.099576 +1390.191916 +1390.266309 +1390.315060 +1390.446362 +1390.547427 +1390.609099 +1390.759681 +1390.947061 +1391.562278 +1391.708565 +1391.774799 +1392.007099 +1392.110995 +1392.194612 +1392.336603 +1392.508398 +1392.660479 +1392.722250 +1392.824981 +1392.940465 +1393.013792 +1393.061744 +1393.106399 +1393.183089 +1393.326579 +1393.384787 +1393.468037 +1393.532273 +1393.594977 +1393.639565 +1393.711127 +1393.767770 +1393.822282 +1393.866005 +1393.907530 +1393.950687 +1394.016455 +1394.075096 +1394.132405 +1394.173564 +1394.289515 +1394.299172 +1394.336368 +1394.382289 +1394.429108 +1394.457846 +1394.481423 +1394.531106 +1394.581289 +1394.634236 +1394.692312 +1394.730340 +1394.774662 +1394.810660 +1394.863707 +1394.922015 +1394.965671 +1395.001369 +1395.038132 +1395.075628 +1395.115288 +1395.159178 +1395.214289 +1395.258745 +1395.309660 +1395.358744 +1395.407995 +1395.448488 +1395.503666 +1395.552284 +1395.593210 +1395.631338 +1395.669433 +1395.720882 +1395.771631 +1395.819483 +1395.864338 +1395.907262 +1395.940429 +1395.981355 +1396.035900 +1396.081221 +1396.143592 +1396.199703 +1396.243958 +1396.302966 +1396.369066 +1396.423878 +1396.458643 +1396.499303 +1396.558277 +1396.627541 +1396.686815 +1396.737165 +1396.779522 +1396.868866 +1396.920348 +1396.974727 +1397.046255 +1397.082652 +1397.351650 +1397.585116 +1397.628206 +1397.659408 +1397.729172 +1397.817550 +1397.940760 +1398.019881 +1398.153680 +1398.279254 +1398.326474 +1398.470729 +1398.665967 +1398.999766 +1399.099900 +1399.610622 +1399.716482 +1399.827271 +1399.962936 +1400.082816 +1400.263801 +1400.403528 +1400.451480 +1400.548083 +1400.677687 +1400.841856 +1401.094237 +1401.253477 +1401.402661 +1401.515515 +1401.738558 +1401.787776 +1401.830599 +1402.041189 +1402.083979 +1402.166097 +1402.447182 +1402.497199 +1402.553343 +1402.592404 +1402.848148 +1402.925337 +1402.995800 +1403.232263 +1403.272822 +1403.315913 +1403.543718 +1403.609952 +1403.707687 +1403.845816 +1403.973654 +1404.030064 +1404.080214 +1404.284044 +1404.693867 +1404.895099 +1404.997696 +1405.161532 +1405.200959 +1405.263663 +1405.351575 +1405.533926 +1405.784009 +1405.827265 +1406.208883 +1406.331927 +1406.602023 +1406.635057 +1406.883375 +1407.023068 +1407.211480 +1407.498592 +1407.621469 +1407.666424 +1407.768123 +1407.840117 +1407.881875 +1407.924000 +1408.058632 +1408.103287 +1408.146777 +1408.198625 +1408.340483 +1408.549074 +1408.611645 +1408.819171 +1409.289200 +1409.590931 +1409.743179 +1409.785037 +1409.837052 +1409.890432 +1410.300321 +1410.535819 +1410.638116 +1410.684403 +1410.729858 +1410.913940 +1410.943444 +1411.091596 +1411.195858 +1411.239215 +1411.536151 +1411.581672 +1411.758828 +1411.814173 +1412.003816 +1412.057429 +1412.111442 +1412.161192 +1412.264788 +1412.303483 +1412.373946 +1412.409910 +1412.448504 +1412.481771 +1412.515038 +1412.535451 +1412.565620 +1412.598154 +1412.646706 +1412.692660 +1412.758327 +1412.829123 +1412.882137 +1412.952999 +1413.002716 +1413.056296 +1413.103515 +1413.165720 +1413.207711 +1413.268850 +1413.318234 +1413.380138 +1413.439046 +1413.559292 +1413.598853 +1413.642442 +1413.696488 +1413.749602 +1413.805746 +1413.867917 +1413.910840 +1414.016601 +1414.059991 +1414.093857 +1414.130287 +1414.165019 +1414.204613 +1414.272079 +1414.323561 +1414.374110 +1414.398985 +1414.442675 +1414.537879 +1414.595422 +1414.643607 +1414.694656 +1414.746970 +1414.783633 +1414.820463 +1414.866051 +1414.905478 +1414.988229 +1415.042341 +1415.106410 +1415.177106 +1415.227389 +1415.276806 +1415.337579 +1415.373776 +1415.417099 +1415.483433 +1415.547269 +1415.613370 +1415.671112 +1415.720895 +1415.786729 +1415.842407 +1415.891957 +1415.930585 +1415.960555 +1415.979703 +1416.045304 +1416.127255 +1416.197252 +1416.271910 +1416.404078 +1416.466316 +1416.520761 +1416.572376 +1416.617531 +1416.652762 +1416.710205 +1416.755393 +1416.824990 +1416.878803 +1416.933548 +1417.049166 +1417.100281 +1417.147534 +1417.206408 +1417.249099 +1417.299182 +1417.401180 +1417.422026 +1417.464417 +1417.519695 +1417.561753 +1417.612502 +1417.658356 +1417.714600 +1417.766215 +1417.830916 +1417.876537 +1417.936477 +1417.986894 +1418.037277 +1418.083364 +1418.135278 +1418.188459 +1418.251495 +1418.299980 +1418.353560 +1418.418462 +1418.461086 +1418.510037 +1418.550097 +1418.601079 +1418.642637 +1418.706706 +1418.751728 +1418.800879 +1418.852028 +1418.901045 +1418.952860 +1419.008438 +1419.055058 +1419.104342 +1419.150262 +1419.187392 +1419.233945 +1419.274804 +1419.331448 +1419.383729 +1419.434578 +1419.485360 +1419.537208 +1419.588091 +1419.623189 +1419.690289 +1419.737608 +1419.788857 +1419.833279 +1419.883662 +1419.935243 +1419.988723 +1420.032646 +1420.076369 +1420.115929 +1420.164580 +1420.238240 +1420.283162 +1420.321057 +1420.369742 +1420.415929 +1420.448863 +1420.508336 +1420.545499 +1420.611466 +1420.665379 +1420.923654 +1421.031013 +1421.446664 +1421.516727 +1421.575801 +1421.880263 +1421.994649 +1423.016059 +1423.033742 +1423.090518 +1423.954553 +1423.961213 +1424.040800 +1424.427746 +1424.433407 +1424.520054 +1424.588985 +1424.639967 +1424.707899 +1424.794446 +1424.884689 +1424.943297 +1425.022518 +1425.117023 +1425.156916 +1425.288585 +1425.379893 +1425.460779 +1425.539567 +1425.721385 +1425.820086 +1425.950988 +1426.311028 +1426.355184 +1426.799705 +1426.814457 +1426.817854 +1426.821850 +1427.072366 +1427.075063 +1427.081890 +1427.085386 +1427.093478 +1427.153351 +1427.160877 +1427.199372 +1427.216488 +1427.504067 +1427.509761 +1427.524080 +1427.627344 +1427.642428 +1427.696474 +1427.736834 +1427.776861 +1427.814623 +1427.870367 +1427.902968 +1427.942228 +1427.975728 +1428.019451 +1428.059544 +1428.107163 +1428.143194 +1428.184819 +1428.226078 +1428.266837 +1428.310327 +1428.349820 +1428.391012 +1428.426677 +1428.469867 +1428.514356 +1428.559244 +1428.600103 +1428.634968 +1428.663040 +1428.692710 +1428.738864 +1428.776327 +1428.815987 +1428.861342 +1428.899637 +1428.940596 +1428.994508 +1429.035700 +1429.073329 +1429.113090 +1429.154581 +1429.174928 +1429.213423 +1429.267968 +1429.291311 +1429.330772 +1429.359576 +1429.395574 +1429.451651 +1429.511524 +1429.560442 +1430.180654 +1430.330937 +1430.395972 +1430.500001 +1430.598403 +1430.841859 +1430.951916 +1431.005795 +1431.055412 +1431.158442 +1431.361339 +1431.955478 +1432.068698 +1432.114019 +1432.412021 +1432.555211 +1433.986411 +1433.988976 +1433.991573 +1433.996202 +1434.103394 +1434.106624 +1434.109588 +1434.115016 +1434.236128 +1434.239258 +1434.242755 +1434.248716 +1434.387410 +1434.390340 +1434.393670 +1434.399631 +1434.531100 +1434.534796 +1434.539058 +1434.556041 +1434.642788 +1434.649015 +1434.660304 +1434.721942 +1434.738991 +1434.774256 +1434.798965 +1434.829701 +1434.856640 +1434.888109 +1434.920410 +1434.946617 +1434.973990 +1435.004925 +1435.037493 +1435.066064 +1435.095601 +1435.124905 +1435.154942 +1435.185211 +1435.216480 +1435.244286 +1435.274522 +1435.301961 +1435.328734 +1435.358205 +1435.388075 +1435.415448 +1435.440456 +1435.467362 +1435.496333 +1435.523939 +1435.546983 +1435.566097 +1435.597665 +1435.621841 +1435.647748 +1435.707089 +1435.737592 +1435.768894 +1435.803892 +1435.839457 +1435.900762 +1435.933363 +1435.966330 +1435.994335 +1436.031398 +1436.062766 +1436.184911 +1436.309519 +1436.683945 +1436.710285 +1436.770058 +1436.790271 +1436.921540 +1436.955972 +1436.985609 +1437.045449 +1437.161100 +1437.220208 +1437.413081 +1437.727167 +1437.761999 +1437.824703 +1437.914846 +1438.188305 +1438.260100 +1438.299794 +1438.340187 +1438.368625 +1438.391435 +1438.433993 +1438.477016 +1438.519174 +1438.556237 +1438.598395 +1438.634592 +1438.675651 +1438.708918 +1438.749510 +1438.790536 +1438.828198 +1438.871755 +1438.906353 +1438.947046 +1438.992867 +1439.024901 +1439.064595 +1439.105820 +1439.146912 +1439.184075 +1439.224701 +1439.257668 +1439.300892 +1439.332327 +1439.365127 +1439.393266 +1439.427065 +1439.450509 +1439.474118 +1439.518574 +1439.556669 +1439.594365 +1439.635590 +1439.679979 +1439.723069 +1439.799559 +1439.842283 +1439.884674 +1439.974351 +1440.005420 +1440.043282 +1440.081211 +1440.132060 +1440.178014 +1440.214510 +1440.260365 +1440.302589 +1440.347244 +1440.391866 +1440.426765 +1440.466092 +1440.509182 +1440.542848 +1440.579645 +1440.616575 +1440.645712 +1440.681310 +1440.719139 +1440.766058 +1440.794929 +1440.841616 +1440.885972 +1440.930960 +1440.971253 +1441.009148 +1441.060564 +1441.102721 +1441.139185 +1441.186204 +1441.231825 +1441.272185 +1441.317839 +1441.348342 +1441.397093 +1441.440616 +1441.484473 +1441.526164 +1441.563227 +1441.602155 +1441.646610 +1441.685971 +1441.721569 +1441.765491 +1441.807849 +1441.847076 +1441.891465 +1441.925198 +1441.965857 +1442.000856 +1442.048375 +1442.087968 +1442.117872 +1442.155434 +1442.203952 +1442.239983 +1442.279976 +1442.316839 +1442.363659 +1442.407748 +1442.450406 +1442.495261 +1442.564158 +1442.617205 +1442.659630 +1442.692730 +1442.744844 +1442.780575 +1442.825097 +1442.863792 +1442.909246 +1442.944111 +1442.988267 +1443.023832 +1443.067888 +1443.113808 +1443.151970 +1443.189532 +1443.229592 +1443.267787 +1443.309879 +1443.350671 +1443.389299 +1443.425663 +1443.454301 +1443.493728 +1443.526595 +1443.565723 +1443.604684 +1443.642845 +1443.680474 +1443.712609 +1443.747041 +1443.790597 +1443.837584 +1443.877510 +1443.912675 +1443.950870 +1443.991663 +1444.027560 +1444.069019 +1444.103451 +1444.146241 +1444.193194 +1444.232955 +1444.276777 +1444.314473 +1444.352002 +1444.375845 +1444.422099 +1444.453101 +1444.490464 +1444.534653 +1444.566421 +1444.601086 +1444.646907 +1444.692428 +1444.732188 +1444.770850 +1444.809244 +1444.851369 +1444.876444 +1444.902584 +1444.928225 +1444.986867 +1445.029790 +1445.067386 +1445.111808 +1445.149038 +1445.188465 +1445.227093 +1445.270616 +1445.314272 +1445.354166 +1445.403849 +1445.441412 +1445.481305 +1445.527992 +1445.576510 +1445.627892 +1445.675344 +1445.711508 +1445.761058 +1445.799520 +1445.838181 +1445.895124 +1445.931288 +1445.989363 +1446.026826 +1446.076143 +1446.110608 +1446.177009 +1446.225260 +1446.283269 +1446.345840 +1446.379806 +1446.428191 +1446.468717 +1446.503016 +1446.553066 +1446.592293 +1446.649336 +1446.701051 +1446.744008 +1446.797954 +1446.846006 +1446.886931 +1446.941477 +1446.968083 +1446.987764 +1446.996222 +1447.036448 +1447.063222 +1447.093258 +1447.102982 +1447.119199 +1447.156961 +1447.216701 +1447.250401 +1447.278173 +1447.330021 +1447.418533 +1447.433018 +1447.458626 +1448.114336 +1448.116834 +1448.119464 +1448.123860 +1448.423094 +1448.425425 +1448.427922 +1448.431785 +1448.545538 +1448.547902 +1448.665618 +1448.674375 +1448.985064 +1448.988428 +1448.992923 +1449.158291 +1449.391591 +1449.426023 +1449.493456 +1449.719995 +1449.786529 +1449.824691 +1450.110172 +1450.230951 +1450.267914 +1450.502279 +1450.604210 +1450.643404 +1450.716764 +1450.949198 +1451.028719 +1451.179468 +1451.263384 +1451.299248 +1451.338276 +1451.377403 +1451.417829 +1451.458522 +1451.501146 +1451.538742 +1451.578868 +1451.617030 +1451.665581 +1451.703610 +1451.735611 +1451.767746 +1451.799048 +1451.830216 +1451.870576 +1451.901911 +1451.944602 +1451.982964 +1452.030649 +1452.073473 +1452.116297 +1452.166946 +1452.202344 +1452.239041 +1452.283529 +1452.326420 +1452.371908 +1452.410336 +1452.446200 +1452.470409 +1452.511834 +1452.547532 +1452.589456 +1452.652060 +1452.694252 +1452.740971 +1452.784894 +1452.840205 +1452.880798 +1452.923089 +1452.962416 +1453.006173 +1453.042603 +1453.100745 +1453.133445 +1453.168743 +1453.205939 +1453.245267 +1453.286858 +1453.317727 +1453.352093 +1453.409802 +1453.426086 +1453.650727 +1453.967710 +1454.392651 +1454.448096 +1454.724786 +1454.934276 +1455.084426 +1455.281928 +1455.331512 +1455.484758 +1455.771405 +1455.910499 +1455.963646 +1456.052357 +1456.214195 +1456.659549 +1458.100440 +1458.102738 +1458.104969 +1458.108931 +1459.288651 +1459.291315 +1459.293446 +1459.296243 +1459.304168 +1459.415390 +1459.417621 +1459.420152 +1459.423516 +1459.431641 +1459.567072 +1459.569703 +1459.572799 +1459.580125 +1459.634771 +1459.640632 +1459.653252 +1459.660045 +1459.726912 +1459.728810 +1459.745793 +1460.361310 +1460.375030 +1460.477128 +1460.581656 +1460.619352 +1460.921649 +1461.221016 +1461.237799 +1461.292212 +1461.365505 +1461.424746 +1461.462042 +1461.482821 +1461.584686 +1461.690180 +1461.699204 +1461.900370 +1461.985651 +1462.071298 +1462.118118 +1462.235867 +1462.271398 +1462.293776 +1462.327808 +1462.332071 +1462.404798 +1462.460242 +1462.494342 +1462.520882 +1462.533935 +1462.566170 +1462.631338 +1462.646656 +1462.703332 +1462.774528 +1462.799803 +1462.881288 +1462.951251 +1463.083352 +1463.146855 +1463.215819 +1463.268900 +1463.329905 +1463.376825 +1463.430105 +1463.473994 +1463.508726 +1463.556379 +1463.601100 +1463.623678 +1463.645689 +1463.686182 +1463.750384 +1463.776758 +1463.806894 +1464.083684 +1464.095772 +1464.163637 +1464.192076 +1464.247254 +1464.294173 +1464.336964 +1464.383118 +1464.413454 +1464.462971 +1464.501466 +1464.538595 +1464.586980 +1464.624243 +1464.662138 +1464.719181 +1464.766168 +1464.814086 +1464.850583 +1464.878255 +1464.898668 +1464.972561 +1465.004529 +1465.026241 +1465.050816 +1465.070996 +1465.207825 +1465.246453 +1465.296237 +1465.351315 +1465.396836 +1465.450982 +1465.494572 +1465.544855 +1465.589277 +1465.637862 +1465.684182 +1465.726073 +1465.771062 +1465.826073 +1465.861538 +1465.913219 +1465.943855 +1466.000432 +1466.044155 +1466.099633 +1466.145787 +1466.192873 +1466.256309 +1466.315716 +1466.357375 +1466.389443 +1466.443822 +1466.479652 +1466.531201 +1466.603062 +1466.665200 +1466.713019 +1466.793671 +1466.817481 +1466.862702 +1466.922476 +1466.980151 +1467.005992 +1467.063168 +1467.140757 +1467.192073 +1467.237960 +1467.300331 +1467.344520 +1467.410354 +1467.455442 +1467.508589 +1467.568363 +1467.619978 +1467.670261 +1467.711652 +1467.760437 +1467.808123 +1467.855708 +1467.912085 +1467.956008 +1468.006657 +1468.054210 +1468.099731 +1468.156940 +1468.186044 +1468.229967 +1468.287110 +1468.310520 +1468.355941 +1468.441688 +1468.513849 +1468.575521 +1468.630699 +1468.670593 +1468.783746 +1468.828102 +1469.118378 +1469.458604 +1469.614614 +1469.948080 +1470.352675 +1470.478150 +1470.772489 +1470.932262 +1470.996997 +1471.109684 +1471.231396 +1471.285975 +1471.436957 +1471.491269 +1471.581679 +1471.621572 +1471.682278 +1471.768558 +1471.800027 +1471.839620 +1472.002524 +1472.019807 +1473.774817 +1473.799692 +1473.969289 +1473.971753 +1473.974050 +1474.303421 +1474.650174 +1475.139550 +1475.260862 +1475.512044 +1475.535154 +1475.586536 +1475.641381 +1475.665291 +1475.768754 +1475.896693 +1475.950039 +1476.001488 +1476.030792 +1476.052403 +1476.100921 +1476.282440 +1476.332257 +1476.534221 +1476.564424 +1476.576146 +1476.583572 +1476.655833 +1476.692629 +1476.719569 +1476.797424 +1476.832189 +1476.894793 +1476.986935 +1477.007081 +1477.040314 +1477.158629 +1477.413508 +1477.482971 +1477.522898 +1477.555366 +1477.591030 +1477.620933 +1477.655099 +1477.690863 +1477.731722 +1477.804516 +1477.835718 +1477.875279 +1477.912009 +1477.940613 +1477.974613 +1478.000520 +1478.034686 +1478.066620 +1478.117336 +1478.153767 +1478.184669 +1478.207180 +1478.274912 +1478.306580 +1478.325528 +1478.360560 +1478.407679 +1478.444809 +1478.533986 +1478.572980 +1478.615438 +1478.652767 +1478.681871 +1478.727692 +1478.771448 +1478.806680 +1478.843609 +1478.870716 +1478.907312 +1478.937982 +1478.976576 +1479.013406 +1479.038581 +1479.083636 +1479.109510 +1479.167951 +1479.195624 +1479.229357 +1479.324661 +1479.370549 +1479.421498 +1479.474578 +1479.516569 +1479.566020 +1479.611707 +1479.649436 +1479.733585 +1479.769982 +1479.796222 +1479.835017 +1479.912906 +1479.958427 +1480.003881 +1480.044574 +1480.096122 +1480.146672 +1480.193491 +1480.237114 +1480.278973 +1480.341743 +1480.380038 +1480.437347 +1480.490527 +1480.531586 +1480.577008 +1480.621463 +1480.672978 +1480.779039 +1480.825192 +1480.869948 +1480.914436 +1480.946904 +1480.984000 +1481.016934 +1481.059558 +1481.086198 +1481.127290 +1481.161556 +1481.197054 +1481.254196 +1481.291226 +1481.356993 +1481.396687 +1481.469847 +1481.504512 +1481.560590 +1481.606111 +1481.655694 +1481.689294 +1481.727156 +1481.763253 +1481.823993 +1481.862621 +1481.909474 +1481.982234 +1482.038944 +1482.081335 +1482.149500 +1482.191059 +1482.238411 +1482.281335 +1482.307409 +1482.358258 +1482.381701 +1482.437412 +1482.465684 +1482.480769 +1482.513702 +1492.390682 +1492.394312 +1492.515524 +1492.521151 +1492.582623 +1492.589616 +1492.596310 +1493.037801 +1493.297341 +1496.098337 +1496.668600 +1496.670664 +1496.671863 +1496.673761 +1496.675893 +1496.678989 +1496.736665 +1496.739729 +1496.742426 +1496.744857 +1496.747654 +1496.864870 +1496.866602 +1496.872263 +1496.874993 +1496.931137 +1496.933335 +1496.935932 +1496.938663 +1496.942659 +1497.000934 +1497.004663 +1497.007960 +1497.012422 +1497.058010 +1497.059775 +1497.063072 +1497.077557 +1497.127973 +1497.135566 +1497.138829 +1497.143125 +1497.194407 +1497.196671 +1497.199102 +1497.204996 +1497.211623 +1498.040493 +1498.043157 +1498.046254 +1498.317782 +1498.321945 +1498.327672 +1498.523177 +1498.526973 +1498.533633 +1498.683483 +1498.689843 +1498.699500 +1498.770529 +1498.781518 +1498.842857 +1498.879520 +1498.933832 +1498.983716 +1499.025374 +1499.080319 +1499.129337 +1499.174125 +1499.213719 +1499.259107 +1499.310322 +1499.452313 +1499.498267 +1499.595603 +1499.826073 +1500.301463 +1504.961232 +1505.278781 +1505.353939 +1505.358435 +1505.467825 +1505.469657 +1505.480945 +1505.530429 +1505.531794 +1505.534925 +1505.666560 +1505.669756 +1505.732294 +1506.898726 +1511.396457 +1511.399754 +1511.401386 +1511.403250 +1511.405382 +1511.478042 +1511.479974 +1511.482238 +1511.484835 +1511.489464 +1511.593160 +1511.596457 +1511.598688 +1511.600853 +1511.603284 +1511.606680 +1511.732321 +1511.734219 +1511.737150 +1511.739481 +1511.742111 +1511.747606 +1512.129523 +1512.132054 +1512.134385 +1512.137382 +1512.430522 +1512.433419 +1512.436416 +1512.446206 +1512.686466 +1512.689330 +1512.692427 +1512.907312 +1512.910575 +1512.914404 +1512.926426 +1513.112839 +1513.117634 +1513.122296 +1513.335416 +1513.340411 +1513.348969 +1513.515869 +1513.523628 +1513.564287 +1513.615003 +1513.626725 +1513.750534 +1513.766718 +1513.838446 +1513.875742 +1513.927757 +1513.989229 +1514.049435 +1514.101183 +1514.153364 +1514.228689 +1514.314270 +1514.378572 +1514.430387 +1514.524826 +1514.542641 +1514.597886 +1514.600617 +1514.612538 +1514.615535 +1514.663520 +1514.678305 +1514.730120 +1514.791292 +1514.793224 +1514.796287 +1514.824093 +1514.865418 +1514.867516 +1514.938811 +1514.944439 +1517.404776 +1517.407307 +1517.409272 +1517.413501 +1517.417597 +1517.494453 +1517.496052 +1517.500714 +1517.504576 +1517.637643 +1517.640274 +1517.642272 +1517.644203 +1517.646468 +1517.650131 +1517.701679 +1517.703577 +1517.705775 +1517.707939 +1517.710970 +1517.716764 +1520.008736 +1520.010934 +1520.012866 +1520.015330 +1520.018860 +1520.194117 +1520.197514 +1520.199445 +1520.201110 +1520.203441 +1520.207770 +1520.270741 +1520.281130 +1520.283095 +1520.337973 +1520.342802 +1520.346132 +1520.349495 +1520.356288 +1520.463248 +1520.465712 +1520.468176 +1520.470807 +1520.529382 +1520.530847 +1520.533045 +1520.535942 +1520.539672 +1520.594783 +1520.599512 +1520.603608 +1520.608669 +1520.659085 +1520.661583 +1520.665213 +1520.669242 +1520.678266 +1524.345295 +1524.347893 +1524.349858 +1524.351989 +1524.354986 +1524.602205 +1524.603937 +1524.605668 +1524.607666 +1524.610330 +1524.618589 +1524.674466 +1524.676564 +1524.679294 +1524.681692 +1524.691982 +1524.740999 +1524.742764 +1524.745029 +1524.804036 +1524.809298 +1524.813593 +1524.868938 +1524.879561 +1524.926747 +1524.929511 +1524.935005 +1524.941199 +1524.988352 +1524.993913 +1524.998708 +1525.012761 +1525.042930 +1525.045228 +1525.329777 +1525.332407 +1525.334872 +1528.642627 +1528.644825 +1528.646956 +1528.649054 +1528.653816 +1528.768135 +1528.769500 +1528.771099 +1528.773430 +1528.775927 +1528.782287 +1528.835601 +1528.837699 +1528.839497 +1528.844925 +1528.851052 +1528.901535 +1528.903333 +1528.909360 +1528.913190 +1528.964139 +1528.967968 +1528.982454 +1529.032404 +1529.034735 +1529.089546 +1529.091544 +1529.095507 +1529.099170 +1529.145624 +1529.148055 +1529.151285 +1529.157445 +1529.212623 +1529.214655 +1529.217951 +1529.223712 +1531.161772 +1531.166234 +1531.526374 +1531.529837 +1531.678921 +1531.766533 +1531.832168 +1531.841791 +1531.903430 +1531.907426 +1531.920246 +1531.981152 +1531.984515 +1532.047519 +1532.051615 +1532.062737 +1532.121745 +1532.129503 +1532.132734 +1535.653809 +1535.655707 +1535.660036 +1535.672290 +1535.873223 +1535.877319 +1535.879183 +1535.881315 +1535.942620 +1535.945417 +1535.947015 +1535.954841 +1536.093369 +1536.094834 +1536.096899 +1536.098863 +1536.111018 +1536.165264 +1536.168094 +1536.170625 +1536.173356 +1536.176919 +1536.239356 +1536.244618 +1536.247814 +1536.314015 +1536.316645 +1536.320109 +1536.459569 +1538.880446 +1538.882510 +1538.884309 +1538.893066 +1539.157169 +1539.158900 +1539.160565 +1539.162630 +1539.164894 +1539.167558 +1539.228264 +1539.230362 +1539.233059 +1539.235490 +1539.238687 +1539.413978 +1539.416742 +1539.418907 +1539.421038 +1539.423769 +1539.432560 +1541.695228 +1541.772517 +1541.858098 +1541.939117 +1542.004618 +1542.169287 +1542.231192 +1542.237152 +1542.240283 +1542.301055 +1542.303519 +1543.822432 +1543.826328 +1543.828193 +1543.830224 +1543.832788 +1544.071483 +1544.073681 +1544.075512 +1544.077510 +1544.080441 +1544.300387 +1544.302485 +1544.306448 +1544.309478 +1544.314373 +1544.376478 +1544.379275 +1544.381939 +1544.385668 +1544.453068 +1544.454966 +1544.457163 +1544.459927 +1544.463657 +1544.604383 +1544.634985 +1544.637050 +1544.639248 +1544.883403 +1544.885701 +1544.887699 +1544.890130 +1544.894526 +1545.214639 +1547.001050 +1547.089562 +1547.091926 +1547.096555 +1547.170880 +1547.179705 +1547.263021 +1547.334850 +1547.336415 +1547.338013 +1547.339745 +1547.342142 +1547.345006 +1547.495289 +1547.496754 +1547.498719 +1547.500584 +1547.502415 +1547.504680 +1547.658093 +1547.659791 +1547.661622 +1547.663587 +1547.668982 +1549.634381 +1549.638477 +1549.840075 +1549.842040 +1549.910738 +1550.436012 +1550.772175 +1550.774107 +1550.776205 +1552.326453 +1552.418228 +1552.657388 +1552.659686 +1552.661717 +1552.673439 +1552.786093 +1553.229982 +1553.232246 +1553.241437 +1553.706705 +1553.710701 +1554.098179 +1554.099745 +1554.101443 +1554.103108 +1554.105039 +1554.107503 +1554.385725 +1554.388056 +1554.389654 +1554.393018 +1554.396514 +1554.500510 +1554.573570 +1554.575968 +1554.577899 +1554.580097 +1554.582262 +1554.586324 +1555.610432 +1555.981927 +1555.983759 +1555.985723 +1555.988088 +1555.991984 +1556.200908 +1556.202673 +1556.204504 +1556.206602 +1556.209166 +1556.392416 +1556.394481 +1556.395946 +1556.399609 +1556.403172 +1556.684291 +1556.687155 +1556.688786 +1556.690518 +1556.692083 +1556.693815 +1556.695846 +1556.700042 +1557.134307 +1557.136505 +1557.138436 +1557.140834 +1557.431576 +1557.433507 +1557.435572 +1557.439302 +1557.923983 +1557.926614 +1557.928545 +1559.171668 +1559.174398 +1559.176230 +1559.178028 +1559.179826 +1559.182890 +1559.499639 +1559.501770 +1559.503635 +1559.505800 +1559.508497 +1559.519453 +1560.440930 +1560.443361 +1560.445259 +1560.447490 +1560.450954 +1561.027576 +1561.030274 +1561.031905 +1561.034070 +1561.288116 +1561.290147 +1561.292112 +1561.294609 +1561.359444 +1561.960343 +1561.962108 +1561.964638 +1561.966703 +1561.969633 +1563.028873 +1563.034068 +1563.038131 +1563.329972 +1563.332236 +1563.338730 +1563.561140 +1563.570897 +1563.866934 +1563.869865 +1564.288146 +1564.814386 +1564.816484 +1564.820813 +1565.438128 +1567.050980 +1567.052978 +1567.937293 +1567.939791 +1567.944020 +1568.380150 +1568.383280 +1568.387409 +1568.533297 +1568.662634 +1568.668395 +1569.236659 +1569.241388 +1569.243486 +1569.246283 +1569.348547 +1569.350578 +1569.353143 +1569.355374 +1569.357671 +1569.360935 +1569.749413 +1569.752010 +1569.756605 +1569.864930 +1569.871424 +1569.873688 +1569.876019 +1569.879482 +1570.214580 +1570.217844 +1570.224604 +1571.989137 +1571.995764 +1574.798958 +1575.605517 +1575.609313 +1576.459196 +1576.460961 +1576.688933 +1576.691330 +1581.007243 +1581.013471 +1581.015535 +1581.740842 +1581.742674 +1581.744905 +1584.220427 +1584.222392 +1584.224323 +1584.226288 +1584.229118 +1584.613234 +1584.615865 +1584.617929 +1584.619927 +1584.622258 +1585.171442 +1585.173839 +1585.175937 +1585.178268 +1585.183030 +1585.381831 +1585.383729 +1585.385960 +1585.389457 +1586.012533 +1586.014664 +1586.016463 +1586.018394 +1586.021657 +1586.087558 +1586.098281 +1586.102443 +1586.437807 +1586.439639 +1586.443302 +1586.445034 +1586.448230 +1586.923987 +1586.926119 +1586.930148 +1586.934277 +1587.085126 +1587.086558 +1587.088123 +1587.092319 +1587.308103 +1587.310201 +1587.312265 +1587.314563 +1587.318126 +1587.413198 +1587.415462 +1587.417227 +1587.419258 +1587.421356 +1587.424553 +1590.002406 +1590.004337 +1590.005902 +1590.008000 +1590.011097 +1590.310597 +1590.312729 +1590.314560 +1590.316791 +1590.319822 +1590.324650 +1591.019155 +1591.023317 +1591.229478 +1591.232874 +1591.235072 +1591.236970 +1591.971335 +1591.973966 +1591.976064 +1591.978461 +1592.321984 +1592.557881 +1592.560678 +1592.562510 +1592.564475 +1592.572000 +1593.103502 +1593.643528 +1593.645659 +1593.647557 +1593.649855 +1593.656282 +1594.091380 +1595.487948 +1595.489946 +1595.493509 +1595.495607 +1596.026776 +1596.031304 +1597.122146 +1597.123644 +1597.126841 +1597.133534 +1597.342359 +1598.085448 +1598.094040 +1598.442191 +1598.453047 +1598.799833 +1598.802464 +1598.804595 +1598.891142 +1598.893140 +1599.569063 +1599.571960 +1599.934997 +1599.939093 +1599.942190 +1600.155010 +1600.159106 +1600.160971 +1600.483614 +1600.485979 +1600.490407 +1601.057939 +1601.061236 +1601.668628 +1601.672857 +1602.210852 +1602.216713 +1602.218944 +1602.227469 +1602.483113 +1602.485644 +1602.487675 +1602.492770 +1602.595633 +1602.598997 +1603.161534 +1603.164797 +1603.166695 +1603.168793 +1603.171690 +1603.426369 +1603.428899 +1603.431031 +1604.808951 +1604.811082 +1604.813014 +1604.815178 +1604.819407 +1605.198894 +1605.200792 +1605.202624 +1605.204688 +1605.207619 +1605.375018 +1605.376783 +1605.439420 +1605.441118 +1605.443216 +1605.447279 +1605.450243 +1605.940485 +1605.942750 +1605.944581 +1605.946313 +1605.951374 +1606.472553 +1606.474651 +1606.476882 +1606.478780 +1608.149407 +1608.155035 +1609.726196 +1609.730858 +1609.732689 +1609.734587 +1609.738084 +1609.853169 +1609.855366 +1609.857431 +1609.859929 +1609.867221 +1611.116637 +1611.120367 +1612.893625 +1613.473312 +1613.475809 +1613.477607 +1613.479472 +1613.481870 +1613.487364 +1613.574843 +1613.578540 +1613.580471 +1613.582602 +1613.586998 +1613.638946 +1613.791027 +1613.792892 +1613.796854 +1613.799751 +1613.868483 +1613.870248 +1613.872046 +1613.873711 +1613.875975 +1613.878306 +1614.197320 +1614.199185 +1614.200850 +1614.202981 +1614.327723 +1614.543107 +1614.545139 +1614.547203 +1614.549301 +1614.552498 +1614.561955 +1614.888795 +1614.891392 +1614.893790 +1614.898318 +1615.277539 +1615.500516 +1615.519264 +1615.688860 +1615.909939 +1616.240974 +1616.381900 +1616.461853 +1616.553595 +1616.631051 +1616.767647 +1616.802046 +1617.037810 +1617.170044 +1617.269212 +1617.507940 +1617.541573 +1617.577903 +1617.935845 +1617.997383 +1618.052927 +1618.176370 +1618.263050 +1618.306307 +1618.339307 +1618.456956 +1618.493653 +1618.671342 +1618.708738 +1618.744935 +1618.772174 +1619.084561 +1619.193852 +1619.319127 +1619.356756 +1619.396183 +1619.431015 +1619.466046 +1619.506506 +1619.547198 +1619.579266 +1619.612433 +1619.647564 +1619.677035 +1619.709203 +1619.742703 +1619.777967 +1619.810302 +1619.843235 +1619.878467 +1619.910168 +1619.950761 +1619.986925 +1620.025053 +1620.052792 +1620.086991 +1620.117061 +1620.157421 +1620.194550 +1620.231713 +1620.262349 +1620.300178 +1620.334843 +1620.368410 +1620.401010 +1620.426019 +1620.458419 +1620.491087 +1620.524786 +1620.558519 +1620.600810 +1620.635975 +1620.671306 +1620.713930 +1620.752725 +1620.790587 +1620.830480 +1620.864846 +1620.906471 +1620.946231 +1620.975169 +1621.006304 +1621.043001 +1621.078199 +1621.112198 +1621.142568 +1621.177033 +1621.213597 +1621.250360 +1621.279131 +1621.311732 +1621.348995 +1621.390620 +1621.429747 +1621.466710 +1621.496281 +1621.529414 +1621.564079 +1621.596214 +1621.631179 +1621.663080 +1621.667343 +1621.695914 +1621.727283 +1621.764246 +1621.792251 +1621.827316 +1621.857019 +1621.890786 +1621.923220 +1621.953556 +1621.988621 +1622.020922 +1622.053856 +1622.079031 +1622.110133 +1622.143433 +1622.178364 +1622.207402 +1622.245098 +1622.277765 +1622.307202 +1622.343433 +1622.377399 +1622.403506 +1622.443299 +1622.474035 +1622.503606 +1622.532477 +1622.561115 +1622.587255 +1622.619756 +1622.645364 +1622.673669 +1622.703006 +1622.734841 +1622.759849 +1622.788254 +1622.826549 +1622.858950 +1622.885956 +1622.921654 +1622.942899 +1622.977564 +1622.999076 +1623.065210 +1623.092150 +1623.129013 +1623.159449 +1623.187987 +1623.225250 +1623.257018 +1623.288720 +1623.350524 +1623.377631 +1623.431643 +1623.463744 +1623.491150 +1623.519355 +1623.553155 +1623.582326 +1623.615259 +1623.649325 +1623.798543 +1623.947094 +1623.966208 +1624.035306 +1624.089285 +1624.249092 +1624.280127 +1624.342831 +1624.428679 +1624.522751 +1624.554020 +1624.741199 +1624.770636 +1624.793147 +1624.907066 +1625.251821 +1625.675031 +1625.703536 +1625.887219 +1625.924515 +1625.958314 +1625.992380 +1626.025280 +1626.068337 +1626.102803 +1626.131940 +1626.158081 +1626.192047 +1626.220452 +1626.250555 +1626.276928 +1626.309196 +1626.336902 +1626.369769 +1626.401704 +1626.431507 +1626.460978 +1626.485853 +1626.518520 +1626.546892 +1626.577128 +1626.606132 +1626.632439 +1626.666705 +1626.698307 +1626.727278 +1626.755150 +1626.787084 +1626.816055 +1626.846492 +1626.879126 +1626.911626 +1626.940697 +1626.973065 +1627.001104 +1627.030474 +1627.061343 +1627.090114 +1627.138399 +1627.160977 +1627.189948 +1627.221783 +1627.253950 +1627.281223 +1627.308529 +1627.334903 +1627.365439 +1627.391113 +1627.420584 +1627.447124 +1627.475029 +1627.504933 +1627.529575 +1627.564440 +1627.597507 +1627.628442 +1627.659644 +1627.687217 +1627.714822 +1627.743694 +1627.774296 +1627.805299 +1627.833770 +1627.861875 +1627.890613 +1627.920283 +1627.946957 +1627.980090 +1628.013324 +1628.044293 +1628.100969 +1628.133304 +1628.160110 +1628.220816 +1628.244559 +1628.274562 +1628.299670 +1628.329674 +1628.357113 +1628.387116 +1628.420116 +1628.449387 +1628.477692 +1628.503033 +1628.531305 +1628.553550 +1628.579790 +1628.595707 +1628.613190 +1628.634868 +1628.670199 +1628.689214 +1628.719650 +1628.754615 +1628.788914 +1628.824478 +1628.860542 +1628.893143 +1628.922913 +1628.956380 +1628.986483 +1629.015487 +1629.045890 +1629.075727 +1629.108860 +1629.140395 +1629.177825 +1629.208327 +1629.250652 +1629.319849 +1629.351384 +1629.382054 +1629.418617 +1629.457445 +1629.494707 +1629.534801 +1629.575527 +1629.608360 +1629.643225 +1629.677857 +1629.727674 +1629.767568 +1629.809359 +1629.863372 +1629.901534 +1629.942559 +1629.990977 +1630.027208 +1630.063771 +1630.105096 +1630.142492 +1630.178989 +1630.219182 +1630.251916 +1630.286748 +1630.314387 +1630.347487 +1630.383385 +1630.406062 +1630.434933 +1630.466235 +1630.492375 +1630.526008 +1630.554813 +1630.589079 +1630.621713 +1630.658576 +1630.684117 +1630.714653 +1630.736098 +1630.771529 +1630.801200 +1630.835632 +1630.862072 +1630.889811 +1630.924609 +1630.955012 +1630.986647 +1631.011156 +1631.035665 +1631.061606 +1631.088812 +1631.117916 +1631.150050 +1631.175259 +1631.199867 +1631.229637 +1631.255678 +1631.283583 +1631.326341 +1631.383150 +1631.413087 +1631.447020 +1631.478422 +1631.505961 +1631.543756 +1631.574659 +1631.598102 +1631.633000 +1631.668198 +1631.688811 +1631.724775 +1631.761672 +1631.791875 +1631.824242 +1631.859107 +1631.889643 +1631.911155 +1631.945987 +1631.973393 +1632.001731 +1632.044655 +1632.075424 +1632.116949 +1632.164635 +1632.194572 +1632.225874 +1632.259806 +1632.293606 +1632.316549 +1632.350149 +1632.393639 +1632.427438 +1632.458341 +1632.496869 +1632.530968 +1632.567998 +1632.596469 +1632.625174 +1632.663436 +1632.697668 +1632.722143 +1632.770795 +1632.820678 +1632.856143 +1632.918514 +1632.995670 +1633.044554 +1633.075456 +1633.134231 +1633.187877 +1633.220278 +1633.281650 +1633.329669 +1633.363834 +1633.427571 +1633.473258 +1633.578420 +1633.612519 +1633.657674 +1633.683248 +1633.724806 +1633.780351 +1633.835129 +1633.883215 +1633.928136 +1633.956774 +1634.004959 +1634.042222 +1634.088209 +1634.134396 +1634.172558 +1634.202229 +1634.257240 +1634.318146 +1634.356774 +1634.395968 +1634.441123 +1634.484146 +1634.519911 +1634.568429 +1634.750446 +1634.799564 +1634.991505 +1635.241588 +1635.492870 +1636.111684 +1636.164131 +1636.296932 +1636.339656 +1636.377251 +1636.623904 +1636.655373 +1636.726235 +1636.802792 +1636.848247 +1636.883445 +1636.924537 +1636.956172 +1636.995832 +1637.033728 +1637.075819 +1637.112682 +1637.140720 +1637.166262 +1637.206155 +1637.253274 +1637.285709 +1637.319442 +1637.354207 +1637.388006 +1637.422272 +1637.454140 +1637.493900 +1637.530863 +1637.568592 +1637.601160 +1637.633427 +1637.660367 +1637.701825 +1637.725335 +1637.768026 +1637.798862 +1637.864363 +1637.893300 +1637.935325 +1637.970390 +1638.003124 +1638.033427 +1638.063830 +1638.098362 +1638.128998 +1638.157603 +1638.191635 +1638.227066 +1638.255438 +1638.290969 +1638.322105 +1638.346414 +1638.382278 +1638.414346 +1638.451309 +1638.481678 +1638.509051 +1638.534991 +1638.559867 +1638.591901 +1638.621738 +1638.648345 +1638.681745 +1638.714678 +1638.742750 +1638.766693 +1638.796063 +1638.825434 +1638.859567 +1638.891701 +1638.924268 +1638.953806 +1638.984408 +1639.014412 +1639.037155 +1639.074318 +1639.105787 +1639.131195 +1639.154605 +1639.186872 +1639.222270 +1639.254471 +1639.284674 +1639.316010 +1639.350675 +1639.378147 +1639.409849 +1639.449176 +1639.477914 +1639.524568 +1639.575017 +1639.605786 +1639.664428 +1639.700824 +1639.753605 +1639.794997 +1639.835190 +1639.883775 +1639.921570 +1639.961863 +1640.002556 +1640.039652 +1640.100191 +1640.139885 +1640.178280 +1640.215909 +1640.251273 +1640.269422 +1640.309582 +1640.385972 +1640.424034 +1640.467324 +1640.511879 +1640.552172 +1640.588736 +1640.621803 +1640.657234 +1640.694496 +1640.722069 +1640.756168 +1640.801056 +1640.835355 +1640.868489 +1640.905186 +1640.928296 +1640.956401 +1640.994063 +1641.031126 +1641.069721 +1641.123534 +1641.175881 +1641.230693 +1641.274216 +1641.318772 +1641.385138 +1641.449108 +1641.487969 +1641.527196 +1641.608082 +1641.678312 +1641.700256 +1641.777912 +1641.982707 +1642.048441 +1642.109846 +1642.136786 +1642.247509 +1642.269820 +1642.340649 +1642.387502 +1642.451105 +1642.528894 +1642.558997 +1642.637551 +1642.725563 +1642.758097 +1642.818037 +1642.878777 +1642.949539 +1642.979676 +1643.030658 +1643.089000 +1643.144544 +1643.177245 +1643.227028 +1643.247841 +1643.278876 +1643.314074 +1643.377577 +1643.449239 +1643.501587 +1643.536152 +1643.558063 +1643.612476 +1643.663158 +1643.722898 +1643.842512 +1643.894826 +1643.967553 +1644.043577 +1644.120034 +1644.154833 +1644.185202 +1644.243011 +1644.329325 +1644.355332 +1644.392395 +1644.443677 +1644.492461 +1644.550137 +1644.659228 +1644.704016 +1644.784436 +1644.855198 +1644.898022 +1644.914472 +1644.971981 +1645.028758 +1645.063490 +1645.105847 +1645.112641 +1645.175944 +1645.223696 +1645.266586 +1645.296989 +1645.334352 +1645.393193 +1645.444375 +1645.498454 +1645.527392 +1645.578707 +1645.637016 +1645.697655 +1645.764388 +1645.804248 +1645.813839 +1645.853299 +1645.907312 +1645.959460 +1646.002150 +1646.031987 +1646.079506 +1646.126659 +1646.166219 +1646.208810 +1646.237981 +1646.286532 +1646.330055 +1646.356562 +1646.386632 +1646.417901 +1646.438746 +1646.484501 +1646.538780 +1646.591727 +1646.634284 +1646.664820 +1646.709875 +1646.755762 +1646.798786 +1646.839512 +1646.871780 +1646.916368 +1646.946039 +1647.005612 +1647.048336 +1647.094290 +1647.136714 +1647.183934 +1647.227823 +1647.269948 +1647.306877 +1647.363221 +1647.414703 +1647.464420 +1647.505945 +1647.548069 +1647.591026 +1647.640643 +1647.693590 +1647.737347 +1647.778039 +1647.830287 +1647.863187 +1647.902082 +1647.935815 +1647.978106 +1648.022161 +1648.058958 +1648.094323 +1648.136947 +1648.177240 +1648.215601 +1648.252897 +1648.283233 +1648.317532 +1648.353963 +1648.383400 +1648.420762 +1648.455628 +1648.495155 +1648.528921 +1648.564152 +1648.607409 +1648.642973 +1648.683899 +1648.718131 +1648.754329 +1648.783499 +1648.815268 +1648.849800 +1648.887795 +1648.926456 +1648.963752 +1648.993090 +1649.025524 +1649.056260 +1649.084731 +1649.123592 +1649.161721 +1649.201015 +1649.264285 +1649.297785 +1649.351398 +1649.390059 +1649.429719 +1649.463752 +1649.496219 +1649.531417 +1649.564551 +1649.594354 +1649.629952 +1649.657425 +1649.680934 +1649.742007 +1649.772043 +1649.806708 +1649.834547 +1649.916299 +1649.993255 +1650.038010 +1650.110937 +1650.272109 +1650.376904 +1650.578969 +1650.690291 +1650.758755 +1650.865715 +1650.890257 +1650.966747 +1650.993820 +1651.138509 +1651.172541 +1651.245335 +1651.419461 +1651.628851 +1651.668611 +1651.708238 +1651.869976 +1651.948631 +1652.027985 +1652.268544 +1652.326220 +1652.398414 +1652.537175 +1652.571041 +1652.635377 +1652.700445 +1652.747132 +1652.854391 +1653.123655 +1653.164481 +1653.307571 +1653.361816 +1653.571074 +1653.655889 +1653.760151 +1653.811167 +1653.923321 +1653.967810 +1654.006338 +1654.049695 +1654.088656 +1654.133278 +1654.477433 +1654.605838 +1654.631812 +1654.885558 +1655.081162 +1655.125151 +1655.225451 +1655.332610 +1655.384592 +1655.404006 +1655.411931 +1655.428081 +1655.559583 +1655.636806 +1655.730046 +1655.839203 +1655.958883 +1656.042000 +1656.076965 +1656.185224 +1656.277864 +1656.319189 +1656.377365 +1656.407501 +1656.448527 +1656.481094 +1656.539635 +1656.580794 +1656.622386 +1656.668007 +1656.712995 +1656.747661 +1656.777031 +1656.804337 +1656.848526 +1656.888353 +1656.922486 +1656.965476 +1657.011596 +1657.056285 +1657.089119 +1657.132609 +1657.163944 +1657.193314 +1657.231576 +1657.264343 +1657.298909 +1657.352155 +1657.387920 +1657.430144 +1657.466574 +1657.496744 +1657.500873 +1657.549325 +1657.594546 +1657.635705 +1657.677596 +1657.706601 +1657.743930 +1657.768106 +1657.803703 +1657.846361 +1657.904269 +1657.925914 +1657.987852 +1658.039567 +1658.047393 +1658.105734 +1658.165408 +1658.213327 +1658.250090 +1658.292581 +1658.348092 +1658.382224 +1658.429644 +1658.479261 +1658.529410 +1658.567805 +1658.606034 +1658.651621 +1658.677162 +1658.709497 +1658.748891 +1658.784855 +1658.850422 +1658.909830 +1658.977096 +1659.006200 +1659.009796 +1659.077761 +1659.152886 +1659.226146 +1659.253219 +1659.292114 +1659.386952 +1659.451754 +1659.486386 +1659.555283 +1659.593845 +1659.655983 +1659.696142 +1659.803169 +1659.878460 +1659.924214 +1659.997408 +1660.084354 +1660.145526 +1660.198107 +1660.263008 +1660.304633 +1660.351853 +1660.387351 +1660.440664 +1660.481723 +1660.527310 +1660.578493 +1660.623314 +1660.663940 +1660.735136 +1660.863607 +1661.114290 +1661.209028 +1661.210826 +1661.284120 +1661.489314 +1661.624978 +1661.674029 +1661.799404 +1661.897073 +1661.944625 +1662.030139 +1662.153416 +1662.193942 +1662.351285 +1662.390745 +1662.422047 +1662.751218 +1662.797738 +1662.989679 +1663.136798 +1663.167501 +1663.261440 +1663.479256 +1663.521780 +1663.553515 +1663.756112 +1663.862705 +1663.892742 +1663.962305 +1664.217350 +1664.362105 +1664.433867 +1664.808791 +1664.843124 +1664.937596 +1665.038262 +1665.163669 +1665.231535 +1665.265934 +1665.297602 +1665.336463 +1665.369397 +1665.414785 +1665.450416 +1665.481818 +1665.515617 +1665.552713 +1665.591375 +1665.625840 +1665.660705 +1665.696136 +1665.727239 +1665.761671 +1665.794172 +1665.827705 +1665.861438 +1665.896103 +1665.931900 +1665.966766 +1665.998933 +1666.026939 +1666.059573 +1666.101064 +1666.142923 +1666.173858 +1666.201098 +1666.227571 +1666.262436 +1666.309756 +1666.347484 +1666.373458 +1666.422709 +1666.466932 +1666.556542 +1666.601763 +1666.640025 +1666.696002 +1666.746751 +1666.796701 +1666.833431 +1666.874723 +1666.914783 +1666.968097 +1667.020977 +1667.050980 +1667.110021 +1667.159572 +1667.193371 +1667.233597 +1667.310254 +1667.359405 +1667.410487 +1667.491872 +1667.592938 +1667.661369 +1667.865199 +1667.908555 +1668.040556 +1668.187210 +1668.393936 +1668.546916 +1668.607056 +1668.674022 +1668.809220 +1669.279549 +1669.348314 +1669.537258 +1669.582979 +1669.663865 +1669.730332 +1669.803925 +1669.863199 +1669.933462 +1669.981613 +1670.069758 +1670.120574 +1670.180048 +1670.276485 +1670.328033 +1670.374620 +1670.421640 +1670.425636 +1670.494234 +1670.682279 +1670.751609 +1670.773587 +1670.818709 +1670.959035 +1671.190104 +1671.329031 +1671.443050 +1671.517609 +1671.666493 +1671.675584 +1671.737755 +1671.823003 +1671.865361 +1671.949410 +1671.960166 +1671.974818 +1672.306386 +1672.404988 +1672.474385 +1672.539420 +1672.672620 +1672.719240 +1673.215443 +1673.245979 +1673.759665 +1673.897027 +1673.941017 +1673.988835 +1674.039052 +1674.077547 +1674.125632 +1674.177080 +1674.265758 +1674.316341 +1674.373783 +1674.434323 +1674.477213 +1674.521869 +1674.527896 +1674.543347 +1674.591965 +1674.630926 +1674.694129 +1674.744013 +1674.789800 +1674.829028 +1674.871219 +1674.927130 +1674.977979 +1675.028095 +1675.077879 +1675.128395 +1675.181308 +1675.228994 +1675.275614 +1675.352737 +1675.401455 +1675.446177 +1675.484771 +1675.529793 +1675.577179 +1675.624265 +1675.675314 +1675.712110 +1675.744112 +1675.772084 +1675.862993 +1675.929060 +1675.964225 +1676.008381 +1676.042347 +1676.087968 +1676.159762 +1676.192396 +1676.217738 +1676.246076 +1676.273182 +1676.340215 +1676.394461 +1676.440082 +1676.489332 +1676.538883 +1676.588500 +1676.634520 +1676.677677 +1676.717870 +1676.761060 +1676.816272 +1676.861160 +1676.896591 +1676.951070 +1676.989099 +1677.036385 +1677.091563 +1677.138649 +1677.174014 +1677.220201 +1677.271250 +1677.318436 +1677.358895 +1677.402885 +1677.452568 +1677.496091 +1677.542478 +1677.584503 +1677.634286 +1677.666055 +1677.713540 +1677.747806 +1677.791962 +1677.836118 +1677.881272 +1677.922731 +1677.975212 +1678.019368 +1678.062424 +1678.109577 +1678.151136 +1678.185301 +1678.270849 +1678.302517 +1678.349371 +1678.394292 +1678.437815 +1678.484402 +1678.520100 +1678.560293 +1678.605681 +1678.660159 +1678.692427 +1678.733353 +1678.775477 +1678.820665 +1678.874212 +1678.914372 +1678.961325 +1679.001151 +1679.052167 +1679.103316 +1679.144941 +1679.185500 +1679.233086 +1679.274644 +1679.317168 +1679.354598 +1679.398887 +1679.438547 +1679.496789 +1679.543509 +1679.591527 +1679.629389 +1679.678174 +1679.722230 +1679.772046 +1679.809809 +1679.850268 +1679.881603 +1679.925726 +1679.969848 +1680.024161 +1680.066485 +1680.106978 +1680.141776 +1680.185133 +1680.238513 +1680.296422 +1680.382003 +1680.490694 +1680.685465 +1680.800117 +1680.850633 +1681.202748 +1681.273144 +1681.407143 +1681.638545 +1681.684665 +1681.723660 +1681.818098 +1681.865284 +1682.334148 +1682.379137 +1682.427089 +1682.546303 +1682.583898 +1682.625557 +1682.698883 +1682.813136 +1682.978870 +1683.017065 +1683.055693 +1683.198583 +1683.528453 +1683.668413 +1683.723891 +1683.766481 +1683.855392 +1683.990457 +1684.476437 +1684.558255 +1684.598182 +1684.674872 +1684.704442 +1684.752261 +1684.796783 +1684.988425 +1685.079767 +1685.118961 +1685.366979 +1685.416297 +1685.526919 +1685.605207 +1685.646666 +1685.725554 +1685.966479 +1686.047864 +1686.207604 +1686.439139 +1686.610801 +1686.687025 +1686.733045 +1686.980697 +1687.060051 +1687.210567 +1687.297314 +1687.376201 +1687.542069 +1687.586824 +1687.713397 +1687.883327 +1687.917826 +1687.971106 +1687.984559 +1688.016927 +1688.041469 +1688.066610 +1688.125385 +1688.268175 +1688.294449 +1688.771871 +1688.815094 +1689.008401 +1689.170905 +1689.237305 +1689.334208 +1689.367575 +1689.429646 +1689.489453 +1689.550791 +1689.597544 +1689.652656 +1689.689020 +1689.745796 +1689.780228 +1689.819556 +1689.864477 +1689.906102 +1689.994947 +1690.034840 +1690.073035 +1690.118689 +1690.160814 +1690.198110 +1690.248626 +1690.280261 +1690.325283 +1690.367574 +1690.393781 +1690.413628 +1690.445895 +1690.474766 +1690.500441 +1690.527680 +1690.557250 +1690.642732 +1690.715825 +1690.760647 +1690.820354 +1690.866707 +1690.912295 +1690.981559 +1691.019787 +1691.054453 +1691.087386 +1691.124116 +1691.177296 +1691.215924 +1691.255518 +1691.300939 +1691.421052 +1691.444063 +1691.492681 +1691.575564 +1691.581958 +1691.963709 +1692.077029 +1692.361877 +1692.402137 +1692.546526 +1692.577861 +1692.674431 +1693.058180 +1693.188150 +1693.223914 +1693.277095 +1693.380325 +1693.476362 +1693.523748 +1693.578460 +1693.621417 +1693.672366 +1693.770700 +1693.818852 +1693.871333 +1693.916221 +1693.976927 +1694.019818 +1694.082688 +1694.133770 +1694.168902 +1694.209028 +1694.267270 +1694.293144 +1694.329741 +1694.389414 +1694.445492 +1694.497540 +1694.542628 +1694.580390 +1694.611026 +1694.647856 +1694.700769 +1694.736767 +1694.818718 +1694.881089 +1694.922514 +1694.979357 +1695.031871 +1695.093243 +1695.152018 +1695.184385 +1695.219184 +1695.316919 +1695.397139 +1695.443593 +1695.502733 +1695.549953 +1695.596240 +1695.656346 +1695.697505 +1695.742826 +1695.796339 +1695.852550 +1695.875094 +1695.944691 +1695.976359 +1696.011091 +1696.073395 +1696.130505 +1696.256579 +1696.315153 +1696.356978 +1696.415753 +1696.462539 +1696.511923 +1696.556878 +1696.598869 +1696.653148 +1696.700534 +1696.741227 +1696.793575 +1696.843491 +1696.893974 +1696.946655 +1696.994074 +1697.038896 +1697.081320 +1697.123777 +1697.166868 +1697.227307 +1697.262239 +1697.311156 +1697.351782 +1697.404363 +1697.452448 +1697.503531 +1697.544989 +1697.591243 +1697.638562 +1697.677656 +1697.715851 +1697.752881 +1697.805628 +1697.875725 +1697.928472 +1697.958575 +1697.987613 +1698.048985 +1698.100466 +1698.155511 +1698.200866 +1698.242857 +1698.295738 +1698.348019 +1698.389977 +1698.438228 +1698.488311 +1698.530003 +1698.567799 +1698.612387 +1698.662371 +1698.716883 +1698.770629 +1698.827638 +1698.876456 +1698.925973 +1698.992440 +1699.037295 +1699.098667 +1699.149416 +1699.247318 +1699.292540 +1699.342556 +1699.383182 +1699.418647 +1699.471494 +1699.489276 +1699.539026 +1699.570328 +1699.603096 +1699.637894 +1699.683182 +1699.721077 +1699.750448 +1699.815749 +1699.870894 +1699.921843 +1699.961304 +1699.989509 +1700.016415 +1700.294603 +1700.305626 +1700.400664 +1700.430101 +1700.495602 +1700.527870 +1700.576155 +1700.614283 +1700.646751 +1700.694303 +1700.734030 +1700.759904 +1700.794237 +1700.863501 +1700.898399 +1700.940157 +1701.053777 +1701.096967 +1701.141123 +1701.176254 +1701.220976 +1701.271659 +1701.314616 +1701.360203 +1701.403860 +1701.462001 +1701.516380 +1701.562634 +1701.617113 +1701.659737 +1701.687376 +1701.712184 +1701.747083 +1701.762401 +1701.800529 +1701.831765 +1701.866030 +1701.874156 +1701.939590 +1702.035028 +1702.123839 +1702.167828 +1702.229533 +1702.353043 +1702.437259 +1702.504058 +1702.779616 +1703.275952 +1703.419708 +1703.650078 +1703.898196 +1704.152075 +1704.231596 +1704.333427 +1704.504756 +1704.528199 +1704.563563 +1704.623137 +1705.183043 +1705.186340 +1705.190136 +1705.193666 +1705.409117 +1705.413379 +1705.419107 +1705.824102 +1705.828864 +1705.839486 +1706.427764 +1706.431827 +1706.436522 +1706.590135 +1706.594697 +1706.602189 +1706.734923 +1706.740984 +1706.776082 +1706.822569 +1706.862396 +1706.898526 +1706.931626 +1706.969588 +1707.010148 +1707.047577 +1707.097693 +1707.130594 +1707.178046 +1707.213910 +1707.253371 +1707.288902 +1707.326498 +1707.361996 +1707.398692 +1707.480777 +1707.522668 +1707.556701 +1707.594862 +1707.625965 +1707.658699 +1707.690966 +1707.725398 +1707.762361 +1707.799757 +1707.829694 +1707.855635 +1707.893763 +1707.927363 +1707.958432 +1707.995062 +1708.033024 +1708.067623 +1708.103786 +1708.136154 +1708.172251 +1708.205351 +1708.243546 +1708.278012 +1708.312078 +1708.349341 +1708.386337 +1708.421402 +1708.458032 +1708.490533 +1708.532324 +1708.601721 +1708.636287 +1708.674482 +1708.709114 +1708.741415 +1708.776446 +1708.811944 +1708.844711 +1708.880809 +1708.912177 +1708.945577 +1708.979943 +1709.011678 +1709.043779 +1709.078477 +1709.106583 +1709.150039 +1709.184238 +1709.256033 +1709.293629 +1709.329926 +1709.371551 +1709.398790 +1709.429459 +1709.455433 +1709.487435 +1709.527428 +1709.558064 +1709.591997 +1709.610145 +1709.635020 +1709.693928 +1709.746509 +1709.781940 +1709.829392 +1709.871650 +1709.915506 +1709.948506 +1709.999555 +1710.031024 +1710.076612 +1710.115306 +1710.155466 +1710.196625 +1710.235852 +1710.277444 +1710.321133 +1710.357664 +1710.395459 +1710.440614 +1710.476112 +1710.514440 +1710.551470 +1710.597856 +1710.628726 +1710.672149 +1710.719468 +1710.759295 +1710.806048 +1710.849371 +1710.877010 +1710.919768 +1711.005515 +1711.038915 +1711.082138 +1711.132788 +1711.178509 +1711.227826 +1711.267453 +1711.313407 +1711.351835 +1711.387932 +1711.422631 +1711.467020 +1711.517702 +1711.554366 +1711.592028 +1711.633120 +1711.722564 +1711.776910 +1711.824395 +1711.860459 +1711.906147 +1711.944875 +1711.984069 +1711.991595 +1712.031222 +1712.058894 +1712.106613 +1712.158095 +1712.196789 +1712.236649 +1712.300319 +1712.349736 +1712.413073 +1712.454997 +1712.503948 +1712.547372 +1712.588764 +1712.632953 +1712.680172 +1712.728057 +1712.775543 +1712.818700 +1712.848837 +1712.887964 +1712.914870 +1712.946772 +1712.993425 +1713.029522 +1713.064421 +1713.082503 +1713.104680 +1713.437014 +1713.446372 +1713.496022 +1713.529822 +1713.575243 +1713.613937 +1713.661390 +1713.693891 +1713.736748 +1713.781137 +1713.818666 +1713.861956 +1713.902182 +1713.941010 +1713.974876 +1714.020730 +1714.057393 +1714.100883 +1714.132318 +1714.170380 +1714.195822 +1714.234183 +1714.304047 +1714.334017 +1714.361889 +1714.393923 +1714.421196 +1714.434649 +1714.446571 +1714.526624 +1714.561622 +1714.607643 +1714.652864 +1714.690227 +1714.727290 +1714.762887 +1714.801449 +1714.838745 +1714.873676 +1714.916034 +1714.953263 +1714.993357 +1715.031618 +1715.069913 +1715.105411 +1715.143306 +1715.177306 +1715.209041 +1715.247036 +1715.286064 +1715.659223 +1715.819063 +1715.895021 +1715.934048 +1716.160721 +1716.236612 +1716.357658 +1716.395819 +1716.436912 +1716.469479 +1716.572642 +1716.605143 +1716.683665 +1716.761054 +1716.804044 +1716.919096 +1717.038776 +1717.280500 +1717.517763 +1717.689891 +1717.762451 +1718.049397 +1718.082897 +1718.299547 +1718.483530 +1718.753193 +1718.945201 +1718.982397 +1719.096083 +1719.167012 +1719.445100 +1719.519559 +1719.597947 +1719.785659 +1719.963781 +1720.003042 +1720.163348 +1720.198846 +1720.337341 +1720.773571 +1720.865312 +1721.032145 +1721.120057 +1721.202508 +1721.279864 +1721.321356 +1721.401142 +1721.443234 +1721.899111 +1721.937872 +1722.021721 +1722.068508 +1722.108934 +1722.158784 +1722.200742 +1722.248494 +1722.290452 +1722.342001 +1722.384325 +1722.433342 +1722.477032 +1722.516692 +1722.560815 +1722.607168 +1722.649293 +1722.699043 +1722.747628 +1722.783792 +1722.829013 +1722.875933 +1722.917158 +1722.958950 +1723.000075 +1723.035040 +1723.072603 +1723.114660 +1723.156352 +1723.188820 +1723.225083 +1723.313128 +1723.362379 +1723.412296 +1723.459049 +1723.508932 +1723.569638 +1723.609066 +1723.653155 +1723.697410 +1723.750224 +1723.798043 +1723.845595 +1723.881027 +1723.914893 +1723.958383 +1723.998209 +1724.037970 +1724.198575 +1724.336171 +1724.425981 +1724.468905 +1724.594945 +1724.772767 +1724.799774 +1724.872601 +1724.938901 +1725.061945 +1725.371268 +1725.567439 +1725.627312 +1725.676929 +1725.782890 +1726.265040 +1726.295010 +1726.355716 +1726.386918 +1726.437534 +1726.502569 +1726.572333 +1726.607764 +1726.662775 +1726.709562 +1726.761876 +1726.803901 +1726.839399 +1726.871467 +1726.904167 +1726.959145 +1726.984354 +1727.015789 +1727.050654 +1727.225912 +1727.235169 +1727.253617 +1727.420650 +1727.432472 +1727.474896 +1727.515289 +1727.572232 +1727.606664 +1727.662441 +1727.708329 +1727.778126 +1727.820616 +1727.872032 +1727.916287 +1727.962774 +1728.010127 +1728.054782 +1728.093976 +1728.144526 +1728.180456 +1728.224179 +1728.261175 +1728.303466 +1728.349654 +1728.388348 +1728.434702 +1728.476194 +1728.521348 +1728.565371 +1728.591079 +1728.621914 +1728.658111 +1728.665904 +1728.716686 +1728.743026 +1728.766869 +1728.776926 +1728.826010 +1728.910659 +1728.941827 +1728.971831 +1728.999370 +1729.057612 +1729.104664 +1729.161741 +1729.199536 +1729.241228 +1729.282253 +1729.327841 +1729.376592 +1729.422513 +1729.463405 +1729.512023 +1729.552150 +1729.592643 +1729.633901 +1729.681753 +1729.719216 +1729.778490 +1729.815786 +1729.860142 +1729.904231 +1729.952782 +1729.994041 +1730.037164 +1730.081453 +1730.125975 +1730.167234 +1730.205862 +1730.248786 +1730.271430 +1730.301600 +1730.337264 +1730.369165 +1730.408459 +1730.440494 +1730.466235 +1730.568865 +1730.611223 +1730.900067 +1730.927340 +1731.135032 +1731.323144 +1731.524043 +1731.658408 +1731.825374 +1732.132400 +1732.261771 +1732.377855 +1732.455377 +1732.489343 +1732.569529 +1732.691807 +1732.734897 +1732.808524 +1732.848284 +1732.886779 +1732.926838 +1732.960372 +1733.008390 +1733.040658 +1733.063835 +1733.107358 +1733.156775 +1733.183581 +1733.227571 +1733.272626 +1733.325007 +1733.373025 +1733.419146 +1733.466532 +1733.520611 +1733.558107 +1733.594404 +1733.643288 +1733.679518 +1733.721876 +1733.767364 +1733.807357 +1733.839192 +1733.921776 +1733.966698 +1734.007557 +1734.054443 +1734.098432 +1734.135595 +1734.179251 +1734.224273 +1734.266131 +1734.306624 +1734.325139 +1734.365665 +1734.403227 +1734.431765 +1734.562301 +1734.591872 +1734.646051 +1734.676720 +1734.739957 +1734.818711 +1734.838924 +1734.910220 +1734.942754 +1735.013350 +1735.046017 +1735.095701 +1735.155408 +1735.189407 +1735.237159 +1735.282214 +1735.337392 +1735.380116 +1735.413483 +1735.442121 +1735.485344 +1735.530898 +1735.568594 +1735.625137 +1735.670825 +1735.732230 +1735.784744 +1735.832630 +1735.877352 +1735.922573 +1735.961467 +1735.996666 +1736.031464 +1736.075453 +1736.110951 +1736.157271 +1736.199529 +1736.248913 +1736.293402 +1736.399695 +1736.433695 +1736.467528 +1736.553508 +1736.579216 +1736.678849 +1736.736025 +1736.798463 +1736.861200 +1736.954707 +1736.981713 +1737.022239 +1737.070624 +1737.098263 +1737.392302 +1737.523337 +1737.636757 +1737.850144 +1739.196962 +1739.550142 +1739.620272 +1739.676449 +1739.731094 +1740.042116 +1740.157834 +1740.175449 +1740.269422 +1740.476082 +1740.690733 +1740.852705 +1741.079578 +1741.247776 +1741.399291 +1741.476580 +1741.529527 +1741.684139 +1741.758465 +1741.850539 +1741.942813 +1741.995261 +1742.216539 +1742.383939 +1742.424698 +1742.547608 +1742.589166 +1742.622533 +1742.742313 +1742.765290 +1743.096126 +1743.348373 +1743.426295 +1743.662659 +1743.703351 +1743.738250 +1743.787800 +1743.828759 +1743.870784 +1743.910977 +1743.952768 +1743.993194 +1744.040880 +1744.081839 +1744.127926 +1744.167720 +1744.214340 +1744.262258 +1744.307380 +1744.345475 +1744.388665 +1744.433986 +1744.474513 +1744.506148 +1744.547539 +1744.584869 +1744.622398 +1744.662291 +1744.705148 +1744.752401 +1744.786900 +1744.808745 +1744.847106 +1744.886001 +1744.927992 +1744.968485 +1745.004615 +1745.041145 +1745.088498 +1745.130323 +1745.180806 +1745.218634 +1745.267952 +1745.301318 +1745.351834 +1745.393526 +1745.437549 +1745.477076 +1745.521631 +1745.560026 +1745.599853 +1745.637215 +1745.678241 +1745.718634 +1745.764555 +1745.798287 +1745.839646 +1745.875310 +1745.914638 +1745.952067 +1745.988664 +1746.026259 +1746.061857 +1746.094591 +1746.123662 +1746.151600 +1746.189163 +1746.220132 +1746.256029 +1746.287531 +1746.327325 +1746.362889 +1746.397188 +1746.433918 +1746.478873 +1746.503382 +1746.544740 +1746.578673 +1746.610175 +1746.651433 +1746.694157 +1746.725826 +1746.761357 +1746.796821 +1746.829389 +1746.863721 +1746.895489 +1746.960358 +1746.997687 +1747.034816 +1747.065486 +1747.103448 +1747.138912 +1747.184167 +1747.220098 +1747.261390 +1747.296088 +1747.335715 +1747.377507 +1747.411806 +1747.450167 +1747.488096 +1747.520230 +1747.567250 +1747.604879 +1747.644639 +1747.675542 +1747.710940 +1747.752664 +1747.796254 +1747.836481 +1747.873543 +1747.909241 +1747.950433 +1747.991825 +1748.029188 +1748.071345 +1748.098785 +1748.129720 +1748.171412 +1748.198485 +1748.227356 +1748.266983 +1748.359957 +1748.387229 +1748.424625 +1748.467083 +1748.511938 +1748.539743 +1748.572843 +1748.607842 +1748.630219 +1748.640576 +1748.644605 +1748.651098 +1748.653663 +1748.659257 +1748.669980 +1748.684398 +1748.690592 +1748.742274 +1748.752197 +1748.891791 +1748.934049 +1748.987295 +1749.038944 +1749.083499 +1749.131418 +1749.166016 +1749.198451 +1749.261154 +1750.459189 +1750.895918 +1751.228185 +1751.451162 +1751.545301 +1751.567912 +1751.593253 +1751.641039 +1751.662717 +1751.860652 +1751.906340 +1752.028185 +1752.050263 +1752.098681 +1752.126020 +1752.165381 +1752.188191 +1752.231748 +1752.321291 +1752.447032 +1752.472473 +1752.498048 +1752.527218 +1752.553459 +1752.577901 +1752.603742 +1752.628351 +1752.653292 +1752.677135 +1752.701577 +1752.727285 +1752.750395 +1752.803509 +1752.827951 +1752.852226 +1752.878866 +1752.905706 +1752.934211 +1752.964348 +1752.988890 +1753.017328 +1753.046632 +1753.074337 +1753.103109 +1753.130914 +1753.158087 +1753.185127 +1753.238673 +1753.266245 +1753.293052 +1753.320558 +1753.345666 +1753.370807 +1753.399612 +1753.424021 +1753.451393 +1753.478200 +1753.504573 +1753.528583 +1753.548263 +1753.571473 +1753.592652 +1753.616428 +1753.641370 +1753.667344 +1753.696082 +1753.727417 +1753.756754 +1753.786591 +1753.815163 +1753.842235 +1753.897180 +1753.923288 +1753.954856 +1753.982095 +1754.011333 +1754.039671 +1754.065479 +1754.109801 +1754.136841 +1754.148695 +1754.160317 +1754.202442 +1754.238639 +1754.253857 +1754.302874 +1754.375968 +1754.404273 +1754.429081 +1754.452924 +1754.494050 +1754.534343 +1754.563613 +1754.598945 +1754.632411 +1754.655355 +1754.690553 +1754.723920 +1754.754289 +1754.788921 +1754.826583 +1754.858352 +1754.892551 +1754.925151 +1754.956753 +1754.991019 +1755.019490 +1755.054056 +1755.079996 +1755.113296 +1755.145165 +1755.174136 +1755.205737 +1755.268208 +1755.302174 +1755.330945 +1755.361215 +1755.388121 +1755.423686 +1755.453856 +1755.485857 +1755.514095 +1755.540769 +1755.557652 +1755.598278 +1755.633143 +1755.653356 +1755.670539 +1755.693149 +1755.736672 +1755.771704 +1755.810732 +1755.834175 +1755.872903 +1755.908167 +1755.938903 +1755.975766 +1756.005970 +1756.039070 +1756.075000 +1756.105070 +1756.141534 +1756.178264 +1756.210132 +1756.246129 +1756.278630 +1756.308633 +1756.339003 +1756.371803 +1756.402439 +1756.433109 +1756.467274 +1756.529812 +1756.593182 +1756.657950 +1756.690318 +1756.719156 +1756.752722 +1756.783092 +1756.818723 +1756.846395 +1756.874866 +1756.898809 +1756.925549 +1756.945163 +1756.962479 +1756.975666 +1757.016425 +1757.052555 +1757.087920 +1757.114360 +1757.144830 +1757.195046 +1757.259681 +1757.299908 +1757.334806 +1757.371869 +1757.410863 +1757.445062 +1757.478995 +1757.542898 +1757.579894 +1757.611129 +1757.645562 +1757.684023 +1757.725648 +1757.754553 +1757.789384 +1757.827879 +1757.867506 +1757.900640 +1757.937936 +1757.974199 +1758.009797 +1758.046594 +1758.080826 +1758.117722 +1758.144096 +1758.183989 +1758.219421 +1758.257383 +1758.293014 +1758.327579 +1758.365075 +1758.397775 +1758.433273 +1758.468804 +1758.505334 +1758.543796 +1758.582724 +1758.617122 +1758.656683 +1758.693946 +1758.730076 +1758.760346 +1758.799074 +1758.841165 +1758.871967 +1758.907798 +1758.946193 +1758.980792 +1759.017089 +1759.049057 +1759.086952 +1759.130542 +1759.165540 +1759.199906 +1759.228177 +1759.270235 +1759.304301 +1759.342363 +1759.378127 +1759.410895 +1759.442863 +1759.477661 +1759.517987 +1759.554617 +1759.593445 +1759.624947 +1759.663275 +1759.700405 +1759.730075 +1759.765639 +1759.799572 +1759.833505 +1759.867604 +1759.893178 +1759.939166 +1759.976262 +1760.013225 +1760.049022 +1760.080125 +1760.120318 +1760.156448 +1760.189482 +1760.224480 +1760.259312 +1760.292912 +1760.327477 +1760.363008 +1760.398473 +1760.435835 +1760.467104 +1760.505732 +1760.537800 +1760.576827 +1760.616521 +1760.645026 +1760.693910 +1760.730740 +1760.767903 +1760.806431 +1760.841296 +1760.877193 +1760.916188 +1760.953184 +1760.982688 +1761.027576 +1761.063640 +1761.099271 +1761.139564 +1761.173031 +1761.205831 +1761.243061 +1761.281356 +1761.322947 +1761.363840 +1761.396673 +1761.432504 +1761.468235 +1761.500736 +1761.548322 +1761.583120 +1761.622148 +1761.666670 +1761.706896 +1761.741961 +1761.784685 +1761.827342 +1761.859410 +1761.896773 +1761.944492 +1761.979956 +1762.023779 +1762.066003 +1762.097738 +1762.150019 +1762.185550 +1762.227975 +1762.271498 +1762.301734 +1762.340462 +1762.375494 +1762.415054 +1762.461075 +1762.496040 +1762.555946 +1762.582553 +1762.630738 +1762.674061 +1762.708727 +1762.748254 +1762.786349 +1762.822613 +1762.884884 +1762.929073 +1762.968500 +1763.005496 +1763.060974 +1763.168800 +1763.199968 +1763.250851 +1763.281687 +1763.293541 +1763.379122 +1763.393408 +1763.429905 +1763.490145 +1763.528673 +1763.552715 +1763.585283 +1763.635133 +1763.726741 +1763.771063 +1763.824144 +1763.863471 +1763.917217 +1763.967500 +1764.007060 +1764.057943 +1764.097870 +1764.142625 +1764.184616 +1764.226974 +1764.267100 +1764.306694 +1764.353147 +1764.387580 +1764.427639 +1764.472395 +1764.509025 +1764.572628 +1764.609624 +1764.681519 +1764.722211 +1764.767266 +1764.822444 +1764.866101 +1764.915984 +1764.959773 +1765.009723 +1765.054878 +1765.100899 +1765.167599 +1765.205361 +1765.268531 +1765.308857 +1765.359407 +1765.458075 +1765.496869 +1765.761571 +1766.067698 +1766.116982 +1766.479619 +1766.530135 +1766.568263 +1766.606125 +1766.711686 +1766.805692 +1766.886145 +1767.026804 +1767.202062 +1767.329901 +1767.684579 +1767.813683 +1767.923906 +1768.160836 +1768.245251 +1768.375987 +1768.412784 +1768.529966 +1768.560536 +1768.650612 +1768.743086 +1768.872723 +1769.086110 +1769.188307 +1769.273322 +1769.361168 +1769.643185 +1769.725237 +1769.769326 +1769.852709 +1769.903924 +1769.937124 +1769.989072 +1770.034793 +1770.075752 +1770.112449 +1770.140521 +1770.181580 +1770.216079 +1770.232229 +1770.294034 +1770.339022 +1770.381213 +1770.445416 +1770.489039 +1770.532062 +1770.593234 +1770.655605 +1770.701126 +1770.753807 +1770.798129 +1770.843850 +1770.882944 +1770.927966 +1770.970224 +1771.004922 +1771.086807 +1771.119041 +1771.164463 +1771.210616 +1771.252608 +1771.308985 +1771.350010 +1771.418608 +1771.473287 +1771.621705 +1771.660466 +1771.728864 +1771.797296 +1771.857702 +1771.937256 +1772.063263 +1772.269556 +1774.523567 +1775.217406 +1775.225331 +1775.643179 +1775.868088 +1775.877778 +1776.700721 +1776.706115 +1776.884337 +1776.954833 +1776.989731 +1777.074014 +1777.106581 +1777.222998 +1777.262625 +1777.294626 +1777.337184 +1777.371316 +1777.492761 +1777.527027 +1777.598722 +1777.638282 +1777.711109 +1777.786467 +1777.901985 +1777.938582 +1778.271748 +1778.404948 +1778.449703 +1778.604881 +1778.680972 +1778.907911 +1778.950602 +1779.431221 +1779.659392 +1779.746772 +1780.098653 +1780.143907 +1780.272712 +1780.322695 +1780.361556 +1780.633118 +1780.781269 +1780.826025 +1780.913437 +1781.113803 +1781.260290 +1781.308941 +1781.752098 +1781.787895 +1781.860123 +1782.020329 +1782.300249 +1782.374841 +1782.623792 +1783.019496 +1783.062319 +1783.109306 +1783.148367 +1783.194354 +1783.243438 +1783.303145 +1783.346835 +1783.405409 +1783.456092 +1783.512302 +1783.560521 +1783.605376 +1783.647101 +1783.704543 +1783.742638 +1783.785529 +1783.828719 +1783.871143 +1783.913900 +1783.957823 +1783.997683 +1784.041373 +1784.074040 +1784.118163 +1784.160420 +1784.206075 +1784.244103 +1784.289125 +1784.329684 +1784.364083 +1784.402345 +1784.442971 +1784.480433 +1784.517962 +1784.581898 +1784.628252 +1784.681066 +1784.727952 +1784.772441 +1784.819128 +1784.868911 +1784.909970 +1784.952328 +1784.994419 +1785.030383 +1785.066014 +1785.092720 +1785.109537 +1785.136510 +1785.154026 +1785.205308 +1785.236843 +1785.263749 +1785.283230 +1785.370842 +1785.401311 +1785.466979 +1785.540905 +1785.580066 +1795.289347 +1795.291045 +1795.292877 +1795.295174 +1795.299570 +1795.466436 +1795.468268 +1795.472663 +1795.477958 +1795.500069 +1795.502367 +1795.505431 +1795.509327 +1795.561874 +1795.563639 +1795.565504 +1795.568101 +1795.571964 +1795.689247 +1795.690945 +1795.693409 +1795.695474 +1795.697905 +1795.702000 +1795.750319 +1795.754048 +1795.759942 +1795.764072 +1795.808427 +1795.811890 +1795.814421 +1795.817285 +1795.821448 +1796.199902 +1796.447621 +1796.763438 +1796.770564 +1796.779688 +1796.893308 +1796.902166 +1796.960074 +1797.034567 +1797.202565 +1797.360307 +1797.566467 +1797.685315 +1797.862205 +1797.958142 +1798.033067 +1798.068165 +1798.174226 +1798.199467 +1798.243756 +1798.280320 +1798.314485 +1798.345987 +1798.376856 +1798.406793 +1798.437429 +1798.476656 +1798.516017 +1798.554012 +1798.576157 +1798.623776 +1798.655777 +1798.685547 +1798.735497 +1798.768997 +1798.804828 +1798.842990 +1798.856143 +1798.896436 +1798.927472 +1798.958707 +1798.983183 +1799.021911 +1799.050549 +1799.069996 +1799.114085 +1799.146919 +1799.205993 +1799.261071 +1799.302663 +1799.364401 +1799.413252 +1799.462936 +1799.492040 +1799.524774 +1799.575523 +1799.622809 +1799.657574 +1799.725406 +1799.786379 +1799.852712 +1799.901630 +1799.959405 +1800.000364 +1800.066298 +1800.099565 +1800.149648 +1800.196268 +1800.235696 +1800.280251 +1800.329202 +1800.423175 +1800.469495 +1800.512918 +1800.537926 +1800.608456 +1800.620177 +1800.638692 +1800.678486 +1800.824373 +1800.868096 +1800.922808 +1801.002328 +1801.055009 +1801.110986 +1801.178785 +1801.232897 +1801.300430 +1801.357373 +1801.419377 +1801.471192 +1801.525238 +1801.566730 +1801.600496 +1801.611085 +1801.618112 +1801.626736 +1801.691305 +1801.697466 +1801.734928 +1801.760836 +1801.786510 +1801.979916 +1802.056573 +1802.151678 +1802.199996 +1802.272956 +1802.328068 +1802.385377 +1802.429666 +1802.488141 +1802.537858 +1802.580715 +1802.616146 +1802.699596 +1802.743219 +1802.781014 +1802.803492 +1802.827668 +1802.884544 +1802.951244 +1803.014814 +1803.075053 +1803.136792 +1803.201160 +1803.240954 +1803.296165 +1803.337890 +1803.391836 +1803.427367 +1803.483211 +1803.533494 +1803.606355 +1803.653075 +1803.707887 +1803.753940 +1803.796864 +1803.850577 +1803.908053 +1803.962565 +1804.016245 +1804.058902 +1804.116677 +1804.177050 +1804.209085 +1804.245082 +1804.279015 +1804.301259 +1804.334626 +1804.352108 +1804.365362 +1805.115644 +1805.117842 +1805.119840 +1805.122804 +1805.132327 +1805.219473 +1805.222271 +1805.225734 +1805.233027 +1805.389204 +1805.394931 +1805.397129 +1805.399293 +1805.402224 +1805.408185 +1805.665760 +1805.667791 +1805.669989 +1805.672686 +1805.678680 +1805.868391 +1805.870422 +1805.872720 +1805.875783 +1805.882909 +1806.008117 +1806.012513 +1806.015477 +1806.039952 +1806.044481 +1806.051807 +1806.087638 +1806.109283 +1806.120938 +1806.157768 +1806.166792 +1806.201957 +1806.215776 +1806.248543 +1806.270455 +1806.302656 +1806.317741 +1806.347611 +1806.367358 +1806.396961 +1806.416875 +1806.449476 +1806.470854 +1806.494764 +1806.524933 +1806.547611 +1806.572086 +1806.599858 +1806.624867 +1806.655403 +1806.683375 +1806.706052 +1806.753704 +1806.774051 +1806.796195 +1806.825599 +1806.855835 +1806.876981 +1806.892432 +1806.925466 +1806.954470 +1807.006851 +1807.032192 +1807.061463 +1807.085739 +1807.112345 +1807.247910 +1807.311712 +1807.375282 +1807.409881 +1807.450673 +1807.528329 +1807.638985 +1807.754303 +1807.875415 +1807.940217 +1807.989268 +1808.057866 +1808.094562 +1808.158065 +1808.468721 +1808.562860 +1808.764591 +1809.056066 +1809.125164 +1809.232590 +1809.375047 +1809.415240 +1809.482040 +1809.540615 +1809.588234 +1809.651237 +1809.703318 +1809.746342 +1809.797857 +1809.823831 +1809.850871 +1809.981473 +1810.043045 +1810.122199 +1810.201786 +1810.335919 +1810.376511 +1810.392562 +1810.428226 +1810.464223 +1810.524297 +1810.540447 +1810.544310 +1810.676344 +1810.700753 +1811.379507 +1811.697456 +1811.709211 +1811.880306 +1811.882704 +1811.886000 +1811.940979 +1812.359526 +1812.583835 +1812.780372 +1812.924461 +1812.928324 +1813.045873 +1813.064354 +1813.108477 +1813.232586 +1813.357161 +1813.384800 +1813.416402 +1813.539012 +1813.545506 +1813.581237 +1813.612838 +1813.644240 +1813.683368 +1813.723195 +1813.758126 +1813.806411 +1813.851966 +1813.889561 +1813.933218 +1813.969714 +1814.005379 +1814.039711 +1814.076940 +1814.113837 +1814.141376 +1814.188262 +1814.222961 +1814.259025 +1814.301049 +1814.341609 +1814.384266 +1814.420563 +1814.462221 +1814.496487 +1814.534516 +1814.576907 +1814.597120 +1814.671545 +1814.704645 +1814.739644 +1814.780636 +1814.822128 +1814.860822 +1814.906210 +1814.945071 +1814.995488 +1815.035514 +1815.080303 +1815.121628 +1815.159923 +1815.199051 +1815.236113 +1815.275874 +1815.326057 +1815.364518 +1815.400382 +1815.428987 +1815.476839 +1815.519064 +1815.576739 +1815.619863 +1815.672776 +1815.721927 +1815.765817 +1815.820062 +1815.853562 +1815.897685 +1815.944737 +1815.989792 +1816.032083 +1816.074041 +1816.109905 +1816.161887 +1816.204011 +1816.246968 +1816.287261 +1816.332682 +1816.369346 +1816.415999 +1816.451264 +1816.492522 +1816.531051 +1816.558223 +1816.577304 +1816.649332 +1816.681200 +1816.711170 +1816.768546 +1816.825256 +1816.874374 +1816.928619 +1816.968879 +1817.023558 +1817.065416 +1817.119495 +1817.164017 +1817.220960 +1817.263118 +1817.307074 +1817.351496 +1817.402944 +1817.448832 +1817.504709 +1817.547899 +1817.598282 +1817.644902 +1817.695984 +1817.736577 +1817.779068 +1817.825621 +1817.868745 +1817.929850 +1817.968778 +1818.021658 +1818.070043 +1818.116097 +1818.160353 +1818.207273 +1818.256856 +1818.293719 +1818.334246 +1818.382364 +1818.424788 +1818.480100 +1818.525687 +1818.576070 +1818.616763 +1818.654192 +1818.683030 +1818.734478 +1818.768844 +1818.820326 +1818.862550 +1818.909536 +1818.967711 +1819.016363 +1819.069543 +1819.129250 +1819.187924 +1819.227085 +1819.277035 +1819.323722 +1819.381963 +1819.427851 +1819.485293 +1819.546099 +1819.593585 +1819.651427 +1819.700944 +1819.762050 +1819.807304 +1819.862149 +1819.908570 +1819.965846 +1820.029249 +1820.079698 +1820.126984 +1820.182529 +1820.234543 +1820.269741 +1820.377300 +1820.428050 +1820.478999 +1820.528582 +1820.582295 +1820.636075 +1820.708669 +1820.768376 +1820.831080 +1820.887989 +1820.949994 +1821.002475 +1821.063414 +1821.123287 +1821.164146 +1821.246331 +1821.302807 +1821.371172 +1821.417692 +1821.477766 +1821.560916 +1821.580563 +1821.598012 +1821.658418 +1821.689454 +1821.693616 +1821.721322 +1821.768441 +1821.770239 +1821.793150 +1821.832177 +1821.835241 +1821.840902 +1821.886523 +1821.890253 +1821.903906 +1821.999910 +1822.004239 +1822.018724 +1822.130978 +1822.136839 +1822.146563 +1823.432642 +1823.434840 +1823.440468 +1834.000064 +1834.003361 +1834.006924 +1834.012485 +1834.200064 +1834.257307 +1834.259404 +1834.263201 +1846.163821 +1846.165853 +1846.171880 +1846.175210 +1846.277141 +1846.278940 +1846.281071 +1846.283435 +1846.288863 +1846.433418 +1846.435083 +1846.438180 +1846.440178 +1846.442476 +1846.446039 +1846.482736 +1846.486665 +1846.489296 +1846.493392 +1846.543508 +1846.545872 +1846.549735 +1846.608443 +1846.651234 +1846.652932 +1846.662622 +1846.712772 +1846.766418 +1846.773478 +1846.777441 +1846.783534 +1847.513903 +1847.516434 +1847.519131 +1847.525692 +1847.750999 +1847.753464 +1847.755828 +1847.760357 +1847.915335 +1847.918265 +1847.921395 +1847.927523 +1848.084099 +1848.087030 +1848.090460 +1848.096687 +1848.217099 +1848.220862 +1848.226523 +1848.311039 +1848.317166 +1848.340409 +1848.377139 +1848.402647 +1848.440509 +1848.459091 +1848.577639 +1848.675707 +1848.733582 +1848.778438 +1848.962353 +1848.994155 +1849.049966 +1849.137911 +1849.172044 +1849.218730 +1849.296885 +1849.437345 +1849.748467 +1849.803112 +1849.830751 +1850.082898 +1850.139076 +1850.200847 +1850.306641 +1850.462352 +1850.505675 +1850.549365 +1850.667014 +1850.707207 +1850.788059 +1850.825488 +1850.944469 +1851.255391 +1851.271708 +1851.416131 +1851.551428 +1851.633380 +1851.796916 +1852.011368 +1852.092220 +1852.128817 +1852.240505 +1852.391920 +1852.498547 +1852.568510 +1852.824021 +1852.860485 +1852.888890 +1852.928716 +1853.071074 +1853.107238 +1853.151493 +1853.206838 +1853.253258 +1853.295083 +1853.343168 +1853.370940 +1853.420291 +1853.502609 +1853.539205 +1853.593884 +1853.642935 +1853.687657 +1853.743468 +1853.799412 +1853.842335 +1853.895948 +1853.941736 +1853.995981 +1854.030380 +1854.074869 +1854.131313 +1854.183427 +1854.236607 +1854.277766 +1854.329281 +1854.372405 +1854.414263 +1854.451292 +1854.491386 +1854.544432 +1854.594283 +1854.630247 +1854.684459 +1854.729847 +1854.771672 +1854.818691 +1854.859450 +1854.905271 +1854.952857 +1854.993217 +1855.166876 +1855.281961 +1855.347229 +1855.382993 +1855.646463 +1856.090718 +1856.216159 +1856.298010 +1856.346795 +1856.614760 +1856.887853 +1856.999708 +1857.095512 +1857.239002 +1857.282891 +1857.324383 +1857.335705 +1857.385688 +1857.432541 +1857.516657 +1857.566274 +1857.639301 +1857.708032 +1857.757250 +1857.808399 +1857.882558 +1857.895411 +1857.972368 +1858.005501 +1858.069104 +1858.127146 +1858.183989 +1858.225315 +1858.279294 +1858.324882 +1858.367439 +1858.412527 +1858.454752 +1858.499140 +1858.531475 +1858.572967 +1858.609197 +1858.656083 +1858.695144 +1858.736769 +1858.780026 +1858.820918 +1858.947025 +1858.985187 +1859.023582 +1859.067072 +1859.109263 +1859.148624 +1859.193579 +1859.237002 +1859.278893 +1859.325680 +1859.373265 +1859.408830 +1859.448823 +1859.498374 +1859.541930 +1859.589616 +1859.614591 +1859.735569 +1859.763109 +1859.817820 +1859.881890 +1859.913292 +1859.964407 +1860.013058 +1860.052186 +1860.087151 +1860.153151 +1860.194077 +1860.245392 +1860.293444 +1860.330141 +1860.372998 +1860.415589 +1860.465106 +1860.505132 +1860.548189 +1860.593877 +1860.638133 +1860.678825 +1860.723847 +1860.765039 +1860.806531 +1860.866737 +1860.908062 +1860.957480 +1861.001869 +1861.053450 +1861.117786 +1861.164839 +1861.218918 +1861.279857 +1861.318485 +1861.364439 +1861.397506 +1861.416287 +1861.457446 +1861.534935 +1861.582521 +1861.636467 +1861.681954 +1861.726044 +1861.768368 +1861.852084 +1861.895641 +1861.946090 +1861.992444 +1862.029673 +1862.077558 +1862.118251 +1862.167235 +1862.207961 +1862.252883 +1862.289779 +1862.332204 +1862.367202 +1862.405464 +1862.444358 +1862.495540 +1862.535833 +1862.580488 +1862.621048 +1862.679256 +1862.722113 +1862.787581 +1862.835267 +1862.880921 +1862.931370 +1862.976026 +1863.026575 +1863.077058 +1863.107194 +1863.156978 +1863.194807 +1863.227774 +1863.272662 +1863.312622 +1863.351850 +1863.387947 +1863.423178 +1863.466934 +1863.502066 +1863.544956 +1863.573894 +1863.598536 +1863.629472 +1863.668399 +1863.703498 +1863.802831 +1863.949418 +1863.982385 +1864.107826 +1864.175458 +1864.273893 +1864.307693 +1864.340427 +1864.372261 +1864.582751 +1864.680686 +1864.702597 +1864.923543 +1864.951249 +1865.034199 +1865.094838 +1865.155111 +1865.184715 +1865.282284 +1865.310689 +1865.469330 +1865.526373 +1865.554312 +1865.619147 +1865.680918 +1865.743489 +1865.931134 +1865.963202 +1865.991840 +1866.024707 +1866.060605 +1866.087644 +1866.120079 +1866.155210 +1866.188876 +1866.216948 +1866.251913 +1866.287278 +1866.322742 +1866.351014 +1866.387211 +1866.422243 +1866.456042 +1866.488976 +1866.537261 +1866.575456 +1866.606592 +1866.641557 +1866.678087 +1866.712685 +1866.756708 +1866.785046 +1866.827371 +1866.867031 +1866.897634 +1866.928603 +1866.943887 +1866.971826 +1867.002062 +1867.064999 +1867.095436 +1867.166298 +1867.208922 +1867.267030 +1867.300530 +1867.351279 +1867.390307 +1867.430667 +1867.472092 +1867.510220 +1867.552911 +1867.591106 +1867.641855 +1867.678885 +1867.716181 +1867.789507 +1867.814283 +1867.845218 +1867.860337 +1867.935228 +1867.974556 +1868.007090 +1868.058505 +1868.128934 +1868.163067 +1868.189873 +1868.214682 +1868.245285 +1868.271125 +1868.320509 +1868.351745 +1868.396533 +1868.431265 +1868.469960 +1868.535294 +1868.566396 +1868.588041 +1868.636726 +1868.661967 +1868.691671 +1868.763233 +1868.797199 +1868.830299 +1868.872124 +1868.904192 +1868.939823 +1868.974055 +1868.997465 +1869.031864 +1869.063266 +1869.096499 +1869.122074 +1869.146283 +1869.173489 +1869.196299 +1869.223272 +1869.248181 +1869.276719 +1869.335427 +1869.368360 +1869.402926 +1869.435626 +1869.463931 +1869.493069 +1869.525869 +1869.558936 +1869.590072 +1869.621840 +1869.657937 +1869.687974 +1869.717577 +1869.742552 +1869.772389 +1869.792602 +1869.825070 +1869.848113 +1869.877584 +1869.905423 +1869.933728 +1869.963431 +1869.985210 +1870.013248 +1870.044350 +1870.073954 +1870.101660 +1870.132362 +1870.163631 +1870.187773 +1870.212948 +1870.241486 +1870.269825 +1870.302159 +1870.333861 +1870.481812 +1870.646647 +1870.673754 +1870.818509 +1870.986341 +1871.037922 +1871.092335 +1871.154439 +1871.181146 +1871.372821 +1871.533260 +1871.615411 +1871.641585 +1871.670756 +1871.693333 +1871.736723 +1871.822903 +1871.846946 +1871.980046 +1872.062097 +1872.086073 +1872.184009 +1872.237522 +1872.307851 +1872.333526 +1872.354671 +1872.453106 +1872.479380 +1872.503689 +1872.530062 +1872.555603 +1872.580978 +1872.628064 +1872.651740 +1872.678613 +1872.702256 +1872.725300 +1872.751041 +1872.778580 +1872.798460 +1872.853572 +1872.879446 +1872.901990 +1872.923502 +1872.949409 +1872.972886 +1872.995729 +1873.019672 +1873.044048 +1873.071920 +1873.097860 +1873.125999 +1873.144947 +1873.166026 +1873.190501 +1873.209216 +1873.233991 +1873.257367 +1873.277814 +1873.298193 +1873.325233 +1873.348343 +1873.374151 +1873.395796 +1873.422169 +1873.447011 +1873.471986 +1873.495995 +1873.523135 +1873.547977 +1873.572885 +1873.593331 +1873.617840 +1873.641683 +1873.664893 +1873.686671 +1873.709914 +1873.736488 +1873.755669 +1873.782775 +1873.807517 +1873.832192 +1873.859798 +1873.880777 +1873.903421 +1873.927430 +1873.951839 +1873.972385 +1873.996694 +1874.024833 +1874.044213 +1874.065858 +1874.090533 +1874.117906 +1874.140650 +1874.164959 +1874.191199 +1874.214742 +1874.240217 +1874.264726 +1874.289001 +1874.310946 +1874.335921 +1874.357433 +1874.382708 +1874.405618 +1874.429561 +1874.450939 +1874.493031 +1874.517639 +1874.540916 +1874.564592 +1874.592564 +1874.617506 +1874.733923 +1874.854435 +1874.926630 +1874.995361 +1875.020769 +1875.042214 +1875.093263 +1875.115741 +1875.135055 +1875.200156 +1875.268321 +1875.286503 +1875.357898 +1875.406183 +1875.453602 +1875.524398 +1875.549473 +1875.573249 +1875.862493 +1875.934821 +1875.983106 +1876.000988 +1876.044444 +1876.216472 +1876.309645 +1876.337151 +1876.386502 +1876.463791 +1876.489832 +1876.522599 +1876.750604 +1876.778443 +1876.828260 +1876.855333 +1876.886368 +1876.918070 +1876.955233 +1876.977743 +1877.001153 +1877.105915 +1877.136484 +1877.164623 +1877.192062 +1877.227327 +1877.258196 +1877.285735 +1877.311809 +1877.347040 +1877.370883 +1877.399022 +1877.435752 +1877.455998 +1877.494459 +1877.527893 +1877.558695 +1877.589498 +1877.609344 +1877.649171 +1877.663091 +1877.710377 +1877.756764 +1877.805481 +1877.833420 +1877.873813 +1877.903583 +1877.928691 +1877.947806 +1877.973880 +1878.013973 +1878.028891 +1878.057696 +1878.078941 +1878.115604 +1878.146473 +1878.178042 +1878.214272 +1878.246507 +1878.293926 +1878.323962 +1878.357529 +1878.394392 +1878.418168 +1878.450835 +1878.475244 +1878.513206 +1878.542544 +1878.578941 +1878.608178 +1878.665620 +1878.706346 +1878.746007 +1878.767985 +1878.795724 +1878.837682 +1878.866453 +1878.903682 +1878.930189 +1878.974112 +1879.008011 +1879.147904 +1879.313239 +1879.587165 +1879.621863 +1879.721763 +1879.757261 +1879.791860 +1879.879605 +1879.955130 +1880.087630 +1880.220564 +1880.331686 +1880.403514 +1880.440344 +1880.499185 +1880.567117 +1880.629321 +1880.805778 +1880.932518 +1881.017533 +1881.245771 +1881.351698 +1881.493823 +1881.605411 +1881.881168 +1882.104178 +1882.246836 +1882.486396 +1882.631551 +1882.739376 +1882.952329 +1883.070445 +1883.098683 +1883.127754 +1883.243605 +1883.270877 +1883.324290 +1883.355459 +1883.382366 +1883.408406 +1883.436312 +1883.467547 +1883.501247 +1883.531383 +1883.559721 +1883.591257 +1883.617663 +1883.645103 +1883.695585 +1883.723191 +1883.752828 +1883.778536 +1883.808373 +1883.843937 +1883.872442 +1883.932681 +1883.961319 +1883.990857 +1884.018362 +1884.082132 +1884.113301 +1884.139375 +1884.175305 +1884.205175 +1884.232115 +1884.259521 +1884.286794 +1884.319061 +1884.347167 +1884.375105 +1884.400780 +1884.430383 +1884.464116 +1884.499081 +1884.522624 +1884.554392 +1884.589258 +1884.621159 +1884.648898 +1884.689058 +1884.724655 +1884.749630 +1884.784828 +1884.821392 +1884.858688 +1884.893686 +1884.921225 +1884.955691 +1884.987925 +1885.029983 +1885.061352 +1885.096050 +1885.127152 +1885.158654 +1885.190622 +1885.222390 +1885.253892 +1885.287658 +1885.317162 +1885.345600 +1885.380299 +1885.413333 +1885.439573 +1885.471574 +1885.496416 +1885.528717 +1885.607372 +1885.634178 +1885.847998 +1885.929349 +1886.175869 +1886.208570 +1886.234910 +1886.262516 +1886.287458 +1886.544267 +1886.627817 +1886.711500 +1886.742336 +1886.802775 +1886.886058 +1886.921323 +1887.153557 +1887.187090 +1887.280697 +1887.331446 +1887.394749 +1887.552058 +1887.704839 +1887.738072 +1887.771106 +1887.816261 +1887.847263 +1887.883826 +1887.924752 +1887.958552 +1888.013530 +1888.059351 +1888.081895 +1888.136307 +1888.181262 +1888.228381 +1888.292884 +1888.326483 +1888.394315 +1888.455820 +1888.487256 +1888.521521 +1888.598011 +1888.645164 +1888.686823 +1888.735141 +1888.791351 +1888.839903 +1888.872736 +1888.918624 +1888.949992 +1888.976599 +1889.008401 +1889.061348 +1889.105104 +1889.160349 +1889.201141 +1889.238204 +1889.278464 +1889.316193 +1889.353688 +1889.384824 +1889.423419 +1889.459216 +1889.508034 +1889.536106 +1889.564977 +1889.605103 +1889.641700 +1889.678963 +1889.704870 +1889.734540 +1889.772003 +1889.806402 +1889.849159 +1889.888686 +1889.921853 +1889.948992 +1889.976765 +1890.007900 +1890.049991 +1890.092482 +1890.132709 +1890.171670 +1890.206435 +1890.235772 +1890.267673 +1890.289219 +1890.318822 +1890.360447 +1890.400341 +1890.443864 +1890.474866 +1890.501939 +1890.536871 +1890.568705 +1890.602338 +1890.642165 +1890.679628 +1890.716957 +1890.754586 +1890.792148 +1890.828479 +1890.865009 +1890.893214 +1890.934806 +1890.996178 +1891.062478 +1891.107866 +1891.152355 +1891.222551 +1891.258648 +1891.296777 +1891.337769 +1891.383257 +1891.429877 +1891.467472 +1891.492281 +1891.531975 +1891.573600 +1891.615757 +1891.662411 +1891.699274 +1891.756650 +1891.812694 +1891.858448 +1891.903003 +1891.955717 +1892.000506 +1892.052320 +1892.087851 +1892.146792 +1892.207598 +1892.251821 +1892.293779 +1892.350755 +1892.401271 +1892.450222 +1892.481990 +1892.533072 +1892.593745 +1892.645027 +1892.703469 +1892.753452 +1892.790315 +1892.817155 +1892.853985 +1892.879193 +1892.912593 +1892.961577 +1892.991181 +1893.034670 +1893.077627 +1893.114091 +1893.150488 +1893.191580 +1893.229009 +1893.256482 +1893.289515 +1893.322116 +1893.365140 +1893.400504 +1893.469735 +1893.510760 +1893.539465 +1893.577327 +1893.607297 +1893.640431 +1893.669901 +1893.704766 +1893.778459 +1893.811959 +1893.843794 +1893.871066 +1893.909128 +1893.943860 +1893.977593 +1894.011093 +1894.044626 +1894.071233 +1894.106231 +1894.138632 +1894.183787 +1894.226944 +1894.272198 +1894.323414 +1894.358245 +1894.394975 +1894.442395 +1894.491945 +1894.541762 +1894.583520 +1894.628808 +1894.662508 +1894.698838 +1894.737499 +1894.774229 +1894.830939 +1894.875128 +1894.904832 +1894.938764 +1895.024812 +1895.118751 +1895.167269 +1895.196406 +1895.246623 +1895.298338 +1895.351818 +1895.391078 +1895.435634 +1895.473396 +1895.516153 +1895.572497 +1895.631171 +1895.674228 +1895.707628 +1895.739862 +1895.780688 +1895.827541 +1895.875327 +1895.917418 +1895.955713 +1895.985683 +1896.025410 +1896.065370 +1896.100535 +1896.143059 +1896.183485 +1896.206529 +1896.243458 +1896.289179 +1896.333934 +1896.378090 +1896.422413 +1896.462439 +1896.496006 +1896.531004 +1896.561074 +1896.605329 +1896.651150 +1896.695905 +1896.743991 +1896.783018 +1896.819082 +1896.865003 +1896.908026 +1896.949585 +1896.988879 +1897.027474 +1897.069498 +1897.110157 +1897.146654 +1897.182851 +1897.218049 +1897.250617 +1897.292675 +1897.343824 +1897.403630 +1897.444057 +1897.489977 +1897.528772 +1897.557743 +1897.581885 +1897.616817 +1897.658542 +1897.708359 +1897.758109 +1897.802764 +1897.839228 +1897.873860 +1897.903796 +1897.936097 +1897.972594 +1898.010723 +1898.051016 +1898.094339 +1898.143723 +1898.179420 +1898.220679 +1898.266500 +1898.301365 +1898.335364 +1898.369197 +1898.407292 +1898.448185 +1898.489976 +1898.531601 +1898.570729 +1898.606560 +1898.683283 +1898.714452 +1898.937795 +1899.008257 +1899.401064 +1899.478487 +1899.518613 +1899.799565 +1899.935096 +1900.087510 +1900.183548 +1900.391240 +1900.587144 +1900.624706 +1900.661469 +1900.785578 +1900.832898 +1900.875588 +1900.928369 +1900.992971 +1901.113417 +1901.152777 +1901.187376 +1901.271192 +1901.298964 +1901.352777 +1901.387476 +1901.425738 +1901.480250 +1901.519377 +1901.561668 +1901.591372 +1901.627669 +1901.670925 +1901.707888 +1901.751212 +1901.780349 +1901.811685 +1901.830899 +1901.857505 +1901.934295 +1901.967495 +1901.998697 +1902.040722 +1902.078850 +1902.110419 +1902.146982 +1902.178917 +1902.215713 +1902.251045 +1902.285643 +1902.314048 +1902.339456 +1902.375320 +1902.401894 +1902.443186 +1902.474355 +1902.504291 +1902.541854 +1902.575254 +1902.609220 +1902.641854 +1902.673921 +1902.710218 +1902.742986 +1902.777851 +1902.810518 +1902.844417 +1902.876918 +1902.906988 +1902.940987 +1902.979449 +1903.019908 +1903.057271 +1903.081647 +1903.101693 +1903.143751 +1903.187407 +1903.270791 +1903.325036 +1903.375952 +1903.418376 +1903.457204 +1903.493368 +1903.531130 +1903.578283 +1903.620008 +1903.658136 +1903.691902 +1903.742552 +1903.779282 +1903.807886 +1903.856404 +1903.888206 +1903.936358 +1903.972388 +1904.013214 +1904.054939 +1904.127533 +1904.170357 +1904.207253 +1904.244216 +1904.279947 +1904.311749 +1904.345914 +1904.380213 +1904.412781 +1904.455105 +1904.495198 +1904.537190 +1904.564629 +1904.595798 +1904.631362 +1904.675218 +1904.714246 +1904.755405 +1904.793700 +1904.832361 +1904.870623 +1904.908052 +1904.947312 +1904.983676 +1905.018841 +1905.047712 +1905.083443 +1905.121372 +1905.157102 +1905.231162 +1905.271821 +1905.418208 +1905.488304 +1905.550742 +1905.671787 +1905.783509 +1906.019639 +1906.132693 +1906.930760 +1906.988836 +1907.003354 +1907.130227 +1907.301023 +1907.341649 +1907.423001 +1907.456068 +1907.496028 +1907.529894 +1907.569687 +1907.599258 +1907.635388 +1907.668788 +1907.699957 +1907.737886 +1907.770986 +1907.803920 +1907.845145 +1907.887203 +1907.924499 +1907.959597 +1907.988701 +1908.020170 +1908.048242 +1908.089401 +1908.126064 +1908.166856 +1908.205684 +1908.238018 +1908.269021 +1908.298358 +1908.319803 +1908.356367 +1908.388068 +1908.425098 +1908.464026 +1908.504119 +1908.540516 +1908.574015 +1908.612577 +1908.646110 +1908.676446 +1908.742147 +1908.780376 +1908.812277 +1908.839416 +1908.872217 +1908.906616 +1908.942580 +1908.980275 +1909.020868 +1909.051038 +1909.087035 +1909.121068 +1909.149639 +1909.185936 +1909.213542 +1909.243978 +1909.274814 +1909.300388 +1909.332523 +1909.365856 +1909.397458 +1909.430225 +1909.465490 +1909.501387 +1909.535520 +1909.562992 +1909.593628 +1909.626795 +1909.661727 +1909.699988 +1909.742279 +1909.777078 +1909.804217 +1909.849405 +1909.908180 +1909.973947 +1910.019069 +1910.052469 +1910.160561 +1910.212176 +1910.272315 +1910.314840 +1910.367021 +1910.413940 +1910.473780 +1910.537017 +1910.594227 +1910.628825 +1910.675778 +1910.734519 +1910.798555 +1910.852068 +1910.884103 +1910.961226 +1911.006647 +1911.062058 +1911.113840 +1911.157429 +1911.191962 +1911.224795 +1911.267819 +1911.319334 +1911.368984 +1911.403949 +1911.443743 +1911.477842 +1911.544076 +1911.601085 +1911.642577 +1911.723596 +1911.752967 +1911.813706 +1911.862191 +1912.043509 +1912.270149 +1912.443109 +1912.612440 +1912.866619 +1913.141876 +1913.185300 +1913.349802 +1913.473944 +1913.551200 +1913.924926 +1913.975242 +1914.036914 +1914.106644 +1914.155761 +1914.217500 +1914.276940 +1914.317500 +1914.359224 +1914.523960 +1914.538378 +1914.590793 +1914.634516 +1914.737379 +1914.800849 +1914.809008 +1914.869081 +1914.876640 +1914.915834 +1915.008674 +1915.024192 +1915.115701 +1915.222594 +1915.404611 +1915.423159 +1915.464352 +1915.536879 +1915.639676 +1915.706676 +1915.728520 +1915.771011 +1915.888860 +1915.933315 +1915.975606 +1916.229652 +1916.330917 +1916.528586 +1916.580268 +1916.728753 +1916.818163 +1916.857357 +1916.907474 +1917.022225 +1917.108073 +1917.161153 +1917.230983 +1917.309738 +1917.388992 +1917.413800 +1917.437776 +1917.456857 +1917.531815 +1917.637010 +1917.715698 +1917.796351 +1917.927020 +1917.966780 +1918.020360 +1918.133879 +1918.196617 +1918.253759 +1918.302444 +1918.455624 +1918.641738 +1918.858654 +1918.973339 +1919.030515 +1919.109503 +1919.146865 +1919.581197 +1919.850861 +1919.939139 +1920.111133 +1920.263814 +1920.302808 +1920.339538 +1920.371073 +1920.476734 +1920.527683 +1920.580364 +1920.613431 +1920.683227 +1920.741070 +1920.789588 +1920.859051 +1920.896880 +1920.952991 +1921.002907 +1921.048662 +1921.099078 +1921.141036 +1921.167276 +1921.209667 +1921.261016 +1921.317459 +1921.365211 +1921.454755 +1921.485058 +1921.536740 +1921.592917 +1921.645697 +1921.689154 +1921.739071 +1921.787622 +1921.828814 +1921.876267 +1921.911098 +1921.948827 +1921.980063 +1922.025883 +1922.067375 +1922.111365 +1922.157319 +1922.200808 +1922.236872 +1922.276832 +1922.316592 +1922.358817 +1922.423419 +1922.455320 +1922.489186 +1922.526582 +1922.566542 +1922.611431 +1922.655953 +1922.698444 +1922.740135 +1922.774834 +1922.816259 +1922.860082 +1922.901374 +1922.945563 +1922.985789 +1923.033009 +1923.080062 +1923.119722 +1923.151290 +1923.186755 +1923.224517 +1923.259449 +1923.296278 +1923.334340 +1923.372436 +1923.412529 +1923.465010 +1923.516158 +1923.559115 +1923.589485 +1923.619422 +1923.647227 +1923.681593 +1923.718223 +1923.780760 +1923.839302 +1923.891516 +1923.920154 +1923.962012 +1924.004869 +1924.040034 +1924.086721 +1924.129611 +1924.175698 +1924.223584 +1924.269238 +1924.317090 +1924.363410 +1924.400007 +1924.450856 +1924.494546 +1924.532308 +1924.580693 +1924.630743 +1924.666274 +1924.697776 +1924.743563 +1924.779960 +1924.818854 +1924.863876 +1924.907699 +1924.942597 +1924.984122 +1925.035571 +1925.076430 +1925.122151 +1925.170336 +1925.208331 +1925.231508 +1925.264442 +1925.293712 +1925.338601 +1925.386420 +1925.429576 +1925.484255 +1925.534738 +1925.588118 +1925.630242 +1925.677129 +1925.721884 +1925.769936 +1925.799439 +1925.822716 +1925.854151 +1925.879593 +1925.890415 +1925.954051 +1926.013026 +1926.063808 +1926.127844 +1926.174730 +1926.224014 +1926.262343 +1926.317088 +1926.372433 +1926.425246 +1926.469003 +1926.516855 +1926.559412 +1926.606865 +1926.649655 +1926.695776 +1926.734270 +1926.779858 +1926.815989 +1926.859878 +1926.897740 +1926.939865 +1926.982788 +1927.163141 +1927.194476 +1927.529108 +1927.593810 +1927.726377 +1927.766404 +1927.888282 +1927.920583 +1927.948755 +1928.136100 +1928.421082 +1928.544092 +1928.677325 +1928.957978 +1929.194841 +1929.245423 +1929.580421 +1929.808660 +1930.070398 +1930.155279 +1930.481619 +1930.552382 +1930.687846 +1930.861439 +1931.164569 +1931.425308 +1931.466200 +1931.562404 +1931.599467 +1931.644156 +1931.703496 +1931.748817 +1931.794505 +1931.834798 +1931.896403 +1931.945554 +1931.994338 +1932.053879 +1932.099933 +1932.119213 +1932.146253 +1932.197668 +1932.274325 +1932.329336 +1932.384082 +1932.433865 +1932.488311 +1932.505860 +1932.566432 +1932.627904 +1932.676822 +1932.744088 +1932.800764 +1932.859872 +1932.909922 +1932.958507 +1933.018580 +1933.072293 +1933.133764 +1933.187411 +1933.233764 +1933.268197 +1933.362669 +1933.413618 +1933.458173 +1933.508922 +1933.554044 +1933.595236 +1933.653577 +1933.703727 +1933.753278 +1933.803328 +1933.845652 +1933.880517 +1933.920310 +1933.970460 +1934.022908 +1934.078619 +1934.125638 +1934.168895 +1934.223141 +1934.271526 +1934.318911 +1934.374456 +1934.417746 +1934.446484 +1934.484213 +1934.536194 +1934.595601 +1934.652011 +1934.710420 +1934.752011 +1934.845851 +1934.901095 +1934.951045 +1935.009154 +1935.051145 +1935.098631 +1935.142587 +1935.177918 +1935.211718 +1935.264865 +1935.317778 +1935.359803 +1935.411484 +1935.452410 +1935.501228 +1935.541221 +1935.587841 +1935.639090 +1935.681181 +1935.725570 +1936.150645 +1936.288407 +1936.324004 +1936.454474 +1936.612849 +1936.856371 +1937.172688 +1937.219841 +1937.269991 +1937.444882 +1937.514546 +1937.568226 +1937.602391 +1937.742784 +1938.084009 +1938.129097 +1938.171622 +1938.645847 +1938.681911 +1938.739054 +1938.839453 +1938.892800 +1939.226599 +1939.271820 +1939.578447 +1940.093564 +1940.151773 +1940.191799 +1940.248043 +1940.307783 +1940.371786 +1940.406951 +1940.500157 +1940.553171 +1940.598792 +1940.650740 +1940.710280 +1940.768256 +1940.816907 +1940.838985 +1940.871119 +1940.920004 +1941.035022 +1941.095561 +1941.160929 +1941.229594 +1941.286603 +1941.344312 +1941.396660 +1941.453736 +1941.488302 +1941.554502 +1941.607382 +1941.660696 +1941.725131 +1941.771085 +1941.831358 +1941.887302 +1941.937618 +1941.986203 +1942.032990 +1942.075614 +1942.118804 +1942.168154 +1942.197492 +1942.256033 +1942.299090 +1942.375680 +1942.430159 +1942.683705 +1942.839482 +1943.053701 +1943.087234 +1943.555199 +1943.601053 +1943.730657 +1943.911110 +1943.997923 +1944.048306 +1944.203550 +1944.413906 +1944.483803 +1944.509611 +1944.549404 +1944.613939 +1944.651036 +1944.712008 +1944.763323 +1944.802984 +1944.855165 +1944.898954 +1944.942677 +1944.995624 +1945.041578 +1945.077609 +1945.123563 +1945.156396 +1945.194492 +1945.232887 +1945.287332 +1945.330422 +1945.374478 +1945.417835 +1945.468517 +1945.513472 +1945.553965 +1945.599153 +1945.645041 +1945.684834 +1945.723562 +1945.760725 +1945.838047 +1945.873079 +1945.942043 +1945.979939 +1946.006079 +1946.052832 +1946.106146 +1946.154464 +1946.214770 +1946.258560 +1946.295123 +1946.345573 +1946.373745 +1946.399119 +1946.457194 +1946.489595 +1946.560624 +1946.603947 +1946.653531 +1946.831686 +1947.172811 +1947.350034 +1947.701149 +1948.095155 +1948.748035 +1948.860922 +1948.939643 +1949.009007 +1949.062020 +1949.118430 +1949.183599 +1949.266416 +1949.313802 +1949.382366 +1949.416266 +1949.492523 +1949.563818 +1949.618796 +1949.681034 +1949.781100 +1949.913468 +1949.967414 +1949.998283 +1950.086628 +1950.179035 +1950.235845 +1950.268346 +1950.304477 +1950.429451 +1950.549498 +1950.611236 +1950.701279 +1950.831016 +1950.964283 +1951.363017 +1952.212400 +1952.215897 +1952.640372 +1952.644001 +1952.960584 +1953.210135 +1953.257687 +1953.292419 +1953.340737 +1953.381663 +1953.427783 +1953.476901 +1953.514763 +1953.557154 +1953.593318 +1953.634776 +1953.686758 +1953.721723 +1953.764180 +1953.802408 +1953.842235 +1953.882528 +1953.919092 +1953.943767 +1953.966411 +1953.988855 +1954.026418 +1954.046764 +1954.063813 +1954.102042 +1954.142002 +1954.171239 +1954.222788 +1954.282028 +1954.330746 +1954.388821 +1954.431346 +1954.472937 +1954.526317 +1954.575301 +1954.614296 +1954.657319 +1954.751259 +1954.800876 +1954.845797 +1954.894382 +1954.929613 +1954.989787 +1955.034442 +1955.093383 +1955.141834 +1955.172204 +1955.213429 +1955.251957 +1955.319556 +1955.374934 +1955.427249 +1955.486123 +1955.540169 +1955.586989 +1955.629846 +1955.692783 +1955.733009 +1955.777431 +1955.829613 +1955.876599 +1955.916459 +1955.972336 +1956.017891 +1956.064178 +1956.116026 +1956.167974 +1956.221853 +1956.277631 +1956.320221 +1956.371970 +1956.408766 +1956.449592 +1956.490185 +1956.532442 +1956.649558 +1956.685123 +1956.760914 +1956.811463 +1956.865909 +1956.910697 +1956.960081 +1957.011363 +1957.063844 +1957.111896 +1957.215725 +1957.264443 +1957.309631 +1957.364310 +1957.414126 +1957.469837 +1957.520054 +1957.576531 +1957.643364 +1957.687819 +1957.736038 +1957.787653 +1957.833573 +1957.877995 +1957.933240 +1957.980193 +1958.048425 +1958.107466 +1958.160180 +1958.210363 +1958.263476 +1958.313559 +1958.383723 +1958.505034 +1958.572134 +1958.630809 +1958.675564 +1958.726979 +1958.776663 +1958.818754 +1958.880359 +1958.927578 +1958.978461 +1959.034271 +1959.086419 +1959.133072 +1959.189916 +1959.250288 +1959.311261 +1959.352087 +1959.408297 +1959.457548 +1959.506599 +1959.548790 +1959.590781 +1959.640964 +1959.703002 +1959.758313 +1959.804467 +1959.857914 +1959.894211 +1959.927644 +1959.986918 +1960.034570 +1960.081456 +1960.135835 +1960.182355 +1960.254883 +1960.303468 +1960.367870 +1960.410460 +1960.472698 +1960.526777 +1960.575196 +1960.636667 +1960.694376 +1960.735036 +1960.830040 +1960.881922 +1960.950420 +1961.005398 +1961.067136 +1961.158245 +1961.217186 +1961.302967 +1961.346990 +1961.377925 +1961.394442 +1961.450752 +1961.502601 +1961.557379 +1961.568401 +1961.597439 +1961.616953 +1961.619317 +1961.621948 +1961.624046 +1961.668168 +1961.671498 +1961.675627 +1961.718951 +1962.221814 +1962.227875 +1962.231338 +1962.517052 +1962.712856 +1962.910791 +1962.951983 +1962.996405 +1963.206528 +1963.237198 +1963.262672 +1963.348886 +1963.373861 +1963.408759 +1963.531936 +1963.586415 +1963.614420 +1963.813587 +1963.864137 +1963.896205 +1963.965502 +1964.090876 +1964.117883 +1964.152015 +1964.180254 +1964.213154 +1964.244289 +1964.278189 +1964.306694 +1964.335099 +1964.362604 +1964.389810 +1964.417383 +1964.447086 +1964.479887 +1964.512055 +1964.542458 +1964.581818 +1964.614552 +1964.646687 +1964.673094 +1964.695371 +1964.710789 +1964.739460 +1964.783816 +1964.822710 +1964.854146 +1964.892774 +1964.927639 +1964.951348 +1964.982051 +1965.020812 +1965.051315 +1965.092540 +1965.177688 +1965.211355 +1965.245854 +1965.281951 +1965.318348 +1965.357841 +1965.388311 +1965.430369 +1965.469297 +1965.505827 +1965.542224 +1965.582383 +1965.614451 +1965.650615 +1965.688444 +1965.718081 +1965.754278 +1965.786646 +1965.821278 +1965.857275 +1965.887311 +1965.923742 +1965.960505 +1965.990175 +1966.034531 +1966.071927 +1966.112952 +1966.159139 +1966.199965 +1966.239759 +1966.277721 +1966.313551 +1966.352845 +1966.392772 +1966.427870 +1966.470061 +1966.506592 +1966.547950 +1966.589042 +1966.673391 +1966.710188 +1966.739325 +1966.765199 +1966.808589 +1966.843388 +1966.880151 +1966.924307 +1966.952545 +1966.997633 +1967.045885 +1967.093304 +1967.143987 +1967.182915 +1967.222009 +1967.259904 +1967.300830 +1967.344120 +1967.383747 +1967.422808 +1967.455142 +1967.482714 +1967.495302 +1967.517713 +1967.539458 +1967.570626 +1967.598132 +1967.659671 +1967.719078 +1967.741922 +1967.772591 +1967.806124 +1967.811286 +1967.863933 +1967.924239 +1967.979883 +1968.017746 +1968.075288 +1968.114882 +1968.158871 +1968.173723 +1968.203193 +1968.236560 +1968.266397 +1968.375754 +1968.415847 +1968.486376 +1968.571125 +1968.775620 +1968.945916 +1969.208487 +1969.379982 +1969.450312 +1969.747148 +1969.805290 +1969.821906 +1970.108320 +1970.659301 +1970.708952 +1970.798262 +1970.991336 +1971.193633 +1971.368125 +1972.970355 +1972.971920 +1972.974217 +1972.977081 +1972.983075 +1973.153471 +1973.155836 +1973.158133 +1973.160398 +1973.163528 +1973.296462 +1973.298127 +1973.300757 +1973.303088 +1973.306252 +1973.393198 +1973.396328 +1973.410314 +1973.420770 +1973.692632 +1973.695296 +1973.697893 +1973.702921 +1973.893864 +1973.896594 +1973.899724 +1973.905951 +1974.006651 +1974.009415 +1974.012678 +1974.020637 +1974.116840 +1974.119937 +1974.123733 +1974.131992 +1974.270320 +1974.273650 +1974.278012 +1974.294063 +1974.380610 +1974.387969 +1974.408715 +1974.437986 +1974.465358 +1974.486770 +1974.517706 +1974.544912 +1974.575681 +1974.602687 +1974.629294 +1974.654669 +1974.678045 +1974.693496 +1974.710413 +1974.748275 +1974.776280 +1974.803753 +1974.841282 +1974.874615 +1974.905717 +1974.945244 +1974.970153 +1974.994595 +1975.028994 +1975.058931 +1975.088201 +1975.116939 +1975.147942 +1975.177012 +1975.199690 +1975.231525 +1975.260928 +1975.289433 +1975.327229 +1975.359730 +1975.389733 +1975.428727 +1975.460196 +1975.490998 +1975.522167 +1975.558697 +1975.591930 +1975.626829 +1975.659263 +1975.680342 +1975.711011 +1975.740016 +1975.770385 +1975.813675 +1975.845277 +1975.878177 +1975.918071 +1975.953535 +1975.990731 +1976.026695 +1976.063225 +1976.109013 +1976.141913 +1976.176046 +1976.214208 +1976.247807 +1976.283871 +1976.318603 +1976.345443 +1976.380741 +1976.401886 +1976.450338 +1976.486835 +1976.530591 +1976.573381 +1976.611277 +1976.647740 +1976.689698 +1976.731157 +1976.770417 +1976.802652 +1976.846175 +1976.886035 +1976.921366 +1976.962126 +1976.992229 +1977.041013 +1977.114406 +1977.153401 +1977.199255 +1977.268885 +1977.530690 +1977.615938 +1977.650603 +1977.900020 +1978.030456 +1978.065321 +1978.188431 +1978.307579 +1978.429990 +1978.471315 +1978.638314 +1978.722930 +1978.913173 +1979.009243 +1979.057628 +1979.144408 +1979.232586 +1979.424561 +1979.486499 +1979.650301 +1979.658027 +1981.061988 +1981.666550 +1981.668748 +1981.670879 +1981.673676 +1981.787262 +1981.790326 +1981.803113 +1981.888028 +1981.892424 +1981.897452 +1981.901614 +1981.913669 +1981.943040 +1981.996020 +1982.677937 +1982.683432 +1982.689093 +1982.788060 +1982.791257 +1982.794621 +1982.806042 +1982.962752 +1982.968513 +1983.012669 +1983.218829 +1983.231983 +1983.408506 +1983.432982 +1983.516331 +1983.562152 +1983.603744 +1983.627387 +1983.658023 +1983.682598 +1983.724623 +1983.896151 +1983.941972 +1984.176704 +1984.197783 +1984.645501 +1984.651495 +1984.904475 +1984.913167 +1984.922291 +1984.932814 +1984.941405 +1985.020825 +1985.023323 +1985.039940 +1985.162550 +1985.187525 +1985.253126 +1985.585494 +1985.649097 +1985.733778 +1985.793286 +1986.211867 +1986.220891 +1986.223555 +1986.354624 +1986.357354 +1986.365812 +1986.426585 +1986.493651 +1986.499312 +1986.616928 +1986.800577 +1986.814297 +1987.580463 +1987.591819 +1987.906037 +1988.183193 +1988.186290 +1988.190086 +1988.308068 +1988.313463 +1988.326516 +1988.472770 +1988.479796 +1988.519357 +1988.549626 +1988.586423 +1988.635008 +1988.660549 +1988.713929 +1988.755787 +1988.794881 +1988.839270 +1988.889619 +1988.937338 +1988.978630 +1989.015826 +1989.068740 +1989.106769 +1989.158450 +1989.201607 +1989.254854 +1989.305337 +1989.345163 +1989.394681 +1989.438370 +1989.472036 +1989.525217 +1989.556019 +1989.586655 +1989.629745 +1989.677331 +1989.727381 +1989.783192 +1989.821420 +1989.875366 +1989.927780 +1989.989252 +1990.056984 +1990.120654 +1990.185422 +1990.241466 +1990.283591 +1990.353388 +1990.544097 +1990.698176 +1990.772968 +1990.874233 +1990.919687 +1991.080726 +1991.386021 +1991.449191 +1991.524182 +1991.530576 +1995.925743 +1995.927608 +1995.929506 +1995.932037 +1995.937631 +1995.987748 +1995.990079 +1995.992643 +1995.994574 +1995.997738 +1996.048786 +1996.050751 +1996.053182 +1996.056645 +1996.065004 +1996.114920 +1996.116419 +1996.118716 +1996.120814 +1996.123279 +1996.128007 +1996.241127 +1996.243458 +1996.245789 +1996.248786 +1996.905895 +1996.908259 +1996.910424 +1996.914453 +1997.065968 +1997.068299 +1997.071096 +1997.075892 +1997.248386 +1997.251183 +1997.254746 +1997.263570 +1997.406994 +1997.409691 +1997.418382 +1997.496437 +1997.500333 +1997.505195 +1997.523244 +1997.562738 +1997.565135 +1997.571995 +1997.593274 +1997.635198 +1997.657143 +1997.670863 +1997.700966 +1997.702931 +1997.708492 +1997.710856 +1997.754313 +1997.774859 +1997.802165 +1997.822977 +1997.864869 +1997.917616 +1997.945588 +1998.042291 +1998.079654 +1998.129204 +1998.168831 +1998.207459 +1998.244988 +1998.282584 +1998.309590 +1998.334132 +1998.366067 +1998.402397 +1998.436796 +1998.482051 +1998.526706 +1998.555644 +1998.601698 +1998.629503 +1998.671295 +1998.716649 +1998.753446 +1998.777222 +1998.817915 +1998.870229 +1998.908158 +1998.951814 +1999.000232 +1999.080452 +1999.130269 +1999.175723 +1999.236362 +1999.285180 +1999.331700 +1999.384714 +1999.430535 +1999.485513 +1999.532932 +1999.567664 +1999.612786 +1999.642023 +1999.678187 +1999.710155 +1999.752546 +1999.794337 +1999.818746 +1999.935063 +1999.979851 +2000.008856 +2000.107857 +2000.204127 +2000.273058 +2000.330467 +2000.390907 +2000.469894 +2000.518079 +2000.569728 +2000.605625 +2000.678785 +2000.743487 +2000.778985 +2000.847450 +2000.902328 +2000.946384 +2001.023573 +2004.244183 +2004.578715 +2004.581079 +2004.583243 +2004.585142 +2004.771622 +2004.773153 +2004.779314 +2004.781179 +2004.785874 +2004.838222 +2004.839853 +2004.843883 +2004.846680 +2004.850509 +2004.906453 +2004.908118 +2004.909950 +2004.912347 +2004.915178 +2004.971089 +2004.972654 +2004.975418 +2004.978015 +2004.981045 +2004.988704 +2005.034991 +2005.036789 +2005.038787 +2005.042018 +2005.045081 +2005.050942 +2005.100592 +2005.103756 +2005.106520 +2005.109517 +2005.113812 +2011.261392 +2011.265987 +2011.267985 +2011.327659 +2011.334519 +2011.470616 +2011.480273 +2011.525827 +2011.529857 +2011.535251 +2011.607179 +2011.778241 +2011.780139 +2016.020095 +2016.022992 +2016.025423 +2016.027255 +2016.029386 +2016.032283 +2016.328853 +2016.330651 +2016.332283 +2016.336012 +2016.338610 +2016.401813 +2016.403844 +2016.406675 +2016.409239 +2016.411370 +2016.415466 +2016.455260 +2016.458856 +2016.463518 +2016.467947 +2016.488626 +2016.488793 +2016.488893 +2016.581733 +2016.624690 +2019.020492 +2019.258487 +2019.260085 +2019.262083 +2019.263948 +2019.266179 +2019.269376 +2019.325353 +2019.328317 +2019.330348 +2019.333145 +2019.336575 +2019.461750 +2019.463382 +2019.464980 +2019.467344 +2019.470108 +2019.475470 +2019.525486 +2019.530348 +2019.532812 +2019.535243 +2019.541803 +2019.670708 +2019.673771 +2019.676702 +2019.679366 +2019.682762 +2019.824887 +2019.827151 +2019.829915 +2019.833045 +2019.849895 +2021.195281 +2021.197379 +2021.199344 +2021.201675 +2021.205904 +2021.362714 +2021.364445 +2021.366543 +2021.368441 +2021.370839 +2021.374935 +2021.510666 +2021.512497 +2021.514162 +2021.515861 +2021.518225 +2021.521788 +2021.580929 +2021.582794 +2021.588521 +2021.591585 +2021.656786 +2021.659550 +2021.662414 +2021.667509 +2021.719756 +2021.721388 +2021.723419 +2021.725351 +2021.728914 +2021.863080 +2021.869706 +2021.872370 +2021.958984 +2021.961681 +2021.964944 +2021.972104 +2022.013995 +2022.016826 +2022.020888 +2025.131042 +2025.213193 +2025.261145 +2025.319054 +2025.378994 +2025.385520 +2025.447225 +2025.511461 +2025.568071 +2025.652819 +2025.711694 +2026.191780 +2026.196142 +2026.199206 +2026.368203 +2026.600105 +2026.818186 +2026.946158 +2026.948955 +2026.954783 +2027.037100 +2027.114223 +2027.176861 +2027.187916 +2027.276994 +2027.280990 +2027.403001 +2027.500137 +2027.515488 +2027.701269 +2027.724046 +2027.826843 +2027.874629 +2027.955281 +2028.039530 +2028.093277 +2028.170066 +2028.227176 +2028.270865 +2028.313423 +2028.368235 +2028.411192 +2028.441461 +2028.523313 +2028.606363 +2028.672164 +2028.725577 +2028.822580 +2028.935667 +2029.446988 +2029.457311 +2029.524810 +2029.544923 +2029.572063 +2029.676625 +2029.696239 +2029.808193 +2029.822079 +2030.152482 +2030.154280 +2030.157643 +2030.167034 +2030.218349 +2030.229538 +2030.423244 +2031.696436 +2031.790975 +2031.796869 +2031.804328 +2032.068331 +2032.076456 +2032.080319 +2032.134098 +2032.139926 +2032.241791 +2032.252680 +2032.309556 +2032.313386 +2032.321877 +2033.029202 +2034.042488 +2034.316147 +2034.519111 +2034.526004 +2034.527836 +2034.532631 +2034.727236 +2034.729667 +2034.732098 +2034.734062 +2034.737026 +2034.748048 +2034.816613 +2034.820176 +2034.822574 +2034.825138 +2034.829001 +2034.843753 +2034.852377 +2034.998897 +2035.001661 +2035.004725 +2035.012317 +2035.030333 +2035.032897 +2035.041288 +2035.129134 +2035.131864 +2035.135228 +2035.142653 +2035.180582 +2035.183313 +2035.190872 +2035.204225 +2035.762533 +2035.766596 +2035.769393 +2035.774854 +2038.383776 +2038.716076 +2038.717841 +2038.719640 +2038.721504 +2038.800559 +2038.802690 +2038.804788 +2038.806985 +2038.862929 +2038.864128 +2038.865926 +2038.868257 +2038.871088 +2038.935157 +2038.942516 +2038.946013 +2038.953439 +2039.000159 +2039.004022 +2039.006519 +2039.009882 +2039.073086 +2039.076149 +2039.079413 +2039.082443 +2039.088237 +2039.143116 +2039.145214 +2039.147811 +2039.150841 +2039.154604 +2039.221337 +2039.223002 +2039.225566 +2039.228064 +2039.231461 +2039.294264 +2039.296995 +2039.299825 +2039.302856 +2039.306852 +2039.368124 +2039.370721 +2039.372752 +2039.375816 +2039.379612 +2039.453638 +2039.456169 +2039.458866 +2039.462696 +2043.910510 +2043.912874 +2043.914673 +2043.916537 +2043.918569 +2043.921732 +2043.978609 +2043.981139 +2043.984003 +2043.987200 +2044.092428 +2044.094093 +2044.095592 +2044.097456 +2044.099155 +2044.101253 +2044.105981 +2044.166854 +2044.170050 +2044.172981 +2044.177276 +2044.228059 +2044.230490 +2044.234020 +2044.236817 +2044.243876 +2044.293194 +2044.298389 +2044.301852 +2044.307579 +2044.363923 +2044.365688 +2044.369850 +2044.372714 +2044.376777 +2044.445941 +2044.448738 +2044.451535 +2044.455232 +2044.876943 +2046.641876 +2046.643974 +2046.645972 +2046.648703 +2046.771380 +2046.773811 +2046.775775 +2046.780504 +2046.785932 +2046.850501 +2046.853065 +2046.855595 +2046.858626 +2046.968682 +2046.970281 +2046.980837 +2047.069748 +2047.456061 +2047.462088 +2047.467117 +2050.652661 +2050.654759 +2050.656624 +2050.658988 +2050.663117 +2050.766181 +2050.769178 +2050.770876 +2050.772608 +2050.774339 +2050.777170 +2050.847100 +2050.849165 +2050.851462 +2050.854093 +2050.856590 +2050.860553 +2050.924789 +2050.927453 +2050.930350 +2050.932847 +2050.936644 +2050.993553 +2050.995052 +2050.997683 +2051.000813 +2051.003810 +2051.011202 +2051.064682 +2051.069011 +2051.071642 +2051.075305 +2051.138075 +2051.140373 +2051.144136 +2051.146966 +2051.151429 +2051.210336 +2051.214099 +2051.217229 +2051.220959 +2053.422655 +2053.591986 +2053.594317 +2053.596781 +2053.601110 +2053.674769 +2053.677533 +2053.680664 +2053.684560 +2055.186523 +2055.188687 +2055.190752 +2055.193782 +2055.250059 +2055.252690 +2055.255520 +2055.258850 +2055.329413 +2055.333476 +2055.381061 +2055.384491 +2055.387289 +2055.391684 +2055.397012 +2055.472736 +2055.477199 +2055.490186 +2055.522453 +2055.528048 +2055.587222 +2055.591351 +2055.600508 +2055.706935 +2055.708967 +2055.714195 +2055.783758 +2055.793315 +2057.077363 +2057.085089 +2057.156351 +2057.158715 +2057.163644 +2057.238402 +2057.242765 +2057.306900 +2057.379561 +2057.455685 +2057.478961 +2058.190949 +2058.195011 +2058.200905 +2058.319254 +2058.323350 +2058.330010 +2058.364608 +2058.378494 +2058.496210 +2058.504002 +2058.583456 +2058.591415 +2058.626246 +2058.631941 +2058.674998 +2058.715790 +2058.722783 +2058.746126 +2063.072795 +2063.073894 +2063.075260 +2063.076891 +2063.078556 +2063.081187 +2063.136998 +2063.138863 +2063.146588 +2063.151017 +2063.201134 +2063.202965 +2063.204530 +2063.206362 +2063.208360 +2063.211590 +2063.280887 +2063.284217 +2063.286748 +2063.289379 +2063.293208 +2063.380188 +2063.382152 +2063.384217 +2063.386048 +2063.387813 +2063.390577 +2063.544623 +2063.548752 +2063.550883 +2063.553947 +2066.277288 +2066.281051 +2066.286145 +2066.289209 +2066.534464 +2066.538926 +2067.470460 +2067.476787 +2067.478985 +2067.483946 +2067.540556 +2067.542854 +2067.545285 +2067.548149 +2067.601962 +2067.604492 +2067.607123 +2067.611719 +2067.732498 +2067.733930 +2067.736693 +2067.739258 +2067.741822 +2067.747982 +2067.805724 +2067.807789 +2067.810553 +2067.869927 +2067.877153 +2067.880216 +2067.884779 +2067.935861 +2067.938491 +2067.942055 +2067.945484 +2067.953476 +2069.085976 +2069.088474 +2069.090805 +2069.094634 +2069.385443 +2069.387974 +2069.390105 +2069.393668 +2069.460335 +2069.463165 +2069.466762 +2069.471224 +2069.527900 +2069.530132 +2069.533395 +2069.535426 +2069.541354 +2069.601960 +2069.612083 +2069.623571 +2069.661067 +2069.662832 +2069.664664 +2069.669192 +2069.732895 +2069.734427 +2069.739822 +2069.746848 +2069.807287 +2069.809252 +2069.811417 +2069.815446 +2069.881680 +2069.884843 +2069.888773 +2069.889272 +2069.898696 +2069.952509 +2069.954973 +2069.957304 +2069.965829 +2070.272821 +2070.277051 +2070.282279 +2070.377716 +2070.384110 +2070.398529 +2070.487873 +2070.498396 +2070.529598 +2070.560367 +2070.593667 +2070.639022 +2070.686940 +2070.719974 +2070.756804 +2070.786774 +2070.815045 +2070.850410 +2070.886074 +2070.919341 +2070.949411 +2070.987839 +2071.029764 +2071.097529 +2071.176051 +2071.253740 +2071.291735 +2071.535957 +2071.707985 +2071.827798 +2072.078181 +2072.284275 +2072.538387 +2073.200724 +2073.519705 +2073.533524 +2073.544946 +2073.556734 +2076.488599 +2076.493328 +2076.495293 +2076.497624 +2076.501453 +2076.542645 +2076.544477 +2076.548440 +2076.550870 +2076.554067 +2076.656764 +2076.661593 +2076.663658 +2076.666521 +2076.712142 +2076.715839 +2076.718836 +2076.722698 +2076.773348 +2076.778043 +2076.781340 +2076.785402 +2076.835319 +2076.839415 +2076.843378 +2076.847474 +2080.770147 +2080.772145 +2080.774609 +2080.821795 +2080.827123 +2080.831452 +2080.836947 +2080.896254 +2080.904046 +2080.907876 +2081.037812 +2081.094988 +2081.097319 +2081.099983 +2081.250599 +2081.315068 +2081.327056 +2081.388794 +2081.391425 +2081.464519 +2081.472111 +2081.476140 +2083.435146 +2083.437444 +2083.608872 +2083.623457 +2083.766081 +2083.840640 +2083.847134 +2083.922725 +2083.936211 +2084.077303 +2084.237143 +2084.239075 +2084.240740 +2084.244702 +2084.317796 +2084.319694 +2084.322058 +2084.324289 +2084.391522 +2084.395218 +2084.397916 +2084.400446 +2084.403743 +2084.469044 +2084.471708 +2084.474206 +2084.476637 +2084.480799 +2084.538408 +2084.540673 +2084.542804 +2084.545168 +2084.548332 +2084.553393 +2087.731678 +2087.850260 +2087.851858 +2087.855754 +2087.857952 +2087.860350 +2088.045198 +2088.126250 +2088.138405 +2088.452657 +2088.512264 +2088.516426 +2088.553456 +2088.631411 +2088.632710 +2088.638238 +2088.641201 +2089.925449 +2089.927580 +2089.929545 +2089.931510 +2089.933574 +2089.937071 +2090.206634 +2090.209365 +2090.211396 +2090.213827 +2090.220720 +2091.418987 +2091.420952 +2091.422584 +2091.424615 +2091.427046 +2091.508231 +2091.512194 +2091.514026 +2091.516257 +2091.519953 +2091.586686 +2091.589017 +2091.595677 +2091.752087 +2091.753985 +2091.756017 +2091.758914 +2091.849556 +2091.854218 +2091.856949 +2091.932074 +2091.934771 +2092.107132 +2092.110029 +2093.426711 +2093.428975 +2093.430840 +2093.432672 +2093.434603 +2093.829708 +2093.832904 +2093.836601 +2093.838499 +2094.100004 +2094.102601 +2094.104699 +2094.369900 +2094.371998 +2094.375828 +2094.379058 +2094.819650 +2094.821948 +2094.824046 +2094.826144 +2094.829374 +2094.846956 +2094.990046 +2094.992044 +2094.998904 +2095.746289 +2095.748520 +2095.752217 +2095.758710 +2095.930771 +2095.933102 +2095.935067 +2095.939496 +2095.945856 +2096.030971 +2096.033169 +2096.035366 +2096.173395 +2096.175593 +2096.178290 +2096.256945 +2096.265503 +2096.435166 +2096.437198 +2096.439129 +2096.441260 +2096.444424 +2096.501100 +2096.502898 +2096.505696 +2096.508260 +2096.512522 +2096.683817 +2096.685582 +2096.687347 +2096.689279 +2096.691776 +2096.697037 +2096.940727 +2096.942259 +2096.944024 +2096.946155 +2096.948153 +2096.950650 +2097.114719 +2097.116784 +2097.118715 +2097.120880 +2097.124543 +2097.179721 +2097.185016 +2097.187447 +2097.189911 +2097.193108 +2099.313785 +2099.315949 +2099.317914 +2099.320411 +2099.326805 +2099.503761 +2099.505726 +2099.507957 +2099.510221 +2099.571527 +2099.573292 +2099.575789 +2099.578553 +2099.582249 +2099.636961 +2099.638926 +2099.640424 +2099.644221 +2099.658340 +2099.710554 +2099.713152 +2099.721976 +2099.776588 +2099.778819 +2099.796035 +2099.843854 +2099.846019 +2099.851114 +2099.857640 +2099.913218 +2099.918146 +2099.947450 +2100.185179 +2100.190674 +2100.196335 +2100.286711 +2100.298299 +2100.333198 +2100.360304 +2100.402961 +2100.432998 +2100.471925 +2100.509288 +2100.541689 +2100.579984 +2100.617113 +2100.647683 +2100.684746 +2100.723207 +2100.755009 +2100.791805 +2100.825938 +2100.868928 +2100.900064 +2100.931499 +2100.966297 +2101.003160 +2101.037593 +2101.074955 +2101.107922 +2101.137526 +2101.170826 +2101.201362 +2101.238858 +2101.266397 +2101.298465 +2101.332897 +2101.334062 +2101.368162 +2101.404925 +2101.439290 +2101.474222 +2101.509220 +2101.550346 +2101.585378 +2101.616446 +2101.643752 +2101.681048 +2101.719077 +2101.766962 +2101.807022 +2101.844152 +2101.891571 +2101.937458 +2101.979283 +2102.026536 +2102.062633 +2102.098164 +2102.132030 +2102.218377 +2102.252410 +2102.287741 +2102.326502 +2102.367961 +2102.398064 +2102.436126 +2102.468360 +2102.506189 +2102.551977 +2102.588374 +2102.617777 +2102.657871 +2102.693868 +2102.733861 +2102.767528 +2102.800361 +2102.834527 +2102.880814 +2102.914247 +2102.950877 +2102.994267 +2103.032762 +2103.070358 +2103.124171 +2103.170491 +2103.213648 +2103.264064 +2103.299095 +2103.351676 +2103.392036 +2103.444217 +2103.486641 +2103.541186 +2103.575752 +2103.619208 +2103.661599 +2103.716045 +2103.762232 +2103.902625 +2104.006621 +2104.241119 +2104.280480 +2104.335125 +2104.645248 +2104.713746 +2104.817875 +2104.856869 +2104.981744 +2105.089370 +2105.276749 +2105.319307 +2105.363596 +2105.583475 +2105.812346 +2105.867957 +2105.978613 +2106.066692 +2106.183541 +2106.277114 +2106.372719 +2106.526631 +2106.895063 +2106.954370 +2106.997660 +2107.100290 +2107.258765 +2107.892631 +2107.986304 +2108.168654 +2108.595194 +2108.768587 +2109.004684 +2109.048107 +2109.101587 +2109.136019 +2109.220635 +2109.287534 +2109.466622 +2109.543911 +2109.693461 +2109.759795 +2109.957297 +2109.959695 +2110.024830 +2111.549570 +2111.555431 +2111.655164 +2111.728624 +2111.764888 +2111.946939 +2112.035683 +2112.060525 +2112.113639 +2112.167252 +2112.340245 +2112.422996 +2112.481104 +2112.543708 +2112.577075 +2112.600285 +2112.624994 +2112.644641 +2112.677008 +2112.706046 +2112.735516 +2112.762756 +2112.784301 +2112.818600 +2112.840778 +2112.871680 +2112.901750 +2112.932319 +2112.961657 +2112.987264 +2113.020697 +2113.054430 +2113.083768 +2113.112938 +2113.145672 +2113.174910 +2113.200917 +2113.234650 +2113.261456 +2113.292625 +2113.343208 +2113.364620 +2113.405279 +2113.438979 +2113.471813 +2113.502082 +2113.567284 +2113.587297 +2113.606977 +2113.648502 +2113.685232 +2113.729155 +2113.767450 +2113.807943 +2113.840943 +2113.883767 +2113.916767 +2113.967883 +2114.015901 +2114.055828 +2114.103480 +2114.152531 +2114.186397 +2114.234283 +2114.275575 +2114.315535 +2114.358292 +2114.389561 +2114.437180 +2114.460789 +2114.497253 +2114.578138 +2114.608342 +2114.661122 +2114.686264 +2114.777406 +2115.259323 +2115.506476 +2115.637378 +2115.886962 +2115.933848 +2116.013235 +2116.181034 +2116.301014 +2116.664350 +2116.833714 +2116.887260 +2116.917530 +2116.953960 +2116.993387 +2117.044803 +2117.081066 +2117.113434 +2117.150597 +2117.169811 +2117.221359 +2117.264316 +2117.297583 +2117.345968 +2117.389091 +2117.436044 +2117.476770 +2117.518662 +2117.564849 +2117.606008 +2117.643470 +2117.680933 +2117.719361 +2117.764216 +2117.795851 +2117.830183 +2117.870243 +2117.902944 +2117.940073 +2117.972740 +2118.010403 +2118.045035 +2118.078768 +2118.126686 +2118.162184 +2118.208904 +2118.247765 +2118.289856 +2118.331681 +2118.373972 +2118.423989 +2118.448464 +2118.482364 +2118.518694 +2118.559553 +2118.598048 +2118.632746 +2118.677435 +2118.707771 +2118.745867 +2118.776536 +2118.821890 +2118.864614 +2118.906406 +2118.935077 +2118.975304 +2119.012067 +2119.045966 +2119.086159 +2119.118960 +2119.160119 +2119.197714 +2119.230848 +2119.263615 +2119.296349 +2119.328250 +2119.362616 +2119.397015 +2119.462249 +2119.495383 +2119.527384 +2119.556122 +2119.588789 +2119.623854 +2119.674903 +2119.706105 +2119.738806 +2119.771740 +2119.803142 +2119.834577 +2119.868210 +2119.902775 +2119.939139 +2119.977434 +2120.006638 +2120.035742 +2120.062449 +2120.097081 +2120.125486 +2120.156688 +2120.189255 +2120.217294 +2120.248429 +2120.276068 +2120.306638 +2120.340104 +2120.369808 +2120.401210 +2120.430380 +2120.456987 +2120.485625 +2120.522388 +2120.554756 +2120.585192 +2120.614396 +2120.647030 +2120.714329 +2120.739171 +2120.772138 +2120.801109 +2120.830979 +2120.860983 +2120.886690 +2120.914762 +2120.954789 +2120.992851 +2121.035741 +2121.067443 +2121.107303 +2121.146863 +2121.178265 +2121.219857 +2121.271072 +2121.429447 +2121.573403 +2121.822387 +2121.858085 +2122.005104 +2122.236239 +2122.360448 +2122.395580 +2122.632243 +2122.679362 +2122.723518 +2122.844397 +2122.964111 +2123.363911 +2123.408266 +2123.447560 +2123.915292 +2123.946261 +2124.007666 +2124.132142 +2124.179194 +2124.361845 +2124.731042 +2124.774199 +2124.990815 +2125.035404 +2125.118787 +2125.254618 +2125.406066 +2125.668703 +2125.708630 +2125.748390 +2125.779826 +2125.858147 +2125.906865 +2125.958180 +2125.998840 +2126.097075 +2126.142829 +2126.215423 +2126.262642 +2126.332106 +2126.377361 +2126.408763 +2126.471566 +2126.517187 +2126.565506 +2126.627177 +2126.686018 +2126.740730 +2126.779159 +2126.821050 +2126.862209 +2126.910827 +2126.947623 +2126.995575 +2127.031439 +2127.067870 +2127.113257 +2127.148189 +2127.192112 +2127.232904 +2127.271566 +2127.302701 +2127.335335 +2127.371865 +2127.411825 +2127.462375 +2127.496907 +2127.535202 +2127.564939 +2127.596840 +2127.632571 +2127.675428 +2127.706064 +2127.745125 +2127.772897 +2128.023346 +2128.236666 +2128.308761 +2128.505830 +2128.569866 +2128.608527 +2128.747555 +2128.923845 +2128.952683 +2128.976892 +2129.150984 +2129.182886 +2129.251417 +2129.322213 +2129.451250 +2129.481920 +2129.517850 +2129.544857 +2129.612389 +2129.731070 +2129.985449 +2130.111922 +2130.147187 +2130.285149 +2130.310191 +2130.510257 +2130.537496 +2130.573227 +2130.668465 +2130.773960 +2130.809025 +2131.087579 +2131.183750 +2131.346953 +2131.391209 +2131.419647 +2131.483350 +2131.566700 +2131.618148 +2131.684348 +2131.763303 +2132.013386 +2132.045087 +2132.134065 +2132.168797 +2132.217148 +2132.252280 +2132.283349 +2132.314451 +2132.358773 +2132.393539 +2132.432500 +2132.470462 +2132.513052 +2132.537361 +2132.565466 +2132.615050 +2132.649016 +2132.685679 +2132.718680 +2132.742989 +2132.776189 +2132.816981 +2132.855410 +2132.898733 +2132.944321 +2132.980817 +2133.013451 +2133.050747 +2133.082049 +2133.108323 +2133.131966 +2133.167530 +2133.200431 +2133.242389 +2133.277354 +2133.313484 +2133.342222 +2133.375322 +2133.401763 +2133.430168 +2133.460737 +2133.502229 +2133.542455 +2133.572192 +2133.632998 +2133.667663 +2133.696135 +2133.735096 +2133.766997 +2133.806191 +2133.840790 +2133.875888 +2133.913950 +2133.953111 +2133.990940 +2134.025805 +2134.054942 +2134.086744 +2134.113783 +2134.143820 +2134.179984 +2134.217679 +2134.251545 +2134.283813 +2134.310187 +2134.343520 +2134.372258 +2134.395002 +2134.421042 +2134.456807 +2134.493104 +2134.528834 +2134.559237 +2134.587709 +2134.626137 +2134.657672 +2134.696900 +2134.733097 +2134.764499 +2134.795434 +2134.828168 +2134.858638 +2134.893836 +2134.932497 +2134.962867 +2134.994535 +2135.020176 +2135.042254 +2135.086510 +2135.126703 +2135.165064 +2135.192204 +2135.224771 +2135.260169 +2135.289073 +2135.314415 +2135.338158 +2135.380748 +2135.410152 +2135.437458 +2135.472357 +2135.498497 +2135.532197 +2135.554608 +2135.584777 +2135.610019 +2135.637425 +2135.663698 +2135.699995 +2135.729133 +2135.758404 +2135.790938 +2135.817078 +2135.848447 +2135.880448 +2135.907688 +2135.974687 +2136.008753 +2136.037524 +2136.079316 +2136.115080 +2136.145017 +2136.175286 +2136.202726 +2136.227168 +2136.259302 +2136.295466 +2136.330398 +2136.365396 +2136.421373 +2136.445882 +2136.474487 +2136.500794 +2136.565429 +2136.624403 +2136.687607 +2136.722838 +2136.802159 +2137.058236 +2137.136424 +2137.235991 +2137.265329 +2137.359135 +2137.597563 +2137.958435 +2138.050709 +2138.396996 +2138.725733 +2138.749443 +2138.779713 +2138.812680 +2138.849010 +2138.877948 +2138.909949 +2138.940185 +2138.967991 +2138.996695 +2139.023102 +2139.053738 +2139.084541 +2139.119506 +2139.156469 +2139.187405 +2139.221604 +2139.255270 +2139.282509 +2139.318906 +2139.344780 +2139.379213 +2139.418540 +2139.450275 +2139.481144 +2139.514877 +2139.552006 +2139.591667 +2139.627098 +2139.659399 +2139.723868 +2139.754370 +2139.789235 +2139.827164 +2139.857933 +2139.924200 +2139.955036 +2139.976581 +2140.004254 +2140.028030 +2140.062062 +2140.090101 +2140.115975 +2140.140018 +2140.162728 +2140.201356 +2140.234823 +2140.270853 +2140.301656 +2140.338952 +2140.371952 +2140.399125 +2140.430394 +2140.468023 +2140.498659 +2140.531159 +2140.561729 +2140.596927 +2140.629095 +2140.662361 +2140.696561 +2140.730760 +2140.760596 +2140.794562 +2140.826530 +2140.858798 +2140.891532 +2140.924033 +2140.952305 +2140.982508 +2141.017040 +2141.042081 +2141.071385 +2141.094229 +2141.119337 +2141.147443 +2141.172917 +2141.197992 +2141.227329 +2141.259863 +2141.296227 +2141.323633 +2141.357965 +2141.384572 +2141.415940 +2141.445611 +2141.469820 +2141.511478 +2141.542747 +2141.574715 +2141.598558 +2141.633456 +2141.668987 +2141.787768 +2141.818804 +2141.843313 +2141.867888 +2141.900522 +2141.921601 +2141.949806 +2141.980475 +2142.011111 +2142.036819 +2142.063992 +2142.097492 +2142.137152 +2142.169686 +2142.206516 +2142.243679 +2142.276646 +2142.313375 +2142.334288 +2142.362426 +2142.395626 +2142.428260 +2142.458930 +2142.497458 +2142.537151 +2142.576013 +2142.612443 +2142.646609 +2142.681773 +2142.715207 +2142.751770 +2142.786635 +2142.819535 +2142.851936 +2142.879808 +2142.910777 +2142.946209 +2142.980208 +2143.012276 +2143.038316 +2143.073048 +2143.104617 +2143.139482 +2143.181240 +2143.214906 +2143.256531 +2143.290830 +2143.324730 +2143.355665 +2143.385968 +2143.422066 +2143.449705 +2143.485502 +2143.519568 +2143.556731 +2143.590097 +2143.630357 +2143.662025 +2143.693993 +2143.718003 +2143.751536 +2143.781206 +2143.809778 +2143.846041 +2143.875445 +2143.923664 +2143.957563 +2143.991929 +2144.025162 +2144.062525 +2144.096024 +2144.125894 +2144.154699 +2144.183670 +2144.225228 +2144.253100 +2144.321565 +2144.363490 +2144.399654 +2144.436583 +2144.464189 +2144.498921 +2144.531455 +2144.573680 +2144.603650 +2144.638781 +2144.673779 +2144.706913 +2144.744875 +2144.769484 +2144.780639 +2144.789164 +2144.800919 +2144.814305 +2144.848371 +2144.922530 +2144.954132 +2144.988797 +2145.017236 +2145.046340 +2145.074012 +2145.105547 +2145.120765 +2145.138181 +2145.216003 +2145.255231 +2145.303516 +2145.338880 +2145.379673 +2145.414771 +2145.450302 +2145.485167 +2145.514038 +2145.556895 +2145.591094 +2145.628057 +2145.661757 +2145.698287 +2145.732320 +2145.771714 +2145.802816 +2145.838047 +2145.872713 +2145.899652 +2145.929989 +2145.967451 +2145.995923 +2146.037914 +2146.068783 +2146.098919 +2146.131620 +2146.161190 +2146.183735 +2146.206245 +2146.236781 +2146.273711 +2146.310641 +2146.349302 +2146.388430 +2146.418599 +2146.454031 +2146.484400 +2146.525426 +2146.564753 +2146.580437 +2146.623328 +2146.653598 +2146.678106 +2146.709608 +2146.743075 +2146.779305 +2146.808842 +2146.851866 +2146.880937 +2146.923561 +2146.959758 +2146.984133 +2147.036314 +2147.070480 +2147.099351 +2147.141309 +2147.176541 +2147.203880 +2147.238579 +2147.276208 +2147.300317 +2147.339478 +2147.378938 +2147.416234 +2147.457460 +2147.478505 +2147.503747 +2147.518232 +2147.567150 +2147.591792 +2147.629154 +2147.677373 +2147.717533 +2147.759224 +2147.792624 +2147.833949 +2147.870479 +2147.903280 +2147.943540 +2147.980536 +2148.020163 +2148.061954 +2148.098085 +2148.136713 +2148.173543 +2148.207842 +2148.243906 +2148.270512 +2148.294721 +2148.330619 +2148.365884 +2148.388461 +2148.399983 +2148.428821 +2148.452197 +2148.497652 +2148.539210 +2148.641308 +2148.685930 +2148.738044 +2148.776572 +2148.817065 +2148.866482 +2148.899083 +2148.925190 +2148.954295 +2148.997085 +2149.038677 +2149.080302 +2149.113369 +2149.156059 +2149.196752 +2149.243938 +2149.279069 +2149.309106 +2149.347001 +2149.376439 +2149.398683 +2149.415266 +2149.431916 +2149.466948 +2149.515966 +2149.530884 +2149.545070 +2149.630651 +2149.680001 +2149.715166 +2149.781633 +2149.817231 +2149.858789 +2149.898782 +2149.944170 +2149.982032 +2150.009705 +2150.054893 +2150.075739 +2150.088659 +2150.124457 +2150.149465 +2150.182432 +2150.249465 +2150.275572 +2150.290923 +2150.327820 +2150.365349 +2150.414599 +2150.444769 +2150.498815 +2150.518229 +2150.616564 +2150.654493 +2150.693787 +2150.739474 +2150.777436 +2150.814832 +2150.850763 +2150.890523 +2150.931316 +2150.976370 +2151.005674 +2151.044069 +2151.087293 +2151.126254 +2151.170509 +2151.207506 +2151.223157 +2151.257855 +2151.308471 +2151.320892 +2151.338242 +2151.378468 +2151.404209 +2151.461718 +2151.497049 +2151.575837 +2151.614199 +2151.645401 +2151.729084 +2151.767545 +2151.814265 +2151.850362 +2151.884861 +2151.917295 +2151.952760 +2151.987358 +2152.032080 +2152.063516 +2152.098680 +2152.129783 +2152.170409 +2152.209669 +2152.252693 +2152.287325 +2152.327385 +2152.366046 +2152.401444 +2152.439406 +2152.474537 +2152.509702 +2152.552826 +2152.585193 +2152.624854 +2152.662183 +2152.696882 +2152.734877 +2152.766645 +2152.799412 +2152.836442 +2152.873505 +2152.909502 +2152.952692 +2152.986125 +2153.018526 +2153.055356 +2153.129748 +2153.162083 +2153.228483 +2153.260517 +2153.292752 +2153.334144 +2153.369342 +2153.409268 +2153.456122 +2153.494017 +2153.569075 +2153.603674 +2153.636141 +2153.670607 +2153.702542 +2153.735275 +2153.765712 +2153.803274 +2153.838905 +2153.870074 +2153.902275 +2153.936174 +2153.970207 +2154.001576 +2154.038672 +2154.075934 +2154.106704 +2154.138139 +2154.174403 +2154.205605 +2154.233710 +2154.268142 +2154.295681 +2154.329514 +2154.359384 +2154.400243 +2154.430346 +2154.457386 +2154.492085 +2154.531678 +2154.573070 +2154.602974 +2154.641801 +2154.676300 +2154.708967 +2154.745364 +2154.778231 +2154.805071 +2154.842600 +2154.885757 +2154.920922 +2154.955887 +2154.989254 +2155.016926 +2155.064944 +2155.101408 +2155.140369 +2155.182460 +2155.214428 +2155.253289 +2155.296080 +2155.326150 +2155.359683 +2155.399976 +2155.430545 +2155.512430 +2155.556985 +2155.584691 +2155.630312 +2155.660548 +2155.704205 +2155.740035 +2155.786222 +2155.822653 +2155.861347 +2155.893448 +2155.927881 +2155.968407 +2155.996345 +2156.063545 +2156.090118 +2156.128846 +2156.163944 +2156.203871 +2156.244397 +2156.270638 +2156.312496 +2156.355952 +2156.421287 +2156.464743 +2156.531310 +2156.546228 +2156.597144 +2156.641333 +2156.693048 +2156.734307 +2156.756818 +2156.951989 +2156.966208 +2157.036138 +2157.089152 +2157.203837 +2157.291382 +2157.434473 +2157.483091 +2157.548758 +2157.653120 +2157.704069 +2157.767239 +2157.893979 +2157.959414 +2158.201105 +2158.253253 +2158.323283 +2158.712660 +2158.868637 +2158.926179 +2159.108663 +2159.195909 +2159.327411 +2159.379559 +2159.659312 +2160.511526 +2160.571666 +2160.623014 +2160.686617 +2160.759844 +2160.812991 +2160.941629 +2161.194575 +2161.327742 +2161.774129 +2161.834735 +2161.937831 +2162.018018 +2162.082220 +2162.148920 +2162.259709 +2162.330971 +2162.383319 +2162.462706 +2162.545123 +2162.602066 +2162.641760 +2162.686049 +2162.746522 +2162.825243 +2162.889412 +2162.943092 +2162.981287 +2163.019182 +2163.081453 +2163.129405 +2163.184783 +2163.251583 +2163.293474 +2163.349485 +2163.405995 +2163.463804 +2163.510291 +2163.539828 +2163.580287 +2163.621446 +2163.685449 +2163.734666 +2163.787979 +2163.837663 +2163.906494 +2163.977057 +2164.032868 +2164.070863 +2164.118349 +2164.196337 +2164.262105 +2164.301199 +2164.335531 +2164.396304 +2164.438428 +2164.492741 +2164.555644 +2164.601565 +2164.640160 +2164.688878 +2164.744755 +2164.801198 +2164.845088 +2164.901365 +2164.941025 +2164.990209 +2165.039260 +2165.082583 +2165.122743 +2165.151348 +2165.199600 +2165.248817 +2165.289443 +2165.344022 +2165.395903 +2165.440492 +2165.470728 +2165.515150 +2165.547118 +2165.617048 +2165.674191 +2165.714817 +2165.763901 +2165.803861 +2165.840924 +2165.883948 +2165.935829 +2165.985147 +2166.032066 +2166.076722 +2166.126272 +2166.169296 +2166.213751 +2166.241856 +2166.267497 +2166.300331 +2166.350747 +2166.392639 +2166.444187 +2166.491706 +2166.539325 +2166.584647 +2166.623541 +2166.658872 +2166.694204 +2166.720411 +2166.751846 +2166.796135 +2166.844520 +2166.889641 +2166.942988 +2166.994303 +2167.051779 +2167.128236 +2167.390873 +2167.615681 +2167.662334 +2167.804392 +2167.845951 +2167.953976 +2168.045684 +2168.173423 +2168.404192 +2168.438025 +2168.486210 +2168.704824 +2168.783812 +2168.861934 +2168.935027 +2168.999862 +2169.059303 +2169.102260 +2169.170225 +2169.211517 +2169.381081 +2169.454840 +2169.646448 +2169.757770 +2169.938123 +2170.085176 +2170.202525 +2170.236991 +2170.326767 +2170.364330 +2170.483111 +2170.560067 +2170.622938 +2170.691036 +2170.854739 +2170.934725 +2171.314978 +2171.390336 +2171.466227 +2171.548012 +2171.672320 +2171.748877 +2171.879946 +2172.039520 +2172.401724 +2172.777248 +2172.818606 +2173.015609 +2173.258133 +2173.335556 +2173.502455 +2173.601190 +2173.786671 +2173.905885 +2173.987303 +2174.123034 +2174.169787 +2174.318871 +2174.458298 +2174.665990 +2175.087269 +2175.230092 +2175.363126 +2175.496992 +2175.727395 +2175.773682 +2175.815307 +2175.874114 +2175.960595 +2176.003385 +2176.044644 +2176.072982 +2176.099123 +2176.148373 +2176.179642 +2176.227561 +2176.291097 +2176.323731 +2176.434620 +2176.482306 +2176.525496 +2176.590031 +2176.655133 +2176.710277 +2176.751869 +2176.791330 +2176.811276 +2176.833521 +2176.906248 +2176.945242 +2176.975845 +2177.016538 +2177.061559 +2177.118436 +2177.175712 +2177.217503 +2177.242778 +2177.286967 +2177.334086 +2177.377010 +2177.444043 +2177.492395 +2177.548405 +2177.604516 +2177.652934 +2177.701385 +2177.750769 +2177.799620 +2177.850303 +2177.893859 +2177.940879 +2177.981838 +2178.038714 +2178.083303 +2178.133320 +2178.175877 +2178.235118 +2178.284202 +2178.326626 +2178.369350 +2178.409377 +2178.448371 +2178.555664 +2178.605147 +2178.657661 +2178.710109 +2178.765320 +2178.848803 +2178.901484 +2178.942143 +2178.995656 +2179.037415 +2179.083402 +2179.133419 +2179.174511 +2179.218367 +2179.310741 +2179.350501 +2179.401117 +2179.443608 +2179.491027 +2179.515469 +2179.570048 +2179.624560 +2179.672779 +2179.733285 +2179.774477 +2179.827157 +2179.872679 +2179.915103 +2179.963687 +2180.011007 +2180.063654 +2180.111107 +2180.153664 +2180.185665 +2180.207710 +2180.267950 +2180.308342 +2180.377840 +2180.423494 +2180.485732 +2180.527856 +2180.573044 +2180.618465 +2180.660124 +2180.702781 +2180.746903 +2180.775508 +2180.819797 +2180.868715 +2180.922295 +2180.962887 +2181.000316 +2181.046603 +2181.098218 +2181.166450 +2181.208708 +2181.265285 +2181.315235 +2181.374808 +2181.419563 +2181.467249 +2181.500316 +2181.591625 +2181.635281 +2181.684265 +2181.743572 +2181.792623 +2181.856926 +2181.905544 +2181.957991 +2182.005310 +2182.069546 +2182.104877 +2182.193189 +2182.236546 +2182.291191 +2182.350365 +2182.397052 +2182.456026 +2182.481800 +2182.533415 +2182.606442 +2182.679569 +2182.722526 +2182.798183 +2182.844237 +2182.895586 +2182.961387 +2183.010904 +2183.097883 +2183.140840 +2183.193255 +2183.243571 +2183.312835 +2183.370977 +2183.402179 +2183.459588 +2183.507573 +2183.546834 +2183.625189 +2183.760387 +2183.822558 +2183.917963 +2183.971276 +2184.027719 +2184.092854 +2184.142105 +2184.157922 +2184.210137 +2184.327353 +2184.385594 +2184.615398 +2184.635311 +2184.700046 +2184.737775 +2184.815331 +2184.907472 +2184.954358 +2185.017229 +2185.084761 +2185.151461 +2185.201711 +2185.339806 +2185.404075 +2185.478734 +2185.532879 +2185.586193 +2185.647165 +2185.702776 +2185.778134 +2185.835510 +2185.890288 +2185.935210 +2185.985326 +2186.051860 +2186.111200 +2186.161184 +2186.189489 +2186.366512 +2186.383961 +2186.450028 +2186.508336 +2186.565113 +2186.604706 +2186.620058 +2186.709835 +2186.745699 +2186.804873 +2186.827883 +2186.897147 +2186.962282 +2187.027383 +2187.086025 +2187.145598 +2187.194949 +2187.246298 +2187.294183 +2187.335708 +2187.383793 +2187.436207 +2187.469641 +2187.535608 +2187.572105 +2187.620823 +2187.674569 +2187.716793 +2187.764246 +2187.800410 +2187.847263 +2187.902674 +2187.943899 +2187.997279 +2188.044299 +2188.096447 +2188.141601 +2188.195481 +2188.240802 +2188.286157 +2188.335707 +2188.378165 +2188.415694 +2188.467342 +2188.514295 +2188.567309 +2188.616260 +2188.665144 +2188.707235 +2188.757751 +2188.813262 +2188.872836 +2188.926882 +2189.132909 +2189.187255 +2189.230278 +2189.277897 +2189.464144 +2189.899841 +2189.956918 +2190.092449 +2190.143364 +2190.547660 +2190.860047 +2190.975098 +2191.016524 +2191.053353 +2191.094346 +2191.136870 +2191.208898 +2191.261711 +2191.319653 +2191.377595 +2191.431242 +2191.544595 +2191.646759 +2191.842097 +2191.869503 +2191.989716 +2192.008664 +2192.152153 +2195.562606 +2195.571098 +2195.866768 +2195.872862 +2196.125376 +2196.131903 +2196.517917 +2196.581020 +2196.600234 +2196.648919 +2196.727573 +2196.763504 +2196.847953 +2196.933734 +2196.961706 +2197.068366 +2197.138329 +2197.148119 +2197.267133 +2197.344856 +2197.347220 +2197.363137 +2197.367067 +2197.434233 +2197.440760 +2197.714452 +2197.725341 +2197.786747 +2197.824575 +2197.874159 +2197.912221 +2197.946054 +2197.987779 +2198.027972 +2198.065301 +2198.110156 +2198.157609 +2198.196769 +2198.244022 +2198.291108 +2198.334498 +2198.378088 +2198.423509 +2198.471927 +2198.523709 +2198.568631 +2198.614152 +2198.663336 +2198.703695 +2198.748417 +2198.791374 +2198.836229 +2198.878520 +2198.924907 +2198.963935 +2198.998933 +2199.034331 +2199.076123 +2199.127471 +2199.173458 +2199.214284 +2199.263435 +2199.309023 +2199.353911 +2199.397301 +2199.452779 +2199.497867 +2199.536462 +2199.582149 +2199.622709 +2199.684147 +2199.734430 +2199.793205 +2199.837627 +2199.895769 +2199.957174 +2200.010088 +2200.044753 +2200.100197 +2200.144819 +2200.180550 +2200.232931 +2200.280484 +2200.341822 +2200.403927 +2200.460237 +2200.516214 +2200.570327 +2200.630067 +2200.691772 +2200.742887 +2200.792171 +2200.837792 +2200.898931 +2200.949814 +2201.043187 +2201.069660 +2201.138225 +2201.186743 +2201.234695 +2201.286410 +2201.320609 +2201.393137 +2201.438924 +2201.494135 +2201.545684 +2201.610086 +2201.665597 +2201.826503 +2201.830399 +2201.832763 +2201.835527 +2201.842520 +2202.427368 +2202.429732 +2202.432263 +2202.437991 +2202.650778 +2202.653075 +2202.655639 +2202.659902 +2202.847114 +2202.850012 +2202.852742 +2202.857571 +2203.017644 +2203.020508 +2203.023505 +2203.027800 +2203.204157 +2203.207254 +2203.211017 +2203.224137 +2203.365329 +2203.369458 +2203.375585 +2203.439921 +2203.454573 +2203.497930 +2203.525669 +2203.563064 +2203.593867 +2203.626967 +2203.656970 +2203.690670 +2203.728998 +2203.760667 +2203.799728 +2203.829231 +2203.863897 +2203.887673 +2203.913547 +2203.944083 +2203.962731 +2203.989171 +2204.006920 +2204.021572 +2204.068658 +2204.094466 +2204.129164 +2204.216111 +2204.299927 +2204.363830 +2204.427932 +2204.481379 +2205.569389 +2205.829662 +2206.028596 +2206.039086 +2206.208616 +2206.211413 +2206.214044 +2206.219106 +2206.395063 +2206.398626 +2206.405552 +2206.684473 +2206.688569 +2206.722868 +2206.769455 +2206.791133 +2206.985605 +2207.104653 +2207.254603 +2207.363194 +2207.591299 +2207.622368 +2207.723333 +2207.764192 +2207.807649 +2207.864625 +2208.056267 +2208.305517 +2208.440582 +2208.637085 +2208.703552 +2208.771218 +2209.328194 +2209.332023 +2209.335753 +2209.341147 +2209.668087 +2209.670651 +2209.676811 +2209.699788 +2209.701420 +2209.709146 +2209.765822 +2209.767121 +2209.771983 +2209.777177 +2209.831856 +2209.840481 +2209.848340 +2209.900221 +2209.902186 +2209.905682 +2209.909678 +2209.968586 +2209.970484 +2209.972748 +2209.975978 +2210.042079 +2210.043977 +2210.045609 +2210.049538 +2210.053234 +2210.113874 +2210.116338 +2210.119635 +2210.122698 +2210.128159 +2210.184436 +2210.186634 +2210.189898 +2210.193028 +2210.797956 +2210.800220 +2210.802285 +2210.805448 +2210.949437 +2210.952368 +2210.955198 +2210.960659 +2211.838647 +2211.841311 +2211.843609 +2211.848238 +2215.460389 +2215.462253 +2215.464052 +2215.466482 +2215.470578 +2215.767847 +2215.770112 +2215.771943 +2215.774041 +2215.776972 +2215.864584 +2215.867914 +2215.869912 +2215.872043 +2215.874541 +2215.935846 +2215.937611 +2215.939709 +2215.941973 +2215.944471 +2215.949932 +2216.009772 +2216.012003 +2216.014667 +2216.016798 +2216.019396 +2216.076205 +2216.078536 +2216.082732 +2216.086562 +2216.096252 +2216.214301 +2216.215799 +2216.217764 +2216.219795 +2216.222259 +2216.225989 +2216.293987 +2216.296285 +2216.298816 +2216.301946 +2216.358157 +2216.361287 +2216.364717 +2216.367714 +2216.373075 +2218.571208 +2218.573672 +2218.577002 +2218.579200 +2218.582430 +2218.807205 +2218.809403 +2218.812000 +2218.939539 +2218.941804 +2218.944934 +2218.948830 +2219.022157 +2219.026219 +2219.143735 +2219.146132 +2219.147897 +2219.156455 +2219.159885 +2219.213199 +2219.215197 +2219.226219 +2219.488423 +2219.623388 +2219.707737 +2219.751660 +2219.785359 +2219.819891 +2220.055655 +2220.204606 +2220.249128 +2220.383727 +2222.904071 +2222.915493 +2223.044297 +2223.046062 +2223.050791 +2223.111963 +2223.117124 +2223.122186 +2223.169239 +2223.173634 +2223.231843 +2223.244463 +2223.288086 +2223.297843 +2223.345695 +2223.358016 +2223.423651 +2224.148425 +2226.735535 +2226.737900 +2226.940197 +2227.033138 +2227.034869 +2227.041962 +2227.044593 +2227.095975 +2227.212225 +2227.218119 +2227.323380 +2227.334736 +2228.246390 +2230.217017 +2230.431369 +2230.434400 +2230.436930 +2230.440560 +2230.484649 +2230.561539 +2230.611089 +2230.622078 +2230.692241 +2230.695405 +2230.698369 +2230.780387 +2230.785914 +2230.791109 +2230.854646 +2230.908125 +2230.910523 +2230.912288 +2230.914519 +2230.922844 +2230.996837 +2231.060240 +2231.123110 +2231.234732 +2231.240026 +2231.929636 +2231.932067 +2231.934132 +2231.936529 +2231.939293 +2232.093505 +2232.096269 +2232.098833 +2232.101830 +2232.154478 +2232.157974 +2232.160205 +2232.162903 +2232.163435 +2232.164434 +2232.244255 +2232.248017 +2232.251181 +2232.254677 +2232.394904 +2232.397634 +2232.399965 +2232.403528 +2232.473359 +2232.476589 +2232.478920 +2232.481617 +2232.486978 +2232.554844 +2232.560471 +2232.564334 +2232.641124 +2232.645220 +2232.649282 +2232.659839 +2232.796102 +2232.799399 +2232.802562 +2232.805892 +2232.882316 +2232.885812 +2232.889276 +2232.893138 +2233.251480 +2233.253677 +2233.256242 +2233.258373 +2233.260870 +2233.268296 +2233.482615 +2233.484813 +2233.486911 +2233.489242 +2233.494969 +2233.978785 +2233.981582 +2233.983913 +2233.986044 +2233.988642 +2234.076720 +2234.078252 +2234.080383 +2234.082381 +2234.089341 +2234.254509 +2234.256973 +2234.258938 +2234.261169 +2234.264998 +2234.332431 +2234.335428 +2234.338258 +2234.341322 +2234.366830 +2234.369927 +2234.373090 +2234.467129 +2234.469827 +2234.472724 +2234.477186 +2234.605657 +2234.608055 +2234.610020 +2234.612184 +2234.614782 +2234.623140 +2234.837326 +2234.839290 +2235.781081 +2236.088340 +2236.090604 +2236.092602 +2236.148380 +2236.150977 +2236.367161 +2236.371889 +2236.378350 +2236.857537 +2236.860001 +2236.863864 +2236.906121 +2237.134659 +2237.136324 +2237.138023 +2237.140054 +2237.142285 +2237.145548 +2237.166061 +2237.167826 +2237.347446 +2237.349344 +2237.352941 +2237.355205 +2237.558102 +2237.560366 +2237.562431 +2237.564862 +2237.571755 +2237.618275 +2237.744915 +2237.753906 +2238.463030 +2238.464828 +2238.466726 +2238.468557 +2238.471022 +2238.475450 +2238.889369 +2238.891401 +2238.893499 +2238.895896 +2239.203788 +2239.205486 +2239.207351 +2239.208983 +2239.211114 +2239.214544 +2239.365393 +2239.367191 +2239.368923 +2239.371187 +2239.373285 +2239.376815 +2239.559765 +2239.562129 +2239.563994 +2239.566292 +2239.568923 +2239.856701 +2239.858433 +2239.860298 +2239.862529 +2239.865792 +2239.937054 +2239.939818 +2239.943048 +2240.148376 +2240.214809 +2240.216874 +2240.218939 +2240.221669 +2240.688102 +2240.690933 +2240.692997 +2240.698092 +2240.774549 +2240.776913 +2240.779178 +2240.782441 +2240.836920 +2241.153470 +2241.155734 +2241.157566 +2241.159497 +2241.162294 +2241.166523 +2241.325964 +2241.328028 +2241.330493 +2241.332524 +2241.335155 +2241.430293 +2241.433123 +2241.435288 +2241.437619 +2241.440216 +2241.445444 +2241.676579 +2241.678344 +2241.682540 +2241.684738 +2241.692031 +2242.179942 +2242.182240 +2242.184438 +2242.186769 +2242.190698 +2242.290565 +2242.292929 +2242.295360 +2242.297791 +2242.302886 +2242.728793 +2242.732756 +2242.735087 +2243.380241 +2243.382239 +2243.386468 +2243.390464 +2243.503950 +2243.506281 +2243.508412 +2243.510910 +2243.515472 +2243.596524 +2243.598556 +2243.600920 +2243.603218 +2243.607247 +2243.701453 +2243.703550 +2243.705848 +2243.918668 +2243.920400 +2243.922864 +2243.925229 +2243.927626 +2244.015438 +2244.017703 +2244.020100 +2244.023031 +2244.028558 +2244.187333 +2244.269284 +2244.273413 +2244.275811 +2244.279274 +2244.727725 +2244.729956 +2244.732654 +2244.858661 +2245.052500 +2245.054332 +2245.056996 +2245.058927 +2245.061991 +2245.145074 +2245.146872 +2245.149203 +2245.151701 +2245.154864 +2245.361424 +2245.363222 +2245.365121 +2245.367485 +2245.369749 +2245.374112 +2245.467951 +2245.470149 +2245.472446 +2245.985233 +2245.987264 +2245.989329 +2245.991427 +2245.995057 +2246.730853 +2246.733085 +2246.735149 +2246.737347 +2246.740211 +2246.948502 +2246.950733 +2246.952798 +2246.954896 +2246.958326 +2247.013837 +2247.016268 +2247.019132 +2247.022295 +2247.514636 +2247.517466 +2247.519730 +2247.522428 +2247.709207 +2247.710739 +2247.716267 +2247.931685 +2247.933683 +2247.935647 +2247.937879 +2247.940276 +2248.012337 +2248.016666 +2248.020296 +2248.286996 +2248.289094 +2248.290992 +2248.293223 +2248.295887 +2248.553829 +2248.555860 +2248.557558 +2248.560122 +2249.525756 +2249.542073 +2249.546269 +2249.548500 +2249.550631 +2249.553794 +2249.796518 +2249.798549 +2249.800647 +2249.806441 +2249.886361 +2249.888426 +2249.890591 +2249.893787 +2250.207207 +2250.240107 +2250.242572 +2250.244636 +2250.246834 +2250.250064 +2251.226587 +2251.229284 +2251.231015 +2251.232947 +2251.234845 +2251.237209 +2251.737975 +2251.739839 +2251.742670 +2251.744635 +2251.746533 +2251.749530 +2252.540371 +2252.542036 +2252.543668 +2252.547664 +2252.637674 +2252.735942 +2252.737940 +2252.739572 +2252.741503 +2252.743801 +2252.747065 +2252.939172 +2252.941303 +2252.943535 +2252.945566 +2252.948296 +2253.342702 +2253.346831 +2253.349328 +2253.436774 +2253.439804 +2253.628849 +2253.630580 +2253.632578 +2253.634809 +2253.638872 +2253.829148 +2253.835642 +2253.838006 +2254.140137 +2254.142801 +2254.144965 +2254.147063 +2254.150759 +2254.245931 +2254.247662 +2254.249627 +2254.252058 +2254.256320 +2254.651258 +2254.653523 +2254.655488 +2254.657719 +2254.660549 +2254.934475 +2254.936306 +2254.937838 +2254.941601 +2254.944298 +2255.226416 +2255.231911 +2255.236373 +2255.238604 +2255.241667 +2255.318224 +2255.321488 +2255.329080 +2255.425483 +2255.528047 +2255.533675 +2255.624884 +2255.728414 +2255.732809 +2255.735307 +2255.739403 +2255.836239 +2255.838204 +2255.840268 +2255.842699 +2255.847694 +2255.933908 +2255.935906 +2255.938370 +2255.941001 +2255.947727 +2256.022985 +2256.129279 +2256.132942 +2256.134907 +2256.141200 +2256.320621 +2256.322685 +2256.324717 +2256.326748 +2256.329778 +2256.407900 +2256.410564 +2256.412995 +2256.415459 +2256.420621 +2256.568739 +2256.574966 +2256.933108 +2257.228712 +2257.503870 +2257.507566 +2257.514526 +2257.612028 +2257.689151 +2257.696144 +2257.703703 +2257.813493 +2257.896943 +2257.899673 +2257.902604 +2257.909897 +2257.993147 +2258.064908 +2258.070436 +2258.148824 +2258.230376 +2258.311328 +2258.323249 +2258.368837 +2258.476496 +2258.486719 +2258.828843 +2258.832806 +2258.838001 +2258.988250 +2258.996176 +2259.076662 +2259.098906 +2259.208497 +2259.244161 +2259.311693 +2259.361710 +2259.462875 +2259.497607 +2259.580558 +2259.636335 +2259.687650 +2259.758313 +2259.815656 +2259.872798 +2259.933871 +2260.004933 +2260.056048 +2260.114357 +2260.155482 +2260.207663 +2260.249821 +2260.299271 +2260.361909 +2260.419185 +2260.478492 +2260.534270 +2260.591845 +2260.649354 +2260.706664 +2260.751386 +2260.803234 +2260.861575 +2261.030040 +2261.109960 +2261.209660 +2261.342760 +2261.561242 +2261.839763 +2262.058177 +2262.157212 +2262.314321 +2262.473761 +2262.833168 +2262.953448 +2263.102366 +2263.161240 +2263.208060 +2263.242925 +2263.299069 +2263.398835 +2263.445489 +2263.513454 +2263.540161 +2263.603297 +2263.718515 +2263.780120 +2263.846887 +2263.911256 +2263.936431 +2263.996604 +2264.102598 +2264.148918 +2264.216151 +2264.263070 +2264.330603 +2264.356144 +2264.425508 +2264.490143 +2264.552680 +2264.588744 +2264.633566 +2264.719946 +2264.761671 +2264.820246 +2264.874725 +2264.928504 +2264.990043 +2265.030169 +2265.101165 +2265.139759 +2265.210822 +2265.266033 +2265.308557 +2265.403262 +2265.447851 +2265.498301 +2265.550448 +2265.597734 +2265.670961 +2265.731201 +2265.787078 +2265.820212 +2265.900398 +2265.980251 +2266.027071 +2266.091707 +2266.155010 +2266.238593 +2266.325239 +2266.379252 +2266.582116 +2266.651513 +2266.930900 +2266.934163 +2268.261668 +2268.266530 +2268.275454 +2268.490938 +2268.513083 +2268.702360 +2268.827368 +2268.963798 +2269.191803 +2269.279449 +2269.377850 +2269.412149 +2269.772422 +2269.911749 +2270.061733 +2270.159302 +2270.209718 +2270.260201 +2270.481612 +2270.531562 +2270.654972 +2270.833360 +2270.925035 +2270.966793 +2271.016976 +2271.063163 +2271.098595 +2271.238621 +2271.289803 +2271.389537 +2271.687772 +2271.743516 +2272.008084 +2272.046712 +2272.083775 +2272.253439 +2272.297495 +2272.490868 +2272.863761 +2272.909049 +2273.008982 +2273.177414 +2273.273751 +2273.455269 +2273.488769 +2273.530560 +2273.680577 +2273.899558 +2273.932791 +2273.985172 +2274.033990 +2274.075814 +2274.115941 +2274.164692 +2274.264426 +2274.309514 +2274.349041 +2274.451938 +2274.485538 +2274.561362 +2274.594229 +2274.645711 +2274.720469 +2274.760229 +2274.813276 +2274.868821 +2274.908814 +2275.002320 +2275.058731 +2275.097991 +2275.146310 +2275.210945 +2275.287202 +2275.340182 +2275.379676 +2275.416073 +2275.456366 +2275.490165 +2275.539016 +2275.583705 +2275.622966 +2275.656665 +2275.683738 +2275.744311 +2275.783372 +2275.821900 +2275.854268 +2275.889699 +2275.928793 +2275.962259 +2275.997857 +2276.047441 +2276.076312 +2276.126428 +2276.173282 +2276.261393 +2276.298756 +2276.369119 +2276.407214 +2276.453035 +2276.486668 +2276.526595 +2276.565056 +2276.618336 +2276.661593 +2276.690031 +2276.736185 +2276.792295 +2276.830457 +2276.868919 +2276.929358 +2276.982638 +2277.030956 +2277.067020 +2277.111842 +2277.159927 +2277.183970 +2277.214273 +2277.260626 +2277.294859 +2277.340447 +2277.409644 +2277.529924 +2277.566620 +2277.619234 +2277.762191 +2277.849004 +2277.885468 +2277.936350 +2278.048105 +2278.083270 +2278.122963 +2278.215504 +2278.253766 +2278.314871 +2278.362723 +2278.463389 +2278.587831 +2278.724861 +2278.801917 +2278.923695 +2278.950968 +2278.987098 +2279.217368 +2279.338979 +2279.468683 +2279.514737 +2279.546272 +2279.583035 +2279.666119 +2279.698220 +2279.741343 +2279.960191 +2280.166817 +2280.557060 +2280.607310 +2280.645005 +2280.690127 +2280.730553 +2280.762821 +2280.809641 +2280.879704 +2280.928988 +2280.963087 +2280.999184 +2281.059990 +2281.106344 +2281.134549 +2281.162621 +2281.215401 +2281.262987 +2281.311438 +2281.366716 +2281.397386 +2281.441675 +2281.491658 +2281.567748 +2281.613369 +2281.661088 +2281.694455 +2281.727056 +2281.788960 +2281.866083 +2281.902746 +2281.932417 +2281.952164 +2281.966216 +2282.014768 +2282.052263 +2282.142373 +2282.230452 +2282.280868 +2282.317564 +2282.389492 +2282.448600 +2282.488227 +2282.527121 +2282.576738 +2282.637378 +2282.694820 +2282.732183 +2282.791923 +2282.833282 +2282.869212 +2282.978403 +2283.023857 +2283.082199 +2283.124390 +2283.169378 +2283.197950 +2283.229485 +2283.254460 +2283.302911 +2283.361386 +2283.422425 +2283.471876 +2283.501646 +2283.529784 +2283.566015 +2283.609271 +2283.657190 +2283.698216 +2283.744503 +2283.789891 +2283.822325 +2283.857157 +2283.901812 +2283.955858 +2284.003810 +2284.051396 +2284.093021 +2284.143004 +2284.236577 +2284.270510 +2284.305208 +2284.347865 +2284.368745 +2284.401379 +2284.440206 +2284.483330 +2284.534712 +2284.579900 +2284.609404 +2284.641238 +2284.688358 +2284.724355 +2284.768311 +2284.819660 +2284.844735 +2284.878801 +2285.234012 +2285.273073 +2285.311601 +2285.391388 +2285.433978 +2285.476502 +2285.627052 +2285.677601 +2285.728483 +2285.783628 +2285.831580 +2285.874571 +2285.906239 +2285.945100 +2285.976435 +2286.024787 +2286.094484 +2286.115862 +2286.270741 +2286.392685 +2286.432412 +2286.486625 +2286.777533 +2286.921689 +2287.013963 +2287.124752 +2287.269408 +2287.354889 +2287.712497 +2287.815128 +2287.987855 +2288.343000 +2288.418524 +2289.341866 +2289.429279 +2289.483458 +2289.539835 +2289.638470 +2289.706069 +2289.759815 +2289.821919 +2289.876365 +2289.925649 +2289.996511 +2290.041999 +2290.127114 +2290.191882 +2290.246228 +2290.318322 +2290.387387 +2290.439035 +2290.534506 +2290.577896 +2290.634106 +2290.698608 +2290.742165 +2290.801705 +2290.909930 +2290.929277 +2291.018388 +2291.109464 +2291.150789 +2291.180593 +2291.247759 +2291.425681 +2291.506000 +2291.549523 +2291.641365 +2291.710495 +2291.758980 +2291.850122 +2291.879060 +2291.907765 +2292.333039 +2292.341464 +2292.389216 +2292.427278 +2292.468670 +2292.503302 +2292.555250 +2292.605799 +2292.655316 +2292.701803 +2292.743262 +2292.775096 +2292.794144 +2292.851886 +2292.896042 +2292.946425 +2292.985519 +2293.025313 +2293.069269 +2293.098806 +2293.140830 +2293.177194 +2293.205998 +2293.241163 +2293.269934 +2293.315056 +2293.349621 +2293.405033 +2293.452219 +2293.498939 +2293.539232 +2293.578492 +2293.619751 +2293.668069 +2293.721050 +2293.751452 +2293.798439 +2293.850653 +2293.899604 +2293.937932 +2293.988016 +2294.042494 +2294.074396 +2294.144426 +2294.190346 +2294.299237 +2294.367536 +2294.426943 +2294.433137 +2294.484419 +2294.554449 +2294.701601 +2294.750652 +2294.800003 +2294.839630 +2294.898804 +2294.949120 +2294.995940 +2295.052816 +2295.120182 +2295.168800 +2295.231338 +2295.280522 +2295.330106 +2295.490911 +2295.566802 +2295.628174 +2295.676392 +2295.730771 +2295.819682 +2295.925909 +2295.965569 +2295.985350 +2296.018816 +2296.216052 +2296.237364 +2296.316851 +2296.362872 +2296.456445 +2296.560008 +2296.606095 +2296.699102 +2296.742292 +2296.831503 +2296.884217 +2296.906727 +2296.954513 +2297.110024 +2297.155345 +2297.203364 +2297.244056 +2297.333866 +2297.356144 +2297.457443 +2297.460640 +2297.507459 +2297.555178 +2297.680553 +2297.735365 +2297.854778 +2298.067465 +2298.080353 +2298.138095 +2298.276823 +2298.363769 +2298.451814 +2298.606592 +2298.674058 +2298.868297 +2298.908690 +2299.009323 +2299.117015 +2299.217281 +2299.306225 +2299.520111 +2299.597967 +2299.656442 +2299.690707 +2299.859705 +2299.931000 +2299.953777 +2300.016681 +2300.090507 +2300.194103 +2300.257307 +2300.337327 +2300.381349 +2300.566664 +2300.595934 +2300.661302 +2300.857106 +2300.926737 +2301.026570 +2301.152910 +2301.258271 +2301.357838 +2301.418811 +2301.441521 +2301.595234 +2301.694368 +2301.873922 +2301.886876 +2301.903792 +2302.038457 +2302.067728 +2302.350545 +2302.355673 +2302.362499 +2302.869292 +2302.877051 +2303.341020 +2303.417810 +2303.459934 +2303.552275 +2303.640687 +2303.804090 +2303.839421 +2303.971755 +2304.094965 +2304.139554 +2304.180013 +2304.460433 +2304.521072 +2304.574319 +2304.696163 +2304.808018 +2304.862930 +2304.945847 +2305.016310 +2305.088937 +2305.171055 +2305.204222 +2305.239553 +2305.286173 +2305.364428 +2305.436689 +2305.531993 +2305.564761 +2305.694198 +2305.768990 +2305.849809 +2305.915643 +2305.969555 +2306.061530 +2306.139385 +2306.181044 +2306.230494 +2306.309715 +2306.396428 +2306.457534 +2306.499259 +2306.538652 +2306.582908 +2306.646411 +2306.704320 +2306.889168 +2307.004886 +2307.105185 +2307.144513 +2307.188935 +2307.294696 +2307.799224 +2307.862261 +2308.052704 +2308.245211 +2308.739449 +2308.956565 +2309.036252 +2309.152403 +2309.585902 +2309.708180 +2309.878043 +2310.116871 +2310.200587 +2310.271915 +2310.765122 +2311.067020 +2311.129057 +2311.183936 +2311.246840 +2311.322464 +2311.355065 +2311.376576 +2311.402184 +2311.458361 +2311.579340 +2311.667485 +2311.712906 +2311.755730 +2311.866486 +2311.969916 +2312.043043 +2312.143309 +2312.257628 +2312.305147 +2312.426758 +2312.506545 +2312.646439 +2312.678706 +2312.735982 +2312.810241 +2312.896721 +2313.002815 +2313.061423 +2313.132952 +2313.207211 +2313.251899 +2313.349535 +2313.449868 +2313.509042 +2313.579072 +2313.619764 +2313.689295 +2313.775042 +2313.873410 +2313.946237 +2313.992092 +2314.099384 +2314.166883 +2314.234782 +2314.293756 +2314.338312 +2314.443440 +2314.520995 +2314.557226 +2314.592191 +2314.664219 +2314.754428 +2314.841808 +2314.963353 +2315.037545 +2315.103412 +2315.138078 +2315.294488 +2315.434348 +2315.855793 +2316.042572 +2316.256891 +2316.374374 +2316.610903 +2316.689858 +2317.056890 +2317.350363 +2317.574938 +2317.671875 +2317.809470 +2317.868678 +2317.948931 +2318.104175 +2318.156057 +2318.270076 +2318.333845 +2318.395650 +2318.457855 +2318.637342 +2318.715663 +2318.797215 +2318.845433 +2318.894884 +2319.033345 +2319.124088 +2319.227151 +2319.335676 +2319.417760 +2319.494051 +2319.553724 +2319.756988 +2319.811866 +2319.911766 +2319.994716 +2320.092818 +2320.163680 +2320.218892 +2320.270640 +2320.300843 +2320.574569 +2320.602475 +2320.767842 +2320.798745 +2320.901009 +2320.935408 +2320.999744 +2321.045231 +2321.110866 +2321.162847 +2321.237306 +2321.312164 +2321.360116 +2321.428248 +2321.491185 +2321.574069 +2321.643566 +2321.713995 +2321.752756 +2321.814062 +2321.873003 +2321.941334 +2322.032343 +2322.035274 +2322.038304 +2322.446229 +2322.451157 +2322.459449 +2322.771803 +2322.775033 +2322.778929 +2322.787421 +2323.050091 +2323.052955 +2323.055919 +2323.062312 +2323.273035 +2323.276365 +2323.280727 +2323.340167 +2323.351489 +2323.387021 +2323.405502 +2323.434839 +2323.463344 +2323.494113 +2323.511829 +2323.550524 +2323.592182 +2323.623217 +2323.677330 +2323.718455 +2323.765508 +2323.811895 +2323.846727 +2323.904403 +2323.937403 +2323.985255 +2324.018488 +2324.064243 +2324.106900 +2324.132241 +2324.191782 +2324.278462 +2324.311162 +2324.353986 +2324.404336 +2324.436537 +2324.496976 +2324.514492 +2324.540732 +2324.616024 +2324.693446 +2324.740199 +2324.910096 +2324.956017 +2325.043862 +2325.151488 +2325.218354 +2325.280492 +2325.345394 +2325.409296 +2325.431707 +2325.471401 +2325.485587 +2325.510062 +2325.529642 +2325.552753 +2325.590082 +2325.622549 +2325.669236 +2325.873132 +2325.930075 +2326.181490 +2326.210294 +2326.777693 +2327.789647 +2327.795707 +2328.128674 +2328.134935 +2328.685084 +2328.713089 +2328.831904 +2329.055713 +2329.312622 +2329.466701 +2329.565636 +2329.677257 +2329.760041 +2329.974893 +2330.257743 +2330.440793 +2330.623111 +2331.106660 +2331.292307 +2331.404362 +2331.778288 +2332.526072 +2332.603961 +2332.867764 +2332.974523 +2333.193871 +2333.209255 +2336.116745 +2336.118743 +2336.121007 +2336.124504 +2336.234260 +2336.236825 +2336.239622 +2336.243152 +2336.980081 +2336.983044 +2336.984509 +2336.986741 +2336.989338 +2337.111283 +2337.114146 +2337.117510 +2337.125568 +2337.268558 +2337.271322 +2337.273953 +2337.277283 +2337.328931 +2337.334359 +2337.340020 +2337.381379 +2337.385641 +2337.390570 +2337.392101 +2337.402957 +2337.449777 +2337.460067 +2337.468958 +2337.480180 +2340.259231 +2340.261130 +2340.263094 +2340.265625 +2340.270720 +2340.740550 +2340.743314 +2340.746111 +2340.753004 +2341.031825 +2341.034122 +2341.036553 +2341.041715 +2341.233057 +2341.235521 +2341.238485 +2341.242780 +2341.453103 +2341.456400 +2341.459896 +2341.474781 +2341.535454 +2341.542780 +2341.566157 +2341.612610 +2341.629160 +2341.655500 +2341.726163 +2341.856666 +2341.927595 +2342.104584 +2342.178377 +2342.215174 +2342.451404 +2342.533322 +2342.703718 +2342.829092 +2343.110611 +2343.198556 +2343.283604 +2343.374713 +2343.421999 +2343.930856 +2343.975778 +2344.011309 +2344.050237 +2344.089098 +2344.121166 +2344.153067 +2344.204682 +2344.233520 +2344.297423 +2344.339714 +2344.394059 +2344.461159 +2344.520466 +2344.569550 +2344.605414 +2344.649503 +2344.696024 +2344.737149 +2344.786833 +2344.854099 +2344.941977 +2345.025827 +2345.122630 +2345.210975 +2345.309809 +2345.347904 +2345.413772 +2345.458394 +2345.521264 +2345.608910 +2345.688863 +2345.808776 +2345.856229 +2345.880571 +2345.896722 +2345.915436 +2346.003814 +2346.008077 +2346.020298 +2349.830218 +2349.833048 +2349.834780 +2349.836611 +2349.838975 +2349.843338 +2349.975639 +2349.977703 +2349.979868 +2349.982132 +2349.985529 +2350.521759 +2350.523757 +2350.525621 +2350.527753 +2350.530850 +2350.710470 +2350.713001 +2350.715132 +2350.720360 +2350.729517 +2350.793087 +2350.795651 +2350.798415 +2350.801945 +2350.906707 +2350.909970 +2350.915964 +2351.135711 +2351.138075 +2351.140373 +2351.143836 +2351.317129 +2351.319727 +2351.322790 +2351.327652 +2351.464149 +2351.467412 +2351.478767 +2351.576370 +2351.580898 +2351.588191 +2351.608204 +2351.656656 +2351.669476 +2351.702843 +2351.721991 +2351.753626 +2351.782563 +2351.808904 +2351.837275 +2351.869210 +2351.894984 +2351.924388 +2351.951194 +2351.981031 +2352.006472 +2352.035077 +2352.062516 +2352.090488 +2352.115663 +2352.136143 +2352.164814 +2352.189389 +2352.218394 +2352.248131 +2352.280032 +2352.307571 +2352.338207 +2352.367278 +2352.396149 +2352.424920 +2352.455490 +2352.483495 +2352.511633 +2352.541803 +2352.607404 +2352.756255 +2352.789455 +2352.880398 +2353.140371 +2353.210101 +2353.343268 +2353.412532 +2353.486091 +2353.522821 +2353.675868 +2353.715995 +2353.802075 +2353.885858 +2353.919358 +2353.988955 +2354.160783 +2354.197979 +2354.621422 +2354.768541 +2354.778398 +2354.815094 +2354.869973 +2354.920655 +2354.987355 +2355.044232 +2355.091351 +2355.146230 +2355.198211 +2355.246196 +2355.287122 +2355.332809 +2355.379629 +2355.421854 +2355.465443 +2355.566442 +2355.636705 +2355.696412 +2355.778597 +2355.823785 +2355.883492 +2355.930345 +2355.988020 +2356.041567 +2356.105136 +2356.154520 +2356.207168 +2356.257184 +2356.329945 +2356.406668 +2356.539368 +2356.564477 +2356.617057 +2356.660181 +2356.687320 +2356.719688 +2357.437636 +2357.439634 +2357.441665 +2357.444029 +2357.448791 +2357.657849 +2357.659514 +2357.661345 +2357.663310 +2357.667472 +2358.029677 +2358.031708 +2358.033573 +2358.036303 +2358.041265 +2358.283056 +2358.285354 +2358.288751 +2358.478927 +2358.481657 +2358.488051 +2358.638967 +2358.642463 +2358.646526 +2358.656016 +2358.741864 +2358.746892 +2358.757481 +2359.018187 +2359.025446 +2359.034904 +2359.311693 +2359.314657 +2359.317654 +2359.324547 +2359.467837 +2359.471234 +2359.475496 +2359.486685 +2359.495909 +2359.627044 +2359.629342 +2359.634637 +2359.660178 +2359.703235 +2359.718786 +2359.752718 +2359.754550 +2359.756581 +2359.758579 +2359.760977 +2359.770601 +2359.823048 +2359.827510 +2359.924014 +2359.933438 +2359.943827 +2360.219185 +2360.228908 +2360.307796 +2360.325478 +2360.381156 +2360.401969 +2360.433670 +2360.477926 +2360.506397 +2360.541163 +2360.589547 +2360.627543 +2360.670000 +2360.713423 +2360.750220 +2360.785118 +2360.818552 +2360.853184 +2360.892211 +2360.924712 +2360.960010 +2360.995474 +2361.032504 +2361.083620 +2361.117819 +2361.162307 +2361.209360 +2361.241528 +2361.284119 +2361.356946 +2361.427575 +2361.489180 +2362.162739 +2362.211158 +2362.287648 +2362.332636 +2362.384384 +2362.439496 +2362.537464 +2362.595273 +2362.695506 +2362.748586 +2362.850451 +2362.905929 +2362.998136 +2363.085216 +2363.117317 +2363.266801 +2363.315852 +2363.624842 +2363.713820 +2364.065901 +2364.295438 +2372.163662 +2372.167291 +2372.223235 +2372.224434 +2372.225533 +2372.227132 +2372.239186 +2372.292599 +2372.299060 +2372.302323 +2372.312613 +2372.352173 +2372.360465 +2372.404820 +2372.410848 +2372.414877 +2372.420704 +2372.430495 +2372.474750 +2372.479213 +2372.483974 +2375.287868 +2375.289400 +2375.292197 +2375.294095 +2375.296359 +2375.300189 +2384.036510 +2388.666209 +2388.668041 +2388.669772 +2388.672004 +2388.675500 +2397.551215 +2397.553546 +2397.555078 +2397.556876 +2397.558908 +2397.561871 +2397.684649 +2397.686314 +2397.688245 +2397.690010 +2397.691608 +2397.693839 +2397.704795 +2397.797369 +2397.799400 +2397.801432 +2397.803530 +2397.805994 +2397.810123 +2404.180480 +2404.184908 +2404.254539 +2404.268059 +2404.272621 +2404.278814 +2404.592001 +2404.601325 +2405.001757 +2405.004355 +2405.014445 +2405.874317 +2405.877381 +2405.880211 +2406.161763 +2406.164960 +2406.167890 +2406.171320 +2406.286971 +2406.294530 +2406.315875 +2406.368756 +2406.380044 +2406.386938 +2406.398126 +2406.430461 +2406.913477 +2406.916541 +2406.918605 +2406.920703 +2406.928595 +2406.931393 +2407.041283 +2407.044579 +2407.049541 +2407.052804 +2407.114942 +2407.120836 +2407.172251 +2407.183007 +2407.241016 +2407.244046 +2407.249641 +2407.299058 +2407.302488 +2407.308482 +2407.368322 +2407.370486 +2407.375515 +2407.385571 +2407.445345 +2407.449374 +2407.453603 +2407.459797 +2407.570619 +2407.575381 +2407.581908 +2407.639783 +2411.637948 +2411.639879 +2411.731321 +2411.783203 +2411.864321 +2411.953865 +2412.116935 +2412.122030 +2412.127758 +2412.634617 +2412.636948 +2412.866252 +2413.049968 +2413.210740 +2413.364220 +2413.480437 +2413.553630 +2413.613704 +2413.702781 +2413.734682 +2413.760057 +2413.787996 +2413.818032 +2413.845438 +2413.879604 +2413.906877 +2413.935148 +2413.971412 +2413.995455 +2414.056494 +2414.078239 +2414.110906 +2414.140643 +2414.171712 +2414.212005 +2414.249833 +2414.283267 +2414.322161 +2414.357126 +2414.388428 +2414.420662 +2414.454562 +2414.490226 +2414.525324 +2414.560389 +2414.592224 +2414.629120 +2414.664685 +2414.697186 +2414.735014 +2414.766316 +2414.804012 +2414.835081 +2414.879437 +2414.909273 +2414.941042 +2414.975607 +2415.011471 +2415.046536 +2415.083133 +2415.121827 +2415.149233 +2415.180702 +2415.219596 +2415.254395 +2415.287262 +2415.321827 +2415.354594 +2415.386596 +2415.417331 +2415.447068 +2415.509939 +2415.547002 +2415.574008 +2415.600981 +2415.629752 +2415.668547 +2415.699516 +2415.738443 +2415.772409 +2415.798750 +2415.840075 +2415.870578 +2415.908407 +2415.946036 +2415.978337 +2416.019395 +2416.061020 +2416.104843 +2416.144171 +2416.178403 +2416.213568 +2416.252063 +2416.290957 +2416.326954 +2416.368346 +2416.401713 +2416.438176 +2416.470910 +2416.514600 +2416.552562 +2416.591057 +2416.632715 +2416.671343 +2416.707440 +2416.752328 +2416.791955 +2416.833547 +2416.869345 +2416.912268 +2416.950031 +2417.053693 +2417.091988 +2417.137776 +2417.170576 +2417.205908 +2417.302211 +2417.346900 +2417.385095 +2417.431415 +2417.479101 +2417.513966 +2417.569377 +2417.608005 +2417.658055 +2417.695218 +2417.723090 +2417.786660 +2417.814499 +2417.864848 +2417.905408 +2417.946533 +2417.993653 +2418.075504 +2418.127519 +2418.166946 +2418.201278 +2418.272940 +2418.331215 +2418.413499 +2418.417961 +2418.454391 +2418.519493 +2418.573739 +2418.626119 +2418.674538 +2418.728717 +2418.777068 +2419.802542 +2419.805039 +2419.807304 +2420.324286 +2420.326551 +2420.328549 +2420.331546 +2420.345232 +2420.639437 +2420.641635 +2420.643567 +2420.646364 +2420.652358 +2420.851292 +2420.853690 +2420.855788 +2420.858884 +2420.867443 +2421.054056 +2421.056187 +2421.058285 +2421.061315 +2421.068674 +2421.219823 +2421.222088 +2421.224352 +2421.227482 +2421.235274 +2421.371571 +2421.373769 +2421.376233 +2421.379597 +2421.499110 +2421.502707 +2421.506536 +2421.513329 +2421.584292 +2421.590952 +2421.603939 +2421.634641 +2421.657652 +2421.676766 +2421.701741 +2421.719723 +2421.754421 +2421.775134 +2421.801041 +2421.825484 +2421.852157 +2421.876366 +2421.902040 +2421.922753 +2421.938803 +2421.960748 +2421.984791 +2422.008134 +2422.034608 +2422.055553 +2422.074368 +2422.092816 +2422.110765 +2422.140335 +2422.162013 +2422.181161 +2422.214361 +2422.239702 +2422.270172 +2422.299143 +2422.324717 +2422.348360 +2422.373002 +2422.400308 +2422.425450 +2422.451524 +2422.477264 +2422.504038 +2422.531077 +2422.557351 +2422.586755 +2422.612462 +2422.637704 +2422.662279 +2422.691450 +2422.717158 +2422.745196 +2422.769472 +2422.790984 +2422.814094 +2422.831243 +2422.855486 +2422.873268 +2422.899409 +2422.930844 +2422.961913 +2422.997577 +2423.018489 +2423.044064 +2423.072069 +2423.101806 +2423.126681 +2423.159015 +2423.197344 +2423.232442 +2423.260247 +2423.292115 +2423.323384 +2423.357816 +2423.387587 +2423.418755 +2423.446661 +2423.476165 +2423.506268 +2423.537836 +2423.572568 +2423.598975 +2423.630144 +2423.655252 +2423.679394 +2423.714026 +2423.741166 +2423.775199 +2423.805601 +2423.835705 +2423.868439 +2423.901772 +2423.935272 +2423.962544 +2423.980793 +2424.007166 +2424.028079 +2424.053353 +2424.091915 +2424.123850 +2424.167706 +2424.199041 +2424.230043 +2424.266573 +2424.303536 +2424.343363 +2424.374798 +2424.410696 +2424.443596 +2424.478395 +2424.509464 +2424.545428 +2424.579427 +2424.609963 +2424.642131 +2424.681991 +2424.715690 +2424.749090 +2424.794179 +2424.832041 +2424.868038 +2424.899939 +2424.926180 +2424.954618 +2424.991781 +2425.057315 +2425.088850 +2425.124481 +2425.154351 +2425.189749 +2425.221284 +2425.272367 +2425.315423 +2425.365607 +2425.409829 +2425.466605 +2425.507731 +2425.559080 +2425.598240 +2425.636202 +2425.687651 +2425.729143 +2425.762110 +2425.811161 +2425.852786 +2425.914357 +2425.951487 +2425.992079 +2426.034370 +2426.081024 +2426.152585 +2426.189715 +2426.220085 +2426.910027 +2426.912125 +2426.914090 +2426.916621 +2426.920150 +2427.062608 +2427.064206 +2427.065771 +2427.067769 +2427.069901 +2427.072698 +2427.123980 +2427.126078 +2427.134336 +2427.144226 +2427.227043 +2427.229507 +2427.232704 +2427.239497 +2427.248289 +2427.281955 +2427.292111 +2427.322048 +2427.332071 +2427.454083 +2427.456480 +2427.459111 +2427.462341 +2427.492910 +2427.499038 +2428.034169 +2428.036666 +2428.038997 +2428.042127 +2428.247255 +2428.249586 +2428.251584 +2428.254648 +2428.269200 +2428.436866 +2428.439130 +2428.441727 +2428.444858 +2428.591877 +2428.595374 +2428.599370 +2428.607695 +2428.705663 +2428.710858 +2428.722513 +2428.773262 +2428.789246 +2428.819716 +2428.847188 +2428.877291 +2428.897604 +2428.931237 +2429.354281 +2429.483351 +2429.504797 +2429.531503 +2429.673594 +2429.682319 +2429.701433 +2429.760707 +2430.383717 +2430.394906 +2430.620979 +2430.925141 +2431.034898 +2431.103197 +2431.161172 +2431.184049 +2431.211788 +2431.244422 +2431.279687 +2431.309190 +2431.338561 +2431.372727 +2431.404462 +2431.426406 +2431.459373 +2431.491608 +2431.523243 +2431.559373 +2431.593772 +2431.615517 +2431.649783 +2431.680419 +2431.714185 +2431.748251 +2431.785480 +2431.821644 +2431.854311 +2431.887012 +2431.926805 +2431.958107 +2431.985080 +2432.016382 +2432.048417 +2432.082217 +2432.121710 +2432.148217 +2432.179386 +2432.206992 +2432.234331 +2432.268863 +2432.300431 +2432.333299 +2432.368064 +2432.412619 +2432.436462 +2432.467298 +2432.501197 +2432.534664 +2432.571693 +2432.601663 +2432.629669 +2432.655676 +2432.689808 +2432.718446 +2432.758839 +2432.793072 +2432.833598 +2432.872492 +2432.911087 +2432.949515 +2432.985179 +2433.021876 +2433.058273 +2433.099398 +2433.139591 +2433.175955 +2433.220078 +2433.256741 +2433.292672 +2433.596934 +2433.882714 +2433.992671 +2434.301928 +2434.445351 +2434.498964 +2434.543719 +2434.702927 +2434.754342 +2435.296532 +2436.296898 +2436.314447 +2436.547780 +2436.553940 +2436.614147 +2436.766195 +2437.157270 +2437.169857 +2437.265495 +2437.277516 +2437.374919 +2437.403523 +2437.608784 +2437.755338 +2437.761865 +2437.786207 +2437.823403 +2437.843816 +2437.907752 +2437.919041 +2437.939720 +2437.950909 +2437.962164 +2437.998827 +2438.032161 +2438.048578 +2438.065261 +2438.088038 +2438.231628 +2438.271355 +2438.315677 +2438.351541 +2438.415344 +2438.452706 +2438.462830 +2438.477482 +2438.544215 +2438.571554 +2438.595963 +2438.649876 +2438.745180 +2438.857867 +2438.884607 +2438.953438 +2439.527730 +2439.533325 +2439.563128 +2439.618806 +2439.979145 +2439.994663 +2440.009981 +2440.805185 +2441.140216 +2441.145045 +2441.251538 +2441.352304 +2441.354868 +2441.977112 +2442.225363 +2442.232589 +2442.347774 +2442.350172 +2442.353468 +2442.358397 +2442.468919 +2442.470718 +2442.475013 +2442.476645 +2442.483372 +2442.539049 +2442.544510 +2442.657331 +2442.659728 +2442.663625 +2442.667354 +2442.675246 +2443.340081 +2443.343644 +2443.346841 +2443.356764 +2443.545608 +2443.548705 +2443.552202 +2443.559927 +2443.668186 +2443.674579 +2443.691829 +2443.766254 +2443.779607 +2443.804283 +2443.846041 +2443.871382 +2443.922864 +2443.994492 +2444.027160 +2444.072481 +2444.110110 +2444.158928 +2444.205148 +2444.284535 +2444.331155 +2444.421731 +2444.464555 +2444.507712 +2444.550469 +2444.610576 +2444.650436 +2444.702983 +2444.743210 +2444.800153 +2444.832853 +2444.886666 +2444.938814 +2444.987365 +2445.055330 +2445.103049 +2445.173978 +2445.230722 +2445.297222 +2445.344974 +2445.407878 +2445.467285 +2445.528257 +2445.573878 +2445.630355 +2445.694091 +2445.749103 +2445.802416 +2445.853798 +2445.905246 +2445.952932 +2445.999519 +2446.069815 +2446.134817 +2446.200351 +2446.240677 +2446.330554 +2446.367883 +2446.576674 +2446.646205 +2447.032884 +2448.302047 +2448.308574 +2448.458957 +2448.518530 +2448.528354 +2448.628587 +2448.630485 +2448.632749 +2448.634981 +2448.639909 +2448.681834 +2448.684031 +2448.691391 +2448.705976 +2448.826056 +2448.830218 +2448.833415 +2448.839742 +2449.172676 +2449.174973 +2449.176938 +2449.179868 +2449.185962 +2449.382299 +2449.384530 +2449.386728 +2449.389692 +2449.399648 +2449.566681 +2449.568879 +2449.571343 +2449.574673 +2449.585496 +2449.743571 +2449.745835 +2449.748599 +2449.752162 +2449.793854 +2449.809205 +2449.840407 +2449.854993 +2449.887327 +2449.903045 +2449.929185 +2449.949032 +2449.973174 +2449.999681 +2450.021959 +2450.044969 +2450.066747 +2450.090956 +2450.112701 +2450.141140 +2450.162818 +2450.187060 +2450.212468 +2450.239674 +2450.259554 +2450.282032 +2450.328152 +2450.352961 +2450.372575 +2450.398915 +2450.410936 +2450.434712 +2450.462851 +2450.480833 +2450.512201 +2450.533347 +2450.561219 +2450.587060 +2450.624822 +2450.649464 +2450.680833 +2450.705641 +2450.757289 +2450.790123 +2450.815098 +2450.882031 +2450.941805 +2450.977602 +2451.005841 +2451.037176 +2451.167512 +2451.233713 +2451.366346 +2451.399380 +2451.467878 +2451.523522 +2451.594751 +2451.668111 +2451.778467 +2451.904641 +2452.534577 +2452.651726 +2452.817827 +2452.989222 +2453.024720 +2453.062449 +2453.100377 +2453.144467 +2453.187590 +2453.243667 +2453.325985 +2453.374303 +2453.420457 +2453.468276 +2453.487556 +2453.502042 +2453.533877 +2453.564979 +2453.625518 +2453.707503 +2453.733677 +2453.833577 +2453.889787 +2453.971039 +2454.030147 +2454.100443 +2454.173903 +2454.256420 +2454.313696 +2454.357752 +2454.423886 +2454.471338 +2454.581062 +2454.640069 +2454.726550 +2454.783459 +2454.850392 +2454.980995 +2455.027848 +2455.125517 +2455.179196 +2455.243332 +2455.293016 +2455.369473 +2455.406968 +2455.444131 +2455.552789 +2455.570072 +2455.638204 +2455.702206 +2455.758317 +2455.841167 +2455.886655 +2456.088220 +2456.095313 +2456.101140 +2460.015622 +2460.022781 +2460.024480 +2460.026278 +2460.028476 +2460.032239 +2460.145225 +2460.146724 +2460.148955 +2460.150787 +2460.152951 +2460.155715 +2460.205565 +2460.206697 +2460.209128 +2460.211592 +2460.214323 +2460.218419 +2460.293510 +2460.295775 +2460.298272 +2460.301336 +2460.310160 +2460.319384 +2460.320950 +2460.392944 +2460.394676 +2460.396541 +2460.398838 +2460.401336 +2460.405132 +2460.529807 +2460.531406 +2460.533637 +2460.535735 +2460.538299 +2460.542261 +2460.604066 +2460.606430 +2460.608995 +2460.611892 +2460.617886 +2460.739564 +2460.741928 +2460.745591 +2460.747789 +2460.750686 +2461.067436 +2461.069534 +2461.071598 +2461.074362 +2461.079590 +2461.272697 +2461.274861 +2461.276993 +2461.279856 +2461.284918 +2461.466070 +2461.468268 +2461.470532 +2461.473429 +2461.479756 +2461.585018 +2461.587482 +2461.590046 +2461.593442 +2461.640429 +2461.651418 +2461.680888 +2461.699037 +2461.713056 +2461.776592 +2461.785284 +2461.808594 +2461.829673 +2461.856046 +2461.876459 +2461.893209 +2461.914022 +2461.945090 +2461.974161 +2461.999403 +2462.022679 +2462.056745 +2462.083186 +2462.087248 +2462.133502 +2462.184984 +2462.216519 +2462.234601 +2462.279323 +2462.300202 +2462.322080 +2462.360774 +2462.385949 +2462.414554 +2462.444790 +2462.467934 +2462.494407 +2462.519982 +2462.556545 +2462.578257 +2462.609492 +2462.632569 +2462.647920 +2462.675126 +2462.711523 +2462.743491 +2462.783485 +2462.812589 +2462.850717 +2462.890611 +2462.914320 +2462.945922 +2462.967667 +2462.999735 +2463.064104 +2463.096105 +2463.120148 +2463.164170 +2463.199435 +2463.239628 +2463.283051 +2463.316951 +2463.353148 +2463.405595 +2463.435166 +2463.481686 +2463.511722 +2463.557643 +2463.595272 +2463.626308 +2463.670430 +2463.704296 +2463.731902 +2463.793873 +2463.813886 +2463.868399 +2463.911622 +2463.957709 +2464.000500 +2464.013220 +2464.027106 +2464.067632 +2464.091442 +2464.125341 +2464.154412 +2464.210423 +2464.237629 +2464.283217 +2464.320180 +2464.397536 +2464.489410 +2464.538628 +2464.626673 +2464.702297 +2464.746353 +2464.893106 +2464.923176 +2465.011188 +2465.029636 +2465.134065 +2465.219779 +2465.299932 +2465.329336 +2466.241390 +2466.315815 +2466.326471 +2466.331533 +2467.165898 +2467.378718 +2467.381082 +2467.387409 +2467.506424 +2467.680150 +2467.845384 +2467.848714 +2467.990406 +2467.997632 +2468.055973 +2468.111684 +2468.146350 +2468.238224 +2468.276619 +2468.309886 +2468.338957 +2468.377219 +2468.404858 +2468.433729 +2468.464897 +2468.494268 +2468.526636 +2468.558171 +2468.595866 +2468.646083 +2468.681447 +2468.741254 +2468.781447 +2468.815613 +2468.879782 +2468.924071 +2468.971723 +2469.025570 +2469.063565 +2469.124604 +2469.174687 +2469.229132 +2469.284477 +2469.334660 +2469.381580 +2469.425736 +2469.477084 +2469.552709 +2469.627234 +2469.693101 +2469.757903 +2469.869725 +2469.932995 +2469.993634 +2473.876014 +2473.881509 +2474.921201 +2474.923466 +2474.925797 +2474.928994 +2475.006083 +2475.012443 +2475.018071 +2475.122766 +2475.173016 +2475.175980 +2475.271218 +2475.373782 +2476.906614 +2476.908812 +2476.921033 +2477.439114 +2477.494925 +2477.499853 +2477.563390 +2477.567985 +2477.629424 +2477.635151 +2477.719700 +2478.206879 +2478.215271 +2478.390928 +2478.544508 +2478.582536 +2478.738114 +2478.919399 +2478.995323 +2479.082269 +2479.128223 +2479.167218 +2479.215969 +2479.302349 +2479.393991 +2479.448803 +2479.486198 +2479.530188 +2479.569315 +2479.645239 +2479.682435 +2479.716301 +2479.757494 +2479.794490 +2479.830421 +2479.882369 +2479.934183 +2479.991659 +2480.032651 +2480.079072 +2480.119997 +2480.179671 +2480.222994 +2480.279038 +2480.344539 +2480.390327 +2480.447270 +2480.476074 +2480.540010 +2480.597486 +2480.659391 +2480.709740 +2480.787063 +2480.834249 +2480.922161 +2480.970146 +2481.054062 +2481.090359 +2481.141841 +2481.328221 +2481.372410 +2481.487129 +2481.535580 +2481.595654 +2481.669979 +2481.713269 +2481.757658 +2481.781934 +2481.806542 +2481.834381 +2481.870145 +2481.926123 +2482.767347 +2482.769545 +2482.771543 +2482.774607 +2483.093687 +2483.095852 +2483.097883 +2483.100847 +2483.108672 +2483.302845 +2483.305176 +2483.307307 +2483.310071 +2483.317663 +2483.560553 +2483.562685 +2483.564849 +2483.567879 +2483.576071 +2483.767113 +2483.769544 +2483.771975 +2483.775139 +2483.949464 +2483.952594 +2483.955824 +2483.962384 +2484.085261 +2484.089058 +2484.094053 +2484.106440 +2484.193653 +2484.201612 +2484.224955 +2484.258055 +2484.291788 +2484.314998 +2484.352094 +2484.381865 +2484.407306 +2484.433546 +2484.452361 +2484.471042 +2484.493053 +2484.513766 +2484.541571 +2484.575304 +2484.597249 +2484.637742 +2484.665447 +2484.696450 +2484.729383 +2484.757089 +2484.789257 +2484.817195 +2484.846832 +2484.874039 +2484.899713 +2484.928651 +2484.955823 +2484.988890 +2485.015830 +2485.044501 +2485.072606 +2485.100812 +2485.125587 +2485.157721 +2485.185493 +2485.210668 +2485.238374 +2485.267611 +2485.290688 +2485.316695 +2485.344401 +2485.369609 +2485.395550 +2485.424621 +2485.452793 +2485.479233 +2485.499979 +2485.526086 +2485.552559 +2485.577634 +2485.603808 +2485.632579 +2485.664847 +2485.688823 +2485.709835 +2485.737008 +2485.757121 +2485.778400 +2485.804307 +2485.829482 +2485.849729 +2485.869409 +2485.899579 +2485.920824 +2485.941570 +2485.969309 +2486.004940 +2486.040671 +2486.073638 +2486.099312 +2486.129515 +2486.160850 +2486.195116 +2486.223521 +2486.256521 +2486.285059 +2486.322855 +2486.351959 +2486.386458 +2486.416528 +2486.444100 +2486.477966 +2486.508070 +2486.536508 +2486.563747 +2486.593051 +2486.624520 +2486.654090 +2486.710867 +2486.750993 +2486.782628 +2486.814430 +2486.846531 +2486.879131 +2486.914163 +2486.946497 +2486.981795 +2487.014729 +2487.047530 +2487.082295 +2487.115728 +2487.149627 +2487.175402 +2487.213463 +2487.244999 +2487.276700 +2487.319124 +2487.352391 +2487.389021 +2487.424119 +2487.461482 +2487.497546 +2487.546530 +2487.581761 +2487.629247 +2487.668708 +2487.703473 +2487.733443 +2487.782960 +2487.823286 +2487.854788 +2487.937339 +2488.168008 +2488.202140 +2488.302274 +2488.343432 +2488.381195 +2488.531844 +2488.575800 +2488.625683 +2488.994314 +2489.161147 +2489.208566 +2489.289785 +2489.457051 +2489.530677 +2489.567507 +2489.737737 +2489.827880 +2489.865775 +2490.051423 +2490.083724 +2490.170304 +2490.244429 +2490.346627 +2490.381692 +2490.482957 +2490.699740 +2490.732141 +2491.106666 +2491.185554 +2491.426979 +2491.509530 +2491.621051 +2491.655683 +2491.818654 +2491.852486 +2491.946259 +2492.079426 +2492.270168 +2492.304334 +2492.329909 +2492.362576 +2492.487651 +2492.640464 +2492.702369 +2492.794943 +2492.950321 +2493.079492 +2493.178925 +2493.247157 +2493.347956 +2493.411226 +2493.442695 +2493.472132 +2493.541129 +2493.600070 +2493.630340 +2493.664206 +2493.697806 +2493.766271 +2493.871132 +2494.118951 +2494.257945 +2494.322248 +2494.490146 +2494.520649 +2494.548321 +2494.662807 +2494.810725 +2494.991644 +2495.159976 +2495.229206 +2495.372130 +2495.447088 +2495.484751 +2495.545423 +2495.791543 +2495.826375 +2495.860508 +2496.029305 +2496.062772 +2496.127074 +2496.221413 +2496.544123 +2496.575892 +2496.640960 +2496.667733 +2496.703764 +2496.729271 +2496.764003 +2496.796338 +2496.823444 +2496.855878 +2496.897004 +2496.928405 +2496.969298 +2497.007260 +2497.032768 +2497.067200 +2497.099534 +2497.122578 +2497.181719 +2497.210123 +2497.241559 +2497.275658 +2497.310523 +2497.337163 +2497.377756 +2497.413287 +2497.450316 +2497.553680 +2497.590409 +2497.620213 +2497.659340 +2497.693040 +2497.725641 +2497.771595 +2497.803330 +2497.832001 +2497.872727 +2497.947186 +2497.992374 +2498.016883 +2498.053779 +2498.093572 +2498.131967 +2498.214285 +2498.253879 +2498.298068 +2498.326806 +2498.377255 +2498.411654 +2498.440592 +2498.494405 +2498.531301 +2498.569263 +2498.607158 +2498.632400 +2498.673259 +2498.712386 +2498.752912 +2498.867698 +2498.904994 +2498.935130 +2498.969063 +2499.250648 +2499.294670 +2499.381184 +2499.712219 +2499.895802 +2499.922209 +2500.179851 +2500.212285 +2500.317613 +2500.348848 +2500.466764 +2500.502062 +2500.525338 +2500.560470 +2500.718445 +2500.800996 +2500.989807 +2501.016347 +2501.051578 +2501.086776 +2501.147649 +2501.182813 +2501.213949 +2501.247882 +2501.277519 +2501.312450 +2501.346183 +2501.381315 +2501.413649 +2501.450878 +2501.489773 +2501.513050 +2501.526569 +2501.572490 +2501.600329 +2501.615547 +2501.653076 +2501.675221 +2501.696533 +2501.714082 +2501.781481 +2501.816413 +2501.858171 +2501.861900 +2501.917944 +2501.958171 +2502.001028 +2502.041587 +2502.072490 +2502.109486 +2502.135793 +2502.175686 +2502.211584 +2502.252643 +2502.292336 +2502.334161 +2502.372689 +2502.407687 +2502.440321 +2502.478450 +2502.518143 +2502.550944 +2502.584011 +2502.624437 +2502.653375 +2502.688073 +2502.725003 +2502.763098 +2502.792802 +2502.858736 +2502.890038 +2502.925136 +2502.961566 +2502.991370 +2503.024969 +2503.051410 +2503.079348 +2503.104790 +2503.123571 +2503.157970 +2503.179015 +2503.220807 +2503.255938 +2503.293268 +2503.323204 +2503.353074 +2503.385975 +2503.419475 +2503.451776 +2503.477750 +2503.510384 +2503.536258 +2503.569258 +2503.629631 +2503.658735 +2503.693134 +2503.721539 +2503.752641 +2503.776684 +2503.845615 +2503.875118 +2503.904789 +2503.939920 +2503.969191 +2503.993900 +2504.021605 +2504.053873 +2504.083044 +2504.110816 +2504.149011 +2504.178981 +2504.217343 +2504.250043 +2504.287439 +2504.322337 +2504.357735 +2504.387173 +2504.418774 +2504.461598 +2504.493999 +2504.522870 +2504.560133 +2504.592534 +2504.625800 +2504.667159 +2504.707951 +2504.741018 +2504.769623 +2504.795530 +2504.830695 +2504.861265 +2504.895530 +2504.921238 +2504.948744 +2504.971621 +2505.003089 +2505.028630 +2505.064495 +2505.090868 +2505.122337 +2505.151174 +2505.176849 +2505.206719 +2505.229063 +2505.262929 +2505.292500 +2505.323335 +2505.353938 +2505.388437 +2505.416209 +2505.450342 +2505.483009 +2505.511580 +2505.550475 +2505.581277 +2505.644714 +2505.674118 +2505.702556 +2505.734824 +2505.763961 +2505.794264 +2505.827298 +2505.857567 +2505.884674 +2505.912146 +2505.946678 +2506.009116 +2506.046312 +2506.079046 +2506.106185 +2506.131127 +2506.167857 +2506.198759 +2506.223601 +2506.254770 +2506.290501 +2506.323834 +2506.353904 +2506.379345 +2506.414044 +2506.445146 +2506.475249 +2506.504320 +2506.529928 +2506.565392 +2506.598992 +2506.628229 +2506.654470 +2506.681543 +2506.710147 +2506.725132 +2506.742615 +2506.769155 +2506.793897 +2506.819471 +2506.846611 +2506.874516 +2506.896794 +2506.927696 +2506.952771 +2506.976048 +2507.007450 +2507.046810 +2507.074249 +2507.092498 +2507.133890 +2507.160896 +2507.193430 +2507.231459 +2507.258199 +2507.295361 +2507.325198 +2507.393263 +2507.436753 +2507.502787 +2507.605784 +2507.820969 +2507.862394 +2508.025231 +2508.092530 +2508.331957 +2508.545177 +2508.630858 +2508.715040 +2508.753202 +2508.801054 +2509.118536 +2509.245609 +2509.331457 +2509.471383 +2509.913407 +2510.051369 +2510.068952 +2510.195392 +2510.350903 +2510.369518 +2510.645508 +2510.806680 +2511.255997 +2511.685234 +2512.010242 +2512.070615 +2512.082902 +2512.549136 +2512.561956 +2512.582969 +2512.749702 +2512.846138 +2512.887430 +2512.936348 +2512.980970 +2513.059924 +2513.115369 +2513.178905 +2513.228156 +2513.281702 +2513.352964 +2513.414869 +2513.470414 +2513.515335 +2513.554796 +2513.608875 +2513.653897 +2513.702781 +2513.738412 +2513.780170 +2513.813137 +2513.858458 +2513.908508 +2513.953264 +2513.997719 +2514.032418 +2514.063420 +2514.101415 +2514.146304 +2514.196753 +2514.232384 +2514.279004 +2514.315834 +2514.349933 +2514.383433 +2514.425424 +2514.459424 +2514.490992 +2514.523659 +2514.568581 +2514.604845 +2514.646203 +2514.684665 +2514.710439 +2514.742540 +2514.780602 +2514.828254 +2514.869913 +2514.902713 +2514.937678 +2514.976439 +2515.013103 +2515.054828 +2515.087695 +2515.117631 +2515.154028 +2515.183965 +2515.213669 +2515.239942 +2515.273342 +2515.311271 +2515.351997 +2515.388893 +2515.421727 +2515.458890 +2515.492223 +2515.527621 +2515.562353 +2515.599849 +2515.669179 +2515.705543 +2515.738810 +2515.777438 +2515.809872 +2515.842439 +2515.880268 +2515.918796 +2515.952029 +2515.981234 +2516.020594 +2516.053528 +2516.088859 +2516.120794 +2516.154360 +2516.190824 +2516.222559 +2516.259189 +2516.293754 +2516.325922 +2516.361853 +2516.388726 +2516.426255 +2516.456758 +2516.490257 +2516.550564 +2516.583397 +2516.619228 +2516.653327 +2516.685429 +2516.715632 +2516.744236 +2516.770510 +2516.803477 +2516.868312 +2516.902811 +2516.935878 +2516.969111 +2517.003044 +2517.033813 +2517.058655 +2517.090223 +2517.116031 +2517.151695 +2517.180866 +2517.211336 +2517.241705 +2517.276204 +2517.307706 +2517.328651 +2517.369311 +2517.400813 +2517.432514 +2517.465048 +2517.492887 +2517.526287 +2517.561452 +2517.594752 +2517.625987 +2517.661252 +2517.698048 +2517.725388 +2517.757189 +2517.786393 +2517.817063 +2517.850529 +2517.881598 +2517.913766 +2517.947299 +2517.980266 +2518.010069 +2518.040572 +2518.072573 +2518.107938 +2518.141338 +2518.171574 +2518.203442 +2518.242270 +2518.279400 +2518.309969 +2518.346666 +2518.380499 +2518.415264 +2518.446100 +2518.485627 +2518.516895 +2518.554424 +2518.589423 +2518.622689 +2518.657321 +2518.692420 +2518.714498 +2518.749363 +2518.778001 +2518.810402 +2518.836276 +2518.872007 +2518.908137 +2518.944134 +2518.976502 +2519.012299 +2519.055922 +2519.088390 +2519.127850 +2519.166512 +2519.199945 +2519.232779 +2519.300911 +2519.331114 +2519.378500 +2519.417227 +2519.442802 +2519.478366 +2519.502942 +2519.532978 +2519.566978 +2519.607537 +2519.640171 +2519.671939 +2519.705705 +2519.739438 +2519.769109 +2519.806205 +2519.841370 +2519.875669 +2519.913864 +2519.949028 +2519.976434 +2520.013031 +2520.044133 +2520.076734 +2520.110167 +2520.135409 +2520.163647 +2520.199611 +2520.229747 +2520.261682 +2520.300976 +2520.334143 +2520.367077 +2520.398878 +2520.429814 +2520.471139 +2520.506537 +2520.541169 +2520.571439 +2520.606903 +2520.645198 +2520.681928 +2520.709734 +2520.743766 +2520.775901 +2520.814862 +2520.875901 +2520.915861 +2520.946363 +2520.972038 +2521.013496 +2521.050892 +2521.084225 +2521.124252 +2521.159084 +2521.187189 +2521.224585 +2521.257485 +2521.292617 +2521.329946 +2521.360649 +2521.396147 +2521.426250 +2521.455987 +2521.485524 +2521.522720 +2521.551824 +2521.585723 +2521.622453 +2521.658584 +2521.692250 +2521.722054 +2521.753489 +2521.793882 +2521.828447 +2521.858084 +2521.893449 +2521.925916 +2521.964877 +2521.991650 +2522.027814 +2522.054621 +2522.086289 +2522.126582 +2522.150758 +2522.177098 +2522.211530 +2522.238137 +2522.278830 +2522.316825 +2522.353155 +2522.394980 +2522.435839 +2522.476265 +2522.512895 +2522.550191 +2522.579962 +2522.623385 +2522.669872 +2522.714793 +2522.750624 +2522.801307 +2522.843331 +2522.893814 +2522.928579 +2522.963911 +2522.993747 +2523.051490 +2523.094613 +2523.122452 +2523.152189 +2523.190117 +2523.226747 +2523.265942 +2523.306901 +2523.348559 +2523.376731 +2523.406634 +2523.438735 +2523.477163 +2523.524683 +2523.562545 +2523.591183 +2523.631975 +2523.658382 +2523.688818 +2523.717823 +2523.758049 +2523.789684 +2523.825282 +2523.857116 +2523.904036 +2523.944429 +2523.976131 +2524.015957 +2524.043363 +2524.071169 +2524.104469 +2524.129111 +2524.163510 +2524.224482 +2524.273666 +2524.306933 +2524.339700 +2524.377296 +2524.417988 +2524.454285 +2524.505567 +2524.537535 +2524.564309 +2524.602537 +2524.678761 +2524.765341 +2524.876230 +2524.944028 +2524.998774 +2525.061244 +2525.124082 +2525.187118 +2525.238900 +2525.307098 +2525.376562 +2525.421184 +2525.499905 +2525.539566 +2525.585586 +2525.654484 +2525.679992 +2525.702602 +2525.818453 +2525.900038 +2525.974830 +2526.023581 +2526.133205 +2526.242162 +2526.308329 +2526.360610 +2526.466804 +2526.548489 +2526.586717 +2526.639398 +2526.745558 +2526.842561 +2526.893077 +2526.956880 +2527.014756 +2527.074396 +2527.122781 +2527.158379 +2527.215388 +2527.288149 +2527.343959 +2527.395674 +2527.434169 +2527.473796 +2527.526477 +2527.569467 +2527.638997 +2527.695674 +2527.746490 +2527.789547 +2527.824478 +2527.885384 +2527.944392 +2528.017086 +2528.073329 +2528.203599 +2528.288547 +2528.343792 +2528.407561 +2528.496872 +2528.536399 +2528.571797 +2528.626909 +2528.693142 +2528.756013 +2528.824644 +2528.858277 +2528.889246 +2528.969599 +2529.029239 +2529.068200 +2529.104764 +2529.178690 +2529.233668 +2529.274960 +2529.314787 +2529.362639 +2529.432003 +2529.494473 +2529.534200 +2529.568266 +2529.610457 +2529.681220 +2529.722345 +2529.758975 +2529.800201 +2529.829904 +2529.881919 +2529.933367 +2529.970397 +2530.013321 +2530.049251 +2530.086714 +2530.125742 +2530.163870 +2530.218682 +2530.257576 +2530.290743 +2530.321945 +2530.359940 +2530.407493 +2530.452015 +2530.493740 +2530.539927 +2530.583284 +2530.620580 +2530.646287 +2530.685681 +2530.722211 +2530.784083 +2530.835964 +2530.880253 +2530.921478 +2530.955211 +2530.996204 +2531.055078 +2531.119613 +2531.170629 +2531.208524 +2531.273026 +2531.320113 +2531.383516 +2531.431801 +2531.469963 +2531.520312 +2531.577155 +2531.630136 +2531.681584 +2531.722976 +2531.756343 +2531.796070 +2531.844155 +2531.887545 +2531.999000 +2532.054644 +2532.122410 +2532.174990 +2532.232033 +2532.442323 +2532.505526 +2532.532999 +2532.622809 +2532.710621 +2532.784014 +2532.821377 +2532.920944 +2533.029701 +2533.091273 +2533.153378 +2533.261969 +2533.333730 +2533.396301 +2533.450680 +2533.519977 +2533.621276 +2533.744353 +2533.843354 +2533.932997 +2534.014582 +2534.121808 +2534.241588 +2534.308222 +2534.413849 +2534.517579 +2534.574089 +2534.666663 +2534.734595 +2534.830532 +2534.876919 +2534.919510 +2535.033196 +2535.123905 +2535.154741 +2535.200562 +2535.220975 +2535.284245 +2535.402226 +2535.509885 +2535.575386 +2535.620674 +2535.696732 +2535.770425 +2535.805556 +2535.926602 +2535.982645 +2536.002359 +2536.076818 +2536.567260 +2536.635425 +2536.754373 +2536.858635 +2536.949344 +2537.007952 +2537.107952 +2537.179281 +2537.223503 +2537.281046 +2537.365395 +2537.445914 +2537.495864 +2537.546447 +2537.595065 +2537.668391 +2537.748445 +2537.837089 +2537.887872 +2537.936756 +2537.998028 +2538.059633 +2538.093266 +2538.126899 +2538.176982 +2538.214645 +2538.281011 +2538.354038 +2538.402790 +2538.452839 +2538.501091 +2538.566992 +2538.620438 +2538.671421 +2538.722403 +2538.766059 +2538.798593 +2538.842716 +2538.885273 +2538.928563 +2538.968557 +2538.995896 +2539.032659 +2539.079013 +2539.143914 +2539.192333 +2539.246245 +2539.289635 +2539.338486 +2539.391966 +2539.426531 +2539.497660 +2539.532059 +2539.578113 +2539.656834 +2539.740284 +2539.833757 +2539.875948 +2539.940550 +2540.044613 +2540.123434 +2540.185405 +2540.231159 +2540.303753 +2540.348608 +2540.379711 +2540.426164 +2540.493597 +2540.548275 +2540.600223 +2540.666124 +2540.723966 +2540.759963 +2540.801089 +2540.852804 +2540.904752 +2540.968788 +2541.031192 +2541.080110 +2541.133789 +2541.183673 +2541.214542 +2541.296193 +2541.356300 +2541.415940 +2541.464458 +2541.482640 +2541.501155 +2541.523599 +2541.542413 +2541.596393 +2541.656965 +2541.673049 +2541.711111 +2541.745743 +2541.782640 +2541.849240 +2541.896626 +2541.978910 +2542.024797 +2542.067355 +2542.106882 +2542.153235 +2542.198690 +2542.227361 +2542.263925 +2542.306981 +2542.356232 +2542.414607 +2542.463891 +2542.564757 +2542.632489 +2542.722898 +2542.777710 +2542.823564 +2542.885969 +2542.958230 +2543.014573 +2543.075712 +2543.144710 +2543.209012 +2543.249338 +2543.314972 +2543.331023 +2543.384636 +2543.449338 +2543.547406 +2543.613507 +2543.661159 +2543.751003 +2543.783304 +2543.842145 +2544.046940 +2544.108212 +2544.367952 +2544.464056 +2544.523729 +2544.651401 +2544.712074 +2544.821531 +2544.827825 +2544.914172 +2544.963456 +2545.069117 +2545.127425 +2545.235750 +2545.362157 +2545.437315 +2545.518334 +2545.602250 +2545.631087 +2545.648537 +2545.829122 +2545.842576 +2545.971646 +2545.998486 +2546.145073 +2546.293857 +2546.461789 +2546.571413 +2546.597986 +2546.901949 +2546.904280 +2546.908742 +2546.914403 +2546.946937 +2547.000883 +2547.018532 +2547.037246 +2547.063387 +2547.082801 +2547.088329 +2552.476069 +2553.350394 +2553.354623 +2554.052924 +2554.058651 +2554.224052 +2554.229813 +2554.249860 +2554.499510 +2554.509600 +2554.611431 +2554.638871 +2554.815028 +2554.835440 +2554.925717 +2554.945464 +2555.024984 +2555.057352 +2555.124285 +2555.167608 +2555.233475 +2555.290085 +2555.368507 +2555.409932 +2555.480095 +2555.541867 +2555.591917 +2555.658850 +2555.734141 +2555.766808 +2555.846628 +2555.906235 +2555.972536 +2556.049558 +2556.097277 +2556.164310 +2556.218456 +2556.266708 +2556.300840 +2556.328712 +2556.376764 +2556.432175 +2556.467607 +2556.483790 +2556.545129 +2556.588752 +2556.610597 +2556.684356 +2556.749325 +2556.816691 +2556.876864 +2556.907999 +2556.929877 +2556.976397 +2557.007799 +2557.037569 +2557.069371 +2557.116324 +2557.238568 +2557.303703 +2557.366607 +2557.396111 +2557.445128 +2557.511895 +2557.576630 +2557.644895 +2557.688751 +2557.728112 +2557.757882 +2557.805634 +2557.829277 +2557.967805 +2557.995044 +2558.593279 +2558.597408 +2558.601571 +2558.611894 +2558.732639 +2558.737568 +2558.746858 +2559.006465 +2559.016022 +2559.039166 +2559.061277 +2559.134504 +2559.165306 +2559.184487 +2559.212925 +2559.254783 +2559.332439 +2559.372266 +2559.420950 +2559.515156 +2559.567304 +2559.604067 +2559.649621 +2559.701203 +2559.738799 +2559.788915 +2559.834470 +2559.878259 +2559.930107 +2559.963940 +2559.990747 +2560.038799 +2560.067004 +2560.102202 +2560.138699 +2560.159944 +2560.209827 +2560.274463 +2560.321649 +2560.367636 +2560.420217 +2560.467902 +2560.510227 +2560.549587 +2560.579324 +2560.598538 +2560.636367 +2560.681455 +2560.701535 +2560.732071 +2560.773230 +2560.825977 +2560.890180 +2560.951085 +2560.993510 +2561.047655 +2561.091278 +2561.116753 +2561.148188 +2561.178491 +2561.198771 +2561.253749 +2561.276460 +2561.298704 +2561.344825 +2561.371265 +2561.415920 +2561.547622 +2561.591378 +2561.665470 +2561.709559 +2561.750352 +2561.805463 +2561.865004 +2561.914255 +2561.959509 +2562.019849 +2562.066835 +2562.113488 +2562.168300 +2562.200668 +2562.256179 +2562.302866 +2562.367434 +2562.473994 +2562.511990 +2562.544390 +2562.586548 +2562.614087 +2562.692775 +2562.749818 +2562.810957 +2562.858210 +2562.960541 +2563.031703 +2563.082552 +2563.141160 +2563.270397 +2563.296837 +2563.334566 +2563.379954 +2563.440160 +2563.469165 +2563.532335 +2563.665069 +2563.705328 +2563.770730 +2563.845388 +2563.956211 +2564.008025 +2564.114585 +2564.168431 +2564.217016 +2564.272860 +2564.408458 +2564.478987 +2564.517449 +2564.578954 +2564.645787 +2564.684315 +2564.736163 +2567.026737 +2567.028668 +2567.030666 +2567.033430 +2567.041356 +2567.357706 +2567.359804 +2567.362068 +2567.365798 +2567.592904 +2567.595334 +2567.597699 +2567.601462 +2567.814415 +2567.817212 +2567.820176 +2567.826470 +2567.954009 +2567.957372 +2567.961202 +2567.973489 +2568.089773 +2568.095401 +2568.103293 +2568.123139 +2568.170992 +2568.181814 +2568.214848 +2568.233995 +2568.255607 +2568.267328 +2568.310019 +2568.322273 +2568.352044 +2568.371224 +2568.400562 +2568.426436 +2568.475387 +2568.514747 +2568.561567 +2568.598297 +2568.617545 +2568.666629 +2568.704458 +2568.732529 +2568.771890 +2568.808853 +2568.838557 +2568.875986 +2568.910918 +2568.936259 +2568.962000 +2568.993468 +2569.012283 +2569.039422 +2569.067594 +2569.092236 +2569.170957 +2569.205389 +2569.231363 +2569.272988 +2569.311250 +2569.333495 +2569.389305 +2569.426968 +2569.486874 +2569.515879 +2569.556871 +2569.598263 +2569.629598 +2569.687141 +2569.714746 +2569.763997 +2569.809918 +2569.835559 +2569.885209 +2569.916478 +2569.956571 +2570.007853 +2570.021972 +2570.055938 +2570.089971 +2570.114979 +2570.155738 +2570.183444 +2570.198995 +2570.231229 +2570.276018 +2570.298129 +2570.314080 +2570.396897 +2570.436624 +2570.517010 +2570.625135 +2570.722571 +2570.776683 +2570.822704 +2570.848645 +2570.910216 +2570.945814 +2571.024568 +2571.077848 +2571.116243 +2571.155604 +2571.217742 +2571.250442 +2571.332827 +2571.375850 +2571.448810 +2571.497728 +2571.603422 +2571.620638 +2577.008745 +2577.022698 +2578.400419 +2579.178340 +2579.832851 +2579.835182 +2579.851433 +2579.859591 +2579.964353 +2580.209508 +2580.662254 +2580.673210 +2580.761855 +2580.830386 +2581.106543 +2582.014501 +2582.018164 +2582.022260 +2582.032316 +2582.091790 +2582.096785 +2582.156659 +2582.272176 +2582.327787 +2582.330218 +2582.331750 +2582.385729 +2582.387461 +2582.393255 +2582.450198 +2582.470611 +2582.534480 +2582.542572 +2582.551696 +2582.589925 +2583.424057 +2583.426321 +2583.428485 +2583.431982 +2583.543104 +2583.545835 +2583.548232 +2583.550996 +2583.556857 +2583.697916 +2583.699647 +2583.702445 +2583.704742 +2583.707506 +2583.716164 +2583.769344 +2583.771908 +2583.775438 +2583.778468 +2583.785928 +2583.829717 +2583.831582 +2583.841405 +2583.847100 +2583.957556 +2583.962817 +2584.352394 +2584.415531 +2584.419727 +2584.425887 +2584.430482 +2584.677235 +2584.683895 +2584.840572 +2584.853892 +2584.982130 +2585.023023 +2585.056889 +2585.081231 +2585.135843 +2585.166646 +2585.211967 +2585.270675 +2585.441570 +2585.534511 +2585.601743 +2585.639339 +2585.703941 +2585.771540 +2585.817860 +2585.842636 +2585.914564 +2586.022988 +2586.055522 +2586.724386 +2586.956521 +2587.010300 +2587.081529 +2587.203573 +2587.257786 +2587.410866 +2587.474835 +2587.679464 +2587.747029 +2587.861015 +2588.214095 +2588.340535 +2589.083425 +2589.523684 +2589.851456 +2590.142898 +2590.322684 +2590.421818 +2590.424149 +2590.465541 +2590.482325 +2590.489084 +2590.491782 +2590.558748 +2590.567839 +2590.584655 +2590.604236 +2590.606867 +2590.611529 +2596.472895 +2596.474793 +2596.476524 +2596.478622 +2596.481752 +2596.570763 +2596.572562 +2596.574426 +2596.576524 +2596.579122 +2596.583917 +2596.640993 +2596.646488 +2596.649085 +2596.651183 +2596.653514 +2596.657243 +2596.694639 +2596.697470 +2596.701466 +2596.704829 +2596.709691 +2597.333100 +2597.335165 +2597.338262 +2597.560240 +2597.562670 +2597.565035 +2597.568465 +2597.725874 +2597.728538 +2597.735131 +2597.869796 +2597.872893 +2597.876223 +2597.882051 +2598.028737 +2598.032334 +2598.036396 +2598.045520 +2598.171328 +2598.175091 +2598.180152 +2598.198134 +2598.265167 +2598.274924 +2598.308590 +2598.332300 +2598.370961 +2598.395970 +2598.427372 +2598.460672 +2598.490708 +2598.517082 +2598.551547 +2598.583082 +2598.611254 +2598.641424 +2598.675323 +2598.698434 +2598.726139 +2598.756442 +2598.823808 +2598.855976 +2598.890042 +2598.927604 +2598.961537 +2598.994670 +2599.026072 +2599.060704 +2599.101930 +2599.130734 +2599.162602 +2599.189076 +2599.218513 +2599.258240 +2599.296535 +2599.342322 +2599.371593 +2599.409955 +2599.479152 +2599.558140 +2599.630501 +2599.693837 +2602.629066 +2602.631097 +2602.632995 +2602.635259 +2602.638456 +2602.735359 +2602.737990 +2602.740554 +2602.742719 +2602.745116 +2602.749079 +2602.825136 +2602.827667 +2602.833361 +2602.881546 +2602.884443 +2602.886575 +2602.889405 +2602.894333 +2602.936791 +2602.938722 +2602.941386 +2602.946648 +2602.995399 +2602.999162 +2603.003091 +2603.007986 +2603.014713 +2603.606887 +2603.609218 +2603.615112 +2603.763364 +2603.765695 +2603.772821 +2603.948112 +2603.950843 +2603.953906 +2603.958701 +2604.169823 +2604.172887 +2604.175917 +2604.182777 +2604.350443 +2604.353506 +2604.357069 +2604.365761 +2604.530995 +2604.534492 +2604.539020 +2604.591634 +2604.609350 +2604.642051 +2604.714345 +2604.726033 +2604.770356 +2604.787039 +2604.817908 +2604.863596 +2604.885807 +2604.923602 +2604.963795 +2605.000758 +2605.032227 +2605.084341 +2605.120339 +2605.238287 +2605.283542 +2605.331927 +2605.382443 +2605.413545 +2605.452972 +2605.485540 +2605.515110 +2605.543482 +2605.576648 +2605.611414 +2605.651041 +2605.677115 +2606.043548 +2606.136954 +2606.612079 +2606.648109 +2606.706850 +2606.732958 +2610.172448 +2610.176211 +2610.178209 +2610.181206 +2610.319068 +2610.322864 +2610.327460 +2610.335651 +2610.362957 +2610.495025 +2610.499654 +2610.568585 +2610.570283 +2610.613973 +2610.617935 +2611.072547 +2611.396756 +2611.750868 +2611.757195 +2612.016003 +2612.137847 +2612.184334 +2612.345373 +2612.489795 +2612.568416 +2612.669149 +2612.886864 +2612.938246 +2613.098419 +2613.455362 +2613.504779 +2613.546571 +2613.574043 +2613.627889 +2613.660223 +2613.719464 +2614.539876 +2614.561654 +2614.614468 +2614.620496 +2614.880802 +2615.204111 +2615.217565 +2615.448567 +2615.451963 +2615.627821 +2615.649898 +2616.945202 +2616.947699 +2616.952395 +2617.088325 +2617.090923 +2617.096384 +2617.099481 +2617.105841 +2617.210003 +2617.211169 +2617.212767 +2617.214432 +2617.225821 +2617.277869 +2617.279700 +2617.291089 +2617.344336 +2617.350196 +2617.398715 +2617.458621 +2617.461185 +2617.468078 +2617.475604 +2619.717660 +2619.720024 +2619.722189 +2619.724153 +2619.726584 +2619.731280 +2620.014496 +2620.016461 +2620.018459 +2620.020657 +2620.024886 +2620.079131 +2620.085325 +2620.087823 +2620.090753 +2620.095848 +2620.146830 +2620.150194 +2620.217693 +2620.224453 +2620.232278 +2620.274736 +2620.276101 +2620.285325 +2620.349494 +2620.360450 +2620.407669 +2620.409268 +2620.411432 +2620.472071 +2620.475834 +2620.480563 +2620.490753 +2620.530646 +2620.533244 +2620.540869 +2620.555155 +2621.071738 +2621.074036 +2621.076233 +2621.079963 +2621.279596 +2621.282127 +2621.284725 +2621.288787 +2621.465610 +2621.468507 +2621.471338 +2621.477698 +2621.632876 +2621.635807 +2621.639203 +2621.645930 +2621.778930 +2621.782826 +2621.787754 +2621.841001 +2621.868107 +2621.874001 +2621.878031 +2621.960581 +2621.972203 +2621.997544 +2622.000475 +2622.078796 +2622.097411 +2622.147927 +2622.174767 +2622.220654 +2622.254287 +2622.290218 +2622.334540 +2622.375400 +2622.417224 +2622.454321 +2622.506302 +2622.544663 +2622.589718 +2622.631643 +2622.661979 +2622.696944 +2622.722352 +2622.762445 +2622.796345 +2622.844264 +2622.897877 +2623.002505 +2623.049725 +2623.086787 +2623.126614 +2623.177830 +2623.314027 +2623.554253 +2623.685122 +2623.791948 +2623.901971 +2623.960180 +2624.074932 +2624.116823 +2624.444495 +2624.570136 +2624.794878 +2624.831508 +2624.868371 +2624.985953 +2625.262510 +2625.387484 +2625.436136 +2625.471800 +2625.525613 +2625.560578 +2625.613325 +2625.650288 +2625.692446 +2625.745293 +2625.778826 +2625.829975 +2625.875363 +2625.926678 +2625.973564 +2626.014990 +2626.072332 +2626.116288 +2626.184054 +2626.219052 +2626.268802 +2626.322948 +2626.367803 +2626.427577 +2626.471166 +2626.512192 +2626.570700 +2626.640830 +2626.707397 +2626.730074 +2626.799937 +2626.872798 +2626.930174 +2626.989214 +2627.183353 +2627.235668 +2627.320050 +2627.364339 +2627.448088 +2627.483420 +2627.598338 +2627.645324 +2627.707695 +2627.753416 +2627.833270 +2627.863606 +2627.886117 +2627.936133 +2628.098970 +2628.146889 +2630.629337 +2630.631136 +2630.632900 +2630.635032 +2630.638395 +2630.748252 +2630.750116 +2630.752114 +2630.754545 +2630.758708 +2630.896936 +2630.898068 +2630.899933 +2630.901865 +2630.903929 +2630.907625 +2630.972760 +2630.975091 +2630.977289 +2630.979920 +2630.985248 +2631.028604 +2631.030602 +2631.034732 +2631.037962 +2631.043023 +2631.087712 +2631.092640 +2631.095038 +2631.098734 +2631.150216 +2631.153613 +2631.162171 +2631.168697 +2631.225274 +2631.232800 +2631.236163 +2631.245754 +2631.294372 +2631.300865 +2631.304095 +2631.308724 +2632.000165 +2632.002529 +2632.006292 +2632.375223 +2632.383148 +2632.658340 +2632.667231 +2632.819145 +2632.826804 +2633.140590 +2633.147750 +2633.320144 +2633.449315 +2633.654443 +2633.782514 +2633.792105 +2633.847982 +2633.906823 +2633.910753 +2633.985245 +2634.073590 +2634.440822 +2634.776852 +2634.935527 +2635.042320 +2635.241088 +2635.281814 +2635.381514 +2635.656705 +2635.817477 +2635.901060 +2635.976651 +2636.019542 +2636.171789 +2636.253108 +2636.427134 +2636.690770 +2636.754806 +2636.846181 +2643.119768 +2643.125495 +2643.127726 +2643.300886 +2643.302685 +2643.310144 +2643.313707 +2643.373614 +2643.377044 +2643.444476 +2643.590929 +2643.652435 +2643.656863 +2643.756131 +2643.759927 +2643.765954 +2646.993657 +2646.995621 +2646.999751 +2647.006477 +2647.059557 +2647.061356 +2647.065818 +2647.068382 +2647.072012 +2647.117799 +2647.123726 +2647.128322 +2647.178139 +2647.190293 +2647.193956 +2647.228322 +2647.283467 +2651.148031 +2651.206673 +2651.299713 +2651.926086 +2651.928084 +2651.930015 +2651.934045 +2652.121257 +2652.125420 +2652.131347 +2652.200278 +2652.207737 +2652.259252 +2652.260784 +2652.262349 +2652.264214 +2652.266578 +2652.269675 +2652.336508 +2652.340371 +2652.343435 +2652.346299 +2652.352026 +2652.362482 +2652.411267 +2652.413898 +2652.416462 +2652.419592 +2652.423322 +2652.492286 +2652.494750 +2652.505406 +2652.567144 +2652.572439 +2652.575669 +2652.578866 +2652.585559 +2652.639538 +2652.643568 +2652.645766 +2652.649096 +2652.719592 +2652.721257 +2652.723521 +2652.727450 +2652.730914 +2652.806938 +2652.810700 +2652.813831 +2652.817993 +2652.960184 +2652.962482 +2652.964946 +2652.968276 +2654.499943 +2654.502007 +2654.503806 +2654.506003 +2654.509766 +2655.132776 +2655.134308 +2655.135906 +2655.137438 +2655.139536 +2655.142400 +2655.276332 +2655.278164 +2655.280129 +2655.282127 +2655.284358 +2655.287088 +2655.361081 +2655.362146 +2655.362746 +2655.365510 +2655.367574 +2655.370238 +2655.374800 +2655.516892 +2655.518790 +2655.520821 +2655.523185 +2655.527548 +2655.599009 +2655.604171 +2655.666475 +2655.669073 +2655.672303 +2655.676399 +2655.736105 +2655.739702 +2655.745230 +2655.751390 +2655.894447 +2655.896811 +2655.898976 +2655.901207 +2655.904570 +2657.354152 +2657.356217 +2657.358049 +2657.360812 +2657.567406 +2657.569470 +2657.571468 +2657.574432 +2657.625314 +2657.630909 +2657.634239 +2657.638268 +2657.702803 +2657.706367 +2657.710096 +2657.717655 +2657.765541 +2657.767872 +2657.777928 +2657.784888 +2657.834738 +2657.837569 +2657.842763 +2657.846360 +2657.922550 +2657.925547 +2657.928777 +2657.933239 +2657.998041 +2658.001538 +2658.007132 +2658.018221 +2658.082224 +2658.085287 +2658.088551 +2658.096742 +2658.151055 +2658.155284 +2658.161711 +2658.338567 +2658.341564 +2658.349123 +2659.237700 +2659.241497 +2659.245959 +2659.563607 +2659.568070 +2659.572765 +2659.810827 +2659.814823 +2659.820017 +2660.147456 +2660.152984 +2660.159644 +2660.729540 +2660.733903 +2661.050253 +2661.058411 +2661.387415 +2661.403333 +2661.610592 +2661.615121 +2661.618018 +2661.723013 +2661.802267 +2661.812257 +2661.891311 +2661.957345 +2662.043758 +2662.147821 +2662.277757 +2665.195870 +2665.197868 +2665.199766 +2665.202097 +2665.206526 +2665.497135 +2665.501097 +2665.503029 +2665.504894 +2665.506925 +2665.509356 +2665.601230 +2665.603428 +2665.605460 +2665.608157 +2665.614118 +2665.695303 +2665.697767 +2665.700731 +2665.705826 +2665.737860 +2665.740891 +2665.744321 +2665.864933 +2665.866798 +2665.869595 +2665.875023 +2665.929302 +2665.931467 +2665.934896 +2666.002895 +2666.004294 +2666.006325 +2666.009222 +2666.012785 +2666.079885 +2666.082182 +2666.086978 +2666.090374 +2666.147350 +2666.149748 +2666.153311 +2666.160104 +2666.223907 +2666.226871 +2666.230134 +2667.882880 +2667.886709 +2667.888408 +2667.893403 +2668.157572 +2668.279749 +2668.281614 +2668.355640 +2668.359669 +2668.424305 +2668.515114 +2668.521640 +2668.581980 +2668.585610 +2668.588540 +2668.675919 +2668.685277 +2668.745083 +2668.825669 +2668.831364 +2668.907654 +2668.991537 +2668.996798 +2669.001327 +2669.081813 +2669.084344 +2669.091570 +2671.008151 +2671.011781 +2671.013579 +2671.015611 +2671.018075 +2671.085840 +2671.089770 +2671.091934 +2671.093966 +2671.097029 +2671.268158 +2671.269856 +2671.276316 +2672.138686 +2672.140152 +2672.142183 +2672.143881 +2672.148976 +2672.342083 +2673.610114 +2673.611912 +2673.613677 +2673.615675 +2673.617673 +2673.620936 +2673.713443 +2673.715275 +2673.717240 +2673.719404 +2673.722501 +2673.946410 +2673.948741 +2673.950573 +2673.952571 +2673.954735 +2673.960097 +2674.121835 +2674.123766 +2674.125764 +2674.127862 +2674.131558 +2674.232690 +2674.240682 +2674.243413 +2674.329061 +2674.332257 +2674.334522 +2674.337352 +2674.344279 +2675.631623 +2675.720468 +2675.907214 +2675.909911 +2675.911676 +2675.916438 +2675.976978 +2675.980907 +2675.983604 +2675.985935 +2676.065855 +2676.068253 +2676.134620 +2676.139115 +2676.143311 +2676.227727 +2676.233121 +2676.236318 +2676.502984 +2676.506847 +2677.435151 +2677.441945 +2677.448272 +2677.836416 +2678.133885 +2678.136816 +2678.138814 +2678.141078 +2678.413772 +2678.417368 +2678.419333 +2678.421597 +2678.424894 +2678.952732 +2678.954830 +2678.956861 +2678.959159 +2678.964387 +2679.351400 +2679.353731 +2679.357793 +2679.359858 +2679.485699 +2679.487763 +2679.489994 +2679.496821 +2680.138412 +2680.140377 +2680.142308 +2680.144206 +2680.146504 +2680.149135 +2680.689460 +2680.767749 +2680.770379 +2680.772278 +2680.774375 +2680.777705 +2680.922827 +2680.926723 +2680.929254 +2681.187695 +2681.189527 +2681.191491 +2681.193423 +2681.195088 +2681.198284 +2681.460822 +2681.463153 +2681.464984 +2681.467082 +2681.470146 +2681.727555 +2681.731384 +2681.735047 +2681.737678 +2681.854328 +2683.082998 +2683.086361 +2683.087826 +2683.089991 +2683.092522 +2683.246434 +2683.250563 +2683.252695 +2683.256291 +2683.333214 +2683.335046 +2683.337143 +2683.339042 +2683.345302 +2683.470577 +2683.472408 +2683.474206 +2683.479368 +2683.552694 +2683.565948 +2683.572574 +2683.577536 +2683.614532 +2683.627719 +2683.630883 +2683.634879 +2683.739141 +2683.742404 +2683.885894 +2683.887726 +2683.889857 +2683.893287 +2683.895684 +2684.666479 +2684.669010 +2684.671441 +2684.673872 +2684.677036 +2684.841205 +2684.874205 +2684.876569 +2684.880332 +2684.953292 +2684.962583 +2684.967145 +2685.042237 +2685.044235 +2685.046799 +2685.050595 +2685.210435 +2685.213199 +2685.215963 +2685.218161 +2685.224055 +2685.274171 +2685.278667 +2685.438240 +2685.442902 +2685.448796 +2685.756055 +2685.758819 +2685.761284 +2686.053724 +2686.057287 +2686.059718 +2686.062149 +2686.066078 +2686.147830 +2686.149895 +2686.153857 +2686.158286 +2686.362548 +2686.364413 +2686.367077 +2686.369508 +2686.390887 +2686.678099 +2686.680730 +2686.683261 +2686.686424 +2687.068908 +2687.071605 +2687.073670 +2687.076400 +2687.172937 +2687.175435 +2687.178232 +2687.181762 +2687.264712 +2687.269008 +2687.272005 +2687.275168 +2687.620922 +2687.624985 +2687.626983 +2687.630646 +2688.087755 +2688.089686 +2688.092450 +2688.094515 +2688.096979 +2688.408101 +2688.410598 +2688.412763 +2688.415393 +2688.573835 +2688.575866 +2688.577931 +2688.580095 +2688.582859 +2688.588553 +2688.932409 +2688.934940 +2688.936805 +2688.938770 +2688.941101 +2688.946462 +2689.424617 +2689.426981 +2689.428779 +2689.433574 +2690.078895 +2690.080460 +2690.082192 +2690.084223 +2690.086321 +2690.092182 +2690.288252 +2690.290716 +2690.292748 +2690.294812 +2690.297709 +2690.677462 +2690.680126 +2691.040166 +2691.470935 +2691.475064 +2692.115523 +2692.119919 +2692.556848 +2692.873131 +2692.879825 +2693.821615 +2693.823746 +2694.097372 +2694.104099 +2694.380955 +2694.619017 +2694.621315 +2694.708228 +2694.713156 +2694.798504 +2694.808527 +2695.619515 +2695.621680 +2695.623778 +2695.625909 +2695.629006 +2696.971895 +2696.976524 +2696.978255 +2696.980520 +2696.985382 +2697.212721 +2697.215851 +2697.217915 +2697.223177 +2698.320046 +2698.322143 +2698.324408 +2698.329170 +2698.568197 +2699.248316 +2699.254011 +2699.256442 +2699.446684 +2699.448782 +2699.452712 +2699.455942 +2699.730833 +2699.733064 +2699.737593 +2699.739924 +2699.744520 +2700.073690 +2700.076088 +2700.078152 +2700.080317 +2700.085745 +2700.323906 +2700.327403 +2700.329368 +2700.331465 +2700.334462 +2700.456673 +2700.458638 +2700.461002 +2700.463267 +2700.587975 +2700.589607 +2700.591372 +2700.593170 +2700.595468 +2700.598365 +2700.957805 +2700.960203 +2700.962001 +2700.964165 +2700.967462 +2701.272956 +2701.275088 +2701.277052 +2701.279350 +2701.727535 +2701.730265 +2701.731730 +2701.735726 +2703.029332 +2703.031363 +2703.035492 +2703.037457 +2703.041053 +2703.122705 +2703.124403 +2703.127067 +2703.129198 +2703.131529 +2703.135092 +2703.374486 +2703.376917 +2703.378982 +2703.381512 +2703.387340 +2704.048511 +2704.051708 +2704.053440 +2704.055338 +2704.057969 +2704.707851 +2704.710282 +2704.712480 +2704.714511 +2704.717109 +2704.833825 +2705.032926 +2705.035257 +2705.037088 +2705.039386 +2705.043715 +2705.338687 +2705.341284 +2705.343115 +2705.345247 +2705.347411 +2705.687171 +2705.689402 +2705.691167 +2705.695296 +2705.699126 +2706.368189 +2706.375715 +2708.237052 +2708.309180 +2708.426196 +2708.428261 +2708.430259 +2708.433056 +2708.704251 +2708.706382 +2708.708613 +2708.717038 +2708.901520 +2708.903218 +2708.904850 +2708.906815 +2708.909113 +2708.912276 +2709.007947 +2709.016039 +2709.081806 +2709.088100 +2709.095892 +2709.271616 +2709.274247 +2709.304517 +2709.369485 +2709.371849 +2709.373681 +2709.375512 +2709.380274 +2709.518269 +2709.525795 +2709.620101 +2709.629958 +2709.738749 +2709.743211 +2709.752901 +2709.834153 +2709.836684 +2709.838982 +2709.997956 +2709.999355 +2710.001486 +2710.005781 +2710.009245 +2710.208512 +2710.210610 +2710.391062 +2710.393660 +2710.396723 +2711.159460 +2711.162024 +2711.166353 +2715.623325 +2715.633248 +2715.635047 +2715.636978 +2715.639842 +2715.651430 +2715.707141 +2715.710038 +2715.712869 +2715.717164 +2715.761886 +2715.764317 +2715.769279 +2715.773874 +2715.815566 +2715.829352 +2715.842372 +2716.070411 +2716.072742 +2716.074840 +2716.078036 +2716.243138 +2716.245868 +2716.248632 +2716.252562 +2716.558289 +2716.561286 +2716.564050 +2716.568679 +2716.727819 +2716.730750 +2716.734080 +2716.738342 +2716.857390 +2716.861419 +2716.868379 +2716.908572 +2717.000513 +2717.099947 +2717.117662 +2717.163350 +2717.190589 +2717.301545 +2717.351961 +2717.485061 +2717.513799 +2717.616030 +2717.686526 +2717.757522 +2717.937175 +2718.038974 +2718.118860 +2718.276236 +2718.441271 +2718.459652 +2718.602443 +2720.285658 +2720.289621 +2720.292151 +2720.294582 +2720.299178 +2720.335608 +2720.343567 +2720.346031 +2720.388622 +2720.444033 +2720.529014 +2720.531112 +2720.533776 +2721.652357 +2721.655487 +2721.684325 +2721.690085 +2721.795313 +2722.797410 +2725.366672 +2725.370302 +2725.374298 +2725.376529 +2725.380025 +2725.443229 +2725.450754 +2725.452786 +2725.459379 +2725.512060 +2725.517221 +2725.579958 +2725.584321 +2725.586752 +2725.590115 +2725.647657 +2725.649222 +2725.651187 +2725.653318 +2725.725080 +2725.728543 +2725.731940 +2725.735203 +2725.741896 +2725.798573 +2725.802402 +2725.808396 +2725.860644 +2725.863941 +2725.869002 +2725.873165 +2727.550053 +2727.552617 +2727.554482 +2727.556680 +2727.561142 +2728.014355 +2728.016619 +2728.018551 +2728.020482 +2728.022647 +2728.182187 +2728.184818 +2728.186749 +2728.188747 +2728.191411 +2728.198371 +2728.263739 +2728.265237 +2728.269266 +2728.271830 +2728.274395 +2728.280555 +2729.514986 +2729.516751 +2729.519015 +2729.522412 +2730.350017 +2730.352081 +2730.354079 +2730.356177 +2730.360207 +2730.952480 +2730.958474 +2730.960506 +2730.964435 +2731.140958 +2731.142857 +2731.144688 +2731.146753 +2731.149750 +2731.278221 +2731.350449 +2731.352547 +2731.354445 +2731.356609 +2731.358541 +2731.360838 +2731.607158 +2731.609390 +2731.611188 +2731.613219 +2732.299099 +2732.348350 +2732.350747 +2732.352745 +2732.354743 +2732.356841 +2732.360671 +2733.194370 +2733.264799 +2733.266697 +2733.268362 +2733.270127 +2733.272192 +2733.274756 +2733.747649 +2733.749947 +2733.751945 +2733.754176 +2733.759770 +2733.893670 +2733.895734 +2733.898332 +2733.900030 +2733.902594 +2734.051878 +2734.053843 +2734.056040 +2734.057872 +2734.060436 +2734.655241 +2734.658338 +2734.660302 +2734.662400 +2734.911118 +2734.914082 +2734.916046 +2734.918111 +2734.920975 +2735.002693 +2735.004325 +2735.006056 +2735.008154 +2735.010185 +2735.014581 +2735.102626 +2735.104757 +2735.107621 +2735.109886 +2735.112916 +2735.274554 +2735.277285 +2735.279016 +2735.281314 +2735.284045 +2735.604191 +2735.608320 +2735.610151 +2735.612849 +2738.530095 +2738.531993 +2738.534125 +2738.760831 +2738.762463 +2739.103455 +2739.107717 +2739.109815 +2739.112912 +2739.927363 +2739.931792 +2739.933823 +2739.935788 +2739.937819 +2739.942049 +2740.384339 +2740.390666 +2740.394263 +2740.592531 +2740.595128 +2740.597026 +2740.598924 +2740.601988 +2741.066290 +2741.068554 +2741.072217 +2741.392064 +2741.393929 +2741.400988 +2741.479210 +2741.482307 +2741.661727 +2741.731224 +2741.815373 +2741.880608 +2741.958763 +2741.967255 +2742.031590 +2742.039516 +2742.121867 +2742.132589 +2742.303218 +2742.310744 +2742.385802 +2742.388400 +2742.403684 +2742.510344 +2742.649239 +2742.651803 +2742.849671 +2742.852702 +2742.855466 +2743.029025 +2743.032488 +2743.036384 +2743.044510 +2743.218835 +2743.222864 +2743.228759 +2743.335918 +2743.343510 +2743.372148 +2743.430057 +2743.472381 +2743.502318 +2743.537250 +2743.591495 +2743.619368 +2743.674646 +2743.713440 +2743.758861 +2743.806747 +2743.830956 +2743.905348 +2743.936250 +2744.031555 +2744.060393 +2744.114705 +2744.191628 +2744.232487 +2744.334518 +2744.412107 +2744.464755 +2744.523629 +2744.590063 +2744.646639 +2744.718068 +2744.786566 +2744.828257 +2744.896722 +2744.947571 +2745.019200 +2745.077108 +2745.124228 +2745.166053 +2745.215836 +2745.273612 +2745.325127 +2745.379772 +2745.721264 +2746.100817 +2746.223394 +2746.537913 +2747.164752 +2747.366150 +2747.424758 +2747.588827 +2747.638444 +2747.680735 +2747.728255 +2747.778671 +2747.824558 +2747.870945 +2747.919197 +2747.967149 +2748.021128 +2748.075107 +2748.117731 +2748.160655 +2748.202047 +2748.252530 +2748.287661 +2748.334381 +2748.375906 +2748.416266 +2748.451630 +2748.492922 +2748.529885 +2748.566382 +2748.615367 +2748.653095 +2748.697185 +2748.740308 +2748.775007 +2748.823991 +2748.855726 +2748.888427 +2748.923292 +2748.955826 +2748.992422 +2749.041673 +2749.075872 +2749.121060 +2749.166448 +2749.217963 +2749.264250 +2749.303278 +2749.344970 +2749.388659 +2749.417164 +2749.462718 +2749.506774 +2749.541073 +2749.575106 +2749.605475 +2749.647134 +2749.678536 +2749.721593 +2749.754593 +2749.793754 +2749.871043 +2749.903444 +2749.946467 +2749.985428 +2750.021159 +2750.062285 +2750.097250 +2750.130583 +2750.171176 +2750.204443 +2750.288092 +2750.317996 +2750.358555 +2750.392621 +2750.424522 +2750.467912 +2750.501911 +2750.533447 +2750.571775 +2750.611735 +2750.648831 +2750.685594 +2750.719094 +2750.751828 +2750.790856 +2750.828917 +2750.867812 +2750.903809 +2750.943403 +2750.972107 +2751.005541 +2751.041338 +2751.070609 +2751.104508 +2751.136576 +2751.169743 +2751.200912 +2751.236976 +2751.276703 +2751.302810 +2751.344002 +2751.376902 +2751.414098 +2751.448264 +2751.489490 +2751.526186 +2751.561617 +2751.595250 +2751.630415 +2751.663049 +2751.696416 +2751.721058 +2751.746965 +2751.772606 +2751.807338 +2751.832080 +2751.866712 +2751.894884 +2751.933478 +2751.971640 +2752.006938 +2752.038274 +2752.076202 +2752.143601 +2752.186825 +2752.216895 +2752.262549 +2752.356588 +2752.386259 +2752.428183 +2752.463848 +2752.508636 +2752.542069 +2752.609835 +2752.647097 +2752.683228 +2752.742169 +2752.789555 +2752.833211 +2752.887623 +2752.925685 +2752.984660 +2753.050693 +2753.088223 +2753.186191 +2753.231346 +2753.313164 +2753.372605 +2753.430846 +2753.467776 +2753.518192 +2753.563513 +2753.657986 +2753.699644 +2753.753124 +2753.805871 +2753.895947 +2753.998012 +2754.076300 +2754.115494 +2754.174668 +2754.228215 +2754.293516 +2754.342800 +2754.368108 +2754.439403 +2754.482227 +2754.590019 +2754.610732 +2754.703672 +2754.757285 +2754.799310 +2754.846296 +2754.878098 +2754.931644 +2754.989819 +2755.047595 +2755.107435 +2755.201274 +2755.310898 +2755.396978 +2755.415826 +2755.474534 +2755.577964 +2755.633874 +2755.703405 +2755.749092 +2755.782559 +2755.815493 +2755.873934 +2755.938203 +2756.009931 +2756.056252 +2756.099275 +2756.147627 +2756.216524 +2756.289818 +2756.501739 +2756.683823 +2756.959348 +2758.276696 +2758.298674 +2758.403302 +2758.423615 +2758.544994 +2758.553419 +2758.594977 +2758.624414 +2758.665173 +2758.695543 +2758.732672 +2758.759379 +2758.783588 +2758.821450 +2758.849689 +2758.881956 +2758.909928 +2758.947258 +2758.983088 +2759.015056 +2759.045193 +2759.078227 +2759.110261 +2759.148390 +2759.176029 +2759.204400 +2759.235036 +2759.269768 +2759.306365 +2759.337301 +2759.369269 +2759.392479 +2759.422782 +2759.452152 +2759.486584 +2759.517687 +2759.546325 +2759.578393 +2759.609262 +2759.639798 +2759.673631 +2759.706331 +2759.736634 +2759.771266 +2759.801070 +2759.836035 +2759.868602 +2759.900137 +2759.936467 +2759.968835 +2760.005265 +2760.039731 +2760.068269 +2760.107396 +2760.144526 +2760.174063 +2760.211392 +2760.290213 +2760.324013 +2760.355415 +2760.390846 +2760.420483 +2760.450120 +2760.485385 +2760.523247 +2760.561275 +2760.589414 +2760.621349 +2760.658611 +2760.717619 +2760.756214 +2760.885617 +2760.911758 +2760.949920 +2761.010459 +2761.040096 +2761.134002 +2761.350652 +2761.383652 +2761.411191 +2761.640062 +2761.936132 +2762.052416 +2762.118550 +2762.315852 +2762.810158 +2762.843258 +2762.873361 +2762.937830 +2762.998802 +2763.093507 +2763.159774 +2763.408192 +2763.467200 +2763.715651 +2763.771628 +2763.935531 +2763.970996 +2764.040892 +2764.289344 +2764.386180 +2764.523542 +2764.684115 +2764.822776 +2764.855377 +2764.911587 +2764.965300 +2765.065467 +2765.130402 +2765.285613 +2765.319512 +2765.448983 +2765.516315 +2765.675822 +2765.708257 +2765.819678 +2765.895636 +2765.928336 +2766.004360 +2766.314983 +2766.422009 +2766.515349 +2766.608855 +2766.657307 +2766.732731 +2766.767530 +2766.800130 +2766.832398 +2766.912984 +2767.049414 +2767.180150 +2767.250013 +2767.285944 +2767.315215 +2767.360270 +2767.405924 +2767.446050 +2767.488941 +2767.532064 +2767.572124 +2767.597798 +2767.635661 +2767.665031 +2767.702793 +2767.778218 +2767.820675 +2767.853243 +2767.884412 +2767.913383 +2767.943419 +2767.976386 +2768.008954 +2768.047948 +2768.083246 +2768.120375 +2768.147681 +2768.185244 +2768.225071 +2768.255174 +2768.287841 +2768.330698 +2768.362466 +2768.387408 +2768.434361 +2768.459436 +2768.490671 +2768.521108 +2768.568427 +2768.610918 +2768.645117 +2768.680748 +2768.713115 +2768.753342 +2768.787075 +2768.835593 +2768.875320 +2768.917178 +2768.954674 +2768.983312 +2769.020841 +2769.072655 +2769.145349 +2769.198330 +2769.234560 +2769.279149 +2769.332495 +2769.382678 +2769.477017 +2769.510650 +2769.602059 +2769.934426 +2769.967859 +2770.414279 +2770.593167 +2770.631195 +2770.663496 +2770.692301 +2770.727199 +2770.775185 +2771.042550 +2771.073253 +2771.129164 +2771.403855 +2771.473119 +2771.772520 +2771.842350 +2772.158267 +2772.190501 +2772.451040 +2772.527764 +2772.695362 +2772.847011 +2772.879611 +2772.915575 +2772.959098 +2773.016241 +2773.122035 +2773.154569 +2773.328728 +2773.434323 +2773.482441 +2773.511978 +2773.660197 +2773.768355 +2773.802787 +2773.861395 +2773.941215 +2774.005584 +2774.062594 +2774.111012 +2774.190699 +2774.266257 +2774.340049 +2774.386103 +2774.432224 +2774.508914 +2774.588967 +2774.641781 +2774.706849 +2774.736453 +2774.776080 +2774.827561 +2774.879243 +2774.943046 +2774.987535 +2775.027928 +2775.063492 +2775.101587 +2775.159463 +2775.213841 +2775.272150 +2775.311943 +2775.359396 +2775.407814 +2775.451670 +2775.500788 +2775.546275 +2775.579609 +2775.618137 +2775.665056 +2775.705649 +2775.754500 +2775.800521 +2775.842046 +2775.879142 +2775.927194 +2775.987767 +2776.047141 +2776.231090 +2776.457030 +2776.680940 +2776.784503 +2776.857263 +2776.895591 +2776.926627 +2777.064822 +2777.131389 +2777.210443 +2777.243143 +2777.280739 +2777.594092 +2777.779440 +2777.852434 +2777.921931 +2778.038181 +2778.281704 +2778.470182 +2778.618900 +2778.776608 +2778.923295 +2778.994957 +2779.024793 +2779.078706 +2779.221696 +2779.301317 +2779.385899 +2779.602349 +2779.705312 +2779.793557 +2779.998652 +2780.029987 +2780.071912 +2780.143440 +2780.187896 +2780.224759 +2780.231619 +2780.271246 +2780.363154 +2780.505811 +2780.600017 +2780.823826 +2780.872044 +2781.133582 +2781.216832 +2781.456493 +2781.854727 +2781.957524 +2781.998916 +2782.251164 +2782.475905 +2782.519029 +2782.561520 +2782.635246 +2782.701979 +2782.733714 +2782.819761 +2782.904177 +2783.030683 +2783.066215 +2783.111103 +2783.457823 +2783.502245 +2783.581132 +2783.653060 +2783.766613 +2783.853427 +2783.977569 +2784.055957 +2784.101145 +2784.138907 +2784.225521 +2784.263516 +2784.304675 +2784.344502 +2784.462184 +2784.622224 +2784.696116 +2784.753126 +2784.806206 +2784.847864 +2784.896815 +2784.947332 +2784.993119 +2785.057022 +2785.095916 +2785.144634 +2785.189389 +2785.246432 +2785.292719 +2785.343668 +2785.384794 +2785.443402 +2785.492186 +2785.540471 +2785.585992 +2785.634644 +2785.671240 +2785.720524 +2785.749262 +2785.797314 +2785.834410 +2785.873338 +2785.909135 +2785.942169 +2785.987624 +2786.028782 +2786.069475 +2786.104174 +2786.160684 +2786.195316 +2786.231746 +2786.273637 +2786.302009 +2786.341536 +2786.378965 +2786.430580 +2786.481229 +2786.516527 +2786.557620 +2786.587756 +2786.644433 +2786.679498 +2786.713097 +2786.738738 +2786.767043 +2786.789088 +2786.829314 +2786.900110 +2787.002974 +2787.201175 +2787.376567 +2787.488255 +2787.585924 +2787.723752 +2787.772970 +2787.935873 +2787.972237 +2788.124618 +2788.220189 +2788.268807 +2788.531311 +2788.713295 +2788.947461 +2789.228779 +2789.498576 +2789.745329 +2789.953454 +2790.162478 +2790.431941 +2790.467872 +2790.538168 +2791.271168 +2791.319953 +2791.498108 +2791.544095 +2791.655716 +2791.858447 +2791.862443 +2791.866539 +2791.875863 +2792.127211 +2792.130941 +2792.134970 +2792.139998 +2792.190015 +2792.199838 +2792.205633 +2792.251487 +2792.255649 +2792.268170 +2792.275796 +2792.306465 +2792.322549 +2792.330175 +2793.428375 +2793.431506 +2793.455748 +2793.612857 +2793.616221 +2793.620317 +2793.652085 +2793.727343 +2793.733670 +2793.797040 +2793.894875 +2793.923180 +2793.996540 +2794.044425 +2794.098238 +2794.138231 +2794.179324 +2794.214322 +2794.261774 +2794.301002 +2794.344825 +2794.379690 +2794.424545 +2794.470133 +2794.508294 +2794.554548 +2794.595807 +2794.633169 +2794.655380 +2794.691844 +2794.728374 +2794.772963 +2794.855813 +2794.893875 +2794.934668 +2794.973029 +2795.007295 +2795.048687 +2795.085683 +2795.119283 +2795.155014 +2795.189812 +2795.232569 +2795.269832 +2795.300768 +2795.340028 +2795.383052 +2795.435566 +2795.480221 +2795.528640 +2795.567234 +2795.626309 +2795.679189 +2795.766668 +2795.898270 +2796.096771 +2796.274526 +2796.343657 +2796.836197 +2796.967166 +2797.334765 +2797.627672 +2797.794871 +2797.881784 +2797.944488 +2797.960039 +2798.022377 +2798.128770 +2798.174358 +2798.223709 +2798.259473 +2798.472626 +2798.522942 +2798.652979 +2798.676788 +2798.739359 +2798.826205 +2798.829569 +2798.881783 +2799.073525 +2799.159405 +2799.195169 +2799.249482 +2799.334530 +2799.368196 +2799.460604 +2799.491673 +2799.505559 +2799.600797 +2799.705425 +2799.745885 +2799.768995 +2799.810054 +2799.916547 +2799.929468 +2800.016114 +2800.067829 +2800.094569 +2800.198498 +2800.259571 +2800.306257 +2800.364366 +2800.446783 +2800.557139 +2800.606956 +2800.693370 +2800.743220 +2800.828335 +2800.857838 +2800.914881 +2800.942620 +2801.055774 +2801.100396 +2801.153043 +2801.179683 +2801.234461 +2801.379982 +2801.454042 +2801.520642 +2801.565930 +2801.628467 +2801.687208 +2801.701993 +2801.776519 +2801.836725 +2801.951910 +2802.002792 +2802.059602 +2802.094367 +2802.202259 +2802.267994 +2802.312715 +2802.322106 +2802.342985 +2802.357670 +2802.381147 +2802.563897 +2802.631663 +2802.851143 +2802.932662 +2802.981213 +2803.063730 +2803.134393 +2803.154673 +2803.192834 +2803.257570 +2803.300560 +2803.431362 +2803.458868 +2803.501192 +2803.539254 +2803.617310 +2803.709317 +2803.760266 +2803.788805 +2803.820972 +2803.837056 +2803.911781 +2803.990469 +2804.035824 +2804.096696 +2804.145714 +2804.194332 +2804.240985 +2804.361598 +2804.412114 +2804.450276 +2804.577515 +2804.665960 +2804.699560 +2804.717908 +2804.779313 +2804.851474 +2804.936156 +2805.003522 +2805.102356 +2805.146512 +2805.222170 +2805.262629 +2805.364594 +2805.410281 +2805.472419 +2805.479978 +2805.544314 +2805.570821 +2805.635856 +2805.715243 +2805.806884 +2805.868023 +2805.903321 +2805.959365 +2806.062495 +2806.096395 +2806.150407 +2806.211013 +2806.275349 +2806.346444 +2806.383973 +2806.437753 +2806.485372 +2806.533157 +2806.600557 +2806.674583 +2806.712278 +2806.768988 +2806.821735 +2806.871852 +2806.910380 +2806.967722 +2807.021768 +2807.095461 +2807.163094 +2807.259264 +2807.328062 +2807.440150 +2807.573416 +2807.629860 +2807.660629 +2807.716040 +2807.818071 +2807.890599 +2807.935254 +2807.985604 +2808.028361 +2808.105983 +2808.161494 +2808.224698 +2808.278077 +2808.320835 +2808.355866 +2808.399989 +2808.452969 +2808.518803 +2808.561028 +2808.627827 +2808.734387 +2808.804451 +2808.873115 +2808.919302 +2808.960594 +2809.000887 +2809.057297 +2809.115206 +2809.166755 +2809.184437 +2809.246675 +2809.306948 +2809.378143 +2809.417703 +2809.453468 +2809.495892 +2809.541912 +2809.591196 +2809.660261 +2809.762558 +2809.813441 +2809.851835 +2809.891929 +2809.934752 +2809.981106 +2810.021233 +2810.075811 +2810.116437 +2810.155398 +2810.201985 +2810.248405 +2810.287133 +2810.323696 +2810.370450 +2810.422264 +2810.473680 +2810.516836 +2810.562424 +2810.588165 +2810.620766 +2810.668618 +2810.711308 +2810.745341 +2810.782138 +2810.833186 +2810.888564 +2811.028591 +2811.152334 +2811.195557 +2811.294092 +2811.523495 +2811.642943 +2811.816635 +2811.873778 +2811.980438 +2812.028956 +2812.190494 +2812.239579 +2812.460591 +2812.706944 +2812.824393 +2812.895922 +2812.992592 +2813.030420 +2813.124693 +2813.214869 +2813.489194 +2813.613570 +2813.805711 +2814.160289 +2814.289726 +2814.906143 +2815.031983 +2815.071877 +2815.415666 +2815.421494 +2815.653495 +2815.779102 +2815.851730 +2815.899915 +2815.927720 +2815.965815 +2816.227520 +2816.279668 +2816.323524 +2816.451130 +2816.492688 +2816.619827 +2816.667979 +2816.711003 +2816.781232 +2816.860453 +2816.970277 +2817.170576 +2817.312734 +2817.355924 +2817.590056 +2817.723256 +2817.844402 +2818.247764 +2818.423588 +2818.624487 +2818.710701 +2818.843035 +2818.968643 +2819.048530 +2819.089255 +2819.121523 +2819.214264 +2819.804972 +2819.962748 +2820.007237 +2820.094616 +2820.435674 +2820.566776 +2820.758518 +2820.987655 +2821.148294 +2821.376533 +2821.550692 +2821.690352 +2821.769872 +2821.796545 +2821.809666 +2821.824418 +2821.874068 +2821.940168 +2822.008167 +2822.069506 +2822.131810 +2822.333175 +2822.400707 +2822.554120 +2822.584623 +2822.613494 +2822.635106 +2822.646495 +2822.653887 +2822.682325 +2823.023517 +2823.062012 +2823.159781 +2823.321452 +2823.348792 +2824.145228 +2824.154485 +2824.726812 +2824.730209 +2824.734038 +2824.747791 +2825.265640 +2825.269469 +2825.275929 +2825.291913 +2825.312992 +2825.335470 +2825.346758 +2825.916288 +2825.923381 +2825.942229 +2826.003035 +2826.010461 +2826.030008 +2826.036934 +2826.042662 +2826.434403 +2826.455382 +2826.668768 +2826.704299 +2826.886983 +2826.888682 +2826.891079 +2826.895541 +2826.904499 +2827.071365 +2827.074629 +2827.078258 +2827.088082 +2828.504731 +2828.507994 +2828.509259 +2828.512156 +2828.516619 +2828.518250 +2828.522413 +2828.602466 +2828.605363 +2828.608693 +2828.619815 +2828.640828 +2828.643558 +2828.646156 +2828.697538 +2828.699269 +2828.702866 +2828.705063 +2828.709859 +2828.720182 +2828.776692 +2828.780688 +2828.783818 +2829.230671 +2829.233268 +2829.240028 +2829.435865 +2829.438463 +2829.441360 +2829.448053 +2829.592209 +2829.595872 +2829.600134 +2829.649918 +2829.666834 +2829.709724 +2829.735865 +2829.781919 +2829.809158 +2829.840394 +2829.873094 +2830.082951 +2830.084249 +2830.086481 +2830.088512 +2830.091575 +2830.163237 +2830.165102 +2830.169564 +2830.172128 +2830.177423 +2830.229404 +2830.231236 +2830.233334 +2830.236397 +2830.239261 +2830.244955 +2830.294572 +2830.296570 +2830.299867 +2830.303097 +2830.305928 +2830.354279 +2830.356444 +2830.360173 +2830.364003 +2830.376424 +2830.422411 +2830.425042 +2830.429537 +2830.433733 +2830.441558 +2832.342855 +2832.424041 +2832.426039 +2832.428037 +2832.433098 +2832.570627 +2832.572625 +2832.574756 +2832.576688 +2832.581816 +2832.708789 +2832.710687 +2832.715849 +2832.718746 +2832.852745 +2832.856275 +2832.915682 +2832.917547 +2832.921010 +2832.924007 +2832.930134 +2832.991906 +2832.995136 +2832.998233 +2833.001796 +2833.010354 +2833.058206 +2833.060703 +2833.064000 +2833.067896 +2835.317711 +2835.388273 +2835.533728 +2835.604324 +2835.840188 +2835.842352 +2835.844217 +2835.846648 +2835.850944 +2835.895266 +2835.896998 +2835.898596 +2835.900427 +2835.902059 +2835.904390 +2835.907720 +2835.982778 +2835.985276 +2835.987673 +2835.990837 +2836.041586 +2836.043418 +2836.045615 +2836.048879 +2836.052042 +2836.058935 +2836.169891 +2836.172389 +2836.176584 +2836.179448 +2836.185109 +2836.282578 +2836.284843 +2836.287373 +2836.289938 +2836.293034 +2836.459068 +2836.461333 +2836.463564 +2836.471156 +2840.254536 +2840.259864 +2840.322135 +2840.397892 +2840.401921 +2840.406650 +2840.411079 +2840.545045 +2840.552404 +2840.555767 +2840.612377 +2840.615374 +2840.620969 +2840.689867 +2840.702254 +2840.763526 +2840.837152 +2844.378075 +2844.380173 +2844.387232 +2844.390629 +2844.445873 +2844.447439 +2844.449370 +2844.451668 +2844.454132 +2844.457662 +2844.515504 +2844.520299 +2844.523696 +2844.584068 +2844.647771 +2844.651667 +2844.659693 +2844.713306 +2844.715437 +2844.718201 +2844.722563 +2844.782170 +2844.785067 +2844.799020 +2844.857128 +2844.861191 +2844.864854 +2844.869150 +2845.429822 +2845.432519 +2845.434883 +2845.439046 +2845.698753 +2845.701850 +2845.705146 +2845.715669 +2846.105512 +2846.482468 +2846.615002 +2846.628489 +2846.897020 +2846.999051 +2847.083333 +2847.156693 +2847.259957 +2847.370779 +2850.584029 +2850.637409 +2850.639574 +2850.647899 +2850.710669 +2850.719893 +2850.859620 +2850.863882 +2850.868911 +2851.058554 +2851.215264 +2851.273406 +2851.282796 +2853.335075 +2853.488588 +2853.489254 +2853.564879 +2853.729048 +2853.732811 +2853.735541 +2853.792384 +2853.793750 +2853.796180 +2853.805005 +2853.809134 +2853.811365 +2853.813730 +2853.817759 +2853.867076 +2853.868941 +2853.870939 +2853.873436 +2853.876200 +2853.939237 +2853.941269 +2853.943400 +2853.945897 +2854.012198 +2854.014362 +2854.017159 +2854.019590 +2854.022854 +2854.085158 +2854.087389 +2854.089920 +2854.092750 +2854.097545 +2854.158318 +2854.159850 +2854.161914 +2854.163846 +2854.165744 +2854.169873 +2854.238604 +2854.240935 +2854.243633 +2854.246630 +2854.256253 +2854.317325 +2854.319623 +2854.321555 +2854.324085 +2854.329313 +2855.041334 +2855.548593 +2855.551390 +2855.555153 +2855.562779 +2855.618057 +2855.622019 +2855.624284 +2855.637071 +2855.784157 +2855.788087 +2855.791783 +2857.164509 +2857.167706 +2857.170236 +2857.175298 +2857.728111 +2857.788517 +2857.811295 +2857.841464 +2858.009996 +2858.019053 +2858.129543 +2858.787318 +2860.072065 +2860.246590 +2860.248488 +2860.251885 +2860.254316 +2860.259111 +2860.376360 +2860.378258 +2860.525644 +2860.533436 +2860.587949 +2860.677559 +2860.681455 +2860.894908 +2860.909027 +2862.225176 +2862.227507 +2862.231437 +2862.504796 +2862.509192 +2862.514687 +2862.601100 +2862.707260 +2862.808692 +2862.949318 +2863.254879 +2863.256511 +2863.258342 +2863.260207 +2863.262638 +2863.266367 +2864.484481 +2864.486779 +2864.488644 +2864.491541 +2864.729303 +2864.731434 +2864.733466 +2864.735896 +2864.739892 +2864.893306 +2864.897168 +2864.899100 +2864.901664 +2864.905260 +2864.977921 +2864.980418 +2864.982949 +2864.985880 +2865.045953 +2865.047818 +2865.050315 +2865.055909 +2865.125107 +2865.126905 +2865.130735 +2865.134031 +2865.137861 +2865.193638 +2865.197568 +2865.204394 +2865.208956 +2865.269496 +2865.275190 +2865.336562 +2865.405460 +2865.411420 +2865.413119 +2865.417614 +2865.480551 +2865.483648 +2865.487211 +2865.492539 +2865.642322 +2865.647051 +2868.980548 +2868.985243 +2868.987341 +2868.989439 +2868.992269 +2869.158969 +2869.161533 +2869.163165 +2869.165529 +2869.168559 +2869.173488 +2869.225136 +2869.230331 +2869.234760 +2869.239955 +2869.348979 +2869.353474 +2869.362732 +2869.922638 +2869.925868 +2869.935325 +2870.364129 +2870.500559 +2870.707719 +2870.711282 +2870.714578 +2870.860566 +2870.862730 +2870.865294 +2870.867126 +2870.869324 +2870.873619 +2871.001092 +2871.005354 +2871.007918 +2871.010382 +2871.013912 +2872.349842 +2872.485572 +2872.493964 +2872.558100 +2872.563394 +2872.567657 +2872.575283 +2872.621503 +2872.634423 +2872.686005 +2872.689502 +2872.693697 +2872.699025 +2872.748276 +2872.750374 +2872.754170 +2872.758066 +2872.766358 +2874.230093 +2876.914539 +2876.916570 +2877.132721 +2877.135118 +2877.138781 +2877.141245 +2877.145208 +2877.201851 +2877.210276 +2877.213506 +2877.274945 +2877.338215 +2877.341478 +2877.347739 +2877.352933 +2877.473879 +2877.475644 +2880.664219 +2880.670346 +2881.005644 +2881.007475 +2881.009240 +2881.011105 +2881.012837 +2881.017365 +2881.209673 +2881.211604 +2881.213269 +2881.215334 +2881.217398 +2881.221994 +2882.417331 +2882.420394 +2882.422292 +2882.424224 +2882.426455 +2882.430950 +2882.613201 +2882.615266 +2882.617197 +2882.622459 +2882.755659 +2882.842472 +2882.844337 +2882.846068 +2882.848066 +2882.850364 +2882.855459 +2882.904809 +2882.906774 +2882.908805 +2882.910870 +2882.912968 +2882.916964 +2883.067213 +2883.069445 +2883.071243 +2883.073074 +2883.080600 +2883.140773 +2883.142471 +2883.145036 +2883.147034 +2883.149498 +2883.161852 +2883.359787 +2883.365848 +2883.368612 +2883.426754 +2883.428818 +2883.431216 +2883.433447 +2883.436744 +2883.447200 +2883.519960 +2883.522824 +2883.526187 +2883.536344 +2883.669277 +2883.671708 +2883.674173 +2883.676537 +2883.680100 +2883.866014 +2886.643534 +2888.883658 +2888.887954 +2889.025849 +2889.099575 +2889.105136 +2889.108433 +2889.170437 +2889.173867 +2889.179462 +2889.228379 +2889.232509 +2889.292349 +2889.300208 +2889.307234 +2889.371236 +2891.073965 +2893.233071 +2893.235602 +2893.237999 +2893.240696 +2893.277759 +2893.279624 +2893.288782 +2893.358678 +2893.361009 +2893.366171 +2893.369201 +2893.457080 +2893.459178 +2893.462275 +2893.464805 +2893.522481 +2893.531872 +2893.664972 +2893.672364 +2893.681655 +2894.605663 +2894.607395 +2894.610492 +2894.612590 +2894.615753 +2894.755347 +2894.759876 +2894.864404 +2894.869233 +2894.871797 +2894.880189 +2895.078623 +2895.089346 +2895.091744 +2895.093608 +2895.098703 +2895.269133 +2895.270831 +2895.278623 +2895.282286 +2895.352682 +2895.355213 +2895.358077 +2895.361607 +2895.535033 +2895.542359 +2895.544823 +2895.548353 +2895.868133 +2895.870031 +2895.872828 +2895.879289 +2897.051782 +2897.053846 +2897.055911 +2897.058009 +2897.062804 +2897.389943 +2897.391908 +2897.393906 +2897.395904 +2897.398534 +2897.646686 +2897.649383 +2897.651481 +2897.653546 +2897.656210 +2897.743855 +2897.746952 +2897.749750 +2897.753446 +2897.930136 +2897.932167 +2897.934132 +2897.936396 +2897.940126 +2898.081651 +2898.083749 +2898.086013 +2898.091374 +2898.141491 +2898.168664 +2898.170961 +2898.173292 +2898.175990 +2898.181551 +2898.255310 +2898.257341 +2898.260905 +2898.263402 +2898.266998 +2898.323176 +2899.364733 +2899.366598 +2899.368396 +2899.370494 +2899.373158 +2899.677487 +2899.680117 +2899.682015 +2899.684113 +2899.779817 +2899.782215 +2899.784280 +2899.786944 +2899.942188 +2899.946317 +2899.949048 +2900.013217 +2900.016214 +2900.019444 +2900.173723 +2900.176054 +2900.178152 +2900.182881 +2901.243652 +2901.246549 +2901.248414 +2901.250445 +2901.253043 +2901.511118 +2901.513216 +2901.515014 +2901.516979 +2901.519909 +2901.608520 +2901.610618 +2901.612916 +2901.615280 +2901.617511 +2901.620841 +2901.807621 +2901.809119 +2901.810718 +2901.812716 +2901.814314 +2901.816545 +2901.820974 +2902.012582 +2902.014547 +2902.018377 +2902.340188 +2902.343052 +2902.345050 +2902.349878 +2902.614047 +2902.616012 +2902.618010 +2902.621706 +2903.163863 +2903.165928 +2903.167926 +2903.170390 +2903.698795 +2903.701059 +2903.702924 +2903.709217 +2903.894698 +2903.966760 +2903.968624 +2903.970289 +2903.971888 +2903.973919 +2903.975950 +2903.982144 +2904.066460 +2904.068624 +2904.070955 +2904.073153 +2904.076017 +2904.296396 +2904.298794 +2904.300625 +2904.302590 +2904.305321 +2905.082776 +2905.085373 +2905.087205 +2905.089169 +2905.199526 +2905.453471 +2906.126165 +2906.130694 +2906.211912 +2906.219538 +2906.286138 +2906.296594 +2906.444679 +2906.446677 +2906.901655 +2907.123866 +2907.125931 +2907.127862 +2907.129827 +2907.132624 +2907.218871 +2907.220536 +2907.222501 +2907.224399 +2907.226630 +2907.230593 +2907.930758 +2907.933023 +2907.935354 +2907.937485 +2907.941048 +2908.304851 +2908.307082 +2908.309080 +2908.313076 +2908.318703 +2909.191163 +2909.195426 +2909.200088 +2909.304616 +2909.307247 +2909.309312 +2909.311476 +2909.314407 +2909.796058 +2909.800054 +2910.091296 +2910.095392 +2910.396324 +2910.398288 +2910.771415 +2910.773446 +2911.081971 +2911.357561 +2911.360026 +2911.364155 +2911.367851 +2913.096587 +2913.100816 +2913.103281 +2913.803879 +2913.805777 +2913.809807 +2913.814402 +2914.259490 +2914.799882 +2914.801780 +2915.228587 +2915.230451 +2915.232449 +2915.234880 +2915.512003 +2915.516598 +2915.616398 +2915.622459 +2915.716232 +2915.720361 +2915.722625 +2915.725223 +2915.728386 +2915.814800 +2915.819362 +2915.824057 +2915.909172 +2915.921360 +2915.923025 +2915.925322 +2915.928319 +2915.932582 +2916.011736 +2916.015932 +2916.018662 +2916.021593 +2916.120294 +2916.122925 +2916.125922 +2916.128686 +2916.132815 +2916.216598 +2916.218762 +2916.221493 +2916.315232 +2916.323124 +2916.325255 +2916.330184 +2916.419328 +2916.421825 +2916.424323 +2916.426920 +2916.430350 +2916.611103 +2916.616397 +2916.618628 +2916.621426 +2916.721525 +2916.724389 +2916.726787 +2916.729251 +2916.732548 +2916.821792 +2916.823790 +2916.826387 +2916.828485 +2916.831116 +2916.836710 +2917.015098 +2917.017396 +2917.019627 +2917.021758 +2917.026753 +2917.627319 +2917.629184 +2917.631515 +2917.633413 +2917.635977 +2917.641371 +2918.007738 +2918.011268 +2918.012966 +2918.017961 +2918.117062 +2918.123023 +2918.125187 +2918.127784 +2918.203942 +2918.321790 +2918.325586 +2918.330282 +2918.512633 +2918.523455 +2918.609236 +2918.613132 +2918.615629 +2918.804341 +2918.814031 +2918.818327 +2919.025652 +2919.213797 +2919.215729 +2919.618825 +2919.627916 +2919.810567 +2919.816627 +2919.916094 +2919.918425 +2921.085257 +2921.600308 +2921.604704 +2921.960648 +2921.964644 +2922.096012 +2922.102472 +2922.105370 +2922.962212 +2922.964476 +2922.966308 +2922.968272 +2922.971769 +2922.978429 +2923.889683 +2923.892614 +2923.894412 +2923.896343 +2923.898908 +2923.906367 +2924.119354 +2924.121218 +2924.123050 +2924.125081 +2924.127845 +2924.223316 +2924.225447 +2924.227212 +2924.229277 +2924.231808 +2924.315824 +2924.319187 +2924.321185 +2924.323083 +2924.325614 +2924.330043 +2924.413992 +2924.416456 +2924.418554 +2924.420719 +2924.423349 +2924.498308 +2924.500605 +2924.502903 +2924.505634 +2924.514691 +2924.675930 +2924.678327 +2924.680558 +2924.682423 +2924.684854 +2924.688284 +2924.807365 +2924.809629 +2924.811527 +2924.813659 +2924.816123 +2924.819952 +2924.901404 +2924.906566 +2924.910928 +2924.914824 +2925.066406 +2925.068770 +2925.070801 +2925.176262 +2925.767604 +2925.780191 +2925.794044 +2926.065073 +2926.106298 +2926.146791 +2926.208629 +2926.304400 +2926.315255 +2926.358079 +2926.384886 +2926.451319 +2926.533470 +2926.621282 +2926.749421 +2926.845858 +2926.916587 +2927.044192 +2927.103333 +2927.166037 +2927.291745 +2927.400669 +2927.445857 +2927.518817 +2927.529107 +2927.551285 +2927.630472 +2927.897838 +2927.963905 +2928.021248 +2928.167501 +2928.208594 +2928.327142 +2928.375926 +2928.436099 +2928.488380 +2928.527275 +2928.548953 +2928.591777 +2928.605463 +2928.646289 +2928.670831 +2928.698936 +2928.725609 +2928.778390 +2929.011024 +2929.254014 +2929.286881 +2929.381753 +2929.427740 +2929.468166 +2929.499102 +2929.542225 +2929.580787 +2929.627873 +2929.803297 +2930.061039 +2930.068465 +2930.078455 +2930.174259 +2930.176957 +2930.220247 +2930.330070 +2930.375691 +2930.382018 +2930.392108 +2930.426773 +2931.507658 +2931.749949 +2931.852712 +2932.060471 +2932.263501 +2932.329835 +2932.381783 +2932.408223 +2932.463468 +2932.488110 +2932.761636 +2932.861836 +2932.923174 +2933.090107 +2933.144553 +2933.199098 +2933.248216 +2933.318412 +2933.376587 +2933.421808 +2933.512884 +2933.539857 +2933.574889 +2933.599397 +2933.640856 +2933.686743 +2933.729201 +2933.787609 +2933.822008 +2933.889707 +2933.945751 +2934.047449 +2934.136493 +2934.177086 +2934.224638 +2934.271624 +2934.307122 +2934.366563 +2934.409819 +2934.456007 +2934.500495 +2934.559103 +2934.621141 +2934.679117 +2934.719643 +2934.758837 +2934.808687 +2934.848480 +2934.879716 +2934.920775 +2934.989239 +2935.040988 +2935.072556 +2935.109552 +2935.164531 +2935.204024 +2935.255573 +2935.305323 +2935.390072 +2935.443052 +2935.482213 +2935.530897 +2935.589539 +2935.629832 +2935.677950 +2935.717544 +2935.760601 +2935.797697 +2935.829565 +2935.860467 +2935.918676 +2935.984876 +2936.030164 +2936.078649 +2936.122572 +2936.155439 +2936.201659 +2936.258869 +2936.307853 +2936.347946 +2936.410117 +2936.461266 +2936.513647 +2936.553773 +2936.599727 +2936.650643 +2936.693866 +2936.735392 +2936.782311 +2936.834359 +2936.889437 +2936.940853 +2936.977249 +2937.011715 +2937.046047 +2937.080413 +2937.135458 +2937.196530 +2937.242417 +2937.289603 +2937.338588 +2937.378914 +2937.428431 +2937.480712 +2937.520106 +2937.570522 +2937.601425 +2937.680878 +2937.723303 +2937.761564 +2937.800758 +2937.854505 +2937.892034 +2937.948144 +2938.017375 +2938.062963 +2938.101790 +2938.155237 +2938.199459 +2938.243882 +2938.294431 +2938.337688 +2938.396462 +2938.445713 +2938.488270 +2938.556569 +2938.626532 +2938.675549 +2938.717141 +2938.758633 +2938.808150 +2938.845479 +2938.901190 +2938.942615 +2938.989568 +2939.050108 +2939.085672 +2939.140351 +2939.177047 +2939.217241 +2939.271520 +2939.315209 +2939.366325 +2939.402921 +2939.450674 +2939.498959 +2939.543714 +2939.581309 +2939.620603 +2939.665259 +2939.707383 +2939.747443 +2939.786937 +2939.823500 +2939.858232 +2939.897093 +2939.935855 +2939.981642 +2940.026464 +2940.056767 +2940.083740 +2940.115308 +2940.154669 +2940.181142 +2940.244879 +2940.280909 +2940.383074 +2940.431492 +2940.476613 +2940.525065 +2940.574149 +2940.625531 +2940.678311 +2940.717073 +2940.761528 +2940.799324 +2940.843979 +2940.884905 +2940.908081 +2940.966490 +2941.000256 +2941.069087 +2941.104485 +2941.150505 +2941.183705 +2941.232989 +2941.280742 +2941.334721 +2941.371817 +2941.427295 +2941.473116 +2941.556799 +2941.575913 +2941.650205 +2941.682706 +2941.730791 +2941.774214 +2941.819502 +2941.872849 +2941.905450 +2941.980408 +2942.024897 +2942.089732 +2942.147341 +2942.195293 +2942.225662 +2942.286302 +2942.320934 +2942.368186 +2942.432955 +2942.475612 +2942.517537 +2942.574946 +2942.614074 +2942.668619 +2942.710177 +2942.748406 +2942.849938 +2942.875845 +2942.907413 +2942.977277 +2943.020567 +2943.071782 +2943.110177 +2943.156764 +2943.204782 +2943.249205 +2943.307813 +2943.342112 +2943.384070 +2943.416237 +2943.453100 +2943.494892 +2943.544576 +2943.601285 +2943.643843 +2943.683636 +2943.714106 +2943.768884 +2943.806813 +2943.852434 +2943.894392 +2943.937715 +2943.982437 +2944.014106 +2944.076210 +2944.108045 +2944.150502 +2944.190229 +2944.221798 +2944.259626 +2944.298987 +2944.329723 +2944.374811 +2944.420798 +2944.466419 +2944.515437 +2944.566186 +2944.616602 +2944.649603 +2944.689163 +2944.737082 +2944.796589 +2944.826459 +2944.881904 +2944.901917 +2944.951367 +2944.990828 +2945.043642 +2945.082136 +2945.104481 +2945.164820 +2945.201850 +2945.227757 +2945.293125 +2945.341710 +2945.407278 +2945.456761 +2945.510275 +2945.547104 +2945.582069 +2945.623395 +2945.664054 +2945.703847 +2945.759325 +2945.810607 +2945.862755 +2945.920031 +2945.972345 +2946.005645 +2946.057727 +2946.098386 +2946.169248 +2946.260290 +2946.303913 +2946.335715 +2946.456194 +2946.533883 +2946.736314 +2946.770247 +2946.824759 +2946.887862 +2946.946270 +2946.966450 +2947.020763 +2947.050566 +2947.124425 +2947.266184 +2947.360789 +2947.453663 +2947.487029 +2947.534348 +2947.570113 +2947.623992 +2947.837145 +2947.999616 +2948.081934 +2948.232982 +2948.387927 +2948.430718 +2948.467781 +2948.510971 +2948.575972 +2948.635346 +2948.680834 +2948.733082 +2948.837611 +2948.879102 +2948.927421 +2949.009072 +2949.057557 +2949.107074 +2949.138976 +2949.179335 +2949.248333 +2949.297850 +2949.364750 +2949.400347 +2949.448499 +2949.535345 +2949.592422 +2949.682565 +2949.764050 +2949.895285 +2950.259054 +2950.264183 +2950.275338 +2950.790522 +2950.794552 +2950.801711 +2951.011102 +2951.015197 +2951.019427 +2951.029417 +2951.228817 +2951.235777 +2951.256289 +2951.308237 +2951.335943 +2951.418560 +2951.520159 +2951.554924 +2951.592253 +2951.612799 +2951.698014 +2951.759086 +2951.795150 +2951.832213 +2951.878866 +2951.901211 +2951.940072 +2951.996449 +2952.046432 +2952.097447 +2952.155090 +2952.193118 +2952.227218 +2952.255589 +2952.294284 +2952.363981 +2952.400045 +2952.449062 +2952.496148 +2952.552226 +2952.601609 +2952.652692 +2952.696881 +2952.804440 +2952.908469 +2953.007803 +2953.106537 +2953.190720 +2953.217160 +2953.307836 +2953.350094 +2953.401043 +2953.499211 +2953.566544 +2953.611232 +2953.647196 +2953.697413 +2953.810633 +2953.896746 +2953.984891 +2954.035507 +2954.107902 +2954.209666 +2954.309233 +2954.349760 +2954.485091 +2954.517392 +2954.614261 +2954.710565 +2954.792883 +2954.810765 +2954.910631 +2954.945363 +2955.099676 +2955.150058 +2955.230078 +2955.348060 +2955.447128 +2955.514860 +2955.569705 +2955.618689 +2955.705336 +2955.853354 +2956.001872 +2956.034606 +2956.080127 +2956.142132 +2956.198576 +2956.240267 +2956.281592 +2956.402005 +2956.439268 +2956.496544 +2956.540833 +2956.935238 +2956.968771 +2956.994645 +2957.073433 +2957.136936 +2957.169404 +2957.203636 +2957.322917 +2957.399873 +2957.440099 +2957.518854 +2957.547692 +2957.576163 +2957.646027 +2957.725747 +2957.811061 +2957.917588 +2958.169636 +2958.193046 +2958.276029 +2958.423215 +2958.519785 +2958.581757 +2958.622150 +2958.740831 +2958.864374 +2958.993012 +2959.072366 +2959.190847 +2959.269169 +2959.309795 +2959.356847 +2959.403534 +2959.424080 +2959.457647 +2959.499405 +2959.541163 +2959.574896 +2959.608296 +2959.659977 +2959.705032 +2959.746990 +2959.789881 +2959.833970 +2959.872598 +2959.898971 +2959.936800 +2959.960976 +2959.988382 +2960.011792 +2960.068602 +2960.098705 +2960.134669 +2960.169700 +2960.197240 +2960.225078 +2960.266370 +2960.294109 +2960.333703 +2960.362374 +2960.417552 +2960.494475 +2960.552351 +2960.595574 +2960.651252 +2960.694409 +2960.707629 +2960.755514 +2960.779523 +2960.813589 +2960.855314 +2960.903533 +2960.960809 +2960.996739 +2961.057978 +2961.110692 +2961.160409 +2961.245290 +2961.277825 +2961.360342 +2961.431138 +2961.481754 +2961.543991 +2961.594241 +2961.681787 +2961.703798 +2961.796705 +2961.888347 +2961.901234 +2961.999269 +2962.054847 +2962.106961 +2962.150551 +2962.181054 +2962.248786 +2962.351150 +2962.405096 +2962.534034 +2962.566901 +2962.684283 +2962.799168 +2962.859341 +2962.895539 +2962.971329 +2963.050550 +2963.113753 +2963.138562 +2963.235998 +2963.450616 +2963.539394 +2964.050982 +2964.167898 +2964.806359 +2968.226469 +2968.237192 +2968.665629 +2968.676252 +2968.689972 +2968.950178 +2968.953508 +2968.960867 +2969.259069 +2969.425835 +2969.535392 +2969.600161 +2969.821372 +2969.918775 +2970.419074 +2970.584076 +2970.636989 +2971.235357 +2971.381244 +2971.790668 +2971.863795 +2971.918340 +2972.018939 +2972.045912 +2972.190135 +2972.286638 +2972.376548 +2972.422369 +2972.493265 +2972.526265 +2972.593797 +2972.691766 +2972.788835 +2972.833124 +2972.992332 +2973.035688 +2973.104919 +2973.259364 +2973.372418 +2973.417373 +2973.507083 +2973.589634 +2973.743546 +2973.796194 +2973.866623 +2973.946743 +2974.048874 +2974.135954 +2974.163093 +2974.190466 +2974.233223 +2974.307582 +2974.356433 +2974.440182 +2974.530625 +2974.607348 +2974.647175 +2974.689733 +2974.888434 +2974.929060 +2975.020302 +2975.053935 +2975.090232 +2975.370151 +2975.551703 +2975.640048 +2975.712675 +2975.744843 +2975.788166 +2975.835785 +2975.916172 +2976.018003 +2976.243444 +2976.329058 +2976.414173 +2976.712441 +2976.842478 +2977.165255 +2977.281805 +2977.316203 +2977.431355 +2977.587066 +2977.713606 +2978.111474 +2978.198387 +2978.257428 +2978.509076 +2978.926325 +2979.079638 +2979.264387 +2979.356927 +2979.422329 +2979.490793 +2979.628522 +2979.751999 +2980.057926 +2980.127256 +2980.233616 +2980.620629 +2980.733816 +2980.792624 +2981.009540 +2981.065850 +2981.152563 +2981.207142 +2981.285131 +2981.351164 +2981.397951 +2981.467781 +2981.593289 +2981.683565 +2981.735213 +2981.770212 +2981.849998 +2981.899482 +2981.938210 +2982.191290 +2982.238543 +2982.280934 +2982.345303 +2982.452495 +2982.681366 +2982.703677 +2982.817563 +2982.872974 +2982.977869 +2983.124789 +2983.175239 +2983.281432 +2983.321059 +2983.367679 +2983.429617 +2983.477603 +2983.509670 +2983.602711 +2983.698282 +2983.767213 +2983.826054 +2983.868578 +2983.936477 +2984.012567 +2984.084761 +2984.159220 +2984.237409 +2984.306872 +2984.385527 +2984.483063 +2984.552160 +2984.621757 +2984.722789 +2984.797481 +2984.857222 +2984.946932 +2985.004474 +2985.064048 +2985.226186 +2985.487924 +2985.514930 +2985.620358 +2985.726551 +2985.822455 +2986.132545 +2986.538772 +2986.557986 +2986.755555 +2986.783627 +2986.856687 +2987.015728 +2987.085624 +2987.115561 +2987.198878 +2987.268574 +2987.325917 +2987.492350 +2987.544698 +2987.904105 +2988.008734 +2988.108900 +2988.302939 +2989.003072 +2989.138569 +2989.223118 +2989.295845 +2989.472935 +2990.192980 +2990.295678 +2990.399840 +2990.543929 +2990.791581 +2991.010762 +2991.142630 +2991.213892 +2991.626113 +2991.889649 +2992.048456 +2992.121383 +2992.196475 +2992.266971 +2992.362908 +2992.412958 +2992.448389 +2992.506298 +2992.542628 +2993.063274 +2993.109827 +2994.698171 +2994.702333 +2994.705463 +2994.908627 +2994.910458 +2994.912656 +2994.915520 +2994.921148 +2994.998404 +2995.001467 +2995.004997 +2995.011724 +2995.086116 +2995.119382 +2995.145989 +2995.174694 +2995.188913 +2995.204198 +2995.213688 +2995.225443 +2995.250351 +2995.312323 +2995.334600 +2995.378390 +2995.397271 +2995.421913 +2995.429572 +2995.478689 +2995.498969 +2995.555213 +2995.573994 +2995.630704 +2995.682152 +2995.715519 +2995.738729 +2995.792609 +2995.818483 +2995.841893 +2995.886182 +2995.932169 +2995.975392 +2996.009059 +2996.025509 +2996.039095 +2996.059242 +2996.085748 +2996.097770 +2996.125109 +2996.146488 +2996.163404 +2996.181220 +2996.203531 +2996.216284 +2996.267500 +2996.367433 +2996.395139 +2996.440527 +2996.609824 +2996.692574 +2996.751216 +2996.802697 +2996.852414 +2996.861872 +2997.105228 +2997.471994 +2997.743156 +2997.804961 +2997.832034 +2998.114518 +2998.284914 +2998.381817 +2998.469096 +2998.650348 +2998.683748 +2999.059738 +2999.115749 +2999.180584 +2999.238259 +2999.246884 +2999.555509 +2999.804926 +3000.203760 +3000.313883 +3000.315914 +3000.326503 +3000.413450 +3000.418345 +3001.784111 +3001.786076 +3001.788207 +3001.790871 +3001.799229 +3002.078150 +3002.080248 +3002.082346 +3002.085043 +3002.091104 +3002.232063 +3002.234094 +3002.236625 +3002.239955 +3002.352975 +3002.355805 +3002.358969 +3002.363664 +3002.494067 +3002.499129 +3002.502825 +3002.553774 +3002.556371 +3002.628333 +3002.634660 +3002.682878 +3002.686674 +3002.694100 +3002.750510 +3002.775352 +3002.793501 +3002.854506 +3002.860800 +3002.875485 +3003.160167 +3003.262531 +3003.344083 +3003.541818 +3003.608518 +3003.745581 +3003.833859 +3003.950476 +3004.119940 +3004.151108 +3004.193899 +3004.315277 +3004.476050 +3004.511514 +3004.717475 +3004.922936 +3005.105053 +3005.159166 +3005.205253 +3005.238420 +3005.261830 +3005.287071 +3005.317408 +3005.353238 +3005.523734 +3005.554504 +3005.595729 +3005.626265 +3005.690934 +3005.735622 +3005.742382 +3005.780877 +3005.827697 +3005.839285 +3005.865059 +3006.950007 +3006.952338 +3006.954635 +3006.957466 +3006.964559 +3007.171019 +3007.173183 +3007.175514 +3007.178278 +3007.191498 +3007.579810 +3007.721168 +3007.727995 +3007.805051 +3007.843146 +3007.892064 +3007.923865 +3008.011111 +3008.129459 +3008.303785 +3008.329692 +3008.393761 +3008.424930 +3008.457997 +3008.524264 +3008.556965 +3008.847474 +3008.941580 +3009.032322 +3009.282738 +3009.395992 +3009.494759 +3009.528059 +3009.566754 +3009.599088 +3009.637417 +3009.670483 +3009.695492 +3009.706114 +3009.741013 +3009.757530 +3009.772881 +3009.788832 +3009.823397 +3009.845342 +3009.889364 +3009.906114 +3010.057862 +3010.076444 +3010.122464 +3010.165122 +3010.206747 +3010.247439 +3010.287999 +3010.331622 +3010.371615 +3010.412441 +3010.457462 +3010.498255 +3010.541378 +3010.584235 +3010.623696 +3010.673713 +3010.717402 +3010.757862 +3010.806280 +3010.846173 +3010.881904 +3010.903316 +3010.966020 +3011.010076 +3011.046240 +3011.075943 +3011.109077 +3011.151867 +3011.178274 +3011.230788 +3011.280239 +3011.322130 +3011.368151 +3011.403149 +3011.476542 +3011.528357 +3011.594491 +3011.647538 +3011.706612 +3011.752166 +3011.817801 +3011.863721 +3011.914204 +3011.982236 +3012.020764 +3012.054530 +3012.075010 +3012.099752 +3012.156495 +3012.181503 +3012.234683 +3012.276342 +3012.295622 +3012.334816 +3012.458226 +3012.678805 +3012.721330 +3012.789661 +3012.824926 +3012.866384 +3012.894523 +3012.922561 +3012.940344 +3012.990427 +3013.671345 +3013.675508 +3013.679637 +3013.784832 +3013.787096 +3013.789261 +3013.791925 +3013.796087 +3013.962920 +3014.198051 +3014.200282 +3014.212703 +3014.376506 +3014.378770 +3014.504977 +3014.634115 +3014.641174 +3014.743172 +3014.808007 +3014.880768 +3014.947401 +3014.986096 +3015.162719 +3015.242772 +3015.343571 +3015.425023 +3015.451463 +3015.557557 +3015.638243 +3015.664117 +3015.854660 +3015.883631 +3015.935779 +3016.015898 +3016.043437 +3016.073407 +3016.097683 +3016.124456 +3016.141273 +3016.160454 +3016.171243 +3016.179601 +3016.186128 +3016.208106 +3016.248998 +3016.275106 +3016.310970 +3016.336244 +3016.369911 +3016.396884 +3016.429118 +3016.462684 +3016.491456 +3016.520160 +3016.551862 +3016.586227 +3016.617296 +3016.651928 +3016.679734 +3016.709804 +3016.741106 +3016.809937 +3016.841805 +3016.873573 +3016.907739 +3016.942771 +3016.971908 +3017.002477 +3017.036044 +3017.067745 +3017.100479 +3017.133380 +3017.166214 +3017.199314 +3017.233047 +3017.264215 +3017.299613 +3017.334811 +3017.366313 +3017.396383 +3017.427252 +3017.450729 +3017.479733 +3017.506340 +3017.535211 +3017.564049 +3017.594352 +3017.623622 +3017.655224 +3017.680798 +3017.698381 +3017.735877 +3017.767678 +3017.802643 +3017.827385 +3017.917029 +3017.959653 +3018.008837 +3018.059886 +3018.113399 +3018.150661 +3018.197781 +3018.237408 +3018.316096 +3018.428550 +3018.469909 +3018.518826 +3018.561583 +3018.700844 +3018.827784 +3018.874370 +3018.922256 +3019.005306 +3019.150061 +3019.225552 +3019.305972 +3019.332345 +3019.411932 +3019.475668 +3019.680164 +3020.002541 +3020.399244 +3020.403739 +3020.410000 +3020.517292 +3020.523453 +3020.589087 +3020.596213 +3020.839303 +3020.842434 +3020.845963 +3020.851791 +3021.122187 +3021.124951 +3021.127648 +3021.131877 +3021.337039 +3021.339303 +3021.341701 +3021.345297 +3021.570904 +3021.573402 +3021.576066 +3021.580328 +3021.731910 +3021.734641 +3021.737804 +3021.744031 +3021.868074 +3021.872336 +3021.879529 +3021.991617 +3021.997444 +3022.024750 +3022.057084 +3022.084857 +3022.158816 +3022.183391 +3022.205669 +3022.252089 +3022.284390 +3022.358949 +3022.384990 +3022.408033 +3022.443331 +3022.479428 +3022.500108 +3022.538336 +3022.570637 +3022.598942 +3022.635505 +3022.681393 +3022.701073 +3022.735605 +3022.751389 +3022.793680 +3022.869005 +3022.894979 +3022.927080 +3022.993014 +3023.018788 +3023.085055 +3023.104802 +3023.172834 +3023.194646 +3023.240933 +3023.289151 +3023.309098 +3023.396877 +3023.433174 +3023.492181 +3023.530077 +3023.598908 +3023.670103 +3023.698375 +3023.761745 +3023.799374 +3023.884688 +3023.902970 +3024.010895 +3024.045261 +3024.102137 +3024.162177 +3024.200006 +3024.278028 +3024.307498 +3024.360878 +3024.407998 +3024.463143 +3024.524548 +3024.573565 +3024.619619 +3024.673166 +3024.710428 +3024.820851 +3024.846659 +3024.897275 +3024.931374 +3024.969136 +3024.972333 +3025.036968 +3025.195010 +3025.235669 +3025.880624 +3026.261776 +3026.328009 +3026.335002 +3026.342128 +3026.353484 +3026.626977 +3026.722514 +3026.887249 +3027.032238 +3027.109394 +3027.252784 +3027.277159 +3027.304998 +3027.400835 +3027.506230 +3027.530239 +3027.604631 +3027.632037 +3027.657445 +3027.762240 +3027.786216 +3027.810892 +3027.837931 +3027.917185 +3028.149186 +3028.252216 +3028.455480 +3028.607960 +3028.667268 +3028.701467 +3028.757178 +3028.960374 +3029.023145 +3029.115386 +3029.143657 +3029.176591 +3029.205629 +3029.239095 +3029.266002 +3029.298070 +3029.324909 +3029.355545 +3029.388579 +3029.416717 +3029.447587 +3029.477656 +3029.507926 +3029.534966 +3029.561872 +3029.594140 +3029.622012 +3029.651283 +3029.685282 +3029.715252 +3029.743890 +3029.784716 +3029.819348 +3029.853547 +3029.886614 +3029.904396 +3029.925641 +3029.950250 +3029.974193 +3029.997669 +3030.023277 +3030.053547 +3030.079321 +3030.111755 +3030.132201 +3030.159074 +3030.187812 +3030.228338 +3030.258541 +3030.289644 +3030.309424 +3030.344555 +3030.366966 +3030.408625 +3030.454046 +3030.490909 +3030.538528 +3030.555910 +3030.603396 +3030.636630 +3030.676024 +3030.729970 +3030.777955 +3030.829270 +3030.866566 +3030.927305 +3030.969730 +3031.051148 +3031.082217 +3031.113719 +3031.258973 +3031.480818 +3031.752646 +3031.975023 +3032.081117 +3032.215249 +3032.358739 +3032.666331 +3032.980250 +3033.500263 +3033.529900 +3033.728135 +3033.775721 +3033.826437 +3033.939057 +3033.976620 +3034.110985 +3034.149846 +3034.339223 +3034.391471 +3034.568494 +3035.086309 +3035.088740 +3035.091004 +3035.093602 +3035.095600 +3035.099795 +3035.156106 +3035.160301 +3035.163898 +3035.170192 +3035.251344 +3035.260934 +3035.264164 +3035.271990 +3035.312283 +3035.314014 +3035.316046 +3035.322139 +3035.378450 +3035.394367 +3035.496798 +3035.499995 +3035.502958 +3035.505523 +3035.510418 +3035.558969 +3035.566462 +3035.572855 +3036.787772 +3036.940353 +3037.071455 +3037.127332 +3037.211282 +3037.598661 +3037.783742 +3037.964128 +3038.089236 +3038.095563 +3038.180278 +3038.242616 +3038.275183 +3038.491800 +3038.523368 +3038.673451 +3038.767557 +3038.826631 +3038.925899 +3038.960398 +3038.993131 +3039.069721 +3039.288169 +3039.520737 +3039.632858 +3039.667789 +3039.854436 +3039.889967 +3039.965958 +3040.041282 +3040.080077 +3040.123633 +3040.189168 +3040.233989 +3040.274116 +3040.306284 +3040.356567 +3040.401522 +3040.436620 +3040.479077 +3040.520802 +3040.560895 +3040.605817 +3040.640016 +3040.675914 +3040.714675 +3040.747042 +3040.800922 +3040.838284 +3040.888667 +3040.925497 +3040.964092 +3041.005684 +3041.054035 +3041.103019 +3041.161128 +3041.193163 +3041.245876 +3041.280409 +3041.335287 +3041.376879 +3041.424498 +3041.460229 +3041.494994 +3041.539050 +3041.572616 +3041.632190 +3041.667521 +3041.688600 +3041.729259 +3041.754900 +3041.795160 +3041.861227 +3041.976778 +3043.156497 +3046.501649 +3046.509541 +3046.635781 +3046.654063 +3046.707942 +3046.718798 +3047.340409 +3047.480802 +3047.484165 +3047.604944 +3047.613536 +3047.624292 +3047.701348 +3047.725424 +3047.857991 +3048.139243 +3048.234448 +3048.398050 +3048.556292 +3048.625889 +3048.706941 +3048.735113 +3048.925989 +3048.958356 +3049.103611 +3049.134447 +3049.161786 +3049.188992 +3049.218030 +3049.273840 +3049.305242 +3049.333747 +3049.391922 +3049.445602 +3049.477503 +3049.563018 +3049.646667 +3049.676338 +3049.731083 +3049.820293 +3049.877569 +3049.966414 +3049.999780 +3050.069278 +3050.107306 +3050.136810 +3050.172474 +3050.248798 +3050.276037 +3050.310769 +3050.378002 +3050.467446 +3050.601178 +3050.783296 +3050.817129 +3050.882364 +3050.913666 +3050.945467 +3050.977269 +3051.022423 +3051.056056 +3051.087791 +3051.127818 +3051.156356 +3051.204275 +3051.235643 +3051.278367 +3051.313332 +3051.355057 +3051.393952 +3051.431214 +3051.464947 +3051.502543 +3051.538707 +3051.580265 +3051.614164 +3051.641637 +3051.673672 +3051.710601 +3051.744168 +3051.780931 +3051.825553 +3051.867910 +3051.911034 +3051.955922 +3051.999579 +3052.034277 +3052.073305 +3052.111034 +3052.174204 +3052.207204 +3052.263714 +3052.297247 +3052.343268 +3052.374304 +3052.415662 +3052.456788 +3052.505572 +3052.547630 +3052.593051 +3052.634310 +3052.682761 +3052.722189 +3052.761216 +3052.803574 +3052.814197 +3052.837507 +3052.869574 +3052.902608 +3052.937040 +3052.980497 +3053.029215 +3053.072405 +3053.108435 +3053.160616 +3053.205205 +3053.238672 +3053.304073 +3053.342901 +3053.385292 +3053.433643 +3053.476600 +3053.522687 +3053.561449 +3053.602408 +3053.655022 +3053.699111 +3053.759384 +3053.800776 +3053.848461 +3053.893150 +3053.947462 +3053.996014 +3054.040336 +3054.091052 +3054.123886 +3054.188354 +3054.238637 +3054.290485 +3054.337672 +3054.379763 +3054.412430 +3054.452423 +3054.510499 +3054.555853 +3054.602506 +3054.666775 +3054.778397 +3054.828447 +3054.879696 +3054.909999 +3055.029146 +3055.080428 +3055.108700 +3055.241200 +3055.263445 +3055.306968 +3055.395080 +3055.421786 +3055.534540 +3055.567374 +3055.611130 +3055.688453 +3055.708466 +3057.324482 +3057.328278 +3057.330609 +3057.334438 +3057.409530 +3057.411595 +3057.413892 +3057.416590 +3057.420852 +3057.463010 +3057.466606 +3057.478328 +3057.507132 +3057.510662 +3057.512560 +3057.514858 +3057.518321 +3057.614924 +3057.619187 +3057.622883 +3057.626013 +3057.632240 +3057.921517 +3057.923715 +3057.925780 +3057.928544 +3057.939300 +3058.123948 +3058.126013 +3058.128144 +3058.130974 +3058.137568 +3058.328477 +3058.332839 +3058.335703 +3058.342829 +3058.503235 +3058.505766 +3058.508130 +3058.511460 +3058.520385 +3058.677461 +3058.680158 +3058.682789 +3058.686518 +3058.697041 +3058.819419 +3058.822149 +3058.825246 +3058.829575 +3058.918519 +3058.923115 +3058.929042 +3058.989016 +3059.014024 +3059.058879 +3059.077760 +3059.099771 +3059.134570 +3059.158546 +3059.187084 +3059.196708 +3059.244593 +3059.266571 +3059.295509 +3059.315822 +3059.353884 +3059.383787 +3059.402502 +3059.445126 +3059.469468 +3059.495675 +3059.523347 +3059.555116 +3059.585918 +3059.602468 +3059.637034 +3059.814989 +3059.853683 +3059.881555 +3059.895941 +3059.912191 +3059.970267 +3060.008295 +3060.075128 +3060.424978 +3060.644558 +3060.717052 +3060.761275 +3060.834934 +3060.869467 +3061.282187 +3061.304997 +3061.405996 +3061.669233 +3061.751750 +3061.783085 +3061.848553 +3061.877324 +3061.903232 +3061.936465 +3061.972829 +3062.020015 +3062.070697 +3062.116918 +3062.145156 +3062.200234 +3062.235033 +3062.279855 +3062.325809 +3062.354447 +3062.391743 +3062.420680 +3062.478789 +3062.514220 +3062.557810 +3062.604230 +3062.632968 +3062.700434 +3062.723278 +3062.760940 +3062.785049 +3062.806561 +3062.833367 +3062.911056 +3062.960140 +3063.018449 +3063.064636 +3063.138196 +3063.179321 +3063.220879 +3063.262504 +3063.309824 +3063.340393 +3063.382651 +3063.419481 +3063.468831 +3063.514985 +3063.550982 +3063.592241 +3063.623643 +3063.647186 +3063.715418 +3063.743190 +3063.780419 +3063.841325 +3063.873393 +3063.912620 +3063.933599 +3063.981352 +3063.987712 +3064.019913 +3064.052713 +3064.112487 +3064.170196 +3064.927837 +3064.929835 +3064.931800 +3064.934364 +3064.938260 +3065.103994 +3065.106192 +3065.108357 +3065.111187 +3065.267930 +3065.270361 +3065.272892 +3065.276189 +3065.424840 +3065.428203 +3065.460637 +3065.551646 +3065.558739 +3065.572159 +3065.632199 +3065.646984 +3065.681183 +3065.693371 +3065.710254 +3065.768363 +3065.802928 +3065.849448 +3065.915249 +3065.940724 +3065.989009 +3066.022475 +3066.050247 +3066.110154 +3066.136960 +3066.477819 +3066.519777 +3066.560603 +3067.128268 +3067.165997 +3067.326037 +3067.400296 +3067.448947 +3068.021940 +3068.056572 +3068.131264 +3068.250445 +3068.322140 +3068.367661 +3069.222572 +3069.237024 +3069.504456 +3069.820507 +3070.080180 +3070.090669 +3070.331761 +3070.336124 +3070.444415 +3070.453007 +3070.536989 +3070.545781 +3070.669090 +3070.670989 +3070.674252 +3070.675884 +3070.679314 +3070.682410 +3071.434924 +3071.437022 +3071.439319 +3071.451907 +3071.619939 +3071.624401 +3071.626732 +3071.629462 +3071.632659 +3071.759099 +3071.760598 +3071.762263 +3071.766658 +3071.770321 +3071.832060 +3071.834024 +3071.837188 +3071.840451 +3071.845413 +3071.897727 +3071.899259 +3071.901523 +3071.904887 +3071.909316 +3071.966359 +3071.968823 +3071.972119 +3071.976249 +3072.031627 +3072.035623 +3072.041483 +3072.049375 +3072.486638 +3072.491666 +3072.496128 +3072.707583 +3072.710247 +3072.713144 +3072.716741 +3072.885172 +3072.888902 +3072.895329 +3072.998026 +3073.002155 +3073.009081 +3073.043680 +3073.060463 +3073.101889 +3073.122435 +3073.154503 +3073.182774 +3073.218505 +3073.243247 +3073.279910 +3073.313310 +3073.342981 +3073.394729 +3073.423866 +3073.464292 +3073.498125 +3073.530460 +3073.551905 +3073.592098 +3073.620436 +3073.662161 +3073.694695 +3073.727695 +3073.762294 +3073.799590 +3073.834489 +3073.868055 +3073.905551 +3073.933989 +3073.966223 +3073.999090 +3074.035288 +3074.053403 +3074.106583 +3074.147275 +3074.222900 +3074.264392 +3074.298724 +3074.343745 +3074.380176 +3074.422034 +3074.463659 +3074.500988 +3074.533955 +3074.573882 +3074.607082 +3074.640349 +3074.682573 +3074.723166 +3074.759230 +3074.804684 +3074.848573 +3074.892763 +3075.034687 +3075.080108 +3075.122932 +3075.170285 +3075.452569 +3075.542579 +3075.592462 +3075.821999 +3075.865189 +3076.168352 +3076.316304 +3076.359028 +3076.414473 +3076.535185 +3076.803050 +3076.873413 +3076.939480 +3077.016370 +3077.108411 +3077.158927 +3077.246140 +3077.330123 +3077.376243 +3079.168682 +3079.171246 +3079.173111 +3079.173877 +3079.175109 +3079.232518 +3079.234849 +3079.242009 +3079.301549 +3079.303514 +3079.309941 +3079.312905 +3079.319165 +3079.382735 +3079.385665 +3079.390827 +3079.436747 +3079.438113 +3079.442408 +3079.445106 +3079.449301 +3079.511006 +3079.513903 +3079.520497 +3079.569048 +3079.571679 +3079.574776 +3079.578139 +3079.582601 +3079.692125 +3079.694423 +3079.696687 +3079.698852 +3079.701482 +3079.705045 +3080.042208 +3080.044372 +3080.046570 +3080.049667 +3080.057659 +3080.267249 +3080.269247 +3080.271545 +3080.274342 +3080.279970 +3080.458891 +3080.461155 +3080.463653 +3080.466683 +3080.479237 +3080.645104 +3080.647402 +3080.650000 +3080.653762 +3080.789460 +3080.792557 +3080.796187 +3080.803479 +3080.910639 +3080.914102 +3080.918564 +3080.935347 +3081.025757 +3081.040808 +3081.054095 +3081.089893 +3081.107475 +3081.138910 +3081.167415 +3081.199749 +3081.223226 +3081.253396 +3081.279936 +3081.310438 +3081.339809 +3081.371078 +3081.396985 +3081.422160 +3081.451930 +3081.478537 +3081.594721 +3081.654128 +3081.708973 +3081.863252 +3081.915966 +3081.951896 +3082.014900 +3082.038077 +3082.173508 +3082.349465 +3082.381566 +3082.453561 +3082.562485 +3082.599382 +3082.636611 +3082.709405 +3082.828918 +3083.251795 +3083.292588 +3083.459521 +3083.494519 +3083.665548 +3083.695917 +3083.722158 +3083.757456 +3083.792554 +3083.825121 +3083.857555 +3083.888491 +3083.912500 +3083.948864 +3083.983330 +3084.017329 +3084.051195 +3084.087725 +3084.107039 +3084.140372 +3084.178135 +3084.209004 +3084.239673 +3084.303775 +3084.337242 +3084.370575 +3084.412433 +3084.445334 +3084.492087 +3084.527818 +3084.562916 +3084.593619 +3084.626486 +3084.656256 +3084.681564 +3084.724121 +3084.762250 +3084.797914 +3084.836642 +3084.872306 +3084.899812 +3084.941837 +3084.984461 +3085.023055 +3085.058087 +3085.100944 +3085.140072 +3085.179532 +3085.218327 +3085.249895 +3085.288423 +3085.320624 +3085.364547 +3085.400411 +3085.425220 +3085.458286 +3085.503874 +3085.539072 +3085.568609 +3085.594317 +3085.628916 +3085.663614 +3085.708702 +3085.746065 +3085.780497 +3085.819225 +3085.859618 +3085.901976 +3085.946032 +3085.979298 +3086.023987 +3086.066877 +3086.108003 +3086.144666 +3086.179997 +3086.215429 +3086.259185 +3086.293018 +3086.345299 +3086.375035 +3086.425318 +3086.465112 +3086.486457 +3086.516993 +3086.544066 +3086.570573 +3086.590320 +3086.623453 +3086.743866 +3086.771172 +3086.931345 +3086.985158 +3087.036174 +3087.093616 +3087.142134 +3087.206903 +3087.243666 +3087.306470 +3087.363280 +3087.407802 +3087.477931 +3087.530013 +3087.566176 +3087.618025 +3087.671971 +3087.723219 +3087.793116 +3087.847162 +3087.905803 +3087.983559 +3088.030378 +3088.086056 +3088.119289 +3088.175167 +3088.224684 +3089.742931 +3089.744929 +3089.746794 +3089.748958 +3089.752122 +3090.012628 +3090.016490 +3090.018788 +3090.022484 +3090.198275 +3090.200406 +3090.202571 +3090.422018 +3090.424116 +3090.429377 +3090.792880 +3090.801005 +3090.990515 +3091.126779 +3091.143462 +3091.294877 +3091.350688 +3091.427545 +3091.510362 +3091.598640 +3091.693345 +3091.711827 +3091.765806 +3091.863442 +3091.947691 +3091.970368 +3092.050155 +3092.076728 +3092.094643 +3092.139199 +3092.153285 +3092.440864 +3092.442995 +3092.454250 +3092.504500 +3092.531240 +3093.424146 +3093.427076 +3093.430173 +3093.437200 +3093.596174 +3093.597672 +3093.601036 +3093.604366 +3093.610027 +3093.729241 +3093.732171 +3093.734735 +3093.739131 +3093.743693 +3094.116619 +3094.119616 +3094.122580 +3094.127342 +3094.331305 +3094.334002 +3094.337432 +3094.344025 +3094.507661 +3094.510658 +3094.513755 +3094.518717 +3094.672063 +3094.829672 +3094.840961 +3094.896439 +3095.006762 +3095.087381 +3095.169199 +3095.414054 +3095.500967 +3095.547154 +3095.589445 +3095.638096 +3095.673927 +3095.790078 +3095.826641 +3095.851516 +3095.893341 +3095.977890 +3096.516417 +3096.790510 +3096.854679 +3096.961105 +3097.041358 +3097.093606 +3097.160173 +3097.229770 +3097.300000 +3097.516816 +3097.601664 +3099.064700 +3099.066698 +3099.068662 +3099.071093 +3099.075223 +3099.231433 +3099.232498 +3099.234163 +3099.238093 +3099.240524 +3099.244720 +3099.304493 +3099.306258 +3099.308855 +3099.311320 +3099.314283 +3099.320011 +3099.380217 +3099.382015 +3099.384147 +3099.386677 +3099.388809 +3099.391939 +3099.508089 +3099.510021 +3099.512052 +3099.514083 +3099.516381 +3099.519877 +3099.910720 +3099.913084 +3099.915315 +3099.918379 +3099.925638 +3100.051479 +3100.054109 +3100.060736 +3100.165198 +3100.169361 +3100.173823 +3100.243320 +3100.251145 +3100.301761 +3100.319244 +3100.389673 +3100.430266 +3100.459237 +3100.510120 +3100.536526 +3100.565431 +3100.613449 +3100.648781 +3100.676553 +3100.700862 +3100.752444 +3100.807588 +3100.834195 +3100.910186 +3100.945184 +3100.988974 +3101.029433 +3101.064731 +3101.147681 +3101.169859 +3101.243585 +3101.283079 +3101.336759 +3101.509552 +3101.551777 +3101.667761 +3101.754008 +3101.971823 +3102.030031 +3102.101493 +3102.134926 +3103.140220 +3103.146747 +3103.934525 +3104.291201 +3104.304921 +3104.456269 +3104.540818 +3104.543915 +3105.077814 +3105.214377 +3105.217374 +3105.275816 +3105.422203 +3105.466924 +3105.531593 +3105.589402 +3107.462427 +3107.595194 +3107.597259 +3107.748907 +3107.753602 +3107.756766 +3107.820335 +3107.837518 +3108.323032 +3108.325796 +3108.328627 +3108.507947 +3108.510178 +3108.521933 +3109.114806 +3109.118503 +3109.460294 +3109.464922 +3109.713540 +3109.723830 +3109.941379 +3109.946574 +3109.955132 +3110.192527 +3110.198854 +3110.211908 +3110.409810 +3110.418634 +3110.465654 +3110.533053 +3110.574545 +3110.635651 +3110.677509 +3110.748604 +3110.810509 +3110.887066 +3111.011608 +3111.109243 +3111.214438 +3111.378574 +3111.505946 +3111.651800 +3113.365252 +3113.377906 +3113.446437 +3113.448635 +3113.459124 +3113.513603 +3113.518765 +3113.586896 +3113.650200 +3113.659024 +3115.657790 +3115.660088 +3115.664783 +3115.791689 +3115.793587 +3115.795852 +3115.797783 +3115.799781 +3115.802945 +3115.923491 +3115.925689 +3115.927986 +3115.933048 +3115.939974 +3115.985695 +3115.987560 +3115.989924 +3115.992755 +3115.996684 +3116.112069 +3116.113867 +3116.115732 +3116.118962 +3116.121426 +3116.125788 +3116.178402 +3116.180267 +3116.184030 +3116.187526 +3116.197849 +3116.758988 +3116.768045 +3116.921092 +3116.927552 +3117.097815 +3117.156390 +3117.313832 +3117.424555 +3117.572107 +3117.611201 +3117.652360 +3117.768111 +3117.800479 +3118.107338 +3118.149396 +3118.197981 +3118.242536 +3118.294351 +3118.423954 +3118.478633 +3118.577168 +3118.736042 +3118.872239 +3118.894617 +3119.105672 +3119.341736 +3119.489554 +3119.735475 +3119.864612 +3123.229611 +3123.291782 +3123.296177 +3123.366474 +3123.369271 +3123.371868 +3123.375898 +3123.422917 +3123.429277 +3123.504236 +3123.571202 +3123.577562 +3123.581159 +3128.474227 +3128.480255 +3128.646555 +3128.649718 +3128.709892 +3128.711423 +3128.712755 +3128.861706 +3128.865569 +3128.917018 +3128.921813 +3130.395105 +3130.399234 +3130.401964 +3130.406227 +3130.503463 +3130.505494 +3130.507625 +3130.510423 +3130.517083 +3130.712720 +3130.715884 +3130.718048 +3130.720546 +3130.786280 +3130.787845 +3130.789576 +3130.791574 +3130.793772 +3130.796569 +3130.803829 +3130.942890 +3130.945287 +3130.947552 +3130.953646 +3131.004828 +3131.006593 +3131.012220 +3131.018947 +3131.118647 +3131.122277 +3131.127805 +3131.136030 +3131.138760 +3131.225240 +3131.231301 +3131.472559 +3131.476256 +3131.480385 +3131.501564 +3131.685147 +3131.689209 +3131.696069 +3131.799998 +3131.807924 +3131.829602 +3131.880085 +3131.903461 +3131.943188 +3131.972659 +3132.014850 +3132.051813 +3132.086512 +3132.118513 +3132.155176 +3132.194470 +3132.232798 +3132.265000 +3132.299365 +3132.332099 +3132.370294 +3132.403228 +3132.439025 +3132.467597 +3132.490774 +3132.536261 +3132.567031 +3132.605692 +3132.636561 +3132.677054 +3132.709288 +3132.751612 +3132.805192 +3132.857973 +3132.919977 +3132.957973 +3133.001762 +3133.036261 +3133.070560 +3133.133730 +3133.169261 +3133.275854 +3133.325138 +3133.375754 +3133.440556 +3133.501728 +3133.551612 +3133.619111 +3133.677253 +3133.785910 +3133.808987 +3133.908454 +3134.961367 +3134.963665 +3134.968027 +3135.110651 +3135.112915 +3135.115546 +3135.118810 +3135.180514 +3135.183445 +3135.192935 +3135.272023 +3135.274387 +3135.277417 +3135.333828 +3135.424037 +3135.432362 +3135.444683 +3135.450677 +3135.461766 +3136.039721 +3136.043850 +3136.049212 +3136.168825 +3136.175851 +3136.264629 +3136.282744 +3136.291536 +3137.187838 +3137.191168 +3137.194498 +3137.207985 +3137.247679 +3139.259065 +3139.577946 +3139.581875 +3139.744413 +3139.808249 +3139.814376 +3140.164858 +3140.173750 +3140.364226 +3140.434422 +3140.518371 +3140.739683 +3140.741947 +3140.744911 +3140.891265 +3140.896859 +3141.047741 +3141.059829 +3142.943777 +3142.946008 +3142.947973 +3142.950337 +3142.954266 +3143.235019 +3143.239214 +3143.241545 +3143.244442 +3143.253633 +3143.401552 +3143.438648 +3143.442378 +3143.446540 +3143.449138 +3143.454432 +3143.589664 +3143.590896 +3143.592527 +3143.593993 +3143.595791 +3143.601119 +3143.612407 +3143.621365 +3143.623563 +3143.689364 +3143.691728 +3143.697655 +3143.738182 +3143.740180 +3143.744042 +3143.749737 +3143.813972 +3143.818201 +3143.822331 +3143.826027 +3143.881105 +3143.882903 +3143.886466 +3143.889763 +3144.575610 +3144.578174 +3144.580838 +3144.586099 +3144.836815 +3144.839479 +3144.842143 +3144.846539 +3145.049669 +3145.052433 +3145.055396 +3145.060658 +3145.263588 +3145.266485 +3145.269615 +3145.275176 +3145.455862 +3145.459092 +3145.462522 +3145.469182 +3145.640910 +3145.644607 +3145.648836 +3145.664487 +3145.801383 +3145.805745 +3145.812139 +3145.899918 +3145.907443 +3145.946771 +3145.976641 +3146.022861 +3146.056694 +3146.088129 +3146.128023 +3146.162755 +3146.196055 +3146.232518 +3146.300483 +3146.337313 +3146.370014 +3146.407843 +3146.422361 +3146.462721 +3146.504113 +3146.532251 +3146.564819 +3146.597986 +3146.608708 +3146.612371 +3146.695654 +3146.715768 +3146.753497 +3146.756727 +3146.759524 +3146.766583 +3146.844539 +3146.847769 +3146.867749 +3146.929487 +3147.040443 +3147.205544 +3147.299217 +3147.395088 +3147.439643 +3147.578571 +3147.667215 +3147.718497 +3147.845770 +3148.088494 +3148.121594 +3149.999248 +3150.001445 +3150.003543 +3150.006873 +3150.455924 +3150.458088 +3150.460120 +3150.462750 +3150.472973 +3150.741005 +3150.743070 +3150.744901 +3150.747332 +3150.750928 +3150.968577 +3150.972573 +3151.136875 +3151.200712 +3151.202676 +3151.204774 +3151.207272 +3151.212167 +3151.591387 +3151.593885 +3151.599146 +3151.605173 +3151.774004 +3151.776235 +3151.778467 +3151.781064 +3151.787291 +3151.910135 +3151.913631 +3151.918526 +3151.922522 +3152.281230 +3152.284027 +3152.286958 +3152.292619 +3152.539838 +3152.542635 +3152.545565 +3152.549761 +3152.926884 +3152.929814 +3152.932611 +3152.938306 +3153.192984 +3153.195615 +3153.198145 +3153.202008 +3153.211399 +3153.564146 +3154.035940 +3156.535771 +3156.537736 +3156.541665 +3156.658915 +3156.660346 +3156.662578 +3156.664576 +3156.666707 +3156.669970 +3156.811495 +3156.813526 +3156.815458 +3156.817389 +3156.819920 +3156.825781 +3156.875631 +3156.877462 +3156.879394 +3156.881292 +3156.883057 +3156.886054 +3156.911029 +3156.952621 +3156.955584 +3156.958515 +3156.962411 +3157.023883 +3157.030642 +3157.033073 +3157.036537 +3157.042231 +3160.162008 +3160.203866 +3160.206463 +3160.208994 +3160.213723 +3160.239497 +3160.365338 +3160.367269 +3160.372897 +3160.429940 +3160.432504 +3160.434735 +3160.439064 +3160.555381 +3160.557812 +3160.561774 +3160.569800 +3160.610193 +3160.611858 +3160.613722 +3160.616853 +3160.672530 +3160.679823 +3160.732870 +3160.735168 +3160.738664 +3160.791544 +3160.804065 +3161.098271 +3161.101767 +3161.105264 +3161.113489 +3161.257978 +3161.261607 +3161.266602 +3161.289379 +3161.317951 +3161.394208 +3161.403199 +3161.446855 +3161.475094 +3161.497538 +3161.529106 +3161.562340 +3161.594574 +3161.620515 +3161.664770 +3161.694174 +3161.723179 +3161.762140 +3161.791277 +3161.807061 +3161.848520 +3161.883418 +3161.903731 +3161.948287 +3161.982253 +3161.999835 +3162.049285 +3162.079422 +3162.098703 +3162.140827 +3162.176125 +3162.195273 +3162.231903 +3162.296838 +3162.327607 +3162.660740 +3162.696671 +3162.770697 +3162.896870 +3163.272761 +3163.330736 +3163.368731 +3163.567932 +3163.687879 +3163.705594 +3163.760672 +3163.947619 +3164.020679 +3164.064835 +3164.098401 +3164.208624 +3164.290276 +3164.315084 +3164.524275 +3164.540425 +3164.598867 +3164.628670 +3164.664568 +3164.696902 +3164.734398 +3164.816848 +3164.884681 +3164.911154 +3165.057408 +3165.099366 +3165.147984 +3165.292639 +3165.326572 +3165.362269 +3165.374623 +3165.406825 +3165.423108 +3165.530867 +3165.555742 +3165.597334 +3165.678619 +3165.757240 +3165.805858 +3165.859938 +3165.892738 +3165.982382 +3166.053411 +3166.124107 +3166.172158 +3166.264499 +3166.313484 +3166.413517 +3166.476054 +3166.522541 +3166.573357 +3166.796300 +3167.088241 +3167.138158 +3167.217912 +3169.256105 +3169.258869 +3169.260733 +3169.262598 +3169.264763 +3169.268492 +3169.395598 +3169.397230 +3169.398962 +3169.400926 +3169.402791 +3169.405622 +3169.416411 +3169.459634 +3169.462465 +3169.465329 +3169.468359 +3169.471955 +3169.528898 +3169.531529 +3169.535791 +3169.539355 +3169.545349 +3169.671789 +3169.673720 +3169.675785 +3169.678216 +3169.682378 +3169.911915 +3169.913713 +3169.915578 +3169.917909 +3169.921672 +3170.021472 +3170.023370 +3170.026034 +3170.028898 +3170.139620 +3170.142617 +3170.146747 +3170.152374 +3170.200626 +3170.204522 +3170.224236 +3170.235957 +3170.272887 +3170.283110 +3170.302224 +3170.333893 +3170.350043 +3170.395264 +3170.419640 +3170.441152 +3170.454605 +3170.482510 +3170.503356 +3170.524768 +3170.547112 +3170.571821 +3170.593566 +3170.618208 +3170.638588 +3170.668491 +3170.691801 +3170.716843 +3170.739287 +3170.759600 +3170.780845 +3170.804222 +3170.828830 +3170.846812 +3170.907685 +3170.961731 +3170.975450 +3171.001125 +3171.048910 +3171.084708 +3171.106186 +3171.124435 +3171.153306 +3171.175017 +3171.202823 +3171.234658 +3171.254238 +3171.281477 +3171.332526 +3171.361031 +3171.384541 +3171.407185 +3171.430162 +3171.470921 +3171.494098 +3171.519606 +3171.542116 +3171.564827 +3171.592466 +3171.627764 +3171.649076 +3171.672286 +3171.690668 +3171.694797 +3171.720638 +3171.746745 +3171.757334 +3171.760165 +3171.799192 +3171.833525 +3171.864061 +3171.909049 +3171.927964 +3171.966458 +3171.992599 +3172.114277 +3172.158333 +3172.199791 +3172.222502 +3172.256701 +3172.295229 +3172.396228 +3172.418872 +3172.461563 +3172.485039 +3172.499891 +3172.534357 +3172.548542 +3172.569055 +3172.630693 +3172.639252 +3172.722701 +3172.759032 +3172.821169 +3172.888669 +3172.917973 +3172.962628 +3173.059065 +3173.143680 +3173.172418 +3173.201755 +3173.258831 +3173.277779 +3173.354402 +3173.409347 +3173.444446 +3173.488002 +3173.563660 +3173.632357 +3173.664226 +3173.752204 +3173.792564 +3173.823067 +3173.924898 +3173.987202 +3174.006783 +3174.016073 +3174.054435 +3174.059696 +3174.108081 +3174.259496 +3174.297225 +3174.450871 +3174.492163 +3174.581074 +3174.681607 +3174.720868 +3174.828327 +3175.116705 +3175.121234 +3175.125230 +3175.130891 +3175.414607 +3175.417138 +3175.420501 +3175.423897 +3175.431057 +3176.555232 +3176.557762 +3176.560027 +3176.563856 +3176.832188 +3176.834719 +3176.841312 +3177.011808 +3177.014772 +3177.017902 +3177.022164 +3177.154532 +3177.158095 +3177.163023 +3177.173812 +3177.272380 +3177.278941 +3177.290829 +3177.330622 +3177.351668 +3177.380372 +3177.408844 +3177.433652 +3177.466320 +3177.489596 +3177.518268 +3177.636416 +3177.778441 +3177.786632 +3177.834484 +3177.845440 +3177.849270 +3177.900252 +3177.906845 +3177.933985 +3178.049269 +3178.225759 +3178.282036 +3178.441077 +3178.476175 +3178.584400 +3178.662389 +3178.729822 +3178.761057 +3178.857560 +3178.890594 +3178.920964 +3178.987031 +3179.010474 +3179.102082 +3179.141709 +3179.183168 +3179.216468 +3179.253764 +3179.285965 +3179.584599 +3179.612338 +3179.640277 +3179.686531 +3179.790493 +3179.827956 +3179.966584 +3179.997786 +3180.027289 +3180.371545 +3180.407442 +3180.477505 +3180.510306 +3180.582933 +3180.653396 +3180.717199 +3180.776073 +3180.819496 +3180.928487 +3180.997285 +3181.031251 +3181.066949 +3181.103212 +3181.175340 +3181.208274 +3181.343439 +3181.379802 +3181.523192 +3181.554994 +3181.594521 +3181.625456 +3181.662053 +3181.740574 +3181.773175 +3181.884730 +3181.913235 +3181.969579 +3182.002213 +3182.039608 +3182.072342 +3182.090924 +3182.130584 +3182.168846 +3182.218296 +3182.258722 +3182.308573 +3182.347933 +3182.392355 +3182.429618 +3182.475872 +3182.514866 +3182.552229 +3182.591090 +3182.621559 +3182.660554 +3182.682165 +3182.711836 +3182.743038 +3182.787460 +3182.839874 +3182.881799 +3182.936144 +3182.972008 +3183.024822 +3183.061752 +3183.093520 +3183.128052 +3183.156757 +3183.204010 +3183.235445 +3183.273007 +3183.305175 +3183.336577 +3183.374206 +3183.406307 +3183.478235 +3183.511502 +3183.552328 +3183.609670 +3183.647133 +3183.679800 +3183.716363 +3183.749464 +3183.786427 +3183.819560 +3183.857922 +3183.894951 +3183.928318 +3183.964382 +3183.990289 +3184.025521 +3184.042304 +3184.098314 +3184.121658 +3184.152493 +3184.195417 +3184.294918 +3184.330149 +3184.506739 +3184.571607 +3184.663682 +3184.726053 +3184.776402 +3184.822656 +3184.852693 +3185.033478 +3185.138673 +3185.180265 +3185.259619 +3185.335309 +3185.407704 +3185.592918 +3185.661783 +3185.689555 +3185.730014 +3185.758786 +3185.836141 +3185.893684 +3185.910301 +3185.934643 +3186.203041 +3186.253490 +3186.290054 +3186.336674 +3186.368042 +3186.407170 +3186.441868 +3186.487290 +3186.515561 +3186.550726 +3186.588721 +3186.627649 +3186.669174 +3186.701842 +3186.740536 +3186.772271 +3186.808102 +3186.847196 +3186.885158 +3186.917193 +3186.953623 +3186.996080 +3187.023087 +3187.069407 +3187.100642 +3187.133276 +3187.161814 +3187.197412 +3187.234941 +3187.269706 +3187.303040 +3187.334875 +3187.365011 +3187.395014 +3187.430179 +3187.466576 +3187.494814 +3187.533542 +3187.564944 +3187.591884 +3187.628281 +3187.657785 +3187.685424 +3187.719989 +3187.755653 +3187.789153 +3187.825916 +3187.860682 +3187.891018 +3187.918723 +3187.964344 +3187.999176 +3188.031311 +3188.063712 +3188.100009 +3188.132010 +3188.165343 +3188.197844 +3188.222852 +3188.259016 +3188.292616 +3188.319389 +3188.360448 +3188.396712 +3188.431710 +3188.485856 +3188.514127 +3188.542999 +3188.604970 +3188.630911 +3188.830944 +3188.930977 +3188.984989 +3189.155685 +3189.209998 +3189.269172 +3189.370970 +3189.461046 +3189.554986 +3189.582625 +3189.707599 +3189.729344 +3189.760879 +3189.845228 +3189.900606 +3189.967306 +3189.993413 +3190.065508 +3190.121652 +3190.148758 +3190.238401 +3190.304835 +3190.541398 +3190.608731 +3190.639433 +3190.673266 +3190.709197 +3190.735670 +3190.770602 +3190.798408 +3190.827478 +3190.854551 +3190.884854 +3190.903236 +3190.914358 +3190.957448 +3190.984688 +3191.019320 +3191.049922 +3191.082290 +3191.114258 +3191.151487 +3191.187118 +3191.215590 +3191.245260 +3191.283822 +3191.310828 +3191.338134 +3191.363542 +3191.387251 +3191.418387 +3191.442996 +3191.475197 +3191.503768 +3191.525280 +3191.562276 +3191.586452 +3191.623515 +3191.655583 +3191.688550 +3191.721217 +3191.750288 +3191.780425 +3191.809362 +3191.839765 +3191.874797 +3191.908030 +3191.938133 +3191.969402 +3191.999905 +3192.030741 +3192.089848 +3192.115423 +3192.148822 +3192.175562 +3192.208196 +3192.298606 +3192.332072 +3192.361376 +3192.376561 +3192.392612 +3192.425679 +3192.456448 +3192.480790 +3192.512059 +3192.545758 +3192.587950 +3192.623014 +3192.656514 +3192.691513 +3192.730141 +3192.759278 +3192.792178 +3192.823813 +3192.847190 +3192.876527 +3192.899937 +3192.928309 +3192.955215 +3192.981955 +3193.006064 +3193.021149 +3193.074596 +3193.100137 +3193.135302 +3193.167836 +3193.202268 +3193.231239 +3193.265538 +3193.299171 +3193.339497 +3193.377792 +3193.409727 +3193.444459 +3193.475062 +3193.513723 +3193.538631 +3193.572031 +3193.605731 +3193.639264 +3193.672997 +3193.700403 +3193.731671 +3193.752550 +3193.785984 +3193.811924 +3193.847156 +3193.888181 +3193.932903 +3193.965204 +3194.009959 +3194.041694 +3194.084518 +3194.122547 +3194.162740 +3194.200802 +3194.234035 +3194.272696 +3194.310492 +3194.347888 +3194.380522 +3194.419017 +3194.456146 +3194.492743 +3194.524012 +3194.558977 +3194.590878 +3194.619949 +3194.640029 +3194.684551 +3194.717251 +3194.744025 +3194.758543 +3194.795473 +3194.835999 +3194.870931 +3194.903465 +3194.945523 +3195.097771 +3195.282652 +3195.305063 +3195.357111 +3195.464503 +3195.642792 +3195.732002 +3195.807394 +3195.851916 +3195.971629 +3196.195405 +3196.221945 +3196.272628 +3196.349051 +3196.400566 +3197.273559 +3197.275790 +3197.278321 +3197.281351 +3197.292607 +3197.440159 +3197.443056 +3197.445254 +3197.448551 +3197.454278 +3197.605960 +3197.608424 +3197.611188 +3197.615051 +3197.636563 +3197.740625 +3197.744521 +3197.749183 +3197.770628 +3197.803629 +3197.827005 +3197.849250 +3197.876356 +3197.913319 +3197.946486 +3197.963868 +3197.991407 +3198.003862 +3198.038593 +3198.056875 +3198.081217 +3198.095570 +3198.123409 +3198.147385 +3198.167897 +3198.194104 +3198.209489 +3198.239293 +3198.291307 +3198.306292 +3198.335463 +3198.359739 +3198.379619 +3198.394071 +3198.419146 +3198.446718 +3198.468630 +3198.491274 +3198.507724 +3198.535363 +3198.560005 +3198.585546 +3198.600265 +3198.625306 +3198.652978 +3198.680085 +3198.696235 +3198.740025 +3198.764334 +3198.790108 +3198.803494 +3198.836561 +3198.858839 +3198.885812 +3198.900997 +3198.932665 +3198.958939 +3198.982782 +3199.025439 +3199.050281 +3199.077753 +3199.096701 +3199.129735 +3199.152379 +3199.177687 +3199.198066 +3199.226871 +3199.283980 +3199.297733 +3199.386844 +3199.428402 +3199.498832 +3199.521809 +3199.548182 +3199.590640 +3199.623241 +3199.650380 +3199.699864 +3199.766331 +3199.847649 +3199.898365 +3199.932864 +3199.991305 +3200.022907 +3200.137659 +3200.158438 +3200.215648 +3200.236560 +3200.331565 +3200.453743 +3200.492770 +3200.529134 +3200.562101 +3200.639690 +3200.662733 +3200.863632 +3200.889706 +3201.015713 +3201.143752 +3201.172423 +3201.233928 +3201.261134 +3201.291171 +3201.349712 +3201.406722 +3201.434061 +3201.488740 +3201.518077 +3201.548413 +3201.574554 +3201.607155 +3201.635260 +3201.656239 +3201.689938 +3201.720308 +3201.749146 +3201.806921 +3201.832729 +3201.861067 +3201.890038 +3201.911550 +3201.939655 +3201.968193 +3201.994700 +3202.025136 +3202.048579 +3202.079748 +3202.109752 +3202.138523 +3202.168792 +3202.193534 +3202.215812 +3202.245416 +3202.270757 +3202.299728 +3202.326834 +3202.356538 +3202.391203 +3202.441386 +3202.470457 +3202.497463 +3202.527267 +3202.557637 +3202.583344 +3202.611549 +3202.640454 +3202.665695 +3202.696764 +3202.723737 +3202.753441 +3202.783044 +3202.814047 +3202.840287 +3202.873920 +3202.906088 +3202.935392 +3202.967593 +3202.991302 +3203.021772 +3203.052608 +3203.080979 +3203.104256 +3203.140919 +3203.172987 +3203.209051 +3203.237389 +3203.273320 +3203.307719 +3203.344582 +3203.375917 +3203.409617 +3203.434792 +3203.464162 +3203.498461 +3203.526833 +3203.563563 +3203.591468 +3203.628698 +3203.657602 +3203.688704 +3203.716410 +3203.745847 +3203.774918 +3203.807019 +3203.841618 +3203.873353 +3203.902490 +3203.931861 +3203.965760 +3203.998561 +3204.026766 +3204.063296 +3204.094565 +3204.123036 +3204.151641 +3204.189070 +3204.214678 +3204.239553 +3204.269456 +3204.318208 +3204.341085 +3204.370655 +3204.408950 +3204.519939 +3204.555970 +3204.590835 +3204.628963 +3204.666492 +3204.697861 +3204.735223 +3204.769489 +3204.806352 +3204.837421 +3204.895996 +3204.915676 +3204.943282 +3204.961064 +3204.986405 +3205.012712 +3205.032759 +3205.061663 +3205.089036 +3205.102456 +3205.114943 +3205.143848 +3205.174983 +3205.202689 +3205.233391 +3205.262396 +3205.303888 +3205.336189 +3205.378979 +3205.406984 +3205.457567 +3205.489468 +3205.530494 +3205.567357 +3205.597427 +3205.653338 +3205.692732 +3205.724666 +3205.759198 +3205.813944 +3205.878313 +3205.917640 +3205.950707 +3206.016208 +3206.074849 +3206.102255 +3206.152438 +3206.206484 +3206.237486 +3206.358499 +3206.402621 +3206.489467 +3206.550906 +3206.586137 +3206.664958 +3206.733057 +3206.774116 +3206.877046 +3206.931492 +3206.999690 +3207.004885 +3207.079710 +3207.133989 +3207.425863 +3207.488967 +3207.605151 +3207.623199 +3207.780475 +3207.826995 +3208.083305 +3208.186535 +3208.239649 +3208.265390 +3208.348873 +3208.386502 +3208.442612 +3208.493961 +3208.533455 +3208.600621 +3208.640481 +3208.684537 +3208.732156 +3208.788133 +3208.823831 +3208.862059 +3209.087334 +3209.144110 +3209.228392 +3209.283138 +3209.374846 +3209.417370 +3209.510610 +3209.525828 +3209.620100 +3209.758562 +3209.857929 +3210.063257 +3210.069251 +3210.075311 +3210.154066 +3210.165288 +3210.197755 +3210.227326 +3210.233653 +3211.769216 +3211.771513 +3211.773745 +3211.777607 +3212.030254 +3212.032852 +3212.035915 +3212.041110 +3212.220364 +3212.223261 +3212.226824 +3212.236615 +3212.431586 +3212.621662 +3212.729754 +3212.856760 +3212.944439 +3213.046604 +3213.103280 +3213.389161 +3213.594755 +3213.793723 +3213.875641 +3213.896420 +3214.113203 +3214.156759 +3214.206576 +3214.252097 +3214.297951 +3214.362986 +3214.522926 +3214.646735 +3214.692456 +3214.740508 +3214.770844 +3214.869712 +3214.903145 +3214.942006 +3214.990291 +3215.047268 +3215.091091 +3215.137744 +3215.170977 +3215.211204 +3215.244271 +3215.279968 +3215.329585 +3215.373874 +3215.422259 +3215.462119 +3215.505442 +3215.553994 +3215.587494 +3215.631716 +3215.658523 +3215.690024 +3215.745802 +3215.800181 +3215.846235 +3215.895852 +3215.948466 +3215.986528 +3216.019128 +3216.054293 +3216.098316 +3216.131249 +3216.165682 +3216.221759 +3216.297350 +3216.393254 +3216.453893 +3216.500347 +3216.622091 +3216.679933 +3216.730216 +3217.036943 +3217.239607 +3217.281365 +3217.948930 +3218.081764 +3218.372772 +3218.420791 +3218.704107 +3218.854457 +3218.995349 +3219.429181 +3219.465012 +3219.742301 +3219.771239 +3219.806071 +3219.902574 +3220.193550 +3220.569840 +3220.628015 +3220.733709 +3220.843133 +3220.890752 +3221.341234 +3221.345130 +3221.349526 +3221.631310 +3221.634541 +3221.638137 +3221.821786 +3221.825316 +3221.829845 +3221.889852 +3221.900674 +3221.950957 +3221.979595 +3222.014893 +3222.054287 +3222.082759 +3222.124317 +3222.155452 +3222.193281 +3222.225749 +3222.267773 +3222.294114 +3222.321853 +3222.351989 +3222.379195 +3222.416458 +3222.457916 +3222.505669 +3222.550823 +3222.589618 +3222.632308 +3222.677696 +3222.716957 +3222.761912 +3222.795545 +3222.841932 +3222.882025 +3222.921352 +3222.977496 +3223.030044 +3223.097743 +3223.155285 +3223.192281 +3223.239101 +3223.295878 +3223.334639 +3223.569204 +3223.895644 +3223.944362 +3223.996843 +3224.027911 +3224.102370 +3224.297142 +3224.577028 +3224.597974 +3224.891047 +3225.017221 +3225.158180 +3225.244627 +3225.720717 +3226.074063 +3226.243960 +3226.512691 +3226.647789 +3226.703433 +3226.746657 +3226.927542 +3226.992777 +3227.248521 +3227.580122 +3227.704498 +3227.787215 +3227.835433 +3227.866336 +3227.951451 +3227.993076 +3228.059942 +3228.131970 +3228.197171 +3228.252982 +3228.296705 +3228.336432 +3228.378357 +3228.444391 +3228.503198 +3228.553814 +3228.614187 +3228.667534 +3228.724177 +3228.774693 +3228.838063 +3228.929338 +3228.938030 +3229.138696 +3229.178989 +3229.357909 +3229.396071 +3229.633767 +3229.680487 +3229.746387 +3229.776324 +3229.832701 +3229.894139 +3229.938661 +3229.989244 +3230.026374 +3230.096703 +3230.148685 +3230.192308 +3230.262337 +3230.301065 +3230.409257 +3230.463536 +3230.502497 +3230.558141 +3230.592540 +3230.657176 +3230.698268 +3230.792873 +3230.863902 +3230.906393 +3230.975457 +3231.004062 +3231.123409 +3231.165833 +3231.208857 +3231.304428 +3231.377188 +3231.410655 +3231.498600 +3231.605493 +3231.700065 +3231.770761 +3231.812253 +3231.941224 +3231.995636 +3232.064733 +3232.101463 +3232.203861 +3232.268230 +3232.304560 +3232.391773 +3232.420044 +3232.519345 +3232.573058 +3232.724107 +3232.797034 +3232.836727 +3232.910054 +3233.022275 +3233.084945 +3233.112052 +3233.201895 +3233.229934 +3233.319910 +3233.399164 +3233.489973 +3233.636926 +3233.684212 +3233.701561 +3233.899896 +3233.908021 +3233.997099 +3234.011884 +3234.125770 +3234.147182 +3234.277585 +3234.298431 +3234.479616 +3234.494068 +3234.540089 +3234.601294 +3234.668527 +3234.702892 +3234.860002 +3234.890505 +3234.909985 +3235.503025 +3235.506655 +3235.511450 +3235.824536 +3235.828133 +3235.832628 +3235.864130 +3235.910251 +3235.929198 +3235.966261 +3235.970623 +3236.133061 +3236.137323 +3236.152009 +3236.220640 +3236.238688 +3236.278715 +3236.309018 +3236.348479 +3236.365095 +3236.428798 +3236.463364 +3236.500993 +3236.539720 +3236.575451 +3236.609084 +3236.644782 +3236.682711 +3236.715911 +3236.749744 +3236.785108 +3236.821339 +3236.856004 +3236.894166 +3236.928398 +3236.965561 +3236.995664 +3237.025268 +3237.058568 +3237.090236 +3237.129330 +3237.168391 +3237.208584 +3237.247712 +3237.278581 +3237.311814 +3237.350575 +3237.384075 +3237.419839 +3237.453106 +3237.487771 +3237.531095 +3237.564495 +3237.603855 +3237.632427 +3237.669523 +3237.705287 +3237.749809 +3237.788004 +3237.826666 +3237.862563 +3237.904588 +3237.936156 +3237.970488 +3238.014811 +3238.048111 +3238.088370 +3238.125133 +3238.166825 +3238.210315 +3238.247511 +3238.276082 +3238.308117 +3238.347944 +3238.386738 +3238.417840 +3238.461330 +3238.500325 +3238.535989 +3238.571420 +3238.645846 +3238.687604 +3238.722702 +3238.760764 +3238.799192 +3238.842748 +3238.881443 +3238.920238 +3238.955769 +3239.004353 +3239.046178 +3239.089701 +3239.125665 +3239.214643 +3239.261829 +3239.306518 +3239.355735 +3239.396194 +3239.430460 +3239.479611 +3239.518872 +3239.554603 +3239.604786 +3239.647543 +3239.695828 +3239.743180 +3239.787403 +3239.830227 +3239.871352 +3239.900290 +3239.918971 +3239.926996 +3239.945478 +3239.963427 +3239.976047 +3240.011079 +3240.037586 +3240.062061 +3240.077579 +3240.092497 +3240.118305 +3240.153869 +3240.280576 +3240.319337 +3240.368388 +3240.452837 +3240.505318 +3240.555367 +3240.614841 +3240.662094 +3240.708947 +3240.776646 +3240.913276 +3241.023066 +3241.053036 +3241.171950 +3241.284604 +3241.383139 +3241.449073 +3241.573149 +3241.628327 +3241.651637 +3241.717970 +3241.762326 +3241.777910 +3241.786502 +3241.804883 +3241.813974 +3241.872083 +3241.912842 +3241.951936 +3242.003318 +3242.725861 +3242.735918 +3242.741679 +3242.754666 +3242.758529 +3242.801053 +3242.807946 +3242.865855 +3242.876111 +3243.004383 +3243.141013 +3243.210676 +3243.252434 +3243.381838 +3244.106380 +3244.117702 +3244.128457 +3244.147405 +3244.188964 +3244.247738 +3244.275877 +3245.066185 +3245.069116 +3245.073678 +3245.194424 +3245.199619 +3245.203215 +3245.205646 +3245.213272 +3245.255230 +3245.269981 +3245.278007 +3245.339845 +3245.343941 +3245.369881 +3245.396588 +3245.398653 +3245.404247 +3245.445872 +3247.019930 +3247.022327 +3247.024625 +3247.028488 +3247.185298 +3247.187229 +3247.190126 +3247.192557 +3247.194755 +3247.197086 +3247.264851 +3247.279204 +3247.282400 +3247.286030 +3247.322926 +3247.338977 +3247.841740 +3247.844371 +3247.847202 +3247.853462 +3248.045403 +3248.048001 +3248.050831 +3248.056159 +3248.234314 +3248.237378 +3248.240674 +3248.247634 +3248.392789 +3248.396086 +3248.400381 +3248.421360 +3248.533148 +3248.538676 +3248.558456 +3248.590791 +3248.655426 +3248.683897 +3248.718463 +3248.750497 +3248.780601 +3248.810504 +3248.841440 +3248.876238 +3248.904044 +3248.935612 +3248.966681 +3249.001080 +3249.032682 +3249.070744 +3249.105908 +3249.137976 +3249.169578 +3249.204510 +3249.242139 +3249.277903 +3249.310037 +3249.346334 +3249.381632 +3249.406641 +3249.430617 +3249.482332 +3249.512368 +3249.541073 +3249.716231 +3250.091355 +3250.532813 +3250.843602 +3250.972307 +3251.064714 +3251.147132 +3251.195716 +3251.286659 +3251.334677 +3251.429682 +3251.478766 +3251.525786 +3251.566146 +3251.737940 +3251.787890 +3251.827351 +3251.874837 +3251.915363 +3251.947797 +3251.982762 +3252.031879 +3252.072539 +3252.115662 +3252.161450 +3252.211333 +3252.254224 +3252.289288 +3252.343801 +3252.394916 +3252.444999 +3252.491719 +3252.539305 +3252.587257 +3252.632845 +3252.673437 +3252.729648 +3252.785525 +3252.828149 +3252.873604 +3252.917992 +3252.960783 +3252.989254 +3253.035109 +3253.087889 +3253.151559 +3253.206271 +3253.258651 +3253.306837 +3253.368375 +3253.423586 +3253.481628 +3253.537572 +3253.587988 +3253.633376 +3253.681994 +3253.727615 +3253.775201 +3253.805770 +3253.833443 +3253.963080 +3254.082127 +3254.088354 +3254.244598 +3257.149523 +3257.151288 +3257.153253 +3257.155950 +3257.162311 +3257.496276 +3257.498241 +3257.500106 +3257.502370 +3257.671168 +3257.673199 +3257.675230 +3257.678161 +3257.683922 +3257.911394 +3257.913392 +3257.915490 +3257.918320 +3257.924814 +3258.121883 +3258.124114 +3258.126445 +3258.129376 +3258.137135 +3258.345293 +3258.347458 +3258.349789 +3258.352852 +3258.360345 +3258.513991 +3258.516222 +3258.518520 +3258.531706 +3258.637068 +3258.639299 +3258.646258 +3258.689116 +3258.706432 +3258.724314 +3258.772832 +3258.782589 +3258.809129 +3258.819785 +3258.833271 +3258.866904 +3258.889648 +3258.912892 +3258.940597 +3258.971133 +3258.994210 +3259.017121 +3259.045925 +3259.072498 +3259.098472 +3259.125912 +3259.148156 +3259.176061 +3259.199738 +3259.224147 +3259.254017 +3259.274330 +3259.302335 +3259.326244 +3259.351819 +3259.368202 +3259.390846 +3259.417753 +3259.442461 +3259.472898 +3259.500304 +3259.530373 +3259.563007 +3259.592012 +3259.621049 +3259.648555 +3259.675095 +3259.730307 +3259.758911 +3259.787116 +3259.812924 +3259.839964 +3259.865971 +3259.890280 +3259.916787 +3259.945458 +3259.971365 +3259.999138 +3260.028775 +3260.056913 +3260.083453 +3260.107096 +3260.127276 +3260.153583 +3260.184718 +3260.214855 +3260.233636 +3260.263140 +3260.293410 +3260.323579 +3260.351551 +3260.378691 +3260.408261 +3260.442127 +3260.470199 +3260.502001 +3260.530572 +3260.561941 +3260.586250 +3260.617818 +3260.654348 +3260.687782 +3260.715554 +3260.752450 +3260.789713 +3260.821448 +3260.851484 +3260.887315 +3260.920882 +3260.954348 +3260.984018 +3261.015021 +3261.046722 +3261.080755 +3261.109759 +3261.141927 +3261.184784 +3261.222413 +3261.261274 +3261.297438 +3261.333335 +3261.366369 +3261.407228 +3261.445723 +3261.487181 +3261.525510 +3261.558710 +3261.597871 +3261.681687 +3261.720981 +3261.760641 +3261.793974 +3261.832669 +3261.876358 +3261.915053 +3261.957577 +3261.995239 +3262.027441 +3262.064304 +3262.098769 +3262.133601 +3262.167334 +3262.212622 +3262.244190 +3262.274227 +3262.324210 +3262.367234 +3262.404563 +3262.441659 +3262.485415 +3262.536098 +3262.579888 +3262.639927 +3262.686314 +3262.733267 +3262.771296 +3262.817450 +3262.859241 +3262.907693 +3262.950783 +3262.992142 +3263.039661 +3263.078555 +3263.118082 +3263.168032 +3263.214586 +3263.262871 +3263.303397 +3263.336663 +3263.375991 +3263.429470 +3263.470629 +3263.523043 +3263.556943 +3263.604229 +3263.646320 +3263.703862 +3263.758774 +3263.801931 +3263.856343 +3263.902164 +3263.957409 +3264.011554 +3264.076023 +3264.127072 +3264.178954 +3264.230002 +3264.286180 +3264.331967 +3264.378887 +3264.433565 +3264.507758 +3264.549316 +3264.585313 +3264.634731 +3264.717748 +3264.775490 +3264.828237 +3264.895137 +3264.932699 +3264.998766 +3265.062602 +3265.091174 +3265.152579 +3265.168663 +3265.192439 +3265.240857 +3265.302262 +3266.307323 +3266.309288 +3266.311286 +3266.313617 +3266.317813 +3266.594302 +3266.598165 +3266.605192 +3267.009853 +3267.012051 +3267.017312 +3267.226170 +3267.228434 +3267.230665 +3267.233796 +3267.415014 +3267.417279 +3267.419610 +3267.422740 +3267.434994 +3267.608620 +3267.610985 +3267.613582 +3267.617045 +3267.756905 +3267.760235 +3267.763399 +3267.770359 +3267.905623 +3267.922606 +3268.011817 +3268.017078 +3268.024138 +3268.071091 +3268.091803 +3268.103492 +3268.164564 +3268.183878 +3268.204624 +3268.257804 +3268.281081 +3268.347880 +3268.381147 +3268.445949 +3268.476885 +3268.496798 +3268.540588 +3268.567094 +3268.592302 +3268.620874 +3268.655839 +3268.690504 +3268.768892 +3268.792269 +3268.819808 +3268.862465 +3268.888006 +3268.915113 +3268.964730 +3268.991436 +3269.010850 +3269.057903 +3269.092468 +3269.127367 +3269.171889 +3269.195532 +3269.233327 +3269.276351 +3269.302558 +3269.352708 +3269.390903 +3269.414113 +3269.479614 +3269.495032 +3269.533327 +3269.590370 +3269.608585 +3269.661299 +3269.692701 +3269.696164 +3269.749810 +3269.793866 +3269.836357 +3269.891635 +3269.912514 +3269.981712 +3270.019873 +3270.064129 +3270.124169 +3270.160266 +3270.209450 +3270.262264 +3270.356936 +3270.394865 +3270.427665 +3270.455637 +3270.495397 +3270.557802 +3270.596863 +3270.653306 +3270.680978 +3270.727698 +3270.770689 +3270.823103 +3270.863762 +3270.906053 +3270.954338 +3270.992100 +3271.033992 +3271.075750 +3271.128097 +3271.173052 +3271.236655 +3271.281477 +3271.309749 +3271.398560 +3271.434857 +3271.523835 +3271.593498 +3271.762895 +3271.995030 +3272.165792 +3272.332392 +3272.375382 +3272.408849 +3272.453737 +3272.491866 +3272.553204 +3272.664160 +3272.954236 +3272.989201 +3273.028628 +3273.192031 +3273.288335 +3273.346843 +3273.462794 +3273.541848 +3273.580076 +3273.635321 +3273.681841 +3273.720536 +3273.769320 +3273.819736 +3273.866723 +3273.912377 +3273.940849 +3273.994894 +3274.043546 +3274.089466 +3274.153103 +3274.192363 +3274.250106 +3274.289566 +3274.323432 +3274.344544 +3274.360995 +3274.398490 +3274.436419 +3274.511044 +3274.538384 +3274.573382 +3274.605683 +3274.642147 +3274.836319 +3274.848840 +3274.910811 +3274.939649 +3274.971450 +3274.995127 +3275.029992 +3275.065623 +3275.089099 +3275.132289 +3275.159895 +3275.204550 +3275.246075 +3275.301020 +3275.345842 +3275.448340 +3275.486568 +3275.525929 +3275.633188 +3275.852701 +3275.997889 +3278.481470 +3278.488496 +3278.490994 +3278.494291 +3278.500418 +3279.305345 +3279.309808 +3279.319431 +3280.086663 +3280.089327 +3280.093490 +3280.097119 +3280.199117 +3280.201249 +3280.202980 +3280.206310 +3280.208042 +3280.210906 +3280.320063 +3280.321994 +3280.323826 +3280.333616 +3280.374975 +3280.378504 +3280.383699 +3280.389160 +3280.433150 +3280.435747 +3280.441175 +3280.448934 +3280.491991 +3280.494488 +3280.509906 +3280.549034 +3280.551465 +3280.611138 +3280.616799 +3280.624225 +3281.205377 +3282.862252 +3282.866347 +3282.869011 +3283.034080 +3283.118628 +3283.171575 +3283.173373 +3283.178135 +3283.183230 +3283.253493 +3283.264116 +3283.315265 +3283.322158 +3283.325954 +3283.332614 +3284.004575 +3284.012367 +3284.263349 +3284.534444 +3284.744001 +3284.751127 +3284.906505 +3284.910468 +3285.073571 +3285.176235 +3285.211467 +3285.250927 +3285.285659 +3285.323421 +3285.366245 +3285.395616 +3285.430547 +3285.685559 +3285.915395 +3285.961349 +3285.999078 +3286.108102 +3286.247330 +3286.291952 +3286.635808 +3286.702341 +3286.753523 +3286.872904 +3287.170606 +3287.284325 +3287.423253 +3287.497378 +3289.017257 +3289.019255 +3289.021320 +3289.024150 +3290.647792 +3290.649856 +3290.652087 +3290.654984 +3290.708631 +3290.710029 +3290.711894 +3290.716223 +3290.719453 +3290.774631 +3290.776762 +3290.779160 +3290.781658 +3290.785121 +3290.845227 +3290.848724 +3290.852886 +3290.856250 +3290.864341 +3290.900239 +3290.908897 +3290.914991 +3291.033272 +3291.035637 +3291.038267 +3291.040432 +3291.043162 +3291.048857 +3291.064641 +3291.109596 +3291.113226 +3291.116056 +3291.118587 +3291.121750 +3291.704101 +3291.706332 +3291.708330 +3291.711493 +3291.722549 +3291.897041 +3291.899339 +3291.901603 +3291.904700 +3291.913558 +3292.129808 +3292.132306 +3292.134903 +3292.139132 +3292.308662 +3292.311559 +3292.314690 +3292.323048 +3292.495542 +3292.498939 +3292.503101 +3292.524346 +3292.651219 +3292.656781 +3292.668369 +3292.748988 +3292.760110 +3292.808895 +3292.835735 +3292.874896 +3292.893011 +3292.939298 +3292.973730 +3293.008495 +3293.039364 +3293.077826 +3293.101369 +3293.121282 +3293.150453 +3293.176127 +3293.222348 +3293.230540 +3293.271499 +3293.295042 +3293.299537 +3293.350053 +3293.367469 +3293.371032 +3293.381988 +3293.462208 +3293.505498 +3293.509094 +3293.512024 +3293.652151 +3293.937399 +3293.981554 +3294.050352 +3294.132603 +3294.203566 +3294.266403 +3294.329107 +3294.385150 +3294.445290 +3294.536366 +3294.584351 +3294.740794 +3294.810158 +3294.898237 +3295.224577 +3298.287977 +3298.290508 +3298.292306 +3298.294371 +3298.297135 +3298.407424 +3298.409023 +3298.411021 +3298.414117 +3298.415882 +3298.418147 +3298.429902 +3298.488210 +3298.490141 +3298.495270 +3298.498833 +3298.714084 +3298.717281 +3298.719312 +3298.721510 +3298.724573 +3298.787144 +3298.789009 +3298.791406 +3298.793538 +3298.796401 +3298.802129 +3298.857873 +3298.859572 +3298.862402 +3298.865033 +3298.868296 +3298.947151 +3298.952179 +3298.955642 +3299.083048 +3299.088442 +3299.090740 +3299.093471 +3299.099631 +3300.450446 +3300.454708 +3300.457472 +3300.466596 +3300.710785 +3300.712717 +3300.714348 +3300.717578 +3300.875254 +3300.878184 +3300.880449 +3300.882913 +3300.886809 +3301.608487 +3301.610751 +3301.613115 +3301.617011 +3301.731264 +3301.733561 +3301.735526 +3301.738556 +3301.749745 +3301.792602 +3301.794234 +3301.796632 +3301.803525 +3301.932296 +3301.936558 +3301.939255 +3301.942252 +3302.730796 +3302.734459 +3302.738522 +3303.149178 +3303.152707 +3303.156604 +3303.163630 +3303.292867 +3303.296996 +3303.300693 +3303.307219 +3303.385508 +3303.389237 +3303.392734 +3303.468625 +3303.477549 +3303.487339 +3303.498028 +3303.507985 +3303.520439 +3303.577349 +3303.587306 +3303.598261 +3303.668691 +3303.673453 +3303.677982 +3303.685408 +3303.711248 +3303.771555 +3303.780113 +3303.894232 +3304.863495 +3304.867358 +3304.870688 +3304.887471 +3305.064161 +3305.068090 +3305.073551 +3306.389001 +3306.394496 +3306.396594 +3306.399691 +3306.542348 +3306.546177 +3306.548308 +3306.550473 +3306.553137 +3306.558998 +3306.638052 +3306.640283 +3306.642514 +3306.645078 +3306.652071 +3306.678678 +3306.684872 +3306.688834 +3306.698092 +3306.751339 +3306.756667 +3306.760529 +3306.764492 +3306.818172 +3306.820869 +3306.825431 +3306.829627 +3306.844146 +3306.887502 +3306.889500 +3306.892397 +3306.896760 +3307.026330 +3307.028395 +3307.033523 +3307.040949 +3307.109513 +3307.121135 +3307.262327 +3307.265957 +3307.271152 +3307.322400 +3307.330459 +3307.388934 +3307.392996 +3307.405517 +3307.471418 +3307.477678 +3307.534122 +3307.643379 +3307.928660 +3307.934621 +3307.945943 +3308.246875 +3308.252536 +3308.261294 +3308.681740 +3308.686501 +3308.693062 +3308.924763 +3308.928726 +3308.933987 +3309.150703 +3309.154000 +3309.156664 +3309.160927 +3309.345009 +3309.348172 +3309.351236 +3309.356631 +3309.402651 +3309.408079 +3309.416271 +3309.908778 +3309.912940 +3309.913740 +3309.919867 +3310.012541 +3310.015105 +3310.017835 +3310.030456 +3310.127226 +3310.132188 +3310.136050 +3310.144475 +3310.217369 +3310.220499 +3310.225861 +3310.284702 +3310.288298 +3310.299853 +3310.335251 +3310.352567 +3310.372247 +3310.572613 +3310.900519 +3310.916070 +3311.074411 +3311.092859 +3311.334950 +3311.594424 +3311.613438 +3313.484199 +3313.569014 +3313.639643 +3315.051663 +3315.054727 +3315.057158 +3315.059755 +3315.062752 +3315.370178 +3315.371876 +3315.374274 +3315.375872 +3315.377704 +3315.379668 +3315.429552 +3315.435579 +3315.439242 +3315.443971 +3315.512069 +3315.516898 +3315.521593 +3315.544037 +3315.597517 +3315.604810 +3315.652096 +3315.656924 +3315.667780 +3315.678536 +3318.293019 +3318.294917 +3318.296715 +3318.298846 +3318.302043 +3318.353125 +3318.354823 +3318.356921 +3318.358953 +3318.361483 +3318.365213 +3318.437308 +3318.439639 +3318.442003 +3318.444500 +3318.450128 +3318.498380 +3318.500844 +3318.502842 +3318.504440 +3318.509902 +3318.517727 +3318.581097 +3318.584094 +3318.590454 +3318.715962 +3318.719092 +3318.720691 +3318.722922 +3318.788956 +3318.799312 +3318.802242 +3318.859085 +3318.861816 +3318.873238 +3318.932878 +3318.938073 +3318.949528 +3319.078632 +3319.080397 +3319.082995 +3319.084926 +3319.087590 +3319.092818 +3319.333977 +3321.186988 +3321.477098 +3321.480361 +3321.484291 +3321.487021 +3321.558483 +3321.715559 +3321.718456 +3321.791850 +3321.795080 +3321.846628 +3321.849192 +3321.854021 +3321.857384 +3321.936039 +3321.940501 +3322.001207 +3322.005602 +3322.085989 +3322.156252 +3323.950289 +3323.951987 +3324.241098 +3324.243629 +3324.245427 +3324.247525 +3324.250522 +3324.467238 +3324.469369 +3324.471334 +3324.473232 +3324.475230 +3324.477461 +3324.551521 +3324.554051 +3324.556682 +3324.558747 +3324.561211 +3324.776962 +3324.778893 +3324.780758 +3324.782956 +3324.785753 +3324.890481 +3324.892612 +3324.895143 +3324.897641 +3324.901270 +3325.028909 +3325.030674 +3325.032539 +3325.034670 +3325.037068 +3325.041930 +3325.116955 +3325.119286 +3325.121483 +3325.124447 +3325.182988 +3325.184853 +3325.188783 +3325.191447 +3325.195343 +3325.274863 +3325.278060 +3325.280424 +3325.283221 +3325.288283 +3326.047057 +3326.725278 +3326.727975 +3326.734602 +3326.814222 +3326.821115 +3326.871165 +3326.874828 +3326.881455 +3326.891345 +3327.026743 +3327.030040 +3327.033203 +3327.089780 +3327.091678 +3327.101768 +3327.175128 +3327.235234 +3327.240229 +3327.312290 +3327.314588 +3327.317885 +3327.398371 +3327.403999 +3327.407695 +3327.942593 +3327.947388 +3327.951817 +3328.342426 +3328.351517 +3328.915419 +3328.920281 +3329.257543 +3329.265335 +3329.484050 +3329.487213 +3329.490810 +3329.629704 +3329.706261 +3329.713620 +3329.781519 +3329.784616 +3330.892973 +3330.895903 +3330.903163 +3330.981018 +3330.983582 +3330.986080 +3330.989909 +3331.127038 +3331.128737 +3331.130368 +3331.132067 +3331.134198 +3331.136962 +3331.204461 +3331.207458 +3331.212853 +3331.215883 +3331.278154 +3331.280485 +3331.283715 +3331.286779 +3331.291840 +3331.352280 +3331.355743 +3331.361470 +3331.366299 +3331.435596 +3331.438560 +3331.440824 +3331.443488 +3331.504860 +3331.514983 +3331.521077 +3331.596968 +3331.599965 +3331.603894 +3333.454575 +3334.298264 +3334.307255 +3334.308887 +3334.310918 +3334.313249 +3334.317511 +3335.727467 +3335.731163 +3335.737590 +3335.745049 +3335.808119 +3335.813680 +3335.827234 +3335.905788 +3335.911216 +3336.032362 +3336.037623 +3336.170989 +3336.176750 +3336.230863 +3336.385475 +3336.388072 +3336.392867 +3336.450809 +3336.452874 +3336.458602 +3336.644549 +3336.650077 +3336.652075 +3336.654705 +3336.659700 +3336.967559 +3338.795362 +3339.602388 +3339.603853 +3339.606084 +3339.609115 +3339.675781 +3339.680876 +3339.683473 +3339.689501 +3339.742548 +3339.745578 +3339.748075 +3339.751306 +3339.760463 +3339.817106 +3339.820203 +3339.823666 +3339.828428 +3339.878911 +3339.900356 +3339.959897 +3339.963959 +3340.024399 +3340.026397 +3340.032457 +3340.039317 +3340.098225 +3340.101022 +3340.104552 +3340.108848 +3342.353567 +3342.355599 +3342.357430 +3342.359495 +3342.362292 +3342.569718 +3342.571816 +3342.573947 +3342.578442 +3342.583670 +3342.695725 +3342.699987 +3342.702385 +3342.706681 +3342.764190 +3342.765921 +3342.767819 +3342.769884 +3342.772348 +3342.775512 +3342.839314 +3342.902851 +3342.904749 +3342.906847 +3342.909178 +3342.912508 +3342.975445 +3342.977343 +3342.980240 +3342.987433 +3342.993560 +3343.107080 +3343.109810 +3348.113768 +3348.115633 +3348.117797 +3348.125989 +3348.322226 +3348.324291 +3348.326189 +3348.328520 +3348.333282 +3348.467980 +3348.473108 +3348.477571 +3348.480035 +3348.681533 +3348.683631 +3348.686495 +3350.053293 +3350.054725 +3350.056723 +3350.058555 +3350.060686 +3350.063550 +3350.161185 +3350.163716 +3350.166313 +3350.169544 +3350.290256 +3350.299414 +3350.445567 +3350.447765 +3350.449930 +3350.452494 +3350.601977 +3350.603576 +3350.606273 +3350.607106 +3350.608404 +3350.611168 +3350.724521 +3350.727252 +3350.729849 +3350.732780 +3350.990389 +3350.992287 +3350.994218 +3350.996050 +3350.998347 +3351.257688 +3351.260019 +3351.262316 +3351.264481 +3351.272107 +3351.576768 +3351.578467 +3351.582030 +3351.583961 +3351.586725 +3351.763781 +3351.765712 +3351.767944 +3351.769975 +3351.772606 +3351.779432 +3351.852559 +3351.857820 +3351.859852 +3351.862016 +3351.864347 +3351.867011 +3351.872406 +3351.953991 +3351.962649 +3351.966345 +3352.246198 +3352.248829 +3353.089920 +3353.092185 +3353.094116 +3353.096647 +3354.050659 +3354.267242 +3354.273069 +3354.275700 +3354.561314 +3354.563312 +3354.565310 +3354.567241 +3354.569672 +3354.575467 +3354.748760 +3354.753622 +3354.755719 +3354.758317 +3354.826582 +3354.829246 +3354.831843 +3354.838270 +3355.002805 +3355.004670 +3355.006735 +3355.008999 +3355.012462 +3355.303471 +3355.305303 +3355.307467 +3355.309765 +3355.313528 +3355.610630 +3355.612595 +3355.614493 +3355.616691 +3355.619455 +3355.970537 +3355.973001 +3355.974699 +3355.976764 +3355.979028 +3355.984223 +3356.175898 +3356.177663 +3356.179461 +3356.181359 +3356.183956 +3356.194712 +3356.462278 +3356.466041 +3356.650390 +3356.652421 +3356.654485 +3356.656783 +3356.660413 +3356.741199 +3356.742730 +3356.747026 +3356.751955 +3356.933440 +3356.935304 +3356.939134 +3356.943829 +3357.930641 +3357.932773 +3357.934737 +3357.937035 +3357.941730 +3358.630241 +3358.835069 +3358.836801 +3358.838999 +3358.841330 +3358.911793 +3359.117920 +3359.120117 +3359.427376 +3359.439165 +3359.523347 +3359.525545 +3359.724879 +3359.726977 +3359.923447 +3360.404965 +3360.407395 +3360.414721 +3360.764138 +3360.770865 +3361.832302 +3361.834534 +3361.836398 +3361.838629 +3361.843158 +3361.918816 +3361.921546 +3361.923911 +3361.926575 +3362.248020 +3362.252748 +3362.254946 +3362.567134 +3362.569298 +3362.571429 +3362.573494 +3362.577323 +3362.647087 +3362.651149 +3362.652848 +3362.655112 +3362.826640 +3362.828872 +3362.830736 +3362.833034 +3362.836131 +3362.910989 +3362.912788 +3362.915984 +3362.918515 +3362.920846 +3362.926074 +3363.110656 +3363.112454 +3363.114386 +3363.116450 +3363.118515 +3363.122777 +3363.325841 +3363.327939 +3363.329837 +3363.331702 +3363.335265 +3363.664635 +3363.666200 +3363.668365 +3363.670329 +3363.672594 +3363.676623 +3363.930968 +3363.933299 +3363.935231 +3363.937495 +3363.941325 +3364.022344 +3364.024874 +3364.027072 +3364.029603 +3364.759173 +3364.761271 +3364.763335 +3364.766865 +3364.926372 +3364.928869 +3364.931134 +3364.933565 +3364.937727 +3365.443554 +3365.445852 +3365.447717 +3365.449815 +3365.452845 +3365.638326 +3366.051912 +3366.053943 +3366.055841 +3366.058072 +3366.061935 +3366.669161 +3366.671525 +3366.673490 +3366.675721 +3366.680050 +3367.140489 +3367.144651 +3367.147848 +3367.781214 +3367.783978 +3367.785943 +3367.787741 +3367.789639 +3367.792237 +3368.039323 +3368.041620 +3368.045816 +3368.049779 +3369.559701 +3369.561699 +3369.563663 +3369.571089 +3369.620806 +3369.902957 +3369.904655 +3369.906420 +3369.908119 +3369.910216 +3369.912847 +3370.119640 +3370.121405 +3370.123536 +3370.125767 +3370.127732 +3370.131262 +3370.221338 +3370.223536 +3370.226367 +3370.415211 +3370.417176 +3370.421305 +3370.424602 +3370.521638 +3370.524335 +3370.526566 +3370.529530 +3370.615510 +3370.625401 +3370.808484 +3370.919173 +3370.921604 +3370.923935 +3370.926033 +3371.029463 +3371.031694 +3371.041184 +3371.409915 +3371.412513 +3371.415043 +3371.417308 +3371.419739 +3371.526598 +3371.529029 +3371.530927 +3371.532992 +3371.536722 +3371.607351 +3371.614877 +3371.619372 +3371.622536 +3371.625266 +3371.628030 +3371.733025 +3371.735789 +3371.737987 +3371.741017 +3372.209581 +3372.307417 +3372.324067 +3372.326265 +3372.328363 +3372.330927 +3372.420937 +3372.426031 +3372.428263 +3372.431060 +3372.618772 +3372.620936 +3372.624766 +3372.626997 +3372.630427 +3372.911845 +3372.913643 +3372.915675 +3372.920337 +3372.923733 +3373.030293 +3373.118971 +3373.121302 +3373.123034 +3373.123567 +3373.125997 +3373.134089 +3373.425364 +3373.427229 +3373.429194 +3373.431558 +3373.433523 +3373.436154 +3373.621168 +3373.704785 +3373.711978 +3373.922767 +3373.925098 +3373.927096 +3373.929293 +3373.933556 +3374.113909 +3374.115740 +3374.119869 +3374.122267 +3374.125663 +3374.311311 +3374.314008 +3374.315340 +3374.316139 +3374.320702 +3374.323099 +3374.329626 +3374.423965 +3374.426762 +3374.429060 +3374.432356 +3374.516772 +3374.526595 +3374.529393 +3374.532456 +3374.608880 +3374.617405 +3374.620701 +3374.713675 +3374.718403 +3374.720734 +3374.723998 +3374.921400 +3374.923465 +3374.925663 +3374.928959 +3374.930425 +3375.301020 +3375.305283 +3375.309245 +3377.143010 +3377.146007 +3377.304049 +3377.307878 +3377.684201 +3377.686000 +3377.690595 +3378.073512 +3378.083169 +3378.700651 +3378.703248 +3378.706844 +3378.709542 +3378.714970 +3379.912937 +3379.913969 +3379.915967 +3379.918864 +3380.100982 +3380.103047 +3380.105111 +3380.116200 +3380.177406 +3380.179570 +3380.181402 +3380.183733 +3380.187129 +3381.110372 +3381.112669 +3381.278737 +3381.286063 +3381.443538 +3381.629252 +3381.632149 +3381.634480 +3381.686895 +3381.993654 +3382.093121 +3382.099948 +3382.335512 +3382.341906 +3382.827420 +3382.831749 +3382.835711 +3383.017596 +3383.203010 +3383.210803 +3383.874405 +3383.940872 +3384.267412 +3384.407904 +3384.467711 +3384.470708 +3384.722456 +3384.727384 +3384.732646 +3385.210601 +3385.213798 +3385.684859 +3385.866677 +3385.872438 +3386.197013 +3386.985657 +3386.987322 +3386.989187 +3387.769506 +3387.771337 +3387.773302 +3387.775400 +3388.065110 +3388.733774 +3388.735805 +3388.737803 +3388.740034 +3388.744230 +3388.928579 +3388.931143 +3388.933108 +3388.935006 +3388.937670 +3389.302971 +3389.308499 +3389.310463 +3389.312328 +3389.314426 +3390.034439 +3390.324349 +3390.326480 +3390.328378 +3390.330576 +3390.334205 +3390.940965 +3390.945793 +3390.947824 +3390.950322 +3391.179259 +3391.181324 +3391.183089 +3391.185020 +3391.188350 +3391.415323 +3391.417588 +3391.420152 +3391.424481 +3391.428543 +3392.097141 +3392.099072 +3392.100870 +3392.102635 +3392.104966 +3393.802067 +3393.806030 +3393.807995 +3393.814388 +3394.298637 +3394.303599 +3394.312523 +3394.921913 +3394.924311 +3394.926242 +3394.932502 +3395.157644 +3395.159575 +3395.425842 +3395.429938 +3395.431936 +3395.573128 +3395.576924 +3395.578822 +3395.581553 +3395.717583 +3395.723477 +3395.848452 +3395.856677 +3395.860207 +3396.405395 +3396.414685 +3396.682484 +3396.931968 +3396.933999 +3396.940226 +3397.272394 +3397.274625 +3397.286446 +3397.412220 +3397.414451 +3397.575990 +3397.585347 +3397.762003 +3397.763935 +3397.775989 +3397.903395 +3398.267531 +3398.339659 +3398.344454 +3398.606891 +3398.609289 +3398.611253 +3398.759605 +3398.852345 +3398.920744 +3398.923474 +3398.931000 +3399.187743 +3399.192671 +3399.365065 +3399.380417 +3399.437626 +3399.440190 +3399.446317 +3399.461835 +3399.542588 +3399.552578 +3399.605858 +3399.608022 +3399.612651 +3399.615648 +3399.697566 +3399.701196 +3399.707822 +3400.203892 +3400.208188 +3400.405890 +3400.419643 +3400.670592 +3400.922040 +3400.962100 +3401.088907 +3401.147614 +3401.286209 +3401.511151 +3401.658170 +3402.036525 +3402.110051 +3402.182046 +3402.379748 +3402.585309 +3402.846014 +3402.942551 +3403.090270 +3403.240053 +3403.342551 +3403.437689 +3403.487839 +3403.546546 +3403.695830 +3403.768391 +3404.028531 +3404.294098 +3404.340818 +3404.442283 +3404.493499 +3404.532160 +3404.577748 +3404.628963 +3404.671887 +3404.701457 +3404.737155 +3404.784341 +3404.819739 +3404.860065 +3404.902656 +3404.944714 +3404.992765 +3405.030761 +3405.084907 +3405.104487 +3405.210115 +3405.237853 +3405.344080 +3405.391600 +3405.419871 +3405.496628 +3405.536088 +3405.594563 +3405.630227 +3405.709315 +3405.771120 +3405.813178 +3405.888302 +3405.904786 +3406.007583 +3406.046178 +3406.092565 +3406.121036 +3406.237220 +3406.287769 +3406.305485 +3406.420536 +3406.445478 +3406.500723 +3406.529694 +3406.591465 +3406.619637 +3406.691865 +3406.706383 +3406.775015 +3406.799823 +3406.874116 +3406.897093 +3406.940183 +3406.985804 +3407.011811 +3407.063992 +3407.097692 +3407.140016 +3407.221368 +3407.322900 +3407.386802 +3407.413542 +3407.495593 +3407.519736 +3407.585770 +3407.667521 +3407.698557 +3407.750472 +3407.793462 +3407.823132 +3407.881141 +3407.916639 +3407.988600 +3408.007581 +3408.098989 +3408.127428 +3408.187168 +3408.200754 +3408.300088 +3408.338716 +3408.391930 +3408.431124 +3408.494194 +3408.516172 +3408.582739 +3408.616971 +3408.692862 +3408.723964 +3408.786701 +3408.812375 +3408.879175 +3408.989032 +3409.144776 +3409.367153 +3409.592195 +3409.638415 +3409.707846 +3409.842910 +3409.929058 +3410.070949 +3410.159893 +3410.342977 +3410.729223 +3410.774611 +3410.873412 +3410.905780 +3410.947272 +3411.075743 +3411.122563 +3411.244641 +3411.573844 +3411.698053 +3411.757261 +3411.807744 +3411.889062 +3412.125792 +3412.223627 +3412.267350 +3412.483068 +3412.571679 +3412.612605 +3412.752065 +3412.806377 +3413.078605 +3413.167682 +3413.216434 +3413.261755 +3413.301715 +3413.348035 +3413.396054 +3413.427988 +3413.476573 +3413.522028 +3413.560389 +3413.607742 +3413.640676 +3413.683866 +3413.719330 +3413.753995 +3413.792657 +3413.835780 +3413.863819 +3413.902713 +3413.939909 +3413.980369 +3414.017998 +3414.060522 +3414.098251 +3414.132716 +3414.157025 +3414.192623 +3414.215667 +3414.244005 +3414.280602 +3414.319263 +3414.346569 +3414.360755 +3414.398850 +3414.429353 +3414.453862 +3414.499116 +3414.535080 +3414.583965 +3414.619229 +3414.664750 +3414.707075 +3414.751497 +3414.793288 +3414.831084 +3414.867081 +3414.896185 +3414.924157 +3414.973675 +3415.002479 +3415.025589 +3415.057324 +3415.124990 +3415.147434 +3415.176904 +3415.203611 +3415.239575 +3415.283464 +3415.321426 +3415.377004 +3415.421992 +3415.457990 +3415.507507 +3415.575705 +3415.627320 +3415.664949 +3415.696185 +3415.753527 +3415.846834 +3415.897849 +3415.938842 +3415.999015 +3416.037010 +3416.105941 +3416.204110 +3416.232381 +3416.388592 +3416.433946 +3416.480533 +3416.538708 +3416.570077 +3416.635478 +3416.684595 +3416.729450 +3416.785627 +3416.876037 +3416.915631 +3416.994452 +3417.009670 +3417.098548 +3417.134512 +3417.190422 +3417.356922 +3417.391621 +3417.496116 +3417.572373 +3417.756289 +3417.860884 +3417.880498 +3417.969010 +3418.143801 +3418.425386 +3418.530181 +3418.572838 +3418.693651 +3418.778033 +3419.107570 +3419.349394 +3419.380563 +3419.499777 +3419.760450 +3419.773237 +3419.792118 +3419.821622 +3419.866910 +3421.735106 +3421.737171 +3421.739202 +3421.741900 +3421.749925 +3422.007933 +3422.012162 +3422.419355 +3422.425748 +3422.528379 +3422.533607 +3422.542498 +3422.602871 +3422.688685 +3422.867273 +3422.985821 +3423.010430 +3423.039268 +3423.155917 +3423.235105 +3423.353719 +3423.382124 +3423.463210 +3423.487752 +3423.572001 +3423.597808 +3423.623283 +3423.710229 +3423.765441 +3423.791714 +3423.843662 +3423.961345 +3424.015657 +3424.099606 +3424.129343 +3424.178227 +3424.279093 +3424.314191 +3424.386119 +3424.512793 +3424.636935 +3424.695376 +3424.784254 +3424.814957 +3424.846192 +3424.998640 +3425.092113 +3425.149222 +3425.173398 +3425.224946 +3425.338799 +3425.400404 +3425.467670 +3425.565039 +3425.624846 +3425.653717 +3425.803367 +3426.031972 +3426.189581 +3426.305065 +3426.338299 +3426.370899 +3426.399371 +3426.432871 +3426.467269 +3426.498538 +3426.520383 +3426.556447 +3426.592278 +3426.629640 +3426.663606 +3426.698005 +3426.727542 +3426.760842 +3426.791012 +3426.818385 +3426.859477 +3426.891445 +3426.921282 +3426.988348 +3427.020016 +3427.048221 +3427.075860 +3427.105564 +3427.138564 +3427.157878 +3427.191511 +3427.218584 +3427.244158 +3427.276726 +3427.300635 +3427.380955 +3427.412490 +3427.445623 +3427.473296 +3427.504997 +3427.532370 +3427.565370 +3427.595274 +3427.623745 +3427.651417 +3427.676326 +3427.705963 +3427.735300 +3427.771564 +3427.799269 +3427.831038 +3427.861074 +3427.891411 +3427.920049 +3427.954081 +3427.987081 +3428.018117 +3428.046822 +3428.074094 +3428.101833 +3428.133901 +3428.165403 +3428.201434 +3428.231370 +3428.263571 +3428.298903 +3428.328973 +3428.364604 +3428.392775 +3428.418383 +3428.450584 +3428.482952 +3428.613688 +3428.675293 +3428.718383 +3428.842958 +3428.871629 +3428.900101 +3428.939661 +3428.966834 +3429.036764 +3429.204430 +3429.274193 +3429.365968 +3429.391243 +3429.429271 +3429.542058 +3429.654046 +3429.693274 +3429.733300 +3429.808258 +3429.901299 +3429.958774 +3430.103030 +3430.211288 +3430.336097 +3430.412254 +3430.654212 +3430.679486 +3430.719013 +3430.744621 +3430.792540 +3430.842556 +3430.875124 +3430.901531 +3430.942024 +3430.987511 +3431.026905 +3431.065333 +3431.103029 +3431.139226 +3431.171960 +3431.203961 +3431.249915 +3431.281750 +3431.315849 +3431.356708 +3431.385846 +3431.424674 +3431.476222 +3431.522309 +3431.556975 +3431.592406 +3431.626438 +3431.655809 +3431.694637 +3431.736362 +3431.770661 +3431.804760 +3431.827537 +3431.869129 +3431.896735 +3431.921143 +3431.961137 +3431.999299 +3432.029935 +3432.056008 +3432.085512 +3432.110054 +3432.137560 +3432.173824 +3432.206957 +3432.245319 +3432.276621 +3432.311886 +3432.348849 +3432.380450 +3432.410687 +3432.444686 +3432.479085 +3432.509921 +3432.546418 +3432.582082 +3432.621975 +3432.650480 +3432.680383 +3432.738459 +3432.783514 +3432.820876 +3432.860370 +3432.912418 +3432.936694 +3432.983380 +3433.018412 +3433.048082 +3433.078785 +3433.099830 +3433.141788 +3433.175055 +3433.213417 +3433.245618 +3433.276753 +3433.308888 +3433.387809 +3433.415115 +3433.450446 +3433.487143 +3433.527369 +3433.552777 +3433.580449 +3433.624339 +3433.669427 +3433.720376 +3433.763799 +3433.797499 +3433.831431 +3433.880649 +3433.905790 +3433.953542 +3433.999163 +3434.040022 +3434.074921 +3434.104758 +3434.149846 +3434.190572 +3434.225170 +3434.265264 +3434.307721 +3434.336392 +3434.372123 +3434.406456 +3434.441088 +3434.476918 +3434.515247 +3434.551111 +3434.585610 +3434.619909 +3434.655073 +3434.692303 +3434.729832 +3434.757904 +3434.790105 +3434.817078 +3434.856205 +3434.890138 +3434.921940 +3434.962499 +3434.991637 +3435.029499 +3435.061600 +3435.089339 +3435.119509 +3435.146482 +3435.184210 +3435.213648 +3435.244617 +3435.276385 +3435.318376 +3435.355239 +3435.389372 +3435.427900 +3435.465662 +3435.504024 +3435.547647 +3435.586708 +3435.617577 +3435.652075 +3435.678349 +3435.701260 +3435.729531 +3435.776118 +3435.815878 +3435.846714 +3435.878349 +3435.916910 +3435.943817 +3435.982711 +3436.021572 +3436.071722 +3436.108152 +3436.135625 +3436.166061 +3436.194433 +3436.233826 +3436.269524 +3436.312714 +3436.355238 +3436.384209 +3436.418608 +3436.452907 +3436.485042 +3436.525035 +3436.556703 +3436.588505 +3436.621638 +3436.651209 +3436.684176 +3436.718641 +3436.747845 +3436.810549 +3436.847712 +3436.878714 +3436.915910 +3436.951508 +3436.987772 +3437.013946 +3437.048211 +3437.123902 +3437.153839 +3437.185607 +3437.216476 +3437.284575 +3437.451907 +3437.618440 +3437.725333 +3437.777814 +3437.992300 +3438.086439 +3438.241483 +3438.308217 +3438.361530 +3438.376915 +3438.432892 +3438.566491 +3438.599525 +3438.737221 +3438.769222 +3438.881210 +3438.913810 +3438.950574 +3439.184773 +3439.217273 +3439.246877 +3439.280011 +3439.313277 +3439.342315 +3439.421935 +3439.519105 +3439.546843 +3439.745378 +3439.903919 +3440.206450 +3440.294029 +3440.466323 +3440.529393 +3440.676013 +3440.709746 +3440.837218 +3440.926030 +3441.094161 +3441.112110 +3441.181008 +3441.595459 +3441.638450 +3441.695792 +3441.716039 +3441.804051 +3441.842812 +3441.888866 +3441.910045 +3441.996025 +3442.075512 +3442.110078 +3442.207880 +3442.264057 +3442.307880 +3442.363624 +3442.405815 +3442.468785 +3442.510111 +3442.611409 +3442.673514 +3442.728725 +3442.786168 +3442.814506 +3442.915738 +3442.966853 +3443.009244 +3443.055631 +3443.105481 +3443.177443 +3443.217169 +3443.406613 +3443.514772 +3443.665654 +3443.805614 +3443.993592 +3444.060026 +3444.193326 +3444.314604 +3444.441111 +3444.510475 +3444.647638 +3444.807411 +3445.627590 +3445.632585 +3445.650301 +3445.905412 +3445.909275 +3445.914203 +3446.107942 +3446.153330 +3446.294256 +3446.364086 +3446.758525 +3446.990592 +3447.026823 +3447.180802 +3447.195620 +3447.302713 +3447.761121 +3447.813235 +3447.946369 +3448.107141 +3448.229186 +3448.239009 +3448.306275 +3448.373641 +3448.463185 +3448.530484 +3448.576705 +3448.612402 +3448.675972 +3448.703311 +3448.736311 +3448.771909 +3448.862951 +3448.934613 +3449.002512 +3449.056757 +3449.117663 +3449.151463 +3449.193887 +3449.245002 +3449.289491 +3449.347733 +3449.399581 +3449.440773 +3449.521725 +3449.603776 +3449.669377 +3449.724755 +3449.785095 +3449.797749 +3449.884629 +3449.924988 +3449.963883 +3449.983297 +3450.000346 +3450.042870 +3450.078634 +3450.104975 +3450.137209 +3450.186360 +3450.223689 +3450.260719 +3450.290056 +3450.306140 +3450.350029 +3450.384162 +3450.409204 +3450.450096 +3450.508238 +3450.553992 +3450.615197 +3450.618128 +3450.665281 +3450.707372 +3450.764648 +3450.821125 +3450.861085 +3450.893286 +3450.947298 +3450.982963 +3450.999613 +3451.019726 +3451.052060 +3451.082863 +3451.098314 +3451.165447 +3451.177102 +3451.301477 +3451.407438 +3451.432746 +3451.477967 +3451.516595 +3451.563548 +3451.643368 +3451.701810 +3451.745899 +3451.761716 +3451.810334 +3451.864946 +3451.900444 +3451.951959 +3451.974803 +3452.028682 +3452.064247 +3452.164147 +3452.217893 +3452.250993 +3452.308769 +3452.334010 +3452.416095 +3452.459917 +3452.512765 +3452.575102 +3452.582728 +3452.649661 +3452.700010 +3452.733011 +3452.770207 +3452.799877 +3452.853091 +3452.869541 +3452.922554 +3452.955488 +3452.981462 +3453.057553 +3453.081762 +3453.112165 +3453.187456 +3453.265311 +3453.307136 +3453.401275 +3453.403573 +3453.483626 +3453.519124 +3453.625284 +3453.658085 +3453.700076 +3453.806336 +3453.844864 +3453.880995 +3453.908800 +3453.991651 +3454.029979 +3454.150625 +3454.169872 +3454.229613 +3454.284991 +3454.328847 +3454.348927 +3454.414161 +3454.472203 +3454.526682 +3454.581161 +3454.652889 +3454.722919 +3454.775833 +3454.808566 +3455.045995 +3455.059615 +3456.541965 +3456.546127 +3456.553187 +3456.787852 +3456.794812 +3456.963576 +3457.154218 +3457.191048 +3457.231441 +3457.321817 +3457.651188 +3457.723315 +3457.881391 +3458.162576 +3458.277394 +3458.491780 +3458.767270 +3459.039398 +3459.128409 +3459.177660 +3459.218053 +3459.375428 +3459.411592 +3459.500104 +3459.587816 +3459.669501 +3459.728974 +3459.753683 +3459.827875 +3459.953716 +3460.009427 +3460.124245 +3460.198271 +3460.306863 +3460.336999 +3460.450819 +3460.559576 +3460.591777 +3460.597472 +3460.627075 +3460.681721 +3460.860242 +3460.900535 +3460.988480 +3461.037664 +3461.119516 +3461.187781 +3461.313388 +3461.363205 +3461.418084 +3461.473828 +3461.525909 +3461.772196 +3461.850218 +; +0.027206 +0.070862 +0.107026 +0.153946 +0.188411 +0.269364 +0.349617 +0.419080 +0.497502 +0.542757 +0.582683 +0.649949 +0.720978 +0.780718 +0.845254 +0.896103 +0.962470 +1.000831 +1.049050 +1.099433 +1.176522 +1.219113 +1.268563 +1.295337 +1.335563 +1.380685 +1.423508 +1.477721 +1.547151 +1.620078 +1.690075 +1.752646 +1.812319 +1.899332 +1.964900 +2.062835 +2.128936 +2.237161 +2.308323 +2.368596 +2.440957 +2.510187 +2.565565 +2.576354 +2.675788 +2.707157 +2.783913 +2.826171 +2.864932 +2.937426 +2.971992 +3.023374 +3.080949 +3.147116 +3.202960 +3.313983 +3.373656 +3.483546 +3.516147 +3.560836 +3.632630 +3.692104 +3.750346 +3.796999 +3.849480 +3.876786 +3.905391 +3.927136 +3.983612 +4.009986 +4.027835 +4.048847 +4.067662 +4.087808 +4.130332 +4.163899 +4.183978 +4.223739 +4.318677 +4.361534 +4.384278 +4.394168 +4.430065 +4.479516 +4.544284 +4.571024 +4.626369 +4.697698 +4.725237 +4.767861 +4.794934 +4.828200 +4.852176 +4.874654 +4.909186 +4.922339 +4.944983 +4.977151 +5.019609 +5.063132 +5.101960 +5.263498 +5.346881 +5.457137 +5.543518 +5.602059 +5.676218 +5.744583 +5.798396 +5.856571 +5.916544 +5.984176 +6.036957 +6.072288 +6.131296 +6.188605 +6.249611 +6.335025 +6.402358 +6.483077 +6.543317 +6.611915 +6.642784 +6.705554 +6.723403 +6.754072 +6.783043 +6.801492 +6.827199 +6.873420 +6.949310 +7.081012 +7.132860 +7.203123 +7.262797 +7.303955 +7.366426 +7.403922 +7.459167 +7.503223 +7.551075 +7.605587 +7.637755 +7.668790 +7.785240 +7.835157 +7.907085 +7.974218 +8.033259 +8.145946 +8.193798 +8.247244 +8.299958 +8.366791 +8.419838 +8.485173 +8.557168 +8.610348 +8.670021 +8.717540 +8.769255 +8.876381 +8.930560 +8.975915 +9.023301 +9.074749 +9.178046 +9.245079 +9.298825 +9.350207 +9.387303 +9.444679 +9.517839 +9.555701 +9.608548 +9.661129 +9.728528 +9.788135 +9.833756 +9.897959 +9.951805 +10.002055 +10.051838 +10.100190 +10.142780 +10.218005 +10.279111 +10.324532 +10.334855 +10.368255 +10.427296 +10.455667 +10.531258 +10.608481 +10.733889 +10.798990 +10.845410 +10.953469 +11.025663 +11.099256 +11.156932 +11.231957 +11.284105 +11.335853 +11.366855 +11.439349 +11.476179 +11.530291 +11.589033 +11.641547 +11.690531 +11.728793 +11.763325 +11.815839 +11.862259 +11.953301 +11.985103 +12.028559 +12.085636 +12.159428 +12.206248 +12.269551 +12.334453 +12.399421 +12.428792 +12.464423 +12.523231 +12.570750 +12.604050 +12.638449 +12.691662 +12.717370 +12.778908 +12.821266 +12.843544 +12.890630 +13.250503 +13.259161 +13.271848 +13.461925 +13.466786 +13.576443 +13.584535 +13.598488 +13.647272 +13.661558 +13.694558 +13.731721 +13.759027 +13.793026 +13.820466 +13.858594 +13.908544 +13.948404 +13.988364 +14.002017 +14.060392 +14.087365 +14.129856 +14.172547 +14.216636 +14.259726 +14.292427 +14.333219 +14.371947 +14.414205 +14.454131 +14.490828 +14.532753 +14.570082 +14.603049 +14.641710 +14.679606 +14.710641 +14.745673 +14.782736 +14.818733 +14.851134 +14.908909 +14.939912 +14.978107 +15.016402 +15.048004 +15.076841 +15.102349 +15.137914 +15.150001 +15.186165 +15.204980 +15.230521 +15.257594 +15.318966 +15.374943 +15.429422 +15.473045 +15.516235 +15.557960 +15.593258 +15.636181 +15.673045 +15.713637 +15.751066 +15.789428 +15.825459 +15.866384 +15.909508 +15.945205 +15.982501 +16.018998 +16.049168 +16.082635 +16.118898 +16.154030 +16.189960 +16.217466 +16.253763 +16.289061 +16.336680 +16.416201 +16.459024 +16.509407 +16.561255 +16.600849 +16.640909 +16.688195 +16.756194 +16.781602 +16.825458 +16.880536 +16.901781 +16.981701 +17.048767 +17.096786 +17.152663 +17.214235 +17.266616 +17.313269 +17.352830 +17.396053 +17.433982 +17.484398 +17.527721 +17.571977 +17.616666 +17.661088 +17.705643 +17.744071 +17.798717 +17.836812 +17.883099 +17.946868 +17.992656 +18.033482 +18.061420 +18.076639 +18.088726 +18.106475 +18.138577 +18.168380 +18.190092 +18.219529 +18.251797 +18.305210 +18.390691 +18.440741 +18.499948 +18.561220 +18.612336 +18.672842 +18.725489 +18.780467 +18.836278 +18.883298 +18.940074 +18.999315 +19.055792 +19.115599 +19.167214 +19.213101 +19.257024 +19.354559 +19.402611 +19.461819 +19.511236 +19.580700 +19.645202 +19.699547 +19.720893 +19.746201 +19.758455 +19.782764 +19.835078 +19.887759 +19.917329 +19.936210 +19.953993 +19.973706 +19.988924 +20.068911 +20.127519 +20.170476 +20.264582 +20.403876 +20.460586 +20.511634 +20.573140 +20.623589 +20.680932 +20.716063 +20.750795 +20.776536 +20.793186 +20.803842 +20.820459 +20.844102 +20.859986 +20.903908 +20.919992 +20.938740 +20.967944 +21.398980 +21.403675 +21.407538 +21.636975 +21.640937 +21.644001 +21.648496 +21.948563 +21.952159 +21.955123 +21.960451 +22.216927 +22.219458 +22.221656 +22.224786 +22.293484 +22.296914 +22.299844 +22.303707 +22.382462 +22.386891 +22.392785 +22.404540 +22.528849 +22.533877 +22.539371 +22.544067 +22.644899 +22.650027 +22.656055 +22.766710 +22.774270 +22.792351 +22.857053 +22.871039 +22.893417 +22.928249 +22.948195 +22.963280 +22.981795 +22.994349 +23.022055 +23.038039 +23.066743 +23.089720 +23.113463 +23.138372 +23.175468 +23.199810 +23.229747 +23.250526 +23.271172 +23.297246 +23.304605 +23.331512 +23.340603 +23.364812 +23.381761 +23.405305 +23.425551 +23.467276 +23.496846 +23.529980 +23.556420 +23.587589 +23.624785 +23.659483 +23.725384 +23.759317 +23.792717 +23.824452 +23.853756 +23.882127 +23.915694 +23.949526 +23.981894 +24.014794 +24.038005 +24.081561 +24.097478 +24.150325 +24.182893 +24.210532 +24.235807 +24.253389 +24.268341 +24.285557 +24.308034 +24.324351 +24.343732 +24.360282 +24.387355 +24.402873 +24.431611 +24.459649 +24.500575 +24.532110 +24.572037 +24.619656 +24.663046 +24.705969 +24.740068 +24.782160 +24.821787 +24.854421 +24.882226 +24.914760 +24.951357 +24.982925 +25.024117 +25.056951 +25.094014 +25.120987 +25.150824 +25.182625 +25.217557 +25.246462 +25.289185 +25.325249 +25.364776 +25.404104 +25.437837 +25.477697 +25.519255 +25.560747 +25.599375 +25.639202 +25.674333 +25.716458 +25.752388 +25.787953 +25.825349 +25.865076 +25.903770 +25.942365 +25.982258 +26.018023 +26.064476 +26.106634 +26.145162 +26.224949 +26.295711 +26.329944 +26.368339 +26.403004 +26.435904 +26.470470 +26.504602 +26.549191 +26.560579 +26.596743 +26.626780 +26.655851 +26.680459 +26.695511 +26.721552 +26.758948 +26.794246 +26.822784 +26.853619 +26.892081 +26.930043 +26.998375 +27.053253 +27.108697 +27.174498 +27.228977 +27.281458 +27.332374 +27.389050 +27.443596 +27.488218 +27.531674 +27.568570 +27.616656 +27.645627 +27.688351 +27.740065 +27.797408 +27.844028 +27.906832 +27.951820 +28.002037 +28.056649 +28.127811 +28.185819 +28.245160 +28.301970 +28.350488 +28.399239 +28.433038 +28.491946 +28.548057 +28.597274 +28.698639 +28.731739 +28.782156 +28.829875 +28.904700 +28.954050 +28.987750 +29.033404 +29.071166 +29.104600 +29.170867 +29.263907 +29.315189 +29.362242 +29.416154 +29.541629 +29.607363 +29.673497 +29.743760 +29.797206 +29.875927 +29.925511 +29.988049 +30.042161 +30.100603 +30.160676 +30.172297 +30.217286 +30.252517 +30.309993 +30.358977 +30.420116 +30.523379 +30.574195 +30.634901 +30.754015 +30.839197 +30.919849 +30.995740 +31.074061 +31.141494 +31.218650 +31.274394 +31.329972 +31.408493 +31.460275 +31.524610 +31.583518 +31.649852 +31.711157 +31.763305 +31.808093 +31.866934 +31.931270 +32.056911 +32.121147 +32.159808 +32.240461 +32.300667 +32.407726 +32.442558 +32.504130 +32.556711 +32.651682 +32.723211 +32.807193 +32.850750 +32.932934 +32.998901 +33.063403 +33.126141 +33.175957 +33.232967 +33.281618 +33.331169 +33.385847 +33.425774 +33.473260 +33.539294 +33.583017 +33.657509 +33.742257 +33.823543 +33.893106 +33.937262 +33.997036 +34.046020 +34.100665 +34.183449 +34.272993 +34.349050 +34.423042 +34.486412 +34.546486 +34.653379 +34.697468 +34.736795 +34.770828 +34.784547 +34.790508 +34.834464 +34.857907 +34.890774 +34.925340 +34.954211 +35.044221 +35.115749 +35.213851 +35.336062 +35.402629 +35.478619 +35.555675 +35.637727 +35.695502 +35.747750 +35.824839 +35.946351 +36.004459 +36.081382 +36.129601 +36.190340 +36.229534 +36.262867 +36.314183 +36.364599 +36.387576 +36.435262 +36.479351 +36.550646 +36.792970 +36.820210 +36.936060 +37.000030 +37.047948 +37.151178 +37.199929 +37.258138 +37.310785 +37.372423 +37.417512 +37.474488 +37.520542 +37.567761 +37.625703 +37.677618 +37.754674 +37.756306 +37.826436 +37.861234 +37.911151 +37.961267 +37.999862 +38.150145 +38.275186 +38.309452 +38.373988 +38.425603 +38.567094 +38.648047 +38.660268 +38.717677 +38.755406 +38.790537 +38.822738 +38.847380 +38.854074 +38.906088 +38.931796 +38.970557 +39.026867 +39.050544 +39.080480 +39.131696 +39.161366 +39.235259 +39.250144 +39.298895 +39.394300 +39.460500 +39.536291 +39.588439 +39.615412 +39.658635 +39.685508 +39.705854 +39.755338 +39.791702 +39.820739 +39.922937 +39.941252 +39.998095 +40.025834 +40.060899 +40.131062 +40.192800 +40.266094 +40.315644 +40.369523 +40.409750 +40.509517 +40.531728 +40.558801 +40.600792 +40.629097 +40.656736 +40.697895 +40.750276 +40.782310 +40.841950 +40.922869 +41.029729 +41.075217 +41.143815 +41.193732 +41.267325 +41.330062 +41.392966 +41.444048 +41.490634 +41.532726 +41.651440 +41.725166 +41.854404 +41.912379 +41.967024 +42.025632 +42.053971 +42.107151 +42.135789 +42.253637 +42.310147 +42.383341 +42.462728 +42.531925 +42.592365 +42.660563 +42.714609 +42.791632 +42.840883 +42.917473 +42.961962 +42.995561 +43.015575 +43.067256 +43.098225 +43.202887 +43.376946 +43.425165 +43.565757 +43.621701 +43.677612 +43.732091 +43.828894 +43.894262 +43.955001 +44.006383 +44.054568 +44.075614 +44.125031 +44.159163 +44.234921 +44.329160 +44.424997 +44.563225 +44.650338 +44.749506 +44.792196 +44.883538 +44.957597 +45.077278 +45.174847 +45.309212 +45.373914 +45.450904 +45.528326 +45.652335 +45.727593 +45.782005 +45.814473 +45.888099 +45.916371 +46.003284 +46.070184 +46.146574 +46.174912 +46.243277 +46.323630 +46.579374 +46.681272 +46.695258 +47.584168 +47.586766 +47.589097 +47.591827 +47.599186 +47.842543 +47.845107 +47.847138 +48.118134 +48.120565 +48.122629 +48.125560 +48.316235 +48.318400 +48.321330 +48.471979 +48.474377 +48.476841 +48.479872 +48.638479 +48.641010 +48.643508 +48.646871 +48.768816 +48.771613 +48.774577 +48.778939 +48.913304 +48.916235 +48.918732 +48.922795 +49.004313 +49.008010 +49.011673 +49.018899 +49.100517 +49.104346 +49.108476 +49.113737 +49.167017 +49.176075 +49.189628 +49.217233 +49.244107 +49.264220 +49.296088 +49.308242 +49.327024 +49.350433 +49.370846 +49.392758 +49.405212 +49.446271 +49.462888 +49.482501 +49.484233 +49.486930 +49.512338 +49.546770 +49.560323 +49.594023 +49.623826 +49.650833 +49.680370 +49.705844 +49.729920 +49.757959 +49.784665 +49.809707 +49.839777 +49.866583 +49.895255 +49.924392 +49.950966 +49.986430 +50.018465 +50.045671 +50.068481 +50.100583 +50.128721 +50.167849 +50.195821 +50.218864 +50.237412 +50.267216 +50.285964 +50.302647 +50.324125 +50.351764 +50.372777 +50.393090 +50.417332 +50.442940 +50.470612 +50.503046 +50.530486 +50.560289 +50.577738 +50.608108 +50.635114 +50.672244 +50.700182 +50.729220 +50.762254 +50.790825 +50.816632 +50.857392 +50.879436 +50.903612 +50.908174 +50.938411 +50.952097 +50.968547 +50.997118 +51.016099 +51.030418 +51.038377 +51.073009 +51.090358 +51.105310 +51.125623 +51.151464 +51.173409 +51.201014 +51.238876 +51.282999 +51.341174 +51.381567 +51.416499 +51.452995 +51.486995 +51.526755 +51.564151 +51.599049 +51.637910 +51.672376 +51.701014 +51.728986 +51.763485 +51.799382 +51.828786 +51.846768 +51.876505 +51.904210 +51.927487 +51.967947 +52.002246 +52.039975 +52.066981 +52.118796 +52.156991 +52.185196 +52.219029 +52.253261 +52.288859 +52.325322 +52.404077 +52.476837 +52.521160 +52.546534 +52.587360 +52.625089 +52.666381 +52.703810 +52.750064 +52.785495 +52.820493 +52.853993 +52.892588 +52.920293 +52.937709 +52.962817 +52.993520 +53.069211 +53.141239 +53.191655 +53.240673 +53.286826 +53.334312 +53.383596 +53.427019 +53.460486 +53.496317 +53.542104 +53.582697 +53.625954 +53.663216 +53.707539 +53.745634 +53.787292 +53.836976 +53.900346 +53.954125 +53.983696 +54.007771 +54.023456 +54.057821 +54.080865 +54.111701 +54.139073 +54.159986 +54.177635 +54.225021 +54.283329 +54.353459 +54.434744 +54.537641 +54.583262 +54.630715 +54.689223 +54.753758 +54.793751 +54.855123 +54.913065 +55.001943 +55.040837 +55.089489 +55.138107 +55.190155 +55.244767 +55.282529 +55.306405 +55.324187 +55.361516 +55.401610 +55.432012 +55.451859 +55.467677 +55.502742 +55.523121 +55.562648 +55.592385 +55.622688 +55.670174 +55.698646 +55.811366 +55.865745 +55.907470 +55.996114 +56.076001 +56.154822 +56.208735 +56.277466 +56.334809 +56.396780 +56.438905 +56.498278 +56.562081 +56.605038 +56.641402 +56.682461 +56.720056 +56.750293 +56.804239 +56.911531 +56.987322 +57.111731 +57.128881 +57.366476 +57.388654 +57.454788 +57.492150 +57.584092 +57.615260 +57.684358 +57.732077 +57.792883 +57.853022 +57.905137 +57.958517 +58.012962 +58.061747 +58.111597 +58.158283 +58.195546 +58.235606 +58.319955 +58.358416 +58.426881 +58.470038 +58.529578 +58.611996 +58.666641 +58.692116 +58.754986 +58.785089 +58.836138 +58.866008 +58.896844 +58.950923 +59.039834 +59.173867 +59.313327 +59.369871 +59.427346 +59.488951 +59.513827 +59.558349 +59.593780 +59.613460 +59.638202 +59.672168 +59.975298 +59.981092 +59.986487 +60.108365 +60.117056 +60.132707 +60.203769 +60.215091 +60.227912 +60.541198 +60.546193 +61.160745 +61.163608 +61.166272 +61.169702 +61.272133 +61.278061 +61.280525 +61.287018 +61.387784 +61.390714 +61.397341 +61.591081 +61.596275 +61.602669 +61.756215 +61.758380 +61.760544 +61.763008 +61.768370 +61.872965 +61.875596 +61.878360 +61.881223 +61.888083 +62.067737 +62.070700 +62.073531 +62.077860 +62.231173 +62.233937 +62.236468 +62.239731 +62.355682 +62.358679 +62.361376 +62.364839 +62.495442 +62.498705 +62.501702 +62.506631 +62.627310 +62.630740 +62.633803 +62.638033 +62.729774 +62.734003 +62.738299 +62.750020 +62.814223 +62.824646 +62.840563 +62.879025 +62.887882 +62.903234 +62.937100 +62.953384 +62.972731 +62.999770 +63.030973 +63.055015 +63.084452 +63.107896 +63.113956 +63.134236 +63.151319 +63.186384 +63.217619 +63.239497 +63.261642 +63.300003 +63.325178 +63.347356 +63.376593 +63.405931 +63.437599 +63.465937 +63.493576 +63.521748 +63.551618 +63.578458 +63.606496 +63.632937 +63.665471 +63.693143 +63.739463 +63.763373 +63.794308 +63.819550 +63.860842 +63.890479 +63.922613 +63.951584 +63.984718 +64.010925 +64.045091 +64.077125 +64.097738 +64.121681 +64.148088 +64.176859 +64.210425 +64.235267 +64.269899 +64.302766 +64.333202 +64.367734 +64.394541 +64.424145 +64.459742 +64.497971 +64.554714 +64.580422 +64.608327 +64.634834 +64.658310 +64.685083 +64.761840 +64.799069 +64.833601 +64.869432 +64.904863 +64.939995 +64.972229 +65.006961 +65.039795 +65.072562 +65.104863 +65.139961 +65.179622 +65.217784 +65.253415 +65.287813 +65.321546 +65.357277 +65.391743 +65.423677 +65.462339 +65.501433 +65.533701 +65.568732 +65.605162 +65.635432 +65.667200 +65.708392 +65.735032 +65.775026 +65.800733 +65.847487 +65.909857 +65.963637 +66.026840 +66.085415 +66.141026 +66.202897 +66.260606 +66.308359 +66.366434 +66.427106 +66.473127 +66.516517 +66.566300 +66.619813 +66.659107 +66.718781 +66.758874 +66.814385 +66.854812 +66.893340 +66.941858 +66.993739 +67.033732 +67.078921 +67.129237 +67.176856 +67.233433 +67.334631 +67.398201 +67.456409 +67.584148 +67.629203 +67.687944 +67.803662 +67.866832 +67.984148 +68.032466 +68.105260 +68.167231 +68.239326 +68.399965 +68.422109 +68.458107 +68.468396 +68.661103 +68.689342 +68.695502 +68.700331 +68.703927 +68.711287 +68.911553 +68.915116 +68.919079 +68.932465 +69.041423 +69.045186 +69.048482 +69.053278 +69.188242 +69.190607 +69.193237 +69.196001 +69.386977 +69.389707 +69.392105 +69.395668 +69.526404 +69.529434 +69.532198 +69.534829 +69.538392 +69.708921 +69.712285 +69.715215 +69.719411 +69.850846 +69.853510 +69.856041 +69.859704 +70.034229 +70.037226 +70.039690 +70.043786 +70.187209 +70.189673 +70.192404 +70.195934 +70.330366 +70.333663 +70.336593 +70.340456 +70.461801 +70.465131 +70.468195 +70.472424 +70.559437 +70.563433 +70.566663 +70.572224 +70.713249 +70.716446 +70.719543 +70.724571 +70.856040 +70.859536 +70.862733 +70.868094 +70.954042 +70.958204 +70.962400 +71.000861 +71.034394 +71.077152 +71.108021 +71.127235 +71.159103 +71.179383 +71.204291 +71.218077 +71.237325 +71.269426 +71.326036 +71.360235 +71.421807 +71.444484 +71.475453 +71.503924 +71.534128 +71.560668 +71.592436 +71.621607 +71.646115 +71.674687 +71.704291 +71.731963 +71.760468 +71.790238 +71.814780 +71.875519 +71.904457 +71.935959 +71.963564 +71.993002 +72.025236 +72.054040 +72.079848 +72.106122 +72.134860 +72.177017 +72.209585 +72.242985 +72.274087 +72.298396 +72.326468 +72.385808 +72.418709 +72.443451 +72.480414 +72.579448 +72.596231 +72.643084 +72.675985 +72.715745 +72.753007 +72.792834 +72.830596 +72.865129 +72.900427 +72.956803 +72.994799 +73.027300 +73.062764 +73.101725 +73.138355 +73.173720 +73.209750 +73.246547 +73.287073 +73.324835 +73.361532 +73.402524 +73.429963 +73.497496 +73.535591 +73.571988 +73.608917 +73.648111 +73.684109 +73.722770 +73.762131 +73.800259 +73.838254 +73.875217 +73.904455 +73.940186 +74.017175 +74.043449 +74.087671 +74.128231 +74.175317 +74.229230 +74.275350 +74.325900 +74.360132 +74.434324 +74.523302 +74.572253 +74.616076 +74.738420 +74.780311 +74.832160 +74.881843 +74.925300 +74.981776 +75.029695 +75.062695 +75.117640 +75.158500 +75.199991 +75.247311 +75.293398 +75.344980 +75.401889 +75.439718 +75.482076 +75.621003 +75.655602 +75.699891 +75.782209 +75.867057 +75.930527 +76.024399 +76.156734 +76.228795 +76.283507 +76.346444 +76.402088 +76.453337 +76.515441 +76.575914 +76.657699 +76.726963 +76.787502 +76.900589 +76.972850 +77.017172 +77.063126 +77.142514 +77.210712 +77.248807 +77.280808 +77.325763 +77.383905 +77.472184 +77.501787 +77.601254 +77.690665 +77.809612 +77.834654 +77.899423 +77.949939 +77.971018 +77.993329 +78.037584 +78.083971 +78.115306 +78.186469 +78.687434 +78.690264 +78.694094 +78.939049 +78.940614 +78.943810 +78.946241 +78.949804 +79.081106 +79.083804 +79.086068 +79.089032 +79.375978 +79.378575 +79.380806 +79.383670 +79.599854 +79.602451 +79.604649 +79.607546 +79.615871 +79.793560 +79.795924 +79.798089 +79.800853 +79.807113 +79.907179 +79.910509 +79.913606 +79.915871 +79.918568 +79.922930 +80.092494 +80.094858 +80.096956 +80.099720 +80.104882 +80.257795 +80.260226 +80.262391 +80.265154 +80.271848 +80.416203 +80.418634 +80.420699 +80.423662 +80.556463 +80.559160 +80.561458 +80.564521 +80.573712 +80.699719 +80.702350 +80.704748 +80.708178 +80.826826 +80.829889 +80.836582 +80.943675 +80.947272 +80.950735 +80.957794 +81.054631 +81.059093 +81.082836 +81.128690 +81.138880 +81.155696 +81.189729 +81.209376 +81.232786 +81.257228 +81.277574 +81.301684 +81.319599 +81.363055 +81.386532 +81.410142 +81.431520 +81.456928 +81.484401 +81.506312 +81.533052 +81.559725 +81.584833 +81.607511 +81.627058 +81.651667 +81.680837 +81.706878 +81.729755 +81.756895 +81.783235 +81.809775 +81.833984 +81.860624 +81.885100 +81.909808 +81.936049 +81.962056 +81.986365 +82.012805 +82.038113 +82.062788 +82.086997 +82.115702 +82.139478 +82.165319 +82.192225 +82.219565 +82.245539 +82.270847 +82.296221 +82.324593 +82.353164 +82.380370 +82.405778 +82.432019 +82.456927 +82.484766 +82.509475 +82.561522 +82.587730 +82.641676 +82.689095 +82.709941 +82.738412 +82.758292 +82.785298 +82.809108 +82.833750 +82.856727 +82.878072 +82.905511 +82.932651 +82.959491 +82.986897 +83.012238 +83.040476 +83.067150 +83.091259 +83.118698 +83.145471 +83.172211 +83.200216 +83.231019 +83.260789 +83.291891 +83.319397 +83.348135 +83.381735 +83.409474 +83.440975 +83.470646 +83.505811 +83.537845 +83.567249 +83.594855 +83.617832 +83.648434 +83.676673 +83.701548 +83.764984 +83.801548 +83.833150 +83.867648 +83.898517 +83.932916 +83.961221 +84.021528 +84.081268 +84.112170 +84.154028 +84.189793 +84.211171 +84.241641 +84.310505 +84.340975 +84.401481 +84.437345 +84.476705 +84.504910 +84.541074 +84.583265 +84.619629 +84.663751 +84.699049 +84.741407 +84.783465 +84.817364 +84.858989 +84.891390 +84.931916 +84.970678 +85.006875 +85.045270 +85.084830 +85.125523 +85.166315 +85.201513 +85.240641 +85.277437 +85.312835 +85.350464 +85.391956 +85.436045 +85.476538 +85.515432 +85.555059 +85.592655 +85.636311 +85.675805 +85.711003 +85.762252 +85.795319 +85.843970 +85.883431 +85.925555 +85.962518 +85.998049 +86.056724 +86.098981 +86.134879 +86.172275 +86.212468 +86.255059 +86.297649 +86.337842 +86.380633 +86.417862 +86.460520 +86.500213 +86.566946 +86.692654 +86.750163 +86.817129 +86.872840 +86.943936 +87.004775 +87.132913 +87.251494 +87.318827 +87.367312 +87.455823 +87.499246 +87.545334 +87.584894 +87.613865 +87.698480 +87.704907 +87.781264 +87.995716 +88.024354 +88.079665 +88.184194 +88.188290 +88.338073 +88.373871 +88.563781 +88.572938 +88.600078 +92.037271 +92.040734 +92.042732 +92.044597 +92.046694 +92.050091 +92.398276 +92.634140 +92.636904 +92.639068 +92.642265 +92.896577 +92.898975 +92.900906 +92.903470 +92.908299 +93.210296 +93.212561 +93.214625 +93.217389 +93.471268 +93.473666 +93.475764 +93.478794 +93.650489 +93.653153 +93.655251 +93.658115 +93.857582 +93.860179 +93.862444 +93.865441 +94.020818 +94.023316 +94.025414 +94.028544 +94.187718 +94.190915 +94.193512 +94.197109 +94.337401 +94.340432 +94.343162 +94.346959 +94.477228 +94.480492 +94.487984 +94.605400 +94.608697 +94.611760 +94.616589 +94.740398 +94.743661 +94.746459 +94.750688 +94.836535 +94.839898 +94.843062 +94.847491 +94.960678 +94.964374 +94.967970 +94.975996 +95.079259 +95.083754 +95.087451 +95.098739 +95.175363 +95.181923 +95.192212 +95.276628 +95.287018 +95.315456 +95.344427 +95.363874 +95.388782 +95.419318 +95.447390 +95.483021 +95.512159 +95.542828 +95.573997 +95.602302 +95.633571 +95.668103 +95.696807 +95.727610 +95.759778 +95.790247 +95.822581 +95.855615 +95.875395 +95.880424 +95.903367 +95.945692 +95.974363 +95.996008 +96.036867 +96.073297 +96.112358 +96.139897 +96.169368 +96.200070 +96.229374 +96.267969 +96.306097 +96.340363 +96.378658 +96.416920 +96.428042 +96.452118 +96.494742 +96.530373 +96.566703 +96.595874 +96.634069 +96.671099 +96.703000 +96.721981 +96.764139 +96.791845 +96.828608 +96.857679 +96.865438 +96.901601 +96.933070 +97.011625 +97.046423 +97.083786 +97.125511 +97.195507 +97.251584 +97.296439 +97.328507 +97.371964 +97.436699 +97.472330 +97.514621 +97.550518 +97.596073 +97.623679 +97.657012 +97.681088 +97.705763 +97.767801 +97.788580 +97.816852 +97.860908 +97.895773 +97.930272 +97.942826 +98.015886 +98.114521 +98.159975 +98.207228 +98.260841 +98.305596 +98.371696 +98.440861 +98.505396 +98.541427 +98.584816 +98.630204 +98.670830 +98.705529 +98.772395 +98.827540 +98.870364 +98.955645 +99.171296 +99.200900 +99.274126 +99.338828 +99.376357 +99.425175 +99.462804 +99.519647 +99.577156 +99.664835 +99.840793 +99.914485 +99.919247 +101.071993 +101.074657 +101.076755 +101.079786 +101.258107 +101.260771 +101.262669 +101.265034 +101.268563 +101.620245 +101.622975 +101.625206 +101.628170 +101.767997 +101.770528 +101.772725 +101.775756 +102.027037 +102.029602 +102.031733 +102.034630 +102.253611 +102.255975 +102.258139 +102.261037 +102.397733 +102.400097 +102.402195 +102.404992 +102.411220 +102.581982 +102.584313 +102.586511 +102.589275 +102.594436 +102.756474 +102.758805 +102.761003 +102.763667 +102.769960 +102.928202 +102.930300 +102.932564 +102.935195 +102.941622 +103.034096 +103.037193 +103.039757 +103.042121 +103.045818 +103.209853 +103.212751 +103.215115 +103.218878 +103.367163 +103.370293 +103.372824 +103.376420 +103.508588 +103.511718 +103.514648 +103.519144 +103.630832 +103.635394 +103.638891 +103.646050 +103.756240 +103.759836 +103.763433 +103.771558 +103.866862 +103.872157 +103.877818 +103.934461 +103.947049 +103.982314 +104.004924 +104.034861 +104.066429 +104.092303 +104.117179 +104.148048 +104.174122 +104.203759 +104.235394 +104.266895 +104.291371 +104.326735 +104.360968 +104.392037 +104.454707 +104.485144 +104.516579 +104.545383 +104.574621 +104.602593 +104.631231 +104.658403 +104.689539 +104.717378 +104.750345 +104.780648 +104.809719 +104.829832 +104.852409 +104.877950 +104.902959 +104.933128 +104.954440 +104.983944 +105.004624 +105.029765 +105.065130 +105.115113 +105.143052 +105.176951 +105.196365 +105.231030 +105.261600 +105.293668 +105.328166 +105.360268 +105.387840 +105.413048 +105.487540 +105.521040 +105.553474 +105.585409 +105.599928 +105.624237 +105.656571 +105.690470 +105.697963 +105.728033 +105.764829 +105.803024 +105.906321 +105.945315 +106.020174 +106.047380 +106.093101 +106.133660 +106.171689 +106.210716 +106.248046 +106.284642 +106.316977 +106.361266 +106.393300 +106.429297 +106.460100 +106.497562 +106.530263 +106.573287 +106.609251 +106.645281 +106.685275 +106.713147 +106.746080 +106.779347 +106.809783 +106.849044 +106.884608 +106.920373 +106.955637 +106.991102 +107.023636 +107.054105 +107.081212 +107.123003 +107.151641 +107.288471 +107.326200 +107.356170 +107.390902 +107.440951 +107.482610 +107.516076 +107.550941 +107.636722 +107.673186 +107.702789 +107.750009 +107.791234 +107.830328 +107.917874 +107.965060 +108.009183 +108.055769 +108.100125 +108.114744 +108.169988 +108.205220 +108.237787 +108.272386 +108.299425 +108.340418 +108.384407 +108.438153 +108.498959 +108.552406 +108.604054 +108.653105 +108.712512 +108.772752 +108.819272 +108.871886 +108.982275 +109.039185 +109.104553 +109.157666 +109.220803 +109.270354 +109.312312 +109.351206 +109.396960 +109.432525 +109.495262 +109.551972 +109.674649 +109.752871 +109.827329 +109.929427 +111.263359 +111.266189 +111.268453 +111.271117 +111.459862 +111.462493 +111.464690 +111.466955 +111.470718 +111.779509 +111.782339 +111.784803 +111.788133 +112.003118 +112.005682 +112.007947 +112.010844 +112.173314 +112.175912 +112.178110 +112.181240 +112.336951 +112.339714 +112.342112 +112.345775 +112.486035 +112.488632 +112.491130 +112.494326 +112.631223 +112.634453 +112.637416 +112.641646 +112.755032 +112.758795 +112.762225 +112.768519 +112.848871 +112.853267 +112.856963 +112.864289 +112.940247 +112.945741 +112.951768 +112.977776 +113.016537 +113.033453 +113.061192 +113.085301 +113.110743 +113.138615 +113.162957 +113.178442 +113.200186 +113.227825 +113.260360 +113.286533 +113.304415 +113.345707 +113.366387 +113.385301 +113.414206 +113.434285 +113.473180 +113.510076 +113.539214 +113.576476 +113.608411 +113.637349 +113.671148 +113.701152 +113.731721 +113.764988 +113.795824 +113.824894 +113.857262 +113.886566 +113.920532 +113.948138 +113.982304 +114.045440 +114.080971 +114.112573 +114.142876 +114.176576 +114.199919 +114.230488 +114.263222 +114.293459 +114.324228 +114.360525 +114.389529 +114.412673 +114.434218 +114.479672 +114.507544 +114.529922 +114.568683 +114.591327 +114.617002 +114.651800 +114.685866 +114.746439 +114.780838 +114.818333 +114.856861 +114.894890 +114.935116 +114.981670 +115.019698 +115.058826 +115.095889 +115.133618 +115.170181 +115.215369 +115.252266 +115.285899 +115.323361 +115.362555 +115.391659 +115.413871 +115.454630 +115.478040 +115.571613 +115.606311 +115.633417 +115.649701 +115.686631 +115.739678 +115.781436 +115.789062 +115.833484 +115.880004 +115.935016 +115.975142 +116.028222 +116.066484 +116.117133 +116.165218 +116.208175 +116.251865 +116.299451 +116.341742 +116.389327 +116.421662 +116.463720 +116.487263 +116.513137 +116.547702 +116.581502 +116.621795 +116.644705 +116.668914 +116.689893 +116.721861 +116.739377 +116.766716 +116.802980 +116.869380 +116.921328 +116.947269 +117.017665 +117.065118 +117.205943 +117.283166 +117.338078 +117.404511 +117.442240 +117.503079 +117.567881 +117.594821 +117.663685 +117.693022 +117.724757 +117.751830 +117.790625 +117.811604 +117.862420 +117.889326 +117.924857 +117.951597 +117.982866 +118.010671 +118.042839 +118.127454 +118.165316 +118.211370 +118.258690 +118.330518 +118.362952 +118.578569 +118.655925 +118.743937 +118.771243 +118.804676 +118.825356 +118.844503 +118.881233 +118.985828 +119.223058 +119.261686 +119.357423 +119.418628 +119.462784 +119.508439 +119.585661 +119.707173 +119.738308 +119.768711 +119.847632 +119.902045 +120.075604 +120.117229 +120.194185 +120.278201 +120.297382 +120.378268 +120.410968 +120.458621 +120.519693 +120.575537 +120.610302 +120.674272 +120.727085 +120.983529 +120.991021 +120.999946 +121.269709 +121.274204 +121.277668 +121.514164 +121.517461 +121.520092 +121.523788 +121.758719 +121.762482 +121.765879 +121.774870 +122.137240 +122.140337 +122.143135 +122.147430 +122.421056 +122.423820 +122.426185 +122.429448 +122.645931 +122.648462 +122.650627 +122.653690 +122.850227 +122.852791 +122.854922 +122.857619 +122.862481 +122.982594 +122.985258 +122.987756 +122.991052 +123.220556 +123.223620 +123.225817 +123.229181 +123.368808 +123.372104 +123.374569 +123.377399 +123.385524 +123.477099 +123.480296 +123.483326 +123.487888 +123.677432 +123.680496 +123.683160 +123.686923 +123.845630 +123.848428 +123.850858 +123.854222 +123.956253 +123.959783 +123.963146 +123.968807 +124.087388 +124.091185 +124.094648 +124.101874 +124.208734 +124.211997 +124.215560 +124.218757 +124.310865 +124.317625 +124.321654 +124.329413 +124.401940 +124.408367 +124.416892 +124.506269 +124.515327 +124.526582 +124.567474 +124.602972 +124.627581 +124.642699 +124.668540 +124.691783 +124.719456 +124.737304 +124.759982 +124.784757 +124.811996 +124.842666 +124.863312 +124.886655 +124.904803 +124.928480 +124.945263 +124.973834 +125.018623 +125.049392 +125.089951 +125.121553 +125.158816 +125.199342 +125.230544 +125.267207 +125.291849 +125.322052 +125.350124 +125.374600 +125.392948 +125.430344 +125.458116 +125.487520 +125.525449 +125.584090 +125.622385 +125.651656 +125.687154 +125.710297 +125.729811 +125.776165 +125.790850 +125.831842 +125.875698 +125.916457 +125.960980 +126.009098 +126.052188 +126.091948 +126.133507 +126.173467 +126.218655 +126.259314 +126.304502 +126.344063 +126.380926 +126.428944 +126.468405 +126.549690 +126.605701 +126.632574 +126.661845 +126.685721 +126.716490 +126.742630 +126.781292 +126.811795 +126.814159 +126.879260 +126.919620 +126.958414 +127.012394 +127.039666 +127.092780 +127.129743 +127.191281 +127.235704 +127.285654 +127.310795 +127.363642 +127.418354 +127.468138 +127.530908 +127.581391 +127.637235 +127.679526 +127.727977 +127.758447 +127.785353 +127.835903 +127.932173 +127.973032 +128.035270 +128.072832 +128.097741 +128.122383 +128.170135 +128.204234 +128.257081 +128.289682 +128.330508 +128.403102 +128.508063 +128.561809 +128.611926 +128.664207 +128.717254 +128.766604 +128.813224 +128.861909 +128.904000 +128.948422 +128.996674 +129.037633 +129.080557 +129.120350 +129.156115 +129.199305 +129.252718 +129.287749 +129.320483 +129.341962 +129.361975 +129.402967 +129.429175 +129.457779 +129.519684 +129.544126 +129.578492 +129.605565 +129.645158 +129.672731 +129.702301 +129.838798 +129.925877 +130.000070 +130.063140 +130.130706 +130.158678 +130.208694 +130.295907 +130.351918 +130.417385 +130.457712 +130.519550 +130.593209 +130.669733 +130.726243 +130.810425 +130.884451 +130.954648 +131.013555 +131.067301 +131.101168 +131.143159 +131.248154 +131.272429 +131.317951 +131.459842 +131.567401 +131.610857 +132.729471 +132.732368 +132.734366 +132.736597 +132.976657 +132.978788 +132.980986 +132.983983 +133.037862 +133.043124 +133.046287 +133.049317 +133.053613 +133.109391 +133.112421 +133.116583 +133.359241 +133.361705 +133.364002 +133.366966 +133.421811 +133.425641 +133.429703 +133.434299 +133.650616 +133.653046 +133.655211 +133.658075 +133.807558 +133.809889 +133.812054 +133.814485 +133.818214 +134.024075 +134.026573 +134.028904 +134.032067 +134.181984 +134.184681 +134.187012 +134.190142 +134.342390 +134.345320 +134.347751 +134.351414 +134.469429 +134.472859 +134.475323 +134.479353 +134.606592 +134.609689 +134.612719 +134.616848 +134.769695 +134.772992 +134.776022 +134.781084 +134.904860 +134.913951 +134.917048 +134.920145 +134.926105 +135.066798 +135.069862 +135.072492 +135.075856 +135.196568 +135.200065 +135.203628 +135.210055 +135.327803 +135.331600 +135.335429 +135.340957 +135.466265 +135.470361 +135.474057 +135.485279 +135.600430 +135.610920 +135.727503 +135.734829 +135.745951 +135.838958 +135.850347 +135.882748 +135.922208 +135.969328 +135.996934 +136.047083 +136.079884 +136.126970 +136.173623 +136.228768 +136.274889 +136.317513 +136.359038 +136.385844 +136.401329 +136.436893 +136.487409 +136.529833 +136.560669 +136.619644 +136.638192 +136.674655 +136.784179 +136.840889 +136.928934 +136.972457 +137.017912 +137.135660 +137.177585 +137.301361 +137.473589 +137.552510 +137.639056 +138.263098 +138.267661 +138.270957 +138.278983 +138.482812 +138.486242 +138.488639 +138.492169 +138.721939 +138.724770 +138.726868 +138.729798 +138.734560 +138.893434 +138.895965 +138.898229 +138.900993 +138.907687 +139.043784 +139.046381 +139.048512 +139.050810 +139.054673 +139.127233 +139.132894 +139.135459 +139.139488 +139.297496 +139.299927 +139.302225 +139.305155 +139.311283 +139.441186 +139.443350 +139.446181 +139.452275 +139.598628 +139.601192 +139.603390 +139.732594 +139.735924 +139.738555 +139.741918 +139.849177 +139.853373 +139.858168 +139.878348 +139.964762 +139.971888 +139.978948 +140.036057 +140.050476 +140.073353 +140.109950 +140.130696 +140.157202 +140.186706 +140.212714 +140.240686 +140.268857 +140.298028 +140.319473 +140.347712 +140.380812 +140.413746 +140.443083 +140.475351 +140.522503 +140.560898 +140.583775 +140.611281 +140.638787 +140.692766 +140.724768 +140.745047 +140.777482 +140.782776 +140.817042 +140.829829 +140.866193 +140.898494 +140.931794 +140.950009 +140.982443 +141.015710 +141.044048 +141.065893 +141.097761 +141.129163 +141.159965 +141.188637 +141.214810 +141.246778 +141.277947 +141.310248 +141.341617 +141.373052 +141.404687 +141.436489 +141.465859 +141.495896 +141.525699 +141.556369 +141.586905 +141.620737 +141.651040 +141.682442 +141.715509 +141.745013 +141.779379 +141.845812 +141.873018 +141.906685 +141.939585 +141.972452 +142.004820 +142.038686 +142.070088 +142.136854 +142.169288 +142.194197 +142.233025 +142.256801 +142.286904 +142.309215 +142.344779 +142.386238 +142.424766 +142.463327 +142.498459 +142.536188 +142.572818 +142.605518 +142.645212 +142.670487 +142.703187 +142.730460 +142.758032 +142.817673 +142.865625 +142.891532 +142.925165 +142.953970 +143.035588 +143.075448 +143.108948 +143.146344 +143.184339 +143.224499 +143.260163 +143.303087 +143.337985 +143.373550 +143.409647 +143.445011 +143.479077 +143.511345 +143.544345 +143.579177 +143.613443 +143.645144 +143.677412 +143.711478 +143.746143 +143.780376 +143.822833 +143.859463 +143.889566 +143.931524 +143.966589 +144.009813 +144.061794 +144.100988 +144.148041 +144.189333 +144.237451 +144.283905 +144.332889 +144.370984 +144.408880 +144.446908 +144.518570 +144.549606 +144.584970 +144.621867 +144.653269 +144.693961 +144.738916 +144.777677 +144.808513 +144.849372 +144.902686 +144.941180 +144.999022 +145.043012 +145.092595 +145.139782 +145.190098 +145.292062 +145.345009 +145.405582 +145.461360 +145.519868 +145.574613 +145.625495 +145.721999 +145.758296 +145.790930 +145.828958 +145.873747 +145.908379 +145.942411 +145.980373 +146.013740 +146.066854 +146.131655 +146.157596 +146.208012 +146.247140 +146.302951 +146.362125 +146.409111 +146.467819 +146.505914 +146.552001 +146.619733 +146.670116 +146.786333 +146.841278 +146.922097 +146.997455 +147.054565 +147.128691 +147.195257 +147.257761 +147.326226 +147.387898 +147.509909 +147.524062 +147.609376 +147.641944 +147.691461 +147.743642 +147.776875 +147.828057 +147.901251 +147.979972 +148.056628 +148.139279 +148.204447 +148.277907 +148.378506 +148.432286 +148.498253 +148.546538 +148.604547 +148.663055 +148.792292 +148.929754 +148.981969 +149.047204 +149.104346 +150.706909 +150.709340 +150.711338 +150.713369 +150.715800 +151.069779 +151.072210 +151.074208 +151.076439 +151.080035 +151.576771 +151.579469 +151.581500 +151.781200 +151.783631 +151.788892 +152.078802 +152.081533 +152.083731 +152.087094 +152.353694 +152.356291 +152.358522 +152.361553 +152.577969 +152.580533 +152.582698 +152.585895 +152.768878 +152.771742 +152.774206 +152.777769 +152.940406 +152.943104 +152.945535 +152.949264 +153.091955 +153.095185 +153.097749 +153.101412 +153.208471 +153.211702 +153.214665 +153.218461 +153.340473 +153.344169 +153.347965 +153.355025 +153.445834 +153.450163 +153.455125 +153.482997 +153.521158 +153.540506 +153.558055 +153.583396 +153.607006 +153.626953 +153.648098 +153.677535 +153.701411 +153.728185 +153.754358 +153.774238 +153.799680 +153.829217 +153.849863 +153.877269 +153.900346 +153.911401 +153.940738 +153.966313 +153.991155 +154.016429 +154.066546 +154.090555 +154.112899 +154.136942 +154.162750 +154.186726 +154.213099 +154.238540 +154.287858 +154.315996 +154.344801 +154.371174 +154.395050 +154.416529 +154.445267 +154.472406 +154.496882 +154.519426 +154.541903 +154.564814 +154.591753 +154.614531 +154.635709 +154.665180 +154.692619 +154.721956 +154.743468 +154.768343 +154.796282 +154.820991 +154.843069 +154.870175 +154.899845 +154.932845 +154.962283 +154.992752 +155.025153 +155.057720 +155.085692 +155.116062 +155.144600 +155.176335 +155.204374 +155.232179 +155.262582 +155.294184 +155.321390 +155.352825 +155.382295 +155.413464 +155.441636 +155.470774 +155.501343 +155.532212 +155.564113 +155.595748 +155.625452 +155.655822 +155.687823 +155.719525 +155.774303 +155.803507 +155.829914 +155.855888 +155.884792 +155.914363 +155.939871 +156.018991 +156.047130 +156.075735 +156.104173 +156.136207 +156.160483 +156.184060 +156.211432 +156.239104 +156.259617 +156.284226 +156.313197 +156.341635 +156.367276 +156.398611 +156.430280 +156.456853 +156.490553 +156.518292 +156.552957 +156.587855 +156.650892 +156.685924 +156.726883 +156.761448 +156.798145 +156.833643 +156.871705 +156.905870 +156.933276 +156.960416 +156.994415 +157.021088 +157.062447 +157.103539 +157.142067 +157.173269 +157.200376 +157.223652 +157.256586 +157.292650 +157.329080 +157.374102 +157.410898 +157.448427 +157.482360 +157.511764 +157.544831 +157.583492 +157.615127 +157.653156 +157.693748 +157.736006 +157.780628 +157.816792 +157.851257 +157.898277 +157.932276 +157.970305 +158.008833 +158.056385 +158.108533 +158.148660 +158.192349 +158.235639 +158.282925 +158.325083 +158.364510 +158.455053 +158.498343 +158.535472 +158.623118 +158.666641 +158.713827 +158.758816 +158.796844 +158.839535 +158.891483 +158.973367 +159.014293 +159.062079 +159.107533 +159.156484 +159.207999 +159.262678 +159.307200 +159.341865 +159.370736 +159.416624 +159.468838 +159.528379 +159.580759 +159.625681 +159.673533 +159.717989 +159.766174 +159.823250 +159.889684 +159.951821 +160.014392 +160.081825 +160.140932 +160.184688 +160.297442 +160.370069 +160.446559 +160.535404 +160.642963 +160.771368 +160.877128 +160.945327 +161.025114 +161.111727 +161.212126 +161.303402 +161.473498 +161.627577 +161.801570 +161.875529 +161.935069 +161.954750 +162.086351 +162.136701 +162.341829 +162.490380 +162.594576 +162.661009 +162.827176 +163.014889 +163.176160 +163.240896 +163.359610 +163.470832 +163.532038 +163.649020 +163.721381 +163.789580 +163.856546 +163.956446 +164.023412 +164.131404 +164.389246 +164.474361 +164.532603 +164.586282 +164.664837 +164.766435 +164.832969 +164.896405 +165.015486 +165.329871 +165.532202 +165.702998 +165.826341 +165.926474 +166.212521 +166.379487 +166.540526 +166.588578 +166.655944 +166.679121 +166.700666 +166.784548 +166.937362 +167.080752 +167.140359 +167.214651 +167.319580 +167.460405 +167.517148 +167.570995 +167.660105 +167.731401 +167.883648 +167.975356 +168.006159 +168.076222 +168.159672 +168.272093 +168.567697 +168.571260 +168.592306 +168.635695 +168.647783 +168.675889 +168.726704 +168.736195 +168.782748 +168.801596 +168.850314 +168.888709 +169.016248 +169.023041 +169.056241 +169.080484 +169.103694 +169.153744 +169.239225 +169.386411 +169.474855 +169.485844 +169.505158 +169.534196 +169.558771 +169.581815 +169.608655 +169.636927 +169.671425 +169.775488 +169.985744 +170.005058 +170.018545 +170.031798 +170.075621 +170.089274 +170.114748 +170.173523 +170.184379 +170.238491 +170.242454 +170.308021 +170.364698 +170.440822 +170.519743 +170.592337 +170.645151 +170.711584 +170.766496 +170.830798 +170.895933 +170.951677 +171.007888 +171.059436 +171.120475 +171.177784 +171.223638 +171.290904 +171.354640 +171.408720 +171.456006 +171.502692 +171.579182 +171.610451 +171.676318 +171.741919 +171.805822 +171.821506 +171.859901 +171.936058 +172.028000 +172.106621 +172.201459 +172.650077 +172.725468 +172.771789 +172.857469 +172.952241 +173.056004 +173.143283 +173.205688 +173.264229 +173.301325 +173.375684 +173.457769 +173.521039 +173.559034 +173.613579 +173.638021 +173.673053 +173.698627 +173.749144 +173.810782 +173.874085 +173.941285 +174.002390 +174.065926 +174.101624 +174.151374 +174.176915 +174.216709 +174.261764 +174.311747 +174.397794 +174.474517 +174.509016 +174.566592 +174.617141 +174.659832 +174.707384 +174.751673 +174.823801 +174.893964 +174.927764 +174.969722 +175.013178 +175.092299 +175.147144 +175.218806 +175.279212 +175.344613 +175.404220 +175.463894 +175.512678 +175.579645 +175.635855 +175.765392 +175.834989 +175.901522 +175.954869 +176.020170 +176.090933 +176.163560 +176.238485 +176.302521 +176.381675 +176.531026 +176.618338 +176.814941 +177.197492 +177.435587 +177.563192 +177.643512 +177.768454 +177.809779 +178.201520 +178.642479 +179.087733 +179.343111 +179.364656 +179.398788 +179.413340 +179.421166 +179.448439 +179.649637 +180.072447 +181.946871 +181.950168 +181.953198 +181.961423 +182.165019 +182.168083 +182.170580 +182.174410 +182.286265 +182.290527 +182.294057 +182.525658 +182.530487 +182.535282 +182.647769 +182.653797 +182.775874 +182.783733 +182.887996 +183.240143 +183.245971 +183.253463 +183.355694 +183.363719 +183.457625 +183.484665 +183.580835 +183.638178 +183.715301 +183.775707 +183.817265 +183.862753 +183.909273 +183.966316 +184.010838 +184.068980 +184.121494 +184.174508 +184.220095 +184.278171 +184.350565 +184.382033 +184.428187 +184.471144 +184.494421 +184.541307 +184.581634 +184.620861 +184.627854 +184.698550 +184.754760 +184.811737 +184.869778 +184.924157 +184.971044 +185.063618 +185.104477 +185.133581 +185.174407 +185.218496 +185.264284 +185.326088 +185.380334 +185.440441 +185.490557 +185.539242 +185.611869 +185.650630 +185.703877 +185.754260 +185.789824 +185.830417 +185.886228 +185.954859 +186.020560 +186.084696 +186.146700 +186.195252 +186.256590 +186.313467 +186.434279 +186.495917 +186.561918 +186.612134 +186.661452 +186.724122 +186.789523 +186.841804 +186.927785 +186.980066 +187.054325 +187.106340 +187.190755 +187.247232 +187.381831 +187.478467 +187.592420 +187.739872 +187.847098 +188.023755 +188.155456 +188.230181 +188.341437 +188.455389 +188.646298 +188.869208 +188.926484 +189.073937 +189.101343 +189.205638 +189.319424 +189.389821 +189.492185 +189.569574 +189.606737 +189.621022 +189.662448 +189.666710 +189.678432 +189.718958 +189.826717 +189.944599 +190.069074 +190.101641 +190.220822 +190.325684 +190.388920 +190.534941 +190.574568 +190.649693 +190.726982 +190.784991 +190.815194 +190.868740 +190.929013 +191.043299 +191.298077 +191.657717 +191.836238 +195.502002 +201.313718 +201.316049 +201.318147 +201.320378 +201.324840 +203.842953 +203.845051 +203.847016 +203.849746 +205.320807 +205.322838 +205.324836 +205.327567 +205.726201 +205.728466 +205.730497 +205.732828 +205.739887 +206.063996 +206.066094 +206.068092 +206.070590 +206.075418 +206.150044 +206.282911 +206.285242 +206.287373 +206.290403 +206.454505 +206.457303 +206.459534 +206.462830 +206.664795 +206.667792 +206.670856 +206.679014 +206.882677 +206.885740 +206.888404 +206.895597 +207.008151 +207.011947 +207.014678 +207.018308 +207.096330 +207.105687 +207.112480 +207.159966 +207.177349 +207.288204 +207.311614 +207.393299 +207.431061 +207.493998 +207.548544 +207.604055 +207.661997 +207.717108 +207.756369 +207.787205 +207.820771 +207.873718 +207.919572 +207.956735 +207.991500 +208.026765 +208.055170 +208.131893 +208.181044 +208.242882 +208.303421 +208.370687 +208.426132 +208.492199 +208.552472 +208.623201 +208.696661 +208.766891 +208.815475 +208.884706 +208.939185 +209.024067 +209.075415 +209.122635 +209.165758 +209.216740 +209.268988 +209.304086 +209.349274 +209.486870 +209.685271 +209.727729 +209.823300 +209.945977 +210.296926 +210.368021 +210.403819 +210.436087 +210.461728 +210.514675 +210.571684 +210.636553 +210.927994 +211.008613 +211.034354 +211.119536 +211.196592 +211.234554 +211.253035 +211.383605 +211.457464 +211.481240 +211.533022 +211.587767 +211.709112 +211.918236 +211.942912 +212.111243 +212.137217 +212.314673 +212.330057 +212.367720 +212.444110 +212.532022 +212.627027 +212.712341 +212.802984 +212.916504 +213.014572 +213.176011 +213.306513 +213.387399 +213.452267 +213.542710 +213.600386 +213.656796 +213.709543 +213.911108 +213.983669 +214.127392 +214.334851 +214.389829 +214.994124 +215.009908 +215.013871 +215.017501 +215.200318 +215.205412 +215.348436 +215.353231 +215.367084 +215.371979 +215.544506 +215.550334 +215.558259 +215.691193 +215.698752 +215.802115 +215.810707 +215.836447 +215.865152 +215.926158 +215.949568 +215.994856 +216.045971 +216.091759 +216.149101 +216.197919 +216.252331 +216.300083 +216.358225 +216.417932 +216.523493 +216.618298 +216.700216 +216.771245 +216.825524 +216.857525 +216.903280 +216.953396 +217.029686 +217.118431 +217.177805 +217.265017 +217.340242 +217.415467 +217.527754 +217.562453 +217.630052 +217.672510 +217.709905 +217.745270 +217.770811 +217.808174 +217.847101 +217.890058 +217.909739 +217.961587 +217.995719 +218.023125 +218.099982 +218.237744 +218.266482 +218.305776 +218.405376 +218.568712 +218.636545 +218.778969 +218.808373 +218.848799 +218.911203 +219.057490 +219.111403 +219.143637 +219.173008 +219.226787 +219.322691 +219.376537 +219.502544 +219.614932 +219.716397 +219.950563 +220.097582 +220.193852 +220.240039 +220.272773 +220.281664 +220.307938 +220.339174 +220.387625 +220.475570 +220.722190 +220.735777 +220.744002 +220.784861 +220.838008 +220.982097 +221.022556 +221.132879 +221.217161 +221.314963 +221.411767 +221.485360 +221.566878 +221.628316 +221.689955 +221.757121 +221.804340 +221.820124 +221.855689 +221.892918 +221.949928 +221.969408 +222.055089 +222.131546 +222.449694 +222.453357 +222.462415 +222.937839 +222.941569 +222.945631 +223.141535 +223.145464 +223.149061 +223.260549 +223.266144 +223.283593 +223.325817 +223.343599 +223.433876 +223.454821 +223.533343 +223.564945 +223.603606 +223.629280 +223.660948 +223.697712 +223.745164 +223.793616 +223.852157 +223.903406 +223.947861 +223.991651 +224.041767 +224.096879 +224.145397 +224.188021 +224.247761 +224.302173 +224.350392 +224.403139 +224.452456 +224.517225 +224.558683 +224.592150 +224.649026 +224.685223 +224.760281 +224.834374 +224.877331 +224.914893 +224.953821 +224.992316 +225.083857 +225.141666 +225.228113 +225.324583 +225.438502 +225.529545 +225.624849 +225.796910 +225.862012 +225.909697 +225.951689 +225.967739 +226.000340 +226.037270 +226.144729 +226.196444 +226.210729 +226.355518 +226.441066 +226.468272 +226.506900 +226.728877 +226.787386 +226.884988 +226.974365 +227.094645 +227.269270 +227.344228 +227.421251 +227.471667 +227.527578 +227.570535 +227.618820 +227.719852 +227.809496 +227.928743 +227.988084 +228.218353 +228.256781 +228.282822 +228.301004 +228.329142 +228.362775 +228.391213 +228.430041 +228.577893 +228.630141 +228.696375 +228.761410 +228.809029 +228.857713 +228.922615 +228.937833 +229.048789 +229.090014 +229.138066 +229.232605 +229.302468 +229.338565 +229.371266 +229.409661 +229.442961 +229.557513 +229.646124 +229.786517 +229.813523 +229.845991 +229.864072 +229.877359 +229.921915 +229.968768 +230.011758 +230.025244 +230.058644 +230.147389 +230.358910 +230.433336 +230.516386 +230.574661 +230.730705 +230.781554 +230.836266 +230.869100 +230.890478 +230.921714 +231.034268 +231.073995 +231.079223 +231.130904 +231.164371 +231.298403 +231.317251 +231.553981 +231.576592 +231.659442 +231.704031 +231.767401 +231.819315 +231.881353 +231.943524 +232.008992 +232.074793 +232.132169 +232.208692 +232.288779 +232.315652 +232.355179 +232.375059 +232.398103 +232.415019 +232.444156 +232.479255 +232.513654 +232.541859 +232.565169 +232.726873 +232.751815 +233.024709 +233.045921 +233.091708 +233.132134 +233.155178 +233.180919 +233.191242 +233.203663 +233.226107 +233.357809 +233.387346 +233.450449 +233.488211 +233.598368 +233.641025 +233.713219 +233.779953 +233.850049 +233.885014 +233.983282 +234.026639 +234.055743 +234.101930 +234.119579 +234.166699 +234.196169 +234.213319 +234.256143 +234.280785 +234.301231 +234.341091 +234.675057 +234.693938 +234.707857 +234.737461 +234.777154 +234.799898 +234.887178 +234.909822 +235.026172 +235.051380 +235.092505 +235.146052 +235.174557 +235.198666 +235.227903 +235.251080 +235.301596 +235.344820 +235.380018 +235.422409 +235.462002 +235.482815 +235.510587 +235.620877 +235.727703 +235.818745 +235.903594 +235.943287 +235.980150 +236.019644 +236.054010 +236.088875 +236.136660 +236.299364 +236.365032 +236.494402 +236.558072 +236.618012 +236.709720 +236.771991 +236.860003 +236.934328 +236.997898 +237.101728 +237.153243 +237.206922 +237.277518 +237.354375 +237.451677 +237.536392 +237.653875 +237.774587 +237.938423 +238.019575 +238.098297 +238.272189 +238.398430 +238.781313 +238.786641 +238.790470 +238.794999 +238.895465 +238.901260 +238.906687 +238.914313 +239.196331 +239.199661 +239.202591 +239.207986 +239.338222 +239.341219 +239.343750 +239.347446 +239.534226 +239.537290 +239.539954 +239.544116 +239.675884 +239.679048 +239.681479 +239.685075 +239.883843 +239.886373 +239.888738 +239.891835 +240.044482 +240.047046 +240.049477 +240.052707 +240.148145 +240.155005 +240.159733 +240.290935 +240.293999 +240.297129 +240.301591 +240.365094 +240.370156 +240.375617 +240.436356 +240.444315 +240.456869 +240.504921 +240.519839 +240.540186 +240.572087 +240.596896 +240.625867 +240.646413 +240.673219 +240.701358 +240.714211 +240.756003 +240.780845 +240.796929 +240.836855 +240.864628 +240.898360 +240.926632 +240.959066 +240.981943 +241.019373 +241.039919 +241.064228 +241.088404 +241.115143 +241.142216 +241.167891 +241.199626 +241.229962 +241.259033 +241.291334 +241.324434 +241.356002 +241.389069 +241.422669 +241.451407 +241.515576 +241.547477 +241.575982 +241.603721 +241.641383 +241.676049 +241.706352 +241.740251 +241.772585 +241.800491 +241.831393 +241.856668 +241.881210 +241.903954 +241.926997 +241.958965 +241.991500 +242.019705 +242.052838 +242.088369 +242.121636 +242.154403 +242.183574 +242.206851 +242.234590 +242.264560 +242.292398 +242.309082 +242.339984 +242.371253 +242.410613 +242.437586 +242.471419 +242.488669 +242.523767 +242.560996 +242.588902 +242.618072 +242.645179 +242.667256 +242.693230 +242.744379 +242.772285 +242.826331 +242.868788 +242.916041 +242.963393 +243.003287 +243.039151 +243.082840 +243.118039 +243.155468 +243.194495 +243.229960 +243.276547 +243.322767 +243.377612 +243.422334 +243.470219 +243.517472 +243.554735 +243.582141 +243.584671 +243.659963 +243.696027 +243.719403 +243.771018 +243.811844 +243.851804 +243.888900 +243.956233 +244.004185 +244.054768 +244.109213 +244.159962 +244.202586 +244.219503 +244.253802 +244.281674 +244.306882 +244.326928 +244.352503 +244.384371 +244.426862 +244.450971 +244.483139 +244.570285 +244.632556 +244.685436 +244.729093 +244.773615 +244.829858 +244.871483 +244.925862 +244.996125 +245.068486 +245.140747 +245.182639 +245.212309 +245.238616 +245.267420 +245.299755 +245.331656 +245.354000 +245.374180 +245.420467 +245.453701 +245.472515 +245.478376 +245.498456 +245.731722 +245.759095 +245.816837 +245.863457 +245.916371 +245.970483 +246.022465 +246.073414 +246.120200 +246.177010 +246.199288 +246.222631 +246.264156 +246.329990 +246.388432 +246.474612 +246.513506 +246.589564 +246.979040 +246.984235 +246.988498 +247.084801 +247.102250 +247.110475 +247.128624 +247.212174 +247.220365 +247.229789 +247.366086 +247.374744 +247.408111 +247.459826 +247.501018 +247.587631 +247.623129 +247.669816 +247.687564 +247.705946 +247.768950 +247.807911 +247.848970 +247.892160 +247.947937 +247.984600 +248.018833 +248.068450 +248.105613 +248.194257 +248.249202 +248.308077 +248.371280 +248.424727 +248.486964 +248.539845 +248.598020 +248.757826 +248.812672 +248.867117 +248.924626 +248.981136 +249.082135 +249.145771 +249.297886 +249.336281 +249.372445 +249.405811 +249.448768 +249.476840 +249.505478 +249.553497 +249.601049 +249.673976 +249.717299 +249.827755 +249.894089 +249.969480 +250.045704 +250.152997 +250.218531 +250.314568 +250.371944 +250.502780 +250.553229 +250.599883 +250.651631 +250.696719 +250.746336 +250.855960 +251.007574 +251.086995 +251.328786 +251.388193 +251.480834 +251.571044 +251.801180 +251.883864 +251.979668 +252.085129 +252.281233 +252.311602 +252.371376 +252.419428 +252.492621 +252.571442 +252.682897 +252.755591 +252.856957 +252.946567 +253.018495 +253.056623 +253.183563 +253.338308 +253.447898 +253.712400 +253.828417 +253.863749 +253.896316 +253.957954 +253.995750 +254.030715 +254.077601 +254.136076 +254.269742 +254.321357 +254.429682 +254.549662 +254.600744 +254.684660 +254.751260 +254.838806 +254.946465 +255.185059 +255.226851 +255.359818 +255.397913 +255.471273 +256.673869 +257.210565 +257.212763 +257.214694 +257.217292 +258.017824 +258.027714 +258.029978 +258.032110 +258.034907 +258.463578 +258.466208 +258.468406 +258.471769 +258.617557 +258.619988 +258.622119 +258.624750 +258.631476 +258.883491 +258.885788 +258.887720 +258.890417 +258.897543 +259.078162 +259.080460 +259.082558 +259.085488 +259.261845 +259.264276 +259.266474 +259.269637 +259.428245 +259.430809 +259.433207 +259.436604 +259.568572 +259.571069 +259.573533 +259.577063 +259.705002 +259.708232 +259.711295 +259.716890 +259.845195 +259.848092 +259.851955 +259.977496 +259.980892 +259.984255 +259.990549 +260.101005 +260.104502 +260.107965 +260.113992 +260.219986 +260.224115 +260.227912 +260.236370 +260.328011 +260.332274 +260.336403 +260.347092 +260.430842 +260.435870 +260.442097 +260.479060 +260.497408 +260.518387 +260.541265 +260.571767 +260.595976 +260.614425 +260.646692 +260.667605 +260.694644 +260.718654 +260.754817 +260.778527 +260.808830 +260.839366 +260.867138 +260.892913 +260.922183 +260.952952 +260.979792 +261.009030 +261.039433 +261.061744 +261.083455 +261.095710 +261.113758 +261.136502 +261.154384 +261.170202 +261.187751 +261.203701 +261.210461 +261.239133 +261.261477 +261.287218 +261.324314 +261.343861 +261.360478 +261.386419 +261.410661 +261.430774 +261.454384 +261.496142 +261.518653 +261.548023 +261.575929 +261.610328 +261.644227 +261.675229 +261.697973 +261.731873 +261.768836 +261.790614 +261.824846 +261.845026 +261.886751 +261.919552 +261.950953 +261.975396 +262.002335 +262.034803 +262.049621 +262.052585 +262.074996 +262.125812 +262.151053 +262.176594 +262.197507 +262.218586 +262.247057 +262.271499 +262.300703 +262.328642 +262.346657 +262.372765 +262.394776 +262.417220 +262.467303 +262.500503 +262.529241 +262.573730 +262.611859 +262.645725 +262.663174 +262.701169 +262.740397 +262.778592 +262.819417 +262.854183 +262.891845 +262.925644 +262.956913 +262.993543 +263.027309 +263.057046 +263.086717 +263.121415 +263.160976 +263.202034 +263.240063 +263.275361 +263.316154 +263.357812 +263.396307 +263.435168 +263.476826 +263.505531 +263.545557 +263.577925 +263.631105 +263.669566 +263.708461 +263.738131 +263.769700 +263.813223 +263.853849 +263.901101 +263.946023 +263.999303 +264.044358 +264.104198 +264.161274 +264.212756 +264.268334 +264.314088 +264.410858 +264.468533 +264.515620 +264.564770 +264.616319 +264.679689 +264.726076 +264.780255 +264.853615 +264.885649 +264.914853 +264.942026 +264.970997 +265.030338 +265.064104 +265.134833 +265.147121 +265.209958 +265.277590 +265.280754 +265.285782 +265.313055 +265.354080 +265.390510 +265.459042 +265.522045 +265.672362 +265.725242 +265.792675 +265.883184 +265.936431 +265.998136 +266.092774 +266.154945 +266.202831 +266.232534 +266.256077 +266.280986 +266.313353 +266.366966 +266.417283 +266.487079 +266.558841 +266.617149 +266.700266 +266.744389 +266.859573 +266.969996 +267.030569 +267.134898 +267.198268 +267.270728 +267.351947 +267.428870 +267.478787 +267.562470 +267.649849 +267.715283 +267.749449 +267.785580 +267.892106 +267.966099 +268.135762 +268.270627 +268.421443 +268.454443 +268.543887 +268.612752 +268.653711 +268.705292 +268.749082 +268.796035 +268.860437 +268.944386 +269.048782 +269.127337 +269.189408 +269.357140 +269.438758 +269.547616 +269.624772 +269.676054 +269.717046 +269.769627 +269.817113 +269.852078 +269.863033 +270.056107 +270.099863 +270.312484 +270.406323 +274.051408 +274.056169 +274.058267 +274.060165 +274.062696 +274.745080 +274.747311 +274.749242 +274.751473 +274.755303 +286.238542 +286.244336 +286.246367 +286.248232 +286.250563 +286.255225 +289.192818 +289.195082 +289.197047 +289.199578 +289.457220 +289.474669 +289.476534 +289.478698 +289.481962 +289.805771 +289.808035 +289.809967 +289.812531 +289.817925 +289.953356 +289.955687 +289.957852 +289.960183 +289.964678 +290.900209 +290.902273 +290.905303 +291.039103 +291.042000 +291.044531 +291.047894 +291.325849 +291.328646 +291.331310 +291.334441 +291.442566 +291.445063 +291.447427 +291.450491 +291.562978 +291.566841 +291.570438 +291.572669 +291.574900 +291.578863 +291.688986 +292.037304 +292.040101 +292.042165 +292.045795 +292.214893 +292.217490 +292.219555 +292.222352 +292.355652 +292.358049 +292.360180 +292.362911 +292.367706 +292.511929 +292.515192 +292.517456 +292.520120 +292.524982 +292.730476 +292.732941 +292.735039 +292.737403 +292.741832 +292.944829 +292.947226 +292.949224 +292.951788 +292.957915 +293.106800 +293.109264 +293.111495 +293.114126 +293.120952 +293.285521 +293.288052 +293.290349 +293.293513 +293.495211 +293.497908 +293.500306 +293.503036 +293.641664 +293.644362 +293.646759 +293.649290 +293.660878 +293.838168 +293.841364 +293.844128 +293.848457 +293.977661 +293.981091 +293.983555 +293.987185 +294.092846 +294.096742 +294.099872 +294.104068 +294.216589 +294.221218 +294.355883 +294.362809 +294.370568 +294.456515 +294.468270 +294.485953 +294.546159 +294.575496 +294.641563 +294.678360 +294.733305 +294.755250 +294.773898 +294.835436 +294.859945 +294.910394 +294.946025 +294.986751 +295.077361 +295.131640 +295.188816 +295.247124 +295.289115 +295.356748 +295.418119 +295.463208 +295.521949 +295.564207 +295.603933 +295.657347 +295.694210 +295.779225 +295.851519 +295.920650 +295.985984 +296.083287 +296.271432 +296.318352 +296.459244 +296.508461 +296.544958 +296.582854 +296.623946 +296.759044 +297.451850 +297.454548 +297.456745 +297.459742 +297.620581 +297.622979 +297.624844 +297.627075 +297.630538 +297.747987 +297.750318 +297.752782 +297.757777 +297.852349 +297.854814 +297.857011 +297.859909 +297.867268 +298.059109 +298.062040 +298.064670 +298.068766 +298.254047 +298.256978 +298.259442 +298.263172 +298.432569 +298.435432 +298.437863 +298.441593 +298.621779 +298.624943 +298.627507 +298.630437 +298.742125 +298.748053 +298.751683 +298.908958 +298.912155 +298.915019 +298.919281 +299.043990 +299.047253 +299.050051 +299.053714 +299.146454 +299.150417 +299.154046 +299.164203 +299.295072 +299.299468 +299.304163 +299.363337 +299.384116 +299.420147 +299.440926 +299.477656 +299.511755 +299.549884 +299.577756 +299.606494 +299.637296 +299.667033 +299.698468 +299.732967 +299.763703 +299.799467 +299.818848 +299.857609 +299.892774 +299.929370 +299.965135 +300.001398 +300.039260 +300.072161 +300.113286 +300.148118 +300.177389 +300.214751 +300.250116 +300.283616 +300.314418 +300.344255 +300.382850 +300.413486 +300.447885 +300.473825 +300.498601 +300.532567 +300.555777 +300.583282 +300.610555 +300.637894 +300.656676 +300.672793 +300.710222 +300.739459 +300.760672 +300.792240 +300.828470 +300.902763 +300.949682 +300.999632 +301.040725 +301.100098 +301.136462 +301.174158 +301.224840 +301.269429 +301.329968 +301.378986 +301.421144 +301.481783 +301.528003 +301.566132 +301.618446 +301.664367 +301.704360 +301.745619 +301.789342 +301.825439 +301.902229 +301.938859 +301.991573 +302.052545 +302.112818 +302.150980 +302.204460 +302.242388 +302.297433 +302.342488 +302.429501 +302.487143 +302.575555 +302.625705 +302.696900 +302.728935 +302.767030 +302.800063 +302.836627 +302.861702 +302.930300 +302.950813 +302.993536 +302.998132 +303.025471 +303.083813 +303.086443 +303.159137 +303.213050 +303.279051 +303.311785 +303.384578 +303.642087 +303.678451 +303.718977 +303.938624 +304.071324 +304.135294 +304.188407 +304.245916 +304.293169 +304.326369 +304.373688 +304.395999 +304.466162 +304.506955 +304.577651 +304.634227 +305.463497 +305.466694 +305.468992 +305.472122 +305.683510 +305.686574 +305.688539 +305.691369 +305.697730 +305.845715 +305.848279 +305.850577 +305.853574 +306.113713 +306.116444 +306.118808 +306.297829 +306.301991 +306.304356 +306.306653 +306.309650 +306.431761 +306.434392 +306.436723 +306.438988 +306.442784 +306.631295 +306.633659 +306.635757 +306.638521 +306.646080 +306.825800 +306.828398 +306.830362 +306.833260 +307.037056 +307.039653 +307.041684 +307.044082 +307.049143 +307.241584 +307.243782 +307.245813 +307.248511 +307.254804 +307.415710 +307.418008 +307.420372 +307.423169 +307.430029 +307.650208 +307.652806 +307.655104 +307.658067 +307.854870 +307.856902 +307.860298 +308.053838 +308.056735 +308.059066 +308.062596 +308.225166 +308.227930 +308.230195 +308.233691 +308.404753 +308.407550 +308.409582 +308.413111 +308.555835 +308.558599 +308.560997 +308.564393 +308.685106 +308.688536 +308.690933 +308.694030 +308.703887 +308.831859 +308.834223 +308.836621 +308.839884 +308.980177 +308.983141 +308.985638 +308.988935 +309.131759 +309.134822 +309.137353 +309.141449 +309.292831 +309.296261 +309.299158 +309.302488 +309.316774 +309.452305 +309.455535 +309.460663 +309.586104 +309.590266 +309.593363 +309.597426 +309.723034 +309.726996 +309.729893 +309.734489 +309.898558 +309.901422 +309.905018 +310.022967 +310.026363 +310.029394 +310.033856 +310.158098 +310.167422 +310.316040 +310.319237 +310.322267 +310.326996 +310.420669 +310.424365 +310.427628 +310.431991 +310.545577 +310.551571 +310.554435 +310.557665 +310.568287 +310.675147 +310.678144 +310.682740 +310.685270 +310.688267 +310.692397 +310.805483 +310.809246 +310.811577 +310.814141 +310.817804 +310.914841 +311.045976 +311.049040 +311.051371 +311.055100 +311.228060 +311.231290 +311.234354 +311.239316 +311.425563 +311.428926 +311.431923 +311.436485 +311.601820 +311.604916 +311.607814 +311.611943 +311.791163 +311.794393 +311.797457 +311.803218 +311.947141 +311.950337 +311.954134 +311.965922 +312.118402 +312.121966 +312.125196 +312.131123 +312.273514 +312.276777 +312.282771 +312.401452 +312.404916 +312.408812 +312.419201 +312.528226 +312.533986 +312.537483 +312.539980 +312.547107 +312.663823 +312.667553 +312.670550 +312.676144 +312.770250 +312.773846 +312.779074 +312.848572 +312.861492 +312.920400 +312.938681 +312.982105 +313.012241 +313.049504 +313.084236 +313.121498 +313.177109 +313.232254 +313.259427 +313.288631 +313.333253 +313.357695 +313.391228 +313.416137 +313.424861 +313.455564 +313.483702 +313.498088 +313.542011 +313.646606 +313.671681 +313.714238 +313.749636 +313.775044 +313.825494 +313.851601 +313.888930 +313.898021 +313.940312 +313.981371 +314.016802 +314.107611 +314.156929 +314.193425 +314.253399 +314.330455 +314.390894 +314.431454 +314.474577 +314.554730 +314.598453 +314.681503 +314.746239 +314.774044 +314.869882 +315.008376 +315.121929 +315.200983 +315.260857 +315.352165 +315.417034 +315.490560 +315.559125 +315.622728 +315.676707 +315.729588 +315.784100 +315.897386 +315.932584 +315.980770 +316.023194 +316.064652 +316.107809 +316.141076 +316.192691 +316.270480 +316.279770 +316.289560 +316.402547 +316.473343 +316.532784 +316.579637 +316.582734 +316.763320 +316.818964 +316.888394 +316.967482 +317.056160 +317.131051 +317.202280 +317.301248 +317.405910 +317.424558 +317.509173 +317.633249 +317.663019 +317.764750 +318.096652 +318.107574 +318.115333 +318.169845 +318.281167 +318.294653 +318.360388 +318.377237 +318.492855 +318.498283 +318.503578 +319.129851 +319.132981 +319.135145 +319.137476 +319.141439 +319.332648 +319.335645 +319.337909 +319.341206 +319.454026 +319.468645 +319.471842 +319.474606 +319.477802 +319.683763 +319.687293 +319.689957 +319.694885 +320.346666 +320.349263 +320.351228 +320.353825 +320.359753 +321.491587 +321.493918 +321.495916 +321.498047 +321.501510 +321.652359 +321.654890 +321.656954 +321.659319 +321.663481 +321.932911 +321.937174 +321.939472 +321.941769 +321.944966 +322.068476 +322.070907 +322.073005 +322.075602 +322.080231 +323.706136 +323.708800 +323.710932 +323.712996 +323.715660 +325.588086 +325.590617 +325.592482 +325.594413 +325.597676 +326.851421 +326.853719 +326.857715 +326.859746 +326.862710 +327.827844 +327.832806 +327.834770 +327.836735 +327.839066 +328.388916 +328.389382 +328.390880 +328.392778 +328.394710 +328.397540 +328.566638 +330.156779 +330.159377 +330.161275 +330.163406 +330.166969 +331.116552 +331.221813 +331.223778 +331.225743 +331.228507 +331.367934 +331.371996 +332.104230 +332.106794 +332.108626 +332.110823 +332.115319 +333.183949 +333.201232 +333.203663 +333.205694 +333.208258 +333.442690 +333.445854 +333.447985 +333.450016 +333.453846 +333.885047 +333.887478 +333.889543 +333.891541 +333.894271 +334.268430 +334.270295 +334.272460 +334.276522 +336.291305 +336.535661 +336.632397 +336.981082 +336.982980 +336.984911 +336.989706 +337.328700 +337.335727 +337.337891 +337.339922 +337.342387 +337.799662 +338.015679 +338.019309 +338.021407 +338.023372 +338.029232 +339.507819 +339.514712 +339.517376 +341.211114 +345.851802 +346.434286 +346.453666 +347.048238 +347.052300 +347.054398 +347.056596 +347.287498 +353.678334 +354.824387 +354.912732 +354.916295 +354.922489 +354.926119 +355.035975 +357.352556 +357.552323 +362.191213 +362.887349 +362.889447 +364.017551 +364.023146 +364.025443 +364.240062 +364.243425 +364.245623 +364.247554 +364.249453 +364.252849 +365.977789 +365.979754 +365.981652 +365.984216 +366.237562 +366.239361 +366.241225 +366.243390 +366.467033 +366.491209 +366.493473 +366.495238 +366.497369 +366.654878 +366.657242 +366.659107 +366.661105 +366.663503 +366.824841 +366.827139 +366.829037 +366.831401 +366.835164 +368.692472 +368.695269 +368.697167 +368.699298 +368.701862 +372.825701 +372.827599 +372.829830 +373.626999 +373.631528 +373.633526 +373.635490 +373.637855 +373.643149 +374.105420 +374.107451 +374.110348 +374.325866 +374.328497 +374.330495 +374.334025 +374.499159 +374.501757 +374.503988 +374.507484 +374.667391 +374.670088 +374.672486 +374.675949 +374.789335 +374.792133 +374.794763 +374.798526 +374.927863 +374.931327 +374.934523 +374.940451 +375.041683 +375.044680 +375.048243 +375.053305 +375.147011 +375.152505 +375.157667 +375.193464 +375.238919 +375.256435 +375.291166 +375.314909 +375.341549 +375.373451 +375.399858 +375.424466 +375.460197 +375.486604 +375.516241 +375.532059 +375.561796 +375.584373 +375.607217 +375.631026 +375.650973 +375.681642 +375.713044 +375.737620 +375.761729 +375.788635 +375.819571 +375.848642 +375.874449 +375.897326 +375.926164 +375.957699 +375.987603 +376.013710 +376.043047 +376.067456 +376.090466 +376.114376 +376.145212 +376.166557 +376.195495 +376.215142 +376.236986 +376.261129 +376.289467 +376.313510 +376.348641 +376.378078 +376.411279 +376.441981 +376.471252 +376.499690 +376.535787 +376.575015 +376.604219 +376.637619 +376.671318 +376.707249 +376.742913 +376.773583 +376.799923 +376.833123 +376.864525 +376.896193 +376.927129 +376.955401 +376.984005 +377.017239 +377.053835 +377.086070 +377.117805 +377.149406 +377.182240 +377.210245 +377.244611 +377.269852 +377.299623 +377.319902 +377.346942 +377.367954 +377.399090 +377.439183 +377.473948 +377.515673 +377.571550 +377.605583 +377.640481 +377.678677 +377.713175 +377.761494 +377.798124 +377.838317 +377.876345 +377.909779 +377.942146 +377.979209 +378.008113 +378.040681 +378.080541 +378.120434 +378.154034 +378.221999 +378.251869 +378.279175 +378.318403 +378.357097 +378.417770 +378.445109 +378.466921 +378.507014 +378.547673 +378.585868 +378.620301 +378.652668 +378.726461 +378.761026 +378.794093 +378.829291 +378.866155 +378.886101 +378.910510 +378.947740 +378.983137 +379.020667 +379.063990 +379.105348 +379.151902 +379.202684 +379.233320 +379.257396 +379.288432 +379.330923 +379.373147 +379.420167 +379.454432 +379.492428 +379.525694 +379.560526 +379.614339 +379.662258 +379.698954 +379.726460 +379.763290 +379.800553 +379.859127 +379.899687 +379.949204 +379.990662 +380.034985 +380.079640 +380.107079 +380.132920 +380.170349 +380.205913 +380.246773 +380.284968 +380.312973 +380.355064 +380.389796 +380.424461 +380.454864 +380.480072 +380.511175 +380.531887 +380.543442 +380.552167 +380.582203 +380.597388 +380.617069 +380.622663 +380.631388 +380.656795 +380.678607 +380.704847 +380.729623 +380.783802 +380.789163 +380.830621 +380.866885 +380.906079 +380.970148 +381.020165 +381.058893 +381.103648 +381.145406 +381.191460 +381.232053 +381.272879 +381.315236 +381.389462 +381.424827 +381.458393 +381.486398 +381.515103 +381.545173 +381.580371 +381.620564 +381.662222 +381.771846 +381.848469 +381.884833 +381.919964 +381.958526 +381.998985 +382.033784 +382.068183 +382.097820 +382.129488 +382.166351 +382.173178 +382.261189 +382.342508 +382.388196 +382.423460 +382.462088 +382.503913 +382.543207 +382.583234 +382.617333 +382.659091 +382.691992 +382.785098 +382.829887 +382.864819 +382.899417 +382.933983 +382.973277 +383.003480 +383.038878 +383.075841 +383.118265 +383.159224 +383.213470 +383.261755 +383.311005 +383.354961 +383.394189 +383.485564 +383.533782 +383.583299 +383.621062 +383.663619 +383.707841 +383.798051 +383.848068 +383.910672 +383.957891 +383.994022 +384.040408 +384.077804 +384.113569 +384.136745 +384.174374 +384.207574 +384.248533 +384.287794 +384.326455 +384.366782 +384.411271 +384.454394 +384.492056 +384.529785 +384.581167 +384.621993 +384.665716 +384.697351 +384.739076 +384.767747 +384.803778 +384.842206 +384.880468 +384.928753 +384.974274 +385.012102 +385.055692 +385.089159 +385.128020 +385.193155 +385.237976 +385.322159 +385.361653 +385.394853 +385.424923 +385.447700 +385.481965 +385.521792 +385.557690 +385.591989 +385.632581 +385.668812 +385.706940 +385.749797 +385.788892 +385.825888 +385.862285 +385.891988 +385.924622 +385.957356 +385.986028 +386.025122 +386.077170 +386.107040 +386.153460 +386.185594 +386.222191 +386.295318 +386.333713 +386.375271 +386.469344 +386.510203 +386.542004 +386.577968 +386.612867 +386.646999 +386.678368 +386.724089 +386.762650 +386.797149 +386.841471 +386.929183 +386.984428 +387.026786 +387.070342 +387.113599 +387.161784 +387.213765 +387.265014 +387.301677 +387.343669 +387.386426 +387.422190 +387.466546 +387.506572 +387.541570 +387.588823 +387.647331 +387.715729 +387.765813 +387.825253 +387.891087 +387.951127 +387.991387 +388.039672 +388.095849 +388.137208 +388.192352 +388.237174 +388.303075 +388.339405 +388.394383 +388.433777 +388.473538 +388.526917 +388.571906 +388.634543 +388.735509 +388.803374 +388.828615 +388.891453 +388.943367 +389.011266 +389.079131 +389.144666 +389.205305 +389.272138 +389.336074 +389.401542 +389.441236 +389.521056 +389.583526 +389.643966 +389.705638 +389.753323 +389.796513 +389.853490 +390.000642 +390.046663 +390.109633 +390.176733 +390.237805 +390.302573 +390.381394 +390.586522 +390.685756 +390.776266 +390.858783 +390.940668 +391.015593 +391.064910 +391.110098 +391.187254 +391.255619 +391.303605 +391.372602 +391.455253 +391.536805 +391.623052 +391.695579 +391.748093 +391.830577 +391.900907 +391.995545 +392.073501 +392.177097 +392.189385 +392.301173 +392.417157 +392.599674 +392.795811 +392.880726 +392.912095 +392.994445 +393.048891 +393.153286 +393.273466 +393.393346 +393.669170 +393.718687 +393.783189 +393.909030 +394.467538 +394.549089 +394.663042 +394.823581 +394.920551 +395.045725 +395.210594 +395.275795 +395.341596 +395.459378 +395.593344 +395.928475 +395.992245 +396.067802 +396.170766 +396.304865 +396.428408 +396.510692 +396.606696 +396.708228 +396.806896 +396.906396 +396.997905 +397.113389 +397.268334 +397.368967 +397.425710 +397.521447 +397.591577 +397.681087 +397.755380 +397.833968 +397.922845 +398.030504 +398.104430 +398.216385 +398.307760 +398.402698 +398.468632 +398.480188 +398.562905 +398.697137 +398.776624 +398.882418 +399.013187 +399.106894 +399.173494 +399.279820 +399.347653 +399.414719 +399.530569 +399.661538 +399.806127 +399.893440 +400.172693 +400.405893 +400.448850 +400.527438 +400.742556 +400.911687 +400.953012 +400.994970 +401.055376 +401.090408 +401.281783 +401.500930 +401.525273 +401.607823 +401.695103 +401.712885 +401.720577 +401.966331 +402.069761 +402.124806 +402.187377 +402.232065 +402.307923 +402.405192 +402.502694 +402.851412 +402.906157 +403.052211 +403.233196 +404.042020 +404.052643 +404.642985 +404.650211 +405.022272 +405.032229 +405.366894 +405.451509 +405.493967 +405.554073 +405.717809 +406.015178 +406.263829 +406.385907 +406.654172 +407.089170 +407.323502 +407.468657 +408.115676 +409.142881 +410.154235 +410.158564 +410.162327 +411.739915 +411.742845 +411.745143 +411.749738 +412.028825 +412.031223 +412.033221 +412.036384 +412.124696 +412.127327 +412.129658 +412.132422 +412.138116 +412.233354 +412.236218 +412.239348 +412.244010 +412.483903 +412.486867 +412.489298 +412.493094 +412.609711 +412.615638 +412.619667 +412.813040 +412.817003 +412.820866 +412.982770 +412.986900 +412.991395 +413.100386 +413.107412 +413.182537 +413.212108 +413.282171 +413.308711 +413.343110 +413.368418 +413.412107 +413.445241 +413.476110 +413.510942 +413.552633 +413.585700 +413.643309 +413.709077 +413.769217 +413.822796 +413.886499 +413.942809 +413.990195 +414.046472 +414.108510 +414.165919 +414.203582 +414.245673 +414.288197 +414.359159 +414.418700 +414.481337 +414.561890 +414.615969 +414.680371 +414.736282 +414.800617 +414.873345 +414.937813 +415.014337 +415.075009 +415.126458 +415.176641 +415.204613 +415.278739 +415.415335 +415.647670 +415.754896 +415.986164 +417.065950 +417.311338 +417.696985 +417.709472 +417.718397 +418.087527 +418.094986 +418.314100 +418.714333 +418.722092 +418.841239 +419.039175 +419.099081 +419.782297 +419.807506 +419.924089 +421.625253 +421.629016 +421.632812 +421.886558 +421.893218 +422.356254 +422.362115 +422.895681 +427.302170 +427.304634 +427.306765 +427.309663 +429.430306 +429.432937 +429.434968 +429.438398 +431.197338 +431.199702 +431.201767 +431.204597 +432.248952 +432.251682 +432.254180 +432.261606 +432.494939 +432.497569 +432.500333 +432.506394 +432.843956 +432.849917 +432.852647 +432.855544 +433.244389 +433.251515 +433.254745 +433.257309 +433.260606 +433.440326 +433.443789 +433.446619 +433.451581 +433.611521 +433.615151 +433.617981 +433.630835 +433.768797 +433.772160 +433.774758 +433.778620 +433.976289 +433.982350 +433.989842 +434.168830 +434.174091 +434.181351 +434.324407 +434.338993 +434.423142 +434.463968 +434.529535 +434.785846 +434.866132 +434.971327 +435.186911 +435.231200 +435.348382 +435.468196 +435.554776 +435.776421 +435.791872 +436.165831 +436.261269 +436.313916 +436.357372 +436.631398 +436.640722 +438.366595 +438.370224 +438.374220 +438.635326 +438.638389 +438.641153 +438.645349 +438.780580 +438.784776 +438.787373 +439.065895 +439.070490 +439.074419 +439.275984 +439.300893 +439.425734 +439.435025 +439.458135 +439.541685 +439.562464 +439.591335 +439.612914 +439.649577 +439.658734 +439.672121 +439.723403 +439.727699 +439.730130 +439.765528 +439.813646 +439.956869 +440.073652 +440.206220 +440.239853 +440.332826 +440.510282 +440.585407 +440.610582 +440.642050 +440.652340 +440.660332 +440.673052 +440.692666 +440.744514 +440.791301 +440.805054 +440.986206 +441.004954 +441.029729 +441.164294 +441.194397 +441.247278 +441.274317 +441.378646 +441.398593 +441.411513 +441.435456 +441.488769 +441.653937 +441.883241 +442.025266 +442.174549 +442.230460 +442.260097 +442.304419 +442.362162 +442.408582 +442.421169 +442.446943 +442.510014 +442.525198 +442.534056 +442.569154 +442.608482 +442.640183 +442.713177 +442.802887 +443.185904 +443.195994 +443.208381 +443.339750 +443.345444 +443.350506 +443.359597 +443.405817 +443.419004 +443.474348 +443.522134 +443.554335 +443.563992 +443.596160 +443.619037 +443.665790 +443.729626 +443.761228 +443.814608 +443.911144 +443.987335 +444.041114 +444.062959 +444.087535 +444.199789 +444.224364 +444.249905 +444.374314 +444.492629 +444.603718 +444.662859 +444.716938 +444.760927 +444.793328 +444.812842 +444.881240 +444.924330 +445.119801 +445.314606 +445.659095 +445.676910 +445.731322 +445.754133 +445.832188 +445.858162 +445.867120 +445.886401 +446.054432 +446.292661 +446.350369 +446.380373 +446.424362 +446.963422 +446.971414 +446.976043 +447.246439 +447.252633 +447.259126 +447.418933 +447.425760 +447.431854 +447.586465 +447.593026 +447.600152 +447.762523 +447.772912 +447.886765 +447.894590 +447.928323 +448.026791 +448.072546 +448.139112 +448.188563 +448.242342 +448.292892 +448.340311 +448.393524 +448.458293 +448.526458 +448.597320 +448.667050 +448.717866 +448.790926 +448.822928 +448.849834 +448.878172 +448.924759 +448.985032 +449.030520 +449.062055 +449.113570 +449.202847 +449.353363 +449.426790 +449.512804 +449.588794 +449.649800 +449.734715 +449.798118 +449.944638 +450.062221 +450.085597 +450.115001 +450.161155 +450.197052 +450.249267 +450.291291 +450.338910 +450.394521 +450.440442 +450.498784 +450.642939 +450.899949 +450.970678 +451.003378 +451.030784 +451.057724 +451.060888 +451.110005 +451.120295 +451.140608 +451.188393 +451.317131 +451.411437 +451.466815 +451.528819 +451.543138 +451.551963 +451.564850 +451.586029 +451.614600 +451.642306 +451.653394 +451.680734 +451.691823 +451.710837 +451.716531 +451.762852 +451.779801 +451.803111 +451.828519 +452.595385 +452.598981 +452.601712 +452.607373 +452.828751 +452.832015 +452.834712 +452.838675 +452.930383 +452.934712 +452.938608 +453.028718 +453.034012 +453.041472 +453.103177 +453.208837 +453.219227 +453.286393 +453.310502 +453.372041 +453.413433 +453.454991 +453.502077 +453.553959 +453.607938 +453.652294 +453.698014 +453.735610 +453.787025 +453.837475 +453.886959 +453.927052 +453.981098 +454.030149 +454.090555 +454.145999 +454.198414 +454.251727 +454.306672 +454.413065 +454.475303 +454.538074 +454.595050 +454.652759 +454.709868 +454.760551 +454.813897 +454.857920 +454.938206 +454.994850 +455.057287 +455.142702 +455.209135 +455.281429 +455.320690 +455.365645 +455.413564 +455.518858 +455.574536 +455.636008 +455.710567 +455.811133 +455.898212 +455.947463 +455.988155 +456.010999 +456.044899 +456.074169 +456.106504 +456.159584 +456.193383 +456.232877 +456.275834 +456.330513 +456.333476 +456.350026 +456.422720 +456.460516 +456.529647 +456.675734 +456.873669 +456.936739 +456.974268 +457.057418 +457.142400 +457.201075 +457.220222 +457.268873 +457.311098 +457.391284 +457.453156 +457.592683 +457.680761 +457.754387 +457.812562 +457.856951 +457.891250 +457.943665 +457.978463 +458.024084 +458.067041 +458.186588 +458.304204 +458.377597 +458.439169 +458.507500 +458.555086 +458.594080 +458.662878 +458.847094 +459.208332 +459.277596 +459.306267 +459.343696 +459.392814 +459.483357 +459.544895 +459.671901 +459.766540 +459.831442 +459.903270 +459.978794 +460.017822 +460.074798 +460.097442 +460.128611 +460.164375 +460.242097 +460.249456 +460.296909 +460.355251 +460.375297 +460.421884 +460.442863 +460.619386 +460.690448 +460.804468 +460.885320 +461.017421 +461.098773 +461.159179 +461.243695 +461.267271 +461.290614 +461.304833 +461.359512 +461.402569 +461.435702 +461.955615 +461.975662 +462.373430 +462.380190 +462.388948 +462.485119 +462.502435 +462.519451 +462.560310 +462.582121 +462.613856 +462.639997 +462.711592 +462.761475 +462.832304 +462.900503 +462.947989 +463.069400 +463.149420 +463.221115 +463.288015 +463.364671 +463.505497 +463.561907 +463.597372 +463.620882 +463.687482 +463.723579 +463.754648 +463.798737 +463.847854 +463.914088 +463.924078 +463.966769 +464.045923 +464.148387 +464.170598 +464.277924 +464.387548 +464.498004 +464.590378 +464.765636 +464.992975 +465.187513 +465.262738 +465.416984 +465.473227 +465.552182 +465.623311 +465.742192 +465.804596 +465.861306 +465.906061 +465.970896 +465.993607 +466.034499 +466.100466 +466.229304 +466.269231 +466.468964 +466.543856 +466.645754 +466.729170 +466.796603 +466.992773 +467.035897 +467.082283 +467.136130 +467.200199 +467.259739 +467.390875 +467.580884 +467.686079 +467.842522 +467.922043 +467.999199 +468.094670 +468.343787 +468.436628 +468.466098 +468.520411 +468.573757 +468.621809 +468.678086 +468.897700 +468.919911 +468.935428 +469.029301 +469.071559 +469.102195 +469.170260 +469.369094 +469.387842 +469.470393 +469.503427 +469.701695 +469.739290 +469.820942 +469.850479 +469.931531 +470.021375 +470.177419 +470.299063 +470.471424 +470.572490 +470.684278 +470.710585 +470.781880 +470.839589 +470.908054 +471.043851 +471.904523 +471.907520 +471.909818 +471.912182 +472.066161 +472.068859 +472.071156 +472.074420 +472.347946 +472.350810 +472.353041 +472.356271 +472.553707 +472.556137 +472.558335 +472.561399 +472.759667 +472.762498 +472.764496 +472.767659 +472.932894 +472.935025 +472.938055 +473.059334 +473.062198 +473.064562 +473.068225 +473.196596 +473.200193 +473.203256 +473.207652 +473.338088 +473.341485 +473.344748 +473.350209 +473.456170 +473.459966 +473.463329 +473.478348 +473.597961 +473.601658 +473.605654 +473.649809 +473.681444 +473.702423 +473.733126 +473.760365 +473.763262 +473.783342 +473.813779 +473.842550 +473.867691 +473.897561 +473.921138 +473.946979 +473.975483 +474.001624 +474.029196 +474.045313 +474.060964 +474.090668 +474.124567 +474.148210 +474.172053 +474.200958 +474.225833 +474.253938 +474.278080 +474.305353 +474.329929 +474.360531 +474.380844 +474.413278 +474.440318 +474.467724 +474.495996 +474.527830 +474.558400 +474.587770 +474.619239 +474.652606 +474.682176 +474.711380 +474.742016 +474.778746 +474.807950 +474.839452 +474.867224 +474.894830 +474.932159 +474.969821 +474.998359 +475.031659 +475.064826 +475.100491 +475.131093 +475.165792 +475.200124 +475.234090 +475.267623 +475.301090 +475.336488 +475.373950 +475.405818 +475.440817 +475.477247 +475.510580 +475.540816 +475.571219 +475.601089 +475.630860 +475.664493 +475.696161 +475.730127 +475.760963 +475.789501 +475.816341 +475.847043 +475.874749 +475.913377 +475.948975 +475.986504 +476.021335 +476.058099 +476.096993 +476.134988 +476.172484 +476.210246 +476.250872 +476.289567 +476.340949 +476.379477 +476.422834 +476.463193 +476.511811 +476.552903 +476.595860 +476.636486 +476.680043 +476.761461 +476.804352 +476.849040 +476.898657 +476.944178 +476.989500 +477.035254 +477.080742 +477.129659 +477.165690 +477.211744 +477.248640 +477.281874 +477.321201 +477.343112 +477.398091 +477.490298 +477.542047 +477.625696 +477.698557 +477.868453 +477.920834 +477.973981 +478.029425 +478.108246 +478.145676 +478.195692 +478.243578 +478.290298 +478.365356 +478.430957 +478.451170 +478.513141 +478.546275 +478.648073 +478.684669 +478.782405 +478.820034 +478.933287 +478.968019 +479.034752 +479.087366 +479.124796 +479.127559 +479.215938 +479.286967 +479.384669 +479.599154 +479.664422 +479.724462 +479.787599 +479.828358 +479.913306 +479.976909 +480.048837 +480.147838 +480.208178 +480.251168 +480.300485 +480.353665 +480.392227 +480.434018 +480.471381 +480.502816 +480.543209 +480.589396 +480.630522 +480.722530 +480.776442 +480.851767 +480.993758 +481.120098 +481.207344 +481.340644 +481.536115 +481.599185 +481.709042 +482.012871 +482.047870 +482.362954 +482.371379 +482.418199 +482.639511 +482.720296 +482.749434 +482.950566 +483.017699 +483.091924 +483.165085 +483.259057 +483.325291 +483.432284 +483.590958 +483.640242 +483.694155 +483.713236 +483.774574 +483.825091 +483.883632 +483.942873 +484.008241 +484.065983 +484.248966 +484.300348 +484.382766 +484.585163 +484.672542 +484.746601 +484.803278 +484.874174 +484.972742 +485.065016 +485.143671 +485.214766 +485.281100 +485.337343 +485.390956 +485.426055 +485.476271 +485.561419 +485.662152 +485.704409 +485.743137 +485.814999 +485.943537 +486.020227 +486.064782 +486.179734 +486.247166 +486.296716 +486.342970 +486.479400 +486.568444 +486.746733 +486.775870 +486.831481 +486.857488 +486.880332 +486.938907 +486.978867 +487.053859 +487.121191 +487.127951 +487.146532 +487.182330 +487.245866 +487.268277 +487.297015 +487.343069 +487.404075 +487.569576 +487.579965 +487.613465 +487.657288 +487.681497 +487.718293 +487.763182 +487.825753 +487.868976 +487.909036 +488.035676 +488.086958 +488.133644 +488.222689 +488.285792 +488.360151 +488.441636 +488.514230 +488.600510 +488.663947 +488.720191 +488.815129 +488.875668 +488.930214 +488.965478 +488.994649 +489.008868 +489.042768 +489.140670 +489.154489 +489.280396 +489.316760 +489.466543 +489.544798 +489.691552 +489.790120 +489.948628 +490.085557 +490.262880 +490.337072 +490.439403 +490.462513 +490.565610 +490.588953 +490.659449 +490.721487 +490.789786 +490.819855 +490.880528 +490.926382 +490.969106 +491.019822 +491.034441 +491.158883 +491.307434 +491.323152 +491.379295 +491.444830 +491.529112 +491.745995 +491.831876 +491.933840 +492.057716 +492.144962 +492.217623 +492.305735 +492.374200 +492.457882 +492.518255 +492.590516 +492.657949 +492.750922 +492.818255 +492.871069 +492.907899 +493.004402 +493.169836 +493.255051 +493.397475 +493.514958 +493.588184 +493.752753 +493.853719 +493.923349 +494.046426 +494.090248 +494.216422 +494.323948 +494.368736 +494.477894 +494.774064 +494.816055 +494.890114 +495.017554 +495.101902 +495.191013 +495.371599 +495.415755 +495.597140 +495.655582 +495.706697 +495.748921 +495.792877 +495.880756 +495.938199 +495.969234 +496.090846 +496.147689 +496.211725 +496.236966 +496.322680 +496.355548 +496.401868 +496.455614 +496.572997 +496.612191 +496.686749 +496.746789 +496.832004 +496.899237 +496.954548 +497.010592 +497.086316 +497.147655 +497.202000 +497.261407 +497.308627 +497.363472 +497.401301 +497.510059 +497.546755 +497.560408 +497.639462 +497.659842 +497.725576 +497.819882 +498.444423 +498.448153 +498.451050 +498.455878 +498.584816 +498.587580 +498.590044 +498.593174 +498.755146 +498.758209 +498.760707 +498.764370 +498.944523 +498.947386 +498.949917 +498.953780 +499.111456 +499.114286 +499.116684 +499.120147 +499.272861 +499.275691 +499.278122 +499.281685 +499.425008 +499.427872 +499.429970 +499.433633 +499.561438 +499.564735 +499.567566 +499.571895 +499.684382 +499.688045 +499.691542 +499.699800 +499.811222 +499.815284 +499.818714 +499.826806 +499.887878 +499.894505 +499.903030 +499.962504 +499.987312 +500.032900 +500.058807 +500.090775 +500.122444 +500.151548 +500.179353 +500.208557 +500.234598 +500.266932 +500.293239 +500.322976 +500.348717 +500.377721 +500.405460 +500.434065 +500.460039 +500.486979 +500.520279 +500.545620 +500.572660 +500.595936 +500.626306 +500.657108 +500.707525 +500.740691 +500.768197 +500.798533 +500.826106 +500.857674 +500.892639 +500.923975 +500.959173 +500.991807 +501.024541 +501.057974 +501.088410 +501.110588 +501.136528 +501.165366 +501.188943 +501.215116 +501.237228 +501.268663 +501.301064 +501.337827 +501.369029 +501.409722 +501.439692 +501.466631 +501.493738 +501.517014 +501.560471 +501.589808 +501.621876 +501.658972 +501.688143 +501.722309 +501.756874 +501.794303 +501.830734 +501.867397 +501.899431 +501.917314 +501.954643 +501.989941 +502.027270 +502.056940 +502.096567 +502.170027 +502.200863 +502.239358 +502.283014 +502.324006 +502.361469 +502.402528 +502.443420 +502.493970 +502.535295 +502.558871 +502.587942 +502.605558 +502.642055 +502.655541 +502.683280 +502.718045 +502.756074 +502.803094 +502.848848 +502.895068 +502.927669 +502.957972 +503.013316 +503.024905 +503.051012 +503.080283 +503.107622 +503.141322 +503.163733 +503.183779 +503.221774 +503.277752 +503.338424 +503.396599 +503.444285 +503.497299 +503.542753 +503.590239 +503.629033 +503.682313 +503.722606 +503.763166 +503.790905 +503.818444 +503.856406 +503.873322 +503.894601 +503.952177 +503.989839 +504.009419 +504.033895 +504.081347 +504.117411 +504.196965 +504.249146 +504.293069 +504.372123 +504.403791 +504.430365 +504.468027 +504.516478 +504.595333 +504.736891 +504.802492 +504.865895 +504.909085 +505.049811 +505.094833 +505.135759 +505.178249 +505.204223 +505.223238 +505.257204 +505.285708 +505.327467 +505.354040 +505.391536 +505.433094 +505.472089 +505.987306 +505.994599 +506.037223 +506.169724 +506.181811 +506.192068 +506.243883 +506.262397 +506.293866 +506.318408 +506.352174 +506.385940 +506.493866 +506.559300 +506.605920 +506.644115 +506.691268 +506.738721 +506.777648 +506.840152 +506.917175 +506.975550 +507.022603 +507.081378 +507.135457 +507.185374 +507.239819 +507.298094 +507.335656 +507.379046 +507.436123 +507.484441 +507.509682 +507.582543 +507.626532 +507.665127 +507.692066 +507.775316 +507.784074 +507.814810 +507.948610 +507.969455 +507.997694 +508.039718 +508.127730 +508.192632 +508.266824 +508.288469 +508.327264 +508.369655 +508.442881 +508.459032 +508.527130 +508.548476 +508.620304 +508.649341 +508.701523 +508.745612 +508.786438 +508.876314 +508.931059 +508.993497 +509.068921 +509.135555 +509.217406 +509.305618 +509.374349 +509.522234 +509.590399 +509.669587 +509.737752 +509.792664 +509.844312 +509.878311 +509.958331 +509.997658 +510.072017 +510.143346 +510.251404 +510.377878 +510.523266 +510.547408 +510.615540 +510.703152 +510.741580 +510.846276 +511.689565 +511.692495 +511.694760 +511.697790 +511.889365 +511.892095 +511.894526 +511.897890 +512.067420 +512.070051 +512.072581 +512.076511 +512.322664 +512.325328 +512.327560 +512.330890 +512.496790 +512.499554 +512.501885 +512.505215 +512.655298 +512.658495 +512.660959 +512.664489 +512.806713 +512.809744 +512.812008 +512.815171 +512.963356 +512.966220 +512.969317 +512.973047 +513.053167 +513.056663 +513.068052 +513.203849 +513.207013 +513.210043 +513.215071 +513.328691 +513.332187 +513.335417 +513.341445 +513.455930 +513.459460 +513.463389 +513.487066 +513.581438 +513.586899 +513.593059 +513.665420 +513.676210 +513.696523 +513.736416 +513.758094 +513.786433 +513.812839 +513.841511 +513.871114 +513.896789 +513.925960 +513.952167 +514.032786 +514.064987 +514.088097 +514.108910 +514.136749 +514.156662 +514.186599 +514.214904 +514.245906 +514.273612 +514.300918 +514.330455 +514.361857 +514.392393 +514.417701 +514.444474 +514.471613 +514.496322 +514.523595 +514.550801 +514.580538 +514.607111 +514.636182 +514.662156 +514.685533 +514.720331 +514.751633 +514.782069 +514.815469 +514.848836 +514.883867 +514.917334 +514.950634 +514.983201 +515.016701 +515.051899 +515.084300 +515.108409 +515.143308 +515.172145 +515.207144 +515.239578 +515.274277 +515.309508 +515.337080 +515.368183 +515.404779 +515.438812 +515.473044 +515.505645 +515.533750 +515.561123 +515.612338 +515.639744 +515.672145 +515.711173 +515.743940 +515.781535 +515.804746 +515.833250 +515.852365 +515.908408 +515.928055 +516.009174 +516.055162 +516.094722 +516.138378 +516.179171 +516.226590 +516.271345 +516.311239 +516.359057 +516.406110 +516.453063 +516.496020 +516.533683 +516.583533 +516.617632 +516.658624 +516.694522 +516.730386 +516.776706 +516.836280 +516.873243 +516.915733 +516.976606 +517.040309 +517.121028 +517.171944 +517.251164 +517.309073 +517.363985 +517.469080 +517.657757 +517.717331 +517.784530 +517.873275 +518.123058 +518.129818 +518.135979 +518.309605 +518.315299 +518.321693 +518.478436 +518.483764 +518.662052 +518.666348 +518.670777 +518.679501 +518.746767 +518.753960 +518.758988 +518.828319 +518.842505 +518.869411 +518.939241 +518.962451 +519.008572 +519.041705 +519.071709 +519.108572 +519.129917 +519.157789 +519.261685 +519.312401 +519.349198 +519.415531 +519.465714 +519.560586 +519.562817 +519.591988 +519.653326 +519.714832 +519.768178 +519.772540 +519.863150 +519.902211 +519.964582 +520.031515 +520.102677 +520.210435 +520.298514 +520.344168 +520.396083 +520.443802 +520.475470 +520.540039 +520.578067 +520.646399 +520.709669 +520.888890 +520.956022 +521.002143 +521.084594 +521.142103 +521.176468 +521.221124 +521.316761 +521.404973 +521.474370 +521.514930 +521.654690 +521.721656 +521.806871 +521.879431 +521.912265 +522.024853 +522.085192 +522.154689 +522.223387 +522.329681 +522.413896 +522.499844 +522.575601 +522.659118 +522.694915 +523.086024 +523.173403 +523.307435 +523.345198 +523.409433 +523.518657 +523.596779 +523.811431 +523.887521 +523.929879 +524.020488 +524.208633 +524.236539 +524.375699 +524.446662 +524.654820 +524.743897 +524.832043 +524.878862 +524.949691 +525.005036 +525.026215 +525.078796 +525.389551 +525.418955 +526.775264 +526.778461 +526.780625 +526.783789 +527.424614 +527.427744 +527.430608 +527.797974 +527.800671 +527.803368 +527.807398 +528.123248 +528.126079 +528.131540 +528.244227 +528.246525 +528.248856 +528.252052 +528.364840 +528.368170 +528.371200 +528.376195 +528.413458 +528.425712 +528.430940 +528.438699 +528.474263 +528.596208 +528.601603 +528.608762 +528.736767 +528.742894 +528.750387 +528.878259 +528.885452 +528.893943 +528.983687 +528.992744 +529.021016 +529.054915 +529.095641 +529.133670 +529.169967 +529.208329 +529.244626 +529.278958 +529.311758 +529.349054 +529.388315 +529.421615 +529.454715 +529.488481 +529.519251 +529.557046 +529.585651 +529.611558 +529.638165 +529.661342 +529.674828 +529.705697 +529.730206 +529.756147 +529.787116 +529.819550 +529.845258 +529.868901 +529.891112 +529.920449 +529.955347 +529.986017 +530.019550 +530.069600 +530.125244 +530.171165 +530.218551 +530.259110 +530.307661 +530.348021 +530.395707 +530.434867 +530.483552 +530.524111 +530.567635 +530.608693 +530.652483 +530.739929 +530.782753 +530.821314 +530.866669 +530.902666 +530.941927 +530.980188 +531.008127 +531.048320 +531.093541 +531.135333 +531.187847 +531.237031 +531.292875 +531.338296 +531.398936 +531.449652 +531.511024 +531.579022 +531.616485 +531.663937 +531.716818 +531.800334 +531.868333 +531.930504 +532.010290 +532.062505 +532.106061 +532.186181 +532.268499 +532.335865 +532.390743 +532.451848 +532.490210 +532.535198 +532.605095 +532.660240 +532.813187 +532.934798 +533.016017 +533.121811 +533.126207 +533.216150 +536.562567 +536.564931 +536.566763 +536.568994 +536.573123 +537.313149 +537.315413 +537.318810 +537.450511 +537.454174 +537.456605 +537.458903 +537.461500 +537.863698 +537.866295 +537.868293 +537.871157 +538.025503 +538.027800 +538.030031 +538.032829 +538.219175 +538.222672 +538.224903 +538.227201 +538.230631 +538.394933 +538.397597 +538.399928 +538.403324 +538.594000 +538.596564 +538.598895 +538.602492 +538.782811 +538.785542 +538.787873 +538.790836 +538.917576 +538.920274 +538.922904 +538.926501 +539.055472 +539.059001 +539.062198 +539.067326 +539.215212 +539.218475 +539.221439 +539.226833 +539.351608 +539.354905 +539.357736 +539.362631 +539.467526 +539.471155 +539.473919 +539.477649 +539.576450 +539.581279 +539.586040 +539.592434 +539.658868 +539.665794 +539.674219 +539.717875 +539.731162 +539.761332 +539.784009 +539.816843 +539.831695 +539.859866 +539.890336 +539.918275 +539.943150 +539.973952 +539.998694 +540.028964 +540.055804 +540.083043 +540.112214 +540.138021 +540.163129 +540.193732 +540.223636 +540.240585 +540.270922 +540.306186 +540.325633 +540.337522 +540.363462 +540.383775 +540.423669 +540.447844 +540.468657 +540.498460 +540.521537 +540.545014 +540.566792 +540.600392 +540.615843 +540.640585 +540.669156 +540.683242 +540.709649 +540.737355 +540.767791 +540.792932 +540.825999 +540.865426 +540.884108 +540.914744 +540.953205 +540.994064 +541.028929 +541.067657 +541.096029 +541.210981 +541.248610 +541.296162 +541.339718 +541.380078 +541.416408 +541.460531 +541.499159 +541.570554 +541.599125 +541.640784 +541.671020 +541.712545 +541.746278 +541.777280 +541.811180 +541.838452 +541.882941 +541.923434 +541.958466 +541.994263 +542.056767 +542.089468 +542.132292 +542.169055 +542.215275 +542.244446 +542.281109 +542.303554 +542.343647 +542.410813 +542.420203 +542.500423 +542.554203 +542.605818 +542.672351 +542.726464 +542.772284 +542.831825 +542.895827 +542.943480 +543.023999 +543.085105 +543.152104 +543.209713 +543.244745 +543.315307 +543.366323 +543.426063 +543.479143 +543.530159 +543.580309 +543.609546 +543.700921 +543.778577 +543.817638 +543.847675 +543.941148 +543.948374 +544.084804 +544.128960 +544.233622 +544.309146 +544.385836 +544.466688 +544.520368 +544.609878 +544.661194 +544.704450 +544.779575 +544.871117 +544.929325 +544.976345 +545.056265 +545.274846 +545.373048 +545.469052 +545.524196 +545.589598 +545.677210 +545.754299 +545.892394 +546.086933 +546.156397 +546.674145 +546.677642 +546.680173 +546.686300 +547.012973 +547.016103 +547.018700 +547.022563 +547.233652 +547.236549 +547.238647 +547.241744 +547.438014 +547.440345 +547.442310 +547.445340 +547.663322 +547.666252 +547.668783 +547.672013 +547.825892 +547.828889 +547.831387 +547.834783 +548.005013 +548.007544 +548.011540 +548.171613 +548.174477 +548.176941 +548.180304 +548.336648 +548.339745 +548.342509 +548.347104 +548.482668 +548.485998 +548.488729 +548.493158 +548.623894 +548.627224 +548.630121 +548.634749 +548.751333 +548.754629 +548.757626 +548.761955 +548.885265 +548.888629 +548.891792 +548.897753 +549.025625 +549.028655 +549.033583 +549.148169 +549.151399 +549.154629 +549.160623 +549.275941 +549.279904 +549.283200 +549.289827 +549.409607 +549.413104 +549.417000 +549.430386 +549.541675 +549.547003 +549.551665 +549.652431 +549.661755 +549.701981 +549.732750 +549.769613 +549.791491 +549.819397 +549.844905 +549.871578 +549.906243 +549.932484 +549.962254 +549.990026 +550.023093 +550.054362 +550.081501 +550.103979 +550.134648 +550.157858 +550.186096 +550.212004 +550.239709 +550.269513 +550.302413 +550.332650 +550.361654 +550.383199 +550.411105 +550.441707 +550.475440 +550.507774 +550.535880 +550.566849 +550.596785 +550.626422 +550.655460 +550.715866 +550.750598 +550.782466 +550.818130 +550.851564 +550.886329 +550.925157 +550.952896 +550.981267 +551.012736 +551.047068 +551.074540 +551.108407 +551.145103 +551.178536 +551.212036 +551.247034 +551.286595 +551.304310 +551.344504 +551.383365 +551.425855 +551.437011 +551.480900 +551.514467 +551.552196 +551.590424 +551.630018 +551.671143 +551.711403 +551.749465 +551.789458 +551.826255 +551.863084 +551.898582 +551.938576 +551.979401 +552.010237 +552.052029 +552.086128 +552.160420 +552.193953 +552.237809 +552.277536 +552.315398 +552.344569 +552.377037 +552.430150 +552.474872 +552.512867 +552.545468 +552.579101 +552.625688 +552.668678 +552.716863 +552.774705 +552.806940 +552.858055 +552.913733 +552.956590 +552.997948 +553.073206 +553.108638 +553.141738 +553.207872 +553.250662 +553.289323 +553.331848 +553.380765 +553.455923 +553.503309 +553.569143 +553.617695 +553.672606 +553.736343 +553.772706 +553.833112 +553.884028 +553.959586 +554.022356 +554.067578 +554.103242 +554.183828 +554.237774 +554.305306 +554.363615 +554.428516 +554.477368 +554.523721 +554.699112 +554.773271 +554.838772 +554.986658 +555.039272 +555.226751 +555.296181 +555.372871 +555.418892 +555.492784 +555.558485 +555.651559 +555.676001 +555.892318 +555.908468 +555.949794 +556.014795 +556.059584 +556.164479 +556.193183 +558.465043 +558.467540 +558.469438 +558.471703 +558.476997 +558.634440 +558.637070 +558.639102 +558.641233 +558.644430 +558.761812 +558.763977 +558.766208 +558.768439 +558.771902 +558.942664 +558.944896 +558.947093 +558.949957 +558.957283 +559.061612 +559.064076 +559.066507 +559.069371 +559.076930 +559.255385 +559.257849 +559.260180 +559.263177 +559.406767 +559.409264 +559.411562 +559.414592 +559.547725 +559.550256 +559.552387 +559.555484 +559.710496 +559.713326 +559.715724 +559.718788 +559.824349 +559.828411 +559.913526 +559.918521 +559.923349 +559.936170 +560.015857 +560.020885 +560.025614 +560.039100 +560.112593 +560.118854 +560.127678 +560.177395 +560.188251 +560.213559 +560.231108 +560.251588 +560.273566 +560.290915 +560.316323 +560.334505 +560.355517 +560.380925 +560.406199 +560.425380 +560.465274 +560.490715 +560.519486 +560.549856 +560.573299 +560.597441 +560.631208 +560.663109 +560.692113 +560.719353 +560.753918 +560.786519 +560.819686 +560.851121 +560.879226 +560.905500 +560.939366 +560.968137 +560.997841 +561.028643 +561.061210 +561.090714 +561.124281 +561.156349 +561.185786 +561.219385 +561.253385 +561.272133 +561.286285 +561.318286 +561.339465 +561.360478 +561.390314 +561.410561 +561.447923 +561.456781 +561.487584 +561.534570 +561.559179 +561.591613 +561.625812 +561.663374 +561.673531 +561.715189 +561.755815 +561.782722 +561.814390 +561.849921 +561.886851 +561.927277 +561.964140 +562.005032 +562.043327 +562.078126 +562.119751 +562.152851 +562.179991 +562.212425 +562.235768 +562.256481 +562.278126 +562.288382 +562.313224 +562.365705 +562.377226 +562.395175 +562.415422 +562.431006 +562.462008 +562.508761 +562.534369 +562.575262 +562.602701 +562.612025 +562.627842 +562.661209 +562.675994 +562.693277 +562.723313 +562.747123 +562.769301 +562.909560 +562.943959 +562.994375 +563.047722 +563.093509 +563.140296 +563.183320 +563.232737 +563.280755 +563.328441 +563.370699 +563.404831 +563.455480 +563.493343 +563.539363 +563.568168 +563.589313 +563.609959 +563.625777 +563.648720 +563.701301 +563.768567 +563.805796 +563.866636 +563.912523 +563.935933 +563.959409 +563.982619 +563.998204 +564.018151 +564.043192 +564.072663 +564.112656 +564.146089 +564.177924 +564.218450 +564.260908 +564.282786 +564.340761 +564.396772 +564.479222 +564.540295 +564.585949 +564.676858 +564.730970 +564.786581 +564.867634 +564.929505 +565.005595 +565.066967 +565.121479 +565.188712 +565.232302 +565.305395 +565.383484 +565.427407 +565.465202 +565.524409 +565.569065 +565.623843 +565.696138 +565.770863 +565.802564 +565.847519 +565.923810 +565.963204 +566.000866 +566.036830 +566.104362 +566.156510 +566.246220 +566.254945 +566.259174 +566.395105 +566.410656 +566.529903 +566.551248 +566.633999 +566.665900 +566.714518 +566.742091 +566.770063 +566.869230 +566.903429 +566.988943 +567.075923 +567.128171 +567.183682 +567.242523 +567.298067 +567.344721 +567.386512 +567.430168 +567.452579 +567.496902 +567.537794 +567.581750 +567.635496 +567.667764 +567.740125 +567.818014 +567.862802 +567.911254 +567.969628 +568.048549 +568.088410 +568.130501 +568.184713 +568.255342 +568.289908 +568.350081 +568.447483 +568.533764 +568.630267 +568.743920 +568.815282 +568.895668 +569.064433 +569.131865 +569.287143 +569.307190 +569.367163 +569.395534 +569.476387 +569.520376 +569.598298 +569.676753 +569.730666 +569.944418 +569.970459 +573.143583 +573.147545 +573.149677 +573.151675 +573.153939 +573.157136 +577.305716 +577.308114 +577.309979 +577.312376 +577.317038 +578.855698 +579.191162 +579.193527 +579.195458 +579.197822 +579.202884 +579.367519 +579.369684 +579.371682 +579.373780 +579.376910 +579.497955 +579.500686 +579.502950 +579.505448 +579.510476 +579.717336 +579.719700 +579.721731 +579.724129 +579.728025 +579.910043 +579.912374 +579.914305 +579.916570 +579.920865 +580.098221 +580.100685 +580.102816 +580.105447 +580.112207 +580.349736 +580.352100 +580.354132 +580.357095 +580.461691 +580.464121 +580.466319 +580.469383 +580.631354 +580.634018 +580.636349 +580.639180 +580.647538 +580.766119 +580.771014 +580.773512 +580.775909 +580.779406 +580.907711 +580.910175 +580.912506 +580.915403 +581.056528 +581.058859 +581.061557 +581.069982 +581.209509 +581.211906 +581.214337 +581.217667 +581.358726 +581.361889 +581.364454 +581.368316 +581.499385 +581.502582 +581.505213 +581.509342 +581.630021 +581.633384 +581.636381 +581.641809 +581.743374 +581.747137 +581.750900 +581.758792 +581.853797 +581.858426 +581.863454 +581.884966 +581.942808 +581.951133 +581.966651 +581.980370 +581.993124 +582.003114 +582.019698 +582.039911 +582.086065 +582.106611 +582.138878 +582.152232 +582.192092 +582.208675 +582.231785 +582.252132 +582.280636 +582.298052 +582.323227 +582.353630 +582.382834 +582.414336 +582.441842 +582.479138 +582.517666 +582.547270 +582.583833 +582.616933 +582.633683 +582.663420 +582.703313 +582.772178 +582.805045 +582.821162 +582.839144 +582.863953 +582.891858 +582.934349 +582.973443 +583.010872 +583.042341 +583.082933 +583.106143 +583.148834 +583.184931 +583.246303 +583.283632 +583.299616 +583.363686 +583.392856 +583.474342 +583.530452 +583.590092 +583.658457 +583.710705 +583.749766 +583.805177 +583.866815 +583.913469 +583.973275 +584.024657 +584.031384 +584.122859 +584.174874 +584.204444 +584.262453 +584.348633 +584.379003 +584.452629 +584.472143 +584.549332 +584.612103 +584.675539 +584.717997 +584.769811 +584.832915 +584.918829 +585.007873 +585.085529 +585.236045 +585.284430 +585.462451 +585.540373 +585.618429 +585.648965 +585.688126 +585.762285 +585.791222 +585.834013 +586.401678 +586.406473 +586.409737 +586.584795 +586.598081 +586.643869 +586.743602 +586.778035 +586.982896 +587.085427 +587.131647 +587.176802 +587.280199 +587.315197 +587.423588 +587.459153 +587.533045 +587.558087 +587.580698 +587.708570 +587.733045 +587.800145 +587.920058 +587.970807 +588.078566 +588.239572 +588.247164 +588.255223 +590.131078 +590.133509 +590.135440 +590.137538 +590.140702 +590.599276 +590.601707 +590.603605 +590.605803 +590.609000 +591.017691 +591.043498 +591.045929 +591.047927 +591.050092 +591.572169 +591.574733 +591.576997 +591.580094 +591.667707 +591.670304 +591.672735 +591.675965 +591.841166 +591.843631 +591.845695 +591.848226 +591.852921 +592.530277 +592.532674 +592.534772 +592.537403 +592.542531 +592.882857 +592.885521 +592.887552 +592.890083 +592.897442 +593.063909 +593.066407 +593.068438 +593.071235 +593.273499 +593.276097 +593.278161 +593.281025 +593.484088 +593.486553 +593.488950 +593.492280 +593.681191 +593.684155 +593.686486 +593.689583 +593.846426 +593.849523 +593.851720 +593.854484 +593.862576 +594.045127 +594.047691 +594.049855 +594.052286 +594.059013 +594.219419 +594.222283 +594.224514 +594.227844 +594.361543 +594.364141 +594.366738 +594.370401 +594.488050 +594.491180 +594.494044 +594.498073 +594.635669 +594.638866 +594.641830 +594.647957 +594.771133 +594.774763 +594.778226 +594.783954 +594.907031 +594.910993 +594.914390 +594.920817 +595.032172 +595.036235 +595.040264 +595.058179 +595.172698 +595.178359 +595.183054 +595.214390 +595.273064 +595.284586 +595.316587 +595.344493 +595.369768 +595.402368 +595.428675 +595.453917 +595.490680 +595.516154 +595.546324 +595.583420 +595.610460 +595.640197 +595.670467 +595.693643 +595.721482 +595.737966 +595.775029 +595.800836 +595.831872 +595.868468 +595.901335 +595.931738 +595.969301 +596.006430 +596.038465 +596.071665 +596.102467 +596.139397 +596.176926 +596.212024 +596.262307 +596.296673 +596.328774 +596.366770 +596.409727 +596.450952 +596.493210 +596.535667 +596.577159 +596.616753 +596.654948 +596.676659 +596.735734 +596.777725 +596.816286 +596.859177 +596.904565 +596.939130 +596.983386 +597.027641 +597.067934 +597.163772 +597.221647 +597.281587 +597.381620 +597.416019 +597.496206 +597.570598 +597.611590 +597.679822 +597.719882 +597.754014 +597.802266 +597.812556 +597.992842 +598.046055 +598.127507 +598.298303 +598.373661 +598.493374 +598.638895 +598.725042 +598.780653 +598.947120 +599.211589 +599.234399 +599.256011 +599.341592 +599.384582 +599.502098 +599.658475 +599.710090 +599.752381 +600.837061 +600.839559 +600.841557 +600.843921 +600.848683 +601.144820 +601.147118 +601.149049 +601.428703 +601.439359 +601.441523 +601.443588 +601.446285 +601.615948 +601.618279 +601.620244 +601.622708 +601.627570 +601.854776 +601.857307 +601.859338 +601.861902 +602.929500 +602.932297 +602.934462 +602.938192 +603.765763 +603.769393 +603.772024 +603.774221 +603.777118 +604.627734 +604.630364 +604.632396 +604.634926 +604.639888 +604.926368 +604.928999 +604.931130 +604.933561 +604.938722 +605.320906 +605.323637 +605.325635 +605.328133 +605.624269 +605.626900 +605.629098 +605.632261 +605.808918 +605.811515 +605.813647 +605.816244 +605.825701 +605.991302 +605.993866 +605.995964 +605.998695 +606.005288 +606.282044 +606.284575 +606.286673 +606.289570 +606.519507 +606.522037 +606.524235 +606.527399 +606.711448 +606.714212 +606.716410 +606.718974 +606.725500 +606.892766 +606.895197 +606.897528 +606.901391 +607.046945 +607.049809 +607.051974 +607.054837 +607.066326 +607.281011 +607.283875 +607.285973 +607.289103 +607.443182 +607.445879 +607.448610 +607.452439 +607.569456 +607.572819 +607.575350 +607.578946 +607.734157 +607.739752 +607.876215 +607.879146 +607.881277 +607.884474 +608.031460 +608.034757 +608.037387 +608.040751 +608.178479 +608.181976 +608.184873 +608.189502 +608.318806 +608.326498 +608.329528 +608.333591 +608.415109 +608.420537 +608.425998 +608.433324 +608.522302 +608.527630 +608.532558 +608.540883 +608.690533 +608.698625 +608.709015 +608.815142 +608.825931 +608.846544 +608.947077 +608.966091 +609.027030 +609.125931 +609.178012 +609.224366 +609.273150 +609.326397 +609.369820 +609.424132 +609.459730 +609.513543 +609.549141 +609.606150 +609.656467 +609.706417 +609.770952 +609.879577 +609.939117 +609.999590 +610.107848 +610.173782 +610.229060 +610.274681 +610.332323 +610.385803 +610.461694 +610.516539 +610.556499 +610.724764 +610.808247 +610.850138 +610.996925 +611.117104 +611.326362 +611.419102 +611.446142 +611.652935 +611.694393 +611.715772 +611.783604 +611.846008 +611.895192 +611.932322 +612.136151 +612.146707 +612.160593 +612.294792 +612.302718 +612.308146 +612.313141 +612.572414 +612.578175 +612.580773 +612.582937 +612.585901 +612.969750 +612.972680 +612.974678 +612.977775 +613.369516 +613.372247 +613.374345 +613.376809 +613.382570 +613.556896 +613.562856 +613.565354 +613.567918 +613.752067 +613.754831 +613.757362 +613.760692 +613.997821 +614.000918 +614.003315 +614.006446 +614.428290 +614.431520 +614.434284 +614.438746 +614.626691 +614.630088 +614.633285 +614.640344 +614.925958 +614.928922 +614.931187 +614.933651 +614.938313 +615.060690 +615.063887 +615.066118 +615.068882 +615.074110 +615.182768 +615.185698 +615.188196 +615.191093 +615.201150 +615.244340 +615.249967 +615.254296 +615.258026 +615.260890 +615.265152 +615.464752 +615.467217 +615.469914 +615.626790 +615.630054 +615.632884 +615.636580 +615.750333 +615.752698 +615.754962 +615.759990 +615.762754 +615.766117 +615.903713 +615.906943 +615.910173 +615.927523 +616.042974 +616.047702 +616.057825 +616.142174 +616.148601 +616.155261 +616.171345 +616.261988 +616.271978 +616.282334 +616.291525 +616.342008 +616.368015 +616.396220 +616.409573 +616.452730 +616.457359 +616.491225 +616.533549 +616.567948 +616.587562 +616.619263 +616.666982 +616.711138 +616.757259 +616.809906 +616.851764 +616.897019 +616.925257 +616.956859 +616.996919 +617.032650 +617.081834 +617.128787 +617.174841 +617.214568 +617.241707 +617.272476 +617.300082 +617.341108 +617.380468 +617.409106 +617.439409 +617.469346 +617.507408 +617.547934 +617.584431 +617.624491 +617.653528 +617.688626 +617.723358 +617.740175 +617.779935 +617.813635 +617.856125 +617.881866 +617.935945 +617.980301 +618.017231 +618.050031 +618.113767 +618.163085 +618.213001 +618.252728 +618.302012 +618.343371 +618.386161 +618.439009 +618.485629 +618.506674 +618.554393 +618.618895 +618.648965 +618.676571 +618.746667 +618.783464 +618.826887 +618.866281 +618.912002 +618.952761 +618.990157 +619.017962 +619.063850 +619.099780 +619.151629 +619.181865 +619.233613 +619.318628 +619.443070 +619.506573 +619.588891 +619.631248 +619.680100 +619.733213 +619.752460 +619.782464 +619.814265 +619.871575 +619.889856 +619.926153 +619.979200 +620.081431 +620.190722 +620.232613 +620.298580 +620.327718 +620.381298 +620.445367 +620.639006 +620.719726 +621.583494 +621.586192 +621.588356 +621.590854 +621.595915 +621.711533 +621.715029 +621.717427 +621.719824 +621.724120 +621.827184 +621.832578 +621.993317 +621.996781 +621.999611 +622.005272 +622.169974 +622.173104 +622.175535 +622.179398 +622.349095 +622.351958 +622.354223 +622.357020 +622.364246 +622.416161 +622.418725 +622.424552 +622.427583 +622.431013 +622.645198 +622.647862 +622.650360 +622.653223 +622.658218 +622.801575 +622.804139 +622.806437 +622.809534 +622.817825 +622.963613 +622.966976 +622.969940 +622.974935 +623.097079 +623.099443 +623.102107 +623.105637 +623.278897 +623.282260 +623.285124 +623.289919 +623.425517 +623.428547 +623.431444 +623.435174 +623.590985 +623.594614 +623.597678 +623.601674 +623.724751 +623.728514 +623.731910 +623.741101 +623.882227 +623.885890 +623.889153 +623.895047 +624.019522 +624.022986 +624.026449 +624.032576 +624.158050 +624.161514 +624.164910 +624.172103 +624.317657 +624.321220 +624.327248 +624.454920 +624.459082 +624.463645 +624.547494 +624.555419 +624.568173 +624.614360 +624.635839 +624.675433 +624.696978 +624.729012 +624.754520 +624.771570 +624.796978 +624.822485 +624.846095 +624.883558 +624.906934 +624.947227 +624.980494 +624.993081 +625.023684 +625.073001 +625.110997 +625.146994 +625.189751 +625.213494 +625.252322 +625.287120 +625.309831 +625.378695 +625.416491 +625.469371 +625.511096 +625.557183 +625.609930 +625.621319 +625.624016 +625.707133 +625.717090 +625.783190 +625.803070 +625.830676 +625.868039 +625.878462 +625.963643 +625.968372 +626.067639 +626.165508 +626.305701 +626.382191 +626.696043 +627.703368 +627.706365 +627.708796 +627.712126 +627.842263 +627.845859 +627.848023 +627.850488 +627.854550 +627.949955 +627.952752 +627.955016 +627.958147 +628.421483 +628.424380 +628.426544 +628.429208 +628.646990 +628.649987 +628.652185 +628.655016 +628.664007 +628.818785 +628.821316 +628.823514 +628.826278 +628.833037 +629.068468 +629.076527 +629.079124 +629.081455 +629.084153 +629.369534 +629.371931 +629.374229 +629.377559 +629.571598 +629.574229 +629.576393 +629.579357 +629.750619 +629.753516 +629.755747 +629.759244 +629.913123 +629.915920 +629.918418 +629.921548 +630.090912 +630.093642 +630.096140 +630.099270 +630.240196 +630.243126 +630.245956 +630.250219 +630.379756 +630.382586 +630.385850 +630.390811 +630.499036 +630.502600 +630.506695 +630.539696 +630.618450 +630.624844 +630.633535 +630.713322 +630.747821 +630.776625 +630.807328 +630.831537 +630.862473 +630.890345 +630.915919 +630.943325 +630.977224 +631.003798 +631.027374 +631.058843 +631.090877 +631.121880 +631.153781 +631.184251 +631.210458 +631.237864 +631.271097 +631.300734 +631.327907 +631.351816 +631.379222 +631.441293 +631.472662 +631.504030 +631.538563 +631.571197 +631.602865 +631.637697 +631.666501 +631.700867 +631.739828 +631.772229 +631.803597 +631.842458 +631.878256 +631.917949 +631.945422 +631.986681 +632.020447 +632.057410 +632.090310 +632.125675 +632.160040 +632.207992 +632.244156 +632.279488 +632.314686 +632.344689 +632.411189 +632.426407 +632.461738 +632.492807 +632.531102 +632.554645 +632.596670 +632.627672 +632.683616 +632.718615 +632.761505 +632.808192 +632.813719 +632.926207 +632.957442 +633.007459 +633.069863 +633.132733 +633.174691 +633.266167 +633.300232 +633.335031 +633.395937 +633.448551 +633.484481 +633.515450 +633.549583 +633.585480 +633.629003 +633.660239 +633.674758 +633.693972 +633.755910 +633.883782 +633.933665 +633.994471 +634.025307 +634.095736 +634.168264 +634.236562 +634.280951 +634.356941 +634.458173 +634.499166 +634.554244 +634.671893 +634.732832 +634.824540 +634.873757 +634.965299 +635.091106 +635.100131 +635.504093 +635.558106 +635.689607 +635.782248 +635.848548 +635.886777 +636.026170 +636.097632 +636.118345 +636.236660 +636.268028 +636.282414 +636.394169 +637.347648 +637.350345 +637.352476 +637.354940 +637.359236 +638.334993 +641.255236 +641.258000 +641.260697 +641.262795 +641.264993 +641.268490 +641.826364 +641.828829 +641.830960 +641.834290 +641.935688 +641.937986 +641.940051 +641.942648 +641.947810 +642.211812 +642.214443 +642.216740 +642.220470 +642.430526 +642.433090 +642.435421 +642.439018 +642.626197 +642.628628 +642.630826 +642.633956 +642.826563 +642.828994 +642.831558 +642.835055 +642.999523 +643.001921 +643.005584 +643.159197 +643.161894 +643.164325 +643.167788 +643.309280 +643.311977 +643.314442 +643.317905 +643.435520 +643.439050 +643.441581 +643.445477 +643.563992 +643.568154 +643.572716 +643.631491 +643.652270 +643.684638 +643.702020 +643.732756 +643.758597 +643.789766 +643.817172 +643.847275 +643.874747 +643.912843 +643.938250 +643.968487 +643.998990 +644.024864 +644.059729 +644.088866 +644.125163 +644.159362 +644.187934 +644.224630 +644.253268 +644.284704 +644.316272 +644.350471 +644.383738 +644.410977 +644.438716 +644.476911 +644.503285 +644.541646 +644.580175 +644.604650 +644.633588 +644.667254 +644.683138 +644.711476 +644.728559 +644.757797 +644.792595 +644.820268 +644.864024 +644.897723 +644.927793 +644.964723 +645.001753 +645.107713 +645.142911 +645.174180 +645.212009 +645.249038 +645.289698 +645.330856 +645.368519 +645.413873 +645.453001 +645.496391 +645.537849 +645.578009 +645.617569 +645.659328 +645.700486 +645.788565 +645.825661 +645.904216 +645.943310 +645.988598 +646.030023 +646.063490 +646.106114 +646.148305 +646.195691 +646.246773 +646.291062 +646.332221 +646.367186 +646.417435 +646.457995 +646.494358 +646.577941 +646.627026 +646.819067 +646.864788 +646.913139 +646.981371 +647.026359 +647.083502 +647.141078 +647.185167 +647.243209 +647.299319 +647.348936 +647.385899 +647.425660 +647.476209 +647.540345 +647.578407 +647.620631 +647.632419 +647.677507 +647.709742 +647.752432 +647.789262 +647.861423 +647.922396 +647.952499 +648.006711 +648.040644 +648.076242 +648.126458 +648.180770 +648.228789 +648.279005 +648.347970 +648.406178 +648.485299 +648.550833 +648.616001 +648.677506 +648.749867 +648.834150 +648.890327 +648.975874 +649.039311 +649.146870 +649.206777 +649.261755 +649.352497 +649.462421 +649.543806 +649.627922 +649.778305 +649.937845 +649.960689 +650.032350 +650.152297 +650.213103 +650.280169 +650.363152 +650.410538 +650.478770 +650.507408 +650.576206 +650.640941 +650.692356 +650.745803 +650.828820 +650.877737 +651.011803 +651.041840 +651.078869 +651.097584 +651.113568 +651.194121 +651.242772 +651.328553 +651.435246 +651.494087 +651.590790 +651.621260 +651.755758 +651.777537 +651.982998 +652.032615 +652.175305 +652.270044 +652.325089 +652.358688 +652.421092 +652.477336 +652.578135 +652.664882 +652.703143 +652.758288 +652.777569 +652.820026 +652.928052 +653.058221 +653.149363 +653.239973 +653.369177 +653.399846 +653.454924 +653.510136 +653.576902 +656.731178 +656.733043 +656.735274 +656.738571 +658.507000 +658.509132 +658.510963 +658.512961 +658.515925 +658.770403 +658.775965 +658.778196 +658.780294 +658.782858 +658.789151 +660.750155 +660.754651 +660.756582 +660.758680 +660.761444 +661.091314 +661.193511 +661.196042 +661.197907 +661.200371 +661.203435 +661.500571 +661.502768 +661.505432 +661.513324 +661.728842 +661.731839 +661.734337 +661.739798 +661.985086 +661.988016 +661.990580 +661.994210 +662.101835 +662.104333 +662.106531 +662.109428 +663.069733 +663.072497 +663.074995 +663.078857 +663.232770 +663.235234 +663.237465 +663.240296 +663.247888 +663.505830 +663.508294 +663.510492 +663.514122 +663.749286 +663.752083 +663.754514 +663.759110 +663.904897 +663.907894 +663.910924 +663.917085 +664.138430 +664.140694 +664.144224 +664.327541 +664.330638 +664.333168 +664.337198 +664.493275 +664.496205 +664.500401 +664.503032 +664.506462 +664.664170 +664.667800 +664.670031 +664.672595 +664.677790 +664.835932 +664.839528 +664.842459 +664.849285 +664.990411 +664.994074 +664.997037 +665.002032 +665.158243 +665.161573 +665.164869 +665.172495 +665.291609 +665.294839 +665.298036 +665.303797 +665.462471 +665.465701 +665.468432 +665.473227 +665.622911 +665.626274 +665.629105 +665.635132 +665.740127 +665.743190 +665.746154 +665.750416 +665.873527 +665.876990 +665.880053 +665.886247 +665.989244 +665.992840 +665.995971 +666.001199 +666.109124 +666.112854 +666.116483 +666.122311 +666.198168 +666.204495 +666.210123 +666.281785 +666.292807 +666.308125 +666.357009 +666.369364 +666.417948 +666.430103 +666.489510 +666.501864 +666.553379 +666.582850 +666.617582 +666.660239 +666.676456 +666.699233 +666.744088 +666.777655 +666.811588 +666.842024 +666.865767 +666.912054 +666.950315 +666.986746 +667.020112 +667.049216 +667.083316 +667.112287 +667.140425 +667.173792 +667.200365 +667.237261 +667.262736 +667.298533 +667.334497 +667.366166 +667.386445 +667.426672 +667.464534 +667.502196 +667.542922 +667.589476 +667.638094 +667.679019 +667.709422 +667.768563 +667.796701 +667.835429 +667.897068 +667.941989 +667.998300 +668.048116 +668.106724 +668.147683 +668.201463 +668.246917 +668.290574 +668.342655 +668.403028 +668.446185 +668.495502 +668.548549 +668.599365 +668.647283 +668.695935 +668.733231 +668.760570 +668.798199 +668.851945 +668.887976 +668.964832 +669.015481 +669.073790 +669.158338 +669.211652 +669.305891 +669.360669 +669.432298 +669.503360 +669.580882 +669.650379 +669.713982 +669.752477 +669.830699 +669.867728 +669.890772 +669.938358 +669.985044 +670.010286 +670.074088 +670.091571 +670.165430 +670.201594 +670.249613 +670.291038 +670.353609 +670.414448 +670.467361 +670.528900 +670.696732 +670.795833 +670.895833 +671.001727 +671.075553 +671.200328 +671.285309 +671.733927 +671.737956 +671.782445 +671.824137 +671.839222 +671.867660 +671.886741 +671.948779 +671.961133 +672.014113 +672.096930 +672.116444 +672.423736 +672.455838 +672.743083 +672.748378 +673.037988 +673.041951 +673.045581 +673.274851 +673.277915 +673.280479 +673.284342 +673.469689 +673.472587 +673.475217 +673.478780 +673.710482 +673.713179 +673.715410 +673.718407 +673.945014 +673.947778 +673.949776 +673.952806 +674.147245 +674.149609 +674.151873 +674.154737 +674.370355 +674.373052 +674.375416 +674.378080 +674.388070 +674.547078 +674.549509 +674.551973 +674.555103 +674.702322 +674.704920 +674.707484 +674.710814 +674.831759 +674.834790 +674.837787 +674.842948 +674.958133 +674.961363 +674.964160 +674.970021 +675.117973 +675.121070 +675.123734 +675.128063 +675.266291 +675.269554 +675.272285 +675.276647 +675.415442 +675.418805 +675.421569 +675.425498 +675.563693 +675.566990 +675.571985 +675.661595 +675.665991 +675.670320 +675.739717 +675.750573 +675.773150 +675.814642 +675.844645 +675.874749 +675.903520 +675.941449 +675.987669 +676.012644 +676.046510 +676.078312 +676.107815 +676.153803 +676.218205 +676.261062 +676.304086 +676.349340 +676.390000 +676.427262 +676.456799 +676.507648 +676.534022 +676.598424 +676.643346 +676.693329 +676.697192 +676.701987 +676.744545 +676.788934 +676.827994 +676.858730 +676.929959 +676.993928 +677.059596 +677.099123 +677.158863 +677.189566 +677.232656 +677.273715 +677.309779 +677.415040 +677.493129 +677.540415 +677.594960 +677.630924 +677.694394 +677.711843 +677.724231 +678.712575 +678.718302 +678.721399 +678.725795 +678.861292 +678.864256 +678.865888 +678.868485 +678.872947 +678.903883 +679.355997 +679.358661 +679.360859 +679.364655 +680.244475 +680.249536 +680.251534 +680.253665 +680.567651 +680.570149 +680.572280 +680.575377 +680.785833 +680.788530 +680.790595 +680.793292 +680.801017 +681.156828 +681.159625 +681.162189 +681.165553 +681.284134 +681.286232 +681.288163 +681.290161 +681.292759 +681.393857 +681.398086 +681.400917 +681.403281 +681.405612 +681.632752 +681.634916 +681.638179 +681.732751 +681.735216 +681.740244 +681.747004 +681.917666 +681.919931 +681.922162 +681.924659 +681.930553 +682.166484 +682.168948 +682.171013 +682.174043 +682.371412 +682.374076 +682.376207 +682.379104 +682.566084 +682.569081 +682.571645 +682.574209 +682.579437 +682.705511 +682.707642 +682.710273 +682.713370 +682.782601 +682.830020 +682.833583 +682.836580 +682.840709 +682.937812 +682.941908 +682.944971 +682.949001 +683.079703 +683.084332 +683.088827 +683.205311 +683.214868 +683.218964 +683.223126 +683.371145 +683.386862 +683.531384 +683.535913 +683.539809 +683.550998 +683.653729 +683.659390 +683.665916 +683.790125 +683.796019 +683.806542 +683.940741 +683.947834 +684.034148 +684.043572 +684.120195 +684.197051 +684.241074 +684.285163 +684.308640 +684.315866 +684.358456 +684.404877 +684.456125 +684.501547 +684.531117 +684.615599 +684.673275 +684.697817 +684.735579 +684.775839 +684.832682 +684.874706 +684.927920 +684.981633 +685.038909 +685.105076 +685.180067 +685.233714 +685.318162 +685.435179 +685.486461 +685.559188 +685.601212 +685.679368 +685.734579 +685.817296 +685.823823 +686.002511 +686.034645 +686.101145 +686.149031 +686.218128 +686.318361 +686.352527 +686.384895 +686.429284 +686.453260 +686.490422 +686.539540 +686.580898 +686.715197 +686.891754 +686.953525 +687.110135 +687.127951 +687.298846 +687.349729 +687.416495 +687.487424 +687.511467 +687.710701 +687.854457 +687.918826 +687.981596 +688.023288 +688.053325 +688.081130 +688.174770 +688.268243 +688.373737 +688.485126 +688.552691 +688.624453 +688.756554 +688.762648 +688.798479 +688.837706 +688.903940 +689.591518 +689.594482 +689.596613 +689.599743 +689.869207 +689.872370 +689.874735 +689.878398 +690.065077 +690.067975 +690.075367 +690.385557 +690.388787 +690.391484 +690.394614 +690.621287 +690.624418 +690.626582 +690.630478 +690.898776 +690.901640 +690.903705 +690.906868 +691.026349 +691.029479 +691.032409 +691.036072 +691.102039 +691.107967 +691.114927 +691.235473 +691.240334 +691.244397 +691.248093 +691.367274 +691.370604 +691.373468 +691.377497 +691.969971 +691.973001 +691.975598 +691.979494 +692.198176 +692.200740 +692.203637 +692.207799 +692.343996 +692.346793 +692.349291 +692.352854 +692.471502 +692.474599 +692.477063 +692.480027 +692.622218 +692.625681 +692.629444 +692.651988 +692.734072 +692.740666 +692.749124 +692.753453 +692.839400 +692.843962 +692.849324 +692.936603 +692.942697 +692.948358 +693.111961 +693.117522 +693.125481 +693.275664 +693.280958 +693.407398 +693.420885 +693.455084 +693.480192 +693.529876 +693.613292 +693.640998 +693.669936 +693.675630 +693.678827 +693.772799 +693.800771 +693.861610 +693.865307 +693.867871 +693.914125 +693.957914 +693.981590 +694.090015 +694.148224 +694.238467 +694.269868 +694.333505 +694.397341 +694.483288 +694.627777 +694.713258 +694.795209 +694.900104 +694.956181 +695.054816 +695.111126 +695.177460 +695.207130 +695.249188 +695.300437 +695.359178 +695.397540 +695.497506 +695.577759 +695.635335 +695.750553 +695.842128 +695.916254 +695.987149 +696.045957 +696.095841 +696.166437 +696.250919 +696.290512 +696.307729 +696.374995 +696.406996 +696.502101 +696.533403 +696.577525 +696.591578 +696.648288 +696.678191 +696.750918 +696.787282 +696.851651 +696.888714 +696.920116 +696.971631 +697.011124 +697.040262 +697.113688 +697.176459 +697.277191 +697.346622 +697.410158 +697.475726 +697.559376 +697.622413 +697.706462 +697.772729 +697.899668 +697.953548 +698.026541 +698.082319 +698.173794 +698.207926 +698.250351 +698.448852 +698.497237 +698.713520 +698.723977 +698.734433 +699.067866 +699.071562 +699.074426 +699.078488 +700.199167 +700.202030 +700.204228 +700.207192 +700.524707 +700.526839 +700.529070 +700.531567 +702.744885 +702.777819 +702.822307 +702.850612 +702.886277 +702.919677 +702.953043 +702.993569 +703.032464 +703.071924 +703.102660 +703.142420 +703.180782 +703.218977 +703.259969 +703.297532 +703.339556 +703.376752 +703.401961 +703.440755 +703.480415 +703.514315 +703.559936 +703.596033 +703.634961 +703.672257 +703.719976 +703.767395 +703.811051 +703.858803 +703.915780 +703.973588 +704.021674 +704.082213 +704.143252 +704.199163 +704.248413 +704.327767 +704.382179 +704.461567 +704.521174 +704.577251 +704.612216 +704.668792 +704.705822 +704.739921 +704.790204 +706.983942 +706.986439 +706.988004 +706.990069 +706.993465 +707.370688 +707.373352 +707.375350 +707.377514 +707.690834 +707.692765 +707.694797 +707.698327 +707.812279 +707.817640 +707.820105 +707.822103 +707.824733 +709.879477 +709.882107 +709.883972 +709.886037 +709.889034 +710.197825 +710.200289 +710.202253 +710.204751 +710.669852 +710.672383 +710.674348 +710.677178 +710.997191 +711.000454 +711.003618 +711.005649 +711.010944 +711.416172 +711.418702 +711.420700 +711.423265 +711.720534 +711.725162 +711.727693 +711.730091 +711.734553 +712.092628 +712.115105 +712.117103 +712.119368 +712.123131 +712.293727 +712.341079 +712.343477 +712.346341 +712.402717 +712.484902 +712.516603 +712.518901 +712.520999 +712.523263 +712.526627 +712.790429 +712.792827 +712.794559 +712.796756 +712.799887 +713.879373 +713.882003 +713.884135 +713.887231 +714.643108 +714.645173 +714.648103 +714.718832 +714.721463 +714.725293 +714.843707 +714.846771 +714.849135 +714.851500 +715.316467 +715.318399 +715.320530 +715.324859 +715.567716 +715.570114 +715.572478 +715.574443 +715.577040 +715.577340 +715.580203 +715.901249 +715.907443 +715.909507 +715.915201 +716.364652 +716.367182 +716.369247 +716.371511 +716.375474 +716.616433 +716.629153 +716.631584 +716.633582 +716.635747 +716.640043 +721.543734 +722.947795 +723.257851 +723.261514 +723.263746 +723.269074 +725.127746 +725.135206 +725.143064 +725.145995 +725.147926 +725.150324 +725.824183 +729.661608 +729.663573 +729.665671 +729.669100 +731.156845 +736.466829 +736.478884 +737.432096 +737.477251 +737.500994 +737.503791 +737.506189 +738.562398 +738.569058 +738.574719 +740.396929 +740.401657 +740.404055 +740.405920 +740.407984 +740.410448 +741.001057 +741.062695 +741.073052 +741.076482 +741.080744 +741.082775 +741.085473 +742.109481 +742.961295 +743.038218 +743.047775 +743.054035 +743.058498 +744.777310 +744.780074 +744.781340 +744.784204 +744.786401 +744.788732 +744.949871 +745.379275 +746.387066 +746.391694 +746.393626 +746.397156 +746.811341 +749.060590 +750.351531 +750.355726 +750.360455 +750.362786 +750.365617 +751.946534 +755.265478 +755.423587 +756.057652 +756.059883 +756.063613 +756.065511 +756.067642 +756.069940 +757.897044 +758.746461 +759.714358 +760.308763 +760.313292 +760.982622 +761.625845 +761.627810 +761.629841 +761.632205 +765.107027 +765.109858 +765.113887 +765.116518 +767.322942 +772.237756 +772.240819 +772.242884 +772.245015 +772.247080 +786.292887 +786.296616 +786.298581 +786.300379 +786.302544 +786.306340 +787.359885 +787.362982 +787.364947 +787.367811 +787.607471 +787.629649 +787.631980 +787.634111 +787.637041 +787.852559 +787.855456 +787.857587 +787.860284 +788.058220 +788.060717 +788.062882 +788.066178 +788.203374 +788.206205 +788.208835 +788.212032 +788.340803 +788.344067 +788.348962 +788.432545 +788.437140 +788.441336 +788.450727 +788.527516 +788.532878 +788.538206 +788.546065 +788.611699 +788.628748 +788.671739 +788.689787 +788.739438 +788.789321 +788.816394 +788.854356 +788.888322 +788.935342 +788.972371 +789.002275 +789.040270 +789.081462 +789.130846 +789.177499 +789.217559 +789.253423 +789.293083 +789.323253 +789.350393 +789.378132 +789.414395 +789.449127 +789.480929 +789.537639 +789.575601 +789.620323 +789.660649 +789.702307 +789.730845 +789.761148 +789.800143 +789.834708 +789.872337 +789.907202 +789.943399 +789.976666 +790.013229 +790.049826 +790.095613 +790.127515 +790.160948 +790.195014 +790.223918 +790.256053 +790.291717 +790.326349 +790.351258 +790.389686 +790.420222 +790.456219 +790.497278 +790.535407 +790.576366 +790.618590 +790.658017 +790.693315 +790.728780 +790.782193 +790.826748 +790.869539 +790.898476 +790.937138 +790.980561 +791.011763 +791.051723 +791.098609 +791.142066 +791.189818 +791.230244 +791.318889 +791.355852 +791.393348 +791.430311 +791.478396 +791.525116 +791.568173 +791.611296 +791.649591 +791.688819 +791.727513 +791.767373 +791.807367 +791.845429 +791.885688 +791.927280 +791.959215 +791.993181 +792.032341 +792.111962 +792.154985 +792.200040 +792.241132 +792.275132 +792.303736 +792.350423 +792.391082 +792.439933 +792.489917 +792.531475 +792.574699 +792.611728 +792.644862 +792.689017 +792.732374 +792.767872 +792.824249 +792.870369 +792.916423 +792.929810 +792.959813 +792.996143 +793.041365 +793.072067 +793.098508 +793.125014 +793.125347 +793.148957 +793.180159 +793.212627 +793.247558 +793.285554 +793.358514 +793.395810 +793.428943 +793.471101 +793.503336 +793.530875 +793.564008 +793.600339 +793.641864 +793.687851 +793.735370 +793.781391 +793.828843 +793.871833 +793.934604 +793.974331 +794.006932 +794.044760 +794.128909 +794.189615 +794.238233 +794.272000 +794.303968 +794.340498 +794.393811 +794.438466 +794.482489 +794.537900 +794.586551 +794.627677 +794.678293 +794.748856 +794.810061 +794.868436 +794.928476 +795.002069 +795.080923 +795.153151 +795.219917 +795.262009 +795.311659 +795.352052 +795.391412 +795.417320 +795.455282 +795.497606 +795.544959 +795.595741 +795.641495 +795.694442 +795.738432 +795.826543 +795.912324 +795.959410 +796.014122 +796.064705 +796.122414 +796.170366 +796.234002 +796.280922 +796.328308 +796.388015 +796.428574 +796.472330 +796.509493 +796.594075 +796.657478 +796.678524 +796.732636 +796.786316 +796.845224 +796.908161 +796.969533 +797.015920 +797.110325 +797.181287 +797.262273 +797.325043 +797.347921 +797.409825 +797.456379 +797.536299 +797.584517 +797.627940 +797.705296 +797.771530 +797.827574 +797.884783 +797.931403 +797.975392 +798.063970 +798.103664 +798.180154 +798.290044 +798.302365 +798.344023 +798.380454 +798.419814 +798.430537 +798.448719 +798.513321 +798.561239 +798.602964 +798.661073 +798.724576 +798.760573 +798.803164 +798.827373 +798.869264 +798.902598 +798.942791 +798.984149 +799.039894 +799.093174 +799.137995 +799.171329 +799.223676 +799.263803 +799.313586 +799.362138 +799.461039 +799.495304 +799.541924 +799.592940 +799.654345 +799.716450 +799.760839 +799.811788 +799.884648 +799.947985 +799.997602 +800.059107 +800.229669 +800.330235 +800.418414 +800.583282 +800.688676 +800.773192 +800.865266 +800.891041 +800.954710 +801.025506 +801.075256 +801.161670 +801.226072 +801.299132 +801.360571 +801.542688 +801.598599 +801.777320 +801.867064 +802.164233 +802.296400 +802.351878 +802.462567 +802.567296 +802.639823 +802.737625 +802.837525 +802.959370 +803.001028 +803.064898 +803.121841 +803.191804 +803.271924 +803.339989 +803.400229 +803.465097 +803.512783 +803.585910 +803.661367 +803.757704 +803.848047 +803.932063 +803.970625 +804.069259 +804.167494 +804.184510 +804.269825 +804.447381 +804.641919 +804.683045 +804.819575 +805.203424 +805.453973 +805.899127 +806.324069 +806.399094 +806.493366 +806.538954 +806.561032 +806.670955 +806.857801 +806.939419 +807.046512 +807.121637 +807.195896 +807.304920 +807.381910 +807.536955 +807.597228 +807.676981 +808.095695 +808.233224 +808.560896 +809.039884 +811.426594 +811.431523 +811.633521 +811.815538 +811.822964 +811.831922 +812.103184 +812.111076 +812.347539 +812.352135 +812.356231 +812.507579 +812.515005 +812.524529 +812.675245 +812.683137 +812.879607 +813.029956 +813.143143 +813.182071 +813.275311 +813.372880 +813.465720 +813.629023 +813.674711 +813.714970 +813.783502 +813.872746 +813.986399 +814.044374 +814.204880 +814.294757 +814.444940 +814.619199 +814.919132 +815.012472 +815.066284 +815.141243 +815.308009 +815.370913 +815.420696 +815.495188 +815.540643 +816.467881 +816.741474 +816.800981 +816.911704 +817.022560 +817.125457 +817.256858 +817.296219 +817.378470 +817.475173 +817.559356 +817.625689 +817.691956 +817.723924 +817.787627 +817.857957 +817.918330 +817.962286 +818.032482 +818.127720 +818.192988 +818.256924 +818.304476 +818.353427 +818.449265 +818.533813 +818.628752 +818.671276 +818.723057 +818.894586 +818.958089 +819.018895 +819.061618 +819.133180 +819.177569 +819.264982 +819.371974 +819.554458 +819.634945 +819.749297 +819.811867 +819.884994 +819.951827 +820.073539 +820.131348 +820.243569 +820.355457 +820.433945 +820.493685 +820.565813 +820.619859 +820.715396 +820.811334 +820.888323 +820.932146 +821.003108 +821.100944 +821.158186 +821.273205 +821.363414 +821.441203 +821.515762 +821.615662 +821.678166 +821.705172 +821.790287 +821.929581 +822.022621 +822.074269 +822.100776 +822.140570 +822.175102 +822.367143 +822.474436 +822.537639 +822.579430 +822.611998 +822.657053 +822.822953 +822.921655 +822.925517 +822.985391 +823.053190 +823.179297 +823.319023 +823.430978 +823.468341 +823.510898 +823.543399 +823.615194 +823.652323 +823.735873 +823.820322 +823.891983 +823.988154 +824.019156 +824.049492 +824.091184 +824.273501 +824.313761 +824.335040 +824.361846 +824.402506 +824.522219 +824.673667 +824.806801 +824.908299 +824.992049 +825.088785 +825.186754 +825.329045 +825.429078 +825.510763 +825.542997 +825.702404 +825.810296 +825.862477 +825.933340 +825.979494 +826.001105 +826.026846 +826.109430 +826.197242 +826.303270 +826.340166 +826.384089 +826.390549 +826.395577 +826.422817 +826.466773 +826.494278 +826.521484 +826.600039 +826.725547 +826.824348 +826.882923 +826.964141 +827.060112 +827.153219 +827.260545 +827.431274 +827.605100 +827.695809 +827.788949 +827.919352 +828.049921 +828.108363 +828.203634 +828.262309 +828.335102 +828.411359 +828.475628 +828.536834 +828.607063 +828.710660 +828.766371 +828.827310 +828.883187 +828.952185 +828.978092 +829.003500 +829.030573 +829.141229 +829.220782 +829.280356 +829.342627 +829.384485 +829.527709 +829.592510 +829.692211 +829.748587 +829.779357 +829.829040 +829.864105 +829.878058 +829.904964 +829.950552 +830.108627 +830.203565 +830.315620 +830.391144 +830.425010 +830.453682 +830.512256 +830.545989 +830.593408 +830.627141 +830.634800 +830.685550 +830.881021 +830.965403 +831.079988 +831.092675 +831.152515 +831.210857 +831.271563 +831.359308 +831.545256 +831.703764 +831.765901 +831.824476 +831.853913 +831.885415 +832.056411 +832.093240 +832.278755 +832.503230 +832.657209 +832.741159 +832.803430 +832.845521 +832.984115 +833.119180 +833.292373 +833.331534 +833.410022 +833.492273 +833.564002 +833.636296 +833.711121 +833.781550 +833.875223 +833.979752 +834.413618 +834.421576 +834.432199 +834.570361 +834.580884 +834.595303 +834.683881 +834.710254 +834.745585 +834.788443 +834.844387 +834.888775 +834.993970 +835.071359 +835.125971 +835.162268 +835.277886 +835.352878 +835.416314 +835.487410 +835.551312 +835.611419 +835.678185 +835.744885 +835.811185 +835.894402 +835.977286 +836.062134 +836.134495 +836.322141 +836.414248 +836.461002 +836.552577 +836.654108 +836.733396 +836.805757 +836.851045 +836.921141 +837.013315 +837.243418 +837.389406 +837.516645 +837.619808 +837.677184 +837.741753 +837.803425 +837.903558 +838.008886 +838.098829 +838.200660 +838.268659 +838.372721 +838.658435 +838.733893 +838.880080 +839.039088 +840.689036 +840.692266 +840.694897 +840.699492 +841.392532 +841.396894 +841.400091 +841.718372 +841.722069 +841.725232 +841.952738 +841.956534 +842.324466 +842.329361 +842.333190 +842.447176 +842.482274 +842.488368 +842.496127 +842.683806 +842.739350 +842.867489 +843.328727 +843.660795 +843.688001 +844.392429 +844.711510 +852.223823 +852.489590 +852.491622 +852.493586 +852.496051 +853.066113 +853.068711 +853.070642 +853.073040 +853.078767 +853.434345 +853.436875 +853.438973 +853.441704 +853.722756 +853.725320 +853.727551 +853.731081 +853.867178 +853.869809 +853.872373 +853.876569 +854.152459 +854.155356 +854.157621 +854.161850 +854.276668 +854.279599 +854.282496 +854.287191 +854.455789 +854.459718 +854.463415 +854.584194 +854.588256 +854.593584 +854.623188 +854.661117 +854.674870 +854.688123 +854.770274 +854.781396 +854.856221 +854.920857 +854.995016 +855.034743 +855.087656 +855.120790 +855.163880 +855.215095 +855.283893 +855.350660 +855.417160 +855.473770 +855.535808 +855.594183 +855.621289 +855.657686 +855.697746 +855.742834 +855.835308 +855.931378 +856.009867 +856.095448 +856.139670 +856.209267 +856.276433 +856.343466 +856.444665 +856.551491 +856.634375 +856.727415 +856.809300 +856.850192 +856.980229 +857.056652 +857.123185 +857.197411 +857.292616 +857.425916 +857.535839 +857.599109 +857.731044 +857.826148 +857.898643 +857.963644 +858.031543 +858.268139 +858.308033 +858.427546 +858.505302 +858.524849 +858.535172 +858.555785 +858.575798 +858.616024 +858.637969 +858.676564 +858.728911 +859.163710 +859.172334 +859.198441 +859.385221 +859.390915 +859.396743 +859.665274 +859.670935 +859.678361 +859.805001 +859.812727 +859.826047 +859.947658 +859.968604 +859.987918 +860.097208 +860.128144 +860.163076 +860.223482 +860.285853 +860.355250 +860.446093 +860.479892 +860.492879 +860.520185 +860.547258 +860.564374 +860.630142 +860.754717 +860.794211 +860.857148 +860.901570 +860.924281 +860.938799 +860.990881 +861.069235 +861.314823 +861.390181 +861.445392 +861.579491 +861.621916 +861.743427 +861.796507 +861.884986 +862.100770 +862.152751 +862.259544 +862.349953 +862.440996 +862.656780 +862.708295 +862.934135 +862.954848 +863.120149 +863.133070 +863.180988 +863.302666 +863.330272 +863.449519 +863.534634 +863.578257 +863.609626 +863.654381 +863.756246 +863.789612 +863.940761 +864.003565 +864.035733 +864.059476 +864.094807 +864.199802 +864.787580 +864.791443 +864.794473 +865.162571 +865.167000 +865.170863 +865.392907 +865.398235 +865.403563 +865.565734 +865.572261 +865.578688 +865.704695 +865.710523 +865.720246 +865.810456 +865.820146 +865.927472 +865.958075 +866.034066 +866.067332 +866.139560 +866.205461 +866.239227 +866.282251 +866.308657 +866.326406 +866.341291 +866.363569 +866.401598 +866.423875 +866.473459 +866.501331 +866.629836 +866.689110 +866.779087 +866.838127 +866.880319 +866.933932 +866.997301 +867.082783 +867.139592 +867.217514 +867.341657 +867.380551 +867.422409 +867.467431 +867.507657 +867.541324 +867.573325 +867.617314 +867.652645 +867.690308 +867.828969 +867.860138 +867.883648 +867.897034 +867.946252 +867.975322 +868.284879 +868.305559 +868.434962 +868.518745 +868.544419 +868.607190 +868.631466 +868.664266 +868.752778 +868.765498 +868.863600 +868.941156 +869.054209 +869.536859 +869.633429 +869.665830 +869.710352 +869.735660 +869.752444 +869.774155 +869.798497 +869.840788 +870.029100 +870.059669 +870.491204 +870.497997 +870.517311 +870.576219 +870.589406 +870.629466 +870.649479 +870.686875 +870.734128 +870.797131 +870.872689 +870.962466 +871.056971 +871.192735 +871.296198 +871.397364 +871.494034 +871.537723 +871.669691 +871.736857 +871.784343 +871.820007 +871.847180 +871.884576 +871.927899 +872.021872 +872.137689 +872.352141 +872.420073 +872.562597 +872.643783 +872.729497 +872.798461 +872.834592 +873.020239 +873.156103 +873.191135 +873.302956 +873.382610 +873.449110 +873.546912 +873.595430 +873.624901 +873.702490 +873.744481 +873.792832 +873.813212 +873.876582 +873.972153 +874.164061 +874.363861 +874.483341 +874.677514 +874.817240 +874.875316 +874.916974 +875.006551 +875.081476 +875.160397 +875.298026 +875.546743 +875.568422 +875.572484 +875.576680 +875.854302 +875.859963 +875.865558 +876.059364 +876.063293 +876.066889 +876.223599 +876.228195 +876.231891 +876.242347 +876.368454 +876.372750 +876.377046 +876.440482 +876.462560 +876.526796 +876.537785 +876.565823 +876.609546 +876.653569 +876.688134 +876.737418 +876.777545 +876.826895 +876.867022 +876.905450 +876.945643 +876.989732 +877.025929 +877.059962 +877.107814 +877.143745 +877.189233 +877.234687 +877.314640 +877.358763 +877.399789 +877.441580 +877.485469 +877.534154 +877.582772 +877.636019 +877.683038 +877.734653 +877.790930 +877.836818 +877.898423 +877.959961 +878.026295 +878.085036 +878.155599 +878.202518 +878.264057 +878.293594 +878.350204 +878.404716 +878.450703 +878.491096 +878.548472 +878.592228 +878.630623 +878.710410 +878.775778 +878.834020 +878.898422 +878.968984 +879.074279 +879.141645 +879.160792 +879.233220 +879.375145 +879.425194 +879.521065 +879.525394 +880.351967 +880.354331 +880.367018 +880.371148 +880.566252 +880.569516 +880.571947 +880.682702 +880.686232 +880.689296 +880.694024 +880.819832 +880.823362 +880.825826 +880.829988 +881.015969 +881.018966 +881.021530 +881.025493 +881.178240 +881.181170 +881.183601 +881.187464 +881.333318 +881.336648 +881.339378 +881.344007 +881.463554 +881.467051 +881.470314 +881.476408 +881.585665 +881.589794 +881.593524 +881.599718 +881.663720 +881.683767 +881.729821 +881.747037 +881.771479 +881.797986 +881.817300 +881.839411 +881.851366 +881.872978 +881.897653 +881.916834 +881.929354 +881.979737 +882.000783 +882.020796 +882.045338 +882.081202 +882.113437 +882.144872 +882.176907 +882.198585 +882.226057 +882.240443 +882.259091 +882.284332 +882.307509 +882.326890 +882.342874 +882.373477 +882.394522 +882.405211 +882.440743 +882.477273 +882.512937 +882.549933 +882.585431 +882.621428 +882.653796 +882.685331 +882.721262 +882.756193 +882.793156 +882.825890 +882.855894 +882.894622 +882.926656 +882.955894 +882.989094 +883.022593 +883.056759 +883.085963 +883.118564 +883.126789 +883.169247 +883.205743 +883.238944 +883.272044 +883.308441 +883.349000 +883.384698 +883.422260 +883.454528 +883.487195 +883.519796 +883.552763 +883.585497 +883.608241 +883.649100 +883.682833 +883.717132 +883.784198 +883.817897 +883.854561 +883.891390 +883.932316 +883.980701 +884.030218 +884.070911 +884.113568 +884.193288 +884.227288 +884.274207 +884.358689 +884.405276 +884.459222 +884.500381 +884.546168 +884.595153 +884.635745 +884.687327 +884.732548 +884.776604 +884.817097 +884.864583 +884.906874 +884.956990 +885.008173 +885.051629 +885.089158 +885.130284 +885.161785 +885.194586 +885.225089 +885.271209 +885.313067 +885.337809 +885.382032 +885.444369 +885.479401 +885.561918 +885.612168 +885.676470 +885.739674 +885.793986 +885.865847 +885.933946 +886.004109 +886.082364 +886.158022 +886.179633 +886.277902 +886.345101 +886.430615 +886.489024 +886.541005 +886.585760 +886.646666 +886.718028 +886.790955 +886.854391 +886.931880 +887.008470 +887.087125 +887.173805 +887.255223 +887.319592 +887.424554 +887.489888 +887.574870 +887.686691 +887.891220 +887.966178 +888.033744 +888.107370 +888.166711 +888.201876 +888.261283 +888.314296 +888.374736 +888.478665 +888.581163 +888.712231 +888.847263 +888.976201 +889.042867 +889.156387 +889.199644 +889.251525 +889.349061 +889.479796 +889.566443 +889.925317 +889.969873 +890.048028 +890.882159 +890.885123 +890.887354 +890.890151 +891.189618 +891.192149 +891.194447 +891.197810 +891.377164 +891.379661 +891.382625 +891.526681 +891.530111 +891.532841 +891.537370 +891.708299 +891.711463 +891.713794 +891.717523 +891.827680 +891.831509 +891.833807 +891.836937 +891.952521 +891.956084 +891.959115 +891.963643 +892.083956 +892.087486 +892.090050 +892.094479 +892.228678 +892.231975 +892.234772 +892.240866 +892.348691 +892.352787 +892.356517 +892.364642 +892.472934 +892.477629 +892.483024 +892.490516 +892.547925 +892.560346 +892.623183 +892.641432 +892.676330 +892.700006 +892.732108 +892.760612 +892.790316 +892.824115 +892.855018 +892.884289 +892.916157 +892.947958 +892.977695 +893.010995 +893.041365 +893.076929 +893.103336 +893.136236 +893.170735 +893.201105 +893.233572 +893.267139 +893.296809 +893.333805 +893.367571 +893.392080 +893.430475 +893.466606 +893.498540 +893.526246 +893.558680 +893.631307 +893.666006 +893.697042 +893.737734 +893.774065 +893.806399 +893.839799 +893.872866 +893.898906 +893.940898 +893.969336 +894.000904 +894.030808 +894.092646 +894.126312 +894.165173 +894.197807 +894.284054 +894.322049 +894.357414 +894.393445 +894.406498 +894.434270 +894.477394 +894.513091 +894.555349 +894.585286 +894.624880 +894.661077 +894.709628 +894.749821 +894.789415 +894.839798 +894.876161 +894.917820 +894.957746 +894.976028 +895.007796 +895.054616 +895.094343 +895.124280 +895.170300 +895.202901 +895.232138 +895.280257 +895.315588 +895.355681 +895.384419 +895.414289 +895.447390 +895.493077 +895.541629 +895.590646 +895.631239 +895.682787 +895.719617 +895.764206 +895.850386 +895.884918 +895.924412 +895.999037 +896.035900 +896.120116 +896.158478 +896.213556 +896.268867 +896.310126 +896.358977 +896.412190 +896.482453 +896.557312 +896.619749 +896.712856 +896.772896 +896.817851 +896.853649 +896.918783 +896.960408 +897.024577 +897.077458 +897.152849 +897.224078 +897.291444 +897.365470 +897.423345 +897.493009 +897.533268 +897.568300 +897.644224 +897.745922 +897.817883 +897.870031 +897.923777 +897.966535 +898.032202 +898.069065 +898.118216 +898.159108 +898.270164 +898.313121 +898.473460 +898.558975 +898.680287 +898.746254 +898.868132 +898.953613 +899.058175 +899.185747 +899.216150 +899.273826 +899.317083 +899.397902 +899.465701 +899.558741 +899.920212 +899.950315 +900.006426 +900.453512 +900.461870 +900.467431 +900.639459 +900.644421 +900.648084 +900.651414 +900.656309 +900.887078 +900.891340 +900.894970 +901.046318 +901.050514 +901.063501 +901.211253 +901.214950 +901.218413 +901.222775 +901.353344 +901.357041 +901.360104 +901.365066 +901.426538 +901.431366 +901.435629 +901.443321 +901.598799 +901.601929 +901.604992 +901.609754 +901.765165 +901.771126 +901.775289 +901.904193 +901.908156 +901.911286 +901.916914 +902.030400 +902.033863 +902.039058 +902.140390 +902.146650 +902.150446 +902.155108 +902.236027 +902.244685 +902.255974 +902.306457 +902.326770 +902.364033 +902.390007 +902.424139 +902.454043 +902.483813 +902.514382 +902.548848 +902.578418 +902.603759 +902.630799 +902.658771 +902.694469 +902.723506 +902.756307 +902.782614 +902.813583 +902.841222 +902.871292 +902.901728 +902.927202 +902.952877 +902.990772 +903.024372 +903.052610 +903.085078 +903.110952 +903.139490 +903.177418 +903.209786 +903.241654 +903.271491 +903.306889 +903.336526 +903.369160 +903.401228 +903.426802 +903.464897 +903.498797 +903.533296 +903.563132 +903.593735 +903.629466 +903.669359 +903.698896 +903.731664 +903.770525 +903.792869 +903.820608 +903.857837 +903.892736 +903.939955 +903.986908 +904.027068 +904.071956 +904.115613 +904.155073 +904.189106 +904.235826 +904.277284 +904.317144 +904.362832 +904.408886 +904.453541 +904.501726 +904.586441 +904.631296 +904.666495 +904.708752 +904.743318 +904.779515 +904.821206 +904.858469 +904.899994 +904.941686 +904.979015 +905.044583 +905.088938 +905.135558 +905.183777 +905.222338 +905.267593 +905.312648 +905.363364 +905.404090 +905.477882 +905.516077 +905.532694 +905.626900 +905.699061 +905.746414 +905.797596 +905.847779 +905.891368 +905.929131 +905.976084 +906.065860 +906.097795 +906.152341 +906.191834 +906.236789 +906.256636 +906.320173 +906.366559 +906.406919 +906.412547 +906.491101 +906.579513 +906.634691 +906.691068 +906.746446 +906.799626 +906.846446 +906.891667 +906.948011 +907.004621 +907.061697 +907.106319 +907.144348 +907.183642 +907.201424 +907.254337 +907.284174 +907.330661 +907.391367 +907.467591 +907.523834 +907.586438 +907.634290 +907.692832 +907.747111 +907.788902 +907.834923 +907.838586 +907.899658 +907.942315 +908.004120 +908.057034 +908.118206 +908.278146 +908.474683 +908.560597 +908.611945 +908.618305 +908.645179 +908.705585 +908.885904 +908.921968 +908.986370 +909.051172 +909.092731 +909.170353 +909.231358 +909.309480 +909.365125 +909.404585 +909.434555 +909.451904 +909.467689 +909.502054 +909.573050 +909.585870 +909.601255 +909.639949 +909.749373 +909.844445 +910.076646 +910.115940 +910.217205 +910.275580 +910.347774 +910.401720 +910.436319 +910.497325 +910.526429 +910.547308 +910.562293 +910.652136 +910.702686 +910.812509 +910.862592 +910.947940 +911.047740 +911.091030 +911.138816 +911.193927 +911.221333 +911.267554 +911.308446 +911.345575 +911.373048 +911.479908 +911.497090 +911.551270 +911.606248 +911.667387 +911.890597 +911.912608 +912.075678 +912.106447 +912.132488 +912.198788 +912.228525 +912.254532 +912.280207 +912.328525 +912.427492 +912.455331 +912.627126 +912.672481 +912.780273 +912.903882 +912.963589 +913.027758 +913.084335 +913.151268 +913.186433 +913.223029 +913.258061 +913.284068 +913.321065 +913.390029 +913.463256 +913.552167 +913.606446 +913.644907 +913.686199 +913.752333 +913.875210 +914.757793 +914.761256 +914.763687 +914.766385 +914.772179 +914.954563 +914.957527 +914.959724 +914.962422 +914.969348 +915.119298 +915.122328 +915.124859 +915.128455 +915.371845 +915.374742 +915.377007 +915.380037 +915.590959 +915.593923 +915.599151 +915.765584 +915.768049 +915.770346 +915.773377 +915.854728 +915.858491 +915.861555 +915.866983 +915.998851 +916.003446 +916.006610 +916.010905 +916.055361 +916.064152 +916.070080 +916.077272 +916.182067 +916.186163 +916.190226 +916.207708 +916.294322 +916.299483 +916.304711 +916.337412 +916.371345 +916.388561 +916.410838 +916.440409 +916.468015 +916.503845 +916.533316 +916.560855 +916.583932 +916.615167 +916.646303 +916.677705 +916.708940 +916.743505 +916.773942 +916.800948 +916.852796 +916.877072 +916.893888 +916.924657 +916.951864 +916.977505 +916.993056 +917.017231 +917.045004 +917.069279 +917.096452 +917.117231 +917.140641 +917.163685 +917.184864 +917.208407 +917.236445 +917.259056 +917.280368 +917.309739 +917.345436 +917.378803 +917.408873 +917.442839 +917.467348 +917.505476 +917.541473 +917.575872 +917.609139 +917.641540 +917.671676 +917.705076 +917.740507 +917.778403 +917.808739 +917.841839 +917.868746 +917.893754 +917.919761 +917.940807 +917.968746 +917.991823 +918.017397 +918.041673 +918.063984 +918.086794 +918.111869 +918.139708 +918.156924 +918.189824 +918.235412 +918.270310 +918.324956 +918.353261 +918.394619 +918.431083 +918.476937 +918.512002 +918.549131 +918.593454 +918.635045 +918.671709 +918.711835 +918.749764 +918.789091 +918.825688 +918.864449 +918.907606 +918.945668 +918.983030 +919.021925 +919.057556 +919.093054 +919.134379 +919.177069 +919.213999 +919.253127 +919.339607 +919.376070 +919.418827 +919.459820 +919.499180 +919.537775 +919.581132 +919.620592 +919.666912 +919.705008 +919.746366 +919.789257 +919.832613 +919.870642 +919.912966 +919.954358 +919.986559 +920.036609 +920.077069 +920.116795 +920.150495 +920.183129 +920.267778 +920.345733 +920.381164 +920.411167 +920.457954 +920.510002 +920.552992 +920.613998 +920.651027 +920.749129 +920.798080 +920.853391 +920.903208 +921.003941 +921.073671 +921.130214 +921.189289 +921.239538 +921.305106 +921.360484 +921.410367 +921.460284 +921.507537 +921.556687 +921.596514 +921.644200 +921.753091 +921.810833 +921.873104 +921.939371 +922.015362 +922.136274 +922.170606 +922.233543 +922.318192 +922.383427 +922.526217 +922.584226 +922.659717 +922.757652 +922.830912 +922.899443 +922.954155 +923.023286 +923.079097 +923.167042 +923.222686 +923.292650 +923.356486 +923.412796 +923.474235 +926.196410 +926.198474 +926.200439 +926.202570 +926.537901 +926.540765 +926.542896 +926.545893 +926.753252 +926.755583 +926.757681 +926.760145 +926.991780 +926.994444 +926.996742 +927.170235 +927.172899 +927.175330 +927.178726 +927.297940 +927.301204 +927.304168 +927.308963 +927.376861 +927.385386 +927.395010 +927.478460 +927.485586 +927.501670 +927.629176 +927.635935 +927.648190 +927.780291 +927.787084 +927.794210 +927.914124 +927.922249 +927.939498 +928.021383 +928.030241 +928.054650 +928.085452 +928.108030 +928.142395 +928.164307 +928.200737 +928.224679 +928.262375 +928.284187 +928.295042 +928.343028 +928.378825 +928.402868 +928.444293 +928.459578 +928.516154 +928.547889 +928.608229 +928.650187 +928.698538 +928.738399 +928.770899 +928.797906 +928.840863 +928.890280 +928.933603 +928.986117 +929.024312 +929.079224 +929.115987 +929.178125 +929.214688 +929.263240 +929.308095 +929.342694 +929.380889 +929.430040 +929.458311 +929.493776 +929.536699 +929.586583 +929.638131 +929.691045 +929.743626 +929.794675 +929.840462 +929.899803 +929.934901 +929.986816 +930.029073 +930.072363 +930.130272 +930.195174 +930.253782 +930.300069 +930.335333 +930.370232 +930.403998 +930.436532 +930.486449 +930.536865 +930.596139 +930.668400 +930.763105 +930.834600 +930.907061 +930.980088 +931.048486 +931.099302 +931.113088 +931.164803 +931.244790 +931.284150 +931.322212 +931.364770 +931.443158 +931.530937 +931.669065 +931.764469 +931.827007 +931.874126 +931.947853 +933.298334 +933.300399 +933.303029 +933.573292 +933.576256 +933.578420 +933.581750 +933.948017 +933.950748 +933.953145 +933.957408 +934.207724 +934.210488 +934.212885 +934.216482 +934.381050 +934.383714 +934.386112 +934.389675 +934.514583 +934.517780 +934.520011 +934.523075 +934.656042 +934.658939 +934.661569 +934.665166 +934.780251 +934.784180 +934.787643 +934.790707 +934.797433 +934.995302 +934.998299 +935.000930 +935.004759 +935.185978 +935.188609 +935.191106 +935.194836 +935.339491 +935.342122 +935.344519 +935.347616 +935.474855 +935.478085 +935.480849 +935.485078 +935.589008 +935.593170 +935.596933 +935.601862 +935.700596 +935.704892 +935.709354 +935.735028 +935.774455 +935.786310 +935.817812 +935.841855 +935.870126 +935.899497 +935.934662 +935.956373 +935.988008 +936.019710 +936.034728 +936.083546 +936.109687 +936.143619 +936.154009 +936.167595 +936.218111 +936.248281 +936.276087 +936.320575 +936.350179 +936.388774 +936.421941 +936.465930 +936.499996 +936.530965 +936.566796 +936.601095 +936.632763 +936.661534 +936.701960 +936.739922 +936.773156 +936.813082 +936.853675 +936.891138 +936.937391 +936.976719 +937.009020 +937.071291 +937.115047 +937.137391 +937.158836 +937.193435 +937.205823 +937.275320 +937.313914 +937.363498 +937.407854 +937.455839 +937.507088 +937.547181 +937.594134 +937.632329 +937.673887 +937.725136 +937.766495 +937.807753 +937.847780 +937.927800 +937.977084 +938.010317 +938.043051 +938.069258 +938.102059 +938.156771 +938.185542 +938.213980 +938.224570 +938.257070 +938.290903 +938.361266 +938.372588 +938.383144 +938.412148 +938.442818 +938.537290 +938.597063 +938.674919 +938.715478 +938.794000 +938.900193 +938.932061 +939.006820 +939.049644 +939.095498 +939.103123 +939.193733 +939.214645 +939.296297 +939.326633 +939.414712 +939.570356 +939.713146 +940.183242 +940.187438 +940.190269 +940.194498 +940.264494 +940.279612 +940.285640 +940.292033 +940.439219 +940.445813 +940.449043 +940.456269 +940.661630 +940.665127 +940.668290 +940.674051 +940.913212 +940.916308 +940.918873 +940.922536 +941.088769 +941.091700 +941.094164 +941.097760 +941.296328 +941.299159 +941.301323 +941.304520 +941.499292 +941.502022 +941.504386 +941.507550 +941.632358 +941.635522 +941.637986 +941.641616 +941.760097 +941.763560 +941.766324 +941.770220 +941.905418 +941.909448 +941.912445 +941.918971 +942.033124 +942.037453 +942.041549 +942.069055 +942.079144 +942.145844 +942.159031 +942.198192 +942.223200 +942.284039 +942.314542 +942.344912 +942.379177 +942.417472 +942.445911 +942.505451 +942.542314 +942.576846 +942.636420 +942.668754 +942.692497 +942.723866 +942.750905 +942.784771 +942.822367 +942.853236 +942.890033 +942.927795 +942.963160 +942.999723 +943.034688 +943.071817 +943.110812 +943.147775 +943.181474 +943.218537 +943.258497 +943.293962 +943.332190 +943.366223 +943.399190 +943.439316 +943.471251 +943.507481 +943.536752 +943.566123 +943.602853 +943.658330 +943.684604 +943.721101 +943.790731 +943.824531 +943.868453 +943.915806 +943.945976 +943.986668 +944.030824 +944.067288 +944.119702 +944.159362 +944.209812 +944.246808 +944.309845 +944.357530 +944.408713 +944.454367 +944.511077 +944.564323 +944.617204 +944.659861 +944.710510 +944.759128 +944.814473 +944.869152 +944.914573 +944.955132 +944.978242 +945.031522 +945.092128 +945.151069 +945.210477 +945.228392 +945.272681 +945.351502 +945.381872 +945.450237 +945.483670 +945.554466 +945.557296 +945.665488 +945.739747 +945.768118 +945.809144 +945.899221 +945.934951 +946.028391 +946.109077 +946.168884 +946.242943 +946.322797 +946.430689 +946.468651 +946.547472 +946.617435 +946.673013 +946.765287 +946.801617 +946.963555 +947.150568 +947.331420 +947.440111 +947.824726 +947.827823 +947.830254 +947.832952 +950.742373 +951.879734 +951.882265 +951.884263 +951.886194 +951.889058 +952.494419 +952.497016 +952.499014 +952.501845 +952.689790 +952.692287 +952.694452 +952.697482 +952.703210 +952.762450 +952.767312 +952.770243 +952.772873 +952.776070 +952.922524 +952.925021 +952.927152 +952.929517 +952.933346 +953.337808 +953.340239 +953.342403 +953.345800 +953.584861 +953.587558 +953.589889 +953.593685 +953.734411 +953.736975 +953.739073 +953.742103 +953.949729 +953.952526 +953.954624 +953.957987 +954.134977 +954.137974 +954.140737 +954.145200 +954.339139 +954.342103 +954.344667 +954.348729 +954.511899 +954.514730 +954.517227 +954.520990 +954.650094 +954.653191 +954.656388 +954.661516 +954.806238 +954.809302 +954.812132 +954.816761 +954.937973 +954.941269 +954.944167 +954.948429 +955.034643 +955.039704 +955.044633 +955.073970 +955.143267 +955.152025 +955.164879 +955.224919 +955.234709 +955.267776 +955.301143 +955.336674 +955.367709 +955.390620 +955.402441 +955.438538 +955.470007 +955.509767 +955.553890 +955.561415 +955.586590 +955.648661 +955.674602 +955.705837 +955.744299 +955.784792 +955.844232 +955.883060 +955.912531 +955.949793 +955.974002 +956.016893 +956.063979 +956.109800 +956.149760 +956.193050 +956.231445 +956.279030 +956.328281 +956.373136 +956.424651 +956.468308 +956.515560 +956.554122 +956.603006 +956.632543 +956.680961 +956.716126 +956.732543 +956.749226 +956.800042 +956.836339 +956.872203 +956.936139 +956.943832 +956.958417 +957.066142 +957.161614 +957.214827 +957.258017 +957.334374 +957.381960 +957.458017 +957.521087 +957.585523 +957.647028 +957.703504 +957.787420 +957.843298 +957.926814 +957.992049 +958.061513 +958.130977 +958.190017 +958.260747 +958.333574 +958.391716 +958.452288 +958.510863 +958.573067 +958.608898 +958.668638 +958.708765 +958.793846 +958.911595 +958.988884 +959.334139 +959.343696 +959.348491 +959.352487 +959.821784 +959.824748 +959.828178 +960.141631 +960.145060 +960.147625 +960.152020 +960.512759 +960.515823 +960.518320 +960.522816 +960.698140 +960.700538 +960.702602 +960.705067 +960.709296 +960.955816 +960.958246 +960.960378 +960.963075 +961.129908 +961.132405 +961.134337 +961.136934 +961.248856 +961.251120 +961.253085 +961.255582 +961.260844 +961.464406 +961.466804 +961.468802 +961.471466 +961.477760 +961.631073 +961.633437 +961.635435 +961.645825 +961.817686 +961.820450 +961.822681 +961.825911 +962.014855 +962.017420 +962.019617 +962.022648 +962.182021 +962.184719 +962.187083 +962.190280 +962.358678 +962.361442 +962.363806 +962.367502 +962.523946 +962.526710 +962.529041 +962.532604 +962.686383 +962.689147 +962.691645 +962.695208 +962.813956 +962.817186 +962.819983 +962.823846 +962.939097 +962.942827 +962.945990 +962.950286 +963.036067 +963.040063 +963.044392 +963.052583 +963.154082 +963.157878 +963.161408 +963.169333 +963.266702 +963.271131 +963.275161 +963.289946 +963.393342 +963.397971 +963.402733 +963.419649 +963.501767 +963.509060 +963.518317 +963.566436 +963.589113 +963.632636 +963.650252 +963.661407 +963.699436 +963.724944 +963.753981 +963.788780 +963.823778 +963.861007 +963.895207 +963.928873 +963.958010 +963.990877 +964.025509 +964.061740 +964.095340 +964.127507 +964.166402 +964.207727 +964.240461 +964.272196 +964.292709 +964.322645 +964.354713 +964.382619 +964.404230 +964.430104 +964.465402 +964.504363 +964.524543 +964.533767 +964.582019 +964.593841 +964.668299 +964.710823 +964.749285 +964.787280 +964.832602 +964.872728 +964.911689 +964.958143 +965.001799 +965.030237 +965.078855 +965.118748 +965.157110 +965.197403 +965.244123 +965.278222 +965.317882 +965.358808 +965.402664 +965.436963 +965.482484 +965.506294 +965.531668 +965.548851 +965.574659 +965.607459 +965.642391 +965.666134 +965.704662 +965.811588 +965.864269 +965.897169 +965.934732 +965.963869 +965.983416 +966.017116 +966.058907 +966.083616 +966.106327 +966.126706 +966.144588 +966.219080 +966.283249 +966.332600 +966.467165 +966.470296 +966.504428 +966.571061 +966.585147 +966.609756 +966.701464 +966.752713 +966.813685 +966.880418 +966.926506 +966.968264 +967.007924 +967.047185 +967.069995 +967.098234 +967.132799 +967.190841 +967.215083 +967.394770 +967.431267 +967.454111 +967.491573 +967.518346 +967.561936 +967.609289 +967.649981 +967.705959 +967.731466 +967.754976 +967.792172 +967.814417 +967.867297 +967.907290 +967.954144 +967.978985 +967.988542 +968.021676 +968.076854 +968.229435 +968.394236 +968.458772 +968.470294 +968.488042 +968.536827 +968.585645 +968.648981 +968.688009 +968.722941 +968.761535 +968.814616 +968.888841 +968.922341 +968.964232 +969.045651 +969.208455 +969.819143 +969.821874 +969.824072 +969.826802 +969.832230 +969.942087 +969.945484 +969.947648 +969.950312 +969.954674 +970.104891 +970.107322 +970.109253 +970.112117 +970.248847 +970.251577 +970.253775 +970.264864 +970.348180 +970.351177 +970.354008 +970.357238 +970.469126 +970.472989 +970.476286 +970.479083 +970.484611 +970.600961 +970.603924 +970.606255 +970.609186 +970.761100 +970.766528 +970.768959 +970.773322 +970.969958 +970.972922 +970.975286 +970.978849 +971.166228 +971.168826 +971.171123 +971.174387 +971.322705 +971.325469 +971.327933 +971.331163 +971.456071 +971.459768 +971.462265 +971.476751 +971.539421 +971.544550 +971.548346 +971.552209 +971.633061 +971.636990 +971.641752 +971.653441 +971.719907 +971.726900 +971.750743 +971.812881 +971.878082 +971.880713 +971.886740 +971.952641 +971.965428 +971.978815 +971.982445 +972.033460 +972.051509 +972.094099 +972.126800 +972.139421 +972.201292 +972.260300 +972.273353 +972.331728 +972.352674 +972.417243 +972.449311 +972.489870 +972.571888 +972.611581 +972.649011 +972.698561 +972.736090 +972.770522 +972.812380 +972.843016 +972.884142 +972.911681 +972.983343 +973.031794 +973.078015 +973.112746 +973.169889 +973.240885 +973.278547 +973.359433 +973.414611 +973.455104 +973.484674 +973.516043 +973.586506 +973.643315 +973.660964 +973.691134 +973.740052 +973.838487 +973.882309 +973.941317 +973.981344 +974.044780 +974.112812 +974.164227 +974.239152 +974.323734 +974.408716 +974.469522 +974.580078 +974.595229 +974.608782 +974.654536 +974.751706 +974.758099 +974.854669 +974.888935 +974.968422 +975.056035 +975.132958 +975.210047 +975.251539 +975.429461 +975.505118 +975.589234 +975.656034 +975.742414 +975.809847 +975.903919 +975.946976 +976.013243 +976.154535 +976.279177 +976.337618 +976.429793 +976.520935 +976.616140 +976.716572 +976.839349 +976.911111 +976.992163 +977.069020 +977.175546 +980.511840 +980.514437 +980.516435 +980.519066 +981.239645 +981.242742 +981.244873 +981.248702 +981.440377 +981.442975 +981.445072 +981.448269 +981.532718 +981.535582 +981.538346 +981.541509 +981.641942 +981.644673 +981.647370 +981.649967 +981.654996 +981.848802 +981.852065 +981.854563 +981.858226 +982.058359 +982.060690 +982.063886 +982.216201 +982.218998 +982.221295 +982.224526 +982.362321 +982.365385 +982.367849 +982.371545 +982.503979 +982.506776 +982.509307 +982.512704 +982.630619 +982.633783 +982.636813 +982.641009 +982.755261 +982.758691 +982.761688 +982.766183 +982.863985 +982.868514 +982.872677 +982.901614 +982.949800 +982.972577 +983.003479 +983.024292 +983.045504 +983.053329 +983.103612 +983.126456 +983.158224 +983.184931 +983.214368 +983.246403 +983.273009 +983.303113 +983.320462 +983.347735 +983.371944 +983.428121 +983.456725 +983.486629 +983.519829 +983.555860 +983.586129 +983.618297 +983.650531 +983.681201 +983.712236 +983.739975 +983.772210 +983.800714 +983.828920 +983.861121 +983.888027 +983.914267 +983.945470 +983.978337 +984.005676 +984.039908 +984.069279 +984.098816 +984.133381 +984.162319 +984.193788 +984.230551 +984.260521 +984.298583 +984.341040 +984.371543 +984.401047 +984.428419 +984.465882 +984.502479 +984.533414 +984.563118 +984.590091 +984.621726 +984.656491 +984.691323 +984.722658 +984.756957 +984.793254 +984.831449 +984.867047 +984.902312 +984.938675 +984.971709 +985.008539 +985.043970 +985.081865 +985.124889 +985.149764 +985.176604 +985.224223 +985.258921 +985.307573 +985.338941 +985.371376 +985.406574 +985.446900 +985.491089 +985.533547 +985.583929 +985.648032 +985.690889 +985.739740 +985.784828 +985.829983 +985.875404 +985.909504 +985.961019 +986.010469 +986.049830 +986.102743 +986.137642 +986.158388 +986.206706 +986.214298 +986.281231 +986.319293 +986.357722 +986.415630 +986.457455 +986.569243 +986.664215 +986.748464 +986.810568 +986.891754 +986.973205 +987.045533 +987.148330 +987.248330 +987.306305 +987.349995 +987.429249 +987.491187 +987.603241 +987.634077 +987.698080 +987.746998 +987.780431 +987.798013 +987.813731 +987.853990 +987.931779 +987.956721 +988.015862 +988.059019 +988.081096 +988.178166 +988.501742 +988.506104 +988.508668 +988.511166 +988.514163 +988.670540 +988.673337 +988.675635 +988.678232 +988.683061 +988.813963 +988.816327 +988.818358 +988.820789 +988.825252 +989.048328 +989.050293 +989.052890 +989.057752 +989.304239 +989.306503 +989.308468 +989.311265 +989.317692 +989.524785 +989.529347 +989.536007 +989.701008 +989.703472 +989.705704 +989.708634 +989.885623 +989.888554 +989.890685 +989.893948 +990.054321 +990.057052 +990.059616 +990.063445 +990.211531 +990.214328 +990.216792 +990.220555 +990.382459 +990.385123 +990.387821 +990.391051 +990.542732 +990.545629 +990.548160 +990.551956 +990.692482 +990.695479 +990.697977 +990.702472 +990.847694 +990.851390 +990.854354 +990.859615 +990.985256 +990.989219 +990.993015 +991.002505 +991.112196 +991.116025 +991.119755 +991.128213 +991.245762 +991.249791 +991.253854 +991.268939 +991.406634 +991.410530 +991.414127 +991.422285 +991.551389 +991.555818 +991.559681 +991.621586 +991.647560 +991.691849 +991.710830 +991.747227 +991.777330 +991.815225 +991.841899 +991.882058 +991.907666 +991.925315 +991.966407 +991.996644 +992.034672 +992.069404 +992.105435 +992.141998 +992.181825 +992.220986 +992.257549 +992.293313 +992.329943 +992.368272 +992.413626 +992.452487 +992.494812 +992.570636 +992.607299 +992.645461 +992.678794 +992.705634 +992.750689 +992.794745 +992.831441 +992.885121 +992.931008 +992.978061 +992.984521 +993.078094 +993.123249 +993.180359 +993.234371 +993.282523 +993.328577 +993.386985 +993.440731 +993.501804 +993.555883 +993.606366 +993.644527 +993.693745 +993.741797 +993.844561 +993.884054 +994.002070 +994.076728 +994.118486 +994.183255 +994.253185 +994.309895 +994.370800 +994.467404 +994.500437 +994.573498 +994.634570 +994.692112 +994.733637 +994.768136 +994.812225 +994.899538 +994.970334 +995.020750 +995.091412 +995.131705 +995.196241 +995.250820 +995.361742 +995.430040 +995.483886 +995.558012 +995.612025 +995.658445 +995.659677 +995.774895 +995.806763 +995.864772 +995.918884 +996.014921 +996.073230 +996.153283 +996.240329 +996.367935 +996.423379 +996.479789 +996.529506 +996.583552 +996.624877 +996.693742 +996.760109 +996.850219 +997.016852 +997.142926 +1001.447450 +1001.449848 +1001.452079 +1001.454077 +1001.456308 +1001.461336 +1001.643321 +1001.648349 +1001.650480 +1001.652412 +1001.654842 +1001.658805 +1001.886910 +1001.889008 +1001.891006 +1001.893370 +1001.898132 +1002.225438 +1002.227702 +1002.229867 +1002.232464 +1007.649409 +1007.651806 +1007.653704 +1007.655935 +1007.659365 +1008.088502 +1008.090367 +1008.092965 +1008.852804 +1008.854902 +1008.857033 +1008.859730 +1009.016707 +1009.019770 +1009.021868 +1009.024998 +1009.861494 +1009.864058 +1009.866023 +1009.868421 +1009.925230 +1009.930059 +1009.933555 +1009.940648 +1010.111677 +1010.114141 +1010.116472 +1010.118970 +1010.178843 +1011.851436 +1011.854066 +1011.855964 +1011.858429 +1011.864423 +1012.425628 +1012.428625 +1012.430756 +1012.433020 +1012.436716 +1012.626160 +1012.633786 +1012.636217 +1012.638548 +1012.642011 +1012.905747 +1012.908211 +1012.910409 +1012.913106 +1012.969916 +1012.974045 +1012.977042 +1012.979973 +1012.987965 +1013.110042 +1013.112673 +1013.114938 +1013.117701 +1013.348670 +1013.351501 +1013.353665 +1013.356329 +1013.364288 +1013.615070 +1013.617568 +1013.619632 +1013.622563 +1013.745606 +1013.748603 +1013.750901 +1013.754198 +1013.903282 +1013.908077 +1013.911407 +1013.914171 +1014.080937 +1014.085200 +1014.088829 +1014.104647 +1014.272745 +1014.277074 +1014.280571 +1014.301383 +1014.381337 +1014.386598 +1014.390361 +1014.397354 +1014.538979 +1014.542975 +1014.545905 +1014.551400 +1014.671180 +1014.675808 +1014.680071 +1014.786298 +1014.800017 +1014.835116 +1014.865385 +1014.940577 +1014.961855 +1014.985632 +1015.057160 +1015.089095 +1015.138945 +1015.180537 +1015.224060 +1015.268149 +1015.310207 +1015.350233 +1015.388928 +1015.431419 +1015.476607 +1015.516667 +1015.554496 +1015.590293 +1015.630286 +1015.669614 +1015.698685 +1015.725158 +1015.753996 +1015.782534 +1015.802347 +1015.833749 +1015.870413 +1015.905511 +1015.950266 +1016.002447 +1016.039277 +1016.070612 +1016.117399 +1016.163419 +1016.218731 +1016.270412 +1016.303979 +1016.344372 +1016.435047 +1016.493389 +1016.561388 +1016.677138 +1016.729253 +1016.816665 +1016.891391 +1016.967514 +1017.046169 +1017.114667 +1017.236112 +1017.324157 +1017.376838 +1017.396385 +1017.458490 +1017.490591 +1017.536445 +1017.562186 +1017.567347 +1017.677970 +1017.729319 +1017.908206 +1017.914000 +1017.918130 +1018.753227 +1018.756291 +1018.758322 +1018.761585 +1019.303376 +1019.306207 +1019.308338 +1019.311069 +1019.562151 +1019.564548 +1019.566579 +1019.569277 +1019.739240 +1019.741737 +1019.743735 +1019.746333 +1019.750462 +1019.937075 +1019.938840 +1019.940605 +1019.942803 +1019.944901 +1019.947864 +1020.177535 +1020.180298 +1020.182496 +1020.185493 +1020.453492 +1020.456222 +1020.458520 +1020.462416 +1020.663049 +1020.665912 +1020.668044 +1020.670974 +1020.838806 +1020.841603 +1020.844001 +1020.847397 +1021.031213 +1021.033944 +1021.036308 +1021.040104 +1021.194550 +1021.197514 +1021.200078 +1021.203441 +1021.319258 +1021.322189 +1021.325019 +1021.328815 +1021.460617 +1021.463880 +1021.466911 +1021.471006 +1021.564946 +1021.569075 +1021.572705 +1021.580131 +1021.701010 +1021.704306 +1021.707303 +1021.712598 +1021.797879 +1021.801809 +1021.805605 +1021.810500 +1021.915462 +1021.919990 +1021.924053 +1022.029747 +1022.036174 +1022.046131 +1022.117726 +1022.131412 +1022.151991 +1022.175068 +1022.207336 +1022.244099 +1022.305238 +1022.333976 +1022.382228 +1022.471205 +1022.513663 +1022.554522 +1022.589420 +1022.633310 +1022.665244 +1022.707902 +1022.792617 +1022.835174 +1022.869540 +1022.911997 +1022.958751 +1022.996613 +1023.026216 +1023.058517 +1023.100309 +1023.136506 +1023.177465 +1023.228281 +1023.268607 +1023.324052 +1023.368374 +1023.430911 +1023.486522 +1023.547994 +1023.578097 +1023.644431 +1023.692150 +1023.744564 +1023.796012 +1023.855220 +1023.918956 +1023.970005 +1024.050058 +1024.106202 +1024.156818 +1024.200807 +1024.252822 +1024.293681 +1024.329545 +1024.368007 +1024.439502 +1024.485422 +1024.557151 +1024.599908 +1024.703571 +1024.774866 +1024.864110 +1024.937536 +1024.985588 +1025.059781 +1025.113061 +1025.186454 +1025.235805 +1025.302338 +1025.336104 +1025.388652 +1025.431875 +1025.458648 +1025.506400 +1025.573899 +1025.631908 +1025.697343 +1025.766773 +1025.842897 +1025.923216 +1025.975897 +1026.050489 +1026.116556 +1026.185820 +1026.245694 +1026.309596 +1026.371002 +1026.412393 +1026.461344 +1026.515091 +1026.573632 +1026.619353 +1026.676429 +1026.699839 +1026.751954 +1026.794844 +1026.868004 +1026.903868 +1026.968903 +1027.028976 +1027.115356 +1027.289182 +1027.351853 +1027.472899 +1027.528276 +1027.597108 +1027.672366 +1027.740164 +1027.803368 +1027.867637 +1027.925512 +1028.009528 +1028.061443 +1028.131140 +1028.192012 +1028.217387 +1028.296208 +1028.331406 +1028.338232 +1028.379624 +1028.449421 +1028.502035 +1028.556913 +1028.623014 +1028.672298 +1028.785518 +1028.849687 +1028.933803 +1029.006230 +1029.077859 +1029.164139 +1029.238631 +1029.295940 +1029.400569 +1029.429240 +1029.557445 +1029.583186 +1029.648454 +1029.707262 +1029.781155 +1029.852783 +1029.997372 +1030.074927 +1030.219649 +1030.276326 +1030.411390 +1030.456379 +1030.561740 +1030.636498 +1030.871064 +1031.143324 +1031.155046 +1031.167933 +1031.318183 +1031.329771 +1031.343491 +1031.455412 +1031.471563 +1031.504063 +1031.570197 +1031.593607 +1031.622645 +1031.648519 +1031.678089 +1031.697503 +1031.752015 +1031.774060 +1031.795372 +1031.831236 +1031.892441 +1031.947120 +1031.995538 +1032.085282 +1032.211489 +1032.268398 +1032.335731 +1032.415418 +1032.482151 +1032.522477 +1032.525807 +1032.580486 +1032.638561 +1032.676989 +1032.700199 +1032.734632 +1032.762670 +1032.806693 +1032.829004 +1032.883749 +1032.916383 +1032.968664 +1033.024575 +1033.190908 +1033.271494 +1033.555743 +1033.671427 +1033.744321 +1033.818480 +1033.924774 +1034.015350 +1034.066998 +1034.137527 +1034.184047 +1034.319845 +1034.360504 +1034.416848 +1034.447617 +1034.492705 +1034.529768 +1035.486477 +1035.489740 +1035.492105 +1035.495202 +1035.712018 +1035.714882 +1035.717146 +1035.720076 +1035.730066 +1035.935095 +1035.937659 +1035.940156 +1035.943553 +1036.015947 +1036.023273 +1036.075654 +1036.091704 +1036.132097 +1036.158837 +1036.188175 +1036.222906 +1036.263199 +1036.291704 +1036.330266 +1036.359203 +1036.388474 +1036.419510 +1036.458604 +1036.486509 +1036.521308 +1036.577318 +1036.646616 +1036.669093 +1036.692237 +1036.718377 +1036.729433 +1036.739589 +1036.747315 +1036.761301 +1036.779616 +1036.791004 +1036.807588 +1036.817311 +1036.845084 +1036.855673 +1036.871557 +1036.909419 +1036.924171 +1036.942153 +1036.960435 +1036.985277 +1037.018710 +1037.049113 +1037.070192 +1037.092070 +1037.133262 +1037.148646 +1037.189073 +1037.217711 +1037.245949 +1037.283878 +1037.319342 +1037.354041 +1037.396065 +1037.434027 +1037.478716 +1037.516312 +1037.557437 +1037.596964 +1037.642785 +1037.682812 +1037.723171 +1037.762266 +1037.800794 +1037.842718 +1037.876351 +1037.913581 +1037.942785 +1037.976451 +1038.006155 +1038.033760 +1038.062398 +1038.074053 +1038.093134 +1038.103324 +1038.121040 +1038.136657 +1038.164296 +1038.187740 +1038.224137 +1038.295598 +1038.330130 +1038.350310 +1038.377383 +1038.452441 +1038.474752 +1038.544616 +1038.584909 +1038.632028 +1038.673786 +1038.707686 +1038.752275 +1038.803723 +1038.869357 +1038.913413 +1038.956970 +1038.991036 +1039.037755 +1039.078615 +1039.119940 +1039.163230 +1039.215111 +1039.299760 +1039.327166 +1039.347146 +1039.367192 +1039.382743 +1039.401158 +1039.420805 +1039.450809 +1039.568591 +1039.612414 +1039.675051 +1039.746846 +1039.840352 +1039.849343 +1039.874285 +1039.973519 +1040.013579 +1040.078747 +1040.115876 +1040.138254 +1040.154637 +1040.236822 +1040.266226 +1040.332426 +1040.366326 +1040.406752 +1040.414211 +1040.450741 +1040.518040 +1040.548410 +1040.581277 +1040.602522 +1040.634857 +1040.666725 +1040.707018 +1040.778613 +1040.805886 +1040.828763 +1040.906751 +1040.985139 +1041.048443 +1041.119638 +1041.178413 +1041.227830 +1041.290334 +1041.334623 +1041.392931 +1041.447443 +1041.496927 +1041.545778 +1041.600757 +1041.646910 +1041.650873 +1041.666691 +1041.698359 +1041.762561 +1041.815042 +1041.865059 +1041.918205 +1041.995928 +1042.013277 +1042.037220 +1042.051938 +1042.085571 +1042.120370 +1042.149474 +1042.199590 +1042.249474 +1042.281342 +1042.313443 +1042.400456 +1042.496593 +1042.587735 +1042.625897 +1042.706483 +1042.771185 +1042.827395 +1042.869753 +1042.897425 +1042.938717 +1042.981741 +1043.047808 +1043.103519 +1043.175647 +1043.239749 +1043.293995 +1043.347075 +1043.419669 +1043.494761 +1043.547941 +1043.586702 +1043.638051 +1043.678110 +1043.723099 +1043.769286 +1043.811077 +1043.858463 +1043.894727 +1043.965723 +1043.997790 +1044.046542 +1044.087934 +1044.122366 +1044.156598 +1044.189265 +1044.218336 +1044.257530 +1044.277211 +1044.336751 +1044.377843 +1044.397191 +1044.441946 +1044.492395 +1044.519668 +1044.540214 +1044.594360 +1044.662825 +1044.702751 +1044.742778 +1044.779175 +1044.811210 +1044.843411 +1044.860693 +1044.864456 +1044.898289 +1044.923064 +1044.961559 +1045.011243 +1045.063390 +1045.105981 +1045.152868 +1045.188632 +1045.238016 +1045.280207 +1045.323397 +1045.362325 +1045.406580 +1045.453200 +1045.498255 +1045.536517 +1045.582604 +1045.621732 +1045.661592 +1045.727293 +1045.763590 +1045.794559 +1045.827992 +1045.858728 +1045.888897 +1045.908178 +1045.964089 +1046.012940 +1046.039746 +1046.072813 +1046.106546 +1046.146540 +1046.188997 +1046.227692 +1046.263922 +1046.344874 +1046.387032 +1046.425560 +1046.487731 +1046.532720 +1046.592127 +1046.634951 +1046.706379 +1046.742510 +1046.807045 +1046.861790 +1046.903948 +1046.948337 +1047.000185 +1047.049336 +1047.107811 +1047.150468 +1047.203482 +1047.249702 +1047.289862 +1047.332752 +1047.360091 +1047.403881 +1047.449602 +1047.513904 +1047.568749 +1047.625626 +1047.679538 +1047.737414 +1047.785033 +1047.844407 +1047.897387 +1047.967950 +1048.021529 +1048.060524 +1048.106677 +1048.150567 +1048.209541 +1048.248136 +1048.294423 +1048.341975 +1048.383634 +1048.444906 +1048.488928 +1048.543873 +1048.591492 +1048.644972 +1048.691892 +1048.735115 +1048.766350 +1048.811272 +1048.858325 +1048.911139 +1048.963453 +1049.013670 +1049.052830 +1049.093490 +1049.129720 +1049.173609 +1049.220796 +1049.276407 +1049.319264 +1049.365251 +1049.415601 +1049.462887 +1049.513836 +1049.562087 +1049.606743 +1049.654528 +1049.697319 +1049.729553 +1049.765850 +1049.810372 +1049.855827 +1049.898650 +1049.939143 +1049.991757 +1050.035846 +1050.076739 +1050.168081 +1050.235913 +1050.271044 +1050.301947 +1050.343805 +1050.390092 +1050.436978 +1050.486795 +1050.532849 +1050.572409 +1050.620694 +1050.665316 +1050.698916 +1050.742639 +1050.793122 +1050.834047 +1050.892456 +1050.941207 +1050.982366 +1051.041107 +1051.103344 +1051.155992 +1051.219795 +1051.262552 +1051.321393 +1051.379202 +1051.418962 +1051.453527 +1051.495818 +1051.546234 +1051.601113 +1051.646834 +1051.694519 +1051.759255 +1051.809338 +1051.867080 +1051.917330 +1051.968778 +1052.031216 +1052.084529 +1052.146367 +1052.203477 +1052.263084 +1052.310070 +1052.356956 +1052.410802 +1052.460586 +1052.506740 +1052.565048 +1052.612101 +1052.675571 +1052.730815 +1052.773206 +1052.806440 +1052.868611 +1052.944535 +1052.992420 +1053.030715 +1053.090322 +1053.143902 +1053.194818 +1053.261451 +1053.313732 +1053.360618 +1053.395250 +1053.438907 +1053.485793 +1053.531814 +1053.588557 +1053.647731 +1053.694151 +1053.740338 +1053.805107 +1053.870475 +1053.930348 +1053.978966 +1054.043335 +1054.104374 +1054.158087 +1054.207404 +1054.270774 +1054.314031 +1054.420524 +1054.469808 +1054.487757 +1054.556621 +1054.604273 +1054.659851 +1054.708203 +1054.764147 +1054.820457 +1054.881096 +1054.928216 +1054.980364 +1055.029947 +1055.090686 +1055.158885 +1055.219791 +1055.296680 +1055.368275 +1055.414729 +1055.464312 +1055.526550 +1055.592184 +1055.645498 +1055.711498 +1055.762414 +1055.804405 +1055.850659 +1055.910832 +1055.993416 +1056.065344 +1056.135208 +1056.185657 +1056.251258 +1056.309933 +1056.364511 +1056.464311 +1056.569606 +1056.668540 +1056.779662 +1056.861814 +1056.936572 +1056.995247 +1057.055287 +1057.119123 +1057.145796 +1057.311996 +1057.381627 +1057.502272 +1057.592649 +1057.684623 +1057.714160 +1057.792016 +1057.895179 +1058.033274 +1058.127813 +1058.189085 +1058.298076 +1058.347460 +1058.387653 +1058.482358 +1058.587486 +1058.662378 +1058.728445 +1058.829777 +1058.963743 +1059.082924 +1059.174532 +1059.305201 +1059.394079 +1059.515757 +1059.591681 +1059.692513 +1059.766240 +1059.894511 +1060.014957 +1060.100205 +1060.192213 +1060.282723 +1060.343928 +1060.444561 +1060.515190 +1060.595576 +1060.652819 +1060.699472 +1060.744527 +1060.811593 +1060.897241 +1060.980391 +1061.053018 +1061.117620 +1061.193178 +1061.255515 +1061.307264 +1061.344293 +1061.411526 +1061.453317 +1061.503301 +1061.570167 +1061.618352 +1061.660710 +1061.691812 +1061.730973 +1061.769068 +1061.843460 +1061.868235 +1061.909960 +1061.986817 +1062.048355 +1062.124412 +1062.176527 +1062.213124 +1062.267469 +1062.314256 +1062.372331 +1062.466870 +1062.535534 +1062.629240 +1062.672530 +1062.744458 +1062.826576 +1062.878258 +1062.955813 +1063.019683 +1063.087582 +1063.148154 +1063.180056 +1063.235300 +1063.281687 +1063.348321 +1063.418084 +1063.481554 +1063.565170 +1063.628806 +1063.695506 +1063.764637 +1063.847088 +1063.883918 +1063.943158 +1063.999768 +1064.078823 +1064.156478 +1064.267933 +1064.494140 +1064.568466 +1064.635432 +1064.724876 +1065.699567 +1066.055278 +1066.278721 +1066.527205 +1066.681384 +1066.916349 +1067.098966 +1067.104660 +1067.140491 +1067.355043 +1067.476655 +1067.547517 +1067.772658 +1067.923974 +1068.505625 +1068.859970 +1068.903859 +1071.540087 +1071.545149 +1071.547613 +1071.550210 +1071.554606 +1072.490136 +1072.492834 +1072.495198 +1072.498927 +1073.132227 +1073.135623 +1073.138188 +1073.146080 +1073.285440 +1073.289769 +1073.293798 +1073.299892 +1073.472986 +1073.477015 +1073.481910 +1073.653472 +1073.694364 +1073.793898 +1073.812246 +1073.892699 +1073.935523 +1073.957634 +1073.960531 +1074.020804 +1074.120438 +1074.246212 +1074.323568 +1074.401190 +1074.452439 +1074.481543 +1074.653437 +1074.748909 +1074.921169 +1075.024932 +1075.134190 +1075.237786 +1075.461728 +1075.588235 +1075.859597 +1075.929160 +1075.991731 +1076.031558 +1076.289433 +1076.298657 +1076.367721 +1076.372650 +1076.777212 +1076.788101 +1076.874414 +1076.956366 +1077.139149 +1077.205383 +1077.235686 +1077.281007 +1077.392529 +1077.509112 +1077.527461 +1077.532422 +1077.715472 +1077.731723 +1077.861626 +1077.942445 +1078.017503 +1078.090397 +1078.153667 +1078.214639 +1078.262558 +1078.377210 +1078.472015 +1078.531189 +1078.561292 +1078.580273 +1079.098488 +1079.126760 +1079.235717 +1079.301918 +1079.358228 +1079.398554 +1079.439547 +1079.522996 +1079.557429 +1079.826293 +1080.063855 +1080.092560 +1080.201051 +1080.257494 +1080.353865 +1080.529655 +1080.724527 +1080.838713 +1081.031653 +1081.160657 +1081.311839 +1081.530487 +1081.586631 +1081.659025 +1081.763920 +1081.806377 +1082.212837 +1082.292790 +1082.349301 +1082.458525 +1082.593956 +1082.710705 +1082.748301 +1082.789926 +1082.830552 +1082.891857 +1082.926057 +1083.028787 +1083.198217 +1083.305044 +1083.488227 +1083.548966 +1083.699482 +1083.919196 +1083.952795 +1084.049465 +1084.272409 +1084.289991 +1084.343105 +1084.477936 +1084.636178 +1084.828486 +1084.926221 +1085.036211 +1085.093554 +1085.128818 +1085.187793 +1085.273274 +1085.282598 +1085.432015 +1085.543936 +1085.693853 +1085.899713 +1086.015164 +1086.122923 +1086.190822 +1086.224721 +1086.291854 +1086.557089 +1093.927711 +1099.980818 +1099.986579 +1099.989010 +1099.991141 +1099.994071 +1100.257341 +1100.259772 +1100.261704 +1100.264168 +1100.269296 +1100.631533 +1100.633831 +1100.636695 +1100.925572 +1100.928070 +1100.930368 +1100.933398 +1101.034896 +1101.038093 +1101.040957 +1101.045419 +1101.244720 +1101.249148 +1101.253511 +1101.443421 +1101.447816 +1101.452012 +1101.529002 +1101.538392 +1101.544952 +1101.570127 +1101.608922 +1101.632631 +1101.655708 +1101.764699 +1101.780583 +1101.900530 +1101.926670 +1102.058039 +1102.096667 +1102.153976 +1102.173090 +1102.223074 +1102.290140 +1102.313949 +1102.331332 +1102.364565 +1102.390439 +1102.404825 +1102.424072 +1102.469494 +1102.497799 +1102.661834 +1102.693469 +1102.770559 +1102.838058 +1102.906156 +1102.997831 +1103.044218 +1103.112783 +1103.169027 +1103.245816 +1103.317312 +1103.341587 +1103.385443 +1103.444218 +1103.484944 +1103.645483 +1103.730898 +1103.804391 +1103.855906 +1103.886175 +1103.930198 +1104.003092 +1104.066728 +1104.281313 +1104.446115 +1104.765395 +1104.799328 +1105.577849 +1105.590769 +1105.594099 +1105.596663 +1105.602957 +1105.777416 +1105.782544 +1105.789470 +1106.068025 +1106.071854 +1106.075118 +1106.086639 +1106.265460 +1106.269024 +1106.271821 +1106.276050 +1106.361331 +1106.365494 +1106.369456 +1106.387039 +1106.585940 +1106.589536 +1106.592966 +1106.601158 +1106.777681 +1106.780678 +1106.783442 +1106.787838 +1106.922170 +1106.925833 +1106.928597 +1106.932260 +1107.088037 +1107.090967 +1107.093598 +1107.097361 +1107.240418 +1107.243515 +1107.246079 +1107.249842 +1107.385872 +1107.389269 +1107.392299 +1107.403188 +1107.527098 +1107.530627 +1107.533558 +1107.540218 +1107.648343 +1107.652339 +1107.656268 +1107.662928 +1107.762529 +1107.767923 +1107.775183 +1107.866291 +1107.875216 +1107.893564 +1107.955768 +1107.971819 +1108.004253 +1108.029628 +1108.059365 +1108.090434 +1108.171286 +1108.211113 +1108.242282 +1108.279644 +1108.317273 +1108.352704 +1108.390400 +1108.426431 +1108.457733 +1108.502321 +1108.530393 +1108.561495 +1108.589134 +1108.619671 +1108.645012 +1108.672451 +1108.700223 +1108.732791 +1108.764226 +1108.799357 +1108.826630 +1108.843613 +1108.879777 +1108.935721 +1108.988901 +1109.018738 +1109.058565 +1109.105784 +1109.146843 +1109.183406 +1109.220403 +1109.251938 +1109.282141 +1109.344678 +1109.398724 +1109.461828 +1109.509513 +1109.618371 +1109.677312 +1109.774182 +1109.836319 +1109.878311 +1109.906982 +1109.944811 +1109.983539 +1109.988400 +1110.092496 +1110.130858 +1110.163758 +1110.221267 +1110.332356 +1110.410911 +1110.471617 +1110.543345 +1110.617504 +1110.784037 +1110.831590 +1110.864623 +1111.013275 +1111.058796 +1111.853966 +1111.860926 +1111.866221 +1112.316104 +1112.319267 +1112.324862 +1112.410476 +1112.413639 +1112.417169 +1112.421698 +1112.521498 +1112.525228 +1112.528857 +1112.602517 +1112.610143 +1112.621831 +1112.679640 +1112.696556 +1112.748804 +1112.765221 +1112.828591 +1112.849636 +1112.891062 +1112.930356 +1113.061324 +1113.160059 +1113.219666 +1113.308444 +1113.341011 +1113.392027 +1113.453698 +1113.521963 +1113.594524 +1113.650734 +1113.727225 +1113.807178 +1113.837914 +1113.883535 +1113.930221 +1113.989728 +1114.019465 +1114.051267 +1114.088396 +1114.172612 +1114.291959 +1114.375709 +1114.507144 +1114.629821 +1114.725226 +1114.808476 +1114.858359 +1114.886797 +1114.919365 +1114.942009 +1114.992192 +1115.156227 +1115.172811 +1115.195022 +1115.216534 +1115.258292 +1115.353264 +1115.592924 +1115.732351 +1115.950865 +1115.967815 +1116.028488 +1116.047236 +1116.086063 +1116.314768 +1116.358324 +1116.520662 +1116.613136 +1116.970645 +1116.977971 +1116.986795 +1116.999382 +1117.058323 +1117.076638 +1117.094354 +1117.110172 +1117.247201 +1117.256558 +1117.269545 +1117.447967 +1117.457391 +1117.691023 +1117.697550 +1117.773208 +1117.818929 +1117.909804 +1118.025389 +1118.087094 +1118.159022 +1118.234546 +1118.283997 +1118.391289 +1118.504143 +1118.605774 +1118.748665 +1118.770210 +1119.382597 +1119.390855 +1119.397449 +1119.503642 +1119.511335 +1119.517195 +1119.527951 +1119.754558 +1119.759253 +1119.763449 +1119.831514 +1119.847065 +1119.892753 +1119.932746 +1119.962383 +1119.981730 +1120.027984 +1120.091021 +1120.111301 +1120.117594 +1120.251960 +1120.292886 +1120.379399 +1120.444401 +1120.511101 +1120.547164 +1120.626552 +1120.693851 +1120.741170 +1120.799578 +1120.848763 +1120.896581 +1120.984893 +1121.061649 +1121.160251 +1121.202742 +1121.226451 +1121.261583 +1121.293950 +1121.332545 +1121.367210 +1121.386391 +1121.425585 +1121.434243 +1121.499311 +1121.616494 +1121.656687 +1121.710400 +1121.766377 +1121.845132 +1121.848728 +1121.963114 +1122.286590 +1122.369640 +1122.385791 +1122.446963 +1122.547296 +1122.706170 +1122.779796 +1122.934641 +1123.098344 +1123.201308 +1123.286256 +1123.532343 +1123.555087 +1124.231077 +1124.233841 +1124.236105 +1124.239602 +1124.854653 +1124.857350 +1124.859581 +1124.862844 +1125.049158 +1125.051689 +1125.057283 +1125.309830 +1125.312661 +1125.315025 +1125.318555 +1125.485788 +1125.488585 +1125.490816 +1125.494013 +1125.609897 +1125.612627 +1125.615957 +1125.734172 +1125.736836 +1125.743629 +1125.853486 +1125.856516 +1125.859580 +1125.864808 +1126.008931 +1126.012161 +1126.017455 +1126.121285 +1126.125747 +1126.129743 +1126.161178 +1126.221351 +1126.230842 +1126.256216 +1126.292114 +1126.308997 +1126.354118 +1126.378461 +1126.408564 +1126.444428 +1126.474398 +1126.505933 +1126.538933 +1126.572999 +1126.606000 +1126.638400 +1126.671401 +1126.702003 +1126.732506 +1126.763342 +1126.795177 +1126.827245 +1126.858680 +1126.892113 +1126.921983 +1126.956216 +1126.984587 +1127.012659 +1127.046559 +1127.077894 +1127.111793 +1127.142762 +1127.176595 +1127.199172 +1127.227744 +1127.256582 +1127.287750 +1127.328210 +1127.355250 +1127.397307 +1127.433305 +1127.470900 +1127.505799 +1127.548523 +1127.589815 +1127.620917 +1127.656048 +1127.693844 +1127.734437 +1127.778026 +1127.814923 +1127.858479 +1127.896474 +1127.935435 +1127.981856 +1128.022182 +1128.069934 +1128.111826 +1128.156514 +1128.207896 +1128.256148 +1128.298006 +1128.350320 +1128.396241 +1128.439764 +1128.482188 +1128.525245 +1128.554649 +1128.597040 +1128.617153 +1128.647789 +1128.686317 +1128.720816 +1128.753017 +1128.764372 +1128.787449 +1128.817353 +1128.858778 +1128.894842 +1128.916786 +1128.944792 +1128.972830 +1128.999637 +1129.162074 +1129.179690 +1129.252650 +1129.303732 +1129.311791 +1129.426243 +1129.493742 +1129.558544 +1129.649620 +1129.739629 +1129.853016 +1129.914521 +1129.963838 +1130.018051 +1130.078757 +1130.116519 +1130.148021 +1130.291943 +1130.332902 +1130.701067 +1130.705529 +1130.882286 +1130.886148 +1130.888613 +1130.891909 +1131.005496 +1131.008959 +1131.011989 +1131.015652 +1131.098769 +1131.104630 +1131.111589 +1131.338163 +1131.341959 +1131.345122 +1131.349585 +1131.475325 +1131.479521 +1131.484150 +1131.487247 +1131.499668 +1131.592441 +1131.598202 +1131.729271 +1131.741059 +1131.759441 +1131.831336 +1131.839561 +1131.859807 +1131.888778 +1131.892008 +1131.948785 +1131.978189 +1131.997136 +1132.009457 +1132.054246 +1132.155744 +1132.200932 +1132.251249 +1132.291875 +1132.339727 +1132.382717 +1132.418681 +1132.466233 +1132.505294 +1132.547419 +1132.593140 +1132.633932 +1132.677888 +1132.725141 +1132.769696 +1132.817349 +1132.863969 +1132.912920 +1132.952946 +1132.985680 +1133.033133 +1133.089310 +1133.107092 +1133.122077 +1133.155377 +1133.256376 +1133.299499 +1133.362636 +1133.418813 +1133.466565 +1133.528803 +1133.583349 +1133.646652 +1133.715283 +1133.781550 +1133.817847 +1133.876189 +1133.906292 +1133.938759 +1133.963068 +1133.993172 +1134.020644 +1134.097367 +1134.193238 +1134.257008 +1134.332932 +1134.508989 +1134.550247 +1134.621942 +1134.675688 +1134.759205 +1134.818845 +1134.853011 +1134.915682 +1134.962202 +1135.011053 +1135.087942 +1135.164100 +1135.266231 +1135.376054 +1135.439590 +1135.551845 +1135.569560 +1135.598598 +1135.637659 +1135.661901 +1135.705358 +1135.797033 +1135.825837 +1135.882147 +1135.904658 +1135.961701 +1135.966896 +1136.012717 +1136.026103 +1136.082547 +1136.107022 +1136.122540 +1136.653908 +1136.656672 +1136.658570 +1136.660868 +1136.665430 +1136.950145 +1136.953608 +1136.955673 +1136.957871 +1136.961301 +1137.042752 +1137.044551 +1137.047381 +1137.049978 +1137.054241 +1137.148347 +1137.151610 +1137.154774 +1137.159236 +1137.260967 +1137.264830 +1137.268127 +1137.272822 +1137.436192 +1137.439355 +1137.441520 +1137.445116 +1137.564264 +1137.567427 +1137.570191 +1137.574087 +1137.718210 +1137.721007 +1137.724204 +1137.826668 +1137.830464 +1137.833561 +1137.840187 +1137.929665 +1137.934293 +1137.939788 +1137.947247 +1138.014080 +1138.016411 +1138.023604 +1138.032162 +1138.088905 +1138.098096 +1138.120174 +1138.164996 +1138.186840 +1138.212348 +1138.242984 +1138.275319 +1138.306720 +1138.342918 +1138.373087 +1138.408385 +1138.437756 +1138.472954 +1138.506054 +1138.533993 +1138.572155 +1138.604622 +1138.640886 +1138.676317 +1138.709717 +1138.744249 +1138.785974 +1138.817576 +1138.854339 +1138.885907 +1138.935658 +1138.967193 +1138.998728 +1139.034392 +1139.065161 +1139.100026 +1139.128165 +1139.180279 +1139.212147 +1139.247112 +1139.281611 +1139.327532 +1139.363030 +1139.400625 +1139.483010 +1139.518607 +1139.556236 +1139.598794 +1139.641218 +1139.679779 +1139.720372 +1139.759966 +1139.802457 +1139.841051 +1139.882044 +1139.923336 +1139.968524 +1140.010515 +1140.048144 +1140.087438 +1140.123802 +1140.160099 +1140.202423 +1140.243948 +1140.288037 +1140.324967 +1140.366026 +1140.412945 +1140.430594 +1140.498726 +1140.538886 +1140.561031 +1140.584773 +1140.614244 +1140.638653 +1140.675816 +1140.719272 +1140.801223 +1140.853971 +1140.905819 +1140.928529 +1140.971187 +1141.014110 +1141.073318 +1141.125865 +1141.180777 +1141.244946 +1141.339951 +1141.392332 +1141.437453 +1141.454370 +1141.539984 +1141.595728 +1141.650906 +1141.690000 +1141.731093 +1141.780377 +1141.856634 +1141.922767 +1142.013477 +1142.065558 +1142.118871 +1142.196593 +1142.251938 +1142.316673 +1142.378212 +1142.450206 +1142.575314 +1142.645544 +1142.698791 +1142.761694 +1142.821967 +1142.906083 +1142.968754 +1143.049873 +1143.188534 +1143.287102 +1143.352603 +1143.593162 +1143.638816 +1143.688733 +1143.785536 +1143.854500 +1143.871850 +1145.029258 +1145.036684 +1145.038815 +1145.041113 +1145.043477 +1145.520499 +1145.522631 +1145.524695 +1145.527526 +1145.856430 +1145.858694 +1145.860659 +1145.863057 +1145.867752 +1146.056896 +1146.059493 +1146.061758 +1146.064222 +1146.068151 +1146.163656 +1146.165887 +1146.168085 +1146.170249 +1146.173746 +1146.462623 +1146.465254 +1146.467718 +1146.471714 +1146.647272 +1146.649936 +1146.652300 +1146.655730 +1146.827092 +1146.829556 +1146.832153 +1146.835883 +1146.983002 +1146.985666 +1146.988097 +1146.991360 +1147.119499 +1147.122030 +1147.124660 +1147.128157 +1147.265886 +1147.269249 +1147.272412 +1147.277707 +1147.377407 +1147.381237 +1147.384167 +1147.389062 +1147.499252 +1147.502282 +1147.504680 +1147.508443 +1147.626625 +1147.630188 +1147.633285 +1147.638446 +1147.795422 +1147.798486 +1147.801516 +1147.805945 +1147.929255 +1147.932618 +1147.940577 +1148.077174 +1148.080603 +1148.083501 +1148.088962 +1148.157693 +1148.162954 +1148.168149 +1148.257626 +1148.265019 +1148.276907 +1148.337380 +1148.352132 +1148.367816 +1148.390427 +1148.422028 +1148.458126 +1148.496820 +1148.522861 +1148.550566 +1148.567916 +1148.605445 +1148.634516 +1148.675242 +1148.713903 +1148.736780 +1148.761888 +1148.807409 +1148.845171 +1148.883500 +1148.921029 +1148.951931 +1148.957492 +1148.995121 +1149.027289 +1149.065617 +1149.105511 +1149.139810 +1149.178271 +1149.220562 +1149.251332 +1149.339643 +1149.415168 +1149.447235 +1149.514035 +1149.547835 +1149.571178 +1149.602080 +1149.637179 +1149.681201 +1149.717565 +1149.767948 +1149.808540 +1149.858690 +1149.862387 +1149.895453 +1149.927488 +1149.972443 +1150.072709 +1150.165983 +1150.217531 +1150.233815 +1150.260421 +1150.350864 +1150.380568 +1150.425523 +1150.427920 +1150.497484 +1150.549599 +1150.603645 +1150.643138 +1150.659888 +1150.747134 +1150.793221 +1150.844104 +1150.888160 +1150.922059 +1150.997017 +1151.634213 +1151.637277 +1151.639341 +1151.642272 +1151.860720 +1151.863783 +1151.866081 +1151.868745 +1152.111102 +1152.113733 +1152.115997 +1152.119427 +1152.289957 +1152.292787 +1152.295085 +1152.297815 +1152.442304 +1152.444768 +1152.449031 +1152.523922 +1152.530549 +1152.534412 +1152.537642 +1152.599380 +1152.602677 +1152.613832 +1152.617862 +1152.624522 +1152.715064 +1152.718994 +1152.722457 +1152.728284 +1152.816563 +1152.819693 +1152.823189 +1152.976170 +1152.979699 +1152.982963 +1152.989057 +1153.103209 +1153.107039 +1153.110702 +1153.118527 +1153.249030 +1153.253026 +1153.257621 +1153.321091 +1153.333379 +1153.362616 +1153.412266 +1153.433345 +1153.477634 +1153.507871 +1153.540505 +1153.576402 +1153.610368 +1153.642536 +1153.673505 +1153.713365 +1153.744634 +1153.777434 +1153.812999 +1153.845832 +1153.876635 +1153.906239 +1153.971540 +1154.005206 +1154.034244 +1154.069675 +1154.091919 +1154.119792 +1154.148696 +1154.192519 +1154.220291 +1154.247297 +1154.292818 +1154.332745 +1154.367777 +1154.408336 +1154.440371 +1154.475968 +1154.507470 +1154.536974 +1154.571439 +1154.610434 +1154.668576 +1154.699411 +1154.727650 +1154.765978 +1154.792485 +1154.816727 +1154.840237 +1154.871306 +1154.925485 +1154.963147 +1155.011466 +1155.040437 +1155.089321 +1155.143467 +1155.194482 +1155.241469 +1155.260250 +1155.315661 +1155.377533 +1155.438738 +1155.496613 +1155.545065 +1155.604572 +1155.660749 +1155.716493 +1155.776333 +1155.834941 +1155.872337 +1155.937006 +1155.975201 +1156.015261 +1156.054189 +1156.078331 +1156.112164 +1156.154388 +1156.197645 +1156.264511 +1156.326150 +1156.368108 +1156.385524 +1156.479596 +1156.539403 +1156.659716 +1156.799875 +1156.891417 +1159.281658 +1159.283956 +1159.286087 +1159.289150 +1161.757480 +1161.760377 +1161.762341 +1161.764306 +1161.767436 +1162.080656 +1162.082621 +1162.084819 +1162.088415 +1163.343559 +1163.345656 +1163.347921 +1163.352350 +1164.423244 +1164.427973 +1164.430304 +1164.432302 +1164.434800 +1164.654480 +1164.657144 +1164.659142 +1164.661306 +1164.664503 +1167.612952 +1167.615416 +1167.617380 +1167.619512 +1167.623108 +1167.825605 +1167.827537 +1167.829601 +1167.832732 +1168.168529 +1168.171193 +1168.173224 +1168.176288 +1169.026936 +1169.029667 +1169.032231 +1169.036593 +1169.962933 +1169.965996 +1169.968027 +1169.970825 +1170.122673 +1170.124704 +1170.127002 +1170.130598 +1170.325836 +1170.328999 +1170.331031 +1170.333062 +1170.335926 +1170.645349 +1170.648047 +1170.650078 +1170.653175 +1171.333128 +1171.336225 +1171.338389 +1171.341319 +1171.429598 +1171.433461 +1171.436424 +1171.439022 +1171.442651 +1171.525602 +1171.527933 +1171.530730 +1171.534160 +1171.645315 +1171.648412 +1171.650876 +1171.654872 +1171.794033 +1171.797363 +1171.800427 +1171.805355 +1172.000027 +1172.044049 +1172.047346 +1172.050276 +1172.058668 +1172.524968 +1172.528165 +1172.531128 +1172.546646 +1172.748511 +1172.751341 +1172.753972 +1172.874118 +1172.876716 +1172.879713 +1172.883376 +1172.996729 +1173.001491 +1173.004388 +1173.006686 +1173.009716 +1173.142117 +1173.145480 +1173.148577 +1173.151974 +1173.344015 +1173.347878 +1173.351707 +1173.509849 +1173.513745 +1173.517008 +1173.521837 +1173.760564 +1173.763828 +1173.766692 +1173.771354 +1173.937720 +1173.940551 +1173.943315 +1173.946911 +1174.098160 +1174.101057 +1174.107051 +1174.212445 +1174.216075 +1174.219538 +1174.224367 +1174.298493 +1174.312445 +1174.317207 +1174.321270 +1174.383308 +1174.476548 +1174.487737 +1174.521703 +1174.551439 +1174.610081 +1174.637853 +1174.688769 +1174.728329 +1174.761629 +1174.803620 +1174.841149 +1174.866957 +1174.887403 +1174.925998 +1174.933857 +1174.946111 +1174.987803 +1175.052172 +1175.148975 +1175.179411 +1175.234189 +1175.237386 +1175.338019 +1175.351705 +1175.436720 +1175.514475 +1175.537719 +1175.596660 +1175.675281 +1175.724665 +1175.798658 +1175.861062 +1175.923100 +1175.964858 +1176.052370 +1176.112144 +1176.455800 +1176.481541 +1176.793562 +1176.802586 +1176.815806 +1176.961893 +1176.968254 +1176.974481 +1177.124231 +1177.132256 +1177.141014 +1177.234420 +1177.244444 +1177.255999 +1177.384171 +1177.392462 +1177.400821 +1177.461593 +1177.502652 +1177.511143 +1177.690997 +1177.728592 +1177.797990 +1177.810078 +1177.914540 +1177.948939 +1178.056065 +1178.115738 +1178.165322 +1178.223497 +1178.782637 +1178.785834 +1178.788398 +1181.412405 +1181.414902 +1181.419531 +1181.574809 +1181.577273 +1181.579371 +1181.582102 +1181.588828 +1181.853796 +1181.856594 +1181.858625 +1181.861189 +1182.178272 +1182.181036 +1182.183133 +1182.185498 +1182.189394 +1182.365284 +1182.367382 +1182.369514 +1182.373243 +1182.667981 +1182.670546 +1182.672743 +1182.675907 +1182.885364 +1182.887895 +1182.890259 +1182.892890 +1182.899916 +1183.344737 +1183.347301 +1183.349399 +1183.352530 +1183.441174 +1183.444005 +1183.449233 +1183.507441 +1183.512003 +1183.515766 +1183.519096 +1183.782766 +1183.785396 +1183.787727 +1183.790758 +1183.923758 +1183.933748 +1183.936212 +1183.940374 +1184.214234 +1184.216398 +1184.218529 +1184.220860 +1184.225889 +1184.319595 +1184.321759 +1184.324090 +1184.326521 +1184.330184 +1184.510204 +1184.511902 +1184.516997 +1184.518995 +1184.521459 +1184.525988 +1184.629784 +1184.631982 +1184.634147 +1184.636411 +1184.639674 +1184.800613 +1184.802878 +1184.804876 +1184.807107 +1184.810836 +1184.983264 +1184.986228 +1184.988692 +1184.992854 +1185.202678 +1185.205508 +1185.208139 +1185.212068 +1185.342271 +1185.345002 +1185.347433 +1185.350296 +1185.491389 +1185.494286 +1185.498814 +1185.649164 +1185.652094 +1185.654359 +1185.657922 +1185.872008 +1185.875238 +1185.878301 +1185.883596 +1186.061784 +1186.064781 +1186.067412 +1186.070675 +1186.227019 +1186.230116 +1186.232480 +1186.236343 +1186.440439 +1186.444834 +1186.447332 +1186.450995 +1186.624554 +1186.627751 +1186.630415 +1186.634777 +1186.813132 +1186.822256 +1186.980365 +1186.983928 +1186.987191 +1186.995849 +1187.086492 +1187.090721 +1187.093918 +1187.097581 +1187.161517 +1187.166978 +1187.171473 +1187.179366 +1187.383561 +1187.386358 +1187.390821 +1187.567544 +1187.571406 +1187.574603 +1187.582495 +1187.755988 +1187.759818 +1187.763048 +1188.007736 +1188.011866 +1188.016461 +1188.028615 +1188.190520 +1188.194749 +1188.198579 +1188.306604 +1188.322987 +1188.388888 +1188.420823 +1188.476734 +1188.551092 +1188.599977 +1188.694382 +1188.733443 +1188.869474 +1188.930812 +1188.995481 +1189.218624 +1189.318524 +1189.471504 +1190.056785 +1190.067874 +1190.070838 +1190.073202 +1190.077631 +1190.330345 +1190.333275 +1190.335506 +1190.337771 +1190.341234 +1191.027314 +1191.029911 +1191.031776 +1191.034140 +1191.038702 +1191.294546 +1191.297277 +1191.299475 +1191.302039 +1191.397177 +1191.400274 +1191.402538 +1191.404936 +1191.409398 +1191.574233 +1191.710064 +1191.713260 +1191.715658 +1191.717856 +1191.721153 +1191.907732 +1191.910197 +1191.912394 +1191.916657 +1191.995278 +1191.997709 +1191.999907 +1192.002271 +1192.007000 +1192.387785 +1192.392181 +1192.395511 +1192.397842 +1192.400572 +1195.292811 +1195.295208 +1195.297106 +1195.299104 +1195.302035 +1196.017419 +1196.019184 +1196.019383 +1196.021348 +1196.023313 +1196.025511 +1198.064669 +1198.067467 +1198.069465 +1198.073860 +1198.439261 +1198.441692 +1198.443657 +1198.445921 +1198.450283 +1199.977921 +1200.860504 +1200.863335 +1200.865166 +1200.867097 +1201.039292 +1201.041490 +1201.043354 +1201.045352 +1201.048150 +1201.241023 +1201.243587 +1201.245452 +1201.247650 +1201.251413 +1201.994702 +1201.998631 +1202.000863 +1202.003060 +1202.005924 +1202.509853 +1202.512217 +1202.514082 +1202.516047 +1202.519277 +1205.722437 +1205.725801 +1205.727599 +1205.729763 +1205.732794 +1206.494032 +1206.500125 +1206.502623 +1206.504621 +1206.506719 +1206.510082 +1206.879912 +1206.882643 +1206.884441 +1206.886705 +1206.891234 +1207.499725 +1207.601323 +1207.603721 +1207.605719 +1207.607950 +1207.612512 +1208.940916 +1208.944412 +1208.946410 +1208.948275 +1208.950439 +1208.955235 +1210.193495 +1210.199289 +1210.201520 +1210.203485 +1210.205816 +1212.061592 +1214.456861 +1214.462722 +1214.464853 +1214.466884 +1214.469448 +1214.848702 +1214.851532 +1214.853530 +1214.855695 +1214.859658 +1215.001049 +1215.003081 +1215.005778 +1215.007709 +1215.009674 +1215.020097 +1215.375674 +1215.378472 +1215.380503 +1215.382567 +1215.385065 +1215.456627 +1217.313901 +1217.316798 +1217.318796 +1217.320994 +1217.324723 +1217.974406 +1218.360686 +1218.374106 +1218.376104 +1218.378069 +1218.380633 +1218.534945 +1218.597283 +1219.080399 +1219.084628 +1219.089723 +1219.434079 +1219.438008 +1219.441205 +1219.747864 +1219.752360 +1219.754558 +1219.758853 +1219.869776 +1221.157487 +1221.160450 +1221.162482 +1221.164680 +1221.168076 +1222.079697 +1222.082794 +1222.084725 +1222.086723 +1222.089953 +1225.832740 +1226.947424 +1226.953119 +1226.955283 +1226.957215 +1226.959712 +1227.377760 +1227.379891 +1227.383788 +1227.386884 +1227.909628 +1227.911959 +1228.939430 +1230.199636 +1230.310125 +1230.312822 +1230.314953 +1230.317018 +1230.320015 +1230.895606 +1231.529737 +1231.902598 +1235.065998 +1235.163234 +1236.286509 +1238.788971 +1238.793000 +1238.795198 +1238.797729 +1240.533858 +1241.052805 +1241.942681 +1243.482073 +1248.024593 +1248.028289 +1248.030387 +1248.035815 +1250.599449 +1250.601813 +1251.337810 +1251.499348 +1252.699147 +1252.705607 +1252.707439 +1252.709403 +1252.713799 +1253.298447 +1253.302143 +1253.304874 +1253.306239 +1253.307538 +1253.310169 +1253.493951 +1253.504774 +1253.600545 +1253.689988 +1253.978033 +1254.147164 +1254.173771 +1254.175536 +1256.078231 +1261.830540 +1264.006728 +1264.008559 +1264.014320 +1264.016285 +1264.180920 +1269.679350 +1269.683545 +1271.095632 +1271.589105 +1271.909118 +1273.064961 +1313.397987 +1323.362679 +1323.366043 +1323.368041 +1323.369672 +1323.371903 +1323.375700 +1323.675466 +1323.680894 +1323.682792 +1323.684524 +1323.686755 +1323.693348 +1325.046627 +1325.049025 +1325.051122 +1325.053154 +1325.057183 +1332.921244 +1336.926369 +1336.929099 +1336.931064 +1336.932995 +1336.935260 +1336.941820 +1340.769655 +1340.771620 +1340.773518 +1340.775349 +1340.777580 +1341.267889 +1341.269987 +1341.271985 +1341.274483 +1342.517106 +1342.519670 +1342.521634 +1342.524165 +1343.110678 +1343.112809 +1343.114707 +1343.116739 +1343.120002 +1343.538650 +1343.540481 +1343.542912 +1343.548540 +1343.821933 +1343.824663 +1343.826728 +1343.829625 +1343.973947 +1343.976811 +1343.979109 +1343.982406 +1344.348672 +1344.352402 +1344.354866 +1344.359062 +1344.508645 +1344.514073 +1344.517270 +1344.635052 +1344.638848 +1344.642312 +1344.651269 +1344.855365 +1344.859195 +1344.862957 +1345.022131 +1345.027093 +1345.030856 +1345.176710 +1345.182038 +1345.186700 +1345.249837 +1345.275045 +1345.296457 +1345.335285 +1345.401285 +1345.444375 +1345.516903 +1345.574079 +1345.664255 +1345.746540 +1345.818701 +1345.881105 +1345.986166 +1346.073812 +1346.185334 +1346.449236 +1346.834484 +1346.838846 +1346.887131 +1347.415569 +1347.476608 +1347.723860 +1347.735316 +1347.759625 +1347.803048 +1347.818899 +1347.880703 +1347.892092 +1347.918166 +1347.952665 +1347.980637 +1348.044040 +1348.142841 +1348.182801 +1348.348801 +1348.382867 +1348.473010 +1348.508009 +1348.622361 +1348.754828 +1348.909141 +1349.142307 +1349.246203 +1349.395887 +1349.437945 +1349.469413 +1349.507442 +1349.567182 +1349.581401 +1349.664618 +1349.910771 +1349.960988 +1350.193721 +1350.212403 +1350.401480 +1350.455193 +1350.502945 +1350.515599 +1350.533481 +1350.572975 +1350.614500 +1350.622392 +1350.634613 +1350.713268 +1350.769312 +1350.796651 +1350.834413 +1350.858023 +1350.882199 +1350.923125 +1350.955659 +1351.314266 +1351.318762 +1351.322125 +1351.326221 +1351.545268 +1351.549331 +1351.551862 +1351.556158 +1351.736810 +1351.740706 +1351.758788 +1351.821592 +1351.826487 +1351.850763 +1351.876703 +1351.927386 +1351.936843 +1351.966480 +1351.982198 +1351.991688 +1352.046100 +1352.064482 +1352.091921 +1352.145368 +1352.238108 +1352.320726 +1352.388658 +1352.442504 +1352.512067 +1352.575271 +1352.636110 +1352.679034 +1352.724388 +1352.779333 +1352.820392 +1352.851761 +1352.890322 +1352.927984 +1352.960685 +1352.989090 +1353.034311 +1353.097348 +1353.151894 +1353.252959 +1353.314964 +1353.380165 +1353.400012 +1353.443235 +1353.494351 +1353.567145 +1353.623588 +1353.689023 +1353.746698 +1353.810068 +1353.945100 +1354.004940 +1354.050760 +1354.083494 +1354.110168 +1354.172505 +1354.224786 +1354.290454 +1354.363614 +1354.420091 +1354.519658 +1354.610733 +1354.696714 +1354.739271 +1354.788222 +1354.891652 +1354.965245 +1355.023087 +1355.076067 +1355.103573 +1355.174069 +1355.185957 +1355.211998 +1355.234975 +1355.251225 +1355.331512 +1355.357419 +1355.378964 +1355.482427 +1355.754289 +1355.792517 +1355.812597 +1355.832077 +1355.897812 +1355.898511 +1355.921455 +1355.932843 +1355.944465 +1355.960582 +1355.970306 +1355.998078 +1356.024818 +1356.045197 +1356.081328 +1356.086922 +1356.184791 +1356.346129 +1356.578131 +1356.753455 +1356.780095 +1356.794014 +1356.813462 +1356.863245 +1356.965376 +1357.035473 +1357.076365 +1357.140767 +1357.160548 +1357.281726 +1357.313494 +1357.674500 +1357.700740 +1357.720487 +1357.772468 +1357.858516 +1357.902238 +1357.977297 +1358.235438 +1358.334972 +1358.402005 +1358.466440 +1358.513926 +1358.607033 +1358.683057 +1358.750423 +1358.821418 +1359.094778 +1359.231841 +1359.297542 +1359.353652 +1359.399839 +1359.491614 +1359.575164 +1359.664608 +1359.728077 +1359.810428 +1359.917821 +1359.984721 +1360.083289 +1360.131407 +1360.203835 +1360.306698 +1360.616854 +1360.727610 +1360.761643 +1360.784686 +1360.808563 +1360.950254 +1360.971699 +1360.980124 +1361.041929 +1361.047257 +1361.054983 +1361.099438 +1361.107530 +1361.116055 +1361.134137 +1361.158679 +1361.180990 +1361.315155 +1361.322581 +1361.330074 +1361.440530 +1361.450120 +1361.467470 +1361.536434 +1361.554782 +1361.640230 +1361.681589 +1361.702767 +1361.733470 +1361.749621 +1361.781489 +1361.804266 +1361.839764 +1361.876893 +1361.907130 +1361.926843 +1361.941861 +1361.955281 +1361.963207 +1362.004132 +1362.044725 +1362.082920 +1362.121781 +1362.162174 +1362.193543 +1362.255581 +1362.300636 +1362.345491 +1362.389813 +1362.441495 +1362.484352 +1362.524345 +1362.568035 +1362.605064 +1362.645657 +1362.688447 +1362.730505 +1362.773329 +1362.815920 +1362.861308 +1362.900535 +1362.932903 +1362.957545 +1362.982054 +1363.001567 +1363.017585 +1363.043592 +1363.091544 +1363.116752 +1363.149652 +1363.173961 +1363.199236 +1363.235766 +1363.331870 +1363.375526 +1363.424311 +1363.470864 +1363.527541 +1363.579822 +1363.635899 +1363.686648 +1363.740994 +1363.787947 +1363.845289 +1363.896771 +1363.925143 +1363.995772 +1364.027640 +1364.075892 +1364.090611 +1364.123245 +1364.153914 +1364.175625 +1364.241759 +1364.258842 +1364.290744 +1364.385415 +1364.438562 +1364.494972 +1364.542392 +1364.603231 +1364.653381 +1364.713853 +1364.746088 +1364.772328 +1364.839594 +1364.933667 +1364.983250 +1365.043157 +1365.070696 +1365.122511 +1365.182151 +1365.250316 +1365.302497 +1365.347153 +1365.388411 +1365.430170 +1365.489544 +1365.539427 +1365.594472 +1365.650849 +1365.692707 +1365.751015 +1365.808358 +1365.856177 +1365.895604 +1365.935164 +1366.023243 +1366.072427 +1366.119346 +1366.163236 +1366.203429 +1366.240026 +1366.264901 +1366.304128 +1366.330702 +1366.371794 +1366.451547 +1366.493971 +1366.533532 +1366.562003 +1366.587544 +1366.665133 +1366.702762 +1366.733998 +1366.790008 +1366.830734 +1366.873292 +1366.913918 +1366.946319 +1366.974990 +1367.022742 +1367.068729 +1367.113618 +1367.181949 +1367.232232 +1367.279885 +1367.328769 +1367.382649 +1367.426505 +1367.480351 +1367.514650 +1367.570727 +1367.629435 +1367.678119 +1367.732065 +1367.784247 +1367.840757 +1367.887144 +1367.945951 +1367.986544 +1368.057640 +1368.117013 +1368.174622 +1368.182781 +1368.221442 +1368.265265 +1368.320277 +1368.361435 +1368.418112 +1368.468728 +1368.516613 +1368.564299 +1368.623040 +1368.676254 +1368.726237 +1368.774122 +1368.817912 +1368.896400 +1368.935394 +1368.987142 +1369.024771 +1369.077718 +1369.117978 +1369.171724 +1369.214914 +1369.259670 +1369.294035 +1369.335061 +1369.385777 +1369.420609 +1369.513715 +1369.540255 +1369.604857 +1369.639057 +1369.681348 +1369.728567 +1369.769359 +1369.811018 +1369.845250 +1369.885743 +1369.969692 +1370.004790 +1370.050312 +1370.099596 +1370.154008 +1370.202692 +1370.244584 +1370.284111 +1370.328067 +1370.373921 +1370.413881 +1370.455240 +1370.498330 +1370.531197 +1370.571124 +1370.592769 +1370.686408 +1370.734060 +1370.778083 +1370.818043 +1370.859502 +1370.897364 +1370.931862 +1370.971390 +1371.007287 +1371.050344 +1371.096098 +1371.142552 +1371.189871 +1371.227966 +1371.276884 +1371.326234 +1371.343817 +1371.388938 +1371.439421 +1371.548379 +1371.613880 +1371.655138 +1371.754772 +1371.807619 +1371.849411 +1371.902025 +1371.969058 +1372.016710 +1372.086940 +1372.140652 +1372.205288 +1372.253173 +1372.300492 +1372.351508 +1372.389803 +1372.398727 +1372.425001 +1372.473319 +1372.544282 +1372.603356 +1372.651175 +1372.708784 +1372.757735 +1372.811015 +1372.872487 +1372.913479 +1372.952806 +1372.992300 +1373.029829 +1373.072120 +1373.133725 +1373.181311 +1373.230561 +1373.283175 +1373.347544 +1373.470888 +1373.519772 +1373.578879 +1373.635856 +1373.678080 +1373.771820 +1373.848643 +1373.933624 +1374.045779 +1374.129029 +1374.181843 +1374.232126 +1374.294763 +1374.377913 +1374.453071 +1374.512512 +1374.567889 +1374.626797 +1374.675382 +1374.738119 +1374.783773 +1374.831159 +1374.915741 +1375.088868 +1375.294529 +1375.361195 +1375.442314 +1375.468987 +1375.522767 +1375.573150 +1375.607316 +1375.642680 +1375.673949 +1375.705318 +1375.719603 +1375.758797 +1375.770186 +1375.886470 +1376.044345 +1376.081341 +1376.113975 +1376.140515 +1376.160062 +1376.179177 +1376.195094 +1376.273416 +1376.289566 +1376.346076 +1376.373082 +1376.448107 +1376.575646 +1376.627428 +1376.646276 +1376.674747 +1376.711211 +1376.737884 +1376.746442 +1376.786469 +1376.819769 +1376.960594 +1377.016938 +1377.090165 +1377.131590 +1377.177677 +1377.285103 +1377.325862 +1377.339815 +1377.352302 +1377.392362 +1377.414540 +1377.429991 +1377.441247 +1377.467187 +1377.498323 +1377.605848 +1377.667487 +1377.721233 +1377.770184 +1377.809878 +1377.847007 +1377.867187 +1377.881672 +1377.897190 +1377.916571 +1377.941612 +1377.953301 +1377.961426 +1377.977710 +1378.002252 +1378.071549 +1378.074613 +1378.086068 +1378.132987 +1378.179408 +1378.242145 +1378.289331 +1378.334253 +1378.386567 +1378.428425 +1378.454399 +1378.478175 +1378.522031 +1378.565455 +1378.580839 +1378.601185 +1378.654732 +1378.706746 +1378.753267 +1378.802517 +1378.850769 +1378.890396 +1378.934752 +1378.989630 +1379.034885 +1379.065321 +1379.108844 +1379.164588 +1379.213006 +1379.267985 +1379.321032 +1379.430988 +1379.469350 +1379.503183 +1379.544208 +1379.650069 +1379.702783 +1379.756729 +1379.800984 +1379.850035 +1379.900252 +1379.948470 +1379.994258 +1380.040411 +1380.078840 +1380.114704 +1380.151001 +1380.176176 +1380.222463 +1380.277607 +1380.371680 +1380.415802 +1380.464620 +1380.488496 +1380.512839 +1380.544141 +1380.584234 +1380.628689 +1380.727524 +1380.776741 +1380.816401 +1380.887131 +1380.916501 +1381.018333 +1381.072945 +1381.116701 +1381.166950 +1381.212538 +1381.267450 +1381.323327 +1381.378172 +1381.422428 +1381.464619 +1381.496321 +1381.537380 +1381.575275 +1381.618965 +1381.667716 +1381.719930 +1381.765418 +1381.818332 +1381.862521 +1381.906743 +1381.949567 +1381.998385 +1382.036580 +1382.094622 +1382.140376 +1382.192824 +1382.234615 +1382.289860 +1382.326190 +1382.369447 +1382.412770 +1382.471878 +1382.507209 +1382.561388 +1382.613835 +1382.679536 +1382.734881 +1382.793955 +1382.852663 +1382.910039 +1382.931418 +1382.980402 +1383.035480 +1383.088061 +1383.148101 +1383.204045 +1383.258590 +1383.314534 +1383.363885 +1383.391657 +1383.453495 +1383.510604 +1383.556292 +1383.617531 +1383.668813 +1383.728886 +1383.784231 +1383.836645 +1383.875739 +1383.961020 +1383.996518 +1384.064117 +1384.123957 +1384.150098 +1384.233414 +1384.268113 +1384.319328 +1384.363084 +1384.413567 +1384.459288 +1384.506474 +1384.560753 +1384.610903 +1384.650530 +1384.844969 +1384.891622 +1384.947333 +1385.003776 +1385.057756 +1385.102278 +1385.164749 +1385.213034 +1385.263317 +1385.300579 +1385.357156 +1385.410736 +1385.471741 +1385.537309 +1385.606573 +1385.675504 +1385.745134 +1385.816996 +1385.871175 +1385.956889 +1386.111701 +1386.168011 +1386.217362 +1386.282563 +1386.567711 +1386.620558 +1386.691520 +1386.826285 +1386.832479 +1386.873705 +1386.981031 +1387.071440 +1387.196049 +1387.290487 +1387.376068 +1387.520324 +1387.734643 +1387.810067 +1387.867610 +1387.958685 +1387.960650 +1388.141036 +1388.298745 +1388.385391 +1388.445698 +1388.492617 +1388.607669 +1388.680330 +1388.948195 +1389.002707 +1389.528647 +1390.462013 +1390.682825 +1391.220886 +1391.224183 +1391.228679 +1391.238003 +1392.903469 +1392.906433 +1392.908664 +1392.911794 +1393.427444 +1393.432772 +1393.436136 +1393.723681 +1393.727844 +1394.102768 +1394.111260 +1394.114723 +1394.118652 +1394.422215 +1394.427144 +1394.571100 +1394.583287 +1395.246024 +1395.279058 +1395.368568 +1395.473396 +1395.704598 +1395.960842 +1396.285950 +1396.642759 +1396.755879 +1397.287913 +1397.448619 +1397.771263 +1398.284249 +1398.298302 +1398.495338 +1399.085347 +1399.419147 +1400.086579 +1400.094337 +1400.108923 +1400.371893 +1400.378353 +1400.620611 +1400.634064 +1400.648250 +1400.900098 +1400.908389 +1401.292405 +1401.701562 +1401.967296 +1402.700529 +1402.704625 +1402.707921 +1403.219043 +1403.236858 +1403.440588 +1403.462066 +1403.536292 +1403.749312 +1404.098396 +1404.848445 +1404.995332 +1405.342617 +1405.346846 +1405.350143 +1406.267558 +1406.272253 +1406.275017 +1406.279979 +1406.792566 +1406.797061 +1406.801990 +1407.944013 +1407.948076 +1407.951639 +1408.329361 +1408.334289 +1408.339351 +1408.698092 +1408.701055 +1408.703819 +1408.708315 +1408.821635 +1408.826363 +1408.829926 +1409.098591 +1409.102021 +1409.109913 +1409.240549 +1409.246043 +1409.253902 +1409.445743 +1409.508214 +1409.558231 +1409.594361 +1409.726662 +1409.941614 +1410.075613 +1410.285037 +1410.470151 +1410.510511 +1410.543211 +1410.553035 +1410.706881 +1410.794027 +1410.884903 +1410.963324 +1410.982572 +1410.999355 +1411.004283 +1411.033954 +1411.064590 +1411.178875 +1411.308013 +1411.372381 +1412.481438 +1412.484568 +1412.487432 +1412.491761 +1412.910675 +1412.913772 +1412.916369 +1412.922397 +1413.138713 +1413.141777 +1413.144075 +1413.147138 +1413.576442 +1413.607977 +1413.610941 +1413.613971 +1413.624394 +1413.878273 +1413.893624 +1413.922429 +1414.099418 +1414.104946 +1414.111240 +1414.181403 +1414.187430 +1414.315868 +1414.328156 +1414.367150 +1414.465152 +1414.531519 +1414.596521 +1414.652431 +1414.706278 +1414.749301 +1414.788928 +1414.817366 +1414.848469 +1414.937613 +1415.004279 +1415.083800 +1415.132950 +1415.199417 +1415.329920 +1415.370879 +1415.387562 +1415.446070 +1415.478738 +1415.566949 +1415.662087 +1415.746703 +1415.836846 +1415.905877 +1415.942407 +1415.969380 +1416.028854 +1416.146636 +1416.150765 +1416.246169 +1416.354594 +1416.513502 +1416.615433 +1416.647534 +1416.687161 +1416.729352 +1416.787294 +1416.853994 +1416.962652 +1417.238310 +1417.313634 +1417.349532 +1417.404477 +1417.429585 +1417.483031 +1417.522292 +1417.561353 +1417.607607 +1417.638809 +1417.693321 +1417.791556 +1417.915965 +1418.109637 +1418.299481 +1418.374339 +1418.474239 +1418.556757 +1418.650996 +1418.711568 +1418.766247 +1418.812467 +1418.967212 +1419.167279 +1419.275504 +1419.330815 +1419.472340 +1419.619559 +1419.722756 +1419.917528 +1419.943202 +1420.083362 +1420.260385 +1420.333778 +1420.460984 +1420.557754 +1420.684893 +1420.841503 +1420.950061 +1421.009435 +1421.056554 +1421.305305 +1421.386790 +1421.471339 +1421.574802 +1421.694649 +1421.796114 +1421.852857 +1422.009667 +1422.172970 +1422.300043 +1422.319790 +1422.386656 +1422.407236 +1422.482260 +1422.529846 +1423.100175 +1423.110065 +1423.489619 +1423.496212 +1423.508267 +1424.008333 +1424.021220 +1424.319488 +1424.323617 +1424.327447 +1424.666008 +1424.671336 +1424.675798 +1424.921852 +1424.929577 +1424.935272 +1425.080626 +1425.085588 +1425.090183 +1425.397875 +1425.462011 +1425.495411 +1425.515324 +1425.534072 +1425.593679 +1425.866639 +1425.896376 +1425.943862 +1426.241697 +1426.247758 +1426.255384 +1426.261977 +1426.349190 +1426.368504 +1426.384288 +1426.416422 +1426.474664 +1426.496442 +1426.518287 +1426.560711 +1426.585453 +1426.597175 +1426.617621 +1426.672932 +1426.846325 +1426.854584 +1426.890648 +1426.906732 +1426.938200 +1426.944827 +1426.952020 +1426.994677 +1427.023448 +1427.040398 +1427.128110 +1427.163641 +1427.201237 +1427.959311 +1427.962242 +1427.970600 +1428.227443 +1428.231073 +1428.233836 +1428.240563 +1428.331172 +1428.336500 +1428.340929 +1428.343793 +1428.348655 +1428.524312 +1428.527676 +1428.530473 +1428.535801 +1428.620316 +1428.628175 +1428.634069 +1428.670499 +1428.684718 +1428.694475 +1428.734569 +1428.748022 +1428.763639 +1428.876660 +1428.893143 +1428.931072 +1428.960576 +1429.018151 +1429.074562 +1429.123879 +1429.140762 +1429.165138 +1429.192377 +1429.229373 +1429.251551 +1429.283353 +1429.317085 +1429.338597 +1429.371864 +1429.421248 +1429.470166 +1429.517452 +1429.572829 +1429.632703 +1429.685850 +1429.737764 +1429.783385 +1429.831537 +1429.880621 +1429.932636 +1429.967668 +1429.991810 +1430.011091 +1430.030938 +1430.068467 +1430.084917 +1430.100768 +1430.135466 +1430.185949 +1430.218816 +1430.242592 +1430.262006 +1430.294507 +1430.323878 +1430.441393 +1430.512289 +1430.587747 +1430.646954 +1430.727307 +1430.792708 +1430.845689 +1430.883817 +1430.983318 +1431.056278 +1431.129072 +1431.181253 +1431.245155 +1431.286547 +1431.364170 +1431.391109 +1431.427040 +1431.471329 +1431.571196 +1431.626940 +1431.650283 +1431.756410 +1431.919081 +1432.000466 +1432.088611 +1432.168864 +1432.204295 +1432.228704 +1432.295937 +1432.333533 +1432.385314 +1432.403629 +1432.437529 +1432.498634 +1432.506559 +1432.548850 +1433.207325 +1433.210422 +1433.214984 +1433.325073 +1433.329003 +1433.332066 +1433.336595 +1433.489775 +1433.493172 +1433.496136 +1433.501530 +1433.661270 +1433.663668 +1433.667131 +1433.807990 +1433.811320 +1433.814450 +1433.819079 +1433.964067 +1433.968196 +1433.971926 +1433.998633 +1434.094070 +1434.099365 +1434.104660 +1434.168229 +1434.179452 +1434.212019 +1434.228336 +1434.274889 +1434.292838 +1434.329435 +1434.359605 +1434.386578 +1434.426205 +1434.460737 +1434.491306 +1434.523341 +1434.557906 +1434.590041 +1434.614483 +1434.638559 +1434.669095 +1434.702395 +1434.761669 +1434.793404 +1434.824306 +1434.862168 +1434.890640 +1434.927370 +1434.964666 +1435.003227 +1435.043786 +1435.083746 +1435.122774 +1435.154875 +1435.190972 +1435.227236 +1435.269294 +1435.308088 +1435.347616 +1435.383646 +1435.431032 +1435.452610 +1435.490040 +1435.520909 +1435.548148 +1435.583413 +1435.669094 +1435.710652 +1435.746716 +1435.781914 +1435.833862 +1435.884445 +1435.945650 +1435.991837 +1436.034295 +1436.076319 +1436.114714 +1436.160202 +1436.205024 +1436.243286 +1436.289106 +1436.330898 +1436.354175 +1436.398597 +1436.453342 +1436.490805 +1436.532163 +1436.573755 +1436.622406 +1436.662200 +1436.689872 +1436.753475 +1436.772023 +1436.804291 +1436.830032 +1436.859003 +1436.891503 +1436.923272 +1436.953475 +1436.993901 +1437.095599 +1437.140221 +1437.165762 +1437.234860 +1437.270424 +1437.325602 +1437.371689 +1437.428466 +1437.473821 +1437.514846 +1437.561100 +1437.609851 +1437.657537 +1437.698096 +1437.746181 +1437.781979 +1437.825202 +1437.872288 +1437.910717 +1437.946947 +1437.990537 +1438.039221 +1438.061998 +1438.089504 +1438.113913 +1438.137623 +1438.163131 +1438.195631 +1438.221172 +1438.252974 +1438.307486 +1438.348045 +1438.476750 +1438.536490 +1438.604189 +1438.648778 +1438.759767 +1438.819807 +1438.873686 +1438.971555 +1439.016843 +1439.085840 +1439.140519 +1439.249210 +1439.309983 +1439.346113 +1439.385307 +1439.410981 +1439.445514 +1439.471321 +1439.503123 +1439.608018 +1439.657601 +1439.730362 +1439.777248 +1439.865160 +1439.943415 +1440.009316 +1440.073751 +1440.124334 +1440.142483 +1440.239519 +1440.300691 +1440.359166 +1440.412579 +1440.468856 +1440.508416 +1440.633191 +1440.680111 +1440.729262 +1440.786638 +1440.844546 +1440.900424 +1440.924133 +1440.957600 +1441.018406 +1441.108516 +1441.166524 +1441.234156 +1441.285838 +1441.352405 +1441.441715 +1441.522235 +1441.593563 +1441.631026 +1441.698092 +1441.759464 +1441.822767 +1441.891099 +1441.940216 +1442.008581 +1442.042014 +1442.117539 +1442.168987 +1442.214675 +1442.361828 +1442.429027 +1442.528194 +1442.598757 +1442.682007 +1442.755334 +1442.836086 +1442.910878 +1442.972650 +1443.027761 +1443.152803 +1443.208580 +1443.277378 +1443.342146 +1443.382672 +1443.456032 +1443.493129 +1443.541247 +1443.598789 +1443.640148 +1443.680374 +1443.728393 +1443.780674 +1443.824597 +1443.891929 +1443.948473 +1444.099189 +1444.163258 +1444.218569 +1444.273947 +1444.348239 +1444.451336 +1444.513807 +1444.628692 +1444.683870 +1444.752235 +1444.809611 +1444.855132 +1444.909744 +1444.933553 +1445.020466 +1445.067286 +1445.102318 +1445.151702 +1445.225328 +1445.301485 +1445.381372 +1445.439447 +1445.473879 +1445.535151 +1445.601984 +1445.671781 +1445.721598 +1445.773646 +1445.820965 +1445.864288 +1445.931121 +1445.965254 +1446.019533 +1446.106646 +1446.167152 +1446.240845 +1446.322829 +1446.404980 +1446.462589 +1446.490328 +1446.528290 +1446.594624 +1446.655596 +1446.699319 +1446.785966 +1446.918067 +1446.944907 +1446.980371 +1446.999119 +1447.022596 +1447.040078 +1447.112206 +1447.185233 +1447.210674 +1447.256695 +1447.287564 +1447.298020 +1447.322595 +1447.458959 +1448.045771 +1448.049368 +1448.051699 +1448.056094 +1448.272078 +1448.274143 +1448.501049 +1448.503280 +1448.506277 +1448.601315 +1448.604845 +1448.607942 +1448.612005 +1448.691458 +1448.696120 +1448.701015 +1448.946936 +1448.950532 +1448.953629 +1448.958957 +1449.156959 +1449.160056 +1449.162487 +1449.166117 +1449.330685 +1449.333549 +1449.335880 +1449.339576 +1449.495254 +1449.498217 +1449.500948 +1449.505044 +1449.604777 +1449.608041 +1449.611005 +1449.615367 +1449.736446 +1449.740075 +1449.743339 +1449.750265 +1449.865983 +1449.870012 +1449.873442 +1449.880302 +1449.998883 +1450.002213 +1450.005576 +1450.012236 +1450.099915 +1450.105177 +1450.110271 +1450.141840 +1450.202879 +1450.230451 +1450.260255 +1450.282532 +1450.309605 +1450.338376 +1450.365916 +1450.390824 +1450.447101 +1450.470844 +1450.495519 +1450.519995 +1450.544204 +1450.571110 +1450.594087 +1450.622126 +1450.652862 +1450.679002 +1450.705775 +1450.726388 +1450.752196 +1450.783364 +1450.808239 +1450.838443 +1450.867780 +1450.894786 +1450.924423 +1450.952528 +1450.979901 +1451.009305 +1451.037110 +1451.070910 +1451.094919 +1451.121892 +1451.148699 +1451.175372 +1451.207939 +1451.241206 +1451.270077 +1451.300746 +1451.352495 +1451.417263 +1451.479201 +1451.513667 +1451.546234 +1451.576837 +1451.611635 +1451.635045 +1451.668778 +1451.696151 +1451.716164 +1451.739607 +1451.766347 +1451.793620 +1451.823923 +1451.850363 +1451.881598 +1451.904475 +1451.941006 +1451.967446 +1452.004209 +1452.040539 +1452.071408 +1452.110836 +1452.143336 +1452.175604 +1452.213699 +1452.249563 +1452.283796 +1452.325221 +1452.365614 +1452.400546 +1452.435011 +1452.462783 +1452.489523 +1452.510169 +1452.546832 +1452.580965 +1452.652493 +1452.689057 +1452.727785 +1452.768277 +1452.799546 +1452.831281 +1452.866346 +1452.892986 +1452.928850 +1452.989889 +1453.055390 +1453.093852 +1453.128517 +1453.189722 +1453.220591 +1453.252493 +1453.307238 +1453.345400 +1453.382962 +1453.437874 +1453.482895 +1453.510235 +1453.541737 +1453.577634 +1453.605573 +1453.624087 +1453.654990 +1453.690255 +1453.725220 +1453.787058 +1453.835842 +1453.885293 +1453.931147 +1453.975735 +1454.010734 +1454.037307 +1454.135809 +1454.184193 +1454.233144 +1454.271606 +1454.329282 +1454.359018 +1454.410001 +1454.501809 +1454.546631 +1454.629048 +1454.695781 +1454.744433 +1454.787856 +1454.867709 +1454.904805 +1454.947896 +1454.998045 +1455.043866 +1455.095947 +1455.138971 +1455.178032 +1455.253923 +1455.365211 +1455.411731 +1455.468175 +1455.533509 +1455.592584 +1455.646330 +1455.701575 +1455.818125 +1455.857485 +1455.901474 +1455.936772 +1455.979163 +1455.999876 +1456.062447 +1456.112763 +1456.148427 +1456.204371 +1456.243399 +1456.307801 +1456.361847 +1456.407202 +1456.453189 +1456.590618 +1456.627681 +1456.698976 +1456.763312 +1456.857384 +1456.915393 +1457.094347 +1457.189618 +1457.271004 +1457.356718 +1457.405036 +1457.438170 +1457.482991 +1457.641266 +1457.755219 +1457.787120 +1457.835372 +1457.881093 +1457.952322 +1458.022218 +1458.103737 +1458.179561 +1459.296176 +1459.298707 +1459.302570 +1460.443495 +1460.446558 +1460.448556 +1460.459678 +1460.515522 +1460.520984 +1460.534903 +1460.619585 +1460.625246 +1460.660411 +1460.732339 +1460.759012 +1460.771799 +1460.806897 +1461.350320 +1461.353484 +1461.356114 +1461.361076 +1461.588282 +1461.592311 +1461.598139 +1461.606730 +1461.715088 +1461.718152 +1461.721182 +1461.725411 +1461.800270 +1461.805298 +1461.810393 +1461.867036 +1461.871898 +1461.894575 +1461.928375 +1461.931572 +1461.984852 +1461.991012 +1461.993510 +1462.057612 +1462.073130 +1462.094775 +1462.119017 +1462.232803 +1462.240995 +1462.280556 +1462.361175 +1462.369866 +1462.431205 +1462.462607 +1462.477725 +1462.508927 +1462.536899 +1462.564671 +1462.607861 +1462.639996 +1462.665504 +1462.691478 +1462.721148 +1462.735833 +1462.773662 +1462.798570 +1462.816819 +1462.841694 +1462.870332 +1462.896805 +1462.912024 +1462.946922 +1462.988913 +1463.060741 +1463.107994 +1463.153249 +1463.186416 +1463.230471 +1463.279289 +1463.317584 +1463.356179 +1463.401567 +1463.438530 +1463.484784 +1463.518883 +1463.550351 +1463.566768 +1463.614753 +1463.642326 +1463.663105 +1463.679156 +1463.705363 +1463.731736 +1463.764670 +1463.784883 +1463.803331 +1463.849052 +1463.889778 +1463.952149 +1464.006395 +1464.166901 +1464.216951 +1464.257843 +1464.309791 +1464.347587 +1464.396471 +1464.443524 +1464.490777 +1464.526674 +1464.568565 +1464.611989 +1464.648086 +1464.701566 +1464.754246 +1464.800067 +1464.820180 +1464.864602 +1464.888745 +1464.907360 +1464.921379 +1464.937529 +1464.970263 +1464.998602 +1465.035864 +1465.082751 +1465.286513 +1465.319247 +1465.375025 +1465.440393 +1465.497868 +1465.558874 +1465.612354 +1465.714951 +1465.758075 +1465.787079 +1465.850549 +1465.893273 +1465.941158 +1466.026373 +1466.075324 +1466.118414 +1466.192540 +1466.233865 +1466.301797 +1466.341557 +1466.378021 +1466.410288 +1466.436329 +1466.476189 +1466.505427 +1466.552313 +1466.614651 +1466.670894 +1466.715083 +1466.751747 +1466.794471 +1466.825007 +1466.854411 +1466.907091 +1466.952379 +1466.981184 +1467.016548 +1467.059072 +1467.109888 +1467.165299 +1467.215316 +1467.252479 +1467.315749 +1467.362302 +1467.417314 +1467.511786 +1467.559738 +1467.618612 +1467.673824 +1467.719278 +1467.766897 +1467.816914 +1467.939358 +1467.995668 +1468.041056 +1468.085711 +1468.135462 +1468.167430 +1468.202028 +1468.234729 +1468.254975 +1468.278219 +1468.314782 +1468.354675 +1468.405192 +1468.482481 +1468.541622 +1468.627269 +1468.676620 +1468.761368 +1468.806190 +1468.852444 +1468.911851 +1468.989307 +1469.057872 +1469.130299 +1469.191771 +1469.265763 +1469.287475 +1469.331065 +1469.370126 +1469.420842 +1469.522440 +1469.560302 +1469.615080 +1469.655906 +1469.687841 +1469.742919 +1469.807288 +1469.839656 +1469.886076 +1469.914914 +1469.945749 +1470.649545 +1470.655273 +1470.659069 +1470.994766 +1470.999794 +1471.005189 +1471.239022 +1471.243151 +1471.246714 +1471.255105 +1471.451742 +1471.454872 +1471.457336 +1471.461599 +1471.604589 +1471.607719 +1471.716610 +1471.720972 +1471.724069 +1471.727599 +1471.820240 +1471.825002 +1471.829431 +1471.907885 +1471.913347 +1471.920639 +1471.986507 +1471.995664 +1472.013013 +1472.082211 +1472.107585 +1472.149777 +1472.178082 +1472.204722 +1472.239087 +1472.274185 +1472.302657 +1472.322604 +1472.356803 +1472.388338 +1472.421804 +1472.450476 +1472.480346 +1472.511481 +1472.543716 +1472.576649 +1472.607552 +1472.641451 +1472.673619 +1472.705087 +1472.740785 +1472.773053 +1472.807485 +1472.839653 +1472.872886 +1472.906452 +1472.944081 +1472.975750 +1473.004921 +1473.036023 +1473.067991 +1473.102057 +1473.136089 +1473.166925 +1473.194398 +1473.226266 +1473.254970 +1473.291201 +1473.356968 +1473.394897 +1473.427065 +1473.462429 +1473.493531 +1473.513245 +1473.536988 +1473.587804 +1473.623368 +1473.637521 +1473.640518 +1473.705253 +1473.747943 +1473.796129 +1473.841483 +1473.880577 +1473.920604 +1473.964760 +1474.000790 +1474.038819 +1474.065126 +1474.101123 +1474.133324 +1474.170587 +1474.209115 +1474.236554 +1474.269022 +1474.301389 +1474.331126 +1474.372085 +1474.397860 +1474.422934 +1474.435688 +1474.528962 +1474.554669 +1474.597593 +1474.646577 +1474.687769 +1474.722268 +1474.761862 +1474.801655 +1474.850173 +1474.911712 +1474.949707 +1474.998225 +1475.053403 +1475.102687 +1475.147542 +1475.211345 +1475.260130 +1475.313043 +1475.374615 +1475.420336 +1475.527562 +1475.584272 +1475.640516 +1475.684771 +1475.739184 +1475.844012 +1475.898191 +1475.963226 +1475.992164 +1476.037818 +1476.073815 +1476.118138 +1476.132157 +1476.153735 +1476.189400 +1476.205317 +1476.240781 +1476.307914 +1476.327894 +1476.343212 +1476.352137 +1476.389666 +1476.522599 +1476.582140 +1476.600455 +1476.636952 +1476.773815 +1476.827028 +1476.878044 +1476.914574 +1476.995326 +1477.041147 +1477.076412 +1477.169485 +1477.222865 +1477.286135 +1477.318902 +1477.420401 +1477.459295 +1477.520467 +1477.568219 +1477.609012 +1477.665422 +1477.716571 +1477.772715 +1477.889797 +1477.934553 +1477.960760 +1478.002385 +1478.090197 +1478.149471 +1478.204616 +1478.248805 +1478.281805 +1478.319734 +1478.358262 +1478.449604 +1478.488931 +1478.553700 +1478.630056 +1478.701285 +1478.821332 +1478.851168 +1478.886100 +1478.925994 +1478.965654 +1479.022397 +1479.104282 +1479.143809 +1479.177076 +1479.242044 +1479.681404 +1479.685733 +1479.689030 +1479.695723 +1480.031753 +1480.034784 +1480.036948 +1480.040478 +1480.218733 +1480.221563 +1480.223794 +1480.226592 +1480.404214 +1480.406878 +1480.409176 +1480.412139 +1480.567917 +1480.570714 +1480.573078 +1480.576475 +1480.721763 +1480.724693 +1480.727157 +1480.730521 +1480.855329 +1480.858393 +1480.861190 +1480.865252 +1480.985066 +1480.988429 +1480.991160 +1480.995589 +1481.094856 +1481.098419 +1481.101483 +1481.105712 +1481.224959 +1481.228855 +1481.233018 +1481.245938 +1481.358858 +1481.363021 +1481.367050 +1481.383434 +1481.473277 +1481.478439 +1481.485365 +1481.520297 +1481.541975 +1481.566117 +1481.592291 +1481.610207 +1481.638811 +1481.658358 +1481.683766 +1481.704945 +1481.726690 +1481.745238 +1481.764452 +1481.787030 +1481.809174 +1481.835681 +1481.859457 +1481.887030 +1481.911372 +1481.936314 +1481.960489 +1481.981901 +1482.007842 +1482.032950 +1482.061488 +1482.087829 +1482.113103 +1482.138478 +1482.165251 +1482.193856 +1482.218365 +1482.246170 +1482.271445 +1482.293889 +1482.314768 +1482.340775 +1482.365584 +1482.389360 +1482.412171 +1482.433915 +1482.461688 +1482.481068 +1482.504778 +1482.532750 +1482.560122 +1482.585131 +1482.611837 +1482.641408 +1482.660189 +1482.703113 +1482.725823 +1482.754028 +1482.779203 +1482.807242 +1482.833482 +1482.857558 +1482.879969 +1482.909806 +1482.934814 +1482.968747 +1482.994421 +1483.028520 +1483.088993 +1483.118930 +1483.145470 +1483.173275 +1483.199749 +1483.225090 +1483.248667 +1483.275406 +1483.301347 +1483.331883 +1483.369812 +1483.437544 +1483.469645 +1483.497850 +1483.573375 +1483.603811 +1483.641140 +1483.669712 +1483.704444 +1483.738909 +1483.815799 +1483.854527 +1483.891556 +1483.927820 +1483.963484 +1483.994287 +1484.032682 +1484.066814 +1484.098150 +1484.124323 +1484.146901 +1484.205309 +1484.262751 +1484.293787 +1484.331616 +1484.397150 +1484.433414 +1484.477470 +1484.517230 +1484.563184 +1484.599514 +1484.659121 +1484.746068 +1484.793254 +1484.838841 +1484.882365 +1484.929284 +1484.976637 +1485.022358 +1485.072374 +1485.115897 +1485.157556 +1485.226320 +1485.259920 +1485.304475 +1485.350163 +1485.398714 +1485.446267 +1485.474006 +1485.506706 +1485.556656 +1485.607805 +1485.656523 +1485.693886 +1485.745700 +1485.768344 +1485.858954 +1485.944168 +1485.999180 +1486.061851 +1486.081697 +1486.289523 +1486.349196 +1486.412733 +1486.493618 +1486.567045 +1486.648530 +1486.730981 +1486.787924 +1486.864147 +1486.898779 +1487.051793 +1487.089289 +1487.197480 +1487.240637 +1487.303308 +1487.417560 +1487.461816 +1487.574869 +1487.653324 +1487.695116 +1487.765578 +1487.835808 +1487.899311 +1487.973004 +1488.036574 +1488.108169 +1488.158618 +1488.252258 +1488.313297 +1488.380163 +1488.435674 +1488.518392 +1488.564745 +1488.595847 +1488.651125 +1488.684525 +1488.791618 +1488.847928 +1488.902341 +1488.977232 +1489.120422 +1489.169273 +1489.213929 +1489.278264 +1489.380129 +1489.538637 +1489.636772 +1489.743898 +1489.835307 +1489.891983 +1490.009632 +1490.091417 +1490.150491 +1490.260248 +1490.422885 +1491.709697 +1492.809163 +1492.812593 +1492.814624 +1492.816822 +1492.820485 +1493.104135 +1493.106266 +1493.108330 +1493.111194 +1493.306898 +1493.309695 +1493.311760 +1493.314424 +1493.475596 +1493.478327 +1493.480758 +1493.484221 +1493.717521 +1493.720851 +1493.723381 +1493.727044 +1493.944793 +1493.947757 +1493.950421 +1493.954650 +1494.111759 +1494.114923 +1494.117354 +1494.120917 +1494.255016 +1494.258313 +1494.261576 +1494.266904 +1494.391080 +1494.395109 +1494.398672 +1494.403767 +1494.525612 +1494.529474 +1494.533171 +1494.544459 +1494.647523 +1494.650753 +1494.654816 +1494.664240 +1494.760909 +1494.765805 +1494.773630 +1494.795675 +1494.878392 +1494.880290 +1494.899737 +1494.998971 +1495.019917 +1495.082821 +1495.102434 +1495.158911 +1495.201635 +1495.246990 +1495.314189 +1495.356580 +1495.393510 +1495.450419 +1495.496606 +1495.540229 +1495.597239 +1495.649920 +1495.712857 +1495.770099 +1495.881621 +1495.922413 +1495.964471 +1496.013123 +1496.064172 +1496.097638 +1496.132104 +1496.172963 +1496.249886 +1496.305230 +1496.331770 +1496.466069 +1496.480022 +1496.491044 +1496.600335 +1496.732303 +1496.735233 +1496.846622 +1496.869066 +1496.921247 +1497.059242 +1497.157943 +1497.251883 +1497.305429 +1497.356145 +1497.411223 +1497.451117 +1497.610957 +1497.642592 +1497.794806 +1497.971129 +1498.057743 +1498.184083 +1498.207659 +1498.374226 +1498.502031 +1498.569897 +1498.626007 +1498.717815 +1498.789777 +1498.853746 +1498.920845 +1498.964302 +1498.994205 +1499.100466 +1499.163469 +1499.355410 +1499.464135 +1499.506159 +1499.548617 +1499.674757 +1499.701963 +1499.822476 +1499.863269 +1499.894304 +1499.898367 +1500.030868 +1500.180218 +1500.398766 +1501.833097 +1501.835661 +1501.837626 +1501.840356 +1507.148942 +1507.151673 +1507.159965 +1507.161996 +1507.163894 +1507.166491 +1507.172619 +1511.910443 +1511.912707 +1511.914572 +1511.916637 +1511.920233 +1512.103216 +1512.110010 +1512.112008 +1512.116004 +1512.119267 +1513.775909 +1513.777940 +1513.779738 +1513.781903 +1513.785233 +1513.923195 +1513.927324 +1513.929622 +1513.934716 +1515.348535 +1515.353629 +1515.355861 +1515.357892 +1515.360423 +1515.749833 +1515.754362 +1515.756759 +1515.761088 +1516.516332 +1516.518796 +1516.520628 +1516.522892 +1516.527754 +1516.767115 +1516.773508 +1516.775440 +1516.777471 +1516.779702 +1516.784064 +1516.970378 +1516.972376 +1516.974474 +1516.976538 +1516.980135 +1517.169578 +1517.171976 +1517.173941 +1517.176205 +1517.181133 +1517.512502 +1517.515099 +1517.517097 +1517.520494 +1517.786561 +1517.788725 +1517.791622 +1517.866614 +1517.869378 +1517.872042 +1517.875605 +1518.142837 +1518.145601 +1518.147799 +1518.151196 +1518.282364 +1518.285128 +1518.287559 +1518.290456 +1518.428385 +1518.431415 +1518.433646 +1518.437443 +1518.746700 +1518.749697 +1518.752227 +1518.756590 +1519.059387 +1519.062517 +1519.064815 +1519.068711 +1519.373739 +1519.376802 +1519.379067 +1519.383829 +1519.504375 +1519.507039 +1519.509503 +1519.512766 +1519.645100 +1519.648430 +1519.652293 +1519.743635 +1519.748264 +1519.751860 +1519.757155 +1519.854557 +1519.857654 +1519.860651 +1519.865913 +1520.094417 +1520.097581 +1520.100078 +1520.104307 +1520.318493 +1520.321390 +1520.323888 +1520.327983 +1520.488822 +1520.492053 +1520.494617 +1520.498912 +1520.671306 +1520.674670 +1520.677001 +1520.681763 +1520.819092 +1520.823088 +1520.826751 +1520.961782 +1520.967010 +1520.972638 +1521.144666 +1521.149761 +1521.154190 +1521.271972 +1521.278365 +1521.285392 +1521.447396 +1521.454556 +1521.463713 +1521.587722 +1521.595215 +1521.614829 +1521.676367 +1521.701608 +1521.757819 +1521.784792 +1521.850859 +1521.854755 +1521.904772 +1522.030379 +1522.061315 +1522.082427 +1522.127715 +1522.139936 +1522.173836 +1522.213929 +1522.220123 +1522.256220 +1522.276733 +1522.278165 +1522.435341 +1522.619157 +1522.804205 +1522.871637 +1522.937138 +1522.996512 +1523.169639 +1523.193349 +1523.339735 +1523.462679 +1523.601307 +1523.657650 +1523.684091 +1523.714194 +1523.815193 +1523.892649 +1523.956052 +1524.437670 +1524.441965 +1524.445362 +1524.466474 +1524.604270 +1524.608565 +1524.615691 +1524.654519 +1524.688152 +1524.690517 +1524.704602 +1524.815958 +1524.981226 +1525.056717 +1525.109164 +1525.172867 +1525.233140 +1525.270669 +1525.322018 +1525.383123 +1525.424848 +1525.492014 +1525.542231 +1525.616656 +1525.650056 +1525.845294 +1525.884921 +1525.899706 +1525.999306 +1526.029709 +1526.033539 +1526.124348 +1526.760411 +1526.763808 +1526.766139 +1526.769735 +1528.127077 +1528.130007 +1528.132171 +1528.134369 +1528.137433 +1528.997172 +1528.999104 +1529.001135 +1529.004631 +1530.029306 +1530.031936 +1530.033801 +1530.036166 +1530.041593 +1530.170398 +1530.172529 +1530.174827 +1530.177424 +1530.410191 +1530.412422 +1530.414787 +1530.419082 +1530.656145 +1530.658676 +1530.660740 +1530.663504 +1532.123876 +1532.126240 +1532.127938 +1532.129903 +1532.132634 +1532.675956 +1532.699999 +1532.702430 +1532.704395 +1532.706759 +1532.712154 +1535.077153 +1535.385944 +1535.388674 +1535.390339 +1535.395101 +1535.646949 +1535.649746 +1535.651678 +1535.653676 +1535.656573 +1536.107954 +1536.109886 +1536.111850 +1536.114714 +1536.978516 +1536.980881 +1536.982679 +1536.984910 +1536.989705 +1538.816776 +1539.096729 +1539.111148 +1539.113113 +1539.115344 +1539.118274 +1539.241551 +1539.246679 +1539.248311 +1539.250142 +1539.252240 +1539.255437 +1542.261561 +1542.263526 +1542.265424 +1542.267822 +1542.321701 +1542.323466 +1542.325564 +1542.327529 +1542.330725 +1543.996058 +1543.998090 +1544.000021 +1544.002385 +1544.942977 +1544.947106 +1544.948905 +1544.950836 +1544.952701 +1544.954865 +1545.291761 +1545.294425 +1545.296323 +1545.298321 +1545.301618 +1547.188496 +1547.190394 +1547.192992 +1547.485565 +1547.502115 +1547.504480 +1547.506311 +1547.508376 +1547.511806 +1547.726724 +1547.728722 +1547.732019 +1547.934982 +1550.265050 +1550.340274 +1550.344537 +1550.349665 +1550.351630 +1550.353794 +1551.278702 +1551.283031 +1551.285195 +1551.287227 +1552.837142 +1552.839906 +1552.841770 +1552.843635 +1552.846166 +1553.395383 +1554.850093 +1554.952957 +1555.076533 +1555.385458 +1555.597778 +1555.600043 +1555.602274 +1555.604172 +1555.606137 +1556.415560 +1556.886755 +1556.905503 +1556.908866 +1556.910797 +1556.912829 +1556.915759 +1561.051786 +1561.056781 +1561.058912 +1561.061010 +1561.063307 +1562.971098 +1562.975194 +1562.977258 +1562.979722 +1562.982952 +1563.784317 +1564.071862 +1564.216917 +1564.504230 +1565.286913 +1565.289377 +1565.291542 +1565.293939 +1565.641858 +1565.648684 +1567.946351 +1567.947316 +1567.953910 +1567.956108 +1567.958738 +1569.375254 +1573.314644 +1573.396096 +1573.488070 +1573.491966 +1573.494397 +1573.496795 +1573.501490 +1582.399750 +1582.490326 +1583.033182 +1583.122626 +1583.126855 +1583.131717 +1583.873841 +1583.875772 +1583.878303 +1584.525122 +1584.796284 +1584.805641 +1584.810237 +1584.814632 +1584.816963 +1586.493751 +1586.510102 +1586.512566 +1586.517061 +1586.589056 +1590.694380 +1592.028711 +1594.465638 +1595.772031 +1596.142926 +1596.213222 +1596.219083 +1596.222247 +1596.224344 +1598.796337 +1599.136396 +1599.137562 +1599.138361 +1599.140126 +1599.142157 +1599.144555 +1599.151814 +1600.171660 +1605.432927 +1605.436789 +1605.439021 +1605.441352 +1605.444315 +1608.151405 +1608.153470 +1608.155535 +1608.158032 +1609.799989 +1611.570283 +1614.320530 +1614.414802 +1614.852031 +1614.853930 +1614.855861 +1614.858059 +1624.917989 +1624.920153 +1624.921985 +1624.924282 +1628.291878 +1628.610359 +1628.613523 +1628.615454 +1628.617918 +1628.623213 +1628.999303 +1629.002334 +1629.005131 +1629.240162 +1629.244325 +1629.247688 +1629.390046 +1629.398437 +1629.405830 +1629.505730 +1629.516952 +1629.583419 +1629.808693 +1630.203764 +1630.474826 +1630.557277 +1630.654546 +1630.793308 +1630.842025 +1630.894739 +1630.952748 +1631.011955 +1631.055478 +1631.121079 +1631.202565 +1631.236630 +1631.278122 +1631.319414 +1631.350550 +1631.392907 +1631.436264 +1631.463070 +1631.490443 +1631.535565 +1631.575192 +1631.616284 +1631.646587 +1631.654912 +1631.697469 +1631.734565 +1631.769364 +1631.802431 +1631.844522 +1631.891275 +1631.938828 +1631.991142 +1632.029304 +1632.069064 +1632.123909 +1632.165334 +1632.180919 +1632.215151 +1632.236629 +1632.295304 +1632.326007 +1632.366433 +1632.422477 +1632.458507 +1632.535763 +1632.574491 +1632.616083 +1632.713219 +1632.766299 +1632.837028 +1632.882816 +1632.950348 +1632.997401 +1633.061770 +1633.117448 +1633.190774 +1633.251280 +1633.320711 +1633.507124 +1633.552113 +1633.683947 +1633.763035 +1633.827903 +1633.933364 +1633.993837 +1634.131666 +1634.237227 +1634.435428 +1634.517247 +1634.577187 +1634.695968 +1634.788075 +1634.865032 +1634.920143 +1634.996267 +1635.021675 +1635.173756 +1635.252111 +1635.363400 +1635.418744 +1635.522174 +1635.541654 +1635.601761 +1635.623473 +1635.735460 +1635.783745 +1635.833995 +1635.954142 +1636.047448 +1636.157338 +1636.203991 +1636.250545 +1636.275886 +1636.301194 +1636.304657 +1636.341920 +1636.467727 +1636.615246 +1636.899129 +1637.029465 +1637.122972 +1637.295565 +1637.381613 +1637.476751 +1637.549278 +1637.601293 +1637.673554 +1637.738256 +1637.796730 +1637.844016 +1637.886940 +1637.942751 +1637.993200 +1638.066927 +1638.186773 +1638.253273 +1638.292468 +1638.327066 +1638.371322 +1638.441918 +1638.499494 +1638.557402 +1638.623137 +1638.682710 +1638.738321 +1638.787172 +1638.827465 +1638.856070 +1638.910815 +1638.959666 +1639.010216 +1639.063895 +1639.117975 +1639.188471 +1639.237422 +1639.360798 +1639.433159 +1639.508151 +1639.629962 +1639.735090 +1639.748310 +1640.011214 +1640.119106 +1640.167591 +1640.204554 +1640.271253 +1640.316941 +1640.387537 +1640.513511 +1640.623667 +1640.705785 +1640.811879 +1640.898792 +1640.960264 +1641.080377 +1642.287602 +1642.299823 +1642.493362 +1642.758797 +1643.128493 +1643.274814 +1643.329592 +1643.399922 +1643.508813 +1643.734287 +1643.797657 +1644.068819 +1644.731822 +1645.320566 +1645.452900 +1645.890329 +1646.096189 +1646.440678 +1646.575276 +1646.744207 +1647.370547 +1647.416301 +1647.470647 +1647.552831 +1647.864952 +1647.995155 +1648.325758 +1648.331452 +1648.483899 +1648.622527 +1648.697485 +1649.041042 +1649.144871 +1649.300815 +1649.394188 +1649.471044 +1649.525490 +1649.703612 +1649.775906 +1649.903245 +1649.999682 +1650.078836 +1650.129752 +1650.312902 +1650.394553 +1650.578236 +1650.787327 +1650.942538 +1651.065881 +1651.252095 +1651.402511 +1652.338341 +1652.377302 +1652.490555 +1654.089322 +1654.322521 +1658.854818 +1658.857815 +1658.859946 +1658.862777 +1662.351584 +1662.354049 +1662.356280 +1662.360309 +1664.502498 +1664.505229 +1664.507326 +1664.510590 +1665.004995 +1665.008025 +1665.011821 +1665.428504 +1665.432600 +1665.707725 +1665.712154 +1665.715650 +1665.841857 +1665.849083 +1666.003029 +1666.010688 +1666.022177 +1666.133365 +1666.174791 +1666.226006 +1666.278520 +1666.364967 +1666.428703 +1666.469629 +1666.523175 +1666.604394 +1666.656009 +1666.747584 +1666.805426 +1666.847884 +1666.882815 +1666.957973 +1667.012818 +1667.081117 +1667.154843 +1667.201962 +1667.247517 +1667.305392 +1667.365865 +1667.433964 +1667.533564 +1667.602894 +1667.644653 +1667.735961 +1667.779984 +1667.814749 +1667.856407 +1667.903194 +1667.980949 +1668.047549 +1668.088808 +1668.182281 +1668.215614 +1668.275421 +1668.370360 +1668.403993 +1668.501661 +1668.538391 +1668.593769 +1668.642787 +1668.708288 +1668.774721 +1668.828634 +1668.891505 +1668.937792 +1669.023173 +1669.144518 +1669.245317 +1669.324271 +1669.550911 +1669.736892 +1669.843119 +1669.920674 +1670.015479 +1670.049013 +1670.213448 +1670.313814 +1670.346282 +1670.416778 +1670.526168 +1670.589105 +1670.718875 +1670.767726 +1670.780980 +1670.810683 +1670.843750 +1671.143550 +1671.149278 +1671.153207 +1671.161932 +1671.249211 +1671.256837 +1671.262065 +1671.288106 +1671.342951 +1671.358169 +1671.654938 +1671.664828 +1671.673187 +1671.704689 +1671.734492 +1671.747479 +1671.760799 +1671.876650 +1671.896430 +1671.907186 +1671.928231 +1671.938854 +1671.945914 +1671.968957 +1672.000592 +1672.035857 +1672.168158 +1672.172753 +1672.177882 +1672.268657 +1672.270789 +1672.275284 +1672.280279 +1672.336156 +1672.347845 +1672.686706 +1672.691800 +1672.696096 +1672.729663 +1672.754504 +1672.761364 +1672.800525 +1672.818673 +1672.840718 +1672.860631 +1672.874817 +1672.888337 +1672.924801 +1672.959366 +1672.994830 +1673.070388 +1673.094264 +1673.104787 +1673.159932 +1673.201091 +1673.232093 +1673.254770 +1673.275183 +1673.284174 +1673.286905 +1673.337954 +1673.365626 +1673.378014 +1673.405786 +1673.443948 +1673.499692 +1673.539718 +1673.625000 +1673.664493 +1673.722202 +1673.785106 +1673.843647 +1673.907817 +1673.962362 +1674.017140 +1674.066191 +1674.157134 +1674.266458 +1674.321602 +1674.374116 +1674.512911 +1674.595062 +1674.676480 +1674.760330 +1674.931592 +1675.026064 +1675.122401 +1675.218505 +1675.323000 +1675.436520 +1675.555501 +1675.685504 +1675.702021 +1675.723965 +1675.749506 +1675.784704 +1675.861661 +1675.950871 +1675.978843 +1675.983872 +1675.987302 +1676.021068 +1676.052070 +1676.066023 +1676.072916 +1676.097724 +1676.125130 +1676.139549 +1676.145810 +1676.172383 +1676.177578 +1676.195893 +1676.205017 +1676.224264 +1676.277578 +1676.443312 +1676.466522 +1676.634221 +1676.683605 +1676.762859 +1676.829625 +1676.920401 +1676.986002 +1677.057530 +1677.071450 +1677.117237 +1677.149338 +1677.181506 +1677.227360 +1677.233754 +1677.392562 +1677.489864 +1677.578875 +1677.613574 +1677.659261 +1677.683137 +1677.713907 +1677.768319 +1677.976510 +1678.010410 +1678.040380 +1678.096024 +1678.167752 +1678.256597 +1678.319767 +1678.357995 +1678.406047 +1678.477942 +1678.523230 +1678.562657 +1678.596590 +1678.626227 +1678.660093 +1678.721798 +1678.746540 +1678.763656 +1678.791994 +1678.820699 +1678.910143 +1678.973912 +1679.056596 +1679.148704 +1679.226925 +1679.285167 +1679.321597 +1679.358760 +1679.408910 +1679.490262 +1679.581770 +1679.645473 +1679.728657 +1679.827824 +1679.920098 +1680.309009 +1682.709573 +1682.714068 +1682.717831 +1682.979702 +1682.983565 +1682.986895 +1683.180668 +1683.183998 +1683.187494 +1683.196252 +1683.326622 +1683.330551 +1683.430651 +1683.452196 +1683.544870 +1683.593621 +1683.642772 +1683.723857 +1683.760321 +1683.803944 +1683.846701 +1683.885196 +1683.918895 +1683.961819 +1684.002012 +1684.060887 +1684.119595 +1684.164350 +1684.228186 +1684.263550 +1684.312302 +1684.363084 +1684.399947 +1684.425988 +1684.487060 +1684.553760 +1684.605275 +1684.653793 +1684.756324 +1684.809337 +1684.849997 +1684.887959 +1684.928518 +1684.997682 +1685.112934 +1685.166880 +1685.238408 +1685.281365 +1685.323922 +1685.435810 +1685.503909 +1685.539240 +1685.582963 +1685.620625 +1685.671175 +1685.722690 +1685.759953 +1685.806939 +1685.843269 +1685.880232 +1685.920225 +1686.000478 +1686.077568 +1686.114598 +1686.156922 +1686.230182 +1686.265413 +1686.308570 +1686.340205 +1686.447398 +1686.496282 +1686.547930 +1686.582862 +1686.625087 +1686.666712 +1686.720524 +1686.804507 +1686.860351 +1686.929382 +1686.981263 +1687.039705 +1687.085892 +1687.120857 +1687.153391 +1687.192385 +1687.234776 +1687.273571 +1687.345366 +1687.471439 +1687.577766 +1687.617127 +1687.659784 +1687.694350 +1687.736707 +1687.777000 +1687.814396 +1687.853390 +1687.898578 +1687.937440 +1687.966744 +1688.002308 +1688.042002 +1688.070307 +1688.093450 +1688.116660 +1688.151658 +1688.181062 +1688.194316 +1688.227749 +1688.258884 +1688.283227 +1688.301042 +1688.336940 +1688.368675 +1688.398245 +1688.602307 +1688.637206 +1688.713596 +1688.770572 +1688.809833 +1688.842167 +1688.869007 +1688.896013 +1688.934608 +1688.966410 +1689.000842 +1689.041834 +1689.072936 +1689.134341 +1689.170505 +1689.262413 +1689.287022 +1689.332377 +1689.361947 +1689.481194 +1689.524617 +1689.589286 +1689.654388 +1689.713029 +1689.816692 +1689.862446 +1689.920588 +1689.986988 +1690.023252 +1690.075599 +1690.109665 +1690.164244 +1690.228946 +1690.297444 +1690.346128 +1690.380860 +1690.410064 +1690.429378 +1690.453055 +1690.477863 +1690.537670 +1690.575799 +1690.635705 +1690.674966 +1690.759381 +1690.824316 +1690.960613 +1691.052521 +1691.106334 +1691.194812 +1691.242331 +1691.290217 +1691.342331 +1691.420819 +1691.444729 +1691.470203 +1691.495511 +1691.518222 +1691.542464 +1691.554452 +1691.599973 +1691.643730 +1691.809797 +1691.885587 +1691.955484 +1692.011095 +1692.053653 +1692.116123 +1692.181558 +1692.252487 +1692.325414 +1692.415490 +1692.530409 +1692.588484 +1692.615523 +1692.635603 +1692.662044 +1692.695810 +1692.731907 +1692.764841 +1692.857848 +1692.887784 +1693.156315 +1693.198140 +1693.264074 +1693.391447 +1693.441097 +1693.610261 +1693.761776 +1693.833071 +1693.936901 +1694.027277 +1694.106364 +1694.177027 +1694.180623 +1694.214989 +1694.267070 +1694.366704 +1694.451785 +1694.537067 +1694.615255 +1694.672731 +1694.701535 +1694.756614 +1694.787116 +1694.840829 +1694.896973 +1694.969068 +1695.101735 +1695.175594 +1695.201302 +1695.239963 +1695.289813 +1695.330639 +1695.470899 +1695.568068 +1695.584185 +1695.781121 +1695.834301 +1695.962040 +1696.004664 +1696.081720 +1696.126476 +1696.167701 +1696.218883 +1696.509093 +1696.581420 +1696.657178 +1696.719615 +1696.785649 +1696.856079 +1696.921014 +1696.988779 +1697.037464 +1697.100301 +1697.145156 +1697.198036 +1697.254347 +1697.295472 +1697.335732 +1697.371729 +1697.502498 +1697.564936 +1697.629771 +1697.690743 +1697.741892 +1697.819314 +1697.870430 +1697.923543 +1698.043523 +1698.132734 +1698.189078 +1698.337729 +1698.414652 +1698.478088 +1698.513320 +1698.562437 +1698.614752 +1698.680819 +1698.722477 +1698.766666 +1698.807059 +1698.873992 +1698.938527 +1699.005694 +1699.073925 +1699.142656 +1699.202397 +1699.274425 +1699.354111 +1699.460438 +1699.510055 +1699.550315 +1699.644521 +1699.694571 +1699.784248 +1699.848250 +1699.890541 +1699.929669 +1699.975023 +1700.011487 +1700.041923 +1700.125073 +1700.252779 +1700.323641 +1700.408456 +1700.489175 +1700.574223 +1700.629568 +1700.671593 +1700.711786 +1700.756241 +1700.870260 +1700.898832 +1700.968029 +1701.019877 +1701.066964 +1701.117213 +1701.177520 +1701.267196 +1701.395368 +1701.488342 +1701.595568 +1701.655708 +1701.687809 +1701.747016 +1701.789141 +1701.849214 +1701.882014 +1701.930433 +1702.045318 +1702.117878 +1702.170426 +1702.290139 +1702.992236 +1703.008220 +1703.123838 +1703.131330 +1703.149179 +1703.274121 +1703.280847 +1703.403824 +1703.413381 +1703.464164 +1703.535925 +1703.603025 +1703.676918 +1703.784177 +1703.945682 +1703.987240 +1704.029864 +1704.067860 +1704.126201 +1704.187207 +1704.243217 +1704.324636 +1704.380613 +1704.465428 +1704.518708 +1704.573653 +1704.731462 +1704.907919 +1704.964129 +1705.036257 +1705.102224 +1705.200659 +1705.250110 +1705.616143 +1705.725167 +1705.888437 +1705.952273 +1706.312446 +1706.322603 +1706.327498 +1706.381111 +1706.392366 +1706.430761 +1706.468690 +1706.517774 +1706.520038 +1706.540884 +1706.626399 +1706.676149 +1706.779845 +1706.845046 +1706.925865 +1706.995995 +1707.064027 +1707.148276 +1707.245579 +1707.319505 +1707.380777 +1707.455302 +1707.539618 +1707.611879 +1707.680344 +1707.731026 +1707.801422 +1707.855435 +1707.914243 +1707.999990 +1708.088069 +1708.191265 +1708.289900 +1708.356334 +1708.447442 +1708.533390 +1708.599523 +1708.689766 +1708.749607 +1708.805051 +1708.859730 +1708.935054 +1709.009513 +1709.062294 +1709.135587 +1709.215840 +1709.277112 +1709.353635 +1709.393962 +1709.439383 +1709.496825 +1709.514741 +1709.523865 +1709.608380 +1709.654201 +1709.836485 +1709.875213 +1709.931623 +1710.009312 +1710.064424 +1710.296658 +1710.366188 +1710.441846 +1710.514573 +1710.570617 +1710.625695 +1710.691130 +1710.760827 +1710.823431 +1710.866687 +1710.936384 +1711.001219 +1711.041979 +1711.102018 +1711.171149 +1711.277043 +1711.337483 +1711.409910 +1711.490729 +1711.559128 +1711.619001 +1711.693626 +1711.760093 +1711.841312 +1711.896889 +1711.947372 +1712.035384 +1712.106213 +1712.178341 +1712.249836 +1712.327225 +1712.400619 +1712.485833 +1712.547505 +1712.627558 +1712.712973 +1712.769250 +1712.844041 +1712.881171 +1712.923795 +1712.967118 +1713.015203 +1713.049169 +1713.078107 +1713.136249 +1713.275876 +1713.354664 +1713.419266 +1713.482336 +1713.570048 +1713.722229 +1713.802981 +1714.034816 +1714.114070 +1714.178306 +1714.218399 +1714.354962 +1714.408742 +1714.410873 +1714.436114 +1714.535515 +1714.626191 +1714.704246 +1714.776107 +1714.852231 +1714.923160 +1714.995088 +1715.064052 +1715.186830 +1715.247202 +1715.294788 +1715.360023 +1715.415301 +1715.462121 +1715.510905 +1715.581867 +1715.664685 +1715.727555 +1715.772244 +1715.841841 +1715.922626 +1715.989693 +1716.051764 +1716.105310 +1716.167015 +1716.234214 +1716.303712 +1716.363518 +1716.427654 +1716.489725 +1716.540708 +1716.589892 +1716.654161 +1716.723558 +1716.798483 +1716.873208 +1716.917697 +1716.964017 +1717.053594 +1717.161353 +1717.223291 +1717.263451 +1717.312102 +1717.368412 +1717.440673 +1717.506374 +1717.573341 +1717.639042 +1717.696984 +1717.758688 +1717.876637 +1717.938742 +1717.992621 +1718.085561 +1718.115798 +1718.167346 +1718.254392 +1718.387459 +1718.452294 +1718.583929 +1718.707938 +1718.821058 +1718.917528 +1719.002910 +1719.140206 +1719.252526 +1719.298647 +1719.437275 +1719.510102 +1719.583096 +1719.752992 +1719.874903 +1719.914830 +1719.974704 +1720.095616 +1720.161750 +1720.223588 +1720.272139 +1720.310900 +1720.399478 +1720.443967 +1720.518692 +1720.609968 +1720.694916 +1720.754956 +1720.844033 +1720.949894 +1721.004706 +1721.080497 +1721.141269 +1721.207436 +1721.271639 +1721.343866 +1721.401509 +1721.464912 +1721.528415 +1721.568808 +1721.590020 +1721.620123 +1721.664246 +1721.707069 +1721.730046 +1721.758285 +1721.795814 +1721.833776 +1721.953889 +1722.059583 +1722.186789 +1722.253955 +1722.323785 +1722.398977 +1722.459916 +1722.521987 +1722.580062 +1722.632676 +1722.820688 +1722.882326 +1722.930212 +1722.973702 +1723.008034 +1723.033675 +1723.070072 +1723.103605 +1723.147661 +1723.163711 +1723.217358 +1723.273135 +1723.330078 +1723.426515 +1723.486322 +1723.536005 +1723.663145 +1723.721320 +1723.780894 +1723.829478 +1723.878895 +1723.911030 +1723.943264 +1723.966941 +1724.040833 +1724.063444 +1724.128546 +1724.198975 +1724.283424 +1724.340167 +1724.398042 +1724.447793 +1724.620320 +1724.678595 +1724.767972 +1724.787686 +1724.808232 +1724.852221 +1725.049357 +1725.105068 +1725.147292 +1725.175997 +1725.218588 +1725.247825 +1725.299140 +1725.331441 +1725.374065 +1725.407898 +1725.462177 +1725.496909 +1725.569004 +1725.649123 +1725.708031 +1725.774498 +1725.817954 +1725.857581 +1725.888217 +1725.944328 +1725.998341 +1726.042696 +1726.071634 +1726.160578 +1726.350888 +1726.399106 +1726.492246 +1726.564074 +1726.720984 +1726.799405 +1726.847058 +1726.890348 +1726.926312 +1726.943861 +1727.004533 +1727.030407 +1727.112492 +1727.171966 +1727.217254 +1727.253484 +1727.332239 +1727.409295 +1727.446957 +1727.526944 +1727.544260 +1727.596507 +1727.646424 +1727.686118 +1727.819851 +1727.898339 +1727.966071 +1728.028775 +1728.099337 +1728.171765 +1728.236966 +1728.302201 +1728.359910 +1728.407362 +1728.485384 +1728.571099 +1728.627009 +1728.675894 +1728.698438 +1728.777259 +1728.813889 +1728.925444 +1729.001434 +1729.076759 +1729.168401 +1729.240329 +1729.323279 +1729.405463 +1729.495873 +1729.557345 +1729.624844 +1729.722146 +1729.787714 +1729.866469 +1729.947388 +1730.014154 +1730.073928 +1730.127940 +1730.195439 +1730.258110 +1730.288846 +1730.394507 +1730.437597 +1730.510624 +1730.607160 +1730.800101 +1730.878955 +1730.941060 +1731.016218 +1731.140660 +1731.225974 +1731.301332 +1731.364769 +1731.403863 +1731.430270 +1731.457343 +1731.488412 +1731.519414 +1731.573393 +1731.681885 +1731.745954 +1731.857908 +1731.984648 +1732.073692 +1732.141691 +1732.203363 +1732.274725 +1732.320179 +1732.386346 +1732.439859 +1732.487911 +1732.581850 +1732.635430 +1732.691874 +1732.768930 +1732.829669 +1732.891207 +1732.937628 +1732.973292 +1733.003761 +1733.046219 +1733.083448 +1733.106459 +1733.127970 +1733.167198 +1733.225306 +1733.294204 +1733.370394 +1733.474823 +1733.534863 +1733.593504 +1733.650348 +1733.728170 +1733.785779 +1733.857607 +1733.908223 +1733.975788 +1734.055942 +1734.121776 +1734.186344 +1734.251879 +1734.334130 +1734.360104 +1734.386910 +1734.417746 +1734.502861 +1734.542022 +1734.592538 +1734.642588 +1734.673657 +1734.708289 +1734.737426 +1734.800863 +1734.882647 +1734.911086 +1735.001329 +1735.060436 +1735.145284 +1735.238092 +1735.305691 +1735.374955 +1735.413483 +1735.443053 +1735.490272 +1735.507122 +1735.554708 +1735.760902 +1735.795400 +1735.875953 +1735.945184 +1736.002393 +1736.044984 +1736.151411 +1736.206689 +1736.261467 +1736.322106 +1736.368760 +1736.403458 +1736.516412 +1736.577751 +1736.699895 +1736.792902 +1736.843351 +1737.030064 +1737.044450 +1737.069159 +1737.128433 +1737.158070 +1737.364063 +1737.401160 +1737.522971 +1737.562998 +1737.687307 +1737.724969 +1737.807153 +1737.883477 +1737.982111 +1738.126067 +1738.222737 +1738.254272 +1738.325268 +1738.373220 +1738.432094 +1738.492367 +1738.568158 +1738.589603 +1738.768624 +1738.822404 +1738.861698 +1738.887572 +1738.923436 +1738.949243 +1739.259033 +1739.265826 +1739.276482 +1739.441684 +1739.454904 +1739.611480 +1739.630162 +1739.665193 +1739.681111 +1739.699392 +1739.727031 +1739.749609 +1739.767324 +1739.795197 +1739.824467 +1739.835223 +1739.876782 +1739.905619 +1739.946478 +1739.997128 +1740.037654 +1740.083841 +1740.112146 +1740.129828 +1740.148709 +1740.168989 +1740.216808 +1740.247843 +1740.285206 +1740.371953 +1740.387071 +1740.657001 +1740.788103 +1740.851439 +1740.921536 +1740.988735 +1741.303620 +1741.315175 +1741.344979 +1741.426863 +1741.467589 +1741.489034 +1741.614742 +1741.667556 +1741.674848 +1741.715608 +1741.788268 +1741.810146 +1741.904352 +1742.061128 +1742.120835 +1742.177778 +1742.237851 +1742.317638 +1742.355667 +1742.435087 +1742.495427 +1742.555767 +1742.595793 +1742.616606 +1742.660828 +1742.703852 +1742.746842 +1742.763792 +1742.796992 +1742.837118 +1742.865490 +1742.892463 +1742.937684 +1743.097891 +1743.155466 +1743.259262 +1743.303585 +1743.329625 +1743.406215 +1743.462359 +1743.526628 +1743.571849 +1743.623964 +1743.680208 +1743.728593 +1743.755732 +1743.799055 +1743.864556 +1743.923464 +1743.983870 +1744.026261 +1744.126994 +1744.196258 +1744.253634 +1744.320001 +1744.393027 +1744.513973 +1744.576644 +1744.633720 +1744.744909 +1744.796723 +1744.832055 +1744.886533 +1744.935118 +1745.005814 +1745.052268 +1745.102884 +1745.167252 +1745.212441 +1745.289230 +1745.364721 +1745.418767 +1745.470449 +1745.525461 +1745.577275 +1745.640479 +1745.691428 +1745.712507 +1745.814704 +1745.873779 +1745.926659 +1745.970848 +1746.033419 +1746.135550 +1746.183202 +1746.223595 +1746.273379 +1746.315170 +1746.358194 +1746.412972 +1746.467717 +1746.530954 +1746.586365 +1746.636182 +1746.684167 +1746.756961 +1746.821763 +1746.871447 +1746.908709 +1746.942642 +1746.973544 +1746.994657 +1747.020064 +1747.056661 +1747.080471 +1747.130687 +1747.200351 +1747.257960 +1747.324227 +1747.430320 +1747.490860 +1747.605412 +1747.649434 +1747.707310 +1747.825425 +1747.867783 +1747.925258 +1747.980137 +1748.026624 +1748.070846 +1748.106510 +1748.134882 +1748.165118 +1748.190693 +1748.223560 +1748.248235 +1748.318831 +1748.413237 +1748.440776 +1748.452864 +1748.507609 +1748.540176 +1748.623060 +1748.654495 +1748.701615 +1748.770512 +1748.815967 +1748.931385 +1748.985697 +1749.049899 +1749.168014 +1749.222227 +1749.287961 +1749.380035 +1749.482400 +1749.538777 +1749.599582 +1749.700015 +1749.769013 +1749.839076 +1749.944038 +1750.007607 +1750.047534 +1750.098783 +1750.146835 +1750.180334 +1750.294753 +1750.368213 +1750.420594 +1750.547334 +1750.604610 +1750.677170 +1750.730717 +1750.786061 +1750.847999 +1750.910603 +1750.953694 +1751.122924 +1751.175505 +1751.230084 +1751.285828 +1751.334779 +1751.391622 +1751.438142 +1751.483297 +1751.544236 +1751.595851 +1751.651329 +1751.703476 +1751.750296 +1751.808604 +1751.861851 +1751.912967 +1751.969610 +1752.015131 +1752.072540 +1752.117395 +1752.159820 +1752.197782 +1752.230915 +1752.260785 +1752.304208 +1752.358054 +1752.413965 +1752.562350 +1752.637974 +1752.700312 +1752.826652 +1752.876802 +1752.935976 +1752.984661 +1753.039339 +1753.099546 +1753.154357 +1753.210135 +1753.258453 +1753.374637 +1753.436375 +1753.492053 +1753.529515 +1753.551526 +1753.591953 +1753.614663 +1753.678966 +1753.796348 +1753.859751 +1753.926351 +1753.976368 +1754.031246 +1754.068043 +1754.106837 +1754.149661 +1754.177233 +1754.197114 +1754.218759 +1754.265012 +1754.320657 +1754.373071 +1754.406304 +1754.425119 +1754.457986 +1754.580763 +1754.612065 +1754.643334 +1754.696114 +1754.738538 +1754.800343 +1754.856520 +1754.896081 +1754.949893 +1755.107069 +1755.176200 +1755.231578 +1755.283426 +1755.339337 +1755.403739 +1755.463879 +1755.493716 +1755.531345 +1755.580662 +1755.625051 +1755.668274 +1755.709933 +1755.756886 +1755.808101 +1755.880562 +1755.932776 +1756.003572 +1756.143032 +1756.281760 +1756.333009 +1756.389286 +1756.450991 +1756.496845 +1756.554354 +1756.611930 +1756.674101 +1756.729345 +1756.788286 +1756.828513 +1756.878430 +1756.911297 +1756.950158 +1756.982925 +1757.022452 +1757.101406 +1757.222718 +1757.264177 +1757.335239 +1757.396811 +1757.481925 +1757.536504 +1757.590450 +1757.653454 +1757.797343 +1757.853620 +1757.923650 +1757.991482 +1758.052155 +1758.123916 +1758.179028 +1758.238501 +1758.315125 +1758.364742 +1758.409730 +1758.480226 +1758.545494 +1758.684522 +1758.770336 +1758.828944 +1758.961078 +1759.014991 +1759.120419 +1759.174398 +1759.221950 +1759.291314 +1759.349323 +1759.406166 +1759.448457 +1759.506199 +1759.622516 +1759.676895 +1759.742563 +1759.804234 +1759.873798 +1759.926379 +1759.992146 +1760.184753 +1760.247058 +1760.301137 +1760.355949 +1760.408030 +1760.579425 +1760.631573 +1760.739997 +1760.793144 +1760.862475 +1760.926644 +1760.997806 +1761.072498 +1761.123147 +1761.174762 +1761.237799 +1761.317819 +1761.385351 +1761.460743 +1761.569301 +1761.618019 +1761.671332 +1761.792777 +1761.927109 +1761.989647 +1762.091378 +1762.170099 +1762.237665 +1762.319150 +1762.512556 +1762.684851 +1762.738996 +1762.932902 +1763.066136 +1764.542258 +1764.546121 +1764.894139 +1764.896570 +1764.898668 +1764.901498 +1765.107093 +1765.109290 +1765.304761 +1765.307392 +1765.309657 +1765.312987 +1765.481251 +1765.483882 +1765.486113 +1765.489144 +1765.567765 +1765.582983 +1765.585614 +1765.588111 +1765.592207 +1765.751015 +1765.753812 +1765.756276 +1765.759839 +1765.878154 +1765.880918 +1765.885247 +1766.013219 +1766.016482 +1766.019180 +1766.023442 +1766.139759 +1766.143122 +1766.146219 +1766.151281 +1766.261604 +1766.265034 +1766.268463 +1766.274191 +1766.378387 +1766.382516 +1766.425040 +1766.445886 +1766.477854 +1766.500465 +1766.525073 +1766.547384 +1766.567731 +1766.589309 +1766.608057 +1766.632099 +1766.678853 +1766.699499 +1766.725672 +1766.751380 +1766.773425 +1766.797334 +1766.829002 +1766.854144 +1766.880984 +1766.902762 +1766.930268 +1766.954210 +1766.981483 +1767.007690 +1767.032599 +1767.062502 +1767.087544 +1767.114850 +1767.142322 +1767.166198 +1767.192039 +1767.218080 +1767.242355 +1767.269861 +1767.294903 +1767.321243 +1767.345352 +1767.371260 +1767.396434 +1767.422275 +1767.448282 +1767.472625 +1767.502695 +1767.526571 +1767.552611 +1767.578985 +1767.626104 +1767.653977 +1767.677819 +1767.704726 +1767.729268 +1767.754309 +1767.780650 +1767.808389 +1767.834263 +1767.858405 +1767.887743 +1767.916214 +1767.938392 +1767.960137 +1767.987243 +1768.012551 +1768.036161 +1768.065098 +1768.092005 +1768.118312 +1768.143753 +1768.194702 +1768.226870 +1768.253177 +1768.280549 +1768.309687 +1768.339224 +1768.366197 +1768.393303 +1768.425338 +1768.454342 +1768.484146 +1768.511884 +1768.543286 +1768.573256 +1768.606423 +1768.638391 +1768.668261 +1768.701062 +1768.728967 +1768.759037 +1768.788741 +1768.818644 +1768.847648 +1768.878251 +1768.910585 +1768.942420 +1768.968028 +1768.988174 +1769.017345 +1769.046816 +1769.074788 +1769.101994 +1769.129599 +1769.153609 +1769.181814 +1769.206756 +1769.232130 +1769.258770 +1769.288907 +1769.326069 +1769.359603 +1769.390538 +1769.450412 +1769.489040 +1769.518210 +1769.551644 +1769.583212 +1769.614248 +1769.646382 +1769.678883 +1769.705390 +1769.738956 +1769.770724 +1769.803025 +1769.831797 +1769.853275 +1769.901593 +1769.920408 +1769.988473 +1770.003025 +1770.030964 +1770.056705 +1770.103991 +1770.138023 +1770.168326 +1770.202625 +1770.238989 +1770.309152 +1770.341386 +1770.375253 +1770.412349 +1770.448246 +1770.510384 +1770.545782 +1770.618343 +1770.652741 +1770.694033 +1770.727933 +1770.805022 +1770.835059 +1770.875485 +1770.912948 +1770.952641 +1770.987939 +1771.015645 +1771.046947 +1771.076018 +1771.097063 +1771.128698 +1771.158668 +1771.188439 +1771.251309 +1771.273953 +1771.299727 +1771.330430 +1771.369724 +1771.401459 +1771.442151 +1771.492368 +1771.533427 +1771.603789 +1771.647013 +1771.683476 +1771.737955 +1771.766893 +1771.813413 +1771.854605 +1771.889670 +1771.917376 +1771.941984 +1772.023070 +1772.052440 +1772.072787 +1772.123236 +1772.161265 +1772.262763 +1772.393532 +1772.429896 +1772.484641 +1772.533359 +1772.586006 +1772.641817 +1772.723269 +1772.792666 +1772.839852 +1772.910581 +1772.918307 +1773.022936 +1773.196595 +1773.239685 +1773.322769 +1773.414710 +1773.472252 +1773.529029 +1773.679645 +1773.695229 +1773.722935 +1773.756734 +1773.851906 +1774.094130 +1774.272751 +1774.332358 +1774.480510 +1774.544812 +1774.624932 +1774.764892 +1774.800989 +1774.840749 +1774.866923 +1774.898891 +1774.953337 +1775.127496 +1775.171818 +1775.218438 +1775.282041 +1775.339550 +1775.456200 +1775.570719 +1775.716506 +1775.925397 +1775.935220 +1776.495992 +1776.503318 +1776.506349 +1776.509945 +1776.603385 +1776.605849 +1776.614274 +1776.618337 +1776.695593 +1776.701986 +1776.708679 +1776.715672 +1776.900954 +1776.905449 +1776.908946 +1776.915639 +1777.054467 +1777.058396 +1777.061992 +1777.077910 +1777.232089 +1777.235719 +1777.239015 +1777.245675 +1777.405182 +1777.408346 +1777.411110 +1777.567253 +1777.570883 +1777.574646 +1777.586434 +1777.734553 +1777.737783 +1777.744010 +1777.876910 +1777.880207 +1777.883270 +1777.889930 +1778.014306 +1778.018002 +1778.026294 +1778.109644 +1778.113740 +1778.117236 +1778.122631 +1778.222398 +1778.226926 +1778.231056 +1778.244176 +1778.341145 +1778.347705 +1778.355131 +1778.418634 +1778.432321 +1778.460093 +1778.495224 +1778.518501 +1778.546473 +1778.575011 +1778.626959 +1778.652733 +1778.680539 +1778.703250 +1778.727725 +1778.753200 +1778.780239 +1778.809843 +1778.842410 +1778.875510 +1778.910376 +1778.942776 +1778.974778 +1779.006080 +1779.036849 +1779.064055 +1779.093193 +1779.161158 +1779.194957 +1779.223629 +1779.251234 +1779.284235 +1779.309043 +1779.341644 +1779.368117 +1779.400452 +1779.433818 +1779.465187 +1779.497788 +1779.529722 +1779.552233 +1779.579606 +1779.610808 +1779.634884 +1779.662056 +1779.688530 +1779.714670 +1779.744740 +1779.767651 +1779.790128 +1779.850235 +1779.880138 +1779.909642 +1779.939445 +1779.967451 +1779.998586 +1780.037414 +1780.068217 +1780.103981 +1780.138779 +1780.173178 +1780.207577 +1780.244906 +1780.283401 +1780.319998 +1780.353697 +1780.389395 +1780.426525 +1780.461789 +1780.495322 +1780.533051 +1780.566884 +1780.595555 +1780.630121 +1780.668216 +1780.705479 +1780.730320 +1780.768482 +1780.804047 +1780.841542 +1780.884067 +1780.918066 +1780.952764 +1780.973044 +1781.042275 +1781.066051 +1781.103580 +1781.141575 +1781.177406 +1781.208642 +1781.241875 +1781.271679 +1781.343607 +1781.378105 +1781.417333 +1781.457093 +1781.494922 +1781.527223 +1781.532850 +1781.570146 +1781.602514 +1781.646437 +1781.688228 +1781.731885 +1781.773510 +1781.816866 +1781.866250 +1781.901814 +1781.949667 +1781.984299 +1782.021128 +1782.062154 +1782.116266 +1782.157991 +1782.183932 +1782.226489 +1782.269213 +1782.351198 +1782.388361 +1782.434981 +1782.486229 +1782.536845 +1782.580335 +1782.620095 +1782.660821 +1782.707075 +1782.748966 +1782.795686 +1782.837211 +1782.882499 +1782.924457 +1782.965250 +1783.006975 +1783.044604 +1783.090824 +1783.133948 +1783.168780 +1783.347900 +1783.398250 +1783.450431 +1783.498882 +1783.545169 +1783.597517 +1783.634980 +1783.691223 +1783.736178 +1783.789991 +1783.835845 +1783.871210 +1783.918995 +1783.967946 +1784.015998 +1784.066015 +1784.112568 +1784.153427 +1784.201712 +1784.283830 +1784.324589 +1784.361486 +1784.398582 +1784.438575 +1784.466148 +1784.509937 +1784.554293 +1784.596650 +1784.622658 +1784.680200 +1784.739008 +1784.786660 +1784.836577 +1784.883496 +1784.982697 +1785.061452 +1785.083796 +1785.116630 +1785.153426 +1785.184062 +1785.221225 +1785.286726 +1785.332747 +1785.374871 +1785.473140 +1785.523722 +1785.594618 +1785.640106 +1785.695051 +1785.762217 +1785.838507 +1785.901011 +1785.958454 +1786.027285 +1786.089056 +1786.122123 +1786.192120 +1786.243169 +1786.294784 +1786.396049 +1786.446565 +1786.490421 +1786.549329 +1786.661783 +1786.735676 +1786.798613 +1786.853191 +1786.920058 +1786.962848 +1787.019791 +1787.083561 +1787.138473 +1787.196714 +1787.253124 +1787.309202 +1787.410667 +1787.444566 +1787.515861 +1787.546497 +1787.591253 +1787.701143 +1787.765278 +1787.791785 +1787.854955 +1787.908901 +1788.010899 +1788.076300 +1788.179497 +1788.231012 +1788.282561 +1788.349360 +1788.457952 +1788.504805 +1788.608401 +1788.662847 +1788.698777 +1788.752457 +1788.796912 +1788.852490 +1788.886556 +1789.005604 +1789.046396 +1789.100042 +1789.218157 +1789.289253 +1789.411297 +1789.459616 +1789.564411 +1789.618890 +1789.674501 +1789.735540 +1789.798743 +1789.927048 +1789.998177 +1790.090950 +1790.094314 +1790.103871 +1790.254254 +1790.322818 +1790.422852 +1790.473567 +1790.554287 +1790.602172 +1790.670903 +1790.732575 +1790.790717 +1790.851889 +1790.925282 +1790.998042 +1791.050890 +1791.121086 +1791.174499 +1791.233940 +1791.288552 +1791.352954 +1791.399973 +1791.443064 +1791.532774 +1791.586487 +1791.647526 +1791.701305 +1791.747392 +1791.832207 +1791.884322 +1791.949590 +1792.017722 +1792.078827 +1792.135437 +1792.211628 +1792.269603 +1792.403769 +1792.432007 +1792.460678 +1792.518487 +1792.561311 +1792.650721 +1792.684588 +1792.721784 +1792.858913 +1793.005833 +1793.071534 +1793.136036 +1793.177061 +1793.295976 +1793.395609 +1793.464207 +1793.562009 +1793.700870 +1793.777627 +1793.979225 +1794.012392 +1794.055748 +1794.087550 +1794.120417 +1794.129308 +1794.150886 +1794.249055 +1794.325578 +1794.382455 +1794.470833 +1794.560443 +1794.623047 +1794.667136 +1794.800336 +1794.850986 +1794.944425 +1795.002434 +1795.045025 +1795.103033 +1795.138231 +1795.182520 +1795.222614 +1795.258045 +1795.297239 +1795.351684 +1795.432071 +1795.515887 +1795.585684 +1795.640795 +1795.702866 +1795.797039 +1795.883152 +1795.938730 +1795.986449 +1796.039030 +1796.076093 +1796.136532 +1796.193009 +1796.282286 +1796.442359 +1796.566302 +1796.950551 +1796.958543 +1796.966568 +1797.409724 +1797.412755 +1797.561073 +1797.568965 +1797.575825 +1797.719548 +1797.723077 +1797.726441 +1797.732202 +1797.813553 +1797.817616 +1797.821545 +1797.827340 +1797.885615 +1797.892774 +1797.913254 +1798.202597 +1798.216184 +1798.301032 +1798.310989 +1798.333966 +1798.362138 +1798.391242 +1798.405328 +1798.437262 +1798.485681 +1798.499600 +1798.544555 +1798.571461 +1798.599300 +1798.685414 +1798.719547 +1798.759806 +1798.791441 +1798.831168 +1798.851215 +1798.877389 +1798.927738 +1798.985480 +1799.011321 +1799.033932 +1799.040459 +1799.075191 +1799.104261 +1799.136396 +1799.158507 +1799.246486 +1799.288977 +1799.319213 +1799.362536 +1799.408490 +1799.429303 +1799.450548 +1799.504727 +1799.543056 +1799.562370 +1799.569129 +1799.632133 +1799.688310 +1799.711554 +1799.762203 +1799.832566 +1799.899132 +1799.946485 +1800.045186 +1800.093238 +1800.139259 +1800.186545 +1800.222342 +1800.263301 +1800.299965 +1800.343488 +1800.384047 +1800.410254 +1800.444120 +1800.505858 +1800.529801 +1800.592938 +1800.632931 +1800.654376 +1800.685545 +1800.749248 +1800.791140 +1800.811453 +1800.899464 +1800.928702 +1801.136128 +1801.208622 +1801.258771 +1801.331199 +1801.390140 +1801.441522 +1801.491472 +1801.542687 +1801.580749 +1801.597233 +1801.615847 +1801.632431 +1801.654475 +1801.678351 +1801.695501 +1801.719177 +1801.747649 +1801.780016 +1801.867396 +1801.915647 +1801.978185 +1802.042853 +1802.089906 +1802.164931 +1802.215647 +1802.273223 +1802.329233 +1802.387242 +1802.434162 +1802.486942 +1802.531697 +1802.583679 +1802.670925 +1802.706123 +1802.746382 +1802.783612 +1802.812150 +1802.842819 +1802.919676 +1803.032030 +1803.117378 +1803.170624 +1803.219142 +1803.234860 +1803.261267 +1803.293968 +1803.319642 +1803.373088 +1803.394667 +1803.409818 +1803.431730 +1803.677950 +1803.690704 +1803.722872 +1803.803491 +1803.828399 +1803.884310 +1803.923637 +1804.011816 +1804.052442 +1804.096231 +1804.146281 +1804.186241 +1804.214446 +1804.256904 +1804.273953 +1804.304223 +1804.341019 +1804.364629 +1804.429664 +1804.501292 +1804.535192 +1804.587639 +1804.649944 +1804.751775 +1804.793433 +1804.888871 +1804.935158 +1804.983310 +1805.034359 +1805.074219 +1805.118974 +1805.150676 +1805.169523 +1805.187572 +1805.209550 +1805.244315 +1805.270855 +1805.322437 +1805.358501 +1805.385740 +1805.480346 +1805.534758 +1805.619640 +1805.689370 +1805.746446 +1805.806985 +1805.863063 +1805.902390 +1805.939819 +1805.961064 +1805.990302 +1806.013146 +1806.028497 +1806.041750 +1806.077281 +1806.157435 +1806.189236 +1806.400891 +1806.497794 +1806.548044 +1806.584474 +1806.660831 +1806.691500 +1806.728629 +1806.771620 +1806.820504 +1806.840651 +1806.861197 +1806.893032 +1806.933857 +1806.968190 +1807.013411 +1807.057267 +1807.091266 +1807.129495 +1807.185339 +1807.247477 +1807.304886 +1807.382608 +1807.484206 +1807.516707 +1807.615009 +1807.837253 +1807.861063 +1807.887603 +1807.949940 +1807.981808 +1807.998991 +1808.045145 +1808.097892 +1808.141249 +1808.509880 +1808.522201 +1808.550040 +1808.773183 +1808.783339 +1808.889633 +1808.903519 +1809.004085 +1809.041248 +1809.092763 +1809.135220 +1809.289899 +1809.334954 +1809.505050 +1809.558763 +1809.618170 +1809.746542 +1809.775413 +1809.806116 +1809.847574 +1809.900388 +1809.948839 +1809.963292 +1810.025729 +1810.211277 +1810.358662 +1810.436085 +1810.469884 +1810.509578 +1810.570484 +1810.633554 +1810.679108 +1811.814339 +1811.816437 +1811.818867 +1811.825394 +1811.942943 +1811.949770 +1811.954265 +1811.956763 +1811.962057 +1812.190462 +1812.193093 +1812.195291 +1812.198421 +1812.332420 +1812.337015 +1812.339280 +1812.341411 +1812.344674 +1812.547138 +1812.549703 +1812.551834 +1812.554997 +1812.711274 +1812.714138 +1812.716203 +1812.719066 +1812.869982 +1812.872513 +1812.876043 +1813.014970 +1813.017801 +1813.020598 +1813.024494 +1813.147537 +1813.150301 +1813.153065 +1813.156895 +1813.299985 +1813.305446 +1813.413604 +1813.416768 +1813.419965 +1813.425126 +1813.539778 +1813.543741 +1813.546738 +1813.551466 +1813.650967 +1813.655929 +1813.660591 +1813.670048 +1813.758060 +1813.764154 +1813.771646 +1813.832552 +1813.848869 +1813.875242 +1813.912272 +1813.939511 +1813.968549 +1813.999518 +1814.029455 +1814.062455 +1814.092658 +1814.123227 +1814.156161 +1814.186331 +1814.216501 +1814.248968 +1814.277406 +1814.308475 +1814.340843 +1814.365285 +1814.396754 +1814.428755 +1814.457226 +1814.491192 +1814.518432 +1814.546004 +1814.575874 +1814.601149 +1814.627989 +1814.658625 +1814.687063 +1814.711272 +1814.721762 +1814.738378 +1814.770912 +1814.800583 +1814.825358 +1814.853863 +1814.887696 +1814.946537 +1814.974142 +1815.006676 +1815.039310 +1815.069181 +1815.100849 +1815.134782 +1815.166450 +1815.200316 +1815.232917 +1815.273643 +1815.306576 +1815.343206 +1815.372244 +1815.402713 +1815.433582 +1815.460755 +1815.496553 +1815.530985 +1815.570845 +1815.601548 +1815.635913 +1815.674841 +1815.702746 +1815.744371 +1815.778570 +1815.814468 +1815.857425 +1815.890192 +1815.929553 +1815.962919 +1816.003778 +1816.035047 +1816.072210 +1816.107574 +1816.147468 +1816.185563 +1816.221261 +1816.258523 +1816.298850 +1816.334314 +1816.368813 +1816.398217 +1816.431916 +1816.463252 +1816.550431 +1816.559356 +1816.597351 +1816.630951 +1816.660787 +1816.718896 +1816.757890 +1816.789459 +1816.826555 +1816.895652 +1816.942972 +1817.023990 +1817.060887 +1817.149998 +1817.168346 +1817.212002 +1817.260221 +1817.299914 +1817.344470 +1817.382831 +1817.418429 +1817.461686 +1817.491323 +1817.585895 +1817.632714 +1817.672774 +1817.718628 +1817.759021 +1817.796284 +1817.844869 +1817.889291 +1817.977203 +1818.022558 +1818.066247 +1818.106873 +1818.153760 +1818.243303 +1818.283696 +1818.327785 +1818.366447 +1818.406906 +1818.461385 +1818.558088 +1818.600779 +1818.645334 +1818.683862 +1818.722990 +1818.764448 +1818.807039 +1818.908304 +1818.929949 +1819.005673 +1819.054691 +1819.102477 +1819.161884 +1819.201244 +1819.245933 +1819.293052 +1819.333845 +1819.392320 +1819.443735 +1819.491287 +1819.596382 +1819.665380 +1819.749629 +1819.804008 +1819.854424 +1819.976002 +1820.034177 +1820.090787 +1820.141969 +1820.200910 +1820.284726 +1820.324453 +1820.375402 +1820.404840 +1820.444833 +1820.520923 +1820.562981 +1820.631812 +1820.704773 +1820.783927 +1820.840437 +1820.908469 +1820.964246 +1821.088588 +1821.146830 +1821.221222 +1821.297413 +1821.388089 +1821.476334 +1821.547429 +1821.589953 +1821.658285 +1821.711298 +1821.774768 +1821.845731 +1821.911498 +1821.990519 +1822.070173 +1822.112896 +1822.200875 +1822.386423 +1822.419057 +1822.514861 +1822.587988 +1822.704804 +1822.874967 +1822.926316 +1822.987421 +1823.059149 +1823.170438 +1823.241200 +1823.373834 +1823.759049 +1824.042099 +1824.061180 +1824.729511 +1824.732508 +1824.735072 +1824.966840 +1824.969304 +1824.971402 +1824.974232 +1825.217122 +1825.219786 +1825.222018 +1825.225414 +1825.392980 +1825.395377 +1825.397708 +1825.400772 +1825.600206 +1825.602270 +1825.605034 +1825.611628 +1825.749856 +1825.752353 +1825.754451 +1825.762210 +1825.933938 +1825.936136 +1825.938167 +1825.940632 +1825.945760 +1826.095243 +1826.098407 +1826.100838 +1826.102936 +1826.105700 +1826.234238 +1826.237168 +1826.239432 +1826.242563 +1826.362076 +1826.365306 +1826.371767 +1826.476728 +1826.480857 +1826.484687 +1826.492313 +1826.583355 +1826.587384 +1826.592113 +1826.607264 +1826.707331 +1826.712226 +1826.716888 +1826.744893 +1826.797574 +1826.809795 +1826.830075 +1826.853951 +1826.886085 +1826.907530 +1826.934204 +1826.961643 +1826.984853 +1827.012026 +1827.040564 +1827.066371 +1827.096841 +1827.124546 +1827.150287 +1827.179059 +1827.209162 +1827.231340 +1827.254350 +1827.278392 +1827.301469 +1827.353084 +1827.374896 +1827.392445 +1827.417320 +1827.443261 +1827.467237 +1827.492112 +1827.513157 +1827.540197 +1827.567670 +1827.597773 +1827.629874 +1827.657979 +1827.684386 +1827.733737 +1827.763640 +1827.793577 +1827.821682 +1827.849521 +1827.878492 +1827.904532 +1827.937066 +1827.966237 +1827.996507 +1828.021748 +1828.077759 +1828.104699 +1828.129207 +1828.157579 +1828.182554 +1828.208728 +1828.235168 +1828.264339 +1828.292910 +1828.315954 +1828.348421 +1828.376693 +1828.406363 +1828.426843 +1828.456114 +1828.486783 +1828.547189 +1828.566936 +1828.596640 +1828.651618 +1828.672264 +1828.700036 +1828.727708 +1828.759077 +1828.794242 +1828.830272 +1828.864904 +1828.903233 +1828.936499 +1828.971598 +1829.004964 +1829.098437 +1829.125410 +1829.159842 +1829.214921 +1829.248387 +1829.281254 +1829.318617 +1829.355646 +1829.391511 +1829.423745 +1829.464970 +1829.508527 +1829.547688 +1829.610558 +1829.644391 +1829.678989 +1829.714720 +1829.747821 +1829.778457 +1829.809059 +1829.842126 +1829.917917 +1829.960441 +1829.986848 +1830.016951 +1830.046388 +1830.088579 +1830.125842 +1830.207760 +1830.252682 +1830.285316 +1830.323411 +1830.397570 +1830.433168 +1830.472562 +1830.513088 +1830.545555 +1830.588879 +1830.666468 +1830.748352 +1830.798502 +1830.854013 +1830.905195 +1830.944190 +1831.029871 +1831.072561 +1831.129138 +1831.223843 +1831.327106 +1831.375957 +1831.412354 +1831.466400 +1831.523876 +1831.574425 +1831.649117 +1831.662870 +1831.687679 +1831.739061 +1831.777422 +1831.855045 +1831.929304 +1831.971761 +1832.014984 +1832.087179 +1832.149616 +1832.221378 +1832.343589 +1832.447651 +1832.497168 +1832.667831 +1832.744388 +1832.768330 +1832.817681 +1832.876023 +1832.937428 +1832.999532 +1833.044454 +1833.166465 +1834.260803 +1834.263334 +1834.265299 +1834.270926 +1834.681715 +1834.684546 +1834.686777 +1834.689940 +1835.008355 +1835.011152 +1835.013483 +1835.017213 +1835.365630 +1835.368528 +1835.370692 +1835.374055 +1835.528567 +1835.530898 +1835.533129 +1835.714748 +1835.717312 +1835.719376 +1835.722273 +1835.923705 +1835.926369 +1835.928600 +1835.931997 +1836.114980 +1836.117944 +1836.120375 +1836.124038 +1836.235560 +1836.238490 +1836.240988 +1836.361300 +1836.364231 +1836.366862 +1836.370458 +1836.516145 +1836.519076 +1836.521607 +1836.525603 +1836.651310 +1836.654340 +1836.657471 +1836.775719 +1836.779382 +1836.782545 +1836.787840 +1836.908486 +1836.912049 +1836.915246 +1836.919708 +1837.021506 +1837.025103 +1837.028766 +1837.032862 +1837.137224 +1837.141653 +1837.146348 +1837.179481 +1837.214513 +1837.231962 +1837.257370 +1837.284909 +1837.327999 +1837.350910 +1837.376318 +1837.403824 +1837.425036 +1837.449245 +1837.500427 +1837.523171 +1837.540120 +1837.565995 +1837.598296 +1837.626834 +1837.654839 +1837.682678 +1837.707653 +1837.734493 +1837.763197 +1837.789504 +1837.808252 +1837.833160 +1837.863430 +1837.888372 +1837.914912 +1837.942151 +1837.963597 +1837.992867 +1838.015611 +1838.041951 +1838.061399 +1838.088205 +1838.145514 +1838.172920 +1838.197462 +1838.223370 +1838.249977 +1838.273453 +1838.298428 +1838.325934 +1838.384908 +1838.413813 +1838.441918 +1838.468158 +1838.495797 +1838.524602 +1838.559001 +1838.589803 +1838.621305 +1838.650209 +1838.680779 +1838.713712 +1838.743316 +1838.771155 +1838.826233 +1838.851774 +1838.874085 +1838.909683 +1838.939853 +1838.965261 +1838.995597 +1839.025101 +1839.053472 +1839.086073 +1839.115277 +1839.145547 +1839.175583 +1839.209616 +1839.271188 +1839.302490 +1839.362163 +1839.390002 +1839.422103 +1839.448344 +1839.471720 +1839.506685 +1839.532626 +1839.565327 +1839.591800 +1839.623635 +1839.650908 +1839.677281 +1839.729529 +1839.763062 +1839.801590 +1839.836788 +1839.871021 +1839.907750 +1839.939385 +1839.969655 +1839.998959 +1840.033924 +1840.066458 +1840.100691 +1840.137187 +1840.168789 +1840.201290 +1840.232559 +1840.268323 +1840.302822 +1840.333757 +1840.368489 +1840.400191 +1840.435156 +1840.466957 +1840.501789 +1840.536987 +1840.562428 +1840.587970 +1840.622402 +1840.656568 +1840.686704 +1840.718572 +1840.749208 +1840.781742 +1840.845279 +1840.880410 +1840.906184 +1840.972451 +1840.999524 +1841.028262 +1841.057067 +1841.093031 +1841.129461 +1841.194063 +1841.266557 +1841.313110 +1841.339817 +1841.368288 +1841.457766 +1841.491931 +1841.515042 +1841.537852 +1841.583506 +1841.621269 +1841.652537 +1841.693796 +1841.726530 +1841.763793 +1841.849041 +1841.889833 +1841.937219 +1842.020103 +1842.060096 +1842.107881 +1842.148008 +1842.201454 +1842.238717 +1842.295993 +1842.336419 +1842.416106 +1842.491964 +1842.529926 +1842.554468 +1842.591231 +1842.626562 +1842.656166 +1842.691531 +1842.733122 +1842.762226 +1842.796592 +1842.833189 +1842.865856 +1842.892096 +1842.937917 +1842.992729 +1843.037518 +1843.087468 +1843.173348 +1843.204750 +1843.239282 +1843.315939 +1843.346575 +1843.518536 +1843.552935 +1843.667720 +1843.713707 +1843.765389 +1843.810710 +1843.869551 +1843.926827 +1843.983004 +1844.023231 +1844.080240 +1844.111043 +1844.136551 +1844.156164 +1844.190364 +1844.265322 +1844.305115 +1844.338149 +1844.412574 +1844.455798 +1844.504349 +1844.568718 +1844.616437 +1844.667652 +1844.728691 +1844.827959 +1844.871315 +1844.927859 +1845.080173 +1845.142177 +1845.273379 +1845.424495 +1845.505580 +1845.571681 +1845.675643 +1845.783103 +1845.992093 +1846.197055 +1846.204381 +1846.224994 +1846.289362 +1846.296655 +1846.300585 +1846.328690 +1846.359725 +1846.363621 +1846.429655 +1846.458993 +1846.463188 +1846.540345 +1846.557194 +1846.775010 +1846.911706 +1846.986398 +1847.048669 +1847.097653 +1847.166884 +1847.192026 +1847.245206 +1847.314336 +1847.361955 +1847.509608 +1847.555129 +1847.607676 +1847.653131 +1847.691792 +1847.734216 +1847.775874 +1847.805711 +1847.825758 +1847.867516 +1847.923860 +1847.965218 +1848.013703 +1848.061688 +1848.105644 +1848.148834 +1848.186130 +1848.229787 +1848.275508 +1848.363187 +1848.391492 +1848.418331 +1848.440343 +1848.474675 +1848.506044 +1848.555927 +1848.621162 +1848.666416 +1848.751564 +1848.787928 +1848.813103 +1848.843306 +1848.884764 +1848.919130 +1848.951764 +1848.972876 +1849.001681 +1849.080269 +1849.146669 +1849.216066 +1849.256359 +1849.298051 +1849.357258 +1849.406609 +1849.461354 +1849.510538 +1849.563818 +1849.612436 +1849.659322 +1849.716898 +1849.756792 +1849.824923 +1849.848533 +1849.871610 +1849.907740 +1849.940341 +1849.957424 +1849.994653 +1850.045869 +1850.071743 +1850.150398 +1850.317330 +1850.377171 +1850.437876 +1850.487760 +1850.543770 +1850.604310 +1850.662119 +1850.765782 +1850.810503 +1850.868712 +1850.918995 +1850.981066 +1851.038675 +1851.078169 +1851.131615 +1851.153760 +1851.194619 +1851.218861 +1851.244203 +1851.269977 +1851.365015 +1851.403610 +1851.494019 +1851.534679 +1851.580699 +1851.643203 +1851.688724 +1851.756756 +1851.816197 +1851.864315 +1851.916796 +1852.065181 +1852.106273 +1852.149297 +1852.259786 +1852.305107 +1852.346632 +1852.387458 +1852.436043 +1852.473505 +1852.495983 +1852.536509 +1852.576369 +1852.617561 +1852.657721 +1852.685893 +1852.735010 +1852.783262 +1852.819925 +1852.856888 +1852.907105 +1852.946465 +1852.993984 +1853.083894 +1853.130348 +1853.230714 +1853.305739 +1853.350461 +1853.393385 +1853.440637 +1853.469275 +1853.507071 +1853.553258 +1853.620491 +1853.683061 +1853.793118 +1853.839505 +1853.876634 +1853.936707 +1853.991586 +1854.023421 +1854.078399 +1854.305172 +1854.361948 +1854.412831 +1854.471339 +1854.543134 +1854.595781 +1854.652891 +1854.719457 +1854.774103 +1854.826284 +1854.876966 +1854.928481 +1854.979364 +1855.026283 +1855.078798 +1855.133476 +1855.194282 +1855.245131 +1855.302540 +1855.365644 +1855.417991 +1855.469540 +1855.527315 +1855.578031 +1855.632710 +1855.697978 +1855.748827 +1855.786822 +1855.831611 +1855.880861 +1855.921787 +1856.015993 +1856.109466 +1856.147694 +1856.227215 +1856.307701 +1856.416592 +1856.482293 +1856.632442 +1856.719289 +1856.748326 +1856.777664 +1856.828313 +1856.872102 +1857.010830 +1857.094080 +1857.158915 +1857.393547 +1857.462345 +1857.596111 +1857.649191 +1857.832241 +1857.885088 +1857.912994 +1857.981126 +1858.053753 +1858.100906 +1858.180459 +1858.243863 +1858.300006 +1858.355584 +1858.454585 +1858.489883 +1858.543296 +1858.580026 +1858.604435 +1858.631008 +1858.769270 +1858.820252 +1858.876696 +1858.926446 +1858.968304 +1859.022850 +1859.072000 +1859.120918 +1859.179959 +1859.234804 +1859.277062 +1859.326645 +1859.376662 +1859.435370 +1859.538467 +1859.591114 +1859.623415 +1859.673665 +1859.723348 +1859.767671 +1859.808796 +1859.868270 +1859.910561 +1859.963541 +1859.998473 +1860.042396 +1860.070501 +1860.125146 +1860.168037 +1860.217354 +1860.261210 +1860.327643 +1860.468303 +1860.525079 +1860.586051 +1860.676361 +1860.779624 +1860.838399 +1860.899804 +1860.980224 +1861.033737 +1861.151885 +1861.239064 +1861.305365 +1861.371199 +1861.402801 +1861.457046 +1861.550253 +1861.601368 +1861.659144 +1861.721215 +1861.778291 +1861.834702 +1861.929906 +1862.028641 +1862.078191 +1862.132537 +1862.175694 +1862.227408 +1862.317918 +1862.350852 +1862.399569 +1862.441228 +1862.528873 +1862.568833 +1862.607062 +1862.669000 +1862.736432 +1862.790312 +1862.854381 +1862.909892 +1862.966002 +1863.018017 +1863.062406 +1863.153781 +1863.203298 +1863.248486 +1863.293941 +1863.328406 +1863.374926 +1863.410291 +1863.454946 +1863.498736 +1863.541193 +1863.578389 +1863.647554 +1863.684084 +1863.720314 +1863.762339 +1863.792608 +1863.826042 +1863.872129 +1863.903464 +1863.932435 +1864.002298 +1864.039162 +1864.075259 +1864.118083 +1864.155678 +1864.192108 +1864.225342 +1864.265102 +1864.305861 +1864.344756 +1864.382485 +1864.416384 +1864.453880 +1864.487579 +1864.523776 +1864.560939 +1864.596570 +1864.633333 +1864.672428 +1864.708325 +1864.744689 +1864.804729 +1864.846587 +1864.884415 +1864.919014 +1864.957675 +1864.991375 +1865.019747 +1865.039394 +1865.061139 +1865.090010 +1865.125974 +1865.158641 +1865.193606 +1865.228471 +1865.266133 +1865.311588 +1865.352414 +1865.400099 +1865.442856 +1865.513119 +1865.545221 +1865.587811 +1865.632999 +1865.677522 +1865.722676 +1865.761571 +1865.804461 +1865.847019 +1865.887545 +1865.937095 +1865.978620 +1866.019879 +1866.060505 +1866.097668 +1866.144787 +1866.181684 +1866.217281 +1866.264268 +1866.293705 +1866.328437 +1866.406625 +1866.458074 +1866.495037 +1866.551480 +1866.597301 +1866.656442 +1866.704527 +1866.812119 +1866.850647 +1866.880884 +1866.944820 +1866.976321 +1866.995203 +1867.023707 +1867.085179 +1867.185945 +1867.239625 +1867.325139 +1867.386711 +1867.496800 +1867.558972 +1867.664866 +1867.712651 +1867.752411 +1867.773523 +1867.809754 +1867.837892 +1867.858638 +1867.950080 +1868.002661 +1868.036227 +1868.041555 +1868.080816 +1868.133097 +1868.225771 +1868.256773 +1868.286410 +1868.340190 +1868.364765 +1868.397066 +1868.479284 +1868.520276 +1868.572424 +1868.612650 +1868.664199 +1868.711285 +1868.757039 +1868.805690 +1868.849613 +1868.893702 +1868.939823 +1868.986143 +1869.032796 +1869.079017 +1869.113882 +1869.148714 +1869.201294 +1869.228467 +1869.271757 +1869.292936 +1869.327068 +1869.352243 +1869.403259 +1869.445150 +1869.474254 +1869.525536 +1869.580148 +1869.618377 +1869.666595 +1869.702959 +1869.747681 +1869.784344 +1869.818576 +1869.851110 +1869.882912 +1869.988773 +1870.035692 +1870.081680 +1870.123005 +1870.166928 +1870.235259 +1870.277817 +1870.322405 +1870.404057 +1870.450044 +1870.493467 +1870.531196 +1870.578516 +1870.608386 +1870.643517 +1870.676984 +1870.702591 +1870.746281 +1870.789038 +1870.811949 +1870.848346 +1870.891169 +1870.932361 +1870.969990 +1871.002691 +1871.050776 +1871.083477 +1871.118742 +1871.174919 +1871.212148 +1871.258435 +1871.299194 +1871.346747 +1871.390270 +1871.430929 +1871.469690 +1871.506920 +1871.545548 +1871.583876 +1871.629131 +1871.663496 +1871.699427 +1871.758734 +1871.794099 +1871.819473 +1871.854905 +1871.889237 +1871.930296 +1871.957802 +1871.966593 +1872.034325 +1872.069623 +1872.108384 +1872.145181 +1872.184874 +1872.218840 +1872.253506 +1872.287139 +1872.322870 +1872.358501 +1872.393266 +1872.423069 +1872.466659 +1872.498960 +1872.530195 +1872.563329 +1872.604055 +1872.642416 +1872.678747 +1872.712613 +1872.751141 +1872.789436 +1872.868457 +1872.910148 +1872.947977 +1872.981310 +1873.012945 +1873.049908 +1873.084540 +1873.120105 +1873.159932 +1873.222669 +1873.248943 +1873.282109 +1873.353238 +1873.390734 +1873.428696 +1873.463395 +1873.500025 +1873.539052 +1873.574483 +1873.610980 +1873.646678 +1873.681609 +1873.714377 +1873.746078 +1873.777880 +1873.816275 +1873.855236 +1873.890667 +1873.925765 +1873.959331 +1873.994296 +1874.029228 +1874.064526 +1874.101156 +1874.142015 +1874.174616 +1874.247343 +1874.321702 +1874.356567 +1874.390433 +1874.421036 +1874.497892 +1874.536787 +1874.569221 +1874.605951 +1874.642448 +1874.671519 +1874.705218 +1874.732557 +1874.804685 +1874.842647 +1874.873916 +1874.905951 +1874.933856 +1874.966490 +1875.000789 +1875.034389 +1875.100756 +1875.128461 +1875.161428 +1875.184705 +1875.211145 +1875.240449 +1875.267888 +1875.286336 +1875.304219 +1875.331158 +1875.359630 +1875.394928 +1875.426663 +1875.461927 +1875.495793 +1875.528727 +1875.558464 +1875.588367 +1875.654967 +1875.690199 +1875.725830 +1875.758897 +1875.791731 +1875.825397 +1875.861194 +1875.994161 +1876.020735 +1876.049806 +1876.072350 +1876.130924 +1876.156965 +1876.248540 +1876.279875 +1876.337018 +1876.368786 +1876.401920 +1876.435919 +1876.457664 +1876.481573 +1876.507647 +1876.547341 +1876.576512 +1876.614873 +1876.652302 +1876.755999 +1876.799289 +1876.825762 +1876.847740 +1876.878576 +1876.896858 +1876.925695 +1876.954100 +1876.988200 +1877.015805 +1877.052002 +1877.105815 +1877.141646 +1877.179874 +1877.221433 +1877.267187 +1877.308978 +1877.344376 +1877.376045 +1877.412641 +1877.458629 +1877.535585 +1877.565488 +1877.600986 +1877.626394 +1877.685768 +1877.732022 +1877.843976 +1877.882571 +1877.911276 +1877.946207 +1878.015904 +1878.094159 +1878.152767 +1878.205614 +1878.245641 +1878.286733 +1878.326760 +1878.381971 +1878.430689 +1878.483536 +1878.591928 +1878.631621 +1878.667885 +1878.715970 +1878.751168 +1878.774578 +1878.817402 +1878.864322 +1878.911774 +1878.961458 +1879.006013 +1879.068151 +1879.124728 +1879.175610 +1879.215437 +1879.265620 +1879.273412 +1879.333552 +1879.385367 +1879.419666 +1879.473712 +1879.529556 +1879.592393 +1879.645673 +1879.688996 +1879.747737 +1879.787764 +1879.836648 +1879.877507 +1879.946805 +1879.984500 +1880.021663 +1880.077174 +1880.123994 +1880.190827 +1880.250268 +1880.287564 +1880.335316 +1880.389595 +1880.429888 +1880.464620 +1880.505046 +1880.557460 +1880.597320 +1880.709841 +1880.759924 +1880.809241 +1880.847703 +1880.904779 +1881.048602 +1881.145705 +1881.224226 +1881.254462 +1881.308741 +1881.313070 +1881.404312 +1881.471445 +1881.537579 +1881.578005 +1881.625391 +1881.670546 +1881.719663 +1881.750066 +1881.857725 +1881.904412 +1882.024858 +1882.079370 +1882.134515 +1882.173309 +1882.221961 +1882.258457 +1882.334947 +1882.377272 +1882.424191 +1882.539809 +1882.591058 +1882.641541 +1882.685330 +1882.742539 +1882.789792 +1882.833981 +1882.879969 +1882.914268 +1882.949832 +1882.977005 +1883.019595 +1883.093422 +1883.122559 +1883.165716 +1883.227920 +1883.318829 +1883.406475 +1883.472808 +1883.520061 +1883.570278 +1883.621926 +1883.669778 +1883.725955 +1883.780833 +1883.826654 +1883.866081 +1883.904909 +1883.948466 +1883.995385 +1884.038975 +1884.076870 +1884.125322 +1884.164250 +1884.203610 +1884.255925 +1884.342072 +1884.396817 +1884.454792 +1884.516364 +1884.566780 +1884.619494 +1884.682298 +1884.733313 +1884.796650 +1884.867013 +1884.992754 +1885.074106 +1885.145800 +1885.190922 +1885.259686 +1885.333746 +1885.393586 +1885.462217 +1885.518727 +1885.565813 +1885.636076 +1885.702310 +1885.758454 +1885.822556 +1885.888157 +1885.944634 +1885.980898 +1886.033212 +1886.167977 +1886.222589 +1886.296449 +1886.374437 +1886.431147 +1886.486325 +1886.547397 +1886.624187 +1886.699845 +1886.770807 +1886.829981 +1886.879665 +1886.946997 +1886.997347 +1887.061982 +1887.194683 +1887.244067 +1887.310400 +1887.375435 +1887.441935 +1887.561116 +1887.705205 +1887.827316 +1887.872038 +1887.945531 +1887.986257 +1888.170206 +1888.898377 +1889.005870 +1889.232077 +1889.347794 +1889.456685 +1889.528413 +1889.643798 +1889.993648 +1890.032176 +1890.175899 +1890.299075 +1890.437637 +1891.467206 +1893.383621 +1893.392046 +1894.075662 +1894.079125 +1894.083987 +1894.419517 +1894.424779 +1894.738964 +1894.907396 +1895.484085 +1895.488447 +1895.492577 +1895.736799 +1895.742360 +1895.748853 +1896.001933 +1896.020415 +1896.595040 +1896.971796 +1916.221693 +1916.226156 +1916.228254 +1916.231384 +1916.278636 +1916.284997 +1916.286862 +1916.289492 +1916.291690 +1916.294887 +1919.752093 +1919.754024 +1919.756022 +1919.758287 +1919.763382 +1924.354353 +1924.356451 +1924.358349 +1924.360480 +1924.364276 +1927.297307 +1927.299338 +1927.301303 +1927.303467 +1927.307663 +1927.391845 +1927.921349 +1927.923447 +1927.927309 +1927.931372 +1928.071465 +1928.073496 +1928.076327 +1928.546789 +1928.548787 +1928.550819 +1928.556879 +1928.969966 +1928.972330 +1928.974428 +1928.977092 +1928.985783 +1929.119350 +1929.122047 +1929.124478 +1929.127741 +1930.681020 +1930.682951 +1930.685116 +1930.688113 +1930.786514 +1930.788612 +1930.790610 +1930.792908 +1930.796038 +1931.070197 +1931.072361 +1931.075725 +1931.262904 +1931.265368 +1931.267699 +1931.271262 +1931.523743 +1931.526407 +1931.528871 +1931.533866 +1931.659707 +1931.662437 +1931.665301 +1931.792574 +1931.797569 +1931.802664 +1931.985314 +1931.990309 +1931.994538 +1932.200998 +1932.206626 +1932.213086 +1932.458207 +1932.464901 +1932.620944 +1932.627438 +1932.636229 +1932.730601 +1932.739393 +1932.758906 +1932.978553 +1932.985246 +1932.990874 +1933.167997 +1933.174257 +1933.183182 +1933.264500 +1933.270894 +1933.287677 +1933.313718 +1933.319279 +1933.379352 +1933.396901 +1933.415982 +1933.456375 +1933.483281 +1933.657840 +1933.720977 +1933.818346 +1933.859072 +1933.912252 +1933.962002 +1934.203161 +1934.401662 +1934.469661 +1934.584712 +1934.685245 +1934.735261 +1934.786610 +1934.910286 +1934.993336 +1935.068395 +1935.127435 +1935.180682 +1935.260569 +1935.360602 +1935.506589 +1935.720076 +1935.804491 +1935.901694 +1936.350478 +1936.421274 +1937.049145 +1937.070624 +1937.303757 +1937.312248 +1937.319741 +1937.506920 +1937.519807 +1937.721006 +1937.775784 +1937.826201 +1937.945215 +1938.040186 +1938.148411 +1938.197329 +1938.238421 +1938.275751 +1938.350509 +1938.387172 +1938.701491 +1938.707219 +1939.061864 +1939.067192 +1939.071654 +1939.200958 +1939.209649 +1939.216809 +1939.399459 +1939.645912 +1939.651174 +1939.657734 +1939.816075 +1939.821703 +1939.827497 +1939.995063 +1940.000857 +1940.008117 +1940.136488 +1940.143015 +1940.153804 +1940.241416 +1940.255203 +1940.303621 +1940.339252 +1940.392232 +1940.441083 +1940.478013 +1940.512378 +1940.559798 +1940.602255 +1940.665758 +1940.748076 +1940.782475 +1940.816774 +1940.869354 +1940.923467 +1941.007849 +1941.062062 +1941.125665 +1941.149541 +1941.204685 +1941.250373 +1941.339084 +1941.442348 +1941.472917 +1941.510213 +1941.551205 +1941.631525 +1941.691032 +1941.754901 +1941.805451 +1941.866490 +1942.015241 +1942.065724 +1942.083672 +1942.111511 +1942.142746 +1942.168587 +1942.202220 +1942.246309 +1942.283639 +1942.404551 +1942.458131 +1942.843512 +1942.875213 +1942.959262 +1942.981807 +1943.017438 +1943.047507 +1943.082106 +1943.131124 +1943.168087 +1943.183138 +1943.249206 +1943.264923 +1943.320567 +1943.355932 +1943.423664 +1943.547440 +1943.606848 +1943.696624 +1943.760793 +1943.832422 +1943.934386 +1943.966987 +1943.990430 +1944.025562 +1944.060260 +1944.092528 +1944.168752 +1944.287733 +1944.376444 +1944.427992 +1944.473980 +1944.567919 +1944.604649 +1944.657962 +1944.710509 +1944.778575 +1944.856796 +1944.938348 +1945.000985 +1945.110409 +1945.157795 +1945.351801 +1945.425927 +1945.711408 +1945.769916 +1945.788664 +1945.821497 +1945.848271 +1945.873945 +1946.007644 +1946.053898 +1946.142576 +1946.162389 +1946.276642 +1946.321863 +1946.373079 +1946.421697 +1946.477940 +1946.561989 +1946.580538 +1946.652765 +1946.725026 +1946.818566 +1946.831719 +1946.879305 +1946.933551 +1947.012605 +1947.114769 +1947.212305 +1947.360057 +1947.432451 +1947.499051 +1947.623926 +1947.670380 +1947.699551 +1947.758858 +1947.789794 +1947.828055 +1947.908608 +1948.076940 +1948.142141 +1948.243972 +1948.462620 +1948.493756 +1948.516100 +1948.648834 +1948.691325 +1948.821394 +1948.833682 +1948.855194 +1949.211271 +1949.215900 +1949.222793 +1949.390458 +1949.394621 +1949.400282 +1949.524591 +1949.529652 +1949.535080 +1949.582533 +1949.634447 +1949.692989 +1949.713002 +1949.716798 +1949.808973 +1949.819196 +1949.969179 +1950.022426 +1950.140474 +1950.251896 +1950.302678 +1950.362718 +1950.431183 +1950.511503 +1950.568612 +1950.594153 +1950.623624 +1950.658822 +1950.692954 +1950.731682 +1950.775172 +1950.887227 +1951.193886 +1951.201379 +1951.208139 +1951.350363 +1951.386527 +1951.445501 +1951.448798 +1951.460653 +1951.532181 +1951.562784 +1951.589790 +1951.674305 +1951.731282 +1951.746833 +1951.762750 +1951.797848 +1952.119626 +1952.136809 +1952.260385 +1952.337375 +1952.405374 +1952.539406 +1952.610601 +1952.766912 +1952.920824 +1952.964880 +1953.012466 +1953.031347 +1953.088823 +1953.093152 +1953.143934 +1953.195916 +1953.245333 +1953.336541 +1953.417560 +1953.542868 +1953.627850 +1953.772738 +1953.910334 +1953.968376 +1954.016960 +1954.090320 +1954.171506 +1954.252325 +1954.332078 +1954.383127 +1954.460217 +1954.535108 +1954.604106 +1954.665211 +1954.731145 +1954.766843 +1954.827349 +1954.912297 +1955.120722 +1955.211265 +1955.290952 +1955.431378 +1955.525384 +1955.593849 +1955.706636 +1955.839236 +1955.891684 +1955.950991 +1956.108400 +1956.343831 +1956.435007 +1956.587854 +1956.632908 +1956.742299 +1956.789352 +1957.090783 +1957.331110 +1957.343431 +1957.385788 +1957.565475 +1957.740633 +1957.748525 +1957.901938 +1957.921319 +1957.986520 +1958.062078 +1958.152121 +1958.215491 +1958.286820 +1958.336903 +1958.434572 +1958.535071 +1958.610163 +1958.685187 +1958.769370 +1958.825780 +1958.879659 +1959.016456 +1959.100638 +1959.171667 +1959.235870 +1959.286252 +1959.437468 +1959.521617 +1959.596242 +1959.643695 +1959.651687 +1959.777261 +1959.859146 +1959.963175 +1960.001070 +1960.137101 +1960.265306 +1960.365206 +1960.447590 +1960.547257 +1960.619618 +1960.690380 +1960.719817 +1960.781622 +1960.798206 +1960.874995 +1960.940630 +1961.023180 +1961.149687 +1961.186484 +1961.251119 +1961.294642 +1961.374396 +1961.400802 +1961.437033 +1961.561875 +1961.584219 +1961.612524 +1961.629141 +1961.638132 +1961.662441 +1961.701435 +1961.804998 +1961.869267 +1961.901768 +1961.929107 +1961.946823 +1961.987948 +1962.026476 +1962.065104 +1962.091145 +1962.129739 +1962.158777 +1962.165337 +1962.193476 +1962.215087 +1962.235034 +1962.280888 +1962.316386 +1962.527774 +1962.531138 +1962.533868 +1962.538497 +1962.793575 +1962.796072 +1962.800468 +1962.880555 +1962.887481 +1962.943725 +1962.947621 +1962.964637 +1963.059509 +1963.064137 +1963.068733 +1963.086515 +1963.116019 +1963.123078 +1963.138796 +1963.158909 +1963.183152 +1963.198237 +1963.282186 +1963.293142 +1963.323644 +1963.406395 +1963.424177 +1963.482419 +1963.518716 +1963.556012 +1963.590277 +1963.596538 +1963.626674 +1963.650417 +1963.679954 +1963.694906 +1963.730570 +1963.782352 +1963.822878 +1963.853780 +1963.872062 +1963.910757 +1963.957510 +1964.000966 +1964.046787 +1964.084683 +1964.129305 +1964.172794 +1964.221745 +1964.269098 +1964.300600 +1964.325808 +1964.361705 +1964.382418 +1964.412621 +1964.446054 +1964.485381 +1964.557110 +1964.600833 +1964.649317 +1964.673260 +1964.696004 +1964.725108 +1964.765767 +1964.795771 +1964.832634 +1964.877456 +1964.910556 +1964.938495 +1964.954412 +1964.987978 +1965.020812 +1965.089144 +1965.182017 +1965.248884 +1965.298334 +1965.355877 +1965.406160 +1965.461471 +1965.516849 +1965.564501 +1965.682550 +1965.781318 +1965.843122 +1965.894671 +1965.941923 +1966.001963 +1966.132266 +1966.180784 +1966.257841 +1966.331700 +1966.392073 +1966.459306 +1966.524440 +1966.598599 +1966.646119 +1966.712252 +1966.770228 +1966.806891 +1966.947850 +1967.005059 +1967.042422 +1967.099831 +1967.148616 +1967.342222 +1967.398399 +1967.443920 +1967.475322 +1967.519677 +1967.552378 +1967.596068 +1967.642321 +1967.745784 +1967.788675 +1967.835561 +1967.915248 +1967.975455 +1968.034895 +1968.080483 +1968.136027 +1968.166796 +1968.229234 +1968.317912 +1968.360036 +1968.434195 +1968.489140 +1968.574055 +1968.608254 +1968.732530 +1968.891804 +1968.926636 +1969.007055 +1969.083046 +1969.219143 +1969.331564 +1969.363532 +1969.440355 +1969.481913 +1969.530032 +1969.661067 +1969.698630 +1969.734627 +1969.757970 +1969.793035 +1969.827834 +1969.892469 +1969.943451 +1970.068659 +1970.126701 +1970.270257 +1970.572888 +1970.596098 +1970.862864 +1970.871556 +1970.888172 +1971.086773 +1971.093467 +1971.099827 +1971.260666 +1971.268192 +1971.394199 +1971.402258 +1971.423836 +1971.467692 +1971.493933 +1971.571089 +1971.612181 +1971.676883 +1971.725101 +1971.799460 +1971.848544 +1971.918641 +1972.036623 +1972.163263 +1972.214944 +1972.264761 +1972.315710 +1972.391068 +1972.488604 +1972.551707 +1972.615144 +1972.653305 +1972.686106 +1972.862030 +1972.891500 +1972.938353 +1972.993665 +1973.018939 +1973.063328 +1973.107451 +1973.137887 +1973.148376 +1973.202056 +1973.277747 +1973.296195 +1973.457201 +1973.484040 +1973.915342 +1973.919271 +1973.957433 +1974.013111 +1974.086937 +1974.124433 +1974.186138 +1974.245112 +1974.250473 +1974.323667 +1974.404985 +1974.453637 +1974.497193 +1974.551006 +1974.599024 +1974.647409 +1974.730260 +1974.785504 +1974.917605 +1974.983073 +1975.055501 +1975.095494 +1975.148441 +1975.240715 +1975.316007 +1975.409113 +1975.508714 +1975.602586 +1975.699390 +1975.808547 +1975.876612 +1975.932456 +1976.001121 +1976.086169 +1976.151604 +1976.228860 +1976.301387 +1976.358530 +1976.415573 +1976.478476 +1979.076176 +1979.078174 +1979.082769 +1979.088464 +1979.366419 +1979.368650 +1979.370615 +1979.373079 +1979.378107 +1979.495190 +1979.497155 +1979.499919 +1979.506712 +1979.654497 +1979.656628 +1979.659259 +1979.666885 +1979.855163 +1979.857594 +1979.859559 +1979.862489 +1980.055163 +1980.057694 +1980.059725 +1980.062755 +1980.230121 +1980.232885 +1980.235116 +1980.238646 +1980.365186 +1980.367850 +1980.370281 +1980.374010 +1980.505945 +1980.508875 +1980.511506 +1980.515835 +1980.628256 +1980.631353 +1980.634250 +1980.638279 +1980.762788 +1980.765951 +1980.774376 +1980.888862 +1980.892291 +1980.895755 +1980.902781 +1981.010373 +1981.013903 +1981.017366 +1981.022261 +1981.086031 +1981.091992 +1981.099218 +1981.157493 +1981.168848 +1981.187196 +1981.216001 +1981.234782 +1981.283866 +1981.303946 +1981.336014 +1981.364619 +1981.390759 +1981.416833 +1981.467083 +1981.490193 +1981.517499 +1981.557392 +1981.580236 +1981.608874 +1981.624359 +1981.644305 +1981.657659 +1981.674342 +1981.691691 +1981.716633 +1981.732117 +1981.775308 +1981.796187 +1981.809274 +1981.822161 +1981.846203 +1981.866516 +1981.885730 +1981.909473 +1981.925291 +1981.964019 +1981.990825 +1982.029953 +1982.079869 +1982.114268 +1982.153829 +1982.202080 +1982.251531 +1982.297352 +1982.321960 +1982.368880 +1982.455860 +1982.497651 +1982.541241 +1982.574607 +1982.616732 +1982.648966 +1982.678803 +1982.684098 +1982.701813 +1982.742273 +1982.789359 +1982.817265 +1982.882699 +1982.918663 +1982.959555 +1983.001447 +1983.033348 +1983.036811 +1983.044237 +1983.098816 +1983.121294 +1983.289792 +1983.318230 +1983.404377 +1983.517830 +1983.568246 +1983.607141 +1983.633514 +1983.669212 +1983.699382 +1983.781266 +1983.841573 +1983.890557 +1983.955525 +1984.035379 +1984.101679 +1984.160786 +1984.202345 +1984.356957 +1984.574705 +1984.618561 +1984.659620 +1984.833147 +1984.884628 +1984.932947 +1984.966946 +1985.027685 +1985.069643 +1985.851760 +1985.857455 +1985.864614 +1986.139939 +1986.154491 +1986.157987 +1986.160618 +1986.163648 +1986.294351 +1986.297015 +1986.304640 +1986.307371 +1986.310201 +1986.317661 +1986.450161 +1986.452892 +1986.455290 +1986.457987 +1986.530581 +1986.534211 +1986.541204 +1986.636541 +1986.639638 +1986.642602 +1986.647530 +1986.757853 +1986.760984 +1986.764447 +1986.768742 +1986.890554 +1986.895382 +1986.898846 +1986.902109 +1987.053790 +1987.057420 +1987.066012 +1987.150394 +1987.154590 +1987.158885 +1987.164313 +1987.246398 +1987.250360 +1987.252858 +1987.259551 +1987.325485 +1987.335342 +1987.352758 +1987.426451 +1987.471905 +1987.516028 +1987.552558 +1987.609900 +1987.632578 +1987.674070 +1987.708635 +1987.738139 +1987.778532 +1987.812131 +1987.851525 +1987.886857 +1987.926217 +1987.962181 +1988.000942 +1988.030113 +1988.071738 +1988.115827 +1988.153323 +1988.177965 +1988.243333 +1988.272404 +1988.310766 +1988.340569 +1988.376367 +1988.418558 +1988.459117 +1988.504938 +1988.545797 +1988.586589 +1988.620489 +1988.631112 +1988.714262 +1988.763679 +1988.793249 +1988.851225 +1988.874701 +1988.918557 +1989.001441 +1989.051757 +1989.122586 +1989.176765 +1989.241068 +1989.370705 +1989.430778 +1989.472036 +1989.520954 +1989.548127 +1989.604637 +1989.642799 +1989.695979 +1989.735639 +1989.788853 +1989.859116 +1989.920021 +1990.001240 +1990.035939 +1990.116891 +1990.167107 +1990.241400 +1990.322951 +1990.391250 +1990.464776 +1990.564543 +1990.638469 +1990.692182 +1990.837836 +1990.873767 +1990.927813 +1990.998941 +1991.039234 +1991.149224 +1991.190550 +1991.249757 +1991.287586 +1991.379527 +1991.391415 +1991.492880 +1991.662577 +1991.717389 +1991.813359 +1991.951255 +1992.032673 +1992.168770 +1992.208864 +1992.361511 +1992.393645 +1992.516522 +1992.591281 +1992.597674 +1993.518985 +1993.522382 +1993.524680 +1993.529009 +1993.765306 +1993.770400 +1994.028575 +1994.031306 +1994.033470 +1994.036534 +1994.246690 +1994.249521 +1994.251752 +1994.254849 +1994.465272 +1994.467869 +1994.469934 +1994.472864 +1994.660176 +1994.665271 +1996.877290 +1996.906994 +1996.961107 +1996.976824 +1996.981053 +1997.012455 +1997.040460 +1997.058376 +1997.086215 +1997.112455 +1997.146554 +1997.170031 +1997.231003 +1997.301632 +1997.335732 +1997.360873 +1997.422611 +1997.442625 +1997.465368 +1997.485582 +1997.503963 +1997.534899 +1997.551549 +1997.569364 +1997.585282 +1997.610723 +1997.657143 +1997.670430 +1997.702964 +1997.732801 +1997.792608 +1997.811822 +1997.827306 +1997.845255 +1997.868765 +1997.889277 +1997.920147 +1998.073859 +1998.077689 +1998.119014 +1998.129171 +1998.173693 +1998.215984 +1998.244022 +1998.277356 +1998.308758 +1998.336863 +1998.356010 +1998.378454 +1998.412221 +1998.433866 +1998.463736 +1998.488311 +1998.525374 +1998.536663 +1998.575857 +1998.613719 +1998.694605 +1998.725374 +1998.749816 +1998.781984 +1998.809656 +1998.857242 +1998.882983 +1998.903795 +1998.941291 +1998.978920 +1999.016915 +1999.148484 +1999.256176 +1999.307591 +1999.363335 +1999.412120 +1999.465366 +1999.517414 +1999.562569 +1999.587844 +1999.614184 +1999.672726 +1999.697834 +1999.750947 +1999.783714 +1999.816781 +1999.843555 +1999.896135 +1999.921210 +1999.965832 +2000.000398 +2000.052912 +2000.081883 +2000.151147 +2000.193005 +2000.204726 +2000.380550 +2000.425639 +2000.486378 +2000.673457 +2000.718978 +2000.778552 +2000.822008 +2000.869028 +2000.929567 +2000.982581 +2001.031732 +2001.103527 +2001.179717 +2001.312251 +2001.369327 +2001.493703 +2001.569427 +2001.612084 +2001.687509 +2001.747082 +2003.376951 +2003.379349 +2003.381413 +2003.640620 +2003.642885 +2003.645948 +2003.842851 +2003.845582 +2003.847680 +2003.850810 +2004.058935 +2004.063630 +2004.066461 +2004.173187 +2004.176051 +2004.178349 +2004.181046 +2004.185675 +2004.428731 +2004.431296 +2004.433393 +2004.436390 +2004.647346 +2004.649910 +2004.652141 +2004.655305 +2004.823470 +2004.827199 +2004.829364 +2004.831695 +2004.835691 +2005.029397 +2005.031994 +2005.034059 +2005.036989 +2005.137622 +2005.140086 +2005.142450 +2005.145447 +2005.267825 +2005.271554 +2005.274052 +2005.276749 +2005.448311 +2005.453872 +2005.608684 +2005.612746 +2005.615477 +2005.618940 +2005.733625 +2005.737688 +2005.740785 +2005.743815 +2005.842316 +2005.847278 +2005.852873 +2005.859399 +2005.967225 +2005.978414 +2006.093898 +2006.099459 +2006.105353 +2006.243581 +2006.249009 +2006.256069 +2006.382709 +2006.398027 +2006.437154 +2006.470621 +2006.511047 +2006.547677 +2006.580378 +2006.648576 +2006.673118 +2006.685073 +2006.765925 +2006.803255 +2006.848642 +2006.904020 +2006.942615 +2006.960264 +2006.967057 +2007.042448 +2007.066391 +2007.180976 +2007.185439 +2007.238585 +2007.273251 +2007.412012 +2007.500323 +2007.627330 +2007.713810 +2007.795395 +2008.023700 +2008.094695 +2008.195561 +2008.492797 +2008.550739 +2008.592131 +2008.691365 +2008.764525 +2008.779343 +2008.965757 +2009.178577 +2009.223299 +2009.271750 +2009.348640 +2009.418137 +2009.580341 +2009.702985 +2010.207280 +2010.211776 +2010.448306 +2010.453401 +2010.455965 +2010.458795 +2010.464856 +2010.822331 +2010.825295 +2010.828092 +2010.833587 +2011.080440 +2011.083304 +2011.085635 +2011.089231 +2011.248338 +2011.251136 +2011.253500 +2011.256863 +2011.351735 +2011.745541 +2011.748638 +2011.750902 +2011.755264 +2012.081671 +2012.084801 +2012.087365 +2012.320831 +2012.323396 +2012.327025 +2012.474344 +2012.477441 +2012.479706 +2012.483236 +2012.624894 +2012.627591 +2012.632186 +2012.785866 +2012.789229 +2012.791993 +2012.797521 +2012.943342 +2012.946538 +2012.949535 +2012.953265 +2013.139512 +2013.142609 +2013.145373 +2013.150767 +2013.337314 +2013.340311 +2013.342675 +2013.346305 +2013.502715 +2013.505679 +2013.508509 +2013.512805 +2013.620364 +2013.629455 +2013.632019 +2013.635016 +2013.642975 +2013.812938 +2013.816068 +2013.818332 +2013.821363 +2013.942442 +2013.945339 +2013.948169 +2013.951632 +2014.079971 +2014.083400 +2014.086198 +2014.090793 +2014.260257 +2014.263254 +2014.266018 +2014.270014 +2014.391958 +2014.394656 +2014.397453 +2014.401282 +2014.549467 +2014.553297 +2014.556294 +2014.560956 +2014.700849 +2014.704412 +2014.707176 +2014.850899 +2014.854162 +2014.857093 +2014.861988 +2014.995954 +2014.999051 +2015.001948 +2015.006343 +2015.105244 +2015.108941 +2015.112504 +2015.118498 +2015.249300 +2015.252763 +2015.256160 +2015.262320 +2015.378171 +2015.381901 +2015.385597 +2015.487229 +2015.492623 +2015.500449 +2015.600815 +2015.610205 +2015.648034 +2015.691457 +2015.716066 +2015.743805 +2015.786263 +2015.820295 +2015.861421 +2015.943006 +2016.098783 +2016.128653 +2016.156292 +2016.187894 +2016.208407 +2016.238077 +2016.296052 +2016.353029 +2016.383431 +2016.417797 +2016.603178 +2016.674940 +2016.728919 +2016.769145 +2016.832682 +2016.964317 +2017.071343 +2017.509005 +2017.595551 +2017.658555 +2017.741306 +2017.862484 +2017.966214 +2018.012035 +2018.212367 +2018.355091 +2018.678035 +2018.684461 +2018.691221 +2019.037708 +2019.087591 +2019.124321 +2019.275770 +2019.288024 +2020.142069 +2020.145199 +2020.150694 +2020.274370 +2020.277434 +2020.279964 +2020.281929 +2020.381496 +2020.387290 +2020.389988 +2020.395615 +2020.977832 +2020.980097 +2020.983194 +2021.657885 +2021.661015 +2021.665477 +2021.669074 +2022.154122 +2022.156220 +2022.158384 +2022.161514 +2022.358450 +2022.360615 +2022.364911 +2022.366909 +2022.369573 +2022.373569 +2022.458084 +2022.461581 +2022.464111 +2022.470239 +2022.672536 +2022.675600 +2022.677931 +2022.680961 +2022.997011 +2022.999775 +2023.001873 +2023.004837 +2023.338170 +2023.341200 +2023.343498 +2023.347127 +2023.497610 +2023.500607 +2023.503071 +2023.507034 +2023.653021 +2023.657950 +2023.660580 +2023.663144 +2023.667407 +2023.834939 +2023.840800 +2023.843597 +2023.846361 +2023.854586 +2023.963244 +2023.966241 +2023.969072 +2023.972801 +2024.108732 +2024.111695 +2024.114426 +2024.201206 +2024.210696 +2024.213893 +2024.217190 +2024.307466 +2024.311729 +2024.316224 +2024.327246 +2024.576563 +2024.582524 +2024.587286 +2024.761978 +2024.765141 +2024.767672 +2024.909697 +2024.913193 +2024.916357 +2024.922917 +2025.043596 +2025.047792 +2025.052321 +2025.090149 +2025.162743 +2025.174598 +2025.188551 +2025.241065 +2025.252753 +2025.286320 +2025.302537 +2025.322350 +2025.358980 +2025.375763 +2025.456250 +2025.489583 +2025.502736 +2025.536503 +2025.643895 +2025.712826 +2025.755983 +2025.787918 +2025.826479 +2025.841730 +2025.906066 +2025.941730 +2025.975929 +2026.014291 +2026.025080 +2026.077994 +2026.098673 +2026.150022 +2026.176295 +2026.210761 +2026.230941 +2026.278493 +2026.300471 +2026.338200 +2026.365772 +2026.518253 +2026.575729 +2026.607997 +2026.719185 +2026.765372 +2026.815988 +2026.893511 +2026.956748 +2027.000604 +2027.118619 +2027.139931 +2027.246857 +2027.278925 +2027.308962 +2027.344626 +2027.392212 +2027.426244 +2027.456614 +2027.475495 +2027.488748 +2027.608229 +2027.792544 +2027.878325 +2027.921282 +2028.044259 +2028.134768 +2028.190812 +2028.273263 +2028.368501 +2028.387116 +2028.433603 +2028.576360 +2028.749753 +2028.763805 +2029.460741 +2029.462939 +2029.467168 +2029.588313 +2029.590844 +2029.593808 +2029.601234 +2029.745023 +2029.749419 +2029.752649 +2029.756911 +2030.111423 +2030.114653 +2030.117151 +2030.122012 +2030.300234 +2030.302498 +2030.305828 +2030.420081 +2030.425209 +2030.506428 +2030.510157 +2030.514087 +2030.523910 +2030.564203 +2030.577024 +2030.768998 +2030.780054 +2030.849018 +2030.882485 +2030.955678 +2031.005828 +2031.059308 +2031.089910 +2031.121778 +2031.200433 +2031.264935 +2031.319181 +2031.385681 +2031.424842 +2031.457609 +2031.496370 +2031.533566 +2031.592341 +2031.659840 +2031.664435 +2031.698801 +2031.757908 +2031.831768 +2031.903329 +2031.963935 +2031.999999 +2032.078521 +2032.099300 +2032.252047 +2032.261304 +2032.392307 +2032.650848 +2032.656409 +2032.660804 +2032.813185 +2032.819213 +2032.824407 +2032.829702 +2032.970295 +2032.973392 +2032.976455 +2032.979419 +2034.056807 +2034.060437 +2034.063367 +2034.065332 +2034.067829 +2034.072092 +2034.424039 +2034.426737 +2034.428635 +2034.430933 +2034.670160 +2034.672457 +2034.674356 +2034.676786 +2034.681515 +2035.656106 +2035.658704 +2035.660735 +2035.670858 +2035.766462 +2035.768927 +2035.771124 +2035.773289 +2035.777485 +2036.932495 +2036.934460 +2036.936824 +2036.941153 +2037.238555 +2037.241053 +2037.245482 +2037.250577 +2037.413614 +2037.416377 +2037.418742 +2037.421439 +2037.737623 +2037.741252 +2037.743317 +2037.745481 +2037.749777 +2038.577082 +2038.580212 +2038.582277 +2038.585207 +2039.344681 +2039.350575 +2039.821936 +2039.824700 +2039.826765 +2039.829628 +2040.033957 +2040.209914 +2040.212812 +2040.215076 +2040.219338 +2040.349275 +2040.351539 +2040.535322 +2040.538286 +2040.540583 +2040.544246 +2040.723867 +2040.725931 +2040.728362 +2040.731759 +2041.064226 +2041.067789 +2041.070253 +2041.075415 +2041.352371 +2041.355301 +2041.361528 +2041.558365 +2041.561628 +2041.564525 +2041.568788 +2041.698358 +2041.701788 +2041.704785 +2041.710046 +2041.789034 +2041.792597 +2041.795727 +2041.801022 +2041.964991 +2041.967888 +2041.971285 +2041.974681 +2042.124664 +2042.128294 +2042.131857 +2042.141281 +2042.339949 +2042.343679 +2042.346909 +2042.363326 +2042.436586 +2042.441980 +2042.446176 +2042.449473 +2042.457365 +2042.632023 +2042.635387 +2042.637951 +2042.642513 +2042.781440 +2042.784504 +2042.787268 +2042.791231 +2042.883139 +2042.886901 +2042.889732 +2043.027827 +2043.031590 +2043.035020 +2043.044910 +2043.166222 +2043.169552 +2043.172449 +2043.298223 +2043.300987 +2043.303584 +2043.306948 +2043.454367 +2043.458596 +2043.461493 +2043.464723 +2043.600554 +2043.605049 +2043.608912 +2043.621666 +2043.767587 +2043.771682 +2043.781906 +2043.901752 +2043.906048 +2043.910077 +2043.923264 +2044.063557 +2044.068086 +2044.072581 +2044.161958 +2044.175312 +2044.202651 +2044.272614 +2044.291096 +2044.340280 +2044.381872 +2044.461425 +2044.504249 +2044.546440 +2044.591162 +2044.636550 +2044.673913 +2044.704515 +2044.756030 +2044.776943 +2044.786067 +2044.855431 +2044.898754 +2044.954032 +2044.992460 +2045.046873 +2045.082071 +2045.144941 +2045.171748 +2045.180272 +2045.212873 +2045.333119 +2045.470116 +2045.607045 +2045.680638 +2045.799086 +2045.829356 +2045.869283 +2045.895057 +2045.916935 +2045.945373 +2045.968384 +2045.986366 +2046.006013 +2046.036615 +2046.038946 +2046.087364 +2046.106212 +2046.176608 +2046.212572 +2046.306079 +2046.376741 +2046.446172 +2046.570348 +2046.634916 +2046.736348 +2046.826258 +2046.895555 +2046.898419 +2046.978672 +2047.002482 +2047.060923 +2047.071812 +2047.168249 +2047.184167 +2047.318798 +2049.034181 +2049.036879 +2049.038810 +2049.041074 +2049.045070 +2049.867547 +2049.878869 +2049.881333 +2049.883465 +2049.886861 +2049.996418 +2049.999249 +2050.001580 +2050.004144 +2050.008606 +2050.009838 +2050.903277 +2050.905408 +2050.907706 +2050.911669 +2050.982864 +2050.984995 +2050.987193 +2050.990490 +2051.221792 +2051.223690 +2051.226021 +2051.976103 +2051.979067 +2051.981564 +2051.984928 +2052.384494 +2052.390222 +2052.394351 +2053.375436 +2053.378066 +2053.383061 +2053.671706 +2053.676934 +2053.680264 +2053.871106 +2053.873870 +2053.876035 +2053.878599 +2053.952525 +2053.958818 +2053.961749 +2053.964579 +2053.969574 +2054.289954 +2054.292817 +2054.294949 +2054.298179 +2054.424253 +2054.427516 +2054.430380 +2054.435941 +2054.562781 +2054.566510 +2054.569507 +2054.572571 +2054.577466 +2054.704405 +2054.707702 +2054.710666 +2054.713896 +2054.958218 +2054.961382 +2054.963946 +2054.967808 +2055.064279 +2055.067808 +2055.071471 +2055.075068 +2055.134974 +2055.141734 +2055.173103 +2055.213629 +2055.236639 +2055.274635 +2055.290752 +2055.353456 +2055.391384 +2055.398577 +2055.491917 +2055.529746 +2055.548261 +2055.587954 +2055.624018 +2055.650026 +2055.741168 +2055.790052 +2055.829213 +2055.840468 +2055.935606 +2055.975666 +2056.253854 +2056.327148 +2056.400075 +2056.484290 +2056.511996 +2056.586621 +2056.603238 +2056.629811 +2056.747893 +2056.824217 +2056.889152 +2057.166441 +2057.195079 +2057.235805 +2057.299974 +2057.342565 +2057.351589 +2057.576764 +2057.641399 +2057.694346 +2057.903137 +2057.985887 +2058.221518 +2058.361245 +2058.382957 +2058.451987 +2058.535537 +2058.686986 +2058.747392 +2058.812926 +2058.902670 +2059.036169 +2059.107531 +2059.317055 +2059.320318 +2062.993375 +2062.997737 +2062.999768 +2063.002999 +2063.254314 +2063.256645 +2063.260641 +2063.264304 +2064.026441 +2064.029071 +2064.031003 +2064.033234 +2064.037696 +2064.608525 +2064.610989 +2064.612854 +2064.615085 +2064.620646 +2065.052614 +2065.060539 +2065.062570 +2065.064535 +2065.067132 +2065.872260 +2065.874491 +2065.876489 +2065.881950 +2066.721909 +2066.726272 +2066.728236 +2066.729235 +2066.730101 +2067.357540 +2067.360736 +2067.362668 +2067.367330 +2069.031298 +2069.033329 +2069.035360 +2069.041954 +2069.115746 +2069.118111 +2069.120408 +2069.122506 +2069.126103 +2069.369626 +2069.371590 +2069.374720 +2069.545549 +2069.547614 +2069.550478 +2069.556139 +2069.651443 +2069.654973 +2069.657904 +2069.661367 +2069.780548 +2069.784810 +2069.791870 +2069.863398 +2069.865929 +2069.890238 +2069.897098 +2069.902359 +2070.026302 +2070.032429 +2070.039122 +2070.127966 +2070.139122 +2070.240920 +2070.256072 +2070.285575 +2070.315978 +2070.348479 +2070.374386 +2070.411549 +2070.442918 +2070.507187 +2070.543983 +2070.578882 +2070.606854 +2070.638589 +2070.677017 +2070.712981 +2070.757103 +2070.787140 +2070.821506 +2070.852142 +2070.900227 +2070.939721 +2070.975152 +2071.008152 +2071.057236 +2071.103989 +2071.178149 +2071.207453 +2071.246846 +2071.336657 +2071.366660 +2071.408751 +2071.468957 +2071.517076 +2071.561298 +2071.639254 +2071.682177 +2071.722737 +2071.761731 +2071.815311 +2071.860865 +2071.959700 +2072.004621 +2072.067658 +2072.129729 +2072.188138 +2072.242084 +2072.303522 +2072.370055 +2072.436822 +2072.473119 +2072.521404 +2072.557135 +2072.598294 +2072.649243 +2072.716708 +2072.773185 +2072.830162 +2072.918107 +2072.978646 +2073.092499 +2081.269414 +2081.274242 +2081.276340 +2081.279604 +2082.414634 +2082.417132 +2082.419196 +2082.421261 +2082.424091 +2084.847665 +2084.850862 +2084.852860 +2084.854858 +2084.856756 +2085.222823 +2086.225952 +2087.692151 +2089.687088 +2089.691683 +2089.695846 +2089.698077 +2089.920021 +2090.529644 +2090.531476 +2090.533540 +2090.536005 +2094.953849 +2094.955947 +2094.958012 +2094.960243 +2095.624345 +2095.626209 +2095.628241 +2095.630605 +2096.733534 +2096.767067 +2096.769665 +2096.772995 +2096.774926 +2096.777457 +2096.956012 +2097.118449 +2097.120280 +2097.122145 +2097.124443 +2097.192508 +2097.197470 +2097.201732 +2097.205295 +2097.464536 +2097.466734 +2097.468598 +2097.470630 +2097.473094 +2098.389343 +2098.391741 +2098.393606 +2098.396003 +2098.907025 +2098.909356 +2098.911221 +2098.913186 +2098.916849 +2099.063868 +2099.065933 +2099.067931 +2099.070195 +2099.074524 +2099.232233 +2099.234131 +2099.240824 +2099.305027 +2099.307558 +2099.311520 +2099.315783 +2099.496835 +2099.499133 +2099.501097 +2099.503761 +2099.509988 +2099.668230 +2099.670661 +2099.672825 +2099.675623 +2099.843521 +2099.846185 +2099.848216 +2099.859205 +2099.982549 +2099.984846 +2099.987410 +2099.992605 +2100.054110 +2100.066032 +2100.070061 +2100.073857 +2100.146418 +2100.157007 +2100.187044 +2100.239858 +2100.257007 +2100.317746 +2100.329901 +2100.362535 +2100.391806 +2100.460537 +2100.485345 +2100.523474 +2100.559105 +2100.589508 +2100.629901 +2100.667663 +2100.702661 +2100.739657 +2100.770626 +2100.810287 +2100.841855 +2100.872758 +2100.903993 +2100.935128 +2100.962568 +2100.995701 +2101.028935 +2101.065598 +2101.138192 +2101.165831 +2101.199397 +2101.269327 +2101.305025 +2101.342954 +2101.375621 +2101.412218 +2101.448748 +2101.494069 +2101.526869 +2101.556839 +2101.604858 +2101.636626 +2101.677452 +2101.724438 +2101.771192 +2101.816813 +2101.859803 +2101.902727 +2101.945151 +2102.013149 +2102.070592 +2102.112350 +2102.155374 +2102.196766 +2102.237358 +2102.278117 +2102.326735 +2102.364431 +2102.400495 +2102.474155 +2102.514681 +2102.602193 +2102.641554 +2102.735193 +2102.777551 +2102.819609 +2102.862699 +2102.901893 +2102.936825 +2102.973954 +2103.040787 +2103.098829 +2103.142386 +2103.222339 +2103.273355 +2103.333861 +2103.379415 +2103.440754 +2103.556504 +2103.620807 +2103.674653 +2103.731995 +2103.814280 +2103.868459 +2103.914912 +2103.975219 +2104.005522 +2104.084343 +2104.141952 +2104.191136 +2104.234226 +2104.305388 +2104.369024 +2104.536057 +2104.588205 +2104.607053 +2104.650143 +2104.673986 +2104.685108 +2104.715644 +2104.754872 +2104.802158 +2104.830662 +2104.846580 +2104.934092 +2104.980179 +2105.024635 +2105.183143 +2105.262896 +2105.329230 +2105.384475 +2105.453938 +2105.515144 +2105.636755 +2105.694931 +2105.883642 +2105.954471 +2106.021304 +2106.081510 +2106.155070 +2106.212646 +2106.290601 +2106.347910 +2106.418939 +2106.479212 +2106.540984 +2106.578713 +2106.613911 +2106.634590 +2106.661163 +2106.801123 +2107.142315 +2107.149175 +2107.154170 +2107.189135 +2107.404652 +2107.410846 +2107.416407 +2107.599724 +2107.604452 +2107.609181 +2107.758698 +2107.764925 +2107.771985 +2107.879244 +2107.889600 +2107.926730 +2107.964492 +2107.993996 +2108.021269 +2108.049074 +2108.081042 +2108.117639 +2108.220469 +2108.268155 +2108.293996 +2108.342780 +2108.374582 +2108.420935 +2108.470452 +2108.514442 +2108.546842 +2108.589333 +2108.621634 +2108.658331 +2108.703352 +2108.744278 +2108.778977 +2108.818704 +2108.854834 +2108.895593 +2109.017738 +2109.055733 +2109.101354 +2109.134454 +2109.173582 +2109.199023 +2109.228893 +2109.259895 +2109.303119 +2109.359329 +2109.405416 +2109.455033 +2109.580774 +2109.643645 +2109.680175 +2109.716738 +2109.750205 +2109.790364 +2109.840281 +2109.933221 +2109.983737 +2110.033987 +2110.086035 +2110.139548 +2110.192695 +2110.243144 +2110.289198 +2110.334520 +2110.381206 +2110.426228 +2110.476644 +2110.526594 +2110.580240 +2110.681539 +2110.781972 +2110.830223 +2110.892228 +2110.947106 +2111.006880 +2111.067253 +2111.115804 +2111.177276 +2111.274912 +2111.329790 +2111.370949 +2111.406080 +2111.458395 +2111.513539 +2111.585168 +2111.696889 +2111.797189 +2111.865520 +2113.601516 +2113.604147 +2113.608709 +2113.615136 +2113.845472 +2113.847836 +2113.849768 +2113.852032 +2113.856860 +2114.055562 +2114.058226 +2114.060390 +2114.062821 +2114.069581 +2114.277673 +2114.280303 +2114.282368 +2114.289960 +2114.430952 +2114.433150 +2114.435248 +2114.437912 +2114.442907 +2114.579903 +2114.582334 +2114.584599 +2114.586996 +2114.699417 +2114.704379 +2114.710339 +2114.788395 +2114.791758 +2114.795155 +2114.798851 +2114.937312 +2114.941441 +2114.944538 +2114.948734 +2115.044005 +2115.052297 +2115.058591 +2115.138344 +2115.146536 +2115.161588 +2115.199650 +2115.223992 +2115.254595 +2115.280802 +2115.313003 +2115.333915 +2115.358424 +2115.384664 +2115.403279 +2115.431384 +2115.452030 +2115.470878 +2115.498417 +2115.526556 +2115.549400 +2115.576772 +2115.602347 +2115.628787 +2115.656526 +2115.680302 +2115.708074 +2115.740974 +2115.768780 +2115.797485 +2115.830551 +2115.882466 +2115.907508 +2115.933182 +2115.954461 +2115.982200 +2116.009839 +2116.033681 +2116.090991 +2116.110971 +2116.138044 +2116.165816 +2116.193954 +2116.219729 +2116.240841 +2116.266715 +2116.296818 +2116.325290 +2116.356192 +2116.387194 +2116.416165 +2116.449465 +2116.482599 +2116.508340 +2116.538043 +2116.586029 +2116.617564 +2116.646401 +2116.676272 +2116.712968 +2116.744470 +2116.803877 +2116.828985 +2116.851929 +2116.904210 +2116.923890 +2116.960454 +2116.985828 +2117.020327 +2117.048033 +2117.076771 +2117.105142 +2117.119328 +2117.133913 +2117.161153 +2117.190523 +2117.218962 +2117.254360 +2117.283697 +2117.308272 +2117.378102 +2117.415298 +2117.447366 +2117.484229 +2117.517563 +2117.554992 +2117.592155 +2117.623956 +2117.653493 +2117.689224 +2117.722025 +2117.753660 +2117.786960 +2117.822691 +2117.857189 +2117.890390 +2117.924322 +2117.962617 +2117.996716 +2118.033147 +2118.071442 +2118.107139 +2118.142770 +2118.185028 +2118.221824 +2118.254758 +2118.281731 +2118.324122 +2118.352793 +2118.429283 +2118.468111 +2118.504475 +2118.536176 +2118.573506 +2118.617895 +2118.693652 +2118.724455 +2118.760552 +2118.793219 +2118.831514 +2118.869077 +2118.909336 +2118.942836 +2118.986559 +2119.099213 +2119.139806 +2119.173738 +2119.207804 +2119.240838 +2119.278500 +2119.309269 +2119.345866 +2119.384161 +2119.422889 +2119.457288 +2119.489156 +2119.522023 +2119.557388 +2119.591187 +2119.621290 +2119.649795 +2119.678666 +2119.703175 +2119.724953 +2119.751194 +2119.778866 +2119.811833 +2119.837840 +2119.901809 +2119.931613 +2119.959252 +2119.990754 +2120.022622 +2120.052925 +2120.085958 +2120.117593 +2120.147896 +2120.180963 +2120.205106 +2120.239405 +2120.267543 +2120.302808 +2120.334909 +2120.369608 +2120.403041 +2120.408036 +2120.410567 +2120.458153 +2120.492818 +2120.560783 +2120.591619 +2120.625518 +2120.653990 +2120.687623 +2120.718758 +2120.749028 +2120.776567 +2120.809534 +2120.872038 +2120.905804 +2120.931179 +2120.970506 +2121.025818 +2121.065012 +2121.087989 +2121.115128 +2121.142168 +2121.173803 +2121.202474 +2121.268242 +2121.302308 +2121.336340 +2121.363380 +2121.406403 +2121.440170 +2121.518857 +2121.544532 +2121.577132 +2121.605904 +2121.644099 +2121.673336 +2121.706936 +2121.752490 +2121.786123 +2121.908101 +2121.934208 +2121.968041 +2122.049693 +2122.090419 +2122.129579 +2122.168574 +2122.200042 +2122.276066 +2122.310199 +2122.353089 +2122.501973 +2122.533475 +2122.572536 +2122.600741 +2122.639336 +2122.664511 +2122.708100 +2122.741966 +2122.774834 +2122.810165 +2122.847228 +2122.878896 +2122.967074 +2122.996312 +2123.033774 +2123.066308 +2123.114760 +2123.197877 +2123.243331 +2123.281693 +2123.321253 +2123.352455 +2123.398742 +2123.472502 +2123.574200 +2123.621752 +2123.703004 +2123.749558 +2123.836704 +2123.864909 +2123.909398 +2123.988186 +2124.024816 +2124.068805 +2124.131242 +2124.177196 +2124.278329 +2124.332408 +2124.382624 +2124.423783 +2124.472201 +2124.503770 +2124.546693 +2124.584322 +2124.625315 +2124.689750 +2124.726447 +2124.787885 +2124.816190 +2124.856916 +2124.899673 +2124.954718 +2125.051155 +2125.177195 +2125.219453 +2125.287985 +2125.380991 +2125.418820 +2125.473432 +2125.587984 +2125.658913 +2125.719153 +2125.794278 +2125.833006 +2125.884554 +2125.936336 +2125.986918 +2126.161577 +2126.225546 +2126.395942 +2126.431007 +2126.518353 +2126.628909 +2126.699605 +2126.784387 +2126.940364 +2127.023780 +2127.102435 +2127.155082 +2127.220117 +2127.300936 +2127.354982 +2127.421183 +2127.503034 +2127.540496 +2127.663507 +2127.739431 +2127.800170 +2127.858278 +2127.920116 +2127.976127 +2128.026643 +2128.072997 +2128.135301 +2128.194742 +2128.252950 +2128.295308 +2128.336466 +2128.376693 +2128.428208 +2128.484685 +2128.541095 +2128.592843 +2128.658944 +2128.715387 +2128.794841 +2128.852949 +2128.892443 +2128.978957 +2129.018284 +2129.055680 +2129.114954 +2129.168067 +2129.275593 +2129.331837 +2129.382919 +2129.447887 +2129.504863 +2129.555113 +2129.617084 +2129.666968 +2129.706328 +2129.753614 +2129.907727 +2129.958110 +2130.023378 +2130.078456 +2130.178123 +2130.231236 +2130.346155 +2130.400467 +2130.443923 +2130.500101 +2130.553181 +2130.616850 +2130.657310 +2130.724876 +2130.776624 +2130.834932 +2130.965202 +2131.043756 +2131.163503 +2131.221046 +2131.310956 +2131.393972 +2131.470729 +2131.777688 +2131.927638 +2132.034864 +2132.097535 +2132.372227 +2132.469063 +2132.612686 +2132.681450 +2132.766765 +2132.817880 +2132.890874 +2133.149449 +2133.283648 +2133.334430 +2133.413917 +2133.508556 +2133.701829 +2133.742655 +2133.790041 +2133.953444 +2134.019544 +2134.102661 +2134.216014 +2134.262767 +2134.312451 +2134.363666 +2134.419411 +2134.479584 +2134.542920 +2134.596933 +2134.734096 +2134.773490 +2134.849247 +2134.883579 +2134.962867 +2135.031531 +2135.106190 +2135.158704 +2135.208188 +2135.255141 +2135.424038 +2135.470492 +2135.529233 +2135.571158 +2135.585643 +2135.647548 +2135.697997 +2135.753475 +2135.794801 +2135.858503 +2135.905590 +2135.958437 +2136.041121 +2136.125103 +2136.169026 +2136.208553 +2136.250111 +2136.288839 +2136.324437 +2136.351077 +2136.393435 +2136.476984 +2136.562366 +2136.606888 +2136.646581 +2136.688140 +2136.738223 +2136.803224 +2136.864996 +2136.921639 +2136.961732 +2137.019108 +2137.078682 +2137.119042 +2137.166694 +2137.204423 +2137.234759 +2137.266860 +2137.303091 +2137.360500 +2137.444616 +2137.494932 +2137.579914 +2137.612881 +2137.664429 +2137.714279 +2137.759534 +2137.811382 +2137.861399 +2137.904589 +2137.942084 +2137.995398 +2138.046480 +2138.081911 +2138.113246 +2138.148944 +2138.186506 +2138.231128 +2138.274885 +2138.377915 +2138.429996 +2138.481944 +2138.567625 +2138.609916 +2138.652873 +2138.707285 +2138.766692 +2138.805254 +2138.922303 +2138.975950 +2139.016243 +2139.127564 +2139.188836 +2139.245213 +2139.283608 +2139.315243 +2139.355570 +2139.419872 +2139.451673 +2139.489635 +2139.534790 +2139.606052 +2139.671653 +2139.736855 +2139.899292 +2139.943281 +2140.013178 +2140.046844 +2140.071153 +2140.114443 +2140.136455 +2140.171220 +2140.234190 +2140.284906 +2140.333591 +2140.439751 +2140.486304 +2140.513111 +2140.557067 +2140.611279 +2140.661129 +2140.716341 +2140.811046 +2140.858698 +2140.908548 +2140.948542 +2140.998092 +2141.042348 +2141.077046 +2141.152138 +2141.186936 +2141.225098 +2141.270086 +2141.298625 +2141.342914 +2141.381075 +2141.425964 +2141.471285 +2141.518438 +2141.557599 +2141.596526 +2141.640682 +2141.695794 +2141.739683 +2141.785304 +2141.827162 +2141.872517 +2141.911844 +2141.988567 +2142.015673 +2142.035454 +2142.080076 +2142.125996 +2142.222899 +2142.267921 +2142.309413 +2142.340049 +2142.369419 +2142.415207 +2142.442679 +2142.475480 +2142.525996 +2142.586435 +2142.646375 +2142.686968 +2142.747308 +2142.794727 +2142.838716 +2142.892629 +2142.951803 +2143.001020 +2143.035553 +2143.068153 +2143.097324 +2143.138516 +2143.198456 +2143.259928 +2143.296991 +2143.321633 +2143.339348 +2143.375745 +2143.403118 +2143.429658 +2143.477477 +2143.558462 +2143.621599 +2143.674446 +2143.688499 +2143.720534 +2143.739947 +2143.839448 +2143.960560 +2144.024163 +2144.090796 +2144.114706 +2144.132821 +2144.149904 +2144.174979 +2144.223264 +2144.249770 +2144.279707 +2144.343577 +2144.394925 +2144.473713 +2144.559061 +2144.609843 +2144.685001 +2144.733719 +2144.758728 +2144.771049 +2144.808678 +2144.832654 +2144.865687 +2144.897389 +2144.940279 +2144.968018 +2145.003816 +2145.024462 +2145.037582 +2145.054065 +2145.111874 +2145.144874 +2145.175843 +2145.312174 +2145.337015 +2145.405647 +2145.451667 +2145.551035 +2145.652733 +2145.698187 +2145.748037 +2145.789463 +2145.832686 +2145.875010 +2145.898786 +2145.928324 +2146.059659 +2146.100451 +2146.139745 +2146.172646 +2146.207278 +2146.264454 +2146.310874 +2146.356162 +2146.404780 +2146.447670 +2146.481869 +2146.515602 +2146.548769 +2146.572312 +2146.581670 +2146.616734 +2146.639345 +2146.657294 +2146.697021 +2146.767017 +2146.813204 +2146.858925 +2146.905878 +2147.030354 +2147.073277 +2147.123327 +2147.167583 +2147.202382 +2147.245139 +2147.293091 +2147.333317 +2147.385265 +2147.418032 +2147.447103 +2147.469647 +2147.485332 +2147.507310 +2147.522261 +2147.545138 +2147.570147 +2147.580703 +2147.637113 +2147.694988 +2147.757759 +2147.805012 +2147.871512 +2147.905478 +2147.971745 +2148.011105 +2148.110040 +2148.152464 +2148.269846 +2148.310539 +2148.336180 +2148.357059 +2148.384998 +2148.391858 +2148.408041 +2148.428587 +2148.450432 +2148.460855 +2148.631251 +2148.686163 +2148.759323 +2148.814668 +2148.872443 +2148.913502 +2148.991424 +2149.044737 +2149.099050 +2149.153129 +2149.194487 +2149.231883 +2149.267781 +2149.288793 +2149.299582 +2149.351397 +2149.393055 +2149.410305 +2149.437811 +2149.456991 +2149.499815 +2149.561120 +2149.622459 +2149.695886 +2149.760454 +2149.813268 +2149.875306 +2149.919895 +2149.960587 +2150.060221 +2150.088959 +2150.140774 +2150.185695 +2150.238076 +2150.277503 +2150.318762 +2150.359388 +2150.401479 +2150.430284 +2150.496617 +2150.591456 +2150.640240 +2150.691023 +2150.751829 +2150.795418 +2150.863783 +2150.904576 +2150.958588 +2151.000213 +2151.044968 +2151.082697 +2151.141638 +2151.213367 +2151.257656 +2151.312134 +2151.350030 +2151.385594 +2151.440939 +2151.482364 +2151.539174 +2151.578734 +2151.628851 +2151.712467 +2151.870642 +2151.908504 +2151.948264 +2151.972440 +2151.990522 +2152.015031 +2152.091454 +2152.228151 +2152.283296 +2152.304275 +2152.342603 +2152.400745 +2152.452460 +2152.499479 +2152.539805 +2152.602609 +2152.638107 +2152.694417 +2152.761983 +2152.804640 +2152.857121 +2152.911866 +2152.965246 +2153.012566 +2153.062249 +2153.117161 +2153.171573 +2153.213797 +2153.284294 +2153.336075 +2153.366245 +2153.403108 +2153.456821 +2153.509202 +2153.560883 +2153.611799 +2153.718459 +2153.759917 +2153.803507 +2153.838505 +2153.922455 +2153.970174 +2154.066211 +2154.120124 +2154.163980 +2154.209035 +2154.301575 +2154.343833 +2154.368741 +2154.409267 +2154.443766 +2154.482994 +2154.574635 +2154.627116 +2154.680995 +2154.733177 +2154.789220 +2154.832744 +2154.887922 +2154.934442 +2154.979030 +2155.025884 +2155.071505 +2155.121455 +2155.216892 +2155.255787 +2155.306369 +2155.343233 +2155.392417 +2155.435773 +2155.482993 +2155.527415 +2155.575400 +2155.625883 +2155.671337 +2155.720721 +2155.770472 +2155.826149 +2155.866509 +2155.912929 +2155.957251 +2156.089452 +2156.164677 +2156.209432 +2156.268739 +2156.356085 +2156.400441 +2156.461713 +2156.557084 +2156.670437 +2156.750824 +2156.823884 +2156.894613 +2156.951290 +2157.046627 +2157.274766 +2157.400806 +2157.600673 +2157.654552 +2157.730376 +2157.779760 +2157.846427 +2157.896011 +2157.984522 +2158.039167 +2158.110063 +2158.253253 +2158.371202 +2158.394711 +2158.587552 +2158.630675 +2158.755883 +2158.898507 +2159.029176 +2159.172300 +2159.300971 +2159.498273 +2159.537534 +2159.613391 +2159.688982 +2159.867570 +2160.001503 +2160.135036 +2160.293311 +2160.458046 +2160.468003 +2160.823880 +2161.239430 +2161.251252 +2161.292344 +2161.304266 +2169.598663 +2169.600927 +2169.603158 +2169.605822 +2169.927334 +2169.929398 +2169.931630 +2169.936292 +2170.214014 +2170.216478 +2170.218676 +2170.221473 +2170.504756 +2170.507253 +2170.509518 +2170.512848 +2170.617177 +2170.619441 +2170.621905 +2170.624403 +2170.745848 +2170.750210 +2170.754706 +2170.873254 +2170.879281 +2170.885408 +2170.979980 +2170.992601 +2171.092867 +2171.102458 +2171.132095 +2171.188005 +2171.221538 +2171.256004 +2171.297396 +2171.332827 +2171.369590 +2171.405721 +2171.443683 +2171.488005 +2171.523236 +2171.557369 +2171.579247 +2171.602757 +2171.630562 +2171.649310 +2171.684908 +2171.719540 +2171.743816 +2171.769989 +2171.793932 +2171.819440 +2171.844049 +2171.881111 +2171.899293 +2171.914844 +2171.976516 +2172.025500 +2172.070156 +2172.104821 +2172.146579 +2172.186739 +2172.227265 +2172.268324 +2172.302456 +2172.352972 +2172.395263 +2172.443848 +2172.485839 +2172.532393 +2172.561097 +2172.587638 +2172.625633 +2172.651207 +2172.668224 +2172.703921 +2172.730395 +2172.764361 +2172.801623 +2172.842449 +2172.885306 +2172.935589 +2172.967857 +2173.003122 +2173.036888 +2173.098726 +2173.147877 +2173.198126 +2173.250774 +2173.302355 +2173.350374 +2173.400291 +2173.452871 +2173.554869 +2173.611513 +2173.719505 +2173.767257 +2173.801056 +2173.838852 +2173.862295 +2173.880677 +2173.910880 +2173.955502 +2173.988169 +2174.035788 +2174.111346 +2174.152238 +2174.210779 +2174.256700 +2174.313976 +2174.359264 +2174.395961 +2174.443213 +2174.503986 +2174.592964 +2174.651072 +2174.689800 +2174.742814 +2174.790999 +2174.847842 +2174.905384 +2174.940016 +2174.989100 +2175.029060 +2175.070985 +2175.123999 +2175.168754 +2175.199823 +2175.276213 +2175.337685 +2175.425330 +2175.490965 +2175.558730 +2175.621301 +2175.700455 +2175.773282 +2175.859795 +2175.919502 +2176.048074 +2176.098623 +2176.158929 +2176.216572 +2176.264224 +2176.304051 +2176.344643 +2176.423431 +2176.611843 +2176.682505 +2176.777277 +2176.797190 +2176.842978 +2176.901686 +2176.937683 +2176.992029 +2177.030024 +2177.087134 +2177.149005 +2177.206081 +2177.252501 +2177.309544 +2177.356497 +2177.436317 +2177.543677 +2177.617203 +2177.687100 +2177.744709 +2177.848372 +2177.916304 +2177.999187 +2178.062690 +2178.103383 +2178.174545 +2178.219933 +2178.362723 +2178.390229 +2178.423895 +2178.504515 +2178.769683 +2178.854398 +2178.996289 +2179.094091 +2179.208910 +2179.250901 +2179.446738 +2179.491160 +2179.505979 +2179.593425 +2179.761457 +2179.796521 +2179.888962 +2179.959092 +2180.057960 +2180.125359 +2180.228489 +2180.286431 +2180.474576 +2180.667250 +2180.721695 +2180.752698 +2180.775308 +2180.964652 +2180.991825 +2181.020496 +2181.181369 +2181.400383 +2181.537379 +2181.916233 +2181.977272 +2182.014634 +2182.050865 +2182.082899 +2182.288294 +2182.511137 +2182.526489 +2182.567215 +2182.594987 +2182.916665 +2182.982765 +2183.193887 +2183.203211 +2183.310238 +2183.365382 +2183.388859 +2183.447500 +2183.480534 +2183.549465 +2183.687493 +2183.769744 +2184.001246 +2184.087859 +2184.116197 +2184.148598 +2184.213800 +2184.649031 +2184.654825 +2184.659487 +2184.762817 +2184.768445 +2184.775271 +2184.883429 +2184.893220 +2184.986959 +2184.994119 +2185.041604 +2185.179899 +2185.213432 +2185.299746 +2185.341038 +2185.464181 +2185.541204 +2185.603742 +2185.680964 +2185.832946 +2185.880065 +2185.919259 +2185.982596 +2186.070142 +2186.109336 +2186.138773 +2186.179599 +2186.216029 +2186.241070 +2186.287491 +2186.302809 +2186.359186 +2186.525319 +2186.592186 +2186.611100 +2186.645732 +2186.821589 +2186.844933 +2186.882229 +2187.084559 +2187.223587 +2187.296880 +2187.350893 +2187.482827 +2187.562548 +2187.627716 +2187.705571 +2187.775867 +2187.832078 +2187.913063 +2187.995647 +2188.079663 +2188.145431 +2188.190486 +2188.238771 +2188.293083 +2188.350559 +2188.399443 +2188.470705 +2188.527915 +2188.590319 +2188.669273 +2188.784291 +2188.877065 +2188.977565 +2189.053822 +2189.139003 +2189.251524 +2189.344264 +2189.437671 +2189.483891 +2189.593115 +2189.638003 +2189.714360 +2189.783957 +2189.871736 +2189.932176 +2190.048559 +2190.213094 +2190.573234 +2190.694846 +2190.878562 +2190.973766 +2191.028112 +2191.067872 +2191.162011 +2191.244395 +2191.281825 +2191.362311 +2191.457083 +2191.458015 +2191.503136 +2191.679693 +2191.700306 +2191.769437 +2191.821518 +2191.907565 +2191.983189 +2192.005001 +2192.064408 +2192.099073 +2192.111927 +2192.772366 +2192.775629 +2192.777827 +2192.781124 +2192.902669 +2192.905633 +2192.912293 +2193.049855 +2193.053718 +2193.056948 +2193.247257 +2193.250987 +2193.448189 +2193.453085 +2193.458879 +2193.620484 +2193.624413 +2193.628143 +2193.801736 +2193.807530 +2193.813257 +2193.941196 +2193.948888 +2193.961109 +2194.105465 +2194.161842 +2194.198971 +2194.234236 +2194.288781 +2194.331872 +2194.370333 +2194.404799 +2194.434136 +2194.476960 +2194.521815 +2194.569800 +2194.589680 +2194.623513 +2194.641395 +2194.657579 +2194.704998 +2194.723713 +2194.782021 +2194.819850 +2194.878225 +2195.095873 +2195.115021 +2195.136766 +2195.231504 +2195.270399 +2195.381920 +2195.475727 +2195.524744 +2195.560642 +2195.627208 +2195.813522 +2195.859309 +2195.895773 +2195.919016 +2195.969466 +2196.043358 +2196.079456 +2196.438663 +2196.460874 +2196.517184 +2196.571696 +2196.637197 +2196.663771 +2196.693607 +2196.700367 +2196.709092 +2196.769631 +2196.811723 +2196.871130 +2196.922911 +2196.947387 +2196.986215 +2197.066767 +2197.087546 +2197.260573 +2197.290910 +2197.477057 +2197.574426 +2197.721578 +2197.927606 +2197.999867 +2198.197003 +2198.383582 +2198.501764 +2198.640892 +2198.749316 +2199.514550 +2199.521310 +2199.524840 +2199.943288 +2199.948349 +2199.953811 +2200.065033 +2200.068263 +2200.071626 +2200.265565 +2200.268196 +2200.270860 +2200.274456 +2200.475155 +2200.478186 +2200.480850 +2200.484812 +2200.669261 +2200.671459 +2200.675189 +2200.852211 +2200.855242 +2200.857806 +2200.861269 +2201.009321 +2201.011918 +2201.014482 +2201.018611 +2201.142887 +2201.145718 +2201.148315 +2201.152244 +2201.275854 +2201.278884 +2201.281648 +2201.286776 +2201.413649 +2201.417845 +2201.421342 +2201.429533 +2201.537692 +2201.541721 +2201.546516 +2201.632930 +2201.639623 +2201.653010 +2201.718944 +2201.775887 +2201.796433 +2201.825071 +2201.872157 +2201.901461 +2201.925670 +2201.944052 +2201.958437 +2202.012317 +2202.044951 +2202.091005 +2202.147748 +2202.181281 +2202.219243 +2202.268660 +2202.328001 +2202.364264 +2202.428234 +2202.553375 +2202.685643 +2202.749978 +2202.806422 +2202.870791 +2202.922139 +2202.976718 +2203.102492 +2203.218576 +2203.254007 +2203.343151 +2203.417244 +2203.499861 +2203.636291 +2203.820740 +2203.872122 +2203.903757 +2203.945881 +2204.015811 +2204.062032 +2204.094566 +2204.160466 +2204.215578 +2204.276683 +2204.323836 +2204.406154 +2204.512914 +2204.621139 +2204.726000 +2204.765827 +2204.950209 +2204.958035 +2204.973086 +2205.023902 +2205.062297 +2205.114578 +2205.134258 +2205.178314 +2205.206486 +2205.239853 +2205.244581 +2205.329596 +2205.374818 +2205.476982 +2205.542749 +2205.692233 +2205.765993 +2205.869389 +2205.945047 +2206.041750 +2206.109349 +2206.184840 +2206.237454 +2206.332359 +2206.397227 +2206.466325 +2206.521503 +2207.090200 +2207.093197 +2207.098326 +2207.250307 +2207.256034 +2207.259464 +2207.263427 +2207.594096 +2207.599724 +2207.691232 +2207.700190 +2207.704785 +2207.712444 +2207.757033 +2207.770819 +2207.795195 +2207.811245 +2207.831925 +2207.888901 +2207.926164 +2208.030992 +2208.040782 +2208.065258 +2208.206250 +2208.212877 +2208.222634 +2208.483273 +2208.487668 +2208.511478 +2208.984005 +2208.990631 +2208.995094 +2209.125563 +2209.162726 +2209.195360 +2209.216738 +2209.239283 +2209.271350 +2209.296492 +2209.335320 +2209.353868 +2209.422033 +2209.471850 +2209.537750 +2209.544677 +2209.593262 +2209.686701 +2209.722399 +2209.781606 +2209.858130 +2211.556263 +2211.558228 +2211.560293 +2211.562624 +2211.566053 +2211.850502 +2211.852833 +2211.854798 +2211.857095 +2211.861358 +2213.010175 +2215.761054 +2215.833149 +2215.835813 +2215.837744 +2215.839742 +2215.842606 +2216.044271 +2216.046269 +2216.048233 +2216.050764 +2216.169812 +2216.172109 +2216.174107 +2216.176505 +2216.183465 +2216.376838 +2216.379102 +2216.381000 +2216.383132 +2216.386295 +2216.585296 +2216.587560 +2216.589492 +2216.591723 +2216.595153 +2217.296517 +2217.299348 +2217.301712 +2217.305841 +2217.609704 +2217.612734 +2217.615398 +2217.621625 +2217.712601 +2217.715631 +2217.886893 +2217.889957 +2217.892887 +2217.901545 +2218.004742 +2218.007539 +2218.010070 +2218.013366 +2218.094718 +2218.098048 +2218.100746 +2218.104076 +2218.192520 +2218.195551 +2218.198048 +2218.200379 +2218.327319 +2218.330649 +2218.333446 +2218.337375 +2218.464248 +2218.467778 +2218.470908 +2218.475670 +2218.593952 +2218.597448 +2218.600912 +2218.608004 +2218.707472 +2218.711934 +2218.715996 +2218.725220 +2218.834012 +2218.839040 +2218.844701 +2218.929316 +2218.936775 +2218.945733 +2218.987791 +2219.005440 +2219.032779 +2219.063016 +2219.113066 +2219.151960 +2219.185560 +2219.200578 +2219.223755 +2219.282995 +2219.319925 +2219.368576 +2219.416628 +2219.454357 +2219.507604 +2219.542835 +2219.590388 +2219.628217 +2219.666012 +2219.750194 +2219.791320 +2219.831313 +2219.872805 +2219.914463 +2219.955289 +2219.999645 +2220.034610 +2220.092485 +2220.149828 +2220.203740 +2220.240937 +2220.323387 +2220.369441 +2220.426617 +2220.488855 +2221.290086 +2221.295881 +2221.299410 +2221.303306 +2222.720455 +2222.722719 +2222.724784 +2222.726915 +2222.731244 +2223.321053 +2223.323684 +2223.325948 +2223.329678 +2224.133440 +2224.135471 +2224.137270 +2224.139201 +2224.141699 +2224.475664 +2226.468403 +2226.864340 +2226.866904 +2226.869068 +2226.871300 +2226.876461 +2228.823812 +2228.826409 +2228.828274 +2228.830472 +2228.834401 +2228.930272 +2228.933502 +2228.935666 +2228.938497 +2228.941927 +2230.606128 +2230.610756 +2230.613820 +2230.616317 +2230.620280 +2230.695571 +2230.708725 +2230.711822 +2230.718182 +2231.334698 +2232.673292 +2233.241157 +2233.243255 +2233.245219 +2233.248749 +2233.683181 +2233.686178 +2233.688476 +2233.690607 +2233.693004 +2237.912714 +2237.935324 +2237.937289 +2237.939554 +2237.945348 +2238.474352 +2238.477282 +2238.479280 +2238.481511 +2238.485740 +2244.141612 +2244.143643 +2244.148905 +2244.606813 +2246.427923 +2246.429921 +2246.431986 +2246.434417 +2247.397053 +2247.478638 +2247.480436 +2248.400182 +2248.404778 +2248.571578 +2248.573709 +2248.576839 +2249.712236 +2249.716099 +2249.718163 +2250.249964 +2250.253061 +2250.255192 +2250.257224 +2250.259754 +2251.919560 +2252.620391 +2252.920791 +2255.028414 +2255.221821 +2256.353022 +2256.616192 +2258.073699 +2258.075897 +2258.077695 +2258.079793 +2258.553219 +2258.556849 +2258.558947 +2258.560945 +2258.563143 +2258.567139 +2258.901970 +2258.905100 +2258.906865 +2258.908663 +2258.910528 +2258.913226 +2260.185485 +2260.188149 +2260.190214 +2260.193744 +2260.375195 +2260.377460 +2260.379791 +2260.383088 +2260.596574 +2260.599438 +2260.601968 +2260.606664 +2260.741895 +2260.745125 +2260.747922 +2260.753883 +2260.889414 +2260.892677 +2260.895641 +2260.903067 +2261.017619 +2261.022547 +2261.027709 +2261.230040 +2261.298704 +2261.365671 +2261.400802 +2261.432737 +2261.477392 +2261.521215 +2261.578990 +2261.631238 +2261.678624 +2261.714555 +2261.743659 +2261.768567 +2261.792643 +2261.842527 +2261.873263 +2261.903033 +2261.929839 +2261.962740 +2261.990179 +2262.023945 +2262.048654 +2262.083352 +2262.118650 +2262.142560 +2262.175127 +2262.202833 +2262.248520 +2262.282353 +2262.321547 +2262.345590 +2262.409925 +2262.451450 +2262.483818 +2262.520615 +2262.558077 +2262.591544 +2262.625410 +2262.662539 +2262.744291 +2262.773062 +2262.802899 +2262.831470 +2262.859176 +2262.896671 +2262.927607 +2262.962839 +2262.999136 +2263.033268 +2263.073694 +2263.112722 +2263.162672 +2263.210391 +2263.254014 +2263.279189 +2263.322745 +2263.359208 +2263.389212 +2263.442925 +2263.487047 +2263.565635 +2263.602698 +2263.684616 +2263.718216 +2263.757943 +2263.799468 +2263.891243 +2263.914453 +2263.958109 +2264.034899 +2264.074726 +2264.133100 +2264.193407 +2264.222811 +2264.291475 +2264.348685 +2264.411355 +2264.485414 +2264.548318 +2264.616616 +2264.698967 +2264.733366 +2264.775457 +2264.840725 +2264.974791 +2265.048284 +2265.113286 +2265.221911 +2265.338261 +2265.388111 +2265.498767 +2265.578720 +2265.642256 +2265.713818 +2265.801763 +2265.899332 +2265.971627 +2266.016249 +2266.148083 +2266.215183 +2266.359472 +2266.428969 +2266.581050 +2266.665166 +2266.998133 +2267.028003 +2267.356474 +2267.416181 +2267.991871 +2268.078085 +2268.213982 +2268.527602 +2268.602926 +2268.692203 +2268.760302 +2268.835960 +2268.925936 +2269.018510 +2269.086509 +2269.154141 +2269.240222 +2269.413615 +2269.611583 +2269.696898 +2269.757404 +2269.836225 +2269.911083 +2269.994200 +2270.056538 +2270.115279 +2270.204356 +2270.253374 +2270.309718 +2270.378049 +2270.451243 +2270.529165 +2270.603357 +2270.666194 +2270.742618 +2270.829764 +2270.888738 +2270.964529 +2271.004655 +2271.089903 +2271.135991 +2271.207186 +2271.277183 +2271.358135 +2271.431095 +2271.549210 +2271.609850 +2271.665594 +2271.714911 +2271.790435 +2271.855271 +2271.906253 +2271.958101 +2272.009583 +2272.057635 +2272.110981 +2272.168490 +2272.221670 +2272.300625 +2272.403988 +2272.453538 +2272.513645 +2272.560232 +2272.617374 +2272.663795 +2272.714444 +2272.762562 +2272.813478 +2272.872253 +2272.941017 +2273.003388 +2273.084107 +2273.151773 +2273.294596 +2273.358100 +2273.405053 +2273.453204 +2273.499158 +2273.550474 +2273.603887 +2273.668023 +2273.710214 +2273.756035 +2273.801156 +2273.855735 +2273.910047 +2273.970120 +2274.057300 +2274.085538 +2274.124865 +2274.182641 +2274.245078 +2274.309247 +2274.373183 +2274.425131 +2274.488002 +2274.548475 +2274.631192 +2274.719903 +2274.817505 +2274.960362 +2275.114741 +2275.239683 +2275.289766 +2275.385037 +2275.462027 +2275.529193 +2275.585337 +2275.650172 +2275.710045 +2275.761860 +2275.810811 +2275.862992 +2275.898490 +2275.947441 +2276.011144 +2276.096991 +2276.211277 +2276.266988 +2276.323531 +2276.376978 +2276.434187 +2276.480341 +2276.529025 +2276.585369 +2276.646508 +2276.700487 +2276.740813 +2276.799088 +2276.884903 +2277.014206 +2277.119834 +2277.223863 +2277.313807 +2277.400253 +2277.502085 +2277.636983 +2277.704249 +2277.814705 +2277.935518 +2278.060259 +2278.292194 +2278.454165 +2278.649636 +2278.946239 +2279.178673 +2279.234917 +2279.367018 +2279.453731 +2279.724860 +2281.211971 +2281.221162 +2281.430719 +2281.444172 +2281.451132 +2281.635447 +2281.648501 +2281.792390 +2281.827855 +2281.995087 +2282.067681 +2282.118197 +2282.220895 +2282.414134 +2282.445237 +2282.751697 +2282.889192 +2282.958656 +2283.031916 +2283.095253 +2283.157490 +2283.218130 +2283.300214 +2283.376072 +2283.540707 +2283.672242 +2283.788892 +2283.938042 +2284.050963 +2284.115864 +2284.175738 +2284.253460 +2284.360186 +2284.467079 +2284.540206 +2284.603609 +2284.743902 +2284.790422 +2284.851461 +2284.954225 +2285.003809 +2285.067445 +2285.187758 +2285.247865 +2285.318827 +2285.401944 +2285.426286 +2285.484794 +2285.521690 +2285.601411 +2285.692453 +2285.783795 +2285.877834 +2285.957055 +2285.973272 +2286.082163 +2286.152059 +2286.234177 +2286.578632 +2286.709402 +2286.891752 +2286.961083 +2287.161782 +2287.233310 +2287.279997 +2287.335042 +2287.387190 +2287.448329 +2287.481162 +2287.509834 +2287.546097 +2287.605904 +2287.713397 +2287.818558 +2287.896547 +2287.924918 +2288.009866 +2288.056087 +2288.119324 +2288.181528 +2288.287755 +2288.393582 +2288.558850 +2288.617625 +2288.677398 +2288.742633 +2288.908367 +2289.026016 +2289.127015 +2289.225883 +2289.280428 +2289.389652 +2289.509665 +2289.595146 +2289.651556 +2289.738336 +2289.801406 +2289.843498 +2289.961346 +2290.019155 +2290.074466 +2290.211629 +2290.240400 +2290.279661 +2290.412961 +2290.537336 +2290.596078 +2290.669038 +2290.744562 +2290.800073 +2290.853420 +2290.901239 +2291.005468 +2291.110063 +2291.146094 +2291.219986 +2291.722417 +2291.812493 +2291.881391 +2292.003602 +2292.056782 +2292.320818 +2292.417121 +2292.511227 +2292.656648 +2292.739932 +2293.190614 +2293.196375 +2293.212825 +2293.498472 +2293.524147 +2293.532438 +2293.662608 +2293.859045 +2294.670965 +2295.407362 +2295.552516 +2295.577192 +2296.566568 +2296.572795 +2296.579588 +2296.758775 +2296.762538 +2296.766035 +2296.885415 +2297.041426 +2297.065269 +2297.154879 +2297.185215 +2297.249617 +2297.315618 +2297.320114 +2297.394406 +2297.423710 +2297.470363 +2297.516184 +2297.543457 +2297.634266 +2297.711056 +2297.770096 +2297.973027 +2298.081951 +2298.235431 +2298.261305 +2298.451048 +2298.574691 +2298.706592 +2298.767232 +2298.836129 +2299.015250 +2299.098100 +2299.266432 +2299.484447 +2299.641656 +2299.824940 +2299.950547 +2300.210653 +2300.711752 +2300.829434 +2301.095834 +2301.941155 +2301.956140 +2301.990971 +2301.995933 +2302.008387 +2302.048081 +2312.003349 +2345.901783 +2345.903515 +2345.905346 +2345.907211 +2345.909342 +2345.915037 +2349.501247 +2349.504077 +2349.505676 +2349.509405 +2349.512935 +2350.547400 +2350.549531 +2350.551229 +2350.553061 +2350.555392 +2350.753427 +2350.755158 +2350.757090 +2350.759121 +2350.762717 +2350.892887 +2350.903676 +2350.905708 +2350.907539 +2350.909804 +2353.071240 +2354.163014 +2354.164945 +2354.166777 +2354.169174 +2354.173237 +2355.345563 +2355.348694 +2355.350525 +2355.352690 +2356.589252 +2356.591316 +2356.593248 +2356.601806 +2356.740567 +2356.742931 +2356.744963 +2356.747627 +2356.906334 +2356.917690 +2356.919654 +2356.921586 +2356.923883 +2356.928712 +2357.283690 +2357.286221 +2357.288152 +2357.291515 +2357.479028 +2357.481392 +2357.483490 +2357.486121 +2357.492215 +2357.624216 +2357.626647 +2357.628645 +2357.631175 +2357.633973 +2357.689450 +2357.694279 +2357.698208 +2357.703969 +2357.762211 +2357.792314 +2357.852287 +2357.865075 +2357.948358 +2357.958881 +2357.999207 +2358.033673 +2358.058181 +2358.087885 +2358.113126 +2358.153353 +2358.212094 +2358.236403 +2358.291115 +2358.329077 +2358.352620 +2358.412094 +2358.432140 +2358.467938 +2358.488584 +2358.515590 +2358.528044 +2358.546193 +2358.591115 +2358.614291 +2358.643529 +2358.680026 +2358.745826 +2358.783022 +2358.829309 +2358.879426 +2358.922549 +2358.957648 +2358.999506 +2359.023748 +2359.069236 +2359.126112 +2359.180491 +2359.251720 +2359.305633 +2359.363641 +2359.391980 +2359.511427 +2359.559578 +2359.607031 +2359.632938 +2359.681789 +2359.709562 +2359.718886 +2359.759612 +2359.796175 +2359.865173 +2359.926778 +2359.979092 +2360.038432 +2360.108929 +2360.145259 +2360.183920 +2360.186751 +2360.246857 +2360.313157 +2360.346790 +2360.394742 +2360.431705 +2360.507263 +2360.537333 +2360.604466 +2360.671898 +2360.770333 +2360.853084 +2360.899837 +2361.070866 +2361.194941 +2361.290579 +2361.350919 +2361.470998 +2361.551118 +2361.684418 +2361.737332 +2361.791478 +2361.846922 +2362.105996 +2362.156879 +2362.246955 +2362.290178 +2362.373728 +2362.740961 +2363.112156 +2363.117617 +2363.121280 +2363.237530 +2363.241526 +2363.245589 +2363.253081 +2363.270730 +2363.491309 +2363.496271 +2363.500500 +2363.702398 +2363.706328 +2363.709891 +2363.885548 +2363.890110 +2363.894406 +2364.031569 +2364.041425 +2364.054179 +2364.165468 +2364.176790 +2364.193440 +2364.234099 +2364.254412 +2364.284649 +2364.316783 +2364.345321 +2364.370263 +2364.421711 +2364.448152 +2364.486613 +2364.540193 +2364.582817 +2364.622644 +2364.663902 +2364.702031 +2364.750149 +2364.790109 +2364.838095 +2364.882384 +2364.980852 +2365.019446 +2365.060872 +2365.095337 +2365.140092 +2365.166266 +2365.222343 +2365.267365 +2365.330435 +2365.372560 +2365.463136 +2365.496469 +2365.531034 +2365.584847 +2365.622643 +2365.708723 +2365.755543 +2365.820545 +2365.871294 +2365.937328 +2366.096735 +2366.145652 +2366.191840 +2366.240358 +2366.343987 +2366.415549 +2366.490707 +2366.575988 +2366.647816 +2366.711686 +2366.753511 +2366.784913 +2366.815149 +2366.889241 +2366.920410 +2366.973191 +2367.057307 +2367.108755 +2367.149348 +2367.186644 +2367.236361 +2367.316614 +2367.348848 +2367.392604 +2367.436693 +2367.518478 +2367.567629 +2367.628302 +2367.668162 +2367.783080 +2367.839557 +2367.888808 +2367.943519 +2368.025571 +2368.090772 +2368.161601 +2368.199863 +2368.294568 +2368.347815 +2368.445450 +2368.835360 +2368.843452 +2368.859669 +2369.020042 +2369.025137 +2369.031264 +2369.045883 +2369.153542 +2369.175486 +2369.240455 +2369.265496 +2369.357804 +2369.405556 +2369.445649 +2369.506122 +2369.541919 +2369.618176 +2369.665429 +2369.732362 +2369.772489 +2369.808553 +2369.880247 +2369.937190 +2369.987440 +2370.116411 +2370.224936 +2370.577949 +2370.630929 +2370.768392 +2370.820673 +2370.945881 +2371.025068 +2371.042584 +2371.084176 +2371.213813 +2371.354239 +2371.398195 +2371.428764 +2371.487072 +2371.489137 +2371.522104 +2371.526133 +2371.535424 +2371.596896 +2372.122137 +2372.125900 +2372.131927 +2372.236123 +2372.239020 +2372.242117 +2372.251640 +2372.384674 +2372.387571 +2372.390435 +2372.393598 +2372.535223 +2372.539552 +2372.542483 +2372.547877 +2372.636821 +2372.640551 +2372.653605 +2372.656735 +2372.660365 +2372.763395 +2372.771120 +2372.776315 +2372.780977 +2372.926198 +2372.929595 +2372.932659 +2372.936988 +2373.166991 +2373.170587 +2373.173451 +2373.178146 +2373.378879 +2373.381476 +2373.385372 +2373.503521 +2373.506518 +2373.509348 +2373.513144 +2373.657999 +2373.661629 +2373.664360 +2373.668322 +2373.781043 +2373.785072 +2373.788236 +2373.794896 +2373.890966 +2373.895228 +2373.899491 +2373.912678 +2373.974183 +2373.987536 +2374.001788 +2374.059564 +2374.078312 +2374.111379 +2374.128861 +2374.164292 +2374.201522 +2374.246643 +2374.271185 +2374.310213 +2374.339251 +2374.383307 +2374.412810 +2374.450439 +2374.521835 +2374.552970 +2374.586936 +2374.613609 +2374.647875 +2374.679410 +2374.706616 +2374.743746 +2374.761861 +2374.823000 +2374.827262 +2374.876147 +2374.909247 +2374.929560 +2374.982873 +2375.010579 +2375.026962 +2375.039650 +2375.060928 +2375.169619 +2375.212243 +2375.246875 +2375.273615 +2375.315507 +2375.352370 +2375.431924 +2375.471950 +2375.508713 +2375.559995 +2375.600721 +2375.645943 +2375.692463 +2375.738983 +2375.780008 +2375.821400 +2375.864757 +2375.900721 +2375.939848 +2375.974414 +2376.007647 +2376.037984 +2376.069952 +2376.148706 +2376.227461 +2376.260261 +2376.298456 +2376.335719 +2376.392828 +2376.437983 +2376.485003 +2376.539348 +2376.582505 +2376.640347 +2376.685469 +2376.780307 +2376.820001 +2376.866721 +2376.920434 +2376.962691 +2377.003617 +2377.055665 +2377.112242 +2377.152335 +2377.196990 +2377.293993 +2377.371882 +2377.434352 +2377.490430 +2377.539414 +2377.596257 +2377.639780 +2377.681938 +2377.720899 +2377.752501 +2377.800652 +2377.842610 +2377.899154 +2377.931655 +2377.972048 +2378.030089 +2378.068984 +2378.125161 +2378.158028 +2378.210742 +2378.257129 +2378.333519 +2378.384335 +2378.441944 +2378.510542 +2378.610975 +2378.692327 +2378.728657 +2378.738447 +2378.809975 +2378.854198 +2378.926426 +2378.972779 +2379.020998 +2379.086266 +2379.137514 +2379.188230 +2379.251833 +2379.319798 +2379.376408 +2379.449602 +2379.490960 +2379.528390 +2379.562156 +2379.592992 +2379.668949 +2379.738246 +2379.816335 +2379.880138 +2379.944440 +2379.999718 +2380.058426 +2380.148902 +2380.188063 +2380.229654 +2380.243640 +2380.288196 +2380.338013 +2380.404379 +2380.616101 +2380.626823 +2380.769281 +2380.803047 +2380.858924 +2380.950699 +2380.994089 +2381.038811 +2381.130453 +2381.179004 +2381.224192 +2381.265451 +2381.289960 +2381.330519 +2381.352131 +2381.402181 +2381.432917 +2381.477672 +2381.533383 +2381.576806 +2381.605910 +2381.664984 +2381.721661 +2381.787029 +2381.847069 +2381.879603 +2381.924191 +2381.954628 +2381.985563 +2382.041474 +2382.063385 +2382.072376 +2382.117964 +2382.168613 +2382.210005 +2382.358057 +2382.374641 +2382.417464 +2382.476139 +2382.526622 +2382.614301 +2382.687194 +2382.757124 +2382.834514 +2382.985529 +2383.056325 +2383.091423 +2383.147867 +2383.261553 +2383.348699 +2383.395152 +2383.436245 +2383.487693 +2383.512968 +2383.537643 +2383.576138 +2383.595385 +2383.642438 +2383.670177 +2383.709071 +2383.751029 +2383.836444 +2383.893787 +2383.942105 +2383.978502 +2384.020959 +2384.059454 +2384.109071 +2384.154992 +2384.210969 +2384.243403 +2384.280200 +2384.327053 +2384.403143 +2384.453726 +2384.521192 +2384.592853 +2384.646899 +2384.699114 +2384.742304 +2384.802544 +2384.862250 +2384.919993 +2385.002743 +2385.034744 +2385.160352 +2385.285027 +2385.319293 +2385.369543 +2385.454424 +2385.491754 +2385.572073 +2385.590455 +2385.623522 +2385.645034 +2385.692819 +2385.730248 +2386.034843 +2386.050228 +2386.111999 +2386.129515 +2386.193385 +2386.218959 +2386.279965 +2386.321789 +2386.373271 +2386.422189 +2386.475103 +2386.515928 +2386.569974 +2386.609069 +2386.655988 +2386.699678 +2386.724420 +2386.761083 +2386.808003 +2386.911399 +2386.964613 +2387.015961 +2387.062781 +2387.104606 +2387.130813 +2387.153657 +2387.184626 +2387.220024 +2387.245165 +2387.263047 +2387.279930 +2387.291419 +2387.349794 +2387.375868 +2387.487822 +2387.547263 +2387.611432 +2387.680663 +2387.747129 +2387.809966 +2387.997112 +2388.059983 +2388.100009 +2388.164179 +2388.201541 +2388.254455 +2388.284591 +2388.305004 +2388.337838 +2388.370172 +2388.401974 +2388.418757 +2388.438171 +2388.459416 +2388.510665 +2388.530379 +2388.566875 +2388.586889 +2388.603372 +2388.641234 +2388.715693 +2388.956119 +2388.962912 +2388.966875 +2388.970971 +2389.115826 +2389.119456 +2389.122586 +2389.126715 +2389.133209 +2389.387254 +2389.390784 +2389.393581 +2389.398909 +2389.563145 +2389.566142 +2389.568539 +2389.571869 +2389.745296 +2389.748126 +2389.750224 +2389.753155 +2389.759348 +2389.906934 +2389.909099 +2389.911696 +2389.916957 +2390.011296 +2390.013827 +2390.016424 +2390.019188 +2390.024283 +2390.178762 +2390.181326 +2390.183524 +2390.186388 +2390.193281 +2390.319421 +2390.322019 +2390.324316 +2390.326747 +2390.331343 +2390.462644 +2390.465308 +2390.467340 +2390.474666 +2390.590683 +2390.592914 +2390.595312 +2390.598209 +2390.604103 +2390.719954 +2390.722618 +2390.724849 +2390.727879 +2390.735505 +2390.845295 +2390.848159 +2390.850556 +2390.853653 +2390.956617 +2390.960213 +2390.963643 +2390.969837 +2391.051155 +2391.055984 +2391.059913 +2391.060779 +2391.069370 +2391.130043 +2391.136636 +2391.157815 +2391.196477 +2391.208132 +2391.230209 +2391.245128 +2391.258947 +2391.276496 +2391.299140 +2391.318921 +2391.336436 +2391.355517 +2391.375797 +2391.401704 +2391.422151 +2391.440266 +2391.459380 +2391.481092 +2391.501305 +2391.508930 +2391.535138 +2391.556183 +2391.576763 +2391.599973 +2391.619187 +2391.639200 +2391.653219 +2391.677428 +2391.699839 +2391.722950 +2391.743762 +2391.767538 +2391.794078 +2391.817122 +2391.841997 +2391.865773 +2391.888184 +2391.909230 +2391.927978 +2391.952020 +2391.974165 +2391.994911 +2392.040199 +2392.065573 +2392.093512 +2392.115490 +2392.140498 +2392.162809 +2392.210062 +2392.231108 +2392.251221 +2392.272666 +2392.292313 +2392.333305 +2392.351687 +2392.371733 +2392.393578 +2392.422682 +2392.444827 +2392.468070 +2392.495376 +2392.521151 +2392.545293 +2392.574730 +2392.603135 +2392.624947 +2392.653551 +2392.681224 +2392.708330 +2392.728809 +2392.759878 +2392.787584 +2392.815989 +2392.871467 +2392.896308 +2392.947424 +2393.005799 +2393.026944 +2393.056315 +2393.084786 +2393.111393 +2393.135069 +2393.161776 +2393.192146 +2393.251420 +2393.272831 +2393.328143 +2393.355815 +2393.382189 +2393.404466 +2393.430340 +2393.454683 +2393.483321 +2393.511759 +2393.532971 +2393.562608 +2393.597806 +2393.655315 +2393.694776 +2393.726710 +2393.757013 +2393.790613 +2393.820450 +2393.850786 +2393.882122 +2393.907596 +2393.925811 +2393.960343 +2393.987350 +2394.031139 +2394.047856 +2394.072897 +2394.100836 +2394.120616 +2394.140629 +2394.164339 +2394.198971 +2394.229041 +2394.259943 +2394.290912 +2394.337832 +2394.376194 +2394.418784 +2394.456280 +2394.496973 +2394.534269 +2394.571065 +2394.612357 +2394.643959 +2394.720016 +2394.762807 +2394.799270 +2394.829939 +2394.857445 +2394.927975 +2394.997039 +2395.032370 +2395.064405 +2395.110559 +2395.138630 +2395.256446 +2395.298737 +2395.326642 +2395.429073 +2395.476792 +2395.527175 +2395.572763 +2395.607062 +2395.655580 +2395.700768 +2395.743092 +2395.796305 +2395.834967 +2395.894940 +2395.933535 +2395.979888 +2396.064637 +2396.109359 +2396.155513 +2396.189112 +2396.240994 +2396.278057 +2396.325742 +2396.366202 +2396.414853 +2396.483784 +2396.532102 +2396.694140 +2396.710757 +2396.742891 +2396.772328 +2396.790743 +2396.813421 +2396.875558 +2396.904496 +2396.945655 +2397.000567 +2397.067433 +2397.095605 +2397.137330 +2397.186947 +2397.252481 +2397.314985 +2397.366500 +2397.412921 +2397.448219 +2397.490177 +2397.535231 +2397.573693 +2397.621978 +2397.679420 +2397.728638 +2397.753513 +2397.794572 +2397.820879 +2397.843556 +2397.859407 +2397.884349 +2397.927938 +2397.998135 +2398.033633 +2398.070762 +2398.107658 +2398.148318 +2398.181818 +2398.299466 +2398.315084 +2398.388810 +2398.440059 +2398.489909 +2398.542756 +2398.609090 +2398.653212 +2398.709523 +2398.746752 +2398.796935 +2398.864667 +2398.899399 +2398.953578 +2399.000964 +2399.058407 +2399.108956 +2399.158540 +2399.263435 +2399.321077 +2399.382116 +2399.426771 +2399.471527 +2399.503195 +2399.536928 +2399.563834 +2399.632332 +2399.707390 +2399.738926 +2399.766565 +2399.835662 +2399.887111 +2399.912285 +2399.978852 +2400.112918 +2400.157573 +2400.248582 +2400.293537 +2400.356940 +2400.404326 +2400.442987 +2400.504892 +2400.555442 +2400.667896 +2400.709521 +2400.854742 +2400.894535 +2400.910486 +2400.939457 +2400.961935 +2400.994535 +2401.052211 +2401.123440 +2401.162634 +2401.250179 +2401.305025 +2401.369860 +2401.406223 +2401.455507 +2401.494402 +2401.579117 +2401.625004 +2401.698531 +2401.750445 +2401.779683 +2401.799163 +2401.839390 +2401.879783 +2401.917578 +2401.964764 +2402.010685 +2402.055307 +2402.101261 +2402.136459 +2402.228434 +2402.334228 +2402.381847 +2402.475586 +2402.525170 +2402.604724 +2402.757038 +2403.017544 +2403.080248 +2403.193601 +2403.238589 +2403.366894 +2403.401559 +2403.521073 +2403.596264 +2403.862265 +2403.877483 +2403.958269 +2403.993067 +2404.016977 +2404.053373 +2404.120473 +2404.143750 +2404.208585 +2404.266260 +2404.334459 +2404.582577 +2404.598095 +2404.660233 +2404.809217 +2404.995464 +2405.005420 +2405.458534 +2405.467791 +2405.746545 +2405.759432 +2405.973618 +2405.996362 +2406.036755 +2406.128363 +2406.154837 +2406.255669 +2406.274717 +2406.312013 +2406.337454 +2406.362462 +2406.402522 +2406.498160 +2407.033324 +2407.039151 +2407.042182 +2407.160963 +2407.171419 +2407.174682 +2407.177813 +2407.338951 +2407.341915 +2407.348075 +2407.350806 +2407.354169 +2407.529993 +2407.539284 +2407.544645 +2407.546876 +2407.553203 +2407.635155 +2407.641615 +2407.645711 +2407.650007 +2407.989067 +2407.992830 +2407.995527 +2407.998891 +2408.217738 +2408.221801 +2408.224931 +2408.230925 +2408.345044 +2408.351271 +2408.356166 +2408.435487 +2408.440549 +2408.443845 +2408.447175 +2408.520435 +2408.535520 +2408.576979 +2408.590032 +2408.671351 +2408.698590 +2408.765656 +2408.785670 +2408.820402 +2408.848673 +2408.889233 +2408.918304 +2408.958763 +2408.996492 +2409.028160 +2409.065556 +2409.102919 +2409.135087 +2409.167221 +2409.205616 +2409.237617 +2409.277477 +2409.307681 +2409.321433 +2409.348839 +2409.390431 +2409.432689 +2409.466788 +2409.506315 +2409.534287 +2409.572882 +2409.603917 +2409.638982 +2409.674413 +2409.711543 +2409.747041 +2409.787867 +2409.820101 +2409.848006 +2409.880907 +2409.943611 +2409.979075 +2410.007380 +2410.052568 +2410.079075 +2410.111642 +2410.127427 +2410.155399 +2410.185169 +2410.242944 +2410.272215 +2410.327693 +2410.399854 +2410.423730 +2410.443344 +2410.509045 +2410.542345 +2410.569418 +2410.605648 +2410.652668 +2410.678375 +2410.728891 +2410.774978 +2410.857196 +2410.905581 +2410.950836 +2410.989863 +2411.084602 +2411.109277 +2411.163223 +2411.246273 +2411.290795 +2411.305514 +2411.347172 +2411.373879 +2411.396023 +2411.436350 +2411.582603 +2411.612207 +2411.640312 +2411.729223 +2411.755297 +2411.769849 +2411.815637 +2411.881304 +2411.910142 +2411.963189 +2412.026825 +2412.091094 +2412.164288 +2412.215770 +2412.275876 +2412.340778 +2412.387464 +2412.465986 +2412.515103 +2412.567817 +2412.623128 +2412.679372 +2412.782336 +2412.836581 +2412.985366 +2413.091793 +2413.138646 +2413.246837 +2413.300384 +2413.349401 +2413.406411 +2413.452565 +2413.495921 +2413.519132 +2413.584067 +2413.620630 +2413.659158 +2413.714336 +2413.752598 +2413.801449 +2413.853197 +2413.891659 +2413.940776 +2413.971379 +2414.004446 +2414.036247 +2414.069814 +2414.115168 +2414.164719 +2414.235614 +2414.288561 +2414.334116 +2414.411372 +2414.469214 +2414.570446 +2414.634781 +2414.685930 +2414.735347 +2414.782933 +2414.827355 +2414.871378 +2414.920462 +2414.969846 +2415.066483 +2415.105211 +2415.135713 +2415.239077 +2415.293489 +2415.381634 +2415.416499 +2415.533449 +2415.560921 +2415.595520 +2415.659855 +2415.721061 +2415.758057 +2415.806509 +2415.834714 +2415.867581 +2415.910005 +2415.945003 +2415.970777 +2416.013401 +2416.074673 +2416.118530 +2416.180634 +2416.223258 +2416.280434 +2416.325855 +2416.417330 +2416.510837 +2416.556991 +2416.609871 +2416.652662 +2416.695286 +2416.782865 +2416.825056 +2416.872109 +2416.900480 +2416.930583 +2416.981066 +2417.126554 +2417.151795 +2417.172508 +2417.229917 +2417.275971 +2417.375638 +2417.413500 +2417.462751 +2417.519893 +2417.565981 +2417.610969 +2417.664748 +2417.712634 +2417.804275 +2417.865947 +2417.965581 +2418.023290 +2418.070009 +2418.118461 +2418.174971 +2418.249130 +2418.292054 +2418.322823 +2418.368810 +2418.414864 +2418.470409 +2418.594151 +2418.637575 +2418.700112 +2418.750462 +2418.840139 +2418.896316 +2418.953825 +2419.012166 +2419.086092 +2419.136242 +2419.187757 +2419.239439 +2419.297980 +2419.356522 +2419.407104 +2419.468110 +2419.512299 +2419.562848 +2419.595283 +2419.624620 +2419.667644 +2419.707937 +2419.737141 +2419.767177 +2419.812399 +2419.833644 +2419.874470 +2419.974436 +2420.024819 +2420.094450 +2420.162815 +2420.209701 +2420.264013 +2420.315528 +2420.379731 +2420.418059 +2420.488688 +2420.535808 +2420.615228 +2420.670806 +2420.724386 +2420.786057 +2420.845198 +2420.895947 +2420.932045 +2421.031345 +2421.100942 +2421.144132 +2421.191884 +2421.238904 +2421.309267 +2421.337139 +2421.398178 +2421.418458 +2421.455021 +2421.587688 +2421.609233 +2421.666742 +2421.890052 +2421.976233 +2422.069206 +2422.095846 +2422.127614 +2422.166409 +2422.246662 +2422.301374 +2422.380894 +2422.440035 +2422.512130 +2422.569206 +2422.623052 +2422.679595 +2422.727214 +2422.767241 +2422.806002 +2422.842799 +2422.854487 +2422.893015 +2422.996145 +2423.023118 +2423.085655 +2423.165409 +2423.223751 +2423.274933 +2423.416125 +2423.550457 +2423.689518 +2423.723484 +2423.781759 +2423.906534 +2423.965242 +2423.990250 +2424.028545 +2424.063510 +2424.171036 +2424.247526 +2424.332807 +2424.405468 +2424.466873 +2424.528578 +2424.598641 +2424.650456 +2424.719587 +2424.786320 +2424.852387 +2424.910762 +2424.964974 +2425.020952 +2425.062077 +2425.106999 +2425.149390 +2425.184621 +2425.220252 +2425.251055 +2425.324914 +2425.390415 +2425.494511 +2425.647258 +2425.712659 +2425.785686 +2425.839865 +2425.940298 +2425.994177 +2426.056681 +2426.099838 +2426.140298 +2426.168170 +2426.193711 +2426.217054 +2426.369535 +2426.928242 +2426.930340 +2426.933004 +2426.938465 +2427.172798 +2427.174929 +2427.177326 +2427.182654 +2427.335968 +2427.338432 +2427.340396 +2427.342861 +2427.557746 +2427.559644 +2427.561975 +2427.566071 +2427.674462 +2427.681255 +2427.687283 +2427.795474 +2427.797739 +2427.799903 +2427.802434 +2427.807429 +2428.025944 +2428.028141 +2428.030839 +2428.036666 +2428.102334 +2428.185584 +2428.187848 +2428.189879 +2428.192477 +2428.335201 +2428.337565 +2428.339596 +2428.342160 +2428.347488 +2428.399603 +2428.454681 +2428.456846 +2428.459343 +2428.462074 +2428.470665 +2428.562173 +2428.565404 +2428.568534 +2428.574561 +2428.603132 +2428.637365 +2428.644691 +2428.653982 +2428.701234 +2428.716519 +2428.728807 +2428.759709 +2428.781620 +2428.807261 +2428.828207 +2428.853682 +2428.881221 +2428.904597 +2428.924045 +2428.951850 +2428.977924 +2428.999269 +2429.019049 +2429.044357 +2429.069133 +2429.090245 +2429.114154 +2429.136199 +2429.160508 +2429.187614 +2429.207461 +2429.223545 +2429.248953 +2429.268966 +2429.295306 +2429.316885 +2429.336498 +2429.356045 +2429.383385 +2429.398536 +2429.407627 +2429.428773 +2429.455013 +2429.477857 +2429.490611 +2429.511323 +2429.528040 +2429.553348 +2429.584117 +2429.609991 +2429.627141 +2429.651250 +2429.676791 +2429.699035 +2429.722146 +2429.746355 +2429.853681 +2429.884117 +2429.907227 +2429.924676 +2429.978556 +2430.004496 +2430.034666 +2430.058509 +2430.085615 +2430.111589 +2430.163337 +2430.191909 +2430.219814 +2430.246987 +2430.273993 +2430.323743 +2430.354712 +2430.380020 +2430.402065 +2430.427706 +2430.449984 +2430.479321 +2430.503896 +2430.528172 +2430.551316 +2430.573926 +2430.605062 +2430.632568 +2430.660640 +2430.691742 +2430.721912 +2430.749517 +2430.773327 +2430.796903 +2430.822544 +2430.874692 +2430.928538 +2430.961438 +2430.989177 +2431.017049 +2431.046686 +2431.076423 +2431.111222 +2431.140526 +2431.174026 +2431.207625 +2431.236829 +2431.273426 +2431.303929 +2431.334865 +2431.367099 +2431.403563 +2431.428737 +2431.461971 +2431.516849 +2431.542657 +2431.580252 +2431.616416 +2431.649616 +2431.688411 +2431.720112 +2431.754178 +2431.791108 +2431.859040 +2431.929203 +2431.962969 +2431.995070 +2432.026372 +2432.059106 +2432.092506 +2432.124940 +2432.158873 +2432.224208 +2432.253645 +2432.284814 +2432.309289 +2432.356675 +2432.385513 +2432.457508 +2432.487544 +2432.530135 +2432.559006 +2432.596801 +2432.626006 +2432.656741 +2432.695303 +2432.729702 +2432.772426 +2432.815849 +2432.856475 +2432.900764 +2432.935629 +2432.972126 +2433.051646 +2433.082549 +2433.120910 +2433.146684 +2433.190141 +2433.230301 +2433.295102 +2433.330334 +2433.361270 +2433.404893 +2433.434530 +2433.474689 +2433.511819 +2433.544186 +2433.607956 +2433.635628 +2433.655775 +2433.697067 +2433.720210 +2433.746417 +2433.805458 +2433.833364 +2433.853710 +2433.935528 +2433.978052 +2434.020110 +2434.061069 +2434.101362 +2434.142055 +2434.178785 +2434.218978 +2434.268528 +2434.311085 +2434.353576 +2434.425171 +2434.460636 +2434.541255 +2434.591871 +2434.767429 +2434.825837 +2434.854908 +2434.926303 +2434.983812 +2435.012084 +2435.046882 +2435.096766 +2435.121940 +2435.145650 +2435.201161 +2435.229699 +2435.324271 +2435.438857 +2435.514181 +2435.587674 +2435.646782 +2435.719842 +2435.775420 +2435.846149 +2436.013248 +2436.054574 +2436.115046 +2436.179915 +2436.214380 +2436.244483 +2436.276118 +2436.303258 +2436.335892 +2436.381313 +2436.544283 +2436.572488 +2436.653041 +2436.696298 +2436.736924 +2436.789438 +2436.859102 +2436.891636 +2436.918908 +2436.973820 +2437.021672 +2437.111449 +2437.136224 +2437.149078 +2437.230763 +2437.249045 +2437.314179 +2437.320340 +2437.435957 +2437.516710 +2437.558735 +2437.608751 +2437.907386 +2437.917609 +2437.926267 +2437.932527 +2437.996863 +2438.020106 +2438.071888 +2438.077782 +2438.380845 +2438.399626 +2438.472220 +2438.478247 +2438.490535 +2438.510582 +2438.519539 +2438.537122 +2438.568191 +2438.637688 +2438.859865 +2438.872786 +2438.889536 +2438.960465 +2438.987937 +2439.164694 +2439.211081 +2439.346745 +2439.505153 +2439.524866 +2439.551140 +2439.694064 +2439.748010 +2439.923368 +2439.948442 +2439.971020 +2439.975582 +2440.010214 +2440.171985 +2440.349974 +2440.356734 +2440.824166 +2441.141914 +2441.146243 +2441.151638 +2441.153969 +2441.211811 +2441.221601 +2442.120135 +2442.123965 +2442.127028 +2442.238417 +2442.243046 +2442.247841 +2442.251737 +2442.429259 +2442.432922 +2442.436186 +2442.443978 +2442.520734 +2442.525729 +2442.530658 +2442.648573 +2442.653535 +2442.657131 +2442.660661 +2442.864690 +2442.868486 +2442.872083 +2442.879542 +2443.010944 +2443.014673 +2443.017837 +2443.023098 +2443.214040 +2443.217137 +2443.219901 +2443.223031 +2443.382272 +2443.385535 +2443.388765 +2443.395492 +2443.518269 +2443.522398 +2443.525861 +2443.531356 +2443.633953 +2443.638748 +2443.642744 +2443.679275 +2443.719867 +2443.738415 +2443.753267 +2443.797789 +2443.818602 +2443.849071 +2443.887599 +2443.915904 +2443.961259 +2443.980739 +2444.007579 +2444.039281 +2444.070083 +2444.106680 +2444.164023 +2444.211109 +2444.247040 +2444.283736 +2444.315205 +2444.359827 +2444.429057 +2444.463456 +2444.503616 +2444.546140 +2444.580406 +2444.615238 +2444.652101 +2444.693726 +2444.775943 +2444.812174 +2444.850402 +2444.929989 +2444.974312 +2444.997089 +2445.074378 +2445.126459 +2445.198754 +2445.253332 +2445.298121 +2445.322263 +2445.359892 +2445.408077 +2445.450502 +2445.486832 +2445.529223 +2445.671847 +2445.716868 +2445.755496 +2445.793725 +2445.835383 +2445.883069 +2445.924727 +2445.962056 +2446.009808 +2446.097953 +2446.152732 +2446.188929 +2446.232785 +2446.277674 +2446.360491 +2446.399918 +2446.433351 +2446.588496 +2446.636048 +2446.679704 +2446.706178 +2446.760857 +2446.805179 +2446.863254 +2446.911539 +2446.945505 +2446.986631 +2447.032551 +2447.071113 +2447.110840 +2447.170347 +2447.264086 +2447.315335 +2447.362354 +2447.410839 +2447.450266 +2447.495255 +2447.546470 +2447.594455 +2447.643440 +2447.690093 +2447.729986 +2447.763053 +2447.820396 +2447.851265 +2447.889760 +2447.922927 +2447.965884 +2448.012803 +2448.061987 +2448.116400 +2448.151964 +2448.217798 +2448.256826 +2448.266949 +2448.277205 +2448.296553 +2448.439743 +2448.468148 +2448.497218 +2448.556226 +2448.630219 +2448.660289 +2448.669513 +2448.684931 +2448.698284 +2448.742573 +2448.786229 +2448.826689 +2448.884065 +2448.910305 +2448.952396 +2448.974374 +2449.003578 +2449.033382 +2449.109672 +2449.162353 +2449.183631 +2449.208773 +2449.235113 +2449.299649 +2449.347800 +2449.405609 +2449.461953 +2449.514434 +2449.577704 +2449.617331 +2449.728386 +2449.791256 +2449.845968 +2449.899015 +2449.998815 +2450.061686 +2450.117863 +2450.170210 +2450.225155 +2450.268845 +2450.318895 +2450.396351 +2450.424123 +2450.450763 +2450.478302 +2450.527886 +2450.546900 +2450.648165 +2450.668245 +2450.740806 +2450.770043 +2450.847100 +2450.907739 +2451.004042 +2451.060952 +2451.131848 +2451.255424 +2451.353493 +2451.410902 +2451.451728 +2451.493286 +2451.528018 +2451.624921 +2451.673472 +2451.708937 +2451.721291 +2451.789423 +2451.888224 +2451.952027 +2452.006306 +2452.040705 +2452.094651 +2452.173439 +2452.239739 +2452.297581 +2452.440205 +2452.507438 +2452.601643 +2452.667777 +2452.732978 +2452.789522 +2452.854690 +2452.920291 +2452.999811 +2453.073604 +2453.125053 +2453.186291 +2453.248729 +2453.305306 +2453.364679 +2453.436641 +2453.488389 +2453.513098 +2453.551259 +2453.595515 +2453.743633 +2453.777400 +2453.816261 +2453.856454 +2454.047030 +2454.118924 +2454.175002 +2454.242601 +2454.244166 +2454.283993 +2455.768573 +2455.771437 +2455.773468 +2455.776598 +2456.193048 +2456.195679 +2456.197710 +2456.199941 +2456.203937 +2456.261313 +2456.265842 +2456.270904 +2456.273967 +2456.638835 +2456.641333 +2456.643298 +2456.646161 +2456.906501 +2456.908898 +2456.910930 +2457.095645 +2457.098142 +2457.100407 +2457.103370 +2457.300440 +2457.303104 +2457.305235 +2457.308498 +2457.517589 +2457.520553 +2457.522884 +2457.526480 +2457.694246 +2457.697109 +2457.699440 +2457.702770 +2457.867605 +2457.870169 +2457.872367 +2457.875464 +2458.006666 +2458.009463 +2458.011528 +2458.014825 +2458.165074 +2458.167805 +2458.170302 +2458.173399 +2458.316456 +2458.319320 +2458.321551 +2458.324848 +2458.451488 +2458.454385 +2458.456749 +2458.460345 +2458.580259 +2458.586785 +2458.591914 +2458.697108 +2458.700705 +2458.703835 +2458.709329 +2458.812626 +2458.816855 +2458.820884 +2458.834171 +2458.927111 +2458.931540 +2458.936635 +2458.993012 +2459.004867 +2459.035170 +2459.060078 +2459.086785 +2459.115922 +2459.140831 +2459.169702 +2459.192945 +2459.223481 +2459.246891 +2459.300704 +2459.329875 +2459.357347 +2459.382655 +2459.411993 +2459.437434 +2459.462675 +2459.510428 +2459.532938 +2459.583355 +2459.608230 +2459.620617 +2459.671000 +2459.696408 +2459.729408 +2459.755183 +2459.784353 +2459.812292 +2459.840397 +2459.871566 +2459.897906 +2459.923148 +2459.956015 +2459.983787 +2460.011992 +2460.042495 +2460.066271 +2460.094942 +2460.150820 +2460.214556 +2460.242528 +2460.273697 +2460.301935 +2460.330773 +2460.359245 +2460.389015 +2460.419784 +2460.448955 +2460.484120 +2460.513690 +2460.541995 +2460.573730 +2460.606730 +2460.638865 +2460.671532 +2460.699804 +2460.728641 +2460.758911 +2460.791412 +2460.820183 +2460.850320 +2460.883919 +2460.920017 +2460.944559 +2461.001169 +2461.026377 +2461.053150 +2461.082620 +2461.089913 +2461.125278 +2461.157279 +2461.175894 +2461.212124 +2461.226776 +2461.259077 +2461.282221 +2461.324978 +2461.363006 +2461.398171 +2461.435467 +2461.466736 +2461.499570 +2461.526576 +2461.596273 +2461.657711 +2463.521845 +2463.712421 +2463.954579 +2464.035997 +2464.081585 +2464.118348 +2464.199567 +2464.228238 +2464.275025 +2464.325374 +2464.427972 +2464.532567 +2464.659607 +2464.728005 +2465.007025 +2465.067032 +2465.101597 +2465.141557 +2465.277088 +2465.312586 +2465.359040 +2465.417947 +2466.294337 +2466.297367 +2466.299965 +2466.303661 +2466.570960 +2466.573524 +2466.575855 +2466.578919 +2466.791173 +2466.793704 +2466.795868 +2466.798765 +2466.967796 +2466.970027 +2466.972125 +2466.974489 +2466.978552 +2467.157739 +2467.160037 +2467.162035 +2467.164433 +2467.168395 +2467.301962 +2467.304359 +2467.306557 +2467.308821 +2467.313350 +2467.443420 +2467.445751 +2467.447982 +2467.450613 +2467.455674 +2467.607622 +2467.610286 +2467.612517 +2467.615614 +2467.759237 +2467.761934 +2467.768062 +2467.885444 +2467.888175 +2467.890739 +2467.894002 +2468.020009 +2468.026570 +2468.123006 +2468.131365 +2468.227002 +2468.233496 +2468.241055 +2468.302194 +2468.313083 +2468.335194 +2468.373755 +2468.394901 +2468.451511 +2468.478484 +2468.506689 +2468.528567 +2468.573289 +2468.600329 +2468.630965 +2468.689373 +2468.714980 +2468.743918 +2468.772656 +2468.805823 +2468.832663 +2468.866196 +2468.908320 +2468.951177 +2468.985743 +2468.987641 +2469.012183 +2469.051544 +2469.089339 +2469.163198 +2469.203691 +2469.237025 +2469.277318 +2469.311017 +2469.352975 +2469.397597 +2469.472522 +2469.516911 +2469.560234 +2469.601293 +2469.645283 +2469.684177 +2469.731896 +2469.775852 +2469.819109 +2469.864896 +2469.911150 +2469.947746 +2470.001859 +2470.048113 +2470.084976 +2470.154872 +2470.219175 +2470.275319 +2470.327366 +2470.453074 +2470.491569 +2470.537123 +2470.600193 +2470.658535 +2470.718342 +2470.765128 +2470.857869 +2470.927932 +2471.006587 +2471.078215 +2471.138788 +2471.185308 +2471.315977 +2471.361565 +2471.595830 +2471.698627 +2471.796329 +2471.839420 +2471.874151 +2471.911048 +2472.049043 +2472.125333 +2472.189336 +2472.230628 +2472.323735 +2472.364794 +2472.442316 +2472.476349 +2472.513345 +2472.544381 +2472.904653 +2472.909582 +2472.915442 +2473.015143 +2473.023268 +2473.101723 +2473.128063 +2473.227297 +2473.458865 +2473.503754 +2473.664526 +2473.780543 +2473.831059 +2474.044945 +2474.068155 +2474.268621 +2474.277279 +2474.565757 +2474.576213 +2474.741248 +2474.945211 +2474.983273 +2475.074581 +2475.132323 +2475.169220 +2475.316905 +2475.370019 +2475.432589 +2475.473615 +2476.490764 +2476.500454 +2476.859361 +2476.863490 +2476.867453 +2476.945009 +2476.960194 +2476.970550 +2477.068685 +2477.079574 +2477.191296 +2477.198355 +2477.207180 +2477.306214 +2477.347806 +2477.415371 +2477.426926 +2477.494326 +2477.524895 +2477.559860 +2477.606946 +2477.642677 +2477.663656 +2477.714206 +2477.760459 +2477.823296 +2477.934751 +2477.993792 +2478.013906 +2478.129590 +2478.166952 +2478.174345 +2478.227458 +2478.255997 +2478.293259 +2478.349703 +2478.398287 +2478.448437 +2478.482070 +2478.561391 +2478.615936 +2478.712207 +2478.758960 +2478.789496 +2478.840145 +2478.884701 +2478.920265 +2478.964754 +2478.995756 +2479.048870 +2479.092526 +2479.267651 +2479.375243 +2479.429522 +2479.507311 +2479.548236 +2479.590694 +2479.644040 +2479.683867 +2479.734017 +2479.774943 +2479.838146 +2479.882435 +2479.926491 +2479.989994 +2480.034217 +2480.084599 +2480.114736 +2480.191459 +2480.245938 +2480.320730 +2480.394489 +2480.442475 +2480.478339 +2480.509974 +2480.569114 +2480.610107 +2480.690659 +2480.740609 +2480.807343 +2480.855161 +2480.897652 +2481.008108 +2481.104878 +2481.152697 +2481.198484 +2481.244272 +2481.297119 +2481.374142 +2481.424125 +2481.477738 +2481.604844 +2481.658624 +2481.691691 +2481.716366 +2481.785630 +2481.804944 +2481.839543 +2482.011371 +2482.072776 +2482.127022 +2482.209939 +2482.273309 +2482.300981 +2482.353029 +2482.441740 +2482.507008 +2482.552662 +2482.581966 +2482.636445 +2482.679635 +2482.712702 +2482.801014 +2482.900114 +2482.943438 +2482.989125 +2483.075739 +2483.127720 +2483.199215 +2483.254260 +2483.429584 +2483.533913 +2483.634246 +2483.743737 +2483.746034 +2484.431881 +2484.434079 +2484.436610 +2484.444602 +2484.565381 +2484.567945 +2484.570343 +2484.573839 +2484.738641 +2484.743602 +2484.746666 +2484.892420 +2484.895317 +2484.901711 +2485.027219 +2485.030349 +2485.033179 +2485.037408 +2485.150861 +2485.154125 +2485.156955 +2485.161784 +2485.258853 +2485.262616 +2485.266546 +2485.273006 +2485.356589 +2485.361517 +2485.366779 +2485.391654 +2485.433345 +2485.448364 +2485.468111 +2485.490521 +2485.512566 +2485.533212 +2485.554091 +2485.576102 +2485.598980 +2485.618826 +2485.642669 +2485.666046 +2485.686026 +2485.721757 +2485.745599 +2485.764314 +2485.787291 +2485.810768 +2485.831081 +2485.851094 +2485.872040 +2485.895283 +2485.918460 +2485.941270 +2485.957654 +2485.985060 +2486.005539 +2486.035343 +2486.061383 +2486.087191 +2486.112066 +2486.138939 +2486.159419 +2486.182862 +2486.207004 +2486.232212 +2486.259618 +2486.283128 +2486.309202 +2486.333877 +2486.360684 +2486.384760 +2486.409901 +2486.433511 +2486.457687 +2486.479332 +2486.503774 +2486.527983 +2486.555988 +2486.581463 +2486.607603 +2486.633144 +2486.659485 +2486.684193 +2486.710767 +2486.733511 +2486.758019 +2486.784759 +2486.811932 +2486.841303 +2486.867743 +2486.893417 +2486.919258 +2486.945099 +2486.969574 +2486.997113 +2487.051392 +2487.078465 +2487.107137 +2487.135541 +2487.160983 +2487.189321 +2487.216127 +2487.240370 +2487.265844 +2487.294482 +2487.321089 +2487.345298 +2487.403973 +2487.430246 +2487.459983 +2487.483626 +2487.513763 +2487.544399 +2487.574868 +2487.602674 +2487.629281 +2487.655321 +2487.685791 +2487.710965 +2487.770239 +2487.804205 +2487.833643 +2487.865045 +2487.892217 +2487.920789 +2487.950026 +2487.977998 +2488.034408 +2488.061082 +2488.086456 +2488.114661 +2488.170938 +2488.201208 +2488.228281 +2488.256986 +2488.286156 +2488.342100 +2488.373735 +2488.402640 +2488.433775 +2488.463978 +2488.493116 +2488.520855 +2488.549926 +2488.576566 +2488.606169 +2488.634674 +2488.665210 +2488.692683 +2488.719789 +2488.749526 +2488.782160 +2488.815660 +2488.844997 +2488.906935 +2488.965277 +2489.025849 +2489.062979 +2489.092016 +2489.130644 +2489.166242 +2489.204404 +2489.241100 +2489.269539 +2489.294514 +2489.331244 +2489.354487 +2489.392249 +2489.426315 +2489.463245 +2489.494114 +2489.522319 +2489.554354 +2489.584324 +2489.615825 +2489.650191 +2489.674567 +2489.707667 +2489.735539 +2489.763644 +2489.792948 +2489.824816 +2489.856784 +2489.889352 +2489.921719 +2489.947793 +2489.979595 +2490.009764 +2490.040367 +2490.072835 +2490.109132 +2490.134939 +2490.165142 +2490.229544 +2490.261446 +2490.291982 +2490.325981 +2490.354686 +2490.387420 +2490.418489 +2490.447892 +2490.478595 +2490.536937 +2490.562111 +2490.592481 +2490.625515 +2490.657283 +2490.690783 +2490.725748 +2490.759880 +2490.790450 +2490.827113 +2490.863143 +2490.900606 +2490.936637 +2490.974865 +2491.011195 +2491.112760 +2491.171768 +2491.205667 +2491.238601 +2491.265341 +2491.331541 +2491.364275 +2491.397042 +2491.434405 +2491.469670 +2491.508631 +2491.543030 +2491.574565 +2491.601771 +2491.630742 +2491.695011 +2491.720951 +2491.757382 +2491.793046 +2491.824115 +2491.886586 +2491.950255 +2491.982157 +2492.045460 +2492.073732 +2492.139033 +2492.171534 +2492.206266 +2492.265573 +2492.296975 +2492.327877 +2492.357514 +2492.388550 +2492.417687 +2492.451687 +2492.483422 +2492.515390 +2492.577094 +2492.607331 +2492.636901 +2492.666838 +2492.700871 +2492.730108 +2492.757148 +2492.788150 +2492.821550 +2492.851819 +2492.878726 +2492.907297 +2492.955649 +2492.984320 +2493.052419 +2493.082622 +2493.110760 +2493.139365 +2493.169002 +2493.199372 +2493.233437 +2493.264606 +2493.292678 +2493.353184 +2493.383521 +2493.419285 +2493.451053 +2493.479258 +2493.512491 +2493.547024 +2493.577893 +2493.610194 +2493.678925 +2493.747323 +2493.813057 +2493.881289 +2493.914023 +2493.948955 +2494.015088 +2494.045325 +2494.115721 +2494.154282 +2494.189048 +2494.218385 +2494.282654 +2494.315987 +2494.349720 +2494.381755 +2494.415454 +2494.495308 +2494.559210 +2494.592011 +2494.627309 +2494.661142 +2494.699170 +2494.807995 +2494.839030 +2494.871531 +2494.911091 +2494.945823 +2494.975760 +2495.001867 +2495.030206 +2495.056379 +2495.092243 +2495.128241 +2495.158177 +2495.193475 +2495.221581 +2495.259942 +2495.297238 +2495.331138 +2495.364970 +2495.435899 +2495.471630 +2495.502832 +2495.535067 +2495.570132 +2495.599336 +2495.635500 +2495.671031 +2495.706662 +2495.775659 +2495.817684 +2495.852782 +2495.886215 +2495.916518 +2495.949952 +2495.983285 +2496.020314 +2496.111523 +2496.144390 +2496.176425 +2496.207760 +2496.239795 +2496.273161 +2496.309225 +2496.341793 +2496.401932 +2496.432302 +2496.461773 +2496.488712 +2496.522279 +2496.555445 +2496.621146 +2496.645089 +2496.676458 +2496.705462 +2496.726607 +2496.753780 +2496.791276 +2496.820247 +2496.853547 +2496.914619 +2496.941892 +2497.040493 +2497.094972 +2497.153613 +2497.184050 +2497.222411 +2497.253580 +2497.297836 +2497.332934 +2497.370430 +2497.449084 +2497.478721 +2497.539993 +2497.588878 +2497.702431 +2497.756976 +2497.790809 +2497.830436 +2497.869330 +2497.946486 +2497.986113 +2498.020546 +2498.056476 +2498.097169 +2498.135064 +2498.168531 +2498.209024 +2498.247385 +2498.281151 +2498.307159 +2498.331701 +2498.367365 +2498.411121 +2498.497501 +2498.504827 +2498.513086 +2498.556176 +2498.600498 +2498.637095 +2498.672526 +2498.711887 +2498.745886 +2498.784747 +2498.825806 +2498.862203 +2498.905826 +2498.945719 +2499.019645 +2499.087011 +2499.119146 +2499.146185 +2499.176122 +2499.204194 +2499.235896 +2499.305692 +2499.340424 +2499.382249 +2499.423641 +2499.456375 +2499.494270 +2499.529202 +2499.565099 +2499.694870 +2499.737227 +2499.779218 +2499.813018 +2499.851346 +2499.929435 +2500.016481 +2500.058406 +2500.107357 +2500.147450 +2500.185412 +2500.223474 +2500.257606 +2500.291939 +2500.329101 +2500.363567 +2500.403260 +2500.441023 +2500.487276 +2500.525605 +2500.562568 +2500.613716 +2500.655008 +2500.738059 +2500.780117 +2500.821642 +2500.855441 +2500.893969 +2500.964998 +2501.007056 +2501.078451 +2501.111152 +2501.139091 +2501.170626 +2501.199597 +2501.228468 +2501.294468 +2501.341255 +2501.374255 +2501.419044 +2501.460968 +2501.508188 +2501.575953 +2501.591005 +2501.621841 +2501.646083 +2501.707988 +2501.726170 +2501.763332 +2501.804924 +2501.857771 +2501.900329 +2501.945583 +2501.982047 +2502.064198 +2502.081880 +2502.105823 +2502.156705 +2502.187874 +2502.223505 +2502.265063 +2502.369292 +2502.416845 +2502.507055 +2502.549745 +2502.593501 +2502.625636 +2502.661200 +2502.810784 +2502.858270 +2502.905589 +2502.947380 +2502.993301 +2503.039155 +2503.070757 +2503.102725 +2503.140687 +2503.187640 +2503.368026 +2503.479215 +2503.532128 +2503.578682 +2503.620607 +2503.674486 +2503.733227 +2503.843250 +2503.928265 +2504.071555 +2504.145248 +2504.217476 +2504.282444 +2504.355538 +2504.421805 +2504.511748 +2504.648478 +2504.720705 +2504.771821 +2504.840552 +2504.917941 +2504.995630 +2505.065161 +2505.119839 +2505.168690 +2505.222903 +2505.339353 +2505.386472 +2505.517375 +2505.590268 +2505.667624 +2505.780012 +2505.865593 +2505.947577 +2506.021636 +2506.083275 +2506.100524 +2506.137887 +2506.268689 +2506.325832 +2506.423900 +2506.492432 +2506.539984 +2506.641283 +2506.684639 +2506.724899 +2506.750673 +2506.772851 +2506.803487 +2506.828262 +2506.861562 +2506.891666 +2506.966391 +2507.012145 +2507.041149 +2507.063793 +2507.087003 +2507.116141 +2507.121336 +2507.152604 +2507.264559 +2507.301655 +2507.355202 +2507.412777 +2507.462061 +2507.523933 +2507.588635 +2507.634455 +2507.672317 +2507.725264 +2507.805517 +2507.864392 +2508.076213 +2508.204918 +2508.261428 +2508.381774 +2508.502353 +2508.532423 +2508.634354 +2508.722133 +2508.794028 +2508.841247 +2508.918070 +2508.953935 +2509.021300 +2509.120967 +2509.174847 +2509.239049 +2509.289132 +2509.337950 +2509.400721 +2509.495226 +2509.564257 +2509.685436 +2509.751270 +2509.829824 +2509.920634 +2510.146341 +2510.210011 +2510.287033 +2510.341079 +2510.359927 +2510.384003 +2510.453733 +2510.652235 +2510.790829 +2510.815804 +2510.830456 +2510.862790 +2510.891695 +2510.929057 +2511.182171 +2511.274678 +2511.483802 +2511.948570 +2511.969449 +2511.971880 +2511.974578 +2511.977508 +2511.986532 +2512.132220 +2512.137981 +2512.144707 +2513.123261 +2513.129322 +2513.279272 +2513.299618 +2513.554829 +2513.597986 +2513.693890 +2513.752098 +2513.813071 +2513.949168 +2514.051299 +2514.102148 +2514.146270 +2514.202314 +2514.324991 +2514.357559 +2514.389061 +2514.460023 +2514.497119 +2514.621495 +2514.664385 +2514.723326 +2514.770545 +2514.839410 +2514.902946 +2514.982400 +2515.039077 +2515.096120 +2515.241940 +2515.300915 +2515.348234 +2515.395919 +2515.440874 +2515.494521 +2515.553628 +2515.638776 +2515.672143 +2515.713169 +2515.743505 +2515.771477 +2515.830851 +2515.887461 +2515.945969 +2516.016332 +2516.073408 +2516.122426 +2516.225589 +2516.276172 +2516.334114 +2516.367713 +2516.378869 +2516.490590 +2516.539475 +2516.592122 +2516.642272 +2516.727253 +2516.763217 +2516.809971 +2516.873807 +2516.923590 +2516.957157 +2517.015998 +2517.066780 +2517.113034 +2517.167812 +2517.209937 +2517.256624 +2517.288858 +2517.327819 +2517.367279 +2517.399880 +2517.431049 +2517.460886 +2517.497016 +2517.536210 +2517.593553 +2517.652660 +2517.701445 +2517.752960 +2517.785994 +2517.820559 +2517.868145 +2517.916729 +2517.969610 +2518.017162 +2518.059120 +2518.092820 +2518.130116 +2518.174904 +2518.212667 +2518.245467 +2518.292220 +2518.345833 +2518.380166 +2518.476236 +2518.568311 +2518.621591 +2518.670508 +2518.738207 +2518.767178 +2518.802110 +2518.924920 +2518.981564 +2519.106272 +2519.163981 +2519.213265 +2519.277168 +2519.323521 +2519.368843 +2519.415263 +2519.447131 +2519.487391 +2519.529848 +2519.574270 +2519.622322 +2519.667444 +2519.703940 +2519.739105 +2519.794450 +2519.840071 +2519.880097 +2519.920857 +2519.969275 +2520.053357 +2520.085359 +2520.118226 +2520.152991 +2520.191919 +2520.215428 +2520.241436 +2520.297313 +2520.349761 +2520.400909 +2520.440969 +2520.497979 +2520.544632 +2520.587889 +2520.631345 +2520.679131 +2520.729114 +2520.773603 +2520.817159 +2520.852457 +2520.884226 +2520.922188 +2520.975334 +2521.031312 +2521.085890 +2521.132843 +2521.185524 +2521.281095 +2521.323553 +2521.361681 +2521.431544 +2521.469573 +2521.514561 +2521.572437 +2521.660582 +2521.748527 +2521.798744 +2521.840835 +2521.868807 +2521.925017 +2522.011930 +2522.046462 +2522.079696 +2522.107301 +2522.136838 +2522.172403 +2522.292882 +2522.364044 +2522.431277 +2522.501007 +2522.685622 +2523.932208 +2523.937636 +2523.948791 +2524.130343 +2524.134938 +2524.321685 +2524.326846 +2524.332441 +2524.566440 +2524.580059 +2524.749357 +2524.872567 +2524.949290 +2525.099706 +2525.274864 +2525.384321 +2525.494111 +2526.543994 +2526.548656 +2526.553651 +2527.003367 +2527.007230 +2527.249754 +2527.259777 +2527.612557 +2527.843193 +2527.904498 +2528.006263 +2528.107795 +2528.399236 +2528.541960 +2528.607828 +2528.992776 +2531.075857 +2531.362670 +2531.370129 +2531.712653 +2531.723942 +2541.515207 +2541.518604 +2541.520469 +2541.522533 +2541.784504 +2541.786502 +2541.788667 +2542.015340 +2542.018404 +2542.020735 +2542.024131 +2542.178477 +2542.190398 +2542.338217 +2542.341480 +2542.344810 +2542.464690 +2542.469286 +2542.474680 +2542.573515 +2542.704484 +2542.780141 +2543.000720 +2543.035519 +2543.108945 +2543.162558 +2543.253301 +2543.342179 +2543.377643 +2543.540247 +2543.700653 +2543.761958 +2543.846107 +2544.052368 +2544.220499 +2544.356330 +2544.670016 +2544.950802 +2545.210775 +2545.435283 +2545.477674 +2545.860591 +2546.262655 +2546.426691 +2546.554763 +2546.962122 +2546.969947 +2546.974210 +2546.976840 +2547.077506 +2547.080770 +2547.083167 +2547.086963 +2547.135315 +2547.143707 +2550.511968 +2550.514366 +2550.516530 +2550.518961 +2550.523523 +2552.403941 +2552.406372 +2552.408270 +2552.410568 +2552.414697 +2552.497914 +2552.500345 +2552.502476 +2552.504540 +2552.508570 +2552.618626 +2552.621157 +2552.626152 +2552.975635 +2552.978000 +2552.980198 +2552.983261 +2554.329247 +2554.331878 +2554.334275 +2554.338638 +2554.488554 +2554.491618 +2554.494016 +2554.496746 +2554.684059 +2554.686756 +2554.689420 +2554.698944 +2554.952623 +2554.955221 +2554.957252 +2554.960449 +2555.080928 +2555.084125 +2555.086989 +2555.092550 +2555.355986 +2555.359682 +2555.362879 +2555.543798 +2555.548560 +2555.554387 +2555.728546 +2555.734474 +2555.742699 +2555.889685 +2555.897777 +2555.920055 +2556.005702 +2556.022452 +2556.076798 +2556.145496 +2556.198143 +2556.247261 +2556.289585 +2556.329312 +2556.357517 +2556.403804 +2556.450590 +2556.476032 +2556.512395 +2556.555419 +2556.613860 +2556.656251 +2556.713327 +2556.789052 +2556.836038 +2556.893447 +2556.930810 +2556.969804 +2557.007266 +2557.033474 +2557.071535 +2557.090849 +2557.218655 +2557.296177 +2557.374898 +2557.433773 +2557.488751 +2557.600240 +2557.680326 +2557.726746 +2557.776430 +2557.825148 +2558.045660 +2558.160778 +2558.267538 +2558.336569 +2558.421418 +2558.472533 +2558.531174 +2558.585820 +2558.617987 +2558.648623 +2558.675896 +2558.704667 +2558.709363 +2558.720618 +2558.766605 +2558.810428 +2558.982789 +2559.041397 +2559.096575 +2559.140231 +2559.165806 +2559.200171 +2559.294444 +2559.481390 +2559.587783 +2559.691912 +2559.786285 +2559.851186 +2559.924446 +2560.011259 +2560.058712 +2560.084486 +2560.123081 +2560.175928 +2560.509727 +2560.520616 +2560.572697 +2560.609228 +2560.659477 +2560.716054 +2560.747090 +2560.795341 +2560.959277 +2561.014622 +2561.080123 +2561.110426 +2561.165338 +2561.190945 +2561.323313 +2561.370332 +2561.416719 +2561.613322 +2561.681388 +2561.744891 +2561.809826 +2561.890279 +2561.970532 +2562.040462 +2562.101034 +2562.160441 +2562.204397 +2562.258010 +2562.336832 +2562.395440 +2562.470265 +2562.580621 +2562.614287 +2562.747720 +2562.790611 +2562.844024 +2562.973461 +2563.208959 +2563.284516 +2563.317583 +2563.381419 +2563.414786 +2563.503097 +2563.570097 +2563.631369 +2563.689011 +2563.734299 +2563.767366 +2563.901066 +2564.004895 +2564.110090 +2564.171861 +2564.375990 +2564.514818 +2564.603429 +2564.621145 +2564.708125 +2564.757076 +2565.096569 +2565.126373 +2565.228737 +2565.265700 +2565.341557 +2565.415417 +2565.506425 +2565.539259 +2565.593405 +2565.679685 +2565.776455 +2565.848017 +2565.926838 +2566.026005 +2566.107091 +2566.177620 +2566.246385 +2566.331999 +2566.403994 +2566.448516 +2566.490207 +2566.507324 +2566.529302 +2566.635928 +2566.709122 +2566.809987 +2566.871825 +2566.920577 +2567.019844 +2567.166264 +2567.354675 +2567.418978 +2567.510786 +2567.559837 +2567.771258 +2567.873323 +2568.175254 +2568.245883 +2568.284511 +2568.314548 +2568.402526 +2568.527268 +2568.751644 +2568.839722 +2568.888340 +2568.941687 +2569.011883 +2569.092236 +2569.121074 +2569.161067 +2569.222705 +2569.285942 +2569.350711 +2569.423038 +2569.499895 +2569.579715 +2569.666561 +2569.720540 +2569.754207 +2569.832828 +2569.883744 +2570.026168 +2570.084676 +2570.140120 +2570.239954 +2570.310150 +2570.446081 +2570.723636 +2570.759167 +2570.833293 +2570.867559 +2571.137722 +2571.143982 +2571.151408 +2571.456003 +2571.461065 +2571.465660 +2571.600825 +2571.606652 +2571.611348 +2571.910249 +2571.914611 +2571.918807 +2572.106319 +2572.111980 +2572.278813 +2572.282276 +2572.284874 +2572.289336 +2572.505952 +2572.509216 +2572.511913 +2572.516242 +2572.693098 +2572.695796 +2572.699658 +2572.854603 +2572.857667 +2572.860098 +2572.865093 +2573.013478 +2573.016508 +2573.019671 +2573.024100 +2573.121303 +2573.125366 +2573.129029 +2573.135755 +2573.254869 +2573.259931 +2573.265525 +2573.337953 +2573.349075 +2573.378113 +2573.413144 +2573.442715 +2573.469121 +2573.502022 +2573.533291 +2573.561562 +2573.598392 +2573.629061 +2573.658898 +2573.690866 +2573.722435 +2573.754070 +2573.785438 +2573.811778 +2573.836054 +2573.872318 +2573.890167 +2573.908315 +2573.943979 +2573.990733 +2574.017905 +2574.053903 +2574.081742 +2574.111645 +2574.140583 +2574.167656 +2574.202854 +2574.235621 +2574.268022 +2574.304252 +2574.341848 +2574.379943 +2574.418638 +2574.451904 +2574.490333 +2574.533323 +2574.570019 +2574.610279 +2574.648408 +2574.674581 +2574.705284 +2574.733156 +2574.766856 +2574.802886 +2574.837751 +2574.876979 +2574.911578 +2574.943512 +2574.983639 +2575.025164 +2575.064624 +2575.099789 +2575.139683 +2575.248440 +2575.287801 +2575.312110 +2575.355267 +2575.393362 +2575.430525 +2575.470751 +2575.536019 +2575.570918 +2575.604417 +2575.642113 +2575.693728 +2575.731290 +2575.763458 +2575.805050 +2575.850005 +2575.884803 +2575.923465 +2575.965856 +2576.003085 +2576.044444 +2576.086901 +2576.130457 +2576.176645 +2576.225063 +2576.272482 +2576.317770 +2576.399888 +2576.443477 +2576.478842 +2576.514073 +2576.559794 +2576.596624 +2576.641379 +2576.670017 +2576.743610 +2576.766887 +2576.795192 +2576.821432 +2576.841346 +2576.866854 +2576.929757 +2576.953933 +2576.958728 +2576.995825 +2577.033354 +2577.075911 +2577.118635 +2577.151069 +2577.181239 +2577.235118 +2577.286201 +2577.309943 +2577.351469 +2577.441345 +2577.554532 +2577.598155 +2577.659793 +2577.715771 +2577.754232 +2577.887732 +2577.942843 +2577.985501 +2578.028824 +2578.065454 +2578.145674 +2578.168551 +2578.184568 +2578.211774 +2578.227658 +2578.246273 +2578.274411 +2578.341411 +2578.369316 +2578.380505 +2578.779439 +2578.785633 +2578.804780 +2579.012939 +2579.024527 +2579.047438 +2579.059226 +2579.122795 +2579.134617 +2579.168117 +2579.236348 +2579.257128 +2579.278073 +2579.296954 +2579.350734 +2579.386731 +2579.632052 +2579.738146 +2579.805945 +2579.815902 +2579.837613 +2579.869681 +2579.924393 +2579.979971 +2580.059558 +2580.067783 +2580.123061 +2580.215735 +2580.285099 +2580.566450 +2580.625491 +2580.672078 +2580.700849 +2580.765917 +2580.808108 +2581.104279 +2581.121195 +2581.549766 +2581.558924 +2581.621095 +2581.693422 +2581.702014 +2581.704078 +2581.710905 +2581.789193 +2582.047068 +2582.062253 +2582.086162 +2582.252529 +2582.270844 +2582.312203 +2582.323392 +2582.326888 +2582.373908 +2582.395952 +2582.442539 +2582.519162 +2582.562286 +2582.583565 +2582.641507 +2582.720194 +2582.756691 +2582.941639 +2583.084696 +2583.097017 +2583.161786 +2583.536777 +2583.540607 +2583.543770 +2583.548365 +2583.878169 +2583.881532 +2584.096650 +2584.100080 +2584.102711 +2584.106140 +2584.218128 +2584.224022 +2584.305374 +2584.312168 +2584.315531 +2584.318728 +2584.322890 +2584.425621 +2584.429017 +2584.432880 +2584.633046 +2584.636043 +2584.638607 +2584.798081 +2584.803875 +2584.808138 +2584.931181 +2584.934445 +2584.937375 +2584.941804 +2585.045001 +2585.048963 +2585.053059 +2585.065114 +2585.152493 +2585.156855 +2585.162983 +2585.202043 +2585.243668 +2585.268643 +2585.289656 +2585.326852 +2585.344201 +2585.391454 +2585.408304 +2585.427784 +2585.463149 +2585.487924 +2585.523488 +2585.549929 +2585.580498 +2585.616895 +2585.644600 +2585.675270 +2585.706871 +2585.738040 +2585.767744 +2585.803908 +2585.833345 +2585.865180 +2585.896681 +2585.929415 +2585.959618 +2585.988889 +2586.013564 +2586.041037 +2586.077634 +2586.103907 +2586.138972 +2586.170641 +2586.206804 +2586.243701 +2586.278166 +2586.308003 +2586.340504 +2586.373737 +2586.413631 +2586.448662 +2586.479864 +2586.518059 +2586.547330 +2586.581729 +2586.605938 +2586.670507 +2586.734509 +2586.769941 +2586.794383 +2586.813097 +2586.860417 +2586.887723 +2586.920756 +2586.960050 +2586.992551 +2587.028215 +2587.073470 +2587.114995 +2587.148562 +2587.208602 +2587.249927 +2587.299744 +2587.348828 +2587.397313 +2587.447729 +2587.484392 +2587.597745 +2587.640869 +2587.680096 +2587.715095 +2587.749527 +2587.784325 +2587.819657 +2587.867842 +2587.916693 +2587.944365 +2587.994015 +2588.062247 +2588.123719 +2588.167708 +2588.222220 +2588.270339 +2588.324784 +2588.375600 +2588.425250 +2588.473835 +2588.528281 +2588.560915 +2588.614694 +2588.664910 +2588.709899 +2588.765210 +2588.792982 +2588.838270 +2588.852722 +2588.897478 +2588.955686 +2588.985123 +2589.029079 +2589.067674 +2589.170471 +2589.280161 +2589.330211 +2589.381626 +2589.442266 +2589.517657 +2589.588386 +2589.654453 +2589.728779 +2589.787720 +2589.846494 +2589.913128 +2589.956384 +2590.014892 +2590.069038 +2590.131043 +2590.182991 +2590.243397 +2590.352355 +2590.411529 +2590.459547 +2590.489551 +2590.543197 +2590.599307 +2590.638868 +2590.687419 +2590.767539 +2590.823749 +2590.868505 +2590.939067 +2590.999673 +2591.074498 +2591.140299 +2591.243463 +2591.295710 +2591.386986 +2591.448857 +2591.527012 +2591.615024 +2591.679593 +2591.731441 +2591.809363 +2591.874431 +2592.080258 +2592.169236 +2592.266905 +2592.347025 +2592.569635 +2592.667670 +2592.839598 +2592.916754 +2592.958346 +2593.042395 +2593.053517 +2593.089981 +2593.277060 +2593.287816 +2593.463507 +2593.617320 +2593.682621 +2593.735468 +2593.827210 +2593.880323 +2594.066903 +2594.127809 +2594.181055 +2594.380955 +2594.528741 +2594.699270 +2594.749420 +2594.852783 +2594.880156 +2595.003632 +2595.110758 +2595.169566 +2595.248454 +2595.325943 +2595.384384 +2595.491277 +2595.563838 +2596.307094 +2596.309758 +2596.311856 +2596.314753 +2596.594140 +2596.596438 +2596.598502 +2596.600933 +2596.606394 +2596.841792 +2596.844023 +2596.845988 +2596.848885 +2597.060074 +2597.062405 +2597.064469 +2597.067366 +2597.228905 +2597.231102 +2597.235831 +2597.399467 +2597.401998 +2597.404362 +2597.407659 +2597.547153 +2597.549883 +2597.552148 +2597.555444 +2597.676323 +2597.679587 +2597.682084 +2597.787179 +2597.790842 +2597.794205 +2597.800199 +2597.886580 +2597.891275 +2597.895837 +2597.907392 +2598.001664 +2598.006493 +2598.012320 +2598.058075 +2598.074092 +2598.101032 +2598.123476 +2598.142956 +2598.167831 +2598.187445 +2598.206926 +2598.243023 +2598.270196 +2598.324774 +2598.350515 +2598.376256 +2598.405593 +2598.433399 +2598.462836 +2598.488977 +2598.516482 +2598.541524 +2598.567398 +2598.593006 +2598.618380 +2598.648583 +2598.675490 +2598.731234 +2598.760971 +2598.787811 +2598.817481 +2598.849382 +2598.879186 +2598.908090 +2598.937394 +2598.959872 +2598.991940 +2599.014184 +2599.049515 +2599.081783 +2599.108623 +2599.139092 +2599.167830 +2599.197201 +2599.226538 +2599.253145 +2599.277887 +2599.312219 +2599.347584 +2599.382449 +2599.422475 +2599.455476 +2599.494403 +2599.542722 +2599.563334 +2599.594537 +2599.623607 +2599.656641 +2599.689675 +2599.727603 +2599.770327 +2599.852545 +2599.888675 +2599.927736 +2599.961436 +2600.000663 +2600.036627 +2600.072258 +2600.108855 +2600.144486 +2600.182348 +2600.228069 +2600.265532 +2600.266364 +2600.307423 +2600.343953 +2600.382614 +2600.418945 +2600.458405 +2600.528202 +2600.563766 +2600.595934 +2600.634262 +2600.668561 +2600.752644 +2600.798165 +2600.840822 +2600.887509 +2600.935294 +2600.969593 +2601.010686 +2601.058105 +2601.083812 +2601.130299 +2601.176320 +2601.250346 +2601.289507 +2601.291238 +2601.298098 +2601.336826 +2601.377652 +2601.410452 +2601.485510 +2601.561767 +2601.634495 +2601.681181 +2601.739723 +2601.832130 +2601.927368 +2601.978683 +2602.032696 +2602.129765 +2602.194734 +2602.233062 +2602.275553 +2602.309719 +2602.327834 +2602.397131 +2602.440921 +2602.471890 +2602.500428 +2602.546049 +2602.595832 +2602.621207 +2602.656805 +2602.700061 +2602.753541 +2602.861500 +2602.896098 +2602.929065 +2602.972822 +2603.046481 +2603.084676 +2603.395132 +2603.412248 +2603.441985 +2603.527566 +2603.653773 +2603.702558 +2603.747080 +2603.996464 +2604.048178 +2604.566826 +2604.570023 +2604.572620 +2604.576150 +2604.735257 +2604.738188 +2604.740552 +2604.743949 +2604.903755 +2604.907119 +2604.909616 +2604.910515 +2604.911814 +2604.914478 +2605.172386 +2605.174751 +2605.177115 +2605.180045 +2605.403222 +2605.406152 +2605.408317 +2605.411147 +2605.417375 +2605.526832 +2605.529396 +2605.531660 +2605.544847 +2605.654637 +2605.657501 +2605.660198 +2605.662662 +2605.844647 +2605.847444 +2605.850008 +2605.853938 +2606.013977 +2606.016941 +2606.019572 +2606.023501 +2606.150874 +2606.153771 +2606.156335 +2606.160064 +2606.299591 +2606.302822 +2606.305419 +2606.309049 +2606.436255 +2606.439551 +2606.442548 +2606.446145 +2606.529861 +2606.535056 +2606.538019 +2606.561429 +2606.577247 +2606.604886 +2606.613710 +2606.639917 +2606.653970 +2606.682442 +2606.698059 +2606.715975 +2606.737720 +2606.778212 +2606.817273 +2606.851006 +2606.875115 +2606.901189 +2606.934289 +2606.974483 +2607.011446 +2607.045278 +2607.078245 +2607.113677 +2607.147476 +2607.184506 +2607.213077 +2607.235721 +2607.285271 +2607.309680 +2607.339883 +2607.356334 +2607.380842 +2607.399557 +2607.419637 +2607.430493 +2607.455368 +2607.476080 +2607.492797 +2607.510180 +2607.543513 +2607.592064 +2607.610279 +2607.652737 +2607.678711 +2607.714442 +2607.748175 +2607.809846 +2607.840316 +2607.894928 +2607.937585 +2607.973016 +2608.010146 +2608.047941 +2608.085404 +2608.114441 +2608.149540 +2608.174781 +2608.208281 +2608.238584 +2608.256932 +2608.284305 +2608.343346 +2608.390632 +2608.410745 +2608.450971 +2608.496359 +2608.517638 +2608.554834 +2608.586902 +2608.620535 +2608.660062 +2608.699822 +2608.741414 +2608.781574 +2608.815573 +2608.876079 +2608.936685 +2608.987334 +2609.020634 +2609.050105 +2609.069918 +2609.097358 +2609.130491 +2609.153701 +2609.164490 +2609.189798 +2609.206881 +2609.221966 +2609.245942 +2609.279076 +2609.304750 +2609.320201 +2609.342113 +2609.349472 +2609.376578 +2609.397291 +2609.414707 +2609.451969 +2609.490098 +2609.506481 +2609.526694 +2609.571683 +2609.594094 +2609.713408 +2609.759495 +2609.812975 +2609.855599 +2609.944643 +2609.988399 +2610.027094 +2610.060860 +2610.100620 +2610.143344 +2610.183737 +2610.219867 +2610.251169 +2610.293294 +2610.331522 +2610.371049 +2610.435618 +2610.507080 +2610.525694 +2610.542644 +2610.571216 +2610.595591 +2610.614972 +2610.634252 +2610.695125 +2610.728924 +2610.757562 +2610.785934 +2610.825628 +2610.854332 +2610.891795 +2610.912474 +2610.937582 +2610.957096 +2610.978774 +2610.988897 +2611.056730 +2611.071148 +2611.100952 +2611.195158 +2611.233519 +2611.347072 +2611.408078 +2611.453666 +2611.517968 +2611.616003 +2611.669716 +2611.708078 +2611.728490 +2611.744408 +2611.775177 +2611.805280 +2611.844075 +2611.874344 +2611.913272 +2612.001850 +2612.079606 +2612.183069 +2612.224261 +2612.248736 +2612.382369 +2612.451567 +2612.641477 +2612.687564 +2612.723694 +2612.789662 +2613.036181 +2613.059292 +2613.296787 +2613.310507 +2613.374043 +2613.552298 +2613.573710 +2613.650233 +2613.670713 +2613.709874 +2613.738046 +2613.803513 +2613.907176 +2614.085464 +2614.198751 +2614.282401 +2614.310439 +2614.579037 +2614.587295 +2614.818064 +2614.825990 +2615.068947 +2615.075340 +2615.084664 +2615.254694 +2615.460388 +2615.465050 +2615.489592 +2615.524957 +2615.536445 +2615.562852 +2615.773941 +2615.881267 +2615.989725 +2616.065316 +2616.105243 +2616.165449 +2617.414366 +2617.419793 +2617.422924 +2617.557356 +2617.560586 +2617.564282 +2617.655924 +2617.658654 +2617.662417 +2617.777102 +2617.779900 +2617.782997 +2617.847632 +2617.852294 +2617.856090 +2617.860586 +2618.116596 +2618.122324 +2618.125354 +2618.128384 +2618.136676 +2618.250862 +2618.253759 +2618.256056 +2618.258287 +2618.260419 +2618.357854 +2618.361085 +2618.363815 +2618.366213 +2618.370342 +2618.556589 +2618.559186 +2618.561551 +2618.564414 +2618.571707 +2618.691920 +2618.694484 +2618.696682 +2618.699879 +2618.896382 +2618.899179 +2618.901677 +2618.905506 +2619.079599 +2619.082429 +2619.085027 +2619.088856 +2619.172039 +2619.175536 +2619.178533 +2619.182862 +2619.330381 +2619.333145 +2619.336242 +2619.340038 +2619.466478 +2619.470241 +2619.473305 +2619.479931 +2619.599678 +2619.602875 +2619.610401 +2619.731646 +2619.735009 +2619.738106 +2619.742868 +2619.837873 +2619.842935 +2619.845698 +2619.852991 +2619.936241 +2619.938672 +2619.943567 +2619.955522 +2620.036674 +2620.044499 +2620.101809 +2620.137806 +2620.193484 +2620.234176 +2620.265245 +2620.289887 +2620.317060 +2620.393250 +2620.421955 +2620.442934 +2620.470773 +2620.522987 +2620.563813 +2620.591285 +2620.629048 +2620.643267 +2620.646131 +2620.700909 +2620.732178 +2620.767542 +2620.794848 +2620.836940 +2620.872138 +2620.908967 +2620.943866 +2620.981994 +2621.021422 +2621.052724 +2621.084026 +2621.114528 +2621.138904 +2621.169540 +2621.197878 +2621.237938 +2621.269606 +2621.309866 +2621.343566 +2621.370505 +2621.400742 +2621.440602 +2621.474901 +2621.510032 +2621.574268 +2621.633409 +2621.661281 +2621.682826 +2621.717192 +2621.750225 +2621.774734 +2621.810865 +2621.847228 +2621.879063 +2621.920422 +2621.964078 +2621.995080 +2622.040135 +2622.062679 +2622.093049 +2622.128147 +2622.153155 +2622.223651 +2622.260548 +2622.301707 +2622.339968 +2622.405802 +2622.444963 +2622.489619 +2622.597511 +2622.624350 +2622.727547 +2622.746761 +2622.764543 +2622.780860 +2622.822818 +2622.860347 +2622.932109 +2622.978762 +2623.072402 +2623.114626 +2623.155186 +2623.195312 +2623.232908 +2623.275299 +2623.313960 +2623.351989 +2623.392781 +2623.418289 +2623.459947 +2623.518056 +2623.561146 +2623.597276 +2623.619554 +2623.648825 +2623.675565 +2623.727213 +2623.746560 +2623.755418 +2623.815724 +2623.847359 +2623.895445 +2624.007699 +2624.058148 +2624.148858 +2624.192547 +2624.233673 +2624.273533 +2624.317056 +2624.351022 +2624.389916 +2624.426546 +2624.464608 +2624.501471 +2624.542564 +2624.580292 +2624.611162 +2624.675530 +2624.710229 +2624.744761 +2624.771068 +2624.806966 +2624.891847 +2624.944428 +2624.961444 +2624.986486 +2625.017255 +2625.047658 +2625.081757 +2625.110162 +2625.226845 +2625.319619 +2625.367871 +2625.403402 +2625.449156 +2625.497508 +2625.530441 +2625.566738 +2625.644394 +2625.677394 +2625.724048 +2625.766239 +2625.806998 +2625.846225 +2625.889382 +2625.924813 +2626.033771 +2626.076528 +2626.115456 +2626.194277 +2626.234303 +2626.258113 +2626.275163 +2626.314856 +2626.376295 +2626.394676 +2626.454117 +2626.483288 +2626.514923 +2626.529708 +2626.561809 +2626.594243 +2626.606498 +2626.672298 +2626.704400 +2626.739065 +2626.812525 +2626.880157 +2626.941496 +2626.992445 +2627.042328 +2627.091013 +2627.143493 +2627.194642 +2627.264206 +2627.307929 +2627.397106 +2627.430639 +2627.474062 +2627.516653 +2627.583153 +2627.652384 +2627.704931 +2627.762074 +2627.820782 +2627.867902 +2627.894841 +2627.928574 +2627.966569 +2628.007762 +2628.031871 +2628.093642 +2628.164538 +2628.228907 +2628.264238 +2628.318917 +2628.361241 +2628.460109 +2628.579456 +2628.638763 +2628.725443 +2628.821347 +2628.978157 +2629.069432 +2629.096705 +2629.149818 +2629.211357 +2629.216152 +2629.274793 +2629.282519 +2629.327441 +2630.426341 +2630.428871 +2630.430903 +2630.433167 +2630.436763 +2630.567100 +2630.569164 +2630.571062 +2630.573327 +2630.576857 +2630.741991 +2630.744322 +2630.746354 +2630.748984 +2630.784249 +2630.949583 +2630.951748 +2630.953779 +2630.956410 +2630.965900 +2631.301365 +2631.303829 +2631.305893 +2631.308924 +2631.544588 +2631.547052 +2631.549150 +2631.552047 +2631.558507 +2631.748650 +2631.751015 +2631.753112 +2631.755743 +2631.763336 +2631.879220 +2631.882383 +2631.884614 +2631.886745 +2631.889642 +2631.998667 +2632.000931 +2632.003062 +2632.006392 +2632.062603 +2632.063269 +2632.065500 +2632.069196 +2632.081950 +2632.269695 +2632.272259 +2632.274624 +2632.277854 +2632.398367 +2632.401330 +2632.404061 +2632.407557 +2632.530101 +2632.535596 +2632.539625 +2632.644820 +2632.647883 +2632.655542 +2632.745619 +2632.749981 +2632.754144 +2632.762202 +2632.831433 +2632.838426 +2632.846218 +2632.899798 +2632.912585 +2632.930134 +2632.944420 +2632.988309 +2633.005259 +2633.035495 +2633.089608 +2633.123008 +2633.148782 +2633.182815 +2633.234496 +2633.265632 +2633.286011 +2633.325805 +2633.355475 +2633.385212 +2633.414316 +2633.441689 +2633.469694 +2633.501562 +2633.528768 +2633.560303 +2633.589574 +2633.622741 +2633.715748 +2633.738192 +2633.766763 +2633.804626 +2633.833497 +2633.862867 +2633.890673 +2633.916613 +2633.949447 +2633.976287 +2633.993603 +2634.021076 +2634.033829 +2634.066430 +2634.100563 +2634.131698 +2634.165498 +2634.196833 +2634.281115 +2634.337192 +2634.356107 +2634.378651 +2634.411318 +2634.516213 +2634.545983 +2634.578518 +2634.608821 +2634.651012 +2634.691571 +2634.743752 +2634.787941 +2634.819277 +2634.864864 +2634.908421 +2634.953143 +2634.996999 +2635.038690 +2635.081281 +2635.123206 +2635.164598 +2635.250878 +2635.293901 +2635.314847 +2635.396399 +2635.417977 +2635.471024 +2635.518177 +2635.559935 +2635.644417 +2635.683678 +2635.725703 +2635.770991 +2635.819908 +2635.895566 +2635.952476 +2635.997031 +2636.049079 +2636.106721 +2636.172222 +2636.229898 +2636.291203 +2636.335958 +2636.442085 +2636.483544 +2636.540254 +2636.581812 +2636.603424 +2636.669691 +2636.752874 +2636.791236 +2636.799228 +2636.802092 +2636.980114 +2637.078382 +2637.095265 +2637.134592 +2637.185874 +2637.219208 +2637.316111 +2637.371921 +2637.431828 +2637.480379 +2637.508451 +2637.545847 +2637.559867 +2637.607419 +2637.684675 +2637.689570 +2637.717109 +2638.686772 +2638.691234 +2638.693299 +2638.695596 +2638.698493 +2638.989003 +2638.990435 +2638.994697 +2638.997361 +2639.213811 +2639.619571 +2639.621803 +2639.624500 +2639.629728 +2640.125898 +2640.127963 +2640.131126 +2640.312245 +2640.314676 +2640.316674 +2640.319238 +2640.413810 +2640.728328 +2640.731059 +2640.733090 +2640.736120 +2640.958398 +2640.960762 +2640.963959 +2641.143080 +2641.145677 +2641.148008 +2641.151105 +2641.303486 +2641.306483 +2641.308781 +2641.311678 +2641.418104 +2641.421101 +2641.423666 +2641.427395 +2641.607948 +2641.610645 +2641.613043 +2641.811411 +2641.813742 +2641.816273 +2641.820835 +2642.029259 +2642.032123 +2642.034487 +2642.038217 +2642.228427 +2642.233688 +2642.237384 +2642.377877 +2642.380275 +2642.383005 +2642.386468 +2642.490997 +2642.493661 +2642.497557 +2642.686701 +2642.689232 +2642.692462 +2645.042543 +2645.142010 +2645.210775 +2645.316036 +2645.378773 +2645.502283 +2645.543608 +2645.591460 +2645.650035 +2645.704747 +2645.759259 +2645.799485 +2645.880970 +2645.974111 +2646.040311 +2646.111706 +2646.147537 +2646.201783 +2646.292991 +2646.465186 +2646.517700 +2646.557293 +2646.588296 +2646.671945 +2646.698386 +2646.736514 +2646.752798 +2646.788129 +2646.802282 +2646.823760 +2646.918865 +2646.987097 +2647.060723 +2647.158259 +2647.210773 +2647.277106 +2647.441442 +2647.513170 +2648.209107 +2648.220062 +2648.226223 +2648.657957 +2653.367443 +2653.370740 +2653.372971 +2653.374969 +2653.377433 +2653.524186 +2653.984825 +2654.007136 +2654.009634 +2654.011565 +2654.013829 +2654.017526 +2654.241901 +2654.244166 +2654.246130 +2654.248495 +2654.253023 +2656.751256 +2656.753920 +2656.755818 +2656.757916 +2656.760647 +2657.546194 +2657.548624 +2657.550423 +2657.552387 +2657.554718 +2660.825411 +2660.827942 +2660.829907 +2660.832371 +2660.836999 +2661.058611 +2661.060742 +2661.062640 +2661.064905 +2661.068301 +2662.492742 +2662.494740 +2662.496638 +2662.499236 +2662.990910 +2662.992642 +2662.994540 +2663.244689 +2663.247320 +2663.249251 +2663.251216 +2663.254013 +2664.280186 +2664.282051 +2664.288045 +2664.961138 +2664.963369 +2664.965367 +2664.967731 +2664.971794 +2665.183915 +2665.186879 +2665.188910 +2665.190875 +2665.193405 +2665.493671 +2665.496502 +2665.498533 +2665.506292 +2665.816948 +2665.819345 +2665.821577 +2665.824540 +2666.266831 +2666.322442 +2666.324573 +2666.326671 +2666.330700 +2666.332132 +2666.333664 +2666.394004 +2666.530667 +2666.535362 +2666.537760 +2668.029700 +2668.031731 +2668.033995 +2668.038258 +2669.089206 +2669.091070 +2669.095766 +2669.266661 +2669.269292 +2669.271124 +2669.273088 +2669.276518 +2670.481678 +2670.484009 +2670.485974 +2670.488039 +2670.491002 +2672.999092 +2673.010480 +2674.303786 +2674.306350 +2674.308481 +2675.016972 +2675.417138 +2675.494194 +2675.497957 +2675.503185 +2675.505117 +2675.507081 +2675.509745 +2680.139211 +2680.141342 +2680.143607 +2680.144539 +2680.145472 +2680.150067 +2680.858092 +2680.861288 +2680.863020 +2680.865051 +2680.867083 +2680.870446 +2681.720728 +2681.774508 +2681.783765 +2681.792157 +2681.794488 +2681.796286 +2681.798384 +2681.801347 +2683.806640 +2683.808505 +2683.810503 +2683.813067 +2683.881166 +2685.117095 +2685.122556 +2685.124954 +2685.129250 +2685.135010 +2685.432846 +2685.438573 +2685.440571 +2687.593117 +2687.595747 +2687.599976 +2687.603539 +2687.940835 +2687.946263 +2687.948461 +2687.952923 +2688.027016 +2690.883756 +2691.496376 +2691.932639 +2691.939100 +2692.034338 +2692.611826 +2692.620551 +2692.622382 +2692.624414 +2692.627344 +2694.475327 +2694.477792 +2696.296738 +2696.311123 +2698.707424 +2698.711853 +2698.713785 +2698.716682 +2699.300131 +2699.303028 +2699.307224 +2699.309255 +2699.312053 +2700.154742 +2700.156907 +2700.158971 +2700.161136 +2701.360669 +2701.369426 +2701.371424 +2701.373855 +2701.827435 +2704.049111 +2704.679147 +2705.418573 +2705.425933 +2705.429962 +2705.432759 +2705.785373 +2705.787404 +2705.789402 +2705.791367 +2705.793931 +2707.711145 +2707.916140 +2707.918204 +2709.318236 +2710.210144 +2720.382961 +2720.503939 +2721.601807 +2721.603772 +2721.606136 +2721.690718 +2723.126015 +2723.128312 +2723.130144 +2723.135139 +2723.207233 +2723.212328 +2723.214593 +2723.217523 +2728.931204 +2731.172427 +2732.846218 +2733.601329 +2733.881215 +2733.884146 +2733.886610 +2733.888641 +2733.890839 +2733.894003 +2734.795600 +2734.819510 +2734.885144 +2734.942686 +2734.950478 +2734.975687 +2734.977818 +2734.983146 +2736.371056 +2741.721134 +2741.893895 +2741.895893 +2741.899789 +2741.905084 +2742.477344 +2742.478743 +2742.479142 +2742.483338 +2742.485003 +2742.489632 +2742.913974 +2742.917836 +2742.920933 +2743.214440 +2743.216204 +2743.218236 +2743.221466 +2743.318602 +2743.320633 +2743.322631 +2743.326061 +2743.713706 +2743.716937 +2743.721365 +2743.725062 +2743.977276 +2743.979773 +2743.981705 +2743.984269 +2743.990363 +2744.170716 +2744.173346 +2744.175378 +2744.178441 +2744.328358 +2744.333519 +2744.423030 +2744.426393 +2744.429290 +2744.432887 +2744.603383 +2744.606380 +2744.608877 +2744.612340 +2744.755564 +2744.758128 +2744.762490 +2744.897388 +2744.900885 +2744.904082 +2744.909310 +2745.035983 +2745.039346 +2745.045440 +2745.155630 +2745.159892 +2745.163988 +2745.171247 +2745.264154 +2745.276009 +2745.303115 +2745.346006 +2745.358094 +2745.469449 +2745.500584 +2745.563521 +2745.606112 +2745.618899 +2745.641943 +2745.684700 +2745.747904 +2745.767983 +2745.799918 +2745.827158 +2745.862822 +2745.897254 +2745.930154 +2745.962222 +2746.006145 +2746.039412 +2746.074077 +2746.109875 +2746.142608 +2746.176674 +2746.206345 +2746.233184 +2746.266551 +2746.298819 +2746.327723 +2746.355828 +2746.394556 +2746.425792 +2746.456894 +2746.519864 +2746.548669 +2746.619964 +2746.652598 +2746.686564 +2746.713304 +2746.743207 +2746.774110 +2746.808775 +2746.851532 +2746.888562 +2746.917633 +2746.945205 +2746.981069 +2747.013004 +2747.047403 +2747.087662 +2747.120030 +2747.157859 +2747.219764 +2747.263553 +2747.297219 +2747.332351 +2747.364985 +2747.405311 +2747.443273 +2747.482834 +2747.515601 +2747.547935 +2747.580303 +2747.609207 +2747.643173 +2747.678504 +2747.713436 +2747.743806 +2747.780436 +2747.814801 +2747.846636 +2747.916100 +2747.993755 +2748.020162 +2748.053962 +2748.082367 +2748.124658 +2748.162487 +2748.199749 +2748.234548 +2748.266649 +2748.299416 +2748.332516 +2748.368514 +2748.402713 +2748.440908 +2748.477937 +2748.512969 +2748.547701 +2748.582699 +2748.624457 +2748.661654 +2748.698683 +2748.730252 +2748.767947 +2748.802113 +2748.829386 +2748.860621 +2748.894421 +2748.920861 +2748.986728 +2749.025656 +2749.061853 +2749.172709 +2749.212502 +2749.251430 +2749.318496 +2749.352795 +2749.424423 +2749.462918 +2749.502778 +2749.541206 +2749.575372 +2749.601546 +2749.668712 +2749.696784 +2749.731083 +2749.761253 +2749.794786 +2749.830850 +2749.868346 +2749.913734 +2749.949131 +2749.990657 +2750.025555 +2750.062684 +2750.097450 +2750.132082 +2750.168146 +2750.215698 +2750.290456 +2750.323357 +2750.348299 +2750.384229 +2750.419194 +2750.527353 +2750.532614 +2750.580300 +2750.642338 +2750.681532 +2750.710969 +2750.742604 +2750.770876 +2750.801112 +2750.836876 +2750.876936 +2750.907605 +2750.944668 +2750.979700 +2751.017096 +2751.056290 +2751.088258 +2751.129816 +2751.162583 +2751.195817 +2751.228684 +2751.295384 +2751.336543 +2751.373306 +2751.409769 +2751.446632 +2751.479033 +2751.513898 +2751.544301 +2751.572140 +2751.626686 +2751.660951 +2751.689489 +2751.726952 +2751.753658 +2751.774737 +2751.825453 +2751.852759 +2751.915630 +2751.935743 +2751.966379 +2752.030082 +2752.145167 +2752.177234 +2752.238273 +2752.263481 +2752.299179 +2752.334277 +2752.370175 +2752.433112 +2752.527484 +2752.554290 +2752.628716 +2752.658153 +2752.702808 +2752.728083 +2752.770174 +2752.802042 +2752.817360 +2752.848463 +2752.903075 +2752.993384 +2753.036008 +2753.068709 +2753.119624 +2753.205339 +2753.255122 +2753.290886 +2753.348595 +2753.394649 +2753.492551 +2753.537306 +2753.572604 +2753.625385 +2753.671206 +2753.713663 +2753.764712 +2753.838871 +2753.901475 +2753.928881 +2753.950226 +2754.011132 +2754.142834 +2754.179131 +2754.275467 +2754.292517 +2754.396946 +2754.439636 +2754.462414 +2754.517359 +2754.565810 +2754.642467 +2754.691285 +2754.755653 +2754.798011 +2754.812929 +2754.868108 +2754.945863 +2754.989286 +2755.053788 +2755.219889 +2755.277498 +2755.385490 +2755.422553 +2755.446429 +2755.470971 +2755.498443 +2755.586189 +2755.662812 +2755.704937 +2755.757650 +2755.851390 +2755.919855 +2755.955852 +2756.067574 +2756.115958 +2756.176997 +2756.240167 +2756.292049 +2756.315259 +2756.380660 +2756.426847 +2756.504803 +2756.577796 +2756.640800 +2756.668972 +2756.716024 +2756.981858 +2757.059680 +2757.148458 +2757.178928 +2757.200306 +2757.241765 +2757.356883 +2757.430642 +2757.562011 +2757.634605 +2757.768504 +2757.835204 +2757.926413 +2757.992746 +2758.080625 +2758.121751 +2758.202403 +2758.243595 +2758.345627 +2758.425447 +2758.458813 +2758.505500 +2758.570901 +2758.631307 +2758.696908 +2758.804867 +2758.980691 +2759.024214 +2759.083421 +2759.130874 +2759.188050 +2759.233038 +2759.303335 +2759.360244 +2759.392845 +2759.438899 +2759.482322 +2759.538499 +2759.582389 +2759.645192 +2759.702402 +2759.824946 +2759.954083 +2760.008595 +2760.068735 +2760.116021 +2760.216121 +2760.357846 +2760.421582 +2760.442960 +2760.624745 +2760.691811 +2760.767402 +2760.894608 +2760.969234 +2761.026776 +2761.164838 +2761.216986 +2761.278391 +2761.337698 +2761.399836 +2761.464038 +2761.518850 +2761.588247 +2761.641994 +2761.707994 +2761.749985 +2761.809892 +2761.872696 +2761.934068 +2762.063805 +2762.186082 +2762.243458 +2762.310058 +2762.367800 +2762.423911 +2762.501899 +2762.542592 +2762.578789 +2762.620114 +2762.675725 +2762.736232 +2762.833268 +2762.899235 +2763.010857 +2763.062139 +2763.161706 +2763.210424 +2763.244390 +2763.288079 +2763.376258 +2763.402398 +2763.421645 +2763.527040 +2763.583017 +2763.642458 +2763.696970 +2763.752181 +2763.859041 +2763.901465 +2763.955145 +2764.035731 +2764.066433 +2764.125508 +2764.145088 +2764.188478 +2764.220912 +2764.321844 +2764.420379 +2764.466466 +2764.509889 +2764.556909 +2764.582384 +2764.619613 +2764.655877 +2764.675823 +2764.705460 +2764.735697 +2764.772127 +2764.814751 +2764.865234 +2764.917282 +2764.964668 +2765.053379 +2765.133532 +2765.182583 +2765.232033 +2765.279885 +2765.335729 +2765.372792 +2765.508290 +2765.533365 +2765.574224 +2765.629202 +2765.699166 +2765.745453 +2765.809622 +2765.873524 +2765.930534 +2765.994104 +2766.043021 +2766.103861 +2766.196268 +2766.365365 +2766.479884 +2766.556474 +2766.671492 +2766.732198 +2766.836094 +2766.950347 +2767.030833 +2767.112351 +2767.200663 +2767.288275 +2767.421542 +2767.500329 +2767.550812 +2767.603826 +2767.684711 +2767.776386 +2767.919876 +2767.976386 +2768.079982 +2768.135527 +2768.287708 +2768.441188 +2768.507654 +2768.628100 +2768.700395 +2768.805589 +2768.918110 +2769.124504 +2769.222539 +2769.345049 +2769.636658 +2769.736691 +2769.817210 +2770.066993 +2770.114346 +2770.173553 +2770.231995 +2770.321006 +2770.362664 +2770.505355 +2770.688538 +2771.175084 +2771.228564 +2771.403855 +2771.493266 +2771.585673 +2772.038720 +2777.004316 +2777.006580 +2777.232088 +2777.235218 +2777.238115 +2777.445408 +2777.449404 +2777.452534 +2777.586533 +2777.590096 +2777.593193 +2777.598554 +2777.707579 +2777.712007 +2777.716270 +2777.879640 +2777.885434 +2778.012673 +2778.019466 +2778.033419 +2778.138680 +2778.151601 +2778.206746 +2778.231454 +2778.257928 +2778.282470 +2778.311774 +2778.351134 +2778.387997 +2778.432453 +2778.509842 +2778.536948 +2778.561890 +2778.591893 +2778.611107 +2778.613538 +2778.641710 +2778.671081 +2778.729589 +2778.769549 +2778.811573 +2778.840478 +2778.873345 +2778.908377 +2778.930787 +2778.957794 +2778.989795 +2779.032053 +2779.077674 +2779.118833 +2779.155929 +2779.186798 +2779.220364 +2779.241809 +2779.268383 +2779.304980 +2779.399885 +2779.440511 +2779.481236 +2779.522462 +2779.556628 +2779.599052 +2779.632585 +2779.673544 +2779.708642 +2779.734483 +2779.766351 +2779.809574 +2779.841742 +2779.888762 +2779.934083 +2779.968615 +2780.018465 +2780.044839 +2780.070646 +2780.120563 +2780.172078 +2780.225725 +2780.268215 +2780.343440 +2780.375808 +2780.417766 +2780.446936 +2780.480569 +2780.521029 +2780.550033 +2780.621995 +2780.684765 +2780.786097 +2780.893156 +2780.953629 +2780.999916 +2781.072843 +2781.131518 +2781.204611 +2781.321761 +2781.373309 +2781.396186 +2781.419197 +2781.448034 +2781.531584 +2781.581967 +2781.645703 +2781.699416 +2781.784731 +2781.812969 +2781.901947 +2781.971977 +2782.024524 +2782.065783 +2782.110438 +2782.137211 +2782.158357 +2782.190724 +2782.235746 +2782.381200 +2782.438643 +2782.549399 +2782.571676 +2782.614633 +2782.646901 +2782.700581 +2782.754760 +2782.820427 +2782.939608 +2783.057290 +2783.111636 +2783.174806 +2783.232282 +2783.293321 +2783.336411 +2783.378002 +2783.396551 +2783.422691 +2783.470343 +2783.532315 +2783.587126 +2783.638975 +2783.759754 +2783.803710 +2783.843070 +2783.885894 +2783.926120 +2783.991388 +2784.045767 +2784.104975 +2784.131781 +2784.199147 +2784.245234 +2784.311901 +2784.372141 +2784.422324 +2784.472440 +2784.511967 +2784.548564 +2784.553992 +2784.590822 +2784.630915 +2784.681531 +2784.741005 +2784.845733 +2784.899180 +2784.944101 +2785.040005 +2785.139872 +2785.189556 +2785.244767 +2785.293618 +2785.350328 +2785.408337 +2785.460651 +2785.489023 +2785.511167 +2785.555589 +2785.600444 +2785.714330 +2785.770141 +2785.824254 +2785.877101 +2785.945033 +2785.988856 +2786.034443 +2786.100444 +2786.152558 +2786.199878 +2786.274337 +2786.345998 +2786.402175 +2786.474137 +2786.559285 +2786.636374 +2786.700976 +2786.782561 +2786.819491 +2786.851892 +2786.880230 +2786.918558 +2786.951992 +2787.081529 +2787.154222 +2787.237173 +2787.266110 +2787.353023 +2787.466410 +2787.546829 +2787.600010 +2787.761215 +2787.806170 +2787.890086 +2788.236239 +2788.295247 +2788.381694 +2788.411331 +2788.457684 +2788.516692 +2788.534241 +2788.671870 +2788.725783 +2788.772070 +2788.811264 +2788.917724 +2788.969872 +2789.085023 +2789.111497 +2789.155919 +2789.187754 +2789.333741 +2789.356984 +2789.439502 +2789.767440 +2789.868739 +2789.931842 +2790.119055 +2790.194246 +2790.254053 +2790.306234 +2790.410363 +2790.468871 +2790.553686 +2790.623017 +2790.912294 +2791.022217 +2791.069603 +2791.277495 +2791.338800 +2791.585520 +2791.894278 +2791.952852 +2791.963075 +2791.986519 +2792.309828 +2792.403335 +2792.414890 +2792.508496 +2792.556481 +2792.586218 +2792.723781 +2792.734403 +2793.482621 +2793.487183 +2793.493810 +2793.656380 +2793.661076 +2793.757379 +2793.766770 +2793.864339 +2793.922914 +2793.967169 +2794.107163 +2794.464771 +2794.538830 +2794.621348 +2794.662340 +2794.796140 +2794.952650 +2795.004897 +2795.118484 +2795.136898 +2795.152816 +2795.235633 +2795.264637 +2795.350718 +2798.098201 +2798.101065 +2799.807157 +2799.822908 +2799.826238 +2799.829501 +2800.680416 +2800.747216 +2800.784345 +2800.788341 +2800.791871 +2801.055307 +2801.060269 +2801.066130 +2801.231298 +2801.235227 +2801.239390 +2801.430066 +2801.442420 +2801.623072 +2801.629266 +2802.084344 +2802.089672 +2802.097631 +2802.616911 +2802.626068 +2802.633661 +2802.999395 +2803.010717 +2803.128499 +2803.162631 +2803.295032 +2803.302891 +2803.443117 +2803.593833 +2804.180612 +2804.241418 +2804.611881 +2804.995597 +2805.316042 +2806.101756 +2806.107350 +2806.295462 +2806.305818 +2806.421636 +2806.436587 +2806.718006 +2807.126031 +2807.174848 +2807.232258 +2807.335621 +2807.379444 +2807.625298 +2808.009247 +2808.370252 +2808.709179 +2808.790165 +2808.905849 +2809.819934 +2809.840047 +2810.031056 +2810.235352 +2810.780539 +2810.953499 +2811.014239 +2811.067452 +2811.191661 +2811.305047 +2811.329090 +2811.351601 +2811.526526 +2811.714804 +2811.840178 +2811.952533 +2812.064987 +2812.114604 +2812.149635 +2812.229455 +2812.332785 +2812.427524 +2812.513538 +2812.702948 +2812.781170 +2812.812738 +2812.869282 +2813.081336 +2813.155329 +2813.443540 +2813.466550 +2813.505012 +2813.573776 +2813.592524 +2813.607976 +2813.611905 +2813.627223 +2813.642841 +2813.660989 +2813.682468 +2813.691459 +2813.705811 +2813.725691 +2813.789594 +2813.805178 +2814.102714 +2814.109440 +2814.111938 +2814.114602 +2814.119963 +2814.251198 +2814.253130 +2814.256227 +2814.258724 +2814.263952 +2814.290026 +2814.310772 +2814.349933 +2814.361355 +2814.366083 +2814.377272 +2814.391858 +2814.410938 +2814.430219 +2814.723259 +2814.727189 +2814.730552 +2814.740042 +2814.884231 +2814.888061 +2814.891191 +2814.896186 +2814.978304 +2814.983066 +2814.986929 +2815.016532 +2815.043505 +2815.055160 +2815.077305 +2815.090658 +2815.104478 +2815.114234 +2815.365716 +2815.380135 +2815.425290 +2815.454960 +2815.513735 +2815.536179 +2815.595353 +2815.629352 +2815.659855 +2815.707174 +2815.744004 +2815.773774 +2815.815532 +2815.848533 +2815.891123 +2815.931017 +2815.949965 +2815.961986 +2815.974007 +2815.993521 +2816.030084 +2816.061686 +2816.085262 +2816.109904 +2816.116664 +2816.151296 +2816.279868 +2816.332715 +2816.378902 +2816.428885 +2816.478902 +2816.529018 +2816.581233 +2816.633114 +2816.671742 +2816.718895 +2816.751928 +2816.759854 +2816.775238 +2816.802145 +2816.812268 +2816.853926 +2816.872474 +2816.911435 +2816.941372 +2816.953926 +2816.961952 +2816.981465 +2817.201578 +2817.241305 +2817.378868 +2817.427286 +2817.484295 +2817.529117 +2817.582530 +2817.688524 +2817.781098 +2817.834345 +2817.889590 +2817.931747 +2817.972973 +2818.006639 +2818.065514 +2818.191554 +2818.246932 +2818.295317 +2818.349662 +2818.444934 +2818.485793 +2818.517395 +2818.574604 +2818.622989 +2818.678034 +2818.745200 +2818.802842 +2818.847564 +2818.955589 +2819.012499 +2819.085992 +2819.166278 +2819.294716 +2819.354690 +2819.429482 +2819.493184 +2819.607570 +2819.694616 +2819.724053 +2819.788422 +2819.846897 +2819.906005 +2820.021322 +2820.062348 +2820.109001 +2820.194782 +2820.265645 +2820.474269 +2820.551259 +2820.599644 +2820.672670 +2820.718791 +2820.755221 +2820.813030 +2820.858285 +2820.998677 +2821.098111 +2821.151658 +2821.307635 +2821.333109 +2821.374801 +2821.459549 +2821.505637 +2821.547461 +2821.630212 +2821.689253 +2821.744131 +2821.801341 +2821.809865 +2821.836639 +2821.876765 +2821.981727 +2822.034707 +2822.075766 +2822.127514 +2822.172269 +2822.342965 +2822.384390 +2822.424117 +2822.494880 +2822.559482 +2822.577930 +2822.607301 +2822.633308 +2822.650657 +2822.694946 +2822.797077 +2822.914426 +2823.093814 +2823.145262 +2823.296211 +2823.334939 +2823.369504 +2823.435405 +2823.524416 +2823.653553 +2823.835771 +2823.977129 +2824.236403 +2824.445394 +2824.610096 +2824.903469 +2824.982789 +2825.405833 +2825.835070 +2825.852485 +2826.080724 +2826.242229 +2826.517020 +2826.916654 +2826.919551 +2826.924812 +2826.928608 +2826.989447 +2826.996607 +2827.000769 +2827.004166 +2827.118618 +2827.125911 +2827.128608 +2827.137033 +2827.215121 +2827.219217 +2827.224246 +2827.478258 +2827.481255 +2827.483586 +2827.486683 +2827.657246 +2827.660276 +2827.662740 +2827.666370 +2827.933269 +2827.936866 +2827.939796 +2827.947955 +2828.124478 +2828.128341 +2828.131537 +2828.137798 +2828.278790 +2828.282120 +2828.285550 +2828.291377 +2828.435233 +2828.439363 +2828.443159 +2828.555014 +2828.563805 +2828.592909 +2828.647821 +2828.660042 +2828.680455 +2828.739662 +2828.751916 +2828.779422 +2828.822346 +2828.854614 +2828.893741 +2828.924477 +2828.988080 +2829.070597 +2829.107893 +2829.150684 +2829.203698 +2829.289445 +2829.332236 +2829.369032 +2829.411023 +2829.512289 +2829.523844 +2829.615818 +2829.663670 +2829.811789 +2829.913887 +2829.918016 +2829.928405 +2829.936531 +2830.070863 +2830.077956 +2830.086014 +2830.194406 +2830.202032 +2830.211922 +2830.311755 +2830.329904 +2830.400699 +2830.442757 +2830.524575 +2830.676956 +2830.726040 +2830.772993 +2830.831601 +2830.897202 +2830.935830 +2830.977755 +2831.015584 +2831.176822 +2831.268064 +2831.300365 +2831.324808 +2831.354078 +2831.416316 +2831.486879 +2831.540392 +2831.560838 +2831.564601 +2831.568830 +2831.642123 +2831.692373 +2831.761004 +2831.911587 +2831.944321 +2832.214417 +2832.256275 +2832.296668 +2832.298633 +2832.457307 +2832.461237 +2832.513684 +2832.590308 +2832.726038 +2832.769262 +2832.775389 +2833.019545 +2833.045818 +2833.381815 +2833.612951 +2833.626071 +2833.630000 +2833.632664 +2833.637459 +2833.783746 +2833.785911 +2833.789873 +2834.082347 +2834.084845 +2834.087242 +2834.089807 +2834.170925 +2834.174289 +2834.177252 +2834.182014 +2834.385344 +2834.387941 +2834.389973 +2834.392237 +2834.396300 +2834.521941 +2834.524272 +2834.526736 +2834.531698 +2834.781281 +2834.783779 +2834.785876 +2834.788707 +2835.082147 +2835.090671 +2835.271557 +2835.274221 +2835.276286 +2835.279016 +2835.407454 +2835.411850 +2835.414281 +2835.416445 +2835.420441 +2835.506222 +2835.509152 +2835.511983 +2835.515513 +2835.631363 +2835.634660 +2835.637258 +2835.640088 +2835.648979 +2835.808053 +2835.810318 +2835.812848 +2835.818609 +2836.001493 +2836.008519 +2836.012216 +2836.156571 +2836.161866 +2836.166161 +2836.171023 +2836.338855 +2836.341486 +2836.343750 +2836.347413 +2836.536191 +2836.538755 +2836.541286 +2836.723803 +2836.726234 +2836.729231 +2836.735591 +2836.979081 +2836.982111 +2836.984609 +2837.065661 +2837.068725 +2837.071722 +2837.295131 +2837.298228 +2837.304156 +2837.405721 +2837.409184 +2837.413946 +2837.419807 +2837.531062 +2837.542650 +2837.650143 +2837.656603 +2837.713313 +2837.723536 +2837.747279 +2837.821238 +2837.830096 +2837.836489 +2837.903323 +2837.996662 +2838.054704 +2838.141051 +2838.372786 +2838.506685 +2838.531594 +2838.664228 +2838.836888 +2839.020238 +2839.053338 +2839.094264 +2839.225699 +2839.361496 +2839.386804 +2839.537986 +2839.747976 +2839.758932 +2839.871286 +2839.946710 +2839.950407 +2839.965192 +2840.590200 +2840.594329 +2840.596926 +2840.600756 +2840.716273 +2840.719304 +2840.722134 +2840.725531 +2841.041381 +2841.044345 +2841.046543 +2841.049906 +2841.284804 +2841.286936 +2841.290499 +2841.443046 +2841.445543 +2841.448074 +2841.457465 +2841.573515 +2841.576712 +2841.579010 +2841.581974 +2841.663958 +2841.674548 +2841.678177 +2841.681774 +2841.864824 +2841.868387 +2841.871484 +2841.875979 +2842.022866 +2842.026162 +2842.028626 +2842.031923 +2842.207880 +2842.210844 +2842.213375 +2842.217471 +2842.354600 +2842.357431 +2842.360061 +2842.363325 +2842.474747 +2842.477810 +2842.480441 +2842.484204 +2842.602019 +2842.606182 +2842.610011 +2842.618469 +2842.766122 +2842.769418 +2842.772815 +2842.777144 +2842.861093 +2842.874846 +2842.880374 +2842.886201 +2842.980374 +2842.987267 +2842.997790 +2843.036518 +2843.054999 +2843.137750 +2843.182072 +2843.223664 +2843.260660 +2843.306414 +2843.343310 +2843.387433 +2843.427726 +2843.466021 +2843.505481 +2843.543377 +2843.589264 +2843.626560 +2843.670883 +2843.708412 +2843.766487 +2843.800686 +2843.897089 +2843.968918 +2843.991661 +2844.024961 +2844.069650 +2844.107745 +2844.136383 +2844.198055 +2844.220499 +2844.260559 +2844.383636 +2844.454099 +2844.486067 +2844.508344 +2844.559227 +2844.609310 +2844.650102 +2844.667085 +2844.792460 +2844.838480 +2844.870149 +2844.942010 +2844.964454 +2844.967152 +2845.062290 +2845.094857 +2845.240378 +2845.274178 +2845.308676 +2845.474011 +2845.514104 +2845.566352 +2845.616901 +2845.803315 +2845.831453 +2845.975476 +2846.008975 +2846.072545 +2846.126158 +2846.286298 +2846.303114 +2846.340277 +2846.501216 +2846.602115 +2846.627290 +2846.696854 +2846.703347 +2846.717566 +2846.892558 +2847.096920 +2847.099417 +2847.284299 +2847.291125 +2847.293556 +2847.296920 +2847.392424 +2847.395188 +2847.397519 +2847.405378 +2847.691192 +2847.698384 +2847.701248 +2847.710839 +2848.010938 +2848.013136 +2848.016433 +2848.301014 +2848.303312 +2848.306009 +2848.314301 +2849.783397 +2849.785995 +2849.787959 +2849.790657 +2853.341103 +2853.343633 +2853.345532 +2853.347663 +2853.351992 +2854.034309 +2854.039670 +2854.046730 +2854.268208 +2854.270372 +2854.272271 +2854.403939 +2854.405937 +2854.500842 +2854.503206 +2854.505104 +2854.507335 +2854.510499 +2854.640702 +2854.641501 +2854.645830 +2854.647795 +2854.649893 +2854.813695 +2854.815593 +2854.817525 +2854.820422 +2854.912496 +2854.956852 +2854.958983 +2854.963146 +2854.966476 +2855.134274 +2855.136872 +2855.139935 +2855.387920 +2855.391550 +2855.532309 +2855.551390 +2855.690284 +2855.697178 +2855.979562 +2856.122652 +2856.808399 +2856.820520 +2860.724412 +2861.034035 +2861.037299 +2861.042960 +2861.045058 +2861.047389 +2861.053949 +2861.260575 +2861.263239 +2861.265337 +2861.267735 +2861.436033 +2861.441061 +2861.443093 +2861.445623 +2861.586216 +2861.589046 +2861.591244 +2861.593509 +2861.596905 +2861.747155 +2861.750218 +2861.752316 +2861.754681 +2861.757877 +2862.644423 +2862.647187 +2862.649219 +2862.651616 +2862.729105 +2862.731603 +2863.068865 +2863.071296 +2863.073294 +2863.076557 +2863.397736 +2863.404463 +2863.406827 +2863.408891 +2863.411389 +2863.417250 +2863.585581 +2863.588911 +2863.591009 +2863.593040 +2863.595938 +2863.728505 +2863.733533 +2863.735831 +2863.738029 +2863.740626 +2863.952847 +2863.956144 +2863.958508 +2863.960639 +2863.963736 +2864.076323 +2864.078654 +2864.088478 +2864.186580 +2864.188944 +2864.191242 +2864.193972 +2864.415084 +2864.417415 +2864.419447 +2864.422144 +2864.520246 +2864.522011 +2864.524208 +2864.534298 +2864.698401 +2864.700598 +2864.702796 +2864.705327 +2864.710522 +2864.844022 +2864.846286 +2864.848417 +2864.850548 +2864.853812 +2864.954411 +2864.956609 +2864.958574 +2864.960572 +2864.963935 +2865.161071 +2865.163302 +2865.165500 +2865.168397 +2865.266465 +2865.269662 +2865.277388 +2865.336562 +2865.514584 +2865.521710 +2865.528370 +2865.628137 +2865.639226 +2865.722242 +2865.733498 +2865.774091 +2865.774657 +2865.798200 +2865.856974 +2865.871127 +2865.948982 +2865.997600 +2866.059472 +2866.061569 +2866.084513 +2866.136861 +2866.243621 +2866.304127 +2866.426404 +2866.522908 +2866.568329 +2866.654876 +2866.728235 +2866.803061 +2866.862901 +2866.900430 +2867.008488 +2867.094802 +2867.152677 +2867.228701 +2867.293636 +2867.361402 +2867.450046 +2867.554342 +2867.601628 +2867.724738 +2867.823472 +2867.886543 +2867.962999 +2868.025237 +2868.124338 +2868.178450 +2868.221541 +2868.236892 +2868.295800 +2868.313149 +2868.359003 +2868.433628 +2868.510185 +2868.603725 +2869.362965 +2869.367893 +2869.371157 +2869.383744 +2869.698662 +2869.701892 +2869.704157 +2869.707919 +2869.887273 +2869.889771 +2869.891869 +2869.894366 +2869.900627 +2870.093434 +2870.096164 +2870.101259 +2870.181479 +2870.191535 +2870.239854 +2870.383443 +2870.386041 +2870.389737 +2870.505121 +2870.514312 +2870.516776 +2870.525434 +2870.659101 +2870.662597 +2870.665594 +2870.669557 +2870.853306 +2870.857469 +2870.861165 +2870.870089 +2871.084841 +2871.088204 +2871.090535 +2871.267292 +2871.273452 +2871.449310 +2871.453206 +2871.456136 +2871.462397 +2871.709050 +2871.712846 +2871.715676 +2871.720571 +2871.961697 +2871.965127 +2871.967891 +2871.973651 +2872.134790 +2872.142915 +2872.149842 +2872.288403 +2872.294663 +2872.298793 +2872.409249 +2872.411014 +2872.417241 +2872.420471 +2872.424966 +2872.497694 +2872.503321 +2872.509448 +2872.556335 +2872.573285 +2872.604487 +2872.613344 +2872.655735 +2872.755769 +2872.764460 +2872.774983 +2872.908283 +2873.042215 +2873.075815 +2873.238519 +2873.256001 +2873.656500 +2873.659697 +2873.662960 +2873.672851 +2873.848941 +2873.853137 +2873.991065 +2873.995161 +2873.998458 +2874.001688 +2874.395461 +2874.399956 +2874.403086 +2874.578011 +2874.581008 +2874.583606 +2874.587502 +2874.683006 +2874.687835 +2874.690698 +2874.692996 +2874.696692 +2874.766423 +2874.769320 +2874.772650 +2874.775314 +2874.779676 +2874.892363 +2874.895260 +2875.337518 +2875.340248 +2875.342246 +2875.345010 +2876.219235 +2876.221599 +2876.223464 +2876.225928 +2876.694393 +2876.699754 +2876.701752 +2876.704682 +2876.902051 +2876.904083 +2876.906047 +2876.908179 +2876.911309 +2877.068785 +2877.072581 +2877.074745 +2877.077443 +2877.255098 +2877.260160 +2877.262690 +2877.266587 +2877.425994 +2877.430456 +2877.548737 +2877.551202 +2877.555098 +2878.029356 +2878.032786 +2878.035117 +2878.040479 +2878.549669 +2878.571713 +2878.574211 +2878.576242 +2878.578706 +2878.582869 +2878.701983 +2878.703981 +2878.706046 +2878.709409 +2879.352632 +2879.357527 +2879.360024 +2880.877605 +2880.879470 +2880.881601 +2880.884831 +2881.087595 +2881.094288 +2881.097352 +2881.177072 +2881.180602 +2881.183699 +2881.185863 +2881.191691 +2881.681401 +2881.893622 +2882.093122 +2882.492389 +2883.176271 +2883.382997 +2883.391589 +2883.395918 +2883.399581 +2883.680932 +2883.682731 +2883.684362 +2883.686494 +2883.781232 +2883.783297 +2883.785395 +2883.787393 +2883.789790 +2883.794319 +2884.087858 +2884.089290 +2884.341172 +2884.343469 +2884.345600 +2884.348697 +2884.588024 +2884.592020 +2884.594385 +2884.596616 +2884.600412 +2884.729283 +2884.732047 +2884.734478 +2884.737841 +2884.902010 +2884.906139 +2884.987991 +2884.991953 +2884.995283 +2884.998314 +2885.118061 +2885.121357 +2885.124188 +2885.127551 +2885.357787 +2885.361517 +2885.364181 +2885.573338 +2885.576835 +2885.579365 +2885.583128 +2885.756888 +2885.760284 +2885.762815 +2885.766745 +2885.910434 +2885.913564 +2885.916561 +2885.920824 +2886.031313 +2886.035043 +2886.037740 +2886.209302 +2886.212965 +2886.216361 +2886.222455 +2886.374303 +2886.377433 +2886.383427 +2886.542235 +2886.545032 +2886.549761 +2886.700976 +2886.707470 +2886.711965 +2886.872271 +2886.876001 +2886.879298 +2886.883793 +2887.011732 +2887.014562 +2887.017726 +2887.147895 +2887.151625 +2887.154356 +2887.159217 +2887.279464 +2887.283227 +2887.286956 +2887.295348 +2887.465877 +2887.468841 +2887.474102 +2887.635474 +2887.638671 +2887.641934 +2887.646197 +2887.814794 +2887.818857 +2887.821887 +2887.827149 +2887.971338 +2887.974801 +2887.984824 +2888.131344 +2888.134474 +2888.141101 +2888.324185 +2888.327182 +2888.330145 +2888.335273 +2888.486156 +2888.490052 +2888.493149 +2888.499276 +2888.609632 +2888.613761 +2888.617424 +2888.625017 +2888.733109 +2888.828646 +2888.832509 +2888.835806 +2888.845396 +2888.988520 +2888.992582 +2888.997544 +2889.197077 +2889.201773 +2889.205769 +2889.216558 +2889.362945 +2889.384923 +2889.388186 +2889.392049 +2889.843730 +2889.847493 +2889.929611 +2889.935139 +2889.942132 +2889.986354 +2890.012162 +2890.036237 +2890.358382 +2890.434272 +2890.525015 +2890.572567 +2890.652254 +2890.765674 +2890.899607 +2891.834437 +2891.851420 +2891.942063 +2892.098207 +2892.102935 +2892.187251 +2894.322414 +2894.336300 +2894.857212 +2894.860275 +2894.863905 +2895.555879 +2895.870930 +2896.511289 +2896.517983 +2896.520413 +2896.522578 +2896.524842 +2899.907223 +2902.574753 +2902.718676 +2902.724237 +2902.727034 +2902.728865 +2902.730597 +2902.733228 +2902.735825 +2904.456403 +2904.461098 +2904.462896 +2905.270055 +2905.279046 +2905.427897 +2906.218106 +2906.219871 +2906.223667 +2907.121468 +2907.127662 +2907.131458 +2907.386536 +2907.400756 +2907.402654 +2907.577246 +2908.694960 +2908.698157 +2908.700588 +2908.702586 +2908.704417 +2908.707048 +2908.759196 +2908.781274 +2909.215106 +2910.648038 +2910.656563 +2910.658328 +2910.732620 +2910.736050 +2910.738681 +2910.741112 +2910.744175 +2911.163389 +2911.167152 +2911.171148 +2911.364188 +2911.366386 +2911.369183 +2911.845007 +2911.850635 +2911.852533 +2911.854730 +2911.935450 +2915.401347 +2915.802878 +2915.911636 +2916.021193 +2916.024690 +2916.027154 +2916.029152 +2916.032948 +2916.305309 +2916.307307 +2917.103310 +2917.110836 +2917.114432 +2917.117063 +2917.119094 +2917.291888 +2917.300413 +2917.302344 +2917.304575 +2917.403276 +2917.803376 +2918.016096 +2918.199746 +2918.217761 +2918.397681 +2918.504441 +2918.510868 +2918.803841 +2919.106039 +2919.500544 +2919.502408 +2919.516028 +2919.519125 +2919.523188 +2919.526651 +2919.804506 +2919.805572 +2920.378665 +2920.381528 +2920.383626 +2921.112996 +2921.115094 +2921.122653 +2921.907834 +2921.909799 +2921.911797 +2921.914694 +2924.919752 +2925.121783 +2925.124148 +2925.126179 +2925.291680 +2925.534337 +2925.537301 +2925.539698 +2925.543228 +2925.726578 +2925.730008 +2925.732106 +2925.735602 +2925.862242 +2925.865805 +2925.869402 +2925.876495 +2926.007097 +2926.023581 +2926.126378 +2926.130640 +2926.172132 +2926.261276 +2926.276528 +2926.353251 +2926.361443 +2926.413724 +2926.438565 +2926.465738 +2926.514922 +2926.556547 +2926.597440 +2926.652917 +2926.678159 +2926.706064 +2926.738532 +2926.792844 +2926.833870 +2926.900003 +2926.939064 +2926.975994 +2927.008095 +2927.094775 +2927.212357 +2927.310559 +2927.358977 +2927.418817 +2927.453316 +2927.485950 +2927.548921 +2927.710692 +2927.763040 +2927.790312 +2927.834801 +2927.878757 +2927.922114 +2927.969466 +2928.078590 +2928.180555 +2928.215054 +2928.260275 +2928.338797 +2928.410625 +2928.448786 +2928.539462 +2928.566569 +2928.598870 +2928.604497 +2928.636931 +2928.656212 +2928.692509 +2928.717517 +2928.751950 +2928.804664 +2928.838729 +2928.888313 +2928.944324 +2929.053448 +2929.096638 +2929.140494 +2929.163904 +2929.267267 +2929.395339 +2929.528872 +2929.555912 +2929.607593 +2929.661639 +2929.704729 +2929.800034 +2930.156877 +2930.159641 +2930.170763 +2930.262937 +2930.271695 +2930.414186 +2930.524009 +2930.549450 +2931.010056 +2931.148251 +2931.162603 +2931.283815 +2931.308491 +2931.374857 +2931.410488 +2931.530935 +2931.573991 +2931.638893 +2931.695004 +2931.744188 +2931.797168 +2931.849249 +2931.918680 +2931.973258 +2932.057075 +2932.164767 +2932.225939 +2932.280584 +2932.363235 +2932.406158 +2932.452146 +2932.492439 +2932.538759 +2932.595469 +2932.651546 +2932.708356 +2932.768829 +2932.944220 +2933.004559 +2933.053477 +2933.165398 +2933.229834 +2933.298698 +2933.360636 +2933.411452 +2933.475588 +2933.524539 +2933.575421 +2933.629967 +2933.668428 +2933.762401 +2933.816280 +2933.863699 +2933.910719 +2933.972557 +2934.015980 +2934.081182 +2934.171824 +2934.225204 +2934.284012 +2934.335727 +2934.396433 +2934.547049 +2934.613682 +2934.671424 +2934.727335 +2934.767428 +2934.808021 +2934.892636 +2934.947215 +2934.997198 +2935.092536 +2935.141420 +2935.277751 +2935.315313 +2935.363998 +2935.408620 +2935.493668 +2935.571357 +2935.604790 +2935.647913 +2935.745549 +2935.781480 +2935.824736 +2935.860001 +2935.900527 +2935.944883 +2935.986541 +2936.026768 +2936.072555 +2936.116411 +2936.176717 +2936.229964 +2936.274786 +2936.324103 +2936.452108 +2936.491702 +2936.527533 +2936.569191 +2936.658136 +2936.705122 +2936.746414 +2936.791669 +2936.835225 +2936.869591 +2936.903856 +2936.941485 +2936.969557 +2937.006487 +2937.067026 +2937.096597 +2937.177949 +2937.208651 +2937.259600 +2937.355005 +2937.402324 +2937.449443 +2937.493999 +2937.566426 +2937.603389 +2937.648677 +2937.687772 +2937.724402 +2937.760199 +2937.796696 +2937.837488 +2937.899227 +2937.901591 +2937.926533 +2937.967924 +2938.010682 +2938.052673 +2938.092633 +2938.191767 +2938.324801 +2938.356735 +2938.400691 +2938.461930 +2938.517874 +2938.565326 +2938.622303 +2938.680944 +2938.734424 +2938.788303 +2938.828297 +2938.971786 +2939.017674 +2939.052639 +2939.093598 +2939.137654 +2939.175682 +2939.252805 +2939.288969 +2939.330494 +2939.374450 +2939.422335 +2939.465026 +2939.504520 +2939.662129 +2939.701123 +2939.786104 +2939.824932 +2939.858932 +2939.890034 +2939.955468 +2940.021236 +2940.077213 +2940.112811 +2940.136920 +2940.171152 +2940.201289 +2940.229894 +2940.260496 +2940.296394 +2940.336320 +2940.407549 +2940.479277 +2940.526297 +2940.564459 +2940.604052 +2940.645278 +2940.692197 +2940.766090 +2940.797758 +2940.838551 +2940.870486 +2940.899090 +2940.936253 +2940.969353 +2941.011078 +2941.085937 +2941.128228 +2941.168321 +2941.209446 +2941.285504 +2941.322600 +2941.392630 +2941.417105 +2941.455500 +2941.498490 +2941.582173 +2941.618970 +2941.661893 +2941.708147 +2941.747874 +2941.846708 +2941.889566 +2941.919003 +2941.970085 +2942.017870 +2942.063392 +2942.156398 +2942.211244 +2942.254966 +2942.294460 +2942.379542 +2942.423298 +2942.462792 +2942.554467 +2942.658629 +2942.704783 +2942.754167 +2942.850470 +2942.891030 +2942.941346 +2942.985402 +2943.046308 +2943.095359 +2943.142112 +2943.197356 +2943.251036 +2943.295358 +2943.331655 +2943.362025 +2943.403617 +2943.444775 +2943.503084 +2943.559228 +2943.625062 +2943.707446 +2943.753966 +2943.895258 +2943.986067 +2944.032487 +2944.079507 +2944.128824 +2944.167519 +2944.186167 +2944.223796 +2944.298521 +2944.340279 +2944.373979 +2944.411907 +2944.458427 +2944.513572 +2944.553632 +2944.620066 +2944.662490 +2944.761591 +2944.810009 +2944.897621 +2944.933186 +2945.020032 +2945.052133 +2945.095024 +2945.134651 +2945.169316 +2945.202316 +2945.244208 +2945.296322 +2945.339512 +2945.387997 +2945.429955 +2945.471180 +2945.494024 +2945.557461 +2945.605912 +2945.656129 +2945.712672 +2945.755995 +2945.828056 +2945.903381 +2945.948636 +2945.968249 +2946.010740 +2946.123527 +2946.180304 +2946.329022 +2946.472545 +2946.572911 +2946.624925 +2946.720829 +2946.889327 +2946.948868 +2946.995721 +2947.059690 +2947.107176 +2947.147136 +2947.178671 +2947.221129 +2947.418032 +2947.491258 +2947.649467 +2947.730152 +2947.820695 +2947.937878 +2948.042040 +2948.226089 +2948.301580 +2948.463385 +2948.701414 +2948.833814 +2948.880534 +2948.954127 +2949.016032 +2949.098050 +2949.268346 +2949.388026 +2949.457224 +2949.518396 +2949.589058 +2950.208771 +2950.275438 +2950.304409 +2950.379301 +2950.591821 +2950.629417 +2950.717495 +2950.795984 +2950.809037 +2950.887192 +2950.933646 +2951.008271 +2951.053592 +2951.125287 +2951.219493 +2951.420825 +2951.630715 +2951.898347 +2952.048563 +2952.138806 +2952.255989 +2952.341936 +2952.425020 +2952.514463 +2952.714197 +2952.928782 +2953.049128 +2953.238805 +2953.340670 +2953.461549 +2953.515461 +2953.823153 +2954.381561 +2954.531378 +2954.645430 +2955.332642 +2955.458350 +2955.631243 +2955.853155 +2956.032875 +2956.127047 +2956.204570 +2956.368639 +2956.489151 +2956.518589 +2956.562545 +2956.613660 +2956.672867 +2956.725082 +2956.809664 +2956.883124 +2956.966340 +2957.026980 +2957.103237 +2957.150256 +2957.307299 +2957.366606 +2957.434205 +2957.510096 +2957.565108 +2957.672234 +2957.719686 +2957.761245 +2957.804635 +2957.861677 +2957.891514 +2957.910295 +2957.920552 +2958.051920 +2958.140865 +2958.144428 +2958.188883 +2958.229742 +2958.293512 +2958.514990 +2958.556915 +2958.654384 +2958.705566 +2958.759645 +2958.804067 +2958.859479 +2958.919585 +2958.956049 +2959.014324 +2959.062775 +2959.116521 +2959.169502 +2959.213491 +2959.252652 +2959.308696 +2959.359844 +2959.414157 +2959.467004 +2959.509095 +2959.558679 +2959.613191 +2959.668369 +2959.715155 +2959.759944 +2959.795109 +2959.842961 +2959.907663 +2959.916720 +2959.929308 +2959.944792 +2959.963407 +2959.988848 +2960.015255 +2960.036634 +2960.064972 +2960.095874 +2960.148122 +2960.174695 +2960.206364 +2960.254682 +2960.282587 +2960.318452 +2960.399071 +2960.426177 +2960.489214 +2960.528808 +2960.573130 +2960.607362 +2960.644658 +2960.672131 +2960.708228 +2960.736633 +2960.751385 +2960.805964 +2960.834801 +2960.886350 +2960.918051 +2960.944658 +2961.060043 +2961.088414 +2961.136832 +2961.169666 +2961.251518 +2961.309726 +2961.383818 +2961.526942 +2961.580688 +2961.619882 +2961.780954 +2961.797671 +2961.878890 +2962.040827 +2962.097404 +2962.229339 +2962.358210 +2962.421513 +2962.691043 +2962.785149 +2962.848985 +2963.016085 +2963.134732 +2963.452481 +2963.563237 +2963.638994 +2963.726507 +2963.727206 +2963.780286 +2963.824209 +2963.888045 +2963.936230 +2964.018548 +2964.175191 +2964.176123 +2964.225507 +2964.245287 +2964.261604 +2964.321145 +2964.404428 +2964.626539 +2964.692873 +2964.763502 +2964.805793 +2964.854744 +2965.049949 +2965.103595 +2965.202529 +2965.223209 +2969.476817 +2970.073853 +2970.620739 +2970.622970 +2970.627432 +2970.635158 +2970.954505 +2970.957968 +2970.960199 +2970.963096 +2971.225667 +2971.228664 +2971.231095 +2971.234858 +2971.448077 +2971.451441 +2971.458900 +2971.659599 +2971.663029 +2971.665959 +2971.670355 +2972.013112 +2972.031360 +2972.034424 +2972.209449 +2972.215210 +2972.220837 +2972.349508 +2972.444314 +2972.514477 +2972.652305 +2972.704220 +2973.170520 +2973.184106 +2973.316441 +2973.336221 +2973.596827 +2973.892564 +2974.131525 +2974.219237 +2975.090398 +2975.094128 +2975.204551 +2975.645842 +2976.157597 +2977.197223 +2977.203350 +2977.541778 +2977.547405 +2977.553366 +2977.822164 +2977.829423 +2978.148204 +2978.151501 +2978.158760 +2978.325959 +2978.329256 +2978.334517 +2978.584168 +2978.588830 +2978.593125 +2978.804047 +2978.809209 +2978.814770 +2979.152399 +2979.159625 +2979.382402 +2979.752731 +2979.889994 +2980.446170 +2980.461788 +2980.588528 +2980.752197 +2980.831951 +2980.900216 +2980.950865 +2981.332350 +2981.535280 +2981.691391 +2981.849799 +2981.910704 +2982.110205 +2982.241806 +2982.320028 +2982.743071 +2982.748066 +2982.754893 +2983.090057 +2983.104609 +2983.405408 +2983.552661 +2983.595152 +2983.672441 +2983.758988 +2983.860486 +2983.968844 +2984.088558 +2984.283496 +2984.744634 +2984.836542 +2985.372439 +2985.380631 +2985.645166 +2985.664047 +2985.671540 +2985.734011 +2986.511266 +2986.514929 +2986.596281 +2986.933110 +2986.939937 +2987.033543 +2987.224718 +2987.256453 +2987.318991 +2987.374602 +2987.522853 +2987.605038 +2987.632843 +2987.767042 +2987.922387 +2988.050825 +2988.171770 +2988.279895 +2988.350758 +2988.448893 +2988.482326 +2988.950890 +2988.972369 +2989.012928 +2989.051623 +2989.320321 +2989.381459 +2989.494746 +2989.586021 +2989.628079 +2989.699441 +2989.732308 +2990.269804 +2990.273067 +2990.393080 +2990.397909 +2990.401938 +2990.564608 +2990.569504 +2990.575498 +2990.619387 +2990.676630 +2990.701971 +2990.755917 +2990.806300 +2990.884388 +2990.933173 +2990.968204 +2991.028810 +2991.071002 +2991.119886 +2991.163875 +2991.212127 +2991.269569 +2991.337601 +2991.458947 +2991.532773 +2991.588750 +2991.632706 +2991.680292 +2991.738400 +2991.790615 +2991.837934 +2991.880558 +2991.917155 +2991.978360 +2992.062676 +2992.129276 +2992.183355 +2992.226545 +2992.299505 +2992.359312 +2992.396142 +2992.445226 +2992.488583 +2992.533671 +2992.630474 +2992.722149 +2992.794576 +2992.897673 +2992.957080 +2993.003167 +2993.044826 +2993.106997 +2993.179990 +2993.231439 +2993.267403 +2993.421782 +2993.498139 +2993.641728 +2993.695375 +2993.782021 +2993.858578 +2993.947123 +2994.103766 +2994.240629 +2994.328607 +2994.527741 +2994.540595 +2994.625310 +2994.665903 +2994.690745 +2994.727941 +2994.768434 +2994.823978 +2994.883019 +2994.903698 +2994.920715 +2994.946222 +2994.967867 +2994.989679 +2995.005130 +2995.037864 +2995.071031 +2995.113455 +2995.168100 +2995.186449 +2995.222646 +2995.247920 +2995.312356 +2995.343258 +2995.383751 +2995.435866 +2995.499402 +2995.575359 +2995.626841 +2995.668599 +2995.705662 +2995.769498 +2995.814986 +2995.852882 +2995.897737 +2996.027806 +2996.110823 +2996.130204 +2996.152615 +2996.170330 +2996.197237 +2996.225708 +2996.253614 +2996.329604 +2996.374093 +2996.375958 +2996.421579 +2996.453347 +2996.496471 +2996.567633 +2996.614652 +2996.780386 +2996.985781 +2997.073926 +2997.106693 +2997.166700 +2997.206693 +2997.277922 +2997.425441 +2997.543822 +2997.637495 +2997.797302 +2997.833266 +2997.979420 +2998.250748 +2998.354178 +2998.381783 +2998.414151 +2998.441091 +2998.475823 +2998.500232 +2998.528736 +2998.567764 +2998.642889 +2998.667997 +2998.919878 +2998.948783 +2999.000364 +2999.201097 +2999.417813 +2999.479018 +2999.548482 +2999.686278 +2999.781849 +2999.851945 +2999.924506 +3000.210453 +3000.220543 +3000.336094 +3000.352744 +3000.481215 +3000.485944 +3000.493503 +3000.610885 +3000.615148 +3000.619510 +3000.622940 +3000.872324 +3000.876020 +3000.878950 +3000.883080 +3001.114148 +3001.118311 +3001.823239 +3001.827068 +3001.830664 +3001.885942 +3001.910551 +3001.940288 +3001.964197 +3001.982779 +3002.018044 +3002.051943 +3002.063665 +3002.102592 +3002.125136 +3002.151577 +3002.194067 +3002.209285 +3002.212049 +3002.266761 +3002.274820 +3002.453741 +3002.465396 +3002.595332 +3002.715745 +3002.755439 +3002.778249 +3002.785875 +3002.793334 +3002.816478 +3002.824669 +3002.845116 +3002.948712 +3003.081313 +3003.140387 +3003.205621 +3003.249577 +3003.314479 +3003.444649 +3003.504755 +3003.552274 +3003.610583 +3003.620639 +3003.663197 +3003.686673 +3003.930030 +3004.054871 +3004.120739 +3004.181478 +3004.261431 +3004.337155 +3004.392500 +3004.523236 +3004.601191 +3004.657102 +3004.693532 +3004.760465 +3004.816376 +3004.874684 +3004.959532 +3005.018507 +3005.080711 +3005.134557 +3005.198260 +3005.255536 +3005.289802 +3005.514943 +3005.569522 +3005.590401 +3005.652938 +3005.738819 +3005.761463 +3005.785572 +3005.877447 +3005.899225 +3005.921669 +3006.116175 +3006.154669 +3006.201323 +3006.258466 +3006.327230 +3006.486637 +3006.555102 +3006.757000 +3006.796360 +3006.832291 +3006.857466 +3006.973084 +3007.083673 +3007.128694 +3007.177912 +3007.246410 +3007.320336 +3007.377645 +3007.447875 +3007.600689 +3007.656300 +3007.693596 +3007.750472 +3007.817771 +3007.872084 +3007.907748 +3007.994328 +3008.072583 +3008.158797 +3008.225263 +3008.265823 +3008.312043 +3008.356632 +3008.435719 +3008.503252 +3008.556265 +3008.617138 +3008.803218 +3008.859595 +3008.897923 +3008.933921 +3008.958097 +3009.020667 +3009.055566 +3009.136418 +3009.186268 +3009.286801 +3009.355033 +3009.424263 +3009.485069 +3009.553900 +3009.627193 +3009.682039 +3009.724996 +3009.793560 +3009.837616 +3009.873014 +3009.906847 +3009.982271 +3010.046973 +3010.124229 +3010.199354 +3010.273014 +3010.524695 +3010.604215 +3010.682171 +3010.806480 +3010.882104 +3010.999553 +3011.048171 +3011.089530 +3011.127592 +3011.180905 +3011.258327 +3011.270249 +3011.337515 +3011.396689 +3011.470515 +3011.545240 +3011.602450 +3011.728157 +3011.806079 +3011.888463 +3011.990228 +3012.062356 +3012.114104 +3012.140411 +3012.168117 +3012.210774 +3012.272645 +3012.318932 +3012.418832 +3012.616368 +3012.684633 +3012.747870 +3012.805412 +3012.864286 +3013.015435 +3013.143973 +3013.280936 +3013.397586 +3013.469647 +3013.563786 +3013.647736 +3013.709607 +3013.761488 +3013.839011 +3013.913703 +3013.976473 +3014.104079 +3014.188261 +3014.302880 +3014.358557 +3014.424791 +3014.494588 +3014.563319 +3014.644971 +3014.718364 +3014.859489 +3014.910705 +3014.992489 +3015.060954 +3015.087528 +3017.549896 +3017.552127 +3017.553959 +3017.560719 +3017.661285 +3017.663616 +3017.665614 +3017.667845 +3017.751761 +3017.754491 +3017.760485 +3017.825953 +3017.832680 +3017.843402 +3017.892853 +3018.123722 +3018.126486 +3018.131148 +3018.305740 +3018.308404 +3018.310768 +3018.314131 +3018.449329 +3018.452093 +3018.454391 +3018.457454 +3018.597814 +3018.600544 +3018.602942 +3018.606538 +3018.735643 +3018.738373 +3018.741004 +3018.744400 +3018.868410 +3018.871407 +3018.874204 +3018.983494 +3018.987091 +3018.996648 +3019.095183 +3019.098912 +3019.105339 +3019.162582 +3019.169142 +3019.178266 +3019.190654 +3019.207204 +3019.223221 +3019.250394 +3019.259119 +3019.283361 +3019.304906 +3019.321356 +3019.331246 +3019.354057 +3019.368809 +3019.386658 +3019.406305 +3019.427050 +3019.442901 +3019.462648 +3019.483794 +3019.503973 +3019.524952 +3019.556821 +3019.573104 +3019.597713 +3019.624386 +3019.659584 +3019.683594 +3019.713697 +3019.742968 +3019.770940 +3019.795615 +3019.821822 +3019.844965 +3019.872471 +3019.896281 +3019.920490 +3019.944299 +3019.970906 +3019.994915 +3020.017093 +3020.043866 +3020.069707 +3020.092051 +3020.114895 +3020.138405 +3020.166444 +3020.215328 +3020.244299 +3020.270939 +3020.297446 +3020.319424 +3020.350792 +3020.366610 +3020.395781 +3020.413896 +3020.442467 +3020.466810 +3020.501408 +3020.528947 +3020.567675 +3020.584658 +3020.593150 +3020.627316 +3020.652890 +3020.670472 +3020.686057 +3020.730113 +3020.750159 +3020.776100 +3020.810133 +3020.833576 +3020.884791 +3020.914295 +3020.951025 +3020.985324 +3021.016726 +3021.054322 +3021.086756 +3021.109366 +3021.136639 +3021.159949 +3021.182760 +3021.207135 +3021.251757 +3021.287555 +3021.316060 +3021.352090 +3021.389619 +3021.420022 +3021.455154 +3021.522853 +3021.594814 +3021.662679 +3021.697478 +3021.732409 +3021.765410 +3021.798443 +3021.834774 +3021.874767 +3021.903971 +3021.936139 +3021.965709 +3022.025616 +3022.051790 +3022.076232 +3022.091650 +3022.093348 +3022.119589 +3022.140434 +3022.195712 +3022.218456 +3022.349458 +3022.394813 +3022.425149 +3022.451923 +3022.534107 +3022.576465 +3022.615426 +3022.652255 +3022.696811 +3022.729078 +3022.746461 +3022.781060 +3022.807533 +3022.832875 +3022.861113 +3022.890151 +3023.017956 +3023.044030 +3023.098575 +3023.140666 +3023.188918 +3023.222485 +3023.280427 +3023.290283 +3023.303137 +3023.352221 +3023.381758 +3023.407300 +3023.449957 +3023.550390 +3023.604069 +3023.636803 +3023.685821 +3023.720286 +3023.780226 +3023.907232 +3023.960812 +3024.004335 +3024.042797 +3024.100839 +3024.138334 +3024.175997 +3024.247692 +3024.292014 +3024.358447 +3024.387452 +3024.413792 +3024.462110 +3024.495111 +3024.636269 +3024.667605 +3024.714025 +3024.752953 +3024.809729 +3024.834238 +3024.865040 +3024.907032 +3024.933339 +3024.969602 +3024.994611 +3025.046359 +3025.075796 +3025.107964 +3025.145560 +3025.156815 +3025.171767 +3025.200904 +3025.235170 +3025.276828 +3025.367537 +3025.469668 +3025.525113 +3025.571467 +3025.613824 +3025.666804 +3025.708263 +3025.792179 +3025.826578 +3025.871866 +3025.918719 +3026.004267 +3026.073930 +3026.130440 +3026.181123 +3026.215389 +3026.239698 +3026.262075 +3026.277393 +3026.299005 +3026.326178 +3026.391812 +3026.517420 +3026.531739 +3026.551419 +3026.584286 +3026.617020 +3026.649954 +3026.671299 +3026.747623 +3026.832471 +3026.886983 +3026.941628 +3026.997206 +3027.044559 +3027.086383 +3027.127143 +3027.147256 +3027.193676 +3027.239730 +3027.300070 +3027.435700 +3027.479856 +3027.489214 +3027.519283 +3027.539363 +3027.546157 +3027.589913 +3027.633070 +3027.677625 +3027.879256 +3028.021814 +3028.117551 +3028.171364 +3028.220781 +3028.269932 +3028.404164 +3028.500335 +3028.534434 +3028.567767 +3028.630405 +3028.673994 +3028.719249 +3028.762139 +3028.808759 +3028.856678 +3028.913654 +3028.951916 +3028.993941 +3029.035932 +3029.075392 +3029.177923 +3029.215652 +3029.259508 +3029.326208 +3029.388945 +3029.439828 +3029.489245 +3029.530537 +3029.583650 +3029.740327 +3029.841126 +3029.882518 +3029.913054 +3029.949184 +3029.964636 +3029.976291 +3030.001765 +3030.027173 +3030.055645 +3030.080919 +3030.126673 +3030.153014 +3030.177622 +3030.217582 +3030.288145 +3030.310223 +3030.336930 +3030.359740 +3030.379853 +3030.411089 +3030.464668 +3030.499633 +3030.548751 +3030.581685 +3030.615284 +3030.695571 +3030.742657 +3030.770129 +3030.800599 +3030.842390 +3031.216116 +3031.247218 +3031.378254 +3031.452713 +3031.602430 +3031.775490 +3032.086179 +3032.253611 +3032.428736 +3032.513651 +3033.286144 +3033.618145 +3033.624772 +3033.825205 +3033.834062 +3033.964765 +3033.969593 +3033.981748 +3034.189573 +3034.198564 +3034.312950 +3034.414381 +3034.439989 +3034.526969 +3034.563732 +3034.660002 +3034.734794 +3034.766496 +3035.206322 +3035.210618 +3035.214980 +3035.315979 +3035.322006 +3035.332829 +3035.409785 +3035.416179 +3035.431164 +3035.474021 +3035.502259 +3035.689239 +3035.696731 +3035.897164 +3035.902292 +3035.914147 +3036.095698 +3036.102225 +3036.109951 +3036.460666 +3036.465728 +3036.469791 +3036.623170 +3036.629131 +3036.633760 +3036.692002 +3036.710983 +3036.772188 +3036.860932 +3036.878015 +3036.956304 +3037.032094 +3037.046014 +3037.152341 +3037.181978 +3037.236723 +3037.287972 +3037.381178 +3037.432527 +3037.520672 +3037.567425 +3037.603855 +3037.646779 +3037.694498 +3037.703456 +3037.705753 +3037.787871 +3037.824734 +3037.866393 +3037.942483 +3037.994564 +3038.053639 +3038.096396 +3038.198061 +3038.253505 +3038.364760 +3038.414178 +3038.473618 +3038.520904 +3038.610181 +3038.657168 +3038.699792 +3038.772885 +3038.812179 +3038.881943 +3038.944747 +3039.005686 +3039.069522 +3039.114177 +3039.295229 +3039.357600 +3039.411346 +3039.474916 +3039.523700 +3039.567656 +3039.624866 +3039.680876 +3039.725565 +3039.777380 +3039.818772 +3039.870020 +3039.927063 +3039.976947 +3040.044013 +3040.095361 +3040.128029 +3040.241615 +3040.274449 +3040.317073 +3040.428028 +3040.491332 +3040.530726 +3040.623899 +3040.642147 +3040.676680 +3040.716640 +3040.768721 +3040.845744 +3040.906583 +3041.012876 +3041.119103 +3041.176479 +3041.273016 +3041.326862 +3041.361361 +3041.394295 +3041.440815 +3041.531757 +3041.562293 +3041.590498 +3041.617105 +3041.639083 +3041.655533 +3041.668420 +3041.676013 +3041.697258 +3041.717438 +3041.739915 +3041.775646 +3041.837085 +3042.017571 +3042.046475 +3042.115373 +3042.158097 +3042.211044 +3042.246075 +3042.292162 +3042.377011 +3042.419535 +3042.457364 +3042.498389 +3042.540847 +3042.677543 +3042.691296 +3042.751603 +3042.802851 +3042.846940 +3042.904716 +3042.960160 +3043.010677 +3043.066321 +3043.120300 +3043.171882 +3043.220800 +3043.279741 +3043.321099 +3043.369384 +3043.413640 +3043.458462 +3043.505115 +3043.564655 +3043.606114 +3043.655231 +3043.744542 +3043.788598 +3043.834985 +3043.884302 +3043.966586 +3043.981372 +3043.995924 +3044.023596 +3044.153499 +3044.199453 +3044.259660 +3044.405214 +3044.449470 +3044.500285 +3044.556429 +3044.600652 +3044.646373 +3044.731487 +3044.780638 +3044.829489 +3044.885467 +3044.916302 +3044.997288 +3045.093825 +3045.138413 +3045.188297 +3045.229289 +3045.278440 +3045.326692 +3045.375343 +3045.423195 +3045.484300 +3045.537714 +3045.599252 +3045.709508 +3045.778972 +3045.819298 +3045.890461 +3045.898819 +3045.962089 +3046.003281 +3046.066285 +3046.118066 +3046.167184 +3046.219698 +3046.258525 +3046.305012 +3046.354230 +3046.398219 +3046.443407 +3046.487929 +3046.529954 +3046.573677 +3046.618099 +3046.664819 +3046.708175 +3046.752664 +3046.794522 +3046.842441 +3046.889960 +3046.927989 +3046.941941 +3047.003014 +3047.049667 +3047.085997 +3047.138844 +3047.186197 +3047.227222 +3047.281735 +3047.366783 +3047.435980 +3047.458424 +3047.494089 +3047.579636 +3047.627488 +3047.665450 +3047.714468 +3047.767415 +3047.810738 +3047.852197 +3047.898550 +3047.926522 +3047.977838 +3048.024791 +3048.071744 +3048.245203 +3048.293455 +3048.340575 +3048.388260 +3048.486695 +3048.520728 +3048.581034 +3048.631983 +3048.701913 +3048.751397 +3048.791557 +3048.830518 +3048.885429 +3048.923591 +3048.974973 +3049.021060 +3049.065349 +3049.171077 +3049.233514 +3049.282365 +3049.336411 +3049.384996 +3049.481200 +3049.527187 +3049.579368 +3049.626854 +3049.673973 +3049.715232 +3049.757223 +3049.818862 +3049.923823 +3049.956690 +3049.997716 +3050.218695 +3050.324955 +3050.369710 +3050.464182 +3050.506806 +3050.556457 +3050.671508 +3050.738641 +3050.783263 +3050.868611 +3050.906573 +3050.958521 +3051.052860 +3051.116230 +3051.179300 +3051.223189 +3051.275603 +3051.466546 +3051.525253 +3051.569742 +3051.612100 +3051.738507 +3051.776868 +3051.804807 +3051.852393 +3051.904807 +3052.003408 +3052.057954 +3052.182362 +3052.229116 +3052.291853 +3052.356521 +3052.414463 +3052.475502 +3052.531280 +3052.590487 +3052.632845 +3052.690054 +3052.744167 +3052.794849 +3052.828016 +3052.865079 +3052.894783 +3052.933144 +3052.960317 +3053.070140 +3053.162448 +3053.218425 +3053.285392 +3053.329048 +3053.445465 +3053.490386 +3053.535142 +3053.576334 +3053.629114 +3053.750559 +3053.810965 +3053.872937 +3053.935041 +3054.048794 +3054.100942 +3054.107635 +3054.178498 +3054.205504 +3054.258184 +3054.293183 +3054.331811 +3054.409600 +3054.464944 +3054.517059 +3054.630412 +3054.685290 +3054.763412 +3054.811031 +3054.882992 +3054.918390 +3054.984291 +3055.018956 +3055.095813 +3055.127548 +3055.182060 +3055.222086 +3055.259016 +3055.370571 +3055.402672 +3055.423318 +3055.448659 +3055.478962 +3055.559049 +3055.618456 +3055.668406 +3055.732109 +3055.781093 +3055.823118 +3055.890784 +3055.931909 +3055.980960 +3055.985722 +3056.032275 +3056.096578 +3056.127780 +3056.195712 +3056.232608 +3056.297010 +3056.310763 +3056.468971 +3056.527480 +3056.638102 +3056.710796 +3056.802837 +3056.849158 +3057.066940 +3057.145594 +3057.207565 +3057.353053 +3057.497608 +3057.515857 +3057.569170 +3057.573699 +3057.668837 +3057.708431 +3057.868271 +3057.911194 +3057.962377 +3058.184587 +3058.216655 +3058.357581 +3058.436835 +3058.555216 +3058.623881 +3058.709362 +3058.781656 +3058.824547 +3058.892013 +3058.960411 +3059.036768 +3059.073098 +3059.690314 +3059.708062 +3059.711059 +3059.716254 +3059.808895 +3059.811692 +3059.814356 +3059.817386 +3059.905432 +3059.973996 +3059.984486 +3060.002335 +3060.098638 +3060.104332 +3060.110759 +3060.187649 +3060.193576 +3060.221182 +3060.258711 +3060.285052 +3060.310593 +3060.334868 +3060.376027 +3060.418385 +3060.451085 +3060.484419 +3060.518351 +3060.555281 +3060.590446 +3060.626410 +3060.663040 +3060.726510 +3060.763739 +3060.798005 +3060.831371 +3060.867002 +3060.900802 +3060.932970 +3060.964605 +3060.993109 +3061.018684 +3061.051118 +3061.078457 +3061.116619 +3061.150618 +3061.188747 +3061.219216 +3061.251751 +3061.280089 +3061.306196 +3061.342626 +3061.378191 +3061.404797 +3061.434334 +3061.471431 +3061.499170 +3061.530105 +3061.555979 +3061.589046 +3061.620248 +3061.647954 +3061.675826 +3061.711057 +3061.770132 +3061.807428 +3061.892576 +3061.927241 +3061.952216 +3061.991776 +3062.030071 +3062.063771 +3062.101999 +3062.138163 +3062.173195 +3062.205296 +3062.239495 +3062.272362 +3062.316918 +3062.356445 +3062.485615 +3062.513354 +3062.551450 +3062.620847 +3062.645622 +3062.740627 +3062.763337 +3062.808625 +3062.831203 +3062.870630 +3062.965635 +3063.004696 +3063.045122 +3063.081486 +3063.122112 +3063.162971 +3063.223610 +3063.260273 +3063.289477 +3063.369664 +3063.415218 +3063.485515 +3063.521945 +3063.588978 +3063.627206 +3063.664202 +3063.694006 +3063.723709 +3063.743490 +3063.762471 +3063.800366 +3063.833266 +3063.856177 +3063.866800 +3063.887512 +3063.929503 +3063.954745 +3063.989543 +3064.012587 +3064.036630 +3064.061172 +3064.088544 +3064.118248 +3064.177222 +3064.262936 +3064.287612 +3064.373592 +3064.421278 +3064.528937 +3064.574391 +3064.631767 +3064.726472 +3064.777654 +3064.831667 +3064.877921 +3064.915650 +3064.954378 +3064.972027 +3065.027105 +3065.054178 +3065.097634 +3065.130501 +3065.197667 +3065.231900 +3065.265899 +3065.292772 +3065.363635 +3065.433265 +3065.502229 +3065.536894 +3065.617780 +3065.645652 +3065.947950 +3066.032065 +3066.118446 +3066.262102 +3066.342854 +3066.367996 +3066.410220 +3066.453910 +3066.499697 +3066.608821 +3066.623174 +3066.699431 +3066.809754 +3066.927902 +3066.975787 +3067.107955 +3067.220476 +3067.303193 +3067.482780 +3067.522307 +3067.808587 +3068.031897 +3068.039023 +3068.143618 +3068.167561 +3068.216046 +3068.233695 +3068.270491 +3068.292936 +3068.328633 +3068.342120 +3068.409486 +3068.412716 +3068.430565 +3068.489672 +3068.497864 +3068.539322 +3069.054307 +3069.121207 +3069.219808 +3069.261499 +3069.444716 +3069.490570 +3069.535225 +3069.647446 +3069.759667 +3069.788805 +3069.800293 +3069.824469 +3069.989637 +3070.043350 +3070.188605 +3070.260699 +3070.296364 +3070.368625 +3070.386407 +3070.509950 +3070.558068 +3070.817775 +3070.821738 +3070.824668 +3070.828264 +3071.086006 +3071.088337 +3071.091368 +3071.263362 +3071.266226 +3071.386672 +3071.394931 +3071.495663 +3071.497162 +3071.499759 +3071.510948 +3071.643682 +3071.655237 +3071.905819 +3071.912679 +3072.103321 +3072.106885 +3072.109848 +3072.115709 +3072.241017 +3072.244513 +3072.248676 +3072.258999 +3072.397860 +3072.401723 +3072.405652 +3072.424800 +3072.528363 +3072.533224 +3072.640384 +3072.702255 +3072.732691 +3072.761796 +3072.823967 +3072.854203 +3072.884173 +3072.911579 +3072.944113 +3073.012312 +3073.042182 +3073.073184 +3073.099025 +3073.157300 +3073.179278 +3073.238585 +3073.262361 +3073.295828 +3073.319537 +3073.341649 +3073.353736 +3073.390799 +3073.417606 +3073.452737 +3073.484972 +3073.516607 +3073.542547 +3073.562294 +3073.599557 +3073.622501 +3073.648641 +3073.677979 +3073.734355 +3073.761861 +3073.796693 +3073.852704 +3073.916839 +3073.946243 +3073.975681 +3074.017938 +3074.041515 +3074.072883 +3074.109413 +3074.147342 +3074.191065 +3074.222034 +3074.257165 +3074.295294 +3074.333356 +3074.362826 +3074.428894 +3074.455800 +3074.497192 +3074.523665 +3074.581308 +3074.615973 +3074.643179 +3074.668987 +3074.722267 +3074.751770 +3074.794861 +3074.847874 +3074.886136 +3074.926029 +3074.961061 +3074.996425 +3075.043811 +3075.089998 +3075.130791 +3075.174913 +3075.220068 +3075.260694 +3075.306781 +3075.348773 +3075.387934 +3075.468952 +3075.518170 +3075.557897 +3075.588832 +3075.630191 +3075.677244 +3075.715539 +3075.784037 +3075.840381 +3075.879442 +3075.915905 +3075.949238 +3075.987833 +3076.037983 +3076.100753 +3076.137850 +3076.197923 +3076.239681 +3076.288465 +3076.332888 +3076.376877 +3076.431556 +3076.479774 +3076.520833 +3076.565921 +3076.656863 +3076.678708 +3076.712075 +3076.763423 +3076.799287 +3076.846274 +3076.892194 +3076.938814 +3076.988764 +3077.036250 +3077.072414 +3077.119833 +3077.159327 +3077.212174 +3077.267852 +3077.309976 +3077.349403 +3077.389363 +3077.431854 +3077.519134 +3077.576709 +3077.672047 +3077.724528 +3077.771348 +3077.822330 +3077.872713 +3077.921231 +3077.972380 +3078.013738 +3078.055597 +3078.099120 +3078.138214 +3078.190528 +3078.231121 +3078.277541 +3078.316602 +3078.360691 +3078.422030 +3078.474844 +3078.524594 +3078.570914 +3078.676575 +3078.729322 +3078.787597 +3078.836715 +3078.865286 +3078.912938 +3078.969781 +3079.041610 +3079.100884 +3079.142675 +3079.228056 +3079.283401 +3079.351699 +3079.398186 +3079.513537 +3079.553164 +3079.612804 +3079.663587 +3079.708042 +3079.745638 +3079.858792 +3079.884632 +3079.911838 +3079.975208 +3080.051632 +3080.186330 +3080.244306 +3080.314302 +3080.474608 +3080.545604 +3080.548135 +3080.656160 +3080.800849 +3080.864252 +3080.936080 +3080.998018 +3081.054528 +3081.252763 +3081.323192 +3081.389226 +3081.424624 +3081.518663 +3081.564384 +3081.671710 +3081.798550 +3081.843238 +3081.887561 +3081.924890 +3082.009472 +3082.047168 +3082.089825 +3082.145602 +3082.289159 +3082.357224 +3082.492522 +3082.545436 +3082.618696 +3082.656291 +3082.699914 +3082.746934 +3082.803444 +3082.857790 +3082.882498 +3082.943670 +3083.655424 +3083.662284 +3083.667346 +3083.823623 +3083.826720 +3083.829650 +3083.833546 +3083.962883 +3083.967279 +3083.971275 +3083.977169 +3084.088524 +3084.093186 +3084.120859 +3084.167712 +3084.175138 +3084.183862 +3084.225620 +3084.250629 +3084.271108 +3084.283829 +3084.315497 +3084.361484 +3084.393586 +3084.420858 +3084.464781 +3084.489123 +3084.509303 +3084.542337 +3084.565214 +3084.591354 +3084.630515 +3084.658687 +3084.684561 +3084.707405 +3084.736143 +3084.765480 +3084.793186 +3084.826386 +3084.852926 +3084.884461 +3084.910368 +3084.943568 +3084.969276 +3084.998513 +3085.025919 +3085.054224 +3085.110268 +3085.138107 +3085.163581 +3085.193019 +3085.220358 +3085.245433 +3085.270741 +3085.329182 +3085.358020 +3085.385493 +3085.412732 +3085.440671 +3085.468276 +3085.498346 +3085.520524 +3085.565779 +3085.589089 +3085.669575 +3085.694650 +3085.718759 +3085.741037 +3085.764180 +3085.788190 +3085.810134 +3085.831246 +3085.860784 +3085.891519 +3085.920724 +3085.953524 +3085.980464 +3086.009901 +3086.041769 +3086.071006 +3086.100677 +3086.128549 +3086.154256 +3086.180996 +3086.207437 +3086.234543 +3086.260750 +3086.288222 +3086.317626 +3086.344732 +3086.371639 +3086.400010 +3086.416028 +3086.442068 +3086.465378 +3086.483827 +3086.506404 +3086.554622 +3086.579964 +3086.609767 +3086.633110 +3086.661682 +3086.691519 +3086.719757 +3086.743999 +3086.774136 +3086.815828 +3086.843733 +3086.877699 +3086.914529 +3086.984792 +3087.016926 +3087.053889 +3087.085558 +3087.153456 +3087.185324 +3087.218991 +3087.254722 +3087.286490 +3087.323186 +3087.351558 +3087.389453 +3087.449260 +3087.481495 +3087.510765 +3087.541834 +3087.572537 +3087.605071 +3087.645464 +3087.682627 +3087.725450 +3087.801374 +3087.838737 +3087.913063 +3087.945297 +3087.977964 +3088.041434 +3088.076366 +3088.107401 +3088.143199 +3088.187621 +3088.230944 +3088.311397 +3088.350691 +3088.393249 +3088.469406 +3088.507601 +3088.551424 +3088.630178 +3088.669306 +3088.700341 +3088.739335 +3088.783525 +3088.820787 +3088.860048 +3088.883491 +3088.929012 +3088.960447 +3089.051590 +3089.100307 +3089.153887 +3089.187553 +3089.235805 +3089.273368 +3089.311896 +3089.363211 +3089.412362 +3089.459048 +3089.501339 +3089.552188 +3089.596511 +3089.641499 +3089.686554 +3089.733740 +3089.780227 +3089.823350 +3089.865541 +3089.908066 +3089.950756 +3089.976131 +3090.063743 +3090.104402 +3090.142398 +3090.203337 +3090.242497 +3090.299907 +3090.322617 +3090.378661 +3090.461778 +3090.529876 +3090.575864 +3090.700539 +3090.769803 +3090.993845 +3091.094778 +3091.230442 +3091.270468 +3091.272966 +3091.314624 +3091.357814 +3091.417854 +3091.447058 +3091.493712 +3091.638500 +3091.883854 +3091.902036 +3091.955050 +3091.999705 +3092.067471 +3092.141963 +3092.184187 +3092.197940 +3092.303434 +3092.320584 +3092.479758 +3092.487484 +3092.504600 +3092.736967 +3092.742229 +3092.748322 +3093.008962 +3093.012358 +3093.015022 +3093.018918 +3093.366404 +3093.371166 +3093.373763 +3093.376460 +3093.380856 +3093.595874 +3093.703566 +3093.706030 +3093.708162 +3093.710926 +3093.718684 +3093.908062 +3093.910293 +3093.915288 +3094.007662 +3094.010492 +3094.012923 +3094.015954 +3094.270099 +3094.272597 +3094.274861 +3094.277991 +3094.463206 +3094.465903 +3094.468068 +3094.471065 +3094.642693 +3094.644991 +3094.647455 +3094.653349 +3094.821181 +3094.823612 +3094.825810 +3094.828773 +3094.836266 +3094.975526 +3094.978390 +3094.980488 +3094.983785 +3094.994141 +3095.120548 +3095.123245 +3095.127075 +3095.207461 +3095.210524 +3095.220015 +3095.325976 +3095.330638 +3095.335200 +3095.349385 +3095.449186 +3095.454480 +3095.460841 +3095.484217 +3095.534667 +3095.576924 +3095.604330 +3095.626974 +3095.680021 +3095.704896 +3095.729272 +3095.827707 +3095.843391 +3095.865302 +3095.886514 +3095.933767 +3095.954713 +3095.980820 +3095.998369 +3096.027673 +3096.052049 +3096.080354 +3096.109092 +3096.132901 +3096.190444 +3096.217816 +3096.247253 +3096.274293 +3096.304529 +3096.334533 +3096.359208 +3096.387713 +3096.444489 +3096.470363 +3096.529604 +3096.557043 +3096.584216 +3096.615784 +3096.644556 +3096.675858 +3096.703597 +3096.730869 +3096.760073 +3096.788245 +3096.817349 +3096.846354 +3096.871762 +3096.897969 +3096.928039 +3096.985714 +3097.015051 +3097.045021 +3097.073326 +3097.098268 +3097.132867 +3097.166533 +3097.198934 +3097.230736 +3097.262371 +3097.292341 +3097.325174 +3097.355977 +3097.391242 +3097.424042 +3097.482217 +3097.508291 +3097.535331 +3097.567465 +3097.593905 +3097.631168 +3097.665933 +3097.695204 +3097.712287 +3097.775224 +3097.810289 +3097.829536 +3097.864601 +3097.903329 +3097.946219 +3098.051980 +3098.090375 +3098.123209 +3098.194837 +3098.231500 +3098.270162 +3098.304461 +3098.342290 +3098.375123 +3098.413152 +3098.450781 +3098.511420 +3098.545786 +3098.575656 +3098.597534 +3098.630068 +3098.721077 +3098.798799 +3098.845153 +3098.884047 +3098.915116 +3098.961170 +3099.003861 +3099.081316 +3099.125805 +3099.169395 +3099.205292 +3099.292006 +3099.331399 +3099.374889 +3099.420177 +3099.466364 +3099.510687 +3099.586411 +3099.621043 +3099.672558 +3099.739857 +3099.768862 +3099.842255 +3099.875588 +3099.915282 +3099.930799 +3099.986843 +3100.078718 +3100.106690 +3100.175455 +3100.205391 +3100.235827 +3100.275055 +3100.313816 +3100.362601 +3100.395967 +3100.433496 +3100.523673 +3100.559703 +3100.671591 +3100.785311 +3100.831698 +3100.942021 +3100.982880 +3101.063466 +3101.182913 +3101.599662 +3101.674121 +3101.792902 +3101.972456 +3102.065962 +3102.120707 +3102.200960 +3102.259968 +3103.023337 +3103.031296 +3103.360133 +3103.473620 +3103.486740 +3103.597529 +3103.742151 +3103.829330 +3106.008949 +3106.011013 +3106.013278 +3106.104053 +3106.107783 +3106.110280 +3106.112578 +3106.115409 +3106.481575 +3106.486304 +3106.488502 +3106.492331 +3106.594995 +3106.600057 +3106.602288 +3106.604386 +3106.607150 +3106.984272 +3106.986970 +3106.991598 +3107.112677 +3107.115141 +3107.117206 +3107.119537 +3107.123233 +3107.420369 +3107.426130 +3107.430492 +3107.433689 +3107.640582 +3107.643046 +3107.645211 +3107.648141 +3107.865124 +3108.013908 +3108.016805 +3108.019503 +3108.149606 +3108.153502 +3108.156266 +3108.159962 +3108.296092 +3108.299755 +3108.302686 +3108.307381 +3108.441081 +3108.444610 +3108.447841 +3108.451071 +3108.570751 +3108.575313 +3108.579176 +3108.703052 +3108.708779 +3108.782605 +3108.795526 +3108.832789 +3108.860827 +3108.895193 +3108.931556 +3108.959029 +3108.996558 +3109.065556 +3109.087800 +3109.112642 +3109.145376 +3109.164923 +3109.210111 +3109.278010 +3109.314340 +3109.352801 +3109.387567 +3109.423597 +3109.460827 +3109.489365 +3109.522765 +3109.601020 +3109.641446 +3109.673680 +3109.704083 +3109.748272 +3109.788166 +3109.818169 +3109.844676 +3109.854499 +3109.883037 +3109.932288 +3109.959960 +3110.000053 +3110.033487 +3110.080340 +3110.127093 +3110.159827 +3110.210543 +3110.290496 +3110.336816 +3110.374512 +3110.422297 +3110.463157 +3110.499387 +3110.538881 +3110.582504 +3110.644508 +3110.677442 +3110.712374 +3110.752500 +3110.786699 +3110.824228 +3110.865920 +3110.911841 +3110.957861 +3111.001618 +3111.063922 +3111.111874 +3111.167518 +3111.218068 +3111.269716 +3111.330455 +3111.381371 +3111.424594 +3111.467784 +3111.523628 +3111.586699 +3111.617002 +3111.691394 +3111.739845 +3111.802116 +3111.964554 +3112.014604 +3112.142109 +3112.201417 +3112.294990 +3112.336748 +3112.411906 +3112.522795 +3112.606012 +3112.693424 +3112.818699 +3112.917433 +3112.954896 +3113.016767 +3113.034016 +3113.144040 +3113.147869 +3113.291026 +3113.305645 +3113.348535 +3113.431852 +3113.476041 +3113.613670 +3113.699517 +3113.726590 +3113.856526 +3114.215034 +3114.233416 +3115.089859 +3115.092423 +3115.094654 +3115.097651 +3115.247401 +3115.249898 +3115.252163 +3115.254560 +3115.258656 +3115.386129 +3115.388260 +3115.390491 +3115.394054 +3115.589325 +3115.591290 +3115.593621 +3115.596984 +3115.735213 +3115.737310 +3115.739375 +3115.741573 +3115.744903 +3115.973474 +3115.975972 +3115.978203 +3115.981066 +3116.146301 +3116.148565 +3116.151429 +3116.270976 +3116.273674 +3116.276038 +3116.279468 +3116.374439 +3116.378002 +3116.382165 +3116.494486 +3116.499081 +3116.503444 +3116.537876 +3116.593786 +3116.612534 +3116.633413 +3116.648332 +3116.664482 +3116.678435 +3116.715098 +3116.732148 +3116.769844 +3116.791622 +3116.813200 +3116.835578 +3116.862118 +3116.879667 +3116.892754 +3116.911668 +3116.949664 +3116.970176 +3116.998115 +3117.024822 +3117.058222 +3117.084628 +3117.110636 +3117.135311 +3117.172674 +3117.204375 +3117.226953 +3117.251095 +3117.266380 +3117.283996 +3117.304475 +3117.329250 +3117.337808 +3117.351028 +3117.383563 +3117.402810 +3117.433779 +3117.467645 +3117.492387 +3117.521158 +3117.551128 +3117.576503 +3117.599247 +3117.615564 +3117.647232 +3117.672673 +3117.705673 +3117.733479 +3117.761917 +3117.787691 +3117.808704 +3117.829017 +3117.853592 +3117.871707 +3117.904275 +3117.935943 +3117.960252 +3117.976602 +3117.998813 +3118.025420 +3118.057188 +3118.080498 +3118.110002 +3118.138773 +3118.172939 +3118.193252 +3118.223155 +3118.247997 +3118.266878 +3118.304507 +3118.323955 +3118.355290 +3118.376668 +3118.414564 +3118.445733 +3118.485593 +3118.523255 +3118.557854 +3118.591187 +3118.626718 +3118.658953 +3118.691620 +3118.722822 +3118.787757 +3118.823854 +3118.851660 +3118.879698 +3118.974670 +3119.010700 +3119.036774 +3119.086158 +3119.106538 +3119.121756 +3119.131080 +3119.166078 +3119.191952 +3119.210101 +3119.229781 +3119.256355 +3119.294450 +3119.344466 +3119.360084 +3119.395182 +3119.499211 +3119.547030 +3119.584293 +3119.631579 +3119.678565 +3119.721822 +3119.762648 +3119.800743 +3119.883094 +3119.912564 +3119.952091 +3119.999211 +3120.044865 +3120.085092 +3120.180729 +3120.225584 +3120.268641 +3120.304572 +3120.349427 +3120.387556 +3120.436606 +3120.484159 +3120.532344 +3120.572504 +3120.611998 +3120.666843 +3120.722287 +3120.769340 +3120.812830 +3120.854422 +3120.948094 +3120.996346 +3121.043166 +3121.089087 +3121.137272 +3121.179496 +3121.227948 +3121.278031 +3121.325284 +3121.362713 +3121.402939 +3121.427148 +3121.473535 +3121.500208 +3121.536838 +3121.574934 +3121.620155 +3121.740002 +3121.919156 +3122.021986 +3122.059615 +3122.147660 +3122.189385 +3122.203871 +3122.206901 +3122.366874 +3122.387720 +3122.444630 +3122.540500 +3122.564210 +3122.589085 +3122.647960 +3122.673734 +3122.690017 +3122.739801 +3122.822984 +3122.859115 +3122.956118 +3122.990683 +3123.037237 +3123.076297 +3123.174566 +3123.280193 +3123.310729 +3123.427013 +3123.584455 +3123.686686 +3123.739667 +3123.807133 +3123.879593 +3124.106233 +3124.360812 +3124.446459 +3124.664774 +3124.733372 +3124.953418 +3125.199805 +3125.221783 +3125.228743 +3125.235636 +3125.421050 +3125.426478 +3125.430874 +3125.441497 +3125.660078 +3125.667404 +3125.672765 +3125.677460 +3126.095642 +3126.120817 +3126.123447 +3126.125778 +3126.128775 +3126.255016 +3126.461076 +3126.464672 +3126.467503 +3126.471665 +3126.697240 +3126.699404 +3126.702601 +3126.814489 +3126.817120 +3126.819517 +3126.822947 +3126.877326 +3126.881855 +3126.969434 +3126.973696 +3126.978491 +3126.986450 +3127.098072 +3127.104132 +3127.107362 +3127.282987 +3127.285984 +3127.289114 +3127.293609 +3127.456280 +3127.459044 +3127.461375 +3127.465237 +3127.586816 +3127.590312 +3127.593109 +3127.596106 +3127.749619 +3127.752317 +3127.754881 +3127.758511 +3127.926309 +3127.929040 +3127.931671 +3127.935334 +3128.087448 +3128.090478 +3128.093009 +3128.213455 +3128.216552 +3128.219482 +3128.223545 +3128.289412 +3128.296405 +3128.365203 +3128.375393 +3128.380188 +3128.497804 +3128.507527 +3128.611224 +3128.636798 +3128.712589 +3128.718783 +3128.725776 +3128.809392 +3128.917883 +3128.938929 +3129.008559 +3129.045822 +3129.118782 +3129.169531 +3129.205129 +3129.228606 +3129.269898 +3129.304496 +3129.333001 +3129.365802 +3129.430903 +3129.462938 +3129.491942 +3129.523377 +3129.553381 +3129.584150 +3129.625309 +3129.686847 +3129.732368 +3129.785049 +3129.815085 +3129.852082 +3129.872794 +3129.881952 +3129.925408 +3129.954246 +3129.991076 +3130.075425 +3130.121911 +3130.146820 +3130.161538 +3130.196503 +3130.239161 +3130.260206 +3130.315717 +3130.332101 +3130.358408 +3130.409224 +3130.444988 +3130.463137 +3130.513653 +3130.542524 +3130.569730 +3130.603996 +3130.662837 +3130.708225 +3130.748584 +3130.793872 +3130.827239 +3130.858241 +3130.901231 +3130.935997 +3130.965400 +3130.999433 +3131.071894 +3131.090575 +3131.114251 +3131.139859 +3131.167765 +3131.183915 +3131.216516 +3131.261238 +3131.334831 +3131.401497 +3131.433399 +3131.449949 +3131.476356 +3131.506858 +3131.533265 +3131.563235 +3131.605660 +3131.666099 +3131.705726 +3131.756109 +3131.794870 +3131.834364 +3131.875223 +3131.914484 +3131.933265 +3131.994670 +3132.025639 +3132.148050 +3132.190274 +3132.313651 +3132.358972 +3132.436461 +3132.481583 +3132.515216 +3132.603361 +3132.636228 +3132.658139 +3132.686111 +3132.724806 +3132.799897 +3132.861835 +3132.921642 +3132.964999 +3133.004692 +3133.111186 +3133.145585 +3133.175488 +3133.289940 +3133.337459 +3133.416547 +3133.483213 +3133.524639 +3133.578352 +3133.635628 +3133.692970 +3133.744119 +3133.817179 +3133.856340 +3133.938391 +3133.991172 +3134.172024 +3134.255207 +3134.321907 +3134.434461 +3134.472723 +3134.497631 +3134.509120 +3134.576186 +3134.616046 +3134.697165 +3134.946449 +3134.979016 +3134.996865 +3135.014980 +3135.041653 +3135.069925 +3135.207754 +3135.259136 +3135.400761 +3135.467827 +3135.499528 +3135.538256 +3135.591836 +3135.695266 +3135.907986 +3135.923138 +3136.240986 +3136.303191 +3136.392435 +3136.484043 +3136.599328 +3137.198694 +3137.206953 +3137.214345 +3137.335690 +3137.342484 +3137.406886 +3141.054068 +3141.057964 +3141.060995 +3141.068354 +3141.293762 +3141.296159 +3141.298424 +3141.300289 +3141.302253 +3141.304784 +3141.418504 +3141.420568 +3141.422699 +3141.424997 +3141.429293 +3141.673115 +3141.679243 +3141.682040 +3142.107481 +3142.110045 +3142.112143 +3142.115073 +3142.495159 +3142.498023 +3142.500321 +3142.504150 +3142.722631 +3142.727427 +3142.730290 +3142.999121 +3143.001386 +3143.004682 +3143.177010 +3143.179774 +3143.387000 +3143.390130 +3143.392594 +3143.396290 +3143.574778 +3143.577509 +3143.579907 +3143.583703 +3143.735284 +3143.740679 +3143.744142 +3143.870815 +3143.872813 +3143.920266 +3143.923896 +3144.059327 +3144.062124 +3144.066520 +3144.202916 +3144.206479 +3144.209776 +3144.214938 +3144.334651 +3144.338714 +3144.343109 +3144.443842 +3144.448903 +3144.454365 +3144.550269 +3144.558927 +3144.571747 +3144.629090 +3144.645207 +3144.688863 +3144.711441 +3144.744208 +3144.778507 +3144.808677 +3144.831754 +3144.857628 +3144.890794 +3144.923795 +3144.955030 +3145.003881 +3145.036116 +3145.067851 +3145.134717 +3145.173445 +3145.196821 +3145.230121 +3145.264287 +3145.284534 +3145.357261 +3145.425426 +3145.459758 +3145.492392 +3145.526725 +3145.553698 +3145.597354 +3145.638946 +3145.673511 +3145.709475 +3145.781436 +3145.813937 +3145.842775 +3145.882768 +3145.916734 +3145.951566 +3145.989495 +3146.023194 +3146.058692 +3146.094756 +3146.125525 +3146.160024 +3146.188895 +3146.220497 +3146.253630 +3146.296987 +3146.299351 +3146.329754 +3146.368282 +3146.393357 +3146.434249 +3146.466484 +3146.547403 +3146.578938 +3146.631685 +3146.674043 +3146.710040 +3146.747269 +3146.787163 +3146.825624 +3146.862321 +3146.935648 +3146.968082 +3147.041575 +3147.078271 +3147.153763 +3147.197485 +3147.236213 +3147.267982 +3147.311038 +3147.354295 +3147.428421 +3147.469313 +3147.503080 +3147.570912 +3147.606576 +3147.678804 +3147.705111 +3147.729653 +3147.755793 +3147.829253 +3147.866216 +3147.907308 +3147.930885 +3147.956526 +3147.988660 +3148.038111 +3148.079736 +3148.132183 +3148.186495 +3148.281800 +3148.325023 +3148.376905 +3148.463485 +3148.521527 +3148.579102 +3148.627321 +3148.680235 +3148.720195 +3148.811903 +3148.854593 +3148.890324 +3148.929252 +3148.976771 +3149.020028 +3149.062485 +3149.148433 +3149.198116 +3149.253894 +3149.349631 +3149.409671 +3149.464982 +3149.567846 +3149.673340 +3149.738242 +3149.850996 +3149.900946 +3149.989857 +3150.090523 +3150.150430 +3150.240007 +3150.297083 +3150.423623 +3150.456190 +3150.507272 +3150.566313 +3150.585028 +3150.658687 +3151.559053 +3151.561550 +3151.565580 +3151.951593 +3151.955722 +3151.959385 +3152.611233 +3152.613930 +3152.615928 +3152.618226 +3152.621689 +3152.773903 +3152.776135 +3152.778133 +3152.780464 +3152.784992 +3153.516227 +3153.519724 +3153.521788 +3153.523853 +3153.526750 +3153.710000 +3153.712031 +3153.714595 +3153.719623 +3153.912031 +3153.914129 +3153.916127 +3153.918325 +3153.921854 +3154.163612 +3154.168041 +3154.172370 +3154.280262 +3154.282460 +3154.284591 +3154.286856 +3154.290019 +3154.804870 +3154.808001 +3154.810265 +3154.813895 +3155.011630 +3155.026782 +3155.262146 +3155.264211 +3155.267274 +3155.447627 +3155.449792 +3155.522086 +3155.525616 +3155.528912 +3155.534140 +3155.665209 +3155.668306 +3155.671436 +3155.811263 +3155.814693 +3155.817790 +3155.820354 +3155.824650 +3155.969505 +3155.972302 +3155.974733 +3155.978029 +3156.202738 +3156.205302 +3156.207633 +3156.210796 +3156.398242 +3156.401073 +3156.403437 +3156.407133 +3156.568172 +3156.570936 +3156.573300 +3156.719054 +3156.721718 +3156.724116 +3156.727013 +3156.736936 +3156.917955 +3156.920619 +3156.922850 +3156.925581 +3157.070636 +3157.073200 +3157.075464 +3157.078628 +3157.217589 +3157.220386 +3157.222883 +3157.226347 +3157.377628 +3157.381158 +3157.387252 +3157.478128 +3157.482324 +3157.485554 +3157.488817 +3157.495244 +3157.649456 +3157.652287 +3157.655450 +3157.752820 +3157.756016 +3157.761011 +3157.881457 +3157.884554 +3157.887685 +3158.019886 +3158.023249 +3158.026046 +3158.030142 +3158.123948 +3158.127544 +3158.134870 +3158.240998 +3158.245127 +3158.249422 +3158.269369 +3158.340232 +3158.346858 +3158.356249 +3158.413225 +3158.425846 +3158.460944 +3158.479792 +3158.506032 +3158.558846 +3158.610561 +3158.637134 +3158.662609 +3158.693678 +3158.717687 +3158.740664 +3158.771700 +3158.826678 +3158.857048 +3158.880224 +3158.904933 +3158.933704 +3158.962276 +3158.989348 +3159.015023 +3159.043261 +3159.069535 +3159.093811 +3159.122149 +3159.152285 +3159.178859 +3159.195875 +3159.215056 +3159.246524 +3159.274063 +3159.300637 +3159.313757 +3159.346424 +3159.373397 +3159.402668 +3159.431140 +3159.509761 +3159.538232 +3159.566970 +3159.593410 +3159.644459 +3159.670567 +3159.694609 +3159.721016 +3159.749920 +3159.772731 +3159.801902 +3159.824546 +3159.855415 +3159.912924 +3159.967236 +3159.992944 +3160.105564 +3160.131339 +3160.162974 +3160.190346 +3160.212124 +3160.243027 +3160.266370 +3160.295374 +3160.322281 +3160.348921 +3160.377392 +3160.424112 +3160.453583 +3160.480090 +3160.501701 +3160.527709 +3160.602667 +3160.631405 +3160.664771 +3160.690446 +3160.715021 +3160.743393 +3160.770998 +3160.774495 +3160.801601 +3160.831571 +3160.865004 +3160.893809 +3160.945923 +3161.001967 +3161.030439 +3161.084651 +3161.111824 +3161.139363 +3161.170598 +3161.307128 +3161.340362 +3161.370165 +3161.417385 +3161.460941 +3161.470132 +3161.473329 +3161.528374 +3161.558110 +3161.626375 +3161.659176 +3161.692276 +3161.720015 +3161.781587 +3161.837031 +3161.889878 +3161.921846 +3161.996905 +3162.031104 +3162.155113 +3162.193574 +3162.228673 +3162.267500 +3162.335998 +3162.374793 +3162.400101 +3162.440494 +3162.475659 +3162.503731 +3162.568066 +3162.632468 +3162.658742 +3162.689644 +3162.740660 +3162.776757 +3162.809891 +3162.841626 +3162.883950 +3162.910823 +3162.947353 +3162.991809 +3163.019048 +3163.122711 +3163.164169 +3163.212088 +3163.247220 +3163.286947 +3163.315918 +3163.408791 +3163.446587 +3163.479421 +3163.606194 +3163.647486 +3163.684549 +3163.749783 +3163.826440 +3163.860139 +3163.901998 +3163.938861 +3163.993373 +3164.026906 +3164.098501 +3164.137462 +3164.186113 +3164.220579 +3164.260306 +3164.308258 +3164.359073 +3164.450415 +3164.494604 +3164.535064 +3164.577821 +3164.612686 +3164.820112 +3164.874757 +3164.914318 +3164.965699 +3165.032499 +3165.094504 +3165.130268 +3165.188310 +3165.263435 +3165.294737 +3165.355975 +3165.386245 +3165.431000 +3165.466698 +3165.493271 +3165.532998 +3165.684880 +3165.735928 +3165.789775 +3165.837793 +3165.882848 +3165.972791 +3166.024473 +3166.067596 +3166.123740 +3166.185612 +3166.242355 +3166.290706 +3166.343221 +3166.404226 +3166.459771 +3166.515415 +3166.565165 +3166.616713 +3166.672491 +3166.723240 +3166.770959 +3166.823007 +3166.882281 +3166.961535 +3167.005324 +3167.053676 +3167.132431 +3167.171758 +3167.215780 +3167.266097 +3167.402827 +3167.474388 +3167.524138 +3167.627568 +3167.685643 +3167.741321 +3167.796566 +3167.848314 +3167.892403 +3167.946649 +3168.001760 +3168.053009 +3168.112017 +3168.163598 +3168.218310 +3168.306322 +3168.414148 +3168.478650 +3168.535360 +3168.649912 +3168.704057 +3168.764530 +3168.822905 +3168.981147 +3169.032895 +3169.089571 +3169.135892 +3169.181146 +3169.229665 +3169.288739 +3169.342385 +3169.409917 +3169.473221 +3169.531529 +3169.581246 +3169.646747 +3169.706787 +3169.772488 +3169.821139 +3169.884709 +3169.968325 +3169.982145 +3170.039021 +3170.126334 +3170.188272 +3170.224968 +3170.249610 +3170.284409 +3170.351575 +3170.371588 +3170.404522 +3170.531262 +3170.566426 +3170.594965 +3170.660133 +3170.780545 +3170.820239 +3170.853839 +3170.888371 +3170.998660 +3171.047611 +3171.200791 +3171.247711 +3171.296762 +3171.410848 +3171.450375 +3171.513645 +3171.562163 +3171.624534 +3171.666725 +3171.722070 +3171.770355 +3171.820671 +3172.028929 +3172.106618 +3172.193065 +3172.242515 +3172.294796 +3172.385639 +3172.414610 +3172.434923 +3172.569555 +3172.694463 +3172.809514 +3172.876681 +3173.091699 +3173.262228 +3173.294063 +3173.310979 +3173.522900 +3173.561995 +3173.562594 +3173.607715 +3173.659830 +3173.835121 +3173.886203 +3174.132557 +3174.226829 +3174.311045 +3174.457831 +3174.524931 +3174.568287 +3174.699556 +3174.741481 +3175.045543 +3175.054933 +3175.065789 +3175.245776 +3175.250138 +3175.254833 +3175.264823 +3175.539848 +3175.544843 +3175.549272 +3175.702818 +3175.707214 +3175.711809 +3175.715972 +3175.938283 +3175.945209 +3176.061859 +3176.070117 +3176.083837 +3176.192328 +3176.201985 +3176.347240 +3176.355132 +3176.462491 +3176.493127 +3176.538149 +3176.570949 +3176.602285 +3176.639814 +3176.690796 +3176.728991 +3176.802617 +3176.913273 +3176.988731 +3177.023663 +3177.062291 +3177.134951 +3177.164289 +3177.182637 +3177.185701 +3177.237382 +3177.270915 +3177.341378 +3177.376609 +3177.449936 +3177.487199 +3177.546872 +3177.569250 +3177.593293 +3177.612573 +3177.636083 +3177.665620 +3177.686666 +3177.739113 +3177.866353 +3177.904381 +3177.989396 +3178.029256 +3178.071980 +3178.116169 +3178.145906 +3178.178207 +3178.207544 +3178.236615 +3178.266718 +3178.276475 +3178.334018 +3178.384134 +3178.450368 +3178.499585 +3178.549902 +3178.593525 +3178.644174 +3178.688729 +3178.731686 +3178.777074 +3178.820764 +3178.866884 +3178.900584 +3178.939645 +3178.979538 +3179.014836 +3179.053897 +3179.091393 +3179.129455 +3179.160291 +3179.195589 +3179.227690 +3179.299185 +3179.329821 +3179.361822 +3179.385499 +3179.409008 +3179.431053 +3179.447004 +3179.474842 +3179.500617 +3179.518898 +3179.543607 +3179.578206 +3179.612638 +3179.652232 +3179.680470 +3179.700683 +3179.724126 +3179.746937 +3179.781136 +3179.827922 +3179.862654 +3179.904612 +3179.978805 +3180.018964 +3180.053530 +3180.103213 +3180.138412 +3180.174176 +3180.202780 +3180.270646 +3180.306377 +3180.334915 +3180.335814 +3180.387429 +3180.429387 +3180.470346 +3180.512937 +3180.549900 +3180.577672 +3180.609873 +3180.641941 +3180.674308 +3180.695920 +3180.721927 +3180.740409 +3180.759790 +3180.795287 +3180.840276 +3180.885830 +3180.921061 +3180.960389 +3180.997885 +3181.033049 +3181.071711 +3181.110505 +3181.150965 +3181.224658 +3181.255693 +3181.291591 +3181.324724 +3181.359722 +3181.395986 +3181.432649 +3181.468414 +3181.501447 +3181.534681 +3181.568713 +3181.629919 +3181.664118 +3181.694454 +3181.731583 +3181.763085 +3181.799782 +3181.836245 +3181.867514 +3181.894853 +3181.921726 +3181.944271 +3181.971843 +3181.997384 +3182.025190 +3182.051563 +3182.109938 +3182.122525 +3182.143837 +3182.169279 +3182.214600 +3182.262119 +3182.310437 +3182.355292 +3182.395486 +3182.437044 +3182.478036 +3182.513701 +3182.545635 +3182.608939 +3182.639341 +3182.671576 +3182.713101 +3182.754892 +3182.796751 +3182.840507 +3182.885395 +3182.926554 +3182.969178 +3183.005342 +3183.084329 +3183.119661 +3183.161952 +3183.200946 +3183.239574 +3183.275005 +3183.307806 +3183.376570 +3183.408671 +3183.444136 +3183.474239 +3183.508505 +3183.538841 +3183.571309 +3183.668478 +3183.726387 +3183.758854 +3183.787792 +3183.821558 +3183.850329 +3183.882863 +3183.945867 +3183.974272 +3184.000479 +3184.021824 +3184.039507 +3184.095850 +3184.122657 +3184.155957 +3184.189789 +3184.224521 +3184.257988 +3184.291588 +3184.325154 +3184.358387 +3184.453259 +3184.476436 +3184.507338 +3184.534744 +3184.590522 +3184.616296 +3184.652360 +3184.684827 +3184.766446 +3184.789223 +3184.813698 +3184.854291 +3184.877967 +3184.892619 +3184.913831 +3185.050062 +3185.092985 +3185.127984 +3185.169043 +3185.205673 +3185.276302 +3185.311433 +3185.342802 +3185.379499 +3185.412466 +3185.447730 +3185.554290 +3185.589622 +3185.623521 +3185.681629 +3185.747697 +3185.777966 +3185.804573 +3185.845565 +3185.879665 +3185.899744 +3185.926118 +3185.995382 +3186.044466 +3186.134676 +3186.185558 +3186.273770 +3186.314962 +3186.356354 +3186.388888 +3186.430114 +3186.465112 +3186.502907 +3186.538705 +3186.575901 +3186.609634 +3186.688755 +3186.730246 +3186.764113 +3186.800909 +3186.845431 +3186.920623 +3186.963180 +3187.004638 +3187.044265 +3187.085557 +3187.119290 +3187.158618 +3187.194648 +3187.265144 +3187.342667 +3187.423453 +3187.461082 +3187.543765 +3187.623053 +3187.669939 +3187.705770 +3187.741867 +3187.779396 +3187.854421 +3187.887988 +3187.946029 +3187.974301 +3188.016526 +3188.097544 +3188.130545 +3188.168074 +3188.199909 +3188.240335 +3188.401607 +3188.441334 +3188.478363 +3188.515193 +3188.556518 +3188.589852 +3188.664577 +3188.699608 +3188.731876 +3188.808366 +3188.847094 +3188.954620 +3188.993581 +3189.027580 +3189.108666 +3189.142332 +3189.176464 +3189.210830 +3189.245029 +3189.275932 +3189.316025 +3189.356684 +3189.390317 +3189.435738 +3189.470237 +3189.504802 +3189.541765 +3189.615658 +3189.651522 +3189.684856 +3189.722418 +3189.756317 +3189.789684 +3189.825215 +3189.899874 +3189.930909 +3189.971102 +3190.042331 +3190.078029 +3190.098442 +3190.121485 +3190.178029 +3190.202371 +3190.248758 +3190.277962 +3190.299507 +3190.323350 +3190.421152 +3190.470136 +3190.520153 +3190.605867 +3190.643030 +3190.677429 +3190.713992 +3190.747259 +3190.804635 +3190.855051 +3190.873965 +3190.895244 +3190.953685 +3191.015890 +3191.056116 +3191.092380 +3191.134638 +3191.170702 +3191.219886 +3191.255683 +3191.282423 +3191.316755 +3191.348956 +3191.377028 +3191.429243 +3191.450755 +3191.472300 +3191.498573 +3191.530375 +3191.560378 +3191.593911 +3191.635803 +3191.672166 +3191.709562 +3191.742196 +3191.780058 +3191.817521 +3191.847391 +3191.882422 +3191.915256 +3191.952785 +3191.983921 +3192.019052 +3192.051886 +3192.087051 +3192.118486 +3192.150587 +3192.211426 +3192.241363 +3192.270501 +3192.320917 +3192.342495 +3192.359079 +3192.383221 +3192.407264 +3192.432039 +3192.453484 +3192.483354 +3192.516621 +3192.553917 +3192.590514 +3192.626344 +3192.661376 +3192.696508 +3192.729341 +3192.796874 +3192.849221 +3192.870267 +3192.895142 +3192.919951 +3192.940796 +3192.960244 +3192.976094 +3193.062808 +3193.096607 +3193.129974 +3193.172265 +3193.207163 +3193.242661 +3193.278425 +3193.313124 +3193.348255 +3193.415488 +3193.450353 +3193.519384 +3193.552717 +3193.585684 +3193.615288 +3193.640130 +3193.658744 +3193.680922 +3193.728774 +3193.771232 +3193.803133 +3193.831505 +3193.872497 +3193.913856 +3193.991644 +3194.032404 +3194.074129 +3194.139496 +3194.176326 +3194.216553 +3194.286050 +3194.355813 +3194.427741 +3194.460575 +3194.493942 +3194.529806 +3194.603499 +3194.635333 +3194.658743 +3194.689546 +3194.712989 +3194.756512 +3194.786582 +3194.815620 +3194.893975 +3194.924944 +3194.967934 +3195.028873 +3195.074128 +3195.102066 +3195.133535 +3195.175160 +3195.203465 +3195.328473 +3195.365602 +3195.398037 +3195.424543 +3195.461074 +3195.533834 +3195.559741 +3195.586848 +3195.595039 +3195.604996 +3195.630670 +3195.660940 +3195.685482 +3195.700034 +3195.742492 +3195.791343 +3195.822312 +3195.862871 +3195.903597 +3195.929571 +3195.958209 +3195.987513 +3196.002199 +3196.045755 +3196.129238 +3196.194739 +3196.217383 +3196.255645 +3196.329304 +3196.369498 +3196.393374 +3196.396937 +3196.488745 +3196.526740 +3196.569131 +3196.680386 +3196.722977 +3196.765634 +3196.805927 +3196.828338 +3196.853513 +3196.884649 +3196.890543 +3196.908025 +3197.007426 +3197.079520 +3197.152381 +3197.221878 +3197.321678 +3197.418747 +3197.520445 +3197.561804 +3197.614052 +3197.709856 +3197.752247 +3197.809290 +3197.861371 +3197.915150 +3197.961504 +3198.067698 +3198.108723 +3198.155210 +3198.241957 +3198.334830 +3198.368929 +3198.391307 +3198.400698 +3198.439559 +3198.471327 +3198.495403 +3198.561403 +3198.601996 +3198.647051 +3198.723008 +3198.760937 +3198.798499 +3198.938959 +3198.987044 +3199.020744 +3199.068629 +3199.112485 +3199.153744 +3199.196168 +3199.239225 +3199.289375 +3199.319744 +3199.364466 +3199.400963 +3199.442988 +3199.474856 +3199.498532 +3199.533464 +3199.558006 +3199.592638 +3199.614749 +3199.644386 +3199.693171 +3199.739158 +3199.787709 +3199.886510 +3199.922807 +3200.026770 +3200.074023 +3200.120010 +3200.189773 +3200.272024 +3200.318944 +3200.364998 +3200.454375 +3200.489507 +3200.554342 +3200.622107 +3200.663366 +3200.698831 +3200.755907 +3200.807722 +3200.858071 +3200.911484 +3200.953176 +3200.996100 +3201.045417 +3201.093036 +3201.141854 +3201.197165 +3201.242520 +3201.289206 +3201.375253 +3201.413848 +3201.536858 +3201.619542 +3201.659402 +3201.702359 +3201.749279 +3201.785043 +3201.823372 +3201.854507 +3201.889639 +3201.927001 +3201.971257 +3202.052975 +3202.099295 +3202.126168 +3202.138057 +3202.168759 +3202.231663 +3202.277017 +3202.335892 +3202.377084 +3202.398662 +3202.430364 +3202.526901 +3202.572788 +3202.615279 +3202.700593 +3202.744416 +3202.788106 +3202.825801 +3202.867626 +3202.943584 +3202.979681 +3203.018708 +3203.042884 +3203.101625 +3203.138522 +3203.177749 +3203.225235 +3203.299094 +3203.340420 +3203.383776 +3203.477549 +3203.519307 +3203.638754 +3203.676716 +3203.713113 +3203.751342 +3203.834925 +3203.943882 +3203.983210 +3204.024635 +3204.066493 +3204.100559 +3204.139853 +3204.176416 +3204.244481 +3204.316742 +3204.354105 +3204.393133 +3204.435856 +3204.477082 +3204.559100 +3204.643249 +3204.680478 +3204.718107 +3204.757368 +3204.789969 +3204.835523 +3204.885573 +3204.913179 +3204.938620 +3204.963362 +3204.974451 +3205.055303 +3205.072952 +3205.098693 +3205.164394 +3205.190534 +3205.215876 +3205.244647 +3205.283741 +3205.297660 +3205.312079 +3205.395762 +3205.452505 +3205.499991 +3205.573051 +3205.602389 +3205.633291 +3205.663261 +3205.716741 +3205.803388 +3205.835156 +3205.871186 +3205.984939 +3206.048442 +3206.126364 +3206.288036 +3206.334056 +3206.384706 +3206.410846 +3206.445345 +3206.506917 +3206.584506 +3206.623733 +3206.667589 +3206.747909 +3206.806384 +3206.856567 +3206.984872 +3207.031858 +3207.088368 +3207.131725 +3207.203619 +3207.391964 +3207.588001 +3207.836919 +3208.096359 +3208.328693 +3208.542512 +3208.727094 +3208.863524 +3209.079208 +3209.289165 +3209.466221 +3209.700087 +3209.875078 +3210.136916 +3210.141678 +3210.258761 +3210.263090 +3210.278674 +3210.299320 +3210.307812 +3210.400419 +3210.426360 +3212.198153 +3212.972878 +3212.975109 +3212.977540 +3212.980703 +3214.166616 +3214.171444 +3214.173909 +3214.176439 +3214.181335 +3214.736479 +3214.738710 +3214.741707 +3214.746136 +3214.921627 +3214.924657 +3214.928187 +3215.209172 +3215.214234 +3215.218197 +3215.449798 +3215.455859 +3215.472575 +3215.658756 +3215.670211 +3215.733647 +3215.769378 +3215.829585 +3215.881000 +3216.071043 +3216.187327 +3216.308572 +3216.368445 +3216.438642 +3216.815231 +3216.912567 +3217.865880 +3217.879399 +3218.369009 +3218.467178 +3218.562216 +3218.652459 +3218.782429 +3218.856754 +3218.947897 +3219.494316 +3219.672604 +3219.849527 +3219.978498 +3220.099277 +3220.175767 +3220.468708 +3220.637405 +3220.764445 +3221.110798 +3221.566409 +3221.569239 +3221.572170 +3221.575733 +3221.816359 +3221.819289 +3221.822153 +3221.827214 +3222.007334 +3222.011297 +3222.022585 +3222.121120 +3222.126881 +3222.135772 +3222.313661 +3222.320654 +3222.466008 +3222.568406 +3222.635505 +3222.790550 +3222.883723 +3223.169304 +3223.347493 +3223.356817 +3223.371901 +3223.719287 +3223.852021 +3223.949756 +3223.958381 +3224.057782 +3224.064941 +3224.101837 +3224.578760 +3224.612160 +3224.673099 +3224.686585 +3224.707498 +3225.142263 +3225.163874 +3227.613955 +3227.617452 +3227.620748 +3228.252449 +3228.262506 +3228.265070 +3228.267268 +3228.274627 +3228.471830 +3228.474361 +3228.478789 +3228.685649 +3228.688846 +3228.850884 +3228.854480 +3229.026941 +3229.033900 +3229.228772 +3229.235732 +3229.456278 +3229.596737 +3229.637929 +3230.013919 +3230.101898 +3230.157742 +3230.181452 +3230.198834 +3230.199634 +3230.289044 +3230.294805 +3230.301532 +3230.385481 +3230.400799 +3230.496769 +3230.518581 +3230.597835 +3230.642424 +3230.746919 +3230.849183 +3230.916083 +3230.971494 +3231.025307 +3231.101830 +3231.160705 +3231.227438 +3231.330468 +3231.405560 +3231.493938 +3231.599299 +3231.805693 +3231.904194 +3232.004061 +3232.063668 +3232.117647 +3232.151813 +3232.224906 +3232.303394 +3232.382881 +3232.454943 +3232.494303 +3232.573990 +3232.605492 +3232.822342 +3232.890773 +3232.919111 +3232.948648 +3233.022907 +3233.077852 +3233.127303 +3233.151512 +3233.202494 +3233.429034 +3233.443453 +3233.536360 +3233.591705 +3233.646949 +3233.690939 +3233.702227 +3233.757439 +3233.818977 +3233.924738 +3233.992037 +3234.139923 +3234.264764 +3234.327768 +3234.427934 +3234.525304 +3234.600062 +3234.640655 +3234.805690 +3234.905456 +3234.979516 +3235.063232 +3235.246115 +3235.307620 +3235.389072 +3235.424437 +3235.570058 +3235.694733 +3235.850977 +3235.934360 +3236.046081 +3236.146048 +3236.213480 +3236.272355 +3236.305688 +3236.362731 +3236.437323 +3236.493034 +3236.623537 +3236.824469 +3236.944782 +3237.114179 +3237.625567 +3237.668191 +3237.901291 +3237.910648 +3237.954538 +3238.142649 +3238.165660 +3238.225533 +3238.249509 +3238.302456 +3238.331593 +3238.379512 +3238.446245 +3238.506252 +3238.555136 +3238.599692 +3238.648876 +3238.758733 +3238.816608 +3238.875283 +3238.936288 +3238.988469 +3239.051107 +3239.098226 +3239.156834 +3239.222069 +3239.282941 +3239.339351 +3239.389568 +3239.443647 +3239.486171 +3239.554636 +3239.593763 +3239.647709 +3239.701023 +3239.778345 +3239.819870 +3239.886803 +3239.916574 +3239.974749 +3239.983540 +3239.983939 +3239.985438 +3240.046277 +3240.078012 +3240.104785 +3240.123400 +3240.158465 +3240.195628 +3240.245844 +3240.256100 +3240.347842 +3240.420169 +3240.465291 +3240.586370 +3240.618038 +3240.658331 +3240.684638 +3240.738950 +3240.792597 +3240.818071 +3240.886869 +3240.952537 +3241.081807 +3241.136053 +3241.187668 +3241.288101 +3241.325963 +3241.463925 +3241.576112 +3241.634953 +3241.656998 +3241.685003 +3241.738250 +3241.769652 +3241.788100 +3241.815106 +3241.829126 +3241.838483 +3241.859129 +3241.939948 +3241.967554 +3241.970085 +3241.987034 +3242.020601 +3242.320068 +3242.463857 +3242.514406 +3242.667720 +3242.681106 +3242.703917 +3242.720134 +3242.744310 +3242.769218 +3242.792495 +3242.803817 +3242.824896 +3242.897257 +3243.025062 +3243.048572 +3243.108845 +3243.121166 +3243.126827 +3243.197822 +3243.216670 +3243.245941 +3243.256497 +3243.274312 +3243.337150 +3243.984468 +3244.042643 +3244.107911 +3244.212906 +3244.354465 +3244.379839 +3244.504081 +3244.689296 +3244.802350 +3245.290528 +3245.493424 +3245.501217 +3245.506711 +3245.601550 +3245.617300 +3245.704180 +3245.710674 +3245.959225 +3245.964087 +3245.968083 +3246.669580 +3246.672278 +3246.674675 +3246.677806 +3246.811006 +3246.814336 +3246.820796 +3246.983633 +3246.989727 +3246.994555 +3247.123659 +3247.126989 +3247.130086 +3247.134282 +3247.291291 +3247.294222 +3247.297019 +3247.301115 +3247.486929 +3247.490159 +3247.493123 +3247.497452 +3247.617665 +3247.622094 +3247.624991 +3247.628254 +3247.634947 +3247.715667 +3247.721860 +3247.725557 +3247.728853 +3247.733649 +3247.905843 +3247.908574 +3247.911104 +3247.915800 +3248.026955 +3248.030485 +3248.036412 +3248.108773 +3248.113568 +3248.119096 +3248.130085 +3248.220994 +3248.228886 +3248.240808 +3248.297118 +3248.318097 +3248.342839 +3248.361720 +3248.380967 +3248.397717 +3248.419995 +3248.438809 +3248.473808 +3248.515932 +3248.555359 +3248.591124 +3248.629219 +3248.666615 +3248.704943 +3248.739575 +3248.775539 +3248.804910 +3248.841673 +3248.875439 +3248.913967 +3249.022092 +3249.095885 +3249.130917 +3249.166414 +3249.199981 +3249.240740 +3249.275006 +3249.318562 +3249.358456 +3249.388892 +3249.413900 +3249.444936 +3249.474972 +3249.492122 +3249.503377 +3249.522891 +3249.523191 +3249.538375 +3249.551163 +3249.579301 +3249.607839 +3249.637843 +3249.723390 +3249.767646 +3249.810769 +3249.852827 +3249.893753 +3249.932714 +3249.974406 +3250.015231 +3250.056723 +3250.099614 +3250.138075 +3250.177669 +3250.218262 +3250.258721 +3250.301545 +3250.333546 +3250.399347 +3250.422024 +3250.449597 +3250.487425 +3250.508804 +3250.530682 +3250.546400 +3250.579533 +3250.653692 +3250.677369 +3250.730316 +3250.777835 +3250.829783 +3250.876369 +3250.919326 +3250.971474 +3251.019426 +3251.063782 +3251.107738 +3251.154691 +3251.200445 +3251.248597 +3251.292986 +3251.331980 +3251.376602 +3251.419226 +3251.459086 +3251.505340 +3251.597881 +3251.643135 +3251.688290 +3251.734111 +3251.779166 +3251.870308 +3251.906671 +3251.949129 +3252.027284 +3252.075935 +3252.126485 +3252.263081 +3252.306738 +3252.356621 +3252.415063 +3252.463647 +3252.523820 +3252.573504 +3252.622122 +3252.668442 +3252.757586 +3252.810533 +3252.856387 +3252.895781 +3252.943300 +3253.034642 +3253.082861 +3253.154023 +3253.218358 +3253.299777 +3253.354056 +3253.401375 +3253.497712 +3253.543033 +3253.584758 +3253.636906 +3253.682061 +3253.731745 +3253.763446 +3253.796946 +3253.817392 +3253.837372 +3253.905304 +3253.930945 +3254.015028 +3254.065277 +3254.126649 +3254.172470 +3254.201907 +3254.282893 +3254.333942 +3254.385324 +3254.450225 +3254.520888 +3254.581061 +3254.755287 +3254.818890 +3254.926249 +3255.034973 +3255.078430 +3255.208666 +3255.252389 +3255.312429 +3255.386422 +3255.438336 +3255.501207 +3255.551656 +3255.668972 +3255.731476 +3255.799941 +3255.904836 +3256.006068 +3256.100507 +3256.169904 +3256.244030 +3256.309165 +3256.369937 +3256.408965 +3256.453786 +3256.497243 +3256.558915 +3256.605801 +3256.642065 +3256.675398 +3256.837569 +3256.924615 +3256.978961 +3257.077096 +3257.104668 +3257.164741 +3257.226013 +3257.291182 +3257.361811 +3257.408231 +3257.477795 +3257.505334 +3257.566206 +3257.651687 +3257.933172 +3258.004900 +3258.074298 +3258.114591 +3258.157981 +3258.240465 +3258.297508 +3258.378027 +3258.435469 +3258.474264 +3258.510827 +3258.561477 +3258.601070 +3258.668569 +3258.717321 +3258.885053 +3259.409328 +3259.810193 +3259.813390 +3259.816121 +3259.820416 +3260.017020 +3260.020549 +3260.108495 +3260.115355 +3260.121182 +3260.250386 +3260.253616 +3260.260842 +3260.397472 +3260.400769 +3260.409160 +3260.519950 +3260.524179 +3260.528008 +3260.536033 +3260.651451 +3260.655481 +3260.659443 +3260.725277 +3260.739297 +3260.779923 +3260.804798 +3260.835034 +3260.872497 +3260.928074 +3260.958377 +3260.980322 +3261.009726 +3261.031271 +3261.051950 +3261.080389 +3261.108594 +3261.140662 +3261.170731 +3261.197038 +3261.259309 +3261.314954 +3261.346056 +3261.375193 +3261.409359 +3261.438463 +3261.470465 +3261.507761 +3261.537231 +3261.567534 +3261.599902 +3261.629972 +3261.660907 +3261.691876 +3261.718783 +3261.750385 +3261.778690 +3261.807294 +3261.843325 +3261.871397 +3261.902099 +3261.931770 +3261.963904 +3261.993641 +3262.023245 +3262.048186 +3262.072495 +3262.102532 +3262.129505 +3262.187380 +3262.215819 +3262.268499 +3262.307094 +3262.339195 +3262.372029 +3262.407593 +3262.437963 +3262.468333 +3262.494540 +3262.528739 +3262.571729 +3262.605662 +3262.676791 +3262.718615 +3262.752615 +3262.792608 +3262.864303 +3262.898935 +3262.933500 +3262.974626 +3263.018815 +3263.096737 +3263.135698 +3263.167932 +3263.203663 +3263.241858 +3263.274359 +3263.305927 +3263.337030 +3263.374759 +3263.411688 +3263.451049 +3263.493673 +3263.529171 +3263.572860 +3263.608125 +3263.638361 +3263.659474 +3263.711688 +3263.752580 +3263.785714 +3263.831968 +3263.863702 +3263.906893 +3263.953113 +3264.043622 +3264.085880 +3264.127405 +3264.162304 +3264.368331 +3264.406559 +3264.438194 +3264.478221 +3264.515250 +3264.554644 +3264.591740 +3264.633732 +3264.670295 +3264.715383 +3264.754511 +3264.803895 +3264.840125 +3264.883715 +3264.917681 +3264.954411 +3264.986412 +3265.049649 +3265.091840 +3265.129635 +3265.171693 +3265.205692 +3265.258540 +3265.293738 +3265.355742 +3265.473791 +3265.523474 +3265.597334 +3265.639358 +3265.680617 +3265.706524 +3265.770294 +3265.970494 +3266.009588 +3266.173857 +3266.218978 +3266.339557 +3266.442554 +3266.528568 +3266.626370 +3266.701728 +3266.873689 +3266.894236 +3266.957073 +3267.037725 +3267.376186 +3267.406256 +3267.834461 +3267.837724 +3267.840721 +3267.845583 +3268.035660 +3268.038923 +3268.041853 +3268.046282 +3268.305123 +3268.309053 +3268.474587 +3268.477118 +3268.487441 +3268.644517 +3268.646948 +3268.650178 +3268.821773 +3268.824403 +3268.826368 +3268.829265 +3268.959235 +3268.961633 +3268.965329 +3269.100727 +3269.103790 +3269.106787 +3269.111583 +3269.238056 +3269.241153 +3269.244083 +3269.248412 +3269.366661 +3269.369891 +3269.374986 +3269.482645 +3269.486208 +3269.490270 +3269.495532 +3269.593367 +3269.598429 +3269.604656 +3269.635059 +3269.665462 +3269.685042 +3269.694199 +3269.725535 +3269.743850 +3269.777216 +3269.801925 +3269.825734 +3269.846414 +3269.873220 +3269.927433 +3269.946680 +3269.978482 +3270.006720 +3270.034093 +3270.061365 +3270.090469 +3270.145947 +3270.173087 +3270.204955 +3270.231562 +3270.254272 +3270.287073 +3270.315111 +3270.345248 +3270.371954 +3270.397729 +3270.408118 +3270.455537 +3270.483709 +3270.508684 +3270.520939 +3270.550542 +3270.569457 +3270.597795 +3270.627399 +3270.658268 +3270.687505 +3270.714511 +3270.741817 +3270.806120 +3270.864228 +3270.922137 +3270.947345 +3270.974851 +3271.005121 +3271.037954 +3271.070255 +3271.100492 +3271.131094 +3271.161231 +3271.186372 +3271.247311 +3271.268057 +3271.298394 +3271.330162 +3271.357435 +3271.367425 +3271.385140 +3271.417874 +3271.465526 +3271.500891 +3271.526965 +3271.559832 +3271.599526 +3271.628330 +3271.697061 +3271.728197 +3271.762895 +3271.794197 +3271.827997 +3271.858100 +3271.893365 +3271.924034 +3271.956768 +3271.988336 +3272.019472 +3272.053105 +3272.116441 +3272.148210 +3272.178846 +3272.206418 +3272.234157 +3272.263627 +3272.290367 +3272.317374 +3272.374516 +3272.401723 +3272.427164 +3272.474183 +3272.496461 +3272.520304 +3272.546444 +3272.566291 +3272.591732 +3272.615875 +3272.646178 +3272.721369 +3272.748276 +3272.800357 +3272.856034 +3272.888236 +3272.922102 +3272.955801 +3272.989834 +3273.021036 +3273.083107 +3273.115741 +3273.148975 +3273.184239 +3273.215974 +3273.279178 +3273.313610 +3273.344878 +3273.402587 +3273.436054 +3273.509314 +3273.537019 +3273.561895 +3273.582074 +3273.609214 +3273.667822 +3273.729294 +3273.760762 +3273.793629 +3273.825997 +3273.860429 +3273.891531 +3273.998258 +3274.029293 +3274.148874 +3274.178411 +3274.221135 +3274.301055 +3274.324331 +3274.344678 +3274.413775 +3274.496059 +3274.526462 +3274.543246 +3274.564624 +3274.623365 +3274.671317 +3274.712809 +3274.754434 +3274.785670 +3274.848640 +3274.896892 +3274.913009 +3274.930525 +3274.945310 +3274.970818 +3274.991930 +3275.019868 +3275.090365 +3275.104184 +3275.154434 +3275.158297 +3275.190931 +3275.273648 +3275.310378 +3275.351570 +3275.455133 +3275.491796 +3275.531123 +3275.577310 +3275.613341 +3275.636951 +3275.753501 +3275.785702 +3275.907613 +3276.019534 +3276.114939 +3276.154966 +3276.199787 +3276.249338 +3276.286034 +3276.365322 +3276.400054 +3276.466587 +3276.535784 +3276.625761 +3276.683803 +3276.749504 +3276.781039 +3276.807612 +3276.856430 +3276.946773 +3276.983103 +3277.067119 +3277.112107 +3277.114572 +3277.124728 +3277.142677 +3277.327891 +3277.456962 +3278.264620 +3278.270515 +3278.276076 +3278.494557 +3278.501850 +3278.627491 +3278.757261 +3278.792958 +3278.826724 +3278.995955 +3279.084034 +3279.245106 +3279.258659 +3279.298652 +3279.370147 +3279.444906 +3279.866284 +3280.245071 +3280.327489 +3280.331651 +3280.333783 +3280.336546 +3280.610839 +3280.614169 +3280.620262 +3280.959889 +3280.963819 +3280.966716 +3280.973376 +3281.254161 +3281.256958 +3281.261088 +3281.396785 +3281.399782 +3281.404877 +3281.487494 +3281.491157 +3281.496952 +3281.499616 +3281.725756 +3281.729319 +3281.732549 +3281.739142 +3281.952895 +3281.955992 +3281.958523 +3281.962419 +3282.133081 +3282.136978 +3282.288692 +3282.293188 +3282.414566 +3282.418196 +3282.421659 +3282.430117 +3282.546767 +3282.550231 +3282.557224 +3282.616031 +3282.625156 +3282.691756 +3282.699514 +3282.719861 +3282.758422 +3282.809971 +3282.837143 +3282.868512 +3282.888825 +3282.923490 +3282.939441 +3282.971675 +3283.044536 +3283.083330 +3283.124389 +3283.163950 +3283.202944 +3283.237110 +3283.308405 +3283.346134 +3283.381399 +3283.497149 +3283.603310 +3283.643436 +3283.683862 +3283.720459 +3283.756923 +3283.835777 +3283.869810 +3283.894318 +3283.929150 +3284.002976 +3284.064148 +3284.128417 +3284.149030 +3284.194718 +3284.213066 +3284.265081 +3284.287458 +3284.367312 +3284.407705 +3284.445234 +3284.520292 +3284.555190 +3284.638041 +3284.682430 +3284.809669 +3284.853825 +3284.904174 +3284.954424 +3284.990921 +3285.035909 +3285.074437 +3285.125020 +3285.169942 +3285.214996 +3285.270874 +3285.307837 +3285.395050 +3285.444300 +3285.482862 +3285.529482 +3285.584959 +3285.625019 +3285.656122 +3285.702342 +3285.753124 +3285.803041 +3285.923887 +3285.975136 +3286.028915 +3286.121755 +3286.155888 +3286.199311 +3286.289987 +3286.404106 +3286.462614 +3286.536440 +3286.608635 +3286.689587 +3286.749793 +3286.852990 +3286.942367 +3287.006104 +3287.099910 +3287.137738 +3287.204671 +3287.253323 +3287.307568 +3287.363912 +3287.465311 +3287.501108 +3287.539137 +3287.583625 +3287.650592 +3287.780395 +3287.818257 +3287.874468 +3287.928114 +3287.991217 +3288.077065 +3288.140568 +3288.186422 +3288.314294 +3288.370538 +3288.481493 +3288.541666 +3288.606302 +3288.657584 +3288.794680 +3288.834740 +3288.900407 +3288.949292 +3289.126115 +3289.346761 +3289.381393 +3289.670137 +3289.754985 +3289.841965 +3289.992015 +3290.193213 +3290.294745 +3290.297342 +3290.337036 +3290.410496 +3290.465740 +3290.527146 +3290.580659 +3290.587585 +3290.636370 +3290.648557 +3290.834538 +3291.083056 +3291.086319 +3291.091780 +3291.462976 +3291.464874 +3291.467371 +3291.471967 +3291.599139 +3291.601171 +3291.603701 +3291.779259 +3291.781490 +3291.783521 +3291.785886 +3291.790315 +3291.960311 +3291.962442 +3291.967171 +3291.973764 +3292.175429 +3292.177827 +3292.179791 +3292.182522 +3292.187284 +3292.360477 +3292.362675 +3292.364906 +3292.367737 +3292.536534 +3292.538532 +3292.541463 +3292.548089 +3292.690314 +3292.692745 +3292.695042 +3292.698272 +3292.833404 +3292.836001 +3292.838532 +3292.841695 +3292.951752 +3292.954882 +3292.957513 +3292.960909 +3293.065705 +3293.069234 +3293.136234 +3293.149254 +3293.218718 +3293.245957 +3293.278458 +3293.313723 +3293.336667 +3293.356214 +3293.388182 +3293.413057 +3293.434802 +3293.485651 +3293.523913 +3293.544758 +3293.574062 +3293.608961 +3293.637299 +3293.664938 +3293.692377 +3293.704165 +3293.740096 +3293.769733 +3293.804432 +3293.829873 +3293.859743 +3293.886583 +3293.910759 +3293.941128 +3293.969999 +3294.002067 +3294.027975 +3294.058544 +3294.089080 +3294.120216 +3294.176293 +3294.198004 +3294.225910 +3294.258178 +3294.284318 +3294.311657 +3294.339962 +3294.370865 +3294.416186 +3294.440628 +3294.471697 +3294.499336 +3294.528241 +3294.588380 +3294.627108 +3294.660541 +3294.696073 +3294.724544 +3294.755879 +3294.796572 +3294.830938 +3294.859243 +3294.895140 +3294.932203 +3294.971330 +3295.004863 +3295.045856 +3295.082119 +3295.118516 +3295.194141 +3295.234534 +3295.329472 +3295.362838 +3295.430604 +3295.503664 +3295.536565 +3295.579588 +3295.615819 +3295.660008 +3295.699268 +3295.734466 +3295.780920 +3295.825842 +3295.870497 +3295.921579 +3295.965968 +3296.007526 +3296.073727 +3296.134533 +3296.186447 +3296.246887 +3296.365701 +3296.484549 +3296.600466 +3296.664236 +3296.742990 +3296.798102 +3296.863536 +3296.923743 +3296.987412 +3297.102963 +3297.144055 +3297.400865 +3297.484515 +3297.523542 +3297.940059 +3297.944687 +3297.948117 +3297.953212 +3298.399366 +3298.401930 +3298.404028 +3298.406658 +3298.412952 +3298.717381 +3298.719878 +3298.722109 +3298.725206 +3298.904860 +3298.907157 +3298.909255 +3298.911952 +3298.917680 +3299.093937 +3299.096201 +3299.098333 +3299.101163 +3299.287210 +3299.289674 +3299.291806 +3299.294370 +3299.300264 +3299.478552 +3299.480950 +3299.484280 +3299.598565 +3299.600663 +3299.603027 +3299.607023 +3299.767396 +3299.769594 +3299.772091 +3299.774522 +3299.777220 +3299.781149 +3299.922707 +3299.925038 +3300.119477 +3300.121975 +3300.124372 +3300.127769 +3300.303426 +3300.306157 +3300.308621 +3300.312018 +3300.395434 +3300.421142 +3300.423772 +3300.426403 +3300.429700 +3300.540289 +3300.543686 +3300.654375 +3300.658238 +3300.659770 +3300.663366 +3300.671325 +3300.785743 +3300.788974 +3300.795267 +3300.870159 +3300.964764 +3300.968394 +3300.976453 +3300.992736 +3301.004092 +3301.023006 +3301.120009 +3301.128334 +3301.175187 +3301.212117 +3301.256439 +3301.299629 +3301.319076 +3301.369393 +3301.394068 +3301.430565 +3301.459036 +3301.476519 +3301.514714 +3301.533495 +3301.596032 +3301.682479 +3301.721374 +3301.752043 +3301.762199 +3301.787840 +3301.808120 +3301.882279 +3301.909785 +3301.954240 +3301.966129 +3301.986874 +3302.002759 +3302.097564 +3302.122672 +3302.178782 +3302.192402 +3302.230098 +3302.382112 +3302.411716 +3302.464463 +3302.557337 +3302.595066 +3302.633960 +3302.677250 +3302.705189 +3302.730397 +3302.733327 +3302.739488 +3302.778449 +3302.824003 +3302.926767 +3302.991236 +3303.009784 +3303.079114 +3303.125535 +3303.161166 +3303.419540 +3303.536856 +3303.647379 +3303.729630 +3303.780546 +3303.832693 +3304.056469 +3304.584841 +3304.600492 +3304.606652 +3304.618540 +3304.739353 +3304.744681 +3304.748776 +3304.881244 +3304.885473 +3304.890168 +3304.902523 +3304.995962 +3305.000425 +3305.006485 +3305.034957 +3305.356135 +3305.410281 +3305.468489 +3305.503721 +3305.545879 +3305.679079 +3305.702855 +3305.738819 +3305.758599 +3305.825932 +3305.848709 +3305.892964 +3305.925632 +3306.006884 +3306.046644 +3306.094163 +3306.148742 +3306.177679 +3306.235788 +3306.284872 +3306.355934 +3306.433390 +3306.516773 +3306.592431 +3306.694029 +3306.764126 +3306.843679 +3306.908981 +3307.009280 +3307.089400 +3307.433023 +3307.532989 +3307.560828 +3307.578544 +3307.707215 +3308.342945 +3308.847007 +3308.850138 +3308.852502 +3308.855965 +3309.457729 +3309.462924 +3309.466121 +3309.568618 +3309.570716 +3309.577010 +3309.919101 +3309.921432 +3309.925628 +3309.929224 +3310.051535 +3310.054132 +3310.054998 +3310.056397 +3310.059361 +3310.197289 +3310.200053 +3310.261525 +3310.307212 +3310.362457 +3310.373413 +3310.408511 +3310.489030 +3310.492261 +3310.496623 +3310.628491 +3310.645574 +3310.773546 +3310.783469 +3310.880006 +3310.960625 +3311.043875 +3311.083669 +3311.173612 +3311.225893 +3311.261357 +3311.309110 +3311.367484 +3311.412839 +3311.458460 +3311.514371 +3311.552932 +3311.682336 +3311.723395 +3311.764953 +3311.899618 +3311.954264 +3312.021730 +3312.147870 +3312.202715 +3312.280937 +3312.427457 +3312.563054 +3312.651999 +3312.867783 +3312.943873 +3313.025158 +3313.111872 +3313.149134 +3313.356360 +3313.363020 +3313.545871 +3313.792590 +3313.942440 +3314.030719 +3314.366283 +3314.690192 +3314.850132 +3315.459755 +3315.462685 +3315.813301 +3315.816131 +3315.818529 +3315.822092 +3315.988725 +3316.000946 +3316.006874 +3316.009205 +3316.014233 +3316.079468 +3316.082598 +3316.085895 +3316.397017 +3316.400180 +3316.402578 +3316.409937 +3316.495318 +3316.498015 +3316.500313 +3316.502744 +3316.507373 +3317.829782 +3317.832580 +3317.834777 +3317.837475 +3318.404740 +3318.407271 +3318.409369 +3318.411733 +3318.415496 +3318.659685 +3318.661783 +3318.664380 +3318.933777 +3318.938173 +3319.141036 +3319.143367 +3319.319158 +3319.331646 +3319.419125 +3319.421689 +3319.423920 +3319.621689 +3319.624552 +3319.626850 +3319.628915 +3319.632378 +3320.143000 +3320.149161 +3320.151858 +3320.154788 +3320.623386 +3320.643399 +3320.645797 +3320.647861 +3320.650492 +3320.656353 +3320.849060 +3321.122886 +3321.125950 +3321.128747 +3321.133209 +3321.348327 +3321.357085 +3321.359549 +3321.363279 +3321.664843 +3321.667874 +3321.670305 +3321.954487 +3321.957550 +3321.959881 +3322.325149 +3322.329378 +3323.038801 +3323.281991 +3323.284056 +3323.286587 +3323.290882 +3323.575098 +3323.577196 +3323.579227 +3323.581725 +3323.588818 +3323.673733 +3323.676297 +3323.678395 +3323.680726 +3323.684488 +3324.901670 +3324.909729 +3325.059212 +3325.135403 +3325.137434 +3325.139832 +3325.143095 +3325.205100 +3325.288649 +3325.290880 +3325.424780 +3325.427810 +3325.430008 +3325.432239 +3325.777760 +3325.780224 +3325.783421 +3325.999405 +3326.003001 +3326.005432 +3326.007596 +3326.010460 +3326.240929 +3326.243760 +3326.245991 +3326.390113 +3326.392578 +3326.394875 +3326.397839 +3326.510693 +3326.513590 +3326.516054 +3326.519650 +3326.659544 +3326.662907 +3326.665338 +3326.668635 +3326.736001 +3326.743260 +3326.747456 +3326.840929 +3326.844192 +3326.848321 +3326.957712 +3326.963273 +3326.997006 +3327.083353 +3327.092810 +3327.150119 +3327.177958 +3327.203266 +3327.229973 +3327.306396 +3327.343459 +3327.375827 +3327.412157 +3327.443426 +3327.480755 +3327.520582 +3327.556579 +3327.597072 +3327.634501 +3327.674161 +3327.708161 +3327.753515 +3327.781887 +3327.826609 +3327.868933 +3327.907062 +3327.979955 +3328.021247 +3328.067501 +3328.110258 +3328.172463 +3328.208826 +3328.236565 +3328.272629 +3328.317717 +3328.354014 +3328.391810 +3328.432502 +3328.584284 +3328.587547 +3328.714687 +3328.802399 +3328.902399 +3328.951050 +3329.012122 +3329.116151 +3329.176824 +3329.277024 +3329.361606 +3330.255544 +3330.260140 +3330.268798 +3330.437562 +3330.441858 +3330.444455 +3330.597302 +3330.600232 +3330.603030 +3330.709323 +3330.713486 +3330.716250 +3330.718714 +3330.722077 +3330.884981 +3330.887045 +3330.889643 +3330.894904 +3331.279952 +3331.282416 +3331.287844 +3331.435363 +3331.469096 +3331.473492 +3331.476256 +3331.579186 +3331.581583 +3331.586878 +3331.777820 +3331.780551 +3331.783015 +3331.786545 +3331.964733 +3331.967264 +3331.969961 +3331.972026 +3331.974890 +3332.315216 +3332.318546 +3332.320411 +3332.322742 +3332.383314 +3332.387943 +3332.865731 +3332.868529 +3332.873457 +3333.115648 +3333.118778 +3333.121209 +3333.123473 +3333.126870 +3333.222907 +3333.225571 +3333.227869 +3333.230266 +3333.234562 +3333.632664 +3333.636460 +3333.638891 +3333.641222 +3333.721142 +3333.723739 +3333.726370 +3333.729367 +3333.802327 +3333.805657 +3334.274987 +3334.277485 +3334.279516 +3334.282247 +3334.900628 +3334.903292 +3334.905656 +3335.102259 +3335.191070 +3335.193102 +3335.195799 +3335.299961 +3335.306521 +3335.309618 +3335.315313 +3335.394733 +3335.411416 +3335.414047 +3335.416678 +3335.420607 +3335.514480 +3335.517144 +3335.519808 +3335.522971 +3335.803990 +3335.804290 +3335.806754 +3336.006721 +3336.012448 +3336.103357 +3336.144816 +3336.147413 +3336.150843 +3336.256704 +3336.263530 +3336.462231 +3336.466993 +3336.471256 +3336.638688 +3336.651409 +3336.658035 +3336.759700 +3336.764362 +3336.769457 +3336.776217 +3336.838255 +3336.869191 +3336.967625 +3336.974885 +3336.980046 +3337.008751 +3337.044548 +3337.116043 +3337.145347 +3337.230329 +3337.296529 +3337.317642 +3337.373286 +3337.494631 +3337.513845 +3337.596063 +3337.672486 +3337.677015 +3337.800259 +3337.828663 +3337.922236 +3337.983675 +3337.995929 +3338.131560 +3338.295463 +3338.441816 +3338.471254 +3338.493398 +3338.495396 +3338.497827 +3338.558266 +3338.692699 +3338.832525 +3339.056401 +3339.117407 +3339.237520 +3339.383174 +3339.415775 +3339.474150 +3339.622035 +3339.660163 +3339.691699 +3339.997026 +3340.012677 +3344.100652 +3344.986432 +3344.988463 +3344.992759 +3348.017398 +3351.206672 +3351.629116 +3351.921090 +3351.925153 +3351.927351 +3351.929415 +3351.931913 +3352.882328 +3353.032811 +3353.301209 +3353.356320 +3353.358318 +3353.360116 +3353.650359 +3356.136371 +3356.138335 +3356.140067 +3356.141899 +3356.147426 +3356.196910 +3356.213227 +3356.215924 +3356.219654 +3358.485786 +3358.491480 +3358.493744 +3359.611992 +3362.959075 +3362.961239 +3362.963270 +3362.965868 +3364.380385 +3365.505159 +3365.509721 +3365.512152 +3365.513950 +3367.910551 +3368.904357 +3368.908819 +3368.911350 +3368.913481 +3368.915712 +3368.919308 +3369.358202 +3370.302657 +3370.409450 +3370.504189 +3370.518907 +3370.697662 +3370.705387 +3371.107018 +3371.801190 +3371.807184 +3371.809016 +3372.204820 +3372.301489 +3372.890566 +3372.901988 +3373.206783 +3373.211012 +3373.405118 +3373.603386 +3373.604452 +3373.712111 +3374.109013 +3374.705350 +3374.803851 +3375.171949 +3377.014239 +3377.020699 +3378.165386 +3378.165520 +3379.882334 +3379.884332 +3379.898785 +3379.950200 +3379.954329 +3379.956160 +3379.958192 +3379.960956 +3379.992491 +3381.341574 +3383.855557 +3385.441270 +3385.761383 +3385.941736 +3385.943534 +3385.945765 +3393.377626 +3393.382121 +3394.452849 +3394.455913 +3394.457878 +3394.465503 +3394.541394 +3394.770698 +3394.773595 +3394.775726 +3394.778124 +3395.216851 +3395.728472 +3396.204263 +3396.214319 +3396.218149 +3396.442258 +3396.445688 +3396.447752 +3396.451648 +3396.454945 +3396.547752 +3397.503496 +3398.861936 +3399.523807 +3405.292565 +3405.892665 +3412.815335 +3412.819198 +3412.821229 +3413.101082 +3413.103047 +3413.105078 +3413.108542 +3414.093089 +3414.096120 +3414.102979 +3414.216899 +3414.222393 +3414.226522 +3414.335480 +3414.339443 +3414.344138 +3414.433182 +3414.441274 +3414.461620 +3414.504011 +3414.562586 +3414.585730 +3414.638177 +3414.727255 +3414.763618 +3414.805876 +3414.847834 +3414.881134 +3414.904411 +3414.971843 +3414.988093 +3415.018530 +3415.060188 +3415.107407 +3415.135379 +3415.218163 +3415.236645 +3415.260388 +3415.286428 +3415.310604 +3415.341706 +3415.423891 +3415.464017 +3415.479502 +3415.508339 +3415.532049 +3415.555059 +3415.575772 +3415.604044 +3415.623524 +3415.652362 +3415.677736 +3415.718895 +3415.739475 +3415.831682 +3415.857956 +3415.894486 +3415.925522 +3416.003677 +3416.076937 +3416.174839 +3416.212368 +3416.236644 +3416.282331 +3416.312235 +3416.349997 +3416.384496 +3416.409870 +3416.440906 +3416.478568 +3416.505874 +3416.543337 +3416.565581 +3416.623456 +3416.647333 +3416.675238 +3416.704342 +3416.741172 +3416.766080 +3416.809737 +3416.850762 +3416.862550 +3416.898248 +3416.938841 +3416.975437 +3417.034412 +3417.105973 +3417.137775 +3417.174705 +3417.204741 +3417.236776 +3417.285028 +3417.318860 +3417.351727 +3417.381398 +3417.403442 +3417.468577 +3417.501078 +3417.544435 +3417.586859 +3417.606805 +3417.644434 +3417.679566 +3417.771041 +3417.799213 +3417.833212 +3417.874071 +3417.897914 +3417.960918 +3417.986459 +3418.011700 +3418.045033 +3418.127351 +3418.168144 +3418.201677 +3418.244767 +3418.273272 +3418.305939 +3418.389622 +3418.432812 +3418.497381 +3418.548097 +3418.625419 +3418.667244 +3418.707837 +3418.765379 +3418.784360 +3418.869342 +3418.895349 +3418.897147 +3418.920457 +3418.932978 +3419.035775 +3419.070574 +3419.099411 +3419.132845 +3419.286258 +3419.326950 +3419.501709 +3419.533710 +3419.608901 +3419.647929 +3419.679231 +3419.732877 +3419.752225 +3419.786923 +3419.813663 +3419.860050 +3419.920889 +3420.146330 +3420.166810 +3420.318358 +3420.333343 +3420.474502 +3420.489620 +3420.539237 +3420.734774 +3420.765344 +3420.839103 +3420.927814 +3420.964145 +3421.031244 +3421.077232 +3421.131977 +3421.292782 +3421.348094 +3421.393715 +3421.453588 +3421.510265 +3421.602639 +3421.643132 +3421.730677 +3421.801040 +3421.848759 +3421.886755 +3421.937537 +3421.999975 +3422.045929 +3422.108033 +3422.158083 +3422.229645 +3422.280594 +3422.319621 +3422.365808 +3422.392515 +3422.426248 +3422.472202 +3422.529178 +3422.664343 +3422.709631 +3422.809398 +3422.839501 +3422.863910 +3422.876064 +3422.917822 +3423.016257 +3423.061079 +3423.150323 +3423.174299 +3423.229311 +3423.283024 +3423.327779 +3423.381358 +3423.420719 +3423.472734 +3423.519687 +3423.562411 +3423.605900 +3423.649057 +3423.693113 +3423.740399 +3423.778960 +3423.822650 +3423.908864 +3423.955051 +3424.007465 +3424.057415 +3424.096309 +3424.163542 +3424.195177 +3424.238201 +3424.339633 +3424.441397 +3424.492513 +3424.544061 +3424.604834 +3424.648590 +3424.696775 +3424.747491 +3424.792246 +3424.883688 +3424.921750 +3424.974564 +3425.011160 +3425.051420 +3425.131207 +3425.183688 +3425.225512 +3425.265006 +3425.360544 +3425.438466 +3425.514656 +3425.585685 +3425.806797 +3425.857680 +3425.942794 +3426.010926 +3426.141429 +3426.232038 +3426.283354 +3426.336234 +3426.386251 +3426.511026 +3426.565072 +3426.625345 +3426.684785 +3426.688448 +3426.772997 +3426.828175 +3426.894442 +3426.941228 +3426.992777 +3427.071898 +3427.110193 +3427.156313 +3427.194974 +3427.234668 +3427.277991 +3427.317585 +3427.389247 +3427.443725 +3427.474961 +3427.510026 +3427.551085 +3427.588514 +3427.628107 +3427.660109 +3427.742060 +3427.781720 +3427.852483 +3427.993708 +3428.079855 +3428.172895 +3428.214654 +3428.266302 +3428.350784 +3428.384517 +3428.417051 +3428.446422 +3428.552416 +3428.598936 +3428.754280 +3429.196537 +3429.270197 +3429.330337 +3429.373527 +3429.414319 +3429.558109 +3429.633600 +3429.735898 +3429.778588 +3430.013620 +3430.107559 +3430.207259 +3430.280353 +3430.363170 +3430.433766 +3430.478088 +3430.566866 +3430.697901 +3430.786180 +3430.908890 +3430.994338 +3431.074891 +3431.139326 +3431.312186 +3431.399998 +3431.477055 +3431.544487 +3431.666532 +3431.716082 +3431.768163 +3431.892505 +3431.925439 +3431.982982 +3432.085612 +3432.119578 +3432.164833 +3432.277687 +3432.372425 +3432.425372 +3432.480250 +3432.531799 +3432.674090 +3432.783247 +3432.895235 +3432.955408 +3433.012151 +3433.013850 +3433.062035 +3433.112584 +3433.168295 +3433.232098 +3433.243953 +3433.302894 +3433.388275 +3433.569793 +3433.700429 +3433.909353 +3434.344318 +3434.409120 +3434.450145 +3434.512916 +3434.567661 +3434.639722 +3434.699629 +3434.759869 +3434.800062 +3434.860768 +3434.902892 +3434.968859 +3435.005223 +3435.047181 +3435.131463 +3435.177917 +3435.228200 +3435.355972 +3435.426734 +3435.544283 +3435.586674 +3435.648945 +3435.711982 +3435.788173 +3435.838156 +3435.900427 +3435.942818 +3436.001692 +3436.060100 +3436.118176 +3436.213480 +3436.271955 +3436.392834 +3436.451708 +3436.510916 +3436.570123 +3436.617243 +3436.653340 +3436.681378 +3436.811815 +3436.858135 +3436.892034 +3436.961831 +3436.995497 +3437.028598 +3437.066659 +3437.119240 +3437.157602 +3437.195098 +3437.234358 +3437.277448 +3437.310649 +3437.351308 +3437.398660 +3437.439686 +3437.490768 +3437.525300 +3437.555337 +3437.593765 +3437.626899 +3437.668157 +3437.713345 +3437.758534 +3437.807684 +3437.860598 +3437.911314 +3437.963262 +3438.007251 +3438.060764 +3438.142749 +3438.181277 +3438.226765 +3438.257434 +3438.299226 +3438.333625 +3438.369922 +3438.411979 +3438.442249 +3438.471320 +3438.524467 +3438.573218 +3438.628663 +3438.677780 +3438.727164 +3438.755369 +3438.797427 +3438.825532 +3438.848243 +3438.882309 +3438.970187 +3439.008715 +3439.085938 +3439.122801 +3439.169388 +3439.252738 +3439.280477 +3439.314043 +3439.448975 +3439.493064 +3439.529960 +3439.570886 +3439.613344 +3439.641649 +3439.677046 +3439.727429 +3439.760729 +3439.800789 +3439.837219 +3439.906051 +3439.932191 +3439.970619 +3439.990133 +3440.001555 +3440.045544 +3440.086969 +3440.112744 +3440.163360 +3440.204552 +3440.295261 +3440.326763 +3440.367822 +3440.436020 +3440.494628 +3440.534188 +3440.577412 +3440.644844 +3440.683039 +3440.720768 +3440.806749 +3440.886935 +3440.914341 +3440.957265 +3441.000821 +3441.090765 +3441.112643 +3441.208780 +3441.249273 +3441.306649 +3441.334687 +3441.388500 +3441.433355 +3441.537484 +3441.596725 +3441.640048 +3441.756731 +3441.843345 +3441.892495 +3441.921866 +3441.947940 +3441.998656 +3442.038549 +3442.102885 +3442.155166 +3442.292995 +3442.343311 +3442.409578 +3442.475745 +3442.521865 +3442.706514 +3442.797090 +3442.899987 +3442.985868 +3443.008345 +3443.037383 +3443.116703 +3443.238315 +3443.304649 +3443.407978 +3443.697089 +3443.765254 +3443.769983 +3444.196489 +3444.270582 +3444.283602 +3444.526958 +3444.531321 +3444.700085 +3444.898553 +3444.905313 +3444.912173 +3445.130754 +3445.139778 +3445.146139 +3445.303614 +3445.408709 +3445.503181 +3445.707577 +3445.774276 +3445.846371 +3445.950100 +3446.039311 +3446.178638 +3446.301582 +3446.485764 +3446.597319 +3447.034781 +3447.081235 +3447.285630 +3447.314734 +3447.551198 +3447.609106 +3447.892356 +3447.909439 +3448.155093 +3448.326488 +3448.581500 +3448.741340 +3449.018662 +3449.806640 +3449.915498 +3449.923290 +3449.985361 +3450.008838 +3450.034978 +3450.051428 +3450.125021 +3450.127053 +3450.184961 +3450.337242 +3450.392087 +3450.440472 +3450.485794 +3450.489556 +3450.509869 +3450.570276 +3450.734977 +3450.888224 +3450.960019 +3451.066246 +3451.205373 +3451.265280 +3451.304840 +3451.355123 +3451.622223 +3451.668210 +3451.952792 +3452.083960 +3452.381862 +3452.510800 +3452.717493 +3452.794516 +3453.237805 +3453.363247 +3453.655954 +3453.696313 +3453.830079 +3453.899277 +3453.959550 +3454.091684 +3454.468607 +3454.548294 +3454.631177 +3454.646462 +3454.714660 +3454.766775 +3454.832542 +3454.877830 +3454.888986 +3455.128446 +3455.132842 +3455.213694 +3455.215626 +3458.786851 +3458.790514 +3459.534203 +3459.537533 +3459.906130 +3459.911592 +3460.634235 +3460.644258 +3461.079090 +3461.118284 +3461.214055 +3461.287881 +3461.782286 +3461.989512 +; diff --git a/Ross/ReturnBaselinevsEvoked.m b/Ross/ReturnBaselinevsEvoked.m new file mode 100644 index 0000000..5d4a8cb --- /dev/null +++ b/Ross/ReturnBaselinevsEvoked.m @@ -0,0 +1,53 @@ +for model = 1:2 + if model == 1 + Struct = SalISIstruct; + mName = 'Saline'; + else + Struct = CfaISIstruct; + mName = 'CFA'; + end + Baseline = Struct(1).Stacks(1).ConditionMap; + for a = 2: length(Struct) + Baseline = [Baseline;Struct(a).Stacks(1).ConditionMap]; + end + Ind =[]; + for e = 1:length(Struct) + if contains(Struct(e).name, 'Mech_Control', 'IgnoreCase', true) == true + Ind = [Ind; e]; + end + end + + Evoked = Struct(Ind(1)).Stacks(2).ConditionMap; + for a = 2:length(Ind) + Evoked = [Evoked; Struct(Ind(a)).Stacks(2).ConditionMap]; + end + Baseline = log10(Baseline); + Evoked = log10(Evoked); + for figs = 1:2 + if figs == 1 + responseName = 'Baseline'; + response = Baseline; + else + responseName = 'Evoked'; + response = Evoked; + end + figure('Name', [mName, ' ', responseName, ' ISI Return Map'], 'Color', 'White'); + Hist = histogram2(response(:,1),response(:,2), 125, 'Normalization', 'probability'); + title([mName, ' ', responseName, ' ISI Return Map']) + xlabel('ISI_n _(_m_s_e_c_s_)'); + ylabel('ISI_n_+_1 _(_m_s_e_c_s_)') + xlim([-3, 0]); + ylim([-3, 0]); + zlim([0, 0.008]) + zlabel('Probability') + fig = gcf; + ax = gca; + ax.FontSize = 20; + xticks(-3:0) + ax.XTickLabel = (10.^cellfun(@str2double,ax.XTickLabel)) * 1e3; + ax.XTickLabelRotation = -45; + yticks(-3:0); + ax.YTickLabel = (10.^cellfun(@str2double,ax.YTickLabel)) * 1e3; + ax.YTickLabelRotation = 45; + end +end diff --git a/Ross/ReturnMaps.m b/Ross/ReturnMaps.m new file mode 100644 index 0000000..369dbfd --- /dev/null +++ b/Ross/ReturnMaps.m @@ -0,0 +1,25 @@ +pisi =CfaSpontISI; +currentIsi = cellfun(@(x) x(1:end-1)/fs, pisi, 'UniformOutput', 0); +nextIsi = cellfun(@(x) x(2:end)/fs, pisi, 'UniformOutput', 0); +isiReturnMap = {cat(1, currentIsi{:}), cat(1, nextIsi{:})}; +isiReturnMap = cellfun(@log10, isiReturnMap, 'UniformOutput', 0); +isiReturnMap = cat(2, isiReturnMap{:}); +figure('Color', 'White'); +Hist = histogram2(isiReturnMap(:,1), isiReturnMap(:,2), 125, 'Normalization', 'probability'); +title('ISI Return Map') +xlabel('ISI_n _(_m_s_e_c_s_)'); +ylabel('ISI_n_+_1 _(_m_s_e_c_s_)') +legend([{'Saline'}, {'CFA'}], 'Location', 'Northeast') +xlim([-3, 4]); +ylim([-3, 4]); +zlim([0, 0.015]) +zlabel('Probability') +fig = gcf; +ax = gca; +ax.FontSize = 20; +xticks(-3:1:4) +ax.XTickLabel = (10.^cellfun(@str2double,ax.XTickLabel)) * 1e3; +ax.XTickLabelRotation = -45; +yticks(-3:1:4); +ax.YTickLabel = (10.^cellfun(@str2double,ax.YTickLabel)) * 1e3; +ax.YTickLabelRotation = 45; diff --git a/Ross/SalineVsCFAISI.m b/Ross/SalineVsCFAISI.m new file mode 100644 index 0000000..203b85b --- /dev/null +++ b/Ross/SalineVsCFAISI.m @@ -0,0 +1,82 @@ +function fig = SalineVsCFAISI(SalISIhist, CfaISIhist) +%% Saline vs CFA Spontaneous +for model = 1:2 + if model == 1 + Hist = SalISIhist; + else + Hist = CfaISIhist; + end + + IsiR = length(Hist(1).Vals(1).CumISI); + for a = 2: length(Hist) + IsiR = [IsiR, length(Hist(a).Vals(1).CumISI)]; + end + r = sum(IsiR); + cumIsiStack = zeros(r, length(Hist(1).Vals(1).CumISI{1})); + IsiStack = zeros(r, length(Hist(1).Vals(1).ISI{1})); + c = 1; + for a = 1:length(Hist) + for b = 1:length(Hist(a).Vals(1).CumISI) + cumIsiStack(c,:) = Hist(a).Vals(1).CumISI{b}; + IsiStack(c,:) = Hist(a).Vals(1).ISI{b}; + c = c +1; + end + end + % Getting rid of NaNs + cumIsiStack(length(cumIsiStack(:,1)) + 1,:) = NaN; + IsiStack(length(IsiStack(:,1)) + 1,:) = NaN; + cumIndNaN = length(cumIsiStack(:,1)); + IndNaN = length(IsiStack(:,1)); + for nInd = 1:length(cumIsiStack(:,1)) + if isnan(cumIsiStack(nInd,:)) == true + cumIndNaN = [cumIndNaN; nInd]; + end + if isnan(IsiStack(nInd,:)) == true + IndNaN = [IndNaN; nInd]; + end + end + cumIndNaN = sort(cumIndNaN, 'descend'); + cumIsiStack(cumIndNaN,:) =[]; + IndNaN = sort(IndNaN, 'descend'); + IsiStack(IndNaN,:) =[]; + if model == 1 + sumSalIsi = sum(IsiStack)/length(IsiStack(:,1)); + cumSalspont = sum(cumIsiStack)/length(cumIsiStack(:,1)); + + else + sumCfaIsi = sum(IsiStack)/length(IsiStack(:,1)); + cumCFAspont = sum(cumIsiStack)/length(cumIsiStack(:,1)); + end +end +fig = figure('Color',[1,1,1], 'Name', 'Saline vs CFA Spontaneous Cumulative Fraction'); +% Only if the bin widths are constant!!! +plot(SalISIhist(1).Vals(1).bns{1}, cumSalspont); +hold on +plot(CfaISIhist(1).Vals(1).bns{1}, cumCFAspont); +ylabel('Cumulative Fraction'); +xlabel('ISI (msecs)'); +xlim([-3, 2]); +xticks([-3:2]); +ylim([0, 1]); +legend('Saline', 'CFA'); +title('Spontaneous Activity Cumulative Fractions'); +fig = gcf; +ax = gca; +ax.FontSize = 20; +ax.XTickLabel = 10.^cellfun(@str2double,ax.XTickLabel) * 1e3; +ax.XTickLabelRotation = 45; +%% Stats Test and p-Values on Figure +[txt, star] = findKSsignificance(sumSalIsi, sumCfaIsi); + +annotation(figure(gcf),'textbox',... + [0.21428125 0.438809261300992 0.0568125 0.029768467475193],'String',star,... + 'FontSize',20,... + 'FitBoxToText','off',... + 'EdgeColor','none'); +annotation(figure(gcf),'textbox',... + [0.673958333333333 0.112328008579419 0.203645833333333 0.232874455900804],... + 'String',{txt},... + 'FontSize',15,... + 'FitBoxToText','off',... + 'EdgeColor','none'); +end diff --git a/Ross/SaveWave.m b/Ross/SaveWave.m new file mode 100644 index 0000000..4bfc3d9 --- /dev/null +++ b/Ross/SaveWave.m @@ -0,0 +1,20 @@ +function fig = SaveWave(clWaveforms, ID, fs, figureDir) +WaveformDir = fullfile(figureDir,'Waveforms\'); +for a = 1:length(ID) + fig = figure('color', 'white'); + ind = find(ismember(clWaveforms(:,1), ID(a))); + plot(mean(clWaveforms{ind,2}')); + fig = gcf; + ax = fig(1).Children; + ind = size(clWaveforms{1,2}(:,1)); + ind = ind(1); + ax.XTick = [0:20:77]; + ax.XTickLabel = [1:ind]/fs*1000; + title(['Unit ', num2str(ID{a})]) + xlabel(ax,'Time_(_m_s_)') + ax.FontSize = 30; + configureFigureToPDF (fig); + figName = ['Unit ', num2str(ID{a}), ' Waveform']; + savefig(fig,fullfile(WaveformDir, [figName, '.fig']), 'compact'); +end +end \ No newline at end of file diff --git a/Ross/SeparateLaserFrequencies.m b/Ross/SeparateLaserFrequencies.m new file mode 100644 index 0000000..4622205 --- /dev/null +++ b/Ross/SeparateLaserFrequencies.m @@ -0,0 +1,59 @@ +function Conditions = SeparateLaserFrequencies(Trig, fs) +offset = 0; +c = 2; +promptStrings = {'no. of Intensities','no. of Stimulation Patterns'}; +defInputs = {'1', '3'}; +answ = inputdlg(promptStrings,'Inputs', [1, 30],defInputs); +if isempty(answ) + fprintf(1,'Cancelling...\n') + return +else + n = str2num(answ{1,1}); + m = str2num(answ{2,1}); +end + +for a = 1:n + promptStrings = {'Laser Intensity: mW'}; + defInputs = {'1'}; + answ = inputdlg(promptStrings,'Inputs', [1, 30],defInputs); + if isempty(answ) + fprintf(1,'Cancelling...\n') + return + else + intensityName = [num2str(answ{1}), 'mW']; + end + for b = 1:m + laser = Trig(2).triggers{1,a}; + if b == 1 + laserStim = [false, false; diff(laser) > 0.15*fs & diff(laser) < 1.1*fs]; + patternName = '1Hz'; + elseif b == 2 + laserStim = [false, false; diff(laser) < 0.15*fs]; + patternName = '10Hz'; + end + + On = diff(laserStim(:,1)) == 1; + On = [On; false]; + Off = diff(laserStim(:,1)) == -1; + Off = [Off; false]; + if b == 3 + laserStim = diff(laser') > 3*fs; + On = laserStim; + Off = On; + patternName = 'Continuous_Pulse'; + end + Conditions(c).name = ['Laser_', patternName, '_', intensityName]; + Conditions(c).Triggers = laser(On,1) + offset; + Conditions(c).Triggers(:,2) = laser(Off,2) + offset; + c = c + 1; + end + offset = offset + Trig(2).offset(a); +end +Conditions(1).name = 'Laser_All'; +Conditions(1).Triggers = Conditions(2).Triggers; +for a = 3: length(Conditions) + Conditions(1).Triggers = [Conditions(1).Triggers; Conditions(a).Triggers]; +end +Conditions(1).Triggers = sort(Conditions(1).Triggers, 'ascend'); +end + diff --git a/Ross/SeparatePopulations.m b/Ross/SeparatePopulations.m new file mode 100644 index 0000000..51ec56a --- /dev/null +++ b/Ross/SeparatePopulations.m @@ -0,0 +1,178 @@ +%% Separating the populations by depth, latency, jitter, and waveform + +name = 'Population Separations'; + +triggerTimes = Conditions(14).Triggers; +clInd = ismember(clInfo.id, gclID); +depths = table(clInfo.id(clInd), clInfo.abs_depth(clInd)); +depths = sortrows(depths,'Var2','ascend'); +ID = depths{:,1}; +Dpth = depths.Var2; +spkInd = []; +for i = 1:length(ID) + spkInd = [spkInd; find(ismember(sortedData(:,1), ID(i)))]; +end +% name = ConditionName; +% name(strfind(name, '_')) = ' '; +% name = ['Latency vs Depth: ', name]; +Latencies = TriggerLatencies(sortedData(spkInd,2), triggerTimes, fs, 5e-2); +mn = (cellfun(@mean, Latencies)*1e3); +sd = (cellfun(@std, Latencies)*1e3); +Dpth = -1*Dpth; +rng('default'); +jitter = randi(20,size(Dpth)); +Dpth = Dpth + jitter; % adding small random jitter for visualisation +nan = isnan(mn); + +% latencyCutoffs = sort(latencyCutoffs, 'ascend'); +% sdCutoffs = sort(sdCutoffs, 'ascend'); + +% Sorting by depth, latency, and jitter + +L6 = mn > 2 & mn <= 10 & sd >=0.2 & sd <= 4; % Could make these a Nby2 matrix 2 assign groups based on latency, jitter, depth +L6 = L6 & Dpth <-650; +L4 = mn > 10 & mn <= 15 & sd >=0.5 & sd <= 10; +L4 = L4 & Dpth >-700; +L5 = mn > 15 & mn <= 50 & sd >=0.2 & sd <= 50; +L5 = L5 & Dpth >-900 & Dpth <-600; + +other = ~L6 & ~L4 & ~L5; + +nL6 = sum(L6); +nL4 = sum(L4); +nL5 = sum(L5); +nOther = sum(other); + + + + +%Sorting by waveform (put. FS or WS) + +% taggedFS = tagged & fsFlag; +% taggedRS = tagged &wsFlag; +% laterFS = later & fsFlag; +% laterRS = later & wsFlag; +% latestFS = latest & fsFlag; +% latestRS = latest & wsFlag; + +%% Plotting + +red = [0.75, 0, 0]; +green = [0, 0.75, 0]; +blue = [0.25, 0.5, 1]; + + +%Plotting the first data point of each group member for the legend +firstL4 = find(L4, 1, 'first'); +firstL5 = find(L5, 1, 'first'); +firstL6 = find(L6, 1, 'first'); + +L6(firstL6) = false; +L4(firstL4) = false; +L5(firstL5) = false; + + +fig = figure('Name', name, 'Color', 'White'); + +hold on + +errorbar(mn(firstL4),Dpth(firstL4),sd(firstL4), 'horizontal', 'LineStyle', 'none', 'Marker', 'o', 'Color', green, 'MarkerSize', 2, 'LineWidth', 0.01, 'CapSize', 5, 'MarkerFaceColor', green); +errorbar(mn(firstL5),Dpth(firstL5),sd(firstL5), 'horizontal', 'LineStyle', 'none', 'Marker', 'o', 'Color', red, 'MarkerSize', 2, 'LineWidth', 0.01, 'CapSize', 5, 'MarkerFaceColor', red); +errorbar(mn(firstL6),Dpth(firstL6),sd(firstL6), 'horizontal', 'LineStyle', 'none', 'Marker', 'o', 'Color', blue, 'MarkerSize', 2, 'LineWidth', 0.01, 'CapSize', 5, 'MarkerFaceColor', blue); + +leg = legend; + + + +hold on + +errorbar(mn(L4),Dpth(L4),sd(L4), 'horizontal', 'LineStyle', 'none', 'Marker', 'o', 'Color', green, 'MarkerSize', 2, 'LineWidth', 0.01, 'CapSize', 5, 'MarkerFaceColor', green); +%errorbar(mn(laterRS),Dpth(laterRS),sd(laterRS), 'horizontal', 'LineStyle', 'none', 'Marker', 'o', 'Color', [1, 0, 0], 'MarkerSize', 6, 'LineWidth', 0.01, 'CapSize', 5); %, 'MarkerFaceColor', [1, 0, 0]); + +errorbar(mn(L5),Dpth(L5),sd(L5), 'horizontal', 'LineStyle', 'none', 'Marker', 'o', 'Color', red, 'MarkerSize', 2, 'LineWidth', 0.01, 'CapSize', 5, 'MarkerFaceColor', red); +%errorbar(mn(latestRS),Dpth(latestRS),sd(latestRS), 'horizontal', 'LineStyle', 'none', 'Marker', 'o', 'Color', [0, 1, 0], 'MarkerSize', 6, 'LineWidth', 0.01, 'CapSize', 5); %, 'MarkerFaceColor', [0, 1, 0]); + +errorbar(mn(L6),Dpth(L6),sd(L6), 'horizontal', 'LineStyle', 'none', 'Marker', 'o', 'Color', blue, 'MarkerSize', 2, 'LineWidth', 0.01, 'CapSize', 5, 'MarkerFaceColor', blue); +%errorbar(mn(taggedRS),Dpth(taggedRS),sd(taggedRS), 'horizontal', 'LineStyle', 'none', 'Marker', 'o', 'Color', [0.25, 0.5, 1], 'MarkerSize', 6, 'LineWidth', 0.01, 'CapSize', 5); %, 'MarkerFaceColor', [0.25, 0.5, 1]); + +leg.String(4:end) = []; +leg.String(4:end-1) = []; +leg.Box = 'off'; +legend('Location', 'southeast'); + + +pulseWidth = round(median(diff(triggerTimes'/fs)')*1e3); +% title(name, 'Interpreter', 'none'); +ylim([round(round(min(Dpth),-2)/2,-2)*2-200,0]); +yticks([-2000:500:0]); +xlim([0 50]); +xticks(0:10:50); +xlabel('Latency [ms]'); +ylabel('Depth [\mum]', 'Interpreter', 'tex') +% ax.XTickLabelRotation = -45; +ax = gca; +hold on +laser = plot([0:pulseWidth], ax.YLim(2)*ones(pulseWidth + 1,1), 'Color', [0 1 1 0.5], 'LineWidth', 3); +leg = legend; +leg.String = [{'Put L4 Mean +/- SD'}, {'L5 Mean +/- SD'}, {'Put L6 Mean +/- SD'}, {['Laser Pulse (',num2str(pulseWidth), 'ms)']}]; +leg.FontSize = 10; +ax.FontName = 'Arial'; +ax.FontSize = 15; +% ax.FontName = 'Times New Roman'; +% Create rectangle +% lsText = text(3, ax.YLim(1)+45, 'Laser Pulse', 'FontSize', 10); + +% lgd = legend; +% lgd.String{1} = (['Unit Mean +/- SD (n=', num2str(sum(nontagged)), ')']); +% lgd.String{2} = (['Opto-tagged Units (n=', num2str(sum(tagged)), ')']); +% lgd.String{3} = ['Laser Pulse (',num2str(pulseWidth), 'ms)']; +% rectangle(ax, 'Position', [1, ax.YLim(2)-100, 4, 50], ... +% 'LineStyle', 'none', 'FaceColor', [0 1 1 0.5]) + +rectangle(ax, 'Position', [ax.XLim(1), ax.YLim(1), pulseWidth, ax.YLim(2) - ax.YLim(1)], ... + 'LineStyle', 'none', 'FaceColor', [0 1 1 0.1]) + +hold off + + +%% Pie Chart + +x = [nL4, nL5, nL6, nOther]; +explode = ones(1,4); +labels = [{'Put L4'}, {'L5'}, {'Put L6'}, {'Other'}]; + +figure('Color', 'White'); +pie(x, explode) +leg = legend; +leg.String = labels; +leg.Box = 'Off'; +leg.Location = 'eastoutside'; +leg.FontSize = 8; + + +ax = gca; +ax.Children(2).FaceColor = [1,1,1]; +ax.Children(4).FaceColor = blue; +ax.Children(6).FaceColor = red; +ax.Children(8).FaceColor = green; +ax.FontName = 'Arial'; + +for slice = 1:2:2*length(x) +ax.Children(slice).FontName = 'Arial'; +ax.Children(1).FontSize = 10; +end + +ax.Children(2).FaceColor = [1,1,1]; +ax.Children(4).FaceColor = blue; +ax.Children(6).FaceColor = red; +ax.Children(8).FaceColor = green; + +for slice = 2:2:2*length(x) + ax.Children(slice).EdgeColor = [1,1,1]; +end +%% GroupIDs + +GroupIDs = [{'L4'}, ID(L4); {'L5'}, ID(L5); {'L6'}, ID(L6)]; +% nGrps = length(GroupIDs); +% for grp = 1:nGrps + \ No newline at end of file diff --git a/Ross/SingleTrialPSTH.m b/Ross/SingleTrialPSTH.m new file mode 100644 index 0000000..3b49f92 --- /dev/null +++ b/Ross/SingleTrialPSTH.m @@ -0,0 +1,71 @@ +%% SingleTrialPSTH + +% To be run after other PSTHs + + +for trial = 1:length(Conditions(32).Triggers) + Conditions(38).Triggers = Conditions(32).Triggers(trial, :); + consideredConditions = 38; + Nccond = length(consideredConditions); + + + delayFlags = false(NTa,Nccond); + counter2 = 1; + for ccond = consideredConditions + delayFlags(:,counter2) = ismember(Conditions(chCond).Triggers(:,1),... + Conditions(ccond).Triggers(:,1)); + counter2 = counter2 + 1; + end + Na = sum(delayFlags,1); + + + %% Plot PSTH + goodsIdx = logical(clInfo.ActiveUnit); + csNames = fieldnames(Triggers); + Nbn = diff(timeLapse)/binSz; + if (Nbn - round(Nbn)) ~= 0 + Nbn = ceil(Nbn); + end + PSTH = zeros(nnz(filterIdx) - 1, Nbn, Nccond); + psthFigs = gobjects(Nccond,1); + for ccond = 1:Nccond + figFileName = sprintf('%s %s VW%.1f-%.1f ms B%.1f ms RW%.1f-%.1f ms SW%.1f-%.1f ms %sset %s (%s)',... + expName, Conditions(consideredConditions(ccond)).name, timeLapse*1e3,... + binSz*1e3, responseWindow*1e3, spontaneousWindow*1e3, onOffStr,... + orderedStr, filtStr); + [PSTH(:,:,ccond), trig, sweeps] = getPSTH(discStack(filterIdx,:,:),timeLapse,... + ~delayFlags(:,ccond),binSz,fs); + stims = mean(cst(:,:,delayFlags(:,ccond)),3); + stims = stims - median(stims,2); + for cs = 1:size(stims,1) + if abs(log10(var(stims(cs,:),[],2))) < 13 + [m,b] = lineariz(stims(cs,:),1,0); + stims(cs,:) = m*stims(cs,:) + b; + else + stims(cs,:) = zeros(1,Nt); + end + end + psthFigs(ccond) = plotClusterReactivity(PSTH(ordSubs,:,ccond),trig,sweeps,timeLapse,binSz,... + [{Conditions(consideredConditions(ccond)).name};... + pclID(ordSubs)],... + strrep(expName,'_','\_'),... + stims, csNames); + configureFigureToPDF(psthFigs(ccond)); + psthFigs(ccond).Children(end).YLabel.String =... + [psthFigs(ccond).Children(end).YLabel.String,... + sprintf('^{%s}',orderedStr)]; + % if ~exist([figFileName,'.pdf'], 'file') + % print(psthFigs(ccond), fullfile(figureDir,[figFileName, '.pdf']),... + % '-dpdf','-fillpage') + % end + % if ~exist([figFileName,'.emf'], 'file') + % print(psthFigs(ccond), fullfile(figureDir,[figFileName, '.emf']),... + % '-dmeta') + % end + + end + % for a = 1:length(consideredConditions) + % savefig(figure(a), fullfile(figureDir, [consCondNames{a}, '_filtered_PSTH_0.001binSz.fig'])); + % end + +end diff --git a/Ross/TagID.m b/Ross/TagID.m new file mode 100644 index 0000000..ec80911 --- /dev/null +++ b/Ross/TagID.m @@ -0,0 +1,33 @@ +function TaggedIDs = TagID(latencyCutoffs, sdCutoffs, clInfo, clIDs, TriggerTimes, sortedData, samplingFrequency) +fs = samplingFrequency; +clInd = ismember(clInfo.id, clIDs); +depths = table(clInfo.id(clInd), clInfo.AbsDepth(clInd)); +depths = sortrows(depths,'Var2','ascend'); +ID = depths{:,1}; +Dpth = depths.Var2; +spkInd = []; +for i = 1:length(ID) + spkInd = [spkInd; find(ismember(sortedData(:,1), ID(i)))]; +end +tm = 5e-2; +Latencies = TriggerLatencies(sortedData(spkInd,2), TriggerTimes, fs, tm); +mn = (cellfun(@mean, Latencies)*1e3); +sd = (cellfun(@std, Latencies)*1e3); + +lowestLat = 3; +lowestSD = 0.1; + + +mn(mn 80 + figure, plot(HispeedTrials.Base_Ang(i,1).right.whisker1) + fprintf("%d: %s\n",count,HispeedTrials.VideoPath(i)) + count = count+1; + end +end +%% +close all +count = 1; +for i = 1:size(HispeedTrials,1) + if sum(~isnan(HispeedTrials.Whisk_Curv(i,1).right.whisker1(:,4))) > 100 + figure, plot(HispeedTrials.Whisk_Curv(i,1).right.whisker1(:,4)) + fprintf("%d: %s\n",count,HispeedTrials.VideoPath(i)) + count = count+1; + end +end + +%% Check Excel Sheet for unique cells + +excel_sheet = "Z:\Filippo\Animals\Cohort10_23-26\#24\2021-05-03_P3.5_Ruleswitch_EventList.xlsx"; + +[~,events,RAW]=xlsread(excel_sheet); +RAW(:,4) = cellfun(@(x) strtrim(x),RAW(:,4),'UniformOutput',false); +aa = unique(RAW(:,4)); + +new_file = "Z:\Filippo\Animals\Cohort10_23-26\#24\2021-05-03_P3.5_Ruleswitch_EventList_Corrected.xlsx"; +xlswrite(new_file,RAW) + +timestamps = cell2mat(RAW(:,2)); +smaller = []; +for i = 2:numel(timestamps) + if timestamps(i) < timestamps(i-1) + smaller = [smaller, i]; + end +end + +%% Plot mean waveforms +% You need the clWaveforms from the DE_Salience script for that + +% figure +% hold on +% for i = 1:size(clWaveforms,1) +for i = 1:20 + figure + mean_wave = mean(clWaveforms{i,2},2); + plot(zscore(mean_wave)) +end +% hold off + +%% Extract mean waveforms and plot the spike width distribution +% You need the clWaveforms from the DE_Salience script for that + +widths = nan(1,size(clWaveforms,1)); +peak2troughs_amp = nan(1,size(clWaveforms,1)); +troughs_loc = nan(1,size(clWaveforms,1)); +peak2troughs_dur = nan(1,size(clWaveforms,1)); +for unit = 1:size(clWaveforms,1) + mean_wave = mean(clWaveforms{unit,2},2); + [~,troughs_loc(unit),widths(unit),peak2troughs_amp(unit)] = findpeaks(-mean_wave,'SortStr','descend','NPeaks',1); + [~,peak_loc,~,~] = findpeaks(mean_wave); + if ~isempty(find(peak_loc > troughs_loc(unit),1)) + peak_loc = peak_loc(find(peak_loc > troughs_loc(unit),1)); + peak2troughs_dur(unit) = abs(diff([peak_loc,troughs_loc(unit)])); + else + try + peak_loc = peak_loc(find(peak_loc < troughs_loc(unit),1,'last')); + peak2troughs_dur(unit) = abs(diff([peak_loc,troughs_loc(unit)])); + catch + peak2troughs_dur(unit) = nan; + end + end +end + +% Widths are given in data points. Calculate in usecs +framerate = fs; % in Hz +widths_usec = (widths/framerate)*1000000; +peak2troughs_usec = (peak2troughs_dur/framerate)*1000000; +figure +hold on +% h(1) is the handle to the histogram, and h(2) is the handle to the density curve +h = histfit(widths_usec,50,'kernel'); +localmin = h(2).XData(islocalmin(h(2).YData)); +localmin = localmin(1); +ylims = ylim; +plot([localmin, localmin], [ylims(1),ylims(2)], 'r:', 'LineWidth', 3) +text(localmin, 0.9*ylims(2),sprintf('%.2f µm ',localmin),'HorizontalAlignment','right') +set(gca, 'XLimSpec', 'Tight') +xlabel('Full Width at Half Maximum [µs]') +ylabel('Cell count') +title('Distribution of waveform widths across all units') +hold off + +% Gives the total amount of units with a mean waveform smaller than the +% local min (i.e., putative interneurons) +put_in = sum(h(1).YEndPoints(1:find(h(1).XData < localmin,1,'last'))); +% Gives the total amount of units with a mean waveform greater than the +% local min (i.e., excitatory interneurons) +put_ex = sum(h(1).YEndPoints(find(h(1).XData < localmin,1,'last')+1:end)); + +figure +pie([put_in,put_ex],'%.1f%%') + +figure +s_1 = scatterhist(widths_usec,peak2troughs_usec,'NBins',30,'Kernel','overlay'); +axis padded + +% Calculate principal component +coeff = pca([widths_usec',peak2troughs_usec']); + +ylims = ylim; +xvals = linspace(coeff(1)+coeff(2)*ylims(1),coeff(1)+coeff(2)*ylims(2)); +hold on, plot(xvals,coeff(1)+coeff(2)*xvals) + +xlabel('Full Width at Half Maximum [µs]') +ylabel('Trough to Second Peak [µs]') +title('Scatter of Waveform Characterstics') + +% Rotate along the first principal component +theta = atan(coeff(2)); +theta_deg = (theta/pi)*180; +R = [cos(theta) -sin(theta); sin(theta) cos(theta)]; + +v = [widths_usec' peak2troughs_usec']; +vr = v*R; +x = vr(:,1); +y = vr(:,2); + +% figure +% s_2 = scatterhist(x,y,'NBins',30); + +% % Plot PC line as reference +% v_pc = [linspace(0,800)' (coeff(1)+coeff(2)*linspace(0,800))']; +% vr_pc = v_pc*R; +% x_pc = vr_pc(:,1); +% y_pc = vr_pc(:,2); +% hold on, plot(x_pc,y_pc), hold off + +%% +figure + +subplot(2,1,1) +h2 = histfit(x,30,'kernel'); + +localmin = h2(2).XData(islocalmin(h2(2).YData)); +ylims = ylim; +try + hold on, plot([localmin, localmin], [ylims(1),ylims(2)], 'r:', 'LineWidth', 3) +catch +end + +xticklabels({}) +ylabel('Cell Count') +axis tight +title('Cell Distribution along the PC1') + +subplot(2,1,2) +s_3 = scatter(widths_usec,peak2troughs_usec); +axis padded +ylims = ylim; +xvals = linspace(coeff(1)+coeff(2)*ylims(1),coeff(1)+coeff(2)*ylims(2)); +hold on, plot(xvals,coeff(1)+coeff(2)*xvals) + +title('Scatter of Waveform Characterstics with the PC1') +xlabel('Full Width at Half Maximum [µs]') +ylabel('Trough to Second Peak [µs]') + +%% +figure +s_3 = scatter(widths_usec,peak2troughs_usec); + +a1 = gca; + +a3 = axes('position',get(a1,'position')); +set(a3,'color','none','ycolor','none','xcolor','none'); +% a3.Visible = 'off'; +title('Scatter of Waveform Characterstics rotated along PC1') + +a2 = axes('position',get(a1,'position')); +h2 = histogram(flip(x),'NumBins',30); +pos1 = get(a1,'Position'); +posfig = get(gcf,'Position'); + +rlim=[min([x(:);y(:)]),max([x(:);y(:)])];rlim(2)=rlim(2)+rlim(2)-rlim(1); + +% tmp = min(pos1([3,4]).*posfig([3,4])); +% pos1(3) = tmp/posfig(3); +% pos1(4) = tmp/posfig(4); +% pos1(3:4) = [0.7 0.7]; +pos1 = [0.23 0.11 0.6 0.4]; +pos2 = [0.23 0.11 0.6 0.2]; +% pos2 = [pos1(1)+(pos1(3))/2-pos1(3)/6, pos1(2)+(pos1(4))/2-pos1(4)/6, 0.6, 0.4]; + +set(a1,'ActivePositionProperty','position','Position',pos1,'xlim',rlim,... + 'ylim',rlim,'color','none'); +set(a2,'ActivePositionProperty','position','Position',pos2,'color','none'); +set(a2,'CameraViewAngle',0,'View',[theta_deg-45,90],'box','off','ycolor','none',... + 'xtick',[],'Nextplot','add'); +set(gcf,'CurrentAxes',a1) + +xlabel('Full Width at Half Maximum [µs]') +ylabel('Peak to Trough [µs]') + +% title('Scatter of Waveform Characterstics rotated along PC1') +axis padded + +%% +modelfun = @(b,x) b(1) + b(2) * x + b(3) * exp(-(x(:, 1) - b(4)).^2/b(5)) + b(6) * exp(-(x(:, 1) - b(7)).^2/b(8)); +beta0 = [6, 0.1, 35, 10, 3, 25, 50, 9]; % Guess values to start with. Just make your best guess. +% Now the next line is where the actual model computation is done. +mdl = fitnlm(tbl, modelfun, beta0); +% Now the model creation is done and the coefficients have been determined. +% YAY!!!! +% Extract the coefficient values from the the model object. +% The actual coefficients are in the "Estimate" column of the "Coefficients" table that's part of the mode. +coefficients = mdl.Coefficients{:, 'Estimate'}; +% Let's do a fit, but let's get more points on the fit, beyond just the widely spaced training points, +% so that we'll get a much smoother curve. +X = linspace(min(X), max(X), 1920); % Let's use 1920 points, which will fit across an HDTV screen about one sample per pixel. +% Create smoothed/regressed data using the model: +yFitted = coefficients(1) + coefficients(2) * X + coefficients(3) * exp(-(X - coefficients(4)).^2 / coefficients(5)) + coefficients(6) * exp(-(X - coefficients(7)).^2 / coefficients(8)); + + + diff --git a/Ross/TriggerLatencies.m b/Ross/TriggerLatencies.m new file mode 100644 index 0000000..0a4152d --- /dev/null +++ b/Ross/TriggerLatencies.m @@ -0,0 +1,34 @@ +function [Latencies, Fidelities] = TriggerLatencies(Array, TriggerTimes, samplingFrequency, timeBin) + +% TriggerLatencies +% Feed in Unit spike times (1 cell per unit e.g. sortedData(goods,2) and trigger times (e.g. Conditions(2).Triggers)... +%...get Latencies in ms + +Latencies = cell(length(Array),1); +Fidelities = cell(length(Array),1); +triggers = TriggerTimes/samplingFrequency; + +for ind = 1:length(Array) + Train = Array{ind}; + firstSpks = zeros(1,length(triggers)); + responses = 0; + for TrigNo = 1:length(triggers) + + spks = find(Train > triggers(TrigNo,1) & Train < triggers(TrigNo,1) + timeBin); + + if isempty(spks) + firstSpks(TrigNo) = 0; + else + responses = responses + 1; + frstVal = spks(1); + latency = Train(frstVal) - triggers(TrigNo, 1); + firstSpks(TrigNo) = latency; + end + end + firstSpks(firstSpks == false) = []; + Latencies{ind} = firstSpks; + Fidelities{ind} = (responses/length(triggers))*100; +end +end + + diff --git a/Ross/TriggeredISIhists.m b/Ross/TriggeredISIhists.m new file mode 100644 index 0000000..0a308a2 --- /dev/null +++ b/Ross/TriggeredISIhists.m @@ -0,0 +1,74 @@ +% function = TriggeredISIs(clInfo,sortedData,Conditions,responseWindow,fs,ISIspar,onOffStr) + + +%% Getting the ActiveUnit ISIs from sortedData +ind = clInfo.ActiveUnit; +Ncl = sum(ind); +gclID = clInfo.id(ind == true); +ind = ismember(sortedData(:,1), gclID); +spkSubs = cellfun(@(x) round(x.*fs), sortedData(ind,2),... + 'UniformOutput', false); +ISIVals = cellfun(@(x) [x(1)/fs; diff(x)/fs], spkSubs,... + 'UniformOutput', 0); +NnzvPcl = cellfun(@numel,ISIVals); +Nnzv = sum(NnzvPcl); +rows = cell2mat(arrayfun(@(x,y) repmat(x,y,1), (1:Ncl)', NnzvPcl,... + 'UniformOutput', 0)); +cols = cell2mat(spkSubs); +vals = cell2mat(ISIVals); +ISIspar = sparse(rows, cols, vals); + +%% Creating the TrigISIs Struct + + +ConsConds = Conditions(23:34); +nCond = length(ConsConds); +% sortedData = sortedData(:,1); +for chCond = 1:nCond + TrigISIs(chCond).name = ConsConds(chCond).name; + TrigISIs(chCond).Vals(1).name = 'Spontaneous'; + TrigISIs(chCond).Vals(2).name = 'Evoked'; +end + +%% Adding ISIs to TrigISIs +spontaneousWindow = -flip(responseWindow); + +for chCond = 1:nCond + + + % contains will give multiple units when looking for e.g. cl45 +% spkLog = StepWaveform.subs2idx(round(sortedData{goods(1),2}*fs),Ns); + % spkSubs replaces round(sortedData{goods(1),2}*fs) for the rest of the + % clusters + % Subscript column vectors for the rest good clusters + for wIndex = 1:2 + if wIndex == 1 + Window = spontaneousWindow; + else + Window = responseWindow; + end + [~, isiStack] = getStacks(false,ConsConds(chCond).Triggers, onOffStr,... + Window,fs,fs,[],ISIspar); + lInda = isiStack > 0; + % timelapse becomes spontaneousWindow for pre-trigger, and responseWindow + % for post + TrigISIs(chCond).Vals(wIndex).TriggeredIsI = isiStack; + for histInd = 1: Ncl + [hisi, edges] = histcounts(log10(isiStack(histInd,:,:)), 'BinEdges', log10(0.001):0.01:log10(10)); + TrigISIs(chCond).Vals(wIndex).cts{histInd} = hisi; + TrigISIs(chCond).Vals(wIndex).bns{histInd} = (edges(1:end-1) + edges(2:end))/2; + + end + end +end +%% ISIs and CumISIs +for chCond = 1:nCond + for a = 1:length(TrigISIs(chCond).Vals(wIndex).cts) + TrigISIs(chCond).Vals(1).ISI{a} = TrigISIs(chCond).Vals(1).cts{a}./sum(TrigISIs(chCond).Vals(1).cts{a}); + TrigISIs(chCond).Vals(2).ISI{a} = TrigISIs(chCond).Vals(2).cts{a}./sum(TrigISIs(chCond).Vals(2).cts{a}); + TrigISIs(chCond).Vals(1).CumISI{a} = cumsum(TrigISIs(chCond).Vals(1).ISI{a}); + TrigISIs(chCond).Vals(2).CumISI{a} = cumsum(TrigISIs(chCond).Vals(2).ISI{a}); + end +end +%% Saving ISIhist +save(fullfile(dataDir,[expName,'_', num2str(responseWindow), '_TriggeredISIshistBase10.mat']), 'ISI', 'ConsConds', '-v7.3'); \ No newline at end of file diff --git a/Ross/TriggeredISIs.m b/Ross/TriggeredISIs.m new file mode 100644 index 0000000..45f4b6c --- /dev/null +++ b/Ross/TriggeredISIs.m @@ -0,0 +1,82 @@ +% 26.5.2021 + + + + +% function = TriggeredISIs(clInfo,sortedData,Conditions,responseWindow,fs,ISIspar,onOffStr) + + +%% Getting the ActiveUnit ISIs from sortedData +ind = clInfo.ActiveUnit; +gclID = clInfo.id(ind == true); +%ind = ismember(sortedData(:,1), gclID(wruIdx,1)); +ind = ismember(sortedData(:,1), gclID); +Ncl = sum(ind); +spkSubs = cellfun(@(x) round(x.*fs), sortedData(ind,2),... + 'UniformOutput', false); +ISIVals = cellfun(@(x) [x(1)/fs; diff(x)/fs], spkSubs,... + 'UniformOutput', 0); +NnzvPcl = cellfun(@numel,ISIVals); +Nnzv = sum(NnzvPcl); +rows = cell2mat(arrayfun(@(x,y) repmat(x,y,1), (1:Ncl)', NnzvPcl,... + 'UniformOutput', 0)); +cols = cell2mat(spkSubs); +vals = cell2mat(ISIVals); +ISIspar = sparse(rows, cols, vals); + +%% Creating the TrigISIs Struct + + +ConsConds = Conditions(18:20); +nCond = length(ConsConds); +% sortedData = sortedData(:,1); +for chCond = 1:nCond + TrigISIs(chCond).name = ConsConds(chCond).name; + TrigISIs(chCond).Vals(1).name = 'Spontaneous'; + TrigISIs(chCond).Vals(2).name = 'Evoked'; +end + +%% Adding ISIs to TrigISIs +spontaneousWindow = -flip(responseWindow); + +for chCond = 1:nCond + + + % contains will give multiple units when looking for e.g. cl45 +% spkLog = StepWaveform.subs2idx(round(sortedData{goods(1),2}*fs),Ns); + % spkSubs replaces round(sortedData{goods(1),2}*fs) for the rest of the + % clusters + % Subscript column vectors for the rest good clusters + for wIndex = 1:2 + if wIndex == 1 + Window = spontaneousWindow; + else + Window = responseWindow; + end + [~, isiStack] = getStacks(false,ConsConds(chCond).Triggers, onOffStr,... + Window,fs,fs,[],ISIspar); + lInda = isiStack > 0; + % timelapse becomes spontaneousWindow for pre-trigger, and responseWindow + % for post + TrigISIs(chCond).Vals(wIndex).TriggeredIsI = isiStack; + for histInd = 1: Ncl + figure('Visible','off'); + hisi = histogram(log10(isiStack(histInd,:,:)), 'BinEdges', log10(0.0001):0.01:log10(10)); + TrigISIs(chCond).Vals(wIndex).cts{histInd} = hisi.BinCounts; + TrigISIs(chCond).Vals(wIndex).bns{histInd} = (hisi.BinEdges(1:end-1) + hisi.BinEdges(2:end))/2; + + close gcf; + end + end +end +%% ISIs and CumISIs +for chCond = 1:nCond + for a = 1:length(TrigISIs(chCond).Vals(wIndex).cts) + TrigISIs(chCond).Vals(1).ISI{a} = TrigISIs(chCond).Vals(1).cts{a}./sum(TrigISIs(chCond).Vals(1).cts{a}); + TrigISIs(chCond).Vals(2).ISI{a} = TrigISIs(chCond).Vals(2).cts{a}./sum(TrigISIs(chCond).Vals(2).cts{a}); + TrigISIs(chCond).Vals(1).CumISI{a} = cumsum(TrigISIs(chCond).Vals(1).ISI{a}); + TrigISIs(chCond).Vals(2).CumISI{a} = cumsum(TrigISIs(chCond).Vals(2).ISI{a}); + end +end +%% Saving ISIhist +% save(fullfile(dataDir,[expName,'_', num2str(responseWindow), '_TriggeredISIshistBase10.mat']), 'ISI', 'ConsConds', '-v7.3'); \ No newline at end of file diff --git a/Ross/TriggeredISIstacks.m b/Ross/TriggeredISIstacks.m new file mode 100644 index 0000000..e65ddc0 --- /dev/null +++ b/Ross/TriggeredISIstacks.m @@ -0,0 +1,50 @@ +% function ISIbox = TriggeredISIs(clInfo,sortedData,Conditions,responseWindow,fs,ISIspar,onOffStr) +% spontaneousWindow = -flip(responseWindow); + + + + + + + +ConsConds = Conditions(3:end); +nCond = length(ConsConds); +for ChCond = 1:nCond + ISIstack(ChCond).name = ConsConds(ChCond).name; + ISIstack(ChCond).Vals(1).name = 'Spontaneous'; + ISIstack(ChCond).Vals(2).name = 'Evoked'; +end + +for ChCond = 1:nCond + name = [ConsConds(ChCond).name, '_MR']; + + if contains(ConsConds(ChCond).name, 'Laser_Con', 'IgnoreCase', true) + name = [ConsConds(ChCond).name, '_LR']; + elseif contains(ConsConds(ChCond).name, 'ch_Laser', 'IgnoreCase', true) + name = [ConsConds(ChCond-1).name, '_MR']; % make this more robust to match laser intensity + end + + Ind = find(clInfo.(name)); + ID = clInfo.id(Ind); + goods = find(ismember(sortedData(:,1), ID))'; + spkLog = StepWaveform.subs2idx(round(sortedData{goods(1),2}*fs),Ns); + % spkSubs replaces round(sortedData{goods(1),2}*fs) for the rest of the + % clusters + % Subscript column vectors for the rest good clusters + for wIndex = 1:2 + if wIndex == 1 + Window = spontaneousWindow; + else + Window = responseWindow; + end + [~, isiStack] = getStacks(spkLog,Conditions(ChCond).Triggers, onOffStr,... + Window,fs,fs,[],ISIspar); + % timelapse becomes spontaneousWindow for pre-trigger, and responseWindow + % for post + + ISIstack(ChCond).Vals(wIndex).Stack = isiStack; + + + end +end +save(fullfile(dataDir,[expName,'_ISIstacks.mat']), 'ISIstacks', 'ConsConds', '-v7.3'); \ No newline at end of file diff --git a/Ross/TriggeredRates.m b/Ross/TriggeredRates.m new file mode 100644 index 0000000..0f7a248 --- /dev/null +++ b/Ross/TriggeredRates.m @@ -0,0 +1,30 @@ +function Rates = TriggeredRates(Array, TriggerTimes, samplingFrequency, timeBin) + +% TriggeredRates +% Feed in Unit spike times (1 cell per unit e.g. sortedData(goods,2) and trigger times (e.g. Conditions(2).Triggers)... +%...get Latencies in ms + +Rates = cell(length(Array),1); +triggers = TriggerTimes/samplingFrequency; + +for ind = 1:length(Array) + Train = Array{ind}; + rate = zeros(1,length(triggers)); + + for TrigNo = 1:length(triggers) + + spkInds = find(Train > triggers(TrigNo,1) & Train < triggers(TrigNo,1) + timeBin); + + if isempty(spkInds) + rate(TrigNo) = 0; + else + cts = length(spkInds); + rate(TrigNo) = cts/timeBin; + end + end + Rates{ind} = rate; + +end +end + + diff --git a/Ross/Untitled.m b/Ross/Untitled.m new file mode 100644 index 0000000..88a1162 --- /dev/null +++ b/Ross/Untitled.m @@ -0,0 +1,3 @@ +for a = length(Results) +fprintf(1, [Results(a).name,' Kolgorov-Smirnov Test = ', num2str(Results(a).kstest), ' \n \n']) +end \ No newline at end of file diff --git a/Ross/Venn.m b/Ross/Venn.m new file mode 100644 index 0000000..6649129 --- /dev/null +++ b/Ross/Venn.m @@ -0,0 +1,44 @@ +function Venn(clInfo, a) +% a = laser intensity +pwr = num2str(a); + +LRind = find(clInfo.(['Laser_Control_', pwr, 'mW_LR']) & clInfo.(['Mech_Control_', pwr, 'mW_MR']) == false... +& clInfo.(['Mech_Control_', pwr, 'mW_vs_' 'Mech_Laser_', pwr, 'mW_Evoked_Response']) == false); +LR = length(LRind); + +MRind = find(clInfo.(['Laser_Control_', pwr, 'mW_LR']) == false & clInfo.(['Mech_Control_', pwr, 'mW_MR'])... +& clInfo.(['Mech_Control_', pwr, 'mW_vs_' 'Mech_Laser_', pwr, 'mW_Evoked_Response']) == false); +MR = length(MRind); + +LRMRind = find(clInfo.(['Laser_Control_', pwr, 'mW_LR']) & clInfo.(['Mech_Control_', pwr, 'mW_MR'])... +& clInfo.(['Mech_Control_', pwr, 'mW_vs_' 'Mech_Laser_', pwr, 'mW_Evoked_Response']) == false); +LRMR = length(LRMRind); + +Drivenind = find(clInfo.(['Laser_Control_', pwr, 'mW_LR']) & clInfo.(['Mech_Control_', pwr, 'mW_MR'])... +& clInfo.(['Mech_Control_', pwr, 'mW_vs_' 'Mech_Laser_', pwr, 'mW_Evoked_Response'])); +Driven = length(Drivenind); + +ModulatedMRind = find(clInfo.(['Laser_Control_', pwr, 'mW_LR']) == false & clInfo.(['Mech_Control_', pwr, 'mW_MR'])... +& clInfo.(['Mech_Control_', pwr, 'mW_vs_' 'Mech_Laser_', pwr, 'mW_Evoked_Response'])); +ModulatedMR = length(ModulatedMRind); + +ModulatedLRind = find(clInfo.(['Laser_Control_', pwr, 'mW_LR']) & clInfo.(['Mech_Control_', pwr, 'mW_MR']) == false... +& clInfo.(['Mech_Control_', pwr, 'mW_vs_' 'Mech_Laser_', pwr, 'mW_Evoked_Response'])); +ModulatedLR = length(ModulatedLRind); + +Awokenind = find(clInfo.(['Laser_Control_', pwr, 'mW_LR']) == false & clInfo.(['Mech_Control_', pwr, 'mW_MR']) == false... +& clInfo.(['Mech_Control_', pwr, 'mW_vs_' 'Mech_Laser_', pwr, 'mW_Evoked_Response'])); +Awoken = length(Awokenind); + +vennX([LR, LRMR, MR, ModulatedMR , Awoken, ModulatedLR, Driven], 0.01); + +LEvCounts = ['Mech_Laser_' pwr, 'mW_Counts_Evoked']; +CEvCounts = ['Mech_Control_' pwr, 'mW_Counts_Evoked']; + +modInc = sum(clInfo.(LEvCounts)(ModulatedMRind) > clInfo.(CEvCounts)(ModulatedMRind)); +modDec = sum(clInfo.(LEvCounts)(ModulatedMRind) < clInfo.(CEvCounts)(ModulatedMRind)); +drvInc = sum(clInfo.(LEvCounts)(Drivenind) > clInfo.(CEvCounts)(Drivenind)); +drvDec = sum(clInfo.(LEvCounts)(Drivenind) < clInfo.(CEvCounts)(Drivenind)); +Laser_Rest = sum(clInfo.(['Laser_Control_', pwr, 'mW_LR'])) - drvInc - drvDec; +vennX([modInc, drvInc, Laser_Rest, drvDec, modDec, 0, 0], 0.01); +end diff --git a/Ross/WaveformMeasures.m b/Ross/WaveformMeasures.m new file mode 100644 index 0000000..3c72aaa --- /dev/null +++ b/Ross/WaveformMeasures.m @@ -0,0 +1,55 @@ +function WvMeasures = WaveformMeasures(ID, clWaveforms, fs) +WvMeasures = struct([]); +inds = find(ismember(clWaveforms(:,1), ID)); +for a = 1:length(ID) + fig = figure('color', 'white'); + ind = inds(a); + bartho = getBarthoMeasure((mean(clWaveforms{ind,2},2)), fs); + plot(mean(clWaveforms{ind,2},2), 'Color', 'b'); + fig = gcf; + ax = fig(1).Children; + sz = size(clWaveforms{ind,2}(:,1)); + sz = sz(1); + + trough = min(mean(clWaveforms{ind,2},2)); + troughInd = find(ismember(mean(clWaveforms{ind,2},2), trough)); + peak2 = max(mean(clWaveforms{ind,2}(troughInd:end,:),2)); + peak2Ind = find(ismember(mean(clWaveforms{ind,2},2), peak2)); + hold on + plot(peak2Ind*ones(100), linspace(trough, peak2, 100),... + 'LineStyle', '--', 'Color', 'k'); + plot(linspace(troughInd, peak2Ind,peak2Ind-troughInd), ... + trough*ones(peak2Ind-troughInd), 'Color', 'k'); + text(peak2Ind + 1, trough, [num2str(bartho(1)*1e3), '_{ms}']) + hold off + + + +% ax.XLim = [1, sz]; +% ax.YLim = [1.1*trough, -1.1*trough]; % round here +% ax.YTick = round(linspace(ax.YLim(1), ax.YLim(2), 10)); +% ax.YTickLabel = round(ax.YTick./1e3,2); +% ax.XTick = linspace(1,sz,10); +% ax.XTickLabel = round(ax.XTick./fs*1e3,1); +% ax.XTickLabelRotation = -45; +% title(['Unit ',clWaveforms{ind,1},' Waveform']); +% xlabel(ax,'Time_{(ms)}'); +% ylabel(ax,'Amplitude_{(mV)}'); +% ax.FontSize = 20; + if class(ID) == 'cell' + figureName = ID{a}; + else + figureName = ID; + end + WvMeasures(a).ID = figureName; + WvMeasures(a).PeakTrough = bartho(1); + WvMeasures(a).HalfWidth = bartho(2); + WvMeasures(a).FirstPeak = bartho(3); + WvMeasures(a).SecondPeak = bartho(4); + if class(ID) == 'char' + return + + end + +end +end \ No newline at end of file diff --git a/Ross/addWaveformMeasures.m b/Ross/addWaveformMeasures.m new file mode 100644 index 0000000..660b41c --- /dev/null +++ b/Ross/addWaveformMeasures.m @@ -0,0 +1,17 @@ +function addWaveformMeasures(clInfo, ID, clWaveforms, dataDir, fs) + +for a = 1:length(ID) + ind = find(ismember(clWaveforms(:,1), ID{a})); + bartho(a,:) = getBarthoMeasure((mean(clWaveforms{ind,2},2)), fs); + +end +clInfo = addvars(clInfo,NaN(height(clInfo),1),'Before','firing_rate',... +'NewVariableNames','Trough_Peak'); +clInfo = addvars(clInfo,NaN(height(clInfo),1),'Before','firing_rate',... +'NewVariableNames','Half_Peak_Width'); + +inds = find(ismember(clInfo.id, ID)); +clInfo.Trough_Peak(inds) = bartho(:,1); +clInfo.Half_Peak_Width(inds) = bartho(:,2); +writeClusterInfo(clInfo, fullfile(dataDir,'cluster_info.tsv')); +end \ No newline at end of file diff --git a/Ross/artefactHunter.m b/Ross/artefactHunter.m new file mode 100644 index 0000000..21b5862 --- /dev/null +++ b/Ross/artefactHunter.m @@ -0,0 +1,20 @@ +firstSpikes{a} = zeros(length(relativeSpkTmsStruct(a).SpikeTimes(:,1)),length(relativeSpkTmsStruct(a).SpikeTimes(1,:))); +artVals(a).means = zeros(length(relativeSpkTmsStruct(a).SpikeTimes(:,1)),1); +artVals(a).sd = zeros(length(relativeSpkTmsStruct(a).SpikeTimes(:,1)),1); +for a = 1: length(relativeSpkTmsStruct) + for b = 1: length(relativeSpkTmsStruct(a).SpikeTimes(:,1)) + vals = zeros(1,length(relativeSpkTmsStruct(a).SpikeTimes(1,:))); + for c = 1: length(relativeSpkTmsStruct(a).SpikeTimes(1,:)) + ind = find(relativeSpkTmsStruct(a).SpikeTimes{b,c}(:,:) >= 0); + if sum(relativeSpkTmsStruct(a).SpikeTimes{b,c} >= 0)~= false + first = ind(1); + vals(1,c) = relativeSpkTmsStruct(a).SpikeTimes{b,c}(first); + else + end + end + vals(find(vals == 0)) = []; + artVals(a).means(b,1) = mean(vals); + artVals(a).sd(b,1) = std(vals); + end +end + diff --git a/Ross/createChannelMap.m b/Ross/createChannelMap.m new file mode 100644 index 0000000..3f55e8f --- /dev/null +++ b/Ross/createChannelMap.m @@ -0,0 +1,32 @@ +name = 'Corrected_H5_ChanMap'; +load('Z:\Ross\ProbeFiles\Adaptor-Amplifier_Mapping.mat') + + +% x = ones(64,1); +% x(2:2:end) = 1+22.5; +% y = linspace(12.5,800,64)'; +% depths = flip([0:20:1275]'); + +intan_ordered_channelmap = NaN(64,1); +% intan_ordered_depths = NaN(64,1); +for pin = 0:63 + ind = find(rhdInput == pin); + intan_ordered_channelmap(pin+1) = electrodes_depth_ordered_H3(ind); +% intan_ordered_depths(pin+1) = depths(ind); +end +%% +chMap = NaN(64,3); +for ind = 1:64 + ch = intan_ordered_channelmap(ind); + dpth = find(h5chans_x_y(:,1)==ch); + chMap(ind,:) = h5chans_x_y(dpth,:); +end + +% chanMap = [1:64]'; +% chanMap0ind = chanMap-1; +% xcoords = ones(64,1); +% ycoords = intan_ordered_depths; +% kcoords = ones(64,1); +% connected = true(64,1); +% fs = 1/33.3e-6; +% save('Z:\Ross\ProbeFiles\Corrected_H5_ChanMap.mat','chanMap','chanMap0ind','xcoords','ycoords','kcoords','name','connected', 'fs'); \ No newline at end of file diff --git a/Ross/crudeSNR.m b/Ross/crudeSNR.m new file mode 100644 index 0000000..3f9b659 --- /dev/null +++ b/Ross/crudeSNR.m @@ -0,0 +1,61 @@ +% crudeSNR +ind = find(VplCfa.Laser_Control_15mW_LR & VplCfa.Mech_Control_15mW_MR... +& VplCfa.Laser_Control_15mW_Counts_Spont > VplCfa.Laser_Control_15mW_Counts_Evoked... +& VplCfa.Mech_Control_15mW_Counts_Spont < VplCfa.Mech_Control_15mW_Counts_Evoked... +& VplCfa.Mech_Control_15mW_vs_Mech_Laser_15mW_Evoked_Response); +SNRup15 = VplCfa.id(ind); +ind = find(VplCfa.Laser_Control_15mW_LR & VplCfa.Mech_Control_15mW_MR... +& VplCfa.Laser_Control_15mW_Counts_Spont < VplCfa.Laser_Control_15mW_Counts_Evoked... +& VplCfa.Mech_Control_15mW_Counts_Spont < VplCfa.Mech_Control_15mW_Counts_Evoked... +& VplCfa.Mech_Control_15mW_vs_Mech_Laser_15mW_Evoked_Response); +FRup15 = VplCfa.id(ind); +ind = find(VplCfa.Laser_Control_10mW_LR & VplCfa.Mech_Control_10mW_MR... +& VplCfa.Laser_Control_10mW_Counts_Spont > VplCfa.Laser_Control_10mW_Counts_Evoked... +& VplCfa.Mech_Control_10mW_Counts_Spont < VplCfa.Mech_Control_10mW_Counts_Evoked... +& VplCfa.Mech_Control_10mW_vs_Mech_Laser_10mW_Evoked_Response); +SNRup10 = VplCfa.id(ind); +ind = find(VplCfa.Laser_Control_10mW_LR & VplCfa.Mech_Control_10mW_MR... +& VplCfa.Laser_Control_10mW_Counts_Spont < VplCfa.Laser_Control_10mW_Counts_Evoked... +& VplCfa.Mech_Control_10mW_Counts_Spont < VplCfa.Mech_Control_10mW_Counts_Evoked... +& VplCfa.Mech_Control_10mW_vs_Mech_Laser_10mW_Evoked_Response); +FRup10 = VplCfa.id(ind); +ind = find(VplCfa.Laser_Control_5mW_LR & VplCfa.Mech_Control_5mW_MR... +& VplCfa.Laser_Control_5mW_Counts_Spont > VplCfa.Laser_Control_5mW_Counts_Evoked... +& VplCfa.Mech_Control_5mW_Counts_Spont < VplCfa.Mech_Control_5mW_Counts_Evoked... +& VplCfa.Mech_Control_5mW_vs_Mech_Laser_5mW_Evoked_Response); +SNRup5 = VplCfa.id(ind); +ind = find(VplCfa.Laser_Control_5mW_LR & VplCfa.Mech_Control_5mW_MR... +& VplCfa.Laser_Control_5mW_Counts_Spont < VplCfa.Laser_Control_5mW_Counts_Evoked... +& VplCfa.Mech_Control_5mW_Counts_Spont < VplCfa.Mech_Control_5mW_Counts_Evoked... +& VplCfa.Mech_Control_5mW_vs_Mech_Laser_5mW_Evoked_Response); +FRup5 = VplCfa.id(ind); +ind = find(VplCfa.Laser_Control_15mW_LR & VplCfa.Mech_Control_15mW_MR... +& VplCfa.Laser_Control_15mW_Counts_Spont < VplCfa.Laser_Control_15mW_Counts_Evoked... +& VplCfa.Mech_Control_15mW_Counts_Spont > VplCfa.Mech_Control_15mW_Counts_Evoked... +& VplCfa.Mech_Control_15mW_vs_Mech_Laser_15mW_Evoked_Response); +SNRdwn15 = VplCfa.id(ind); +ind = find(VplCfa.Laser_Control_15mW_LR & VplCfa.Mech_Control_15mW_MR... +& VplCfa.Laser_Control_15mW_Counts_Spont > VplCfa.Laser_Control_15mW_Counts_Evoked... +& VplCfa.Mech_Control_15mW_Counts_Spont > VplCfa.Mech_Control_15mW_Counts_Evoked... +& VplCfa.Mech_Control_15mW_vs_Mech_Laser_15mW_Evoked_Response); +FRdwn15 = VplCfa.id(ind); +ind = find(VplCfa.Laser_Control_10mW_LR & VplCfa.Mech_Control_10mW_MR... +& VplCfa.Laser_Control_10mW_Counts_Spont < VplCfa.Laser_Control_10mW_Counts_Evoked... +& VplCfa.Mech_Control_10mW_Counts_Spont > VplCfa.Mech_Control_10mW_Counts_Evoked... +& VplCfa.Mech_Control_10mW_vs_Mech_Laser_10mW_Evoked_Response); +SNRdwn10 = VplCfa.id(ind); +ind = find(VplCfa.Laser_Control_10mW_LR & VplCfa.Mech_Control_10mW_MR... +& VplCfa.Laser_Control_10mW_Counts_Spont > VplCfa.Laser_Control_10mW_Counts_Evoked... +& VplCfa.Mech_Control_10mW_Counts_Spont > VplCfa.Mech_Control_10mW_Counts_Evoked... +& VplCfa.Mech_Control_10mW_vs_Mech_Laser_10mW_Evoked_Response); +FRdwn10 = VplCfa.id(ind); +ind = find(VplCfa.Laser_Control_5mW_LR & VplCfa.Mech_Control_5mW_MR... +& VplCfa.Laser_Control_5mW_Counts_Spont < VplCfa.Laser_Control_5mW_Counts_Evoked... +& VplCfa.Mech_Control_5mW_Counts_Spont > VplCfa.Mech_Control_5mW_Counts_Evoked... +& VplCfa.Mech_Control_5mW_vs_Mech_Laser_5mW_Evoked_Response); +SNRdwn5 = VplCfa.id(ind); +ind = find(VplCfa.Laser_Control_5mW_LR & VplCfa.Mech_Control_5mW_MR... +& VplCfa.Laser_Control_5mW_Counts_Spont > VplCfa.Laser_Control_5mW_Counts_Evoked... +& VplCfa.Mech_Control_5mW_Counts_Spont > VplCfa.Mech_Control_5mW_Counts_Evoked... +& VplCfa.Mech_Control_5mW_vs_Mech_Laser_5mW_Evoked_Response); +FRdwn5 = VplCfa.id(ind); diff --git a/Ross/fig.pdf b/Ross/fig.pdf new file mode 100644 index 0000000..cb58846 Binary files /dev/null and b/Ross/fig.pdf differ diff --git a/Ross/findCCs.m b/Ross/findCCs.m new file mode 100644 index 0000000..c847ed9 --- /dev/null +++ b/Ross/findCCs.m @@ -0,0 +1,12 @@ +function findCCs(corrs) +N = size(corrs{1},2); +xh = (1:(N-1)/2)/fs; +x = [-flip(xh), 0 , xh]; + + +for a = randi(length(corrs),1,25) +figure; plot(x, corrs{a}(2,:)) +hold on +[sp, mdls] = fitSpline(x, corrs{a}(2,:), 1, 5e-2, 2/3); +plot(x, sp) +end \ No newline at end of file diff --git a/Ross/findKSsignificance.m b/Ross/findKSsignificance.m new file mode 100644 index 0000000..3cb2343 --- /dev/null +++ b/Ross/findKSsignificance.m @@ -0,0 +1,23 @@ +function [txt ,star] = findKSsignificance(Group1,Group2) +p = []; + p(1) = kstest2(Group1, Group2, 'Alpha', 0.05); + for P = 2:100 + p((P)) = kstest2(Group1, Group2, 'Alpha', 10^(-P)); + end + pInd = find(p == false); + if pInd(1) == 1 + star = 'ns'; + txt= 'p = ns'; + elseif pInd(1) == 2 + star = '*'; + txt= [star, 'p < 0.05']; + else + star = '*'; + for a = 2:(pInd(1)-1) + star = [star, '*']; + end + pTxt = ['0.', num2str(zeros(1,(pInd(1)-2))), '1']; + pTxt(pTxt == ' ') = []; + txt = [star, 'p < ', pTxt]; + end +end diff --git a/Ross/findRSsignificance.m b/Ross/findRSsignificance.m new file mode 100644 index 0000000..2173da5 --- /dev/null +++ b/Ross/findRSsignificance.m @@ -0,0 +1,23 @@ +function [Txt ,star] = findSRsignificance(Group1,Group2) +p = []; + [val, p(1)] = ranksum(Group1, Group2, 'Alpha', 0.05); + for P = 2:40 + [val, p((P))] = ranksum(Group1, Group2, 'Alpha', 10^(-P)); + end + pInd = find(p == false); + if pInd(1) == 1 + star = 'ns'; + Txt= 'p = ns'; + elseif pInd(1) == 2 + star = '*'; + Txt= [star, 'p < 0.05']; + else + star = '*'; + for a = 2:(pInd(1)-1) + star = [star, '*']; + end + pTxt = ['0.', num2str(zeros(1,(pInd(1)-2))), '1']; + pTxt(pTxt == ' ') = []; + Txt = [star, 'p < ', pTxt]; + end +end diff --git a/Ross/findSRsignificance.m b/Ross/findSRsignificance.m new file mode 100644 index 0000000..4b693f5 --- /dev/null +++ b/Ross/findSRsignificance.m @@ -0,0 +1,23 @@ +function [txt ,star] = findSRsignificance(Group1,Group2) +p = []; + [val, p(1)] = signrank(Group1, Group2, 'Alpha', 0.05); + for P = 2:40 + [val, p((P))] = signrank(Group1, Group2, 'Alpha', 10^(-P)); + end + pInd = find(p == false); + if pInd(1) == 1 + star = 'ns'; + txt= 'p = ns'; + elseif pInd(1) == 2 + star = '*'; + txt= [star, 'p < 0.05']; + else + star = '*'; + for a = 2:(pInd(1)-1) + star = [star, '*']; + end + pTxt = ['0.', num2str(zeros(1,(pInd(1)-2))), '1']; + pTxt(pTxt == ' ') = []; + txt = [star, 'p < ', pTxt]; + end +end diff --git a/Ross/findSubPopulations.m b/Ross/findSubPopulations.m new file mode 100644 index 0000000..e97ebea --- /dev/null +++ b/Ross/findSubPopulations.m @@ -0,0 +1,104 @@ +function [GroupIDs, fig] = findSubPopulations(nkm, clInfo, clIDs, ConditionName, TriggerTimes, sortedData, samplingFrequency) + +% This function plots latency and jitter of latnecy against depth for each +% unit and groups the units according to the measures by using k means +% clustering. nkm determines the number of groups one wants to cluster in +% to. + +fs = samplingFrequency; +clInd = ismember(clInfo.id, clIDs); +depths = table(clInfo.id(clInd), clInfo.abs_depth(clInd)); +depths = sortrows(depths,'Var2','ascend'); +ID = depths{:,1}; +depth = depths.Var2; +spkInd = []; +for i = 1:length(ID) + spkInd = [spkInd; find(ismember(sortedData(:,1), ID(i)))]; +end +name = ConditionName; +name(strfind(name, '_')) = ' '; +name = ['SubPopulations ', name]; +tm = 5e-2; +Latencies = TriggerLatencies(sortedData(spkInd,2), TriggerTimes, fs, tm); +mn = (cellfun(@mean, Latencies)*1e3); +sd = (cellfun(@std, Latencies)*1e3); +kmat = [mn, sd, depth]; + + +% Removing and highlighting dodgy units from plot +lowestLat = 2; +lowestSD = 0.2; +dodgyMean = ID(find(mn= 0); + if sum(relativeSpkTmsStruct(a).SpikeTimes{b,c} >= 0)~= false + first = ind(1); + vals(1,c) = relativeSpkTmsStruct(a).SpikeTimes{b,c}(first); + else + end + end + spVals(a).sZcf(b,1) = sum(vals == 0); + vals(find(vals == 0)) = []; + spVals(a).means(b,1) = mean(vals); + spVals(a).sd(b,1) = std(vals); + cf(b) = cf(b) - spVals(a).sZcf(b,1); + end + x = [1:length(relativeSpkTmsStruct(a).SpikeTimes(:,1))]; + y = log10(spVals(a).sd*1000); + f = figure('Name',[relativeSpkTmsStruct(a).name,' Standard Deviations of First Spikes Post-TTL']); + scatter(x,y,(cf+1)*2.5,[0,0,0]) +% t = text(x,y,gclID,'FontSize', 6); + title(relativeSpkTmsStruct(a).name); + xlabel('Unit No.'); + ylabel('log10(Std Dev) (ms)'); + savefig(f, fullfile(dataDir,[relativeSpkTmsStruct(a).name,' Standard Deviations of First Spikes Post-TTL.fig']), 'compact'); +end +end + + diff --git a/Ross/formatScatter.m b/Ross/formatScatter.m new file mode 100644 index 0000000..789dc19 --- /dev/null +++ b/Ross/formatScatter.m @@ -0,0 +1,17 @@ +function fig = formatScatter(fig) +set(fig, 'Position', [0.2220, 0.1781, 0.5446, 0.6943]) +ax = findobj(fig.Children, 'Type', 'axes'); +for ca = 1: length(ax) + ax(ca).FontName = 'Arial'; + ax(ca).FontSize = 15; + sc = findobj(ax(ca).Children, 'Type', 'Scatter'); + for csc = 1:length(sc) + sc(csc).SizeData = 400; +% if csc =~ 3 +% sc(csc).CData = [0, 0, 1]; +% end + end +end +end + + diff --git a/Ross/getAverageResponse.m b/Ross/getAverageResponse.m new file mode 100644 index 0000000..99f8c40 --- /dev/null +++ b/Ross/getAverageResponse.m @@ -0,0 +1,103 @@ +function plotUnitTriggeredResponse(ID, clInfo, sortedData, CondTriggers, samplingFreq, Triggers) + +% CondTriggers from Conditions struct + + + +% Redefining the stimulus signals from the low amplitude to logical values +whStim = {'piezo','whisker','mech','audio'}; +cxStim = {'laser','light'}; +lfpRec = {'lfp','s1','cortex','s1lfp'}; +trigNames = fieldnames(Triggers); +numTrigNames = numel(trigNames); +ctn = 1; +continuousSignals = cell(numTrigNames,1); +continuousNameSub = zeros(size(trigNames)); +while ctn <= numTrigNames + if contains(trigNames{ctn},whStim,'IgnoreCase',true) + continuousSignals{ctn} = Triggers.(trigNames{ctn}); + continuousNameSub(ctn) = ctn; + end + if contains(trigNames{ctn},cxStim,'IgnoreCase',true) + continuousSignals{ctn} = Triggers.(trigNames{ctn}); + continuousNameSub(ctn) = ctn; + end + if contains(trigNames{ctn},lfpRec,'IgnoreCase',true) + continuousSignals{ctn} = Triggers.(trigNames{ctn}); + continuousNameSub(ctn) = ctn; + end + ctn = ctn + 1; +end +continuousSignals(continuousNameSub == 0) = []; +continuousNameSub(continuousNameSub == 0) = []; +trigNames = trigNames(continuousNameSub); + + +% Preparing stack inputs +fs = samplingFreq; +Ns = min(structfun(@numel,Triggers)); +timeLapse = [-2, 7]; +clInd = ismember(clInfo.id, ID); +spkLog = StepWaveform.subs2idx(round(sortedData{clInd,2}*fs),Ns); +spks = sortedData(clInd,2); + +spkSubs = cellfun(@(x) round(x.*fs), spks,... + 'UniformOutput', false); + +% Making discStack +[discStack, cst] = getStacks(spkLog,CondTriggers,'on',... + timeLapse,fs,fs,spkSubs,continuousSignals); + + +[Ne, Nt, NTa] = size(discStack); +% Computing the time axis for the stack +tx = (0:Nt - 1)/fs + timeLapse(1); + +% delayFlags +delayFlags = true(NTa,1); +Na = sum(delayFlags,1); +trigSubset = sort(randsample(Na,Na)); +tLoc = find(delayFlags); +tSubs = tLoc(trigSubset); +binSz = 0.1; + + +plotRasterFromStack(discStack([1,2],:,tSubs),... + timeLapse, fs,''); +ax1 = gca; +hold on +clr = [0,1,1]; + +[PSTH, trig, sweeps] = getPSTH(discStack([1,2],:,:),timeLapse,... + ~delayFlags,binSz,fs); +trigTX = linspace(timeLapse(1),timeLapse(2),size(trig,2)); + +% Plotting lines for depicting the on- and offset of the trigger +tObj = StepWaveform(trig,1/mean(diff(trigTX))); +tSubs = tObj.subTriggers; +if ~isempty(tSubs) + for ct = 1:size(tSubs,1) + for nf = 1:size(tSubs,2) + line(ax1,'XData',repmat(trigTX(tSubs(ct,nf)),1,2),'YData',[0.5,Na+0.5],... + 'Color',clr,'LineWidth',2) + end + end +else + trig = logical(trig/max(trig(:))); + line(ax1,'XData',trigTX,'YData',(Na+1.5)*trig - 0.5,... + 'Color',clr,'LineWidth',2) +end + +yyaxis('right') +sc = 1/(Na*binSz); + + +PSTHax = linspace(timeLapse(1),timeLapse(2),size(PSTH,2)); +area(PSTHax, PSTH, 'FaceColor', [0,0,0], 'LineStyle', 'none', 'FaceAlpha', 0.1); +ax = gca; +adjustFactor = round(sc.*ax.YAxis(2).TickValues)/sc; +ax.YAxis(2).TickValues = adjustFactor; +ax.YAxis(2).TickLabels = sc.*ax.YAxis(2).TickValues; +end + + diff --git a/Ross/getBurstingMeasures.m b/Ross/getBurstingMeasures.m new file mode 100644 index 0000000..405dd69 --- /dev/null +++ b/Ross/getBurstingMeasures.m @@ -0,0 +1,70 @@ +function [burstSpkFreq, burstCF, nBursts, nSpikes, eventRatio] = getBurstingMeasures(UnitID, ISIcutoff, Traincutoff, minSpksperBurst, sortedData, samplingFrequency) + +% Returns the frequency of bursts with element(n) number of spikes in (up +% to 25 spikes per burst), as well as the bursting coefficient (no of burst +% spikes relative to total spikes) and the number of bursts. +% spb = minimum spikes per burst +ind = ismember(sortedData(:,1), UnitID); +SpikeTrain = sortedData{ind,2}; + + +fs = samplingFrequency; +rP = 10^-3; +if Traincutoff == round(Traincutoff) + Traincutoff = Traincutoff*(10^-3); +end + +if ISIcutoff == round(ISIcutoff) + ISIcutoff = ISIcutoff*(10^-3); +end + +dim=size(SpikeTrain); if dim(2)>dim(1),SpikeTrain=SpikeTrain';end %consistent column of spike times. +if SpikeTrain(1) == round(SpikeTrain(1)) + SpikeTrain = SpikeTrain/fs; +end +SpikeTrain(diff(SpikeTrain) < rP) = []; +ISIs = diff(SpikeTrain); +Events = find(ISIs > ISIcutoff); +Events = [1;Events]; +Events=unique(Events); + + + +c = 1; +Bursts = []; +for a = 1:length(Events) - 1 + current = Events(a); next = Events(a+1); + if sum(ISIs(current:next-1)) <= Traincutoff && next-current-minSpksperBurst >= 0 % min number of spikes per burst has to be greater than 1 + Bursts{c} = (SpikeTrain(current+1:next)); + c = c + 1; + end +end +current = Events(end); + +if sum(ISIs(current:end)) <= Traincutoff && next-current-minSpksperBurst >= 0 % min number of spikes per burst has to be greater than 1 + Bursts{c} = (ISIs(current:end)); +end +if length(Bursts) == 0 + nBursts = 0; + burstSpkFreq = zeros(25,1); + burstCF = 0; + eventRatio = 0; +else + nBursts = length(Bursts); + + eventRatio = nBursts/(length(Events)-nBursts); + + burstSpikes = cat(1, Bursts{:}); + burstCF = length(burstSpikes)/length(SpikeTrain); + + burstSz = zeros(size(Bursts))'; + for a = 1:length(Bursts) + burstSz(a,1) = numel(Bursts{a}); + end + burstSpkFreq = zeros(25,1); + for a = 1: 25 + burstSpkFreq(a,1) = sum(burstSz == a); + end +end +nSpikes = length(SpikeTrain); +end diff --git a/Ross/getBurstingMeasuresMUA.m b/Ross/getBurstingMeasuresMUA.m new file mode 100644 index 0000000..60c676d --- /dev/null +++ b/Ross/getBurstingMeasuresMUA.m @@ -0,0 +1,142 @@ +% function [burstSpkFreq, burstCF, nBursts, nSpikes, eventRatio] = getBurstingMeasuresMUA(UnitID, SpikeTrains, TrialStarts, TimeBefore, TimeAfter, Condition) + +%% + +%% Picking out the desired units +if ~exist("spkSubs") + ind = ismember(sortedData(:,1), gclID); + Spikes = cellfun(@(x) round(x.*fs),sortedData(ind,2),... + 'UniformOutput',false); +else + Spikes = spkSubs; +end + + +%% Parameters + +minSpksperBurst = 2; +Traincutoff = 40 * 10^-3; +ISIcutoff = 6 * 10^-3; +nSpkscutoff = 5; + +timeBeforesecs = 2.25; +timeAftersecs = 2.25; + +consconds = [20, 22, 25]; + + +%% Triggered Spike Times + + +conscondnames = {Conditions(consconds).name}; + +Triggers = {Conditions(consconds).Triggers}; +timeBefore = timeBeforesecs*fs; +timeAfter = timeAftersecs*fs; + +for t = 1:length(Triggers) + triggers = Triggers{t}(:,1); + +spont_window = [triggers-timeBefore, triggers-0.01]; +ev_window = [triggers+0.01, triggers+timeAfter]; + +consSpks = cell(length(Spikes), 2); + +for cu = 1:length(Spikes) + spks = Spikes{cu}; + sp_spks = []; + ev_spks = []; + for ct = 1:length(triggers) + sp_spks = [sp_spks; spks(spks > spont_window(ct,1) & spks < spont_window(ct,2))]; + ev_spks = [ev_spks; spks(spks > ev_window(ct,1) & spks < ev_window(ct,2))]; + end + consSpks{cu,1} = sp_spks; + consSpks{cu,2} = ev_spks; +end + + +%% Spont and Evoked Bursting Measures +% burstSpkFreq = cell(size(consSpks)); +burstCF = cell(size(consSpks)); % no. of spikes belonging to bursts / total spikes +nBursts = cell(size(consSpks)); % no. of bursts +nSpikes = cell(size(consSpks)); % no. of total spikes +bursteventRatio = cell(size(consSpks)); % no. of burst events + + + + +refperiod = 0.001; + +for cu = 1:length(Spikes) + for ct = 1:2 + spks = consSpks{cu,ct}; + if isempty(spks) +% burstSpkFreq{cu,ct} = 0; + burstCF{cu,ct} = 0; + nBursts{cu,ct} = 0; + nSpikes{cu,ct} = 0; + bursteventRatio{cu,ct} = 0; + else + + dim=size(spks); if dim(2)>dim(1),spks=spks';end %consistent column of spike times. + if spks(1) == round(spks(1)) + spks = spks/fs; + end + spks(diff(spks) < refperiod) = []; + ISIs = diff(spks); + Events = [1; find(ISIs > ISIcutoff)]; + Events=unique(Events); + + + + c = 1; + Bursts = []; + for a = 1:length(Events) - 1 + current = Events(a); next = Events(a+1); + if sum(ISIs(current:next-1)) <= Traincutoff && next-current-minSpksperBurst >= 0 && next-current <= nSpkscutoff-1 % min number of spikes per burst has to be greater than 1 + Bursts{c} = (spks(current+1:next)); + c = c + 1; + end + end + current = Events(end); + + if sum(ISIs(current:end)) <= Traincutoff && next-current-minSpksperBurst >= 0 && next-current <= nSpkscutoff-1 % min number of spikes per burst has to be greater than 1 + Bursts{c} = (ISIs(current:end)); + end + if isempty(Bursts) + nBursts{cu,ct} = 0; +% burstSpkFreq{cu,ct} = zeros(10,1); + burstCF{cu,ct} = 0; + bursteventRatio{cu,ct} = 0; + else + nBursts{cu,ct} = length(Bursts); + + bursteventRatio{cu,ct} = length(Bursts)/(length(Events)); + + burstSpikes = cat(1, Bursts{:}); + burstCF{cu,ct} = length(burstSpikes)/length(spks); + + burstSz = zeros(size(Bursts))'; + for a = 1:length(Bursts) + burstSz(a,1) = numel(Bursts{a}); + end +% burstSpkFreq = zeros(10,1); + for a = 1: 10 +% burstSpkFreq(a,1) = sum(burstSz == a); + end + end + nSpikes{cu,ct} = length(spks); + + end + + + + end +end +TriggeredBursts(t).ConditionName = conscondnames{t}; +TriggeredBursts(t).burstCF = burstCF; +TriggeredBursts(t).bursteventRatio = bursteventRatio; +TriggeredBursts(t).nBursts = nBursts; +TriggeredBursts(t).nSpikes = nSpikes; + +end diff --git a/Ross/getClusterWaveform.m b/Ross/getClusterWaveform.m new file mode 100644 index 0000000..04d379a --- /dev/null +++ b/Ross/getClusterWaveform.m @@ -0,0 +1,264 @@ +function clWaveforms = getClusterWaveform(clusterID, dataDir) +%GETCLUSTERWAVEFORM reads the raw binary file and compiles the voltage +%traces for the given cluster (the cluster number should be the one +%assigned by Kilosort/Phy). The output is a cell (or a structure) +%containing the mean waveform and its standard deviation. +% waveform = getClusterWaveform(clusterID) +% INPUTS +% - clusterID - character array, double or cell array containing +% the clusters from which the waveforms are required. +% OUTPUT +% - waveform - cell array or double vector containing the mean +% wavefrom for the given cluster(s). +% Emilio Isaias-Camacho @GrohLab 2019 + +%% Input validation +clWaveforms = cell(1,3); +checkNature = @(x) [iscell(x), ischar(x), isnumeric(x)]; +getLastCell = @(x) x{numel(x)}; +if ~any(checkNature(clusterID)) + fprintf(1,'Unsupported input!\n') + fprintf(1,'Be sure you input either the cluster ID as a ') + fprintf(1,'character vector, a number or\nas a cell array') + return +end +if ~exist(dataDir, 'dir') + fprintf(1,'Not possible to retrieve waveforms without the data!\n') + fprintf(1,'Please provide the data directory\n') + return +end +% Converting the ID(s) to cell arrays according to their nature +switch bi2de(checkNature(clusterID),'left-msb') + case 1 + fprintf(1,'Numeric ID detected\n') + clusterID = {num2str(clusterID)}; + case 2 + fprintf(1,'Character ID detected\n') + clusterID = {clusterID}; + case 4 + fprintf(1,'Cell ID detected\n') + charFlag = all(cellfun(@ischar, clusterID)); + if ~charFlag + fprintf(1,'The cluster ID(s) should be only character within') + fprintf(1,' a cell array\n') + fprintf(1,'Please provide the ID(s) as required and try again\n') + return + end +end +clusterID = unique(clusterID); +%% Getting ready for the file reading +% Reading the cluster summary +clTable = getClusterInfo(fullfile(dataDir, 'cluster_info.tsv')); +% % Reading the channel map +fP = fopen(fullfile(dataDir,'params.py'),'r'); +fgetl(fP); +ln = fgetl(fP); +fclose(fP); +Nch = double(getLastCell(textscan(ln,'%s = %d'))-1); +necessaryFiles = {fullfile(dataDir, 'channel_map.npy');... + fullfile(dataDir, 'spike_templates.npy');... + fullfile(dataDir, 'spike_clusters.npy')}; +allOk = [exist(necessaryFiles{1},'file'), exist(necessaryFiles{2},'file'),... + exist(necessaryFiles{3},'file')]; +if ~all(allOk) + fprintf(1,'The following files were not found:\n') + for cf = find(~allOk) + fprintf(1,'%s\n', necessaryFiles{cf}) + end + fprintf(1,'Cannot continue without these files. Aborting...\n') + return +end +%% Reading the necessary files +% Reading the channel order +chanMap = readNPY(necessaryFiles{1}); +% Preparatory variables for organising the output +spkTmls = readNPY(necessaryFiles{2}); +spkCls = readNPY(necessaryFiles{3}); +%% Input arguments verification +% Logical variables for clusters (clIdx) and spikes (spkIdx) +clIdx = false(size(clTable, 1), numel(clusterID)); +spkIdx = false(size(spkCls,1), numel(clusterID)); +clTempSubs = cell(numel(clusterID),1); +% Verifying if the given clusters exist in this experiment +for ccl = 1:numel(clusterID) + clIdx(:,ccl) = strcmp(clTable.id, clusterID(ccl)); + spkIdx(:,ccl) = spkCls == str2double(clusterID(ccl)); + % Determining the template for the given cluster + clTempSubs{ccl} = mode(spkTmls(spkIdx(:,ccl))); +end +missClustFlag = ~any(clIdx,1); +if ~all(~missClustFlag) + fprintf(1,'Some of the given clusters do not exist in this experiment\n') + fprintf(1,'Clusters not found:\n') + fprintf(1,'%s\n', clusterID{missClustFlag}) + if sum(missClustFlag) < numel(clusterID) + contAns = questdlg('Continue without these clusters?', 'Continue?',... + 'Yes','No','Yes'); + if strcmp(contAns, 'No') + fprintf(1,'Aborting...\n') + return + end + else + fprintf(1,'No valid cluster ID provided!\n') + return + end +end +clusterID(missClustFlag) = []; +clIdx(:,missClustFlag) = []; +spkIdx(:, missClustFlag) = []; +clTempSubs(missClustFlag) = []; +[clSub,~] = find(clIdx); +% Determining hosting channels +% ch2read = chanMap(clTable{clusterID, 'channel'} + 1); +chans = contains(clTable.Properties.VariableNames,{'ch','channels'}); +chansInTable = find(chans); +chanInTable = chansInTable(1); +ch2read = clTable{clusterID, clTable.Properties.VariableNames{chanInTable}}; + +%% Verifying if the waveform(s) for the given cluster(s) was/were computed + +waveFile = dir(fullfile(dataDir,'*_waveforms.mat')); + +if ~isempty(waveFile) + waveFileName = fullfile(dataDir, waveFile.name); + load(waveFileName,'clWaveforms') + % N_exCl = size(clWaveforms, 1); + [exIdx, exSub] = ismember(clWaveforms(:,1),clusterID); + % 'Removing' unwanted cluster waveforms and retrieving missing clusters + clWaveforms = clWaveforms(exIdx,:); + % Number of stored clusters + Nstcl = nnz(exIdx); + % Number of requested clusters + Nrqcl = length(clusterID); + missingClSubs = setdiff(1:Nrqcl, exSub); + Nbncl = numel(missingClSubs); + if Nbncl + % Allocation of the bigger space + clOutput = cell(Nstcl+Nbncl,3); + % Reading the clusters from the file + cl_fromBin = fetchWaveforms_fromBin(dataDir, clusterID(missingClSubs),... + chanMap, Nch, clSub(missingClSubs), clTempSubs(missingClSubs),... + spkIdx(:,missingClSubs), ch2read(missingClSubs)); + % Ordering the clusters alfabetically due to the string nature of the + % ID + reqClID = [clWaveforms(:,1); cl_fromBin(:,1)]; + [~, reqOrdSub] = sort(reqClID); + % Assigning the clusters from the cell-array + clOutput(reqOrdSub <= Nstcl,:) = clWaveforms; + % Assigning the clusters from the bin file + clOutput(reqOrdSub > Nstcl,:) = cl_fromBin; + % Re-assigning the variable names + clWaveforms = clOutput; + save(waveFileName, 'clWaveforms','-append', '-v7.3') + end +else + clWaveforms = fetchWaveforms_fromBin(dataDir, clusterID,... + chanMap, Nch, clSub, clTempSubs, spkIdx, ch2read); + % Naming the waveform file + binFile = dir(fullfile(dataDir,'*.bin')); + smrxFile = dir(fullfile(dataDir, '*.smrx')); + if numel(binFile) == 1 + % As the binary file + [~,baseName] = fileparts(fullfile(binFile.folder,binFile.name)); + elseif numel(smrxFile) == 1 + % As the smrx file + [~,baseName] = fileparts(fullfile(smrxFile.folder,smrxFile.name)); + elseif numel(binFile) > 1 || numel(smrxFile) > 1 + % User dependent name + [~, bbaseNames] = arrayfun(@(x) fileparts(x.name), binFile,... + 'UniformOutput', 0); + [~, sbaseNames] = arrayfun(@(x) fileparts(x.name), smrxFile,... + 'UniformOutput', 0); + bsBaseNames = [bbaseNames;sbaseNames]; + [bnSub, iOk] = listdlg('ListString', bsBaseNames,... + 'PromptString', 'Output name:',... + 'CancelString', 'None of these'); + if ~iOk + slfnans = questdlg('Would you like to name it yourself?',... + 'File name','Yes','No','Yes'); + if strcmp(slfnans,'Yes') + slfName = inputdlg('File name:','Write a title',[16,200],... + bsBaseNames{1}); + [~,baseName] = fileparts(slfName); + end + else + baseName = bsBaseNames{bnSub}; + end + end + waveFileName = fullfile(dataDir, [baseName, '_waveforms.mat']); + save(waveFileName, 'clWaveforms', '-v7.3'); +end +end + +function clWaveforms =... + fetchWaveforms_fromBin(dataDir, clusterID,... + chanMap, Nch, clSub, clTempSubs, spkIdx, ch2read) +%% Reading the binary file +clWaveforms = cell(numel(clusterID),3); +% Determinig the spike times for the given clusters +spikeFile = dir(fullfile(dataDir,'*_all_channels.mat')); +if ~isempty(spikeFile) + load(fullfile(dataDir, spikeFile.name), 'sortedData', 'fs') + if ~exist('fs','var') + fsFile = dir(fullfile(dataDir,'*_sampling_frequency.mat')); + load(fullfile(dataDir, fsFile.name), 'fs') + end +end +% Taking ~1.25 ms around the spike. +spikeWaveTime = 2*round(1.25e-3 * fs) + 1; +spikeSamples = (spikeWaveTime - 1)/2; +binFile = dir(fullfile(dataDir, '*.bin')); +if isempty(binFile) + fprintf(1, 'Without a binary file it is impossible to get the waveforms') + fprintf(1,'\n'); + return +end +pcFeat = readNPY(fullfile(dataDir, 'pc_features.npy')); +pcInd = readNPY(fullfile(dataDir, 'pc_feature_ind.npy')); +spkSubs = cellfun(@(x) round(x.*fs),sortedData(clSub,2),... + 'UniformOutput',false); +% [ch2read, readOrder, repeatChs] = unique(ch2read); +fID = fopen(fullfile(dataDir, binFile.name), 'r'); +cchan = 1; +% Main loop +while ~feof(fID) && cchan <= numel(clusterID) + % Computing the location of the channel features + pcIdx = ch2read(cchan) == chanMap(pcInd(clTempSubs{cchan}+1,:)+1); + clFeat = pcFeat(spkIdx(:,cchan), :, pcIdx); + fprintf(1,'Reading channel %d ',ch2read(cchan)) + % Jumping to the channel + fseek(fID, 2*(ch2read(cchan)), 'bof'); + % Computing the distance from spike to spike + spkDists = [spkSubs{cchan}(1);diff(spkSubs{cchan})]; + fprintf(1,'looking for cluster %s...', clusterID{cchan}) + % Allocating space for the spikes + waveform = zeros(spikeWaveTime, numel(spkSubs{cchan})); + %fig = figure('Color',[1,1,1],'Visible', 'off'); + %ax = axes('Parent', fig); ax.NextPlot = 'add'; + %subSet = 1:floor(numel(spkDists)*0.1); + for cspk = 1:numel(spkSubs{cchan}) + % Jumping to 1 ms before the time when the spike occured + fseek(fID, 2*((Nch+1)*(spkDists(cspk) - spikeSamples)), 'cof'); + % Reading the waveform + cwf = fread(fID, [spikeWaveTime, 1], 'int16=>single', 2*Nch); + % Assigning the waveform to the saving variable. If the waveform is + % cut, then assign only the gathered piece. + try + waveform(:,cspk) = cwf; + catch + waveform(1:length(cwf),cspk) = cwf; + end + % Jumping back to the exact time of the spike + fseek(fID, -2*((Nch+1)*(spikeSamples+1)), 'cof'); + % if ismember(cspk,subSet) + % plot(ax,waveform(:,cspk),'DisplayName',num2str(cspk)); + % end + end + fprintf(1,' done!\n') + clWaveforms(cchan,:) = [clusterID(cchan), {waveform}, {clFeat}]; + cchan = cchan + 1; + frewind(fID); + %fig.Visible = 'on'; +end +fclose(fID); +end diff --git a/Ross/getCondSig.m b/Ross/getCondSig.m new file mode 100644 index 0000000..75f31cd --- /dev/null +++ b/Ross/getCondSig.m @@ -0,0 +1,46 @@ +function conditionSignals = getCondSig(dataDir) +iOk = -1; +impStr = 'Rhd'; + + +smrxFiles = dir(fullfile(dataDir,'*.smrx')); +if isempty(smrxFiles) + smrxFiles = dir(fullfile(dataDir,'*\*.smrx')); +elseif isempty(smrxFiles) + fprintf(1,'The given directory contains no .smrx files. Please ') + fprintf(1,'try again with another folder which do contain .smrx files.\n') + return +end + +cellSmrxFiles = {smrxFiles.name}; +Nf = size(smrxFiles,1); + +% Selecting files +[incFiles, iok] = listdlg('ListString',cellSmrxFiles(1,:),... + 'SelectionMode','multiple',... + 'PromptString','Select the files to join:',... + 'InitialValue',1:Nf); +if iok + smrxFiles = smrxFiles(incFiles); + cellSmrxFiles = {smrxFiles.name}; + Nf = size(smrxFiles,1); +else + fprintf(1,'Cancelling...\n') + return +end + +% Merging order +fileOrder = (1:Nf)'; +defInput = num2cell(num2str(fileOrder)); +answr = inputdlg(cellSmrxFiles,'File order',[1, 60],defInput); +nFileOrder = str2double(answr); +nSmrxFiles = smrxFiles; +if ~isempty(answr) && sum(abs(fileOrder - nFileOrder)) ~= 0 + fprintf(1,'Changing file order...\n') + nSmrxFiles(nFileOrder) = smrxFiles(fileOrder); + smrxFiles = nSmrxFiles; +else + fprintf('File order not altered\n') +end +clearvars nSmrxFiles nFileOrder +end \ No newline at end of file diff --git a/Ross/getFirstSpikes.m b/Ross/getFirstSpikes.m new file mode 100644 index 0000000..bbc5ff1 --- /dev/null +++ b/Ross/getFirstSpikes.m @@ -0,0 +1,45 @@ +for a = 1:length(Conditions) + AllLaser(a,1) = contains(Conditions(a).name, 'All_Laser', 'IgnoreCase', true); +end +if sum(AllLaser) ~=1 + fprintf('Outputs for All_Laser do not = 1....Check Conditions! \n') + return +end +ind = find(ismember(sortedData(:,1),ID))'; +laserTriggers = Conditions(AllLaser).Triggers(:,1)/fs; +FirstSpikes = cell((length(ind)),length(laserTriggers)); +r = 1; +for a = ind + for b = 1:length(laserTriggers) - 1 + spikes = sortedData{a,2} >= laserTriggers(b) & sortedData{a,2} < laserTriggers(b+1); + if sum(spikes) == 0 + FirstSpikes{r,b} = []; + else + spikes = find(spikes); + first = spikes(1); + FirstSpikes{r,b} = sortedData{a,2}(first) - laserTriggers(b); + end + end + + spikes = sortedData{a,2} >= laserTriggers(end); + if sum(spikes) == 0 + FirstSpikes{r,b} = []; + else + spikes = find(spikes); + first = spikes(1); + FirstSpikes{r,b} = sortedData{a,2}(first) - laserTriggers(end); + end + r = r + 1; +end +MeanFirsts = NaN(length(ind),1); +SDcells = NaN(length(ind),1); +for a = 1:length(ind) + FSrow = cat(2,FirstSpikes(a,1:end)); + MeanFirsts(a) = mean(cell2mat(FSrow)); + SDcells(a) = std(cell2mat(FSrow)); +end +x = [1:length(SDcells)]; +y = log10(MeanFirsts*1000); +scale = SDcells*10; +figure('Name', 'FirstSpikes', 'Color', 'White') +scatter(x, y, scale, [0,0,0]) \ No newline at end of file diff --git a/Ross/getRate.m b/Ross/getRate.m index d3c54e2..b205f01 100644 --- a/Ross/getRate.m +++ b/Ross/getRate.m @@ -1,80 +1,35 @@ -function [RateMap, expt, rate] = getRate(binSz, nSamples, fs, sortedData, dataDir) - - -promptStrings = {'expt name:'}; -defaultInputs = {'Rate',}; -answ = inputdlg(promptStrings,'Inputs', [1, 30],defaultInputs); -expt = answ{1,1}; - -%promptStrings = {'Bin size [s]:'}; -%defaultInputs = {'0.05',}; -%answ = inputdlg(promptStrings,'Inputs', [1, 30],defaultInputs); -%binSz = str2double(answ(1)); - -%promptStrings = {'Sampling Frequency (fs)'}; -%defaultInputs = {'3.003003003003003e+04',}; -%answ = inputdlg(promptStrings,'Inputs', [1, 30],defaultInputs); -%fs = str2double(answ(1)); - -% binSamples is the number of elements in spiketrain per bin. -binSamples = fs*binSz; - -% Need the number of bins we're gonna pop our data into. -nBins = round(nSamples/binSamples); - - -% Need to create an empty matrix that's eagerly awaiting all our cluster -% counts. -goodsIdx =cellfun(@(x) x~=3,sortedData(:,3)); -goods = goodsIdx; -gdCells = sortedData(goods,:); -% Need to know the number of bad clusters that we're not going to bother with. -szT = length(gdCells); -counts = zeros(nBins, szT); - -for b = 1:szT % cluster by cluster - for a = 1:nBins - fsV = fs*gdCells{b,2}'; - logicalfsV = (fsV >(a-1)*binSamples) & (fsV <= a*binSamples); - counts(a,b) = sum(logicalfsV); - end - % rate = counts/binSz; - % figure; bar(rate(:,b)); +function rates = getRate(ID, binSize, sortedData, numSamples, fs) +Nt = numSamples/fs; +% Useless clusters (labeled as noise or they have very low firing rate) +badsIdx = cellfun(@(x) x==3,sortedData(:,3)); +bads = find(badsIdx); +totSpkCount = cellfun(@numel,sortedData(:,2)); +clusterSpikeRate = totSpkCount/Nt; +silentUnits = clusterSpikeRate < 0.1; +bads = union(bads,find(silentUnits)); +goods = setdiff(1:size(sortedData,1),bads); +badsIdx = badsIdx | silentUnits; +spkSubs = cellfun(@(x) round(x.*fs), sortedData(goods,2),... + 'UniformOutput', false); +gclID = sortedData(goods,1); + + +if binSize == round(binSize) || binSize >= 1 + binSize = binSize*(1e-3); end -rate = counts/binSz; -xaxisSec = [0:nBins]'*binSz; -yaxisClNo = [1:szT]; -RateMap = figure; -imagesc(xaxisSec, yaxisClNo, rate'); -xlabel('Time (s)'); -ylabel('Cluster No.'); -title(expt); -txt = {['Bin Size = ', num2str(binSz) 's']}; -text(8328,-2.7,1.4e-14, txt); -%Use fire colormap -colormap(fire); -colorbar; -%use caxis command to hardcode colormap so that we can more easily compare -caxis([0 50]); - -configureFigureToPDF(figure(RateMap)); -saveas(figure(RateMap), expt, 'emf'); -save(fullfile(dataDir, [expt]), 'rate', 'RateMap', '-v7.3'); +binSamples = fs*binSize; +nBins = round(numSamples/binSamples); +nUnits = length(ID); +counts = zeros(nBins, nUnits); + +for unitNo = 1:nUnits % unit by unit + unitInd = ismember(gclID,ID{unitNo}); + train = spkSubs{unitInd}'; % need to index into gclID not spkSubs + for bin = 1:nBins % bin by bin + logicalTrain = (train >(bin-1)*binSamples) & (train <= bin*binSamples); + counts(bin,unitNo) = sum(logicalTrain); + end end - -%across conditions-- try it out with autogenerated values to get a sense of -%the appropriate scaling - -%Add labels! - -%RAM Can you programmatically save the figure file? -% savefig('RateMap.fig'); print('RateMap.pdf','-dpdf'); print('RateMap.emf','-dmeta'); -%RAM Are you always using 50 ms or 500 ms for binsizes? Asnw: No, 1s bin size for -% these files -%RAM Add binsize to title or somewhere on plot -%RAM Wrap everything in a function as below and save in new .m file - -%RAM programatically save results to a new data file using save command at -% command line \ No newline at end of file +rates = counts/binSize; \ No newline at end of file diff --git a/Ross/getTriggeredTTL.m b/Ross/getTriggeredTTL.m new file mode 100644 index 0000000..2e2bc35 --- /dev/null +++ b/Ross/getTriggeredTTL.m @@ -0,0 +1,25 @@ +function[stims, r, csNames] = getTriggeredTTL(cst, delayFlags, trigNames, clr, Nt) +csNames = trigNames; +stims = mean(cst(:,:,delayFlags),3); + stims = stims - median(stims,2); + for cs = 1:size(stims,1) + if abs(log10(var(stims(cs,:),[],2))) < 13 + [m,b] = lineariz(stims(cs,:),1,0); + stims(cs,:) = m*stims(cs,:) + b; + else + stims(cs,:) = zeros(1,Nt); + end + end + [r,c] = size(stims); + if r < c + stims = stims'; + end + + if sum(clr(3)' & contains(trigNames, "Laser")) ~= false + csNames = csNames(contains(trigNames, "Laser")); + r = find(contains(trigNames, "Laser")); + else + csNames = csNames(~contains(trigNames, "Laser")); + r = find(~contains(trigNames, "Laser")); + end +end \ No newline at end of file diff --git a/Ross/getTriggers.m b/Ross/getTriggers.m new file mode 100644 index 0000000..7b1143e --- /dev/null +++ b/Ross/getTriggers.m @@ -0,0 +1,386 @@ +% function [Conditions, Triggers] = getTriggers(expName, dataDir, fs) + +%% Assumes that you do your mech (with/without laser) trials in one batch of recordings, ie. not laser (L), mech (M), L, M + % e.g. LLLLLMMM is fine, as is MMMMMMMMMLL ...this script will + % currently not work for LTP-style recordings + + % Another assumption atm is that a continuous laser pulse > 100ms occurs in every + % recording in which laser TTL trggers are present, and that the time + % between trials cannot be less than this pulse length + + + % One more thing - We're assuming mechanical control is always the + % first condition of a recording with MechTTL pulses + +% Make sure that any mechanical file you want to be considered has minMech +% nummber of MechTTL pulses + + + +minMech = 10; +minLaser = 10; +%% Finding and rearranging smrx files +iOk = -1; +impStr = 'Rhd'; + +% Get fs from dataDir - later + + + + +smrxFiles = dir(fullfile(dataDir,'*.smrx')); +if isempty(smrxFiles) + smrxFiles = dir(fullfile(dataDir,'*\*.smrx')); +elseif isempty(smrxFiles) + fprintf(1,'The given directory contains no .smrx files. Please ') + fprintf(1,'try again with another folder which do contain .smrx files.\n') + return +end + +cellSmrxFiles = {smrxFiles.name}; +Nf = size(smrxFiles,1); + +% Selecting files +[incFiles, iok] = listdlg('ListString',cellSmrxFiles(1,:),... + 'SelectionMode','multiple',... + 'PromptString','Select the files to join:',... + 'InitialValue',1:Nf); +if iok + smrxFiles = smrxFiles(incFiles); + cellSmrxFiles = {smrxFiles.name}; + Nf = size(smrxFiles,1); +else + fprintf(1,'Cancelling...\n') + return +end + +% Merging order +fileOrder = (1:Nf)'; +fO = num2cell(fileOrder); +for i = 1: length(fO) + fO{i} = num2str(fO{i}); +end + +defInput = fO; +answr = inputdlg(cellSmrxFiles,'File order',[1, 60],defInput); +nFileOrder = str2double(answr); +nSmrxFiles = smrxFiles; +if ~isempty(answr) && sum(abs(fileOrder - nFileOrder)) ~= 0 + fprintf(1,'Changing file order...\n') + nSmrxFiles(nFileOrder) = smrxFiles(fileOrder); + smrxFiles = nSmrxFiles; +else + fprintf('File order not altered\n') +end +clearvars nSmrxFiles nFileOrder +%% getting ConditionSignals +for i = 1:length(answr) + getConditionSignalsBF(fopen([dataDir, '\', smrxFiles(i).name])); + CondSigs(i).name = smrxFiles(i).name(1:end-5); + CondSigs(i).Sig = load([dataDir, '\', CondSigs(i).name, '_CondSig.mat']); +end +%% getting Trigs + + + +% Getting header names and numbers + + + +for i = 1:length(CondSigs) + fnames{i} = fieldnames(CondSigs(i).Sig(1)); + headerNames{i} = (fnames{i}(contains(fnames{i}, 'head'))); + strHeaders = cell2mat(headerNames{i}); % This will fail if header > 99; + headerNumbers{i} = strHeaders(:,5:end); +end + + +nTriggers = []; +for sZ = 1:length(headerNames) + nTriggers = [nTriggers; length(headerNames{sZ})]; +end + +mostTriggers = max(nTriggers); +ind = find(nTriggers==mostTriggers, 1); + + +% Making the Trigs names + +for a = 1:mostTriggers + + Trigs(a).name = CondSigs(ind).Sig.(headerNames{ind}{a}).title; + + if contains(Trigs(a).name, 'Laser') + laserInd = a; + elseif contains(Trigs(a).name, 'MechTTL') + mchInd = a; + end + + end + +% Getting the different laser intensities fromt the CondSigs struct +pwrMissing = false; +for conscondSig = 1:length(CondSigs) + + mWfind = strfind(CondSigs(conscondSig).name, 'mW'); + Power{conscondSig} = CondSigs(conscondSig).name(mWfind-2:mWfind+1); + if isempty(Power{conscondSig}) + pwrMissing = true; + elseif contains(Power{conscondSig}, '.') + Power{conscondSig} = CondSigs(conscondSig).name(mWfind-3:mWfind+1); + elseif contains(Power{conscondSig}, '_') || contains(Power{conscondSig}, ' ') + Power{conscondSig} = Power{conscondSig}(2:end); + end +end +if pwrMissing + fprintf('Could not find all laser intensities - consider renaming condsig files \n') +end + + + +% Adding traces (info), offset, and triggers to Trigs struct + +for conscondSig = 1:length(CondSigs) + + + + nConds = length(headerNames{conscondSig}); + for cc = 1:nConds + headID = headerNames{conscondSig}{cc}; + mismatchCheck = ismember(Trigs(cc).name,CondSigs(conscondSig).Sig.(headID).title); + if sum(mismatchCheck) ~= length(mismatchCheck) + trigType = 1; + while sum(mismatchCheck) ~= length(mismatchCheck) + trigType = trigType + 1; + mismatchCheck = ismember(Trigs(trigType).name, CondSigs(conscondSig).Sig.(headID).title); + end + else + trigType = cc; + end + + + chanID = ['chan', headerNumbers{conscondSig}(cc,:)]; + Trigs(trigType).info{conscondSig} = CondSigs(conscondSig).Sig.(chanID); + + if contains(Trigs(trigType).name, 'MechTTL') || contains(Trigs(trigType).name, 'Laser') + Trigs(trigType).offset(conscondSig) = length(CondSigs(conscondSig).Sig.(chanID)); + Obj = StepWaveform(Trigs(trigType).info{conscondSig}, fs); + Trigs(trigType).Triggers{conscondSig} = Obj.subTriggers; + end + + + + + + + end +end + +%% Starting the Conditions Struct + +%% Splitting conditions by laser frequency + +% Need to make a spont condition if both minMech and min Laser are below +% threshold. + + + +cc = 3; +offset = 0; +condHasFreq = []; +trigHasFreq = []; +condHasMech =[]; +stimFrequencies = cell(length(Trigs(laserInd).Triggers),1); +pulseLength = cell(length(Trigs(laserInd).Triggers),1); +for a = 1:length(Trigs(laserInd).Triggers) + if length(Trigs(mchInd).Triggers{1,a}) > minMech + condHasMech = [condHasMech; cc]; + end + trig = Trigs(laserInd).Triggers{1,a}; + if length(Trigs(laserInd).Triggers{1,a}) < minLaser + offset = offset + Trigs(laserInd).offset(a); + else + pulseInds = diff(trig') >= 0.1*fs; + pulsedTriggers = trig(pulseInds,:); + if ~isempty(pulsedTriggers) + if range(diff(pulsedTriggers')) >= 0.1*fs + fprintf('Have you got continuous pulses of different lengths?.\n') + fprintf('Time to alter the script to sort these.\n') + end + pulseLength{a} = round(mean(diff(pulsedTriggers')/fs)); + gaps = sort(unique(round(diff(trig(:,1)),-2))/fs,'ascend'); + minIntervalInd = find(abs(diff([pulseLength{a}*ones(length(gaps),1), gaps]')) < 0.5); + if ~isempty(minIntervalInd) + minIntervalInd = minIntervalInd(1); + minInt = gaps(minIntervalInd); + + stimFrequencies{a} = sort(round(1./gaps(1:minIntervalInd-1)), 'ascend'); + end + else + %gaps = sort(unique(round(diff(trig(:,1)),-3))/fs,'ascend'); % What if a condition has no pulses? e.g. Opto-tagging + gaps = sort(unique(diff(trig(:,1)))/fs,'ascend'); + stimFrequencies{a} = round(1/gaps(1)); % assumption here that condition without continuous pulse has only one condition! + + end + + for i = 1:length(stimFrequencies{a}) + stimInd = [diff(trig(:,1))> 0.9*fs/stimFrequencies{a}(i) & diff(trig(:,1)) < 1.1*fs/stimFrequencies{a}(i); false]; + shiftInd = [false; stimInd(1:end-1)]; + combInd = stimInd | shiftInd; % come back to this, if last condition to be ran is not continuous pulse , then it might shave off the final trigger + Conditions(cc).name = ['Laser_', num2str(stimFrequencies{a}(i)), 'Hz_' num2str(Power{a}), '_AllTriggers']; + Conditions(cc).Triggers = trig(combInd,:) + offset; + condHasFreq = [condHasFreq, cc]; + trigHasFreq = [trigHasFreq, a]; + cc = cc + 1; + end + if ~isempty(pulsedTriggers) + Conditions(cc).name = ['Laser_', num2str(pulseLength{a}), 'sec_pulse_' num2str(Power{a}), '_AllTriggers']; % Change how this is calculated to better assess trigger allocation[ + Conditions(cc).Triggers = pulsedTriggers + offset; + minInt = pulseLength{a}*1.1; + cc = cc + 1; + end + + offset = offset + Trigs(laserInd).offset(a); + end + +end +Conditions(1).name = 'Laser_AllTriggers'; +Conditions(1).Triggers = sort(cat(1, Conditions.Triggers),'ascend'); + +% Neatening up Conditions +emptycells = []; +for e = 1:length(Conditions) + if isempty(Conditions(e).name) + emptycells = [emptycells; e]; + end +end +emptycells = sort(emptycells, 'descend'); +for e = 1:length(emptycells)-1 + emptyInd = emptycells(e); + Conditions(emptyInd) = []; +end +cc = length(Conditions)+1; +%% Getting laser conditions by block +if ~isempty(condHasFreq) + blockStart = cc; + lngth = length(Conditions); + for i = 3: lngth % can make this condHasFreq if 5sec pulses ae added to AllTriggers_Block + trigStart = [true; diff(Conditions(i).Triggers(:,1)) >= minInt*fs]; + trigFin = [diff(Conditions(i).Triggers(:,1)) >= minInt*fs; true]; % look at this + Conditions(cc).name = [Conditions(i).name(1:end-11), 'Block']; + Conditions(cc).Triggers = [Conditions(i).Triggers(trigStart,1), Conditions(i).Triggers(trigFin,2)]; + if ismember(i, condHasMech) + condHasMech = [condHasMech; cc]; + end + cc = cc + 1; + end + Conditions(2).name = 'Laser_AllTriggers_Block'; + Conditions(2).Triggers = sort(cat(1, Conditions(blockStart:end).Triggers),'ascend'); +else + Conditions(2) = []; + cc = cc - 1; + blockStart = 2; + condHasMech = condHasMech - 1; +end + +%% Splitting mechanical conditions +offset = 0; +mechStart = cc; +trigHasFreq = unique(trigHasFreq); +c = 0; +for a = 1:length(Trigs(mchInd).Triggers) + if length(Trigs(mchInd).Triggers{1,a}) < minMech % assuming no smrx recording will purposefully contain fewer than minMech TTL pulses + offset = offset + Trigs(mchInd).offset(a); + else + % Assuming mechanical control is first condition + + trig = Trigs(mchInd).Triggers{1,a} + offset; + offset = offset + Trigs(mchInd).offset(a); + firstLaser = []; + + + nMechConds = length(stimFrequencies{a}) + length(pulseLength{a}) + 1; + + for i = 1:nMechConds-1 + c = c + 1; + ccond = condHasMech(c); + + laserPairing = Conditions(ccond).name; + HzInd = strfind(laserPairing, 'Hz'); + if HzInd ~= false + Hz = laserPairing(HzInd-2:HzInd-1); + if contains(Hz, '_') || contains(Hz, ' ') + Hz = [Hz(2:end), 'Hz']; + else + Hz = [Hz, 'Hz']; + end + else + HzInd = strfind(laserPairing, 'sec'); + Hz = laserPairing(HzInd-2:HzInd+2); + if contains(Hz, '_') || contains(Hz, ' ') + Hz = Hz(2:end); + end + end + + Conditions(cc).name = ['Mech_Laser_',Hz, '_' num2str(Power{a})]; + Conditions(cc).Triggers = trig(1+i:nMechConds:end,:); + cc = cc + 1; + end + + + Conditions(cc).name = ['Mech_Control_', num2str(Power{a})]; + Conditions(cc).Triggers = trig(1:nMechConds:end,:); + cc = cc + 1; + end + end +if length(Conditions)>= mechStart + mechEnd = cc; + Conditions(cc).name = 'Mech_All'; + Conditions(cc).Triggers = sort(cat(1, Conditions(mechStart:end).Triggers),'ascend'); + cc = cc + 1; +end + +%% Getting laser control blocks + +% This isn't working rn - because you're comparing blockstart with +% mechstart regardless of what blockstart represents...you dummy + +if length(Conditions)>= mechStart + nComparisons = (mechEnd-mechStart)/nMechConds; + lInd = condHasMech(condHasMech >= blockStart); % Need to sort out condHasMEch! + mInd = mechStart; + for a = 1:nComparisons % change to mechEnd so it doesn't do something weird if LaserFreq is last recording + las = round((Conditions(lInd(a)).Triggers(:,1)),-6); + mech = round((Conditions(mInd).Triggers(:,1)),-6); + controlInd = ~ismembertol(las, mech); + Conditions(cc).name = ['Laser_Control', Conditions(mInd).name(11:end)]; + Conditions(cc).Triggers(:,1) = Conditions(lInd(a)).Triggers(controlInd,1); + Conditions(cc).Triggers(:,2) = Conditions(lInd(a)).Triggers(controlInd,2); + mInd = mInd + nMechConds; + cc = cc + 1; + end +end + + +%% Getting Triggers +for a = 1:mostTriggers + if contains(Trigs(a).name, ' ') + spc = strfind(Trigs(a).name, ' '); + Trigs(a).name(spc) = []; + end + Triggers.(Trigs(a).name) = []; + for i = 1:length(Trigs(a).info) + if isempty(Trigs(a).info{i}) + offset = Trigs(mchInd).offset(i); % Check this, what if no mech stims? + Triggers.(Trigs(a).name) = [Triggers.(Trigs(a).name); zeros(offset,1)]; + else + + Triggers.(Trigs(a).name) = [Triggers.(Trigs(a).name); Trigs(a).info{i}]; + end + end +end + +%% Save +save(fullfile(dataDir, [expName, '_analysis.mat']), 'Conditions', 'Triggers', '-v7.3'); + +% end diff --git a/Ross/getTriggersFixing.m b/Ross/getTriggersFixing.m new file mode 100644 index 0000000..69b9782 --- /dev/null +++ b/Ross/getTriggersFixing.m @@ -0,0 +1,366 @@ +% function [Conditions, Triggers] = getTriggers(expName, dataDir, fs) + +%% Assumes that you do your mech (with/without laser) trials in one batch of recordings, ie. not laser (L), mech (M), L, M + % e.g. LLLLLMMM is fine, as is MMMMMMMMMLL ...this script will + % currently not work for LTP-style recordings + + % Another assumption atm is that a continuous laser pulse > 100ms occurs in every + % recording in which laser TTL trggers are present, and that the time + % between trials cannot be less than this pulse length + + + % One more thing - We're assuming mechanical control is always the + % first condition of a recording with MechTTL pulses + +% Make sure that any mechanical file you want to be considered has minMech +% nummber of MechTTL pulses + + + +minMech = 10; +%% Finding and rearranging smrx files +iOk = -1; +impStr = 'Rhd'; + +% Get fs from dataDir - later + + + + +smrxFiles = dir(fullfile(dataDir,'*.smrx')); +if isempty(smrxFiles) + smrxFiles = dir(fullfile(dataDir,'*\*.smrx')); +elseif isempty(smrxFiles) + fprintf(1,'The given directory contains no .smrx files. Please ') + fprintf(1,'try again with another folder which do contain .smrx files.\n') + return +end + +cellSmrxFiles = {smrxFiles.name}; +Nf = size(smrxFiles,1); + +% Selecting files +[incFiles, iok] = listdlg('ListString',cellSmrxFiles(1,:),... + 'SelectionMode','multiple',... + 'PromptString','Select the files to join:',... + 'InitialValue',1:Nf); +if iok + smrxFiles = smrxFiles(incFiles); + cellSmrxFiles = {smrxFiles.name}; + Nf = size(smrxFiles,1); +else + fprintf(1,'Cancelling...\n') + return +end + +% Merging order +fileOrder = (1:Nf)'; +defInput = num2cell(num2str(fileOrder)); +answr = inputdlg(cellSmrxFiles,'File order',[1, 60],defInput); +nFileOrder = str2double(answr); +nSmrxFiles = smrxFiles; +if ~isempty(answr) && sum(abs(fileOrder - nFileOrder)) ~= 0 + fprintf(1,'Changing file order...\n') + nSmrxFiles(nFileOrder) = smrxFiles(fileOrder); + smrxFiles = nSmrxFiles; +else + fprintf('File order not altered\n') +end +clearvars nSmrxFiles nFileOrder +%% getting ConditionSignals +for i = 1:length(str2num(cell2mat(answr))) + getConditionSignalsBF(fopen([dataDir, '\', smrxFiles(i).name])); + CondSigs(i).name = smrxFiles(i).name(1:end-5); + CondSigs(i).Sig = load([dataDir, '\', CondSigs(i).name, '_CondSig.mat']); +end +%% getting Trigs + + + +% Getting header names and numbers + + + +for i = 1:length(CondSigs) + fnames{i} = fieldnames(CondSigs(i).Sig(1)); + headerNames{i} = (fnames{i}(contains(fnames{i}, 'head'))); + strHeaders = cell2mat(headerNames{i}); % This will fail if header > 99; + headerNumbers{i} = strHeaders(:,5:end); +end + + +nTriggers = []; +for sZ = 1:length(headerNames) + nTriggers = [nTriggers; length(headerNames{sZ})]; +end + +mostTriggers = max(nTriggers); +ind = find(nTriggers==mostTriggers, 1); + + +% Making the Trigs names + +for a = 1:mostTriggers + + Trigs(a).name = CondSigs(ind).Sig.(headerNames{ind}{a}).title; + + if contains(Trigs(a).name, 'Laser') + laserInd = a; + elseif contains(Trigs(a).name, 'MechTTL') + mchInd = a; + end + + end + +% Getting the different laser intensities fromt the CondSigs struct +pwrMissing = false; +for conscondSig = 1:length(CondSigs) + + mWfind = strfind(CondSigs(conscondSig).name, 'mW'); + Power{conscondSig} = CondSigs(conscondSig).name(mWfind-2:mWfind+1); + if isempty(Power{conscondSig}) + pwrMissing = true; + elseif contains(Power{conscondSig}, '.') + Power{conscondSig} = CondSigs(conscondSig).name(mWfind-3:mWfind+1); + elseif contains(Power{conscondSig}, '_') || contains(Power{conscondSig}, ' ') + Power{conscondSig} = Power{conscondSig}(2:end); + end +end +if pwrMissing + fprintf('Could not find all laser intensities - consider renaming condsig files') +end + + + +% Adding traces (info), offset, and triggers to Trigs struct + +for conscondSig = 1:length(CondSigs) + + + + nConds = length(headerNames{conscondSig}); + for cc = 1:nConds + headID = headerNames{conscondSig}{cc}; + mismatchCheck = ismember(Trigs(cc).name,CondSigs(conscondSig).Sig.(headID).title); + if sum(mismatchCheck) ~= length(mismatchCheck) + trigType = 1; + while sum(mismatchCheck) ~= length(mismatchCheck) + trigType = trigType + 1; + mismatchCheck = ismember(Trigs(trigType).name, CondSigs(conscondSig).Sig.(headID).title); + end + else + trigType = cc; + end + + + chanID = ['chan', headerNumbers{conscondSig}(cc,:)]; + Trigs(trigType).info{conscondSig} = CondSigs(conscondSig).Sig.(chanID); + + if contains(Trigs(trigType).name, 'MechTTL') || contains(Trigs(trigType).name, 'Laser') + Trigs(trigType).offset(conscondSig) = length(CondSigs(conscondSig).Sig.(chanID)); + Obj = StepWaveform(Trigs(trigType).info{conscondSig}, fs); + Trigs(trigType).Triggers{conscondSig} = Obj.subTriggers; + end + + + + + + + end +end + +%% Starting the Conditions Struct + +%% Splitting conditions by laser frequency +cc = 3; +offset = 0; +condHasFreq = []; +trigHasFreq = []; +condHasMech =[]; +for a = 1:length(Trigs(laserInd).Triggers) + + trig = Trigs(laserInd).Triggers{1,a}; + if isempty(trig) + offset = offset + Trigs(laserInd).offset(a); + else + pulseInds = diff(trig') >= 0.1*fs; + pulsedTriggers = trig(pulseInds,:); + if ~isempty(pulsedTriggers) + if range(diff(pulsedTriggers')) >= 0.1*fs + fprintf('Have you got continuous pulses of different lengths?.\n') + fprintf('Time to alter the script to sort these.\n') + end + pulseLength = round(mean(diff(pulsedTriggers')/fs)); + gaps = sort(unique(round(diff(trig(:,1)),-3))/fs,'ascend'); + minIntervalInd = find(abs(diff([pulseLength*ones(length(gaps),1), gaps]')) < 0.5); + minInt = gaps(minIntervalInd); + + stimFrequencies = sort(round(1./gaps(1:minIntervalInd-1)), 'ascend'); + else + gaps = sort(unique(round(diff(trig(:,1)),-3))/fs,'ascend'); % What if a condition has no pulses? e.g. Opto-tagging + stimFrequencies = round(1/gaps(1)); + + end + + for i = 1:length(stimFrequencies) + stimInd = diff(trig(:,1))> 0.9*fs/stimFrequencies(i) & diff(trig(:,1)) < 1.1*fs/stimFrequencies(i); + shiftInd = [false; stimInd(1:end-1)]; + combInd = stimInd | shiftInd; % come back to this, if last condition to be ran is not continuous pulse , then it might shave off the final trigger + Conditions(cc).name = ['Laser_', num2str(stimFrequencies(i)), 'Hz_' num2str(Power{a}), '_AllTriggers']; + Conditions(cc).Triggers = trig(combInd,:) + offset; + condHasFreq = [condHasFreq, cc]; + trigHasFreq = [trigHasFreq, a]; + if ~isempty(Trigs(mchInd).Triggers{1,a}) + condHasMech = [condHasMech; cc]; + end + cc = cc + 1; + end + if ~isempty(pulsedTriggers) + Conditions(cc).name = ['Laser_', num2str(pulseLength), 'sec_pulse_' num2str(Power{a}), '_AllTriggers']; % Change how this is calculated to better assess trigger allocation[ + Conditions(cc).Triggers = pulsedTriggers + offset; + minInt = pulseLength*1.1; + if ~isempty(Trigs(mchInd).Triggers{1,a}) + condHasMech = [condHasMech; cc]; + end + end + cc = cc + 1; + offset = offset + Trigs(laserInd).offset(a); + end + +end +Conditions(1).name = 'Laser_AllTriggers'; +Conditions(1).Triggers = sort(cat(1, Conditions.Triggers),'ascend'); +%% Getting laser conditions by block +if ~isempty(condHasFreq) + blockStart = cc; + lngth = length(Conditions); + for i = 3: lngth % can make this condHasFreq if 5sec pulses ae added to AllTriggers_Block + trigStart = [true; diff(Conditions(i).Triggers(:,1)) >= minInt*fs]; + trigFin = [diff(Conditions(i).Triggers(:,1)) >= minInt*fs; true]; % look at this + Conditions(cc).name = [Conditions(i).name(1:end-11), 'Block']; + Conditions(cc).Triggers = [Conditions(i).Triggers(trigStart,1), Conditions(i).Triggers(trigFin,2)]; + if ismember(i, condHasMech) + condHasMech = [condHasMech; cc]; + end + cc = cc + 1; + end + Conditions(2).name = 'Laser_AllTriggers_Block'; + Conditions(2).Triggers = sort(cat(1, Conditions(blockStart:end).Triggers),'ascend'); +else + Conditions(2) = []; + cc = cc - 1; + blockStart = 2; + condHasMech = condHasMech - 1; +end + +%% Splitting mechanical conditions +offset = 0; +mechStart = cc; +trigHasFreq = unique(trigHasFreq); + +for a = 1:length(Trigs(mchInd).Triggers) + if length(Trigs(mchInd).Triggers{1,a}) < minMech % assuming no smrx recording will purposefully contain fewer than minMech TTL pulses + offset = offset + Trigs(mchInd).offset(a); + else + % Assuming mechanical control is first condition + + trig = Trigs(mchInd).Triggers{1,a} + offset; + offset = offset + Trigs(mchInd).offset(a); + firstLaser = []; + if ~ismember(a, trigHasFreq) % what if laser freq is last recording? + nMechConds = length(pulseLength) + 1; + for i = 1:nMechConds-1 + firstLaser = [firstLaser; Conditions(2 + i).Triggers(1,1)]; + end + else + nMechConds = length(stimFrequencies) + length(pulseLength) + 1; + for i = 1:nMechConds-1 + firstLaser = [firstLaser; Conditions(1 + i).Triggers(1,1)]; + end + end + + sortedFirsts = sort(firstLaser, 'ascend'); + + + for i = 1:length(sortedFirsts) + if ~isempty(stimFrequencies) + ind = find(ismember(firstLaser, sortedFirsts(i))) + 2; + else + ind = find(ismember(firstLaser, sortedFirsts(i))) + 1; + end + laserPairing = Conditions(ind).name; + HzInd = strfind(laserPairing, 'Hz'); + if HzInd == true + Hz = laserPairing(HzInd-2:HzInd-1); + if contains(Hz, '_') || contains(Hz, ' ') + Hz = [Hz(2:end), 'Hz']; + end + else + HzInd = strfind(laserPairing, 'sec'); + Hz = laserPairing(HzInd-2:HzInd+2); + if contains(Hz, '_') || contains(Hz, ' ') + Hz = Hz(2:end); + end + end + + Conditions(cc).name = ['Mech_Laser_',Hz, '_' num2str(Power{a})]; + Conditions(cc).Triggers = trig(1+i:nMechConds:end,:); + cc = cc + 1; + end + Conditions(cc).name = ['Mech_Control_', num2str(Power{a})]; + Conditions(cc).Triggers = trig(1:nMechConds:end,:); + cc = cc + 1; + end +end +if length(Conditions)>= mechStart + mechEnd = cc; + Conditions(cc).name = 'Mech_All'; + Conditions(cc).Triggers = sort(cat(1, Conditions(mechStart:end).Triggers),'ascend'); + cc = cc + 1; +end + +%% Getting laser control blocks + +% This isn't working rn - because you're comparing blockstart with +% mechstart regardless of what blockstart represents...you dummy + +if length(Conditions)>= mechStart + nComparisons = (mechEnd-mechStart)/nMechConds; + lInd = condHasMech(condHasMech >= blockStart); + mInd = mechStart; + for a = 1:nComparisons % change to mechEnd so it doesn't do something weird if LaserFreq is last recording + las = round((Conditions(lInd(a)).Triggers),-3); + mech = round((Conditions(mInd).Triggers),-3); + controlInd = ~ismember(las, mech); + Conditions(cc).name = ['Laser_Control', Conditions(mInd).name(11:end)]; + Conditions(cc).Triggers(:,1) = Conditions(lInd(a)).Triggers(controlInd(:,1),1); + Conditions(cc).Triggers(:,2) = Conditions(lInd(a)).Triggers(controlInd(:,2),2); + mInd = mInd + nMechConds; + cc = cc + 1; + end +end + + +%% Getting Triggers +for a = 1:mostTriggers + if contains(Trigs(a).name, ' ') + spc = strfind(Trigs(a).name, ' '); + Trigs(a).name(spc) = []; + end + Triggers.(Trigs(a).name) = []; + for i = 1:length(Trigs(a).info) + if isempty(Trigs(a).info{i}) + offset = Trigs(mchInd).offset(i); + Triggers.(Trigs(a).name) = [Triggers.(Trigs(a).name); zeros(offset,1)]; + else + + Triggers.(Trigs(a).name) = [Triggers.(Trigs(a).name); Trigs(a).info{i}]; + end + end +end + +%% Save +save(fullfile(dataDir, [expName, '_analysis.mat']), 'Conditions', 'Triggers', '-v7.3'); + +% end diff --git a/Ross/getUnitInfo.m b/Ross/getUnitInfo.m new file mode 100644 index 0000000..1598f89 --- /dev/null +++ b/Ross/getUnitInfo.m @@ -0,0 +1 @@ +function fig = getUnitInfo(ID, sortedData, Conditions, samplingFrequency) diff --git a/Ross/getWaveformClassifiers.m b/Ross/getWaveformClassifiers.m new file mode 100644 index 0000000..cc4b039 --- /dev/null +++ b/Ross/getWaveformClassifiers.m @@ -0,0 +1,61 @@ +function Classifiers = getWaveformClassifiers(mean_wf, fs) + + +[Nt, Ncl] = size(mean_wf); +% Window multiplication to ensure we look at the center part of the +% waveform +% winMult = hann(Nt)'; +% mean_wf = mean_wf .* winMult'; + +tx = (0:Nt-1)'./fs - Nt/(2*fs); +tcp = getWaveformCriticalPoints(mean_wf, fs); +tcp = cellfun(@(x) x - Nt/(2*fs), tcp, 'UniformOutput', 0); +b50 = min(mean_wf) + range(mean_wf)./2; +ampCp = cell(Ncl,1); +tpd = zeros(Ncl,1); bhad = tpd; +frstPk = zeros(Ncl,1); +secPk = zeros(Ncl,1); + +for ccl = 1:Ncl + ampCp(ccl) = {interp1(tx, mean_wf(:,ccl), tcp{ccl,1}, 'spline')}; + [~, troughSub] = max(abs(ampCp{ccl})); + [sP, secPeakSub] = max(abs(ampCp{ccl}(troughSub+1:end))); + if isempty(secPeakSub) + % We have to think of a math solution for the so called 'stable + % region' or 'period'. + fprintf(1, 'Cluster %d is a bitch\n', ccl) + figure(ccl); plot(tx, mean_wf(:,ccl)) + continue; + end + fP = max(ampCp{ccl}(1:troughSub-1)); + tpd(ccl) = diff(tcp{ccl,1}([troughSub, troughSub+secPeakSub])); + if ampCp{ccl}(troughSub) > 0 + halfFlags = mean_wf(:,ccl) >= b50(ccl); + else + halfFlags = mean_wf(:,ccl) <= b50(ccl); + end + frstSub = find(halfFlags, 1, 'first'); + if frstSub <= 1 + Classifiers = NaN(1,4); + else + + lstSub = find(halfFlags, 1, 'last'); + mdl = fit_poly(tx([frstSub-1, frstSub]), mean_wf([frstSub-1, frstSub],ccl),... + 1); frstXg = (b50(ccl) - mdl(2))/mdl(1); + mdl = fit_poly(tx([lstSub-1, lstSub]), mean_wf([lstSub-1, lstSub],ccl),... + 1); lstXg = (b50(ccl) - mdl(2))/mdl(1); + bhad(ccl) = lstXg - frstXg; + end + if isempty(fP) + frstPk(ccl) = 0; + else + frstPk(ccl) = fP; + end + + + secPk(ccl) = sP; + + +end +Classifiers = [tpd, bhad, frstPk, secPk]; +end \ No newline at end of file diff --git a/Ross/get_ISI.m b/Ross/get_ISI.m new file mode 100644 index 0000000..62ce668 --- /dev/null +++ b/Ross/get_ISI.m @@ -0,0 +1,44 @@ +%% ISI PDF & CDF +modFlags = clInfo.Mech_Control_10mW_MR; % Whatever you wanna see buddy +binFig = figure('Visible','off'); +areaFig = figure('Visible','on', 'Color', [1,1,1],'Name','ISI probability'); +areaAx = gobjects(2,1); +lax = log(1/fs):0.2:log(0.03); +% cmap = [0,0,102;... azul marino +% 153, 204, 255]/255; % azul cielo +cmap = lines(Nccond); +%areaOpts = {'EdgeColor', 'none', 'FaceAlpha', 0.3, 'FaceColor'}; +areaOpts = {'Color','LineStyle','--','LineWidth',1.5}; +ley = ["Potentiated", "Depressed"]; +isiPdf = zeros(length(lax)-1,2*Nccond); +cmod = 1; % modulated +Nccl = sum(modFlags(:,cmod)); +for ccond = 1:Nccond + cnt = [cmod-1,ccond] * [2,1]'; + ISI = cellfun(@(x) diff(x(x >= -0.035 & x <= 0)), ... + relativeSpkTmsStruct(ccond).SpikeTimes(modFlags(:,cmod),:),... + 'UniformOutput', 0); + ISI_merge = [ISI{:}]; + lISI = log(ISI_merge); + hisi = histogram(lISI, lax, 'Parent', binFig, 'DisplayStyle', 'stairs'); + spkPerT_C = hisi.Values./(NaStack(ccond)*Nccl); + isiPdf(:,cnt) = spkPerT_C/sum(spkPerT_C); + plot(areaAx(cmod), 1e3*exp(lax(1:end-1)), isiPdf(:,cnt),... + areaOpts{1}, cmap(ccond,:), areaOpts{4:5}); + if ccond == 1 + hold(binFig.Children, 'on'); hold(areaAx(cmod), 'on'); + areaAx(cmod).XAxis.Scale = 'log'; + areaAx(cmod).XLabel.String = "ISI [ms]"; + areaAx(cmod).YLabel.String = "ISI probability"; + end + yyaxis(areaAx(cmod) ,'right') + + plot(areaAx(cmod), 1e3*exp(lax(1:end-1)), cumsum(isiPdf(:,cnt)),... + areaOpts{1}, cmap(ccond,:), areaOpts{2:3}) + ylim(areaAx(cmod), [0,1]); areaAx(cmod).YAxis(2).Color = [0,0,0]; + ylabel(areaAx(cmod), 'Cumulative probability'); + yyaxis(areaAx(cmod) ,'left'); set(areaAx(cmod),'Box','off') +end +title(areaAx(cmod), sprintf('ISI PDF for %s clusters',ley(cmod))); +legend(areaAx(cmod),consCondNames) +hisi = hisi.Parent.Children; linkaxes(areaAx,'xy') diff --git a/Ross/gif_v1.0.zip b/Ross/gif_v1.0.zip new file mode 100644 index 0000000..94ab63d Binary files /dev/null and b/Ross/gif_v1.0.zip differ diff --git a/Ross/gif_v1.0/__MACOSX/gif/._.DS_Store b/Ross/gif_v1.0/__MACOSX/gif/._.DS_Store new file mode 100644 index 0000000..09fa6bd Binary files /dev/null and b/Ross/gif_v1.0/__MACOSX/gif/._.DS_Store differ diff --git a/Ross/gif_v1.0/__MACOSX/gif/._gif.m b/Ross/gif_v1.0/__MACOSX/gif/._gif.m new file mode 100644 index 0000000..a258ab8 Binary files /dev/null and b/Ross/gif_v1.0/__MACOSX/gif/._gif.m differ diff --git a/Ross/gif_v1.0/__MACOSX/gif/._gif_documentation.m b/Ross/gif_v1.0/__MACOSX/gif/._gif_documentation.m new file mode 100644 index 0000000..a258ab8 Binary files /dev/null and b/Ross/gif_v1.0/__MACOSX/gif/._gif_documentation.m differ diff --git a/Ross/gif_v1.0/gif/.DS_Store b/Ross/gif_v1.0/gif/.DS_Store new file mode 100644 index 0000000..42d83ba Binary files /dev/null and b/Ross/gif_v1.0/gif/.DS_Store differ diff --git a/Ross/gif_v1.0/gif/gif.m b/Ross/gif_v1.0/gif/gif.m new file mode 100644 index 0000000..9a25154 --- /dev/null +++ b/Ross/gif_v1.0/gif/gif.m @@ -0,0 +1,161 @@ +function gif(varargin) +% gif is the simplest way to make gifs. Simply call +% +% gif('myfile.gif') +% +% to write the first frame, and then call +% +% gif +% +% to write each subsequent frame. That's it. +% +%% Syntax +% +% gif('filename.gif') +% gif(...,'DelayTime',DelayTimeValue,...) +% gif(...,'LoopCount',LoopCountValue,...) +% gif(...,'frame',handle,...) +% gif(...,'nodither') +% gif +% gif('clear') +% +%% Description +% +% gif('filename.gif') writes the first frame of a new gif file by the name filename.gif. +% +% gif(...,'DelayTime',DelayTimeValue,...) specifies a the delay time in seconds between +% frames. Default delay time is 1/15. +% +% gif(...,'LoopCount',LoopCountValue,...) specifies the number of times the gif animation +% will play. Default loop count is Inf. +% +% gif(...,'frame',handle,...) uses the frame of the given figure or set of axes. The default +% frame handle is gca, meaning the current axes. To turn an entire figure window into a gif, +% use 'frame',gcf to use the current figure. +% +% gif(...,'nodither') maps each color in the original image to the closest color in the new +% without dithering. Dithering is performed by default to achieve better color resolution, +% albeit at the expense of spatial resolution. +% +% gif adds a frame to the current gif file. +% +% gif('clear') clears the persistent variables associated with the most recent gif. +% +%% Example +% +% % Some sample data: +% t = sin(linspace(0,2*pi,30)); +% [X,Y,Z] = peaks(500); +% +% % Plot the first frame: +% h = surf(X,Y,Z*t(1)); +% shading interp +% axis([-3 3 -3 3 -9 9]) +% +% % Create a new gif file and write the first frame: +% gif('myfile.gif') % Or specify options like this: gif('myfile.gif','DelayTime',0.2,'LoopCount',5,'frame',gcf) +% +% % Loop through every other frame. +% for k = 2:length(t) +% set(h,'Zdata',Z*t(k)) +% gif +% end +% +% % View the gif in Matlab if you'd like: +% web('myfile.gif') +% +%% Author Information +% This function was written by Chad A. Greene of the University of Texas +% Institute for Geophysics (UTIG), June 2017. +% +% See also: imwrite, getframe, and rgb2ind. + +% Define persistent variables: +persistent gif_filename firstframe DelayTime DitherOption LoopCount frame + +%% Parse Inputs + +if nargin>0 + + % The user may want to clear things and start over: + if any(strcmpi(varargin,'clear')) + + % Clear persistent variables associated with this function: + clear gif_filename firstframe DelayTime DitherOption LoopCount frame + end + + % If the first input ends in .gif, assume this is the first frame: + if strcmpi(varargin{1}(end-3:end),'.gif') + + % This is what the user wants to call the new .gif file: + gif_filename = varargin{1}; + + % Check for an existing .gif file by the same name: + if exist(gif_filename,'file')==2 + + % Ask the user if (s)he wants to overwrite the existing file: + choice = questdlg(['The file ',gif_filename,' already exists. Overwrite it?'], ... + 'The file already exists.','Overwrite','Cancel','Cancel'); + + % Overwriting basically means deleting and starting from scratch: + if strcmp(choice,'Overwrite') + delete(gif_filename) + else + clear gif_filename firstframe DelayTime DitherOption LoopCount frame + error('The giffing has been canceled.') + end + + end + + firstframe = true; + + % Set defaults: + DelayTime = 1/15; + DitherOption = 'dither'; + LoopCount = Inf; + frame = gca; + end + + tmp = strcmpi(varargin,'DelayTime'); + if any(tmp) + DelayTime = varargin{find(tmp)+1}; + assert(isscalar(DelayTime)==1,'Error: DelayTime must be a scalar value.') + end + + if any(strcmpi(varargin,'nodither')) + DitherOption = 'nodither'; + end + + tmp = strcmpi(varargin,'LoopCount'); + if any(tmp) + LoopCount = varargin{find(tmp)+1}; + assert(isscalar(LoopCount)==1,'Error: LoopCount must be a scalar value.') + end + + tmp = strcmpi(varargin,'frame'); + if any(tmp) + frame = varargin{find(tmp)+1}; + assert(ishandle(frame)==1,'Error: frame must be a figure handle or axis handle.') + end + +else + assert(isempty(gif_filename)==0,'Error: The first call of the gif function requires a filename ending in .gif.') +end + +%% Perform work: + +% Get frame: +f = getframe(frame); + +% Convert the frame to a colormap and corresponding indices: +[imind,cmap] = rgb2ind(f.cdata,256,DitherOption); + +% Write the file: +if firstframe + imwrite(imind,cmap,gif_filename,'gif','LoopCount',LoopCount,'DelayTime',DelayTime) + firstframe = false; +else + imwrite(imind,cmap,gif_filename,'gif','WriteMode','append','DelayTime',DelayTime) +end + +end \ No newline at end of file diff --git a/Ross/gif_v1.0/gif/gif_documentation.m b/Ross/gif_v1.0/gif/gif_documentation.m new file mode 100644 index 0000000..82adaaf --- /dev/null +++ b/Ross/gif_v1.0/gif/gif_documentation.m @@ -0,0 +1,102 @@ +%% |gif| documentation +% The |gif| function is the simplest way to make gifs. Simply call +% +% gif('myfile.gif') +% +% to first the first frame, and then call +% +% gif +% +% to write each subsequent frame. That's it. +% +%% Syntax +% +% gif('filename.gif') +% gif(...,'DelayTime',DelayTimeValue,...) +% gif(...,'LoopCount',LoopCountValue,...) +% gif(...,'frame',handle,...) +% gif(...,'nodither') +% gif +% gif('clear') +% +%% Description +% +% |gif('filename.gif')| writes the first frame of a new gif file by the name |filename.gif|. +% +% |gif(...,'DelayTime',DelayTimeValue,...)| specifies a the delay time in seconds between +% frames. Default delay time is |1/15|. +% +% |gif(...,'LoopCount',LoopCountValue,...)| specifies the number of times the gif animation +% will play. Default loop count is |Inf|. +% +% |gif(...,'frame',handle,...)| uses the frame of the given figure or set of axes. The default +% frame handle is |gca|, meaning the current axes. To turn an entire figure window into a gif, +% use |'frame',gcf| to use the current figure. +% +% |gif(...,'nodither')| maps each color in the original image to the closest color in the new +% without dithering. Dithering is performed by default to achieve better color resolution, +% albeit at the expense of spatial resolution. +% +% |gif| adds a frame to the current gif file. +% +% |gif('clear')| clears the persistent variables associated with the most recent gif. +% +%% Example +% Consider this sample surface that changes over time: + +% Some sample data: +t = sin(linspace(0,2*pi,30)); +[X,Y,Z] = peaks(500); + +% Plot the first frame: +h = surf(X,Y,Z*t(1)); +shading interp +axis([-3 3 -3 3 -9 9]) + +% Make it fancy: +camlight +set(gca,'color','k') +set(gcf,'color','k') +caxis([min(Z(:)) max(Z(:))]) + +%% Write the first frame: +% When your plot looks the way you want the first frame of the gif to look, create a new gif file +% and write the first frame like this: +% +% gif('myfile.gif') +% +% If you want to specify certain options, include them the first time you call |gif|. For example, +% if you want a 0.2 second delay between each frame, you want the loop to run five times, and you +% want to use the entire figure window rather than the current axes, specifying all those options +% would look like this: +% +% gif('myfile.gif','DelayTime',0.2,'LoopCount',5,'frame',gcf) +% +%% Write the rest of the frames +% After the first frame has been written, write each subsequent frame simply by calling |gif| without +% any options. Here we loop through the remaining 29 frames: +% +% for k = 2:30 +% set(h,'Zdata',Z*t(k)) +% gif +% end + +%% +% And that's it. Here's what the final product looks like: +% +% <> + +%% View the gif in Matlab +% Did you know you can view gifs in Matlab? Here's how: +% +% web('myfile.gif') + +%% Speeding up animation creation +% You'll notice that in the loop above, we only changed the bare minimum number of things in the plot. +% We did not clear the plot and regenerate the plot each time through the loop, because the more things +% you do, and the more things you plot, the longer it takes for each iteration. As with any loop, try to +% minimize the number of operations inside the loop. +% +%% Author Info +% This function and supporting documentation were written by +% of the University of Texas Institute for Geophysics (UTIG), June 2017. diff --git a/Ross/gif_v1.0/gif/html/gif_documentation.html b/Ross/gif_v1.0/gif/html/gif_documentation.html new file mode 100644 index 0000000..4dafe9b --- /dev/null +++ b/Ross/gif_v1.0/gif/html/gif_documentation.html @@ -0,0 +1,200 @@ + + + + + gif documentation

gif documentation

The gif function is the simplest way to make gifs. Simply call

gif('myfile.gif')
+

to first the first frame, and then call

gif
+

to write each subsequent frame. That's it.

Contents

Syntax

gif('filename.gif')
+gif(...,'DelayTime',DelayTimeValue,...)
+gif(...,'LoopCount',LoopCountValue,...)
+gif(...,'frame',handle,...)
+gif(...,'nodither')
+gif
+gif('clear')

Description

gif('filename.gif') writes the first frame of a new gif file by the name filename.gif.

gif(...,'DelayTime',DelayTimeValue,...) specifies a the delay time in seconds between frames. Default delay time is 1/15.

gif(...,'LoopCount',LoopCountValue,...) specifies the number of times the gif animation will play. Default loop count is Inf.

gif(...,'frame',handle,...) uses the frame of the given figure or set of axes. The default frame handle is gca, meaning the current axes. To turn an entire figure window into a gif, use 'frame',gcf to use the current figure.

gif(...,'nodither') maps each color in the original image to the closest color in the new without dithering. Dithering is performed by default to achieve better color resolution, albeit at the expense of spatial resolution.

gif adds a frame to the current gif file.

gif('clear') clears the persistent variables associated with the most recent gif.

Example

Consider this sample surface that changes over time:

% Some sample data:
+t = sin(linspace(0,2*pi,30));
+[X,Y,Z] = peaks(500);
+
+% Plot the first frame:
+h = surf(X,Y,Z*t(1));
+shading interp
+axis([-3 3 -3 3 -9 9])
+
+% Make it fancy:
+camlight
+set(gca,'color','k')
+set(gcf,'color','k')
+caxis([min(Z(:)) max(Z(:))])
+

Write the first frame:

When your plot looks the way you want the first frame of the gif to look, create a new gif file and write the first frame like this:

gif('myfile.gif')

If you want to specify certain options, include them the first time you call gif. For example, if you want a 0.2 second delay between each frame, you want the loop to run five times, and you want to use the entire figure window rather than the current axes, specifying all those options would look like this:

gif('myfile.gif','DelayTime',0.2,'LoopCount',5,'frame',gcf)

Write the rest of the frames

After the first frame has been written, write each subsequent frame simply by calling gif without any options. Here we loop through the remaining 29 frames:

for k = 2:30
+   set(h,'Zdata',Z*t(k))
+   gif
+end

And that's it. Here's what the final product looks like:

View the gif in Matlab

Did you know you can view gifs in Matlab? Here's how:

web('myfile.gif')

Speeding up animation creation

You'll notice that in the loop above, we only changed the bare minimum number of things in the plot. We did not clear the plot and regenerate the plot each time through the loop, because the more things you do, and the more things you plot, the longer it takes for each iteration. As with any loop, try to minimize the number of operations inside the loop.

Author Info

This function and supporting documentation were written by Chad A. Greene of the University of Texas Institute for Geophysics (UTIG), June 2017.

\ No newline at end of file diff --git a/Ross/gif_v1.0/gif/html/gif_documentation.png b/Ross/gif_v1.0/gif/html/gif_documentation.png new file mode 100644 index 0000000..a570fa2 Binary files /dev/null and b/Ross/gif_v1.0/gif/html/gif_documentation.png differ diff --git a/Ross/gif_v1.0/gif/html/gif_documentation_01.png b/Ross/gif_v1.0/gif/html/gif_documentation_01.png new file mode 100644 index 0000000..c16b196 Binary files /dev/null and b/Ross/gif_v1.0/gif/html/gif_documentation_01.png differ diff --git a/Ross/gif_v1.0/gif/html/myfile.gif b/Ross/gif_v1.0/gif/html/myfile.gif new file mode 100644 index 0000000..5ed4e60 Binary files /dev/null and b/Ross/gif_v1.0/gif/html/myfile.gif differ diff --git a/Ross/gif_v1.0/license.txt b/Ross/gif_v1.0/license.txt new file mode 100644 index 0000000..223ded2 --- /dev/null +++ b/Ross/gif_v1.0/license.txt @@ -0,0 +1,24 @@ +Copyright (c) 2017, Chad Greene +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the distribution + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. diff --git a/Ross/logicalSpikes.m b/Ross/logicalSpikes.m new file mode 100644 index 0000000..06ae4e1 --- /dev/null +++ b/Ross/logicalSpikes.m @@ -0,0 +1,7 @@ +logicalSpks = false(Ncl, Ns); +for cl = 1:Ncl +for spk = 1: length(spkSubs{cl}) + ind = spkSubs{cl}(spk); +logicalSpks(cl,ind) = true; +end +end \ No newline at end of file diff --git a/Ross/plotAutoCorrs.m b/Ross/plotAutoCorrs.m new file mode 100644 index 0000000..962c341 --- /dev/null +++ b/Ross/plotAutoCorrs.m @@ -0,0 +1,12 @@ +% run Neurocorrs on units first! +tmReach = 300; +ms = round(length(corrs{1,1})/tmReach); +test = zeros(1,tmReach); +test(1) = sum(corrs{1,1}(1,1:ms)); +for i = 2:tmReach +test(i) = sum(corrs{1,1}(1,(i-1)*ms+1:i*ms)); +end +figure; plot(test) +ax = gca; +ax.XTick = [0, 50, 100, 125, 130, 135, 140, 145, 149, 150, 151, 155, 160, 165, 170, 175, 200, 250, 300]; +ax.XTickLabel = ax.XTick - 150; \ No newline at end of file diff --git a/Ross/plotClusterReactivityRoss.m b/Ross/plotClusterReactivityRoss.m new file mode 100644 index 0000000..84f99d2 --- /dev/null +++ b/Ross/plotClusterReactivityRoss.m @@ -0,0 +1,222 @@ +function fig =... + plotClusterReactivityRoss(PSTH,trig,sweeps,timeLapse,binSz,IDe,expName,stims,IDs) +%PLOTCLUSTERREACTIVITY gets the individual PSTH from the getPSTH function +%and plots it for each cluster. It also plots the population PSTH on the +%bottom of the figure and draws a line for the beguinning and end of the +%stimuli. +% fig = PlotClusterReactivity(PSTH, trig, sweeps, timeLapse, binSz,... +% IDe, expName, stims, IDs) +% +% INPUTS: +% PSTH - a MxN matrix containing the counts for the M individual +% clusters along the binned N time scale. +% trig - a 1xT array containing the stimulus probability without +% binning. +% sweeps - number of trials for the given experiment. +% timeLapse - peri-stimulus window. 1x2 array having the time +% before and after the stimulus, both in seconds. +% binSz - Bin size in seconds +% IDe - (1+M)x1 cell array contining the names for the stimulus +% and for the clusters involved. +% expName - String variable containing the text for the figure +% name. +% +% OUTPUT: +% fig - Figure object containing all the plots created. +% +% Emilio Isaias-Camacho @ GrohLab 2019 + +% If the trigger is the whisker stimulating device, then the color of the +% trigger will be green. Otherwise, it would be light blue for the laser. +clr = defineColorForStimuli(IDe); + +fthAxFlag = false; +if ~exist('stims','var') || isempty(stims) + totlX = 3; +elseif ~isempty(stims) + fthAxFlag = true; + totlX = 4; +end + +% Number of clusters and number of bins in the PSTH +[Ncl, Npt] = size(PSTH); +% Normalizing the PSTH to the maximal value on each cluster. +PSTHn = PSTH./max(PSTH,[],2); +fig = figure('Name',expName,'Color',[1,1,1]); +ax1 = subplot(totlX,1,1:3,'Parent',fig); +psthTX = linspace(timeLapse(1),timeLapse(2),Npt); +clrmp = parula; +% clrmp = defineWhYellRedColormap; +% clrmp = defineBlueRedColormap(); +imagesc(ax1,'XData',psthTX,'CData',PSTHn); +colormap(ax1,clrmp) + +trigTX = linspace(timeLapse(1),timeLapse(2),size(trig,2)); + +% Plotting lines for depicting the on- and offset of the trigger +tObj = StepWaveform(trig,1/mean(diff(trigTX))); +tSubs = tObj.subTriggers; +if ~isempty(tSubs) + for ct = 1:size(tSubs,1) + for nf = 1:size(tSubs,2) + line(ax1,'XData',repmat(trigTX(tSubs(ct,nf)),1,2),'YData',[0.5,Ncl+0.5],... + 'LineStyle',':','Color',clr,'LineWidth',2) + end + end +else + trig = logical(trig/max(trig(:))); + line(ax1,'XData',trigTX,'YData',(Ncl+1.5)*trig - 0.5,... + 'LineStyle',':','Color',clr,'LineWidth',2) +end + +% Formatting the heatmap +ax1.YLim = [0.5,size(PSTH,1)+0.5]; +ax1.XLim = [timeLapse(1)-binSz/2, timeLapse(2)+binSz/2]; +ax1.YTick = 1:Ncl; +ax1.YTickLabel = IDe(2:end); +% ax1.YAxis.Label.String = fprintf('Unit Depth_{(\mum)', 'Interpreter', 'tex'); +ax1.XAxis.Visible = 'off'; +ax1.FontSize = 30; +ax1.FontName = 'Arial'; +ylabel('Unit Depth_{(\mum)}', 'Interpreter', 'tex') +% % Plotting the population PSTH together with the trigger probability +% ax2 = subplot(totlX,1,4,'Parent',fig); +% popPSTH = sum(PSTH,1,'omitnan')/(Ncl * sweeps); +% plot(ax2,psthTX,popPSTH,'Color',[0.8,0.8,0.8],'DisplayName','Population PSTH') +% axLabel = 'Population activity'; +% yyaxis(ax2,'right') +% plot(ax2,trigTX,trig,'LineWidth',1.5,'Color',clr,'DisplayName',IDe{1},... +% 'LineStyle',':') +% +% % Formatting the population PSTH plot +% ax2.YAxis(1).Label.String = axLabel; +% % ax2.YAxis(1).Limits = [0,1.01]; +% ax2.YAxis(2).Limits = [0,1.01]; +% ax2.YAxis(2).Color = 'k'; +% ax2.YAxis(2).Label.String = 'Stimulus probability'; +% +% +% ax2.XLabel.String = sprintf('Time_{%.2f ms} [s]',binSz*1e3); +% ax2.XLim = [timeLapse(1), timeLapse(2)]; +% ax2.Box = 'off'; +% ax2.ClippingStyle = 'rectangle'; +% +% lgnd = legend(ax2,'show'); set(lgnd, 'Location','best', 'Box', 'off'); +% linkaxes([ax1,ax2],'x') +% title(ax1,[expName,sprintf(' %d trials',sweeps)]) + +if fthAxFlag + ax2 = subplot(totlX,1,4,'Parent',fig); + [r,c] = size(stims); + if r < c + stims = stims'; + end + + for cs = 1:min(r,c) + if exist('IDs','var') + plot(ax2,trigTX,stims(:,cs),'LineStyle','-','LineWidth',2,... + 'DisplayName', IDs{cs}) + else + plot(ax2,trigTX,stims(:,cs),'LineStyle','-','LineWidth',2) + end + + ax2.Children(1).Color = defineColorForStimuli(IDs(cs)); + + if cs == 1 + ax2.NextPlot = 'add'; + end + end + lgnd = legend(ax2,'show'); set(lgnd, 'Location', 'best', 'Box', 'off'); + ax2.Box = 'off'; + ax2.XLim = [timeLapse(1), timeLapse(2)]; + ax2.XLabel.String = sprintf('Time_{%.2f ms} [s]',binSz*1e3); + ax2.YAxis.Visible = 'off'; + ax2.FontSize = 30; + ax2.FontName = 'Arial'; + linkaxes([ax1,ax2,ax2],'x') +end +end + +function clr = defineColorForStimuli(IDe) +if contains(IDe{1},'piezo','IgnoreCase',true) ||... + contains(IDe{1},'whisker','IgnoreCase',true) + clr = [0, 0.8, 0]; +elseif contains(IDe{1},'light','IgnoreCase',true) ||... + contains(IDe{1},'laser','IgnoreCase',true) + clr = [80, 187, 211]/255; +else + clr = [165, 70, 87]/255; +end +end + +function clrmp = defineBlueRedColormap() +clrmp = [linspace(0,1,256)', zeros(256,1), linspace(1,0,256)']; +end + +function clrmp = defineWhYellRedColormap() +%Helper function to store the color map +clrmp = [1.0000 1.0000 1.0000 + 1.0000 0.9909 0.9727 + 1.0000 0.9818 0.9455 + 1.0000 0.9727 0.9182 + 1.0000 0.9636 0.8909 + 1.0000 0.9545 0.8636 + 1.0000 0.9455 0.8364 + 1.0000 0.9364 0.8091 + 1.0000 0.9273 0.7818 + 1.0000 0.9182 0.7545 + 1.0000 0.9091 0.7273 + 1.0000 0.9000 0.7000 + 1.0000 0.8909 0.6727 + 1.0000 0.8818 0.6455 + 1.0000 0.8727 0.6182 + 1.0000 0.8636 0.5909 + 1.0000 0.8545 0.5636 + 1.0000 0.8455 0.5364 + 1.0000 0.8364 0.5091 + 1.0000 0.8273 0.4818 + 1.0000 0.8182 0.4545 + 1.0000 0.8091 0.4273 + 1.0000 0.8000 0.4000 + 0.9905 0.7746 0.3810 + 0.9810 0.7492 0.3619 + 0.9714 0.7238 0.3429 + 0.9619 0.6984 0.3238 + 0.9524 0.6730 0.3048 + 0.9429 0.6476 0.2857 + 0.9333 0.6222 0.2667 + 0.9238 0.5968 0.2476 + 0.9143 0.5714 0.2286 + 0.9048 0.5460 0.2095 + 0.8952 0.5206 0.1905 + 0.8857 0.4952 0.1714 + 0.8762 0.4698 0.1524 + 0.8667 0.4444 0.1333 + 0.8571 0.4190 0.1143 + 0.8476 0.3937 0.0952 + 0.8381 0.3683 0.0762 + 0.8286 0.3429 0.0571 + 0.8190 0.3175 0.0381 + 0.8095 0.2921 0.0190 + 0.8000 0.2667 0 + 0.7800 0.2633 0 + 0.7600 0.2600 0 + 0.7400 0.2567 0 + 0.7200 0.2533 0 + 0.7000 0.2500 0 + 0.6800 0.2467 0 + 0.6600 0.2433 0 + 0.6400 0.2400 0 + 0.6200 0.2367 0 + 0.6000 0.2333 0 + 0.5800 0.2300 0 + 0.5600 0.2267 0 + 0.5400 0.2233 0 + 0.5200 0.2200 0 + 0.5000 0.2167 0 + 0.4800 0.2133 0 + 0.4600 0.2100 0 + 0.4400 0.2067 0 + 0.4200 0.2033 0 + 0.4000 0.2000 0]; +end \ No newline at end of file diff --git a/Ross/plotISItogether.m b/Ross/plotISItogether.m new file mode 100644 index 0000000..11396bf --- /dev/null +++ b/Ross/plotISItogether.m @@ -0,0 +1,104 @@ +function [fig, Hist, FRpu] = plotISItogether(spkSubs, fs, ID) +% PLOTISI takes the spikes subscripts and displays the inter-spike +% intervals in a continuous histogram y-log(x) manner. +% Input parameters: +% - spkSubs - cell array containing the spike subscripts for each +% unit +% - fs - Sampling frequency used to acquire the signals +% Output parameters: +% - fig - figures array containing all created figures. +% - FRpu - Firing rate per unit + + + + +% make figure, then call function +%% Input validation +fig = gobjects(1); +[Nr, Nc] = size(spkSubs); +if iscell(spkSubs) && all(cellfun(@isnumeric,spkSubs)) + Nu = max(Nr,Nc); + % Validation for subscripts or time points. + SubsFlag = any(cellfun(@all,cellfun(@eq,... + cellfun(@minus,... + cellfun(@round,spkSubs,... + 'UniformOutput',false),spkSubs,... + 'UniformOutput',false),repmat({0},Nr,Nc),... + 'UniformOutput',false))); + mintd = 1/fs; + if ~SubsFlag + fprintf(1,'Given time points instead of subscripts.') + fprintf(1,' Considering time in seconds\n') + fs = 1; + end +else + fprintf(1,'Not sure how to manage this entry...\n') + fprintf(1,'Please provide either a cell array, a numeric vector, or a ') + fprintf(1,'logical time series\n') + return +end +IDflag = false; +if exist('ID','var') && Nu == numel(ID) + fprintf(1,'Naming each unit appropiately\n') + IDflag = true; +end + +fig = gobjects(Nu,1); +if Nu >= 100 + warning('More than or equal to 100 units. Consider curation') +end +%% Inter-spike intervals +FRpu = zeros(Nu,3); +% figure('Visible','off','Color',[1,1,1]); +hold on +for cu = 1:Nu + lisi = log10(diff(spkSubs{cu}./fs)); + if any(isinf(lisi)) + fprintf(1,'Cluster %d ',cu); + if IDflag + fprintf(1,'(%s)',ID{cu}) + end + fprintf(1,' has repeated time points.\n') + fprintf(1,'These time points will not be considered.\n') + lisi(isinf(lisi)) = []; + end + if isempty(lisi) + fprintf(1,'Cluster %d ',cu); + if IDflag + fprintf(1,'(%s)',ID{cu}) + end + fprintf(1,' has one time point.\n') + fprintf(1,'Skipping...\n') + continue + end + FRpu(cu,:) = [1/(10^mean(lisi,'omitnan')),... + 1/(10^median(lisi,'omitnan')),... + 1/(10^mode(lisi))]; + % figure('Visible','off','Color',[1,1,1]); + hisi = histogram(lisi,'BinEdges', log10(0.001):0.01:log10(100), 'Normalization', 'probability'); + cts = hisi.BinCounts; + bns = (hisi.BinEdges(1:end-1) + hisi.BinEdges(2:end))/2; + plot(bns,cts./sum(cts),'LineWidth',1); + fig = gcf; + % if IDflag + % title(ax,['Unit #',num2str(cu),' (',ID{cu},')']); + % else + % title(ax,['Unit #',num2str(cu)]); + % end + % yyaxis('right');plot(bns,cumsum(Ncts),'LineStyle','--') + % ylabel('Cumulative fraction');ax = fig.Children; + % ax.YAxis(2).Limits = [0, 1]; + % ax.YAxis(2).Color = [0.1,0.1,0.1]; + Ncts = cts/sum(cts); + Hist(cu).cts = hisi.BinCounts; + Hist(cu).bns = (hisi.BinEdges(1:end-1) + hisi.BinEdges(2:end))/2; + Hist(cu).ISIs = cts./sum(cts); + Hist(cu).cumsum = cumsum(cts./sum(cts)); + fig.Visible = 'on'; +end +ax = fig.Children; +grid(ax,'on') + +ax.XTickLabel = 10.^cellfun(@str2double,ax.XTickLabel) * 1e3; +xlabel(ax,'Time [ms]'); ylabel(ax,'ISI Probability'); +end diff --git a/Ross/plotLatency.m b/Ross/plotLatency.m new file mode 100644 index 0000000..a897c29 --- /dev/null +++ b/Ross/plotLatency.m @@ -0,0 +1,33 @@ +function fig = plotLatency(UnitID, sortedData, TriggerTimes, samplingFrequency) + +% Finds TriggerLatencies for a given unit and plots them in box plot +ind = ismember(sortedData(:,1), UnitID); +Latencies = TriggerLatencies(sortedData(ind,2), TriggerTimes, samplingFrequency); +if class(UnitID) == 'cell' + figureName = UnitID{1}; +else + figureName = num2str(UnitID); +end +fidelity = (length(Latencies{1})/length(TriggerTimes))*100; % how often it responds at least once in a trigger window +fig = figure('Name', ['Unit ', figureName, ' Triggered Latency', ], 'Color', 'white'); +boxplot(Latencies{1}); +title(fig.Name, 'Interpreter', 'none'); +ylabel('Trigger Latency_{(ms)}') +xlim([0.9, 1.1]); +ylim([0,50]); +yticks([0:5:50]); +x = xlim; +y = ylim; +xlow = x(1); +ylow = y(1); +xhigh = x(2); +yhigh = y(2); +xcoord = xlow + (xhigh - xlow)*0.7; +ycoord = ylow + (yhigh - ylow)*0.9; +text(xcoord, ycoord, [num2str(round(fidelity)), '% fidelity'],'FontSize', 15); +ax = gca; +xticks([]); +ax = gca; +ax.FontSize = 15; + +end \ No newline at end of file diff --git a/Ross/plotLatencyHist.m b/Ross/plotLatencyHist.m new file mode 100644 index 0000000..cc7b780 --- /dev/null +++ b/Ross/plotLatencyHist.m @@ -0,0 +1,51 @@ +function fig = plotLatencyHist(clInfo, clIDs, ConditionName, TriggerTimes, sortedData, samplingFrequency) +fs = samplingFrequency; +clInd = ismember(clInfo.id, clIDs); +depths = table(clInfo.id(clInd), clInfo.AbsDepth(clInd)); +depths = sortrows(depths,'Var2','ascend'); +ID = depths{:,1}; +Dpth = depths.Var2; +spkInd = []; +for i = 1:length(ID) + spkInd = [spkInd; find(ismember(sortedData(:,1), ID(i)))]; +end +name = ConditionName; +name(strfind(name, '_')) = ' '; +name = ['Latency Histogram: ', name]; +Latencies = TriggerLatencies(sortedData(spkInd,2), TriggerTimes, fs); +mn = (cellfun(@mean, Latencies)*1e3); + +fig = figure('Name', name, 'Color', 'White'); + +h = histogram(round(mn)); +h.FaceColor = [0.5, 0.5, 0.5]; + +pulseWidth = round(median(diff(TriggerTimes'/fs)')*1e3); +% title(name, 'Interpreter', 'none'); +ylim([0,round(mode(round(mn)+5))]); +%yticks([round(round(min(Dpth),-2)/2,-2)*2-200:200:0]); +xlim([0 50]); +xticks(0:5:50); +xlabel('Latency_{(ms)}'); +ylabel('Frequency_{(no. of units)}', 'Interpreter', 'tex') +% ax.XTickLabelRotation = -45; +ax = gca; +laserLngth = linspace(0, pulseWidth + 0.5); +hold on +laser = plot(laserLngth, (ax.YLim(2))*ones(length(laserLngth),1), 'Color', [0 1 1 0.5], 'LineWidth', 3); +ax = gca; +ax.FontSize = 20; +% ax.FontName = 'Times New Roman'; +% Create rectangle +%lsText = text(3, ax.YLim(1)+45, 'Laser Pulse', 'FontSize', 10); + + +rectangle(ax, 'Position', [ax.XLim(1), ax.YLim(1), pulseWidth + 0.5, ax.YLim(2) - ax.YLim(1)], ... +'LineStyle', 'none', 'FaceColor', [0 1 1 0.1]) + +lgd = legend; +lgd.String{1} = ['Total = ', num2str(length(mn)), ' Units']; +lgd.String{2} = ['Laser Pulse (',num2str(pulseWidth), 'ms)']; +end + + diff --git a/Ross/plotLatencyJitterDepth.m b/Ross/plotLatencyJitterDepth.m new file mode 100644 index 0000000..87ca36e --- /dev/null +++ b/Ross/plotLatencyJitterDepth.m @@ -0,0 +1,56 @@ + function fig = plotLatencyJitterDepth(clInfo, clIDs, ConditionName, TriggerTimes, sortedData, samplingFrequency) +fs = samplingFrequency; +clInd = ismember(clInfo.id, clIDs); +depths = table(clInfo.id(clInd), clInfo.abs_depth(clInd)); +depths = sortrows(depths,'Var2','ascend'); +ID = depths{:,1}; +Dpth = depths.Var2; +spkInd = []; +for i = 1:length(ID) + spkInd = [spkInd; find(ismember(sortedData(:,1), ID(i)))]; +end +name = ConditionName; +name(strfind(name, '_')) = ' '; +name = ['Latency vs Jitter vs Depth: ', name]; +Latencies = TriggerLatencies(sortedData(spkInd,2), TriggerTimes, fs); +mn = (cellfun(@mean, Latencies)*1e3); +sd = (cellfun(@std, Latencies)*1e3); +Dpth = -1*Dpth; +jitter = randi(20,size(Dpth)); +Dpth = Dpth + jitter; % adding small random jitter for visualisation +fig = figure('Name', name, 'Color', 'White'); + +scatter3(mn,sd,Dpth, 50, [0.5, 0.5, 0.5], '*') + +pulseWidth = round(median(diff(TriggerTimes'/fs)')*1e3); +% title(name, 'Interpreter', 'none'); +zlim([round(round(min(Dpth),-2)/2,-2)*2-200,0]); +zticks([round(round(min(Dpth),-2)/2,-2)*2-200:200:0]); +xlim([0 50]); +xticks(0:5:50); +xlabel('Latency_{(ms)}'); +ylabel('StdDev_{(ms)}', 'Interpreter', 'tex'); +zlabel('Depth_{(\mum)}', 'Interpreter', 'tex'); + +% ax.XTickLabelRotation = -45; +%ax = gca; +%hold on +%laser = plot([0:pulseWidth], (ax.YLim(1)+25)*ones(pulseWidth + 1,1), 'Color', [0 1 1 0.5], 'LineWidth', 3); +ax = gca; +ax.FontSize = 20; +% ax.FontName = 'Times New Roman'; +% Create rectangle +% lsText = text(3, ax.YLim(1)+45, 'Laser Pulse', 'FontSize', 10); + +lgd = legend; +lgd.String{1} = 'Unit Mean +/- SD'; +%lgd.String{2} = ['Laser Pulse (',num2str(pulseWidth), 'ms)']; + +% rectangle(ax, 'Position', [1, ax.YLim(2)-100, 4, 50], ... +% 'LineStyle', 'none', 'FaceColor', [0 1 1 0.5]) + +%rectangle(ax, 'Position', [ax.XLim(1), ax.YLim(1), pulseWidth, ax.YLim(2) - ax.YLim(1)], ... +%'LineStyle', 'none', 'FaceColor', [0 1 1 0.1]) +end + + diff --git a/Ross/plotLatencyRatesDepth.m b/Ross/plotLatencyRatesDepth.m new file mode 100644 index 0000000..8f77e63 --- /dev/null +++ b/Ross/plotLatencyRatesDepth.m @@ -0,0 +1,73 @@ +function fig = plotLatencyRatesDepth(TaggedIDs, clInfo, clIDs, ConditionName, TriggerTimes, sortedData, samplingFrequency) + +fs = samplingFrequency; +clInd = ismember(clInfo.id, clIDs); +depths = table(clInfo.id(clInd), clInfo.abs_depth(clInd)); +depths = sortrows(depths,'Var2','ascend'); +ID = depths{:,1}; +Dpth = depths.Var2; +spkInd = []; +for i = 1:length(ID) + spkInd = [spkInd; find(ismember(sortedData(:,1), ID(i)))]; +end +Dpth = -1*Dpth; +jitter = randi(20,size(Dpth)); +Dpth = Dpth + jitter; % adding small random jitter for visualisation +tagged = ismember(ID, TaggedIDs); +name = ConditionName; +name(strfind(name, '_')) = ' '; +name = ['Latency vs Triggered Rate: ', name]; +Latencies = TriggerLatencies(sortedData(spkInd,2), TriggerTimes, fs, 5e-2); +Rates = TriggeredRates(sortedData(spkInd,2), TriggerTimes, fs, 5e-2); +mnLat = (cellfun(@mean, Latencies)*1e3); +sdLat = (cellfun(@std, Latencies)*1e3); +mnRate = cellfun(@mean, Rates); +sdRate = cellfun(@std, Rates); +nan = isnan(mnLat); + +nontagged = ~tagged & ~nan; +fig = figure('Name', name, 'Color', 'White'); + + +scatter3(mnLat(~tagged),mnRate(~tagged),Dpth(~tagged), 50, [0.5, 0.5, 0.5], '*') +hold on +scatter3(mnLat(tagged),mnRate(tagged),Dpth(tagged), 50, [0.5, 1, 1], '*') +hold off + + +pulseWidth = round(median(diff(TriggerTimes'/fs)')*1e3); +% title(name, 'Interpreter', 'none'); +ylim([0, round(max(mnRate)+max(sdRate),-1)]); +% yticks([round(round(min(Dpth),-2)/2,-2)*2-200:200:0]); +xlim([0 50]); +xticks(0:5:50); +xlabel('Latency_{(ms)}'); +ylabel('Firing Rate_{(Hz)}') +zlim([round(round(min(Dpth),-2)/2,-2)*2-200,0]); +zticks([round(round(min(Dpth),-2)/2,-2)*2-200:200:0]); +zlabel('Depth_{(\mum)}', 'Interpreter', 'tex'); +% ax.XTickLabelRotation = -45; +% ax = gca; +% hold on +% laser = plot([0:pulseWidth], ax.YLim(2)*ones(pulseWidth + 1,1), 'Color', [0 1 1 0.5], 'LineWidth', 3); +ax = gca; +ax.FontSize = 20; +% ax.FontName = 'Times New Roman'; +% Create rectangle +% lsText = text(3, ax.YLim(1)+45, 'Laser Pulse', 'FontSize', 10); + +lgd = legend; +lgd.String{1} = (['Unit Mean +/- SD (n=', num2str(sum(nontagged)), ')']); +lgd.String{2} = (['Opto-tagged Units (n=', num2str(sum(tagged)), ')']); +%lgd.String{3} = ['Laser Pulse (',num2str(pulseWidth), 'ms)']; +% rectangle(ax, 'Position', [1, ax.YLim(2)-100, 4, 50], ... +% 'LineStyle', 'none', 'FaceColor', [0 1 1 0.5]) + +% rectangle(ax, 'Position', [ax.XLim(1), ax.YLim(1), pulseWidth, ax.YLim(2) - ax.YLim(1)], ... +% 'LineStyle', 'none', 'FaceColor', [0 1 1 0.1]) +% lgd.FontSize = 8; + + +end + + diff --git a/Ross/plotLatencyVsDepth.m b/Ross/plotLatencyVsDepth.m new file mode 100644 index 0000000..fa4ee5e --- /dev/null +++ b/Ross/plotLatencyVsDepth.m @@ -0,0 +1,55 @@ +function fig = plotLatencyVsDepth(clInfo, clIDs, ConditionName, TriggerTimes, sortedData, samplingFrequency) +fs = samplingFrequency; +clInd = ismember(clInfo.id, clIDs); +depths = table(clInfo.id(clInd), clInfo.abs_depth(clInd)); +depths = sortrows(depths,'Var2','ascend'); +ID = depths{:,1}; +Dpth = depths.Var2; +spkInd = []; +for i = 1:length(ID) + spkInd = [spkInd; find(ismember(sortedData(:,1), ID(i)))]; +end +name = ConditionName; +name(strfind(name, '_')) = ' '; +name = ['Latency vs Depth: ', name]; +tm = 5e-2; +Latencies = TriggerLatencies(sortedData(spkInd,2), TriggerTimes, fs, tm); +mn = (cellfun(@mean, Latencies)*1e3); +sd = (cellfun(@std, Latencies)*1e3); +Dpth = -1*Dpth; +jitter = randi(20,size(Dpth)); +Dpth = Dpth + jitter; % adding small random jitter for visualisation +fig = figure('Name', name, 'Color', 'White'); + +errorbar(mn,Dpth,sd, 'horizontal', 'LineStyle', 'none', 'Marker', 'd', 'Color', [0.5, 0.5, 0.5], 'MarkerSize', 2.5, 'LineWidth', 0.01, 'CapSize', 5); + +pulseWidth = round(median(diff(TriggerTimes'/fs)')*1e3); +% title(name, 'Interpreter', 'none'); +ylim([round(round(min(Dpth),-2)/2,-2)*2-200,0]); +yticks([round(round(min(Dpth),-2)/2,-2)*2-200:200:0]); +xlim([0 50]); +xticks(0:5:50); +xlabel('Latency_{(ms)}'); +ylabel('Depth_{(\mum)}', 'Interpreter', 'tex') +% ax.XTickLabelRotation = -45; +ax = gca; +hold on +laser = plot([0:pulseWidth], ax.YLim(2)*ones(pulseWidth + 1,1), 'Color', [0 1 1 0.5], 'LineWidth', 3); +ax = gca; +ax.FontSize = 20; +% ax.FontName = 'Times New Roman'; +% Create rectangle +% lsText = text(3, ax.YLim(1)+45, 'Laser Pulse', 'FontSize', 10); + +lgd = legend; +lgd.String{1} = 'Unit Mean +/- SD'; +lgd.String{2} = ['Laser Pulse (',num2str(pulseWidth), 'ms)']; + +% rectangle(ax, 'Position', [1, ax.YLim(2)-100, 4, 50], ... +% 'LineStyle', 'none', 'FaceColor', [0 1 1 0.5]) + +rectangle(ax, 'Position', [ax.XLim(1), ax.YLim(1), pulseWidth, ax.YLim(2) - ax.YLim(1)], ... +'LineStyle', 'none', 'FaceColor', [0 1 1 0.1]) +end + + diff --git a/Ross/plotLatencyVsJitter.m b/Ross/plotLatencyVsJitter.m new file mode 100644 index 0000000..cf3da89 --- /dev/null +++ b/Ross/plotLatencyVsJitter.m @@ -0,0 +1,54 @@ +function fig = plotLatencyVsJitter(clInfo, clIDs, ConditionName, TriggerTimes, sortedData, samplingFrequency) +fs = samplingFrequency; +clInd = ismember(clInfo.id, clIDs); +depths = table(clInfo.id(clInd), clInfo.AbsDepth(clInd)); +depths = sortrows(depths,'Var2','ascend'); +ID = depths{:,1}; +Dpth = depths.Var2; +spkInd = []; +for i = 1:length(ID) + spkInd = [spkInd; find(ismember(sortedData(:,1), ID(i)))]; +end +name = ConditionName; +name(strfind(name, '_')) = ' '; +name = ['Latency Vs Jitter: ', name]; +Latencies = TriggerLatencies(sortedData(spkInd,2), TriggerTimes, fs); +mn = (cellfun(@mean, Latencies)*1e3); +sd = (cellfun(@std, Latencies)*1e3); +Dpth = -1*Dpth; +jitter = randi(20,size(Dpth)); + +fig = figure('Name', name, 'Color', 'White'); + +scatter(mn,sd,50, [0.5, 0.5, 0.5], '*') + +pulseWidth = round(median(diff(TriggerTimes'/fs)')*1e3); +% title(name, 'Interpreter', 'none'); +ylim([0,round(round(max(sd))+5,-1)]); +%yticks([round(round(min(Dpth),-2)/2,-2)*2-200:200:0]); +xlim([0 50]); +xticks(0:5:50); +xlabel('Latency_{(ms)}'); +ylabel('StdDev_{(ms)}', 'Interpreter', 'tex') +% ax.XTickLabelRotation = -45; +ax = gca; +hold on +laser = plot([0:pulseWidth], (ax.YLim(2))*ones(pulseWidth + 1,1), 'Color', [0 1 1 0.5], 'LineWidth', 3); +ax = gca; +ax.FontSize = 20; +% ax.FontName = 'Times New Roman'; +% Create rectangle +%lsText = text(3, ax.YLim(1)+45, 'Laser Pulse', 'FontSize', 10); + +lgd = legend; +lgd.String{1} = ['Total = ', num2str(length(mn)), ' Units']; +lgd.String{2} = ['Laser Pulse (',num2str(pulseWidth), 'ms)']; + +% rectangle(ax, 'Position', [1, ax.YLim(2)-100, 4, 50], ... +% 'LineStyle', 'none', 'FaceColor', [0 1 1 0.5]) + +rectangle(ax, 'Position', [ax.XLim(1), ax.YLim(1), pulseWidth, ax.YLim(2) - ax.YLim(1)], ... +'LineStyle', 'none', 'FaceColor', [0 1 1 0.1]) +end + + diff --git a/Ross/plotLatencyVsTriggeredRates.m b/Ross/plotLatencyVsTriggeredRates.m new file mode 100644 index 0000000..bd270a0 --- /dev/null +++ b/Ross/plotLatencyVsTriggeredRates.m @@ -0,0 +1,70 @@ +function fig = plotLatencyVsTriggeredRates(TaggedIDs, clInfo, clIDs, ConditionName, TriggerTimes, sortedData, samplingFrequency) + +fs = samplingFrequency; +clInd = ismember(clInfo.id, clIDs); +depths = table(clInfo.id(clInd), clInfo.AbsDepth(clInd)); +depths = sortrows(depths,'Var2','ascend'); +ID = depths{:,1}; +Dpth = depths.Var2; +spkInd = []; +for i = 1:length(ID) + spkInd = [spkInd; find(ismember(sortedData(:,1), ID(i)))]; +end +Dpth = -1*Dpth; +tagged = ismember(ID, TaggedIDs); +name = ConditionName; +name(strfind(name, '_')) = ' '; +name = ['Latency vs Triggered Rate: ', name]; +Latencies = TriggerLatencies(sortedData(spkInd,2), TriggerTimes, fs, 5e-2); +Rates = TriggeredRates(sortedData(spkInd,2), TriggerTimes, fs, 5e-2); +mnLat = (cellfun(@mean, Latencies)*1e3); +sdLat = (cellfun(@std, Latencies)*1e3); +mnRate = cellfun(@mean, Rates); +sdRate = cellfun(@std, Rates); +nan = isnan(mnLat); + +nontagged = ~tagged & ~nan; +fig = figure('Name', name, 'Color', 'White'); + + +errorbar(mnLat(~tagged),mnRate(~tagged),sdRate(~tagged), sdRate(~tagged), sdLat(~tagged), sdLat(~tagged),... + 'LineStyle', 'none', 'Marker', 'd', 'Color', [0.5, 0.5, 0.5], 'MarkerSize', 2.5, 'LineWidth', 0.01, 'CapSize', 5); +hold on +errorbar(mnLat(tagged),mnRate(tagged),sdRate(tagged), sdRate(tagged), sdLat(tagged), sdLat(tagged),... + 'LineStyle', 'none', 'Marker', 'd', 'Color', [0.5, 1, 1], 'MarkerSize', 2.5, 'LineWidth', 0.01, 'CapSize', 5); +hold off + + +pulseWidth = round(median(diff(TriggerTimes'/fs)')*1e3); +% title(name, 'Interpreter', 'none'); +ylim([0, round(max(mnRate)+max(sdRate),-1)]); +% yticks([round(round(min(Dpth),-2)/2,-2)*2-200:200:0]); +xlim([0 50]); +xticks(0:5:50); +xlabel('Latency_{(ms)}'); +ylabel('Firing Rate_{(Hz)}') +% ax.XTickLabelRotation = -45; +ax = gca; +hold on +laser = plot([0:pulseWidth], ax.YLim(2)*ones(pulseWidth + 1,1), 'Color', [0 1 1 0.5], 'LineWidth', 3); +ax = gca; +ax.FontSize = 20; +% ax.FontName = 'Times New Roman'; +% Create rectangle +% lsText = text(3, ax.YLim(1)+45, 'Laser Pulse', 'FontSize', 10); + +lgd = legend; +lgd.String{1} = (['Unit Mean +/- SD (n=', num2str(sum(nontagged)), ')']); +lgd.String{2} = (['Opto-tagged Units (n=', num2str(sum(tagged)), ')']); +lgd.String{3} = ['Laser Pulse (',num2str(pulseWidth), 'ms)']; +% rectangle(ax, 'Position', [1, ax.YLim(2)-100, 4, 50], ... +% 'LineStyle', 'none', 'FaceColor', [0 1 1 0.5]) + +rectangle(ax, 'Position', [ax.XLim(1), ax.YLim(1), pulseWidth, ax.YLim(2) - ax.YLim(1)], ... +'LineStyle', 'none', 'FaceColor', [0 1 1 0.1]) +lgd.FontSize = 8; + + +end + + diff --git a/Ross/plotPopPSTH.m b/Ross/plotPopPSTH.m new file mode 100644 index 0000000..adb625e --- /dev/null +++ b/Ross/plotPopPSTH.m @@ -0,0 +1,68 @@ +filterIdx = true(1,3); +filterIdx = [filterIdx; idx & wruIdx]; +dimID = size(filterIdx); +nFilters = dimID(2); + +csNames = fieldnames(Triggers); +Nbn = diff(timeLapse)/binSz; +popClrs = linspace(0.5, 1, nFilters); + +for ccond = [3, 6, 9, 12, 15] %1:Nccond + PSTHarray = cell(nFilters, 1); + + for f = 1:nFilters + PSTHarray{f} = zeros(nnz(filterIdx(:,f)) - 1, Nbn, Nccond); + [PSTHarray{f}(:,:,ccond), trig, sweeps] = getPSTH(discStack(filterIdx(:,f),:,:),timeLapse,... + ~delayFlags(:,ccond),binSz,fs); + end + fig = figure('Name', [expName, '_', consCondNames{ccond}, '_Population activity'], 'Color', 'White'); + + + ax1 = subplot(4,1,1:3); + hold(ax1, 'on') + title([expName, '_', consCondNames{ccond}, '_Population activity_', binSz, 'binSz']) + for f = 1:nFilters + PSTH = PSTHarray{f}(:,:,ccond); + [Ncl, Npt] = size(PSTH); + psthTX = linspace(timeLapse(1),timeLapse(2),Npt); + popPSTH = sum(PSTH,1,'omitnan')/(Ncl * sweeps); + colr = zeros(1,3); + colr(f) = 1; + plot(ax1, psthTX,popPSTH,'Color',colr); %'Color',popClrs(f)*ones(1,3) + + end + legend([{'Early Responders'}, {'VPL'}, {'Late Responders'}]) + + + ax2 = subplot(4,1,4); + hold on + trigTX = linspace(timeLapse(1),timeLapse(2),size(trig,2)); + stims = mean(cst(:,:,delayFlags(:,ccond)),3); + stims = stims - median(stims,2); + for cs = 1:size(stims,1) + if abs(log10(var(stims(cs,:),[],2))) < 13 + [m,b] = lineariz(stims(cs,:),1,0); + stims(cs,:) = m*stims(cs,:) + b; + else + stims(cs,:) = zeros(1,Nt); + end + end + + + [r,c] = size(stims); + if r < c + stims = stims'; + end + + + plot(ax2,trigTX,stims(:,cs),'LineStyle','-','LineWidth',0.5) + legend(consCondNames{ccond}) + linkaxes([ax1,ax2],'x') + + + + + + hold off + savefig(fig, fullfile('Z:\Ross\Experiments\smrxFiles\16.12.20\12.6.21\Figures\', [fig.Name, '_', num2str(binSz), '_binSz.fig'])); +end \ No newline at end of file diff --git a/Ross/plotRate.m b/Ross/plotRate.m new file mode 100644 index 0000000..91606d2 --- /dev/null +++ b/Ross/plotRate.m @@ -0,0 +1,42 @@ +function RateMap = plotRate(rates, ID, binSize, nUnits, numSamples, fs) + +binSamples = fs*binSize; +nBins = round(numSamples/binSamples); +xaxisSec = [0:nBins]'*binSize; +yaxisClNo = [1:nUnits]; + +RateMap = figure('Color', 'White'); +imagesc(xaxisSec, yaxisClNo, rates'); +yticks(1:1:nUnits); +yticklabels(ID); +xlabel('Time (s)'); +ylabel('Units'); +txt = {['Bin Size = ', num2str(binSize) 's']}; +text(8328,-2.7,1.4e-14, txt); +%Use fire colormap +colormap(fire); +colorbar; +%use caxis command to hardcode colormap so that we can more easily compare +caxis([0 50]); +ax = gca; +ax.FontSize = 30; +configureFigureToPDF(figure(RateMap)); +% saveas(figure(RateMap), expt, 'emf'); +% save(fullfile(dataDir, [expt]), 'rate', 'RateMap', '-v7.3'); +end + + +%across conditions-- try it out with autogenerated values to get a sense of +%the appropriate scaling + +%Add labels! + +%RAM Can you programmatically save the figure file? +% savefig('RateMap.fig'); print('RateMap.pdf','-dpdf'); print('RateMap.emf','-dmeta'); +%RAM Are you always using 50 ms or 500 ms for binsizes? Asnw: No, 1s bin size for +% these files +%RAM Add binsize to title or somewhere on plot +%RAM Wrap everything in a function as below and save in new .m file + +%RAM programatically save results to a new data file using save command at +% command line \ No newline at end of file diff --git a/Ross/plotSpontFRvsDepth.m b/Ross/plotSpontFRvsDepth.m new file mode 100644 index 0000000..e7a1f01 --- /dev/null +++ b/Ross/plotSpontFRvsDepth.m @@ -0,0 +1,44 @@ +function fig = plotSpontFRvsDepth(ID, clInfo, sortedData, CondTriggers, Triggers, samplingFrequency) + +clIDs = ID; +fs = samplingFrequency; +clInd = ismember(clInfo.id, clIDs); +depths = table(clInfo.id(clInd), clInfo.abs_depth(clInd)); +depths = sortrows(depths,'Var2','ascend'); +ID = depths{:,1}; +Dpth = depths.Var2; +spkInd = []; +for i = 1:length(ID) + spkInd = [spkInd; find(ismember(sortedData(:,1), ID(i)))]; +end +Dpth = -1*Dpth; +jitter = randi(20,size(Dpth)); +Dpth = Dpth + jitter; % adding small random jitter for visualisation + +spkSubs = cellfun(@(x) round(x.*fs), sortedData(spkInd,2),... +'UniformOutput', false); +Ns = min(structfun(@numel,Triggers)); +Nt = Ns/fs; +[firingRatePerCluster, deltaTrigTimeSum, sponSpks, sponIsi] =... + getSpontFireFreq(spkSubs, CondTriggers, [0, Ns], fs, 1); + + +if class(ID) == 'cell' + figureName = ID{1}; +else + figureName = ID; +end +figureName(strfind(figureName, '_')) = ' '; +figureName = ['Spont FR vs Depth: ', figureName]; +%fig = figure('Name', figureName, 'Color', 'White'); + +scatter(firingRatePerCluster, Dpth, 500, [1, 0, 0], '*') +xlabel('Spont. Firing Rate_{(Hz)}') +xlim([0, 100]) +xticks([0:10:100]) +ylim([round(round(min(Dpth),-2)/2,-2)*2-200,0]); +yticks([-1600:200:0]); +ylabel('Depth_{(\mum)}', 'Interpreter', 'tex'); +ax = gca; +ax.FontSize = 15; +end diff --git a/Ross/plotTaggedFraction.m b/Ross/plotTaggedFraction.m new file mode 100644 index 0000000..9a82664 --- /dev/null +++ b/Ross/plotTaggedFraction.m @@ -0,0 +1,61 @@ +function [fig, TaggedIDs] = plotTaggedFraction(latencyCutoffs, sdCutoffs, clInfo, clIDs, ConditionName, TriggerTimes, sortedData, samplingFrequency) +fs = samplingFrequency; +clInd = ismember(clInfo.id, clIDs); +depths = table(clInfo.id(clInd), clInfo.AbsDepth(clInd)); +depths = sortrows(depths,'Var2','ascend'); +ID = depths{:,1}; +Dpth = depths.Var2; +spkInd = []; +for i = 1:length(ID) + spkInd = [spkInd; find(ismember(sortedData(:,1), ID(i)))]; +end +name = ConditionName; +name(strfind(name, '_')) = ' '; +name = ['Tagged Fraction: ', name]; +Latencies = TriggerLatencies(sortedData(spkInd,2), TriggerTimes, fs, 5e-2); +mn = (cellfun(@mean, Latencies)*1e3); +sd = (cellfun(@std, Latencies)*1e3); +Dpth = -1*Dpth; +nan = isnan(mn); + +latencyCutoffs = sort(latencyCutoffs, 'ascend'); +sdCutoffs = sort(sdCutoffs, 'ascend'); + +tagged = latencyCutoffs(1) <= mn & mn <= latencyCutoffs(2) & sdCutoffs(1) <= sd & sd <= sdCutoffs(2); +taggedInd = spkInd(tagged); +TaggedIDs = sortedData(taggedInd,1); + +nontagged = ~tagged | nan; + +minDepth = Dpth(min(find(tagged))); +maxDepth = Dpth(max(find(tagged))); +fig = figure('Name', name, 'Color', 'White'); +x = [sum(tagged), sum(~tagged)]; +explode = [1, 0]; +% labels = {['Tagged Fraction = ',num2str(tg), '%'], ' '}; +pie(x, explode) + + + + +ax = gca; +ax.Children(2).FaceColor = [0.5 0.5 0.5]; +ax.Children(4).FaceColor = [0 1 1]; +ax.FontSize = 30; +% ax.FontName = 'Times New Roman'; + +lgd = legend; +lgd.String{1} = ['Opto-tagged']; +text(1.25,1.0,['Selection Criteria:'],'FontSize', 15 ); +text(1.25,0.75,['Mean Latencies between ' num2str(latencyCutoffs(1)), ' and ',num2str(latencyCutoffs(2)), 'ms'], 'FontSize', 10); +text(1.25,0.50,['Standard Deviations between ' num2str(sdCutoffs(1)), ' and ',num2str(sdCutoffs(2)), 'ms'], 'FontSize', 10); +text(1.25,-0.25,'Opto-tagged Units Displayed:', 'FontSize', 15); +text(1.25,-0.5,['Depths between ' num2str(minDepth), ' and ',num2str(maxDepth), '\mum'], 'Interpreter', 'tex', 'FontSize', 10); +lgd.String{2} = ['Untagged ']; +lgd.Location = 'northoutside'; +%lgd.Box = 'off'; + + +end + + diff --git a/Ross/plotTaggedLatencyHist.m b/Ross/plotTaggedLatencyHist.m new file mode 100644 index 0000000..6561fdb --- /dev/null +++ b/Ross/plotTaggedLatencyHist.m @@ -0,0 +1,65 @@ +function fig = plotTaggedLatencyHist(latencyCutoffs, sdCutoffs, clInfo, clIDs, ConditionName, TriggerTimes, sortedData, samplingFrequency) +fs = samplingFrequency; +clInd = ismember(clInfo.id, clIDs); +depths = table(clInfo.id(clInd), clInfo.AbsDepth(clInd)); +depths = sortrows(depths,'Var2','ascend'); +ID = depths{:,1}; +Dpth = depths.Var2; +spkInd = []; +for i = 1:length(ID) + spkInd = [spkInd; find(ismember(sortedData(:,1), ID(i)))]; +end +name = ConditionName; +name(strfind(name, '_')) = ' '; +name = ['Latency Histogram: ', name]; +Latencies = TriggerLatencies(sortedData(spkInd,2), TriggerTimes, fs, 5e-2); +mn = (cellfun(@mean, Latencies)*1e3); +sd = (cellfun(@std, Latencies)*1e3); +latencyCutoffs = sort(latencyCutoffs, 'ascend'); +sdCutoffs = sort(sdCutoffs, 'ascend'); +nan = isnan(mn); + +tagged = latencyCutoffs(1) <= mn & mn <= latencyCutoffs(2) & sdCutoffs(1) <= sd & sd <= sdCutoffs(2); +nontagged = ~tagged & ~nan; +fig = figure('Name', name, 'Color', 'White'); + +h = histogram(round(mn(~tagged))); +h.FaceColor = [0.5, 0.5, 0.5]; +hold on +j = histogram(round(mn(tagged))); +j.FaceColor = [0, 1, 1]; +hold off + +pulseWidth = round(median(diff(TriggerTimes'/fs)')*1e3); +% title(name, 'Interpreter', 'none'); +ylim([0,round(mode(round(mn)+5))]); +%yticks([round(round(min(Dpth),-2)/2,-2)*2-200:200:0]); +xlim([0 50]); +xticks(0:5:50); +xlabel('Latency_{(ms)}'); +ylabel('Frequency_{(no. of units)}', 'Interpreter', 'tex') +% ax.XTickLabelRotation = -45; +ax = gca; +laserLngth = linspace(0, pulseWidth + 0.5); +hold on +laser = plot(laserLngth, (ax.YLim(2))*ones(length(laserLngth),1), 'Color', [0 1 1 0.5], 'LineWidth', 3); +ax = gca; +ax.FontSize = 20; +% ax.FontName = 'Times New Roman'; +% Create rectangle +%lsText = text(3, ax.YLim(1)+45, 'Laser Pulse', 'FontSize', 10); + + +rectangle(ax, 'Position', [ax.XLim(1), ax.YLim(1), pulseWidth + 0.5, ax.YLim(2) - ax.YLim(1)], ... +'LineStyle', 'none', 'FaceColor', [0 1 1 0.1]) + +lgd = legend; +lgd.String{1} = ['Units (n=', num2str(sum(nontagged)), ')']; +lgd.String{2} = ['Opto-tagged Units (n=', num2str(sum(tagged)), ')']; +lgd.String{3} = ['Laser Pulse (',num2str(pulseWidth), 'ms)']; + + + +end + + diff --git a/Ross/plotTaggedLatencyVsDepth.m b/Ross/plotTaggedLatencyVsDepth.m new file mode 100644 index 0000000..ffeaf90 --- /dev/null +++ b/Ross/plotTaggedLatencyVsDepth.m @@ -0,0 +1,67 @@ +function fig = plotTaggedLatencyVsDepth(latencyCutoffs, sdCutoffs, clInfo, clIDs, ConditionName, TriggerTimes, sortedData, samplingFrequency) +fs = samplingFrequency; +clInd = ismember(clInfo.id, clIDs); +depths = table(clInfo.id(clInd), clInfo.abs_depth(clInd)); +depths = sortrows(depths,'Var2','ascend'); +ID = depths{:,1}; +Dpth = depths.Var2; +spkInd = []; +for i = 1:length(ID) + spkInd = [spkInd; find(ismember(sortedData(:,1), ID(i)))]; +end +name = ConditionName; +name(strfind(name, '_')) = ' '; +name = ['Latency vs Depth: ', name]; +Latencies = TriggerLatencies(sortedData(spkInd,2), TriggerTimes, fs, 5e-2); +mn = (cellfun(@mean, Latencies)*1e3); +sd = (cellfun(@std, Latencies)*1e3); +Dpth = -1*Dpth; +jitter = randi(20,size(Dpth)); +Dpth = Dpth + jitter; % adding small random jitter for visualisation +nan = isnan(mn); + +latencyCutoffs = sort(latencyCutoffs, 'ascend'); +sdCutoffs = sort(sdCutoffs, 'ascend'); + +tagged = latencyCutoffs(1) <= mn & mn <= latencyCutoffs(2) & sdCutoffs(1) <= sd & sd <= sdCutoffs(2); +nontagged = ~tagged & ~nan; +fig = figure('Name', name, 'Color', 'White'); + +errorbar(mn(~tagged),Dpth(~tagged),sd(~tagged), 'horizontal', 'LineStyle', 'none', 'Marker', 'd', 'Color', [0.5, 0.5, 0.5], 'MarkerSize', 2.5, 'LineWidth', 0.01, 'CapSize', 5); +hold on +errorbar(mn(tagged),Dpth(tagged),sd(tagged), 'horizontal', 'LineStyle', 'none', 'Marker', 'd', 'Color', [0.5, 1, 1], 'MarkerSize', 2.5, 'LineWidth', 0.01, 'CapSize', 5); +hold off + + +pulseWidth = round(median(diff(TriggerTimes'/fs)')*1e3); +% title(name, 'Interpreter', 'none'); +ylim([round(round(min(Dpth),-2)/2,-2)*2-200,0]); +yticks([round(round(min(Dpth),-2)/2,-2)*2-200:200:0]); +xlim([0 50]); +xticks(0:5:50); +xlabel('Latency_{(ms)}'); +ylabel('Depth_{(\mum)}', 'Interpreter', 'tex') +% ax.XTickLabelRotation = -45; +ax = gca; +hold on +laser = plot([0:pulseWidth], ax.YLim(2)*ones(pulseWidth + 1,1), 'Color', [0 1 1 0.5], 'LineWidth', 3); +ax = gca; +ax.FontSize = 20; +% ax.FontName = 'Times New Roman'; +% Create rectangle +% lsText = text(3, ax.YLim(1)+45, 'Laser Pulse', 'FontSize', 10); + +lgd = legend; +lgd.String{1} = (['Unit Mean +/- SD (n=', num2str(sum(nontagged)), ')']); +lgd.String{2} = (['Opto-tagged Units (n=', num2str(sum(tagged)), ')']); +lgd.String{3} = ['Laser Pulse (',num2str(pulseWidth), 'ms)']; +% rectangle(ax, 'Position', [1, ax.YLim(2)-100, 4, 50], ... +% 'LineStyle', 'none', 'FaceColor', [0 1 1 0.5]) + +rectangle(ax, 'Position', [ax.XLim(1), ax.YLim(1), pulseWidth, ax.YLim(2) - ax.YLim(1)], ... +'LineStyle', 'none', 'FaceColor', [0 1 1 0.1]) + + +end + + diff --git a/Ross/plotTaggedLatencyVsJitter.m b/Ross/plotTaggedLatencyVsJitter.m new file mode 100644 index 0000000..95b36f7 --- /dev/null +++ b/Ross/plotTaggedLatencyVsJitter.m @@ -0,0 +1,67 @@ +function fig = plotTaggedLatencyVsJitter(latencyCutoffs, sdCutoffs, clInfo, clIDs, ConditionName, TriggerTimes, sortedData, samplingFrequency) +fs = samplingFrequency; +clInd = ismember(clInfo.id, clIDs); +depths = table(clInfo.id(clInd), clInfo.AbsDepth(clInd)); +depths = sortrows(depths,'Var2','ascend'); +ID = depths{:,1}; +Dpth = depths.Var2; +spkInd = []; +for i = 1:length(ID) + spkInd = [spkInd; find(ismember(sortedData(:,1), ID(i)))]; +end +name = ConditionName; +name(strfind(name, '_')) = ' '; +name = ['Latency Vs Jitter: ', name]; +Latencies = TriggerLatencies(sortedData(spkInd,2), TriggerTimes, fs, 5e-2); +mn = (cellfun(@mean, Latencies)*1e3); +sd = (cellfun(@std, Latencies)*1e3); +Dpth = -1*Dpth; +jitter = randi(20,size(Dpth)); + +nan = isnan(mn); + +latencyCutoffs = sort(latencyCutoffs, 'ascend'); +sdCutoffs = sort(sdCutoffs, 'ascend'); + +tagged = latencyCutoffs(1) <= mn & mn <= latencyCutoffs(2) & sdCutoffs(1) <= sd & sd <= sdCutoffs(2); + +nontagged = ~tagged & ~nan; +fig = figure('Name', name, 'Color', 'White'); + +scatter(mn(~tagged),sd(~tagged), 50, [0.5, 0.5, 0.5], '*') +hold on +scatter(mn(tagged),sd(tagged), 50, [0.5, 1, 1], '*') +hold off +pulseWidth = round(median(diff(TriggerTimes'/fs)')*1e3); +% title(name, 'Interpreter', 'none'); +ylim([0,round(round(max(sd))+5,-1)]); +%yticks([round(round(min(Dpth),-2)/2,-2)*2-200:200:0]); +xlim([0 50]); +xticks(0:5:50); +xlabel('Latency_{(ms)}'); +ylabel('StdDev_{(ms)}', 'Interpreter', 'tex') +% ax.XTickLabelRotation = -45; +ax = gca; +hold on +laser = plot([0:pulseWidth], (ax.YLim(2))*ones(pulseWidth + 1,1), 'Color', [0 1 1 0.5], 'LineWidth', 3); +ax = gca; +ax.FontSize = 20; +% ax.FontName = 'Times New Roman'; +% Create rectangle +%lsText = text(3, ax.YLim(1)+45, 'Laser Pulse', 'FontSize', 10); + +lgd = legend; +lgd.String{1} = ['Units (n=', num2str(sum(nontagged)), ')']; +lgd.String{2} = ['Opto-tagged Units (n=', num2str(sum(tagged)), ')']; +lgd.String{3} = ['Laser Pulse (',num2str(pulseWidth), 'ms)']; + +% rectangle(ax, 'Position', [1, ax.YLim(2)-100, 4, 50], ... +% 'LineStyle', 'none', 'FaceColor', [0 1 1 0.5]) + +rectangle(ax, 'Position', [ax.XLim(1), ax.YLim(1), pulseWidth, ax.YLim(2) - ax.YLim(1)], ... +'LineStyle', 'none', 'FaceColor', [0 1 1 0.1]) + + +end + + diff --git a/Ross/plotTaggedRasterFromStackRoss.m b/Ross/plotTaggedRasterFromStackRoss.m new file mode 100644 index 0000000..f3230dd --- /dev/null +++ b/Ross/plotTaggedRasterFromStackRoss.m @@ -0,0 +1,55 @@ +function plotTaggedRasterFromStack(discreteStack, timeLapse, fs, figTitle, ax, rasclr) +%UNTITLED6 Summary of this function goes here +% Detailed explanation goes here + +% Ne is the number of 'events', namely signals that are considered in the +% stack +% Nt is the time axis for the chosen window +% Na is the number of alignment points in this stack +[Ne, Nt, Na] = size(discreteStack); +% Time axis +tx = 0:1/fs:(Nt-1)/fs; +tx = tx + timeLapse(1); +AX_FLAG = true; +if ~exist('ax','var') || isempty(ax) + figure('Name',['Raster Plot ', figTitle],'Color',[1,1,1]); + AX_FLAG = false; +end +cmap = brighten(copper(Ne-1),-0.8); +FIRST_FLAG = true; +for cse = 2:Ne + % For each spike train + for cap = Na:-1:1 + % For each alignment point + upEdge = diff(discreteStack(cse,:,cap)) > 0; + if sum(upEdge) ~= 0 + % If there are events in this alignment point + downEdge = diff(discreteStack(cse,:,cap)) < 0; + isSpike = upEdge(1:end-1) - downEdge(2:end); + if sum(isSpike) == 0 + % If the event contains spikes + if FIRST_FLAG + hold on + FIRST_FLAG = false; + end + xspks = tx(squeeze(discreteStack(cse,:,cap))); + lvl = (cse - 2)*Na + cap; + if AX_FLAG + plot(ax,xspks,lvl*ones(1,numel(xspks)),... + 'LineStyle','none','Marker','.',... + 'MarkerFaceColor',rasclr,'MarkerSize',5,... + 'Color',rasclr) + else + plot(xspks,lvl*ones(1,numel(xspks)),... + 'LineStyle','none','Marker','.',... + 'MarkerFaceColor',rasclr,'MarkerSize',5,... + 'Color',rasclr) + end + end + end + end +end +axis([timeLapse(1),timeLapse(2),1,Na*(Ne-1)]) + +end + diff --git a/Ross/plotTriggeredDoseResponse.m b/Ross/plotTriggeredDoseResponse.m new file mode 100644 index 0000000..c43c4bb --- /dev/null +++ b/Ross/plotTriggeredDoseResponse.m @@ -0,0 +1,124 @@ +function plotTriggeredDoseResponse(ID, sortedData, condIndices, Conditions, fs) + + + + % atm only works on block conditions (plotUnitInfo omits these for now)....come back to this + +% Naming the figure +if class(ID) == 'cell' + figureName = ID{1}; + lngth = 1; % generalise this! +else + figureName = ID; + lngth = 1; +end + +% Finding the different frequencies - probably lots of redundancy +rates = zeros(lngth, length(condIndices)); +sds = zeros(lngth, length(condIndices)); +timeBin = 5; +conds = zeros(1,length(condIndices)); + +alltext = cat(2, Conditions.name); +undscore = strfind(alltext, "_"); +allHzind = strfind(alltext, "Hz"); +freqConds = zeros(length(allHzind),1); +hzUnd = zeros(length(allHzind),1); +for a = 1:length(allHzind) + hzUnd(a) = max(undscore(undscore